/*
 * 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")}})})();;

/* ***********************************************************************  */

/* general.js  */

function SimpleSwap(el,which){
        el.src=el.getAttribute(which||"origsrc");
}

function SimpleSwapSetup(){
  var x = document.getElementsByTagName("img");
  for (var i=0;i<x.length;i++){
    var oversrc = x[i].getAttribute("oversrc");
    if (!oversrc) continue;
    // preload image
    // comment the next two lines to disable image pre-loading
    x[i].oversrc_img = new Image();
    x[i].oversrc_img.src=oversrc;
    // set event handlers
    x[i].onmouseover = new Function("SimpleSwap(this,'oversrc');");
    x[i].onmouseout = new Function("SimpleSwap(this);");
    // save original src
    x[i].setAttribute("origsrc",x[i].src);
  }
}

var PreSimpleSwapOnload =(window.onload)? window.onload : function(){};
window.onload = function(){PreSimpleSwapOnload(); SimpleSwapSetup();}
;

/* ***********************************************************************  */

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * (URW)++,Copyright 2006 by (URW)++ Design & Development
 * 
 * Trademark:
 * Please refer to the Copyright section for the font trademark attribution
 * notices.
 * 
 * Full name:
 * EngschriftDIND
 * 
 * Vendor URL:
 * www.urwpp.de
 */
