/*
 * 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")}})})();;
// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 *
 * Version: 1.3.1 (05/03/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

(function($) {

	var tmp, loading, overlay, wrap, outer, inner, close, nav_left, nav_right,

		selectedIndex = 0, selectedOpts = {}, selectedArray = [], currentIndex = 0, currentOpts = {}, currentArray = [],

		ajaxLoader = null, imgPreloader = new Image(), imgRegExp = /\.(jpg|gif|png|bmp|jpeg)(.*)?$/i, swfRegExp = /[^\.]\.(swf)\s*$/i,

		loadingTimer, loadingFrame = 1,

		start_pos, final_pos, busy = false, shadow = 20, fx = $.extend($('<div/>')[0], { prop: 0 }), titleh = 0, 

		isIE6 = !$.support.opacity && !window.XMLHttpRequest,

		/*
		 * Private methods 
		 */

		fancybox_abort = function() {
			loading.hide();

			imgPreloader.onerror = imgPreloader.onload = null;

			if (ajaxLoader) {
				ajaxLoader.abort();
			}

			tmp.empty();
		},

		fancybox_error = function() {
			$.fancybox('<p id="fancybox_error">The requested content cannot be loaded.<br />Please try again later.</p>', {
				'scrolling'		: 'no',
				'padding'		: 20,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none'
			});
		},

		fancybox_get_viewport = function() {
			return [ $(window).width(), $(window).height(), $(document).scrollLeft(), $(document).scrollTop() ];
		},

		fancybox_get_zoom_to = function () {
			var view	= fancybox_get_viewport(),
				to		= {},

				margin = currentOpts.margin,
				resize = currentOpts.autoScale,

				horizontal_space	= (shadow + margin) * 2,
				vertical_space		= (shadow + margin) * 2,
				double_padding		= (currentOpts.padding * 2),
				
				ratio;

			if (currentOpts.width.toString().indexOf('%') > -1) {
				to.width = ((view[0] * parseFloat(currentOpts.width)) / 100) - (shadow * 2) ;
				resize = false;

			} else {
				to.width = currentOpts.width + double_padding;
			}

			if (currentOpts.height.toString().indexOf('%') > -1) {
				to.height = ((view[1] * parseFloat(currentOpts.height)) / 100) - (shadow * 2);
				resize = false;

			} else {
				to.height = currentOpts.height + double_padding;
			}

			if (resize && (to.width > (view[0] - horizontal_space) || to.height > (view[1] - vertical_space))) {
				if (selectedOpts.type == 'image' || selectedOpts.type == 'swf') {
					horizontal_space	+= double_padding;
					vertical_space		+= double_padding;

					ratio = Math.min(Math.min( view[0] - horizontal_space, currentOpts.width) / currentOpts.width, Math.min( view[1] - vertical_space, currentOpts.height) / currentOpts.height);

					to.width	= Math.round(ratio * (to.width	- double_padding)) + double_padding;
					to.height	= Math.round(ratio * (to.height	- double_padding)) + double_padding;

				} else {
					to.width	= Math.min(to.width,	(view[0] - horizontal_space));
					to.height	= Math.min(to.height,	(view[1] - vertical_space));
				}
			}

			to.top	= view[3] + ((view[1] - (to.height	+ (shadow * 2 ))) * 0.5);
			to.left	= view[2] + ((view[0] - (to.width	+ (shadow * 2 ))) * 0.5);

			if (currentOpts.autoScale === false) {
				to.top	= Math.max(view[3] + margin, to.top);
				to.left	= Math.max(view[2] + margin, to.left);
			}

			return to;
		},

		fancybox_format_title = function(title) {
			if (title && title.length) {
				switch (currentOpts.titlePosition) {
					case 'inside':
						return title;
					case 'over':
						return '<span id="fancybox-title-over">' + title + '</span>';
					default:
						return '<span id="fancybox-title-wrap"><span id="fancybox-title-left"></span><span id="fancybox-title-main">' + title + '</span><span id="fancybox-title-right"></span></span>';
				}
			}

			return false;
		},

		fancybox_process_title = function() {
			var title	= currentOpts.title,
				width	= final_pos.width - (currentOpts.padding * 2),
				titlec	= 'fancybox-title-' + currentOpts.titlePosition;
				
			$('#fancybox-title').remove();

			titleh = 0;

			if (currentOpts.titleShow === false) {
				return;
			}

			title = $.isFunction(currentOpts.titleFormat) ? currentOpts.titleFormat(title, currentArray, currentIndex, currentOpts) : fancybox_format_title(title);

			if (!title || title === '') {
				return;
			}

			$('<div id="fancybox-title" class="' + titlec + '" />').css({
				'width'			: width,
				'paddingLeft'	: currentOpts.padding,
				'paddingRight'	: currentOpts.padding
			}).html(title).appendTo('body');

			switch (currentOpts.titlePosition) {
				case 'inside':
					titleh = $("#fancybox-title").outerHeight(true) - currentOpts.padding;
					final_pos.height += titleh;
				break;

				case 'over':
					$('#fancybox-title').css('bottom', currentOpts.padding);
				break;

				default:
					$('#fancybox-title').css('bottom', $("#fancybox-title").outerHeight(true) * -1);
				break;
			}

			$('#fancybox-title').appendTo( outer ).hide();
		},

		fancybox_set_navigation = function() {
			$(document).unbind('keydown.fb').bind('keydown.fb', function(e) {
				if (e.keyCode == 27 && currentOpts.enableEscapeButton) {
					e.preventDefault();
					$.fancybox.close();

				} else if (e.keyCode == 37) {
					e.preventDefault();
					$.fancybox.prev();

				} else if (e.keyCode == 39) {
					e.preventDefault();
					$.fancybox.next();
				}
			});

			if ($.fn.mousewheel) {
				wrap.unbind('mousewheel.fb');

				if (currentArray.length > 1) {
					wrap.bind('mousewheel.fb', function(e, delta) {
						e.preventDefault();

						if (busy || delta === 0) {
							return;
						}

						if (delta > 0) {
							$.fancybox.prev();
						} else {
							$.fancybox.next();
						}
					});
				}
			}

			if (!currentOpts.showNavArrows) { return; }

			if ((currentOpts.cyclic && currentArray.length > 1) || currentIndex !== 0) {
				nav_left.show();
			}

			if ((currentOpts.cyclic && currentArray.length > 1) || currentIndex != (currentArray.length -1)) {
				nav_right.show();
			}
		},

		fancybox_preload_images = function() {
			var href, 
				objNext;
				
			if ((currentArray.length -1) > currentIndex) {
				href = currentArray[ currentIndex + 1 ].href;

				if (typeof href !== 'undefined' && href.match(imgRegExp)) {
					objNext = new Image();
					objNext.src = href;
				}
			}

			if (currentIndex > 0) {
				href = currentArray[ currentIndex - 1 ].href;

				if (typeof href !== 'undefined' && href.match(imgRegExp)) {
					objNext = new Image();
					objNext.src = href;
				}
			}
		},

		_finish = function () {
			inner.css('overflow', (currentOpts.scrolling == 'auto' ? (currentOpts.type == 'image' || currentOpts.type == 'iframe' || currentOpts.type == 'swf' ? 'hidden' : 'auto') : (currentOpts.scrolling == 'yes' ? 'auto' : 'visible')));

			if (!$.support.opacity) {
				inner.get(0).style.removeAttribute('filter');
				wrap.get(0).style.removeAttribute('filter');
			}

			$('#fancybox-title').show();

			if (currentOpts.hideOnContentClick)	{
				inner.one('click', $.fancybox.close);
			}
			if (currentOpts.hideOnOverlayClick)	{
				overlay.one('click', $.fancybox.close);
			}

			if (currentOpts.showCloseButton) {
				close.show();
			}

			fancybox_set_navigation();

			$(window).bind("resize.fb", $.fancybox.center);

			if (currentOpts.centerOnScroll) {
				$(window).bind("scroll.fb", $.fancybox.center);
			} else {
				$(window).unbind("scroll.fb");
			}

			if ($.isFunction(currentOpts.onComplete)) {
				currentOpts.onComplete(currentArray, currentIndex, currentOpts);
			}

			busy = false;

			fancybox_preload_images();
		},

		fancybox_draw = function(pos) {
			var width	= Math.round(start_pos.width	+ (final_pos.width	- start_pos.width)	* pos),
				height	= Math.round(start_pos.height	+ (final_pos.height	- start_pos.height)	* pos),

				top		= Math.round(start_pos.top	+ (final_pos.top	- start_pos.top)	* pos),
				left	= Math.round(start_pos.left	+ (final_pos.left	- start_pos.left)	* pos);

			wrap.css({
				'width'		: width		+ 'px',
				'height'	: height	+ 'px',
				'top'		: top		+ 'px',
				'left'		: left		+ 'px'
			});

			width	= Math.max(width - currentOpts.padding * 2, 0);
			height	= Math.max(height - (currentOpts.padding * 2 + (titleh * pos)), 0);

			inner.css({
				'width'		: width		+ 'px',
				'height'	: height	+ 'px'
			});

			if (typeof final_pos.opacity !== 'undefined') {
				wrap.css('opacity', (pos < 0.5 ? 0.5 : pos));
			}
		},

		fancybox_get_obj_pos = function(obj) {
			var pos		= obj.offset();

			pos.top		+= parseFloat( obj.css('paddingTop') )	|| 0;
			pos.left	+= parseFloat( obj.css('paddingLeft') )	|| 0;

			pos.top		+= parseFloat( obj.css('border-top-width') )	|| 0;
			pos.left	+= parseFloat( obj.css('border-left-width') )	|| 0;

			pos.width	= obj.width();
			pos.height	= obj.height();

			return pos;
		},

		fancybox_get_zoom_from = function() {
			var orig = selectedOpts.orig ? $(selectedOpts.orig) : false,
				from = {},
				pos,
				view;

			if (orig && orig.length) {
				pos = fancybox_get_obj_pos(orig);

				from = {
					width	: (pos.width	+ (currentOpts.padding * 2)),
					height	: (pos.height	+ (currentOpts.padding * 2)),
					top		: (pos.top		- currentOpts.padding - shadow),
					left	: (pos.left		- currentOpts.padding - shadow)
				};
				
			} else {
				view = fancybox_get_viewport();

				from = {
					width	: 1,
					height	: 1,
					top		: view[3] + view[1] * 0.5,
					left	: view[2] + view[0] * 0.5
				};
			}

			return from;
		},

		fancybox_show = function() {
			loading.hide();

			if (wrap.is(":visible") && $.isFunction(currentOpts.onCleanup)) {
				if (currentOpts.onCleanup(currentArray, currentIndex, currentOpts) === false) {
					$.event.trigger('fancybox-cancel');

					busy = false;
					return;
				}
			}

			currentArray	= selectedArray;
			currentIndex	= selectedIndex;
			currentOpts		= selectedOpts;

			inner.get(0).scrollTop	= 0;
			inner.get(0).scrollLeft	= 0;

			if (currentOpts.overlayShow) {
				if (isIE6) {
					$('select:not(#fancybox-tmp select)').filter(function() {
						return this.style.visibility !== 'hidden';
					}).css({'visibility':'hidden'}).one('fancybox-cleanup', function() {
						this.style.visibility = 'inherit';
					});
				}

				overlay.css({
					'background-color'	: currentOpts.overlayColor,
					'opacity'			: currentOpts.overlayOpacity
				}).unbind().show();
			}

			final_pos = fancybox_get_zoom_to();

			fancybox_process_title();

			if (wrap.is(":visible")) {
				$( close.add( nav_left ).add( nav_right ) ).hide();

				var pos = wrap.position(),
					equal;

				start_pos = {
					top		:	pos.top ,
					left	:	pos.left,
					width	:	wrap.width(),
					height	:	wrap.height()
				};

				equal = (start_pos.width == final_pos.width && start_pos.height == final_pos.height);

				inner.fadeOut(currentOpts.changeFade, function() {
					var finish_resizing = function() {
						inner.html( tmp.contents() ).fadeIn(currentOpts.changeFade, _finish);
					};
					
					$.event.trigger('fancybox-change');

					inner.empty().css('overflow', 'hidden');

					if (equal) {
						inner.css({
							top			: currentOpts.padding,
							left		: currentOpts.padding,
							width		: Math.max(final_pos.width	- (currentOpts.padding * 2), 1),
							height		: Math.max(final_pos.height	- (currentOpts.padding * 2) - titleh, 1)
						});
						
						finish_resizing();

					} else {
						inner.css({
							top			: currentOpts.padding,
							left		: currentOpts.padding,
							width		: Math.max(start_pos.width	- (currentOpts.padding * 2), 1),
							height		: Math.max(start_pos.height	- (currentOpts.padding * 2), 1)
						});
						
						fx.prop = 0;

						$(fx).animate({ prop: 1 }, {
							 duration	: currentOpts.changeSpeed,
							 easing		: currentOpts.easingChange,
							 step		: fancybox_draw,
							 complete	: finish_resizing
						});
					}
				});

				return;
			}

			wrap.css('opacity', 1);

			if (currentOpts.transitionIn == 'elastic') {
				start_pos = fancybox_get_zoom_from();

				inner.css({
						top			: currentOpts.padding,
						left		: currentOpts.padding,
						width		: Math.max(start_pos.width	- (currentOpts.padding * 2), 1),
						height		: Math.max(start_pos.height	- (currentOpts.padding * 2), 1)
					})
					.html( tmp.contents() );

				wrap.css(start_pos).show();

				if (currentOpts.opacity) {
					final_pos.opacity = 0;
				}

				fx.prop = 0;

				$(fx).animate({ prop: 1 }, {
					 duration	: currentOpts.speedIn,
					 easing		: currentOpts.easingIn,
					 step		: fancybox_draw,
					 complete	: _finish
				});

			} else {
				inner.css({
						top			: currentOpts.padding,
						left		: currentOpts.padding,
						width		: Math.max(final_pos.width	- (currentOpts.padding * 2), 1),
						height		: Math.max(final_pos.height	- (currentOpts.padding * 2) - titleh, 1)
					})
					.html( tmp.contents() );

				wrap.css( final_pos ).fadeIn( currentOpts.transitionIn == 'none' ? 0 : currentOpts.speedIn, _finish );
			}
		},

		fancybox_process_inline = function() {
			tmp.width(	selectedOpts.width );
			tmp.height(	selectedOpts.height );

			if (selectedOpts.width	== 'auto') {
				selectedOpts.width = tmp.width();
			}
			if (selectedOpts.height	== 'auto') {
				selectedOpts.height	= tmp.height();
			}

			fancybox_show();
		},
		
		fancybox_process_image = function() {
			busy = true;

			selectedOpts.width	= imgPreloader.width;
			selectedOpts.height	= imgPreloader.height;

			$("<img />").attr({
				'id'	: 'fancybox-img',
				'src'	: imgPreloader.src,
				'alt'	: selectedOpts.title
			}).appendTo( tmp );

			fancybox_show();
		},

		fancybox_start = function() {
			fancybox_abort();

			var obj	= selectedArray[ selectedIndex ],
				href, 
				type, 
				title,
				str,
				emb,
				selector,
				data;

			selectedOpts = $.extend({}, $.fn.fancybox.defaults, (typeof $(obj).data('fancybox') == 'undefined' ? selectedOpts : $(obj).data('fancybox')));
			title = obj.title || $(obj).title || selectedOpts.title || '';
			
			if (obj.nodeName && !selectedOpts.orig) {
				selectedOpts.orig = $(obj).children("img:first").length ? $(obj).children("img:first") : $(obj);
			}

			if (title === '' && selectedOpts.orig) {
				title = selectedOpts.orig.attr('alt');
			}

			if (obj.nodeName && (/^(?:javascript|#)/i).test(obj.href)) {
				href = selectedOpts.href || null;
			} else {
				href = selectedOpts.href || obj.href || null;
			}

			if (selectedOpts.type) {
				type = selectedOpts.type;

				if (!href) {
					href = selectedOpts.content;
				}
				
			} else if (selectedOpts.content) {
				type	= 'html';

			} else if (href) {
				if (href.match(imgRegExp)) {
					type = 'image';

				} else if (href.match(swfRegExp)) {
					type = 'swf';

				} else if ($(obj).hasClass("iframe")) {
					type = 'iframe';

				} else if (href.match(/#/)) {
					obj = href.substr(href.indexOf("#"));

					type = $(obj).length > 0 ? 'inline' : 'ajax';
				} else {
					type = 'ajax';
				}
			} else {
				type = 'inline';
			}

			selectedOpts.type	= type;
			selectedOpts.href	= href;
			selectedOpts.title	= title;

			if (selectedOpts.autoDimensions && selectedOpts.type !== 'iframe' && selectedOpts.type !== 'swf') {
				selectedOpts.width		= 'auto';
				selectedOpts.height		= 'auto';
			}

			if (selectedOpts.modal) {
				selectedOpts.overlayShow		= true;
				selectedOpts.hideOnOverlayClick	= false;
				selectedOpts.hideOnContentClick	= false;
				selectedOpts.enableEscapeButton	= false;
				selectedOpts.showCloseButton	= false;
			}

			if ($.isFunction(selectedOpts.onStart)) {
				if (selectedOpts.onStart(selectedArray, selectedIndex, selectedOpts) === false) {
					busy = false;
					return;
				}
			}

			tmp.css('padding', (shadow + selectedOpts.padding + selectedOpts.margin));

			$('.fancybox-inline-tmp').unbind('fancybox-cancel').bind('fancybox-change', function() {
				$(this).replaceWith(inner.children());
			});

			switch (type) {
				case 'html' :
					tmp.html( selectedOpts.content );
					fancybox_process_inline();
				break;

				case 'inline' :
					$('<div class="fancybox-inline-tmp" />').hide().insertBefore( $(obj) ).bind('fancybox-cleanup', function() {
						$(this).replaceWith(inner.children());
					}).bind('fancybox-cancel', function() {
						$(this).replaceWith(tmp.children());
					});

					$(obj).appendTo(tmp);

					fancybox_process_inline();
				break;

				case 'image':
					busy = false;

					$.fancybox.showActivity();

					imgPreloader = new Image();

					imgPreloader.onerror = function() {
						fancybox_error();
					};

					imgPreloader.onload = function() {
						imgPreloader.onerror = null;
						imgPreloader.onload = null;
						fancybox_process_image();
					};

					imgPreloader.src = href;
		
				break;

				case 'swf':
					str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="' + selectedOpts.width + '" height="' + selectedOpts.height + '"><param name="movie" value="' + href + '"></param>';
					emb = '';
					
					$.each(selectedOpts.swf, function(name, val) {
						str += '<param name="' + name + '" value="' + val + '"></param>';
						emb += ' ' + name + '="' + val + '"';
					});

					str += '<embed src="' + href + '" type="application/x-shockwave-flash" width="' + selectedOpts.width + '" height="' + selectedOpts.height + '"' + emb + '></embed></object>';

					tmp.html(str);

					fancybox_process_inline();
				break;

				case 'ajax':
					selector	= href.split('#', 2);
					data		= selectedOpts.ajax.data || {};

					if (selector.length > 1) {
						href = selector[0];

						if (typeof data == "string") {
							data += '&selector=' + selector[1];
						} else {
							data.selector = selector[1];
						}
					}

					busy = false;
					$.fancybox.showActivity();

					ajaxLoader = $.ajax($.extend(selectedOpts.ajax, {
						url		: href,
						data	: data,
						error	: fancybox_error,
						success : function(data, textStatus, XMLHttpRequest) {
							if (ajaxLoader.status == 200) {
								tmp.html( data );
								fancybox_process_inline();
							}
						}
					}));

				break;

				case 'iframe' :
					$('<iframe id="fancybox-frame" name="fancybox-frame' + new Date().getTime() + '" frameborder="0" hspace="0" scrolling="' + selectedOpts.scrolling + '" src="' + selectedOpts.href + '"></iframe>').appendTo(tmp);
					fancybox_show();
				break;
			}
		},

		fancybox_animate_loading = function() {
			if (!loading.is(':visible')){
				clearInterval(loadingTimer);
				return;
			}

			$('div', loading).css('top', (loadingFrame * -40) + 'px');

			loadingFrame = (loadingFrame + 1) % 12;
		},

		fancybox_init = function() {
			if ($("#fancybox-wrap").length) {
				return;
			}

			$('body').append(
				tmp			= $('<div id="fancybox-tmp"></div>'),
				loading		= $('<div id="fancybox-loading"><div></div></div>'),
				overlay		= $('<div id="fancybox-overlay"></div>'),
				wrap		= $('<div id="fancybox-wrap"></div>')
			);

			if (!$.support.opacity) {
				wrap.addClass('fancybox-ie');
				loading.addClass('fancybox-ie');
			}

			outer = $('<div id="fancybox-outer"></div>')
				.append('<div class="fancy-bg" id="fancy-bg-n"></div><div class="fancy-bg" id="fancy-bg-ne"></div><div class="fancy-bg" id="fancy-bg-e"></div><div class="fancy-bg" id="fancy-bg-se"></div><div class="fancy-bg" id="fancy-bg-s"></div><div class="fancy-bg" id="fancy-bg-sw"></div><div class="fancy-bg" id="fancy-bg-w"></div><div class="fancy-bg" id="fancy-bg-nw"></div>')
				.appendTo( wrap );

			outer.append(
				inner		= $('<div id="fancybox-inner"></div>'),
				close		= $('<a id="fancybox-close"></a>'),

				nav_left	= $('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),
				nav_right	= $('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>')
			);

			close.click($.fancybox.close);
			loading.click($.fancybox.cancel);

			nav_left.click(function(e) {
				e.preventDefault();
				$.fancybox.prev();
			});

			nav_right.click(function(e) {
				e.preventDefault();
				$.fancybox.next();
			});

			if (isIE6) {
				overlay.get(0).style.setExpression('height',	"document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'");
				loading.get(0).style.setExpression('top',		"(-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px'");

				outer.prepend('<iframe id="fancybox-hide-sel-frame" src="javascript:\'\';" scrolling="no" frameborder="0" ></iframe>');
			}
		};

	/*
	 * Public methods 
	 */

	$.fn.fancybox = function(options) {
		$(this)
			.data('fancybox', $.extend({}, options, ($.metadata ? $(this).metadata() : {})))
			.unbind('click.fb').bind('click.fb', function(e) {
				e.preventDefault();

				if (busy) {
					return;
				}

				busy = true;

				$(this).blur();

				selectedArray	= [];
				selectedIndex	= 0;

				var rel = $(this).attr('rel') || '';

				if (!rel || rel == '' || rel === 'nofollow') {
					selectedArray.push(this);

				} else {
					selectedArray	= $("a[rel=" + rel + "], area[rel=" + rel + "]");
					selectedIndex	= selectedArray.index( this );
				}

				fancybox_start();

				return false;
			});

		return this;
	};

	$.fancybox = function(obj) {
		if (busy) {
			return;
		}

		busy = true;

		var opts = typeof arguments[1] !== 'undefined' ? arguments[1] : {};

		selectedArray	= [];
		selectedIndex	= opts.index || 0;

		if ($.isArray(obj)) {
			for (var i = 0, j = obj.length; i < j; i++) {
				if (typeof obj[i] == 'object') {
					$(obj[i]).data('fancybox', $.extend({}, opts, obj[i]));
				} else {
					obj[i] = $({}).data('fancybox', $.extend({content : obj[i]}, opts));
				}
			}

			selectedArray = jQuery.merge(selectedArray, obj);

		} else {
			if (typeof obj == 'object') {
				$(obj).data('fancybox', $.extend({}, opts, obj));
			} else {
				obj = $({}).data('fancybox', $.extend({content : obj}, opts));
			}

			selectedArray.push(obj);
		}

		if (selectedIndex > selectedArray.length || selectedIndex < 0) {
			selectedIndex = 0;
		}

		fancybox_start();
	};

	$.fancybox.showActivity = function() {
		clearInterval(loadingTimer);

		loading.show();
		loadingTimer = setInterval(fancybox_animate_loading, 66);
	};

	$.fancybox.hideActivity = function() {
		loading.hide();
	};

	$.fancybox.next = function() {
		return $.fancybox.pos( currentIndex + 1);
	};
	
	$.fancybox.prev = function() {
		return $.fancybox.pos( currentIndex - 1);
	};

	$.fancybox.pos = function(pos) {
		if (busy) {
			return;
		}

		pos = parseInt(pos, 10);

		if (pos > -1 && currentArray.length > pos) {
			selectedIndex = pos;
			fancybox_start();
		}

		if (currentOpts.cyclic && currentArray.length > 1 && pos < 0) {
			selectedIndex = currentArray.length - 1;
			fancybox_start();
		}

		if (currentOpts.cyclic && currentArray.length > 1 && pos >= currentArray.length) {
			selectedIndex = 0;
			fancybox_start();
		}

		return;
	};

	$.fancybox.cancel = function() {
		if (busy) {
			return;
		}

		busy = true;

		$.event.trigger('fancybox-cancel');

		fancybox_abort();

		if (selectedOpts && $.isFunction(selectedOpts.onCancel)) {
			selectedOpts.onCancel(selectedArray, selectedIndex, selectedOpts);
		}

		busy = false;
	};

	// Note: within an iframe use - parent.$.fancybox.close();
	$.fancybox.close = function() {
		if (busy || wrap.is(':hidden')) {
			return;
		}

		busy = true;

		if (currentOpts && $.isFunction(currentOpts.onCleanup)) {
			if (currentOpts.onCleanup(currentArray, currentIndex, currentOpts) === false) {
				busy = false;
				return;
			}
		}

		fancybox_abort();

		$(close.add( nav_left ).add( nav_right )).hide();

		$('#fancybox-title').remove();

		wrap.add(inner).add(overlay).unbind();

		$(window).unbind("resize.fb scroll.fb");
		$(document).unbind('keydown.fb');

		function _cleanup() {
			overlay.fadeOut('fast');

			wrap.hide();

			$.event.trigger('fancybox-cleanup');

			inner.empty();

			if ($.isFunction(currentOpts.onClosed)) {
				currentOpts.onClosed(currentArray, currentIndex, currentOpts);
			}

			currentArray	= selectedOpts	= [];
			currentIndex	= selectedIndex	= 0;
			currentOpts		= selectedOpts	= {};

			busy = false;
		}

		inner.css('overflow', 'hidden');

		if (currentOpts.transitionOut == 'elastic') {
			start_pos = fancybox_get_zoom_from();

			var pos = wrap.position();

			final_pos = {
				top		:	pos.top ,
				left	:	pos.left,
				width	:	wrap.width(),
				height	:	wrap.height()
			};

			if (currentOpts.opacity) {
				final_pos.opacity = 1;
			}

			fx.prop = 1;

			$(fx).animate({ prop: 0 }, {
				 duration	: currentOpts.speedOut,
				 easing		: currentOpts.easingOut,
				 step		: fancybox_draw,
				 complete	: _cleanup
			});

		} else {
			wrap.fadeOut( currentOpts.transitionOut == 'none' ? 0 : currentOpts.speedOut, _cleanup);
		}
	};

	$.fancybox.resize = function() {
		var c, h;
		
		if (busy || wrap.is(':hidden')) {
			return;
		}

		busy = true;

		c = inner.wrapInner("<div style='overflow:auto'></div>").children();
		h = c.height();

		wrap.css({height:	h + (currentOpts.padding * 2) + titleh});
		inner.css({height:	h});

		c.replaceWith(c.children());

		$.fancybox.center();
	};

	$.fancybox.center = function() {
		busy = true;

		var view	= fancybox_get_viewport(),
			margin	= currentOpts.margin,
			to		= {};

		to.top	= view[3] + ((view[1] - ((wrap.height() - titleh) + (shadow * 2 ))) * 0.5);
		to.left	= view[2] + ((view[0] - (wrap.width() + (shadow * 2 ))) * 0.5);

		to.top	= Math.max(view[3] + margin, to.top);
		to.left	= Math.max(view[2] + margin, to.left);

		wrap.css(to);

		busy = false;
	};

	$.fn.fancybox.defaults = {
		padding				:	10,
		margin				:	20,
		opacity				:	false,
		modal				:	false,
		cyclic				:	false,
		scrolling			:	'auto',	// 'auto', 'yes' or 'no'

		width				:	560,
		height				:	340,

		autoScale			:	true,
		autoDimensions		:	true,
		centerOnScroll		:	false,

		ajax				:	{},
		swf					:	{ wmode: 'transparent' },

		hideOnOverlayClick	:	true,
		hideOnContentClick	:	false,

		overlayShow			:	true,
		overlayOpacity		:	0.3,
		overlayColor		:	'#666',

		titleShow			:	true,
		titlePosition		:	'outside',	// 'outside', 'inside' or 'over'
		titleFormat			:	null,

		transitionIn		:	'fade',	// 'elastic', 'fade' or 'none'
		transitionOut		:	'fade',	// 'elastic', 'fade' or 'none'

		speedIn				:	300,
		speedOut			:	300,

		changeSpeed			:	300,
		changeFade			:	'fast',

		easingIn			:	'swing',
		easingOut			:	'swing',

		showCloseButton		:	true,
		showNavArrows		:	true,
		enableEscapeButton	:	true,

		onStart				:	null,
		onCancel			:	null,
		onComplete			:	null,
		onCleanup			:	null,
		onClosed			:	null
	};

	$(document).ready(function() {
		fancybox_init();
	});

})(jQuery);;
// $Id: fancybox.js,v 1.1.2.2 2010/09/02 00:16:48 sbacelic Exp $

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

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

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

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

}
;
// $Id: thickbox.js,v 1.8.2.19 2010/03/09 07:10:48 frjo Exp $

/*
 * Thickbox 3.1 - One Box To Rule Them All.
 * By Cody Lindley (http://www.codylindley.com)
 * Copyright (c) 2007 cody lindley
 * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
*/


// Initialize Thickbox.
Drupal.behaviors.initThickbox = function (context) {
  $('a,area,input', context).filter('.thickbox:not(.initThickbox-processed)').addClass('initThickbox-processed').click(function() {
    var t = this.title || this.name || null;
    var a = this.href || this.alt;
    var g = this.rel || false;
    tb_show(t,a,g);
    this.blur();
    return false;
  });
};

function tb_show(caption, url, imageGroup) { //function called when the user clicks on a thickbox link

  var settings = Drupal.settings.thickbox;
  tb_setBrowserExtra();

  try {
    if (typeof document.body.style.maxHeight === 'undefined') { //if IE 6
      $('body','html').css({height: '100%', width: '100%'});
      $('html').css('overflow','hidden');
      if (document.getElementById('TB_HideSelect') === null) { //iframe to hide select elements in ie6
        $('body').append('<iframe id="TB_HideSelect"></iframe><div id="TB_overlay"></div><div id="TB_window"></div>');
        $('#TB_overlay').click(tb_remove);
      }
    }
    else { //all others
      if (document.getElementById('TB_overlay') === null) {
        $('body').append('<div id="TB_overlay"></div><div id="TB_window"></div>');
        $('#TB_overlay').click(tb_remove);
      }
    }

    if ($.browserextra.macfirefox) {
      $('#TB_overlay').addClass('TB_overlayMacFFBGHack'); //use png overlay so hide flash
    }
    else {
      $('#TB_overlay').addClass('TB_overlayBG'); //use background and opacity
    }

    if (caption === null) {
      caption = '';
    }
    $('body').append('<div id="TB_load"></div>'); //add loader to the page
    $('#TB_load').show(); //show loader

    var baseURL;
    if (url.indexOf('?')!==-1) { //ff there is a query string involved
      baseURL = url.substr(0, url.indexOf('?'));
    }
    else {
      baseURL = url;
    }

    var urlString = /\.jpg$|\.jpeg$|\.png$|\.gif$|\.bmp$/;
    var urlType = baseURL.toLowerCase().match(urlString);

    if (urlType == '.jpg' || urlType == '.jpeg' || urlType == '.png' || urlType == '.gif' || urlType == '.bmp') { //code to show images
      TB_PrevCaption = '';
      TB_PrevURL = '';
      TB_PrevHTML = '';
      TB_NextCaption = '';
      TB_NextURL = '';
      TB_NextHTML = '';
      TB_imageCount = '';
      TB_FoundURL = false;
      if (imageGroup) {
        TB_TempArray = $('a[rel=' + imageGroup + ']').get();
        for (TB_Counter = 0; ((TB_Counter < TB_TempArray.length) && (TB_NextHTML === '')); TB_Counter++) {
          var urlTypeTemp = TB_TempArray[TB_Counter].href.toLowerCase().match(urlString);
          if (!(TB_TempArray[TB_Counter].href == url)) {
            if (TB_FoundURL) {
              TB_NextCaption = TB_TempArray[TB_Counter].title;
              TB_NextURL = TB_TempArray[TB_Counter].href;
              TB_NextHTML = '<span id="TB_next">&nbsp;&nbsp;<a href="#">' + settings.next + '</a></span>';
            }
            else {
              TB_PrevCaption = TB_TempArray[TB_Counter].title;
              TB_PrevURL = TB_TempArray[TB_Counter].href;
              TB_PrevHTML = '<span id="TB_prev">&nbsp;&nbsp;<a href="#">' + settings.prev + '</a></span>';
            }
          }
          else {
            TB_FoundURL = true;
            if (TB_TempArray.length > 1) { // Don't show "Image 1 of 1".
              TB_imageCount = settings.image_count.replace(/\!current/, (TB_Counter + 1)).replace(/\!total/, TB_TempArray.length);
            }
          }
        }
      }

      // Modified to preload previous and next image.
      imgPreloader = new Image();
      prevImg = new Image();
      nextImg = new Image();
      imgPreloader.onload = function() {
        imgPreloader.onload = null;

        var TB_Links = $('a[class*="thickbox"]');
        var i = -1;
        TB_Links.each(function(n) { if (this.href == imgPreloader.src) { i = n; } });
        if (i != -1) {
          if (i > 0) { prevImg.src = TB_Links[i - 1].href; }
          if (i + 1 < TB_Links.length) { nextImg.src = TB_Links[i + 1].href; }
        }

        // Resizing large images - orginal by Christian Montoya edited by me.
        var pagesize = tb_getPageSize();
        var x = pagesize[0] - 100;
        var y = pagesize[1] - 100;
        var imageWidth = imgPreloader.width;
        var imageHeight = imgPreloader.height;
        if (imageWidth > x) {
          imageHeight = imageHeight * (x / imageWidth);
          imageWidth = x;
          if (imageHeight > y) {
            imageWidth = imageWidth * (y / imageHeight);
            imageHeight = y;
          }
        }
        else if (imageHeight > y) {
          imageWidth = imageWidth * (y / imageHeight);
          imageHeight = y;
          if (imageWidth > x) {
            imageHeight = imageHeight * (x / imageWidth);
            imageWidth = x;
          }
        }
        // End Resizing

        TB_WIDTH = imageWidth < 320 ? 350 : imageWidth + 30;
        TB_HEIGHT = imageHeight + 60;
        $('#TB_window').append('<a href="" id="TB_ImageOff" title="' + settings.next_close + '"><img id="TB_Image" src="' + url + '" width="' + imageWidth + '" height="' + imageHeight + '" alt="' + caption + '" /></a><div id="TB_caption">' + caption + '<div id="TB_secondLine">' + TB_imageCount + TB_PrevHTML + TB_NextHTML + '</div></div><div id="TB_closeWindow"><a href="#" id="TB_closeWindowButton" title="' + settings.close + '">' + settings.close + '</a> ' + settings.esc_key + '</div>');
        $('#TB_closeWindowButton').click(tb_remove);

        if (!(TB_PrevHTML === '')) {
          function goPrev() {
            if ($(document).unbind('click',goPrev)) {$(document).unbind('click',goPrev);}
            $('#TB_window').remove();
            $('body').append('<div id="TB_window"></div>');
            tb_show(TB_PrevCaption, TB_PrevURL, imageGroup);
            return false;
          }
          $('#TB_prev').click(goPrev);
        }

        if (!(TB_NextHTML === '')) {
          function goNext() {
            $('#TB_window').remove();
            $('body').append('<div id="TB_window"></div>');
            tb_show(TB_NextCaption, TB_NextURL, imageGroup);
            return false;
          }
          $('#TB_next').click(goNext);
          $('#TB_ImageOff').click(goNext);
        }
        else {
          $('#TB_ImageOff').click(tb_remove);
        }

        document.onkeydown = function(e) {
          if (e == null) { // ie
            keycode = event.keyCode;
            escapeKey = 27;
          }
          else if ($.browser.safari || $.browser.opera) { // safari or opera
            keycode = e.which;
            escapeKey = 27;
          }
          else { // mozilla
            keycode = e.keyCode;
            escapeKey = e.DOM_VK_ESCAPE;
          }
          key = String.fromCharCode(keycode).toLowerCase();
          if (key == 'x' || key == 'c' || keycode == escapeKey) { // close
            tb_remove();
          }
          else if (key == 'n' || keycode == 39) { // display previous image
            if (!(TB_NextHTML == '')) {
              document.onkeydown = '';
              goNext();
            }
          }
          else if (key == 'p' || keycode == 37) { // display next image
            if (!(TB_PrevHTML == '')) {
              document.onkeydown = '';
              goPrev();
            }
          }
        };

        tb_position();
        $('#TB_load').remove();
        $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400); //for safari using css instead of show
      };

      imgPreloader.src = url;
    }
    else { //code to show html

      var queryString = url.replace(/^[^\?]+\??/,'');
      var params = tb_parseQuery( queryString );

      TB_WIDTH = (params['width']*1) + 30 || 630; //defaults to 630 if no paramaters were added to URL
      TB_HEIGHT = (params['height']*1) + 40 || 440; //defaults to 440 if no paramaters were added to URL
      ajaxContentW = TB_WIDTH - 30;
      ajaxContentH = TB_HEIGHT - 45;

      if (url.indexOf('TB_iframe') != -1) { // either iframe or ajax window
        urlNoQuery = url.split('TB_');
        $('#TB_iframeContent').remove();
        if (params['modal'] != 'true') { //iframe no modal
          $('#TB_window').append('<div id="TB_title"><div id="TB_ajaxWindowTitle">' + caption + '</div><div id="TB_closeAjaxWindow"><a href="#" id="TB_closeWindowButton" title="' + settings.close + '">' + settings.close + '</a> ' + settings.esc_key + '</div></div><iframe frameborder="0" hspace="0" src="' + urlNoQuery[0] + '" id="TB_iframeContent" name="TB_iframeContent' + Math.round(Math.random()*1000) + '" onload="tb_showIframe()" style="width:' + (ajaxContentW + 29) + 'px;height:' + (ajaxContentH + 17) + 'px;"></iframe>');
        }
        else { //iframe modal
          $('#TB_overlay').unbind();
          $('#TB_window').append('<iframe frameborder="0" hspace="0" src="' + urlNoQuery[0] + '" id="TB_iframeContent" name="TB_iframeContent' + Math.round(Math.random()*1000) + '" onload="tb_showIframe()" style="width:' + (ajaxContentW + 29) + 'px;height:' + (ajaxContentH + 17) + 'px;"></iframe>');
        }
      }
      else { // not an iframe, ajax
        if ($('#TB_window').css('display') != 'block') {
          if (params['modal'] != 'true') { //ajax no modal
            $('#TB_window').append('<div id="TB_title"><div id="TB_ajaxWindowTitle">' + caption + '</div><div id="TB_closeAjaxWindow"><a href="#" id="TB_closeWindowButton" title="' + settings.close + '">' + settings.close + '</a> ' + settings.esc_key + '</div></div><div id="TB_ajaxContent" style="width:' + ajaxContentW + 'px;height:' + ajaxContentH + 'px"></div>');
            window.setTimeout("tb_focusFirstFormElement()", 1000);
          }
          else { //ajax modal
            $('#TB_overlay').unbind();
            $('#TB_window').append('<div id="TB_ajaxContent" class="TB_modal" style="width:' + ajaxContentW + 'px;height:' + ajaxContentH + 'px;"></div>');
          }
        }
        else { //this means the window is already up, we are just loading new content via ajax
          $('#TB_ajaxContent')[0].style.width = ajaxContentW + 'px';
          $('#TB_ajaxContent')[0].style.height = ajaxContentH + 'px';
          $('#TB_ajaxContent')[0].scrollTop = 0;
          $('#TB_ajaxWindowTitle').html(caption);
        }
      }

      $('#TB_closeWindowButton').click(tb_remove);

      if (url.indexOf('TB_inline') != -1) {
        $('#TB_ajaxContent').append($('#' + params['inlineId']).children());
        $('#TB_window').unload(function () {
          $('#' + params['inlineId']).append($('#TB_ajaxContent').children()); // move elements back when you're finished
        });
        tb_position();
        $('#TB_load').remove();
        $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400);
      }
      else if (url.indexOf('TB_iframe') != -1) {
        tb_position();
        if ($.browser.safari || $.browserextra.iphone) { //safari needs help because it will not fire iframe onload
          $('#TB_load').remove();
          $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400);
        }
      }
      else {
        $('#TB_ajaxContent').load(url += '&random=' + (new Date().getTime()),function() { //to do a post change this load method
          tb_position();
          $('#TB_load').remove();
          Drupal.attachBehaviors('#TB_ajaxContent');
          $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400);
        });
      }
    }

    if (!params['modal']) {
      document.onkeyup = function(e) {
        if (e == null) { // ie
          keycode = event.keyCode;
          escapeKey = 27;
        }
        else if ($.browser.safari || $.browser.opera) { // safari or opera
          keycode = e.which;
          escapeKey = 27;
        }
        else { // mozilla
          keycode = e.keyCode;
          escapeKey = e.DOM_VK_ESCAPE;
        }
        key = String.fromCharCode(keycode).toLowerCase();
        if (keycode == escapeKey) { // close
          tb_remove();
        }
      };
    }

  }
  catch(e) {
    //nothing here
  }
}

//helper functions below
function tb_showIframe() {
  $('#TB_load').remove();
  $('#TB_window').css({display:'block', opacity: 0}).animate({opacity: 1}, 400);
}

function tb_remove() {
  $('#TB_imageOff').unbind('click');
  $('#TB_overlay').unbind('click');
  $('#TB_closeWindowButton').unbind('click');
  $('#TB_window').fadeOut(400,function() {$('#TB_window,#TB_overlay,#TB_HideSelect').trigger('unload').unbind().remove();});
  $('#TB_load').remove();
  if (typeof document.body.style.maxHeight == 'undefined') { //if IE 6
    $('body','html').css({height: 'auto', width: 'auto'});
    $('html').css('overflow','');
  }
  document.onkeydown = '';
  document.onkeyup = '';
  return false;
}

function tb_position() {
  $('#TB_window').css({marginLeft: '-' + parseInt((TB_WIDTH / 2),10) + 'px', width: TB_WIDTH + 'px'});
  if (!($.browserextra.msie6)) { // take away IE6
    $('#TB_window').css({marginTop: '-' + parseInt((TB_HEIGHT / 2),10) + 'px'});
  }
}

function tb_parseQuery( query ) {
  var Params = {};
  if ( ! query ) {return Params;}// return empty object
  var Pairs = query.split(/[;&]/);
  for ( var i = 0; i < Pairs.length; i++ ) {
    var KeyVal = Pairs[i].split('=');
    if ( ! KeyVal || KeyVal.length != 2 ) {continue;}
    var key = unescape( KeyVal[0] );
    var val = unescape( KeyVal[1] );
    val = val.replace(/\+/g, ' ');
    Params[key] = val;
  }
  return Params;
}

function tb_getPageSize() {
  var de = document.documentElement;
  var w = window.innerWidth || self.innerWidth || (de&&de.clientWidth) || document.body.clientWidth;
  var h = window.innerHeight || self.innerHeight || (de&&de.clientHeight) || document.body.clientHeight;
  arrayPageSize = [w,h];
  return arrayPageSize;
}

function tb_setBrowserExtra() {
  // Return if already set.
  if ($.browserextra) {
    return;
  }

  // Add iPhone, IE 6 and Mac Firefox browser detection.
  // msie6 fixes the fact that IE 7 now reports itself as MSIE 6.0 compatible
  var userAgent = navigator.userAgent.toLowerCase();
  $.browserextra = {
    iphone: /iphone/.test( userAgent ),
    msie6: /msie/.test( userAgent ) && !/opera/.test( userAgent ) && /msie 6\.0/.test( userAgent ) && !/msie 7\.0/.test( userAgent ) && !/msie 8\.0/.test( userAgent ),
    macfirefox: /mac/.test( userAgent ) && /firefox/.test( userAgent )
  };
}

function tb_focusFirstFormElement() {
  $('#TB_window form input[type=text]:first').focus();
}
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright  1990, 1992, 2002 Adobe Systems Incorporated.  All Rights Reserved. 
 * 1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Glypha is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed
 * through Linotype Library GmbH, and may be registered in certain jurisdictions.
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":230,"face":{"font-family":"glyph","font-weight":300,"font-stretch":"normal","units-per-em":"460","panose-1":"2 6 4 3 3 5 5 2 2 4","ascent":"329","descent":"-131","x-height":"6","bbox":"-8 -423 460 115","underline-thickness":"23","underline-position":"-23","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":115},"#":{"d":"73,-106r-15,106r-22,0r15,-106r-46,0r0,-22r49,0r10,-73r-47,0r0,-22r50,0r14,-106r23,0r-15,106r68,0r14,-106r22,0r-14,106r46,0r0,22r-49,0r-10,73r47,0r0,22r-50,0r-15,106r-22,0r15,-106r-68,0xm154,-201r-68,0r-10,73r68,0"},"$":{"d":"107,6v-35,-4,-58,-23,-69,-52r0,46r-22,0r0,-113r22,0v3,52,20,93,69,99r0,-145v-45,-14,-90,-28,-91,-86v-1,-56,35,-91,91,-90r0,-41r16,0r0,43v31,4,49,24,62,44r0,-40r22,0r0,111r-22,0v-1,-52,-19,-88,-62,-96r0,135v46,15,91,30,91,91v0,57,-34,91,-91,94r0,40r-16,0r0,-40xm123,-14v66,3,86,-106,25,-128v-8,-3,-16,-7,-25,-10r0,138xm107,-316v-68,-6,-85,100,-25,120v8,3,16,7,25,10r0,-130"},"%":{"d":"261,6v-45,0,-58,-41,-58,-88v0,-46,12,-87,58,-87v47,0,58,42,58,87v0,46,-12,88,-58,88xm97,-160v-46,0,-58,-41,-58,-87v0,-46,12,-88,58,-88v46,0,58,42,58,88v0,46,-12,87,-58,87xm261,-153v-54,0,-54,142,0,142v31,0,38,-31,38,-71v0,-41,-7,-71,-38,-71xm252,-335r19,0r-166,341r-19,0xm97,-318v-32,0,-39,31,-39,71v0,40,8,70,39,70v31,0,39,-30,39,-70v0,-40,-7,-71,-39,-71","w":357},"&":{"d":"128,-316v-43,-2,-62,47,-36,82v9,12,17,25,29,38v32,-19,56,-34,56,-72v0,-31,-20,-47,-49,-48xm201,-268v0,43,-31,68,-66,87r88,101v16,-21,20,-60,24,-93r-35,0r0,-20r99,0r0,20r-40,0v-4,43,-13,83,-33,110r39,44r45,0r0,19r-64,0r-35,-41v-26,28,-54,47,-102,47v-60,0,-95,-35,-95,-95v0,-53,33,-74,73,-96v-24,-31,-47,-45,-47,-83v0,-43,29,-67,75,-67v45,0,74,23,74,67xm54,-89v-7,89,120,95,155,31r-97,-111v-35,19,-55,38,-58,80","w":340},"\u2019":{"d":"51,-329r33,0v3,41,-12,63,-21,92r-19,0r20,-59r-13,0r0,-33","w":127},"(":{"d":"122,-341v-82,111,-83,307,0,417r-22,0v-36,-54,-67,-123,-67,-208v0,-85,32,-154,67,-209r22,0","w":127},")":{"d":"6,76v83,-110,83,-307,0,-417r22,0v35,55,67,124,67,209v0,85,-31,154,-67,208r-22,0","w":127},"*":{"d":"28,-287r58,29r-5,-71r25,0r-6,71r59,-29r8,27r-63,16r44,51r-20,16r-35,-59r-34,59r-20,-16r43,-51r-62,-16","w":186},"+":{"d":"126,-104r-104,0r0,-25r104,0r0,-104r24,0r0,104r104,0r0,25r-104,0r0,104r-24,0r0,-104","w":276},",":{"d":"41,-33r33,0v3,41,-12,63,-20,92r-20,0r21,-59r-14,0r0,-33","w":115},"-":{"d":"30,-137r110,0r0,22r-110,0r0,-22","w":170},".":{"d":"41,-33r33,0r0,33r-33,0r0,-33","w":115},"\/":{"d":"131,-335r24,0r-124,341r-25,0","w":161},"0":{"d":"115,-316v-58,5,-70,77,-70,151v0,75,3,151,70,151v58,0,70,-77,70,-151v0,-76,-4,-144,-70,-151xm114,6v-79,0,-97,-79,-97,-167v0,-92,17,-174,99,-174v80,0,97,80,97,167v0,93,-18,174,-99,174"},"1":{"d":"47,-265v28,-22,45,-39,68,-64r28,0r0,310r46,0r0,19r-121,0r0,-19r50,0r-1,-286v-17,25,-46,49,-70,68r0,-28"},"2":{"d":"119,-335v82,-4,104,97,58,152r-135,161r143,0r0,-53r25,0r0,75r-190,0r0,-33r98,-112v26,-34,58,-57,58,-106v0,-36,-20,-62,-57,-62v-46,0,-64,33,-68,76r-25,0v7,-55,31,-95,93,-98"},"3":{"d":"115,-313v-37,0,-60,29,-62,72r-27,0v4,-55,31,-94,88,-94v56,0,90,34,90,90v0,44,-27,71,-65,79v42,6,64,34,68,80v8,100,-144,123,-175,40v-5,-12,-9,-28,-9,-46r28,0v1,44,22,75,64,75v43,0,64,-30,64,-70v0,-49,-31,-68,-79,-69r0,-22v48,-1,76,-21,76,-68v0,-39,-21,-67,-61,-67"},"4":{"d":"152,-114r-1,-191r-124,191r125,0xm177,-329r0,215r45,0r0,19r-45,0r0,76r41,0r0,19r-116,0r0,-19r50,0r0,-76r-144,0r0,-31r136,-203r33,0"},"5":{"d":"121,-189v-37,0,-54,20,-64,52r-25,0r6,-192r162,0r0,22r-137,0r-5,133v11,-20,33,-38,63,-37v61,3,85,40,92,102v12,110,-131,157,-177,65v-5,-12,-7,-26,-7,-43r24,0v3,42,25,70,66,70v50,0,69,-39,69,-89v0,-47,-19,-83,-67,-83"},"6":{"d":"116,-187v-46,0,-67,37,-68,87v0,50,22,86,68,86v47,0,69,-35,69,-86v-1,-50,-22,-87,-69,-87xm20,-134v0,-103,15,-195,106,-201v52,-4,80,33,81,85r-24,0v5,-67,-82,-88,-111,-32v-16,30,-29,77,-26,128v12,-30,36,-52,76,-52v59,0,88,44,88,102v0,65,-32,110,-97,110v-74,0,-93,-67,-93,-140"},"7":{"d":"17,-329r196,0r0,24r-94,226r-28,79r-28,0v21,-58,42,-112,63,-162r62,-145r-146,0r0,58r-25,0r0,-80"},"8":{"d":"115,-161v-45,0,-68,30,-68,74v0,42,23,73,68,73v44,0,68,-31,68,-73v0,-44,-23,-74,-68,-74xm117,-316v-41,0,-65,27,-65,68v0,42,24,68,65,68v41,0,63,-27,64,-68v1,-43,-24,-68,-64,-68xm87,-170v-36,-10,-61,-37,-59,-83v2,-53,36,-82,89,-82v53,0,87,29,89,82v0,46,-24,74,-63,83v39,6,64,40,64,84v-1,59,-34,92,-92,92v-58,0,-91,-33,-92,-92v0,-44,25,-78,64,-84"},"9":{"d":"114,-316v-47,0,-69,36,-69,86v0,50,20,87,69,87v48,0,68,-38,68,-87v0,-50,-22,-86,-68,-86xm210,-195v0,102,-15,201,-106,201v-52,0,-80,-34,-81,-86r24,0v-6,67,82,88,111,32v15,-30,29,-77,26,-127v-12,30,-36,52,-76,52v-59,0,-88,-45,-88,-102v0,-65,32,-110,97,-110v76,0,93,67,93,140"},":":{"d":"41,-33r33,0r0,33r-33,0r0,-33xm41,-230r33,0r0,33r-33,0r0,-33","w":115},";":{"d":"41,-230r33,0r0,33r-33,0r0,-33xm41,-33r33,0v3,41,-12,63,-20,92r-20,0r21,-59r-14,0r0,-33","w":115},"<":{"d":"22,-129r232,-108r0,24r-205,97r205,96r0,25r-232,-109r0,-25","w":276},"=":{"d":"22,-84r232,0r0,25r-232,0r0,-25xm22,-173r232,0r0,24r-232,0r0,-24","w":276},">":{"d":"22,-20r205,-96r-205,-97r0,-24r232,108r0,25r-232,109r0,-25","w":276},"?":{"d":"86,-33r33,0r0,33r-33,0r0,-33xm201,-252v0,89,-96,82,-85,182r-28,0v-12,-101,82,-99,85,-183v1,-36,-24,-64,-60,-63v-42,1,-59,28,-61,68r-27,0v3,-54,30,-85,85,-87v55,-1,91,30,91,83"},"@":{"d":"197,-264v28,0,41,17,50,38r10,-30r28,0r-50,159v1,8,5,13,16,12v50,-7,78,-53,78,-108v0,-78,-58,-120,-137,-120v-92,0,-153,59,-153,150v0,91,63,146,155,146v58,0,97,-26,123,-60r28,0v-29,48,-78,83,-151,83v-106,0,-180,-65,-180,-171v0,-104,73,-170,177,-170v92,0,163,50,163,141v0,71,-44,123,-107,131v-21,3,-31,-13,-35,-30v-14,16,-35,31,-63,30v-40,-2,-61,-29,-61,-70v0,-71,40,-131,109,-131xm196,-242v-55,4,-80,52,-83,107v-2,30,16,52,44,50v51,-4,74,-56,78,-108v2,-26,-13,-51,-39,-49","w":368},"A":{"d":"6,-19r28,0r116,-310r33,0r115,310r29,0r0,19r-103,0r0,-19r46,0r-35,-100r-138,0r-35,100r46,0r0,19r-102,0r0,-19xm228,-138r-62,-169r-62,169r124,0","w":332},"B":{"d":"227,-92v-1,-42,-24,-67,-69,-67r-78,0r0,140r70,0v47,1,78,-27,77,-73xm219,-245v0,-40,-19,-64,-58,-65r-81,0r0,132v71,3,141,3,139,-67xm254,-92v0,55,-35,92,-89,92r-155,0r0,-19r46,0r0,-291r-46,0r0,-19r149,0v57,-2,86,27,88,78v2,46,-25,74,-63,80v47,1,70,35,70,79","w":281},"C":{"d":"167,-335v46,-1,77,24,92,55r0,-49r22,0r0,115r-22,0v-1,-57,-37,-101,-95,-99v-80,3,-113,63,-113,148v0,85,33,145,113,148v61,2,85,-39,92,-93r28,0v-6,69,-45,116,-117,116v-99,0,-144,-72,-144,-171v0,-99,45,-167,144,-170","w":306},"D":{"d":"292,-165v0,101,-51,165,-153,165r-129,0r0,-19r46,0r0,-291r-46,0r0,-19r129,0v102,2,153,62,153,164xm264,-165v-1,-107,-64,-157,-184,-145r0,291v119,11,184,-37,184,-146","w":315},"E":{"d":"10,-19r46,0r0,-291r-46,0r0,-19r241,0r0,97r-22,0r0,-78r-149,0r0,132r81,0r0,-54r22,0r0,130r-22,0r0,-57r-81,0r0,140r151,0r0,-83r22,0r0,102r-243,0r0,-19","w":281},"F":{"d":"10,-19r46,0r0,-291r-46,0r0,-19r233,0r0,100r-22,0r0,-81r-141,0r0,138r78,0r0,-54r22,0r0,128r-22,0r0,-54r-78,0r0,133r57,0r0,19r-127,0r0,-19","w":255},"G":{"d":"170,-335v47,-1,78,24,93,55r0,-49r22,0r0,115r-22,0v-2,-61,-35,-99,-96,-99v-82,0,-116,62,-116,148v0,85,33,148,113,148v71,0,103,-47,98,-125r-54,0r0,-19r117,0r0,19r-38,0r0,142r-25,0v-1,-17,2,-38,-1,-53v-13,36,-49,59,-94,59v-99,0,-144,-72,-144,-171v0,-100,46,-167,147,-170","w":332},"H":{"d":"206,-19r46,0r0,-137r-172,0r0,137r46,0r0,19r-116,0r0,-19r46,0r0,-291r-46,0r0,-19r116,0r0,19r-46,0r0,132r172,0r0,-132r-46,0r0,-19r116,0r0,19r-46,0r0,291r46,0r0,19r-116,0r0,-19","w":332},"I":{"d":"56,-310r-46,0r0,-19r116,0r0,19r-46,0r0,291r46,0r0,19r-116,0r0,-19r46,0r0,-291","w":136},"J":{"d":"88,-17v40,0,53,-26,53,-71r0,-222r-46,0r0,-19r104,0r0,19r-33,0r0,232v-1,51,-26,84,-76,84v-60,0,-84,-40,-80,-107r27,0v-1,47,8,84,51,84","w":204},"K":{"d":"10,-19r46,0r0,-291r-46,0r0,-19r116,0r0,19r-46,0r0,134r137,-134r-41,0r0,-19r94,0r0,19r-22,0r-137,135r139,156r24,0r0,19r-94,0r0,-19r39,0r-139,-155r0,155r46,0r0,19r-116,0r0,-19","w":281},"L":{"d":"238,-106r0,106r-228,0r0,-19r46,0r0,-291r-46,0r0,-19r128,0r0,19r-58,0r0,291r136,0r0,-87r22,0","w":255},"M":{"d":"58,-310r-47,0r0,-19r92,0r102,292r100,-292r92,0r0,19r-46,0r0,291r46,0r0,19r-112,0r0,-19r41,0r0,-291r-3,0r-108,310r-22,0r-108,-310r-2,0r0,291r41,0r0,19r-113,0r0,-19r47,0r0,-291","w":408},"N":{"d":"56,-310r-46,0r0,-19r88,0r163,301r0,-282r-46,0r0,-19r110,0r0,19r-39,0r0,310r-38,0r-166,-310r-2,0r0,291r46,0r0,19r-116,0r0,-19r46,0r0,-291","w":332},"O":{"d":"166,6v-98,0,-143,-72,-143,-171v0,-98,45,-170,143,-170v98,0,143,72,143,170v0,99,-45,171,-143,171xm166,-316v-83,0,-115,62,-115,151v0,89,32,151,115,151v84,0,116,-63,116,-151v0,-88,-32,-151,-116,-151","w":332},"P":{"d":"246,-238v0,64,-36,97,-104,96r-62,0r0,123r56,0r0,19r-126,0r0,-19r46,0r0,-291r-46,0r0,-19r140,0v61,0,96,33,96,91xm218,-237v0,-72,-64,-78,-138,-73r0,149v75,4,138,0,138,-76","w":255},"Q":{"d":"309,-165v1,64,-23,118,-62,146r80,0r0,19v0,0,-114,-2,-161,6v-98,-3,-143,-72,-143,-171v0,-98,45,-170,143,-170v98,0,141,72,143,170xm166,-316v-83,0,-115,62,-115,151v0,89,32,151,115,151v84,0,116,-63,116,-151v0,-88,-32,-151,-116,-151","w":332},"R":{"d":"214,-237v0,-72,-60,-78,-134,-73r0,138v69,3,134,2,134,-65xm242,-238v0,44,-26,70,-63,78v54,15,49,91,69,141r34,0r0,19r-55,0v-24,-57,-11,-152,-91,-152r-56,0r0,133r46,0r0,19r-116,0r0,-19r46,0r0,-291r-46,0r0,-19r139,0v65,-1,93,31,93,91","w":289},"S":{"d":"113,-335v42,0,64,22,79,46r0,-40r22,0r0,111r-22,0v-1,-57,-23,-95,-77,-98v-62,-3,-86,86,-38,115v54,32,144,28,144,113v0,57,-32,92,-90,94v-45,1,-73,-19,-86,-52r0,46r-22,0r0,-113r22,0v5,54,20,99,77,99v45,0,74,-28,71,-74v-6,-99,-170,-49,-170,-157v0,-55,35,-90,90,-90","w":239},"T":{"d":"128,-307r-91,0r0,80r-22,0r0,-102r252,0r0,102r-22,0r0,-80r-92,0r0,288r54,0r0,19r-133,0r0,-19r54,0r0,-288","w":281},"U":{"d":"153,6v-149,5,-107,-179,-113,-316r-34,0r0,-19r109,0r0,19r-50,0v9,119,-39,296,88,296v128,0,79,-178,88,-296r-50,0r0,-19r110,0r0,19r-35,0r0,192v-1,76,-37,122,-113,124","w":306},"V":{"d":"-1,-329r105,0r0,19r-49,0r99,282r97,-282r-49,0r0,-19r106,0r0,19r-29,0r-111,310r-30,0r-110,-310r-29,0r0,-19","w":306},"W":{"d":"97,0r-70,-310r-27,0r0,-19r104,0r0,19r-52,0r63,282r75,-301r37,0r76,301r62,-282r-49,0r0,-19r100,0r0,19r-26,0r-70,310r-34,0r-78,-305r-77,305r-34,0","w":416},"X":{"d":"0,-19r31,0r108,-154r-97,-137r-33,0r0,-19r106,0r0,19r-42,0r82,118r83,-118r-42,0r0,-19r103,0r0,19r-33,0r-97,137r107,154r31,0r0,19r-111,0r0,-19r50,0r-94,-135r-94,135r51,0r0,19r-109,0r0,-19","w":315},"Y":{"d":"128,-138r-99,-172r-28,0r0,-19r103,0r0,19r-48,0r85,148r84,-148r-43,0r0,-19r98,0r0,19r-27,0r-100,172r0,119r54,0r0,19r-133,0r0,-19r54,0r0,-119","w":281},"Z":{"d":"15,-28r203,-282r-176,0r0,78r-22,0r0,-97r220,0r0,27r-203,283r185,0r0,-83r22,0r0,102r-229,0r0,-28","w":264},"[":{"d":"44,-341r60,0r0,19r-35,0r0,379r35,0r0,19r-60,0r0,-417","w":127},"\\":{"d":"6,-335r25,0r124,341r-24,0","w":161},"]":{"d":"59,-322r-35,0r0,-19r60,0r0,417r-60,0r0,-19r35,0r0,-379","w":127},"^":{"d":"43,-161r85,-168r20,0r85,168r-25,0r-70,-138r-70,138r-25,0","w":276},"_":{"d":"0,34r230,0r0,24r-230,0r0,-24"},"\u2018":{"d":"44,-237v-3,-41,12,-63,20,-92r20,0r-21,59r14,0r0,33r-33,0","w":127},"a":{"d":"95,-13v56,-2,72,-48,71,-108v-63,-3,-124,-4,-124,58v0,30,23,51,53,50xm109,-224v-36,0,-56,22,-58,55r-25,0v2,-48,35,-74,82,-75v55,-1,83,26,83,80r0,145r32,0r0,19r-54,0v-1,-15,2,-35,-1,-48v-12,37,-34,53,-78,54v-44,1,-73,-27,-73,-70v0,-74,68,-82,149,-78v4,-51,-12,-82,-57,-82"},"b":{"d":"137,-13v56,0,76,-48,76,-106v0,-58,-20,-105,-76,-105v-53,0,-74,43,-74,101v0,58,16,110,74,110xm144,6v-44,2,-60,-21,-78,-46r0,40r-57,0r0,-19r32,0r0,-291r-32,0r0,-19r57,0r1,132v14,-29,37,-49,77,-47v67,3,94,55,94,125v0,74,-26,122,-94,125","w":255},"c":{"d":"126,-13v38,1,59,-26,64,-61r23,0v-6,48,-34,80,-87,80v-73,0,-101,-52,-101,-125v0,-73,30,-125,101,-125v35,0,57,19,67,45r0,-38r20,0r0,87r-20,0v-4,-46,-22,-74,-67,-74v-56,0,-76,48,-76,105v0,57,19,105,76,106"},"d":{"d":"119,-224v-56,0,-77,48,-77,105v0,57,20,106,77,106v58,0,74,-52,74,-110v0,-58,-21,-101,-74,-101xm111,-244v42,-2,63,20,79,47r0,-113r-40,0r0,-19r65,0r0,310r32,0r0,19r-57,0v-1,-13,2,-29,-1,-40v-18,31,-35,46,-78,46v-68,0,-94,-53,-94,-125v0,-69,27,-122,94,-125","w":255},"e":{"d":"190,-133v14,-95,-116,-124,-140,-37v-3,11,-7,24,-8,37r148,0xm17,-119v-11,-108,117,-169,176,-85v14,22,22,55,22,90r-173,0v2,56,24,100,77,101v40,0,66,-20,70,-58r22,0v-7,48,-40,77,-92,77v-73,-1,-95,-54,-102,-125"},"f":{"d":"138,-313v-51,-14,-75,17,-67,76r49,0r0,19r-49,0r0,199r42,0r0,19r-104,0r0,-19r37,0r0,-199r-37,0r0,-19r37,0v-6,-69,21,-109,92,-96r0,20","w":127},"g":{"d":"117,-224v-56,1,-75,46,-75,104v0,53,22,101,77,101v96,0,96,-207,-2,-205xm112,-244v39,-1,66,22,78,51r0,-44r59,0r0,19r-34,0r0,206v9,88,-87,116,-156,81v-17,-8,-27,-24,-29,-48r25,0v6,30,26,42,63,42v67,0,77,-51,71,-117v-10,33,-37,55,-77,54v-67,-2,-95,-54,-95,-122v0,-68,28,-120,95,-122","w":255},"h":{"d":"133,-224v-80,1,-60,121,-62,205r37,0r0,19r-99,0r0,-19r37,0r0,-291r-37,0r0,-19r62,0r1,129v13,-29,35,-44,69,-44v102,0,65,133,72,225r34,0r0,19r-99,0r0,-19r40,0v-8,-78,30,-206,-55,-205","w":255},"i":{"d":"43,-320r31,0r0,33r-31,0r0,-33xm6,-19r40,0r0,-199r-40,0r0,-19r65,0r0,218r37,0r0,19r-102,0r0,-19","w":119},"j":{"d":"43,-320r31,0r0,33r-31,0r0,-33xm71,30v3,44,-29,60,-72,50r0,-20v26,10,47,-2,47,-38r0,-240r-40,0r0,-19r65,0r0,267","w":110},"k":{"d":"9,-19r37,0r0,-291r-37,0r0,-19r62,0r0,214r100,-103r-31,0r0,-19r83,0r0,19r-27,0r-67,68r74,131r24,0r0,19r-78,0r0,-19r29,0r-65,-113r-42,43r0,70r37,0r0,19r-99,0r0,-19"},"l":{"d":"6,-19r40,0r0,-291r-40,0r0,-19r65,0r0,310r37,0r0,19r-102,0r0,-19","w":110},"m":{"d":"135,-224v-84,0,-62,120,-64,205r37,0r0,19r-99,0r0,-19r37,0r0,-199r-37,0r0,-19r62,0v1,12,-2,28,1,38v10,-24,32,-45,66,-45v38,0,54,22,64,49v9,-28,32,-49,68,-49v45,0,70,29,70,78r0,147r34,0r0,19r-98,0r0,-19r40,0v-8,-77,30,-205,-53,-205v-81,0,-52,124,-57,205r34,0r0,19r-99,0r0,-19r40,0r0,-137v-2,-36,-10,-68,-46,-68","w":383},"n":{"d":"133,-224v-80,1,-60,121,-62,205r37,0r0,19r-99,0r0,-19r37,0r0,-199r-37,0r0,-19r62,0v1,12,-2,27,1,37v13,-29,35,-44,69,-44v102,0,65,133,72,225r34,0r0,19r-99,0r0,-19r40,0v-8,-78,30,-206,-55,-205","w":255},"o":{"d":"119,-224v-54,0,-77,47,-77,105v0,57,20,106,77,106v55,0,77,-47,77,-106v0,-57,-20,-105,-77,-105xm119,6v-71,0,-102,-55,-102,-125v0,-71,33,-125,102,-125v71,0,102,51,102,125v0,72,-32,125,-102,125","w":238},"p":{"d":"137,-13v56,0,76,-48,76,-106v0,-58,-20,-105,-76,-105v-58,0,-73,51,-74,109v-1,59,21,102,74,102xm144,6v-41,1,-62,-19,-78,-46r0,97r38,0r0,19r-99,0r0,-19r36,0r0,-275r-36,0r0,-19r61,0v1,14,-2,32,1,44v15,-31,34,-51,77,-51v67,0,94,51,94,125v0,70,-26,122,-94,125","w":255},"q":{"d":"119,-224v-56,0,-77,48,-77,105v0,57,20,106,77,106v53,0,75,-43,74,-102v-1,-57,-16,-109,-74,-109xm111,-244v45,0,60,19,79,51r0,-44r61,0r0,19r-36,0r0,275r36,0r0,19r-99,0r0,-19r38,0r-1,-97v-14,29,-38,47,-78,46v-68,-2,-94,-57,-94,-125v0,-72,27,-125,94,-125","w":255},"r":{"d":"147,-220v-94,-14,-75,109,-76,201r45,0r0,19r-107,0r0,-19r37,0r0,-199r-37,0r0,-19r62,0v1,13,-2,31,1,42v9,-32,37,-54,75,-47r0,22","w":153},"s":{"d":"185,-67v0,81,-124,98,-146,35r0,32r-20,0r0,-83r20,0v1,43,24,66,63,70v54,6,83,-73,31,-90v-44,-14,-111,-6,-111,-67v0,-79,112,-98,140,-39r0,-28r19,0r0,81r-19,0v4,-44,-21,-68,-60,-68v-44,0,-77,54,-43,78v40,29,126,5,126,79","w":204},"t":{"d":"92,6v-33,0,-46,-19,-46,-52r0,-172r-42,0r0,-19r42,0r0,-51r25,-9r0,60r64,0r0,19r-64,0r0,166v-1,22,7,39,23,39v24,0,30,-22,29,-50r19,0v2,39,-14,69,-50,69","w":153},"u":{"d":"115,6v-102,0,-65,-132,-72,-224r-34,0r0,-19r59,0r0,156v0,44,14,68,54,68v81,0,61,-120,63,-205r-37,0r0,-19r62,0r0,218r37,0r0,19r-62,0v-1,-12,2,-29,-1,-39v-11,26,-34,45,-69,45","w":255},"v":{"d":"26,-218r-20,0r0,-19r79,0r0,19r-34,0r64,190r64,-190r-34,0r0,-19r79,0r0,19r-20,0r-75,218r-30,0"},"w":{"d":"29,-218r-22,0r0,-19r83,0r0,19r-37,0r57,190r57,-209r33,0r57,209r56,-190r-33,0r0,-19r79,0r0,19r-21,0r-64,218r-33,0r-58,-213r-57,213r-34,0","w":366},"x":{"d":"7,-19r21,0r76,-103r-70,-96r-20,0r0,-19r81,0r0,19r-33,0r57,79r59,-79r-30,0r0,-19r81,0r0,19r-24,0r-71,96r76,103r21,0r0,19r-81,0r0,-19r33,0r-64,-87r-63,87r32,0r0,19r-81,0r0,-19","w":238},"y":{"d":"6,-237r80,0r0,19r-34,0r66,182r66,-182r-35,0r0,-19r75,0r0,19r-16,0r-92,252v-9,33,-34,58,-76,46r0,-19v46,11,52,-26,65,-61r-78,-218r-21,0r0,-19"},"z":{"d":"23,-23r140,-195r-117,0r0,47r-22,0r0,-66r164,0r0,23r-140,195r120,0r0,-55r22,0r0,74r-167,0r0,-23","w":212},"{":{"d":"116,76v-131,13,-16,-186,-100,-198r0,-20v84,-12,-32,-211,100,-199r0,19v-61,-11,-41,69,-41,121v0,35,-14,57,-34,69v40,17,35,85,34,145v-1,29,7,50,41,44r0,19","w":127},"|":{"d":"39,-345r24,0r0,460r-24,0r0,-460","w":102},"}":{"d":"12,-341v132,-13,16,187,100,199r0,20v-84,12,31,211,-100,198r0,-19v61,10,41,-68,41,-120v0,-34,14,-57,34,-69v-41,-17,-34,-86,-34,-146v0,-28,-7,-51,-41,-44r0,-19","w":127},"~":{"d":"87,-121v-19,0,-31,15,-39,33r-16,-16v12,-23,29,-39,57,-39v38,0,64,26,98,31v18,-2,32,-19,41,-33r16,15v-14,24,-28,40,-57,40v-40,0,-58,-31,-100,-31","w":276},"\u00a1":{"d":"67,-181r19,0r7,258r-33,0xm60,-252r33,0r0,33r-33,0r0,-33","w":152},"\u00a2":{"d":"213,-74v-4,46,-35,76,-81,80r0,40r-17,0r0,-40v-64,-7,-90,-55,-90,-125v0,-70,27,-117,90,-125r0,-39r17,0r0,39v31,3,51,22,61,45r0,-38r20,0r0,87r-20,0v-3,-44,-20,-70,-61,-74r0,210v35,-4,52,-26,58,-60r23,0xm115,-224v-90,11,-85,202,0,210r0,-210"},"\u00a3":{"d":"133,-316v-57,0,-59,59,-57,121r58,0r0,19r-58,0r0,157r112,0r0,-52r25,0r0,71r-201,0r0,-19r40,0r0,-157r-40,0r0,-19r40,0v-4,-77,7,-141,82,-140v50,0,77,28,79,76r-25,0v0,-37,-19,-57,-55,-57"},"\u00a5":{"d":"61,-19r43,0r0,-69r-70,0r0,-20r70,0v0,-16,2,-33,-5,-42r-65,0r0,-19r56,0r-67,-141r-22,0r0,-19r84,0r0,19r-39,0r66,141r6,0r66,-141r-35,0r0,-19r80,0r0,19r-22,0r-67,141r56,0r0,19r-65,0v-6,9,-5,26,-5,42r70,0r0,20r-70,0r0,69r43,0r0,19r-108,0r0,-19"},"\u00a7":{"d":"139,-88v29,-11,51,-55,21,-78v-18,-14,-40,-21,-68,-33v-30,6,-52,53,-24,77v18,15,41,25,71,34xm34,-269v-2,-77,133,-88,155,-22v4,10,7,23,7,38r-25,0v7,-71,-112,-81,-112,-15v0,75,141,44,141,126v0,31,-16,52,-42,62v24,11,37,31,38,61v4,83,-136,90,-158,25v-4,-10,-6,-22,-6,-36r25,0v0,38,21,56,57,58v43,3,76,-44,47,-76v-36,-40,-131,-27,-131,-100v0,-32,18,-53,45,-61v-25,-12,-40,-30,-41,-60"},"'":{"d":"52,-329r24,0r0,92r-24,0r0,-92","w":127},"\u201c":{"d":"42,-237v-3,-41,12,-63,20,-92r19,0r-20,59r14,0r0,33r-33,0xm123,-237v-3,-41,12,-63,20,-92r19,0r-20,59r14,0r0,33r-33,0","w":204},"\u00ab":{"d":"36,-126r39,-100r23,0r-40,100r40,100r-23,0xm107,-126r39,-100r22,0r-39,100r39,100r-22,0","w":204},"\u2013":{"d":"0,-136r230,0r0,20r-230,0r0,-20"},"\u00b7":{"d":"41,-167r33,0r0,33r-33,0r0,-33","w":115},"\u00b6":{"d":"35,-248v-5,-92,99,-83,191,-81r0,373r-25,0r0,-351r-53,0r0,351r-25,0r0,-213v-52,-2,-85,-30,-88,-79","w":276},"\u201d":{"d":"129,-329r33,0v3,41,-12,63,-20,92r-19,0r20,-59r-14,0r0,-33xm48,-329r33,0v3,41,-12,63,-20,92r-19,0r20,-59r-14,0r0,-33","w":204},"\u00bb":{"d":"146,-126r-39,-100r22,0r39,100r-39,100r-22,0xm75,-126r-39,-100r22,0r40,100r-40,100r-22,0","w":204},"\u2026":{"d":"367,-33r33,0r0,33r-33,0r0,-33xm213,-33r34,0r0,33r-34,0r0,-33xm60,-33r33,0r0,33r-33,0r0,-33","w":460},"\u00bf":{"d":"111,-252r33,0r0,33r-33,0r0,-33xm29,0v0,-89,96,-82,85,-182r28,0v12,101,-81,99,-85,182v-2,36,23,63,60,63v43,0,59,-28,61,-67r27,0v-4,53,-30,86,-85,87v-55,1,-91,-30,-91,-83"},"`":{"d":"12,-335r36,0r41,62r-25,0","w":118},"\u00b4":{"d":"70,-335r37,0r-52,62r-25,0","w":118},"\u00af":{"d":"0,-313r119,0r0,20r-119,0r0,-20","w":118},"\u00a8":{"d":"2,-318r30,0r0,30r-30,0r0,-30xm86,-318r31,0r0,30r-31,0r0,-30","w":118},"\u00b8":{"d":"73,55v1,-16,-24,-20,-39,-15r-6,-9r23,-33r19,0r-17,23v25,1,45,9,45,34v0,39,-60,42,-89,24r8,-16v16,10,54,17,56,-8","w":118},"\u2014":{"d":"0,-136r460,0r0,20r-460,0r0,-20","w":460},"\u00c6":{"d":"202,-310r-4,0r-90,172r119,0xm6,-19r18,0r160,-310r223,0r0,97r-22,0r0,-78r-158,0r19,132r71,0r0,-54r22,0r0,126r-22,0r0,-53r-68,0r20,140r120,0r0,-87r22,0r0,106r-218,0r0,-19r51,0r-14,-100r-131,0r-50,100r48,0r0,19r-91,0r0,-19","w":434},"\u00aa":{"d":"107,-260v-39,-1,-79,-1,-78,35v0,16,16,26,33,26v32,-2,46,-26,45,-61xm71,-321v-22,0,-35,13,-37,33r-19,0v2,-32,22,-47,55,-47v35,1,57,12,56,48r0,85r21,0r0,13r-38,0v-1,-9,2,-22,-1,-29v-7,47,-98,44,-98,-9v0,-47,46,-49,97,-47v2,-30,-10,-47,-36,-47","w":149},"\u00d8":{"d":"166,-14v121,6,140,-168,91,-253r-172,217v18,22,44,34,81,36xm166,-316v-120,-5,-139,164,-91,254r172,-218v-18,-22,-44,-34,-81,-36xm166,6v-44,1,-73,-16,-96,-38r-32,42r-12,-9r34,-44v-24,-29,-37,-71,-37,-122v0,-98,45,-168,143,-170v43,-1,73,15,96,37r32,-41r12,9r-34,44v24,29,37,70,37,121v0,99,-45,169,-143,171","w":332},"\u0152":{"d":"51,-165v0,111,63,171,173,146r0,-291v-108,-25,-173,34,-173,145xm23,-165v0,-124,77,-191,204,-164r176,0r0,97r-22,0r0,-78r-135,0r0,132r68,0r0,-54r22,0r0,130r-22,0r0,-57r-68,0r0,140r138,0r0,-83r22,0r0,102r-181,0v-126,27,-202,-44,-202,-165","w":434},"\u00ba":{"d":"71,-321v-34,0,-48,27,-48,61v0,34,14,61,48,61v34,0,49,-26,49,-61v0,-35,-15,-61,-49,-61xm71,-185v-47,0,-67,-30,-67,-75v0,-46,21,-75,67,-75v46,0,68,29,68,75v-1,46,-21,75,-68,75","w":143},"\u00e6":{"d":"95,-13v50,-2,59,-51,61,-101v-56,-1,-114,-4,-114,51v0,30,23,51,53,50xm299,-133v0,-54,-12,-91,-57,-91v-46,0,-58,45,-64,91r121,0xm26,-169v-8,-81,133,-105,147,-28v16,-22,30,-48,68,-47v67,2,85,55,82,130r-145,0v0,55,19,101,63,101v37,0,53,-25,56,-59r25,0v-6,45,-30,77,-79,78v-48,2,-68,-32,-79,-64v-10,34,-29,64,-74,64v-44,0,-73,-27,-73,-70v0,-70,67,-72,139,-69v1,-49,0,-91,-47,-91v-36,0,-56,22,-58,55r-25,0","w":340},"\u0131":{"d":"6,-19r40,0r0,-199r-40,0r0,-19r65,0r0,218r37,0r0,19r-102,0r0,-19","w":119},"\u00f8":{"d":"119,6v-31,0,-51,-10,-67,-26r-23,31r-12,-10r26,-32v-50,-69,-26,-217,76,-213v31,1,52,10,68,26r23,-30r11,9r-25,31v49,69,27,214,-77,214xm119,-13v78,1,93,-112,61,-174r-114,149v12,15,29,24,53,25xm119,-224v-77,0,-93,111,-61,173r114,-148v-11,-15,-27,-25,-53,-25","w":238},"\u0153":{"d":"270,-244v67,2,84,57,82,130r-150,0v1,57,19,101,67,101v37,0,52,-26,55,-59r25,0v-4,46,-31,76,-79,78v-47,2,-65,-29,-78,-61v-14,34,-36,61,-83,61v-66,0,-92,-57,-92,-125v0,-69,30,-125,97,-125v45,0,67,27,79,64v10,-37,31,-65,77,-64xm109,-13v56,0,70,-49,71,-109v0,-68,-22,-102,-67,-102v-55,0,-71,50,-71,108v0,54,16,103,67,103xm327,-133v0,-55,-12,-91,-58,-91v-47,0,-63,44,-67,91r125,0","w":366},"\u00df":{"d":"124,-335v96,-7,109,151,19,155v46,8,73,38,72,93v-2,58,-33,92,-99,87r0,-19v50,5,74,-26,74,-72v-1,-51,-22,-75,-75,-77r0,-22v42,-2,64,-22,64,-64v0,-37,-19,-62,-54,-62v-47,0,-61,35,-62,84r0,213r22,0r0,19r-76,0r0,-19r29,0r0,-214v-1,-64,26,-97,86,-102"},"\u00ac":{"d":"230,-149r-208,0r0,-24r232,0r0,123r-24,0r0,-99","w":276},"\u00b5":{"d":"185,-39v-13,42,-86,63,-117,24r0,91r-25,0r0,-294r-34,0r0,-19r59,0r0,156v0,44,14,68,54,68v81,0,61,-120,63,-205r-37,0r0,-19r62,0r0,218r37,0r0,19r-62,0r0,-39","w":255},"\u2122":{"d":"383,-141r-1,-164r-66,164r-17,0r-66,-164r0,164r-25,0r0,-188r42,0r59,148r57,-148r42,0r0,188r-25,0xm80,-307r-62,0r0,-22r149,0r0,22r-62,0r0,166r-25,0r0,-166","w":455},"\u00b1":{"d":"22,-25r232,0r0,25r-232,0r0,-25xm126,-233r24,0r0,83r104,0r0,25r-104,0r0,84r-24,0r0,-84r-104,0r0,-25r104,0r0,-83","w":276},"\u00f7":{"d":"121,-233r34,0r0,33r-34,0r0,-33xm121,-33r34,0r0,33r-34,0r0,-33xm22,-129r232,0r0,25r-232,0r0,-25","w":276},"\u00b0":{"d":"92,-316v-27,0,-46,18,-46,47v0,28,18,46,46,46v28,0,46,-18,46,-46v0,-29,-19,-47,-46,-47xm92,-203v-40,0,-66,-26,-66,-66v0,-40,26,-66,66,-66v40,0,66,26,66,66v0,40,-26,66,-66,66","w":184},"\u00ae":{"d":"184,-313v-87,0,-145,59,-145,148v0,89,57,148,145,148v88,0,145,-59,145,-148v0,-90,-58,-148,-145,-148xm184,6v-121,0,-201,-115,-157,-237v27,-75,127,-132,223,-91v59,25,104,76,104,157v0,103,-68,171,-170,171xm264,-210v-2,34,-20,51,-49,56r55,90r-24,0r-56,-90r-47,0r0,90r-22,0r0,-200v63,0,147,-9,143,54xm242,-210v0,-47,-55,-33,-99,-35r0,72v43,-3,99,12,99,-37","w":368},"\u00a9":{"d":"190,-83v31,0,52,-22,57,-48r26,0v-9,40,-39,72,-87,70v-60,-2,-88,-42,-94,-104v-11,-112,162,-142,181,-34r-26,0v-24,-80,-136,-47,-131,34v3,47,27,80,74,82xm184,-313v-87,0,-145,59,-145,148v0,89,57,148,145,148v88,0,145,-59,145,-148v0,-90,-58,-148,-145,-148xm184,6v-121,0,-201,-115,-157,-237v27,-75,127,-132,223,-91v59,25,104,76,104,157v0,103,-68,171,-170,171","w":368},"\u00c1":{"d":"177,-408r37,0r-53,61r-24,0xm6,-19r28,0r116,-310r33,0r115,310r29,0r0,19r-103,0r0,-19r46,0r-35,-100r-138,0r-35,100r46,0r0,19r-102,0r0,-19xm228,-138r-62,-169r-62,169r124,0","w":332},"\u00c2":{"d":"152,-408r28,0r47,61r-28,0r-33,-45r-33,45r-28,0xm6,-19r28,0r116,-310r33,0r115,310r29,0r0,19r-103,0r0,-19r46,0r-35,-100r-138,0r-35,100r46,0r0,19r-102,0r0,-19xm228,-138r-62,-169r-62,169r124,0","w":332},"\u00c4":{"d":"109,-392r30,0r0,30r-30,0r0,-30xm193,-392r31,0r0,30r-31,0r0,-30xm6,-19r28,0r116,-310r33,0r115,310r29,0r0,19r-103,0r0,-19r46,0r-35,-100r-138,0r-35,100r46,0r0,19r-102,0r0,-19xm228,-138r-62,-169r-62,169r124,0","w":332},"\u00c0":{"d":"118,-408r37,0r41,61r-25,0xm6,-19r28,0r116,-310r33,0r115,310r29,0r0,19r-103,0r0,-19r46,0r-35,-100r-138,0r-35,100r46,0r0,19r-102,0r0,-19xm228,-138r-62,-169r-62,169r124,0","w":332},"\u00c5":{"d":"166,-407v-14,0,-25,11,-25,25v0,14,11,25,25,25v14,0,25,-11,25,-25v0,-14,-11,-25,-25,-25xm166,-340v-23,0,-41,-19,-41,-42v0,-23,18,-41,41,-41v23,0,41,17,41,41v0,24,-18,42,-41,42xm6,-19r28,0r116,-310r33,0r115,310r29,0r0,19r-103,0r0,-19r46,0r-35,-100r-138,0r-35,100r46,0r0,19r-102,0r0,-19xm228,-138r-62,-169r-62,169r124,0","w":332},"\u00c3":{"d":"135,-398v29,0,68,41,81,2r17,0v-3,24,-14,40,-36,40v-24,0,-36,-20,-61,-20v-11,0,-18,6,-20,19r-17,0v4,-27,16,-41,36,-41xm6,-19r28,0r116,-310r33,0r115,310r29,0r0,19r-103,0r0,-19r46,0r-35,-100r-138,0r-35,100r46,0r0,19r-102,0r0,-19xm228,-138r-62,-169r-62,169r124,0","w":332},"\u00c7":{"d":"167,-335v46,-1,77,24,92,55r0,-49r22,0r0,115r-22,0v-1,-57,-37,-101,-95,-99v-80,3,-113,63,-113,148v0,85,33,145,113,148v61,2,85,-39,92,-93r28,0v-6,67,-43,112,-111,116r-12,15v25,1,45,9,45,34v0,39,-60,41,-89,24r8,-16v16,10,54,18,56,-8v0,-16,-23,-21,-38,-15v-14,-11,5,-23,11,-35v-89,-9,-131,-75,-131,-170v0,-99,45,-167,144,-170","w":306},"\u00c9":{"d":"152,-408r37,0r-53,61r-25,0xm10,-19r46,0r0,-291r-46,0r0,-19r241,0r0,97r-22,0r0,-78r-149,0r0,132r81,0r0,-54r22,0r0,130r-22,0r0,-57r-81,0r0,140r151,0r0,-83r22,0r0,102r-243,0r0,-19","w":281},"\u00ca":{"d":"127,-408r28,0r46,61r-27,0r-33,-45r-33,45r-28,0xm10,-19r46,0r0,-291r-46,0r0,-19r241,0r0,97r-22,0r0,-78r-149,0r0,132r81,0r0,-54r22,0r0,130r-22,0r0,-57r-81,0r0,140r151,0r0,-83r22,0r0,102r-243,0r0,-19","w":281},"\u00cb":{"d":"83,-392r31,0r0,30r-31,0r0,-30xm168,-392r30,0r0,30r-30,0r0,-30xm10,-19r46,0r0,-291r-46,0r0,-19r241,0r0,97r-22,0r0,-78r-149,0r0,132r81,0r0,-54r22,0r0,130r-22,0r0,-57r-81,0r0,140r151,0r0,-83r22,0r0,102r-243,0r0,-19","w":281},"\u00c8":{"d":"93,-408r37,0r40,61r-25,0xm10,-19r46,0r0,-291r-46,0r0,-19r241,0r0,97r-22,0r0,-78r-149,0r0,132r81,0r0,-54r22,0r0,130r-22,0r0,-57r-81,0r0,140r151,0r0,-83r22,0r0,102r-243,0r0,-19","w":281},"\u00cd":{"d":"82,-408r37,0r-53,61r-25,0xm56,-310r-46,0r0,-19r116,0r0,19r-46,0r0,291r46,0r0,19r-116,0r0,-19r46,0r0,-291","w":136},"\u00ce":{"d":"57,-408r28,0r47,61r-28,0r-33,-45r-33,45r-28,0xm56,-310r-46,0r0,-19r116,0r0,19r-46,0r0,291r46,0r0,19r-116,0r0,-19r46,0r0,-291","w":136},"\u00cf":{"d":"13,-392r31,0r0,30r-31,0r0,-30xm98,-392r30,0r0,30r-30,0r0,-30xm56,-310r-46,0r0,-19r116,0r0,19r-46,0r0,291r46,0r0,19r-116,0r0,-19r46,0r0,-291","w":136},"\u00cc":{"d":"23,-408r37,0r40,61r-25,0xm56,-310r-46,0r0,-19r116,0r0,19r-46,0r0,291r46,0r0,19r-116,0r0,-19r46,0r0,-291","w":136},"\u00d1":{"d":"138,-398v29,0,68,41,81,2r17,0v-3,24,-14,40,-36,40v-25,0,-36,-20,-62,-20v-11,0,-17,6,-19,19r-17,0v4,-27,16,-41,36,-41xm56,-310r-46,0r0,-19r88,0r163,301r0,-282r-46,0r0,-19r110,0r0,19r-39,0r0,310r-38,0r-166,-310r-2,0r0,291r46,0r0,19r-116,0r0,-19r46,0r0,-291","w":332},"\u00d3":{"d":"185,-408r37,0r-52,61r-25,0xm166,6v-98,0,-143,-72,-143,-171v0,-98,45,-170,143,-170v98,0,143,72,143,170v0,99,-45,171,-143,171xm166,-316v-83,0,-115,62,-115,151v0,89,32,151,115,151v84,0,116,-63,116,-151v0,-88,-32,-151,-116,-151","w":332},"\u00d4":{"d":"161,-408r27,0r47,61r-28,0r-33,-45r-33,45r-27,0xm166,6v-98,0,-143,-72,-143,-171v0,-98,45,-170,143,-170v98,0,143,72,143,170v0,99,-45,171,-143,171xm166,-316v-83,0,-115,62,-115,151v0,89,32,151,115,151v84,0,116,-63,116,-151v0,-88,-32,-151,-116,-151","w":332},"\u00d6":{"d":"117,-392r30,0r0,30r-30,0r0,-30xm201,-392r31,0r0,30r-31,0r0,-30xm166,6v-98,0,-143,-72,-143,-171v0,-98,45,-170,143,-170v98,0,143,72,143,170v0,99,-45,171,-143,171xm166,-316v-83,0,-115,62,-115,151v0,89,32,151,115,151v84,0,116,-63,116,-151v0,-88,-32,-151,-116,-151","w":332},"\u00d2":{"d":"126,-408r37,0r41,61r-25,0xm166,6v-98,0,-143,-72,-143,-171v0,-98,45,-170,143,-170v98,0,143,72,143,170v0,99,-45,171,-143,171xm166,-316v-83,0,-115,62,-115,151v0,89,32,151,115,151v84,0,116,-63,116,-151v0,-88,-32,-151,-116,-151","w":332},"\u00d5":{"d":"144,-398v29,0,67,42,80,2r17,0v-3,24,-14,40,-36,40v-24,0,-36,-20,-61,-20v-11,0,-18,6,-20,19r-16,0v4,-27,16,-41,36,-41xm166,6v-98,0,-143,-72,-143,-171v0,-98,45,-170,143,-170v98,0,143,72,143,170v0,99,-45,171,-143,171xm166,-316v-83,0,-115,62,-115,151v0,89,32,151,115,151v84,0,116,-63,116,-151v0,-88,-32,-151,-116,-151","w":332},"\u00da":{"d":"167,-408r37,0r-53,61r-25,0xm153,6v-149,5,-107,-179,-113,-316r-34,0r0,-19r109,0r0,19r-50,0v9,119,-39,296,88,296v128,0,79,-178,88,-296r-50,0r0,-19r110,0r0,19r-35,0r0,192v-1,76,-37,122,-113,124","w":306},"\u00db":{"d":"142,-408r28,0r47,61r-28,0r-33,-45r-33,45r-28,0xm153,6v-149,5,-107,-179,-113,-316r-34,0r0,-19r109,0r0,19r-50,0v9,119,-39,296,88,296v128,0,79,-178,88,-296r-50,0r0,-19r110,0r0,19r-35,0r0,192v-1,76,-37,122,-113,124","w":306},"\u00dc":{"d":"98,-392r31,0r0,30r-31,0r0,-30xm183,-392r30,0r0,30r-30,0r0,-30xm153,6v-149,5,-107,-179,-113,-316r-34,0r0,-19r109,0r0,19r-50,0v9,119,-39,296,88,296v128,0,79,-178,88,-296r-50,0r0,-19r110,0r0,19r-35,0r0,192v-1,76,-37,122,-113,124","w":306},"\u00d9":{"d":"108,-408r37,0r40,61r-24,0xm153,6v-149,5,-107,-179,-113,-316r-34,0r0,-19r109,0r0,19r-50,0v9,119,-39,296,88,296v128,0,79,-178,88,-296r-50,0r0,-19r110,0r0,19r-35,0r0,192v-1,76,-37,122,-113,124","w":306},"\u0178":{"d":"83,-392r31,0r0,30r-31,0r0,-30xm168,-392r30,0r0,30r-30,0r0,-30xm128,-138r-99,-172r-28,0r0,-19r103,0r0,19r-48,0r85,148r84,-148r-43,0r0,-19r98,0r0,19r-27,0r-100,172r0,119r54,0r0,19r-133,0r0,-19r54,0r0,-119","w":281},"\u00e1":{"d":"126,-335r37,0r-53,62r-24,0xm95,-13v56,-2,72,-48,71,-108v-63,-3,-124,-4,-124,58v0,30,23,51,53,50xm109,-224v-36,0,-56,22,-58,55r-25,0v2,-48,35,-74,82,-75v55,-1,83,26,83,80r0,145r32,0r0,19r-54,0v-1,-15,2,-35,-1,-48v-12,37,-34,53,-78,54v-44,1,-73,-27,-73,-70v0,-74,68,-82,149,-78v4,-51,-12,-82,-57,-82"},"\u00e2":{"d":"101,-335r28,0r47,62r-28,0r-33,-45r-33,45r-28,0xm95,-13v56,-2,72,-48,71,-108v-63,-3,-124,-4,-124,58v0,30,23,51,53,50xm109,-224v-36,0,-56,22,-58,55r-25,0v2,-48,35,-74,82,-75v55,-1,83,26,83,80r0,145r32,0r0,19r-54,0v-1,-15,2,-35,-1,-48v-12,37,-34,53,-78,54v-44,1,-73,-27,-73,-70v0,-74,68,-82,149,-78v4,-51,-12,-82,-57,-82"},"\u00e4":{"d":"58,-318r30,0r0,30r-30,0r0,-30xm142,-318r30,0r0,30r-30,0r0,-30xm95,-13v56,-2,72,-48,71,-108v-63,-3,-124,-4,-124,58v0,30,23,51,53,50xm109,-224v-36,0,-56,22,-58,55r-25,0v2,-48,35,-74,82,-75v55,-1,83,26,83,80r0,145r32,0r0,19r-54,0v-1,-15,2,-35,-1,-48v-12,37,-34,53,-78,54v-44,1,-73,-27,-73,-70v0,-74,68,-82,149,-78v4,-51,-12,-82,-57,-82"},"\u00e0":{"d":"67,-335r37,0r40,62r-24,0xm95,-13v56,-2,72,-48,71,-108v-63,-3,-124,-4,-124,58v0,30,23,51,53,50xm109,-224v-36,0,-56,22,-58,55r-25,0v2,-48,35,-74,82,-75v55,-1,83,26,83,80r0,145r32,0r0,19r-54,0v-1,-15,2,-35,-1,-48v-12,37,-34,53,-78,54v-44,1,-73,-27,-73,-70v0,-74,68,-82,149,-78v4,-51,-12,-82,-57,-82"},"\u00e5":{"d":"115,-333v-14,0,-25,11,-25,25v0,14,11,25,25,25v14,0,25,-11,25,-25v0,-14,-11,-25,-25,-25xm115,-267v-23,0,-41,-18,-41,-41v0,-23,18,-42,41,-42v23,0,41,19,41,42v0,23,-18,41,-41,41xm95,-13v56,-2,72,-48,71,-108v-63,-3,-124,-4,-124,58v0,30,23,51,53,50xm109,-224v-36,0,-56,22,-58,55r-25,0v2,-48,35,-74,82,-75v55,-1,83,26,83,80r0,145r32,0r0,19r-54,0v-1,-15,2,-35,-1,-48v-12,37,-34,53,-78,54v-44,1,-73,-27,-73,-70v0,-74,68,-82,149,-78v4,-51,-12,-82,-57,-82"},"\u00e3":{"d":"84,-324v31,0,66,42,81,2r17,0v-3,24,-14,40,-36,40v-24,0,-36,-20,-61,-20v-11,0,-18,6,-20,19r-17,0v4,-27,16,-41,36,-41xm95,-13v56,-2,72,-48,71,-108v-63,-3,-124,-4,-124,58v0,30,23,51,53,50xm109,-224v-36,0,-56,22,-58,55r-25,0v2,-48,35,-74,82,-75v55,-1,83,26,83,80r0,145r32,0r0,19r-54,0v-1,-15,2,-35,-1,-48v-12,37,-34,53,-78,54v-44,1,-73,-27,-73,-70v0,-74,68,-82,149,-78v4,-51,-12,-82,-57,-82"},"\u00e7":{"d":"126,-244v35,0,57,19,67,45r0,-38r20,0r0,87r-20,0v-4,-46,-22,-74,-67,-74v-56,0,-76,48,-76,105v0,57,19,105,76,106v38,1,59,-26,64,-61r23,0v-4,45,-34,77,-79,80r-12,15v25,1,46,8,45,34v-2,39,-60,42,-88,24r7,-16v16,10,54,18,56,-8v1,-17,-23,-20,-38,-15v-14,-11,5,-23,11,-34v-64,-7,-90,-55,-90,-125v0,-73,30,-125,101,-125"},"\u00e9":{"d":"134,-335r37,0r-52,62r-25,0xm190,-133v14,-95,-116,-124,-140,-37v-3,11,-7,24,-8,37r148,0xm17,-119v-11,-108,117,-169,176,-85v14,22,22,55,22,90r-173,0v2,56,24,100,77,101v40,0,66,-20,70,-58r22,0v-7,48,-40,77,-92,77v-73,-1,-95,-54,-102,-125"},"\u00ea":{"d":"109,-335r28,0r47,62r-28,0r-33,-45r-33,45r-27,0xm190,-133v14,-95,-116,-124,-140,-37v-3,11,-7,24,-8,37r148,0xm17,-119v-11,-108,117,-169,176,-85v14,22,22,55,22,90r-173,0v2,56,24,100,77,101v40,0,66,-20,70,-58r22,0v-7,48,-40,77,-92,77v-73,-1,-95,-54,-102,-125"},"\u00eb":{"d":"66,-318r30,0r0,30r-30,0r0,-30xm150,-318r31,0r0,30r-31,0r0,-30xm190,-133v14,-95,-116,-124,-140,-37v-3,11,-7,24,-8,37r148,0xm17,-119v-11,-108,117,-169,176,-85v14,22,22,55,22,90r-173,0v2,56,24,100,77,101v40,0,66,-20,70,-58r22,0v-7,48,-40,77,-92,77v-73,-1,-95,-54,-102,-125"},"\u00e8":{"d":"75,-335r37,0r41,62r-25,0xm190,-133v14,-95,-116,-124,-140,-37v-3,11,-7,24,-8,37r148,0xm17,-119v-11,-108,117,-169,176,-85v14,22,22,55,22,90r-173,0v2,56,24,100,77,101v40,0,66,-20,70,-58r22,0v-7,48,-40,77,-92,77v-73,-1,-95,-54,-102,-125"},"\u00ed":{"d":"74,-335r36,0r-52,62r-25,0xm6,-19r40,0r0,-199r-40,0r0,-19r65,0r0,218r37,0r0,19r-102,0r0,-19","w":119},"\u00ee":{"d":"39,-335r28,0r47,62r-28,0r-33,-45r-33,45r-28,0xm6,-19r40,0r0,-199r-40,0r0,-19r65,0r0,218r37,0r0,19r-102,0r0,-19","w":119},"\u00ef":{"d":"5,-318r30,0r0,30r-30,0r0,-30xm90,-318r30,0r0,30r-30,0r0,-30xm6,-19r40,0r0,-199r-40,0r0,-19r65,0r0,218r37,0r0,19r-102,0r0,-19","w":119},"\u00ec":{"d":"15,-335r37,0r40,62r-25,0xm6,-19r40,0r0,-199r-40,0r0,-19r65,0r0,218r37,0r0,19r-102,0r0,-19","w":119},"\u00f1":{"d":"105,-324v31,0,66,42,81,2r17,0v-3,24,-14,40,-36,40v-24,0,-36,-20,-61,-20v-11,0,-18,6,-20,19r-17,0v4,-27,16,-41,36,-41xm133,-224v-80,1,-60,121,-62,205r37,0r0,19r-99,0r0,-19r37,0r0,-199r-37,0r0,-19r62,0v1,12,-2,27,1,37v13,-29,35,-44,69,-44v102,0,65,133,72,225r34,0r0,19r-99,0r0,-19r40,0v-8,-78,30,-206,-55,-205","w":255},"\u00f3":{"d":"133,-335r37,0r-53,62r-25,0xm119,-224v-54,0,-77,47,-77,105v0,57,20,106,77,106v55,0,77,-47,77,-106v0,-57,-20,-105,-77,-105xm119,6v-71,0,-102,-55,-102,-125v0,-71,33,-125,102,-125v71,0,102,51,102,125v0,72,-32,125,-102,125","w":238},"\u00f4":{"d":"108,-335r28,0r47,62r-28,0r-33,-45r-33,45r-28,0xm119,-224v-54,0,-77,47,-77,105v0,57,20,106,77,106v55,0,77,-47,77,-106v0,-57,-20,-105,-77,-105xm119,6v-71,0,-102,-55,-102,-125v0,-71,33,-125,102,-125v71,0,102,51,102,125v0,72,-32,125,-102,125","w":238},"\u00f6":{"d":"64,-318r31,0r0,30r-31,0r0,-30xm149,-318r30,0r0,30r-30,0r0,-30xm119,-224v-54,0,-77,47,-77,105v0,57,20,106,77,106v55,0,77,-47,77,-106v0,-57,-20,-105,-77,-105xm119,6v-71,0,-102,-55,-102,-125v0,-71,33,-125,102,-125v71,0,102,51,102,125v0,72,-32,125,-102,125","w":238},"\u00f2":{"d":"74,-335r37,0r40,62r-25,0xm119,-224v-54,0,-77,47,-77,105v0,57,20,106,77,106v55,0,77,-47,77,-106v0,-57,-20,-105,-77,-105xm119,6v-71,0,-102,-55,-102,-125v0,-71,33,-125,102,-125v71,0,102,51,102,125v0,72,-32,125,-102,125","w":238},"\u00f5":{"d":"91,-324v31,0,67,42,81,2r17,0v-3,24,-14,40,-36,40v-24,0,-36,-20,-61,-20v-11,0,-18,6,-20,19r-17,0v4,-27,16,-41,36,-41xm119,-224v-54,0,-77,47,-77,105v0,57,20,106,77,106v55,0,77,-47,77,-106v0,-57,-20,-105,-77,-105xm119,6v-71,0,-102,-55,-102,-125v0,-71,33,-125,102,-125v71,0,102,51,102,125v0,72,-32,125,-102,125","w":238},"\u00fa":{"d":"139,-335r37,0r-53,62r-25,0xm115,6v-102,0,-65,-132,-72,-224r-34,0r0,-19r59,0r0,156v0,44,14,68,54,68v81,0,61,-120,63,-205r-37,0r0,-19r62,0r0,218r37,0r0,19r-62,0v-1,-12,2,-29,-1,-39v-11,26,-34,45,-69,45","w":255},"\u00fb":{"d":"114,-335r28,0r47,62r-28,0r-33,-45r-33,45r-28,0xm115,6v-102,0,-65,-132,-72,-224r-34,0r0,-19r59,0r0,156v0,44,14,68,54,68v81,0,61,-120,63,-205r-37,0r0,-19r62,0r0,218r37,0r0,19r-62,0v-1,-12,2,-29,-1,-39v-11,26,-34,45,-69,45","w":255},"\u00fc":{"d":"70,-318r31,0r0,30r-31,0r0,-30xm155,-318r30,0r0,30r-30,0r0,-30xm115,6v-102,0,-65,-132,-72,-224r-34,0r0,-19r59,0r0,156v0,44,14,68,54,68v81,0,61,-120,63,-205r-37,0r0,-19r62,0r0,218r37,0r0,19r-62,0v-1,-12,2,-29,-1,-39v-11,26,-34,45,-69,45","w":255},"\u00f9":{"d":"80,-335r37,0r40,62r-25,0xm115,6v-102,0,-65,-132,-72,-224r-34,0r0,-19r59,0r0,156v0,44,14,68,54,68v81,0,61,-120,63,-205r-37,0r0,-19r62,0r0,218r37,0r0,19r-62,0v-1,-12,2,-29,-1,-39v-11,26,-34,45,-69,45","w":255},"\u00ff":{"d":"60,-318r31,0r0,30r-31,0r0,-30xm145,-318r30,0r0,30r-30,0r0,-30xm6,-237r80,0r0,19r-34,0r66,182r66,-182r-35,0r0,-19r75,0r0,19r-16,0r-92,252v-9,33,-34,58,-76,46r0,-19v46,11,52,-26,65,-61r-78,-218r-21,0r0,-19"},"\u00a0":{"w":115},"\"":{"d":"58,-329r25,0r0,92r-25,0r0,-92xm121,-329r25,0r0,92r-25,0r0,-92","w":204},"!":{"d":"60,-329r33,0r-7,258r-19,0xm60,-33r33,0r0,33r-33,0r0,-33","w":152},"\u00a4":{"d":"180,-83v-29,30,-101,29,-130,0r-24,23r-16,-16r24,-23v-31,-28,-31,-103,0,-131r-24,-23r16,-17r24,23v30,-30,100,-28,130,0r24,-23r16,17r-23,23v30,29,30,103,-1,131r24,23r-16,16xm115,-247v-52,0,-80,31,-80,82v0,51,30,83,80,83v50,0,80,-32,80,-83v0,-51,-28,-82,-80,-82"},"\u0141":{"d":"138,-329r0,19r-58,0r0,126r86,-68r0,22r-86,69r0,142r136,0r0,-87r22,0r0,106r-228,0r0,-19r46,0r0,-123r-46,38r0,-22r46,-38r0,-146r-46,0r0,-19r128,0","w":255},"\u0142":{"d":"6,-19r40,0r0,-146r-40,35r0,-22r40,-35r0,-123r-40,0r0,-19r65,0r0,119r37,-34r0,22r-37,34r0,169r37,0r0,19r-102,0r0,-19","w":110},"\u00b9":{"d":"26,-293v20,-13,32,-23,47,-39r20,0r0,184r30,0r0,14r-81,0r0,-14r32,0r-1,-164v-14,16,-27,24,-47,36r0,-17","w":149},"\u00d0":{"d":"264,-165v-1,-107,-64,-157,-184,-145r0,121r87,0r0,20r-87,0r0,150v119,11,184,-37,184,-146xm292,-165v0,101,-51,165,-153,165r-129,0r0,-19r46,0r0,-150r-46,0r0,-20r46,0r0,-121r-46,0r0,-19r129,0v102,2,153,62,153,164","w":315},"\u00bd":{"d":"274,-201v68,0,63,69,27,106r-76,78r92,0r0,-31r19,0r0,48r-130,0r0,-23v32,-37,75,-69,99,-112v13,-23,-6,-50,-31,-50v-27,-1,-40,21,-41,46r-22,0v3,-39,20,-62,63,-62xm23,-293v20,-13,31,-24,46,-39r21,0r0,184r30,0r0,14r-82,0r0,-14r32,0r-1,-164v-14,16,-27,24,-46,36r0,-17xm264,-342r20,0r-211,354r-19,0","w":345},"\u00de":{"d":"218,-178v0,-71,-64,-76,-138,-72r0,149v76,4,138,0,138,-77xm246,-178v0,60,-35,96,-97,96r-69,0r0,63r56,0r0,19r-126,0r0,-19r46,0r0,-291r-46,0r0,-19r116,0r0,19r-46,0r0,40v91,-6,166,7,166,92","w":255},"\u00bc":{"d":"23,-293v20,-13,31,-24,46,-39r21,0r0,184r30,0r0,14r-82,0r0,-14r32,0r-1,-164v-14,16,-27,24,-46,36r0,-17xm264,-342r20,0r-211,354r-19,0xm274,-70r-1,-111r-81,111r82,0xm240,-14r34,0r0,-43r-96,0r0,-20r89,-120r26,0r0,127r29,0r0,13r-29,0r0,43r26,0r0,14r-79,0r0,-14","w":345},"\u00a6":{"d":"39,-310r24,0r0,160r-24,0r0,-160xm39,-80r24,0r0,160r-24,0r0,-160","w":102},"\u00fe":{"d":"137,-13v56,0,76,-48,76,-106v0,-58,-20,-105,-76,-105v-58,0,-73,51,-74,109v-1,59,21,102,74,102xm144,6v-41,1,-62,-19,-78,-46r0,97r38,0r0,19r-99,0r0,-19r36,0r0,-367r-36,0r0,-19r61,0r1,136v15,-31,34,-51,77,-51v67,0,94,51,94,125v0,70,-26,122,-94,125","w":255},"\u00be":{"d":"71,-318v-23,1,-36,17,-39,43r-22,0v2,-34,23,-61,60,-60v37,0,60,21,61,54v2,26,-21,42,-42,47v25,3,43,22,43,48v0,62,-98,74,-118,23v-4,-8,-5,-17,-5,-29r22,0v-1,26,17,45,40,45v24,0,38,-16,39,-39v1,-31,-23,-39,-52,-41r0,-17v32,1,51,-12,51,-38v0,-18,-16,-38,-38,-36xm279,-342r19,0r-211,354r-19,0xm288,-70r-1,-111r-81,111r82,0xm253,-14r35,0r0,-43r-96,0r0,-20r89,-120r26,0r0,127r29,0r0,13r-29,0r0,43r26,0r0,14r-80,0r0,-14","w":345},"\u00b2":{"d":"77,-335v67,0,71,77,28,106r-76,79r92,0r0,-32r19,0r0,48r-130,0r0,-23v31,-37,74,-69,98,-112v13,-23,-5,-49,-31,-49v-26,0,-39,21,-41,45r-22,0v3,-39,20,-62,63,-62","w":149},"\u00f0":{"d":"118,-230v30,-1,48,17,63,30v-13,-38,-36,-68,-67,-88r-52,33r-11,-12r47,-30v-17,-9,-37,-16,-58,-21r6,-17v28,5,52,13,72,25r54,-34r11,13r-49,31v55,37,87,97,87,183v0,73,-28,123,-101,123v-73,0,-103,-53,-103,-125v0,-65,35,-108,101,-111xm196,-119v0,-55,-27,-92,-77,-92v-50,0,-76,38,-77,92v-1,63,22,106,77,106v55,0,78,-43,77,-106","w":238},"\u00d7":{"d":"34,-29r87,-87r-87,-88r17,-16r87,87r87,-87r17,16r-87,88r87,87r-17,17r-87,-88r-87,88","w":276},"\u00b3":{"d":"75,-318v-23,1,-36,17,-39,43r-22,0v2,-34,23,-61,60,-60v37,0,60,21,61,54v2,26,-21,42,-42,47v25,3,42,22,44,48v4,61,-99,74,-119,23v-4,-8,-5,-17,-5,-29r22,0v-1,26,17,45,40,45v24,0,39,-17,40,-39v2,-31,-23,-39,-52,-41r0,-17v31,1,48,-11,50,-38v0,-19,-16,-38,-38,-36","w":149},"\u0160":{"d":"59,-408r27,0r34,45r33,-45r27,0r-47,61r-27,0xm113,-335v42,0,64,22,79,46r0,-40r22,0r0,111r-22,0v-1,-57,-23,-95,-77,-98v-62,-3,-86,86,-38,115v54,32,144,28,144,113v0,57,-32,92,-90,94v-45,1,-73,-19,-86,-52r0,46r-22,0r0,-113r22,0v5,54,20,99,77,99v45,0,74,-28,71,-74v-6,-99,-170,-49,-170,-157v0,-55,35,-90,90,-90","w":239},"\u00dd":{"d":"160,-408r37,0r-53,61r-24,0xm128,-138r-99,-172r-28,0r0,-19r103,0r0,19r-48,0r85,148r84,-148r-43,0r0,-19r98,0r0,19r-27,0r-100,172r0,119r54,0r0,19r-133,0r0,-19r54,0r0,-119","w":281},"\u017d":{"d":"71,-408r28,0r33,45r33,-45r28,0r-47,61r-28,0xm15,-28r203,-282r-176,0r0,78r-22,0r0,-97r220,0r0,27r-203,283r185,0r0,-83r22,0r0,102r-229,0r0,-28","w":264},"\u0161":{"d":"41,-335r28,0r33,45r33,-45r28,0r-47,62r-28,0xm185,-67v0,81,-124,98,-146,35r0,32r-20,0r0,-83r20,0v1,43,24,66,63,70v54,6,83,-73,31,-90v-44,-14,-111,-6,-111,-67v0,-79,112,-98,140,-39r0,-28r19,0r0,81r-19,0v4,-44,-21,-68,-60,-68v-44,0,-77,54,-43,78v40,29,126,5,126,79","w":204},"\u00fd":{"d":"134,-335r37,0r-52,62r-25,0xm6,-237r80,0r0,19r-34,0r66,182r66,-182r-35,0r0,-19r75,0r0,19r-16,0r-92,252v-9,33,-34,58,-76,46r0,-19v46,11,52,-26,65,-61r-78,-218r-21,0r0,-19"},"\u017e":{"d":"46,-335r28,0r33,45r33,-45r27,0r-46,62r-28,0xm23,-23r140,-195r-117,0r0,47r-22,0r0,-66r164,0r0,23r-140,195r120,0r0,-55r22,0r0,74r-167,0r0,-23","w":212},"\u00ad":{"d":"30,-137r110,0r0,22r-110,0r0,-22","w":170}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright  1985, 1987, 1990, 2002 Adobe Systems Incorporated.  All Rights
 * Reserved.  1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Glypha is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed
 * through Linotype Library GmbH, and may be registered in certain jurisdictions.
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":255,"face":{"font-family":"glyph","font-weight":700,"font-stretch":"normal","units-per-em":"460","panose-1":"2 6 7 3 4 5 5 2 2 4","ascent":"329","descent":"-131","x-height":"6","bbox":"-23 -449 460 97.684","underline-thickness":"24.84","underline-position":"-20.24","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":127},"#":{"d":"109,-192r-6,47r47,0r7,-47r-48,0xm164,0r-35,0r16,-110r-47,0r-16,110r-35,0r16,-110r-56,0r0,-35r61,0r7,-47r-55,0r0,-34r60,0r15,-103r34,0r-14,103r47,0r15,-103r35,0r-15,103r52,0r0,34r-57,0r-6,47r50,0r0,35r-56,0"},"$":{"d":"145,-39v30,-3,44,-51,25,-75v-6,-7,-15,-12,-25,-16r0,91xm110,-293v-29,3,-47,46,-25,70v7,7,15,12,25,16r0,-86xm59,-165v-80,-38,-47,-184,51,-171r0,-40r35,0r0,45v18,6,28,13,40,29r0,-27r51,0r0,108r-53,0v-2,-36,-9,-63,-38,-70r0,97v48,18,100,34,98,102v-2,63,-37,94,-98,97r0,40r-35,0r0,-43v-21,-5,-38,-15,-46,-34r0,32r-51,0r0,-115r54,0v0,38,12,68,43,76r0,-104v-17,-7,-36,-15,-51,-22"},"%":{"d":"173,-252v-1,48,-19,86,-65,86v-46,0,-64,-36,-65,-82v-1,-46,19,-88,62,-87v49,1,68,33,68,83xm340,-79v0,48,-18,85,-63,85v-49,0,-66,-37,-67,-85v-1,-46,18,-83,63,-83v50,0,66,34,67,83xm133,-236v2,-29,3,-66,-25,-69v-28,3,-27,40,-25,69v1,19,6,40,25,40v19,0,24,-21,25,-40xm81,6r182,-341r38,0r-182,341r-38,0xm301,-62v1,-32,3,-71,-26,-71v-28,0,-26,41,-25,70v1,19,7,39,26,39v19,0,24,-20,25,-38","w":383},"&":{"d":"84,-87v0,61,85,65,112,27r-74,-90v-21,14,-38,30,-38,63xm224,-266v0,47,-30,68,-58,88r66,73v9,-15,15,-33,17,-55r-28,0r0,-38r111,0r0,38r-36,0v-2,36,-14,67,-30,91r24,28r47,0r0,41r-85,0v-9,-7,-17,-23,-27,-25v-25,20,-54,30,-94,31v-68,1,-110,-35,-110,-100v0,-51,31,-76,65,-95v-21,-16,-39,-40,-39,-75v0,-52,39,-75,91,-75v51,0,85,22,86,73xm138,-303v-33,0,-47,37,-26,62v18,45,59,6,60,-24v1,-21,-13,-38,-34,-38","w":357},"\u2019":{"d":"95,-335r0,61r-21,62r-42,0r25,-62r-24,0r0,-61r62,0","w":127},"(":{"d":"23,-144v0,-83,34,-143,65,-199r46,0v-34,55,-57,127,-57,209v0,80,26,146,57,201r-46,0v-33,-59,-65,-126,-65,-211","w":153},")":{"d":"70,-142v0,-83,-26,-148,-58,-201r46,0v64,81,94,248,30,355v-10,18,-18,39,-30,55r-46,0v34,-55,58,-124,58,-209","w":153},"*":{"d":"24,-248r15,-50r50,30r-9,-61r45,0r-9,62r51,-29r15,48r-57,8r40,45r-38,29r-24,-55r-26,55r-38,-29r41,-45","w":204},"+":{"d":"131,-186r0,-96r42,0r0,96r96,0r0,42r-96,0r0,96r-42,0r0,-96r-96,0r0,-42r96,0","w":303},",":{"d":"95,-61r0,61r-21,62r-42,0r25,-62r-24,0r0,-61r62,0","w":127},"-":{"d":"29,-153r112,0r0,45r-112,0r0,-45","w":170},".":{"d":"33,0r0,-61r62,0r0,61r-62,0","w":127},"\/":{"d":"6,0r121,-329r43,0r-122,329r-42,0","w":178},"0":{"d":"239,-163v-1,91,-25,169,-113,169v-87,0,-110,-84,-109,-176v1,-89,23,-165,112,-165v89,0,110,81,110,172xm129,-37v70,-13,47,-138,40,-210v-3,-25,-16,-50,-42,-47v-52,7,-48,80,-48,138v0,53,0,113,50,119"},"1":{"d":"40,-270r76,-59r60,0r0,288r42,0r0,41r-150,0r0,-41r45,0r0,-228v-23,22,-50,37,-73,55r0,-56"},"2":{"d":"125,-293v-33,1,-46,27,-46,61r-63,0v2,-66,41,-103,109,-103v97,0,132,99,76,165v-38,44,-79,91,-125,129r106,0r0,-49r52,0r0,90r-218,0r0,-60r93,-93v22,-28,57,-50,57,-94v0,-24,-16,-47,-41,-46"},"3":{"d":"236,-90v11,114,-176,124,-211,41v-6,-12,-8,-27,-8,-44r63,0v2,32,14,54,49,54v55,0,56,-101,9,-108r-33,-1r0,-41v38,2,66,-15,64,-55v-1,-28,-14,-49,-43,-49v-33,0,-42,26,-44,56r-62,0v1,-73,51,-104,128,-97v48,5,80,34,83,85v2,51,-26,71,-66,81v46,4,67,31,71,78"},"4":{"d":"10,-84r0,-57r121,-188r76,0r0,205r36,0r0,40r-36,0r0,45r33,0r0,39r-138,0r0,-39r44,0r0,-45r-136,0xm55,-124r91,0r0,-149"},"5":{"d":"240,-110v13,120,-162,155,-208,63v-6,-12,-9,-26,-9,-41r63,0v2,28,13,50,43,50v36,0,49,-29,49,-63v0,-37,-9,-70,-47,-71v-25,0,-42,18,-45,40r-59,0r4,-197r194,0r0,44r-136,0r-3,102v11,-20,34,-31,62,-31v61,2,86,44,92,104"},"6":{"d":"134,-34v62,-2,64,-138,-2,-137v-64,1,-70,138,2,137xm18,-158v0,-110,50,-201,163,-171v33,9,54,38,56,80r-61,0v4,-41,-46,-61,-70,-32v-22,25,-27,71,-28,115v11,-25,31,-47,66,-47v66,0,96,43,96,107v0,70,-39,112,-108,112v-90,0,-114,-73,-114,-164"},"7":{"d":"17,-229r0,-100r224,0v5,86,-37,122,-60,187r-51,142r-68,0r79,-201r39,-84r-109,0r0,56r-54,0"},"8":{"d":"177,-96v-1,-33,-16,-57,-49,-57v-35,0,-49,25,-49,61v1,35,16,57,50,58v31,1,49,-27,48,-62xm174,-247v0,-27,-17,-49,-46,-49v-31,0,-46,21,-46,51v1,31,14,54,45,54v32,0,46,-23,47,-56xm233,-245v0,42,-26,65,-61,73v42,7,65,37,65,84v0,65,-44,94,-108,94v-66,0,-111,-28,-110,-96v1,-46,27,-74,68,-82v-38,-9,-64,-29,-64,-74v0,-63,44,-89,105,-89v63,0,105,26,105,90"},"9":{"d":"76,-224v0,37,13,67,48,67v66,0,69,-138,1,-138v-37,0,-49,33,-49,71xm238,-171v-1,95,-30,178,-127,177v-52,0,-91,-33,-92,-86r61,0v2,24,12,49,39,46v54,-5,58,-71,59,-130v-11,29,-33,49,-70,49v-60,0,-92,-46,-92,-108v-1,-70,40,-112,108,-112v89,0,115,73,114,164"},":":{"d":"45,-232r63,0r0,61r-63,0r0,-61xm108,0r-63,0r0,-61r63,0r0,61","w":153},";":{"d":"46,-232r62,0r0,61r-62,0r0,-61xm46,-61r62,0r0,61r-21,62r-42,0r25,-62r-24,0r0,-61","w":153},"<":{"d":"274,-31r-249,-113r0,-41r249,-114r0,42r-207,93r207,91r0,42","w":303},"=":{"d":"269,-150r0,43r-234,0r0,-43r234,0xm269,-222r0,43r-234,0r0,-43r234,0","w":303},">":{"d":"232,-164r-207,-93r0,-42r249,114r0,41r-249,113r0,-42","w":303},"?":{"d":"135,0r-63,0r0,-61r63,0r0,61xm114,-294v-29,0,-39,19,-40,47r-62,0v5,-56,39,-88,102,-88v112,0,123,134,51,180v-20,20,-32,30,-30,70r-63,0v-5,-71,37,-93,67,-131v19,-25,12,-78,-25,-78","w":230},"@":{"d":"218,-226v-49,1,-76,63,-55,107v44,36,84,-24,84,-76v0,-18,-10,-31,-29,-31xm217,-21v56,0,89,-18,120,-48r9,20v-31,35,-68,55,-128,55v-128,0,-215,-111,-165,-235v24,-60,80,-106,162,-106v88,0,151,50,151,139v0,67,-35,117,-99,122v-21,2,-28,-11,-32,-29v-32,51,-123,24,-116,-46v6,-59,40,-104,99,-108v22,-2,38,12,45,28r5,-14r32,0r-37,129v0,9,4,14,13,14v44,0,62,-45,64,-92v7,-118,-160,-149,-228,-74v-24,26,-44,57,-44,103v0,89,59,142,149,142","w":404},"A":{"d":"7,0r0,-41r27,0r108,-288r75,0r107,288r27,0r0,41r-134,0r0,-41r40,0r-21,-60r-122,0r-22,60r40,0r0,41r-125,0xm220,-142r-46,-134r-45,134r91,0","w":357},"B":{"d":"221,-96v0,-55,-53,-55,-110,-52r0,107v57,3,110,1,110,-55xm148,-189v69,18,92,-97,30,-98r-67,-1r0,99r37,0xm284,-87v0,116,-156,83,-273,87r0,-42r37,0r0,-246r-37,0r0,-41r165,0v61,-3,100,26,101,83v1,44,-24,70,-64,76v47,2,71,36,71,83","w":306},"C":{"d":"163,-335v42,0,75,12,94,36r0,-30r51,0r0,118r-55,0v-4,-49,-25,-82,-76,-82v-67,0,-88,60,-88,127v0,66,16,129,84,129v46,0,73,-26,74,-72r65,0v-3,78,-58,115,-137,115v-106,0,-154,-68,-154,-175v0,-100,43,-166,142,-166","w":332},"D":{"d":"319,-167v2,114,-58,167,-175,167r-132,0r0,-41r38,0r0,-247r-38,0r0,-41r145,0v109,-3,160,58,162,162xm113,-41v104,10,146,-40,140,-140v-4,-75,-48,-117,-140,-107r0,247","w":340},"E":{"d":"11,0r0,-41r38,0r0,-247r-38,0r0,-41r272,0r0,100r-50,0r0,-59r-121,0r0,100r49,0r0,-42r43,0r0,125r-43,0r0,-41r-49,0r0,105r121,0r0,-64r50,0r0,105r-272,0","w":306},"F":{"d":"12,0r0,-41r39,0r0,-247r-39,0r0,-41r263,0r0,105r-50,0r0,-64r-111,0r0,107r43,0r0,-43r43,0r0,129r-43,0r0,-45r-43,0r0,99r47,0r0,41r-149,0","w":289},"G":{"d":"64,-293v36,-46,159,-61,194,0r0,-36r53,0r0,116r-56,0v-1,-47,-31,-78,-79,-76v-61,3,-85,56,-85,122v0,81,41,148,121,121v29,-10,45,-39,46,-78r-43,0r0,-41r133,0r0,41r-33,0r0,124r-55,0r0,-38v-18,28,-50,42,-93,44v-148,9,-180,-201,-103,-299","w":357},"H":{"d":"11,0r0,-41r38,0r0,-247r-38,0r0,-41r141,0r0,41r-40,0r0,100r133,0r0,-100r-40,0r0,-41r141,0r0,41r-38,0r0,247r38,0r0,41r-141,0r0,-41r40,0r0,-105r-133,0r0,105r40,0r0,41r-141,0","w":357},"I":{"d":"9,-288r0,-41r144,0r0,41r-41,0r0,247r41,0r0,41r-144,0r0,-41r40,0r0,-247r-40,0","w":161},"J":{"d":"104,6v-63,0,-98,-41,-93,-112r63,0v-1,35,0,69,35,69v31,-1,29,-35,29,-67r0,-184r-44,0r0,-41r137,0r0,41r-30,0r0,203v1,62,-39,91,-97,91","w":238},"K":{"d":"10,0r0,-41r38,0r0,-247r-38,0r0,-41r138,0r0,41r-37,0r0,110r96,-110r-30,0r0,-41r127,0r0,41r-25,0r-100,110r106,137r26,0r0,41r-132,0r0,-41r33,0r-101,-130r0,130r37,0r0,41r-138,0","w":315},"L":{"d":"11,0r0,-41r39,0r0,-247r-39,0r0,-41r151,0r0,41r-49,0r0,247r98,0r0,-75r55,0r0,116r-255,0","w":281},"M":{"d":"423,0r-132,0r0,-41r35,0r0,-247r-84,288r-58,0r-82,-288r0,247r32,0r0,41r-123,0r0,-41r37,0r0,-247r-37,0r0,-41r136,0r69,255r69,-255r138,0r0,41r-37,0r0,247r37,0r0,41","w":434},"N":{"d":"12,0r0,-41r38,0r0,-247r-38,0r0,-41r122,0r123,259r0,-218r-39,0r0,-41r130,0r0,41r-36,0r0,288r-81,0r-126,-266r0,225r37,0r0,41r-130,0","w":357},"O":{"d":"21,-158v-2,-107,55,-177,157,-177v104,0,159,66,159,168v0,107,-55,173,-158,173v-101,0,-156,-62,-158,-164xm178,-35v99,2,110,-140,74,-218v-12,-27,-36,-41,-73,-41v-67,0,-91,57,-90,127v1,69,20,131,89,132","w":357},"P":{"d":"210,-229v0,-52,-38,-65,-95,-59r0,120v57,5,95,-7,95,-61xm275,-229v2,86,-63,112,-160,102r0,86r48,0r0,41r-150,0r0,-41r39,0r0,-247r-39,0r0,-41r155,0v69,-4,105,37,107,100","w":289},"Q":{"d":"261,-160v0,-70,-18,-134,-86,-134v-67,0,-88,63,-88,132v0,66,19,127,86,127v65,0,88,-61,88,-125xm265,-35v25,-3,51,-6,81,-5r0,42r-177,4v-98,-4,-148,-67,-148,-168v-1,-103,52,-167,151,-173v147,-9,193,170,122,275v-7,11,-17,19,-29,25","w":366},"R":{"d":"278,-240v1,45,-31,79,-73,82v60,4,54,71,72,117r28,0r0,41r-82,0v-14,-40,-19,-102,-44,-131v-12,-14,-40,-6,-66,-8r0,98r38,0r0,41r-141,0r0,-41r40,0r0,-247r-40,0r0,-41r159,0v67,-5,108,29,109,89xm214,-238v0,-50,-46,-54,-101,-50r0,108v56,4,101,-6,101,-58","w":315},"S":{"d":"115,-335v36,0,62,10,76,33r0,-27r52,0r0,108r-53,0v-2,-41,-15,-75,-59,-73v-57,-9,-65,71,-17,87v61,21,139,32,137,117v-1,63,-42,96,-105,96v-35,0,-63,-11,-77,-37r0,31r-52,0r0,-115r55,0v1,44,16,74,60,78v56,5,73,-71,23,-91v-57,-23,-138,-32,-138,-111v0,-61,33,-95,98,-96","w":264},"T":{"d":"17,-217r0,-112r273,0r0,112r-54,0r0,-69r-51,0r0,245r44,0r0,41r-152,0r0,-41r45,0r0,-245r-52,0r0,69r-53,0","w":306},"U":{"d":"292,-142v17,123,-93,178,-195,132v-40,-18,-57,-61,-57,-123r0,-155r-33,0r0,-41r137,0r0,41r-41,0r0,156v-4,55,17,94,67,94v100,0,55,-153,65,-250r-41,0r0,-41r131,0r0,41r-33,0r0,146","w":332},"V":{"d":"8,-329r133,0r0,41r-43,0r75,221r76,-221r-40,0r0,-41r125,0r0,41r-24,0r-104,288r-71,0r-103,-288r-24,0r0,-41","w":340},"W":{"d":"13,-329r125,0r0,41r-40,0r46,221r59,-262r74,0r54,262r52,-221r-41,0r0,-41r117,0r0,41r-21,0r-68,288r-77,0r-54,-262r-62,262r-77,0r-65,-288r-22,0r0,-41","w":460},"X":{"d":"5,0r0,-41r24,0r103,-128r-97,-119r-23,0r0,-41r133,0r0,41r-37,0r68,89r67,-89r-37,0r0,-41r123,0r0,41r-24,0r-96,119r102,128r24,0r0,41r-136,0r0,-41r40,0r-76,-97r-72,97r41,0r0,41r-127,0","w":340},"Y":{"d":"7,-329r131,0r0,41r-36,0r59,106r62,-106r-34,0r0,-41r120,0r0,41r-22,0r-98,162r0,85r46,0r0,41r-155,0r0,-41r46,0r0,-85r-98,-162r-21,0r0,-41","w":315},"Z":{"d":"14,0r0,-51r183,-238r-126,0r0,65r-52,0r0,-105r251,0r0,50r-185,239r138,0r0,-69r52,0r0,109r-261,0","w":289},"[":{"d":"29,67r0,-410r89,0r0,38r-36,0r0,334r36,0r0,38r-89,0","w":153},"\\":{"d":"50,-329r46,0r140,329r-46,0","w":285},"]":{"d":"36,67r0,-38r36,0r0,-334r-36,0r0,-38r88,0r0,410r-88,0","w":153},"^":{"d":"17,-81r114,-248r41,0r114,248r-42,0r-93,-204r-92,204r-42,0","w":303},"_":{"d":"0,60r0,-30r230,0r0,30r-230,0","w":230},"\u2018":{"d":"33,-212r0,-61r21,-62r42,0r-25,62r24,0r0,61r-62,0","w":127},"a":{"d":"77,-69v0,45,63,42,76,9v6,-15,12,-33,13,-53v-45,-1,-89,-1,-89,44xm125,-251v66,0,98,33,98,102r0,110r32,0r0,39r-85,0r0,-39v-12,29,-39,45,-76,45v-48,0,-78,-28,-78,-77v1,-72,75,-84,148,-77v3,-35,-4,-67,-39,-66v-26,0,-39,18,-39,44r-61,0v1,-59,41,-80,100,-81","w":264},"b":{"d":"211,-122v0,-44,-10,-88,-54,-88v-40,0,-55,41,-55,85v1,45,10,89,56,89v44,0,53,-43,53,-86xm176,6v-40,0,-62,-19,-77,-47r0,41r-89,0r0,-39r32,0r0,-257r-32,0r0,-39r94,0r0,127v14,-29,34,-43,72,-43v70,0,99,53,99,124v0,72,-26,133,-99,133","w":289},"c":{"d":"115,-251v33,0,59,10,68,35r0,-29r47,0r0,92r-50,0v-1,-32,-14,-56,-46,-56v-47,0,-55,46,-55,92v0,42,13,83,56,83v27,0,40,-21,43,-48r53,0v-3,59,-42,88,-102,88v-78,0,-115,-54,-115,-132v0,-67,29,-125,101,-125","w":238},"d":{"d":"132,-36v46,0,54,-44,55,-89v1,-45,-13,-85,-55,-85v-43,0,-53,45,-53,88v0,43,9,86,53,86xm114,-251v35,0,56,14,72,37r0,-82r-31,0r0,-39r92,0r0,296r32,0r0,39r-89,0r0,-39v-17,28,-39,45,-76,45v-75,0,-100,-50,-100,-134v0,-70,30,-123,100,-123","w":289},"e":{"d":"179,-145v11,-70,-82,-93,-96,-24v-2,8,-3,16,-4,24r100,0xm128,-251v82,-3,119,59,113,141r-163,0v0,42,15,74,56,76v25,0,42,-19,45,-41r59,0v-7,53,-49,81,-107,81v-75,0,-115,-53,-115,-131v0,-75,39,-124,112,-126"},"f":{"d":"168,-296v-36,-10,-69,3,-60,51r42,0r0,39r-42,0r0,167r40,0r0,39r-135,0r0,-39r33,0r0,-167r-35,0r0,-39r35,0v-11,-80,51,-112,122,-92r0,41","w":161},"g":{"d":"132,-43v78,0,75,-168,2,-168v-44,0,-55,43,-55,88v0,39,12,80,53,80xm114,-251v36,0,60,14,76,38r0,-32r92,0r0,39r-33,0r0,188v2,76,-55,102,-134,98v-47,-2,-82,-20,-86,-65r62,0v5,18,18,29,40,28v47,0,62,-35,57,-88v-14,28,-34,42,-73,42v-72,0,-100,-53,-99,-128v1,-70,29,-120,98,-120","w":289},"h":{"d":"154,-209v-69,3,-44,102,-49,170r30,0r0,39r-122,0r0,-39r31,0r0,-257r-31,0r0,-39r92,0r0,122v31,-62,146,-48,146,42r0,132r31,0r0,39r-122,0r0,-39r30,0r-1,-124v-1,-24,-10,-46,-35,-46","w":289},"i":{"d":"111,-338r0,56r-61,0r0,-56r61,0xm17,0r0,-39r33,0r0,-167r-33,0r0,-39r94,0r0,206r28,0r0,39r-122,0","w":153},"j":{"d":"102,-282r-62,0r0,-56r62,0r0,56xm-3,37v28,7,43,-3,43,-37r0,-206r-32,0r0,-39r94,0r-1,280v-1,48,-57,49,-104,42r0,-40","w":136},"k":{"d":"11,0r0,-39r31,0r0,-257r-31,0r0,-39r93,0r0,200r80,-72r-35,0r0,-38r120,0r0,39r-28,0r-59,50r66,117r25,0r0,39r-113,0r0,-37r27,0r-45,-79r-38,32r0,47r26,0r0,37r-119,0","w":281},"l":{"d":"17,0r0,-39r31,0r0,-257r-31,0r0,-39r92,0r0,296r30,0r0,39r-122,0","w":153},"m":{"d":"157,-206v-70,0,-46,99,-50,167r30,0r0,39r-123,0r0,-39r32,0r0,-167r-32,0r0,-39r89,0r0,40v21,-59,129,-63,145,0v13,-28,35,-45,71,-46v47,0,76,29,76,84r0,128r30,0r0,39r-120,0r0,-39r29,0r0,-109v0,-30,-7,-58,-36,-58v-65,0,-44,100,-47,167r29,0r0,39r-118,0r0,-39r28,0r-1,-132v0,-19,-14,-35,-32,-35","w":434},"n":{"d":"154,-208v-71,1,-42,102,-48,169r30,0r0,39r-123,0r0,-39r32,0r0,-167r-32,0r0,-39r89,0r0,40v27,-73,149,-55,149,33r0,133r30,0r0,39r-120,0r0,-39r29,0r-1,-127v0,-22,-12,-42,-35,-42","w":289},"o":{"d":"252,-122v0,77,-42,128,-120,128v-76,0,-118,-51,-119,-130v0,-77,43,-127,118,-127v80,0,121,50,121,129xm133,-35v76,-3,76,-173,-1,-175v-77,4,-75,172,1,175","w":264},"p":{"d":"212,-119v0,-44,-8,-92,-53,-92v-44,0,-59,47,-59,90v0,42,13,85,57,85v43,0,55,-41,55,-83xm173,6v-34,0,-54,-17,-69,-43r0,72r34,0r0,40r-127,0r0,-40r32,0r0,-241r-32,0r0,-39r89,0r0,42v16,-28,36,-48,72,-48v70,0,103,51,103,125v0,76,-29,132,-102,132","w":289},"q":{"d":"132,-36v43,0,56,-41,56,-85v0,-45,-11,-90,-57,-90v-43,0,-53,46,-53,91v0,43,11,84,54,84xm111,-251v42,0,64,17,79,48r0,-42r89,0r0,39r-32,0r0,241r32,0r0,40r-128,0r0,-40r35,0r0,-72v-15,28,-38,43,-70,43v-71,0,-103,-57,-101,-132v2,-69,27,-125,96,-125","w":289},"r":{"d":"184,-189v-52,-16,-78,26,-78,87r0,63r39,0r0,39r-132,0r0,-39r32,0r0,-167r-32,0r0,-39r90,0r0,52v8,-39,34,-60,81,-56r0,60","w":187},"s":{"d":"21,-180v0,-69,103,-93,142,-44r0,-21r43,0r0,79r-45,0v-2,-27,-13,-45,-42,-48v-36,-4,-55,48,-17,57v53,12,111,18,111,83v0,80,-111,105,-148,49r0,25r-44,0r0,-85r48,0v2,30,15,52,48,51v29,5,48,-39,22,-55v-52,-17,-118,-19,-118,-91","w":230},"t":{"d":"131,3v-58,11,-87,-19,-87,-87r0,-122r-36,0r0,-39r36,0r0,-42r61,-20r0,62r62,0r0,39r-62,0r2,163v6,13,28,9,29,-5v3,-9,2,-21,2,-33r38,0v2,45,-9,77,-45,84","w":187},"u":{"d":"138,-39v64,-5,41,-101,45,-167r-33,0r0,-39r94,0r0,206r32,0r0,39r-89,0r0,-41v-11,29,-37,47,-73,47v-51,0,-74,-35,-74,-90r0,-122r-31,0r0,-39r92,0r1,168v0,23,14,40,36,38","w":289},"v":{"d":"7,-245r115,0r0,39r-30,0r46,156r51,-156r-31,0r0,-39r108,0r0,39r-19,0r-72,206r-76,0r-73,-206r-19,0r0,-39","w":272},"w":{"d":"125,-245r0,39r-33,0r35,159r52,-198r75,0r46,198r41,-159r-31,0r0,-39r109,0r0,39r-23,0r-59,206r-77,0r-44,-184r-50,184r-78,0r-59,-206r-21,0r0,-39r117,0","w":425},"x":{"d":"156,-37r27,0r-51,-67r-53,67r27,0r0,37r-100,0r0,-39r18,0r71,-87r-62,-80r-23,0r0,-39r111,0r0,37r-26,0r47,59r46,-59r-26,0r0,-37r102,0r0,39r-23,0r-64,80r69,87r20,0r0,39r-110,0r0,-37","w":272},"y":{"d":"7,-245r117,0r0,39r-32,0r50,136r47,-136r-31,0r0,-39r109,0r0,39r-20,0r-98,247v-12,33,-52,46,-101,37r0,-42v34,5,59,-3,63,-33r-84,-209r-20,0r0,-39","w":272},"z":{"d":"20,0r0,-47r130,-161r-79,0r0,39r-47,0r0,-76r194,0r0,45r-132,163r85,0r0,-45r47,0r0,82r-198,0","w":238},"{":{"d":"59,-139v59,8,37,90,40,151v2,34,9,46,36,55v-52,4,-82,-14,-82,-64v0,-58,15,-134,-36,-142v90,-11,-34,-229,118,-204v-81,11,11,187,-76,204","w":147},"|":{"d":"131,-329r42,0r0,329r-42,0r0,-329","w":303},"}":{"d":"92,-139v-55,-9,-40,-88,-40,-149v0,-32,-10,-47,-35,-55v56,-5,81,15,81,72v0,55,-14,127,37,132v-55,10,-34,93,-37,157v-2,41,-36,51,-81,49v81,-13,-14,-186,75,-206","w":147},"~":{"d":"52,-184v44,-41,109,5,156,13v23,-1,32,-22,42,-35r33,21v-19,39,-69,73,-123,43v-19,-6,-37,-18,-61,-19v-27,0,-33,23,-46,38r-33,-21v10,-14,20,-29,32,-40","w":303},"\u00a1":{"d":"41,76r13,-238r47,0r11,238r-71,0xm46,-194r0,-61r63,0r0,61r-63,0","w":153},"\u00a2":{"d":"104,3v-118,-10,-121,-245,0,-254r0,-43r40,0r0,46v18,4,32,13,39,31r0,-28r47,0r0,91r-50,0v-1,-32,-14,-56,-46,-56v-47,0,-55,46,-55,92v0,42,13,83,56,83v27,0,40,-21,43,-48r53,0v-1,54,-38,82,-87,88r0,40r-40,0r0,-42"},"\u00a3":{"d":"46,-197v-6,-86,22,-139,102,-138v60,1,92,26,93,86r-58,0v8,-50,-63,-61,-71,-14v-3,20,-3,43,-3,66r51,0r0,41r-51,0r0,115r74,0r0,-53r56,0r0,94r-226,0r0,-41r33,0r0,-115r-35,0r0,-41r35,0"},"\u00a5":{"d":"-23,-329r131,0r0,41r-36,0r59,106r62,-106r-34,0r0,-41r120,0r0,41r-22,0r-55,90r62,0r0,26r-77,0r-15,20r92,0r0,26r-105,0r0,85r46,0r0,41r-154,0r0,-41r45,0r0,-85r-106,0r0,-26r93,0r-15,-20r-78,0r0,-26r63,0r-55,-90r-21,0r0,-41"},"\u00a7":{"d":"101,-185v-23,8,-27,48,-5,61v17,10,39,16,57,25v15,-9,32,-38,14,-54v-17,-15,-44,-22,-66,-32xm34,-254v-4,-79,103,-101,157,-61v18,13,29,33,32,62r-58,0v1,-24,-12,-42,-38,-42v-42,0,-46,51,-11,61v44,24,113,28,113,93v0,26,-17,49,-39,55v18,8,35,31,35,57v0,92,-152,99,-187,35v-6,-10,-8,-21,-8,-35r59,0v-3,45,74,55,78,11v-19,-66,-140,-32,-140,-123v0,-27,17,-51,41,-57v-19,-10,-34,-30,-34,-56"},"'":{"d":"29,-197r-12,-132r58,0r-13,132r-33,0","w":92},"\u201c":{"d":"149,-212r0,-60r22,-63r41,0r-24,63r24,0r0,60r-63,0xm46,-212r0,-60r22,-63r41,0r-24,63r24,0r0,60r-63,0"},"\u00ab":{"d":"109,-131r40,-99r44,0r-38,99r38,101r-44,0xm26,-131r38,-99r45,0r-38,99r38,101r-45,0","w":230},"\u2013":{"d":"0,-153r230,0r0,45r-230,0r0,-45","w":230},"\u00b7":{"d":"95,-195r0,61r-62,0r0,-61r62,0","w":127},"\u00b6":{"d":"7,-247v0,-52,36,-82,95,-82r147,0r0,52r-32,0r0,335r-41,0r0,-335r-45,0r0,335r-42,0r0,-223v-49,-3,-82,-33,-82,-82","w":248},"\u201d":{"d":"109,-335r0,61r-22,62r-42,0r25,-62r-24,0r0,-61r63,0xm212,-335r0,61r-22,62r-41,0r24,-62r-24,0r0,-61r63,0"},"\u00bb":{"d":"72,-131r-38,-99r45,0r39,99r-39,101r-45,0xm155,-131r-37,-99r45,0r42,99r-42,101r-45,0","w":230},"\u2026":{"d":"353,0r0,-61r62,0r0,61r-62,0xm199,0r0,-61r63,0r0,61r-63,0xm46,0r0,-61r62,0r0,61r-62,0","w":460},"\u00bf":{"d":"94,-256r62,0r0,60r-62,0r0,-60xm118,39v26,-1,35,-22,37,-47r61,0v-2,60,-41,84,-101,88v-81,5,-121,-71,-86,-139v19,-38,71,-48,65,-111r62,0v10,92,-77,93,-77,168v0,23,13,42,39,41","w":230},"`":{"d":"57,-348r41,66r-37,0r-66,-66r62,0","w":127},"\u00b4":{"d":"71,-348r62,0r-66,66r-38,0","w":127},"\u00af":{"d":"-2,-297r0,-30r133,0r0,30r-133,0","w":127},"\u00a8":{"d":"85,-338r53,0r0,53r-53,0r0,-53xm-11,-338r54,0r0,53r-54,0r0,-53","w":127},"\u00b8":{"d":"117,57v0,50,-71,46,-105,29r9,-17v18,13,75,11,57,-20v-7,-8,-25,-7,-35,-2r-10,-9r26,-41r23,0r-19,30v28,-5,54,4,54,30","w":127},"\u2014":{"d":"0,-153r460,0r0,45r-460,0r0,-45","w":460},"\u00c6":{"d":"220,-146r-24,-145r-64,145r88,0xm437,-329r0,100r-50,0r0,-59r-130,0r14,101r47,0r0,-43r44,0r0,125r-44,0r0,-41r-40,0r17,105r94,0r0,-64r51,0r0,105r-245,0r0,-41r41,0r-9,-58r-116,0r-26,58r36,0r0,41r-115,0r0,-41r18,0r136,-288r277,0","w":460},"\u00aa":{"d":"1,-148r156,0r0,29r-156,0r0,-29xm41,-219v4,37,56,17,56,-10v1,-6,2,-11,2,-17v-29,0,-61,-2,-58,27xm7,-281v-2,-66,126,-62,128,-6v2,27,1,57,1,86r21,0r0,23r-55,0r0,-23v-16,40,-103,35,-101,-19v2,-45,49,-52,97,-47v2,-22,-4,-40,-26,-40v-16,0,-25,10,-25,26r-40,0","w":158},"\u00d8":{"d":"178,-335v43,0,77,13,102,33r30,-35r21,16r-33,37v25,28,39,68,39,117v0,107,-55,173,-158,173v-47,0,-77,-11,-104,-35r-34,40r-20,-16r36,-41v-22,-27,-36,-65,-36,-112v-2,-107,55,-177,157,-177xm178,-35v93,0,104,-119,80,-203r-146,167v14,21,33,35,66,36xm179,-294v-91,-2,-104,118,-79,198r145,-166v-17,-21,-38,-32,-66,-32","w":357},"\u0152":{"d":"84,-166v0,87,40,143,135,126r0,-251v-92,-17,-135,41,-135,125xm20,-167v0,-122,78,-165,209,-164r208,2r0,100r-51,0r0,-59r-109,0r0,100r42,0r0,-41r41,0r0,125r-41,0r0,-42r-42,0r0,105r109,0r0,-63r51,0r0,104r-220,0v-123,19,-197,-46,-197,-167","w":460},"\u00ba":{"d":"1,-148r155,0r0,29r-155,0r0,-29xm156,-251v0,48,-29,77,-77,77v-49,0,-78,-31,-78,-79v0,-47,30,-76,77,-76v50,0,78,29,78,78xm80,-199v49,-2,47,-105,-1,-106v-49,1,-49,106,1,106","w":158},"\u00e6":{"d":"16,-74v2,-66,71,-75,147,-70v-1,-35,0,-71,-37,-71v-30,0,-39,14,-44,39r-58,0v5,-53,40,-75,97,-75v36,1,65,10,75,37v14,-23,39,-36,73,-37v78,1,104,58,100,142r-150,0v-1,42,11,74,51,76v22,0,38,-20,39,-41r58,0v0,91,-159,107,-184,27v-13,34,-41,53,-86,53v-50,0,-83,-28,-81,-80xm73,-68v0,31,39,48,62,29v17,-14,27,-41,28,-70v-45,-3,-90,0,-90,41xm270,-215v-37,0,-51,31,-50,71r90,0v-1,-35,-5,-71,-40,-71","w":383},"\u0131":{"d":"17,0r0,-39r33,0r0,-167r-33,0r0,-39r94,0r0,205r28,0r0,40r-122,0","w":153},"\u00f8":{"d":"133,-35v54,0,59,-74,50,-127r-91,104v8,13,22,23,41,23xm132,6v-30,0,-55,-10,-74,-24r-29,32r-19,-14r30,-35v-18,-23,-28,-52,-28,-89v0,-75,43,-127,118,-127v32,0,57,10,76,24r25,-29r19,15r-26,31v17,21,28,52,27,88v-2,77,-41,128,-119,128xm132,-210v-55,0,-63,76,-51,128r91,-105v-7,-13,-21,-23,-40,-23","w":264},"\u0153":{"d":"278,-213v-34,2,-46,33,-45,70r87,0v0,-37,-4,-72,-42,-70xm175,-122v1,-44,-8,-91,-47,-91v-44,0,-52,50,-52,94v0,41,10,85,51,85v41,0,48,-45,48,-88xm283,-251v79,0,97,64,97,144r-148,0v3,36,10,73,49,74v25,0,37,-16,37,-41r58,0v1,88,-141,105,-173,36v-13,27,-42,44,-79,44v-77,0,-112,-57,-109,-139v2,-70,39,-118,110,-118v41,0,66,16,79,46v14,-28,39,-46,79,-46","w":391},"\u00df":{"d":"148,-303v-40,-1,-46,34,-46,78r0,186r21,0r0,39r-114,0r0,-39r32,0r0,-185v-5,-81,35,-119,111,-119v59,0,98,26,99,85v1,46,-27,69,-64,77v50,3,79,32,79,83v0,69,-40,104,-116,98r0,-39v37,3,52,-23,52,-58v0,-41,-19,-65,-60,-63r0,-44v34,1,48,-22,48,-54v0,-27,-15,-45,-42,-45","w":281},"\u00ac":{"d":"226,-179r-191,0r0,-43r234,0r0,142r-43,0r0,-99","w":303},"\u00b5":{"d":"138,-39v64,-5,41,-101,45,-167r-33,0r0,-39r94,0r0,206r32,0r0,39r-89,0v-1,-13,2,-30,-1,-41v-10,29,-36,46,-72,47v-10,0,-14,2,-16,8v8,29,0,59,-28,61v-56,-14,-5,-86,-26,-127v-9,-45,-2,-102,-4,-154r-31,0r0,-39r92,0r1,168v0,23,14,40,36,38","w":289},"\u2122":{"d":"152,-303r-60,0r0,161r-32,0r0,-161r-60,0r0,-26r152,0r0,26xm389,-142r-29,0r0,-161r-65,161r-17,0r-64,-161r0,161r-29,0r0,-187r48,0r53,132r56,-132r47,0r0,187","w":450},"\u00b1":{"d":"35,-42r234,0r0,42r-234,0r0,-42xm131,-193r0,-89r42,0r0,89r96,0r0,43r-96,0r0,88r-42,0r0,-88r-96,0r0,-43r96,0","w":303},"\u00f7":{"d":"121,-221r0,-61r62,0r0,61r-62,0xm121,-48r0,-61r62,0r0,61r-62,0xm269,-186r0,42r-234,0r0,-42r234,0","w":303},"\u00b0":{"d":"49,-266v-2,44,67,58,82,17v11,-30,-9,-60,-39,-60v-25,0,-42,17,-43,43xm92,-335v41,0,69,28,69,69v0,41,-26,69,-69,69v-43,0,-69,-28,-69,-69v0,-43,28,-69,69,-69","w":184},"\u00ae":{"d":"255,-214v0,-46,-62,-30,-107,-33r0,68v45,-2,107,12,107,-35xm283,-213v0,40,-24,54,-61,56r58,91r-33,0r-55,-91r-44,0r0,91r-29,0r0,-202v70,3,164,-19,164,55xm42,-165v0,91,59,148,148,148v87,0,145,-60,145,-148v0,-89,-59,-146,-147,-146v-88,0,-146,58,-146,146xm123,-322v120,-45,238,35,235,158v-2,103,-69,170,-170,170v-121,0,-202,-116,-156,-237v16,-43,48,-75,91,-91","w":377},"\u00a9":{"d":"193,-84v33,0,52,-20,61,-46r27,9v-12,37,-46,57,-92,57v-61,0,-93,-39,-97,-99v-6,-94,118,-137,177,-73v6,7,10,14,12,24r-31,7v-4,-27,-26,-43,-56,-43v-48,0,-71,35,-71,83v0,48,22,80,70,81xm188,-312v-129,-7,-191,164,-103,251v23,23,62,45,104,43v88,-5,146,-58,146,-145v0,-91,-58,-144,-147,-149xm123,-322v119,-46,238,35,235,156v-2,105,-68,172,-171,172v-120,0,-200,-116,-155,-237v16,-43,48,-75,91,-91","w":377},"\u00c1":{"d":"186,-432r62,0r-66,66r-38,0xm7,0r0,-41r27,0r108,-288r75,0r107,288r27,0r0,41r-134,0r0,-41r40,0r-21,-60r-122,0r-22,60r40,0r0,41r-125,0xm220,-142r-46,-134r-45,134r91,0","w":357},"\u00c2":{"d":"146,-366r-42,0r49,-66r51,0r50,66r-43,0r-32,-41xm7,0r0,-41r27,0r108,-288r75,0r107,288r27,0r0,41r-134,0r0,-41r40,0r-21,-60r-122,0r-22,60r40,0r0,41r-125,0xm220,-142r-46,-134r-45,134r91,0","w":357},"\u00c4":{"d":"200,-423r53,0r0,54r-53,0r0,-54xm104,-423r54,0r0,54r-54,0r0,-54xm7,0r0,-41r27,0r108,-288r75,0r107,288r27,0r0,41r-134,0r0,-41r40,0r-21,-60r-122,0r-22,60r40,0r0,41r-125,0xm220,-142r-46,-134r-45,134r91,0","w":357},"\u00c0":{"d":"172,-432r41,66r-37,0r-66,-66r62,0xm7,0r0,-41r27,0r108,-288r75,0r107,288r27,0r0,41r-134,0r0,-41r40,0r-21,-60r-122,0r-22,60r40,0r0,41r-125,0xm220,-142r-46,-134r-45,134r91,0","w":357},"\u00c5":{"d":"154,-402v0,14,11,26,25,25v13,0,25,-11,25,-25v0,-13,-13,-25,-26,-25v-13,0,-24,12,-24,25xm227,-403v0,28,-18,49,-48,49v-29,0,-48,-19,-48,-47v0,-28,19,-48,47,-48v27,0,49,18,49,46xm7,0r0,-41r27,0r108,-288r75,0r107,288r27,0r0,41r-134,0r0,-41r40,0r-21,-60r-122,0r-22,60r40,0r0,41r-125,0xm220,-142r-46,-134r-45,134r91,0","w":357},"\u00c3":{"d":"145,-423v33,-1,76,38,89,-3r26,0v-5,28,-18,54,-52,53v-31,-1,-74,-39,-85,4r-25,0v3,-29,18,-53,47,-54xm7,0r0,-41r27,0r108,-288r75,0r107,288r27,0r0,41r-134,0r0,-41r40,0r-21,-60r-122,0r-22,60r40,0r0,41r-125,0xm220,-142r-46,-134r-45,134r91,0","w":357},"\u00c7":{"d":"163,-335v42,0,75,12,94,36r0,-30r51,0r0,118r-55,0v-4,-49,-25,-82,-76,-82v-67,0,-88,60,-88,127v0,66,16,129,84,129v46,0,73,-26,74,-72r65,0v-3,78,-57,111,-134,115r-13,21v28,-5,54,4,54,30v0,49,-71,47,-104,29r8,-17v18,13,75,11,57,-20v-7,-8,-25,-7,-35,-2r-10,-9r21,-33v-92,-10,-135,-73,-135,-174v0,-100,43,-166,142,-166","w":332},"\u00c9":{"d":"161,-432r62,0r-66,66r-38,0xm11,0r0,-41r38,0r0,-247r-38,0r0,-41r272,0r0,100r-50,0r0,-59r-121,0r0,100r49,0r0,-42r43,0r0,125r-43,0r0,-41r-49,0r0,105r121,0r0,-64r50,0r0,105r-272,0","w":306},"\u00ca":{"d":"121,-366r-42,0r49,-66r51,0r50,66r-43,0r-32,-41xm11,0r0,-41r38,0r0,-247r-38,0r0,-41r272,0r0,100r-50,0r0,-59r-121,0r0,100r49,0r0,-42r43,0r0,125r-43,0r0,-41r-49,0r0,105r121,0r0,-64r50,0r0,105r-272,0","w":306},"\u00cb":{"d":"175,-423r53,0r0,54r-53,0r0,-54xm79,-423r53,0r0,54r-53,0r0,-54xm11,0r0,-41r38,0r0,-247r-38,0r0,-41r272,0r0,100r-50,0r0,-59r-121,0r0,100r49,0r0,-42r43,0r0,125r-43,0r0,-41r-49,0r0,105r121,0r0,-64r50,0r0,105r-272,0","w":306},"\u00c8":{"d":"147,-432r41,66r-38,0r-65,-66r62,0xm11,0r0,-41r38,0r0,-247r-38,0r0,-41r272,0r0,100r-50,0r0,-59r-121,0r0,100r49,0r0,-42r43,0r0,125r-43,0r0,-41r-49,0r0,105r121,0r0,-64r50,0r0,105r-272,0","w":306},"\u00cd":{"d":"88,-432r62,0r-66,66r-38,0xm9,-288r0,-41r144,0r0,41r-41,0r0,247r41,0r0,41r-144,0r0,-41r40,0r0,-247r-40,0","w":161},"\u00ce":{"d":"48,-366r-42,0r49,-66r51,0r50,66r-43,0r-32,-41xm9,-288r0,-41r144,0r0,41r-41,0r0,247r41,0r0,41r-144,0r0,-41r40,0r0,-247r-40,0","w":161},"\u00cf":{"d":"102,-423r53,0r0,54r-53,0r0,-54xm6,-423r54,0r0,54r-54,0r0,-54xm9,-288r0,-41r144,0r0,41r-41,0r0,247r41,0r0,41r-144,0r0,-41r40,0r0,-247r-40,0","w":161},"\u00cc":{"d":"74,-432r41,66r-37,0r-66,-66r62,0xm9,-288r0,-41r144,0r0,41r-41,0r0,247r41,0r0,41r-144,0r0,-41r40,0r0,-247r-40,0","w":161},"\u00d1":{"d":"145,-423v33,-1,76,38,89,-3r26,0v-5,28,-18,54,-52,53v-31,-1,-74,-39,-85,4r-25,0v3,-29,18,-53,47,-54xm12,0r0,-41r38,0r0,-247r-38,0r0,-41r122,0r123,259r0,-218r-39,0r0,-41r130,0r0,41r-36,0r0,288r-81,0r-126,-266r0,225r37,0r0,41r-130,0","w":357},"\u00d3":{"d":"186,-432r62,0r-66,66r-38,0xm21,-158v-2,-107,55,-177,157,-177v104,0,159,66,159,168v0,107,-55,173,-158,173v-101,0,-156,-62,-158,-164xm178,-35v99,2,110,-140,74,-218v-12,-27,-36,-41,-73,-41v-67,0,-91,57,-90,127v1,69,20,131,89,132","w":357},"\u00d4":{"d":"146,-366r-42,0r49,-66r51,0r50,66r-43,0r-32,-41xm21,-158v-2,-107,55,-177,157,-177v104,0,159,66,159,168v0,107,-55,173,-158,173v-101,0,-156,-62,-158,-164xm178,-35v99,2,110,-140,74,-218v-12,-27,-36,-41,-73,-41v-67,0,-91,57,-90,127v1,69,20,131,89,132","w":357},"\u00d6":{"d":"200,-423r53,0r0,54r-53,0r0,-54xm104,-423r54,0r0,54r-54,0r0,-54xm21,-158v-2,-107,55,-177,157,-177v104,0,159,66,159,168v0,107,-55,173,-158,173v-101,0,-156,-62,-158,-164xm178,-35v99,2,110,-140,74,-218v-12,-27,-36,-41,-73,-41v-67,0,-91,57,-90,127v1,69,20,131,89,132","w":357},"\u00d2":{"d":"172,-432r41,66r-37,0r-66,-66r62,0xm21,-158v-2,-107,55,-177,157,-177v104,0,159,66,159,168v0,107,-55,173,-158,173v-101,0,-156,-62,-158,-164xm178,-35v99,2,110,-140,74,-218v-12,-27,-36,-41,-73,-41v-67,0,-91,57,-90,127v1,69,20,131,89,132","w":357},"\u00d5":{"d":"145,-423v33,-1,76,38,89,-3r26,0v-5,28,-18,54,-52,53v-31,-1,-74,-39,-85,4r-25,0v3,-29,18,-53,47,-54xm21,-158v-2,-107,55,-177,157,-177v104,0,159,66,159,168v0,107,-55,173,-158,173v-101,0,-156,-62,-158,-164xm178,-35v99,2,110,-140,74,-218v-12,-27,-36,-41,-73,-41v-67,0,-91,57,-90,127v1,69,20,131,89,132","w":357},"\u00da":{"d":"173,-432r62,0r-66,66r-37,0xm292,-142v17,123,-93,178,-195,132v-40,-18,-57,-61,-57,-123r0,-155r-33,0r0,-41r137,0r0,41r-41,0r0,156v-4,55,17,94,67,94v100,0,55,-153,65,-250r-41,0r0,-41r131,0r0,41r-33,0r0,146","w":332},"\u00db":{"d":"133,-366r-41,0r48,-66r51,0r50,66r-43,0r-32,-41xm292,-142v17,123,-93,178,-195,132v-40,-18,-57,-61,-57,-123r0,-155r-33,0r0,-41r137,0r0,41r-41,0r0,156v-4,55,17,94,67,94v100,0,55,-153,65,-250r-41,0r0,-41r131,0r0,41r-33,0r0,146","w":332},"\u00dc":{"d":"187,-423r54,0r0,54r-54,0r0,-54xm92,-423r53,0r0,54r-53,0r0,-54xm292,-142v17,123,-93,178,-195,132v-40,-18,-57,-61,-57,-123r0,-155r-33,0r0,-41r137,0r0,41r-41,0r0,156v-4,55,17,94,67,94v100,0,55,-153,65,-250r-41,0r0,-41r131,0r0,41r-33,0r0,146","w":332},"\u00d9":{"d":"159,-432r42,66r-38,0r-66,-66r62,0xm292,-142v17,123,-93,178,-195,132v-40,-18,-57,-61,-57,-123r0,-155r-33,0r0,-41r137,0r0,41r-41,0r0,156v-4,55,17,94,67,94v100,0,55,-153,65,-250r-41,0r0,-41r131,0r0,41r-33,0r0,146","w":332},"\u0178":{"d":"179,-423r53,0r0,54r-53,0r0,-54xm83,-423r54,0r0,54r-54,0r0,-54xm7,-329r131,0r0,41r-36,0r59,106r62,-106r-34,0r0,-41r120,0r0,41r-22,0r-98,162r0,85r46,0r0,41r-155,0r0,-41r46,0r0,-85r-98,-162r-21,0r0,-41","w":315},"\u00e1":{"d":"139,-348r62,0r-66,66r-37,0xm77,-69v0,45,63,42,76,9v6,-15,12,-33,13,-53v-45,-1,-89,-1,-89,44xm125,-251v66,0,98,33,98,102r0,110r32,0r0,39r-85,0r0,-39v-12,29,-39,45,-76,45v-48,0,-78,-28,-78,-77v1,-72,75,-84,148,-77v3,-35,-4,-67,-39,-66v-26,0,-39,18,-39,44r-61,0v1,-59,41,-80,100,-81","w":264},"\u00e2":{"d":"99,-282r-41,0r48,-66r51,0r50,66r-43,0r-32,-40xm77,-69v0,45,63,42,76,9v6,-15,12,-33,13,-53v-45,-1,-89,-1,-89,44xm125,-251v66,0,98,33,98,102r0,110r32,0r0,39r-85,0r0,-39v-12,29,-39,45,-76,45v-48,0,-78,-28,-78,-77v1,-72,75,-84,148,-77v3,-35,-4,-67,-39,-66v-26,0,-39,18,-39,44r-61,0v1,-59,41,-80,100,-81","w":264},"\u00e4":{"d":"153,-338r54,0r0,53r-54,0r0,-53xm58,-338r53,0r0,53r-53,0r0,-53xm77,-69v0,45,63,42,76,9v6,-15,12,-33,13,-53v-45,-1,-89,-1,-89,44xm125,-251v66,0,98,33,98,102r0,110r32,0r0,39r-85,0r0,-39v-12,29,-39,45,-76,45v-48,0,-78,-28,-78,-77v1,-72,75,-84,148,-77v3,-35,-4,-67,-39,-66v-26,0,-39,18,-39,44r-61,0v1,-59,41,-80,100,-81","w":264},"\u00e0":{"d":"125,-348r42,66r-38,0r-66,-66r62,0xm77,-69v0,45,63,42,76,9v6,-15,12,-33,13,-53v-45,-1,-89,-1,-89,44xm125,-251v66,0,98,33,98,102r0,110r32,0r0,39r-85,0r0,-39v-12,29,-39,45,-76,45v-48,0,-78,-28,-78,-77v1,-72,75,-84,148,-77v3,-35,-4,-67,-39,-66v-26,0,-39,18,-39,44r-61,0v1,-59,41,-80,100,-81","w":264},"\u00e5":{"d":"102,-317v0,13,11,26,25,25v13,0,26,-13,26,-26v0,-13,-14,-25,-26,-25v-13,0,-26,12,-25,26xm175,-318v0,29,-19,49,-48,49v-27,0,-47,-18,-47,-47v0,-30,19,-48,47,-48v29,0,48,19,48,46xm77,-69v0,45,63,42,76,9v6,-15,12,-33,13,-53v-45,-1,-89,-1,-89,44xm125,-251v66,0,98,33,98,102r0,110r32,0r0,39r-85,0r0,-39v-12,29,-39,45,-76,45v-48,0,-78,-28,-78,-77v1,-72,75,-84,148,-77v3,-35,-4,-67,-39,-66v-26,0,-39,18,-39,44r-61,0v1,-59,41,-80,100,-81","w":264},"\u00e3":{"d":"98,-339v33,0,76,38,89,-2r26,0v-6,28,-19,54,-52,53v-31,0,-73,-38,-85,3r-25,0v3,-29,19,-54,47,-54xm77,-69v0,45,63,42,76,9v6,-15,12,-33,13,-53v-45,-1,-89,-1,-89,44xm125,-251v66,0,98,33,98,102r0,110r32,0r0,39r-85,0r0,-39v-12,29,-39,45,-76,45v-48,0,-78,-28,-78,-77v1,-72,75,-84,148,-77v3,-35,-4,-67,-39,-66v-26,0,-39,18,-39,44r-61,0v1,-59,41,-80,100,-81","w":264},"\u00e7":{"d":"115,-251v33,1,59,10,68,35r0,-29r47,0r0,92r-50,0v-1,-32,-14,-56,-46,-56v-47,0,-55,46,-55,92v0,42,13,83,56,83v27,0,40,-21,43,-48r53,0v-2,60,-40,86,-99,88r-13,21v28,-5,54,4,54,30v0,48,-71,47,-105,29r9,-17v19,13,74,11,57,-20v-8,-8,-26,-7,-36,-2r-9,-9r21,-34v-126,-5,-131,-256,5,-255","w":238},"\u00e9":{"d":"135,-348r62,0r-66,66r-38,0xm179,-145v11,-70,-82,-93,-96,-24v-2,8,-3,16,-4,24r100,0xm128,-251v82,-3,119,59,113,141r-163,0v0,42,15,74,56,76v25,0,42,-19,45,-41r59,0v-7,53,-49,81,-107,81v-75,0,-115,-53,-115,-131v0,-75,39,-124,112,-126"},"\u00ea":{"d":"95,-282r-42,0r49,-66r51,0r50,66r-43,0r-32,-40xm179,-145v11,-70,-82,-93,-96,-24v-2,8,-3,16,-4,24r100,0xm128,-251v82,-3,119,59,113,141r-163,0v0,42,15,74,56,76v25,0,42,-19,45,-41r59,0v-7,53,-49,81,-107,81v-75,0,-115,-53,-115,-131v0,-75,39,-124,112,-126"},"\u00eb":{"d":"149,-338r53,0r0,53r-53,0r0,-53xm53,-338r54,0r0,53r-54,0r0,-53xm179,-145v11,-70,-82,-93,-96,-24v-2,8,-3,16,-4,24r100,0xm128,-251v82,-3,119,59,113,141r-163,0v0,42,15,74,56,76v25,0,42,-19,45,-41r59,0v-7,53,-49,81,-107,81v-75,0,-115,-53,-115,-131v0,-75,39,-124,112,-126"},"\u00e8":{"d":"121,-348r41,66r-37,0r-66,-66r62,0xm179,-145v11,-70,-82,-93,-96,-24v-2,8,-3,16,-4,24r100,0xm128,-251v82,-3,119,59,113,141r-163,0v0,42,15,74,56,76v25,0,42,-19,45,-41r59,0v-7,53,-49,81,-107,81v-75,0,-115,-53,-115,-131v0,-75,39,-124,112,-126"},"\u00ed":{"d":"84,-348r62,0r-66,66r-38,0xm17,0r0,-39r33,0r0,-167r-33,0r0,-39r94,0r0,205r28,0r0,40r-122,0","w":153},"\u00ee":{"d":"44,-282r-42,0r49,-66r51,0r50,66r-43,0r-32,-40xm17,0r0,-39r33,0r0,-167r-33,0r0,-39r94,0r0,205r28,0r0,40r-122,0","w":153},"\u00ef":{"d":"98,-338r53,0r0,53r-53,0r0,-53xm2,-338r54,0r0,53r-54,0r0,-53xm17,0r0,-39r33,0r0,-167r-33,0r0,-39r94,0r0,205r28,0r0,40r-122,0","w":153},"\u00ec":{"d":"70,-348r41,66r-37,0r-66,-66r62,0xm17,0r0,-39r33,0r0,-167r-33,0r0,-39r94,0r0,205r28,0r0,40r-122,0","w":153},"\u00f1":{"d":"111,-339v33,0,76,38,89,-2r26,0v-6,28,-19,54,-52,53v-31,0,-73,-38,-85,3r-26,0v5,-27,19,-54,48,-54xm154,-208v-71,1,-42,102,-48,169r30,0r0,39r-123,0r0,-39r32,0r0,-167r-32,0r0,-39r89,0r0,40v27,-73,149,-55,149,33r0,133r30,0r0,39r-120,0r0,-39r29,0r-1,-127v0,-22,-12,-42,-35,-42","w":289},"\u00f3":{"d":"139,-348r62,0r-66,66r-37,0xm252,-122v0,77,-42,128,-120,128v-76,0,-118,-51,-119,-130v0,-77,43,-127,118,-127v80,0,121,50,121,129xm133,-35v76,-3,76,-173,-1,-175v-77,4,-75,172,1,175","w":264},"\u00f4":{"d":"99,-282r-41,0r48,-66r51,0r50,66r-43,0r-32,-40xm252,-122v0,77,-42,128,-120,128v-76,0,-118,-51,-119,-130v0,-77,43,-127,118,-127v80,0,121,50,121,129xm133,-35v76,-3,76,-173,-1,-175v-77,4,-75,172,1,175","w":264},"\u00f6":{"d":"153,-338r54,0r0,53r-54,0r0,-53xm58,-338r53,0r0,53r-53,0r0,-53xm252,-122v0,77,-42,128,-120,128v-76,0,-118,-51,-119,-130v0,-77,43,-127,118,-127v80,0,121,50,121,129xm133,-35v76,-3,76,-173,-1,-175v-77,4,-75,172,1,175","w":264},"\u00f2":{"d":"125,-348r42,66r-38,0r-66,-66r62,0xm252,-122v0,77,-42,128,-120,128v-76,0,-118,-51,-119,-130v0,-77,43,-127,118,-127v80,0,121,50,121,129xm133,-35v76,-3,76,-173,-1,-175v-77,4,-75,172,1,175","w":264},"\u00f5":{"d":"98,-339v33,0,76,38,89,-2r26,0v-6,28,-19,54,-52,53v-31,0,-73,-38,-85,3r-25,0v3,-29,19,-54,47,-54xm252,-122v0,77,-42,128,-120,128v-76,0,-118,-51,-119,-130v0,-77,43,-127,118,-127v80,0,121,50,121,129xm133,-35v76,-3,76,-173,-1,-175v-77,4,-75,172,1,175","w":264},"\u00fa":{"d":"152,-348r62,0r-66,66r-38,0xm138,-39v64,-5,41,-101,45,-167r-33,0r0,-39r94,0r0,206r32,0r0,39r-89,0r0,-41v-11,29,-37,47,-73,47v-51,0,-74,-35,-74,-90r0,-122r-31,0r0,-39r92,0r1,168v0,23,14,40,36,38","w":289},"\u00fb":{"d":"112,-282r-42,0r49,-66r51,0r50,66r-43,0r-32,-40xm138,-39v64,-5,41,-101,45,-167r-33,0r0,-39r94,0r0,206r32,0r0,39r-89,0r0,-41v-11,29,-37,47,-73,47v-51,0,-74,-35,-74,-90r0,-122r-31,0r0,-39r92,0r1,168v0,23,14,40,36,38","w":289},"\u00fc":{"d":"166,-338r53,0r0,53r-53,0r0,-53xm70,-338r54,0r0,53r-54,0r0,-53xm138,-39v64,-5,41,-101,45,-167r-33,0r0,-39r94,0r0,206r32,0r0,39r-89,0r0,-41v-11,29,-37,47,-73,47v-51,0,-74,-35,-74,-90r0,-122r-31,0r0,-39r92,0r1,168v0,23,14,40,36,38","w":289},"\u00f9":{"d":"138,-348r41,66r-37,0r-66,-66r62,0xm138,-39v64,-5,41,-101,45,-167r-33,0r0,-39r94,0r0,206r32,0r0,39r-89,0r0,-41v-11,29,-37,47,-73,47v-51,0,-74,-35,-74,-90r0,-122r-31,0r0,-39r92,0r1,168v0,23,14,40,36,38","w":289},"\u00ff":{"d":"158,-338r53,0r0,53r-53,0r0,-53xm62,-338r53,0r0,53r-53,0r0,-53xm7,-245r117,0r0,39r-32,0r50,136r47,-136r-31,0r0,-39r109,0r0,39r-20,0r-98,247v-12,33,-52,46,-101,37r0,-42v34,5,59,-3,63,-33r-84,-209r-20,0r0,-39","w":272},"\u00a0":{"w":127},"\"":{"d":"29,-197r-12,-132r58,0r-13,132r-33,0xm118,-197r-12,-132r58,0r-13,132r-33,0","w":184},"!":{"d":"46,-61r63,0r0,61r-63,0r0,-61xm41,-329r72,0r-12,238r-47,0","w":153},"\u00a4":{"d":"190,-157v0,-37,-25,-62,-62,-62v-37,0,-61,25,-61,61v0,36,24,62,61,62v36,0,62,-24,62,-61xm190,-65v-32,23,-89,26,-123,0r-25,24r-32,-31r25,-25v-24,-28,-24,-94,0,-122r-24,-24r31,-32r24,24v31,-24,94,-25,124,0r24,-24r32,32r-24,24v24,29,24,94,0,123r24,24r-32,31"},"\u0141":{"d":"11,0r0,-41r39,0r0,-97r-39,27r0,-41r39,-28r0,-108r-39,0r0,-41r151,0r0,41r-49,0r0,78r62,-40r0,41r-62,41r0,127r98,0r0,-75r55,0r0,116r-255,0","w":281},"\u0142":{"d":"16,0r0,-39r31,0r0,-108r-34,32r0,-41r34,-32r0,-108r-31,0r0,-39r93,0r0,103r36,-32r0,41r-36,33r0,151r29,0r0,39r-122,0","w":153},"\u00b9":{"d":"19,-299v19,-11,32,-23,50,-36r38,0r0,173r28,0r0,25r-98,0r0,-25r29,0r0,-137v-12,14,-32,22,-47,33r0,-33","w":153},"\u00d0":{"d":"319,-167v1,115,-57,168,-173,167r-134,0r0,-41r38,0r0,-117r-36,0r0,-30r36,0r0,-100r-38,0r0,-41r153,0v103,0,153,60,154,162xm253,-167v0,-88,-44,-130,-140,-121r0,100r74,0r0,30r-74,0r0,117v97,9,140,-33,140,-126","w":340},"\u00bd":{"d":"82,0r178,-329r37,0r-177,329r-38,0xm301,-201v51,-3,86,43,59,85v-24,37,-57,64,-90,91r68,0r0,-29r34,0r0,54r-142,0r0,-36v35,-35,81,-59,98,-112v0,-14,-11,-29,-27,-28v-21,1,-29,17,-30,37r-41,0v2,-41,28,-59,71,-62xm12,-299v19,-11,32,-23,49,-36r39,0r0,173r27,0r0,25r-98,0r0,-25r30,0r0,-137v-13,14,-32,21,-47,33r0,-33","w":383},"\u00de":{"d":"209,-167v0,-48,-44,-53,-94,-50r0,101v50,3,94,-2,94,-51xm275,-167v0,84,-70,98,-160,92r0,34r38,0r0,41r-140,0r0,-41r39,0r0,-247r-39,0r0,-41r140,0r0,41r-38,0r0,29v88,-5,160,8,160,92","w":289},"\u00bc":{"d":"12,-299v19,-11,32,-23,49,-36r39,0r0,173r27,0r0,25r-98,0r0,-25r30,0r0,-137v-13,14,-32,21,-47,33r0,-33xm91,0r179,-329r36,0r-177,329r-38,0xm250,-75r59,0r0,-89xm221,-51r0,-34r78,-113r50,0r0,123r23,0r0,24r-23,0r0,28r21,0r0,23r-89,0r0,-23r28,0r0,-28r-88,0","w":383},"\u00a6":{"d":"131,-329r42,0r0,131r-42,0r0,-131xm131,-132r42,0r0,132r-42,0r0,-132","w":303},"\u00fe":{"d":"173,6v-35,0,-53,-18,-69,-43r0,72r34,0r0,40r-127,0r0,-40r32,0r0,-339r-32,0r0,-39r93,0r1,132v15,-23,33,-40,67,-40v71,0,103,54,103,125v0,74,-28,132,-102,132xm100,-121v0,42,13,85,57,85v43,0,55,-41,55,-83v0,-44,-8,-90,-53,-90v-43,0,-59,45,-59,88","w":289},"\u00be":{"d":"84,-157v34,1,38,-62,6,-65r-21,-1r0,-24v26,1,41,-9,41,-34v0,-16,-11,-29,-28,-29v-19,0,-28,16,-28,34r-41,0v-6,-72,125,-79,137,-17v6,35,-14,51,-42,58v27,3,44,17,46,47v4,60,-83,70,-122,43v-13,-10,-20,-25,-20,-45r40,0v2,19,11,32,32,33xm96,0r178,-329r37,0r-178,329r-37,0xm250,-75r59,0r0,-89xm221,-51r0,-34r78,-113r50,0r0,123r23,0r0,24r-23,0r0,28r21,0r0,23r-89,0r0,-23r28,0r0,-28r-88,0","w":383},"\u00b2":{"d":"76,-335v51,-3,87,42,60,85v-23,37,-57,64,-91,91r69,0r0,-29r34,0r0,54r-142,0r0,-36v31,-30,66,-56,91,-92v13,-18,3,-49,-21,-48v-20,2,-29,16,-30,37r-40,0v2,-41,27,-59,70,-62","w":153},"\u00f0":{"d":"13,-122v-4,-89,96,-140,165,-97v-11,-26,-37,-47,-60,-62r-42,27r-16,-19r32,-21v-14,-6,-29,-11,-44,-13r13,-40v28,5,54,14,77,24r42,-28r18,20r-35,21v54,34,88,90,88,176v1,85,-40,140,-119,140v-77,0,-116,-51,-119,-128xm132,-195v-75,0,-75,160,0,160v75,0,75,-160,0,-160","w":264},"\u00d7":{"d":"122,-165r-87,-87r30,-30r87,87r87,-87r30,30r-87,87r87,87r-30,30r-87,-87r-87,87r-30,-30","w":303},"\u00b3":{"d":"78,-157v34,2,38,-62,6,-65r-21,-1r0,-24v26,1,41,-9,41,-34v0,-16,-11,-29,-28,-29v-19,0,-27,18,-28,34r-41,0v-6,-72,125,-79,137,-17v6,35,-14,51,-42,58v27,3,44,17,46,47v4,60,-83,70,-122,43v-13,-10,-20,-25,-20,-45r40,0v3,18,11,33,32,33","w":153},"\u0160":{"d":"157,-366r-51,0r-48,-66r41,0r33,41r32,-41r43,0xm115,-335v36,0,62,10,76,33r0,-27r52,0r0,108r-53,0v-2,-41,-15,-75,-59,-73v-57,-9,-65,71,-17,87v61,21,139,32,137,117v-1,63,-42,96,-105,96v-35,0,-63,-11,-77,-37r0,31r-52,0r0,-115r55,0v1,44,16,74,60,78v56,5,73,-71,23,-91v-57,-23,-138,-32,-138,-111v0,-61,33,-95,98,-96","w":264},"\u00dd":{"d":"165,-432r62,0r-66,66r-38,0xm7,-329r131,0r0,41r-36,0r59,106r62,-106r-34,0r0,-41r120,0r0,41r-22,0r-98,162r0,85r46,0r0,41r-155,0r0,-41r46,0r0,-85r-98,-162r-21,0r0,-41","w":315},"\u017d":{"d":"170,-366r-51,0r-49,-66r42,0r33,41r32,-41r43,0xm14,0r0,-51r183,-238r-126,0r0,65r-52,0r0,-105r251,0r0,50r-185,239r138,0r0,-69r52,0r0,109r-261,0","w":289},"\u0161":{"d":"140,-282r-51,0r-49,-66r42,0r33,41r32,-41r43,0xm21,-180v0,-69,103,-93,142,-44r0,-21r43,0r0,79r-45,0v-2,-27,-13,-45,-42,-48v-36,-4,-55,48,-17,57v53,12,111,18,111,83v0,80,-111,105,-148,49r0,25r-44,0r0,-85r48,0v2,30,15,52,48,51v29,5,48,-39,22,-55v-52,-17,-118,-19,-118,-91","w":230},"\u00fd":{"d":"144,-348r62,0r-66,66r-38,0xm7,-245r117,0r0,39r-32,0r50,136r47,-136r-31,0r0,-39r109,0r0,39r-20,0r-98,247v-12,33,-52,46,-101,37r0,-42v34,5,59,-3,63,-33r-84,-209r-20,0r0,-39","w":272},"\u017e":{"d":"145,-282r-51,0r-49,-66r42,0r33,41r32,-41r43,0xm20,0r0,-47r130,-161r-79,0r0,39r-47,0r0,-76r194,0r0,45r-132,163r85,0r0,-45r47,0r0,82r-198,0","w":238},"\u00ad":{"d":"29,-153r112,0r0,45r-112,0r0,-45","w":170}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright  1990, 1992, 2002 Adobe Systems Incorporated.  All Rights Reserved. 
 * 1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Glypha is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed
 * through Linotype Library GmbH, and may be registered in certain jurisdictions.
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":230,"face":{"font-family":"glyph","font-weight":250,"font-style":"oblique","font-stretch":"normal","units-per-em":"460","panose-1":"2 6 3 3 3 5 5 2 2 4","ascent":"329","descent":"-131","bbox":"-25 -427.416 488 129","underline-thickness":"23","underline-position":"-23","slope":"-12","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":115},"#":{"d":"205,-208r-79,0r-31,87r79,0xm26,-121r59,0r30,-87r-57,0r2,-10r59,0r38,-111r10,0r-38,111r79,0r39,-111r10,0r-39,111r58,0r-2,10r-59,0r-31,87r58,0r-2,10r-59,0r-38,111r-11,0r39,-111r-79,0r-39,111r-10,0r38,-111r-57,0"},"$":{"d":"188,-335v40,1,56,27,65,59r11,-53r10,0r-22,105r-10,0v12,-53,-7,-97,-56,-101r-32,151v39,15,86,31,72,91v-12,52,-50,86,-111,89r-8,41r-10,0r8,-41v-35,-3,-57,-30,-61,-64r-13,58r-10,0r23,-108r10,0v-8,52,6,98,54,103r35,-163v-37,-14,-78,-30,-66,-85v11,-48,47,-77,101,-82r10,-45r10,0xm152,-164r-33,159v61,-3,102,-41,98,-104v-2,-34,-38,-42,-65,-55xm176,-325v-49,4,-80,31,-90,73v-11,46,24,60,58,74"},"%":{"d":"314,-337r10,0r-234,344r-10,0xm307,-142v-10,-27,-48,-21,-63,0v-16,21,-57,135,3,137v51,1,67,-89,60,-137xm293,-23v-25,44,-99,35,-87,-28v11,-55,18,-119,76,-119v67,0,31,112,11,147xm169,-187v-24,43,-98,34,-87,-29v10,-57,18,-119,76,-119v67,0,31,113,11,148xm183,-306v-10,-27,-47,-22,-63,0v-16,22,-56,134,2,137v51,2,69,-88,61,-137","w":332},"&":{"d":"146,-178v-53,20,-127,85,-81,150v38,53,135,7,161,-30xm237,-271v12,-53,-53,-65,-90,-39v-42,29,-18,92,6,120v37,-17,74,-38,84,-81xm300,-184v-11,49,-30,89,-60,125r32,51r48,0r-2,8r-54,0r-33,-51v-34,64,-211,92,-187,-34v11,-55,53,-79,98,-101v-31,-31,-46,-102,-1,-130v36,-36,123,-18,106,47v-12,46,-50,65,-88,86r76,116v27,-28,44,-73,55,-117r-36,0r2,-8r89,0r-2,8r-43,0","w":332},"\u2019":{"d":"109,-329r19,0v-5,35,-24,55,-37,82r-10,0r32,-58r-9,0","w":102},"(":{"d":"84,78v-50,-89,-23,-251,21,-323v21,-34,41,-66,68,-96r11,0v-86,84,-159,267,-90,419r-10,0","w":127},")":{"d":"100,-341v60,116,12,298,-51,372v-12,15,-24,31,-38,47r-11,0v88,-87,157,-265,90,-419r10,0","w":127},"*":{"d":"154,-259r12,-70r12,0r-17,70r68,-24r1,13r-68,17r27,58r-11,8r-23,-60r-52,60r-7,-8r54,-58r-61,-17r7,-13","w":204},"+":{"d":"156,-111r-111,0r2,-10r112,0r24,-112r10,0r-24,112r111,0r-2,10r-111,0r-24,111r-10,0","w":276},",":{"d":"51,-25r19,0v-4,35,-23,56,-36,83r-11,0r32,-58r-9,0","w":115},"-":{"d":"158,-121r-111,0r3,-10r110,0","w":153},".":{"d":"53,-25r19,0r-5,25r-19,0","w":115},"\/":{"d":"201,-335r11,0r-190,341r-10,0","w":153},"0":{"d":"114,6v-83,5,-70,-102,-54,-171v20,-87,45,-165,126,-170v82,-5,70,102,54,170v-21,86,-46,166,-126,171xm184,-325v-96,0,-109,123,-124,218v-9,55,3,102,56,102v97,0,108,-124,124,-217v9,-55,-4,-103,-56,-103"},"1":{"d":"78,-8r49,0r65,-311v-27,26,-59,46,-89,69r3,-14r89,-65r10,0r-68,321r47,0r-2,8r-106,0"},"2":{"d":"84,-236v13,-53,43,-94,106,-99v79,-6,76,92,38,134v-62,68,-129,128,-193,193r164,0r11,-54r10,0r-13,62r-184,0r3,-14r166,-162v29,-28,74,-82,44,-131v-8,-13,-26,-18,-48,-18v-56,0,-81,40,-94,89r-10,0"},"3":{"d":"172,-169v69,10,51,118,10,147v-34,41,-139,36,-139,-27v-3,-13,1,-29,3,-43r11,0v-31,77,61,111,116,66v26,-21,51,-83,25,-117v-12,-15,-34,-21,-63,-20r3,-10v76,7,118,-60,95,-128v-9,-14,-26,-24,-49,-24v-53,0,-80,38,-93,82r-10,0v14,-50,44,-89,104,-92v42,-2,66,23,66,58v0,58,-29,100,-79,108"},"4":{"d":"186,-115r43,-204r-187,204r144,0xm115,-8r49,0r20,-98r-152,0r3,-15r193,-208r14,0r-46,214r48,0r-2,9r-47,0r-21,98r43,0r-2,8r-102,0"},"5":{"d":"164,-200v-45,1,-69,29,-83,60r-14,0r48,-189r152,0r-2,8r-142,0r-40,158v23,-57,148,-69,151,11v4,89,-51,177,-146,153v-32,-8,-48,-43,-36,-88r10,0v-9,46,8,84,55,82v72,-3,106,-58,106,-132v0,-40,-18,-63,-59,-63"},"6":{"d":"160,-200v-72,3,-105,59,-105,131v0,38,21,64,61,64v72,0,103,-60,103,-134v0,-37,-20,-63,-59,-61xm188,-27v-45,50,-153,42,-142,-47v12,-99,38,-193,97,-243v48,-39,134,-11,110,63r-11,0v22,-78,-76,-88,-113,-38v-27,37,-46,89,-60,138v19,-50,122,-85,152,-24v25,51,-5,119,-33,151"},"7":{"d":"93,-329r187,0r-3,13r-102,157r-97,159r-14,0r204,-321r-167,0r-12,58r-10,0"},"8":{"d":"244,-281v-16,-79,-149,-38,-149,30v-22,75,78,93,120,49v18,-18,36,-45,29,-79xm224,-117v2,83,-68,143,-148,114v-49,-18,-33,-107,-4,-138v14,-15,33,-24,53,-32v-64,-13,-45,-116,-4,-138v42,-43,157,-27,133,56v-12,41,-36,68,-73,83v27,6,42,26,43,55xm150,-167v-72,0,-115,73,-86,137v17,37,92,28,115,0v42,-30,55,-137,-29,-137"},"9":{"d":"140,-129v73,0,105,-58,105,-132v0,-38,-21,-66,-61,-64v-71,4,-103,61,-103,135v0,37,21,61,59,61xm112,-303v45,-50,152,-40,142,47v-12,100,-38,194,-97,244v-47,40,-132,10,-110,-63r11,0v-23,77,75,87,112,38v26,-35,51,-91,60,-138v-18,51,-122,84,-151,24v-25,-52,4,-121,33,-152"},":":{"d":"53,-25r19,0r-5,25r-19,0xm95,-222r20,0r-6,25r-19,0","w":115},";":{"d":"93,-222r20,0r-6,25r-19,0xm51,-25r19,0v-4,35,-23,56,-36,83r-11,0r32,-58r-9,0","w":115},"<":{"d":"47,-121r258,-115r-2,10r-246,110r199,110r-3,10r-208,-115","w":276},"=":{"d":"38,-77r233,0r-2,10r-233,0xm57,-166r233,0r-2,11r-233,0","w":276},">":{"d":"23,-6r246,-110r-199,-110r2,-10r208,115r-2,10r-257,115","w":276},"?":{"d":"82,0r5,-25r20,0r-5,25r-20,0xm75,-250v5,-67,104,-116,156,-61v29,70,-29,123,-72,154v-31,22,-39,50,-48,93r-10,0v3,-109,132,-110,128,-220v-1,-28,-24,-41,-57,-41v-49,0,-75,31,-87,75r-10,0","w":204},"@":{"d":"169,-225v29,-35,126,-69,141,-1r19,-32r12,0r-90,154v-7,17,-6,36,18,32v75,-13,130,-84,117,-175v-14,-102,-190,-86,-256,-32v-54,44,-109,164,-48,234v23,26,62,40,111,40v78,1,123,-35,161,-74r10,0v-52,97,-296,129,-317,-10v-21,-142,76,-246,217,-246v87,0,151,46,131,142v-14,66,-59,123,-130,131v-26,3,-29,-9,-29,-30v-31,43,-143,44,-121,-41v9,-36,33,-67,54,-92xm304,-214v1,-48,-61,-50,-95,-30v-39,23,-71,65,-84,113v-18,71,74,70,107,30v26,-33,48,-76,72,-113","w":368},"A":{"d":"249,-136r-27,-188r-106,188r133,0xm7,-8r27,0r181,-321r18,0r44,321r26,0r-2,8r-82,0r2,-8r46,0r-16,-119r-140,0r-67,119r46,0r-2,8r-82,0","w":306},"B":{"d":"64,-8v101,9,199,-13,181,-121v-8,-51,-87,-36,-147,-38xm99,-175v94,7,186,-8,173,-109v-7,-49,-84,-35,-142,-37xm10,-8r44,0r66,-313r-43,0r2,-8v61,5,138,-8,184,12v48,41,1,147,-59,145v80,-1,54,120,10,149v-48,32,-131,19,-206,23","w":255},"C":{"d":"160,-321v58,-31,141,-10,145,56r13,-64r10,0r-24,113r-10,0v18,-83,-45,-132,-121,-100v-71,29,-111,106,-111,206v0,62,26,105,88,105v67,0,105,-44,121,-100r10,0v-16,76,-102,143,-185,98v-85,-46,-35,-223,16,-276v14,-15,30,-28,48,-38","w":281},"D":{"d":"10,-8r44,0r66,-313r-44,0r2,-8v110,0,248,-19,248,94v0,135,-63,233,-201,235r-117,0xm64,-8v142,10,224,-42,246,-160v20,-100,-20,-155,-120,-153r-60,0","w":306},"E":{"d":"10,-8r44,0r66,-313r-44,0r2,-8r221,0r-21,98r-10,0r19,-90r-157,0r-32,149r94,0r13,-60r10,0r-27,131r-10,0r13,-63r-94,0r-33,156r158,0r20,-93r10,0r-22,101r-222,0","w":255},"F":{"d":"10,-8r44,0r66,-313r-44,0r2,-8r211,0r-20,96r-10,0r18,-88r-147,0r-32,154r91,0r12,-57r10,0r-27,124r-10,0r13,-58r-91,0r-32,150r57,0r-2,8r-111,0"},"G":{"d":"115,-289v41,-55,181,-69,196,14r11,-54r11,0r-24,113r-10,0v14,-64,-12,-113,-77,-109v-116,7,-165,105,-165,227v0,92,117,117,177,63v29,-26,41,-69,49,-115r-57,0r2,-8r104,0r-2,8r-37,0r-31,150r-10,0r12,-60v-26,63,-148,94,-196,29v-53,-71,-5,-217,47,-258","w":306},"H":{"d":"10,-8r44,0r66,-313r-44,0r2,-8r98,0r-2,8r-44,0r-32,149r183,0r32,-149r-44,0r2,-8r97,0r-1,8r-44,0r-66,313r43,0r-1,8r-98,0r2,-8r44,0r33,-156r-183,0r-33,156r44,0r-2,8r-98,0","w":306},"I":{"d":"13,-8r48,0r66,-313r-47,0r1,-8r105,0r-2,8r-47,0r-66,313r47,0r-2,8r-104,0","w":127},"J":{"d":"43,-103v-12,44,-13,98,43,98v53,0,71,-41,79,-84r49,-232r-51,0r2,-8r102,0r-2,8r-41,0r-51,240v-8,60,-58,104,-122,80v-32,-12,-28,-67,-18,-102r10,0","w":204},"K":{"d":"10,-8r44,0r66,-313r-44,0r2,-8r96,0r-2,8r-42,0r-31,145r180,-145r-39,0r2,-8r74,0v1,12,-14,7,-24,8r-181,146r121,167r18,0r-2,8r-71,0r1,-8r39,0r-118,-164r-35,164r42,0r-2,8r-96,0","w":255},"L":{"d":"10,-8r44,0r66,-313r-44,0r2,-8r111,0r-2,8r-57,0r-66,313r148,0r19,-93r11,0r-22,101r-212,0"},"M":{"d":"12,-8r47,0r67,-313r-48,0r2,-8r70,0r45,315r180,-315r68,0r-2,8r-47,0r-66,313r47,0r-2,8r-101,0r2,-8r43,0r67,-313r-3,0r-185,321r-10,0r-48,-321r-2,0r-67,313r44,0r-2,8r-101,0","w":383},"N":{"d":"7,-8r44,0r66,-313r-44,0r2,-8r62,0r113,319r66,-311r-47,0r1,-8r98,0r-2,8r-40,0r-68,321r-17,0r-114,-321r-66,313r48,0r-2,8r-102,0","w":306},"O":{"d":"152,6v-123,7,-112,-161,-71,-241v33,-64,111,-130,197,-88v92,45,35,234,-20,283v-27,24,-60,43,-106,46xm61,-102v0,59,31,100,93,97v116,-5,162,-106,162,-222v0,-60,-31,-98,-93,-98v-116,0,-162,106,-162,223","w":306},"P":{"d":"94,-155v86,5,154,-10,169,-84v17,-86,-54,-85,-134,-82xm10,-8r43,0r66,-313r-43,0r2,-8v85,6,217,-34,195,89v-15,80,-82,100,-181,93r-29,139r53,0r-1,8r-107,0"},"Q":{"d":"299,0v-51,0,-102,4,-147,6v-154,8,-103,-237,-33,-295v37,-52,164,-68,193,0v45,107,-20,244,-97,281r86,0xm61,-102v0,59,31,100,93,97v116,-5,162,-106,162,-222v0,-60,-31,-98,-93,-98v-116,0,-162,106,-162,223","w":306},"R":{"d":"98,-167v98,9,193,-10,176,-114v-8,-50,-84,-39,-144,-40xm200,-161v52,14,31,99,42,153r31,0r-2,8r-40,0v-12,-66,19,-165,-73,-158r-62,0r-32,150r49,0r-2,8r-103,0r2,-8r44,0r66,-313r-44,0r2,-8r147,1v77,-5,71,103,30,140v-14,13,-31,25,-55,27","w":281},"S":{"d":"190,-19v-45,40,-143,30,-143,-39r-13,58r-10,0r23,-108r11,0v-35,104,101,136,149,57v18,-29,20,-80,-11,-93v-44,-30,-132,-28,-116,-109v10,-49,46,-80,104,-82v44,-1,65,25,72,59r11,-53r10,0r-22,105r-10,0v37,-100,-100,-134,-144,-55v-10,18,-19,52,-4,70v37,45,150,31,133,126v-5,27,-22,48,-40,64"},"T":{"d":"68,-8r57,0r66,-313r-102,0r-18,88r-10,0r20,-96r234,0r-21,96r-10,0r19,-88r-102,0r-66,313r57,0r-2,8r-124,0","w":255},"U":{"d":"82,-111v-14,61,7,106,70,106v80,0,110,-52,123,-118r41,-198r-46,0r1,-8r97,0r-1,8r-40,0v-28,99,-30,224,-88,293v-31,37,-128,49,-158,5v-13,-19,-17,-48,-9,-87r44,-211r-40,0r2,-8r99,0r-2,8r-49,0","w":306},"V":{"d":"91,-321r-30,0r2,-8r93,0r-2,8r-52,0r40,311r171,-311r-51,0r2,-8r94,0r-2,8r-33,0r-176,321r-16,0","w":281},"W":{"d":"66,-329r92,0r-2,8r-51,0r3,307r146,-315r16,0r14,315r133,-307r-51,0r2,-8r89,0v1,13,-19,6,-30,8r-139,321r-15,0r-13,-321r-149,321r-15,0r-1,-321r-31,0","w":383},"X":{"d":"2,-8r29,0r152,-163r-75,-150r-31,0r2,-8r92,0r-2,8r-47,0r70,141r130,-141r-46,0r1,-8r91,0r-2,8r-30,0r-140,150r81,163r32,0r-2,8r-97,0r2,-8r52,0r-77,-154r-142,154r51,0r-2,8r-94,0","w":306},"Y":{"d":"68,-8r57,0r27,-130r-60,-183r-28,0r2,-8r88,0r-2,8r-47,0r55,171r128,-171r-48,0r2,-8r87,0r-1,8r-30,0r-136,183r-27,130r56,0r-1,8r-124,0","w":255},"Z":{"d":"93,-329r211,0r-3,13r-273,308r202,0r19,-95r10,0r-21,103r-220,0r3,-14r272,-307r-191,0r-19,88r-10,0","w":255},"[":{"d":"127,-341r45,0r-1,8r-35,0r-86,403r35,0r-2,8r-45,0","w":127},"\\":{"d":"139,6r-10,0r-44,-341r10,0","w":153},"]":{"d":"13,70r35,0r86,-403r-35,0r2,-8r45,0r-89,419r-45,0","w":127},"^":{"d":"203,-329r10,0r63,208r-11,0r-59,-198r-144,198r-10,0","w":276},"_":{"d":"-7,34r230,0r-5,24r-230,0"},"\u2018":{"d":"97,-247v5,-35,24,-55,36,-82r11,0r-32,58r9,0r-5,24r-19,0","w":102},"a":{"d":"202,-128v-85,-10,-173,3,-161,91v7,50,100,32,123,3v19,-24,32,-57,38,-94xm161,-242v58,-2,67,40,56,92r-30,142r36,0r-2,8r-46,0v2,-16,10,-36,10,-51v-15,46,-93,77,-142,42v-38,-63,19,-142,104,-132r58,3v12,-44,12,-98,-46,-93v-46,4,-74,22,-85,60r-10,0v11,-43,45,-69,97,-71"},"b":{"d":"214,-26v-36,45,-137,43,-142,-25r-11,51r-51,0r2,-8r41,0r66,-313r-41,0r2,-8r51,0r-28,139v17,-49,120,-76,151,-20v33,59,-1,153,-40,184xm256,-162v3,-66,-74,-86,-121,-51v-40,30,-74,134,-41,189v8,14,29,19,48,19v79,0,110,-73,114,-157","w":255},"c":{"d":"172,-242v38,0,56,17,63,51r9,-45r10,0r-18,88r-11,0v8,-47,-6,-86,-56,-83v-81,5,-113,75,-113,155v0,41,20,71,63,71v52,0,74,-29,89,-67r10,0v-13,44,-46,78,-101,78v-49,0,-71,-33,-71,-80v0,-89,39,-168,126,-168"},"d":{"d":"92,-210v34,-44,136,-44,143,20r28,-131r-39,0r1,-8r50,0r-68,321r39,0r-2,8r-49,0v2,-16,10,-36,10,-51v-19,52,-119,84,-153,25v-33,-58,2,-153,40,-184xm50,-74v-4,67,76,87,122,50v36,-28,61,-99,54,-160v-3,-31,-26,-49,-62,-47v-81,4,-110,76,-114,157","w":255},"e":{"d":"224,-127v11,-55,-5,-105,-61,-104v-66,2,-91,50,-107,104r168,0xm218,-69v-21,54,-76,91,-141,67v-77,-50,-20,-211,49,-232v78,-24,132,28,106,115r-178,0v-14,58,1,114,62,114v51,0,76,-29,92,-64r10,0"},"f":{"d":"205,-319v-57,-23,-90,29,-94,83r52,0r-2,8r-52,0r-46,220r44,0r-2,8r-91,0r2,-8r36,0r47,-220r-41,0r1,-8r42,0v6,-59,40,-116,106,-93","w":127},"g":{"d":"196,-224v-90,-28,-145,52,-145,141v0,73,82,93,126,48v33,-34,60,-111,39,-168v-4,-10,-11,-16,-20,-21xm205,-58v-20,54,-129,87,-155,22v-35,-90,18,-202,116,-206v41,-1,59,23,65,58r11,-52r52,0r-2,8r-41,0r-47,220v0,77,-107,120,-166,70v-10,-8,-12,-23,-11,-39r10,0v-7,63,95,58,127,29v26,-24,32,-69,41,-110","w":255},"h":{"d":"185,-242v49,-2,67,33,56,81r-33,153r39,0r-1,8r-89,0r2,-8r39,0r32,-150v27,-77,-62,-89,-104,-50v-45,43,-46,131,-65,200r39,0r-2,8r-88,0r2,-8r39,0r66,-313r-39,0r2,-8r49,0r-28,137v17,-25,47,-49,84,-50","w":255},"i":{"d":"109,-316r19,0r-6,25r-19,0xm11,-8r37,0r46,-220r-36,0r1,-8r47,0r-48,228r37,0r-2,8r-84,0","w":102},"j":{"d":"109,-316r19,0r-6,25r-19,0xm57,-236r49,0r-62,287v-8,24,-37,39,-69,29r2,-10v34,10,56,-8,63,-40r54,-258r-39,0","w":102},"k":{"d":"12,-8r39,0r66,-313r-39,0r2,-8r49,0r-48,225r149,-124r-36,0r2,-8r72,0v1,12,-15,7,-25,8r-96,81r54,139r25,0r-2,8r-74,0r2,-8r36,0r-50,-132r-59,49r-18,83r39,0r-2,8r-88,0"},"l":{"d":"11,-8r37,0r66,-313r-37,0r2,-8r47,0r-68,321r37,0r-2,8r-84,0","w":102},"m":{"d":"221,-160v9,-39,-1,-75,-43,-71v-105,8,-90,137,-117,223r37,0r-1,8r-87,0r2,-8r39,0r46,-220r-39,0r2,-8r49,0v-2,14,-9,32,-8,44v17,-29,41,-49,80,-50v36,-1,54,17,55,50v19,-33,45,-50,79,-50v51,0,62,40,53,85r-31,149r37,0r-2,8r-84,0r1,-8r38,0r32,-155v26,-69,-70,-89,-105,-42v-36,49,-36,131,-55,197r37,0r-2,8r-84,0r1,-8r38,0","w":383},"n":{"d":"100,-192v22,-37,92,-74,133,-31v12,12,14,34,9,59r-34,156r39,0r-1,8r-89,0r2,-8r39,0v11,-61,35,-119,35,-184v0,-52,-87,-47,-109,-15v-46,42,-43,132,-63,199r39,0r-2,8r-88,0r2,-8r39,0r47,-220r-40,0r2,-8r49,0","w":255},"o":{"d":"167,-242v112,-2,77,178,22,216v-27,36,-117,48,-137,0v-37,-90,14,-213,115,-216xm116,-5v82,0,115,-73,115,-157v0,-43,-23,-69,-67,-69v-82,0,-115,75,-115,157v0,43,23,69,67,69"},"p":{"d":"214,-26v-34,43,-136,45,-143,-20r-25,116r40,0r-2,8r-86,0r2,-8r36,0r63,-298r-39,0r2,-8r49,0v-2,16,-10,36,-10,51v19,-52,119,-84,153,-25v33,58,-2,153,-40,184xm256,-162v3,-67,-75,-86,-122,-50v-37,28,-60,99,-54,160v3,31,26,49,62,47v80,-5,110,-75,114,-157","w":255},"q":{"d":"92,-210v36,-45,138,-43,142,25r11,-51r47,0r-2,8r-37,0r-63,298r37,0r-2,8r-90,0r2,-8r43,0r23,-116v-18,48,-119,76,-151,20v-33,-59,1,-153,40,-184xm50,-74v-3,66,74,86,121,51v40,-30,74,-135,41,-189v-8,-14,-29,-19,-48,-19v-80,0,-110,74,-114,157","w":255},"r":{"d":"193,-228v-116,-20,-106,130,-132,220r45,0r-2,8r-94,0r2,-8r39,0r47,-220r-40,0r2,-8r49,0v-2,13,-8,29,-7,40v15,-29,52,-53,94,-42","w":153},"s":{"d":"165,-13v-34,27,-118,30,-125,-23r-8,36r-10,0r17,-83v4,1,11,-2,10,3v-25,73,69,94,116,53v28,-25,28,-84,-20,-84v-43,0,-93,-9,-82,-62v9,-43,40,-67,89,-69v33,-1,50,15,59,37r7,-31r10,0r-17,77r-10,0v26,-66,-58,-90,-105,-54v-21,16,-38,73,-3,82v46,12,120,13,103,69v-6,19,-15,37,-31,49","w":204},"t":{"d":"59,-236r42,0r11,-51r11,-4r-12,55r70,0r-2,8r-70,0r-40,195v-10,32,38,36,52,16v9,-10,13,-25,16,-41r10,0v0,43,-39,79,-79,58v-14,-7,-11,-31,-7,-49r38,-179r-41,0","w":153},"u":{"d":"206,-44v-22,37,-92,74,-133,31v-12,-12,-14,-34,-9,-59r34,-156r-40,0r2,-8r49,0r-33,159v-28,78,66,88,106,48v44,-44,43,-132,63,-199r-39,0r1,-8r50,0r-49,228r39,0r-1,8r-50,0","w":255},"v":{"d":"75,-228r-28,0r2,-8r76,0r-2,8r-38,0r34,218r126,-218r-38,0r2,-8r72,0v1,12,-16,7,-26,8r-132,228r-14,0"},"w":{"d":"49,-236r79,0r-2,8r-40,0r18,220r119,-228r13,0r23,228r110,-220r-39,0r2,-8r77,0v1,13,-18,7,-29,8r-115,228r-16,0r-22,-228r-118,228r-16,0r-18,-228r-28,0","w":357},"x":{"d":"-2,0v-1,-13,16,-7,27,-8r112,-114r-60,-106r-24,0r2,-8r71,0r-1,8r-34,0r53,99r96,-99r-34,0r2,-8r72,0v1,13,-19,6,-30,8r-103,106r64,114r23,0r-2,8r-75,0r2,-8r38,0r-58,-107r-104,107r37,0r-2,8r-72,0"},"y":{"d":"16,68v55,21,73,-36,95,-68r-36,-228r-27,0r2,-8r76,0r-2,8r-39,0r36,213r125,-213r-38,0r2,-8r73,0r-1,8r-26,0r-158,267v-15,29,-42,55,-84,39"},"z":{"d":"26,-15r192,-213r-137,0r-11,50r-10,0r13,-58r155,0r-3,16r-192,212r140,0r11,-51r10,0r-12,59r-159,0","w":204},"{":{"d":"48,-136v64,-28,44,-138,82,-193v9,-13,30,-13,52,-12v-4,19,-45,-4,-52,29v-14,67,-20,153,-73,181v50,40,-8,134,-2,193v4,10,24,8,39,8v-1,16,-45,9,-48,-3v-15,-61,54,-146,0,-193","w":127},"|":{"d":"128,-387r0,516r-14,0r0,-516r14,0","w":171},"}":{"d":"127,-291v4,-21,8,-43,-15,-42r-22,0v2,-17,45,-8,48,4v12,61,-53,148,0,193r-2,10v-65,28,-45,137,-83,193v-9,13,-30,11,-51,11v4,-19,45,3,52,-29v15,-67,18,-151,73,-180v-43,-31,-8,-111,0,-160","w":127},"~":{"d":"210,-105v27,0,38,-19,51,-33r8,4v-15,18,-31,38,-62,39v-40,1,-54,-33,-92,-33v-26,0,-37,19,-50,33r-8,-4v15,-18,31,-39,62,-39v38,0,53,33,91,33","w":276},"\u00a1":{"d":"122,-227r-19,0r5,-25r19,0xm107,-188r-53,265r-14,0r61,-265r6,0","w":127},"\u00a2":{"d":"125,-5v47,-3,69,-31,83,-67r10,0v-14,43,-44,73,-95,78r-8,40r-11,0r9,-40v-100,-4,-67,-160,-25,-204v20,-21,42,-42,78,-44r7,-36r11,0r-8,36v36,1,52,18,59,51r9,-45r10,0r-18,88r-11,0v8,-47,-6,-83,-52,-83xm163,-231v-74,11,-107,76,-107,154v0,41,19,70,59,72"},"\u00a3":{"d":"23,-8r39,0r38,-179r-38,0r2,-8r38,0v4,-84,59,-172,149,-127v13,13,19,33,13,63r-11,0v25,-79,-78,-80,-109,-35v-18,26,-24,64,-32,99r59,0r-2,8r-59,0r-38,179r126,0r11,-51r10,0r-12,59r-185,0"},"\u00a5":{"d":"63,-8r51,0r16,-77r-67,0r2,-8r67,0r10,-48r-67,0r2,-9r61,0r-39,-171r-27,0r2,-8r88,0r-2,8r-47,0r35,171r106,-171r-47,0r1,-8r88,0r-2,8r-30,0r-106,171r62,0r-2,9r-66,0r-10,48r66,0r-1,8r-67,0r-16,77r51,0r-2,8r-112,0"},"\u00a7":{"d":"138,-206v-33,14,-77,39,-56,82v10,21,50,29,73,41v47,-5,87,-81,27,-103xm233,-254v21,-66,-52,-87,-100,-54v-22,16,-39,60,-9,81v36,25,109,25,100,88v-4,29,-32,51,-58,61v48,14,31,94,-4,110v-26,20,-87,26,-109,-2v-11,-14,-15,-39,-8,-59r10,0v-22,67,57,83,103,52v25,-17,42,-69,7,-89v-37,-22,-107,-21,-97,-87v5,-28,36,-48,61,-58v-31,-9,-46,-54,-21,-84v18,-36,101,-59,129,-18v9,15,11,35,6,59r-10,0"},"'":{"d":"116,-329r10,0r-17,82r-11,0","w":102},"\u201c":{"d":"166,-247v5,-35,24,-55,37,-82r10,0r-32,58r9,0r-5,24r-19,0xm98,-247v5,-35,24,-55,36,-82r10,0r-31,58r9,0r-5,24r-19,0","w":178},"\u00ab":{"d":"123,-228r10,0r-60,102r17,102r-10,0r-17,-102xm182,-228r10,0r-60,102r17,102r-11,0r-17,-102","w":179},"\u2013":{"d":"28,-131r230,0r-2,10r-230,0"},"\u00b7":{"d":"84,-168r19,0r-5,25r-20,0","w":115},"\u00b6":{"d":"166,-152v-54,-1,-94,-28,-85,-87v9,-57,55,-90,122,-90r92,0r-79,373r-10,0r77,-365r-71,0r-78,365r-10,0","w":276},"\u201d":{"d":"116,-329r19,0v-5,35,-24,55,-37,82r-10,0r32,-58r-9,0xm184,-329r20,0v-5,35,-24,55,-37,82r-10,0r32,-58r-10,0","w":178},"\u00bb":{"d":"143,-228r10,0r17,102r-60,102r-10,0r60,-102xm84,-228r10,0r17,102r-60,102r-10,0r60,-102","w":179},"\u2026":{"d":"379,-25r19,0r-5,25r-19,0xm225,-25r20,0r-5,25r-20,0xm72,-25r20,0r-6,25r-19,0","w":460},"\u00bf":{"d":"175,-252r-5,25r-19,0r5,-25r19,0xm183,-2v-5,67,-104,116,-156,61v-29,-70,29,-123,72,-154v30,-22,40,-50,48,-93r10,0v-4,110,-128,108,-128,220v0,27,24,41,56,41v48,0,77,-30,87,-75r11,0","w":204},"`":{"d":"116,-274r-33,-61r16,0r27,61r-10,0","w":102},"\u00b4":{"d":"145,-335r17,0r-60,61r-10,0","w":102},"\u00af":{"d":"63,-306r106,0r-2,8r-105,0","w":102},"\u00a8":{"d":"67,-316r19,0r-5,25r-19,0xm150,-316r19,0r-5,25r-20,0","w":102},"\u00b8":{"d":"71,54v4,-23,-31,-23,-46,-14v-1,-2,-1,-3,-3,-4r35,-36r10,0v-7,9,-23,17,-25,27v25,-14,55,17,32,42v-11,20,-52,23,-74,10v8,-17,64,16,71,-25","w":102},"\u2014":{"d":"28,-131r460,0r-2,10r-460,0","w":460},"\u00c6":{"d":"247,-127r12,-194r-7,0r-133,194r128,0xm6,-8r20,0r222,-321r202,0r-21,97r-10,0r19,-89r-168,0r-11,149r80,0r13,-59r10,0r-28,131r-10,0r14,-64r-79,0r-11,156r127,0r20,-94r10,0r-22,102r-201,0r2,-8r54,0r8,-111r-134,0r-76,111r47,0r-2,8r-76,0","w":408},"\u00aa":{"d":"172,-265v-53,-11,-127,10,-99,62v48,25,97,-13,99,-62xm177,-301v-6,-42,-87,-28,-89,8r-8,0v1,-38,76,-57,99,-28v16,36,-9,84,-13,122r23,0r-2,9r-32,0v1,-9,7,-22,6,-30v-11,29,-83,51,-102,12v-11,-58,51,-73,114,-66v2,-8,5,-18,4,-27","w":149},"\u00d8":{"d":"154,-5v115,-6,162,-105,162,-221v0,-19,-5,-36,-11,-50r-229,231v14,25,39,42,78,40xm223,-325v-116,0,-162,106,-162,222v0,19,4,36,11,50r229,-232v-14,-25,-40,-40,-78,-40xm258,-40v-41,46,-158,67,-190,4r-45,44r-6,-5r46,-48v-36,-111,20,-241,104,-278v50,-23,122,-12,142,30r44,-45r7,7r-46,46v33,86,-12,195,-56,245","w":306},"\u0152":{"d":"289,-321v-153,-30,-231,78,-228,229v1,81,79,101,162,83xm51,-126v13,-137,87,-203,240,-203r165,0r-20,97r-10,0r18,-89r-145,0r-31,149r75,0r14,-64r10,0r-28,132r-10,0r13,-60r-76,0r-33,156r147,0r19,-93r10,0r-21,101r-232,6v-78,-1,-112,-51,-105,-132","w":408},"\u00ba":{"d":"115,-187v-74,4,-53,-102,-19,-129v45,-37,121,-12,99,55v-13,40,-30,71,-80,74xm144,-327v-50,0,-72,40,-72,91v0,26,16,41,44,41v51,-2,73,-40,73,-91v0,-26,-17,-41,-45,-41","w":149},"\u00e6":{"d":"331,-127v12,-46,10,-106,-43,-104v-60,2,-79,55,-92,104r135,0xm190,-216v-33,-37,-110,-5,-114,45r-10,0v9,-39,41,-71,88,-71v38,-1,55,20,54,55v13,-45,98,-79,131,-29v13,20,8,68,0,97r-145,0v-9,43,-19,118,42,114v46,-3,69,-33,81,-70r11,0v-14,42,-44,78,-95,81v-43,3,-60,-34,-58,-75v-14,48,-78,100,-132,60v-32,-41,3,-111,52,-115v27,-2,58,-2,89,-3v6,-25,24,-69,6,-89xm183,-119v-80,-10,-169,16,-135,97v9,22,55,21,76,6v30,-22,47,-65,59,-103","w":332},"\u0131":{"d":"11,-8r37,0r46,-220r-36,0r1,-8r47,0r-48,228r37,0r-2,8r-84,0","w":102},"\u00f8":{"d":"232,-205v27,95,-19,211,-118,211v-27,0,-48,-10,-61,-29r-31,33r-7,-6r33,-35v-26,-94,19,-208,119,-211v28,-1,49,11,60,29r32,-33r6,6xm164,-231v-81,4,-109,75,-115,156v0,13,3,25,8,36r162,-167v-11,-15,-28,-26,-55,-25xm116,-5v82,-4,111,-73,115,-156v0,-13,-2,-25,-7,-36r-163,167v10,15,29,26,55,25"},"\u0153":{"d":"356,-127v13,-44,12,-108,-43,-104v-58,3,-80,56,-93,104r136,0xm315,-242v66,-4,66,71,50,123r-147,0v-13,53,-9,117,51,114v43,-2,64,-32,75,-66r10,0v-12,42,-38,77,-90,77v-44,0,-60,-31,-63,-74v-14,58,-134,116,-157,28v-22,-84,20,-156,74,-190v48,-29,110,-1,106,60v20,-35,40,-70,91,-72xm160,-231v-77,5,-111,76,-111,156v0,38,16,70,57,70v79,0,107,-80,107,-156v0,-39,-13,-73,-53,-70","w":357},"\u00df":{"d":"185,-179v71,7,52,124,13,157v-21,18,-45,23,-80,22v2,-16,29,-3,43,-12v48,-13,83,-92,52,-141v-10,-15,-30,-19,-55,-20r3,-11v64,3,105,-67,79,-122v-11,-24,-65,-23,-88,-7v-27,19,-41,53,-48,88r-46,217r29,0r-2,8r-76,0r2,-8r37,0r46,-219v8,-71,72,-136,148,-94v38,46,0,139,-57,142"},"\u00ac":{"d":"277,-155r-222,0r2,-11r233,0r-26,123r-11,0","w":276},"\u00b5":{"d":"66,-29r-23,107r-10,0r65,-306r-40,0r2,-8r49,0r-33,158v-27,77,62,89,104,50v45,-43,46,-131,65,-200r-39,0r1,-8r50,0r-49,228r39,0r-1,8r-50,0v2,-14,9,-32,9,-44v-19,45,-119,77,-139,15","w":255},"\u2122":{"d":"434,-140r37,-179r-113,179r-10,0r-38,-179r-38,179r-10,0r40,-189r17,0r37,175r110,-175r18,0r-40,189r-10,0xm170,-321r-69,0r2,-8r147,0r-2,8r-68,0r-38,181r-10,0","w":455},"\u00b1":{"d":"24,-10r233,0r-3,10r-232,0xm161,-132r-111,0r2,-10r111,0r20,-91r10,0r-20,91r112,0r-3,10r-111,0r-19,91r-10,0","w":276},"\u00f7":{"d":"178,-233r19,0r-5,25r-20,0xm133,-25r20,0r-5,25r-20,0xm47,-121r233,0r-2,10r-233,0","w":276},"\u00b0":{"d":"207,-291v-16,-64,-108,-29,-116,22v-11,74,83,69,107,23v6,-12,13,-28,9,-45xm162,-208v-59,27,-102,-40,-69,-87v17,-42,114,-60,123,0v7,44,-22,72,-54,87","w":184},"\u00ae":{"d":"313,-312v-121,-46,-231,45,-254,147v-27,119,80,192,191,148v76,-30,146,-98,130,-210v-6,-40,-32,-72,-67,-85xm73,-44v-40,-46,-28,-140,3,-187v44,-66,141,-134,243,-91v52,22,88,78,70,157v-22,97,-94,171,-206,171v-49,0,-86,-23,-110,-50xm171,-164v59,0,131,6,119,-65v-6,-33,-62,-21,-101,-23xm181,-260v53,3,134,-17,119,54v-6,30,-30,44,-61,49r39,94r-12,0r-39,-93r-58,0r-20,93r-10,0","w":368},"\u00a9":{"d":"313,-312v-121,-46,-231,45,-254,147v-27,119,80,192,191,148v76,-30,146,-98,130,-210v-6,-40,-32,-72,-67,-85xm73,-44v-40,-46,-28,-140,3,-187v44,-66,141,-134,243,-91v52,22,88,78,70,157v-22,97,-94,171,-206,171v-49,0,-86,-23,-110,-50xm298,-128v-10,77,-168,106,-177,8v-7,-84,40,-143,122,-147v45,-2,73,27,69,72r-10,0v8,-75,-95,-74,-132,-35v-40,26,-62,132,-5,157v54,24,110,-13,123,-55r10,0","w":368},"\u00c1":{"d":"263,-408r17,0r-60,62r-10,0xm249,-136r-27,-188r-106,188r133,0xm7,-8r27,0r181,-321r18,0r44,321r26,0r-2,8r-82,0r2,-8r46,0r-16,-119r-140,0r-67,119r46,0r-2,8r-82,0","w":306},"\u00c2":{"d":"248,-408r31,62r-14,0r-27,-53r-49,53r-14,0r57,-62r16,0xm249,-136r-27,-188r-106,188r133,0xm7,-8r27,0r181,-321r18,0r44,321r26,0r-2,8r-82,0r2,-8r46,0r-16,-119r-140,0r-67,119r46,0r-2,8r-82,0","w":306},"\u00c4":{"d":"185,-388r19,0r-5,25r-19,0xm268,-388r19,0r-5,25r-19,0xm249,-136r-27,-188r-106,188r133,0xm7,-8r27,0r181,-321r18,0r44,321r26,0r-2,8r-82,0r2,-8r46,0r-16,-119r-140,0r-67,119r46,0r-2,8r-82,0","w":306},"\u00c0":{"d":"235,-346r-34,-62r16,0r28,62r-10,0xm249,-136r-27,-188r-106,188r133,0xm7,-8r27,0r181,-321r18,0r44,321r26,0r-2,8r-82,0r2,-8r46,0r-16,-119r-140,0r-67,119r46,0r-2,8r-82,0","w":306},"\u00c5":{"d":"264,-411v-24,-29,-79,12,-55,45v26,28,78,-14,55,-45xm270,-373v-24,48,-100,16,-68,-31v13,-32,84,-35,75,15v-1,6,-4,11,-7,16xm249,-136r-27,-188r-106,188r133,0xm7,-8r27,0r181,-321r18,0r44,321r26,0r-2,8r-82,0r2,-8r46,0r-16,-119r-140,0r-67,119r46,0r-2,8r-82,0","w":306},"\u00c3":{"d":"237,-367v-14,-23,-52,-23,-55,8r-10,0v3,-26,34,-47,58,-27v8,7,16,16,29,17v17,1,23,-14,27,-26r10,0v-3,23,-35,50,-59,28xm249,-136r-27,-188r-106,188r133,0xm7,-8r27,0r181,-321r18,0r44,321r26,0r-2,8r-82,0r2,-8r46,0r-16,-119r-140,0r-67,119r46,0r-2,8r-82,0","w":306},"\u00c7":{"d":"160,-321v58,-31,141,-10,145,56r13,-64r10,0r-24,113r-10,0v18,-83,-45,-132,-121,-100v-71,29,-111,106,-111,206v0,62,26,105,88,105v67,0,105,-44,121,-100r10,0v-20,60,-55,108,-130,111v-5,7,-18,13,-19,21v25,-14,55,17,32,42v-11,20,-52,24,-74,10v8,-17,64,15,71,-25v4,-24,-31,-23,-46,-14v-1,-2,-1,-3,-3,-4r29,-30v-139,-6,-89,-229,-29,-289v15,-15,30,-28,48,-38","w":281},"\u00c9":{"d":"237,-408r17,0r-60,62r-10,0xm10,-8r44,0r66,-313r-44,0r2,-8r221,0r-21,98r-10,0r19,-90r-157,0r-32,149r94,0r13,-60r10,0r-27,131r-10,0r13,-63r-94,0r-33,156r158,0r20,-93r10,0r-22,101r-222,0","w":255},"\u00ca":{"d":"223,-408r30,62r-13,0r-27,-53r-50,53r-13,0r56,-62r17,0xm10,-8r44,0r66,-313r-44,0r2,-8r221,0r-21,98r-10,0r19,-90r-157,0r-32,149r94,0r13,-60r10,0r-27,131r-10,0r13,-63r-94,0r-33,156r158,0r20,-93r10,0r-22,101r-222,0","w":255},"\u00cb":{"d":"159,-388r19,0r-5,25r-19,0xm242,-388r19,0r-5,25r-19,0xm10,-8r44,0r66,-313r-44,0r2,-8r221,0r-21,98r-10,0r19,-90r-157,0r-32,149r94,0r13,-60r10,0r-27,131r-10,0r13,-63r-94,0r-33,156r158,0r20,-93r10,0r-22,101r-222,0","w":255},"\u00c8":{"d":"209,-346r-34,-62r16,0r28,62r-10,0xm10,-8r44,0r66,-313r-44,0r2,-8r221,0r-21,98r-10,0r19,-90r-157,0r-32,149r94,0r13,-60r10,0r-27,131r-10,0r13,-63r-94,0r-33,156r158,0r20,-93r10,0r-22,101r-222,0","w":255},"\u00cd":{"d":"173,-408r17,0r-60,62r-10,0xm13,-8r48,0r66,-313r-47,0r1,-8r105,0r-2,8r-47,0r-66,313r47,0r-2,8r-104,0","w":127},"\u00ce":{"d":"159,-408r31,62r-14,0r-27,-53r-50,53r-13,0r56,-62r17,0xm13,-8r48,0r66,-313r-47,0r1,-8r105,0r-2,8r-47,0r-66,313r47,0r-2,8r-104,0","w":127},"\u00cf":{"d":"95,-388r20,0r-6,25r-19,0xm178,-388r19,0r-5,25r-19,0xm13,-8r48,0r66,-313r-47,0r1,-8r105,0r-2,8r-47,0r-66,313r47,0r-2,8r-104,0","w":127},"\u00cc":{"d":"145,-346r-34,-62r16,0r28,62r-10,0xm13,-8r48,0r66,-313r-47,0r1,-8r105,0r-2,8r-47,0r-66,313r47,0r-2,8r-104,0","w":127},"\u00d1":{"d":"230,-380v-19,-14,-37,5,-40,21r-10,0v4,-25,34,-49,58,-27v10,6,16,17,30,17v16,0,22,-14,26,-26r10,0v-3,22,-35,50,-58,28xm7,-8r44,0r66,-313r-44,0r2,-8r62,0r113,319r66,-311r-47,0r1,-8r98,0r-2,8r-40,0r-68,321r-17,0r-114,-321r-66,313r48,0r-2,8r-102,0","w":306},"\u00d3":{"d":"269,-408r16,0r-60,62r-10,0xm152,6v-123,7,-112,-161,-71,-241v33,-64,111,-130,197,-88v92,45,35,234,-20,283v-27,24,-60,43,-106,46xm61,-102v0,59,31,100,93,97v116,-5,162,-106,162,-222v0,-60,-31,-98,-93,-98v-116,0,-162,106,-162,223","w":306},"\u00d4":{"d":"254,-408r31,62r-14,0r-27,-53r-49,53r-14,0r56,-62r17,0xm152,6v-123,7,-112,-161,-71,-241v33,-64,111,-130,197,-88v92,45,35,234,-20,283v-27,24,-60,43,-106,46xm61,-102v0,59,31,100,93,97v116,-5,162,-106,162,-222v0,-60,-31,-98,-93,-98v-116,0,-162,106,-162,223","w":306},"\u00d6":{"d":"190,-388r20,0r-5,25r-20,0xm273,-388r20,0r-5,25r-20,0xm152,6v-123,7,-112,-161,-71,-241v33,-64,111,-130,197,-88v92,45,35,234,-20,283v-27,24,-60,43,-106,46xm61,-102v0,59,31,100,93,97v116,-5,162,-106,162,-222v0,-60,-31,-98,-93,-98v-116,0,-162,106,-162,223","w":306},"\u00d2":{"d":"240,-346r-34,-62r17,0r27,62r-10,0xm152,6v-123,7,-112,-161,-71,-241v33,-64,111,-130,197,-88v92,45,35,234,-20,283v-27,24,-60,43,-106,46xm61,-102v0,59,31,100,93,97v116,-5,162,-106,162,-222v0,-60,-31,-98,-93,-98v-116,0,-162,106,-162,223","w":306},"\u00d5":{"d":"243,-367v-15,-21,-53,-24,-55,8r-10,0v3,-27,33,-47,58,-27v8,7,16,16,29,17v17,1,22,-14,26,-26r10,0v-3,24,-34,50,-58,28xm152,6v-123,7,-112,-161,-71,-241v33,-64,111,-130,197,-88v92,45,35,234,-20,283v-27,24,-60,43,-106,46xm61,-102v0,59,31,100,93,97v116,-5,162,-106,162,-222v0,-60,-31,-98,-93,-98v-116,0,-162,106,-162,223","w":306},"\u00da":{"d":"266,-408r16,0r-59,62r-10,0xm82,-111v-14,61,7,106,70,106v80,0,110,-52,123,-118r41,-198r-46,0r1,-8r97,0r-1,8r-40,0v-28,99,-30,224,-88,293v-31,37,-128,49,-158,5v-13,-19,-17,-48,-9,-87r44,-211r-40,0r2,-8r99,0r-2,8r-49,0","w":306},"\u00db":{"d":"251,-408r31,62r-14,0r-27,-53r-49,53r-14,0r57,-62r16,0xm82,-111v-14,61,7,106,70,106v80,0,110,-52,123,-118r41,-198r-46,0r1,-8r97,0r-1,8r-40,0v-28,99,-30,224,-88,293v-31,37,-128,49,-158,5v-13,-19,-17,-48,-9,-87r44,-211r-40,0r2,-8r99,0r-2,8r-49,0","w":306},"\u00dc":{"d":"188,-388r19,0r-5,25r-19,0xm270,-388r20,0r-5,25r-20,0xm82,-111v-14,61,7,106,70,106v80,0,110,-52,123,-118r41,-198r-46,0r1,-8r97,0r-1,8r-40,0v-28,99,-30,224,-88,293v-31,37,-128,49,-158,5v-13,-19,-17,-48,-9,-87r44,-211r-40,0r2,-8r99,0r-2,8r-49,0","w":306},"\u00d9":{"d":"237,-346r-34,-62r17,0r27,62r-10,0xm82,-111v-14,61,7,106,70,106v80,0,110,-52,123,-118r41,-198r-46,0r1,-8r97,0r-1,8r-40,0v-28,99,-30,224,-88,293v-31,37,-128,49,-158,5v-13,-19,-17,-48,-9,-87r44,-211r-40,0r2,-8r99,0r-2,8r-49,0","w":306},"\u0178":{"d":"159,-388r19,0r-5,25r-19,0xm242,-388r19,0r-5,25r-19,0xm68,-8r57,0r27,-130r-60,-183r-28,0r2,-8r88,0r-2,8r-47,0r55,171r128,-171r-48,0r2,-8r87,0r-1,8r-30,0r-136,183r-27,130r56,0r-1,8r-124,0","w":255},"\u00e1":{"d":"209,-335r17,0r-60,61r-11,0xm202,-128v-85,-10,-173,3,-161,91v7,50,100,32,123,3v19,-24,32,-57,38,-94xm161,-242v58,-2,67,40,56,92r-30,142r36,0r-2,8r-46,0v2,-16,10,-36,10,-51v-15,46,-93,77,-142,42v-38,-63,19,-142,104,-132r58,3v12,-44,12,-98,-46,-93v-46,4,-74,22,-85,60r-10,0v11,-43,45,-69,97,-71"},"\u00e2":{"d":"195,-335r30,61r-14,0r-27,-53r-49,53r-14,0r57,-61r17,0xm202,-128v-85,-10,-173,3,-161,91v7,50,100,32,123,3v19,-24,32,-57,38,-94xm161,-242v58,-2,67,40,56,92r-30,142r36,0r-2,8r-46,0v2,-16,10,-36,10,-51v-15,46,-93,77,-142,42v-38,-63,19,-142,104,-132r58,3v12,-44,12,-98,-46,-93v-46,4,-74,22,-85,60r-10,0v11,-43,45,-69,97,-71"},"\u00e4":{"d":"131,-316r19,0r-5,25r-19,0xm214,-316r19,0r-5,25r-20,0xm202,-128v-85,-10,-173,3,-161,91v7,50,100,32,123,3v19,-24,32,-57,38,-94xm161,-242v58,-2,67,40,56,92r-30,142r36,0r-2,8r-46,0v2,-16,10,-36,10,-51v-15,46,-93,77,-142,42v-38,-63,19,-142,104,-132r58,3v12,-44,12,-98,-46,-93v-46,4,-74,22,-85,60r-10,0v11,-43,45,-69,97,-71"},"\u00e0":{"d":"180,-274r-33,-61r16,0r27,61r-10,0xm202,-128v-85,-10,-173,3,-161,91v7,50,100,32,123,3v19,-24,32,-57,38,-94xm161,-242v58,-2,67,40,56,92r-30,142r36,0r-2,8r-46,0v2,-16,10,-36,10,-51v-15,46,-93,77,-142,42v-38,-63,19,-142,104,-132r58,3v12,-44,12,-98,-46,-93v-46,4,-74,22,-85,60r-10,0v11,-43,45,-69,97,-71"},"\u00e5":{"d":"207,-327v-23,-28,-76,11,-55,45v26,29,79,-13,55,-45xm214,-289v-25,48,-101,16,-68,-31v11,-32,85,-36,74,15v-1,6,-3,11,-6,16xm202,-128v-85,-10,-173,3,-161,91v7,50,100,32,123,3v19,-24,32,-57,38,-94xm161,-242v58,-2,67,40,56,92r-30,142r36,0r-2,8r-46,0v2,-16,10,-36,10,-51v-15,46,-93,77,-142,42v-38,-63,19,-142,104,-132r58,3v12,-44,12,-98,-46,-93v-46,4,-74,22,-85,60r-10,0v11,-43,45,-69,97,-71"},"\u00e3":{"d":"184,-294v-17,-19,-54,-24,-56,8r-10,0v2,-26,34,-49,58,-28v9,7,15,17,30,18v16,0,21,-14,25,-26r11,0v-3,22,-37,52,-58,28xm202,-128v-85,-10,-173,3,-161,91v7,50,100,32,123,3v19,-24,32,-57,38,-94xm161,-242v58,-2,67,40,56,92r-30,142r36,0r-2,8r-46,0v2,-16,10,-36,10,-51v-15,46,-93,77,-142,42v-38,-63,19,-142,104,-132r58,3v12,-44,12,-98,-46,-93v-46,4,-74,22,-85,60r-10,0v11,-43,45,-69,97,-71"},"\u00e7":{"d":"172,-242v38,0,56,17,63,51r9,-45r10,0r-18,88r-11,0v8,-47,-6,-86,-56,-83v-81,5,-113,75,-113,155v0,41,20,71,63,71v52,0,74,-29,89,-67r10,0v-13,42,-42,72,-92,77v-6,8,-19,13,-20,22v25,-14,55,17,32,42v-11,20,-52,24,-74,10v8,-17,64,15,71,-25v4,-24,-31,-23,-46,-14v-1,-2,-1,-3,-3,-4r29,-30v-48,-1,-69,-35,-69,-81v0,-89,40,-167,126,-167"},"\u00e9":{"d":"215,-335r16,0r-60,61r-10,0xm224,-127v11,-55,-5,-105,-61,-104v-66,2,-91,50,-107,104r168,0xm218,-69v-21,54,-76,91,-141,67v-77,-50,-20,-211,49,-232v78,-24,132,28,106,115r-178,0v-14,58,1,114,62,114v51,0,76,-29,92,-64r10,0"},"\u00ea":{"d":"200,-335r30,61r-13,0r-27,-53r-50,53r-14,0r58,-61r16,0xm224,-127v11,-55,-5,-105,-61,-104v-66,2,-91,50,-107,104r168,0xm218,-69v-21,54,-76,91,-141,67v-77,-50,-20,-211,49,-232v78,-24,132,28,106,115r-178,0v-14,58,1,114,62,114v51,0,76,-29,92,-64r10,0"},"\u00eb":{"d":"137,-316r19,0r-6,25r-19,0xm219,-316r20,0r-6,25r-19,0xm224,-127v11,-55,-5,-105,-61,-104v-66,2,-91,50,-107,104r168,0xm218,-69v-21,54,-76,91,-141,67v-77,-50,-20,-211,49,-232v78,-24,132,28,106,115r-178,0v-14,58,1,114,62,114v51,0,76,-29,92,-64r10,0"},"\u00e8":{"d":"186,-274r-34,-61r17,0r27,61r-10,0xm224,-127v11,-55,-5,-105,-61,-104v-66,2,-91,50,-107,104r168,0xm218,-69v-21,54,-76,91,-141,67v-77,-50,-20,-211,49,-232v78,-24,132,28,106,115r-178,0v-14,58,1,114,62,114v51,0,76,-29,92,-64r10,0"},"\u00ed":{"d":"148,-335r17,0r-61,61r-10,0xm11,-8r37,0r46,-220r-36,0r1,-8r47,0r-48,228r37,0r-2,8r-84,0","w":102},"\u00ee":{"d":"126,-335r31,61r-14,0r-27,-53r-49,53r-14,0r57,-61r16,0xm11,-8r37,0r46,-220r-36,0r1,-8r47,0r-48,228r37,0r-2,8r-84,0","w":102},"\u00ef":{"d":"70,-316r19,0r-5,25r-20,0xm153,-316r19,0r-5,25r-20,0xm11,-8r37,0r46,-220r-36,0r1,-8r47,0r-48,228r37,0r-2,8r-84,0","w":102},"\u00ec":{"d":"119,-274r-33,-61r16,0r27,61r-10,0xm11,-8r37,0r46,-220r-36,0r1,-8r47,0r-48,228r37,0r-2,8r-84,0","w":102},"\u00f1":{"d":"199,-294v-14,-21,-53,-24,-55,8r-11,0v4,-24,33,-48,58,-28v9,7,16,17,30,18v17,1,22,-14,26,-26r10,0v-2,23,-35,49,-58,28xm100,-192v22,-37,92,-74,133,-31v12,12,14,34,9,59r-34,156r39,0r-1,8r-89,0r2,-8r39,0v11,-61,35,-119,35,-184v0,-52,-87,-47,-109,-15v-46,42,-43,132,-63,199r39,0r-2,8r-88,0r2,-8r39,0r47,-220r-40,0r2,-8r49,0","w":255},"\u00f3":{"d":"212,-335r17,0r-61,61r-10,0xm167,-242v112,-2,77,178,22,216v-27,36,-117,48,-137,0v-37,-90,14,-213,115,-216xm116,-5v82,0,115,-73,115,-157v0,-43,-23,-69,-67,-69v-82,0,-115,75,-115,157v0,43,23,69,67,69"},"\u00f4":{"d":"197,-335r31,61r-14,0r-27,-53r-49,53r-14,0r57,-61r16,0xm167,-242v112,-2,77,178,22,216v-27,36,-117,48,-137,0v-37,-90,14,-213,115,-216xm116,-5v82,0,115,-73,115,-157v0,-43,-23,-69,-67,-69v-82,0,-115,75,-115,157v0,43,23,69,67,69"},"\u00f6":{"d":"134,-316r19,0r-5,25r-20,0xm217,-316r19,0r-6,25r-19,0xm167,-242v112,-2,77,178,22,216v-27,36,-117,48,-137,0v-37,-90,14,-213,115,-216xm116,-5v82,0,115,-73,115,-157v0,-43,-23,-69,-67,-69v-82,0,-115,75,-115,157v0,43,23,69,67,69"},"\u00f2":{"d":"183,-274r-33,-61r16,0r27,61r-10,0xm167,-242v112,-2,77,178,22,216v-27,36,-117,48,-137,0v-37,-90,14,-213,115,-216xm116,-5v82,0,115,-73,115,-157v0,-43,-23,-69,-67,-69v-82,0,-115,75,-115,157v0,43,23,69,67,69"},"\u00f5":{"d":"186,-294v-14,-21,-53,-24,-55,8r-10,0v2,-25,33,-48,57,-28v9,7,16,17,30,18v17,1,22,-14,26,-26r10,0v-3,24,-34,50,-58,28xm167,-242v112,-2,77,178,22,216v-27,36,-117,48,-137,0v-37,-90,14,-213,115,-216xm116,-5v82,0,115,-73,115,-157v0,-43,-23,-69,-67,-69v-82,0,-115,75,-115,157v0,43,23,69,67,69"},"\u00fa":{"d":"222,-335r17,0r-61,61r-10,0xm206,-44v-22,37,-92,74,-133,31v-12,-12,-14,-34,-9,-59r34,-156r-40,0r2,-8r49,0r-33,159v-28,78,66,88,106,48v44,-44,43,-132,63,-199r-39,0r1,-8r50,0r-49,228r39,0r-1,8r-50,0","w":255},"\u00fb":{"d":"207,-335r31,61r-14,0r-27,-53r-49,53r-14,0r57,-61r16,0xm206,-44v-22,37,-92,74,-133,31v-12,-12,-14,-34,-9,-59r34,-156r-40,0r2,-8r49,0r-33,159v-28,78,66,88,106,48v44,-44,43,-132,63,-199r-39,0r1,-8r50,0r-49,228r39,0r-1,8r-50,0","w":255},"\u00fc":{"d":"144,-316r19,0r-5,25r-20,0xm227,-316r19,0r-5,25r-20,0xm206,-44v-22,37,-92,74,-133,31v-12,-12,-14,-34,-9,-59r34,-156r-40,0r2,-8r49,0r-33,159v-28,78,66,88,106,48v44,-44,43,-132,63,-199r-39,0r1,-8r50,0r-49,228r39,0r-1,8r-50,0","w":255},"\u00f9":{"d":"193,-274r-33,-61r16,0r27,61r-10,0xm206,-44v-22,37,-92,74,-133,31v-12,-12,-14,-34,-9,-59r34,-156r-40,0r2,-8r49,0r-33,159v-28,78,66,88,106,48v44,-44,43,-132,63,-199r-39,0r1,-8r50,0r-49,228r39,0r-1,8r-50,0","w":255},"\u00ff":{"d":"137,-316r19,0r-6,25r-19,0xm219,-316r20,0r-6,25r-19,0xm16,68v55,21,73,-36,95,-68r-36,-228r-27,0r2,-8r76,0r-2,8r-39,0r36,213r125,-213r-38,0r2,-8r73,0r-1,8r-26,0r-158,267v-15,29,-42,55,-84,39"},"\u00a0":{"w":115},"\"":{"d":"181,-329r10,0r-18,82r-10,0xm128,-329r10,0r-17,82r-11,0","w":178},"!":{"d":"59,-25r20,0r-5,25r-20,0xm75,-64r52,-265r14,0r-60,265r-6,0","w":127},"\u00a4":{"d":"253,-197v-26,-112,-204,-53,-209,41v-25,98,100,132,162,73v27,-26,59,-62,47,-114xm89,-241v36,-33,122,-42,154,0r32,-26r6,8r-32,26v33,49,5,125,-32,153r20,26r-9,8r-21,-26v-37,34,-121,42,-154,0r-32,26r-5,-8r31,-26v-34,-50,-4,-125,33,-153r-21,-26r9,-8"},"\u0141":{"d":"10,-8r44,0r32,-155r-49,30r2,-11r50,-29r31,-148r-44,0r2,-8r111,0r-2,8r-57,0r-30,142r99,-58r-2,10r-99,58r-34,161r148,0r19,-93r11,0r-22,101r-212,0"},"\u0142":{"d":"11,-8r37,0r35,-166r-45,38r2,-10r45,-38r29,-137r-37,0r2,-8r47,0r-28,134r45,-38v-8,24,-33,32,-48,49r-37,176r37,0r-2,8r-84,0","w":102},"\u00b9":{"d":"80,-142r30,0r39,-180r-57,39v0,-19,20,-17,30,-28v14,-7,18,-22,39,-21r-40,190r30,0r-1,8r-72,0","w":149},"\u00d0":{"d":"10,-8r44,0r34,-163r-43,0r1,-8r44,0r30,-142r-44,0r2,-8v110,0,248,-19,248,94v0,135,-63,233,-201,235r-117,0xm64,-8v142,10,224,-42,246,-160v20,-100,-20,-155,-120,-153r-60,0r-30,142r119,0r-1,8r-120,0","w":306},"\u00bd":{"d":"247,-142v3,-47,68,-77,107,-46v22,33,-12,76,-32,93r-101,87r102,0r6,-29r10,0r-8,37r-122,0r3,-11r90,-78v23,-21,65,-52,42,-91v-32,-27,-82,1,-87,38r-10,0xm62,-142r31,0r38,-180r-57,39v2,-18,19,-17,30,-28v14,-7,19,-21,39,-21r-40,190r31,0r-2,8r-72,0xm350,-342r10,0r-294,354r-10,0","w":345},"\u00de":{"d":"81,-88v85,6,151,-10,167,-84v18,-86,-52,-85,-132,-82xm10,-8r44,0r66,-313r-44,0r2,-8r106,0r-1,8r-53,0r-12,59v76,-3,160,-6,141,89v-16,79,-81,100,-180,93r-15,72r52,0r-2,8r-106,0"},"\u00bc":{"d":"62,-142r31,0r38,-180r-57,39v2,-18,19,-17,30,-28v14,-7,19,-21,39,-21r-40,190r31,0r-2,8r-72,0xm350,-342r10,0r-294,354r-10,0xm303,-70r24,-118r-113,118r89,0xm259,-8r30,0r12,-54r-99,0r2,-9r122,-127r13,0r-26,128r33,0r-1,8r-34,0r-12,54r32,0r-2,8r-72,0","w":345},"\u00a6":{"d":"128,-90r0,180r-14,0r0,-180r14,0xm128,-349r0,181r-14,0r0,-181r14,0","w":170},"\u00fe":{"d":"214,-26v-34,43,-136,45,-143,-20r-25,116r40,0r-2,8r-86,0r2,-8r36,0r83,-391r-39,0r2,-8r49,0r-30,144v19,-52,119,-84,153,-25v33,58,-2,153,-40,184xm256,-162v3,-67,-75,-86,-122,-50v-37,28,-60,99,-54,160v3,31,26,49,62,47v80,-5,110,-75,114,-157","w":255},"\u00be":{"d":"192,-302v6,37,-18,64,-54,65r0,3v50,1,37,65,10,87v-35,29,-117,17,-94,-43r10,0v-14,49,43,59,76,38v18,-11,31,-48,15,-67v-8,-10,-24,-12,-43,-11v1,-21,38,-6,49,-21v20,-10,31,-60,2,-70v-36,-13,-72,11,-78,41r-10,0v0,-52,108,-81,117,-22xm350,-342r10,0r-294,354r-10,0xm303,-70r24,-118r-113,118r89,0xm259,-8r30,0r12,-54r-99,0r2,-9r122,-127r13,0r-26,128r33,0r-1,8r-34,0r-12,54r32,0r-2,8r-72,0","w":345},"\u00b2":{"d":"80,-276v3,-47,68,-77,107,-46v22,33,-12,76,-32,93r-101,87r102,0r6,-29r10,0r-8,37r-122,0r3,-11r90,-78v23,-21,65,-52,42,-91v-31,-26,-83,1,-87,38r-10,0","w":149},"\u00f0":{"d":"92,-211v36,-42,140,-45,144,25v7,-55,-7,-97,-39,-121r-67,33r-9,-6r68,-33v-14,-9,-33,-16,-54,-20r4,-9v24,4,44,12,61,24r53,-26r10,5r-55,27v88,91,24,374,-131,310v-71,-30,-30,-176,15,-209xm116,-5v82,0,115,-73,115,-157v0,-43,-23,-69,-67,-69v-82,0,-115,75,-115,157v0,43,23,69,67,69"},"\u00d7":{"d":"86,-204r10,-7r68,88r106,-88r6,7r-106,88r69,87r-9,7r-69,-87r-106,87r-6,-7r107,-87","w":276},"\u00b3":{"d":"194,-302v6,37,-18,64,-54,65r0,3v50,0,36,65,10,87v-35,29,-117,17,-94,-43r10,0v-14,49,43,59,76,38v18,-11,31,-48,15,-67v-8,-10,-24,-12,-43,-11r2,-11v47,7,81,-31,61,-71v-27,-29,-87,-4,-90,32r-10,0v0,-52,108,-81,117,-22","w":149},"\u0160":{"d":"180,-346r-30,-62r13,0r27,53r50,-53r13,0r-56,62r-17,0xm190,-19v-45,40,-143,30,-143,-39r-13,58r-10,0r23,-108r11,0v-35,104,101,136,149,57v18,-29,20,-80,-11,-93v-44,-30,-132,-28,-116,-109v10,-49,46,-80,104,-82v44,-1,65,25,72,59r11,-53r10,0r-22,105r-10,0v37,-100,-100,-134,-144,-55v-10,18,-19,52,-4,70v37,45,150,31,133,126v-5,27,-22,48,-40,64"},"\u00dd":{"d":"246,-408r16,0r-60,62r-10,0xm68,-8r57,0r27,-130r-60,-183r-28,0r2,-8r88,0r-2,8r-47,0r55,171r128,-171r-48,0r2,-8r87,0r-1,8r-30,0r-136,183r-27,130r56,0r-1,8r-124,0","w":255},"\u017d":{"d":"193,-346r-31,-62r14,0r27,53r50,-53r13,0r-56,62r-17,0xm93,-329r211,0r-3,13r-273,308r202,0r19,-95r10,0r-21,103r-220,0r3,-14r272,-307r-191,0r-19,88r-10,0","w":255},"\u0161":{"d":"152,-274r-31,-61r14,0r27,53r50,-53r13,0r-57,61r-16,0xm165,-13v-34,27,-118,30,-125,-23r-8,36r-10,0r17,-83v4,1,11,-2,10,3v-25,73,69,94,116,53v28,-25,28,-84,-20,-84v-43,0,-93,-9,-82,-62v9,-43,40,-67,89,-69v33,-1,50,15,59,37r7,-31r10,0r-17,77r-10,0v26,-66,-58,-90,-105,-54v-21,16,-38,73,-3,82v46,12,120,13,103,69v-6,19,-15,37,-31,49","w":204},"\u00fd":{"d":"218,-335r16,0r-60,61r-10,0xm16,68v55,21,73,-36,95,-68r-36,-228r-27,0r2,-8r76,0r-2,8r-39,0r36,213r125,-213r-38,0r2,-8r73,0r-1,8r-26,0r-158,267v-15,29,-42,55,-84,39"},"\u017e":{"d":"152,-274r-31,-61r14,0r27,53r50,-53r13,0r-57,61r-16,0xm26,-15r192,-213r-137,0r-11,50r-10,0r13,-58r155,0r-3,16r-192,212r140,0r11,-51r10,0r-12,59r-159,0","w":204},"\u00ad":{"d":"158,-121r-111,0r3,-10r110,0","w":153}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright  1985, 1987, 1990, 2002 Adobe Systems Incorporated.  All Rights
 * Reserved.  1981, 2002 Heidelberger Druckmaschinen AG. All rights reserved.
 * 
 * Trademark:
 * Glypha is a trademark of Heidelberger Druckmaschinen AG, exclusively licensed
 * through Linotype Library GmbH, and may be registered in certain jurisdictions.
 * 
 * Designer:
 * Adrian Frutiger
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":255,"face":{"font-family":"glyph","font-weight":400,"font-style":"oblique","font-stretch":"normal","units-per-em":"460","panose-1":"2 6 5 3 3 5 5 2 2 4","ascent":"329","descent":"-131","x-height":"3","bbox":"-14 -442.248 511 129","underline-thickness":"28.98","underline-position":"-8.74","slope":"-10","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":127},"#":{"d":"141,-195r-17,54r56,0r16,-54r-55,0xm156,0r-21,0r37,-120r-56,0r-37,120r-22,0r37,-120r-65,0r4,-21r69,0r17,-54r-64,0r3,-22r68,0r35,-112r22,0r-35,112r56,0r36,-112r21,0r-35,112r60,0r-4,22r-64,0r-16,54r59,0r-3,21r-64,0"},"$":{"d":"119,4v-25,-5,-46,-18,-55,-40r-6,36r-34,0r17,-94r33,0v-4,40,18,61,50,68r22,-125v-41,-17,-94,-32,-81,-97v11,-53,52,-83,113,-86r8,-45r21,0r-8,47v21,5,42,14,48,34r5,-30r33,0r-16,90r-32,0v4,-36,-13,-61,-43,-65r-21,120v42,15,88,30,77,93v-10,54,-49,91,-110,95r-8,47r-22,0xm173,-305v-58,-6,-96,77,-41,104v7,4,13,8,21,10xm145,-25v57,4,90,-82,40,-109v-6,-3,-12,-7,-19,-10"},"%":{"d":"236,-283v3,70,-43,130,-112,105v-51,-46,-14,-157,60,-157v34,0,51,20,52,52xm367,-106v2,70,-42,130,-111,105v-52,-46,-13,-157,59,-157v34,0,51,20,52,52xm291,-19v40,-4,56,-72,36,-109v-41,-21,-63,33,-63,74v0,20,7,37,27,35xm123,6r-28,0r250,-341r27,0xm159,-196v41,0,55,-73,37,-109v-42,-21,-65,32,-64,74v0,20,7,35,27,35","w":408},"&":{"d":"167,-202v30,-16,73,-51,51,-94v-37,-35,-103,15,-71,65xm146,-161v-47,13,-93,99,-34,134v40,13,83,-9,106,-31xm235,-33v-50,60,-220,60,-193,-58v11,-48,42,-79,84,-96v-23,-22,-41,-73,-15,-107v21,-59,171,-62,151,28v-10,45,-42,69,-78,88r63,90v15,-22,24,-49,31,-77r-36,0r5,-29r113,0r-5,29r-42,0v-11,39,-24,75,-48,102r24,33r49,0r-5,30r-75,0","w":357},"\u2019":{"d":"96,-329r48,0v-3,48,-23,78,-40,111r-27,0r33,-65r-22,0","w":127},"(":{"d":"187,-336v-86,85,-144,290,-74,423r-35,0v-50,-85,-42,-236,7,-322v20,-35,41,-69,68,-101r34,0","w":153},")":{"d":"5,87v86,-85,144,-287,75,-423r35,0v51,87,41,235,-8,323v-20,35,-40,68,-67,100r-35,0","w":153},"*":{"d":"142,-329r37,0r-20,65r59,-27r4,35r-61,11r32,50r-34,20r-15,-59r-39,59r-25,-22r51,-48r-57,-13r18,-35r48,29","w":204},"+":{"d":"167,-178r18,-103r28,0r-18,103r103,0r-5,28r-103,0r-18,102r-28,0r18,-102r-103,0r5,-28r103,0","w":303},",":{"d":"47,-46r47,0v-4,46,-23,77,-40,111r-27,0r33,-65r-21,0","w":127},"-":{"d":"48,-144r108,0r-6,34r-108,0","w":153},".":{"d":"48,-46r47,0r-8,46r-47,0","w":127},"\/":{"d":"223,-336r-190,336r-33,0r191,-336r32,0","w":161},"0":{"d":"211,-117v20,-62,45,-217,-56,-181v-50,37,-64,115,-69,194v-3,42,7,79,47,79v52,0,65,-52,78,-92xm188,-335v144,0,71,257,12,312v-19,17,-41,29,-75,29v-109,0,-83,-161,-56,-238v18,-50,53,-103,119,-103"},"1":{"d":"95,-266r82,-63r42,0r-52,299r46,0r-6,30r-136,0r6,-30r49,0r46,-259v-25,25,-55,47,-85,65"},"2":{"d":"66,-236v8,-77,114,-136,183,-78v40,34,5,111,-22,136v-55,50,-110,100,-167,146r136,0r9,-53r36,0r-15,85r-203,0v5,-24,3,-54,25,-63r130,-113v26,-23,61,-66,38,-111v-36,-40,-108,0,-107,51r-43,0"},"3":{"d":"70,-242v12,-66,75,-106,154,-88v55,12,54,103,16,136v-15,13,-33,23,-56,27v83,-1,66,123,17,149v-33,29,-117,34,-146,-2v-14,-18,-21,-40,-15,-72r43,0v-4,37,7,65,44,65v57,0,98,-68,60,-112v-11,-12,-30,-12,-49,-14r5,-31v62,6,101,-50,76,-103v-34,-38,-107,-6,-106,45r-43,0"},"4":{"d":"173,-118r31,-174r-142,174r111,0xm29,-88r7,-44r164,-197r48,0r-37,211r46,0r-5,30r-46,0r-10,58r42,0r-6,30r-129,0r5,-30r50,0r10,-58r-139,0"},"5":{"d":"178,-210v87,0,90,107,52,162v-23,57,-165,82,-181,0v-3,-12,-3,-24,0,-39r41,0v-6,34,10,61,43,61v57,0,79,-44,80,-103v0,-30,-19,-51,-48,-50v-34,2,-55,20,-67,44r-39,0r40,-194r178,0r-5,32r-141,0r-29,127v15,-24,38,-40,76,-40"},"6":{"d":"211,-129v0,-57,-71,-61,-96,-25v-34,30,-43,134,22,130v52,-3,74,-49,74,-105xm130,6v-133,0,-78,-210,-35,-280v20,-33,53,-61,106,-61v53,0,76,30,69,84r-40,0v14,-50,-38,-67,-72,-43v-39,28,-55,81,-64,139v16,-50,123,-81,148,-22v35,84,-18,183,-112,183"},"7":{"d":"84,-329r210,0v-3,46,-28,69,-47,100v-46,73,-89,149,-127,229r-44,0r39,-75v41,-77,91,-150,137,-222r-137,0r-10,58r-37,0"},"8":{"d":"197,-139v-51,-50,-146,19,-108,94v15,29,69,24,92,2v20,-19,35,-67,16,-96xm206,-202v48,-42,19,-131,-50,-99v-49,11,-68,119,5,117v19,-1,34,-8,45,-18xm126,-170v-74,-5,-56,-114,-13,-143v54,-36,179,-29,157,63v-11,44,-35,72,-80,80v32,5,55,23,57,58v7,100,-114,149,-189,95v-40,-47,-7,-139,47,-147v7,-3,14,-5,21,-6"},"9":{"d":"180,-305v-61,0,-90,72,-71,130v5,15,19,24,40,24v52,0,77,-46,77,-103v0,-28,-16,-51,-46,-51xm184,-335v145,4,68,256,9,311v-29,27,-109,44,-137,7v-12,-15,-16,-35,-12,-61r40,0v-16,63,65,64,91,25v22,-32,40,-74,46,-121v-17,49,-122,81,-148,22v-36,-83,16,-186,111,-183"},":":{"d":"74,-46r47,0r-9,46r-47,0xm145,-184r-47,0r8,-46r47,0","w":178},";":{"d":"105,-230r47,0r-8,46r-47,0xm73,-46r47,0v-5,45,-24,77,-40,111r-27,0r33,-65r-22,0","w":178},"<":{"d":"281,-38r-229,-113r5,-27r268,-114r-5,29r-234,99r200,97","w":303},"=":{"d":"294,-144r-5,28r-234,0r5,-28r234,0xm306,-213r-5,29r-233,0r5,-29r233,0","w":303},">":{"d":"270,-164r-198,-99r5,-29r228,114r-5,27r-268,113r5,-29","w":303},"?":{"d":"130,-43r-7,43r-43,0r7,-43r43,0xm61,-245v5,-78,115,-116,175,-66v42,57,-11,130,-54,155v-27,16,-42,42,-47,80r-40,0v6,-76,70,-97,104,-143v21,-29,14,-85,-32,-85v-36,0,-59,27,-64,59r-42,0","w":230},"@":{"d":"161,-147v-15,67,79,67,103,23v16,-29,51,-71,29,-108v-61,-32,-119,29,-132,85xm84,-101v19,110,218,111,278,32r7,13v-53,69,-207,82,-273,17v-43,-42,-47,-141,-7,-193v43,-101,278,-161,320,-22v27,90,-33,172,-121,180v-17,2,-25,-9,-23,-27v-29,39,-122,42,-126,-19v-4,-66,38,-107,84,-132v34,-18,87,-12,92,27r12,-23r21,0r-64,141v7,36,56,-2,70,-13v40,-32,56,-119,15,-163v-50,-54,-169,-38,-218,7v-49,44,-82,95,-67,175","w":414},"A":{"d":"213,-329r47,0r62,299r33,0r-5,30r-123,0r6,-30r45,0r-14,-79r-137,0r-41,79r45,0r-6,30r-120,0r5,-30r34,0xm256,-140r-28,-153r-82,153r110,0","w":357},"B":{"d":"127,-154r-22,124v79,5,156,-6,145,-92v-6,-45,-73,-29,-123,-32xm132,-184v76,6,150,-7,137,-88v-6,-39,-70,-25,-116,-27xm235,-172v62,-3,71,78,41,121v-20,31,-56,51,-109,51r-154,0r6,-30r46,0r48,-269r-46,0r5,-30r191,2v59,1,58,98,22,130v-13,11,-30,22,-50,25","w":306},"C":{"d":"234,-334v46,-1,76,16,86,52r8,-47r34,0r-21,116r-36,0v6,-54,-17,-90,-72,-89v-101,3,-136,85,-136,185v0,55,27,89,85,89v56,1,89,-36,100,-83r42,0v-15,72,-66,117,-149,117v-84,0,-129,-51,-122,-140v9,-114,62,-195,181,-200","w":332},"D":{"d":"341,-193v-8,120,-73,200,-212,193r-117,0r5,-30r46,0r48,-269r-47,0r5,-30r156,0v80,2,122,52,116,136xm298,-204v2,-80,-61,-102,-147,-95r-47,269v132,10,193,-54,194,-174","w":332},"E":{"d":"13,0r6,-30r47,0r47,-269r-47,0r5,-30r263,0r-17,98r-35,0r11,-68r-140,0r-21,116r69,0r8,-50r33,0r-23,130r-33,0r9,-49r-68,0r-21,122r140,0r13,-73r35,0r-18,103r-263,0","w":306},"F":{"d":"10,0r5,-30r47,0r47,-269r-46,0r5,-30r253,0r-18,99r-35,0r13,-69r-132,0r-22,122r66,0r8,-48r33,0r-23,128r-32,0r9,-49r-66,0r-20,116r54,0r-5,30r-141,0","w":281},"G":{"d":"114,-287v38,-50,173,-74,201,0r7,-42r37,0r-21,116r-36,0v9,-59,-22,-90,-76,-90v-96,0,-125,91,-130,190v-5,87,107,110,157,54v17,-19,34,-44,38,-74r-51,0r5,-30r129,0r-5,30r-41,0r-23,133r-38,0r9,-51v-19,36,-59,54,-110,57v-152,10,-132,-228,-52,-293","w":357},"H":{"d":"14,0r6,-30r46,0r47,-269r-46,0r5,-30r132,0r-5,30r-46,0r-21,116r158,0r20,-116r-46,0r5,-30r133,0r-5,30r-46,0r-48,269r46,0r-5,30r-133,0r6,-30r46,0r21,-120r-158,0r-20,120r46,0r-6,30r-132,0","w":357},"I":{"d":"69,-329r132,0r-5,30r-46,0r-48,269r47,0r-6,30r-132,0r5,-30r46,0r47,-269r-46,0","w":153},"J":{"d":"151,-8v-50,27,-134,14,-129,-52r5,-42r42,0v-8,34,-3,77,36,75v43,-2,54,-43,61,-83r34,-189r-49,0r5,-30r125,0r-5,30r-36,0r-38,214v-7,36,-24,62,-51,77","w":230},"K":{"d":"14,0r5,-30r47,0r48,-269r-47,0r5,-30r132,0r-5,30r-45,0r-22,124r140,-124r-40,0r5,-30r114,0r-5,30r-23,0r-143,124r98,145r31,0r-5,30r-122,0r6,-30r40,0r-96,-144r-26,144r45,0r-5,30r-132,0","w":306},"L":{"d":"13,0r6,-30r47,0r48,-269r-48,0r5,-30r143,0r-5,30r-55,0r-47,266r125,0r13,-75r37,0r-19,108r-250,0","w":281},"M":{"d":"14,0r5,-30r48,0r47,-269r-47,0r5,-30r117,0r35,281r138,-281r116,0r-5,30r-47,0r-47,269r47,0r-6,30r-128,0r6,-30r42,0r47,-269r-3,0r-151,299r-36,0r-45,-299r-3,0r-47,269r42,0r-5,30r-125,0","w":434},"N":{"d":"13,0r6,-30r46,0r48,-269r-47,0r5,-30r106,0r95,286r45,-256r-46,0r5,-30r127,0r-5,30r-45,0r-53,299r-55,0r-98,-295r-47,265r48,0r-6,30r-129,0","w":357},"O":{"d":"321,-215v0,-54,-30,-90,-88,-90v-100,0,-138,87,-138,190v0,58,38,94,91,91v96,-5,135,-91,135,-191xm339,-98v-33,75,-124,127,-222,91v-100,-37,-70,-226,-2,-278v47,-58,188,-70,231,2v30,51,14,137,-7,185","w":357},"P":{"d":"13,0r6,-30r47,0r47,-269r-47,0r5,-30r167,0v95,-3,80,144,21,175v-29,25,-83,18,-135,19r-18,105r55,0r-6,30r-142,0xm266,-247v4,-58,-56,-53,-113,-52r-24,133r50,0v57,4,83,-30,87,-81","w":281},"Q":{"d":"86,-136v-11,87,67,135,139,97v62,-33,108,-133,73,-220v-10,-26,-37,-45,-75,-43v-92,4,-127,78,-137,166xm259,-25v26,-6,61,-4,93,-4r-5,30r-132,1v-116,22,-191,-43,-170,-166v19,-111,116,-203,247,-159v75,25,76,173,28,238v-17,23,-34,50,-61,60","w":357},"R":{"d":"10,0r6,-30r47,0r47,-269r-47,0r5,-30v72,5,163,-11,217,13v50,50,8,161,-63,158v55,5,37,79,48,128r35,0r-5,30r-68,0r-15,-122v-7,-31,-57,-22,-94,-23r-20,115r44,0r-5,30r-132,0xm150,-299r-22,123v52,-1,107,5,127,-35v20,-40,9,-101,-48,-88r-57,0","w":306},"S":{"d":"131,-327v40,-15,104,-11,115,29r5,-31r36,0r-19,107r-36,0v28,-81,-77,-110,-116,-51v-21,33,0,75,35,77v46,23,115,30,101,107v-10,56,-51,95,-118,95v-35,0,-65,-15,-70,-48r-7,42r-35,0r19,-111r35,0v-27,84,88,114,125,49v18,-33,3,-74,-29,-78v-45,-26,-119,-26,-108,-105v6,-42,37,-71,67,-82"},"T":{"d":"75,-329r267,0r-18,105r-37,0r12,-70r-76,0r-46,264r51,0r-6,30r-142,0r6,-30r51,0r46,-264r-77,0r-12,70r-37,0","w":306},"U":{"d":"259,-32v-56,62,-213,45,-193,-70r34,-197r-41,0r5,-30r131,0r-5,30r-50,0r-30,172v-14,54,6,102,62,99v124,-7,100,-168,129,-271r-48,0r5,-30r124,0r-5,30r-41,0r-37,205v-7,23,-25,45,-40,62","w":332},"V":{"d":"187,0r-45,0r-56,-299r-27,0r5,-30r119,0r-5,30r-48,0r43,258r137,-258r-48,0r5,-30r116,0r-5,30r-27,0","w":332},"W":{"d":"64,-329r115,0r-5,30r-48,0r10,259r125,-289r58,0r20,292r103,-262r-47,0r5,-30r111,0r-5,30r-26,0r-122,299r-54,0r-20,-300r-3,0r-126,300r-55,0r-14,-299r-27,0","w":460},"X":{"d":"7,0r6,-30r33,0r127,-142r-67,-127r-34,0r5,-30r128,0r-5,30r-44,0r51,96r86,-96r-44,0r5,-30r125,0r-5,30r-35,0r-111,124r75,145r31,0r-6,30r-129,0r5,-30r49,0r-59,-113r-103,113r51,0r-6,30r-129,0","w":332},"Y":{"d":"81,0r6,-30r51,0r18,-105r-72,-164r-26,0r5,-30r117,0r-5,30r-45,0r55,129r101,-129r-44,0r5,-30r113,0r-5,30r-26,0r-133,164r-18,105r51,0r-5,30r-143,0","w":306},"Z":{"d":"17,0r8,-42r240,-256r-155,0r-12,66r-36,0r17,-97r237,0r-6,38r-244,259r166,0r12,-69r36,0r-18,101r-245,0","w":281},"[":{"d":"30,87r75,-423r70,0r-4,26r-35,0r-66,372r35,0r-5,25r-70,0","w":153},"\\":{"d":"97,-336r31,0r78,336r-31,0","w":266},"]":{"d":"90,87r-71,0r5,-25r35,0r66,-372r-35,0r4,-26r71,0","w":153},"^":{"d":"40,-81r156,-248r26,0r71,248r-29,0r-61,-215r-135,215r-28,0","w":303},"_":{"d":"-9,52r5,-29r230,0r-5,29r-230,0","w":230},"\u2018":{"d":"79,-218v4,-47,24,-77,41,-111r27,0r-33,65r21,0r-8,46r-48,0","w":127},"a":{"d":"197,-116v-56,-6,-119,-5,-125,47v-8,64,73,49,97,17v13,-17,23,-40,28,-64xm59,-172v6,-68,112,-101,169,-55v17,13,17,33,12,60r-24,138r38,0r-5,29r-73,0r8,-47v-20,32,-41,50,-87,50v-42,0,-70,-20,-65,-65v8,-77,82,-87,170,-83v11,-35,2,-75,-39,-75v-38,0,-57,18,-65,48r-39,0"},"b":{"d":"102,-88v0,37,19,64,57,62v65,-4,89,-57,90,-126v0,-39,-15,-69,-55,-66v-65,5,-92,61,-92,130xm253,-42v-21,47,-144,69,-160,0r0,-5r-8,47r-75,0r5,-29r38,0r48,-273r-38,0r5,-27r75,0r-23,131v23,-50,130,-72,158,-12v26,54,6,131,-25,168","w":281},"c":{"d":"82,-210v26,-39,125,-58,143,0r5,-30r29,0r-15,88r-29,0v5,-36,-11,-65,-48,-65v-66,0,-90,62,-90,127v0,33,19,64,56,63v36,-1,57,-25,66,-54r35,0v-5,77,-139,117,-183,48v-34,-54,-6,-145,31,-177","w":230},"d":{"d":"223,-156v4,-68,-83,-82,-114,-32v-36,36,-54,166,25,163v66,-2,85,-62,89,-131xm81,-210v28,-45,140,-54,153,9r18,-101r-39,0r4,-27r77,0r-53,300r39,0r-5,29r-76,0r8,-48v-18,43,-83,65,-132,39v-59,-31,-35,-164,6,-201","w":281},"e":{"d":"224,-140v20,-71,-64,-105,-106,-55v-13,14,-24,34,-29,55r135,0xm76,-196v47,-73,214,-68,187,53v0,8,-2,20,-4,30r-177,0v-6,50,8,92,63,88v35,-2,60,-21,69,-50r35,0v-12,74,-149,110,-194,43v-31,-47,-2,-128,21,-164"},"f":{"d":"215,-301v-35,-8,-75,-4,-80,31r-5,30r51,0r-5,27r-51,0r-33,184r46,0r-5,29r-123,0r5,-29r40,0r32,-184r-42,0r5,-27r42,0v3,-69,51,-112,129,-92","w":153},"g":{"d":"76,-85v0,33,21,60,55,60v64,0,93,-60,93,-127v0,-34,-22,-64,-57,-64v-66,0,-91,61,-91,131xm70,-202v28,-44,146,-69,166,0r6,-38r77,0r-5,27r-39,0r-39,214v-10,73,-107,110,-183,75v-17,-8,-29,-26,-26,-53r41,0v1,55,96,40,115,10v13,-21,19,-47,24,-75v-26,51,-130,64,-159,8v-27,-51,-2,-130,22,-168","w":281},"h":{"d":"228,-152v28,-65,-53,-89,-90,-44v-33,39,-29,111,-44,167r40,0r-5,29r-116,0r5,-29r39,0r48,-273r-38,0r4,-27r76,0r-21,121v24,-26,50,-39,81,-39v48,0,70,32,61,83r-24,135r39,0r-5,29r-116,0r5,-29r40,0","w":281},"i":{"d":"152,-329r-7,38r-42,0r6,-38r43,0xm129,0r-113,0r5,-29r38,0r33,-184r-38,0r4,-27r76,0r-37,211r37,0","w":136},"j":{"d":"101,-291r7,-38r42,0r-7,38r-42,0xm-8,47v36,12,61,-11,60,-46r38,-214r-40,0r5,-27r77,0r-54,285v-9,31,-53,41,-92,32","w":127},"k":{"d":"12,0r5,-29r38,0r49,-273r-39,0r4,-27r76,0r-36,207r102,-91r-35,0r5,-27r107,0r-4,27r-32,0r-69,61r47,123r25,0r-5,29r-97,0r5,-29r30,0r-36,-100r-49,42r-11,58r34,0r-5,29r-109,0"},"l":{"d":"10,0r5,-29r38,0r48,-273r-38,0r5,-27r75,0r-53,300r37,0r-5,29r-112,0","w":127},"m":{"d":"337,-247v49,-2,69,36,60,88r-23,130r35,0r-5,29r-110,0r5,-29r38,0v6,-56,27,-110,23,-167v-12,-41,-80,-16,-91,11v-18,44,-22,105,-34,156r37,0r-5,29r-112,0r5,-29r37,0v7,-56,25,-108,24,-167v-13,-40,-79,-16,-91,11v-19,44,-23,104,-35,156r38,0r-5,29r-114,0r5,-29r39,0r33,-184r-39,0r4,-27r76,0r-7,43v10,-29,39,-50,76,-50v36,-1,56,18,59,50v13,-29,38,-49,77,-50","w":408},"n":{"d":"226,-153v21,-59,-45,-87,-84,-47v-37,38,-34,112,-48,171r38,0r-6,29r-114,0r5,-29r40,0r32,-184r-39,0r5,-27r76,0r-8,43v18,-31,38,-49,82,-50v48,-1,69,32,60,81r-24,137r38,0r-5,29r-113,0r5,-29r38,0","w":281},"o":{"d":"129,3v-117,6,-106,-160,-45,-216v40,-36,143,-51,167,3v42,94,-16,208,-122,213xm167,-219v-66,0,-92,61,-92,131v0,36,21,63,58,63v66,0,91,-62,91,-133v0,-36,-19,-61,-57,-61"},"p":{"d":"250,-155v1,-36,-17,-64,-53,-64v-61,1,-94,63,-93,131v0,37,19,64,55,64v66,0,88,-62,91,-131xm167,3v-39,0,-64,-16,-74,-48r-16,92r38,0r-5,28r-114,0r5,-28r39,0r46,-260r-38,0r4,-27r75,0r-8,47v23,-32,44,-54,93,-54v54,0,78,35,78,87v0,86,-37,163,-123,163","w":281},"q":{"d":"221,-142v5,-45,-15,-77,-56,-77v-69,0,-91,64,-91,133v0,38,21,62,60,62v60,0,81,-60,87,-118xm158,-247v41,0,65,17,73,51r8,-44r75,0r-5,27r-38,0r-46,260r39,0r-5,28r-114,0r5,-28r38,0r16,-92v-19,27,-44,49,-90,48v-53,-1,-79,-37,-79,-87v0,-87,46,-163,123,-163","w":281},"r":{"d":"124,-192v17,-34,37,-56,91,-52r-6,34v-99,-14,-98,99,-114,181r45,0r-5,29r-121,0r5,-29r39,0r32,-184r-38,0r5,-27r75,0","w":178},"s":{"d":"59,-145v-26,-88,110,-138,152,-71r4,-24r29,0r-14,77r-29,0v18,-61,-70,-72,-98,-33v-15,19,-6,50,18,50v45,11,96,9,96,73v0,73,-134,109,-157,35r-7,38r-29,0r15,-83r29,0v-7,53,50,71,90,47v29,-18,26,-72,-15,-69v-36,-6,-74,-9,-84,-40","w":230},"t":{"d":"102,3v-44,2,-51,-33,-44,-75r24,-141r-41,0r5,-27r41,0r8,-47r40,-14r-11,61r69,0r-4,27r-69,0r-29,167v1,13,5,23,19,22v24,-2,28,-29,33,-50r29,0v-4,43,-23,75,-70,77","w":170},"u":{"d":"101,-93v-8,33,-3,71,34,69v86,-7,77,-114,95,-189r-40,0r5,-27r77,0r-37,211r38,0r-5,29r-75,0r8,-46v-15,45,-76,63,-123,38v-25,-14,-21,-52,-15,-85r22,-120r-38,0r5,-27r74,0","w":281},"v":{"d":"49,-240r102,0r-4,27r-38,0r23,181r4,0r89,-181r-38,0r4,-27r100,0r-4,27r-25,0r-110,213r-48,0r-35,-213r-24,0"},"w":{"d":"49,-240r107,0r-4,27r-40,0r14,179r3,0r93,-206r53,0r21,206r3,0r77,-179r-40,0r4,-27r105,0r-5,27r-27,0r-99,213r-50,0r-20,-210r-3,0r-96,210r-49,0r-24,-213r-27,0","w":408},"x":{"d":"55,-240r102,0r-5,27r-33,0r39,69r66,-69r-37,0r5,-27r98,0r-5,27r-23,0r-87,92r56,92r24,0r-5,29r-105,0r5,-29r38,0r-43,-70r-70,70r40,0r-5,29r-102,0r5,-29r23,0r93,-96r-55,-88r-24,0"},"y":{"d":"153,-240r-5,27r-37,0r29,168r87,-168r-38,0r5,-27r98,0r-4,27r-22,0r-138,251v-15,29,-50,51,-97,39r5,-31v41,15,65,-15,75,-46r-42,-213r-23,0r4,-27r103,0"},"z":{"d":"23,0r5,-31r173,-182r-105,0r-9,49r-32,0r13,-76r180,0r-6,31r-172,180r110,0r10,-53r32,0r-15,82r-184,0","w":230},"{":{"d":"66,-126v71,23,-3,129,13,193v3,9,12,15,25,20v-44,5,-62,-21,-55,-65r19,-114v0,-18,-15,-30,-29,-34v87,-17,20,-175,107,-208v9,-3,20,-3,33,-2v-78,19,-31,152,-90,201v-6,4,-14,7,-23,9","w":138},"|":{"d":"136,-387r0,516r-31,0r0,-516r31,0","w":182},"}":{"d":"115,-126v-70,-23,1,-127,-14,-190v-3,-9,-12,-16,-25,-20v98,-10,40,110,36,179v0,15,16,29,30,31v-98,19,1,213,-141,213v89,-19,15,-185,114,-213","w":138},"~":{"d":"238,-163v25,0,39,-19,52,-34r19,14v-22,31,-68,60,-119,36v-19,-9,-38,-20,-63,-21v-27,-1,-42,21,-56,36r-19,-13v20,-24,38,-51,80,-51v42,0,66,33,106,33","w":303},"\u00a1":{"d":"147,-205r-44,0r8,-42r44,0xm99,80r-47,0r52,-250r29,0","w":178},"\u00a2":{"d":"126,2v-98,-2,-88,-157,-34,-207v21,-19,43,-40,78,-42r7,-40r19,0r-7,41v25,2,41,17,48,41r6,-36r29,0r-15,89r-30,0v4,-36,-10,-61,-43,-64r-34,188v34,-3,53,-25,62,-53r35,0v-13,48,-47,78,-102,83r-7,43r-19,0xm164,-215v-61,12,-95,114,-55,172v5,8,13,11,23,13"},"\u00a3":{"d":"16,0r6,-30r37,0r23,-135r-39,0r6,-31r39,0v4,-86,55,-161,151,-134v28,8,45,34,38,73r-41,0v14,-58,-63,-56,-85,-22v-15,23,-15,53,-22,83r58,0r-6,31r-58,0r-23,133r98,0r9,-48r35,0r-15,80r-211,0"},"\u00a5":{"d":"56,0r5,-30r51,0r13,-72r-114,0r3,-20r114,0v6,-13,-1,-23,-6,-33r-102,0r4,-21r89,0r-55,-124r-25,0r5,-29r117,0r-5,29r-46,0r55,130r101,-130r-43,0r5,-29r112,0r-5,29r-26,0r-99,124r89,0r-4,21r-102,0v-7,10,-17,17,-19,33r115,0r-4,20r-114,0r-13,72r51,0r-5,30r-142,0"},"\u00a7":{"d":"132,-191v-26,6,-42,49,-19,68v17,14,40,20,62,30v30,-10,41,-60,4,-77xm109,-204v-46,-23,-19,-97,13,-114v55,-28,164,-19,137,66r-41,0v13,-49,-38,-63,-74,-43v-23,13,-26,60,3,66v38,25,105,26,99,89v-3,27,-25,53,-51,59v52,18,22,104,-12,120v-58,27,-169,19,-142,-68r42,0v-18,61,64,68,91,28v15,-22,5,-52,-17,-57v-40,-21,-106,-24,-97,-89v4,-27,25,-49,49,-57"},"'":{"d":"56,-202r17,-127r34,0r-28,127r-23,0","w":64},"\u201c":{"d":"234,-218r-49,0v4,-47,24,-77,41,-111r27,0r-33,65r22,0xm146,-218r-48,0v3,-48,23,-78,40,-111r27,0r-33,65r22,0"},"\u00ab":{"d":"108,-127r20,100r-34,0r-20,-100r55,-98r34,0xm155,-127r55,-98r34,0r-54,98r19,100r-34,0"},"\u2013":{"d":"20,-113r5,-29r256,0r-5,29r-256,0"},"\u00b7":{"d":"121,-191r-8,46r-47,0r8,-46r47,0","w":127},"\u00b6":{"d":"283,-329r-5,28r-41,0r-63,359r-24,0r63,-359r-37,0r-63,359r-25,0r39,-223v-59,2,-87,-68,-54,-116v19,-28,46,-48,96,-48r114,0","w":230},"\u201d":{"d":"117,-329r48,0v-4,47,-24,77,-41,111r-26,0r33,-66r-22,0xm205,-329r48,0v-4,47,-24,77,-41,111r-27,0r33,-66r-21,0"},"\u00bb":{"d":"173,-225r34,0r20,98r-58,100r-34,0r58,-100xm145,-127r-55,100r-34,0r55,-100r-20,-98r34,0"},"\u2026":{"d":"407,0r-47,0r8,-46r47,0xm253,0r-46,0r8,-46r47,0xm100,0r-47,0r9,-46r47,0","w":460},"\u00bf":{"d":"141,-206r8,-41r43,0r-8,41r-43,0xm211,-6v-11,63,-68,96,-144,82v-53,-10,-55,-94,-22,-130v34,-36,87,-52,91,-118r41,0v-6,90,-96,94,-114,169v-8,35,13,55,46,54v35,-1,54,-26,60,-57r42,0","w":230},"`":{"d":"66,-339r35,0r40,63r-23,0","w":127},"\u00b4":{"d":"84,-276r62,-63r36,0r-75,63r-23,0","w":127},"\u00af":{"d":"56,-293r3,-21r120,0r-4,21r-119,0","w":127},"\u00a8":{"d":"135,-285r7,-39r42,0r-7,39r-42,0xm90,-285r-42,0r7,-39r42,0","w":127},"\u00b8":{"d":"97,49v3,46,-63,56,-99,37r9,-13v21,10,59,10,63,-15v3,-21,-26,-20,-41,-14r-6,-6r35,-38r17,0r-26,27v20,-7,47,-1,48,22","w":127},"\u2014":{"d":"20,-113r5,-29r460,0r-5,29r-460,0","w":460},"\u00c6":{"d":"269,-305r-4,0r-116,166r112,0xm491,-329r-17,95r-36,0r11,-65r-143,0r-5,113r62,0r9,-48r33,0r-22,127r-34,0r9,-48r-57,0r-5,125r112,0r12,-71r35,0r-18,101r-233,0r5,-30r47,0r4,-79r-134,0r-56,79r47,0r-5,30r-106,0r6,-30r17,0r217,-299r245,0","w":460},"\u00aa":{"d":"48,-180r121,0r-3,19r-121,0xm144,-260v-29,-1,-62,-5,-65,24v-5,32,38,23,50,8v7,-8,12,-21,15,-32xm57,-224v-2,-46,39,-55,89,-51v15,-33,-22,-53,-46,-30v-5,3,-6,10,-8,16r-20,0v1,-42,81,-57,97,-16v0,32,-10,61,-14,91r20,0r-3,15r-40,0r5,-25v-10,30,-78,40,-80,0","w":153},"\u00d8":{"d":"232,-305v-103,0,-142,100,-135,211v1,8,4,15,7,22r200,-202v-17,-21,-41,-31,-72,-31xm300,-42v-48,46,-162,67,-213,15r-40,40r-13,-14r40,-41v-62,-125,17,-295,162,-292v43,0,72,10,94,33r39,-39r14,14r-37,40v43,78,2,198,-46,244xm186,-24v103,0,140,-102,134,-211v-1,-7,-3,-15,-6,-21r-199,201v15,19,39,31,71,31","w":357},"\u0152":{"d":"93,-112v1,69,63,98,140,81r47,-270v-130,-25,-189,70,-187,189xm50,-117v0,-159,99,-243,273,-212r165,0r-16,95r-36,0r11,-65r-127,0r-21,117r55,0r8,-48r34,0r-22,126r-34,0r9,-47r-55,0r-21,121r127,0r12,-70r36,0r-18,100r-280,2v-66,-7,-100,-51,-100,-119","w":460},"\u00ba":{"d":"169,-180r-3,19r-120,0r3,-19r120,0xm112,-198v-61,5,-60,-87,-24,-113v25,-29,97,-23,97,22v0,51,-23,87,-73,91xm133,-316v-35,0,-48,33,-49,69v0,19,12,34,31,34v34,0,49,-33,49,-70v0,-19,-10,-33,-31,-33","w":153},"\u00e6":{"d":"194,-112v-51,0,-106,-5,-113,44v-9,61,68,49,89,15v10,-16,20,-37,24,-59xm346,-138v9,-39,5,-84,-41,-81v-46,3,-63,41,-72,81r113,0xm267,3v-40,0,-67,-20,-71,-57v-23,55,-98,75,-143,39v-33,-44,3,-119,57,-119v25,-6,57,-4,88,-4v9,-33,16,-82,-31,-82v-36,0,-54,21,-60,51r-38,0v10,-47,44,-79,101,-78v35,1,63,10,66,43v19,-58,147,-61,147,12v0,26,-1,57,-6,80r-149,0v-11,43,0,91,47,88v33,-2,52,-26,60,-54r33,0v-10,46,-48,81,-101,81","w":383},"\u0131":{"d":"14,0r5,-29r39,0r32,-184r-38,0r5,-27r75,0r-37,211r35,0r-5,29r-111,0","w":136},"\u00f8":{"d":"133,-25v72,0,100,-82,87,-158r-131,136v10,12,23,22,44,22xm218,-34v-26,35,-117,54,-155,15r-29,29r-11,-12r30,-31v-47,-92,14,-214,122,-214v28,0,47,8,62,20r27,-28r13,13r-28,29v36,54,5,148,-31,179xm167,-219v-72,0,-103,83,-87,157r132,-138v-10,-12,-23,-19,-45,-19"},"\u0153":{"d":"123,-26v65,0,87,-67,87,-130v0,-37,-11,-64,-50,-62v-65,5,-81,65,-85,130v-2,36,15,62,48,62xm356,-138v9,-36,7,-83,-38,-80v-46,3,-65,41,-75,80r113,0xm327,-247v74,-4,80,71,63,135r-152,0v-9,43,1,86,45,86v34,0,57,-25,63,-54r34,0v-10,50,-44,80,-100,83v-42,2,-66,-20,-70,-57v-13,60,-136,81,-162,20v-38,-91,12,-212,115,-213v44,-1,69,17,73,56v15,-34,44,-54,91,-56","w":383},"\u00df":{"d":"195,-189v90,1,69,139,19,169v-20,18,-47,19,-80,20r5,-29v65,9,96,-68,71,-122v-7,-14,-26,-19,-49,-18r6,-34v47,2,88,-52,61,-93v-34,-28,-93,1,-99,37r-41,230r22,0r-5,29r-99,0r6,-29r38,0r41,-229v8,-68,105,-99,168,-62v44,46,-3,135,-64,131"},"\u00ac":{"d":"274,-185r-206,0r5,-28r233,0r-25,142r-28,0","w":303},"\u00b5":{"d":"101,-93v-8,33,-3,71,34,69v86,-7,77,-114,95,-189r-40,0r5,-27r77,0r-37,211r38,0r-5,29r-75,0v2,-15,8,-33,7,-46v-15,41,-63,59,-110,40v-16,-6,-10,30,-13,46v2,24,-26,49,-37,25v-3,-46,26,-81,20,-141r25,-137r-38,0r5,-27r74,0","w":281},"\u2122":{"d":"205,-303r-59,0r-29,161r-32,0r28,-161r-60,0r5,-26r152,0xm414,-142r-29,0r29,-161r-94,161r-17,0r-35,-161r-29,161r-29,0r33,-187r48,0r30,132r79,-132r47,0","w":450},"\u00b1":{"d":"33,0r5,-28r233,0r-5,28r-233,0xm167,-178r18,-103r28,0r-18,103r103,0r-5,28r-103,0r-18,102r-28,0r18,-102r-103,0r5,-28r103,0","w":303},"\u00f7":{"d":"176,-281r47,0r-9,46r-47,0xm143,-94r47,0r-9,46r-47,0xm298,-178r-5,28r-234,0r5,-28r234,0","w":303},"\u00b0":{"d":"89,-247v14,54,95,26,101,-19v8,-60,-76,-64,-94,-20v-7,10,-11,24,-7,39xm124,-330v76,-33,114,72,55,112v-36,39,-125,18,-109,-48v8,-32,27,-52,54,-64","w":184},"\u00ae":{"d":"180,-179v50,-2,123,11,111,-53v-14,-24,-64,-12,-99,-15xm292,-65r-33,0r-39,-92r-44,0r-16,92r-29,0r36,-203v60,9,163,-27,154,55v-4,36,-33,54,-71,56xm298,-300v-112,-41,-209,41,-227,135v-20,109,80,178,182,136v68,-28,130,-94,110,-193v-8,-38,-31,-65,-65,-78xm388,-164v-19,116,-136,205,-264,156v-54,-20,-92,-78,-76,-157v19,-96,90,-169,200,-169v96,0,157,66,140,170","w":377},"\u00a9":{"d":"151,-134v2,69,112,59,125,4r27,9v-22,65,-172,84,-182,-2v-10,-90,53,-158,148,-141v25,5,48,21,49,52r-32,8v1,-29,-20,-46,-49,-44v-59,3,-88,50,-86,114xm298,-300v-111,-42,-210,41,-227,135v-20,108,77,176,180,136v69,-27,130,-94,111,-192v-7,-38,-31,-67,-64,-79xm387,-166v-19,117,-135,208,-264,158v-53,-20,-90,-78,-75,-157v18,-97,89,-169,200,-169v94,0,156,65,139,168","w":377},"\u00c1":{"d":"214,-365r63,-64r35,0r-74,64r-24,0xm213,-329r47,0r62,299r33,0r-5,30r-123,0r6,-30r45,0r-14,-79r-137,0r-41,79r45,0r-6,30r-120,0r5,-30r34,0xm256,-140r-28,-153r-82,153r110,0","w":357},"\u00c2":{"d":"206,-365r-30,0r63,-64r31,0r41,64r-30,0r-29,-47xm213,-329r47,0r62,299r33,0r-5,30r-123,0r6,-30r45,0r-14,-79r-137,0r-41,79r45,0r-6,30r-120,0r5,-30r34,0xm256,-140r-28,-153r-82,153r110,0","w":357},"\u00c4":{"d":"265,-369r7,-40r42,0r-7,40r-42,0xm220,-369r-42,0r7,-40r42,0xm213,-329r47,0r62,299r33,0r-5,30r-123,0r6,-30r45,0r-14,-79r-137,0r-41,79r45,0r-6,30r-120,0r5,-30r34,0xm256,-140r-28,-153r-82,153r110,0","w":357},"\u00c0":{"d":"196,-429r36,0r40,64r-24,0xm213,-329r47,0r62,299r33,0r-5,30r-123,0r6,-30r45,0r-14,-79r-137,0r-41,79r45,0r-6,30r-120,0r5,-30r34,0xm256,-140r-28,-153r-82,153r110,0","w":357},"\u00c5":{"d":"275,-385v19,-30,-21,-55,-44,-32v-26,16,-8,63,24,49v8,-4,15,-10,20,-17xm273,-438v52,31,0,106,-49,84v-44,-21,-10,-93,33,-88v6,0,11,2,16,4xm213,-329r47,0r62,299r33,0r-5,30r-123,0r6,-30r45,0r-14,-79r-137,0r-41,79r45,0r-6,30r-120,0r5,-30r34,0xm256,-140r-28,-153r-82,153r110,0","w":357},"\u00c3":{"d":"325,-417v-4,35,-49,58,-81,33v-18,-13,-51,-9,-54,14r-17,0v8,-23,21,-43,48,-45v26,-2,38,21,62,21v13,0,20,-12,24,-23r18,0xm213,-329r47,0r62,299r33,0r-5,30r-123,0r6,-30r45,0r-14,-79r-137,0r-41,79r45,0r-6,30r-120,0r5,-30r34,0xm256,-140r-28,-153r-82,153r110,0","w":357},"\u00c7":{"d":"234,-334v46,-1,76,16,86,52r8,-47r34,0r-21,116r-36,0v6,-54,-17,-90,-72,-89v-101,3,-136,85,-136,185v0,55,27,89,85,89v56,1,89,-36,100,-83r42,0v-16,73,-66,115,-152,117r-21,21v21,-7,47,-2,48,22v3,46,-63,56,-99,37r9,-13v21,10,58,10,63,-15v4,-21,-26,-21,-41,-14r-5,-6r29,-33v-70,-8,-109,-57,-102,-139v10,-114,62,-195,181,-200","w":332},"\u00c9":{"d":"189,-365r63,-64r35,0r-74,64r-24,0xm13,0r6,-30r47,0r47,-269r-47,0r5,-30r263,0r-17,98r-35,0r11,-68r-140,0r-21,116r69,0r8,-50r33,0r-23,130r-33,0r9,-49r-68,0r-21,122r140,0r13,-73r35,0r-18,103r-263,0","w":306},"\u00ca":{"d":"180,-365r-29,0r62,-64r31,0r42,64r-30,0r-30,-47xm13,0r6,-30r47,0r47,-269r-47,0r5,-30r263,0r-17,98r-35,0r11,-68r-140,0r-21,116r69,0r8,-50r33,0r-23,130r-33,0r9,-49r-68,0r-21,122r140,0r13,-73r35,0r-18,103r-263,0","w":306},"\u00cb":{"d":"240,-369r7,-40r41,0r-6,40r-42,0xm195,-369r-42,0r7,-40r41,0xm13,0r6,-30r47,0r47,-269r-47,0r5,-30r263,0r-17,98r-35,0r11,-68r-140,0r-21,116r69,0r8,-50r33,0r-23,130r-33,0r9,-49r-68,0r-21,122r140,0r13,-73r35,0r-18,103r-263,0","w":306},"\u00c8":{"d":"171,-429r36,0r40,64r-24,0xm13,0r6,-30r47,0r47,-269r-47,0r5,-30r263,0r-17,98r-35,0r11,-68r-140,0r-21,116r69,0r8,-50r33,0r-23,130r-33,0r9,-49r-68,0r-21,122r140,0r13,-73r35,0r-18,103r-263,0","w":306},"\u00cd":{"d":"112,-365r63,-64r35,0r-74,64r-24,0xm69,-329r132,0r-5,30r-46,0r-48,269r47,0r-6,30r-132,0r5,-30r46,0r47,-269r-46,0","w":153},"\u00ce":{"d":"104,-365r-30,0r63,-64r30,0r42,64r-30,0r-29,-47xm69,-329r132,0r-5,30r-46,0r-48,269r47,0r-6,30r-132,0r5,-30r46,0r47,-269r-46,0","w":153},"\u00cf":{"d":"163,-369r7,-40r42,0r-7,40r-42,0xm118,-369r-42,0r7,-40r42,0xm69,-329r132,0r-5,30r-46,0r-48,269r47,0r-6,30r-132,0r5,-30r46,0r47,-269r-46,0","w":153},"\u00cc":{"d":"94,-429r36,0r40,64r-24,0xm69,-329r132,0r-5,30r-46,0r-48,269r47,0r-6,30r-132,0r5,-30r46,0r47,-269r-46,0","w":153},"\u00d1":{"d":"325,-417v-4,35,-49,58,-81,33v-18,-13,-51,-9,-54,14r-17,0v8,-23,21,-43,48,-45v26,-2,38,21,62,21v13,0,20,-12,24,-23r18,0xm13,0r6,-30r46,0r48,-269r-47,0r5,-30r106,0r95,286r45,-256r-46,0r5,-30r127,0r-5,30r-45,0r-53,299r-55,0r-98,-295r-47,265r48,0r-6,30r-129,0","w":357},"\u00d3":{"d":"214,-365r63,-64r35,0r-74,64r-24,0xm321,-215v0,-54,-30,-90,-88,-90v-100,0,-138,87,-138,190v0,58,38,94,91,91v96,-5,135,-91,135,-191xm339,-98v-33,75,-124,127,-222,91v-100,-37,-70,-226,-2,-278v47,-58,188,-70,231,2v30,51,14,137,-7,185","w":357},"\u00d4":{"d":"206,-365r-30,0r63,-64r31,0r41,64r-30,0r-29,-47xm321,-215v0,-54,-30,-90,-88,-90v-100,0,-138,87,-138,190v0,58,38,94,91,91v96,-5,135,-91,135,-191xm339,-98v-33,75,-124,127,-222,91v-100,-37,-70,-226,-2,-278v47,-58,188,-70,231,2v30,51,14,137,-7,185","w":357},"\u00d6":{"d":"265,-369r7,-40r42,0r-7,40r-42,0xm220,-369r-42,0r7,-40r42,0xm321,-215v0,-54,-30,-90,-88,-90v-100,0,-138,87,-138,190v0,58,38,94,91,91v96,-5,135,-91,135,-191xm339,-98v-33,75,-124,127,-222,91v-100,-37,-70,-226,-2,-278v47,-58,188,-70,231,2v30,51,14,137,-7,185","w":357},"\u00d2":{"d":"196,-429r36,0r40,64r-24,0xm321,-215v0,-54,-30,-90,-88,-90v-100,0,-138,87,-138,190v0,58,38,94,91,91v96,-5,135,-91,135,-191xm339,-98v-33,75,-124,127,-222,91v-100,-37,-70,-226,-2,-278v47,-58,188,-70,231,2v30,51,14,137,-7,185","w":357},"\u00d5":{"d":"325,-417v-4,35,-49,58,-81,33v-18,-13,-51,-9,-54,14r-17,0v8,-23,21,-43,48,-45v26,-2,38,21,62,21v13,0,20,-12,24,-23r18,0xm321,-215v0,-54,-30,-90,-88,-90v-100,0,-138,87,-138,190v0,58,38,94,91,91v96,-5,135,-91,135,-191xm339,-98v-33,75,-124,127,-222,91v-100,-37,-70,-226,-2,-278v47,-58,188,-70,231,2v30,51,14,137,-7,185","w":357},"\u00da":{"d":"201,-365r63,-64r35,0r-74,64r-24,0xm259,-32v-56,62,-213,45,-193,-70r34,-197r-41,0r5,-30r131,0r-5,30r-50,0r-30,172v-14,54,6,102,62,99v124,-7,100,-168,129,-271r-48,0r5,-30r124,0r-5,30r-41,0r-37,205v-7,23,-25,45,-40,62","w":332},"\u00db":{"d":"193,-365r-30,0r63,-64r31,0r41,64r-30,0r-29,-47xm259,-32v-56,62,-213,45,-193,-70r34,-197r-41,0r5,-30r131,0r-5,30r-50,0r-30,172v-14,54,6,102,62,99v124,-7,100,-168,129,-271r-48,0r5,-30r124,0r-5,30r-41,0r-37,205v-7,23,-25,45,-40,62","w":332},"\u00dc":{"d":"253,-369r6,-40r42,0r-7,40r-41,0xm207,-369r-41,0r6,-40r42,0xm259,-32v-56,62,-213,45,-193,-70r34,-197r-41,0r5,-30r131,0r-5,30r-50,0r-30,172v-14,54,6,102,62,99v124,-7,100,-168,129,-271r-48,0r5,-30r124,0r-5,30r-41,0r-37,205v-7,23,-25,45,-40,62","w":332},"\u00d9":{"d":"184,-429r35,0r40,64r-23,0xm259,-32v-56,62,-213,45,-193,-70r34,-197r-41,0r5,-30r131,0r-5,30r-50,0r-30,172v-14,54,6,102,62,99v124,-7,100,-168,129,-271r-48,0r5,-30r124,0r-5,30r-41,0r-37,205v-7,23,-25,45,-40,62","w":332},"\u0178":{"d":"240,-369r7,-40r41,0r-6,40r-42,0xm195,-369r-42,0r7,-40r41,0xm81,0r6,-30r51,0r18,-105r-72,-164r-26,0r5,-30r117,0r-5,30r-45,0r55,129r101,-129r-44,0r5,-30r113,0r-5,30r-26,0r-133,164r-18,105r51,0r-5,30r-143,0","w":306},"\u00e1":{"d":"148,-276r62,-63r36,0r-75,63r-23,0xm197,-116v-56,-6,-119,-5,-125,47v-8,64,73,49,97,17v13,-17,23,-40,28,-64xm59,-172v6,-68,112,-101,169,-55v17,13,17,33,12,60r-24,138r38,0r-5,29r-73,0r8,-47v-20,32,-41,50,-87,50v-42,0,-70,-20,-65,-65v8,-77,82,-87,170,-83v11,-35,2,-75,-39,-75v-38,0,-57,18,-65,48r-39,0"},"\u00e2":{"d":"139,-276r-30,0r63,-63r31,0r41,63r-30,0r-29,-46xm197,-116v-56,-6,-119,-5,-125,47v-8,64,73,49,97,17v13,-17,23,-40,28,-64xm59,-172v6,-68,112,-101,169,-55v17,13,17,33,12,60r-24,138r38,0r-5,29r-73,0r8,-47v-20,32,-41,50,-87,50v-42,0,-70,-20,-65,-65v8,-77,82,-87,170,-83v11,-35,2,-75,-39,-75v-38,0,-57,18,-65,48r-39,0"},"\u00e4":{"d":"199,-285r7,-39r41,0r-6,39r-42,0xm154,-285r-42,0r7,-39r42,0xm197,-116v-56,-6,-119,-5,-125,47v-8,64,73,49,97,17v13,-17,23,-40,28,-64xm59,-172v6,-68,112,-101,169,-55v17,13,17,33,12,60r-24,138r38,0r-5,29r-73,0r8,-47v-20,32,-41,50,-87,50v-42,0,-70,-20,-65,-65v8,-77,82,-87,170,-83v11,-35,2,-75,-39,-75v-38,0,-57,18,-65,48r-39,0"},"\u00e0":{"d":"130,-339r35,0r40,63r-23,0xm197,-116v-56,-6,-119,-5,-125,47v-8,64,73,49,97,17v13,-17,23,-40,28,-64xm59,-172v6,-68,112,-101,169,-55v17,13,17,33,12,60r-24,138r38,0r-5,29r-73,0r8,-47v-20,32,-41,50,-87,50v-42,0,-70,-20,-65,-65v8,-77,82,-87,170,-83v11,-35,2,-75,-39,-75v-38,0,-57,18,-65,48r-39,0"},"\u00e5":{"d":"209,-303v18,-28,-19,-57,-43,-33v-26,17,-10,64,24,50v8,-4,15,-9,19,-17xm208,-356v50,29,1,105,-50,84v-28,-12,-25,-62,-1,-74v11,-11,34,-20,51,-10xm197,-116v-56,-6,-119,-5,-125,47v-8,64,73,49,97,17v13,-17,23,-40,28,-64xm59,-172v6,-68,112,-101,169,-55v17,13,17,33,12,60r-24,138r38,0r-5,29r-73,0r8,-47v-20,32,-41,50,-87,50v-42,0,-70,-20,-65,-65v8,-77,82,-87,170,-83v11,-35,2,-75,-39,-75v-38,0,-57,18,-65,48r-39,0"},"\u00e3":{"d":"258,-328v-5,36,-47,59,-81,33v-17,-14,-51,-9,-54,14r-17,0v8,-23,21,-45,49,-45v24,0,38,21,61,21v14,0,20,-13,25,-23r17,0xm197,-116v-56,-6,-119,-5,-125,47v-8,64,73,49,97,17v13,-17,23,-40,28,-64xm59,-172v6,-68,112,-101,169,-55v17,13,17,33,12,60r-24,138r38,0r-5,29r-73,0r8,-47v-20,32,-41,50,-87,50v-42,0,-70,-20,-65,-65v8,-77,82,-87,170,-83v11,-35,2,-75,-39,-75v-38,0,-57,18,-65,48r-39,0"},"\u00e7":{"d":"82,-210v26,-39,125,-58,143,0r5,-30r29,0r-15,88r-29,0v5,-36,-11,-65,-48,-65v-66,0,-90,62,-90,127v0,33,19,64,56,63v36,-1,57,-25,66,-54r35,0v-12,51,-50,83,-111,84r-23,24v20,-7,47,-1,48,22v3,46,-63,56,-99,37r9,-13v21,10,58,10,63,-15v4,-21,-26,-21,-41,-14r-5,-6r32,-36v-97,-10,-81,-164,-25,-212","w":230},"\u00e9":{"d":"148,-276r62,-63r36,0r-75,63r-23,0xm224,-140v20,-71,-64,-105,-106,-55v-13,14,-24,34,-29,55r135,0xm76,-196v47,-73,214,-68,187,53v0,8,-2,20,-4,30r-177,0v-6,50,8,92,63,88v35,-2,60,-21,69,-50r35,0v-12,74,-149,110,-194,43v-31,-47,-2,-128,21,-164"},"\u00ea":{"d":"139,-276r-30,0r63,-63r31,0r41,63r-30,0r-29,-46xm224,-140v20,-71,-64,-105,-106,-55v-13,14,-24,34,-29,55r135,0xm76,-196v47,-73,214,-68,187,53v0,8,-2,20,-4,30r-177,0v-6,50,8,92,63,88v35,-2,60,-21,69,-50r35,0v-12,74,-149,110,-194,43v-31,-47,-2,-128,21,-164"},"\u00eb":{"d":"199,-285r7,-39r41,0r-6,39r-42,0xm154,-285r-42,0r7,-39r42,0xm224,-140v20,-71,-64,-105,-106,-55v-13,14,-24,34,-29,55r135,0xm76,-196v47,-73,214,-68,187,53v0,8,-2,20,-4,30r-177,0v-6,50,8,92,63,88v35,-2,60,-21,69,-50r35,0v-12,74,-149,110,-194,43v-31,-47,-2,-128,21,-164"},"\u00e8":{"d":"130,-339r35,0r40,63r-23,0xm224,-140v20,-71,-64,-105,-106,-55v-13,14,-24,34,-29,55r135,0xm76,-196v47,-73,214,-68,187,53v0,8,-2,20,-4,30r-177,0v-6,50,8,92,63,88v35,-2,60,-21,69,-50r35,0v-12,74,-149,110,-194,43v-31,-47,-2,-128,21,-164"},"\u00ed":{"d":"88,-276r62,-63r36,0r-75,63r-23,0xm14,0r5,-29r39,0r32,-184r-38,0r5,-27r75,0r-37,211r35,0r-5,29r-111,0","w":136},"\u00ee":{"d":"79,-276r-29,0r62,-63r31,0r41,63r-29,0r-30,-46xm14,0r5,-29r39,0r32,-184r-38,0r5,-27r75,0r-37,211r35,0r-5,29r-111,0","w":136},"\u00ef":{"d":"139,-285r7,-39r42,0r-7,39r-42,0xm94,-285r-42,0r7,-39r42,0xm14,0r5,-29r39,0r32,-184r-38,0r5,-27r75,0r-37,211r35,0r-5,29r-111,0","w":136},"\u00ec":{"d":"70,-339r35,0r40,63r-23,0xm14,0r5,-29r39,0r32,-184r-38,0r5,-27r75,0r-37,211r35,0r-5,29r-111,0","w":136},"\u00f1":{"d":"271,-328v-5,36,-47,59,-81,33v-17,-14,-51,-9,-54,14r-17,0v8,-23,21,-42,48,-45v31,4,73,42,86,-2r18,0xm226,-153v21,-59,-45,-87,-84,-47v-37,38,-34,112,-48,171r38,0r-6,29r-114,0r5,-29r40,0r32,-184r-39,0r5,-27r76,0r-8,43v18,-31,38,-49,82,-50v48,-1,69,32,60,81r-24,137r38,0r-5,29r-113,0r5,-29r38,0","w":281},"\u00f3":{"d":"148,-276r62,-63r36,0r-75,63r-23,0xm129,3v-117,6,-106,-160,-45,-216v40,-36,143,-51,167,3v42,94,-16,208,-122,213xm167,-219v-66,0,-92,61,-92,131v0,36,21,63,58,63v66,0,91,-62,91,-133v0,-36,-19,-61,-57,-61"},"\u00f4":{"d":"139,-276r-30,0r63,-63r31,0r41,63r-30,0r-29,-46xm129,3v-117,6,-106,-160,-45,-216v40,-36,143,-51,167,3v42,94,-16,208,-122,213xm167,-219v-66,0,-92,61,-92,131v0,36,21,63,58,63v66,0,91,-62,91,-133v0,-36,-19,-61,-57,-61"},"\u00f6":{"d":"199,-285r7,-39r41,0r-6,39r-42,0xm154,-285r-42,0r7,-39r42,0xm129,3v-117,6,-106,-160,-45,-216v40,-36,143,-51,167,3v42,94,-16,208,-122,213xm167,-219v-66,0,-92,61,-92,131v0,36,21,63,58,63v66,0,91,-62,91,-133v0,-36,-19,-61,-57,-61"},"\u00f2":{"d":"130,-339r35,0r40,63r-23,0xm129,3v-117,6,-106,-160,-45,-216v40,-36,143,-51,167,3v42,94,-16,208,-122,213xm167,-219v-66,0,-92,61,-92,131v0,36,21,63,58,63v66,0,91,-62,91,-133v0,-36,-19,-61,-57,-61"},"\u00f5":{"d":"258,-328v-5,36,-47,59,-81,33v-17,-14,-51,-9,-54,14r-17,0v8,-23,21,-45,49,-45v24,0,38,21,61,21v14,0,20,-13,25,-23r17,0xm129,3v-117,6,-106,-160,-45,-216v40,-36,143,-51,167,3v42,94,-16,208,-122,213xm167,-219v-66,0,-92,61,-92,131v0,36,21,63,58,63v66,0,91,-62,91,-133v0,-36,-19,-61,-57,-61"},"\u00fa":{"d":"161,-276r62,-63r36,0r-75,63r-23,0xm101,-93v-8,33,-3,71,34,69v86,-7,77,-114,95,-189r-40,0r5,-27r77,0r-37,211r38,0r-5,29r-75,0r8,-46v-15,45,-76,63,-123,38v-25,-14,-21,-52,-15,-85r22,-120r-38,0r5,-27r74,0","w":281},"\u00fb":{"d":"152,-276r-30,0r63,-63r31,0r41,63r-30,0r-29,-46xm101,-93v-8,33,-3,71,34,69v86,-7,77,-114,95,-189r-40,0r5,-27r77,0r-37,211r38,0r-5,29r-75,0r8,-46v-15,45,-76,63,-123,38v-25,-14,-21,-52,-15,-85r22,-120r-38,0r5,-27r74,0","w":281},"\u00fc":{"d":"212,-285r7,-39r41,0r-7,39r-41,0xm167,-285r-42,0r7,-39r41,0xm101,-93v-8,33,-3,71,34,69v86,-7,77,-114,95,-189r-40,0r5,-27r77,0r-37,211r38,0r-5,29r-75,0r8,-46v-15,45,-76,63,-123,38v-25,-14,-21,-52,-15,-85r22,-120r-38,0r5,-27r74,0","w":281},"\u00f9":{"d":"143,-339r35,0r40,63r-23,0xm101,-93v-8,33,-3,71,34,69v86,-7,77,-114,95,-189r-40,0r5,-27r77,0r-37,211r38,0r-5,29r-75,0r8,-46v-15,45,-76,63,-123,38v-25,-14,-21,-52,-15,-85r22,-120r-38,0r5,-27r74,0","w":281},"\u00ff":{"d":"199,-285r7,-39r41,0r-6,39r-42,0xm154,-285r-42,0r7,-39r42,0xm153,-240r-5,27r-37,0r29,168r87,-168r-38,0r5,-27r98,0r-4,27r-22,0r-138,251v-15,29,-50,51,-97,39r5,-31v41,15,65,-15,75,-46r-42,-213r-23,0r4,-27r103,0"},"\u00a0":{"w":127},"\"":{"d":"58,-202r17,-127r34,0r-28,127r-23,0xm118,-202r17,-127r35,0r-28,127r-24,0","w":128},"!":{"d":"75,-43r44,0r-7,43r-44,0xm123,-329r48,0r-52,252r-30,0","w":178},"\u00a4":{"d":"236,-156v19,-99,-114,-96,-148,-32v-32,61,14,137,86,105v31,-14,54,-38,62,-73xm207,-72v-33,27,-103,34,-132,0r-29,25r-16,-18r30,-25v-28,-41,-7,-108,23,-133r-21,-24r22,-19r20,25v38,-29,101,-31,133,0r29,-25r16,19r-29,24v26,44,5,105,-23,133r19,25r-22,18","w":257},"\u0141":{"d":"13,0r6,-30r47,0r22,-125r-52,25r5,-29r52,-25r21,-115r-48,0r5,-30r143,0r-5,30r-55,0r-16,87r52,-24r-6,29r-51,25r-26,149r125,0r13,-75r37,0r-19,108r-250,0","w":281},"\u0142":{"d":"10,0r5,-29r38,0r26,-149r-42,21r4,-22r42,-21r18,-102r-38,0r5,-27r75,0r-20,112r41,-20r-4,22r-40,20r-30,166r37,0r-5,29r-112,0","w":127},"\u00b9":{"d":"77,-298v18,-12,38,-23,54,-37r27,0r-32,179r30,0r-3,18r-89,0r4,-18r32,0r27,-155v-16,15,-36,28,-54,39","w":153},"\u00d0":{"d":"341,-193v-8,120,-73,200,-212,193r-117,0r5,-30r46,0r24,-138r-46,0r4,-23r47,0r19,-108r-47,0r5,-30r156,0v80,2,122,52,116,136xm298,-204v2,-80,-61,-102,-147,-95r-19,108r65,0r-4,23r-66,0r-23,138v132,10,193,-54,194,-174","w":332},"\u00bd":{"d":"266,-141v5,-53,74,-76,118,-47v42,66,-50,108,-88,145r-30,24r86,0r5,-32r24,0r-9,51r-132,0r5,-31v39,-30,89,-62,116,-99v14,-20,7,-54,-23,-52v-27,2,-40,19,-45,41r-27,0xm64,-298r53,-37r27,0r-31,179r30,0r-3,18r-89,0r3,-18r33,0r27,-155v-17,14,-36,28,-55,39xm77,0r262,-335r27,0r-262,335r-27,0","w":383},"\u00de":{"d":"13,0r6,-30r47,0r47,-269r-47,0r5,-30r134,0r-5,30r-47,0r-6,33v68,0,148,-9,149,66v1,80,-42,133,-129,128r-54,0r-7,42r47,0r-6,30r-134,0xm168,-102v61,4,91,-36,86,-96v-4,-44,-62,-38,-112,-38r-24,134r50,0","w":281},"\u00bc":{"d":"64,-298r53,-37r27,0r-31,179r30,0r-3,18r-89,0r3,-18r33,0r27,-155v-17,14,-36,28,-55,39xm330,-71r19,-104r-91,104r72,0xm91,0r262,-335r27,0r-262,335r-27,0xm236,-53r5,-26r104,-119r32,0r-22,127r30,0r-4,18r-30,0r-6,35r28,0r-4,18r-84,0r3,-18r33,0r6,-35r-91,0","w":383},"\u00a6":{"d":"136,-90r0,180r-31,0r0,-180r31,0xm136,-349r0,181r-31,0r0,-181r31,0","w":182},"\u00fe":{"d":"104,-88v0,37,19,64,55,64v66,0,88,-62,91,-131v0,-36,-17,-67,-53,-65v-67,4,-91,62,-93,132xm167,3v-40,2,-63,-17,-74,-48r-16,92r38,0r-5,28r-114,0r5,-28r39,0r61,-349r-38,0r5,-27r75,0r-23,136v22,-32,43,-54,92,-54v54,0,78,35,78,87v0,86,-37,159,-123,163","w":281},"\u00be":{"d":"63,-279v3,-52,91,-78,124,-34v17,40,-13,74,-49,79v53,-2,45,73,12,89v-37,28,-123,14,-105,-45r28,0v-11,38,35,50,61,30v27,-21,15,-74,-26,-66r3,-18v36,3,67,-30,48,-62v-21,-22,-71,-5,-68,27r-28,0xm330,-71r19,-104r-91,104r72,0xm236,-53r5,-26r104,-119r32,0r-22,127r30,0r-4,18r-30,0r-6,35r28,0r-4,18r-84,0r3,-18r33,0r6,-35r-91,0xm91,0r262,-335r27,0r-262,335r-27,0","w":383},"\u00b2":{"d":"61,-276v5,-52,73,-75,118,-47v41,67,-49,108,-88,145r-30,25r86,0r5,-32r24,0r-9,51r-133,0r6,-32r60,-45v28,-23,52,-37,62,-70v6,-20,-8,-36,-30,-35v-27,0,-39,18,-44,40r-27,0","w":153},"\u00f0":{"d":"83,-204v26,-31,108,-48,138,-9v0,-31,-23,-54,-43,-70r-56,30r-12,-14r51,-28v-16,-9,-36,-17,-56,-20r5,-29v34,4,63,15,86,30r57,-30r11,15r-52,28v32,29,52,68,54,127v3,116,-72,209,-186,167v-71,-26,-47,-165,3,-197xm196,-201v-81,-33,-143,64,-113,146v7,18,23,32,49,31v70,-3,105,-85,82,-155v-3,-9,-10,-16,-18,-22"},"\u00d7":{"d":"161,-164r-82,-97r24,-20r81,97r117,-97r16,20r-116,96r82,97r-24,20r-82,-96r-116,96r-16,-20","w":303},"\u00b3":{"d":"63,-279v2,-53,91,-77,123,-34v18,39,-12,74,-48,79v53,-2,44,74,11,89v-37,28,-123,15,-104,-45r28,0v-11,37,34,50,60,30v27,-20,16,-74,-25,-66r3,-18v36,2,70,-33,47,-62v-19,-25,-69,-3,-68,27r-27,0","w":153},"\u0160":{"d":"241,-429r30,0r-64,64r-30,0r-41,-64r30,0r30,47xm131,-327v40,-15,104,-11,115,29r5,-31r36,0r-19,107r-36,0v28,-81,-77,-110,-116,-51v-21,33,0,75,35,77v46,23,115,30,101,107v-10,56,-51,95,-118,95v-35,0,-65,-15,-70,-48r-7,42r-35,0r19,-111r35,0v-27,84,88,114,125,49v18,-33,3,-74,-29,-78v-45,-26,-119,-26,-108,-105v6,-42,37,-71,67,-82"},"\u00dd":{"d":"189,-365r63,-64r35,0r-74,64r-24,0xm81,0r6,-30r51,0r18,-105r-72,-164r-26,0r5,-30r117,0r-5,30r-45,0r55,129r101,-129r-44,0r5,-30r113,0r-5,30r-26,0r-133,164r-18,105r51,0r-5,30r-143,0","w":306},"\u017d":{"d":"254,-429r30,0r-64,64r-30,0r-41,-64r29,0r30,47xm17,0r8,-42r240,-256r-155,0r-12,66r-36,0r17,-97r237,0r-6,38r-244,259r166,0r12,-69r36,0r-18,101r-245,0","w":281},"\u0161":{"d":"213,-339r29,0r-63,63r-31,0r-40,-63r29,0r30,46xm59,-145v-26,-88,110,-138,152,-71r4,-24r29,0r-14,77r-29,0v18,-61,-70,-72,-98,-33v-15,19,-6,50,18,50v45,11,96,9,96,73v0,73,-134,109,-157,35r-7,38r-29,0r15,-83r29,0v-7,53,50,71,90,47v29,-18,26,-72,-15,-69v-36,-6,-74,-9,-84,-40","w":230},"\u00fd":{"d":"148,-276r62,-63r36,0r-75,63r-23,0xm153,-240r-5,27r-37,0r29,168r87,-168r-38,0r5,-27r98,0r-4,27r-22,0r-138,251v-15,29,-50,51,-97,39r5,-31v41,15,65,-15,75,-46r-42,-213r-23,0r4,-27r103,0"},"\u017e":{"d":"213,-339r29,0r-63,63r-31,0r-40,-63r29,0r30,46xm23,0r5,-31r173,-182r-105,0r-9,49r-32,0r13,-76r180,0r-6,31r-172,180r110,0r10,-53r32,0r-15,82r-184,0","w":230},"\u00ad":{"d":"48,-144r108,0r-6,34r-108,0","w":153}}});
;
/*
 * jQuery UI 1.7.3
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI
 */jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7.3",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return}for(var m=0;m<n.length;m++){if(j.options[n[m][0]]){n[m][1].apply(j.element,k)}}}},contains:function(k,j){return document.compareDocumentPosition?k.compareDocumentPosition(j)&16:k!==j&&k.contains(j)},hasScroll:function(m,k){if(c(m).css("overflow")=="hidden"){return false}var j=(k&&k=="left")?"scrollLeft":"scrollTop",l=false;if(m[j]>0){return true}m[j]=1;l=(m[j]>0);m[j]=0;return l},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l))},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)))};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""))}):e.call(this,j))}}c.fn.extend({remove:function(j,k){return this.each(function(){if(!k){if(!j||c.filter(j,[this]).length){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")})}}return i.call(c(this),j,k)})},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return !!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return !(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return !this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;/*
 * jQuery UI Tabs 1.7.3
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Tabs
 *
 * Depends:
 *	ui.core.js
 */(function(c){var b=0,a=0;c.widget("ui.tabs",{_init:function(){if(this.options.deselectable!==undefined){this.options.collapsible=this.options.deselectable}this._tabify(true)},_setData:function(d,e){if(d=="selected"){if(this.options.collapsible&&e==this.options.selected){return}this.select(e)}else{this.options[d]=e;if(d=="deselectable"){this.options.collapsible=e}this._tabify()}},_tabId:function(d){return d.title&&d.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||this.options.idPrefix+(++b)},_sanitizeSelector:function(d){return d.replace(/:/g,"\\:")},_cookie:function(){var d=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+(++a));return c.cookie.apply(null,[d].concat(c.makeArray(arguments)))},_ui:function(e,d){return{tab:e,panel:d,index:this.anchors.index(e)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var d=c(this);d.html(d.data("label.tabs")).removeData("label.tabs")})},_tabify:function(q){this.list=this.element.children("ul:first");this.lis=c("li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return c("a",this)[0]});this.panels=c([]);var r=this,f=this.options;var e=/^#.+/;this.anchors.each(function(u,o){var s=c(o).attr("href");var v=s.split("#")[0],w;if(v&&(v===location.toString().split("#")[0]||(w=c("base")[0])&&v===w.href)){s=o.hash;o.href=s}if(e.test(s)){r.panels=r.panels.add(r._sanitizeSelector(s))}else{if(s!="#"){c.data(o,"href.tabs",s);c.data(o,"load.tabs",s.replace(/#.*$/,""));var y=r._tabId(o);o.href="#"+y;var x=c("#"+y);if(!x.length){x=c(f.panelTemplate).attr("id",y).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(r.panels[u-1]||r.list);x.data("destroy.tabs",true)}r.panels=r.panels.add(x)}else{f.disabled.push(u)}}});if(q){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all");this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(f.selected===undefined){if(location.hash){this.anchors.each(function(s,o){if(o.hash==location.hash){f.selected=s;return false}})}if(typeof f.selected!="number"&&f.cookie){f.selected=parseInt(r._cookie(),10)}if(typeof f.selected!="number"&&this.lis.filter(".ui-tabs-selected").length){f.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}f.selected=f.selected||0}else{if(f.selected===null){f.selected=-1}}f.selected=((f.selected>=0&&this.anchors[f.selected])||f.selected<0)?f.selected:0;f.disabled=c.unique(f.disabled.concat(c.map(this.lis.filter(".ui-state-disabled"),function(s,o){return r.lis.index(s)}))).sort();if(c.inArray(f.selected,f.disabled)!=-1){f.disabled.splice(c.inArray(f.selected,f.disabled),1)}this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active");if(f.selected>=0&&this.anchors.length){this.panels.eq(f.selected).removeClass("ui-tabs-hide");this.lis.eq(f.selected).addClass("ui-tabs-selected ui-state-active");r.element.queue("tabs",function(){r._trigger("show",null,r._ui(r.anchors[f.selected],r.panels[f.selected]))});this.load(f.selected)}c(window).bind("unload",function(){r.lis.add(r.anchors).unbind(".tabs");r.lis=r.anchors=r.panels=null})}else{f.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}this.element[f.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible");if(f.cookie){this._cookie(f.selected,f.cookie)}for(var j=0,p;(p=this.lis[j]);j++){c(p)[c.inArray(j,f.disabled)!=-1&&!c(p).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled")}if(f.cache===false){this.anchors.removeData("cache.tabs")}this.lis.add(this.anchors).unbind(".tabs");if(f.event!="mouseover"){var h=function(o,i){if(i.is(":not(.ui-state-disabled)")){i.addClass("ui-state-"+o)}};var l=function(o,i){i.removeClass("ui-state-"+o)};this.lis.bind("mouseover.tabs",function(){h("hover",c(this))});this.lis.bind("mouseout.tabs",function(){l("hover",c(this))});this.anchors.bind("focus.tabs",function(){h("focus",c(this).closest("li"))});this.anchors.bind("blur.tabs",function(){l("focus",c(this).closest("li"))})}var d,k;if(f.fx){if(c.isArray(f.fx)){d=f.fx[0];k=f.fx[1]}else{d=k=f.fx}}function g(i,o){i.css({display:""});if(c.browser.msie&&o.opacity){i[0].style.removeAttribute("filter")}}var m=k?function(i,o){c(i).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");o.hide().removeClass("ui-tabs-hide").animate(k,k.duration||"normal",function(){g(o,k);r._trigger("show",null,r._ui(i,o[0]))})}:function(i,o){c(i).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");o.removeClass("ui-tabs-hide");r._trigger("show",null,r._ui(i,o[0]))};var n=d?function(o,i){i.animate(d,d.duration||"normal",function(){r.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");i.addClass("ui-tabs-hide");g(i,d);r.element.dequeue("tabs")})}:function(o,i,s){r.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");i.addClass("ui-tabs-hide");r.element.dequeue("tabs")};this.anchors.bind(f.event+".tabs",function(){var o=this,u=c(this).closest("li"),i=r.panels.filter(":not(.ui-tabs-hide)"),s=c(r._sanitizeSelector(this.hash));if((u.hasClass("ui-tabs-selected")&&!f.collapsible)||u.hasClass("ui-state-disabled")||u.hasClass("ui-state-processing")||r._trigger("select",null,r._ui(this,s[0]))===false){this.blur();return false}f.selected=r.anchors.index(this);r.abort();if(f.collapsible){if(u.hasClass("ui-tabs-selected")){f.selected=-1;if(f.cookie){r._cookie(f.selected,f.cookie)}r.element.queue("tabs",function(){n(o,i)}).dequeue("tabs");this.blur();return false}else{if(!i.length){if(f.cookie){r._cookie(f.selected,f.cookie)}r.element.queue("tabs",function(){m(o,s)});r.load(r.anchors.index(this));this.blur();return false}}}if(f.cookie){r._cookie(f.selected,f.cookie)}if(s.length){if(i.length){r.element.queue("tabs",function(){n(o,i)})}r.element.queue("tabs",function(){m(o,s)});r.load(r.anchors.index(this))}else{throw"jQuery UI Tabs: Mismatching fragment identifier."}if(c.browser.msie){this.blur()}});this.anchors.bind("click.tabs",function(){return false})},destroy:function(){var d=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){var e=c.data(this,"href.tabs");if(e){this.href=e}var f=c(this).unbind(".tabs");c.each(["href","load","cache"],function(g,h){f.removeData(h+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){if(c.data(this,"destroy.tabs")){c(this).remove()}else{c(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}});if(d.cookie){this._cookie(null,d.cookie)}},add:function(g,f,e){if(e===undefined){e=this.anchors.length}var d=this,i=this.options,k=c(i.tabTemplate.replace(/#\{href\}/g,g).replace(/#\{label\}/g,f)),j=!g.indexOf("#")?g.replace("#",""):this._tabId(c("a",k)[0]);k.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);var h=c("#"+j);if(!h.length){h=c(i.panelTemplate).attr("id",j).data("destroy.tabs",true)}h.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(e>=this.lis.length){k.appendTo(this.list);h.appendTo(this.list[0].parentNode)}else{k.insertBefore(this.lis[e]);h.insertBefore(this.panels[e])}i.disabled=c.map(i.disabled,function(m,l){return m>=e?++m:m});this._tabify();if(this.anchors.length==1){k.addClass("ui-tabs-selected ui-state-active");h.removeClass("ui-tabs-hide");this.element.queue("tabs",function(){d._trigger("show",null,d._ui(d.anchors[0],d.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[e],this.panels[e]))},remove:function(d){var f=this.options,g=this.lis.eq(d).remove(),e=this.panels.eq(d).remove();if(g.hasClass("ui-tabs-selected")&&this.anchors.length>1){this.select(d+(d+1<this.anchors.length?1:-1))}f.disabled=c.map(c.grep(f.disabled,function(j,h){return j!=d}),function(j,h){return j>=d?--j:j});this._tabify();this._trigger("remove",null,this._ui(g.find("a")[0],e[0]))},enable:function(d){var e=this.options;if(c.inArray(d,e.disabled)==-1){return}this.lis.eq(d).removeClass("ui-state-disabled");e.disabled=c.grep(e.disabled,function(g,f){return g!=d});this._trigger("enable",null,this._ui(this.anchors[d],this.panels[d]))},disable:function(e){var d=this,f=this.options;if(e!=f.selected){this.lis.eq(e).addClass("ui-state-disabled");f.disabled.push(e);f.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[e],this.panels[e]))}},select:function(d){if(typeof d=="string"){d=this.anchors.index(this.anchors.filter("[href$="+d+"]"))}else{if(d===null){d=-1}}if(d==-1&&this.options.collapsible){d=this.options.selected}this.anchors.eq(d).trigger(this.options.event+".tabs")},load:function(g){var e=this,i=this.options,d=this.anchors.eq(g)[0],f=c.data(d,"load.tabs");this.abort();if(!f||this.element.queue("tabs").length!==0&&c.data(d,"cache.tabs")){this.element.dequeue("tabs");return}this.lis.eq(g).addClass("ui-state-processing");if(i.spinner){var h=c("span",d);h.data("label.tabs",h.html()).html(i.spinner)}this.xhr=c.ajax(c.extend({},i.ajaxOptions,{url:f,success:function(k,j){c(e._sanitizeSelector(d.hash)).html(k);e._cleanup();if(i.cache){c.data(d,"cache.tabs",true)}e._trigger("load",null,e._ui(e.anchors[g],e.panels[g]));try{i.ajaxOptions.success(k,j)}catch(l){}e.element.dequeue("tabs")}}))},abort:function(){this.element.queue([]);this.panels.stop(false,true);if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup()},url:function(e,d){this.anchors.eq(e).removeData("cache.tabs").data("load.tabs",d)},length:function(){return this.anchors.length}});c.extend(c.ui.tabs,{version:"1.7.3",getter:"length",defaults:{ajaxOptions:null,cache:false,cookie:null,collapsible:false,disabled:[],event:"click",fx:null,idPrefix:"ui-tabs-",panelTemplate:"<div></div>",spinner:"<em>Loading&#8230;</em>",tabTemplate:'<li><a href="#{href}"><span>#{label}</span></a></li>'}});c.extend(c.ui.tabs.prototype,{rotation:null,rotate:function(f,h){var d=this,i=this.options;var e=d._rotate||(d._rotate=function(j){clearTimeout(d.rotation);d.rotation=setTimeout(function(){var k=i.selected;d.select(++k<d.anchors.length?k:0)},f);if(j){j.stopPropagation()}});var g=d._unrotate||(d._unrotate=!h?function(j){if(j.clientX){d.rotate(null)}}:function(j){t=i.selected;e()});if(f){this.element.bind("tabsshow",e);this.anchors.bind(i.event+".tabs",g);e()}else{clearTimeout(d.rotation);this.element.unbind("tabsshow",e);this.anchors.unbind(i.event+".tabs",g);delete this._rotate;delete this._unrotate}}})})(jQuery);;;
/*!
 * jQuery Cycle Lite Plugin
 * http://malsup.com/jquery/cycle/lite/
 * Copyright (c) 2008 M. Alsup
 * Version: 1.0 (06/08/2008)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.3 or later
 */
(function(D){var A="Lite-1.0";D.fn.cycle=function(E){return this.each(function(){E=E||{};if(this.cycleTimeout){clearTimeout(this.cycleTimeout)}this.cycleTimeout=0;this.cyclePause=0;var I=D(this);var J=E.slideExpr?D(E.slideExpr,this):I.children();var G=J.get();if(G.length<2){if(window.console&&window.console.log){window.console.log("terminating; too few slides: "+G.length)}return }var H=D.extend({},D.fn.cycle.defaults,E||{},D.metadata?I.metadata():D.meta?I.data():{});H.before=H.before?[H.before]:[];H.after=H.after?[H.after]:[];H.after.unshift(function(){H.busy=0});var F=this.className;H.width=parseInt((F.match(/w:(\d+)/)||[])[1])||H.width;H.height=parseInt((F.match(/h:(\d+)/)||[])[1])||H.height;H.timeout=parseInt((F.match(/t:(\d+)/)||[])[1])||H.timeout;if(I.css("position")=="static"){I.css("position","relative")}if(H.width){I.width(H.width)}if(H.height&&H.height!="auto"){I.height(H.height)}var K=0;J.css({position:"absolute",top:0,left:0}).hide().each(function(M){D(this).css("z-index",G.length-M)});D(G[K]).css("opacity",1).show();if(D.browser.msie){G[K].style.removeAttribute("filter")}if(H.fit&&H.width){J.width(H.width)}if(H.fit&&H.height&&H.height!="auto"){J.height(H.height)}if(H.pause){I.hover(function(){this.cyclePause=1},function(){this.cyclePause=0})}D.fn.cycle.transitions.fade(I,J,H);J.each(function(){var M=D(this);this.cycleH=(H.fit&&H.height)?H.height:M.height();this.cycleW=(H.fit&&H.width)?H.width:M.width()});J.not(":eq("+K+")").css({opacity:0});if(H.cssFirst){D(J[K]).css(H.cssFirst)}if(H.timeout){if(H.speed.constructor==String){H.speed={slow:600,fast:200}[H.speed]||400}if(!H.sync){H.speed=H.speed/2}while((H.timeout-H.speed)<250){H.timeout+=H.speed}}H.speedIn=H.speed;H.speedOut=H.speed;H.slideCount=G.length;H.currSlide=K;H.nextSlide=1;var L=J[K];if(H.before.length){H.before[0].apply(L,[L,L,H,true])}if(H.after.length>1){H.after[1].apply(L,[L,L,H,true])}if(H.click&&!H.next){H.next=H.click}if(H.next){D(H.next).bind("click",function(){return C(G,H,H.rev?-1:1)})}if(H.prev){D(H.prev).bind("click",function(){return C(G,H,H.rev?1:-1)})}if(H.timeout){this.cycleTimeout=setTimeout(function(){B(G,H,0,!H.rev)},H.timeout+(H.delay||0))}})};function B(J,E,I,K){if(E.busy){return }var H=J[0].parentNode,M=J[E.currSlide],L=J[E.nextSlide];if(H.cycleTimeout===0&&!I){return }if(I||!H.cyclePause){if(E.before.length){D.each(E.before,function(N,O){O.apply(L,[M,L,E,K])})}var F=function(){if(D.browser.msie){this.style.removeAttribute("filter")}D.each(E.after,function(N,O){O.apply(L,[M,L,E,K])})};if(E.nextSlide!=E.currSlide){E.busy=1;D.fn.cycle.custom(M,L,E,F)}var G=(E.nextSlide+1)==J.length;E.nextSlide=G?0:E.nextSlide+1;E.currSlide=G?J.length-1:E.nextSlide-1}if(E.timeout){H.cycleTimeout=setTimeout(function(){B(J,E,0,!E.rev)},E.timeout)}}function C(E,F,I){var H=E[0].parentNode,G=H.cycleTimeout;if(G){clearTimeout(G);H.cycleTimeout=0}F.nextSlide=F.currSlide+I;if(F.nextSlide<0){F.nextSlide=E.length-1}else{if(F.nextSlide>=E.length){F.nextSlide=0}}B(E,F,1,I>=0);return false}D.fn.cycle.custom=function(K,H,I,E){var J=D(K),G=D(H);G.css({opacity:0});var F=function(){G.animate({opacity:1},I.speedIn,I.easeIn,E)};J.animate({opacity:0},I.speedOut,I.easeOut,function(){J.css({display:"none"});if(!I.sync){F()}});if(I.sync){F()}};D.fn.cycle.transitions={fade:function(F,G,E){G.not(":eq(0)").css("opacity",0);E.before.push(function(){D(this).show()})}};D.fn.cycle.ver=function(){return A};D.fn.cycle.defaults={timeout:4000,speed:1000,next:null,prev:null,before:null,after:null,height:"auto",sync:1,fit:0,pause:0,delay:0,slideExpr:null}})(jQuery);
/**
* hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne <brian@cherne.net>
*/
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}if(p==this){return false;}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);;
/*	SWFObject v2.2 <http://code.google.com/p/swfobject/> 
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/
var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return !a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();;


 $(document).ready(function(){
           
		var config = {    
		     over: function(){  $('#home-landing a.' + $(this).attr('class') + ' img').fadeIn(); }  ,  
		     timeout: 500, // number = milliseconds delay before onMouseOut    
		     out:  function(){  $('#home-landing a.' + $(this).attr('class') + ' img').fadeOut(); }		    	 		         
		};
		
		$("#home-landing a").hoverIntent( config )

		
}); 
 

;
var containerHeight = 245;
var animationSpeed = 1000;
var slideDelay = 50;
var minItemsToScroll = 3;

var selector;
var pause = false;
var currentOffset = 0;
var firstElementHeight = 0;
var viewContent;

function verticalCarousel(selector){
	if (pause == false) slideUp(selector);		
}

function goVerticalCarousel(selectors){
	selectors = selectors.split(",");	
	for (var i in selectors) {		
		selector = selectors[i];
		$(selector).hover(function(){
			pause = true;
		},function(){
			pause = false;
		});		
		viewContent = $(selector + " .view-content");
		var itemCount = $(selector + " .view-content .views-row").size();
		if (itemCount > minItemsToScroll) {
			$(selector).height(containerHeight);			
			$(selector).css('overflow','hidden');
			$(selector).css('position','relative');	
			$(selector + " .view-content").css('position','absolute');
			//setInterval("verticalCarousel('"+selector+"')",slideDelay);
			setInterval("verticalCarousel('"+selector+"')",slideDelay);
		} else {
			$(selector).css('height','auto');
			$(selector).css('overflow','visible');						
		}
	}
}

//Grabs the first element and makes it the last
function wrapFirstToLast(selector){
	var topElement = $(selector + " .view-content .views-row:first");
	topElement.remove();
	viewContent.append(topElement);
}

function slideUp(selector){
	firstElement = viewContent.find(':nth-child(1)');
	firstElementHeight = firstElement.height();
	if (currentOffset > -(firstElementHeight+9)) {
		currentOffset = currentOffset - 1;
	} else {
		wrapFirstToLast(selector);
		currentOffset = 0;
	}
	
	viewContent.css('top',currentOffset);
	
	/*$(selector + " .view-content").animate({
			top: '-' + (firstElementHeight)
	},animationSpeed, function(){		
		wrapFirstToLast(selector);	
		$(selector + " .view-content").css('top','0');
		Cufon.now();
	});*/
}

$(document).ready(function(){
	goVerticalCarousel(".view-id-whatson_home");
});

