/* --------- /javascripts/jquery.js --------- */ 

(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)})}});(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")}})})();/* --------- /javascripts/hoverintent.js --------- */ 

(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}
if(p==this){return false;}
var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}
if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);/* --------- /javascripts/jquery.bgiframe.min.js --------- */ 

(function($){$.fn.bgIframe=$.fn.bgiframe=function(s){if($.browser.msie&&parseInt($.browser.version)<=6){s=$.extend({top:'auto',left:'auto',width:'auto',height:'auto',opacity:true,src:'javascript:false;'},s||{});var prop=function(n){return n&&n.constructor==Number?n+'px':n;},html='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+s.src+'"'+'style="display:block;position:absolute;z-index:-1;'+(s.opacity!==false?'filter:Alpha(Opacity=\'0\');':'')+'top:'+(s.top=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+\'px\')':prop(s.top))+';'+'left:'+(s.left=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+\'px\')':prop(s.left))+';'+'width:'+(s.width=='auto'?'expression(this.parentNode.offsetWidth+\'px\')':prop(s.width))+';'+'height:'+(s.height=='auto'?'expression(this.parentNode.offsetHeight+\'px\')':prop(s.height))+';'+'"/>';return this.each(function(){if($('> iframe.bgiframe',this).length==0)this.insertBefore(document.createElement(html),this.firstChild);});}return this;};if(!$.browser.version)$.browser.version=navigator.userAgent.toLowerCase().match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)[1];})(jQuery);/* --------- /javascripts/supersubs.js --------- */ 
;(function($){$.fn.supersubs=function(options){var opts=$.extend({},$.fn.supersubs.defaults,options);return this.each(function(){var $$=$(this);var o=$.meta?$.extend({},opts,$$.data()):opts;var fontsize=$('<li id="menu-fontsize">&#8212;</li>').css({'padding':0,'position':'absolute','top':'-999em','width':'auto'}).appendTo($$).width();$('#menu-fontsize').remove();$ULs=$$.find('ul');$ULs.each(function(i){var $ul=$ULs.eq(i);var $LIs=$ul.children();var $As=$LIs.children('a');var liFloat=$LIs.css('white-space','nowrap').css('float');var emWidth=$ul.add($LIs).add($As).css({'float':'none','width':'auto'}).end().end()[0].clientWidth/fontsize;emWidth+=o.extraWidth;if(emWidth>o.maxWidth){emWidth=o.maxWidth;}
else if(emWidth<o.minWidth){emWidth=o.minWidth;}
emWidth+='em';$ul.css('width',emWidth);$LIs.css({'float':liFloat,'width':'100%','white-space':'normal'}).each(function(){var $childUl=$('>ul',this);var offsetDirection=$childUl.css('left')!==undefined?'left':'right';$childUl.css(offsetDirection,emWidth);});});});};$.fn.supersubs.defaults={minWidth:9,maxWidth:25,extraWidth:0};})(jQuery);/* --------- /javascripts/superfish.js --------- */ 
;(function($){$.fn.superfish=function(op){var sf=$.fn.superfish,c=sf.c,$arrow=$(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),over=function(){var $$=$(this),menu=getMenu($$);clearTimeout(menu.sfTimer);$$.showSuperfishUl().siblings().hideSuperfishUl();},out=function(){var $$=$(this),menu=getMenu($$),o=sf.op;clearTimeout(menu.sfTimer);menu.sfTimer=setTimeout(function(){o.retainPath=($.inArray($$[0],o.$path)>-1);$$.hideSuperfishUl();if(o.$path.length&&$$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}},o.delay);},getMenu=function($menu){var menu=$menu.parents(['ul.',c.menuClass,':first'].join(''))[0];sf.op=sf.o[menu.serial];return menu;},addArrow=function($a){$a.addClass(c.anchorClass).append($arrow.clone());};return this.each(function(){var s=this.serial=sf.o.length;var o=$.extend({},sf.defaults,op);o.$path=$('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){$(this).addClass([o.hoverClass,c.bcClass].join(' ')).filter('li:has(ul)').removeClass(o.pathClass);});sf.o[s]=sf.op=o;$('li:has(ul)',this)[($.fn.hoverIntent&&!o.disableHI)?'hoverIntent':'hover'](over,out).each(function(){if(o.autoArrows)addArrow($('>a:first-child',this));}).not('.'+c.bcClass).hideSuperfishUl();var $a=$('a',this);$a.each(function(i){var $li=$a.eq(i).parents('li');$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});});o.onInit.call(this);}).each(function(){var menuClasses=[c.menuClass];if(sf.op.dropShadows&&!($.browser.msie&&$.browser.version<7))menuClasses.push(c.shadowClass);$(this).addClass(menuClasses.join(' '));});};var sf=$.fn.superfish;sf.o=[];sf.op={};sf.IE7fix=function(){var o=sf.op;if($.browser.msie&&$.browser.version>6&&o.dropShadows&&o.animation.opacity!=undefined)
this.toggleClass(sf.c.shadowClass+'-off');};sf.c={bcClass:'sf-breadcrumb',menuClass:'sf-js-enabled',anchorClass:'sf-with-ul',arrowClass:'sf-sub-indicator',shadowClass:'sf-shadow'};sf.defaults={hoverClass:'sfHover',pathClass:'overideThisToUse',pathLevels:1,delay:800,animation:{opacity:'show'},speed:'normal',autoArrows:true,dropShadows:true,disableHI:false,onInit:function(){},onBeforeShow:function(){},onShow:function(){},onHide:function(){}};$.fn.extend({hideSuperfishUl:function(){var o=sf.op,not=(o.retainPath===true)?o.$path:'';o.retainPath=false;var $ul=$(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass).find('>ul').hide().css('visibility','hidden');o.onHide.call($ul);return this;},showSuperfishUl:function(){var o=sf.op,sh=sf.c.shadowClass+'-off',$ul=this.addClass(o.hoverClass).find('>ul:hidden').css('visibility','visible');sf.IE7fix.call($ul);o.onBeforeShow.call($ul);$ul.animate(o.animation,o.speed,function(){sf.IE7fix.call($ul);o.onShow.call($ul);});return this;}});})(jQuery);/* --------- /javascripts/cufon-yui.js --------- */ 

var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var W=L.DOM={ready:(function(){var b=false,d={loaded:1,complete:1};var a=[],c=function(){if(b){return}b=true;for(var e;e=a.shift();e()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",c,false);window.addEventListener("pageshow",c,false)}if(!window.opera&&document.readyState){(function(){d[document.readyState]?c():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");c()}catch(f){setTimeout(arguments.callee,1)}})()}P(window,"load",c);return function(e){if(!arguments.length){c()}else{b?e():a.push(e)}}})()};var M=L.CSS={Size:function(b,a){this.value=parseFloat(b);this.unit=String(b).match(/[a-z%]*$/)[0]||"px";this.convert=function(c){return c/a*this.value};this.convertFrom=function(c){return c/this.value*a};this.toString=function(){return this.value+this.unit}},color:I(function(b){var a={};a.color=b.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(d,c,e){a.opacity=parseFloat(e);return"rgb("+c+")"});return a}),getStyle:function(b){var a=document.defaultView;if(a&&a.getComputedStyle){return new A(a.getComputedStyle(b,null))}if(b.currentStyle){return new A(b.currentStyle)}return new A(b.style)},gradient:I(function(e){var f={id:e,type:e.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},b=e.substr(e.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var d=0,a=b.length,c;d<a;++d){c=b[d].split("=",2).reverse();f.stops.push([c[1]||d/(a-1),c[0]])}return f}),quotedList:I(function(d){var c=[],b=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,a;while(a=b.exec(d)){c.push(a[3]||a[1])}return c}),recognizesMedia:I(function(d){var c=document.createElement("style"),b,a;c.type="text/css";c.media=d;b=F("head")[0];b.insertBefore(c,b.firstChild);a=!!(c.sheet||c.styleSheet);b.removeChild(c);return a}),supports:function(c,b){var a=document.createElement("span").style;if(a[c]===undefined){return false}a[c]=b;return a[c]===b},textAlign:function(d,c,a,b){if(c.get("textAlign")=="right"){if(a>0){d=" "+d}}else{if(a<b-1){d+=" "}}return d},textDecoration:function(f,e){if(!e){e=this.getStyle(f)}var b={underline:null,overline:null,"line-through":null};for(var a=f;a.parentNode&&a.parentNode.nodeType==1;){var d=true;for(var c in b){if(!J(b,c)||b[c]){continue}if(e.get("textDecoration").indexOf(c)!=-1){b[c]=e.get("color")}d=false}if(d){break}e=this.getStyle(a=a.parentNode)}return b},textShadow:I(function(e){if(e=="none"){return null}var d=[],f={},a,b=0;var c=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(a=c.exec(e)){if(a[0]==","){d.push(f);f={},b=0}else{if(a[1]){f.color=a[1]}else{f[["offX","offY","blur"][b++]]=a[2]}}}d.push(f);return d}),textTransform:function(b,a){return b[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[a.get("textTransform")]||"toString"]()},whiteSpace:(function(){var a={inline:1,"inline-block":1,"run-in":1};return function(d,b,c){if(a[b.get("display")]){return d}if(!c.previousSibling){d=d.replace(/^\s+/,"")}if(!c.nextSibling){d=d.replace(/\s+$/,"")}return d}})()};M.ready=(function(){var c=!M.recognizesMedia("all"),b=false;var a=[],e=function(){c=true;for(var h;h=a.shift();h()){}};var f=F("link"),g={stylesheet:1};function d(){var j,h,k;for(h=0;k=f[h];++h){if(k.disabled||!g[k.rel.toLowerCase()]||!M.recognizesMedia(k.media||"screen")){continue}j=k.sheet||k.styleSheet;if(!j||j.disabled){return false}}return true}W.ready(function(){if(!b){b=M.getStyle(document.body).isUsable()}if(c||(b&&d())){e()}else{setTimeout(arguments.callee,10)}});return function(h){if(c){h()}else{a.push(h)}}})();function R(b){var a=this.face=b.face;this.glyphs=b.glyphs;this.w=b.w;this.baseSize=parseInt(a["units-per-em"],10);this.family=a["font-family"].toLowerCase();this.weight=a["font-weight"];this.style=a["font-style"]||"normal";this.viewBox=(function(){var d=a.bbox.split(/\s+/);var c={minX:parseInt(d[0],10),minY:parseInt(d[1],10),maxX:parseInt(d[2],10),maxY:parseInt(d[3],10)};c.width=c.maxX-c.minX,c.height=c.maxY-c.minY;c.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return c})();this.ascent=-parseInt(a.ascent,10);this.descent=-parseInt(a.descent,10);this.height=-this.ascent+this.descent}function E(){var b={},a={oblique:"italic",italic:"oblique"};this.add=function(c){(b[c.style]||(b[c.style]={}))[c.weight]=c};this.get=function(g,h){var f=b[g]||b[a[g]]||b.normal||b.italic||b.oblique;if(!f){return null}h={normal:400,bold:700}[h]||parseInt(h,10);if(f[h]){return f[h]}var d={1:1,99:0}[h%100],j=[],e,c;if(d===undefined){d=h>400}if(h==500){h=400}for(var i in f){if(!J(f,i)){continue}i=parseInt(i,10);if(!e||i<e){e=i}if(!c||i>c){c=i}j.push(i)}if(h<e){h=e}if(h>c){h=c}j.sort(function(l,k){return(d?(l>h&&k>h)?l<k:l>k:(l<h&&k<h)?l>k:l<k)?-1:1});return f[j[0]]}}function Q(){function c(e,f){if(e.contains){return e.contains(f)}return e.compareDocumentPosition(f)&16}function a(g){var f=g.relatedTarget;if(!f||c(this,f)){return}b(this)}function d(f){b(this)}function b(e){setTimeout(function(){L.replace(e,D.get(e).options,true)},10)}this.attach=function(e){if(e.onmouseenter===undefined){P(e,"mouseover",a);P(e,"mouseout",a)}else{P(e,"mouseenter",d);P(e,"mouseleave",d)}}}function T(){var b=[],c={};function a(g){var d=[],f;for(var e=0;f=g[e];++e){d[e]=b[c[f]]}return d}this.add=function(e,d){c[e]=b.push(d)-1};this.repeat=function(){var d=arguments.length?a(arguments):b,e;for(var f=0;e=d[f++];){L.replace(e[0],e[1],true)}}}function Z(){var c={},a=0;function b(d){return d.cufid||(d.cufid=++a)}this.get=function(d){var e=b(d);return c[e]||(c[e]={})}}function A(a){var c={},b={};this.extend=function(d){for(var e in d){if(J(d,e)){c[e]=d[e]}}return this};this.get=function(d){return c[d]!=undefined?c[d]:a[d]};this.getSize=function(e,d){return b[e]||(b[e]=new M.Size(this.get(e),d))};this.isUsable=function(){return!!a}}function P(b,a,c){if(b.addEventListener){b.addEventListener(a,c,false)}else{if(b.attachEvent){b.attachEvent("on"+a,function(){return c.call(b,window.event)})}}}function U(b,a){var c=D.get(b);if(c.options){return b}if(a.hover&&a.hoverables[b.nodeName.toLowerCase()]){B.attach(b)}c.options=a;return b}function I(a){var b={};return function(c){if(!J(b,c)){b[c]=a.apply(null,arguments)}return b[c]}}function C(f,e){if(!e){e=M.getStyle(f)}var b=M.quotedList(e.get("fontFamily").toLowerCase()),d;for(var c=0,a=b.length;c<a;++c){d=b[c];if(H[d]){return H[d].get(e.get("fontStyle"),e.get("fontWeight"))}}return null}function F(a){return document.getElementsByTagName(a)}function J(b,a){return b.hasOwnProperty(a)}function G(){var a={},c,e;for(var d=0,b=arguments.length;c=arguments[d],d<b;++d){for(e in c){if(J(c,e)){a[e]=c[e]}}}return a}function N(d,n,b,o,e,c){var m=o.separate;if(m=="none"){return Y[o.engine].apply(null,arguments)}var k=document.createDocumentFragment(),g;var h=n.split(O[m]),a=(m=="words");if(a&&S){if(/^\s/.test(n)){h.unshift("")}if(/\s$/.test(n)){h.push("")}}for(var j=0,f=h.length;j<f;++j){g=Y[o.engine](d,a?M.textAlign(h[j],b,j,f):h[j],b,o,e,c,j<f-1);if(g){k.appendChild(g)}}return k}function K(b,j){var c,a,d,g,f,i;for(d=U(b,j).firstChild;d;d=f){g=d.nodeType;f=d.nextSibling;i=false;if(g==1){if(!d.firstChild){continue}if(!/cufon/.test(d.className)){arguments.callee(d,j);continue}else{i=true}}else{if(g!=3){continue}}if(!a){a=M.getStyle(b).extend(j)}if(!c){c=C(b,a)}if(!c){continue}if(i){Y[j.engine](c,null,a,j,d,b);continue}var h=M.whiteSpace(d.data,a,d);if(h===""){continue}var e=N(c,h,a,j,d,b);if(e){d.parentNode.replaceChild(e,d)}else{d.parentNode.removeChild(d)}}}var S=" ".split(/\s+/).length==0;var D=new Z();var B=new Q();var X=new T();var Y={},H={},V={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(a){return jQuery(a)})||(window.dojo&&dojo.query)||(window.$$&&function(a){return $$(a)})||(window.$&&function(a){return $(a)})||(document.querySelectorAll&&function(a){return document.querySelectorAll(a)})||F),separate:"words",textShadow:"none"};var O={words:/[^\S\u00a0]+/,characters:""};L.now=function(){W.ready();return L};L.refresh=function(){X.repeat.apply(X,arguments);return L};L.registerEngine=function(b,a){if(!a){return L}Y[b]=a;return L.set("engine",b)};L.registerFont=function(c){var a=new R(c),b=a.family;if(!H[b]){H[b]=new E()}H[b].add(a);return L.set("fontFamily",'"'+b+'"')};L.replace=function(c,b,a){b=G(V,b);if(!b.engine){return L}if(typeof b.textShadow=="string"){b.textShadow=M.textShadow(b.textShadow)}if(typeof b.color=="string"&&/^-/.test(b.color)){b.textGradient=M.gradient(b.color)}if(!a){X.add(c,arguments)}if(c.nodeType||typeof c=="string"){c=[c]}M.ready(function(){for(var e=0,d=c.length;e<d;++e){var f=c[e];if(typeof f=="string"){L.replace(b.selector(f),b,true)}else{K(f,b)}}});return L};L.set=function(a,b){V[a]=b;return L};return L})();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-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(E?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;}"+(A?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(AD,Z,u,V,d,AE){var I=(Z===null);if(I){Z=d.alt}var b=AD.viewBox;var K=u.getSize("fontSize",AD.baseSize);var s=u.get("letterSpacing");s=(s=="normal")?0:K.convertFrom(parseInt(s,10));var c=0,t=0,r=0,X=0;var a=V.textShadow,p=[];if(a){for(var AC=a.length;AC--;){var h=a[AC];var o=K.convertFrom(parseFloat(h.offX));var n=K.convertFrom(parseFloat(h.offY));p[AC]=[o,n];if(n<c){c=n}if(o>t){t=o}if(n>r){r=n}if(o<X){X=o}}}var AH=Cufon.CSS.textTransform(Z,u).split(""),T;var J=AD.glyphs,W,M,w;var G=0,P,f=[];for(var AC=0,AA=0,v=AH.length;AC<v;++AC){W=J[T=AH[AC]]||AD.missingGlyph;if(!W){continue}if(M){G-=w=M[T]||0;f[AA-1]-=w}G+=P=f[AA++]=~~(W.w||AD.w)+s;M=W.k}if(P===undefined){return null}t+=b.width-P;X+=b.minX;var U,L;if(I){U=d;L=d.firstChild}else{U=document.createElement("span");U.className="cufon cufon-canvas";U.alt=Z;L=document.createElement("canvas");U.appendChild(L);if(V.printable){var z=document.createElement("span");z.className="cufon-alt";z.appendChild(document.createTextNode(Z));U.appendChild(z)}}var AI=U.style;var m=L.style;var H=K.convert(b.height);var AG=Math.ceil(H);var q=AG/H;L.width=Math.ceil(K.convert(G*q+t-X));L.height=Math.ceil(K.convert(b.height-c+r));c+=b.minY;m.top=Math.round(K.convert(c-AD.ascent))+"px";m.left=Math.round(K.convert(X))+"px";var S=Math.ceil(K.convert(G*q))+"px";if(A){AI.width=S;AI.height=K.convert(AD.height)+"px"}else{AI.paddingLeft=S;AI.paddingBottom=(K.convert(AD.height)-1)+"px"}var AF=L.getContext("2d"),e=H/b.height;AF.scale(e,e*q);AF.translate(-X,-c);AF.lineWidth=AD.face["underline-thickness"];AF.save();function N(i,g){AF.strokeStyle=g;AF.beginPath();AF.moveTo(0,i);AF.lineTo(G,i);AF.stroke()}var O=V.enableTextDecoration?Cufon.CSS.textDecoration(AE,u):{};if(O.underline){N(-AD.face["underline-position"],O.underline)}if(O.overline){N(AD.ascent,O.overline)}function AB(){AF.scale(q,1);for(var x=0,k=0,g=AH.length;x<g;++x){var y=J[AH[x]]||AD.missingGlyph;if(!y){continue}if(y.d){AF.beginPath();if(y.code){C(y.code,AF)}else{y.code=D("m"+y.d,AF)}AF.fill()}AF.translate(f[k++],0)}AF.restore()}if(a){for(var AC=a.length;AC--;){var h=a[AC];AF.save();AF.fillStyle=h.color;AF.translate.apply(AF,p[AC]);AB()}}var R=V.textGradient;if(R){var Y=R.stops,Q=AF.createLinearGradient(0,b.minY,0,b.maxY);for(var AC=0,v=Y.length;AC<v;++AC){Q.addColorStop.apply(Q,Y[AC])}AF.fillStyle=Q}else{AF.fillStyle=u.get("color")}AB();if(O["line-through"]){N(-AD.descent,O["line-through"])}return U}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:middle;}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>').replace(/;/g,"!important;"));function C(F,G){return A(F,/(?:em|ex|%)$/i.test(G)?"1em":G)}function A(I,J){if(/px$/i.test(J)){return parseFloat(J)}var H=I.style.left,G=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;I.style.left=J;var F=I.style.pixelLeft;I.style.left=H;I.runtimeStyle.left=G;return F}var E={};function D(K){var L=K.id;if(!E[L]){var I=K.stops,J=document.createElement("cvml:fill"),F=[];J.type="gradient";J.angle=180;J.focus="0";J.method="sigma";J.color=I[0][1];for(var H=1,G=I.length-1;H<G;++H){F.push(I[H][0]*100+"% "+I[H][1])}J.colors=F.join(",");J.color2=I[G][1];E[L]=J}return E[L]}return function(AB,b,v,Y,f,AC,t){var I=(b===null);if(I){b=f.alt}var d=AB.viewBox;var K=v.computedFontSize||(v.computedFontSize=new Cufon.CSS.Size(C(AC,v.get("fontSize"))+"px",AB.baseSize));var s=v.computedLSpacing;if(s==undefined){s=v.get("letterSpacing");v.computedLSpacing=s=(s=="normal")?0:~~K.convertFrom(A(AC,s))}var V,L;if(I){V=f;L=f.firstChild}else{V=document.createElement("span");V.className="cufon cufon-vml";V.alt=b;L=document.createElement("span");L.className="cufon-vml-canvas";V.appendChild(L);if(Y.printable){var y=document.createElement("span");y.className="cufon-alt";y.appendChild(document.createTextNode(b));V.appendChild(y)}if(!t){V.appendChild(document.createElement("cvml:shape"))}}var AH=V.style;var n=L.style;var G=K.convert(d.height),AE=Math.ceil(G);var r=AE/G;var q=d.minX,p=d.minY;n.height=AE;n.top=Math.round(K.convert(p-AB.ascent));n.left=Math.round(K.convert(q));AH.height=K.convert(AB.height)+"px";var P=Y.enableTextDecoration?Cufon.CSS.textDecoration(AC,v):{};var a=v.get("color");var AG=Cufon.CSS.textTransform(b,v).split(""),U;var J=AB.glyphs,Z,M,x;var F=0,g=[],o=0,Q;var S,c=Y.textShadow;for(var AA=0,z=0,w=AG.length;AA<w;++AA){Z=J[U=AG[AA]]||AB.missingGlyph;if(!Z){continue}if(M){F-=x=M[U]||0;g[z-1]-=x}F+=Q=g[z++]=~~(Z.w||AB.w)+s;M=Z.k}if(Q===undefined){return null}var T=-q+F+(d.width-Q);var AF=K.convert(T*r),u=Math.round(AF);var m=T+","+d.height,H;var e="r"+m+"ns";var R=Y.textGradient&&D(Y.textGradient);for(AA=0,z=0;AA<w;++AA){Z=J[AG[AA]]||AB.missingGlyph;if(!Z){continue}if(I){S=L.childNodes[z];while(S.firstChild){S.removeChild(S.firstChild)}}else{S=document.createElement("cvml:shape");L.appendChild(S)}S.stroked="f";S.coordsize=m;S.coordorigin=H=(q-o)+","+p;S.path=(Z.d?"m"+Z.d+"xe":"")+"m"+H+e;S.fillcolor=a;if(R){S.appendChild(R.cloneNode(false))}var AD=S.style;AD.width=u;AD.height=AE;if(c){var O=c[0],N=c[1];var X=Cufon.CSS.color(O.color),W;var h=document.createElement("cvml:shadow");h.on="t";h.color=X.color;h.offset=O.offX+","+O.offY;if(N){W=Cufon.CSS.color(N.color);h.type="double";h.color2=W.color;h.offset2=N.offX+","+N.offY}h.opacity=X.opacity||(W&&W.opacity)||1;S.appendChild(h)}o+=g[z++]}AH.width=Math.max(Math.ceil(K.convert(F*r)),0);return V}})());/* --------- /javascripts/Berlin_Sans_FB_400.font.js --------- */ 