Cufon.registerFont({"w":735,"face":{"font-family":"Engschrift DIN D","font-weight":400,"font-stretch":"normal","units-per-em":"2048","panose-1":"0 0 5 0 0 0 0 0 0 0","ascent":"1638","descent":"-410","x-height":"12","bbox":"-100 -1765 1520 403","underline-thickness":"86.016","underline-position":"-110.592","stemh":"195","stemv":"197","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":409},"!":{"d":"309,-1366r-73,1024r-95,0r-73,-1024r241,0xm285,-195r0,195r-195,0r0,-195r195,0","w":378},"\"":{"d":"41,-1366r195,0r-41,547r-113,0xm330,-1366r194,0r-41,547r-112,0","w":565},"#":{"d":"514,-565r-106,317r-142,0r107,-317r-305,0r36,-109r306,0r53,-157r-305,0r37,-113r305,0r96,-285r141,0r-96,285r150,0r96,-285r141,0r-96,285r256,0r-39,113r-254,0r-53,157r254,0r-37,109r-254,0r-107,317r-143,0r109,-317r-150,0xm551,-674r149,0r52,-157r-148,0","w":1255},"$":{"d":"367,-182v86,-5,144,-47,141,-160v-6,-185,25,-207,-189,-285v-120,-43,-177,-86,-225,-157v-46,-68,-49,-141,-49,-252v0,-150,78,-263,217,-322r0,-131r195,0r0,121v172,55,259,186,245,393r-194,0v11,-120,-30,-209,-135,-209v-102,0,-131,89,-131,209v0,98,19,117,166,172v211,78,294,178,294,352r0,111v8,182,-97,299,-245,342r0,129r-195,0r0,-135v-63,-23,-90,-39,-127,-76v-83,-81,-110,-167,-104,-309r196,0v-9,124,32,213,140,207"},"%":{"d":"68,-1122r0,-103v0,-86,65,-153,147,-153v82,0,147,67,147,153r0,103v0,90,-55,145,-145,145v-88,0,-149,-61,-149,-145xm215,-1280v-64,0,-49,84,-49,145v0,41,14,60,49,60v68,0,49,-90,49,-152v0,-33,-18,-53,-49,-53xm653,-1366r-456,1366r-129,0r462,-1366r123,0xm655,-133v6,99,-68,145,-147,145v-84,0,-148,-61,-148,-145r0,-92v0,-86,66,-154,148,-154v82,0,147,68,147,154r0,92xm508,-281v-64,0,-49,86,-49,148v0,41,14,59,49,59v66,0,49,-90,49,-151v0,-35,-18,-56,-49,-56","w":722},"&":{"d":"588,-29v-221,137,-506,-32,-506,-295v0,-134,22,-214,108,-290v-43,-56,-90,-125,-90,-217v0,-160,129,-289,291,-289v158,0,289,128,289,280v0,127,-92,231,-221,281r139,201r0,-93r195,0v2,128,0,209,-58,299r107,152r-234,0xm281,-367v0,153,72,239,202,187r-184,-271v-14,27,-18,43,-18,84xm358,-707v56,-25,131,-57,131,-129v0,-63,-41,-108,-98,-108v-85,0,-132,105,-76,174","w":882},"\u2019":{"d":"236,-1366r0,195r-195,145r0,-340r195,0","w":276,"k":{"\u00c5":63,"\u00c4":63,"\u00c1":63,"\u00c6":160,"y":-33,"w":-33,"v":-33,"t":-27,"s":16,"r":4,"o":23,"d":12,"A":63,".":47,",":47}},"(":{"d":"326,-1464r65,0v-123,476,-114,1092,17,1560r-68,0v-150,-223,-231,-507,-231,-794v0,-270,76,-533,217,-766","w":475},")":{"d":"82,-1464r68,0v296,468,284,1112,-15,1560r-67,0v131,-464,138,-1089,14,-1560","w":475},"*":{"d":"332,-1366r0,160r151,-45r31,88r-141,51r86,123r-86,57r-82,-133r-86,133r-84,-57r84,-123r-150,-51r31,-88r152,45r0,-160r94,0","w":567},"+":{"d":"625,-635r0,195r-195,0r0,194r-194,0r0,-194r-195,0r0,-195r195,0r0,-194r194,0r0,194r195,0","w":665},",":{"d":"236,-195r0,195r-195,145r0,-340r195,0","w":276,"k":{"\u201d":41,"\u2019":35}},"-":{"d":"598,-635r0,195r-584,0r0,-195r584,0","w":612,"k":{"\u00c5":-20,"\u00c4":-20,"\u00c1":-20,"\u00c6":10,"Y":43,"W":-16,"V":4,"T":33,"A":-20}},".":{"d":"236,-195r0,195r-195,0r0,-195r195,0","w":276,"k":{"\u201d":41,"\u2019":35}},"\/":{"d":"414,-1366r-264,1366r-136,0r265,-1366r135,0","w":425},"0":{"d":"659,-301v12,189,-134,313,-288,313v-164,0,-295,-139,-295,-313r0,-772v-11,-176,129,-305,293,-305v155,0,290,111,290,305r0,772xm369,-184v57,0,96,-42,96,-117r0,-772v0,-70,-37,-113,-98,-113v-57,0,-97,45,-97,113r0,772v0,74,36,117,99,117"},"1":{"d":"514,-1366r0,1366r-195,0r0,-1161r-194,145r0,-207r194,-143r195,0"},"2":{"d":"74,-1073v2,-191,135,-305,295,-305v162,0,290,129,290,291v0,122,1,198,-47,292r-307,600r354,0r0,195r-581,0r0,-180r362,-705v33,-56,23,-122,23,-202v0,-55,-43,-99,-96,-99v-33,0,-66,18,-82,45v-27,28,-11,111,-15,166r-196,0r0,-98"},"3":{"d":"360,-1186v-56,0,-100,34,-100,111r0,100r-194,0r0,-100v0,-174,122,-303,292,-303v170,0,291,127,291,303r0,160v0,98,-30,151,-114,202v92,63,114,104,114,215v0,131,13,282,-39,361v-58,87,-150,149,-250,149v-164,0,-306,-126,-294,-325r0,-80r194,0r0,63v-4,107,25,144,102,144v61,0,95,-45,95,-127r0,-213v0,-35,-8,-58,-33,-76v-24,-30,-69,-24,-127,-25r0,-170v106,6,160,-15,160,-114r0,-164v0,-70,-38,-111,-97,-111"},"4":{"d":"612,-209r0,209r-194,0r0,-209r-391,0r0,-182r282,-975r207,0r-293,975r195,0r0,-389r194,0r0,389r95,0r0,182r-95,0"},"5":{"d":"465,-588v21,-135,-161,-162,-193,-49r-172,0r0,-729r559,0r0,180r-387,0r0,367v160,-141,387,-23,387,203r0,309v0,104,-13,147,-59,205v-56,71,-145,114,-231,114v-159,0,-304,-125,-293,-319r0,-35r196,0r0,35v-5,85,36,115,97,123v68,-10,96,-37,96,-138r0,-266"},"6":{"d":"367,12v-157,0,-293,-122,-293,-315r0,-215v0,-74,-1,-74,30,-156r256,-692r222,0r-222,573v35,-12,53,-16,80,-16v123,0,219,85,219,244r0,262v13,189,-129,315,-292,315xm371,-186v60,0,94,-35,94,-117r0,-215v0,-76,-37,-119,-98,-119v-58,0,-97,42,-97,119r0,215v0,74,38,117,101,117"},"7":{"d":"471,-1184r-217,0r0,160r-172,0r0,-342r584,0r0,178r-320,1188r-207,0"},"8":{"d":"371,12v-159,0,-295,-121,-295,-317r0,-238v0,-72,32,-131,98,-180v-74,-55,-98,-105,-98,-201r0,-186v0,-139,139,-268,291,-268v162,0,292,131,292,293r0,174v0,82,-30,141,-98,188v70,49,98,105,98,193r0,247v0,164,-128,295,-288,295xm463,-911r0,-174v0,-59,-41,-101,-96,-101v-57,0,-99,44,-99,101r0,174v0,74,38,116,99,116v63,0,96,-40,96,-116xm367,-184v60,0,96,-35,96,-121r0,-238v0,-66,-35,-104,-96,-104v-57,0,-99,43,-99,104r0,238v0,80,33,121,99,121"},"9":{"d":"145,0r230,-575v-112,32,-191,1,-252,-70v-41,-48,-47,-80,-47,-176v0,-172,-27,-327,57,-439v56,-74,140,-118,234,-118v166,0,292,133,292,305v0,149,14,260,-32,383r-258,690r-224,0xm371,-733v57,0,94,-38,94,-117r0,-223v0,-70,-37,-113,-98,-113v-57,0,-97,45,-97,113r0,223v0,72,40,117,101,117"},":":{"d":"236,-805r0,195r-195,0r0,-195r195,0xm236,-371r0,195r-195,0r0,-195r195,0","w":276},";":{"d":"238,-195r0,195r-195,145r0,-340r195,0xm236,-537r0,195r-195,0r0,-195r195,0","w":276},"<":{"d":"954,-1147r0,125r-751,338r751,338r0,123r-886,-408r0,-108","w":1024},"=":{"d":"651,-803r0,195r-583,0r0,-195r583,0xm651,-496r0,195r-583,0r0,-195r583,0","w":720},">":{"d":"70,-223r0,-125r751,-338r-751,-338r0,-123r886,408r0,108","w":1024},"?":{"d":"217,-342v-1,-152,1,-251,62,-350r102,-166v45,-62,33,-138,33,-234v0,-53,-42,-92,-97,-92v-63,0,-96,39,-96,117r0,92r-194,0r0,-92v0,-178,127,-311,297,-311v154,0,284,130,284,286v1,122,0,217,-47,301r-100,177v-45,74,-47,81,-47,163r0,109r-197,0xm414,-195r0,195r-197,0r0,-195r197,0","w":649},"@":{"d":"1343,-340v-81,206,-339,355,-589,356v-375,0,-672,-298,-672,-673v0,-385,301,-689,684,-689v342,0,606,245,606,560v0,156,-57,284,-174,380v-80,68,-172,107,-250,107v-74,0,-112,-33,-137,-119v-74,82,-139,115,-223,115v-121,0,-205,-99,-205,-240v0,-246,188,-485,383,-485v88,0,149,45,186,135r37,-104r109,0r-178,454v-30,68,-30,154,53,154v55,0,121,-35,176,-90v82,-82,121,-180,121,-299v0,-266,-215,-469,-498,-469v-324,0,-575,258,-575,592v0,324,246,575,561,575v199,0,395,-108,483,-266xm827,-590v22,-64,66,-164,66,-231v0,-68,-53,-121,-119,-121v-139,0,-285,211,-285,414v0,86,45,139,117,139v98,0,177,-72,221,-201","w":1454},"A":{"d":"262,-293r-55,293r-207,0r305,-1366r170,0r305,1366r-209,0r-55,-293r-254,0xm481,-475r-92,-498r-92,498r184,0","w":780,"k":{"\u00fd":31,"\u00e7":-10,"\u00dd":57,"\u00d9":-8,"\u00dc":-8,"\u00db":-8,"\u00da":-8,"\u00d6":-8,"\u00c7":-8,"\u201d":57,"\u00ab":-8,"y":31,"w":23,"v":23,"u":-18,"q":-18,"o":-10,"g":-18,"e":-10,"d":-18,"c":-10,"b":-31,"a":-23,"Y":57,"W":23,"V":51,"U":-8,"T":37,"Q":-8,"O":-8,"J":-63,"G":-8,"C":-8,".":-53,"-":-20,",":-53,"\u2019":57}},"B":{"d":"428,-1366v160,4,311,139,311,319v0,165,-16,266,-137,328v96,57,137,126,137,230r0,157v0,193,-136,332,-329,332r-301,0r0,-1366r319,0xm301,-805r117,0v88,0,139,-58,139,-156r0,-86v0,-82,-59,-137,-145,-137r-111,0r0,379xm301,-195r113,0v84,0,143,-57,143,-137r0,-157v0,-88,-55,-144,-147,-144r-109,0r0,438","w":794,"k":{"\u00d2":-8,"\u00d6":-8,"\u00d4":-8,"\u00d3":-8,"\u00c3":-16,"\u00c5":-16,"\u00c4":-16,"\u00c2":-16,"\u00c1":-16,"\u00d8":-8,"\u00c6":2,"Y":-6,"W":-27,"V":-20,"O":-8,"J":-16,"A":-16}},"C":{"d":"76,-1047v-10,-185,141,-331,317,-331v178,0,316,143,316,331r0,72r-195,0r0,-72v0,-84,-45,-135,-121,-135v-74,0,-121,53,-121,135r0,705v0,82,3,91,33,123v56,59,155,41,195,-23v17,-13,14,-92,14,-147r195,0v2,107,-6,187,-43,246v-58,92,-164,155,-273,155v-173,0,-317,-132,-317,-354r0,-705","k":{"\u00d6":-23,"\u00d3":-23,"\u00c5":-33,"\u00c4":-33,"\u00c1":-33,"\u00c6":-16,"y":-49,"Z":-39,"O":-23,"K":-6,"J":-37,"H":-6,"A":-33,";":-127,":":-106,".":-35,",":-31}},"D":{"d":"109,0r0,-1366r309,0v182,0,321,137,321,315r0,713v0,203,-130,338,-327,338r-303,0xm303,-182r96,0v98,0,146,-50,146,-156r0,-713v0,-76,-62,-133,-142,-133r-100,0r0,1002","w":815,"k":{"\u00c3":-6,"\u00c5":-6,"\u00c0":-6,"\u00c4":-6,"\u00c2":-6,"\u00c1":-6,"Y":4,"X":10,"W":-16,"V":-10,"T":-29,"J":-8,"A":-6}},"E":{"d":"305,-598r0,401r387,0r0,197r-583,0r0,-1366r583,0r0,180r-387,0r0,404r340,0r0,184r-340,0","w":720,"k":{"\u00d6":-14,"\u00d3":-14,"v":-10,"O":-14,"C":-16}},"F":{"d":"303,-590r0,590r-194,0r0,-1366r581,0r0,182r-387,0r0,412r340,0r0,182r-340,0","w":704,"k":{"\u00fa":-4,"\u00f6":-12,"\u00f3":-4,"\u00e9":-4,"\u00e5":-8,"\u00e4":-10,"\u00e1":-8,"\u00d6":-16,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"\u00f8":6,"\u00e6":-4,"u":-4,"r":-2,"o":-4,"j":-14,"i":-25,"e":-4,"a":-8,"O":-16,"J":125,"A":20,".":111,"-":-37,",":111}},"G":{"d":"406,-184v78,0,133,-55,133,-164r0,-240r-158,0r0,-170r352,0r0,410v0,102,-10,144,-47,205v-61,98,-163,155,-276,155v-181,0,-334,-129,-334,-360r0,-684v0,-201,137,-346,327,-346v117,0,211,53,277,147v50,72,54,141,53,256r-194,0v-1,-51,4,-119,-15,-141v-23,-41,-69,-70,-118,-70v-82,0,-134,60,-134,154r0,684v0,63,1,67,13,90v23,43,70,74,121,74","w":800,"k":{"\u00c3":-12,"\u00c5":-12,"\u00c0":-12,"\u00c4":-12,"\u00c2":-12,"\u00c1":-12,"\u00c6":4,"W":-20,"V":-14,"T":-33,"A":-12,";":-125,":":-127,".":-14,",":-10}},"H":{"d":"303,-610r0,610r-194,0r0,-1366r194,0r0,584r246,0r0,-584r194,0r0,1366r-194,0r0,-610r-246,0","w":851},"I":{"d":"303,-1366r0,1366r-194,0r0,-1366r194,0","w":413},"J":{"d":"588,-1366r0,1010v0,109,-10,153,-53,219v-61,92,-167,149,-273,149v-98,0,-194,-47,-262,-127r152,-121v53,59,140,68,198,15v37,-35,43,-56,43,-162r0,-983r195,0","w":663,"k":{"\u00c5":-8,"\u00c4":-8,"\u00c6":10,"A":-8}},"K":{"d":"526,-821r314,821r-207,0r-219,-610r-109,202r0,408r-196,0r0,-1366r196,0r0,629r295,-629r193,0","w":839,"k":{"\u00fc":-10,"\u00e5":-14,"\u00e4":-14,"\u00d6":6,"\u00d3":6,"\u00e6":-10,"y":45,"u":-10,"a":-14,"T":-55,"S":-2,"O":6,"G":4,"C":4,"-":4}},"L":{"d":"303,-197r389,0r0,197r-583,0r0,-1366r194,0r0,1169","w":694,"k":{"\u00fd":35,"\u00fc":-35,"\u00dd":57,"\u00dc":-29,"\u00d5":-29,"\u00d2":-29,"\u00d6":-29,"\u00d4":-29,"\u00d3":-29,"\u00c7":-29,"\u00c5":-74,"\u00c4":-74,"\u00c1":-74,"\u00c6":-74,"\u201d":131,"y":37,"u":-35,"j":-20,"Y":57,"W":10,"V":43,"U":-29,"T":37,"S":-37,"O":-29,"G":-29,"C":-29,"A":-74,"-":90,"\u2019":121}},"M":{"d":"985,-1366r0,1366r-192,0r0,-831r-197,583r-98,0r-195,-583r0,831r-194,0r0,-1366r180,0r260,727r256,-727r180,0","w":1095,"k":{"j":18}},"N":{"d":"791,-1366r0,1366r-183,0r-303,-829r0,829r-196,0r0,-1366r184,0r303,827r0,-827r195,0","w":901,"k":{"\u00fc":6,"\u00f6":12,"\u00f3":12,"\u00e9":12,"\u00e5":14,"\u00e4":14,"\u00e1":14,"\u00d6":10,"\u00d3":10,"\u00c7":10,"\u00c5":-18,"\u00c4":-18,"\u00c1":-18,"\u00f8":25,"\u00e6":18,"\u00c6":-18,"u":6,"o":12,"j":18,"e":12,"a":14,"O":10,"G":10,"C":10,"A":-18,".":-4,",":-4}},"O":{"d":"406,12v-177,0,-330,-130,-330,-350r0,-696v0,-199,140,-344,330,-344v177,0,327,140,327,344r0,696v11,200,-141,350,-327,350xm406,-184v71,0,133,-52,133,-154r0,-696v7,-97,-62,-152,-131,-152v-74,0,-138,55,-138,152r0,696v-8,96,57,154,136,154","w":808,"k":{"\u00c5":-8,"\u00c4":-8,"\u00c1":-8,"\u00c6":10,"Z":-12,"Y":4,"X":8,"W":-16,"V":-10,"T":-29,"J":-10,"A":-8,";":-121,":":-123,".":-8,",":-4}},"P":{"d":"305,-539r0,539r-196,0r0,-1366r321,0v80,0,164,35,219,92v51,51,92,140,92,199r0,198v0,109,-29,179,-90,244v-84,89,-187,98,-346,94xm305,-723v86,-2,179,11,217,-39v62,-48,37,-189,37,-293v0,-78,-55,-131,-137,-131r-117,0r0,463","w":755,"k":{"\u00f6":-20,"\u00f3":-20,"\u00e9":-20,"\u00e5":-25,"\u00e4":-25,"\u00e1":-25,"\u00c5":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"\u00f8":-6,"\u00e6":-20,"\u00c6":88,"o":-20,"e":-20,"a":-25,"Y":-27,"J":129,"A":20,".":137,"-":-39,",":137}},"Q":{"d":"735,35r-121,-96v-137,114,-348,87,-460,-43v-61,-70,-78,-123,-78,-244r0,-680v0,-201,142,-350,332,-350v178,0,327,147,327,323r0,707v0,82,-4,108,-20,145r129,109xm406,-1184v-79,0,-134,61,-134,156r0,680v0,74,6,94,39,125v38,37,93,56,146,28r-88,-73r108,-131r62,51r0,-680v0,-94,-53,-156,-133,-156","w":829},"R":{"d":"305,-586r0,586r-196,0r0,-1366r342,0v180,0,317,140,317,322v0,208,-10,330,-160,417r209,627r-209,0r-182,-586r-121,0xm305,-758v98,-4,206,18,248,-45v49,-41,33,-152,33,-241v0,-84,-58,-142,-144,-142r-137,0r0,428","w":829,"k":{"\u00fd":-43,"\u00fc":-8,"\u00fa":-8,"\u00f6":4,"\u00f3":4,"\u00e9":2,"\u00e5":-12,"\u00e4":-12,"\u00e1":-12,"\u00dd":-2,"\u00dc":-6,"\u00d6":-6,"\u00d3":-6,"\u00c7":-6,"\u00e6":-8,"y":-43,"u":-8,"o":4,"e":2,"a":-12,"Y":-2,"W":-25,"V":-18,"U":-6,"T":-35,"O":-6,"J":-53,"G":-6,"C":-6,"-":-4}},"S":{"d":"393,-182v83,0,143,-46,139,-160v-6,-183,23,-210,-186,-285v-124,-44,-179,-86,-227,-157v-46,-68,-49,-141,-49,-252v0,-193,145,-342,329,-342v203,0,349,167,328,403r-195,0v11,-120,-31,-209,-133,-209v-102,0,-133,89,-133,209v0,96,21,117,166,172v211,78,295,178,295,352r0,111v0,106,-14,153,-65,221v-66,86,-158,131,-267,131v-217,0,-356,-160,-340,-401r197,0r0,49v-5,108,57,158,141,158","w":780,"k":{"\u00e9":-8,"\u00c5":-20,"\u00c4":-20,"\u00c1":-20,"\u00c6":-2,"v":-37,"t":-39,"Y":-6,"W":-27,"V":-20,"T":-37,"J":-20,"A":-20}},"T":{"d":"420,-1184r0,1184r-197,0r0,-1184r-229,0r0,-182r657,0r0,182r-231,0","w":643,"k":{"\u00fd":14,"\u00fa":51,"\u00f4":-23,"\u00f3":70,"\u00ed":-14,"\u00e9":70,"\u00e7":70,"\u00e1":70,"\u00d5":-29,"\u00d2":-29,"\u00d6":-29,"\u00d4":-29,"\u00d3":-29,"\u00c3":37,"\u00c5":37,"\u00c0":37,"\u00c4":37,"\u00c2":37,"\u00c1":37,"\u00f8":78,"\u00e6":74,"\u00d8":-29,"\u00c6":37,"\u00ab":41,"y":37,"w":37,"v":37,"u":63,"s":63,"r":59,"o":70,"j":-27,"i":-37,"g":63,"e":70,"c":70,"a":70,"Y":-76,"W":-78,"V":-78,"S":-31,"O":-29,"J":37,"G":-29,"C":-31,"A":37,";":-55,":":-47,".":45,"-":33,",":53}},"U":{"d":"270,-322v-5,85,50,138,123,138v76,0,123,-56,123,-138r0,-1044r195,0r0,1044v6,203,-150,334,-318,334v-171,0,-317,-131,-317,-334r0,-1044r194,0r0,1044","w":784,"k":{"\u00c3":-10,"\u00c5":-10,"\u00c4":-10,"\u00c2":-10,"\u00c1":-10,"\u00c6":8,"r":-6,"p":-6,"n":-6,"m":-6,"j":4,"A":-10,".":-10,",":-6}},"V":{"d":"731,-1366r-285,1366r-167,0r-279,-1366r205,0r157,948r162,-948r207,0","w":731,"k":{"\u00fd":-33,"\u00fc":-14,"\u00fa":2,"\u00f6":-14,"\u00f4":-8,"\u00f3":27,"\u00e9":29,"\u00e4":-12,"\u00e1":23,"\u00d5":-8,"\u00d2":-8,"\u00d6":-8,"\u00d4":-8,"\u00d3":-8,"\u00c3":51,"\u00c5":51,"\u00c0":51,"\u00c4":51,"\u00c2":51,"\u00c1":51,"\u00f8":41,"\u00e6":27,"\u00d8":-8,"\u00c6":66,"\u00ab":10,"y":-31,"u":4,"r":4,"o":27,"i":-31,"g":18,"e":29,"c":29,"a":23,"T":-76,"S":-10,"O":-8,"J":53,"G":-8,"C":-10,"A":51,";":-63,":":-70,".":57,"-":6,",":57}},"W":{"d":"1073,-1366r-192,1366r-185,0r-159,-831r-158,831r-180,0r-199,-1366r209,0r96,825r158,-825r145,0r160,825r98,-825r207,0","w":1073,"k":{"\u00fd":-45,"\u00fc":-14,"\u00fa":-8,"\u00f6":-14,"\u00f4":-14,"\u00f3":6,"\u00ed":-6,"\u00e9":8,"\u00e4":-12,"\u00e1":2,"\u00d5":-16,"\u00d2":-16,"\u00d6":-16,"\u00d4":-16,"\u00d3":-16,"\u00c3":20,"\u00c5":20,"\u00c0":20,"\u00c4":20,"\u00c2":20,"\u00c1":20,"\u00f8":20,"\u00e6":6,"\u00d8":-16,"\u00c6":20,"\u00ab":-14,"y":-45,"u":-8,"r":-6,"o":6,"i":-31,"e":8,"c":8,"a":2,"Y":-72,"T":-76,"S":-18,"O":-16,"G":-16,"C":-18,"A":20,";":-94,":":-98,".":18,"-":-20,",":18}},"X":{"d":"475,-723r281,723r-207,0r-170,-463r-172,463r-207,0r281,-723r-254,-643r204,0r148,401r147,-401r205,0","w":755,"k":{"\u00d6":6,"y":16,"u":-10,"o":2,"a":-14,"Q":4,"O":6,"C":4,"-":4}},"Y":{"d":"461,-588r0,588r-197,0r0,-588r-264,-778r205,0r160,535r159,-535r207,0","w":729,"k":{"\u00fa":27,"\u00f3":66,"\u00ed":12,"\u00e9":66,"\u00e1":61,"\u00d5":4,"\u00d2":4,"\u00d6":4,"\u00d4":4,"\u00d3":4,"\u00c3":59,"\u00c5":59,"\u00c0":59,"\u00c4":59,"\u00c2":59,"\u00c1":59,"\u00f8":82,"\u00e6":66,"\u00d8":4,"\u00c6":59,"\u00ab":61,"v":-4,"u":31,"q":53,"p":31,"o":66,"i":-33,"g":49,"e":66,"a":61,"W":-74,"T":-78,"S":2,"O":4,"J":59,"G":4,"A":59,";":-37,":":-37,".":70,"-":49,",":70}},"Z":{"d":"612,-197r0,197r-585,0r0,-176r366,-1008r-340,0r0,-182r559,0r0,156r-366,1013r366,0","w":641,"k":{"\u00d3":-14,"y":-14,"v":-14,"O":-14,";":-90,":":-49,".":-39,",":-39}},"[":{"d":"303,133r223,0r0,174r-417,0r0,-1714r417,0r0,174r-223,0r0,1366","w":540},"\\":{"d":"0,-1366r123,0r551,1642r-127,0","w":673},"]":{"d":"238,133r0,-1366r-224,0r0,-174r418,0r0,1714r-418,0r0,-174r224,0","w":540},"^":{"d":"512,-1192r-260,414r-180,0r368,-590r144,0r366,590r-178,0","w":1024},"_":{"d":"0,154r1024,0r0,86r-1024,0r0,-86","w":1024},"\u2018":{"d":"41,-1026r0,-195r195,-145r0,340r-195,0","w":276,"k":{"\u00c5":57,"\u00c4":57,"\u00c1":57,"\u00c6":145,"Y":-51,"W":-53,"V":-53,"T":-57,"A":57}},"a":{"d":"457,-672v6,-89,-39,-125,-97,-125v-49,0,-90,40,-96,97r-196,0v4,-162,130,-287,294,-287v158,0,291,131,291,287r0,700r-196,0r0,-98v-103,191,-410,119,-389,-125r0,-111v4,-148,108,-265,278,-254r111,0r0,-84xm457,-428r-74,0v-101,0,-119,45,-119,139v0,107,138,140,180,58v20,-13,11,-141,13,-197","w":729,"k":{"y":-4,"w":-8,"v":-6,"j":4,"\u2019":8}},"b":{"d":"279,-1366r0,487v45,-74,104,-108,184,-108v125,0,205,88,205,225r0,535v0,86,-6,112,-37,153v-39,53,-104,86,-170,86v-76,0,-137,-36,-182,-110r0,98r-197,0r0,-1366r197,0xm279,-301v-16,124,126,149,180,72v14,-20,14,-20,14,-90r0,-367v0,-66,-39,-109,-96,-109v-59,0,-98,43,-98,109r0,385","w":743,"k":{"y":-12,"w":-16,"v":-14,"j":4}},"c":{"d":"369,12v-156,0,-293,-123,-293,-313r0,-379v0,-170,131,-307,293,-307v158,0,294,118,290,307r-194,0v0,-68,-39,-115,-96,-115v-61,0,-99,45,-99,115r0,379v0,76,36,117,97,117v59,0,98,-43,98,-109r194,0v2,172,-126,305,-290,305","w":714,"k":{"\u00f3":-6,"k":-4,"j":4,"h":-4,"J":-27}},"d":{"d":"662,-1366r0,1366r-195,0r0,-100v-68,139,-256,146,-348,32v-37,-47,-43,-76,-43,-182r0,-526v0,-121,90,-211,209,-211v80,0,141,34,182,104r0,-483r195,0xm272,-313v-5,91,31,127,99,127v25,0,49,-9,65,-25v27,-25,31,-36,31,-102r0,-351v0,-57,-6,-72,-23,-96v-39,-55,-135,-44,-161,17v-8,19,-11,26,-11,79r0,351","w":741,"k":{"j":2}},"e":{"d":"371,12v-161,0,-295,-121,-295,-329r0,-371v0,-166,131,-299,295,-299v166,0,291,129,291,299r0,270r-390,0r0,101v0,72,1,76,27,102v56,58,166,25,168,-68r195,0v2,160,-131,295,-291,295xm371,-795v-60,0,-99,38,-99,121r0,96r195,0r0,-96v0,-76,-35,-121,-96,-121","w":729,"k":{"y":-6,"x":12,"w":-10,"v":-8,"t":-20,"j":10,"\u2019":4}},"f":{"d":"334,-819r0,819r-197,0r0,-819r-96,0r0,-156r96,0v-1,-142,-5,-248,76,-323v65,-61,143,-71,264,-68r0,180v-77,-2,-143,-7,-143,76r0,135r143,0r0,156r-143,0","w":505,"k":{"\u00fd":-57,"\u00f6":-10,"\u00f3":-10,"\u00ed":-16,"\u00e9":-10,"\u00e5":-14,"\u00e4":-14,"\u00e1":-14,"\u00f8":6,"\u00e6":-10,"t":-51,"s":-16,"o":-10,"l":-16,"j":-6,"i":-16,"f":-37,"e":-10,"a":-14,"\u2019":-39}},"g":{"d":"369,205v60,0,98,-37,98,-121r0,-184v-43,74,-106,112,-184,112v-74,0,-146,-43,-183,-106v-23,-41,-24,-53,-24,-137r0,-543v0,-123,88,-213,209,-213v74,0,135,34,182,104r0,-92r195,0r0,1059v0,121,-23,179,-93,242v-53,49,-124,77,-198,77v-164,0,-295,-131,-295,-297r196,0v6,61,42,99,97,99xm272,-305v-6,85,39,119,99,119v63,0,96,-41,96,-119r0,-371v0,-78,-35,-121,-96,-121v-62,0,-99,41,-99,121r0,371","w":741,"k":{"\u00f6":-2,"\u00f3":-2,"\u00e9":-2,"\u00e6":4,"r":-6,"l":-4,"e":-2}},"h":{"d":"276,-881v102,-186,390,-113,390,125r0,756r-195,0r0,-682v0,-72,-35,-113,-96,-113v-57,0,-99,47,-99,113r0,682r-194,0r0,-1366r194,0r0,485","w":741,"k":{"\u00fd":-14,"y":-12,"v":-14,"\u2019":-2}},"i":{"d":"276,-975r0,975r-194,0r0,-975r194,0xm276,-1366r0,190r-194,0r0,-190r194,0","w":358,"k":{"j":2,"T":-35}},"j":{"d":"297,-975r0,1071v-2,192,-115,304,-311,293r0,-186v82,5,116,-31,116,-123r0,-1055r195,0xm297,-1366r0,188r-195,0r0,-188r195,0","w":380},"k":{"d":"276,-270r0,270r-194,0r0,-1366r194,0r0,813r244,-422r197,0r-232,387r279,588r-219,0r-172,-416","w":763,"k":{"\u00fc":-12,"\u00f6":8,"\u00f3":8,"\u00e9":8,"\u00e5":-10,"\u00e4":-10,"\u00e1":-10,"\u00e6":-6,"u":-12,"o":8,"g":-2,"e":8,"c":8,"a":-10,".":-51,"-":18,",":-51}},"l":{"d":"276,-1366r0,1087v-2,83,22,95,97,93r0,186v-112,5,-191,-19,-244,-84v-37,-45,-47,-80,-47,-162r0,-1120r194,0","w":385,"k":{"y":-16,"v":-16,"j":-14}},"m":{"d":"276,-975r0,88v80,-133,281,-135,359,0v55,-70,112,-100,190,-100v135,0,232,101,232,244r0,743r-195,0r0,-690v0,-70,-33,-107,-94,-107v-57,0,-102,48,-102,107r0,690r-195,0r0,-690v0,-61,-41,-107,-96,-107v-55,0,-99,48,-99,107r0,690r-194,0r0,-975r194,0","w":1132,"k":{"y":-10,"w":-14,"v":-12,"p":-6}},"n":{"d":"276,-881v99,-183,390,-116,390,123r0,758r-195,0r0,-686v0,-68,-35,-107,-94,-107v-59,0,-101,44,-101,107r0,686r-194,0r0,-975r194,0r0,94","w":747,"k":{"y":-10,"w":-14,"v":-12,"p":-4,"j":2,"T":68}},"o":{"d":"76,-299r0,-389v0,-170,127,-299,297,-299v168,0,289,127,289,299r0,389v0,178,-125,311,-295,311v-168,0,-291,-131,-291,-311xm369,-186v59,0,98,-27,98,-113r0,-389v0,-66,-39,-109,-98,-109v-57,0,-99,46,-99,109r0,389v0,70,40,113,99,113","k":{"y":-4,"x":16,"w":-8,"v":-6,"t":-18,"j":8,"T":70,"\u2019":8}},"p":{"d":"668,-209v5,136,-95,221,-205,221v-78,0,-143,-38,-184,-108r0,485r-197,0r0,-1364r197,0r0,96v47,-74,106,-108,184,-108v117,0,205,92,205,217r0,561xm377,-182v62,0,96,-35,96,-121r0,-381v0,-66,-39,-109,-98,-109v-57,0,-96,43,-96,109r0,381v0,80,32,121,98,121","w":743,"k":{"\u00fd":-14,"y":-12,"t":-27,"j":4}},"q":{"d":"285,12v-115,0,-209,-81,-209,-227r0,-561v0,-119,92,-211,209,-211v76,0,135,36,180,108r0,-96r194,0r0,1364r-194,0r0,-485v-51,76,-106,108,-180,108xm270,-313v-4,97,28,131,97,131v35,0,68,-18,84,-47v12,-18,14,-31,14,-84r0,-371v0,-66,-37,-109,-96,-109v-59,0,-99,43,-99,109r0,371","w":741,"k":{"u":-8,"c":-2}},"r":{"d":"530,-786v-149,-37,-254,65,-254,215r0,571r-194,0r0,-975r194,0r0,105v66,-76,143,-113,254,-121r0,205","w":530,"k":{"\u00fd":-72,"\u00fa":-35,"\u00f2":-27,"\u00f6":-27,"\u00f4":-27,"\u00f3":-27,"\u00e8":-27,"\u00ea":-27,"\u00e9":-27,"\u00e7":-27,"\u00e5":-31,"\u00e0":-31,"\u00e4":-31,"\u00e2":-31,"\u00e1":-31,"\u00f8":-12,"\u00e6":-27,"z":-41,"y":-72,"x":-55,"w":-72,"v":-72,"u":-35,"t":-66,"s":-35,"r":-31,"q":-35,"p":-31,"o":-27,"n":-31,"m":-31,"l":-31,"k":-31,"j":-20,"i":-31,"h":-31,"g":-35,"f":-51,"e":-27,"d":-35,"c":-27,"b":-31,"a":-31,";":-45,":":-45,".":55,"-":41,",":55,"\u2019":-51}},"s":{"d":"55,-281r183,0v0,63,46,109,112,109v61,0,107,-48,107,-111v0,-59,-27,-84,-115,-116v-92,-33,-180,-70,-213,-117v-38,-53,-63,-114,-63,-182v0,-160,124,-289,280,-289v152,0,275,122,279,280r-181,0v-4,-59,-41,-96,-96,-96v-55,0,-98,46,-98,103v0,57,23,86,104,112v107,35,197,76,244,156v115,198,-33,451,-246,446v-152,-4,-302,-115,-297,-295","w":694,"k":{"\u00e9":-8,"t":-23,"p":-4,"k":-4,"\u2019":20}},"t":{"d":"305,-819r0,547v-9,93,42,87,123,86r0,186v-131,4,-218,-10,-274,-90v-31,-44,-43,-76,-43,-148r0,-581r-97,0r0,-156r97,0r0,-295r194,0r0,295r123,0r0,156r-123,0","w":440,"k":{"\u00f6":-23,"\u00f3":-23,"\u00e9":-25,"\u00e5":-33,"\u00e4":-33,"\u00e1":-33,"\u00e6":-29,"y":-66,"o":-23,"h":-25,"e":-25,"c":-25,"a":-33,"S":-33,";":-131,":":-100,"\u2019":-43}},"u":{"d":"367,-184v64,0,98,-42,98,-131r0,-660r194,0r0,975r-194,0r0,-98v-49,78,-102,110,-180,110v-76,0,-148,-42,-185,-108v-20,-39,-24,-62,-24,-146r0,-733r194,0r0,660v0,53,3,64,13,82v14,31,47,49,84,49","w":741,"k":{"j":2,"\u2019":-8}},"v":{"d":"682,-975r-256,975r-172,0r-254,-975r207,0r133,631r135,-631r207,0","w":681,"k":{"\u00f2":-4,"\u00f6":-4,"\u00f3":-4,"\u00e8":-4,"\u00ea":-4,"\u00e9":-4,"\u00e3":-8,"\u00e5":-8,"\u00e0":-8,"\u00e4":-8,"\u00e2":-8,"\u00e1":-8,"\u00f8":8,"\u00e6":-4,"s":-12,"o":-4,"l":-31,"j":-20,"g":-18,"e":-4,"c":-4,"a":-8,";":-84,":":-100,".":35,"-":-25,",":35}},"w":{"d":"1024,-975r-231,975r-168,0r-111,-584r-111,584r-170,0r-233,-975r207,0r123,606r110,-606r144,0r112,606r121,-606r207,0","w":1024,"k":{"\u00f2":-8,"\u00f6":-8,"\u00f3":-8,"\u00e8":-6,"\u00ea":-6,"\u00e9":-6,"\u00e3":-12,"\u00e5":-12,"\u00e0":-12,"\u00e4":-12,"\u00e2":-12,"\u00e1":-12,"\u00f8":6,"\u00e6":-8,"s":-14,"o":-8,"l":-31,"g":-18,"e":-6,"c":-6,"a":-12,";":-94,":":-106,".":29,"-":-29,",":29}},"x":{"d":"457,-502r237,502r-207,0r-129,-305r-137,305r-207,0r248,-502r-231,-473r209,0r118,277r127,-277r207,0","w":706,"k":{"\u00e9":14,"o":14,"e":14,"c":14,"a":-2}},"y":{"d":"682,-975r-281,1139v-44,167,-140,235,-325,225r0,-184v101,4,133,-8,160,-113r34,-131r-270,-936r207,0r135,606r135,-606r205,0","w":702,"k":{"\u00f2":2,"\u00f6":2,"\u00f3":2,"\u00e8":2,"\u00ea":2,"\u00e9":2,"\u00f8":16,"\u00e6":2,"s":-2,"o":2,"l":-20,"j":-10,"g":-8,"e":2,"c":2,";":-80,":":-96,".":39,"-":-16,",":39}},"z":{"d":"573,-186r0,186r-532,0r0,-160r313,-647r-291,0r0,-168r510,0r0,144r-313,645r313,0","w":614,"k":{"o":-8,"e":-10,";":-100,":":-82,",":-33}},"{":{"d":"426,-1051r0,275v0,127,-27,182,-107,227v80,43,107,98,107,225r0,275v0,156,47,194,233,196r0,160r-88,0v-152,0,-223,-14,-270,-55v-51,-43,-74,-110,-74,-221r0,-338v0,-115,-32,-166,-118,-193r0,-100v86,-27,118,-78,118,-193r0,-337v0,-117,30,-184,84,-230v49,-42,204,-51,348,-45r0,160v-186,0,-233,38,-233,194","w":659},"|":{"d":"272,-1366r125,0r0,1708r-125,0r0,-1708","w":671},"}":{"d":"233,-49r0,-275v0,-127,27,-182,107,-225v-80,-45,-107,-100,-107,-227r0,-275v0,-156,-47,-194,-233,-194r0,-160v153,-7,311,4,358,53v47,49,74,111,74,222r0,337v0,115,33,166,119,193r0,100v-86,27,-119,78,-119,193r0,338v0,117,-31,182,-84,229v-47,42,-210,49,-348,47r0,-160v186,-2,233,-40,233,-196","w":659},"~":{"d":"137,-1167r-69,-90v72,-145,161,-218,272,-218v55,0,123,23,238,82v115,59,149,72,198,72v78,0,133,-43,199,-158r72,88v-68,143,-164,217,-281,217v-59,0,-95,-15,-260,-98v-187,-94,-257,-79,-369,105","w":1114},"\u00a1":{"d":"283,342r-242,0r74,-1024r94,0xm258,-829r-195,0r0,-195r195,0r0,195","w":323},"\u00a2":{"d":"272,-1112r0,-119r195,0r0,109v128,44,216,154,205,293r-193,0v0,-68,-41,-115,-98,-115v-61,0,-98,45,-98,115r0,380v0,74,35,115,98,115v57,0,98,-43,98,-106r193,0v12,136,-78,243,-205,290r0,109r-195,0r0,-119v-121,-49,-184,-148,-184,-289r0,-380v0,-127,69,-234,184,-283"},"\u00a3":{"d":"467,-1186v-72,0,-137,54,-137,152r0,231r202,0r0,174r-202,0r0,432r391,0r0,197r-727,0r0,-197r139,0r0,-432r-139,0r0,-174r141,0r0,-231v0,-199,140,-344,330,-344v180,0,336,137,328,344r-193,0v5,-96,-61,-152,-133,-152"},"\u00a5":{"d":"582,-930r94,0r0,164r-152,0r-37,109r189,0r0,163r-213,0r0,494r-197,0r0,-494r-209,0r0,-163r185,0r-37,-109r-148,0r0,-164r93,0r-148,-436r205,0r160,535r159,-535r205,0"},"\u00a7":{"d":"111,-131r211,0v0,92,51,147,133,147v80,0,133,-61,133,-151v0,-82,-32,-119,-133,-152v-106,-35,-218,-69,-275,-133v-68,-76,-112,-174,-112,-276v0,-119,49,-221,149,-303v-70,-72,-104,-156,-104,-248v0,-186,158,-342,348,-342v186,0,336,148,340,336r-211,0v-8,-88,-55,-140,-131,-140v-82,0,-137,62,-137,152v0,78,35,114,129,143r81,25v115,35,166,68,224,139v141,172,103,424,-64,553v70,72,105,152,105,246v0,190,-156,346,-346,346v-188,0,-340,-149,-340,-342xm494,-866r-84,-29v-88,31,-136,96,-136,186v0,96,48,158,146,191r86,29v94,-45,127,-95,127,-191v0,-43,-9,-75,-25,-104v-25,-45,-42,-57,-114,-82","w":913},"\u00a4":{"d":"86,-223r182,-189v-133,-184,-143,-387,2,-577r-190,-189r74,-73r188,190v111,-80,187,-106,293,-106v106,0,182,26,291,106r190,-188r72,71r-189,189v74,96,105,185,105,291v0,104,-24,175,-100,286r186,189r-72,73r-188,-188v-189,143,-385,141,-586,0r-186,186xm639,-1055v-199,0,-354,156,-354,353v0,195,157,352,350,352v193,0,350,-157,350,-352v0,-193,-158,-353,-346,-353","w":1269},"'":{"d":"41,-1366r195,0r-41,547r-113,0","w":276},"\u201c":{"d":"285,-1100r0,-192r145,-74r0,266r-145,0xm41,-1100r0,-192r145,-74r0,266r-145,0","w":471,"k":{"\u00c5":57,"\u00c4":57,"\u00c1":57,"\u00c6":158,"Y":-49,"W":-51,"V":-51,"T":-57,"A":57}},"\u00ab":{"d":"195,-590r194,195r0,196r-389,-391r389,-389r0,193xm537,-590r194,195r0,196r-389,-391r389,-389r0,193","w":798},"\u2013":{"d":"864,-635r0,195r-864,0r0,-195r864,0","w":864},"\u00b7":{"d":"260,-598r0,219r-219,0r0,-219r219,0","w":301},"\u00b6":{"d":"424,287r0,-930v-243,17,-408,-138,-410,-356v0,-135,66,-253,172,-314v66,-37,154,-53,273,-53r469,0r0,1653r-195,0r0,-1487r-115,0r0,1487r-194,0","w":1036},"\u201d":{"d":"186,-1366r0,190r-145,74r0,-264r145,0xm430,-1366r0,190r-145,74r0,-264r145,0","w":471,"k":{"\u00c5":63,"\u00c4":63,"\u00c1":63,"\u00c6":166,"Y":-49,"W":-51,"V":-51,"T":-57,"A":63}},"\u00bb":{"d":"262,-590r-194,-196r0,-193r389,389r-389,391r0,-196xm604,-590r-194,-196r0,-193r389,389r-389,391r0,-196","w":798,"k":{"\u00c5":-8,"\u00c4":-8,"\u00c1":-8,"\u00c6":41,"Y":59,"W":-14,"V":8,"T":41,"A":-8}},"\u2026":{"d":"236,-195r0,195r-195,0r0,-195r195,0xm1016,-195r0,195r-195,0r0,-195r195,0xm625,-195r0,195r-195,0r0,-195r195,0","w":1056},"\u00bf":{"d":"432,-682r0,109v11,196,-91,287,-164,409v-38,64,-32,140,-32,234v0,53,41,90,96,90v63,0,96,-39,96,-115r0,-92r195,0r0,92v0,178,-127,309,-297,309v-154,0,-285,-130,-285,-284v-1,-122,0,-217,47,-301r100,-179v45,-74,48,-81,48,-163r0,-109r196,0xm236,-829r0,-195r196,0r0,195r-196,0","w":649},"`":{"d":"68,-1391r186,0r158,258r-152,0","w":479},"\u00b4":{"d":"412,-1391r-195,258r-149,0r157,-258r187,0","w":479},"\u00af":{"d":"68,-1161r0,-133r489,0r0,133r-489,0","w":626},"\u00a8":{"d":"260,-1321r0,188r-192,0r0,-188r192,0xm586,-1321r0,188r-193,0r0,-188r193,0","w":655},"\u00b8":{"d":"352,106r-135,259r-149,0r98,-259r186,0","w":421},"\u2014":{"d":"1364,-635r0,195r-1364,0r0,-195r1364,0","w":1363},"\u00c6":{"d":"1262,-1366r0,180r-388,0r0,424r338,0r0,184r-338,0r0,381r388,0r0,197r-584,0r0,-582r-252,0r-219,582r-207,0r561,-1366r701,0xm678,-764r0,-446r-182,446r182,0","w":1288},"\u00aa":{"d":"420,-680r0,109r-352,0r0,-109r352,0xm303,-797r0,-57v-27,43,-66,66,-113,66v-99,2,-122,-91,-122,-207v0,-96,64,-154,168,-154r67,0v4,-62,-2,-123,-59,-123v-31,0,-56,25,-60,58r-116,0v2,-100,78,-175,176,-175v98,0,176,79,176,175r0,417r-117,0xm303,-1053v-60,-3,-119,3,-119,56v0,53,14,90,62,90v20,0,41,-11,49,-29v14,-6,6,-85,8,-117","w":487},"\u00d8":{"d":"733,-338v14,244,-226,418,-463,322r-24,71r-166,-55r47,-141v-39,-59,-51,-107,-51,-197r0,-696v-2,-239,211,-405,450,-322r27,-80r164,54r-45,139v45,61,61,119,61,209r0,696xm408,-1186v-74,0,-138,52,-138,152r0,454r195,-591v-20,-10,-37,-15,-57,-15xm403,-184v74,0,136,-51,136,-154r0,-500r-207,631v25,16,44,23,71,23","w":808,"k":{"A":-8}},"\u00ba":{"d":"418,-680r0,109r-350,0r0,-109r350,0xm68,-975r0,-233v0,-102,76,-181,178,-181v98,0,172,77,172,181r0,233v0,106,-76,187,-176,187v-100,0,-174,-81,-174,-187xm301,-975r0,-233v0,-39,-24,-66,-59,-66v-33,0,-58,27,-58,66r0,233v0,41,23,68,60,68v39,0,57,-23,57,-68","w":487},"\u00e6":{"d":"465,-672v6,-88,-38,-125,-96,-125v-49,0,-91,40,-97,97r-196,0v4,-162,131,-287,293,-287v74,0,139,25,196,74v57,-49,123,-74,197,-74v164,0,289,129,289,299r0,270r-389,0r0,101v0,72,0,76,26,102v56,58,166,25,168,-68r195,0v2,162,-131,295,-291,295v-109,0,-209,-62,-262,-162r-33,52v-102,191,-389,119,-389,-125v0,-132,1,-225,76,-295v56,-52,102,-70,202,-70r111,0r0,-84xm465,-428v-97,-5,-202,3,-193,90v-9,89,22,155,99,154v35,0,68,-18,82,-47v20,-13,9,-142,12,-197xm760,-797v-60,0,-98,38,-98,121r0,98r194,0r0,-98v0,-76,-35,-121,-96,-121","w":1124,"k":{"y":-4,"w":-8,"v":-6}},"\u00f8":{"d":"508,-965r31,-69r135,63r-45,101v41,57,55,106,55,182r0,389v8,230,-228,386,-432,274r-41,91r-135,-62r63,-141v-29,-51,-39,-92,-39,-162r0,-389v-4,-207,201,-357,408,-277xm295,-489r133,-299v-69,-30,-133,22,-133,100r0,199xm393,-184v58,0,96,-29,96,-115r0,-258r-157,352v20,14,36,21,61,21","w":759},"\u00df":{"d":"377,-1186v-67,0,-101,40,-101,125r0,1061r-194,0r0,-1061v0,-90,8,-121,41,-176v53,-88,148,-141,252,-141v158,0,293,128,293,278r0,125v0,82,-35,139,-109,178v76,49,109,107,109,195r0,360v5,165,-101,251,-269,242r0,-184v61,3,84,-14,84,-80r0,-381v0,-49,-21,-66,-84,-66r0,-170v56,3,84,-15,84,-67r0,-131v0,-63,-40,-107,-106,-107","w":741},"\u00b9":{"d":"248,-1366r0,819r-117,0r0,-696r-117,86r0,-123r117,-86r117,0","w":301},"\u00ac":{"d":"834,0r0,-451r-766,0r0,-110r886,0r0,561r-120,0","w":1024},"\u00b5":{"d":"373,-184v64,0,98,-42,98,-131r0,-660r195,0r0,975r-195,0r0,-98v-56,82,-103,113,-195,110r0,377r-194,0r0,-1364r194,0r0,660v0,53,3,64,13,82v14,31,47,49,84,49","w":747},"\u2122":{"d":"295,-1257r0,710r-117,0r0,-710r-137,0r0,-109r393,0r0,109r-139,0xm1026,-1366r0,819r-117,0r0,-497r-118,350r-58,0r-117,-350r0,497r-116,0r0,-819r108,0r156,436r154,-436r108,0","w":1134},"\u00d0":{"d":"115,-614r-88,0r0,-183r88,0r0,-569r309,0v182,0,321,137,321,315r0,713v0,203,-130,338,-327,338r-303,0r0,-614xm309,-614r0,432r94,0v100,0,148,-50,148,-156r0,-713v0,-76,-61,-133,-141,-133r-101,0r0,387r84,0r0,183r-84,0","w":821},"\u00bd":{"d":"784,-1366r-456,1366r-127,0r461,-1366r122,0xm289,-1366r0,819r-117,0r0,-696r-117,86r0,-123r117,-86r117,0xm778,-117r211,0r0,117r-350,0r0,-109r219,-423v21,-33,14,-73,14,-121v0,-33,-24,-60,-59,-60v-59,0,-60,65,-57,127r-119,0v-12,-146,57,-241,178,-241v98,0,174,76,174,174v0,72,0,121,-28,176","w":1044},"\u00b1":{"d":"651,-678r0,195r-194,0r0,194r-195,0r0,-194r-194,0r0,-195r194,0r0,-194r195,0r0,194r194,0xm651,-195r0,195r-583,0r0,-195r583,0","w":720},"\u00de":{"d":"305,-307r0,307r-196,0r0,-1366r196,0r0,231v171,-6,277,12,365,113v76,87,72,221,71,377v0,109,-29,179,-90,244v-84,89,-187,98,-346,94xm305,-950r0,458v85,-2,179,12,217,-38v59,-44,37,-169,37,-267v0,-66,-8,-79,-37,-114v-40,-49,-130,-37,-217,-39","w":755},"\u00bc":{"d":"784,-1366r-456,1366r-127,0r461,-1366r122,0xm289,-1366r0,819r-117,0r0,-696r-117,86r0,-123r117,-86r117,0xm926,-125r0,125r-117,0r0,-125r-236,0r0,-108r170,-586r125,0r-176,586r117,0r0,-236r117,0r0,236r57,0r0,108r-57,0","w":1036},"\u00f7":{"d":"719,-635r0,195r-678,0r0,-195r678,0xm477,-346r0,194r-194,0r0,-194r194,0xm477,-920r0,195r-194,0r0,-195r194,0","w":759},"\u00a6":{"d":"272,-1366r125,0r0,676r-125,0r0,-676xm272,-313r125,0r0,655r-125,0r0,-655","w":671},"\u00b0":{"d":"352,-1382v150,0,269,120,269,274v0,145,-122,266,-269,266v-150,0,-270,-120,-270,-270v0,-147,120,-270,270,-270xm352,-1296v-102,0,-186,84,-186,186v0,102,84,184,186,184v100,0,185,-84,185,-182v0,-106,-83,-188,-185,-188","w":702},"\u00fe":{"d":"668,-209v5,136,-95,221,-205,221v-78,0,-143,-38,-184,-108r0,485r-197,0r0,-1755r197,0r0,487v47,-74,106,-108,184,-108v117,0,205,92,205,217r0,561xm377,-182v62,0,96,-35,96,-121r0,-381v0,-66,-39,-109,-98,-109v-57,0,-96,43,-96,109r0,381v0,80,32,121,98,121","w":743},"\u00be":{"d":"874,-1366r-456,1366r-129,0r463,-1366r122,0xm1016,-125r0,125r-117,0r0,-125r-235,0r0,-108r170,-586r124,0r-176,586r117,0r0,-236r117,0r0,236r57,0r0,108r-57,0xm406,-735v8,125,-84,196,-173,196v-121,0,-191,-97,-178,-243r117,0v-3,67,4,125,61,125v75,0,53,-127,56,-205v3,-48,-37,-63,-94,-60r0,-102v62,3,96,-11,94,-70v-2,-71,14,-166,-58,-166v-59,0,-63,66,-59,130r-117,0v-14,-144,52,-244,176,-244v100,0,175,78,175,184r0,94v0,59,-19,92,-70,123v55,37,70,63,70,129r0,109","w":1126},"\u00b2":{"d":"182,-664r211,0r0,117r-350,0r0,-108r219,-422v21,-33,14,-73,14,-121v0,-35,-24,-62,-59,-62v-59,0,-60,67,-57,130r-119,0v-12,-146,57,-243,178,-244v98,0,174,78,174,176v0,73,1,120,-28,176","w":434},"\u00ae":{"d":"827,-1386v377,0,693,319,693,702v0,389,-316,704,-703,704v-391,0,-704,-315,-704,-708v0,-389,317,-698,714,-698xm825,-1298v-186,0,-344,67,-467,204v-100,111,-157,259,-157,406v0,346,272,620,616,620v338,0,615,-276,615,-616v0,-334,-277,-614,-607,-614xm754,-625r0,353r-119,0r0,-820r205,0v106,0,190,87,190,193v0,125,-5,197,-96,250r125,377r-125,0r-109,-353r-71,0xm754,-727r80,0v59,0,86,-28,86,-94r0,-78v0,-49,-35,-84,-84,-84r-82,0r0,256","w":1632},"\u00f0":{"d":"446,-1229v141,119,216,330,216,567r0,363v0,178,-125,311,-295,311v-168,0,-291,-131,-291,-311r0,-389v2,-180,139,-316,332,-297v-31,-70,-43,-92,-76,-129r-86,86r-103,-96r80,-84v-31,-16,-43,-23,-92,-41r74,-113v35,6,66,18,121,45r69,-72r111,101xm369,-186v59,0,98,-27,98,-113r0,-389v0,-66,-39,-109,-98,-109v-57,0,-99,46,-99,109r0,389v0,70,40,113,99,113"},"\u00d7":{"d":"215,-489r-174,-175r145,-145r176,176r177,-176r145,145r-174,175r174,174r-145,143r-177,-176r-176,176r-145,-143","w":724},"\u00b3":{"d":"391,-735v9,126,-83,196,-172,196v-121,0,-191,-97,-178,-243r117,0v-3,67,4,125,61,125v75,0,52,-128,55,-205v3,-48,-36,-64,-94,-60r0,-102v62,3,96,-11,94,-70v-3,-71,14,-166,-57,-166v-59,0,-63,66,-59,130r-117,0v-14,-144,52,-244,176,-244v100,0,174,78,174,184v0,103,10,178,-69,217v55,37,69,63,69,129r0,109","w":446},"\u00a9":{"d":"827,-1386v377,0,693,319,693,702v0,389,-316,704,-703,704v-391,0,-704,-315,-704,-708v0,-389,317,-698,714,-698xm825,-1298v-186,0,-344,67,-467,204v-100,111,-157,259,-157,406v0,346,272,620,616,620v338,0,615,-276,615,-616v0,-334,-277,-614,-607,-614xm817,-381v46,0,82,-20,74,-96r0,-29r117,0v13,152,-72,242,-189,242v-102,0,-190,-78,-190,-213r0,-424v0,-113,81,-199,190,-199v120,0,203,100,189,242r-117,0v6,-69,-11,-125,-72,-125v-43,0,-71,33,-71,82r0,424v0,49,2,56,20,74v12,14,31,22,49,22","w":1632},"\u00c1":{"d":"262,-293r-55,293r-207,0r305,-1366r170,0r305,1366r-209,0r-55,-293r-254,0xm481,-475r-92,-498r-92,498r184,0xm666,-1724r-193,258r-149,0r157,-258r185,0","w":780,"k":{"\u201d":57,"\u00ab":-8,"y":31,"w":23,"v":23,"u":-18,"q":-18,"o":-10,"g":-18,"e":-10,"d":-18,"c":-10,"b":-31,"a":-23,"Y":57,"W":23,"V":51,"U":-8,"T":37,"Q":-8,"O":-8,"G":-8,"C":-8,".":-53,"-":-20,",":-53,"\u2019":57}},"\u00c2":{"d":"262,-293r-55,293r-207,0r305,-1366r170,0r305,1366r-209,0r-55,-293r-254,0xm481,-475r-92,-498r-92,498r184,0xm307,-1718r164,0r197,252r-183,0r-96,-146r-96,146r-182,0","w":780,"k":{"\u00fd":31,"\u00dd":33,"w":23,"v":23,"Y":57,"W":23,"V":51,"U":-8,"T":37,"Q":-8,"O":-8,"G":-8,"C":-8,".":-53,",":-53}},"\u00c4":{"d":"262,-293r-55,293r-207,0r305,-1366r170,0r305,1366r-209,0r-55,-293r-254,0xm481,-475r-92,-498r-92,498r184,0xm328,-1661r0,195r-193,0r0,-195r193,0xm645,-1661r0,195r-192,0r0,-195r192,0","w":780,"k":{"\u201d":57,"\u00ab":-8,"y":31,"w":23,"v":23,"u":-18,"t":2,"q":-18,"o":-10,"g":-18,"d":-18,"c":-10,"b":-31,"a":-23,"Y":57,"W":23,"V":51,"U":-8,"T":37,"Q":-8,"O":-8,"G":-8,"C":-8,".":-53,"-":-20,",":-53,"\u2019":57}},"\u00c0":{"d":"262,-293r-55,293r-207,0r305,-1366r170,0r305,1366r-209,0r-55,-293r-254,0xm481,-475r-92,-498r-92,498r184,0xm133,-1724r184,0r158,258r-149,0","w":780,"k":{"Y":57,"W":23,"V":51,"U":-8,"T":37,"Q":-8,"O":-8,"G":-8,"C":-8,".":-53,",":-53}},"\u00c5":{"d":"262,-293r-55,293r-207,0r305,-1366r170,0r305,1366r-209,0r-55,-293r-254,0xm481,-475r-92,-498r-92,498r184,0xm391,-1657v-43,0,-76,33,-76,72v0,41,33,74,74,74v41,0,74,-33,74,-74v0,-39,-33,-72,-72,-72xm391,-1765v98,0,178,82,178,180v0,100,-80,180,-180,180v-100,0,-180,-80,-180,-182v0,-98,82,-178,182,-178","w":780,"k":{"\u201d":57,"\u00ab":-8,"y":31,"w":23,"v":23,"u":-18,"q":-18,"o":-10,"g":-18,"e":-10,"d":-18,"c":-10,"b":-31,"a":-23,"Y":57,"W":23,"V":51,"U":-8,"T":37,"Q":-8,"O":-8,"G":-8,"C":-8,".":-53,"-":-20,",":-53,"\u2019":57}},"\u00c3":{"d":"262,-293r-55,293r-207,0r305,-1366r170,0r305,1366r-209,0r-55,-293r-254,0xm481,-475r-92,-498r-92,498r184,0xm563,-1677r101,0v-1,219,-159,267,-297,153v-45,-37,-68,-45,-95,-45v-33,0,-51,27,-55,82r-100,0v4,-78,12,-112,37,-149v27,-41,76,-68,125,-68v43,0,68,14,141,62v42,28,70,38,90,38v31,0,45,-20,53,-73","w":780,"k":{"Y":57,"W":23,"V":51,"U":-8,"T":37,"Q":-8,"O":-8,"G":-8,"C":-8,".":-53,",":-53}},"\u00c7":{"d":"76,-1047v-10,-185,141,-331,317,-331v178,0,316,143,316,331r0,72r-195,0r0,-72v0,-84,-45,-135,-121,-135v-74,0,-121,53,-121,135r0,705v0,82,3,91,33,123v56,59,155,41,195,-23v17,-13,14,-92,14,-147r195,0v2,107,-6,187,-43,246v-58,92,-164,155,-273,155v-173,0,-317,-132,-317,-354r0,-705xm500,106r-135,259r-150,0r98,-259r187,0","k":{"A":-33}},"\u00c9":{"d":"305,-598r0,401r387,0r0,197r-583,0r0,-1366r583,0r0,180r-387,0r0,404r340,0r0,184r-340,0xm651,-1724r-194,258r-150,0r158,-258r186,0","w":720},"\u00ca":{"d":"305,-598r0,401r387,0r0,197r-583,0r0,-1366r583,0r0,180r-387,0r0,404r340,0r0,184r-340,0xm319,-1718r164,0r197,252r-182,0r-97,-146r-96,146r-182,0","w":720},"\u00cb":{"d":"305,-598r0,401r387,0r0,197r-583,0r0,-1366r583,0r0,180r-387,0r0,404r340,0r0,184r-340,0xm338,-1661r0,195r-193,0r0,-195r193,0xm655,-1661r0,195r-192,0r0,-195r192,0","w":720},"\u00c8":{"d":"305,-598r0,401r387,0r0,197r-583,0r0,-1366r583,0r0,180r-387,0r0,404r340,0r0,184r-340,0xm182,-1724r187,0r157,258r-151,0","w":720},"\u00cd":{"d":"303,-1366r0,1366r-194,0r0,-1366r194,0xm487,-1724r-194,258r-150,0r158,-258r186,0","w":413},"\u00ce":{"d":"305,-1366r0,1366r-194,0r0,-1366r194,0xm125,-1718r164,0r196,252r-182,0r-96,-146r-96,146r-183,0","w":413},"\u00cf":{"d":"305,-1366r0,1366r-194,0r0,-1366r194,0xm164,-1661r0,195r-193,0r0,-195r193,0xm442,-1661r0,195r-192,0r0,-195r192,0","w":413},"\u00cc":{"d":"303,-1366r0,1366r-194,0r0,-1366r194,0xm-51,-1724r186,0r158,258r-152,0","w":413},"\u00d1":{"d":"791,-1366r0,1366r-183,0r-303,-829r0,829r-196,0r0,-1366r184,0r303,827r0,-827r195,0xm623,-1677r100,0v-1,219,-159,267,-297,153v-45,-37,-67,-45,-94,-45v-33,0,-52,27,-56,82r-100,0v4,-78,12,-112,37,-149v27,-41,76,-68,125,-68v43,0,69,13,143,62v41,27,67,38,90,38v29,0,44,-20,52,-73","w":901},"\u00d3":{"d":"406,12v-177,0,-330,-130,-330,-350r0,-696v0,-199,140,-344,330,-344v177,0,327,140,327,344r0,696v11,200,-141,350,-327,350xm406,-184v71,0,133,-52,133,-154r0,-696v7,-97,-62,-152,-131,-152v-74,0,-138,55,-138,152r0,696v-8,96,57,154,136,154xm666,-1724r-193,258r-149,0r155,-258r187,0","w":808,"k":{"Z":-12,"Y":4,"W":-16,"V":-10,"T":-29,"A":-8,";":-121,":":-123,".":-8,",":-4}},"\u00d4":{"d":"406,12v-177,0,-330,-130,-330,-350r0,-696v0,-199,140,-344,330,-344v177,0,327,140,327,344r0,696v11,200,-141,350,-327,350xm406,-184v71,0,133,-52,133,-154r0,-696v7,-97,-62,-152,-131,-152v-74,0,-138,55,-138,152r0,696v-8,96,57,154,136,154xm324,-1718r163,0r197,252r-182,0r-96,-146r-97,146r-182,0","w":808,"k":{"Y":4,"V":-10,"T":-29}},"\u00d6":{"d":"406,12v-177,0,-330,-130,-330,-350r0,-696v0,-199,140,-344,330,-344v177,0,327,140,327,344r0,696v11,200,-141,350,-327,350xm406,-184v71,0,133,-52,133,-154r0,-696v7,-97,-62,-152,-131,-152v-74,0,-138,55,-138,152r0,696v-8,96,57,154,136,154xm342,-1661r0,195r-192,0r0,-195r192,0xm659,-1661r0,195r-192,0r0,-195r192,0","w":808,"k":{"Y":4,"X":8,"W":-16,"V":-10,"T":-29,"A":-8,";":-121,":":-123,".":-8,",":-4}},"\u00d2":{"d":"406,12v-177,0,-330,-130,-330,-350r0,-696v0,-199,140,-344,330,-344v177,0,327,140,327,344r0,696v11,200,-141,350,-327,350xm406,-184v71,0,133,-52,133,-154r0,-696v7,-97,-62,-152,-131,-152v-74,0,-138,55,-138,152r0,696v-8,96,57,154,136,154xm160,-1724r184,0r158,258r-150,0","w":808,"k":{"Y":4,"V":-10,"T":-29}},"\u00d5":{"d":"406,12v-177,0,-330,-130,-330,-350r0,-696v0,-199,140,-344,330,-344v177,0,327,140,327,344r0,696v11,200,-141,350,-327,350xm406,-184v71,0,133,-52,133,-154r0,-696v7,-97,-62,-152,-131,-152v-74,0,-138,55,-138,152r0,696v-8,96,57,154,136,154xm578,-1677r100,0v-1,220,-160,266,-297,153v-45,-37,-67,-45,-92,-45v-35,0,-54,27,-58,82r-100,0v4,-78,12,-112,37,-149v29,-41,78,-68,127,-68v41,0,69,13,141,62v41,27,67,38,90,38v29,0,44,-20,52,-73","w":808,"k":{"Y":4,"V":-10,"T":-29}},"\u00da":{"d":"270,-322v-5,85,50,138,123,138v76,0,123,-56,123,-138r0,-1044r195,0r0,1044v6,203,-150,334,-318,334v-171,0,-317,-131,-317,-334r0,-1044r194,0r0,1044xm662,-1724r-193,258r-150,0r158,-258r185,0","w":784,"k":{"r":-6,"p":-6,"n":-6,"m":-6,"A":-10,".":-10,",":-6}},"\u00db":{"d":"270,-322v-5,85,50,138,123,138v76,0,123,-56,123,-138r0,-1044r195,0r0,1044v6,203,-150,334,-318,334v-171,0,-317,-131,-317,-334r0,-1044r194,0r0,1044xm311,-1718r164,0r197,252r-183,0r-96,-146r-96,146r-182,0","w":784,"k":{"A":-10}},"\u00dc":{"d":"270,-322v-5,85,50,138,123,138v76,0,123,-56,123,-138r0,-1044r195,0r0,1044v6,203,-150,334,-318,334v-171,0,-317,-131,-317,-334r0,-1044r194,0r0,1044xm330,-1661r0,195r-193,0r0,-195r193,0xm649,-1661r0,195r-192,0r0,-195r192,0","w":784,"k":{"r":-6,"p":-6,"n":-6,"m":-6,"b":-6,"A":-10,".":-10,",":-6}},"\u00d9":{"d":"270,-322v-5,85,50,138,123,138v76,0,123,-56,123,-138r0,-1044r195,0r0,1044v6,203,-150,334,-318,334v-171,0,-317,-131,-317,-334r0,-1044r194,0r0,1044xm170,-1724r186,0r158,258r-149,0","w":784,"k":{"A":-10}},"\u00dd":{"d":"461,-588r0,588r-197,0r0,-588r-264,-778r205,0r160,535r159,-535r207,0xm635,-1724r-195,258r-149,0r158,-258r186,0","w":729,"k":{"\u00fa":27,"\u00f3":66,"\u00e9":66,"\u00e1":61,"\u00c4":37,"\u00c2":25,"\u00c1":59,"J":59,";":-37,":":-37,".":70,"-":49,",":70}},"\u00e1":{"d":"457,-672v6,-89,-39,-125,-97,-125v-49,0,-90,40,-96,97r-196,0v4,-162,130,-287,294,-287v158,0,291,131,291,287r0,700r-196,0r0,-98v-103,191,-410,119,-389,-125r0,-111v4,-148,108,-265,278,-254r111,0r0,-84xm457,-428r-74,0v-101,0,-119,45,-119,139v0,107,138,140,180,58v20,-13,11,-141,13,-197xm633,-1391r-193,258r-149,0r158,-258r184,0","w":729,"k":{"y":-4,"w":-8,"v":-6}},"\u00e2":{"d":"457,-672v6,-89,-39,-125,-97,-125v-49,0,-90,40,-96,97r-196,0v4,-162,130,-287,294,-287v158,0,291,131,291,287r0,700r-196,0r0,-98v-103,191,-410,119,-389,-125r0,-111v4,-148,108,-265,278,-254r111,0r0,-84xm457,-428r-74,0v-101,0,-119,45,-119,139v0,107,138,140,180,58v20,-13,11,-141,13,-197xm291,-1384r164,0r196,251r-182,0r-96,-145r-97,145r-182,0","w":729},"\u00e4":{"d":"457,-672v6,-89,-39,-125,-97,-125v-49,0,-90,40,-96,97r-196,0v4,-162,130,-287,294,-287v158,0,291,131,291,287r0,700r-196,0r0,-98v-103,191,-410,119,-389,-125r0,-111v4,-148,108,-265,278,-254r111,0r0,-84xm457,-428r-74,0v-101,0,-119,45,-119,139v0,107,138,140,180,58v20,-13,11,-141,13,-197xm305,-1321r0,188r-192,0r0,-188r192,0xm631,-1321r0,188r-193,0r0,-188r193,0","w":729,"k":{"y":-4,"w":-8,"v":-6}},"\u00e0":{"d":"457,-672v6,-89,-39,-125,-97,-125v-49,0,-90,40,-96,97r-196,0v4,-162,130,-287,294,-287v158,0,291,131,291,287r0,700r-196,0r0,-98v-103,191,-410,119,-389,-125r0,-111v4,-148,108,-265,278,-254r111,0r0,-84xm457,-428r-74,0v-101,0,-119,45,-119,139v0,107,138,140,180,58v20,-13,11,-141,13,-197xm145,-1391r187,0r157,258r-149,0","w":729,"k":{"y":-4,"w":-8,"v":-6}},"\u00e5":{"d":"457,-672v6,-89,-39,-125,-97,-125v-49,0,-90,40,-96,97r-196,0v4,-162,130,-287,294,-287v158,0,291,131,291,287r0,700r-196,0r0,-98v-103,191,-410,119,-389,-125r0,-111v4,-148,108,-265,278,-254r111,0r0,-84xm457,-428r-74,0v-101,0,-119,45,-119,139v0,107,138,140,180,58v20,-13,11,-141,13,-197xm381,-1343v-41,0,-74,32,-74,73v0,41,33,74,74,74v39,0,72,-33,72,-74v0,-41,-33,-73,-72,-73xm383,-1440v90,0,166,78,166,168v0,94,-76,170,-168,170v-94,0,-170,-76,-170,-170v0,-94,76,-168,172,-168","w":729,"k":{"y":-4,"w":-8,"v":-6}},"\u00e3":{"d":"457,-672v6,-89,-39,-125,-97,-125v-49,0,-90,40,-96,97r-196,0v4,-162,130,-287,294,-287v158,0,291,131,291,287r0,700r-196,0r0,-98v-103,191,-410,119,-389,-125r0,-111v4,-148,108,-265,278,-254r111,0r0,-84xm457,-428r-74,0v-101,0,-119,45,-119,139v0,107,138,140,180,58v20,-13,11,-141,13,-197xm553,-1339r100,0v-6,141,-57,211,-157,211v-45,0,-85,-17,-140,-60v-47,-35,-67,-45,-94,-45v-33,0,-51,27,-55,82r-101,0v4,-78,12,-110,37,-147v29,-41,80,-70,125,-70v41,0,68,12,144,61v41,29,67,41,90,41v29,0,43,-20,51,-73","w":729},"\u00e7":{"d":"369,12v-156,0,-293,-123,-293,-313r0,-379v0,-170,131,-307,293,-307v158,0,294,118,290,307r-194,0v0,-68,-39,-115,-96,-115v-61,0,-99,45,-99,115r0,379v0,76,36,117,97,117v59,0,98,-43,98,-109r194,0v2,172,-126,305,-290,305xm475,106r-135,259r-150,0r99,-259r186,0","w":714},"\u00e9":{"d":"371,12v-161,0,-295,-121,-295,-329r0,-371v0,-166,131,-299,295,-299v166,0,291,129,291,299r0,270r-390,0r0,101v0,72,1,76,27,102v56,58,166,25,168,-68r195,0v2,160,-131,295,-291,295xm371,-795v-60,0,-99,38,-99,121r0,96r195,0r0,-96v0,-76,-35,-121,-96,-121xm623,-1391r-195,258r-149,0r157,-258r187,0","w":729,"k":{"y":-6,"w":-10,"v":-8,"t":-20}},"\u00ea":{"d":"371,12v-161,0,-295,-121,-295,-329r0,-371v0,-166,131,-299,295,-299v166,0,291,129,291,299r0,270r-390,0r0,101v0,72,1,76,27,102v56,58,166,25,168,-68r195,0v2,160,-131,295,-291,295xm371,-795v-60,0,-99,38,-99,121r0,96r195,0r0,-96v0,-76,-35,-121,-96,-121xm287,-1384r164,0r196,251r-182,0r-96,-145r-97,145r-182,0","w":729,"k":{"y":-6,"w":-10,"v":-8}},"\u00eb":{"d":"371,12v-161,0,-295,-121,-295,-329r0,-371v0,-166,131,-299,295,-299v166,0,291,129,291,299r0,270r-390,0r0,101v0,72,1,76,27,102v56,58,166,25,168,-68r195,0v2,160,-131,295,-291,295xm371,-795v-60,0,-99,38,-99,121r0,96r195,0r0,-96v0,-76,-35,-121,-96,-121xm301,-1321r0,188r-192,0r0,-188r192,0xm627,-1321r0,188r-193,0r0,-188r193,0","w":729},"\u00e8":{"d":"371,12v-161,0,-295,-121,-295,-329r0,-371v0,-166,131,-299,295,-299v166,0,291,129,291,299r0,270r-390,0r0,101v0,72,1,76,27,102v56,58,166,25,168,-68r195,0v2,160,-131,295,-291,295xm371,-795v-60,0,-99,38,-99,121r0,96r195,0r0,-96v0,-76,-35,-121,-96,-121xm137,-1391r187,0r157,258r-149,0","w":729},"\u00ed":{"d":"276,-975r0,975r-194,0r0,-975r194,0xm453,-1391r-195,258r-149,0r157,-258r187,0","w":358,"k":{"v":-31}},"\u00ee":{"d":"276,-975r0,975r-194,0r0,-975r194,0xm96,-1384r164,0r197,251r-183,0r-96,-145r-96,145r-182,0","w":358},"\u00ef":{"d":"276,-975r0,975r-194,0r0,-975r194,0xm133,-1321r0,188r-192,0r0,-188r192,0xm416,-1321r0,188r-193,0r0,-188r193,0","w":358},"\u00ec":{"d":"276,-975r0,975r-194,0r0,-975r194,0xm-86,-1391r186,0r158,258r-152,0","w":358},"\u00f1":{"d":"276,-881v99,-183,390,-116,390,123r0,758r-195,0r0,-686v0,-68,-35,-107,-94,-107v-59,0,-101,44,-101,107r0,686r-194,0r0,-975r194,0r0,94xm559,-1339r100,0v-1,218,-160,265,-299,151v-44,-36,-65,-45,-92,-45v-33,0,-51,27,-55,82r-100,0v4,-78,12,-110,37,-147v27,-41,77,-70,124,-70v41,0,68,12,142,61v43,29,67,41,90,41v31,0,45,-20,53,-73","w":747},"\u00f3":{"d":"76,-299r0,-389v0,-170,127,-299,297,-299v168,0,289,127,289,299r0,389v0,178,-125,311,-295,311v-168,0,-291,-131,-291,-311xm369,-186v59,0,98,-27,98,-113r0,-389v0,-66,-39,-109,-98,-109v-57,0,-99,46,-99,109r0,389v0,70,40,113,99,113xm633,-1391r-193,258r-149,0r158,-258r184,0","k":{"y":-4,"w":-8,"v":-6}},"\u00f4":{"d":"76,-299r0,-389v0,-170,127,-299,297,-299v168,0,289,127,289,299r0,389v0,178,-125,311,-295,311v-168,0,-291,-131,-291,-311xm369,-186v59,0,98,-27,98,-113r0,-389v0,-66,-39,-109,-98,-109v-57,0,-99,46,-99,109r0,389v0,70,40,113,99,113xm287,-1384r164,0r196,251r-182,0r-96,-145r-97,145r-182,0","k":{"t":-18}},"\u00f6":{"d":"76,-299r0,-389v0,-170,127,-299,297,-299v168,0,289,127,289,299r0,389v0,178,-125,311,-295,311v-168,0,-291,-131,-291,-311xm369,-186v59,0,98,-27,98,-113r0,-389v0,-66,-39,-109,-98,-109v-57,0,-99,46,-99,109r0,389v0,70,40,113,99,113xm301,-1321r0,188r-192,0r0,-188r192,0xm627,-1321r0,188r-193,0r0,-188r193,0","k":{"y":-4,"x":16,"w":-8,"v":-6,"t":-18}},"\u00f2":{"d":"76,-299r0,-389v0,-170,127,-299,297,-299v168,0,289,127,289,299r0,389v0,178,-125,311,-295,311v-168,0,-291,-131,-291,-311xm369,-186v59,0,98,-27,98,-113r0,-389v0,-66,-39,-109,-98,-109v-57,0,-99,46,-99,109r0,389v0,70,40,113,99,113xm150,-1391r186,0r158,258r-150,0","k":{"y":-4,"w":-8,"v":-6}},"\u00f5":{"d":"76,-299r0,-389v0,-170,127,-299,297,-299v168,0,289,127,289,299r0,389v0,178,-125,311,-295,311v-168,0,-291,-131,-291,-311xm369,-186v59,0,98,-27,98,-113r0,-389v0,-66,-39,-109,-98,-109v-57,0,-99,46,-99,109r0,389v0,70,40,113,99,113xm553,-1339r100,0v-6,141,-57,211,-157,211v-45,0,-85,-17,-140,-60v-47,-35,-67,-45,-94,-45v-33,0,-51,27,-55,82r-101,0v4,-78,12,-110,37,-147v27,-41,80,-70,125,-70v41,0,68,12,144,61v41,29,67,41,90,41v29,0,43,-20,51,-73"},"\u00fa":{"d":"367,-184v64,0,98,-42,98,-131r0,-660r194,0r0,975r-194,0r0,-98v-49,78,-102,110,-180,110v-76,0,-148,-42,-185,-108v-20,-39,-24,-62,-24,-146r0,-733r194,0r0,660v0,53,3,64,13,82v14,31,47,49,84,49xm641,-1391r-192,258r-152,0r158,-258r186,0","w":741},"\u00fb":{"d":"367,-184v64,0,98,-42,98,-131r0,-660r194,0r0,975r-194,0r0,-98v-49,78,-102,110,-180,110v-76,0,-148,-42,-185,-108v-20,-39,-24,-62,-24,-146r0,-733r194,0r0,660v0,53,3,64,13,82v14,31,47,49,84,49xm287,-1384r164,0r196,251r-182,0r-96,-145r-97,145r-182,0","w":741},"\u00fc":{"d":"367,-184v64,0,98,-42,98,-131r0,-660r194,0r0,975r-194,0r0,-98v-49,78,-102,110,-180,110v-76,0,-148,-42,-185,-108v-20,-39,-24,-62,-24,-146r0,-733r194,0r0,660v0,53,3,64,13,82v14,31,47,49,84,49xm301,-1321r0,188r-192,0r0,-188r192,0xm627,-1321r0,188r-193,0r0,-188r193,0","w":741},"\u00f9":{"d":"367,-184v64,0,98,-42,98,-131r0,-660r194,0r0,975r-194,0r0,-98v-49,78,-102,110,-180,110v-76,0,-148,-42,-185,-108v-20,-39,-24,-62,-24,-146r0,-733r194,0r0,660v0,53,3,64,13,82v14,31,47,49,84,49xm133,-1391r186,0r158,258r-149,0","w":741},"\u00fd":{"d":"682,-975r-281,1139v-44,167,-140,235,-325,225r0,-184v101,4,133,-8,160,-113r34,-131r-270,-936r207,0r135,606r135,-606r205,0xm610,-1391r-192,258r-152,0r158,-258r186,0","w":702,"k":{".":39,",":45}},"\u00ff":{"d":"682,-975r-281,1139v-44,167,-140,235,-325,225r0,-184v101,4,133,-8,160,-113r34,-131r-270,-936r207,0r135,606r135,-606r205,0xm283,-1321r0,188r-193,0r0,-188r193,0xm608,-1321r0,188r-192,0r0,-188r192,0","w":702},"\u20ac":{"d":"150,-862r0,-185v0,-199,121,-331,303,-331v102,0,161,28,235,110r-63,256v-55,-143,-90,-182,-162,-182v-74,0,-117,53,-117,147r0,185r240,0r-39,147r-201,0r0,68r182,0r-39,147r-143,0v3,77,-9,232,14,269v24,38,66,63,115,63v63,0,99,-31,150,-129r0,260v-66,39,-99,49,-162,49v-104,0,-209,-49,-258,-114v-59,-77,-56,-248,-55,-398r-121,0r39,-147r82,0r0,-68r-121,0r39,-147r82,0"},"\u00ad":{"d":"598,-635r0,195r-584,0r0,-195r584,0","w":612},"\u00a0":{"w":409}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (C) 2004 Hoefler & Frere-Jones Typography, Inc. www.typography.com
 */
Cufon.registerFont({"w":76,"face":{"font-family":"Whitney","font-weight":200,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 3 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-12 -288 352 72","underline-thickness":"7.2","underline-position":"-47.88","stemh":"15","stemv":"17","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":82},"\u00d7":{"d":"9,72r0,-360r162,0r0,360r-162,0","w":180},"!":{"d":"58,-248r-6,181r-9,3r-6,-184r21,0xm58,0r-21,0r0,-29r21,0r0,29","w":95},"\"":{"d":"106,-243r-7,66r-9,-2r-7,-64r23,0xm49,-243r-6,66r-10,-2r-6,-64r22,0","w":132},"#":{"d":"70,-67r-11,70r-13,-3r10,-67r-39,0r0,-15r42,0r12,-80r-45,0r-2,-14r49,0r11,-68r14,0r-11,68r72,0r11,-70r14,3r-11,67r40,0r0,14r-42,0r-13,80r45,0r2,15r-49,0r-11,68r-14,0r11,-68r-72,0xm85,-162r-12,80r71,0r13,-80r-72,0","w":229},"$":{"d":"123,-243v14,2,27,6,38,10r-3,16v-11,-5,-24,-8,-37,-11r-15,96v45,17,64,33,64,66v0,43,-34,70,-85,67r-7,44r-12,-3r6,-42v-18,-3,-34,-8,-49,-14r3,-16v14,7,31,13,49,16r16,-107v-40,-14,-63,-28,-63,-63v-1,-39,35,-66,83,-60r4,-28r13,3xm87,-13v42,3,69,-20,68,-51v0,-24,-11,-39,-51,-53xm109,-230v-38,-6,-65,16,-65,45v0,26,16,36,50,49","w":195},"%":{"d":"131,-180v0,40,-23,66,-53,66v-31,0,-54,-26,-54,-66v0,-40,23,-66,54,-66v30,0,53,26,53,66xm240,-243r-156,246r-14,-4r156,-245xm115,-180v0,-30,-15,-53,-38,-53v-23,0,-37,23,-37,53v0,30,15,52,38,52v23,0,37,-22,37,-52xm287,-63v0,40,-23,66,-53,66v-31,0,-54,-26,-54,-66v0,-40,23,-66,54,-66v30,0,53,26,53,66xm271,-63v0,-30,-15,-53,-38,-53v-23,0,-37,23,-37,53v0,30,15,53,38,53v23,0,37,-23,37,-53","w":311},"&":{"d":"238,-2r-18,4r-43,-43v-21,29,-49,45,-82,45v-46,0,-76,-30,-76,-68v0,-39,26,-61,61,-76v-45,-37,-33,-112,35,-112v21,0,40,6,57,16r-4,17v-34,-27,-97,-25,-97,22v0,19,8,31,28,52r76,78v10,-20,18,-45,23,-78r17,4v-6,35,-16,64,-29,86xm166,-52r-75,-76v-70,16,-74,114,4,116v27,0,52,-12,71,-40","w":246},"'":{"d":"49,-243r-6,66r-10,-2r-6,-64r22,0"},"(":{"d":"122,31r-18,4v-44,-39,-77,-84,-77,-146v0,-64,32,-113,91,-151r3,16v-105,65,-96,207,1,277","w":141},")":{"d":"114,-114v0,64,-32,112,-91,150r-3,-15v106,-65,96,-207,-1,-278r18,-3v44,39,77,84,77,146","w":141},"*":{"d":"128,-209r-44,18r25,42r-4,2r-31,-37r-32,37r-3,-2r24,-42r-43,-18r1,-5r46,11r4,-48r5,0r4,48r46,-11","w":147},"+":{"d":"183,-115r-73,0r0,74r-15,0r0,-74r-73,0r0,-14r73,0r0,-73r15,0r0,73r73,0r0,14","w":204},",":{"d":"54,-29r-32,77r-9,-2r19,-75r22,0"},"-":{"d":"110,-93r-86,0r0,-18r86,0r0,18","w":133},".":{"d":"49,0r-22,0r0,-29r22,0r0,29"},"\/":{"d":"173,-247r-170,291r-15,-3r170,-291","w":180},"0":{"d":"197,-122v0,75,-33,127,-87,127v-54,0,-86,-52,-86,-126v0,-74,33,-127,87,-127v54,0,86,52,86,126xm179,-122v0,-64,-23,-111,-68,-111v-45,0,-69,47,-69,111v0,64,24,112,69,112v45,0,68,-48,68,-112","w":220},"1":{"d":"86,0r-17,0r0,-225r-54,22r-2,-14v25,-8,41,-27,73,-28r0,245","w":127},"2":{"d":"169,0r-149,0r0,-12r89,-96v29,-32,38,-50,38,-75v0,-65,-87,-59,-118,-21r-3,-17v37,-42,144,-35,139,37v-4,67,-86,121,-122,169r124,0","w":192},"3":{"d":"113,-130v88,19,57,135,-27,135v-27,0,-50,-8,-67,-19r3,-18v39,36,126,27,126,-33v0,-36,-31,-59,-85,-56r-1,-15v48,3,81,-17,81,-52v0,-56,-87,-54,-117,-21r-3,-17v40,-37,138,-26,138,38v0,33,-23,50,-48,58","w":191},"4":{"d":"201,-60r-42,0r0,60r-16,0r0,-60r-127,0r0,-11r122,-174r21,0r0,171r42,0r0,14xm143,-74r0,-152r-107,152r107,0","w":214},"5":{"d":"171,-74v0,75,-97,96,-150,61r2,-17v43,32,130,27,130,-43v0,-56,-70,-68,-111,-47r-10,-3r9,-120r118,0r2,15r-106,0r-6,90v54,-20,122,3,122,64","w":194},"6":{"d":"44,-120v49,-43,141,-30,141,47v0,48,-32,78,-76,78v-49,0,-84,-42,-84,-104v0,-81,48,-127,123,-150r2,17v-64,19,-99,56,-106,112xm42,-103v-1,54,27,93,67,93v36,0,58,-26,58,-63v0,-68,-87,-68,-125,-30","w":205},"7":{"d":"171,-231r-104,234r-16,-4r100,-227r-129,0r-2,-15r151,0r0,12","w":192},"8":{"d":"114,-133v57,-19,60,-98,-9,-100v-35,0,-54,23,-54,45v0,26,14,40,63,55xm94,-123v-69,18,-72,113,10,113v32,0,61,-20,61,-52v0,-28,-16,-43,-71,-61xm78,-129v-25,-11,-45,-29,-45,-59v0,-33,30,-60,72,-60v42,0,70,27,70,59v0,29,-19,48,-45,62v33,13,53,33,53,65v0,39,-35,67,-79,67v-48,0,-80,-28,-80,-65v0,-31,20,-53,54,-69","w":206},"9":{"d":"162,-119v-52,41,-141,27,-141,-51v0,-44,29,-78,76,-78v50,0,84,41,84,103v0,81,-49,129,-126,150r-3,-16v66,-15,102,-53,110,-108xm164,-137v2,-57,-27,-96,-67,-96v-37,0,-58,27,-58,63v0,70,84,72,125,33","w":205},":":{"d":"50,-140r-21,0r0,-29r21,0r0,29xm50,0r-21,0r0,-29r21,0r0,29","w":79},";":{"d":"53,-140r-22,0r0,-29r22,0r0,29xm51,-29r-32,77r-9,-2r20,-75r21,0","w":79},"<":{"d":"176,-34r-155,-81r0,-14r155,-81r0,17r-137,71r137,71r0,17","w":204},"=":{"d":"193,-153r-164,0r0,-15r164,0r0,15xm193,-75r-164,0r0,-15r164,0r0,15","w":221},">":{"d":"184,-115r-156,81r0,-16r138,-71r-138,-72r0,-17r156,81r0,14","w":204},"?":{"d":"153,-194v0,36,-24,55,-63,77r-4,50r-11,3r-4,-60v42,-20,65,-44,64,-69v-3,-57,-83,-54,-115,-20r-2,-17v38,-36,135,-31,135,36xm91,0r-22,0r0,-29r22,0r0,29","w":173},"@":{"d":"180,-71r10,-67v-44,-20,-83,14,-83,70v0,58,43,37,73,-3xm178,-53v-18,22,-32,33,-50,33v-20,0,-36,-18,-36,-48v0,-69,58,-108,114,-79r-13,92v0,14,7,26,26,26v26,0,52,-29,52,-85v0,-63,-36,-101,-103,-101v-76,0,-136,59,-136,149v0,104,105,128,183,90r1,9v-19,10,-49,17,-80,17v-72,0,-114,-41,-114,-116v0,-94,64,-158,148,-158v72,0,112,42,112,109v0,62,-32,96,-65,96v-24,0,-38,-14,-39,-34","w":304},"A":{"d":"233,-1r-17,4r-35,-88r-113,0r-33,85r-18,0r99,-250r18,0xm176,-100r-51,-130r-51,130r102,0","w":249},"B":{"d":"126,-132v86,23,52,140,-35,132r-55,0r0,-248v64,-5,129,4,129,60v0,27,-16,47,-39,56xm148,-188v0,-41,-47,-49,-95,-45r0,95v51,5,95,-9,95,-50xm159,-69v0,-52,-51,-57,-106,-54r0,108v55,4,106,-6,106,-54","w":197},"C":{"d":"211,-21v-74,59,-188,10,-188,-103v0,-106,104,-163,184,-107r-4,18v-68,-57,-162,-9,-162,88v0,102,99,146,167,88","w":234},"D":{"d":"228,-125v-1,102,-81,136,-192,125r0,-248v112,-10,193,23,192,123xm210,-124v0,-89,-64,-117,-157,-109r0,218v93,7,157,-18,157,-109","w":251},"E":{"d":"165,0r-129,0r0,-248r126,0r0,15r-109,0r0,95r87,0r3,16r-90,0r0,107r112,0r0,15","w":181},"F":{"d":"157,-233r-104,0r0,99r84,0r3,16r-87,0r0,118r-17,0r0,-248r121,0r0,15","w":171},"G":{"d":"217,-21v-80,60,-194,10,-194,-103v0,-108,105,-162,184,-107r-3,18v-65,-55,-163,-13,-163,89v0,94,87,142,158,95r0,-82r-61,0r-3,-15r82,0r0,105","w":248},"H":{"d":"219,0r-18,0r0,-122r-148,0r0,122r-17,0r0,-248r17,0r0,110r148,0r0,-110r18,0r0,248","w":254},"I":{"d":"56,0r-17,0r0,-248r17,0r0,248","w":95},"J":{"d":"94,-60v0,50,-35,69,-80,60r-3,-17v34,11,66,0,66,-41r0,-190r17,0r0,188","w":129},"K":{"d":"209,-2r-20,5r-136,-133r0,130r-17,0r0,-248r17,0r0,114r126,-114r23,0r-129,115","w":217},"L":{"d":"157,0r-121,0r0,-248r17,0r0,233r101,0","w":167},"M":{"d":"298,0r-17,0r-17,-224r-93,225r-14,0r-93,-225r-16,224r-17,0r20,-248r21,0r93,227r92,-227r21,0","w":328},"N":{"d":"219,0r-14,0r-152,-222r0,222r-17,0r0,-248r18,0r148,216r0,-216r17,0r0,248","w":254},"O":{"d":"244,-125v0,76,-46,130,-110,130v-64,0,-111,-54,-111,-129v0,-76,47,-129,111,-129v64,0,110,53,110,128xm226,-124v0,-67,-37,-114,-92,-114v-55,0,-93,47,-93,113v0,67,38,114,93,114v55,0,92,-47,92,-113","w":267},"P":{"d":"173,-180v-1,59,-54,77,-120,72r0,108r-17,0r0,-248v70,-4,139,2,137,68xm155,-179v0,-49,-47,-58,-102,-54r0,110v55,4,102,-5,102,-56","w":190},"Q":{"d":"244,-125v0,68,-37,119,-93,128r84,32r-3,18v-86,-44,-210,-46,-209,-177v0,-76,47,-129,111,-129v64,0,110,53,110,128xm226,-123v0,-68,-37,-115,-92,-115v-55,0,-93,46,-93,114v0,68,38,114,93,114v55,0,92,-46,92,-113","w":268},"R":{"d":"155,-182v0,-48,-49,-55,-102,-51r0,104v54,3,102,-4,102,-53xm109,-116r84,115r-18,4r-85,-117r-37,0r0,114r-17,0r0,-248v69,-4,137,1,137,65v0,39,-29,61,-64,67","w":203},"S":{"d":"163,-64v0,68,-95,81,-139,52r3,-18v32,25,118,26,118,-33v0,-26,-14,-41,-52,-57v-48,-21,-65,-37,-65,-72v0,-56,80,-72,121,-47r-2,17v-31,-24,-101,-17,-101,30v0,26,14,37,53,54v44,19,64,38,64,74","w":184},"T":{"d":"193,-233r-81,0r0,233r-17,0r0,-233r-82,0r0,-15r178,0","w":203},"U":{"d":"212,-94v0,58,-34,98,-91,98v-57,0,-90,-41,-90,-96r0,-156r17,0v6,96,-30,237,73,236v47,0,74,-32,74,-81r0,-155r17,0r0,154","w":242},"V":{"d":"229,-248r-99,249r-16,0r-97,-248r17,-4r89,232r88,-229r18,0","w":245},"W":{"d":"352,-248r-75,249r-16,0r-76,-226r-74,226r-16,0r-75,-248r17,-4r67,225r73,-222r18,0r74,222r66,-222r17,0","w":371},"X":{"d":"104,-130r-80,-116r16,-4r74,108r71,-106r19,0r-81,118r88,128r-16,4r-81,-120r-79,118r-19,0","w":228},"Y":{"d":"209,-248r-89,141r0,107r-17,0r0,-107r-88,-140r17,-4r80,130r78,-127r19,0","w":223},"Z":{"d":"198,0r-175,0r0,-12r152,-222r-142,0r-2,-14r165,0r0,11r-151,222r150,0","w":219},"[":{"d":"123,38r-85,0r0,-286r84,0r0,14r-68,0r0,258r67,0","w":145},"\\":{"d":"193,41r-16,3r-169,-291r15,-3","w":180},"]":{"d":"108,38r-84,0r0,-14r67,0r0,-258r-66,0r-2,-14r85,0r0,286","w":145},"^":{"d":"127,-200r-9,2r-36,-33v-16,10,-21,31,-46,32r39,-53r15,0","w":164},"_":{"d":"170,38r-169,0r0,-15r169,0r0,15","w":171},"`":{"d":"111,-199r-13,0r-49,-50r24,-6","w":164},"a":{"d":"145,0r-11,0r-4,-23v-31,34,-111,43,-111,-18v0,-38,29,-58,110,-66v9,-61,-57,-57,-96,-35r-2,-16v40,-22,114,-23,114,36r0,122xm129,-38r0,-55v-70,8,-93,22,-93,50v0,51,66,32,93,5","w":173},"b":{"d":"169,-89v0,88,-74,106,-139,80r0,-245r17,-3r0,112v38,-50,122,-31,122,56xm152,-89v0,-78,-70,-86,-105,-37r0,105v51,19,105,4,105,-68","w":188},"c":{"d":"150,-17v-51,44,-131,16,-131,-68v0,-83,77,-110,130,-69r-3,17v-44,-41,-110,-19,-110,52v0,69,66,97,112,52","w":167},"d":{"d":"159,0r-12,0r-4,-25v-38,51,-126,33,-124,-55v2,-82,62,-108,124,-83r0,-91r16,-3r0,257xm143,-43r0,-103v-50,-25,-106,-9,-106,65v0,77,71,88,106,38","w":189},"e":{"d":"91,-173v44,0,66,39,65,88r-120,0v-6,76,75,94,117,48r2,16v-49,48,-136,24,-136,-64v0,-54,31,-88,72,-88xm138,-99v-1,-33,-17,-60,-47,-60v-32,0,-50,25,-54,60r101,0","w":174},"f":{"d":"97,-241v-21,-4,-41,2,-41,28r0,44r36,0r2,14r-38,0r0,155r-16,0r0,-155r-27,0r0,-14r27,0v-3,-50,0,-99,54,-88","w":103},"g":{"d":"87,-15v-29,-14,-60,18,-60,34v0,21,27,31,60,31v36,0,61,-14,61,-33v4,-17,-30,-28,-61,-32xm129,-116v0,-24,-19,-43,-46,-43v-27,0,-43,18,-43,43v0,24,17,44,44,44v28,0,45,-19,45,-44xm125,-158r42,-14r3,19r-36,4v31,42,-9,105,-66,88v-10,5,-14,10,-14,14v0,8,8,12,40,17v37,6,71,17,71,44v0,31,-35,50,-79,50v-79,0,-104,-62,-35,-90v-22,-11,-17,-29,3,-40v-19,-9,-32,-27,-32,-50v-1,-53,68,-73,103,-42","w":180},"h":{"d":"159,0r-16,0r0,-118v-4,-58,-66,-44,-96,-9r0,127r-17,0r0,-254r17,-3r0,113v34,-41,112,-42,112,24r0,120","w":187},"i":{"d":"55,-230v0,8,-6,15,-14,15v-8,0,-15,-7,-15,-15v0,-8,7,-14,15,-14v8,0,14,6,14,14xm49,0r-17,0r0,-169r17,0r0,169","w":81},"j":{"d":"55,-230v0,8,-6,15,-14,15v-8,0,-15,-7,-15,-15v0,-8,7,-14,15,-14v8,0,14,6,14,14xm49,30v-1,29,-21,37,-46,33r-3,-15v18,3,33,1,32,-20r0,-197r17,0r0,199","w":81},"k":{"d":"157,-2r-19,5r-91,-94r0,91r-17,0r0,-254r17,-3r0,162r81,-74r23,0r-85,76","w":163},"l":{"d":"49,0r-17,0r0,-254r17,-3r0,257","w":81},"m":{"d":"268,0r-17,0r0,-118v-3,-59,-63,-42,-94,-9r0,127r-16,0r0,-118v-3,-58,-63,-43,-94,-10r0,128r-17,0r0,-169r12,0r4,24v30,-32,94,-42,108,3v34,-41,114,-46,114,22r0,120","w":295},"n":{"d":"159,0r-16,0r0,-118v-4,-58,-66,-44,-96,-9r0,127r-17,0r0,-169r12,0r4,25v35,-40,113,-42,113,25r0,119","w":187},"o":{"d":"168,-85v0,56,-34,89,-75,89v-42,0,-74,-33,-74,-89v0,-56,33,-88,74,-88v42,0,75,32,75,88xm150,-85v0,-42,-20,-73,-57,-73v-37,0,-57,29,-57,73v0,42,21,74,57,74v37,0,57,-30,57,-74","w":186},"p":{"d":"170,-89v-2,82,-61,105,-123,83r0,68r-17,3r0,-234r12,0r4,24v39,-50,126,-31,124,56xm152,-89v0,-78,-71,-86,-105,-37r0,103v51,23,105,8,105,-66","w":189},"q":{"d":"159,62r-17,3r0,-89v-38,50,-123,31,-123,-56v0,-88,76,-108,140,-80r0,222xm142,-43r0,-106v-51,-19,-105,-6,-105,68v0,77,70,88,105,38","w":188},"r":{"d":"110,-157v-28,2,-51,23,-63,46r0,111r-17,0r0,-169r11,0r5,35v13,-19,33,-39,61,-39","w":119},"s":{"d":"138,-45v0,55,-85,56,-121,33r4,-17v25,19,99,30,100,-14v0,-18,-10,-31,-47,-37v-72,-13,-66,-92,4,-92v19,0,36,4,50,11r-3,16v-26,-18,-88,-17,-86,16v0,16,10,24,40,32v39,10,59,24,59,52","w":156},"t":{"d":"101,-1v-27,10,-63,3,-63,-35r0,-119r-26,0r0,-14r26,0r0,-60r17,-4r0,64r41,0r2,14r-43,0r0,116v-3,27,21,30,43,25","w":116},"u":{"d":"157,0r-12,0r-4,-26v-35,41,-113,44,-113,-24r0,-119r17,0r0,118v3,58,65,43,95,9r0,-127r17,0r0,169","w":187},"v":{"d":"156,-169r-65,171r-15,0r-63,-169r17,-4r54,152r54,-150r18,0","w":168},"w":{"d":"252,-169r-57,171r-16,0r-46,-148r-46,148r-15,0r-58,-170r17,-4r49,153r46,-151r15,0r47,151r47,-150r17,0","w":264},"x":{"d":"154,-1r-16,4r-54,-78r-51,75r-19,0r61,-87r-57,-81r17,-4r49,72r48,-69r19,0r-57,81","w":168},"y":{"d":"159,-169r-74,195v-11,31,-24,41,-53,37r-3,-14v34,7,40,-24,50,-48r-66,-168r17,-4r57,152r54,-150r18,0","w":171},"z":{"d":"144,0r-127,0r0,-13r105,-142r-97,0r-2,-14r119,0r0,12r-106,143r105,0","w":160},"{":{"d":"144,38v-45,3,-85,-5,-80,-47v5,-43,9,-100,-45,-89r-2,-14v30,1,51,-4,51,-39v0,-48,-11,-101,47,-97r27,0r0,14v-33,-2,-66,1,-62,33v6,40,10,94,-32,96v41,2,38,56,32,97v-5,31,28,34,61,32","w":166},"|":{"d":"56,66r-15,3r0,-327r15,-2r0,326","w":96},"}":{"d":"150,-99v-31,-2,-51,5,-51,40v0,49,10,100,-48,97r-27,0r0,-14v33,2,67,-1,63,-33v-5,-39,-11,-94,31,-96v-41,-2,-37,-57,-31,-97v5,-32,-29,-34,-62,-32r-2,-14v45,-3,84,4,80,46v-5,44,-9,100,45,90","w":166},"~":{"d":"22,-84v7,-57,50,-24,77,-15v6,0,11,-6,14,-19r12,2v-7,57,-50,24,-77,15v-6,0,-11,6,-14,19","w":146},"\u2122":{"d":"261,-124r-13,0r-8,-103r-41,103r-11,0r-40,-103r-8,103r-13,0r10,-124r16,0r41,109r42,-109r16,0xm106,-236r-39,0r0,112r-13,0r0,-112r-40,0r0,-12r90,0","w":288},"\u2026":{"d":"211,0r-22,0r0,-29r22,0r0,29xm131,0r-22,0r0,-29r22,0r0,29xm51,0r-22,0r0,-29r22,0r0,29","w":239},"\u2013":{"d":"142,-93r-120,0r0,-17r120,0r0,17","w":164},"\u2014":{"d":"307,-93r-285,0r0,-17r285,0r0,17","w":329},"\u201c":{"d":"57,-248r-14,75r-22,0r27,-77xm114,-248r-14,75r-22,0r26,-77","w":133},"\u201d":{"d":"55,-248r-26,77r-10,-3r14,-74r22,0xm112,-248r-26,77r-10,-3r14,-74r22,0","w":133},"\u2018":{"d":"57,-248r-14,75r-22,0r27,-77"},"\u2019":{"d":"55,-248r-26,77r-10,-3r14,-74r22,0"},"\u00a0":{"w":82}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1991 Emigre Graphics
 */
Cufon.registerFont({"w":178,"face":{"font-family":"MatrixScriptRegularLining","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-45.1518 -281 272 61.3444","underline-thickness":"15","underline-position":"-22.5","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":84},"!":{"d":"73,-216v13,0,22,12,18,26r-35,137r-8,0r0,-137v0,-13,12,-26,25,-26xm49,-34v16,0,20,22,8,31v-11,12,-33,2,-29,-13v2,-9,11,-18,21,-18","w":97},"\"":{"d":"99,-210v10,-13,36,-4,29,14r-21,52r-6,0v0,-22,-15,-50,-2,-66xm46,-210v10,-13,36,-4,29,14r-21,52r-6,0v0,-22,-15,-50,-2,-66","w":128},"#":{"d":"119,-181r-8,21r-15,0r-10,32r15,0r-8,21r-14,0r-11,33r-13,0r11,-33r-22,0r-12,33r-12,0r11,-33r-16,0r8,-21r15,0r11,-32r-16,0r8,-21r15,0r11,-32r13,0r-12,32r23,0r11,-32r13,0r-11,32r15,0xm84,-160r-23,0r-10,32r22,0","w":108},"$":{"d":"100,-201v30,-2,48,47,14,51v-19,2,-20,-25,-5,-30v-23,-21,-68,14,-37,36v20,22,60,35,57,74v-2,26,-24,47,-54,46r-5,38r-14,0r6,-38v-22,-2,-41,-23,-37,-48v3,-17,40,-26,37,2v-1,11,-9,14,-17,18v15,29,77,7,54,-27v-18,-26,-62,-34,-62,-77v0,-26,22,-42,49,-45r6,-42r14,0","w":150},"%":{"d":"32,-165v1,-70,102,-42,168,-47r-168,217r-6,-6r124,-199r-49,0v18,28,-5,70,-37,70v-19,0,-32,-16,-32,-35xm98,-34v-5,-47,76,-68,76,-12v3,49,-76,68,-76,12xm71,-143v25,2,37,-53,8,-56v-25,-1,-36,51,-8,56xm137,-12v25,2,37,-52,8,-56v-25,-1,-37,53,-8,56","w":193},"&":{"d":"96,-17v36,-2,60,-32,62,-70v-19,-2,-34,4,-34,22r-7,0v-1,-39,26,-54,70,-49v12,1,19,-10,19,-22r7,0v-2,26,-13,50,-41,49v-4,51,-37,89,-89,90v-36,0,-67,-22,-63,-61v2,-27,30,-51,56,-55v-19,-4,-35,-25,-33,-48v4,-44,76,-72,114,-44v10,7,14,17,14,29r-12,5v-4,-18,-17,-25,-36,-26v-49,-5,-64,71,-17,79r3,0v-2,5,-1,13,-4,17v-25,2,-51,20,-51,48v0,20,21,37,42,36","w":214},"'":{"d":"46,-210v10,-13,36,-4,29,14r-21,52r-6,0v0,-22,-15,-50,-2,-66","w":76},"(":{"d":"122,-237v-60,51,-94,187,-36,261r-5,7v-65,-37,-71,-155,-23,-218v16,-21,36,-40,62,-56","w":101},")":{"d":"35,-243v65,34,70,156,23,217v-16,21,-35,41,-61,57r-3,-7v61,-49,94,-185,36,-261","w":101},"*":{"d":"109,-160v13,3,8,21,-3,21v-13,-4,-20,-20,-29,-29v0,16,14,45,-7,48v-8,1,-9,-8,-7,-15r14,-33v-13,9,-21,25,-38,29v-11,-2,-11,-16,3,-20r35,-9v-13,-6,-37,-4,-41,-18v0,-9,14,-15,20,-7r21,25v-1,-16,-14,-44,6,-48v21,6,-3,34,-6,48v12,-9,22,-24,38,-29v13,3,9,18,-4,21r-34,8","w":121},"+":{"d":"114,-76r-38,0r-6,39r-16,0r6,-39r-38,0r3,-17r37,0r5,-38r17,0r-6,38r38,0","w":129},",":{"d":"37,-35v23,0,17,29,6,41v-9,9,-21,19,-38,28v-5,-10,22,-18,23,-32v-14,-3,-16,-23,-5,-32v4,-4,9,-5,14,-5","w":93},"-":{"d":"99,-76r-79,0r2,-16r79,0","w":112},".":{"d":"14,-14v-1,-24,41,-30,38,-2v0,20,-38,26,-38,2","w":93},"\/":{"d":"181,-212r-167,215r-8,-6r128,-209r47,0","w":156},"0":{"d":"181,-132v0,67,-34,135,-92,135v-43,0,-63,-41,-63,-86v1,-65,36,-131,94,-133v42,-1,62,39,61,84xm101,-18v54,0,80,-104,53,-159v-6,-12,-16,-18,-28,-18v-44,0,-64,62,-64,113v0,32,12,64,39,64","w":191},"1":{"d":"41,-191v22,3,38,-9,41,-25r11,0r-30,216r-31,0r25,-177r-18,0","w":114},"2":{"d":"31,-171v6,-57,131,-64,121,8v-5,40,-24,50,-55,81r-52,51r93,0r-4,31r-125,0r1,-8r69,-80v18,-22,35,-46,39,-76v3,-29,-35,-47,-58,-27v25,7,11,41,-11,41v-11,0,-19,-9,-18,-21","w":164},"3":{"d":"110,-113v72,24,28,117,-37,117v-34,0,-61,-20,-60,-53r13,-4v4,57,86,39,88,-6v1,-26,-15,-42,-38,-42r2,-17v43,3,62,-82,8,-82v-7,0,-12,3,-18,6v20,10,1,40,-16,37v-28,-3,-19,-36,3,-48v39,-22,107,-8,99,43v-4,23,-23,42,-44,49","w":166},"4":{"d":"144,-60r-22,0r-9,60r-30,0r9,-60r-84,0r2,-10v46,-41,78,-83,101,-145r40,0v-18,46,-74,116,-113,139r56,0r4,-31r30,0r-4,31r23,0","w":166},"5":{"d":"146,-73v1,44,-33,75,-76,76v-28,0,-60,-21,-54,-52v4,-19,47,-25,42,4v-2,9,-9,18,-19,19v22,30,79,8,79,-34v0,-35,-41,-51,-79,-40r16,-112r100,0r-4,30r-85,0r-7,46v47,-1,87,20,87,63","w":163},"6":{"d":"163,-76v-3,48,-32,79,-77,80v-41,1,-62,-34,-59,-79v5,-68,39,-134,99,-142v40,-6,58,53,18,57v-22,2,-21,-35,-2,-39v-47,-12,-67,40,-76,89v26,-35,101,-21,97,34xm102,-112v-31,1,-47,21,-45,57v1,27,8,44,31,44v27,0,42,-30,42,-60v-1,-21,-8,-42,-28,-41","w":180},"7":{"d":"165,-212v-35,56,-78,146,-91,212r-36,0v18,-67,53,-116,96,-182r-85,0r-5,33r-12,0r8,-63r125,0","w":150},"8":{"d":"119,-117v18,15,32,31,32,59v0,67,-135,91,-131,9v1,-24,25,-46,49,-59v-15,-13,-28,-29,-28,-52v0,-59,117,-81,117,-15v0,27,-19,43,-39,58xm105,-124v18,-14,33,-25,34,-50v0,-16,-13,-28,-30,-27v-34,0,-52,45,-21,66v4,3,10,7,17,11xm76,-11v41,0,57,-52,24,-75v-4,-3,-10,-7,-18,-11v-23,13,-42,23,-42,52v0,20,15,34,36,34","w":170},"9":{"d":"167,-145v-2,74,-38,143,-99,149v-26,3,-45,-15,-40,-40v3,-19,47,-22,39,6v2,9,-23,18,-9,19v45,4,60,-44,71,-91v-27,34,-97,22,-97,-35v0,-47,33,-78,77,-79v38,0,58,31,58,71xm93,-100v32,-1,46,-24,45,-58v-1,-27,-8,-44,-32,-44v-26,0,-41,30,-41,61v1,20,7,41,28,41","w":180},":":{"d":"49,-131v17,-1,21,23,9,32v-11,13,-33,2,-30,-13v1,-9,11,-19,21,-19xm36,-35v18,-2,21,23,9,32v-21,18,-43,-12,-23,-27v4,-4,9,-5,14,-5","w":93},";":{"d":"49,-131v17,-1,21,23,9,32v-11,13,-33,2,-30,-13v1,-9,11,-19,21,-19xm37,-35v23,0,17,29,6,41v-9,9,-21,19,-38,28v-5,-10,22,-18,23,-32v-14,-3,-16,-23,-5,-32v4,-4,9,-5,14,-5","w":93},"<":{"d":"89,-152r-44,76r8,75r-31,-75","w":105},"=":{"d":"102,-99r-79,0r2,-17r80,0xm96,-53r-80,0r3,-17r79,0","w":112},">":{"d":"49,-152r33,76r-69,75r44,-75","w":105},"?":{"d":"114,-216v59,0,78,70,33,98v-1,6,-90,37,-53,58r-4,6v-30,-5,-25,-39,-3,-56v18,-14,49,-29,49,-55v0,-51,-84,-30,-93,7r-12,-4v9,-27,46,-54,83,-54xm83,-34v16,-1,20,23,9,32v-20,17,-41,-11,-23,-26v4,-4,9,-6,14,-6","w":174},"@":{"d":"125,-172v47,-1,81,30,83,75v2,43,-50,101,-90,100v-13,0,-19,-12,-16,-26v-7,13,-24,25,-40,26v-24,0,-35,-28,-31,-54v-3,-48,65,-108,86,-49v0,-14,10,-33,25,-23v4,34,-16,70,-18,107v0,4,2,6,6,6v23,-2,49,-51,49,-80v0,-71,-96,-83,-133,-38r-2,-5v18,-20,48,-39,81,-39xm73,-13v27,-5,47,-56,33,-88v-3,-6,-7,-9,-12,-9v-23,5,-36,38,-37,67v0,15,4,29,16,30","w":225},"A":{"d":"167,0r-59,0r2,-15r13,0r-9,-46r-71,0r-22,46r17,0r-2,15r-47,0r2,-15r13,0r95,-197r17,0r39,197r15,0xm111,-75r-18,-90r-43,90r61,0","w":173,"k":{"y":6,"Y":12,"W":9,"V":21,"T":9}},"B":{"d":"119,-109v24,6,42,27,38,56v-7,55,-80,56,-146,53r2,-15r15,0r26,-183r-15,0r1,-14v59,0,129,-10,121,56v-2,19,-24,43,-42,47xm72,-115v58,17,81,-78,28,-83r-16,0xm58,-15v40,4,68,-9,69,-45v1,-30,-22,-45,-57,-40","w":171,"k":{"Y":9}},"C":{"d":"127,-216v28,-1,46,14,46,41v0,25,-43,31,-43,3v0,-12,8,-20,17,-23v-2,-3,-6,-5,-13,-5v-49,4,-75,61,-78,118v-3,53,42,83,83,60r4,12v-56,34,-124,-5,-120,-76v4,-66,42,-128,104,-130","w":159},"D":{"d":"182,-127v0,68,-40,127,-101,127r-70,0r2,-15r15,0r26,-183r-15,0r1,-14r71,0v45,-1,71,38,71,85xm58,-15v68,6,89,-51,91,-116v1,-45,-17,-73,-65,-67","w":190,"k":{"Y":9,"W":6,"V":12,"A":6}},"E":{"d":"93,-17v28,-1,47,-17,56,-39r12,5v-10,63,-150,79,-143,-7v3,-27,30,-51,56,-55v-19,-6,-36,-25,-33,-49v4,-32,41,-55,77,-54v27,-1,56,13,52,40v-3,17,-26,30,-39,15v-10,-11,0,-32,11,-34v-39,-22,-89,29,-59,66v6,7,16,9,26,11v-3,5,1,17,-7,17v-25,1,-50,20,-50,48v0,20,20,37,41,36","w":168},"F":{"d":"154,-173r-14,0r4,-25r-60,0r-11,77r57,0r-1,15r-58,0r-13,91r15,0r-2,15r-60,0r2,-15r15,0r26,-183r-15,0r1,-14r120,0","w":139,"k":{".":18,",":18}},"G":{"d":"58,-86v0,44,26,91,67,67r10,-69r-25,0r2,-14r55,0r-12,88v-16,10,-35,18,-60,17v-51,0,-74,-43,-72,-99v3,-75,78,-152,152,-106r-7,13v-62,-35,-110,36,-110,103","w":179,"k":{"Y":9}},"H":{"d":"172,0r-60,0r2,-15r15,0r13,-93r-72,0r-12,93r15,0r-3,15r-60,0r2,-15r15,0r26,-183r-15,0r2,-14r60,0r-2,14r-15,0r-10,76r71,0r11,-76r-15,0r2,-14r60,0r-2,14r-15,0r-25,183r15,0","w":197},"I":{"d":"73,0r-60,0r2,-15r15,0r26,-183r-16,0r2,-14r61,0r-2,14r-15,0r-26,183r15,0","w":100},"J":{"d":"102,-198r-15,0r-28,198v2,52,-73,88,-95,35r11,-7v5,21,28,22,41,10v6,-6,10,-17,12,-32r28,-204r-15,0r2,-14r61,0","w":99},"K":{"d":"139,-23v9,12,30,1,26,-16r8,0v7,40,-53,60,-67,24r-35,-90r-15,105r-45,0r2,-15r15,0r26,-183r-15,0r1,-14r46,0r-15,103r87,-99v15,-12,38,-6,36,15v-1,18,-32,32,-41,12r-54,63"},"L":{"d":"133,0r-122,0r2,-15r15,0r26,-183r-15,0r1,-14r61,0r-2,14r-15,0r-26,181r63,0r4,-30r14,0","w":146,"k":{"y":6,"Y":9,"W":18,"V":21,"T":12}},"M":{"d":"241,0r-63,0r3,-15r13,0r0,-149r-73,164r-20,0r-27,-167r-41,152r17,0r-3,15r-47,0r2,-15r15,0r50,-183r-18,0r1,-14r50,0r27,159r71,-159r48,0r-2,14r-18,0r0,183r17,0","w":254},"N":{"d":"196,-198r-15,0r-28,198r-16,0r-72,-154r-20,139r15,0r-2,15r-47,0r2,-15r15,0r26,-183r-15,0r1,-14r33,0r71,153r20,-139r-16,0r2,-14r48,0","w":191},"O":{"d":"181,-128v0,65,-40,128,-93,131v-43,3,-67,-41,-65,-87v1,-65,37,-130,96,-132v41,-2,62,44,62,88xm98,-18v55,0,85,-102,55,-158v-7,-13,-18,-19,-30,-19v-43,0,-65,59,-67,109v-1,32,14,68,42,68","w":188,"k":{"Y":9,"A":6}},"P":{"d":"35,-212v67,-1,153,-9,143,61v-6,43,-50,68,-106,61r-10,75r14,0r-2,15r-60,0r2,-15r15,0r26,-183r-24,0xm74,-105v45,6,72,-16,73,-55v1,-32,-24,-43,-60,-38","w":170,"k":{"o":3,"e":3,"a":3,"A":15,".":30,",":30}},"Q":{"d":"181,-128v1,60,-30,105,-68,126v8,12,8,35,24,39v11,0,17,-9,16,-21r8,0v6,39,-53,60,-67,24r-14,-37v-38,-4,-57,-44,-57,-87v1,-65,37,-130,96,-132v41,-2,62,44,62,88xm98,-18v55,0,85,-102,55,-158v-7,-13,-18,-19,-30,-19v-43,0,-65,59,-67,109v-1,32,14,68,42,68","w":188},"R":{"d":"149,-23v8,12,29,1,25,-16r9,0v5,38,-52,61,-67,24r-34,-85r-8,0r-15,100r-45,0r2,-15r15,0r26,-183r-24,0r2,-14v62,-2,145,-6,138,54v-4,29,-29,49,-58,55xm76,-115v38,4,66,-16,66,-48v0,-26,-25,-38,-55,-35","w":183,"k":{"W":6,"V":9,"T":3,"A":-9}},"S":{"d":"119,-191v-18,-21,-68,-5,-62,24v10,48,85,54,84,114v-1,66,-128,79,-128,7v0,-29,47,-44,44,-8v-1,11,-10,21,-23,21v9,30,82,26,76,-15v-8,-53,-82,-52,-82,-113v0,-35,32,-55,71,-55v25,0,49,15,46,42v-1,14,-24,29,-35,14v-8,-11,-3,-27,9,-31","w":150},"T":{"d":"158,-173r-15,0r3,-23r-43,0r-26,181r15,0r-2,15r-60,0r2,-15r15,0r26,-181r-44,0r-3,23r-15,0r5,-39r147,0","w":135,"k":{"o":6,"e":6,"a":6,".":6,",":6}},"U":{"d":"61,-63v-13,45,41,67,66,37v32,-38,23,-116,36,-172r-15,0r1,-14r48,0r-1,14r-15,0v-18,79,3,198,-94,202v-40,1,-62,-26,-56,-67r19,-135r-16,0r2,-14r61,0r-2,14r-15,0","w":184},"V":{"d":"196,-198r-15,0r-94,198r-17,0r-39,-198r-14,0r2,-14r61,0r-2,14r-14,0r28,149r70,-149r-14,0r2,-14r47,0","w":171,"k":{"y":3,"u":3,"o":9,"e":9,"a":9,".":15,",":15}},"W":{"d":"270,-198r-15,0r-82,198r-18,0r-19,-146r-61,146r-17,0r-26,-198r-16,0r2,-14r62,0r-2,14r-15,0r17,149r65,-163r13,0r20,163r59,-149r-14,0r1,-14r48,0","w":245,"k":{"o":3,"e":3,"a":3,".":6,",":6}},"X":{"d":"40,-14v-9,18,-45,27,-47,-1v-1,-19,29,-35,41,-17r46,-67r-27,-89v-12,-18,-25,1,-25,16r-8,0v-5,-38,52,-63,64,-24r19,63v24,-27,32,-72,72,-83v11,-1,20,10,19,22v-1,18,-31,31,-41,13r-45,67r27,90v12,16,27,1,25,-16r9,0v4,38,-54,63,-65,24r-19,-65","w":174},"Y":{"d":"-45,26v2,-17,40,-26,41,0v0,10,-4,13,-9,18v35,5,55,-15,71,-36r-21,-206r-15,0r2,-14r63,0r-1,14r-16,0r16,173v26,-48,46,-107,54,-173r-15,0r2,-14r46,0r-2,14r-13,0v-12,78,-33,141,-63,188v-30,47,-63,71,-100,71v-24,0,-42,-10,-40,-35","w":155},"Z":{"d":"156,-212r-122,181r83,0r3,-23r14,0r-7,54r-133,0r122,-181r-76,0r-2,19r-15,0r7,-50r126,0","w":140},"[":{"d":"61,22r-51,0r36,-257r51,0r-1,10r-23,0r-34,237r23,0","w":84},"\\":{"d":"98,0r-91,-227r22,0r91,227r-22,0","w":120},"]":{"d":"52,22r-50,0r1,-10r23,0r33,-237r-23,0r2,-10r50,0","w":84},"^":{"d":"111,-195r-7,4r-41,-23r-47,23r-6,-4r57,-47","w":120},"_":{"d":"156,22r-162,0r2,-16r162,0","w":168},"`":{"d":"37,-221v-12,-4,-7,-25,6,-23v20,7,32,27,48,39v-20,1,-36,-11,-54,-16","w":109},"a":{"d":"148,-14v11,-1,14,-13,15,-25r8,0v0,23,-14,43,-37,43v-16,0,-28,-12,-26,-31v-7,15,-26,33,-46,31v-75,-9,-44,-163,23,-161v18,0,33,15,37,32v-2,-20,13,-43,30,-28v3,3,4,7,3,11r-17,116v0,6,5,11,10,12xm76,-16v23,-5,40,-42,40,-75v0,-20,-8,-45,-24,-46v-25,5,-41,43,-40,76v0,22,6,43,24,45"},"b":{"d":"111,-157v34,1,48,42,43,81v-4,36,-31,80,-66,80v-19,1,-32,-16,-37,-31v2,19,-13,42,-29,27v-3,-3,-4,-6,-3,-10r24,-176v1,-6,-4,-12,-9,-12v-12,0,-16,12,-15,25r-8,0v-6,-42,59,-62,63,-17r-9,65v10,-16,25,-31,46,-32xm81,-16v24,-5,42,-42,41,-76v0,-21,-6,-43,-24,-44v-25,4,-41,42,-41,74v-1,20,8,45,24,46","w":166},"c":{"d":"97,-156v27,0,46,20,46,48v0,18,-25,32,-38,18v-13,-13,2,-37,21,-35v-4,-7,-13,-16,-24,-15v-36,1,-47,45,-48,84v-1,24,7,43,30,43v19,-1,29,-14,36,-29r11,4v-8,23,-27,41,-56,41v-35,0,-57,-29,-56,-66v0,-48,34,-91,78,-93","w":147},"d":{"d":"148,-14v11,-1,14,-13,15,-25r8,0v7,41,-59,62,-63,17r0,-4v-8,14,-27,32,-46,30v-75,-9,-44,-163,23,-161v18,0,33,15,37,32r12,-87r30,0r-26,186v0,6,5,11,10,12xm76,-16v23,-5,40,-42,40,-75v0,-20,-8,-45,-24,-46v-25,5,-41,43,-40,76v0,22,6,43,24,45"},"e":{"d":"18,-62v2,-49,31,-94,79,-95v28,0,49,11,45,40v-4,32,-46,46,-87,46v-5,27,0,59,28,58v19,0,31,-16,37,-31r11,3v-9,26,-27,44,-59,44v-35,0,-55,-30,-54,-65xm56,-83v28,-1,57,-14,56,-42v-1,-27,-31,-20,-42,1v-6,12,-12,26,-14,41","w":147},"f":{"d":"40,61v-32,-9,-21,-50,-15,-90r15,-107r-21,0r2,-15r21,0r8,-61r31,0r-9,61r53,0r-2,15r-45,0v55,40,26,186,-38,197xm56,35v33,-21,53,-127,12,-157r-18,142v0,10,2,15,6,15","w":122},"g":{"d":"97,-54v57,24,19,120,-43,115v-24,-2,-47,-15,-53,-33r13,-7v13,39,83,24,83,-19v0,-31,-40,-38,-63,-22v-25,-6,-8,-29,7,-33v-46,-23,-12,-97,41,-97v24,0,56,6,57,-18r7,0v-2,19,-7,35,-21,41v16,29,-3,63,-28,73xm77,-61v40,2,55,-73,11,-75v-39,-3,-56,72,-11,75","w":143},"h":{"d":"145,-14v11,0,14,-13,15,-25r7,0v9,43,-60,61,-63,17r14,-95v3,-16,-16,-22,-28,-11v-8,7,-22,23,-30,34r-13,94r-31,0r30,-212r30,0r-13,98v13,-18,27,-43,54,-43v56,0,19,87,18,131v-1,7,4,12,10,12","w":174},"i":{"d":"57,-174v-14,1,-19,-18,-8,-27v19,-15,36,9,20,22v-4,3,-8,5,-12,5xm61,-14v11,0,14,-13,15,-25r7,0v9,43,-60,61,-63,17r18,-129r31,0r-18,125v-1,7,4,12,10,12","w":92},"j":{"d":"-27,27v6,31,44,19,48,-9r24,-169r30,0r-22,159v1,46,-74,77,-91,25xm63,-174v-13,0,-18,-19,-7,-27v10,-11,28,-1,26,11v-1,8,-11,16,-19,16","w":85},"k":{"d":"118,-22v9,13,29,0,25,-17r8,0v5,39,-48,60,-66,22r-28,-58r-10,75r-31,0r30,-212r30,0r-18,133r60,-38v-18,-13,-2,-41,17,-41v25,0,23,37,3,43r-51,33","w":156},"l":{"d":"61,-14v11,0,14,-13,15,-25r7,0v9,43,-60,61,-63,17r27,-190r30,0r-26,186v-1,7,4,12,10,12","w":91},"m":{"d":"227,-14v11,-1,14,-13,15,-25r8,0v7,43,-66,63,-63,13v2,-34,16,-74,10,-104v-19,-15,-34,15,-46,26r-15,104r-30,0r17,-120v-11,-31,-39,1,-49,16r-15,104r-30,0r17,-124v1,-7,-4,-11,-10,-11v-12,0,-14,12,-14,25r-8,0v0,-23,14,-43,36,-44v15,-1,30,13,26,29v13,-12,26,-31,48,-32v18,-1,30,15,29,33v12,-13,26,-33,48,-33v55,0,16,88,16,131v0,6,5,11,10,12","w":257},"n":{"d":"159,-14v11,0,15,-12,14,-25r8,0v7,41,-59,61,-63,17r13,-95v2,-9,-5,-17,-13,-17v-13,-2,-35,26,-46,40r-13,94r-30,0r17,-124v1,-7,-4,-11,-10,-11v-12,0,-14,12,-14,25r-8,0v0,-23,14,-43,36,-44v20,0,32,18,25,40v13,-19,27,-43,55,-43v57,0,20,87,19,131v-1,7,4,12,10,12","w":188},"o":{"d":"94,-157v38,0,57,38,51,81v-5,38,-35,80,-74,80v-33,0,-52,-30,-52,-66v0,-48,33,-95,75,-95xm130,-89v0,-24,-10,-47,-30,-47v-30,0,-48,38,-48,73v0,24,10,47,31,47v28,0,47,-39,47,-73","w":157},"p":{"d":"166,-92v0,47,-26,93,-66,96v-19,0,-34,-15,-37,-32r-12,88r-31,0r26,-184v1,-7,-4,-11,-10,-11v-12,0,-14,12,-14,25r-8,0v-6,-42,60,-63,63,-16v8,-14,27,-31,46,-31v29,0,43,32,43,65xm92,-16v25,-4,41,-41,41,-76v0,-21,-5,-43,-23,-44v-25,4,-41,42,-41,74v-1,20,7,45,23,46"},"q":{"d":"85,-157v18,0,33,15,37,32v-2,-20,13,-43,30,-28v2,3,4,7,3,11r-29,202r-30,0r12,-88v-10,16,-24,32,-46,32v-76,0,-44,-163,23,-161xm76,-16v23,-5,40,-43,40,-75v0,-20,-8,-45,-24,-46v-25,5,-40,42,-40,76v0,22,6,43,24,45","w":166},"r":{"d":"14,-110v-7,-38,57,-64,63,-18r-2,14v16,-16,34,-59,63,-37v12,15,-4,38,-21,37v-9,-1,-16,-5,-18,-13r-27,34r-13,93r-30,0r17,-124v1,-7,-4,-11,-10,-11v-12,0,-14,12,-14,25r-8,0","w":128},"s":{"d":"50,-130v-4,-29,47,-42,50,-10v0,8,-6,17,-12,22v12,25,36,47,33,83v-3,36,-61,55,-91,29v-10,-8,-18,-20,-22,-35r49,-70v-4,-6,-6,-12,-7,-19xm26,-41v5,31,66,43,66,3v0,-25,-19,-38,-27,-58","w":136},"t":{"d":"90,-26v-1,35,-67,42,-61,0r16,-110r-32,0r2,-15r32,0r5,-37r30,0r-5,37r42,0r-2,15r-42,0r-15,110v-1,7,4,12,10,12v11,-1,13,-14,14,-25r8,0","w":109},"u":{"d":"157,-14v11,0,15,-12,14,-25r8,0v7,42,-65,63,-63,13r2,-11v-16,19,-27,43,-54,43v-55,0,-19,-86,-18,-130v1,-7,-4,-11,-10,-11v-12,0,-14,12,-14,25r-8,0v-6,-41,58,-62,63,-18r-13,94v-3,16,16,22,28,11v8,-6,21,-24,29,-34r13,-94r30,0r-17,125v-1,7,4,12,10,12","w":186},"v":{"d":"116,-151v18,-17,42,0,37,29v-9,55,-38,126,-90,126v-54,0,-17,-84,-17,-128v1,-7,-4,-11,-10,-11v-12,0,-14,12,-14,25r-8,0v-6,-41,58,-62,63,-18r-12,90v0,10,3,17,14,16v29,-1,54,-61,57,-94v-12,9,-32,-4,-28,-19v1,-6,3,-12,8,-16","w":153},"w":{"d":"175,-135v4,-31,50,-29,46,4v-6,62,-33,131,-87,135v-17,1,-27,-15,-28,-30v-12,36,-79,43,-72,-8r12,-90v1,-7,-4,-11,-10,-11v-12,0,-14,12,-14,25r-8,0v-6,-41,58,-62,63,-18r-12,91v-1,19,20,17,30,6v22,-24,20,-81,28,-120r30,0r-15,113v-1,10,3,17,12,16v30,-3,49,-57,53,-94v-12,9,-30,-3,-28,-19","w":225},"x":{"d":"51,-128v-13,-17,-27,-1,-25,17r-8,0v-6,-38,52,-62,64,-22r9,35v17,-19,29,-70,64,-50v12,13,-2,36,-19,35v-6,0,-12,-3,-15,-8r-26,38v7,21,12,46,21,65v13,10,24,-7,23,-22r7,0v5,39,-51,62,-64,22r-9,-34v-17,18,-21,56,-51,56v-13,0,-20,-11,-17,-24v3,-12,28,-26,38,-9r26,-38","w":160},"y":{"d":"102,-30v16,-37,26,-76,32,-121r16,0v-9,62,-25,113,-48,151v-24,40,-51,61,-82,61v-16,-1,-35,-9,-34,-27v1,-22,42,-30,42,-3v3,9,-14,16,0,16v24,0,40,-21,52,-39r-36,-135v-10,-14,-29,0,-26,17r-8,0v-5,-41,56,-62,66,-22","w":153},"z":{"d":"39,-31v28,-3,72,12,74,-19r8,0v-2,26,-13,50,-40,50r-84,0r92,-119v-40,4,-77,-2,-65,-46v13,-3,5,18,20,14r87,0","w":130},"{":{"d":"84,-74v-6,33,-23,83,10,98r-4,6v-47,-12,-50,-64,-33,-110v-1,-16,-17,-22,-33,-24r1,-6v59,6,31,-76,57,-103v11,-12,25,-23,46,-30r2,6v-31,15,-35,44,-35,90v0,21,-19,31,-39,40v14,7,28,19,28,33","w":115},"|":{"d":"61,0r-23,0r0,-240r23,0r0,240","w":97},"}":{"d":"74,-137v-6,17,14,26,32,27r-1,6v-58,-4,-31,75,-56,103v-11,12,-26,23,-47,31r-2,-6v31,-15,33,-45,36,-90v1,-21,19,-31,38,-41v-62,-16,15,-105,-38,-130r4,-6v45,10,50,63,34,106","w":115},"~":{"d":"46,-130v17,1,30,23,42,2r7,2v-7,13,-17,29,-35,29v-14,0,-31,-22,-42,-3r-8,-1v6,-13,19,-29,36,-29","w":105},"\u00c4":{"d":"167,0r-59,0r2,-15r13,0r-9,-46r-71,0r-22,46r17,0r-2,15r-47,0r2,-15r13,0r95,-197r17,0r39,197r15,0xm111,-75r-18,-90r-43,90r61,0xm85,-264v16,-1,20,22,8,29v-10,11,-29,2,-26,-12v2,-9,9,-17,18,-17xm138,-263v15,-1,18,20,8,28v-19,15,-37,-9,-21,-23v4,-3,8,-5,13,-5","w":173},"\u00c5":{"d":"111,-75r-18,-90r-43,90r61,0xm106,-218v6,0,14,-4,13,-12v1,-7,-4,-12,-10,-12v-13,-1,-19,24,-3,24xm80,-226v0,-33,55,-45,55,-7v-1,14,-8,22,-18,28r38,190r15,0r-3,15r-59,0r2,-15r13,0r-9,-46r-71,0r-22,46r17,0r-2,15r-47,0r2,-15r13,0r91,-188v-9,-3,-15,-12,-15,-23","w":173},"\u00c7":{"d":"95,29v0,22,-26,30,-51,29r1,-8v20,7,38,-21,13,-24r-18,0r31,-27v-89,-37,-42,-215,56,-215v28,0,46,14,46,41v0,25,-43,31,-43,3v0,-12,8,-20,17,-23v-2,-3,-6,-5,-13,-5v-49,4,-75,61,-78,118v-3,53,42,83,83,60r4,12v-14,7,-38,16,-58,12r-10,9v10,2,20,7,20,18","w":159},"\u00c9":{"d":"93,-17v28,-1,47,-17,56,-39r12,5v-10,63,-150,79,-143,-7v3,-27,30,-51,56,-55v-19,-6,-36,-25,-33,-49v4,-32,41,-55,77,-54v27,-1,56,13,52,40v-3,17,-26,30,-39,15v-10,-11,0,-32,11,-34v-39,-22,-89,29,-59,66v6,7,16,9,26,11v-3,5,1,17,-7,17v-25,1,-50,20,-50,48v0,20,20,37,41,36xm130,-267v11,-14,33,1,19,13v-20,7,-41,19,-64,20","w":168},"\u00d1":{"d":"144,-247v10,1,12,-15,23,-11v-7,13,-17,27,-35,27v-15,0,-33,-23,-42,0r-8,-1v5,-13,20,-26,36,-27v10,-1,20,11,26,12xm196,-198r-15,0r-28,198r-16,0r-72,-154r-20,139r15,0r-2,15r-47,0r2,-15r15,0r26,-183r-15,0r1,-14r33,0r71,153r20,-139r-16,0r2,-14r48,0","w":191},"\u00d6":{"d":"181,-128v0,65,-40,128,-93,131v-43,3,-67,-41,-65,-87v1,-65,37,-130,96,-132v41,-2,62,44,62,88xm98,-18v55,0,85,-102,55,-158v-7,-13,-18,-19,-30,-19v-43,0,-65,59,-67,109v-1,32,14,68,42,68xm100,-264v16,-1,20,22,8,29v-10,11,-29,2,-26,-12v2,-9,9,-17,18,-17xm153,-263v15,-1,18,20,8,28v-19,15,-37,-9,-21,-23v4,-3,8,-5,13,-5","w":188},"\u00dc":{"d":"61,-63v-13,45,41,67,66,37v32,-38,23,-116,36,-172r-15,0r1,-14r48,0r-1,14r-15,0v-18,79,3,198,-94,202v-40,1,-62,-26,-56,-67r19,-135r-16,0r2,-14r61,0r-2,14r-15,0xm105,-266v16,-1,20,22,8,29v-10,11,-29,2,-26,-12v2,-9,9,-17,18,-17xm158,-265v15,-1,18,20,8,28v-19,15,-37,-9,-21,-23v4,-3,8,-5,13,-5","w":184},"\u00e1":{"d":"148,-14v11,-1,14,-13,15,-25r8,0v0,23,-14,43,-37,43v-16,0,-28,-12,-26,-31v-7,15,-26,33,-46,31v-75,-9,-44,-163,23,-161v18,0,33,15,37,32v-2,-20,13,-43,30,-28v3,3,4,7,3,11r-17,116v0,6,5,11,10,12xm76,-16v23,-5,40,-42,40,-75v0,-20,-8,-45,-24,-46v-25,5,-41,43,-40,76v0,22,6,43,24,45xm139,-211v11,-14,33,1,19,13v-20,7,-41,19,-64,20"},"\u00e0":{"d":"148,-14v11,-1,14,-13,15,-25r8,0v0,23,-14,43,-37,43v-16,0,-28,-12,-26,-31v-7,15,-26,33,-46,31v-75,-9,-44,-163,23,-161v18,0,33,15,37,32v-2,-20,13,-43,30,-28v3,3,4,7,3,11r-17,116v0,6,5,11,10,12xm76,-16v23,-5,40,-42,40,-75v0,-20,-8,-45,-24,-46v-25,5,-41,43,-40,76v0,22,6,43,24,45xm80,-195v-12,-4,-7,-25,6,-23v20,7,32,27,48,39v-20,1,-36,-11,-54,-16"},"\u00e2":{"d":"160,-177r-6,4r-42,-23r-47,23r-6,-4r57,-47xm148,-14v11,-1,14,-13,15,-25r8,0v0,23,-14,43,-37,43v-16,0,-28,-12,-26,-31v-7,15,-26,33,-46,31v-75,-9,-44,-163,23,-161v18,0,33,15,37,32v-2,-20,13,-43,30,-28v3,3,4,7,3,11r-17,116v0,6,5,11,10,12xm76,-16v23,-5,40,-42,40,-75v0,-20,-8,-45,-24,-46v-25,5,-41,43,-40,76v0,22,6,43,24,45"},"\u00e4":{"d":"148,-14v11,-1,14,-13,15,-25r8,0v0,23,-14,43,-37,43v-16,0,-28,-12,-26,-31v-7,15,-26,33,-46,31v-75,-9,-44,-163,23,-161v18,0,33,15,37,32v-2,-20,13,-43,30,-28v3,3,4,7,3,11r-17,116v0,6,5,11,10,12xm76,-16v23,-5,40,-42,40,-75v0,-20,-8,-45,-24,-46v-25,5,-41,43,-40,76v0,22,6,43,24,45xm90,-209v16,-1,20,22,8,29v-10,11,-29,2,-26,-12v2,-9,9,-17,18,-17xm143,-208v15,-1,18,20,8,28v-19,15,-37,-9,-21,-23v4,-3,8,-5,13,-5"},"\u00e3":{"d":"110,-204v17,0,32,23,42,0r7,2v-7,13,-18,26,-35,26v-15,-3,-32,-22,-42,0r-8,-1v5,-14,20,-27,36,-27xm148,-14v11,-1,14,-13,15,-25r8,0v0,23,-14,43,-37,43v-16,0,-28,-12,-26,-31v-7,15,-26,33,-46,31v-75,-9,-44,-163,23,-161v18,0,33,15,37,32v-2,-20,13,-43,30,-28v3,3,4,7,3,11r-17,116v0,6,5,11,10,12xm76,-16v23,-5,40,-42,40,-75v0,-20,-8,-45,-24,-46v-25,5,-41,43,-40,76v0,22,6,43,24,45"},"\u00e5":{"d":"88,-197v-3,-32,54,-46,55,-8v3,33,-55,46,-55,8xm114,-189v6,0,14,-4,13,-12v1,-7,-3,-13,-10,-12v-6,0,-14,5,-13,12v-1,7,4,12,10,12xm148,-14v11,-1,14,-13,15,-25r8,0v0,23,-14,43,-37,43v-16,0,-28,-12,-26,-31v-7,15,-26,33,-46,31v-75,-9,-44,-163,23,-161v18,0,33,15,37,32v-2,-20,13,-43,30,-28v3,3,4,7,3,11r-17,116v0,6,5,11,10,12xm76,-16v23,-5,40,-42,40,-75v0,-20,-8,-45,-24,-46v-25,5,-41,43,-40,76v0,22,6,43,24,45"},"\u00e7":{"d":"77,29v0,22,-26,30,-51,29r1,-8v20,7,38,-21,13,-24r-18,0r31,-28v-65,-31,-26,-154,44,-154v27,0,46,20,46,48v0,18,-25,32,-38,18v-13,-13,2,-37,21,-35v-4,-7,-13,-16,-24,-15v-36,1,-47,45,-48,84v-1,24,7,43,30,43v19,-1,29,-14,36,-29r11,4v-9,25,-31,44,-64,40r-10,9v10,2,20,7,20,18","w":147},"\u00e9":{"d":"18,-62v2,-49,31,-94,79,-95v28,0,49,11,45,40v-4,32,-46,46,-87,46v-5,27,0,59,28,58v19,0,31,-16,37,-31r11,3v-9,26,-27,44,-59,44v-35,0,-55,-30,-54,-65xm56,-83v28,-1,57,-14,56,-42v-1,-27,-31,-20,-42,1v-6,12,-12,26,-14,41xm119,-211v11,-14,33,1,19,13v-20,7,-41,19,-64,20","w":147},"\u00e8":{"d":"18,-62v2,-49,31,-94,79,-95v28,0,49,11,45,40v-4,32,-46,46,-87,46v-5,27,0,59,28,58v19,0,31,-16,37,-31r11,3v-9,26,-27,44,-59,44v-35,0,-55,-30,-54,-65xm56,-83v28,-1,57,-14,56,-42v-1,-27,-31,-20,-42,1v-6,12,-12,26,-14,41xm71,-195v-12,-4,-7,-25,6,-23v20,7,32,27,48,39v-20,1,-36,-11,-54,-16","w":147},"\u00ea":{"d":"151,-177r-7,4r-41,-23r-47,23r-6,-4r57,-47xm18,-62v2,-49,31,-94,79,-95v28,0,49,11,45,40v-4,32,-46,46,-87,46v-5,27,0,59,28,58v19,0,31,-16,37,-31r11,3v-9,26,-27,44,-59,44v-35,0,-55,-30,-54,-65xm56,-83v28,-1,57,-14,56,-42v-1,-27,-31,-20,-42,1v-6,12,-12,26,-14,41","w":147},"\u00eb":{"d":"18,-62v2,-49,31,-94,79,-95v28,0,49,11,45,40v-4,32,-46,46,-87,46v-5,27,0,59,28,58v19,0,31,-16,37,-31r11,3v-9,26,-27,44,-59,44v-35,0,-55,-30,-54,-65xm56,-83v28,-1,57,-14,56,-42v-1,-27,-31,-20,-42,1v-6,12,-12,26,-14,41xm84,-209v16,-1,20,22,8,29v-10,11,-29,2,-26,-12v2,-9,9,-17,18,-17xm137,-208v15,-1,18,20,8,28v-19,15,-37,-9,-21,-23v4,-3,8,-5,13,-5","w":147},"\u00ed":{"d":"61,-14v11,-1,14,-13,15,-25r7,0v9,44,-69,62,-62,13r18,-125r30,0r-18,125v-1,7,4,12,10,12xm88,-211v11,-14,33,1,19,13v-20,7,-41,19,-64,20","w":92},"\u00ec":{"d":"61,-14v11,-1,14,-13,15,-25r7,0v9,44,-69,62,-62,13r18,-125r30,0r-18,125v-1,7,4,12,10,12xm17,-195v-12,-4,-7,-25,6,-23v20,7,32,27,48,39v-20,1,-36,-11,-54,-16","w":92},"\u00ee":{"d":"115,-177r-7,4r-41,-23r-47,23r-6,-4r56,-47xm61,-14v11,-1,14,-13,15,-25r7,0v9,44,-69,62,-62,13r18,-125r30,0r-18,125v-1,7,4,12,10,12","w":92},"\u00ef":{"d":"61,-14v11,-1,14,-13,15,-25r7,0v9,44,-69,62,-62,13r18,-125r30,0r-18,125v-1,7,4,12,10,12xm37,-209v16,-1,20,22,8,29v-10,11,-29,2,-26,-12v2,-9,9,-17,18,-17xm90,-208v15,-1,18,20,8,28v-19,15,-37,-9,-21,-23v4,-3,8,-5,13,-5","w":92},"\u00f1":{"d":"125,-192v12,2,13,-16,24,-10v-7,13,-18,26,-36,26v-15,-3,-32,-22,-42,0r-7,-1v5,-14,20,-25,36,-27v10,-1,19,11,25,12xm159,-14v11,0,15,-12,14,-25r8,0v7,41,-59,61,-63,17r13,-95v2,-9,-5,-17,-13,-17v-13,-2,-35,26,-46,40r-13,94r-30,0r17,-124v1,-7,-4,-11,-10,-11v-12,0,-14,12,-14,25r-8,0v0,-23,14,-43,36,-44v20,0,32,18,25,40v13,-19,27,-43,55,-43v57,0,20,87,19,131v-1,7,4,12,10,12","w":188},"\u00f3":{"d":"94,-157v38,0,57,38,51,81v-5,38,-35,80,-74,80v-33,0,-52,-30,-52,-66v0,-48,33,-95,75,-95xm130,-89v0,-24,-10,-47,-30,-47v-30,0,-48,38,-48,73v0,24,10,47,31,47v28,0,47,-39,47,-73xm122,-211v11,-14,33,1,19,13v-20,7,-41,19,-64,20","w":157},"\u00f2":{"d":"94,-157v38,0,57,38,51,81v-5,38,-35,80,-74,80v-33,0,-52,-30,-52,-66v0,-48,33,-95,75,-95xm130,-89v0,-24,-10,-47,-30,-47v-30,0,-48,38,-48,73v0,24,10,47,31,47v28,0,47,-39,47,-73xm76,-195v-12,-4,-7,-25,6,-23v20,7,32,27,48,39v-20,1,-36,-11,-54,-16","w":157},"\u00f4":{"d":"151,-177r-7,4r-41,-23r-47,23r-6,-4r56,-47xm94,-157v38,0,57,38,51,81v-5,38,-35,80,-74,80v-33,0,-52,-30,-52,-66v0,-48,33,-95,75,-95xm130,-89v0,-24,-10,-47,-30,-47v-30,0,-48,38,-48,73v0,24,10,47,31,47v28,0,47,-39,47,-73","w":157},"\u00f6":{"d":"94,-157v38,0,57,38,51,81v-5,38,-35,80,-74,80v-33,0,-52,-30,-52,-66v0,-48,33,-95,75,-95xm130,-89v0,-24,-10,-47,-30,-47v-30,0,-48,38,-48,73v0,24,10,47,31,47v28,0,47,-39,47,-73xm82,-209v16,-1,20,22,8,29v-10,11,-29,2,-26,-12v2,-9,9,-17,18,-17xm135,-208v15,-1,18,20,8,28v-19,15,-37,-9,-21,-23v4,-3,8,-5,13,-5","w":157},"\u00f5":{"d":"97,-204v17,0,32,23,42,0r7,2v-7,13,-18,26,-35,26v-15,-3,-32,-22,-42,0r-7,-1v4,-14,19,-27,35,-27xm94,-157v38,0,57,38,51,81v-5,38,-35,80,-74,80v-33,0,-52,-30,-52,-66v0,-48,33,-95,75,-95xm130,-89v0,-24,-10,-47,-30,-47v-30,0,-48,38,-48,73v0,24,10,47,31,47v28,0,47,-39,47,-73","w":157},"\u00fa":{"d":"157,-14v11,0,15,-12,14,-25r8,0v7,42,-65,63,-63,13r2,-11v-16,19,-27,43,-54,43v-55,0,-19,-86,-18,-130v1,-7,-4,-11,-10,-11v-12,0,-14,12,-14,25r-8,0v-6,-41,58,-62,63,-18r-13,94v-3,16,16,22,28,11v8,-6,21,-24,29,-34r13,-94r30,0r-17,125v-1,7,4,12,10,12xm128,-210v11,-14,33,1,19,13v-20,7,-41,19,-64,20","w":186},"\u00f9":{"d":"157,-14v11,0,15,-12,14,-25r8,0v7,42,-65,63,-63,13r2,-11v-16,19,-27,43,-54,43v-55,0,-19,-86,-18,-130v1,-7,-4,-11,-10,-11v-12,0,-14,12,-14,25r-8,0v-6,-41,58,-62,63,-18r-13,94v-3,16,16,22,28,11v8,-6,21,-24,29,-34r13,-94r30,0r-17,125v-1,7,4,12,10,12xm68,-194v-12,-4,-7,-25,6,-23v20,7,32,27,48,39v-20,1,-36,-11,-54,-16","w":186},"\u00fb":{"d":"158,-177r-6,4r-42,-23r-47,23r-6,-4r57,-47xm157,-14v11,0,15,-12,14,-25r8,0v7,42,-65,63,-63,13r2,-11v-16,19,-27,43,-54,43v-55,0,-19,-86,-18,-130v1,-7,-4,-11,-10,-11v-12,0,-14,12,-14,25r-8,0v-6,-41,58,-62,63,-18r-13,94v-3,16,16,22,28,11v8,-6,21,-24,29,-34r13,-94r30,0r-17,125v-1,7,4,12,10,12","w":186},"\u00fc":{"d":"157,-14v11,0,15,-12,14,-25r8,0v7,42,-65,63,-63,13r2,-11v-16,19,-27,43,-54,43v-55,0,-19,-86,-18,-130v1,-7,-4,-11,-10,-11v-12,0,-14,12,-14,25r-8,0v-6,-41,58,-62,63,-18r-13,94v-3,16,16,22,28,11v8,-6,21,-24,29,-34r13,-94r30,0r-17,125v-1,7,4,12,10,12xm88,-209v16,-1,20,22,8,29v-10,11,-29,2,-26,-12v2,-9,9,-17,18,-17xm141,-208v15,-1,18,20,8,28v-19,15,-37,-9,-21,-23v4,-3,8,-5,13,-5","w":186},"\u00b0":{"d":"10,-178v-3,-45,74,-59,76,-10v2,43,-74,60,-76,10xm64,-198v-11,-14,-37,-1,-37,15v-4,18,20,27,33,15v8,-7,11,-21,4,-30","w":96},"\u00a2":{"d":"60,-99v-5,45,30,71,66,52r4,11v-8,5,-24,11,-35,12r-6,38r-14,0r6,-39v-61,-5,-59,-108,-24,-146v15,-16,30,-27,49,-30r6,-42r13,0r-6,41v22,0,36,12,35,34v-1,9,-10,19,-21,19v-20,0,-21,-31,-4,-35v-48,-6,-64,43,-69,85","w":156},"\u00a3":{"d":"144,-179v-3,-23,-38,-28,-51,-8v-12,12,-15,45,-18,69r35,0r-3,14r-34,0r-12,87r63,0r5,-30r14,0r-7,47r-123,0r2,-15r15,0r13,-89r-15,0r2,-14r15,0v-1,-60,40,-120,97,-89v7,6,12,14,14,24","w":156},"\u00a7":{"d":"163,-76v-3,48,-32,79,-77,80v-41,1,-62,-34,-59,-79v5,-68,39,-134,99,-142v40,-6,58,53,18,57v-22,2,-21,-35,-2,-39v-47,-12,-67,40,-76,89v26,-35,101,-21,97,34xm102,-112v-31,1,-47,21,-45,57v1,27,8,44,31,44v27,0,42,-30,42,-60v-1,-21,-8,-42,-28,-41","w":180},"\u00b6":{"d":"31,-144v0,-38,31,-68,67,-68r77,0r-2,14r-15,0r-34,244r15,0r-2,15r-32,0r36,-258r-27,0r-36,258r-31,0r2,-15r15,0r19,-140v-29,1,-53,-22,-52,-50","w":176},"\u00df":{"d":"119,-112v22,4,45,27,41,55v-5,36,-43,69,-84,56r1,-7v50,1,74,-88,17,-98r1,-12v25,-7,36,-21,38,-51v2,-32,-35,-48,-47,-18v-20,52,-20,127,-31,187r-45,0r2,-15r15,0v19,-75,-5,-197,86,-201v31,-1,52,16,52,46v0,27,-27,52,-46,58","w":176},"\u00ae":{"d":"139,-212v55,0,95,44,88,105v-6,53,-59,106,-117,106v-53,0,-93,-43,-89,-98v5,-59,58,-113,118,-113xm112,-16v55,-1,101,-48,102,-104v0,-43,-33,-80,-77,-78v-55,2,-102,48,-102,105v0,43,33,78,77,77xm154,-64v6,6,13,-1,12,-9r8,0v3,24,-31,38,-41,15r-18,-44r-4,0r-8,54r-29,0r2,-12r8,0r14,-98r-14,0r2,-11v37,0,86,-7,82,32v-2,17,-17,27,-33,31xm112,-115v31,8,50,-39,14,-43r-8,0","w":230},"\u00a9":{"d":"139,-212v55,0,95,44,88,105v-6,53,-59,106,-117,106v-53,0,-93,-43,-89,-98v5,-59,58,-113,118,-113xm112,-16v55,-1,101,-48,102,-104v0,-43,-33,-80,-77,-78v-55,2,-102,48,-102,105v0,43,33,78,77,77xm71,-98v0,-47,49,-89,91,-65v17,10,5,31,-10,31v-15,0,-18,-19,-6,-24v-30,-4,-51,29,-51,60v0,31,28,46,54,33r4,9v-34,20,-82,1,-82,-44","w":230},"\u2122":{"d":"261,-89r-39,0v2,-5,-1,-14,8,-12r1,-76r-39,88r-15,0r-13,-89r-21,77r9,0r-2,12r-30,0r2,-12r8,0r28,-100r-10,0r1,-11r32,0r14,85r39,-85r30,0r-2,11r-10,0r0,100r10,0xm126,-187r-12,0r2,-13r-22,0r-14,99r9,0r-2,12r-37,0r2,-12r8,0r14,-99r-21,0r-2,13r-12,0r4,-25r86,0","w":281},"\u00b4":{"d":"69,-237v11,-14,33,1,19,13v-20,7,-41,19,-64,20","w":112},"\u00a8":{"d":"50,-242v16,-1,20,22,8,29v-10,11,-29,2,-26,-12v2,-9,9,-17,18,-17xm103,-241v15,-1,18,20,8,28v-19,15,-37,-9,-21,-23v4,-3,8,-5,13,-5","w":108},"\u00c6":{"d":"183,-17v29,-1,48,-16,56,-39r12,5v-10,66,-152,76,-142,-7r0,-3r-59,0r-36,46r16,0r-2,15r-48,0r2,-15r14,0r158,-197v45,-2,107,-16,107,36v-1,23,-47,32,-43,0v1,-7,7,-18,14,-19v-40,-22,-88,30,-58,67v6,7,15,8,25,10v-3,5,1,17,-6,17v-53,0,-70,85,-10,84xm132,-164r-71,89r53,0v4,-8,14,-22,22,-25r4,-30v-7,-9,-11,-21,-8,-34","w":258},"\u00d8":{"d":"98,-18v52,-5,79,-87,60,-148r-90,128v7,10,15,22,30,20xm123,-195v-51,0,-79,88,-61,146r90,-129v-7,-12,-17,-17,-29,-17xm169,-183v44,91,-37,227,-120,172r-22,32r-9,-6r23,-35v-44,-67,-1,-195,78,-196v21,1,33,10,44,23r21,-32r10,6","w":188},"\u00b1":{"w":0},"\u00a5":{"d":"-20,9v20,-3,23,29,9,35v34,5,58,-14,74,-36r-4,-30r-58,0r3,-16r54,0r-2,-20r-50,0r2,-15r46,0r-13,-125r-14,0r2,-14r63,0r-2,14r-16,0r17,173v27,-54,44,-105,54,-173r-15,0r1,-14r47,0r-2,14r-14,0v-7,46,-18,88,-32,125r39,0r-3,15r-42,0r-10,20r50,0r-3,16r-55,0v-25,43,-54,77,-107,83v-39,5,-61,-46,-19,-52","w":160},"\u00b5":{"d":"177,-26v0,32,-61,44,-61,5r2,-16v-17,19,-28,47,-60,42r-7,55r-31,0r26,-184v1,-7,-4,-11,-10,-11v-12,0,-14,12,-14,25r-8,0v-6,-41,58,-62,63,-18r-13,94v-3,16,16,22,28,11v8,-6,21,-24,29,-34r13,-94r30,0r-17,125v-1,7,4,12,10,12v11,0,15,-12,14,-25r8,0","w":186},"\u00aa":{"w":0},"\u00ba":{"w":0},"\u00e6":{"d":"166,3v-27,0,-46,-19,-51,-43v-10,22,-27,44,-53,44v-76,0,-44,-163,23,-161v18,0,33,15,37,32v-5,-23,24,-47,32,-21v27,-18,89,-15,82,29v-5,32,-47,46,-88,46v-3,29,1,58,29,58v19,0,31,-16,37,-31r11,3v-9,26,-27,44,-59,44xm76,-16v36,-7,58,-104,16,-121v-25,5,-41,43,-40,76v0,22,6,43,24,45xm150,-83v28,-1,56,-15,56,-42v0,-26,-31,-21,-42,1v-6,12,-12,26,-14,41","w":236},"\u00f8":{"d":"136,-134v33,61,-16,162,-87,132r-16,24r-10,-5r17,-26v-59,-52,17,-191,88,-134r15,-23r11,5xm118,-129v-43,-28,-79,45,-60,92xm64,-26v33,30,69,-21,67,-62v0,-11,-2,-22,-6,-30","w":157},"\u00bf":{"d":"108,-166v15,0,22,22,9,31v-11,13,-33,2,-30,-13v1,-9,11,-18,21,-18xm85,33v27,1,50,-18,58,-38r11,4v-10,57,-151,83,-140,-3v5,-38,23,-42,64,-64v20,-11,32,-24,13,-35v9,-12,29,2,27,20v-5,37,-65,46,-68,85v0,19,17,31,35,31","w":174},"\u00a1":{"d":"68,-166v18,-2,20,21,9,31v-12,10,-33,2,-29,-13v1,-8,11,-18,20,-18xm39,53v-12,0,-22,-12,-18,-26r35,-138r8,0r0,138v0,13,-13,26,-25,26","w":97},"\u00ac":{"w":0},"\u00ab":{"d":"78,-128r-33,52r19,51r-44,-51xm123,-128r-33,52r19,51r-45,-51","w":127},"\u00bb":{"d":"69,-128r44,52r-59,51r33,-51xm24,-128r44,52r-59,51r33,-51","w":127},"\u2026":{"d":"14,-14v-1,-24,41,-30,38,-2v0,20,-38,26,-38,2xm107,-14v-1,-22,41,-31,39,-2v-1,19,-39,27,-39,2xm201,-14v0,-23,38,-30,38,-5v0,13,-9,21,-22,21v-10,1,-16,-6,-16,-16","w":279},"\u00a0":{"w":84},"\u00c0":{"d":"167,0r-59,0r2,-15r13,0r-9,-46r-71,0r-22,46r17,0r-2,15r-47,0r2,-15r13,0r95,-197r17,0r39,197r15,0xm111,-75r-18,-90r-43,90r61,0xm72,-251v-12,-4,-7,-25,6,-23v20,7,32,27,48,39v-20,1,-36,-11,-54,-16","w":173},"\u00c3":{"d":"130,-247v10,1,13,-15,24,-11v-7,14,-18,27,-36,27v-15,-3,-33,-22,-42,0r-7,-1v4,-14,19,-27,36,-27v10,0,19,11,25,12xm167,0r-59,0r2,-15r13,0r-9,-46r-71,0r-22,46r17,0r-2,15r-47,0r2,-15r13,0r95,-197r17,0r39,197r15,0xm111,-75r-18,-90r-43,90r61,0","w":173},"\u00d5":{"d":"144,-247v10,1,12,-15,23,-11v-7,13,-17,27,-35,27v-15,0,-33,-23,-42,0r-8,-1v5,-13,20,-26,36,-27v10,-1,20,11,26,12xm181,-128v0,65,-40,128,-93,131v-43,3,-67,-41,-65,-87v1,-65,37,-130,96,-132v41,-2,62,44,62,88xm98,-18v55,0,85,-102,55,-158v-7,-13,-18,-19,-30,-19v-43,0,-65,59,-67,109v-1,32,14,68,42,68","w":188},"\u2013":{"d":"210,-76r-207,0r2,-16r207,0","w":206},"\u2014":{"d":"248,-76r-245,0r2,-16r245,0","w":244},"\u201c":{"d":"116,-183v2,13,9,21,18,28r-5,4v-20,-13,-37,-25,-33,-54v1,-17,40,-22,37,3v-2,9,-9,17,-17,19xm59,-183v2,12,8,21,17,28r-3,4v-20,-13,-37,-26,-34,-54v1,-11,24,-23,34,-10v10,12,-3,29,-14,32","w":132},"\u201d":{"d":"120,-220v23,0,17,29,6,41v-9,9,-20,19,-37,28v-6,-9,21,-18,22,-32v-14,-3,-16,-23,-5,-32v4,-4,9,-5,14,-5xm64,-220v22,2,17,29,6,41v-9,9,-21,19,-38,28v-5,-11,20,-17,22,-32v-21,-6,-10,-39,10,-37","w":132},"\u2018":{"d":"64,-183v2,13,9,21,18,28r-4,4v-20,-13,-37,-25,-33,-54v1,-11,23,-22,33,-10v11,13,-2,30,-14,32","w":81},"\u2019":{"d":"69,-220v22,2,17,29,6,41v-9,9,-21,19,-38,28v-5,-11,20,-17,22,-32v-21,-6,-10,-39,10,-37","w":81},"\u00f7":{"w":0},"\u00ff":{"d":"102,-30v16,-37,26,-76,32,-121r16,0v-9,62,-25,113,-48,151v-24,40,-51,61,-82,61v-16,-1,-35,-9,-34,-27v1,-22,42,-30,42,-3v3,9,-14,16,0,16v24,0,40,-21,52,-39r-36,-135v-10,-14,-29,0,-26,17r-8,0v-5,-41,56,-62,66,-22xm75,-209v16,-1,20,22,8,29v-10,11,-29,2,-26,-12v2,-9,9,-17,18,-17xm128,-208v15,-1,18,20,8,28v-19,15,-37,-9,-21,-23v4,-3,8,-5,13,-5","w":153},"\u00a4":{"d":"31,-171v6,-57,131,-64,121,8v-5,40,-24,50,-55,81r-52,51r93,0r-4,31r-125,0r1,-8r69,-80v18,-22,35,-46,39,-76v3,-29,-35,-47,-58,-27v25,7,11,41,-11,41v-11,0,-19,-9,-18,-21","w":164},"\u00b7":{"d":"167,-145v-2,74,-38,143,-99,149v-26,3,-45,-15,-40,-40v3,-19,47,-22,39,6v2,9,-23,18,-9,19v45,4,60,-44,71,-91v-27,34,-97,22,-97,-35v0,-47,33,-78,77,-79v38,0,58,31,58,71xm93,-100v32,-1,46,-24,45,-58v-1,-27,-8,-44,-32,-44v-26,0,-41,30,-41,61v1,20,7,41,28,41","w":180},"\u2219":{"d":"167,-145v-2,74,-38,143,-99,149v-26,3,-45,-15,-40,-40v3,-19,47,-22,39,6v2,9,-23,18,-9,19v45,4,60,-44,71,-91v-27,34,-97,22,-97,-35v0,-47,33,-78,77,-79v38,0,58,31,58,71xm93,-100v32,-1,46,-24,45,-58v-1,-27,-8,-44,-32,-44v-26,0,-41,30,-41,61v1,20,7,41,28,41","w":180},"\u00c2":{"d":"156,-234r-7,4r-41,-24r-47,24r-6,-4r57,-47xm167,0r-59,0r2,-15r13,0r-9,-46r-71,0r-22,46r17,0r-2,15r-47,0r2,-15r13,0r95,-197r17,0r39,197r15,0xm111,-75r-18,-90r-43,90r61,0","w":173},"\u00ca":{"d":"160,-234r-6,4r-42,-24r-47,24r-6,-4r57,-47xm93,-17v28,-1,47,-17,56,-39r12,5v-10,63,-150,79,-143,-7v3,-27,30,-51,56,-55v-19,-6,-36,-25,-33,-49v4,-32,41,-55,77,-54v27,-1,56,13,52,40v-3,17,-26,30,-39,15v-10,-11,0,-32,11,-34v-39,-22,-89,29,-59,66v6,7,16,9,26,11v-3,5,1,17,-7,17v-25,1,-50,20,-50,48v0,20,20,37,41,36","w":168},"\u00c1":{"d":"167,0r-59,0r2,-15r13,0r-9,-46r-71,0r-22,46r17,0r-2,15r-47,0r2,-15r13,0r95,-197r17,0r39,197r15,0xm111,-75r-18,-90r-43,90r61,0xm138,-267v11,-14,33,1,19,13v-20,7,-41,19,-64,20","w":173},"\u00cb":{"d":"93,-17v28,-1,47,-17,56,-39r12,5v-10,63,-150,79,-143,-7v3,-27,30,-51,56,-55v-19,-6,-36,-25,-33,-49v4,-32,41,-55,77,-54v27,-1,56,13,52,40v-3,17,-26,30,-39,15v-10,-11,0,-32,11,-34v-39,-22,-89,29,-59,66v6,7,16,9,26,11v-3,5,1,17,-7,17v-25,1,-50,20,-50,48v0,20,20,37,41,36xm92,-264v16,-1,20,22,8,29v-10,11,-29,2,-26,-12v2,-9,9,-17,18,-17xm145,-263v15,-1,18,20,8,28v-19,15,-37,-9,-21,-23v4,-3,8,-5,13,-5","w":168},"\u00c8":{"d":"93,-17v28,-1,47,-17,56,-39r12,5v-10,63,-150,79,-143,-7v3,-27,30,-51,56,-55v-19,-6,-36,-25,-33,-49v4,-32,41,-55,77,-54v27,-1,56,13,52,40v-3,17,-26,30,-39,15v-10,-11,0,-32,11,-34v-39,-22,-89,29,-59,66v6,7,16,9,26,11v-3,5,1,17,-7,17v-25,1,-50,20,-50,48v0,20,20,37,41,36xm79,-251v-12,-4,-7,-25,6,-23v20,7,32,27,48,39v-20,1,-36,-11,-54,-16","w":168},"\u00cd":{"d":"73,0r-60,0r2,-15r15,0r26,-183r-16,0r2,-14r61,0r-2,14r-15,0r-26,183r15,0xm100,-267v11,-14,33,1,19,13v-20,7,-41,19,-64,20","w":100},"\u00ce":{"d":"125,-234r-6,4r-42,-24r-47,24r-6,-4r57,-47xm73,0r-60,0r2,-15r15,0r26,-183r-16,0r2,-14r61,0r-2,14r-15,0r-26,183r15,0","w":100},"\u00cf":{"d":"73,0r-60,0r2,-15r15,0r26,-183r-16,0r2,-14r61,0r-2,14r-15,0r-26,183r15,0xm53,-264v16,-1,20,22,8,29v-10,11,-29,2,-26,-12v2,-9,9,-17,18,-17xm106,-263v15,-1,18,20,8,28v-19,15,-37,-9,-21,-23v4,-3,8,-5,13,-5","w":100},"\u00cc":{"d":"73,0r-60,0r2,-15r15,0r26,-183r-16,0r2,-14r61,0r-2,14r-15,0r-26,183r15,0xm37,-251v-12,-4,-7,-25,6,-23v20,7,32,27,48,39v-20,1,-36,-11,-54,-16","w":100},"\u00d3":{"d":"181,-128v0,65,-40,128,-93,131v-43,3,-67,-41,-65,-87v1,-65,37,-130,96,-132v41,-2,62,44,62,88xm98,-18v55,0,85,-102,55,-158v-7,-13,-18,-19,-30,-19v-43,0,-65,59,-67,109v-1,32,14,68,42,68xm153,-267v11,-14,33,1,19,13v-20,7,-41,19,-64,20","w":188},"\u00d4":{"d":"166,-232v-17,6,-32,-15,-48,-20r-48,23r-6,-3r58,-47xm181,-128v0,65,-40,128,-93,131v-43,3,-67,-41,-65,-87v1,-65,37,-130,96,-132v41,-2,62,44,62,88xm98,-18v55,0,85,-102,55,-158v-7,-13,-18,-19,-30,-19v-43,0,-65,59,-67,109v-1,32,14,68,42,68","w":188},"\u00d2":{"d":"181,-128v0,65,-40,128,-93,131v-43,3,-67,-41,-65,-87v1,-65,37,-130,96,-132v41,-2,62,44,62,88xm98,-18v55,0,85,-102,55,-158v-7,-13,-18,-19,-30,-19v-43,0,-65,59,-67,109v-1,32,14,68,42,68xm85,-251v-12,-4,-7,-25,6,-23v20,7,32,27,48,39v-20,1,-36,-11,-54,-16","w":188},"\u00da":{"d":"61,-63v-13,45,41,67,66,37v32,-38,23,-116,36,-172r-15,0r1,-14r48,0r-1,14r-15,0v-18,79,3,198,-94,202v-40,1,-62,-26,-56,-67r19,-135r-16,0r2,-14r61,0r-2,14r-15,0xm147,-267v11,-14,33,1,19,13v-20,7,-41,19,-64,20","w":184},"\u00db":{"d":"169,-234r-7,4r-41,-24r-47,24r-6,-4r57,-47xm61,-63v-13,45,41,67,66,37v32,-38,23,-116,36,-172r-15,0r1,-14r48,0r-1,14r-15,0v-18,79,3,198,-94,202v-40,1,-62,-26,-56,-67r19,-135r-16,0r2,-14r61,0r-2,14r-15,0","w":184},"\u00d9":{"d":"61,-63v-13,45,41,67,66,37v32,-38,23,-116,36,-172r-15,0r1,-14r48,0r-1,14r-15,0v-18,79,3,198,-94,202v-40,1,-62,-26,-56,-67r19,-135r-16,0r2,-14r61,0r-2,14r-15,0xm85,-251v-12,-4,-7,-25,6,-23v20,7,32,27,48,39v-20,1,-36,-11,-54,-16","w":184},"\u00af":{"d":"100,-224r-62,0r2,-17r62,0","w":90},"\u00b8":{"d":"39,11v11,2,22,8,20,21v-2,17,-27,28,-51,26r1,-8v20,7,38,-21,13,-24r-18,0v18,-11,23,-36,56,-33","w":75},"\u00a6":{"d":"71,-140r-16,0r15,-101r15,0xm51,-1r-15,0r14,-101r16,0","w":97},"\u00d0":{"d":"191,-127v0,68,-40,127,-101,127r-70,0r2,-15r15,0r12,-83r-23,0r2,-15r23,0r12,-85r-15,0r2,-14r70,0v45,-1,71,38,71,85xm67,-15v68,6,89,-51,91,-116v1,-45,-17,-73,-65,-67r-12,85r27,0r-2,15r-27,0","w":199},"\u00f0":{"d":"20,-55v0,-59,71,-98,109,-58v-1,-24,-1,-44,-7,-61v-14,9,-24,27,-46,17r39,-30v-6,-15,-28,-21,-47,-15v-5,-17,11,-14,24,-15v15,0,28,6,40,17v13,-9,24,-24,44,-15r-34,26v42,61,22,193,-64,193v-31,0,-58,-28,-58,-59xm80,-10v37,-2,49,-37,49,-80v0,-14,-19,-23,-34,-23v-28,2,-42,34,-43,66v0,19,10,38,28,37","w":174},"\u00dd":{"d":"-45,26v2,-17,40,-26,41,0v0,10,-4,13,-9,18v35,5,55,-15,71,-36r-21,-206r-15,0r2,-14r63,0r-1,14r-16,0r16,173v26,-48,46,-107,54,-173r-15,0r2,-14r46,0r-2,14r-13,0v-12,78,-33,141,-63,188v-30,47,-63,71,-100,71v-24,0,-42,-10,-40,-35xm131,-263v11,-14,33,1,19,13v-20,7,-41,19,-64,20","w":155},"\u00fd":{"d":"102,-30v16,-37,26,-76,32,-121r16,0v-9,62,-25,113,-48,151v-24,40,-51,61,-82,61v-16,-1,-35,-9,-34,-27v1,-22,42,-30,42,-3v3,9,-14,16,0,16v24,0,40,-21,52,-39r-36,-135v-10,-14,-29,0,-26,17r-8,0v-5,-41,56,-62,66,-22xm131,-212v11,-14,33,1,19,13v-20,7,-41,19,-64,20","w":153},"\u00de":{"d":"81,-175v51,-4,94,11,89,61v-4,43,-51,68,-106,62r-6,37r16,0r-3,15r-60,0r2,-15r15,0r26,-183r-15,0r2,-14r60,0r-2,14r-15,0xm66,-67v46,6,72,-16,72,-56v0,-31,-24,-41,-59,-37","w":172},"\u00fe":{"d":"90,4v-19,0,-34,-16,-37,-32r-12,87r-30,0r38,-271r30,0r-12,87v8,-16,27,-32,46,-32v34,0,48,42,43,81v-4,36,-31,80,-66,80xm83,-16v24,-5,42,-42,41,-76v0,-21,-6,-43,-24,-44v-25,4,-41,42,-41,74v-1,20,8,45,24,46","w":167},"\u00ad":{"d":"99,-76r-79,0r2,-16r79,0","w":120},"\u00d7":{"w":0},"\u00b9":{"d":"50,-203v14,2,23,-5,25,-15r10,0r-18,128r-22,0r15,-101r-11,0","w":106},"\u00b2":{"d":"43,-189v3,-34,81,-40,77,2v-3,34,-40,54,-62,76r54,0r-3,22r-81,0v18,-34,58,-52,67,-93v3,-15,-14,-27,-28,-18v12,7,2,25,-11,25v-8,0,-13,-6,-13,-14","w":140},"\u00b3":{"d":"91,-157v39,15,13,69,-26,69v-22,0,-38,-12,-38,-33r11,-3v3,31,47,24,50,-1v2,-13,-9,-24,-23,-23v-2,-19,24,-14,26,-34v1,-15,-12,-27,-27,-20v10,8,-1,23,-12,22v-18,-2,-13,-21,1,-29v23,-13,66,-9,61,25v-2,13,-11,22,-23,27","w":127},"\u00bd":{"d":"50,-203v14,2,23,-5,25,-15r10,0r-18,128r-22,0r15,-101r-11,0xm214,-212r-158,215r-8,-6r128,-209r38,0xm170,-100v4,-36,86,-40,76,8v-6,30,-40,49,-61,70r54,0r-3,22r-81,0v18,-33,57,-53,67,-92v4,-15,-13,-28,-28,-19v12,8,0,25,-12,25v-8,0,-13,-7,-12,-14","w":282},"\u00bc":{"d":"50,-203v14,2,23,-5,25,-15r10,0r-18,128r-22,0r15,-101r-11,0xm214,-212r-158,215r-8,-6r128,-209r38,0xm226,-34r-14,0r-5,34r-21,0r4,-34r-51,0r1,-8v29,-23,46,-47,60,-85r28,0v-12,28,-42,62,-66,80r30,0r3,-18r21,0r-2,18r13,0","w":273},"\u00be":{"d":"241,-212r-159,215r-8,-6r128,-209r39,0xm250,-34r-13,0r-5,34r-22,0r5,-34r-51,0r1,-8v29,-25,45,-47,59,-85r28,0v-12,28,-40,63,-65,80r30,0r2,-18r22,0r-3,18r14,0xm91,-157v39,15,13,69,-26,69v-22,0,-38,-12,-38,-33r11,-3v3,31,47,24,50,-1v2,-13,-9,-24,-23,-23v-2,-19,24,-14,26,-34v1,-15,-12,-27,-27,-20v10,8,-1,23,-12,22v-18,-2,-13,-21,1,-29v23,-13,66,-9,61,25v-2,13,-11,22,-23,27","w":276}}});
;

Cufon.set('fontFamily','Engschrift DIN D');
	Cufon.replace('.tabs');
	Cufon.replace('#content .views-field-title');
	Cufon.replace('table#team td');
	Cufon.replace('#page h1.stay-tuned');
	Cufon.replace('h2');
	Cufon.replace('#topnav a');
		Cufon.replace('#module_team h4');
		Cufon.replace('#module_news.newsdetail h3');
		Cufon.replace('#module_news.newslisthome h4');
		Cufon.replace('#module_event.eventlist h3');
		Cufon.replace('#leftnav.leftnav  li a');	
		

Cufon.set('fontFamily','Whitney');
	

Cufon.set('fontFamily','MatrixScriptRegularLining');

	Cufon.replace('#content .views-field-type');
	Cufon.replace('#content .views-field-view-node');
	Cufon.replace('#module_team.cyclistlist p');
	Cufon.replace('#module_news.newslisthome em.date2 em.nieuws');
	Cufon.replace('#module_news.newsdetail em.date2 em.nieuws');
	Cufon.replace('#module_team.cyclistlist #col4 th.slogan');
	; 
 
/* ***********************************************************************  */


$(document).ready(function() {
			/*
			*   Examples - images
			*/
			$("a[rel=example_group]").fancybox({
				'transitionIn'		: 'elastic',
				'transitionOut'		: 'elastic',
				'titlePosition' 	: 'over',
				'titleFormat'		: function(title, currentArray, currentIndex, currentOpts) {
					return '<span id="fancybox-title-over"> ' + (currentIndex + 1) + ' / ' + currentArray.length + (title.length ? ' &nbsp; ' + title : '') + '</span>';
				}
			});
		$("##iframe").fancybox({
				'width'				: '75%',
				'height'			: '95%',
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			});
		$("##iframe2").fancybox({
				'width'				: '75%',
				'height'			: '85%',
				'autoScale'			: false,
				'transitionIn'		: 'none',
				'transitionOut'		: 'none',
				'type'				: 'iframe'
			});

		});

/* ***********************************************************************  */
		
$(document).ready(function() {
        $('.viewport').mouseenter(function(e) {
            $(this).children('a').children('img').animate({ height: '299', left: '0', top: '0', width: '450'}, 100);
            $(this).children('a').children('span').fadeIn(200);
        }).mouseleave(function(e) {
            $(this).children('a').children('img').animate({ height: '332', left: '-20', top: '-20', width: '500'}, 100);
            $(this).children('a').children('span').fadeOut(200);
        });
    });
    $(document).ready(function() {
        $('.viewport2').mouseenter(function(e) {
            $(this).children('a').children('img').animate({ height: '150', left: '0', top: '0', width: '220'}, 100);
            $(this).children('a').children('span').fadeIn(200);
        }).mouseleave(function(e) {
            $(this).children('a').children('img').animate({ height: '162', left: '-10', top: '-10', width: '245'}, 100);
            $(this).children('a').children('span').fadeOut(200);
        });
    });
    
/* ***********************************************************************  */

/*
 jquery.tweet.js
 */

(function($) {
 
  $.fn.tweet = function(o){
    var s = {
      username: ["seaofclouds"],              // [string]   required, unless you want to display our tweets. :) it can be an array, just do ["username1","username2","etc"]
      list: null,                              //[string]   optional name of list belonging to username
      avatar_size: null,                      // [integer]  height and width of avatar if displayed (48px max)
      count: 3,                               // [integer]  how many tweets to display?
      intro_text: null,                       // [string]   do you want text BEFORE your your tweets?
      outro_text: null,                       // [string]   do you want text AFTER your tweets?
      join_text:  null,                       // [string]   optional text in between date and tweet, try setting to "auto"
      auto_join_text_default: "i said,",      // [string]   auto text for non verb: "i said" bullocks
      auto_join_text_ed: "i",                 // [string]   auto text for past tense: "i" surfed
      auto_join_text_ing: "i am",             // [string]   auto tense for present tense: "i was" surfing
      auto_join_text_reply: "i replied to",   // [string]   auto tense for replies: "i replied to" @someone "with"
      auto_join_text_url: "i was looking at", // [string]   auto tense for urls: "i was looking at" http:...
      loading_text: null,                     // [string]   optional loading text, displayed while tweets load
      query: null,                            // [string]   optional search query     
 refresh_interval: null                  // [integer]  optional number of seconds after which to reload tweets

    };
    
    if(o) $.extend(s, o);
    
    $.fn.extend({
      linkUrl: function() {
        var returning = [];
        var regexp = /((ftp|http|https):\/\/(\w+:{0,1}\w*@)?(\S+)(:[0-9]+)?(\/|\/([\w#!:.?+=&%@!\-\/]))?)/gi;
        this.each(function() {
          returning.push(this.replace(regexp,"<a href=\"$1\">$1</a>"));
        });
        return $(returning);
      },
      linkUser: function() {
        var returning = [];
        var regexp = /[\@]+([A-Za-z0-9-_]+)/gi;
        this.each(function() {
          returning.push(this.replace(regexp,"<a href=\"http://twitter.com/$1\">@$1</a>"));
        });
        return $(returning);
      },
      linkHash: function() {
        var returning = [];
        var regexp = /(?:^| )[\#]+([A-Za-z0-9-_]+)/gi;
        this.each(function() {
          returning.push(this.replace(regexp, ' <a href="http://search.twitter.com/search?q=&tag=$1&lang=all&from='+s.username.join("%2BOR%2B")+'">#$1</a>'));
        });
        return $(returning);
      },
      capAwesome: function() {
        var returning = [];
        this.each(function() {
          returning.push(this.replace(/\b(awesome)\b/gi, '<span class="awesome">$1</span>'));
        });
        return $(returning);
      },
      capEpic: function() {
        var returning = [];
        this.each(function() {
          returning.push(this.replace(/\b(epic)\b/gi, '<span class="epic">$1</span>'));
        });
        return $(returning);
      },
      makeHeart: function() {
        var returning = [];
        this.each(function() {
          returning.push(this.replace(/(&lt;)+[3]/gi, "<tt class='heart'>&#x2665;</tt>"));
        });
        return $(returning);
      }
    });

    function parse_date(date_str) {
      // The non-search twitter APIs return inconsistently-formatted dates, which Date.parse
      // cannot handle in IE. We therefore perform the following transformation:
      // "Wed Apr 29 08:53:31 +0000 2009" => "Wed, Apr 29 2009 08:53:31 +0000"
      return Date.parse(date_str.replace(/^([a-z]{3})( [a-z]{3} \d\d?)(.*)( \d{4})$/i, '$1,$2$4$3'));
    }

    function relative_time(time_value) {
      var parsed_date = parse_date(time_value);
      var relative_to = (arguments.length > 1) ? arguments[1] : new Date();
      var delta = parseInt((relative_to.getTime() - parsed_date) / 1000);
      var r = '';
      if (delta < 60) {
	r = delta + ' seconds ago';
      } else if(delta < 120) {
	r = 'a minute ago';
      } else if(delta < (45*60)) {
	r = (parseInt(delta / 60, 10)).toString() + ' minutes ago';
      } else if(delta < (2*60*60)) {
	r = 'an hour ago';
      } else if(delta < (24*60*60)) {
	r = '' + (parseInt(delta / 3600, 10)).toString() + ' hours ago';
      } else if(delta < (48*60*60)) {
	r = 'a day ago';
      } else {
	r = (parseInt(delta / 86400, 10)).toString() + ' days ago';
      }
      return 'about ' + r;
    }

    function build_url() {
      var proto = ('https:' == document.location.protocol ? 'https:' : 'http:');
      if (s.list) {
        return proto+"//api.twitter.com/1/"+s.username[0]+"/lists/"+s.list+"/statuses.json?per_page="+s.count+"&callback=?";
      } else if (s.query == null && s.username.length == 1) {
        return proto+'//api.twitter.com/1/statuses/user_timeline.json?screen_name='+s.username[0]+'&count='+s.count+'&include_rts=1&callback=?';
      } else {
        var query = (s.query || 'from:'+s.username.join(' OR from:'));
        return proto+'//search.twitter.com/search.json?&q='+encodeURIComponent(query)+'&rpp='+s.count+'&callback=?';
      }
    }

    return this.each(function(i, widget){
      var list = $('<ul class="tweet_list">').appendTo(widget);
      var intro = '<p class="tweet_intro">'+s.intro_text+'</p>';
      var outro = '<p class="tweet_outro">'+s.outro_text+'</p>';
      var loading = $('<p class="loading">'+s.loading_text+'</p>');

      if(typeof(s.username) == "string"){
        s.username = [s.username];
      }

      if (s.loading_text) $(widget).append(loading);
      $(widget).bind("load", function(){
        $.getJSON(build_url(), function(data){
          if (s.loading_text) loading.remove();
          if (s.intro_text) list.before(intro);
          list.empty();
          var tweets = (data.results || data);
          $.each(tweets, function(i,item){
            // auto join text based on verb tense and content
            if (s.join_text == "auto") {
              if (item.text.match(/^(@([A-Za-z0-9-_]+)) .*/i)) {
                var join_text = s.auto_join_text_reply;
              } else if (item.text.match(/(^\w+:\/\/[A-Za-z0-9-_]+\.[A-Za-z0-9-_:%&\?\/.=]+) .*/i)) {
                var join_text = s.auto_join_text_url;
              } else if (item.text.match(/^((\w+ed)|just) .*/im)) {
                var join_text = s.auto_join_text_ed;
              } else if (item.text.match(/^(\w*ing) .*/i)) {
                var join_text = s.auto_join_text_ing;
              } else {
                var join_text = s.auto_join_text_default;
              }
            } else {
              var join_text = s.join_text;
            };
   
            var from_user = item.from_user || item.user.screen_name;
	var from_user_screen =  '<span class="tweet_user"> '+from_user+' </span>';
	var dubbelpunt = '. ';
	var scheiding = ' / ';
            var profile_image_url = item.profile_image_url || item.user.profile_image_url;
            var join_template = '<span class="tweet_join"> '+join_text+' </span>';
            var join = ((s.join_text) ? join_template : ' ');
            var avatar_template = '<a class="tweet_avatar" href="http://twitter.com/'+from_user+'"><img src="'+profile_image_url+'" height="'+s.avatar_size+'" width="'+s.avatar_size+'" alt="'+from_user+'\'s avatar" title="'+from_user+'\" border="0"/></a>';
            var avatar = (s.avatar_size ? avatar_template : '');
			var date = '<span class="tweet_time"><a href="http://twitter.com/'+from_user+'/statuses/'+item.id+'" title="view tweet on twitter">'+relative_time(item.created_at)+'</a></span>';
            var text = '<span class="tweet_text">' +$([item.text]).linkUrl().linkUser().linkHash().makeHeart().capAwesome().capEpic()[0]+ '</span>';
   
            // until we create a template option, arrange the items below to alter a tweet's display.
            list.append('<li>' + avatar + from_user_screen + scheiding +  date + dubbelpunt + join + text + '</li>');
   
            list.children('li:first').addClass('tweet_first');
            list.children('li:odd').addClass('tweet_even');
            list.children('li:even').addClass('tweet_odd');
          });
          if (s.outro_text) list.after(outro);
          $(widget).trigger("loaded").trigger((tweets.length == 0 ? "empty" : "full"));
          if (s.refresh_interval) {
            window.setTimeout(function() { $(widget).trigger("load"); }, 1000 * s.refresh_interval);
          };
        });
      }).trigger("load");
    });
  };
})(jQuery);;


/* ***********************************************************************  */

// $Id: nice_menus.js,v 1.10.2.6 2008/08/04 23:45:51 add1sun Exp $

// We need to do some browser sniffing to weed out IE 6 only
// because only IE6 needs this hover hack.
if (document.all && !window.opera && (navigator.appVersion.search("MSIE 6.0") != -1) && $.browser.msie) {
  function IEHoverPseudo() {
      $("ul.nice-menu li.menuparent").hover(function(){
          $(this).addClass("over").find("> ul").show().addShim();
        },function(){
          $(this).removeClass("over").find("> ul").removeShim().hide();
        }
      );
      // Add a hover class to all li for CSS styling. Silly naming is done
      // so we don't break CSS compatibility for .over class already in use
      // and due to the fact that IE6 doesn't understand multiple selectors.
      $("ul.nice-menu li").hover(function(){
          $(this).addClass("ie-over");
        },function(){
          $(this).removeClass("ie-over");
        }
      );
    }

    // This is the jquery method of adding a function
    // to the BODY onload event.  (See jquery.com)
    $(document).ready(function(){ IEHoverPseudo() });
}

$.fn.addShim = function() {
  return this.each(function(){
	  if(document.all && $("select").size() > 0) {
	    var ifShim = document.createElement('iframe');
	    ifShim.src = "javascript:false";
			ifShim.style.width=$(this).width()+1+"px";
      ifShim.style.height=$(this).find("> li").size()*23+20+"px";
			ifShim.style.filter="progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)";
		  ifShim.style.zIndex="0";
    $(this).prepend(ifShim);
      $(this).css("zIndex","99");
		}
	});
};

$.fn.removeShim = function() {
  return this.each(function(){
	  if (document.all) $("iframe", this).remove();
	});
};
;

/* ***********************************************************************  */


/* ***********************************************************************  */



/* ***********************************************************************  */
 
 /*! Copyright (c) 2009 Brandon Aaron (http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 * Thanks to: http://adomas.org/javascript-mouse-wheel/ for some pointers.
 * Thanks to: Mathias Bank(http://www.mathias-bank.de) for a scope bug fix.
 *
 * Version: 3.0.2
 * 
 * Requires: 1.2.2+
 */

(function(b){function d(a){var f=[].slice.call(arguments,1),e=0;a=b.event.fix(a||window.event);a.type="mousewheel";if(a.wheelDelta)e=a.wheelDelta/120;if(a.detail)e=-a.detail/3;f.unshift(a,e);return b.event.handle.apply(this,f)}var c=["DOMMouseScroll","mousewheel"];b.event.special.mousewheel={setup:function(){if(this.addEventListener)for(var a=c.length;a;)this.addEventListener(c[--a],d,false);else this.onmousewheel=d},teardown:function(){if(this.removeEventListener)for(var a=c.length;a;)this.removeEventListener(c[--a],
d,false);else this.onmousewheel=null}};b.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})})(jQuery);;

/* ***********************************************************************  */

/*
 * 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(b){var m,u,x,g,D,i,z,A,B,p=0,e={},q=[],n=0,c={},j=[],E=null,s=new Image,G=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,S=/[^\.]\.(swf)\s*$/i,H,I=1,k,l,h=false,y=b.extend(b("<div/>")[0],{prop:0}),v=0,O=!b.support.opacity&&!window.XMLHttpRequest,J=function(){u.hide();s.onerror=s.onload=null;E&&E.abort();m.empty()},P=function(){b.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"})},
K=function(){return[b(window).width(),b(window).height(),b(document).scrollLeft(),b(document).scrollTop()]},T=function(){var a=K(),d={},f=c.margin,o=c.autoScale,t=(20+f)*2,w=(20+f)*2,r=c.padding*2;if(c.width.toString().indexOf("%")>-1){d.width=a[0]*parseFloat(c.width)/100-40;o=false}else d.width=c.width+r;if(c.height.toString().indexOf("%")>-1){d.height=a[1]*parseFloat(c.height)/100-40;o=false}else d.height=c.height+r;if(o&&(d.width>a[0]-t||d.height>a[1]-w))if(e.type=="image"||e.type=="swf"){t+=r;
w+=r;o=Math.min(Math.min(a[0]-t,c.width)/c.width,Math.min(a[1]-w,c.height)/c.height);d.width=Math.round(o*(d.width-r))+r;d.height=Math.round(o*(d.height-r))+r}else{d.width=Math.min(d.width,a[0]-t);d.height=Math.min(d.height,a[1]-w)}d.top=a[3]+(a[1]-(d.height+40))*0.5;d.left=a[2]+(a[0]-(d.width+40))*0.5;if(c.autoScale===false){d.top=Math.max(a[3]+f,d.top);d.left=Math.max(a[2]+f,d.left)}return d},U=function(a){if(a&&a.length)switch(c.titlePosition){case "inside":return a;case "over":return'<span id="fancybox-title-over">'+
a+"</span>";default:return'<span id="fancybox-title-wrap"><span id="fancybox-title-left"></span><span id="fancybox-title-main">'+a+'</span><span id="fancybox-title-right"></span></span>'}return false},V=function(){var a=c.title,d=l.width-c.padding*2,f="fancybox-title-"+c.titlePosition;b("#fancybox-title").remove();v=0;if(c.titleShow!==false){a=b.isFunction(c.titleFormat)?c.titleFormat(a,j,n,c):U(a);if(!(!a||a==="")){b('<div id="fancybox-title" class="'+f+'" />').css({width:d,paddingLeft:c.padding,
paddingRight:c.padding}).html(a).appendTo("body");switch(c.titlePosition){case "inside":v=b("#fancybox-title").outerHeight(true)-c.padding;l.height+=v;break;case "over":b("#fancybox-title").css("bottom",c.padding);break;default:b("#fancybox-title").css("bottom",b("#fancybox-title").outerHeight(true)*-1);break}b("#fancybox-title").appendTo(D).hide()}}},W=function(){b(document).unbind("keydown.fb").bind("keydown.fb",function(a){if(a.keyCode==27&&c.enableEscapeButton){a.preventDefault();b.fancybox.close()}else if(a.keyCode==
37){a.preventDefault();b.fancybox.prev()}else if(a.keyCode==39){a.preventDefault();b.fancybox.next()}});if(b.fn.mousewheel){g.unbind("mousewheel.fb");j.length>1&&g.bind("mousewheel.fb",function(a,d){a.preventDefault();h||d===0||(d>0?b.fancybox.prev():b.fancybox.next())})}if(c.showNavArrows){if(c.cyclic&&j.length>1||n!==0)A.show();if(c.cyclic&&j.length>1||n!=j.length-1)B.show()}},X=function(){var a,d;if(j.length-1>n){a=j[n+1].href;if(typeof a!=="undefined"&&a.match(G)){d=new Image;d.src=a}}if(n>0){a=
j[n-1].href;if(typeof a!=="undefined"&&a.match(G)){d=new Image;d.src=a}}},L=function(){i.css("overflow",c.scrolling=="auto"?c.type=="image"||c.type=="iframe"||c.type=="swf"?"hidden":"auto":c.scrolling=="yes"?"auto":"visible");if(!b.support.opacity){i.get(0).style.removeAttribute("filter");g.get(0).style.removeAttribute("filter")}b("#fancybox-title").show();c.hideOnContentClick&&i.one("click",b.fancybox.close);c.hideOnOverlayClick&&x.one("click",b.fancybox.close);c.showCloseButton&&z.show();W();b(window).bind("resize.fb",
b.fancybox.center);c.centerOnScroll?b(window).bind("scroll.fb",b.fancybox.center):b(window).unbind("scroll.fb");b.isFunction(c.onComplete)&&c.onComplete(j,n,c);h=false;X()},M=function(a){var d=Math.round(k.width+(l.width-k.width)*a),f=Math.round(k.height+(l.height-k.height)*a),o=Math.round(k.top+(l.top-k.top)*a),t=Math.round(k.left+(l.left-k.left)*a);g.css({width:d+"px",height:f+"px",top:o+"px",left:t+"px"});d=Math.max(d-c.padding*2,0);f=Math.max(f-(c.padding*2+v*a),0);i.css({width:d+"px",height:f+
"px"});if(typeof l.opacity!=="undefined")g.css("opacity",a<0.5?0.5:a)},Y=function(a){var d=a.offset();d.top+=parseFloat(a.css("paddingTop"))||0;d.left+=parseFloat(a.css("paddingLeft"))||0;d.top+=parseFloat(a.css("border-top-width"))||0;d.left+=parseFloat(a.css("border-left-width"))||0;d.width=a.width();d.height=a.height();return d},Q=function(){var a=e.orig?b(e.orig):false,d={};if(a&&a.length){a=Y(a);d={width:a.width+c.padding*2,height:a.height+c.padding*2,top:a.top-c.padding-20,left:a.left-c.padding-
20}}else{a=K();d={width:1,height:1,top:a[3]+a[1]*0.5,left:a[2]+a[0]*0.5}}return d},N=function(){u.hide();if(g.is(":visible")&&b.isFunction(c.onCleanup))if(c.onCleanup(j,n,c)===false){b.event.trigger("fancybox-cancel");h=false;return}j=q;n=p;c=e;i.get(0).scrollTop=0;i.get(0).scrollLeft=0;if(c.overlayShow){O&&b("select:not(#fancybox-tmp select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one("fancybox-cleanup",function(){this.style.visibility="inherit"});
x.css({"background-color":c.overlayColor,opacity:c.overlayOpacity}).unbind().show()}l=T();V();if(g.is(":visible")){b(z.add(A).add(B)).hide();var a=g.position(),d;k={top:a.top,left:a.left,width:g.width(),height:g.height()};d=k.width==l.width&&k.height==l.height;i.fadeOut(c.changeFade,function(){var f=function(){i.html(m.contents()).fadeIn(c.changeFade,L)};b.event.trigger("fancybox-change");i.empty().css("overflow","hidden");if(d){i.css({top:c.padding,left:c.padding,width:Math.max(l.width-c.padding*
2,1),height:Math.max(l.height-c.padding*2-v,1)});f()}else{i.css({top:c.padding,left:c.padding,width:Math.max(k.width-c.padding*2,1),height:Math.max(k.height-c.padding*2,1)});y.prop=0;b(y).animate({prop:1},{duration:c.changeSpeed,easing:c.easingChange,step:M,complete:f})}})}else{g.css("opacity",1);if(c.transitionIn=="elastic"){k=Q();i.css({top:c.padding,left:c.padding,width:Math.max(k.width-c.padding*2,1),height:Math.max(k.height-c.padding*2,1)}).html(m.contents());g.css(k).show();if(c.opacity)l.opacity=
0;y.prop=0;b(y).animate({prop:1},{duration:c.speedIn,easing:c.easingIn,step:M,complete:L})}else{i.css({top:c.padding,left:c.padding,width:Math.max(l.width-c.padding*2,1),height:Math.max(l.height-c.padding*2-v,1)}).html(m.contents());g.css(l).fadeIn(c.transitionIn=="none"?0:c.speedIn,L)}}},F=function(){m.width(e.width);m.height(e.height);if(e.width=="auto")e.width=m.width();if(e.height=="auto")e.height=m.height();N()},Z=function(){h=true;e.width=s.width;e.height=s.height;b("<img />").attr({id:"fancybox-img",
src:s.src,alt:e.title}).appendTo(m);N()},C=function(){J();var a=q[p],d,f,o,t,w;e=b.extend({},b.fn.fancybox.defaults,typeof b(a).data("fancybox")=="undefined"?e:b(a).data("fancybox"));o=a.title||b(a).title||e.title||"";if(a.nodeName&&!e.orig)e.orig=b(a).children("img:first").length?b(a).children("img:first"):b(a);if(o===""&&e.orig)o=e.orig.attr("alt");d=a.nodeName&&/^(?:javascript|#)/i.test(a.href)?e.href||null:e.href||a.href||null;if(e.type){f=e.type;if(!d)d=e.content}else if(e.content)f="html";else if(d)if(d.match(G))f=
"image";else if(d.match(S))f="swf";else if(b(a).hasClass("iframe"))f="iframe";else if(d.match(/#/)){a=d.substr(d.indexOf("#"));f=b(a).length>0?"inline":"ajax"}else f="ajax";else f="inline";e.type=f;e.href=d;e.title=o;if(e.autoDimensions&&e.type!=="iframe"&&e.type!=="swf"){e.width="auto";e.height="auto"}if(e.modal){e.overlayShow=true;e.hideOnOverlayClick=false;e.hideOnContentClick=false;e.enableEscapeButton=false;e.showCloseButton=false}if(b.isFunction(e.onStart))if(e.onStart(q,p,e)===false){h=false;
return}m.css("padding",20+e.padding+e.margin);b(".fancybox-inline-tmp").unbind("fancybox-cancel").bind("fancybox-change",function(){b(this).replaceWith(i.children())});switch(f){case "html":m.html(e.content);F();break;case "inline":b('<div class="fancybox-inline-tmp" />').hide().insertBefore(b(a)).bind("fancybox-cleanup",function(){b(this).replaceWith(i.children())}).bind("fancybox-cancel",function(){b(this).replaceWith(m.children())});b(a).appendTo(m);F();break;case "image":h=false;b.fancybox.showActivity();
s=new Image;s.onerror=function(){P()};s.onload=function(){s.onerror=null;s.onload=null;Z()};s.src=d;break;case "swf":t='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+e.width+'" height="'+e.height+'"><param name="movie" value="'+d+'"></param>';w="";b.each(e.swf,function(r,R){t+='<param name="'+r+'" value="'+R+'"></param>';w+=" "+r+'="'+R+'"'});t+='<embed src="'+d+'" type="application/x-shockwave-flash" width="'+e.width+'" height="'+e.height+'"'+w+"></embed></object>";m.html(t);
F();break;case "ajax":a=d.split("#",2);f=e.ajax.data||{};if(a.length>1){d=a[0];if(typeof f=="string")f+="&selector="+a[1];else f.selector=a[1]}h=false;b.fancybox.showActivity();E=b.ajax(b.extend(e.ajax,{url:d,data:f,error:P,success:function(r){if(E.status==200){m.html(r);F()}}}));break;case "iframe":b('<iframe id="fancybox-frame" name="fancybox-frame'+(new Date).getTime()+'" frameborder="0" hspace="0" scrolling="'+e.scrolling+'" src="'+e.href+'"></iframe>').appendTo(m);N();break}},$=function(){if(u.is(":visible")){b("div",
u).css("top",I*-40+"px");I=(I+1)%12}else clearInterval(H)},aa=function(){if(!b("#fancybox-wrap").length){b("body").append(m=b('<div id="fancybox-tmp"></div>'),u=b('<div id="fancybox-loading"><div></div></div>'),x=b('<div id="fancybox-overlay"></div>'),g=b('<div id="fancybox-wrap"></div>'));if(!b.support.opacity){g.addClass("fancybox-ie");u.addClass("fancybox-ie")}D=b('<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(g);
D.append(i=b('<div id="fancybox-inner"></div>'),z=b('<a id="fancybox-close"></a>'),A=b('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),B=b('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>'));z.click(b.fancybox.close);u.click(b.fancybox.cancel);A.click(function(a){a.preventDefault();b.fancybox.prev()});B.click(function(a){a.preventDefault();b.fancybox.next()});if(O){x.get(0).style.setExpression("height",
"document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'");u.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'");D.prepend('<iframe id="fancybox-hide-sel-frame" src="javascript:\'\';" scrolling="no" frameborder="0" ></iframe>')}}};
b.fn.fancybox=function(a){b(this).data("fancybox",b.extend({},a,b.metadata?b(this).metadata():{})).unbind("click.fb").bind("click.fb",function(d){d.preventDefault();if(!h){h=true;b(this).blur();q=[];p=0;d=b(this).attr("rel")||"";if(!d||d==""||d==="nofollow")q.push(this);else{q=b("a[rel="+d+"], area[rel="+d+"]");p=q.index(this)}C();return false}});return this};b.fancybox=function(a,d){if(!h){h=true;d=typeof d!=="undefined"?d:{};q=[];p=d.index||0;if(b.isArray(a)){for(var f=0,o=a.length;f<o;f++)if(typeof a[f]==
"object")b(a[f]).data("fancybox",b.extend({},d,a[f]));else a[f]=b({}).data("fancybox",b.extend({content:a[f]},d));q=jQuery.merge(q,a)}else{if(typeof a=="object")b(a).data("fancybox",b.extend({},d,a));else a=b({}).data("fancybox",b.extend({content:a},d));q.push(a)}if(p>q.length||p<0)p=0;C()}};b.fancybox.showActivity=function(){clearInterval(H);u.show();H=setInterval($,66)};b.fancybox.hideActivity=function(){u.hide()};b.fancybox.next=function(){return b.fancybox.pos(n+1)};b.fancybox.prev=function(){return b.fancybox.pos(n-
1)};b.fancybox.pos=function(a){if(!h){a=parseInt(a,10);if(a>-1&&j.length>a){p=a;C()}if(c.cyclic&&j.length>1&&a<0){p=j.length-1;C()}if(c.cyclic&&j.length>1&&a>=j.length){p=0;C()}}};b.fancybox.cancel=function(){if(!h){h=true;b.event.trigger("fancybox-cancel");J();e&&b.isFunction(e.onCancel)&&e.onCancel(q,p,e);h=false}};b.fancybox.close=function(){function a(){x.fadeOut("fast");g.hide();b.event.trigger("fancybox-cleanup");i.empty();b.isFunction(c.onClosed)&&c.onClosed(j,n,c);j=e=[];n=p=0;c=e={};h=false}
if(!(h||g.is(":hidden"))){h=true;if(c&&b.isFunction(c.onCleanup))if(c.onCleanup(j,n,c)===false){h=false;return}J();b(z.add(A).add(B)).hide();b("#fancybox-title").remove();g.add(i).add(x).unbind();b(window).unbind("resize.fb scroll.fb");b(document).unbind("keydown.fb");i.css("overflow","hidden");if(c.transitionOut=="elastic"){k=Q();var d=g.position();l={top:d.top,left:d.left,width:g.width(),height:g.height()};if(c.opacity)l.opacity=1;y.prop=1;b(y).animate({prop:0},{duration:c.speedOut,easing:c.easingOut,
step:M,complete:a})}else g.fadeOut(c.transitionOut=="none"?0:c.speedOut,a)}};b.fancybox.resize=function(){var a,d;if(!(h||g.is(":hidden"))){h=true;a=i.wrapInner("<div style='overflow:auto'></div>").children();d=a.height();g.css({height:d+c.padding*2+v});i.css({height:d});a.replaceWith(a.children());b.fancybox.center()}};b.fancybox.center=function(){h=true;var a=K(),d=c.margin,f={};f.top=a[3]+(a[1]-(g.height()-v+40))*0.5;f.left=a[2]+(a[0]-(g.width()+40))*0.5;f.top=Math.max(a[3]+d,f.top);f.left=Math.max(a[2]+
d,f.left);g.css(f);h=false};b.fn.fancybox.defaults={padding:10,margin:20,opacity:false,modal:false,cyclic:false,scrolling:"auto",width:560,height:340,autoScale:true,autoDimensions:true,centerOnScroll:false,ajax:{},swf:{wmode:"transparent"},hideOnOverlayClick:true,hideOnContentClick:false,overlayShow:true,overlayOpacity:0.6,overlayColor:"#000",titleShow:true,titlePosition:"outside",titleFormat:null,transitionIn:"fade",transitionOut:"fade",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};b(document).ready(function(){aa()})})(jQuery);; 