Cufon.registerFont({"w":125,"face":{"font-family":"Berlin Sans FB","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 14 6 2 2 5 2 2 3 6","ascent":"288","descent":"-72","x-height":"4","bbox":"-18.2275 -321.392 386 73","underline-thickness":"17.9297","underline-position":"-36.7383","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":90},"!":{"d":"36,-73v-22,-62,-14,-107,-12,-174v12,2,27,1,39,0v8,56,-2,115,-11,168v1,7,-11,8,-16,6xm43,-45v14,0,23,12,23,24v0,14,-9,26,-23,26v-13,0,-22,-13,-22,-26v0,-12,8,-24,22,-24","w":83},"\"":{"d":"64,-243v3,-7,29,-6,33,0v1,27,-1,52,-8,71v-1,5,-18,5,-19,1v-6,-20,-7,-45,-6,-72xm43,-246v7,19,0,56,-4,75v-1,2,-4,3,-10,3v-5,0,-8,-2,-8,-4v-9,-21,-10,-44,-9,-72v0,-2,6,-3,16,-3v8,0,13,0,15,1","w":109},"#":{"d":"175,-247v6,-9,20,3,27,8v0,1,-7,26,-22,75v26,3,56,-13,48,15v-6,21,-16,3,-54,7v-2,11,-7,28,-13,50v28,0,47,-5,58,2v-1,8,1,23,-8,24v-5,-1,-24,-1,-57,-2v-9,28,-11,63,-24,86v-39,-13,-17,-19,-2,-87r-44,1v-4,18,-11,45,-20,80v-1,3,-2,4,-4,4v-38,-12,-19,-17,-3,-84r-44,2v-10,-3,2,-15,-1,-25v7,-8,41,0,54,-1r12,-50v-18,-1,-44,6,-57,-1v1,-9,-1,-23,7,-23r55,2r22,-84v6,-11,14,5,23,3v12,11,-5,26,-18,81r44,0xm148,-142r-44,-1v-2,8,-6,25,-13,51r45,0v3,-11,7,-28,12,-50","w":239},"$":{"d":"92,-215v9,1,61,11,55,24v-4,4,-5,19,-11,25v-12,-7,-32,-19,-45,-18r-1,61v30,20,48,28,51,61v3,30,-29,54,-54,57v-1,10,1,25,-1,33v-8,-2,-21,6,-21,-4v0,-8,0,-16,1,-25v-27,-3,-52,5,-50,-24v0,-6,-8,-18,1,-19v12,7,33,11,49,9v0,-13,1,-33,1,-60v-30,-21,-50,-29,-52,-62v-2,-31,25,-52,54,-57v1,-8,-3,-21,2,-26v20,0,23,-6,21,25xm69,-182v-23,6,-29,36,0,48r0,-48xm88,-38v28,-8,23,-31,1,-44","w":154},"%":{"d":"201,-134v31,0,56,35,56,68v0,34,-25,68,-56,68v-33,0,-57,-33,-57,-68v0,-33,24,-68,57,-68xm172,-220v4,1,19,6,13,14r-47,99v-10,19,-24,68,-46,112v-2,-1,-20,-6,-14,-15v11,-16,46,-95,49,-101v15,-25,27,-81,45,-109xm65,-219v32,0,56,34,56,68v0,33,-24,68,-56,68v-33,0,-57,-35,-57,-68v0,-35,24,-68,57,-68xm201,-27v34,0,35,-77,0,-77v-37,0,-37,76,0,77xm65,-113v35,0,36,-77,0,-77v-37,0,-36,77,0,77","w":264},"&":{"d":"169,-62v20,21,30,28,66,28v11,0,4,14,5,27v1,13,-25,5,-36,8v-22,0,-46,-20,-57,-34v-22,23,-38,38,-75,39v-34,1,-59,-27,-58,-63v1,-45,24,-62,58,-82v-23,-52,-7,-110,51,-110v32,0,60,18,58,47v-2,39,-28,52,-64,72v11,18,22,33,33,46v24,-30,31,-42,74,-45v24,-2,12,25,6,37v-33,-1,-47,10,-61,30xm103,-156v24,-14,42,-22,45,-45v2,-14,-10,-23,-24,-23v-36,0,-33,38,-21,68xm52,-62v0,46,54,42,76,7v-19,-23,-34,-42,-42,-57v-23,14,-34,31,-34,50","w":247},"'":{"d":"12,-242v0,-3,6,-5,18,-5v25,1,19,-3,19,27v0,16,-1,42,-11,57v-32,10,-23,-55,-26,-79","w":61},"(":{"d":"115,-257v2,12,19,27,7,37v-69,24,-75,148,-37,210v10,15,28,24,41,37v1,0,-11,32,-12,32v-63,-26,-94,-83,-94,-160v1,-75,37,-134,95,-156","w":126},")":{"d":"11,-257v57,22,96,81,96,156v0,78,-32,134,-95,160v-1,-4,-20,-35,-8,-37v63,-25,79,-149,38,-211v-8,-11,-20,-24,-38,-31v-14,-6,6,-33,7,-37","w":126},"*":{"d":"89,-163v-1,8,27,44,4,45v-2,2,-26,-29,-29,-27v-7,1,-29,46,-36,18v3,-21,26,-36,-5,-48v-17,-6,-21,-15,-11,-22v19,-2,41,15,40,-15v3,-11,-2,-29,13,-27v23,3,-5,56,34,44v13,-4,19,-2,21,7v3,4,-33,21,-31,25","w":128},"+":{"d":"70,-31v-31,8,-13,-39,-16,-60v-18,-4,-57,15,-46,-16v1,-26,-3,-16,46,-16r-1,-52v2,-5,31,-8,35,1r-1,51v16,1,38,-3,51,2r-5,31r-46,-1v-5,23,17,63,-17,60","w":145},",":{"d":"18,-13v-10,-31,25,-32,45,-34v2,0,4,2,4,5v4,35,-33,69,-53,80v-1,1,-16,-16,-15,-18v7,-9,18,-23,19,-33","w":77},"-":{"d":"129,-127v-6,14,3,39,-16,39v-34,0,-66,1,-99,3v-10,-8,0,-18,6,-39v27,-5,72,-2,106,-6v2,0,3,1,3,3","w":139},"\u2010":{"d":"129,-127v-6,14,3,39,-16,39v-34,0,-66,1,-99,3v-10,-8,0,-18,6,-39v27,-5,72,-2,106,-6v2,0,3,1,3,3","w":139},".":{"d":"38,-54v16,0,28,13,28,28v0,16,-12,29,-28,29v-14,0,-26,-13,-26,-29v0,-14,12,-28,26,-28","w":77},"\/":{"d":"72,-248v8,6,22,6,25,17r-66,252v-17,-7,-22,-9,-25,-12","w":103},"0":{"d":"107,-216v56,0,98,52,98,110v0,59,-42,111,-98,111v-55,0,-97,-53,-97,-111v0,-58,41,-110,97,-110xm107,-37v33,0,56,-35,56,-69v0,-35,-21,-68,-56,-68v-33,0,-55,32,-55,68v0,35,22,69,55,69","w":214},"1":{"d":"35,-159v-10,1,-23,8,-31,4v4,-10,-5,-24,4,-29v20,-1,29,-42,55,-30v2,2,20,-1,18,9v-6,39,-3,140,-4,198v0,14,-23,4,-39,7v-3,0,-5,-1,-5,-4","w":100},"2":{"d":"158,-153v5,26,-49,84,-83,119r91,-4v9,3,0,24,3,37v0,3,-2,4,-6,4r-147,-2v-11,-3,-6,-19,-10,-28v0,-5,29,-6,30,-10v25,-21,78,-77,78,-108v0,-43,-69,-43,-94,-18v-4,2,-13,11,-13,0v0,-8,-2,-20,-5,-26v38,-40,161,-39,156,36","w":174},"3":{"d":"153,-160v-1,20,-13,43,-29,49v68,26,31,123,-43,115v-26,-3,-57,-3,-75,-18v0,0,3,-8,8,-27v1,-3,2,-4,4,-4v36,23,97,25,99,-19v1,-37,-38,-39,-78,-35v-17,2,-8,-31,-5,-28v31,2,73,12,73,-24v0,-39,-63,-38,-88,-21v-3,0,-5,-9,-5,-27v-1,-10,48,-18,64,-17v39,0,76,19,75,56","w":169},"4":{"d":"148,-203r-3,124r27,-2v1,8,4,30,-2,36v-8,2,-24,-4,-25,5v-1,21,14,50,-23,43v-46,7,-10,-28,-23,-48r-86,2v-7,0,-10,-7,-10,-22v0,-11,1,-18,3,-21v32,-32,67,-95,99,-133v8,1,37,3,43,16xm103,-78v-1,-31,3,-75,4,-97r-69,96","w":180},"5":{"d":"53,-132v55,-10,104,7,104,61v0,80,-104,90,-154,59v0,-5,5,-37,9,-36v1,3,38,23,50,19v28,0,51,-13,51,-40v0,-37,-52,-38,-88,-31v-13,-13,-1,-68,-5,-103v2,-20,46,-5,65,-8v19,1,44,-6,58,1v-3,12,1,32,-11,35v-25,0,-53,-3,-78,-1v0,9,0,24,-1,44","w":171},"6":{"d":"64,-132v47,-27,111,-3,111,55v0,50,-31,82,-80,82v-53,0,-83,-40,-83,-96v0,-66,57,-127,123,-125v6,6,20,30,7,34v-39,0,-70,19,-80,48v0,2,1,2,2,2xm53,-81v-1,27,16,54,41,54v29,0,43,-17,43,-49v1,-24,-17,-41,-40,-41v-30,0,-44,12,-44,36","w":184},"7":{"d":"10,-215v43,3,60,5,137,4v4,0,7,6,7,16v0,4,0,7,-1,8v-32,40,-62,124,-71,186v-4,6,-46,9,-48,-1v2,-48,51,-131,69,-171v-26,-10,-74,9,-101,-1v6,-11,-3,-35,8,-41","w":158},"8":{"d":"155,-158v0,20,-13,42,-25,50v56,32,20,122,-47,113v-72,11,-108,-81,-53,-115v-42,-36,-12,-108,53,-108v37,0,73,25,72,60xm119,-156v2,-35,-70,-40,-70,-5v0,21,26,29,54,37v10,-9,16,-19,16,-32xm61,-95v-33,18,-23,68,20,68v40,0,47,-42,14,-55v-17,-7,-17,-7,-34,-13","w":164},"9":{"d":"90,-216v53,-1,83,42,83,98v0,70,-58,130,-128,128v-10,-9,-22,-35,-7,-34v41,2,82,-25,84,-58v-46,30,-115,4,-113,-56v2,-49,33,-78,81,-78xm88,-97v24,0,44,-13,44,-36v0,-26,-16,-51,-41,-50v-29,0,-43,15,-43,45v0,23,16,41,40,41","w":184},":":{"d":"36,-142v13,0,24,12,24,25v0,14,-11,25,-25,25v-13,0,-23,-12,-23,-25v0,-13,10,-25,24,-25xm36,-48v14,0,24,12,24,25v0,13,-12,26,-24,26v-14,0,-24,-13,-24,-26v0,-13,10,-25,24,-25","w":72},";":{"d":"37,-142v14,0,24,12,24,25v0,13,-10,26,-24,26v-13,0,-24,-13,-24,-26v0,-13,10,-25,24,-25xm16,-11v-6,-32,18,-24,39,-31v3,0,5,2,5,6v2,27,-26,65,-49,74v-1,1,-16,-13,-15,-14v1,-4,22,-26,20,-35","w":72},"<":{"d":"118,-47v5,9,-7,20,-11,28v-42,-32,-53,-44,-94,-65v-7,-4,-7,-31,1,-36v21,-7,73,-49,95,-65v2,0,6,8,12,24v-14,22,-57,46,-82,58v25,11,64,37,79,56","w":128},"=":{"d":"143,-150v7,5,2,26,-1,32r-127,-1v-8,-5,-5,-32,2,-32xm140,-66r-125,0v-8,-5,-4,-31,1,-31v67,10,154,-25,124,31","w":156},">":{"d":"8,-161v5,-7,6,-27,16,-22v17,16,61,51,90,63v9,3,7,29,1,36v-32,14,-61,40,-94,65v-9,-15,-13,-23,-13,-24v0,-13,67,-55,81,-60v-33,-19,-67,-32,-81,-58","w":128},"?":{"d":"5,-220v40,-46,131,-29,131,41v0,52,-56,61,-63,112v-1,8,-30,12,-27,-2v-3,-47,42,-59,44,-99v1,-21,-14,-37,-35,-37v-11,-3,-41,16,-44,18v-4,0,-6,-11,-6,-33xm63,-44v13,0,23,12,23,24v0,13,-11,25,-23,25v-12,0,-22,-12,-22,-25v0,-12,8,-24,22,-24","w":143},"@":{"d":"121,-252v60,0,84,54,84,120v0,16,-17,77,-30,74v-15,2,-17,-10,-20,-16v-31,29,-82,3,-82,-44v0,-53,61,-80,97,-44v13,-27,-21,-63,-48,-63v-49,0,-85,51,-85,102v0,53,34,103,85,102v11,0,3,15,5,23v0,2,-1,3,-5,3v-65,2,-112,-61,-112,-128v0,-62,50,-129,111,-129xm132,-87v42,3,50,-67,6,-66v-17,-1,-31,14,-31,32v0,18,9,33,25,34","w":223},"A":{"d":"137,-251v4,8,115,268,95,251r-40,0v-7,3,-19,-58,-28,-54r-95,0v-4,1,-11,10,-13,27v-5,39,-25,27,-54,25v13,-43,28,-85,45,-126r51,-123v13,2,26,2,39,0xm129,-92v46,0,21,-12,9,-53v-8,-27,-17,-43,-22,-52v-24,62,-36,95,-36,98v3,11,33,7,49,7","w":237},"B":{"d":"173,-131v59,23,36,131,-33,131r-117,0v-3,0,-5,-1,-5,-4v4,-80,4,-159,0,-239v15,-11,66,-1,99,-3v50,-3,86,20,86,65v0,21,-17,42,-30,50xm159,-177v0,-42,-65,-43,-96,-34r0,60v0,4,13,5,39,5v38,0,57,-10,57,-31xm63,-39v40,6,105,11,100,-39v-3,-28,-22,-34,-56,-34v-30,0,-45,2,-45,5","w":219},"C":{"d":"125,-37v28,0,51,-20,65,-33r22,29v-18,31,-53,46,-88,46v-69,1,-114,-57,-114,-128v0,-71,46,-130,115,-129v37,0,69,13,85,42v2,1,-19,35,-21,32v-16,-11,-35,-33,-63,-33v-47,0,-72,40,-72,87v-1,48,26,87,71,87","w":213},"D":{"d":"24,-247v119,-6,213,10,211,122v-1,74,-51,138,-134,124r-78,1v-3,0,-4,-1,-4,-4r3,-116r-3,-123v0,-2,2,-4,5,-4xm85,-35v72,8,104,-30,107,-90v3,-61,-53,-87,-107,-87v-34,0,-21,24,-21,48r0,121v0,5,7,7,21,8","w":244},"E":{"d":"62,-101v6,27,-13,75,28,66v32,1,38,-2,91,-5v9,2,1,15,0,21v-1,6,3,24,-13,21v-31,-6,-107,-3,-145,-2v-3,0,-5,-2,-5,-5r4,-118r-4,-120v30,-10,102,3,149,-4v14,1,16,38,8,38r-90,-3v-34,-5,-18,31,-22,62v25,15,84,-4,112,5r-3,35v-18,7,-65,-2,-102,1v-4,1,-7,3,-8,8","w":193},"F":{"d":"18,-4v3,-98,0,-110,0,-235v0,-16,53,-1,78,-6v21,0,48,-1,81,-3v10,-1,7,9,8,20v2,12,5,18,-1,21r-103,-3v-30,-7,-12,30,-17,54v0,8,2,12,5,12r103,-3v10,2,-1,26,4,40v-19,6,-81,-3,-104,1v-5,0,-7,3,-7,6r1,95v-2,14,-27,-1,-43,5v-3,0,-5,-1,-5,-4","w":191},"G":{"d":"188,-53r-5,-67v5,-7,28,0,44,-2v10,4,2,26,3,42r3,71v1,3,-1,4,-4,4v-4,0,-24,-10,-26,-12v-21,15,-47,22,-76,22v-68,1,-117,-59,-117,-128v0,-71,49,-131,117,-129v41,1,79,22,94,53v0,2,-4,7,-12,16v-9,9,-14,14,-15,14v-14,-13,-36,-41,-66,-41v-42,0,-73,42,-73,87v0,70,75,115,133,70","w":242},"H":{"d":"236,-120r4,116v-3,10,-29,-1,-44,4v-11,-10,2,-75,-2,-99v-3,-19,-19,-9,-65,-9v-46,0,-61,-9,-65,9r2,93v-2,14,-26,0,-43,6v-3,0,-5,-1,-5,-4v4,-80,4,-159,0,-239v4,-9,29,1,44,-4v14,11,-8,82,5,100v3,1,24,2,62,2v45,0,60,7,65,-9r-2,-89v4,-9,29,1,43,-4v3,0,5,2,5,4","w":257},"I":{"d":"64,-125r3,121v-4,10,-28,-1,-44,4v-3,0,-5,-1,-5,-4r4,-121r-4,-117v2,-12,28,0,44,-5v3,0,4,2,4,4","w":85},"J":{"d":"1,-2v56,-35,25,-157,28,-239v5,-12,27,0,45,-5v3,0,4,1,4,3v-7,99,20,232,-48,270v-11,-8,-19,-20,-29,-29","w":96},"K":{"d":"18,-4v4,-80,4,-159,0,-239v4,-9,29,1,43,-4v12,12,-3,77,3,102v68,18,83,-49,101,-98v2,-8,42,-6,43,1v-9,39,-30,87,-59,111v-13,11,0,12,10,39v15,37,37,53,54,84v-2,17,-31,4,-46,8v-12,-7,-51,-82,-57,-98v-3,-16,-43,-11,-46,-4r2,96v-2,14,-26,0,-43,6v-3,0,-5,-1,-5,-4","w":214},"L":{"d":"66,-243r-3,168v0,26,1,39,3,39r114,-5v3,0,4,1,4,3v-2,20,3,35,-9,40r-151,-2v-3,0,-5,-1,-5,-4r3,-116r-4,-122v6,-10,26,0,44,-4v3,0,4,1,4,3","w":186},"M":{"d":"262,-120r3,116v-3,10,-28,-1,-42,4v-3,0,-5,-2,-5,-6r2,-137v-13,12,-39,98,-61,144v-1,4,-33,2,-31,-1r-64,-146v-3,37,1,106,0,140v-1,14,-25,0,-41,6v-3,0,-5,-1,-5,-3v4,-80,4,-159,0,-239v7,-9,34,-6,40,-7v37,67,59,137,87,192v25,-46,43,-100,74,-183v5,-14,27,-4,42,-6v3,0,4,1,4,4","w":284},"N":{"d":"18,-4v4,-79,4,-159,0,-238v10,-4,39,-12,47,-1r130,173v3,-50,-2,-118,-2,-171v1,-14,26,0,43,-6v2,0,3,2,3,4r-2,237v0,14,-22,0,-37,6v-2,0,-5,-2,-8,-6r-129,-170v-6,49,6,137,-3,176v-14,-3,-36,5,-42,-4","w":258},"O":{"d":"131,-252v67,0,119,61,119,129v0,67,-53,128,-119,128v-68,0,-120,-59,-120,-128v0,-69,53,-129,120,-129xm130,-36v45,0,78,-43,78,-88v0,-45,-34,-87,-78,-87v-44,0,-77,44,-77,88v0,43,34,87,77,87","w":261},"P":{"d":"80,-245v79,-13,135,19,137,89v2,80,-62,102,-147,90v-14,11,5,52,-6,67v-13,-1,-29,-3,-41,-1v-3,0,-4,-2,-4,-5r3,-116r-4,-121v7,-10,40,0,62,-3xm122,-98v31,0,51,-21,51,-55v0,-59,-57,-66,-108,-54r0,104v8,8,24,5,57,5","w":224},"Q":{"d":"131,-252v65,0,119,61,119,128v0,64,-45,121,-102,126v3,15,15,25,24,38v-5,10,-36,3,-52,5v-6,-2,-9,-16,-10,-43v-56,-10,-99,-62,-99,-126v0,-67,54,-128,120,-128xm130,-36v45,0,78,-43,78,-88v0,-45,-33,-86,-78,-86v-43,0,-77,42,-77,87v0,44,35,87,77,87","w":261},"R":{"d":"166,-95r42,94v-10,0,-43,4,-51,-3v-4,-8,-14,-33,-32,-74v-7,-14,-38,-6,-58,-8v-8,21,1,57,-1,83v-4,9,-29,-2,-43,3v-3,0,-5,-1,-5,-4r4,-117r-4,-122v13,-8,73,-4,97,-5v52,-2,88,28,89,77v1,43,-15,55,-38,76xm93,-211v-48,0,-24,9,-30,55v3,13,-10,39,13,35v40,4,87,1,84,-40v-3,-42,-19,-50,-67,-50","w":213},"S":{"d":"20,-177v-6,-71,93,-89,139,-52v-6,7,-10,25,-19,35v-26,-13,-78,-25,-78,16v-5,22,65,47,65,50v63,55,-15,158,-97,127r-9,-38v28,-3,91,2,84,-36v-8,-44,-92,-42,-85,-102","w":168},"T":{"d":"12,-248v74,7,99,4,164,0v11,1,2,23,6,35v-6,11,-21,0,-66,2r2,207v-4,10,-29,-1,-44,4v-3,0,-5,-1,-5,-4r4,-121v0,-21,-1,-49,-2,-86v-31,1,-56,6,-69,1v4,-12,3,-29,10,-38","w":184},"U":{"d":"119,-32v74,0,55,-52,55,-127v0,-37,-1,-65,-1,-84v5,-8,29,0,42,-4v3,0,5,2,5,4r-3,162v2,75,-29,80,-101,85v-141,9,-81,-118,-98,-247v4,-8,36,-3,47,0r-2,161v1,40,13,50,56,50","w":237},"V":{"d":"111,-51v19,-44,68,-90,54,-151v2,-24,-12,-54,32,-44v25,-6,13,22,15,48v5,59,1,44,-34,112v-15,29,-29,62,-50,86v-14,-2,-34,5,-40,-5v0,-1,-13,-27,-42,-79v-43,-78,-35,-62,-33,-156v0,-15,26,-1,43,-7v2,0,4,1,4,4v-6,104,-11,87,51,192","w":222},"W":{"d":"266,-158r-2,-89v15,2,34,-1,45,2r2,88r-76,157r-32,0v-18,-21,-23,-54,-43,-101v-12,32,-12,32,-38,96v-4,11,-24,3,-36,5v-22,-30,-69,-140,-75,-157r1,-86v4,-8,32,-2,46,-1v-12,85,2,117,45,191v22,-47,44,-109,35,-191v4,-7,29,2,42,-3v11,13,-2,63,2,92r37,100v12,-20,53,-109,47,-103","w":321},"X":{"d":"131,-123r66,96v-2,9,5,26,-4,27v-45,4,-29,-1,-61,-44r-28,-43r-61,87v-10,-1,-28,4,-33,-3r0,-25r66,-95r-66,-95v0,-16,-7,-34,20,-29v12,2,14,-3,21,8r53,81r61,-89v10,1,27,-3,32,3r0,27","w":206},"Y":{"d":"160,-184r-3,-58v2,-12,28,1,44,-5v10,9,2,49,5,67v-4,26,-64,87,-78,120r2,57v-8,8,-32,1,-46,3v-13,-10,9,-59,-6,-74v-23,-36,-53,-64,-71,-104v-1,-15,-1,-36,-1,-64v0,-12,27,0,43,-5v11,4,-1,46,1,62v0,7,19,32,56,74v12,-13,52,-62,54,-73","w":211},"Z":{"d":"56,-38v48,6,83,-6,116,-2r-5,38v-36,8,-100,-1,-150,2v-13,-2,-8,-28,-10,-33r107,-174v-27,-6,-67,0,-98,-2v-10,-6,3,-26,2,-37v40,-3,95,2,143,0v9,4,5,18,7,30","w":181},"[":{"d":"70,30v18,1,42,-6,55,1v-2,8,4,23,-5,25r-92,0v-3,0,-5,-3,-5,-7v5,-97,3,-194,-1,-291v8,-18,65,0,98,-7v6,1,8,26,1,29r-48,-3v-17,61,-6,171,-6,247v0,3,1,5,3,6","w":129},"\\":{"d":"32,-246r64,252v-1,4,-20,15,-25,14v-18,-54,-42,-155,-64,-252v2,-3,17,-16,25,-14","w":103},"]":{"d":"62,24v4,-79,6,-166,-3,-246v-16,-8,-65,22,-54,-23v13,-11,67,2,97,-4v3,0,5,2,5,7r-4,155r3,136v-8,18,-65,0,-97,7v-7,0,-6,-23,-1,-28r49,2v3,0,5,-2,5,-6","w":129},"^":{"d":"160,-64v-2,3,-19,11,-26,15v-4,0,-21,-22,-52,-68v-1,1,-10,12,-24,36v-23,40,-27,30,-51,16v25,-37,44,-65,62,-113v10,2,26,-4,30,3v18,50,20,48,61,111","w":168},"_":{"d":"-2,41v42,-5,107,-2,160,0v-2,19,4,29,-6,32r-151,0v-11,-2,-2,-23,-3,-32","w":156},"`":{"d":"31,-256v11,10,92,35,64,63v-45,-17,-71,-33,-86,-44v1,-2,18,-19,22,-19"},"a":{"d":"8,-83v0,-82,97,-123,141,-62v4,-15,3,-27,25,-20v10,3,15,4,15,6v-11,70,-8,58,-3,154v-3,10,-24,4,-34,7r-8,-24v-13,8,-35,26,-57,26v-44,0,-79,-42,-79,-87xm97,-32v26,0,47,-26,47,-54v0,-27,-20,-53,-47,-53v-28,0,-49,25,-49,53v0,30,21,54,49,54","w":199},"b":{"d":"59,-149v44,-57,141,-11,133,64v6,70,-84,119,-133,65v-2,0,-3,22,-5,20v-13,-1,-30,2,-40,-2v7,-48,4,-171,-1,-241v4,-11,28,-4,44,-8v8,25,-7,76,2,102xm105,-32v27,0,48,-27,48,-54v1,-27,-22,-54,-48,-54v-28,0,-49,26,-49,54v0,28,22,54,49,54","w":199},"c":{"d":"7,-86v0,-68,80,-118,134,-73v0,1,-8,32,-10,30v-34,-24,-84,0,-84,43v0,42,50,71,84,42v2,0,8,29,8,33v-48,39,-132,-5,-132,-75","w":144},"d":{"d":"145,-247r39,-2v2,0,3,1,3,4r-4,135r3,108v-6,5,-27,0,-37,3r-4,-25v-46,60,-138,15,-138,-60v0,-73,87,-122,135,-64v8,-27,-4,-69,3,-99xm95,-31v28,0,48,-26,48,-54v0,-28,-21,-54,-48,-54v-28,0,-49,27,-49,54v0,29,23,54,49,54","w":200},"e":{"d":"90,-176v43,0,78,38,77,82v0,8,-4,14,-11,17v-5,2,-42,5,-109,10v7,46,77,43,105,15r13,25v-45,60,-158,29,-158,-58v0,-47,36,-91,83,-91xm46,-100v15,10,56,0,79,-5v1,-18,-19,-37,-37,-37v-21,-1,-43,21,-42,42","w":173},"f":{"d":"25,-166v-8,-62,27,-95,78,-89r6,30v-8,6,-28,2,-36,11v-5,7,-8,22,-8,47v17,3,46,-9,41,19v-2,8,5,17,-3,17r-37,-1r2,127v-3,11,-25,3,-36,5v-3,0,-5,-2,-5,-5r0,-121v0,-4,-3,-5,-10,-5v-22,5,-10,-15,-14,-30v0,-3,8,-4,22,-5","w":105},"g":{"d":"131,-150v-8,-39,20,-21,39,-18v9,23,2,89,2,131v0,56,-22,83,-78,83v-29,-1,-54,-4,-68,-20r7,-29v35,23,109,27,97,-33v-42,50,-123,11,-123,-55v0,-70,84,-111,123,-56v1,0,1,-1,1,-3xm89,-43v24,0,43,-24,42,-48v0,-27,-17,-49,-42,-49v-25,0,-42,24,-42,49v0,24,17,48,42,48","w":187},"h":{"d":"117,-172v76,0,54,90,54,166v0,13,-20,3,-36,6v-21,-22,25,-137,-35,-138v-11,0,-44,19,-42,29v-2,35,5,79,-3,109v-12,-2,-34,6,-37,-5r0,-85v0,-51,-8,-109,-4,-156v8,1,39,-7,44,-1r-1,104v13,-10,36,-29,60,-29","w":187},"i":{"d":"40,-232v12,0,24,9,24,22v0,14,-8,21,-24,21v-17,0,-25,-7,-25,-21v0,-13,11,-22,25,-22xm16,-163v8,-7,30,2,43,-3v7,45,-4,102,1,162v-5,9,-26,2,-37,4v-10,-12,-2,-53,-3,-81","w":79},"j":{"d":"40,-233v14,0,25,10,25,22v0,15,-8,22,-25,22v-13,0,-24,-8,-24,-22v0,-13,12,-23,24,-22xm17,-159v4,-14,30,-4,43,-9v7,36,-2,99,1,152v2,41,-26,64,-65,68v-6,-3,-4,-26,-2,-34v49,1,27,-64,27,-108v0,-16,-1,-40,-4,-69","w":79},"k":{"d":"130,-174v72,-6,81,99,18,115v0,11,26,42,36,55v-16,1,-42,11,-51,-1r-26,-41r-45,-2v-4,20,13,57,-21,49v-11,-3,-20,4,-20,-8r-3,-237v6,-8,24,-3,41,-6v8,21,-4,76,2,109v16,-13,48,-36,69,-33xm61,-79v34,8,88,3,87,-33v0,-17,-10,-25,-32,-25v-16,0,-35,10,-55,32r0,26","w":196},"l":{"d":"20,-4r-3,-239v3,-9,28,1,42,-4v4,0,3,2,3,5v-2,44,-4,82,-4,113r2,125v-5,9,-26,2,-37,4v-2,0,-3,-1,-3,-4","w":79},"m":{"d":"231,-172v76,-3,54,88,54,165v0,15,-20,2,-38,7v-18,-34,27,-139,-35,-139v-13,0,-40,20,-40,33r1,102v-4,10,-22,0,-38,4v-18,-28,27,-140,-33,-139v-12,0,-43,18,-43,30r0,104v-3,11,-25,3,-36,5v-13,-40,6,-112,-11,-158v7,-7,28,-4,40,-10r7,25v22,-31,97,-45,111,4v12,-17,35,-33,61,-33","w":301},"n":{"d":"118,-172v81,0,47,94,55,168v-4,9,-23,2,-38,4v-18,-27,27,-138,-35,-138v-9,0,-43,19,-41,28r0,106v-4,10,-22,1,-37,4v-10,-43,6,-116,-11,-159v2,-3,37,-12,44,-6v0,7,2,15,4,22v11,-10,38,-29,59,-29","w":188},"o":{"d":"92,-174v47,0,85,41,85,88v0,49,-38,90,-85,90v-47,0,-85,-42,-85,-89v0,-49,37,-89,85,-89xm92,-32v27,0,48,-25,48,-53v0,-29,-20,-53,-48,-53v-28,-1,-48,24,-48,53v0,28,22,53,48,53","w":184},"p":{"d":"59,-146v48,-59,135,-10,135,61v0,46,-36,90,-81,90v-24,0,-41,-15,-53,-28v-5,17,0,48,-2,72v-5,12,-40,7,-40,1v0,-73,5,-151,-5,-216v10,-6,28,-4,41,-7v5,1,3,22,5,27xm106,-31v27,0,47,-28,47,-54v0,-27,-21,-54,-48,-54v-27,0,-47,27,-46,54v0,27,20,54,47,54","w":203},"q":{"d":"10,-85v0,-73,89,-123,134,-63v1,-1,1,-8,1,-24v10,-2,32,-2,44,6v-11,49,-5,150,-5,215v-3,8,-23,3,-38,5v-6,-20,2,-54,-3,-76v-45,56,-133,11,-133,-63xm98,-32v29,0,46,-24,46,-54v0,-29,-18,-54,-47,-54v-27,0,-49,26,-48,54v0,28,22,54,49,54","w":201},"r":{"d":"112,-126v-71,-18,-53,55,-53,122v-3,9,-23,2,-37,4v-11,-30,5,-123,-11,-162v4,-8,26,-3,38,-9v3,7,3,16,8,21v12,-11,41,-26,61,-15v-1,14,3,33,-6,39","w":119},"s":{"d":"45,-122v13,25,58,29,55,68v-2,37,-35,60,-79,56v-4,-6,-8,-29,-2,-35v22,3,48,-2,45,-20v-12,-28,-56,-28,-56,-66v0,-35,35,-60,69,-52v0,10,11,24,4,31v-14,2,-38,1,-36,18","w":107},"t":{"d":"62,-61v-4,38,27,30,52,25v5,4,-1,22,0,29v-24,14,-91,18,-90,-28r1,-90v-2,-16,-34,4,-23,-33v0,-10,25,0,22,-13v2,-17,-4,-46,4,-55v2,0,14,0,34,5v14,3,-9,48,6,55v24,1,54,-11,44,32v-2,10,-33,-1,-47,2v-5,14,-1,48,-3,71","w":123},"u":{"d":"96,-31v13,0,44,-21,43,-33r0,-93v0,-16,24,-7,37,-9v13,28,-3,113,4,161v-3,11,-27,3,-39,5r-4,-26v-21,14,-41,27,-61,27v-76,0,-61,-100,-53,-160v2,-14,21,-4,37,-7v11,33,-30,135,36,135","w":198},"v":{"d":"128,-97v5,-15,-2,-53,2,-68r34,-1v4,0,6,16,6,50v-1,49,-3,30,-30,75v-16,27,-29,40,-32,41v-41,4,-32,-2,-62,-40v-36,-46,-34,-50,-34,-122v3,-9,34,-4,42,0r-1,34v-9,34,27,75,40,88v4,2,37,-53,35,-57","w":182},"w":{"d":"186,-43v31,-40,31,-60,27,-119v4,-5,33,-7,39,0v2,7,4,74,-2,77v-1,7,-47,86,-53,85r-25,0v-3,-1,-17,-21,-41,-60v-19,20,-26,72,-65,60v-7,2,-52,-78,-53,-85v-1,-13,-21,-94,18,-80v19,-6,22,10,18,29v-1,58,3,51,33,94v34,-38,35,-58,30,-122v5,-9,26,-2,37,-4v7,4,0,25,2,38v-10,49,23,66,35,87","w":262},"x":{"d":"103,-83r47,61v0,14,4,27,-18,22v-9,0,-15,-1,-17,-3v-9,-14,-17,-27,-37,-53v-1,0,-7,10,-20,27v-23,30,-7,30,-47,29v-8,-1,-2,-15,-4,-22r47,-62r-47,-61v0,-14,-4,-28,17,-22v37,2,24,28,54,56v12,-12,19,-27,37,-54v7,-2,31,-7,35,1r0,18","w":156},"y":{"d":"126,-129v1,-17,-12,-40,18,-35v28,-5,21,0,22,42v2,65,-4,37,-45,105v-25,42,-44,63,-49,68v-3,4,-31,8,-52,5v-1,-11,-22,-31,-1,-31v29,0,39,-13,45,-31v2,-5,-58,-76,-55,-80v-4,-11,-4,-58,-2,-75v1,-10,27,-1,37,-3v7,3,0,21,2,33v-10,41,29,76,43,92v11,-17,47,-51,37,-90","w":171},"z":{"d":"18,-130v-7,-7,2,-24,2,-34v19,-2,110,-5,122,4v0,52,1,25,-33,64r-55,63v42,0,73,-5,94,0v-5,16,2,41,-25,33v-33,-3,-81,-1,-110,2v-11,-3,-7,-20,-7,-32v17,-23,59,-61,89,-100r-77,0","w":151},"{":{"d":"36,-97v54,-4,40,75,31,112v1,21,30,13,48,9v3,4,4,23,1,30v-36,7,-95,5,-90,-36v4,-29,36,-99,-14,-100v-7,-3,0,-14,-3,-25v12,-9,35,-7,31,-34v1,-14,-14,-56,-14,-70v0,-41,55,-43,90,-36v4,4,4,28,-3,31v-17,-1,-46,-13,-46,11v9,38,22,109,-31,108","w":122},"|":{"d":"58,-245r2,262v-5,7,-31,12,-30,4r-2,-262v-2,-8,16,-10,27,-8v2,0,3,1,3,4","w":88},"}":{"d":"88,-97v-52,0,-42,-70,-31,-108v1,-27,-37,-5,-50,-14v1,-9,-6,-23,1,-28v33,-7,96,-4,90,36v1,14,-15,56,-14,70v-4,27,18,25,31,34v-3,8,3,22,-3,25v-48,1,-18,69,-14,100v6,41,-57,44,-93,35v4,-7,-2,-24,5,-29v23,5,44,11,47,-9v-8,-37,-24,-116,31,-112","w":122},"~":{"d":"108,-120v7,3,40,-17,41,-19v1,0,5,5,13,14v7,10,10,15,10,16v0,6,-44,32,-58,29v-13,2,-37,-14,-47,-13v-6,-3,-33,18,-36,18v-2,-1,-25,-27,-25,-28v-1,-3,45,-34,58,-31v11,-1,33,15,44,14","w":175},"\u00c4":{"d":"137,-251v4,8,115,268,95,251r-40,0v-7,3,-19,-58,-28,-54r-95,0v-4,1,-11,10,-13,27v-5,39,-25,27,-54,25v13,-43,28,-85,45,-126r51,-123v13,2,26,2,39,0xm129,-92v46,0,21,-12,9,-53v-8,-27,-17,-43,-22,-52v-24,62,-36,95,-36,98v3,11,33,7,49,7xm173,-302v-6,22,13,48,-22,41v-28,10,-19,-19,-20,-40v2,-11,22,-1,38,-4v2,0,4,1,4,3xm101,-301v-3,25,12,50,-30,40v-13,6,-11,-7,-11,-19v1,-8,-5,-23,3,-25v12,2,33,-5,38,4","w":237},"\u00c5":{"d":"153,-214r83,212v-8,5,-30,-2,-44,2v-7,2,-19,-58,-28,-54r-95,0v-4,1,-11,10,-13,27v-5,39,-25,27,-54,25r78,-210v-26,-30,-1,-76,36,-76v35,0,63,44,37,74xm116,-222v10,0,19,-8,19,-19v0,-12,-8,-21,-19,-21v-28,0,-22,40,0,40xm129,-92v46,0,21,-12,9,-53v-8,-27,-17,-43,-22,-52v-24,62,-36,95,-36,98v3,11,33,7,49,7","w":237},"\u00c7":{"d":"125,-37v28,0,51,-20,65,-33r22,29v-18,31,-53,46,-88,46v-69,1,-114,-57,-114,-128v0,-71,46,-130,115,-129v37,0,69,13,85,42v2,1,-19,35,-21,32v-16,-11,-35,-33,-63,-33v-47,0,-72,40,-72,87v-1,48,26,87,71,87xm87,33v12,13,32,9,32,-9v0,-7,-2,-13,-8,-19v20,-1,29,0,35,15v2,37,-31,60,-66,46v-26,-10,5,-28,7,-33","w":213},"\u00c9":{"d":"62,-101v6,27,-13,75,28,66v32,1,38,-2,91,-5v9,2,1,15,0,21v-1,6,3,24,-13,21v-31,-6,-107,-3,-145,-2v-3,0,-5,-2,-5,-5r4,-118r-4,-120v30,-10,102,3,149,-4v14,1,16,38,8,38r-90,-3v-34,-5,-18,31,-22,62v25,15,84,-4,112,5r-3,35v-18,7,-65,-2,-102,1v-4,1,-7,3,-8,8xm127,-315v8,4,15,11,24,17v2,7,-75,49,-83,46v-3,0,-7,-15,-7,-20v19,-14,43,-25,66,-43","w":193},"\u00d1":{"d":"18,-4v4,-79,4,-159,0,-238v10,-4,39,-12,47,-1r130,173v3,-50,-2,-118,-2,-171v1,-14,26,0,43,-6v2,0,3,2,3,4r-2,237v0,14,-22,0,-37,6v-2,0,-5,-2,-8,-6r-129,-170v-6,49,6,137,-3,176v-14,-3,-36,5,-42,-4xm150,-275v3,2,21,-17,25,-12v8,9,13,15,13,19v1,4,-32,22,-38,20v-12,2,-28,-12,-37,-12v-8,-3,-17,18,-23,10v-5,-6,-11,-9,-15,-16v3,-9,24,-21,35,-21v10,0,32,13,40,12","w":258},"\u00d6":{"d":"131,-252v67,0,119,61,119,129v0,67,-53,128,-119,128v-68,0,-120,-59,-120,-128v0,-69,53,-129,120,-129xm130,-36v45,0,78,-43,78,-88v0,-45,-34,-87,-78,-87v-44,0,-77,44,-77,88v0,43,34,87,77,87xm185,-306v-6,22,13,48,-22,41v-28,10,-19,-19,-20,-40v2,-11,22,-1,38,-4v2,0,4,1,4,3xm113,-305v-3,25,12,50,-30,40v-13,6,-11,-7,-11,-19v1,-8,-5,-23,3,-25v12,2,33,-5,38,4","w":261},"\u00dc":{"d":"119,-32v74,0,55,-52,55,-127v0,-37,-1,-65,-1,-84v5,-8,29,0,42,-4v3,0,5,2,5,4r-3,162v2,75,-29,80,-101,85v-141,9,-81,-118,-98,-247v4,-8,36,-3,47,0r-2,161v1,40,13,50,56,50xm175,-306v-6,22,13,48,-22,41v-28,10,-19,-19,-20,-40v2,-11,22,-1,38,-4v2,0,4,1,4,3xm103,-305v-3,25,12,50,-30,40v-13,6,-11,-7,-11,-19v1,-8,-5,-23,3,-25v12,2,33,-5,38,4","w":237},"\u00e1":{"d":"8,-83v0,-82,97,-123,141,-62v4,-15,3,-27,25,-20v10,3,15,4,15,6v-11,70,-8,58,-3,154v-3,10,-24,4,-34,7r-8,-24v-13,8,-35,26,-57,26v-44,0,-79,-42,-79,-87xm97,-32v26,0,47,-26,47,-54v0,-27,-20,-53,-47,-53v-28,0,-49,25,-49,53v0,30,21,54,49,54xm133,-250v8,4,15,11,24,17v2,7,-75,49,-83,46v-3,0,-7,-15,-7,-20v19,-14,43,-25,66,-43","w":199},"\u00e0":{"d":"8,-83v0,-82,97,-123,141,-62v4,-15,3,-27,25,-20v10,3,15,4,15,6v-11,70,-8,58,-3,154v-3,10,-24,4,-34,7r-8,-24v-13,8,-35,26,-57,26v-44,0,-79,-42,-79,-87xm97,-32v26,0,47,-26,47,-54v0,-27,-20,-53,-47,-53v-28,0,-49,25,-49,53v0,30,21,54,49,54xm68,-253v11,10,92,35,64,63v-45,-17,-71,-33,-86,-44v1,-2,18,-19,22,-19","w":199},"\u00e2":{"d":"8,-83v0,-82,97,-123,141,-62v4,-15,3,-27,25,-20v10,3,15,4,15,6v-11,70,-8,58,-3,154v-3,10,-24,4,-34,7r-8,-24v-13,8,-35,26,-57,26v-44,0,-79,-42,-79,-87xm97,-32v26,0,47,-26,47,-54v0,-27,-20,-53,-47,-53v-28,0,-49,25,-49,53v0,30,21,54,49,54xm45,-199v13,-11,30,-41,42,-55v8,1,19,-3,22,3v4,17,26,38,38,52v-24,15,-22,10,-52,-20v-7,1,-25,43,-41,25v-6,-3,-9,-5,-9,-5","w":199},"\u00e4":{"d":"8,-83v0,-82,97,-123,141,-62v4,-15,3,-27,25,-20v10,3,15,4,15,6v-11,70,-8,58,-3,154v-3,10,-24,4,-34,7r-8,-24v-13,8,-35,26,-57,26v-44,0,-79,-42,-79,-87xm97,-32v26,0,47,-26,47,-54v0,-27,-20,-53,-47,-53v-28,0,-49,25,-49,53v0,30,21,54,49,54xm150,-232v-6,22,13,48,-22,41v-28,10,-19,-19,-20,-40v2,-11,22,-1,38,-4v2,0,4,1,4,3xm78,-231v-3,25,12,50,-30,40v-13,6,-11,-7,-11,-19v1,-8,-5,-23,3,-25v12,2,33,-5,38,4","w":199},"\u00e3":{"d":"8,-83v0,-82,97,-123,141,-62v4,-15,3,-27,25,-20v10,3,15,4,15,6v-11,70,-8,58,-3,154v-3,10,-24,4,-34,7r-8,-24v-13,8,-35,26,-57,26v-44,0,-79,-42,-79,-87xm97,-32v26,0,47,-26,47,-54v0,-27,-20,-53,-47,-53v-28,0,-49,25,-49,53v0,30,21,54,49,54xm115,-218v3,2,21,-17,25,-12v8,9,13,15,13,19v1,4,-32,22,-38,20v-12,2,-28,-12,-37,-12v-8,-3,-17,18,-23,10v-5,-6,-11,-9,-15,-16v3,-9,24,-21,35,-21v10,0,32,13,40,12","w":199},"\u00e5":{"d":"8,-83v0,-82,97,-123,141,-62v4,-15,3,-27,25,-20v10,3,15,4,15,6v-11,70,-8,58,-3,154v-3,10,-24,4,-34,7r-8,-24v-13,8,-35,26,-57,26v-44,0,-79,-42,-79,-87xm97,-32v26,0,47,-26,47,-54v0,-27,-20,-53,-47,-53v-28,0,-49,25,-49,53v0,30,21,54,49,54xm98,-271v23,0,42,20,42,42v0,23,-21,41,-42,41v-22,0,-42,-19,-42,-41v0,-22,19,-42,42,-42xm98,-207v10,0,21,-10,21,-22v0,-11,-9,-22,-21,-22v-12,0,-21,11,-21,22v0,12,10,22,21,22","w":199},"\u00e7":{"d":"7,-86v0,-68,80,-118,134,-73v0,1,-8,32,-10,30v-34,-24,-84,0,-84,43v0,42,50,71,84,42v2,0,8,29,8,33v-48,39,-132,-5,-132,-75xm51,31v12,13,32,9,32,-9v0,-7,-2,-13,-8,-19v20,-1,29,0,35,15v2,37,-31,60,-66,46v-26,-10,5,-28,7,-33","w":144},"\u00e9":{"d":"90,-176v43,0,78,38,77,82v0,8,-4,14,-11,17v-5,2,-42,5,-109,10v7,46,77,43,105,15r13,25v-45,60,-158,29,-158,-58v0,-47,36,-91,83,-91xm46,-100v15,10,56,0,79,-5v1,-18,-19,-37,-37,-37v-21,-1,-43,21,-42,42xm118,-250v8,4,15,11,24,17v2,7,-75,49,-83,46v-3,0,-7,-15,-7,-20v19,-14,43,-25,66,-43","w":173},"\u00e8":{"d":"90,-176v43,0,78,38,77,82v0,8,-4,14,-11,17v-5,2,-42,5,-109,10v7,46,77,43,105,15r13,25v-45,60,-158,29,-158,-58v0,-47,36,-91,83,-91xm46,-100v15,10,56,0,79,-5v1,-18,-19,-37,-37,-37v-21,-1,-43,21,-42,42xm58,-253v11,10,92,35,64,63v-45,-17,-71,-33,-86,-44v1,-2,18,-19,22,-19","w":173},"\u00ea":{"d":"90,-176v43,0,78,38,77,82v0,8,-4,14,-11,17v-5,2,-42,5,-109,10v7,46,77,43,105,15r13,25v-45,60,-158,29,-158,-58v0,-47,36,-91,83,-91xm46,-100v15,10,56,0,79,-5v1,-18,-19,-37,-37,-37v-21,-1,-43,21,-42,42xm35,-199v13,-11,30,-41,42,-55v8,1,19,-3,22,3v4,17,26,38,38,52v-24,15,-22,10,-52,-20v-7,1,-25,43,-41,25v-6,-3,-9,-5,-9,-5","w":173},"\u00eb":{"d":"90,-176v43,0,78,38,77,82v0,8,-4,14,-11,17v-5,2,-42,5,-109,10v7,46,77,43,105,15r13,25v-45,60,-158,29,-158,-58v0,-47,36,-91,83,-91xm46,-100v15,10,56,0,79,-5v1,-18,-19,-37,-37,-37v-21,-1,-43,21,-42,42xm144,-232v-6,22,13,48,-22,41v-28,10,-19,-19,-20,-40v2,-11,22,-1,38,-4v2,0,4,1,4,3xm72,-231v-3,25,12,50,-30,40v-13,6,-11,-7,-11,-19v1,-8,-5,-23,3,-25v12,2,33,-5,38,4","w":173},"\u00ed":{"d":"16,-163v8,-7,30,2,43,-3v7,45,-4,102,1,162v-5,9,-26,2,-37,4v-10,-12,-2,-53,-3,-81xm70,-250v8,4,15,11,24,17v2,7,-75,49,-83,46v-3,0,-7,-15,-7,-20v19,-14,43,-25,66,-43","w":79},"\u00ec":{"d":"16,-163v8,-7,30,2,43,-3v7,45,-4,102,1,162v-5,9,-26,2,-37,4v-10,-12,-2,-53,-3,-81xm5,-253v11,10,92,35,64,63v-45,-17,-71,-33,-86,-44v1,-2,18,-19,22,-19","w":79},"\u00ee":{"d":"16,-163v8,-7,30,2,43,-3v7,45,-4,102,1,162v-5,9,-26,2,-37,4v-10,-12,-2,-53,-3,-81xm-12,-198v13,-11,30,-41,42,-55v8,1,19,-3,22,3v4,17,26,38,38,52v-24,15,-22,10,-52,-20v-7,1,-25,43,-41,25v-6,-3,-9,-5,-9,-5","w":79},"\u00ef":{"d":"16,-163v8,-7,30,2,43,-3v7,45,-4,102,1,162v-5,9,-26,2,-37,4v-10,-12,-2,-53,-3,-81xm96,-235v-6,22,13,48,-22,41v-28,10,-19,-19,-20,-40v2,-11,22,-1,38,-4v2,0,4,1,4,3xm24,-234v-3,25,12,50,-30,40v-13,6,-11,-7,-11,-19v1,-8,-5,-23,3,-25v12,2,33,-5,38,4","w":79},"\u00f1":{"d":"118,-172v81,0,47,94,55,168v-4,9,-23,2,-38,4v-18,-27,27,-138,-35,-138v-9,0,-43,19,-41,28r0,106v-4,10,-22,1,-37,4v-10,-43,6,-116,-11,-159v2,-3,37,-12,44,-6v0,7,2,15,4,22v11,-10,38,-29,59,-29xm113,-217v3,2,21,-17,25,-12v8,9,13,15,13,19v1,4,-32,22,-38,20v-12,2,-28,-12,-37,-12v-8,-3,-17,18,-23,10v-5,-6,-11,-9,-15,-16v3,-9,24,-21,35,-21v10,0,32,13,40,12","w":188},"\u00f3":{"d":"92,-174v47,0,85,41,85,88v0,49,-38,90,-85,90v-47,0,-85,-42,-85,-89v0,-49,37,-89,85,-89xm92,-32v27,0,48,-25,48,-53v0,-29,-20,-53,-48,-53v-28,-1,-48,24,-48,53v0,28,22,53,48,53xm121,-250v8,4,15,11,24,17v2,7,-75,49,-83,46v-3,0,-7,-15,-7,-20v19,-14,43,-25,66,-43","w":184},"\u00f2":{"d":"92,-174v47,0,85,41,85,88v0,49,-38,90,-85,90v-47,0,-85,-42,-85,-89v0,-49,37,-89,85,-89xm92,-32v27,0,48,-25,48,-53v0,-29,-20,-53,-48,-53v-28,-1,-48,24,-48,53v0,28,22,53,48,53xm52,-253v11,10,92,35,64,63v-45,-17,-71,-33,-86,-44v1,-2,18,-19,22,-19","w":184},"\u00f4":{"d":"92,-174v47,0,85,41,85,88v0,49,-38,90,-85,90v-47,0,-85,-42,-85,-89v0,-49,37,-89,85,-89xm92,-32v27,0,48,-25,48,-53v0,-29,-20,-53,-48,-53v-28,-1,-48,24,-48,53v0,28,22,53,48,53xm40,-199v13,-11,30,-41,42,-55v8,1,19,-3,22,3v4,17,26,38,38,52v-24,15,-22,10,-52,-20v-7,1,-25,43,-41,25v-6,-3,-9,-5,-9,-5","w":184},"\u00f6":{"d":"92,-174v47,0,85,41,85,88v0,49,-38,90,-85,90v-47,0,-85,-42,-85,-89v0,-49,37,-89,85,-89xm92,-32v27,0,48,-25,48,-53v0,-29,-20,-53,-48,-53v-28,-1,-48,24,-48,53v0,28,22,53,48,53xm148,-232v-6,22,13,48,-22,41v-28,10,-19,-19,-20,-40v2,-11,22,-1,38,-4v2,0,4,1,4,3xm76,-231v-3,25,12,50,-30,40v-13,6,-11,-7,-11,-19v1,-8,-5,-23,3,-25v12,2,33,-5,38,4","w":184},"\u00f5":{"d":"92,-174v47,0,85,41,85,88v0,49,-38,90,-85,90v-47,0,-85,-42,-85,-89v0,-49,37,-89,85,-89xm92,-32v27,0,48,-25,48,-53v0,-29,-20,-53,-48,-53v-28,-1,-48,24,-48,53v0,28,22,53,48,53xm110,-218v3,2,21,-17,25,-12v8,9,13,15,13,19v1,4,-32,22,-38,20v-12,2,-28,-12,-37,-12v-8,-3,-17,18,-23,10v-5,-6,-11,-9,-15,-16v3,-9,24,-21,35,-21v10,0,32,13,40,12","w":184},"\u00fa":{"d":"96,-31v13,0,44,-21,43,-33r0,-93v0,-16,24,-7,37,-9v13,28,-3,113,4,161v-3,11,-27,3,-39,5r-4,-26v-21,14,-41,27,-61,27v-76,0,-61,-100,-53,-160v2,-14,21,-4,37,-7v11,33,-30,135,36,135xm132,-250v8,4,15,11,24,17v2,7,-75,49,-83,46v-3,0,-7,-15,-7,-20v19,-14,43,-25,66,-43","w":198},"\u00f9":{"d":"96,-31v13,0,44,-21,43,-33r0,-93v0,-16,24,-7,37,-9v13,28,-3,113,4,161v-3,11,-27,3,-39,5r-4,-26v-21,14,-41,27,-61,27v-76,0,-61,-100,-53,-160v2,-14,21,-4,37,-7v11,33,-30,135,36,135xm66,-253v11,10,92,35,64,63v-45,-17,-71,-33,-86,-44v1,-2,18,-19,22,-19","w":198},"\u00fb":{"d":"96,-31v13,0,44,-21,43,-33r0,-93v0,-16,24,-7,37,-9v13,28,-3,113,4,161v-3,11,-27,3,-39,5r-4,-26v-21,14,-41,27,-61,27v-76,0,-61,-100,-53,-160v2,-14,21,-4,37,-7v11,33,-30,135,36,135xm50,-199v13,-11,30,-41,42,-55v8,1,19,-3,22,3v4,17,26,38,38,52v-24,15,-22,10,-52,-20v-7,1,-25,43,-41,25v-6,-3,-9,-5,-9,-5","w":198},"\u00fc":{"d":"96,-31v13,0,44,-21,43,-33r0,-93v0,-16,24,-7,37,-9v13,28,-3,113,4,161v-3,11,-27,3,-39,5r-4,-26v-21,14,-41,27,-61,27v-76,0,-61,-100,-53,-160v2,-14,21,-4,37,-7v11,33,-30,135,36,135xm158,-232v-6,22,13,48,-22,41v-28,10,-19,-19,-20,-40v2,-11,22,-1,38,-4v2,0,4,1,4,3xm86,-231v-3,25,12,50,-30,40v-13,6,-11,-7,-11,-19v1,-8,-5,-23,3,-25v12,2,33,-5,38,4","w":198},"\u2020":{"d":"140,-169v9,3,2,21,4,34v-7,10,-12,2,-50,2r1,151v4,26,-24,13,-41,13r2,-164v-9,-1,-60,14,-49,-17v1,-6,-3,-18,3,-19r45,1r-1,-77v1,-15,27,-3,39,-7v10,19,0,55,2,84","w":150},"\u00b0":{"d":"70,-249v33,0,57,31,57,64v0,33,-23,64,-57,64v-31,0,-57,-31,-57,-64v0,-32,26,-64,57,-64xm70,-146v20,0,33,-17,33,-39v0,-22,-12,-39,-33,-39v-20,0,-32,19,-32,39v0,20,14,39,32,39","w":141},"\u00a2":{"d":"97,-210r-5,28v7,0,25,6,25,11r-7,25v-7,-4,-15,-9,-22,-9v-5,28,-5,28,-13,85v13,3,26,-3,34,-9v2,0,6,24,6,27v-1,10,-30,11,-45,11v-2,19,-3,31,-6,41v-26,0,-11,-7,-8,-45v-26,-9,-46,-33,-46,-67v-1,-40,29,-73,68,-72r5,-31xm73,-154v-31,6,-40,60,-12,78v1,-7,5,-33,12,-78","w":124},"\u00a3":{"d":"148,-160v-23,-13,-79,-37,-88,2v0,13,15,31,21,42v8,3,39,-3,55,4v-1,10,5,26,-2,31v-22,0,-33,0,-35,-1v5,19,0,33,-12,46v28,1,62,-3,87,2v-4,11,-1,29,-11,34v-45,0,-112,-4,-144,4v-7,-12,-18,-38,-3,-38v22,-1,56,-22,42,-48v-16,-4,-45,13,-45,-11v0,-26,4,-27,23,-24v-37,-53,0,-100,60,-99v13,-1,62,11,60,22","w":168},"\u00a7":{"d":"112,-76v9,11,22,22,22,44v0,59,-98,73,-124,29v0,1,5,-8,14,-24v0,-1,1,-2,2,-2v1,2,31,26,40,22v32,2,39,-33,8,-46v-23,-10,-62,-27,-61,-56v-3,-15,14,-37,18,-43v-33,-31,-20,-103,42,-97v23,2,42,5,49,21r-13,24v-12,-16,-59,-30,-61,1v11,51,120,53,74,114xm84,-90v4,1,12,-12,12,-16v2,-13,-25,-35,-37,-34v-4,-1,-12,14,-11,18v-2,10,26,33,36,32","w":146},"\u2022":{"d":"81,-178v40,0,67,33,67,74v0,40,-27,73,-67,73v-40,0,-68,-33,-68,-73v0,-41,28,-74,68,-74","w":162},"\u00b6":{"d":"13,-160v0,-83,83,-106,160,-77v8,19,1,71,2,106v3,86,-44,136,-125,140v-8,-1,-15,-19,-6,-21v107,5,112,-83,108,-193v-3,-5,-10,-7,-20,-7v2,11,3,33,3,65v1,74,-21,116,-87,120v-16,1,-21,-18,-14,-29v40,15,81,-8,74,-51v-38,26,-95,-1,-95,-53xm113,-130v3,-21,0,-62,0,-83v0,-3,-3,-4,-9,-4v-30,0,-45,18,-45,54v0,41,29,49,54,33","w":195},"\u00df":{"d":"120,-150v27,12,51,31,51,64v0,38,-27,72,-75,88v-3,1,-18,-25,-17,-26v26,-14,52,-35,52,-58v0,-29,-27,-46,-56,-36v-3,0,-4,-9,-4,-27v17,-12,37,-24,37,-44v0,-18,-7,-27,-21,-27v-17,-1,-30,18,-29,36r4,177v-4,10,-22,-2,-38,3v-11,-38,1,-119,-4,-174v-3,-39,29,-73,66,-73v59,0,70,69,34,97","w":180},"\u00ae":{"d":"111,-246v55,0,98,53,98,109v0,57,-43,109,-98,109v-54,0,-98,-53,-98,-109v0,-57,44,-109,98,-109xm113,-213v68,0,68,69,35,95v0,1,7,17,21,46v54,-57,6,-183,-83,-153v-13,4,-22,8,-19,14v12,-1,28,-2,46,-2xm136,-161v0,-24,-24,-33,-49,-27r-1,44v23,2,50,4,50,-17xm88,-110r5,44r-32,1v27,26,73,27,100,0v-56,15,-8,-72,-73,-45xm55,-73v9,-19,2,-103,-4,-127v-29,37,-29,98,4,127","w":222},"\u00a9":{"d":"112,-246v54,0,98,53,98,109v0,56,-44,109,-98,109v-55,0,-98,-53,-98,-109v0,-57,42,-109,98,-109xm112,-47v45,0,79,-45,79,-90v0,-46,-35,-90,-79,-90v-46,0,-80,43,-80,90v0,46,34,90,80,90xm117,-209v9,0,40,6,39,14r-13,24v-26,-19,-58,-8,-58,33v0,42,33,45,59,36r11,22v-39,33,-105,-3,-105,-58v0,-39,29,-72,67,-71","w":222},"\u2122":{"d":"131,-249v7,5,25,40,28,52v13,-16,14,-61,42,-51v5,1,12,-1,15,1r0,109v-9,-2,-25,4,-29,-3v0,-17,2,-36,0,-51v-6,0,-10,57,-18,54v-7,0,-17,1,-23,-1v-4,-9,-9,-44,-15,-53v-4,11,4,41,-2,54v-8,-2,-23,2,-27,-2v2,-35,-4,-76,2,-107xm4,-243v24,-6,58,-2,85,-4v8,0,3,38,1,34r-25,0v-1,24,4,55,-1,75v-12,-1,-26,2,-36,-1r2,-73r-29,1","w":225},"\u00b4":{"d":"74,-255v8,4,15,11,24,17v2,7,-75,49,-83,46v-3,0,-7,-15,-7,-20v19,-14,43,-25,66,-43"},"\u00a8":{"d":"120,-252v-6,22,13,48,-22,41v-28,10,-19,-19,-20,-40v2,-11,22,-1,38,-4v2,0,4,1,4,3xm48,-251v-3,25,12,50,-30,40v-13,6,-11,-7,-11,-19v1,-8,-5,-23,3,-25v12,2,33,-5,38,4"},"\u2260":{"d":"141,-69r-61,0r-14,57r-21,-5r13,-52r-40,0r0,-21r45,0r11,-43r-56,0r0,-21r61,0r14,-56r21,5r-13,51r40,0r0,21r-45,0r-11,43r56,0r0,21","w":158},"\u00c6":{"d":"182,-86v5,26,-7,51,22,51v26,0,53,-3,81,-5v8,8,-4,26,-3,38v-26,8,-96,-3,-135,2v-15,-4,-1,-34,-5,-55v-21,-2,-62,-6,-71,4v-6,12,-18,47,-24,51v-18,-2,-48,7,-35,-22r100,-220v32,-10,113,-3,161,-8v13,2,9,27,11,35v-23,5,-54,2,-84,4v-25,-7,-16,31,-18,58v2,7,7,10,15,10v16,0,43,-1,79,-4v10,5,-1,25,1,36v-11,13,-104,-25,-95,25xm139,-203v-27,46,-54,114,-51,112v13,8,46,0,54,0v-2,-37,2,-79,-3,-112","w":297},"\u00d8":{"d":"221,-243v4,3,17,16,7,22v-10,13,-159,177,-200,222v-5,5,-5,2,-10,-5v-2,-4,-4,-7,-5,-9v2,0,232,-261,208,-230xm131,-252v67,0,119,61,119,129v0,67,-53,128,-119,128v-68,0,-120,-59,-120,-128v0,-69,53,-129,120,-129xm130,-36v45,0,78,-43,78,-88v0,-45,-34,-87,-78,-87v-44,0,-77,44,-77,88v0,43,34,87,77,87","w":261},"\u221e":{"d":"217,-44v2,29,-38,20,-64,20v-15,0,-32,-33,-41,-47v-14,15,-19,43,-41,47v-26,-2,-65,10,-65,-20r0,-90v-1,-29,40,-19,65,-19v16,0,32,32,41,46v9,-14,25,-46,41,-46v25,0,64,-10,64,19r0,90xm194,-45r0,-88r-42,0r-28,44r28,44r42,0xm100,-89r-29,-44r-41,0r0,88r42,0","w":223},"\u00b1":{"d":"135,-114r-51,0r0,44r-21,0r0,-44r-51,0r0,-20r51,0r0,-47r21,0r0,47r51,0r0,20xm136,-33r-124,0r0,-22r124,0r0,22","w":147},"\u2264":{"d":"103,-78v-1,8,2,19,-1,25r-89,-61r0,-13r90,-61r0,25r-66,43xm103,-25r-90,0r0,-21r90,0r0,21","w":122},"\u2265":{"d":"106,-114r-89,61r0,-25r65,-42r-65,-43v1,-8,-2,-19,1,-25r88,61r0,13xm106,-25r-89,0r0,-21r89,0r0,21","w":122},"\u00a5":{"d":"22,-214v7,-9,34,-2,45,0r-1,47r101,0v2,-16,-5,-39,2,-49v8,-1,21,-2,39,-2v10,4,2,38,3,49v27,-8,17,10,19,29v-1,5,-22,2,-30,2v-7,10,-18,25,-33,44v17,0,40,-5,54,-1v-1,10,5,28,-3,32r-77,1r-4,62v-14,-1,-25,-1,-40,0v-12,-8,2,-49,-5,-62v-51,-1,-77,-1,-77,-1v-3,0,-5,-4,-5,-13v-8,-38,33,-14,57,-18v-8,-9,-19,-24,-33,-44v-7,-2,-34,9,-31,-9v4,-28,-12,-20,20,-22xm156,-139r-77,0v16,19,30,34,41,45v10,-11,23,-26,36,-45","w":236},"\u00b5":{"d":"119,0r-23,0r0,-5v-11,5,-47,10,-54,-2r0,72r-23,0r0,-236r23,0r0,127v-3,29,33,26,54,21r0,-148r23,0r0,171","w":137},"\u03bc":{"d":"119,0r-23,0r0,-5v-11,5,-47,10,-54,-2r0,72r-23,0r0,-236r23,0r0,127v-3,29,33,26,54,21r0,-148r23,0r0,171","w":137},"\u2202":{"d":"22,-132v1,-33,52,-16,82,-20r-57,-123r26,0r58,124r0,131v-1,35,-58,16,-90,20v-11,1,-20,-8,-19,-20r0,-112xm106,-22r0,-108r-60,0r0,108r60,0","w":152},"\u2211":{"d":"114,0r-99,0r0,-19r67,-121r-67,-113r0,-22r98,0r0,22r-74,0r63,103r0,21r-63,107r75,0r0,22","w":128},"\u220f":{"d":"134,-253r-26,0r0,253r-23,0r0,-253r-29,0r0,253r-24,0r0,-253r-25,0r0,-22r127,0r0,22","w":141},"\u03c0":{"d":"134,-135r-26,0r0,135r-23,0r0,-135r-29,0r0,135r-24,0r0,-135r-25,0r0,-22r127,0r0,22","w":141},"\u222b":{"d":"51,51v0,25,-33,19,-57,19r0,-20r34,0r0,-305v-2,-27,32,-19,56,-20r0,20r-33,0r0,306","w":85},"\u00aa":{"d":"124,-246v6,1,32,0,30,10v-10,43,-2,86,-2,129v0,10,-21,3,-31,6r-6,-22v-37,51,-106,11,-106,-51v0,-64,78,-100,109,-49v3,-3,2,-18,6,-23xm21,-55v-6,-8,-4,-30,1,-31r127,1v7,1,2,16,-1,30r-127,0xm81,-130v41,0,43,-88,-1,-88v-21,0,-35,21,-35,43v0,26,13,45,36,45","w":165},"\u00ba":{"d":"82,-251v36,0,67,37,67,76v0,38,-30,76,-67,76v-37,0,-67,-37,-67,-76v0,-39,31,-76,67,-76xm26,-55v-6,-10,-4,-31,2,-31r112,1v6,1,4,27,-3,30r-111,0xm83,-130v44,0,43,-90,0,-90v-47,0,-48,91,0,90","w":165},"\u03a9":{"d":"164,-84v1,19,-16,22,-36,20r0,41r48,0r0,23r-68,0r0,-86r32,0r0,-167r-93,0r-1,167r33,0r0,86r-69,0r0,-23r48,0r0,-41v-20,1,-36,-1,-36,-20r0,-172v0,-10,8,-20,19,-19r103,0v12,-1,20,8,20,19r0,172","w":185},"\u2126":{"d":"164,-84v1,19,-16,22,-36,20r0,41r48,0r0,23r-68,0r0,-86r32,0r0,-167r-93,0r-1,167r33,0r0,86r-69,0r0,-23r48,0r0,-41v-20,1,-36,-1,-36,-20r0,-172v0,-10,8,-20,19,-19r103,0v12,-1,20,8,20,19r0,172","w":185},"\u00e6":{"d":"187,-161v51,-39,131,14,113,78v-19,15,-77,10,-116,17v6,43,83,45,103,13r14,26v-17,32,-97,42,-118,9r1,18v-11,1,-25,2,-35,0r-1,-29v-17,20,-30,32,-61,33v-47,1,-79,-41,-79,-88v0,-80,92,-125,142,-59r7,-25v2,0,12,3,30,7xm224,-142v-22,0,-42,18,-40,40v0,4,1,6,4,6v8,0,29,-2,63,-5v7,-1,10,-3,10,-6v1,-17,-20,-35,-37,-35xm97,-31v28,0,48,-26,48,-55v0,-28,-21,-54,-48,-54v-29,0,-49,25,-49,55v0,29,20,54,49,54","w":308},"\u00f8":{"d":"159,-182v1,4,13,12,7,19r-145,167v0,-1,-10,-13,-9,-14v4,-7,149,-179,147,-172xm92,-174v47,0,85,41,85,88v0,49,-38,90,-85,90v-47,0,-85,-42,-85,-89v0,-49,37,-89,85,-89xm92,-32v27,0,48,-25,48,-53v0,-29,-20,-53,-48,-53v-28,-1,-48,24,-48,53v0,28,22,53,48,53","w":184},"\u00bf":{"d":"81,-247v13,0,23,12,22,24v0,14,-9,24,-22,24v-13,1,-23,-11,-23,-24v0,-12,10,-24,23,-24xm54,-74v-3,47,65,39,79,18v4,0,6,9,6,27v6,23,-48,31,-64,32v-53,5,-81,-56,-57,-103v14,-27,56,-40,52,-76v2,-5,28,-14,28,3v0,43,-41,60,-44,99","w":143},"\u00a1":{"d":"43,-247v14,0,23,11,23,25v0,14,-9,24,-23,24v-13,0,-22,-10,-22,-24v0,-13,8,-25,22,-25xm24,4v-3,-68,-9,-120,12,-184v7,0,17,-5,16,6v7,43,21,120,11,178v-13,-2,-26,-2,-39,0","w":83},"\u00ac":{"d":"145,-58r-22,0r0,-52r-102,0r0,-21r124,0r0,73","w":165},"\u221a":{"d":"317,-271v16,-9,16,23,23,39v-90,33,-143,141,-161,246v2,21,-17,21,-28,23v-17,-58,-56,-113,-117,-132v-16,-18,21,-36,30,-52v23,-6,36,15,55,29v20,15,25,33,37,46v16,-24,58,-95,79,-118v39,-42,65,-72,82,-81","w":342},"\u0192":{"d":"35,-141v-12,-63,18,-85,72,-74v32,6,16,21,12,41v-14,-4,-52,-20,-46,14v0,5,1,11,1,18v22,1,38,-1,46,6v-2,13,2,41,-24,32v-14,0,-20,-1,-20,-1v7,67,24,122,-29,142v-9,-12,-13,-25,-20,-33v28,-14,15,-80,10,-108v-6,-1,-17,3,-21,-1v-1,-27,-7,-32,0,-37","w":137},"\u2248":{"d":"152,-178v1,28,6,63,-33,48r-66,-25r0,28r-23,0v2,-20,-8,-54,14,-52v32,3,57,20,85,29r0,-28r23,0xm152,-109v1,28,5,65,-33,49r-66,-26r0,28r-23,0v2,-20,-8,-54,14,-52v32,3,57,20,85,29r0,-28r23,0","w":181},"\u0394":{"d":"136,0r-128,0r0,-21r52,-255r24,0r52,255r0,21xm112,-23r-40,-209r-40,209r80,0","w":143},"\u2206":{"d":"136,0r-128,0r0,-21r52,-255r24,0r52,255r0,21xm112,-23r-40,-209r-40,209r80,0","w":143},"\u00ab":{"d":"172,-137v0,8,-41,33,-49,36v13,9,48,27,48,38v-3,4,-6,18,-13,27v-21,-16,-44,-35,-68,-46v-5,-5,-5,-28,0,-36v23,-12,48,-31,69,-46v3,5,5,8,13,27xm94,-137v-1,8,-37,29,-49,37v13,8,52,27,48,37v-3,6,-6,18,-12,27v-19,-15,-42,-33,-68,-46v-4,-4,-8,-29,0,-36v29,-16,42,-26,68,-46v5,4,4,9,13,27","w":181},"\u00bb":{"d":"89,-63v-5,-10,42,-32,48,-37v-12,-8,-48,-28,-49,-37v4,-7,7,-19,13,-27v22,17,43,33,69,46v6,5,4,29,-1,36v-30,14,-48,32,-68,46v-5,-6,-6,-15,-12,-27xm10,-137v8,-9,9,-21,14,-27v22,17,42,32,68,46v5,6,5,28,0,36v-32,16,-50,32,-68,46v-6,-6,-6,-17,-13,-28v12,-18,34,-28,49,-36v-12,-9,-50,-29,-50,-37","w":181},"\u2026":{"d":"193,-54v15,0,27,13,27,28v0,16,-12,29,-27,29v-14,0,-26,-13,-26,-29v0,-15,11,-28,26,-28xm116,-54v16,0,27,14,27,28v0,15,-12,29,-27,29v-15,0,-27,-14,-27,-29v0,-15,11,-28,27,-28xm38,-54v16,0,28,13,28,28v0,16,-12,29,-28,29v-14,0,-26,-13,-26,-29v0,-14,12,-28,26,-28","w":232},"\u00a0":{"w":45},"\u00c0":{"d":"137,-251v4,8,115,268,95,251r-40,0v-7,3,-19,-58,-28,-54r-95,0v-4,1,-11,10,-13,27v-5,39,-25,27,-54,25v13,-43,28,-85,45,-126r51,-123v13,2,26,2,39,0xm129,-92v46,0,21,-12,9,-53v-8,-27,-17,-43,-22,-52v-24,62,-36,95,-36,98v3,11,33,7,49,7xm80,-321v11,10,92,35,64,63v-45,-17,-71,-33,-86,-44v1,-2,18,-19,22,-19","w":237},"\u00c3":{"d":"137,-251v4,8,115,268,95,251r-40,0v-7,3,-19,-58,-28,-54r-95,0v-4,1,-11,10,-13,27v-5,39,-25,27,-54,25v13,-43,28,-85,45,-126r51,-123v13,2,26,2,39,0xm129,-92v46,0,21,-12,9,-53v-8,-27,-17,-43,-22,-52v-24,62,-36,95,-36,98v3,11,33,7,49,7xm134,-292v3,2,21,-17,25,-12v8,9,13,15,13,19v1,4,-32,22,-38,20v-12,2,-28,-12,-37,-12v-8,-3,-17,18,-23,10v-5,-6,-11,-9,-15,-16v3,-9,24,-21,35,-21v10,0,32,13,40,12","w":237},"\u00d5":{"d":"131,-252v67,0,119,61,119,129v0,67,-53,128,-119,128v-68,0,-120,-59,-120,-128v0,-69,53,-129,120,-129xm130,-36v45,0,78,-43,78,-88v0,-45,-34,-87,-78,-87v-44,0,-77,44,-77,88v0,43,34,87,77,87xm147,-290v3,2,21,-17,25,-12v8,9,13,15,13,19v1,4,-32,22,-38,20v-12,2,-28,-12,-37,-12v-8,-3,-17,18,-23,10v-5,-6,-11,-9,-15,-16v3,-9,24,-21,35,-21v10,0,32,13,40,12","w":261},"\u0152":{"d":"246,-73v-7,57,40,33,78,35v5,9,-3,25,-3,36v-4,8,-56,1,-108,1v-15,0,-5,-24,-6,-36v-14,23,-43,40,-77,41v-66,2,-120,-61,-120,-127v0,-67,53,-127,120,-127v34,0,65,19,80,42v5,-5,-5,-39,5,-39r100,0v12,2,12,34,7,38v-40,0,-88,-19,-77,48v-2,33,46,11,74,16v10,1,3,25,3,36r-45,-2v-34,2,-26,0,-31,38xm129,-35v44,0,79,-42,79,-88v0,-45,-34,-88,-79,-88v-43,0,-77,45,-77,88v0,43,35,88,77,88","w":337},"\u0153":{"d":"226,-176v44,-1,79,37,78,83v-6,24,-7,17,-45,20r-74,6v5,45,80,45,103,15v4,6,14,21,12,30v-33,40,-121,30,-141,-13v-8,20,-39,38,-67,38v-48,0,-85,-39,-85,-89v0,-83,114,-123,152,-51v11,-21,38,-38,67,-39xm183,-101v5,9,58,4,79,-6v1,-17,-20,-35,-37,-35v-22,-1,-43,19,-42,41xm92,-33v29,0,49,-24,49,-53v0,-29,-20,-53,-49,-53v-29,0,-48,24,-48,53v0,29,20,53,48,53","w":309},"\u2013":{"d":"192,-86v-53,7,-121,0,-179,3v-12,-4,2,-23,1,-38v50,-5,121,1,178,-3v8,7,-1,26,0,38","w":203},"\u2014":{"d":"273,-86v-80,7,-174,0,-258,3v-12,-5,2,-27,1,-38v76,-5,173,1,256,-3v4,0,5,1,5,3","w":286},"\u201c":{"d":"100,-138v-42,-27,-25,-91,6,-114v7,12,21,9,7,27v-18,24,-2,50,13,62xm51,-233v-17,24,-4,52,12,66v0,3,-19,20,-25,24v-7,0,-26,-26,-26,-46v0,-26,12,-53,33,-71v8,12,21,7,6,27","w":136},"\u201d":{"d":"98,-258v7,0,28,26,26,46v-2,25,-11,54,-33,70v-8,-10,-21,-7,-6,-26v18,-24,4,-52,-12,-66v0,-3,19,-20,25,-24xm36,-248v43,25,25,92,-6,113v-13,-18,-20,-6,-7,-26v17,-25,2,-50,-13,-63v0,-1,4,-5,12,-13v8,-8,13,-11,14,-11","w":136},"\u2018":{"d":"61,-243v-20,24,-17,63,5,79r-26,25v-43,-24,-25,-97,7,-117","w":74},"\u2019":{"d":"34,-255v41,26,30,86,-6,117v-7,-2,-10,-9,-15,-13v19,-24,17,-63,-5,-79","w":74},"\u00f7":{"d":"73,-185v11,0,19,9,19,19v0,11,-8,19,-19,19v-23,0,-23,-38,0,-38xm135,-110r-123,0r0,-22r123,0r0,22xm73,-94v11,0,19,8,19,18v0,11,-8,19,-19,19v-11,0,-18,-9,-18,-19v0,-9,8,-18,18,-18","w":147},"\u25ca":{"d":"140,-101r-61,89r-12,0r-62,-89r62,-89r12,0xm116,-101r-43,-65r-43,65r43,65","w":145},"\u00ff":{"d":"126,-129v1,-17,-12,-40,18,-35v28,-5,21,0,22,42v2,65,-4,37,-45,105v-25,42,-44,63,-49,68v-3,4,-31,8,-52,5v-1,-11,-22,-31,-1,-31v29,0,39,-13,45,-31v2,-5,-58,-76,-55,-80v-4,-11,-4,-58,-2,-75v1,-10,27,-1,37,-3v7,3,0,21,2,33v-10,41,29,76,43,92v11,-17,47,-51,37,-90xm144,-219v-6,22,13,48,-22,41v-28,10,-19,-19,-20,-40v2,-11,22,-1,38,-4v2,0,4,1,4,3xm72,-218v-3,25,12,50,-30,40v-13,6,-11,-7,-11,-19v1,-8,-5,-23,3,-25v12,2,33,-5,38,4","w":171},"\u0178":{"d":"160,-184r-3,-58v2,-12,28,1,44,-5v10,9,2,49,5,67v-4,26,-64,87,-78,120r2,57v-8,8,-32,1,-46,3v-13,-10,9,-59,-6,-74v-23,-36,-53,-64,-71,-104v-1,-15,-1,-36,-1,-64v0,-12,27,0,43,-5v11,4,-1,46,1,62v0,7,19,32,56,74v12,-13,52,-62,54,-73xm165,-297v-6,22,13,48,-22,41v-28,10,-19,-19,-20,-40v2,-11,22,-1,38,-4v2,0,4,1,4,3xm93,-296v-3,25,12,50,-30,40v-13,6,-11,-7,-11,-19v1,-8,-5,-23,3,-25v12,2,33,-5,38,4","w":211},"\u2044":{"d":"105,-223v2,1,29,15,22,22r-59,103r-60,112v-6,-4,-23,-18,-24,-20","w":109},"\u2215":{"d":"105,-223v2,1,29,15,22,22r-59,103r-60,112v-6,-4,-23,-18,-24,-20","w":109},"\u00a4":{"d":"192,-193r-31,31r0,70r31,31r-20,20r-34,-34r-58,0r-34,34r-21,-20r31,-32r0,-69r-31,-31r21,-21r34,34r58,0r34,-34xm133,-101r0,-53r-48,0r0,53r48,0","w":214},"\u2039":{"d":"82,-163v9,-1,10,16,17,27v0,4,-15,16,-45,35v-1,1,46,27,43,35r-13,30v-26,-19,-35,-29,-71,-46v-4,-4,-9,-30,0,-36v22,-14,46,-27,69,-45","w":105},"\u203a":{"d":"8,-64v-5,-10,40,-31,47,-36v-14,-14,-65,-28,-43,-47v9,-32,20,-6,43,8v8,6,31,13,41,26v-2,10,4,27,-4,31v-31,15,-50,31,-71,46v-5,-7,-6,-15,-13,-28","w":105},"\uf001":{"d":"138,-209v-30,-18,-89,-19,-75,43r101,-1v6,44,-5,107,1,163v-5,9,-26,2,-37,4v-10,-23,3,-88,-3,-125v0,-4,-1,-6,-5,-6v-12,0,-31,0,-55,-1r2,127v-3,11,-24,2,-35,5v-3,0,-5,-2,-5,-5r0,-122v0,-4,-5,-4,-10,-4v-20,4,-12,-4,-14,-29v-1,-4,14,-6,22,-5v-15,-81,62,-110,122,-76v0,4,-5,34,-9,32","w":182},"\ufb01":{"d":"138,-209v-30,-18,-89,-19,-75,43r101,-1v6,44,-5,107,1,163v-5,9,-26,2,-37,4v-10,-23,3,-88,-3,-125v0,-4,-1,-6,-5,-6v-12,0,-31,0,-55,-1r2,127v-3,11,-24,2,-35,5v-3,0,-5,-2,-5,-5r0,-122v0,-4,-5,-4,-10,-4v-20,4,-12,-4,-14,-29v-1,-4,14,-6,22,-5v-15,-81,62,-110,122,-76v0,4,-5,34,-9,32","w":182},"\uf002":{"d":"26,-166v-18,-87,80,-112,147,-76v-10,51,-3,168,-3,235v-1,16,-25,3,-37,7v-9,-33,1,-95,-2,-135v-15,0,-37,1,-66,2r3,128v-3,11,-24,2,-35,5v-3,0,-5,-2,-5,-5r0,-122v1,-7,-14,-4,-16,-4v-14,-1,-5,-7,-8,-30v0,-4,16,-4,22,-5xm132,-221v-48,-14,-75,8,-69,54r67,0v0,-28,1,-46,2,-54","w":186},"\ufb02":{"d":"26,-166v-18,-87,80,-112,147,-76v-10,51,-3,168,-3,235v-1,16,-25,3,-37,7v-9,-33,1,-95,-2,-135v-15,0,-37,1,-66,2r3,128v-3,11,-24,2,-35,5v-3,0,-5,-2,-5,-5r0,-122v1,-7,-14,-4,-16,-4v-14,-1,-5,-7,-8,-30v0,-4,16,-4,22,-5xm132,-221v-48,-14,-75,8,-69,54r67,0v0,-28,1,-46,2,-54","w":186},"\u2021":{"d":"96,-61v51,-1,53,-11,51,32v-7,10,-14,1,-50,2v-2,27,7,65,-2,86v-12,-1,-29,3,-38,-2r2,-84v-27,5,-65,5,-46,-35v14,0,38,0,47,2r1,-74v-27,3,-66,8,-48,-35r46,1r-2,-77v2,-16,27,-3,40,-7v9,15,-1,44,1,84v18,4,58,-14,49,17v0,28,-2,17,-50,17v-2,34,-2,25,-1,73","w":157},"\u00b7":{"d":"38,-158v16,0,28,13,28,28v0,16,-12,29,-28,29v-14,0,-26,-14,-26,-29v0,-14,12,-28,26,-28","w":77},"\u2219":{"d":"38,-158v16,0,28,13,28,28v0,16,-12,29,-28,29v-14,0,-26,-14,-26,-29v0,-14,12,-28,26,-28","w":77},"\u201a":{"d":"35,-62v42,24,24,97,-8,116v-8,-10,-21,-7,-6,-26v20,-25,3,-51,-13,-65","w":74},"\u201e":{"d":"91,-76v5,2,25,26,25,47v0,26,-12,52,-33,70v-8,-11,-21,-7,-6,-26v19,-24,4,-52,-12,-66xm33,-62v43,27,24,92,-6,114v-7,-12,-22,-9,-7,-27v20,-22,0,-53,-13,-62v0,-2,4,-6,12,-14v9,-7,13,-11,14,-11","w":136},"\u2030":{"d":"330,-134v33,0,56,35,56,68v0,34,-23,68,-56,68v-32,0,-56,-34,-56,-68v0,-33,24,-68,56,-68xm201,-134v31,0,56,35,56,68v0,34,-25,68,-56,68v-33,0,-57,-33,-57,-68v0,-33,24,-68,57,-68xm172,-220v4,1,19,6,13,14r-47,99v-10,19,-24,68,-46,112v-2,-1,-20,-6,-14,-15v11,-16,46,-95,49,-101v15,-25,27,-81,45,-109xm65,-219v32,0,56,34,56,68v0,33,-24,68,-56,68v-33,0,-57,-35,-57,-68v0,-35,24,-68,57,-68xm330,-27v18,1,27,-20,27,-39v0,-18,-10,-38,-27,-38v-38,1,-34,75,0,77xm201,-27v34,0,35,-77,0,-77v-37,0,-37,76,0,77xm65,-113v35,0,36,-77,0,-77v-37,0,-36,77,0,77","w":394},"\u00c2":{"d":"137,-251v4,8,115,268,95,251r-40,0v-7,3,-19,-58,-28,-54r-95,0v-4,1,-11,10,-13,27v-5,39,-25,27,-54,25v13,-43,28,-85,45,-126r51,-123v13,2,26,2,39,0xm129,-92v46,0,21,-12,9,-53v-8,-27,-17,-43,-22,-52v-24,62,-36,95,-36,98v3,11,33,7,49,7xm65,-265v13,-11,30,-41,42,-55v8,1,19,-3,22,3v4,17,26,38,38,52v-24,15,-22,10,-52,-20v-7,1,-25,43,-41,25v-6,-3,-9,-5,-9,-5","w":237},"\u00ca":{"d":"62,-101v6,27,-13,75,28,66v32,1,38,-2,91,-5v9,2,1,15,0,21v-1,6,3,24,-13,21v-31,-6,-107,-3,-145,-2v-3,0,-5,-2,-5,-5r4,-118r-4,-120v30,-10,102,3,149,-4v14,1,16,38,8,38r-90,-3v-34,-5,-18,31,-22,62v25,15,84,-4,112,5r-3,35v-18,7,-65,-2,-102,1v-4,1,-7,3,-8,8xm48,-266v13,-11,30,-41,42,-55v8,1,19,-3,22,3v4,17,26,38,38,52v-24,15,-22,10,-52,-20v-7,1,-25,43,-41,25v-6,-3,-9,-5,-9,-5","w":193},"\u00c1":{"d":"137,-251v4,8,115,268,95,251r-40,0v-7,3,-19,-58,-28,-54r-95,0v-4,1,-11,10,-13,27v-5,39,-25,27,-54,25v13,-43,28,-85,45,-126r51,-123v13,2,26,2,39,0xm129,-92v46,0,21,-12,9,-53v-8,-27,-17,-43,-22,-52v-24,62,-36,95,-36,98v3,11,33,7,49,7xm142,-320v8,4,15,11,24,17v2,7,-75,49,-83,46v-3,0,-7,-15,-7,-20v19,-14,43,-25,66,-43","w":237},"\u00cb":{"d":"62,-101v6,27,-13,75,28,66v32,1,38,-2,91,-5v9,2,1,15,0,21v-1,6,3,24,-13,21v-31,-6,-107,-3,-145,-2v-3,0,-5,-2,-5,-5r4,-118r-4,-120v30,-10,102,3,149,-4v14,1,16,38,8,38r-90,-3v-34,-5,-18,31,-22,62v25,15,84,-4,112,5r-3,35v-18,7,-65,-2,-102,1v-4,1,-7,3,-8,8xm154,-299v-6,22,13,48,-22,41v-28,10,-19,-19,-20,-40v2,-11,22,-1,38,-4v2,0,4,1,4,3xm82,-298v-3,25,12,50,-30,40v-13,6,-11,-7,-11,-19v1,-8,-5,-23,3,-25v12,2,33,-5,38,4","w":193},"\u00c8":{"d":"62,-101v6,27,-13,75,28,66v32,1,38,-2,91,-5v9,2,1,15,0,21v-1,6,3,24,-13,21v-31,-6,-107,-3,-145,-2v-3,0,-5,-2,-5,-5r4,-118r-4,-120v30,-10,102,3,149,-4v14,1,16,38,8,38r-90,-3v-34,-5,-18,31,-22,62v25,15,84,-4,112,5r-3,35v-18,7,-65,-2,-102,1v-4,1,-7,3,-8,8xm75,-318v11,10,92,35,64,63v-45,-17,-71,-33,-86,-44v1,-2,18,-19,22,-19","w":193},"\u00cd":{"d":"64,-125r3,121v-4,10,-28,-1,-44,4v-3,0,-5,-1,-5,-4r4,-121r-4,-117v2,-12,28,0,44,-5v3,0,4,2,4,4xm71,-315v8,4,15,11,24,17v2,7,-75,49,-83,46v-3,0,-7,-15,-7,-20v19,-14,43,-25,66,-43","w":85},"\u00ce":{"d":"64,-125r3,121v-4,10,-28,-1,-44,4v-3,0,-5,-1,-5,-4r4,-121r-4,-117v2,-12,28,0,44,-5v3,0,4,2,4,4xm-8,-266v13,-11,30,-41,42,-55v8,1,19,-3,22,3v4,17,26,38,38,52v-24,15,-22,10,-52,-20v-7,1,-25,43,-41,25v-6,-3,-9,-5,-9,-5","w":85},"\u00cf":{"d":"64,-125r3,121v-4,10,-28,-1,-44,4v-3,0,-5,-1,-5,-4r4,-121r-4,-117v2,-12,28,0,44,-5v3,0,4,2,4,4xm98,-299v-6,22,13,48,-22,41v-28,10,-19,-19,-20,-40v2,-11,22,-1,38,-4v2,0,4,1,4,3xm26,-298v-3,25,12,50,-30,40v-13,6,-11,-7,-11,-19v1,-8,-5,-23,3,-25v12,2,33,-5,38,4","w":85},"\u00cc":{"d":"64,-125r3,121v-4,10,-28,-1,-44,4v-3,0,-5,-1,-5,-4r4,-121r-4,-117v2,-12,28,0,44,-5v3,0,4,2,4,4xm18,-315v11,10,92,35,64,63v-45,-17,-71,-33,-86,-44v1,-2,18,-19,22,-19","w":85},"\u00d3":{"d":"131,-252v67,0,119,61,119,129v0,67,-53,128,-119,128v-68,0,-120,-59,-120,-128v0,-69,53,-129,120,-129xm130,-36v45,0,78,-43,78,-88v0,-45,-34,-87,-78,-87v-44,0,-77,44,-77,88v0,43,34,87,77,87xm157,-318v8,4,15,11,24,17v2,7,-75,49,-83,46v-3,0,-7,-15,-7,-20v19,-14,43,-25,66,-43","w":261},"\u00d4":{"d":"131,-252v67,0,119,61,119,129v0,67,-53,128,-119,128v-68,0,-120,-59,-120,-128v0,-69,53,-129,120,-129xm130,-36v45,0,78,-43,78,-88v0,-45,-34,-87,-78,-87v-44,0,-77,44,-77,88v0,43,34,87,77,87xm78,-266v13,-11,30,-41,42,-55v8,1,19,-3,22,3v4,17,26,38,38,52v-24,15,-22,10,-52,-20v-7,1,-25,43,-41,25v-6,-3,-9,-5,-9,-5","w":261},"\u00d2":{"d":"131,-252v67,0,119,61,119,129v0,67,-53,128,-119,128v-68,0,-120,-59,-120,-128v0,-69,53,-129,120,-129xm130,-36v45,0,78,-43,78,-88v0,-45,-34,-87,-78,-87v-44,0,-77,44,-77,88v0,43,34,87,77,87xm106,-318v11,10,92,35,64,63v-45,-17,-71,-33,-86,-44v1,-2,18,-19,22,-19","w":261},"\u00da":{"d":"119,-32v74,0,55,-52,55,-127v0,-37,-1,-65,-1,-84v5,-8,29,0,42,-4v3,0,5,2,5,4r-3,162v2,75,-29,80,-101,85v-141,9,-81,-118,-98,-247v4,-8,36,-3,47,0r-2,161v1,40,13,50,56,50xm158,-312v8,4,15,11,24,17v2,7,-75,49,-83,46v-3,0,-7,-15,-7,-20v19,-14,43,-25,66,-43","w":237},"\u00db":{"d":"119,-32v74,0,55,-52,55,-127v0,-37,-1,-65,-1,-84v5,-8,29,0,42,-4v3,0,5,2,5,4r-3,162v2,75,-29,80,-101,85v-141,9,-81,-118,-98,-247v4,-8,36,-3,47,0r-2,161v1,40,13,50,56,50xm70,-264v13,-11,30,-41,42,-55v8,1,19,-3,22,3v4,17,26,38,38,52v-24,15,-22,10,-52,-20v-7,1,-25,43,-41,25v-6,-3,-9,-5,-9,-5","w":237},"\u00d9":{"d":"119,-32v74,0,55,-52,55,-127v0,-37,-1,-65,-1,-84v5,-8,29,0,42,-4v3,0,5,2,5,4r-3,162v2,75,-29,80,-101,85v-141,9,-81,-118,-98,-247v4,-8,36,-3,47,0r-2,161v1,40,13,50,56,50xm89,-315v11,10,92,35,64,63v-45,-17,-71,-33,-86,-44v1,-2,18,-19,22,-19","w":237},"\u0131":{"d":"16,-163v8,-7,30,2,43,-3v7,45,-4,102,1,162v-5,9,-26,2,-37,4v-10,-12,-2,-53,-3,-81","w":79},"\u02c6":{"d":"12,-200v13,-11,30,-41,42,-55v8,1,19,-3,22,3v4,17,26,38,38,52v-24,15,-22,10,-52,-20v-7,1,-25,43,-41,25v-6,-3,-9,-5,-9,-5"},"\u02dc":{"d":"82,-225v3,2,21,-17,25,-12v8,9,13,15,13,19v1,4,-32,22,-38,20v-12,2,-28,-12,-37,-12v-8,-3,-17,18,-23,10v-5,-6,-11,-9,-15,-16v3,-9,24,-21,35,-21v10,0,32,13,40,12"},"\u00af":{"d":"20,-233v29,5,77,-4,102,1v-5,6,4,33,-16,31v-31,-4,-63,1,-94,2v-4,0,-5,-2,-5,-5v-1,-3,9,-30,13,-29"},"\u02c9":{"d":"20,-233v29,5,77,-4,102,1v-5,6,4,33,-16,31v-31,-4,-63,1,-94,2v-4,0,-5,-2,-5,-5v-1,-3,9,-30,13,-29"},"\u02d8":{"d":"90,-234v1,-4,1,-12,9,-12v11,0,16,1,16,2v1,33,-21,57,-53,57v-33,0,-54,-23,-54,-57v3,-5,27,-1,23,1v2,32,49,43,59,9"},"\u02d9":{"d":"40,-246v37,-4,48,-1,43,43v-4,10,-28,3,-40,5v-10,-2,-7,-37,-3,-48"},"\u02da":{"d":"62,-258v23,0,42,20,42,42v0,23,-21,41,-42,41v-22,0,-42,-19,-42,-41v0,-22,19,-42,42,-42xm62,-194v10,0,21,-10,21,-22v0,-11,-9,-22,-21,-22v-12,0,-21,11,-21,22v0,12,10,22,21,22"},"\u00b8":{"d":"29,33v12,13,32,9,32,-9v0,-7,-2,-13,-8,-19v20,-1,29,0,35,15v2,37,-31,60,-66,46v-26,-10,5,-28,7,-33"},"\u02dd":{"d":"92,-245v2,2,18,-16,19,-15r23,16v-18,21,-61,38,-92,46v-3,0,-5,-3,-6,-9v-15,9,-25,17,-32,10v3,-6,-4,-16,3,-19v14,-5,40,-23,69,-42v3,0,13,14,16,13"},"\u02db":{"d":"103,42v-14,34,-87,26,-74,-21v12,-13,23,-24,49,-20v-15,10,-23,19,-23,28v0,28,35,-11,42,6v4,4,6,6,6,7"},"\u02c7":{"d":"12,-247v22,-16,23,-9,51,20v1,-1,7,-6,15,-17v13,-18,22,-10,35,-3v-14,11,-30,41,-42,55v-7,-1,-19,3,-21,-3v-6,-17,-26,-38,-38,-52"},"\u0141":{"d":"120,-166v7,12,10,32,4,35r-120,48v-6,-4,-6,-29,-1,-36xm66,-243r-3,168v0,26,1,39,3,39r114,-5v3,0,4,1,4,3v-2,20,3,35,-9,40r-151,-2v-3,0,-5,-1,-5,-4r3,-116r-4,-122v6,-10,26,0,44,-4v3,0,4,1,4,3","w":186},"\u0142":{"d":"96,-161v7,10,10,34,4,35r-102,40v-8,-2,-7,-29,-2,-36v65,-26,98,-39,100,-39xm29,-4r-3,-239v3,-9,28,1,42,-4v4,0,3,2,3,5v-2,44,-4,82,-4,113r2,125v-5,9,-26,2,-37,4v-2,0,-3,-1,-3,-4","w":79},"\u0160":{"d":"20,-177v-6,-71,93,-89,139,-52v-6,7,-10,25,-19,35v-26,-13,-78,-25,-78,16v-5,22,65,47,65,50v63,55,-15,158,-97,127r-9,-38v28,-3,91,2,84,-36v-8,-44,-92,-42,-85,-102xm44,-310v22,-16,23,-9,51,20v1,-1,7,-6,15,-17v13,-18,22,-10,35,-3v-14,11,-30,41,-42,55v-7,-1,-19,3,-21,-3v-6,-17,-26,-38,-38,-52","w":168},"\u0161":{"d":"45,-122v13,25,58,29,55,68v-2,37,-35,60,-79,56v-4,-6,-8,-29,-2,-35v22,3,48,-2,45,-20v-12,-28,-56,-28,-56,-66v0,-35,35,-60,69,-52v0,10,11,24,4,31v-14,2,-38,1,-36,18xm4,-236v22,-16,23,-9,51,20v1,-1,7,-6,15,-17v13,-18,22,-10,35,-3v-14,11,-30,41,-42,55v-7,-1,-19,3,-21,-3v-6,-17,-26,-38,-38,-52","w":107},"\u017d":{"d":"56,-38v48,6,83,-6,116,-2r-5,38v-36,8,-100,-1,-150,2v-13,-2,-8,-28,-10,-33r107,-174v-27,-6,-67,0,-98,-2v-10,-6,3,-26,2,-37v40,-3,95,2,143,0v9,4,5,18,7,30xm42,-308v22,-16,23,-9,51,20v1,-1,7,-6,15,-17v13,-18,22,-10,35,-3v-14,11,-30,41,-42,55v-7,-1,-19,3,-21,-3v-6,-17,-26,-38,-38,-52","w":181},"\u017e":{"d":"18,-130v-7,-7,2,-24,2,-34v19,-2,110,-5,122,4v0,52,1,25,-33,64r-55,63v42,0,73,-5,94,0v-5,16,2,41,-25,33v-33,-3,-81,-1,-110,2v-11,-3,-7,-20,-7,-32v17,-23,59,-61,89,-100r-77,0xm30,-232v22,-16,23,-9,51,20v1,-1,7,-6,15,-17v13,-18,22,-10,35,-3v-14,11,-30,41,-42,55v-7,-1,-19,3,-21,-3v-6,-17,-26,-38,-38,-52","w":151},"\u00a6":{"d":"58,-270v-1,48,5,103,0,147v-11,1,-23,6,-28,1r-2,-145v0,-4,6,-6,19,-6v7,0,11,1,11,3xm58,-88v-1,48,5,103,0,147v-11,1,-23,6,-28,1r-2,-145v0,-4,6,-6,19,-6v7,0,11,1,11,3","w":88},"\u00d0":{"d":"108,-106v-28,4,-75,0,-108,3v-12,-6,0,-15,5,-35v15,-6,40,-1,106,-4v11,4,-4,20,-3,36xm24,-247v119,-6,213,10,211,122v-1,74,-51,138,-134,124r-78,1v-3,0,-4,-1,-4,-4r3,-116r-3,-123v0,-2,2,-4,5,-4xm85,-35v72,8,104,-30,107,-90v3,-61,-53,-87,-107,-87v-34,0,-21,24,-21,48r0,121v0,5,7,7,21,8","w":244},"\u00f0":{"d":"160,-222v31,0,60,-16,45,18v0,4,-1,8,-2,13v-1,2,-34,3,-98,3v-8,-7,1,-17,6,-31v10,-5,26,-3,49,-3xm145,-247r39,-2v2,0,3,1,3,4r-4,135r3,108v-6,5,-27,0,-37,3r-4,-25v-46,60,-138,15,-138,-60v0,-73,87,-122,135,-64v8,-27,-4,-69,3,-99xm95,-31v28,0,48,-26,48,-54v0,-28,-21,-54,-48,-54v-28,0,-49,27,-49,54v0,29,23,54,49,54","w":200},"\u00dd":{"d":"160,-184r-3,-58v2,-12,28,1,44,-5v10,9,2,49,5,67v-4,26,-64,87,-78,120r2,57v-8,8,-32,1,-46,3v-13,-10,9,-59,-6,-74v-23,-36,-53,-64,-71,-104v-1,-15,-1,-36,-1,-64v0,-12,27,0,43,-5v11,4,-1,46,1,62v0,7,19,32,56,74v12,-13,52,-62,54,-73xm137,-315v8,4,15,11,24,17v2,7,-75,49,-83,46v-3,0,-7,-15,-7,-20v19,-14,43,-25,66,-43","w":211},"\u00de":{"d":"65,-220v82,-7,152,7,152,86v0,65,-44,97,-116,87v-12,3,-34,-7,-36,7v-2,15,13,47,-12,40v-11,-3,-32,5,-34,-5r3,-116r-4,-120v2,-13,28,-1,44,-6v9,4,2,9,3,27xm64,-105v-2,39,15,25,58,25v34,0,51,-17,51,-51v0,-58,-58,-62,-108,-51","w":224},"\u00fe":{"d":"63,-146v47,-59,134,-10,134,61v0,72,-89,124,-134,61v-1,1,-1,26,-1,73v-5,12,-40,7,-40,1r-4,-293v4,-11,27,-4,44,-8v8,24,-5,70,1,105xm110,-31v25,0,46,-28,46,-54v0,-28,-21,-54,-48,-54v-26,0,-45,27,-45,54v0,28,20,54,47,54","w":206},"\u00ad":{"d":"8,-123v34,-2,94,-1,130,1r-5,33r-124,0v-8,-1,2,-22,-1,-34","w":145},"\u2212":{"d":"8,-123v34,-2,94,-1,130,1r-5,33r-124,0v-8,-1,2,-22,-1,-34","w":145},"\u00b9":{"d":"7,-192v11,-6,25,-15,34,-25v9,0,23,0,31,6v-7,37,-2,90,-3,137v-3,7,-33,7,-40,2v-1,-32,6,-71,1,-100v-7,1,-16,5,-23,3r0,-23","w":86},"\u00b2":{"d":"5,-197v26,-25,117,-31,117,23v0,26,-20,51,-59,74v20,1,39,0,65,-3v4,6,-1,20,2,34v-29,5,-75,-3,-115,1v-8,-2,-10,-24,-4,-31v34,-8,73,-43,70,-66v-4,-31,-58,-10,-70,-1","w":137},"\u00b3":{"d":"13,-204v25,-21,107,-14,107,26v0,16,-6,27,-18,32v44,24,16,87,-38,80v-19,-3,-43,-2,-57,-13v5,-3,2,-26,11,-25v24,10,64,19,68,-10v4,-24,-42,-17,-62,-22v-4,-39,15,-21,39,-21v10,0,15,-5,15,-14v0,-23,-48,-17,-62,-9v-2,-5,-3,-12,-3,-24","w":136},"\u00bd":{"d":"7,-192v11,-6,25,-15,34,-25v9,0,23,0,31,6v-7,37,-2,90,-3,137v-3,7,-33,7,-40,2v-1,-32,6,-71,1,-100v-7,1,-16,5,-23,3r0,-23xm159,-223v2,1,29,15,22,22r-59,103r-60,112v-6,-4,-23,-18,-24,-20xm133,-129v26,-25,117,-31,117,23v0,26,-20,51,-59,74v20,1,39,0,65,-3v4,6,-1,20,2,34v-29,5,-75,-3,-115,1v-8,-2,-10,-24,-4,-31v34,-8,73,-43,70,-66v-4,-31,-58,-10,-70,-1","w":281},"\u00bc":{"d":"7,-192v11,-6,25,-15,34,-25v9,0,23,0,31,6v-7,37,-2,90,-3,137v-3,7,-33,7,-40,2v-1,-32,6,-71,1,-100v-7,1,-16,5,-23,3r0,-23xm166,-223v2,1,29,15,22,22r-59,103r-60,112v-6,-4,-23,-18,-24,-20xm197,-146v13,-5,50,-2,41,27r-2,64v19,-6,23,5,20,27v0,1,-5,2,-15,2v-14,6,14,37,-24,29v-36,5,-14,-13,-21,-29r-61,1v-8,1,-9,-9,-8,-18v0,-8,1,-13,2,-15v23,-25,47,-58,68,-88xm199,-55v1,-19,5,-38,3,-57v-3,7,-33,42,-43,56v6,4,34,2,40,1","w":281},"\u00be":{"d":"204,-223v2,1,29,15,22,22r-59,103r-60,112v-6,-4,-23,-18,-24,-20xm215,-146v13,-5,50,-2,41,27r-2,64v19,-6,23,5,20,27v0,1,-5,2,-15,2v-14,6,14,37,-24,29v-36,5,-14,-13,-21,-29r-61,1v-8,1,-9,-9,-8,-18v0,-8,1,-13,2,-15v23,-25,47,-58,68,-88xm217,-55v1,-19,5,-38,3,-57v-3,7,-33,42,-43,56v6,4,34,2,40,1xm5,-204v25,-21,107,-14,107,26v0,16,-6,27,-18,32v44,24,16,87,-38,80v-19,-3,-43,-2,-57,-13v5,-3,2,-26,11,-25v24,10,64,19,68,-10v4,-24,-42,-17,-62,-22v-4,-39,15,-21,39,-21v10,0,15,-5,15,-14v0,-23,-48,-17,-62,-9v-2,-5,-3,-12,-3,-24","w":281},"\u00fd":{"d":"126,-129v1,-17,-12,-40,18,-35v28,-5,21,0,22,42v2,65,-4,37,-45,105v-25,42,-44,63,-49,68v-3,4,-31,8,-52,5v-1,-11,-22,-31,-1,-31v29,0,39,-13,45,-31v2,-5,-58,-76,-55,-80v-4,-11,-4,-58,-2,-75v1,-10,27,-1,37,-3v7,3,0,21,2,33v-10,41,29,76,43,92v11,-17,47,-51,37,-90xm114,-248v8,4,15,11,24,17v2,7,-75,49,-83,46v-3,0,-7,-15,-7,-20v19,-14,43,-25,66,-43","w":171},"\u00d7":{"d":"110,-164v6,1,27,17,17,27r-33,33v12,13,27,23,36,39v-1,6,-16,28,-26,18r-34,-34v-13,12,-22,27,-38,36v-8,0,-28,-16,-18,-26r33,-33v-12,-13,-27,-23,-36,-39v1,-6,16,-28,26,-18r33,34v14,-12,25,-27,40,-37","w":145},"\u2074":{"d":"77,-216v13,-5,50,-2,41,27r-2,64v19,-6,23,5,20,27v0,1,-5,2,-15,2v-14,6,14,37,-24,29v-36,5,-14,-13,-21,-29r-61,1v-8,1,-9,-9,-8,-18v0,-8,1,-13,2,-15v23,-25,47,-58,68,-88xm79,-125v1,-19,5,-38,3,-57v-3,7,-33,42,-43,56v6,4,34,2,40,1","w":143},"\u20ac":{"d":"137,-31v20,-7,18,9,17,30v-1,8,-10,7,-19,7v-49,0,-88,-31,-100,-71v-8,-1,-20,3,-24,-2v1,-21,-4,-31,18,-28v-1,-7,-1,-15,0,-22v-6,-1,-18,3,-18,-4v0,-14,-3,-26,6,-28r19,0v13,-40,64,-79,116,-64v-2,11,4,29,-3,35v-35,-7,-54,6,-71,30v22,2,52,-5,68,2v-1,10,1,22,-4,29r-73,-1r-1,24r75,-1v7,1,2,17,-1,31v-20,-4,-45,-1,-65,-2v12,24,32,35,60,35","w":166}}});/* --------- /javascripts/application.js --------- */ 

$(document).ready(function(){$("#stats").load("/stats.htm");});Cufon.replace('h1');Cufon.replace('h2');Cufon.replace('h3');
