/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();;
// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;

$(document).ready(function() {

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

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

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

/**
 * @file
 * Enables and disables expiration fields to prevent invalid configurations.
 */

/**
 * Disables duration amount when its type is "never".
 */
function _uc_role_expiration_disable_check(granularity, quantity) {
  // 'never' means there's no point in setting a duration.
  if ($(granularity).val() == 'never') {
    $(quantity).attr('disabled', 'disabled').val('');
  }
  // Anything besides 'never' should enable setting a duration.
  else {
    $(quantity).removeAttr('disabled');
  }
}

/**
 * Switch between relative and absolute expiration durations.
 */
function expiration_switcher() {
  if ($('#edit-expiration').val() == 'abs') {
    $("#edit-uc-roles-expire-relative-duration-wrapper").hide();
    $("#edit-uc-roles-expire-relative-granularity-wrapper").hide();
    $("#edit-uc-roles-by-quantity-wrapper").hide();
    $("#edit-uc-roles-expire-absolute-wrapper").show();
  }
  else {
    $("#edit-uc-roles-expire-absolute-wrapper").hide();
    $("#edit-uc-roles-expire-relative-duration-wrapper").show();
    $("#edit-uc-roles-expire-relative-granularity-wrapper").show();
    $("#edit-uc-roles-by-quantity-wrapper").show();
  }
}

/**
 * Set the default state for expiration duration.
 */
function expiration_switcher_default() {
  if ($('#edit-uc-roles-default-end-expiration').val() == 'abs') {
    $("#edit-uc-roles-default-length-wrapper").attr('style', 'display:none;');
    $("#edit-uc-roles-default-granularity-wrapper").attr('style', 'display:none;');
    $("#edit-uc-roles-default-by-quantity-wrapper").attr('style', 'display:none;');
    $("#edit-uc-roles-default-end-time-wrapper").removeAttr('style');
  }
  else {
    $("#edit-uc-roles-default-length-wrapper").removeAttr('style');
    $("#edit-uc-roles-default-granularity-wrapper").removeAttr('style');
    $("#edit-uc-roles-default-by-quantity-wrapper").removeAttr('style');
    $("#edit-uc-roles-default-end-time-wrapper").attr('style', 'display:none;');
  }
}

/**
 * Override the expiration duration default state.
 */
function uc_roles_expiration_default_override() {
  if ($('#edit-end-override').length == 0) {
    return;
  }

  if ($('#edit-end-override').attr('checked')) {
    $('#edit-expiration-wrapper').removeAttr('style');
    $('#edit-uc-roles-expire-absolute-wrapper').removeAttr('style');
    $('#edit-uc-roles-expire-relative-duration-wrapper').removeAttr('style');
    $('#edit-uc-roles-expire-relative-granularity-wrapper').removeAttr('style');
    $('#edit-uc-roles-by-quantity-wrapper').removeAttr('style');
    expiration_switcher();
  }
  else {
    $('#edit-expiration-wrapper').attr('style', 'display:none;');
    $('#edit-uc-roles-expire-relative-duration-wrapper').attr('style', 'display:none;');
    $('#edit-uc-roles-expire-relative-granularity-wrapper').attr('style', 'display:none;');
    $('#edit-uc-roles-by-quantity-wrapper').attr('style', 'display:none;');
    $('#edit-uc-roles-expire-absolute-wrapper').attr('style', 'display:none;');
  }
}

$(document).ready(
  function() {
    _uc_role_expiration_disable_check('#edit-uc-roles-expire-relative-granularity', '#edit-uc-roles-expire-relative-duration');
    _uc_role_expiration_disable_check('#edit-uc-roles-default-granularity', '#edit-uc-roles-default-length');
    _uc_role_expiration_disable_check('#edit-uc-roles-reminder-granularity', '#edit-uc-roles-reminder-length');
    uc_roles_expiration_default_override();
    expiration_switcher_default();
  }
);

// When you change the role expiration time select.
Drupal.behaviors.ucRoleExpirationTime = function(context) {
  $("#edit-expiration:not(.ucRoleExpirationTime-processed)", context).addClass('ucRoleExpirationTime-processed').change(
    function() {
      expiration_switcher();
    }
  );
}

// When you change the default role expiration time select.
Drupal.behaviors.ucRoleDefaultExpirationTimeDefault = function(context) {
  $("#edit-uc-roles-default-end-expiration:not(.ucRoleDefaultExpirationTimeDefault-processed)", context).addClass('ucRoleDefaultExpirationTimeDefault-processed').change(
    function() {
      expiration_switcher_default();
    }
  );
}

// When you change the role expiration time select.
Drupal.behaviors.ucRoleExpirationTimeDefault = function(context) {
  $("#edit-uc-roles-end-expiration:not(.ucRoleExpirationTimeDefault-processed)", context).addClass('ucRoleExpirationTimeDefault-processed').change(
    function() {
      expiration_switcher_default();
    }
  );
}

// When you change the role expiration granularity select.
Drupal.behaviors.ucRoleExpirationGranularity = function(context) {
  $('#edit-uc-roles-expire-relative-granularity:not(.ucRoleExpirationGranularity-processed)', context).addClass('ucRoleExpirationGranularity-processed').change(
    function() {
      _uc_role_expiration_disable_check('#edit-uc-roles-expire-relative-granularity', '#edit-uc-roles-expire-relative-duration');
    }
  );
}

// When you change the default role expiration granularity select.
Drupal.behaviors.ucRoleDefaultExpirationGranularity = function(context) {
  $('#edit-uc-roles-default-granularity:not(.ucRoleDefaultExpirationGranularity-processed)', context).addClass('ucRoleDefaultExpirationGranularity-processed').change(
    function() {
      _uc_role_expiration_disable_check('#edit-uc-roles-default-granularity', '#edit-uc-roles-default-length');
    }
  );
}

// When you change the default role expiration granularity select.
Drupal.behaviors.ucRoleReminderExpirationGranularity = function(context) {
  $('#edit-uc-roles-reminder-granularity:not(.ucRoleReminderExpirationGranularity-processed)', context).addClass('ucRoleReminderExpirationGranularity-processed').change(
    function() {
      _uc_role_expiration_disable_check('#edit-uc-roles-reminder-granularity', '#edit-uc-roles-reminder-length');
    }
  );
}

// When you change the default role expiration granularity select.
Drupal.behaviors.ucRoleExpirationEndOverride = function(context) {
  $('#edit-end-override:not(.ucRoleExpirationEndOverride-processed)', context).addClass('ucRoleExpirationEndOverride-processed').click(
    function() {
      uc_roles_expiration_default_override();
    }
  );
}

;
/*!
 * jQuery corner plugin: simple corner rounding
 * Examples and documentation at: http://jquery.malsup.com/corner/
 * version 1.95 (02/26/2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */

/**
 *  corner() takes a single string argument:  $('#myDiv').corner("effect corners width")
 *
 *  effect:  name of the effect to apply, such as round, bevel, notch, bite, etc (default is round). 
 *  corners: one or more of: top, bottom, tr, tl, br, or bl. 
 *           by default, all four corners are adorned. 
 *  width:   width of the effect; in the case of rounded corners this is the radius. 
 *           specify this value using the px suffix such as 10px (and yes, it must be pixels).
 *
 * @name corner
 * @type jQuery
 * @param String options Options which control the corner style
 * @cat Plugins/Corner
 * @return jQuery
 * @author Dave Methvin (http://methvin.com/jquery/jq-corner.html)
 * @author Mike Alsup   (http://jquery.malsup.com/corner/)
 */
;(function($) { 

var expr = (function() {
    var div = document.createElement('div');
    try { div.style.setExpression('width','0+0'); }
    catch(e) { return false; }
    return true;
})();
    
function sz(el, p) { 
    return parseInt($.css(el,p))||0; 
};
function hex2(s) {
    var s = parseInt(s).toString(16);
    return ( s.length < 2 ) ? '0'+s : s;
};
function gpc(node) {
    for ( ; node && node.nodeName.toLowerCase() != 'html'; node = node.parentNode ) {
        var v = $.css(node,'backgroundColor');
        if ( v.indexOf('rgb') >= 0 ) { 
            if ($.browser.safari && v == 'rgba(0, 0, 0, 0)')
                continue;
            var rgb = v.match(/\d+/g); 
            return '#'+ hex2(rgb[0]) + hex2(rgb[1]) + hex2(rgb[2]);
        }
        if ( v && v != 'transparent' )
            return v;
    }
    return '#ffffff';
};

function getWidth(fx, i, width) {
    switch(fx) {
    case 'round':  return Math.round(width*(1-Math.cos(Math.asin(i/width))));
    case 'cool':   return Math.round(width*(1+Math.cos(Math.asin(i/width))));
    case 'sharp':  return Math.round(width*(1-Math.cos(Math.acos(i/width))));
    case 'bite':   return Math.round(width*(Math.cos(Math.asin((width-i-1)/width))));
    case 'slide':  return Math.round(width*(Math.atan2(i,width/i)));
    case 'jut':    return Math.round(width*(Math.atan2(width,(width-i-1))));
    case 'curl':   return Math.round(width*(Math.atan(i)));
    case 'tear':   return Math.round(width*(Math.cos(i)));
    case 'wicked': return Math.round(width*(Math.tan(i)));
    case 'long':   return Math.round(width*(Math.sqrt(i)));
    case 'sculpt': return Math.round(width*(Math.log((width-i-1),width)));
    case 'dog':    return (i&1) ? (i+1) : width;
    case 'dog2':   return (i&2) ? (i+1) : width;
    case 'dog3':   return (i&3) ? (i+1) : width;
    case 'fray':   return (i%2)*width;
    case 'notch':  return width; 
    case 'bevel':  return i+1;
    }
};

$.fn.corner = function(o) {
    // in 1.3+ we can fix mistakes with the ready state
	if (this.length == 0) {
        if (!$.isReady && this.selector) {
            var s = this.selector, c = this.context;
            $(function() {
                $(s,c).corner(o);
            });
        }
        return this;
	}

    o = (o||"").toLowerCase();
    var keep = /keep/.test(o);                       // keep borders?
    var cc = ((o.match(/cc:(#[0-9a-f]+)/)||[])[1]);  // corner color
    var sc = ((o.match(/sc:(#[0-9a-f]+)/)||[])[1]);  // strip color
    var width = parseInt((o.match(/(\d+)px/)||[])[1]) || 10; // corner width
    var re = /round|bevel|notch|bite|cool|sharp|slide|jut|curl|tear|fray|wicked|sculpt|long|dog3|dog2|dog/;
    var fx = ((o.match(re)||['round'])[0]);
    var edges = { T:0, B:1 };
    var opts = {
        TL:  /top|tl/.test(o),       TR:  /top|tr/.test(o),
        BL:  /bottom|bl/.test(o),    BR:  /bottom|br/.test(o)
    };
    if ( !opts.TL && !opts.TR && !opts.BL && !opts.BR )
        opts = { TL:1, TR:1, BL:1, BR:1 };
    var strip = document.createElement('div');
    strip.style.overflow = 'hidden';
    strip.style.height = '1px';
    strip.style.backgroundColor = sc || 'transparent';
    strip.style.borderStyle = 'solid';
    return this.each(function(index){
        var pad = {
            T: parseInt($.css(this,'paddingTop'))||0,     R: parseInt($.css(this,'paddingRight'))||0,
            B: parseInt($.css(this,'paddingBottom'))||0,  L: parseInt($.css(this,'paddingLeft'))||0
        };

        if (typeof this.style.zoom != undefined) this.style.zoom = 1; // force 'hasLayout' in IE
        if (!keep) this.style.border = 'none';
        strip.style.borderColor = cc || gpc(this.parentNode);
        var cssHeight = $.curCSS(this, 'height');

        for (var j in edges) {
            var bot = edges[j];
            // only add stips if needed
            if ((bot && (opts.BL || opts.BR)) || (!bot && (opts.TL || opts.TR))) {
                strip.style.borderStyle = 'none '+(opts[j+'R']?'solid':'none')+' none '+(opts[j+'L']?'solid':'none');
                var d = document.createElement('div');
                $(d).addClass('jquery-corner');
                var ds = d.style;

                bot ? this.appendChild(d) : this.insertBefore(d, this.firstChild);

                if (bot && cssHeight != 'auto') {
                    if ($.css(this,'position') == 'static')
                        this.style.position = 'relative';
                    ds.position = 'absolute';
                    ds.bottom = ds.left = ds.padding = ds.margin = '0';
                    if (expr)
                        ds.setExpression('width', 'this.parentNode.offsetWidth');
                    else
                        ds.width = '100%';
                }
                else if (!bot && $.browser.msie) {
                    if ($.css(this,'position') == 'static')
                        this.style.position = 'relative';
                    ds.position = 'absolute';
                    ds.top = ds.left = ds.right = ds.padding = ds.margin = '0';
                    
                    // fix ie6 problem when blocked element has a border width
                    if (expr) {
                        var bw = sz(this,'borderLeftWidth') + sz(this,'borderRightWidth');
                        ds.setExpression('width', 'this.parentNode.offsetWidth - '+bw+'+ "px"');
                    }
                    else
                        ds.width = '100%';
                }
                else {
                    ds.margin = !bot ? '-'+pad.T+'px -'+pad.R+'px '+(pad.T-width)+'px -'+pad.L+'px' : 
                                        (pad.B-width)+'px -'+pad.R+'px -'+pad.B+'px -'+pad.L+'px';                
                }

                for (var i=0; i < width; i++) {
                    var w = Math.max(0,getWidth(fx,i, width));
                    var e = strip.cloneNode(false);
                    e.style.borderWidth = '0 '+(opts[j+'R']?w:0)+'px 0 '+(opts[j+'L']?w:0)+'px';
                    bot ? d.appendChild(e) : d.insertBefore(e, d.firstChild);
                }
            }
        }
    });
};

$.fn.uncorner = function() { return $('.jquery-corner', this).remove(); };
    
})(jQuery);
;
/*
 * Thickbox 3 - One Box To Rule Them All.
 * By Cody Lindley (http://www.codylindley.com)
 * Copyright (c) 2007 cody lindley
 * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
*/

var tb_pathToImage = "images/loadingAnimation.gif";

eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('$(o).2S(9(){1u(\'a.18, 3n.18, 3i.18\');1w=1p 1t();1w.L=2H});9 1u(b){$(b).s(9(){6 t=X.Q||X.1v||M;6 a=X.u||X.23;6 g=X.1N||P;19(t,a,g);X.2E();H P})}9 19(d,f,g){3m{3(2t o.v.J.2i==="2g"){$("v","11").r({A:"28%",z:"28%"});$("11").r("22","2Z");3(o.1Y("1F")===M){$("v").q("<U 5=\'1F\'></U><4 5=\'B\'></4><4 5=\'8\'></4>");$("#B").s(G)}}n{3(o.1Y("B")===M){$("v").q("<4 5=\'B\'></4><4 5=\'8\'></4>");$("#B").s(G)}}3(1K()){$("#B").1J("2B")}n{$("#B").1J("2z")}3(d===M){d=""}$("v").q("<4 5=\'K\'><1I L=\'"+1w.L+"\' /></4>");$(\'#K\').2y();6 h;3(f.O("?")!==-1){h=f.3l(0,f.O("?"))}n{h=f}6 i=/\\.2s$|\\.2q$|\\.2m$|\\.2l$|\\.2k$/;6 j=h.1C().2h(i);3(j==\'.2s\'||j==\'.2q\'||j==\'.2m\'||j==\'.2l\'||j==\'.2k\'){1D="";1G="";14="";1z="";1x="";R="";1n="";1r=P;3(g){E=$("a[@1N="+g+"]").36();25(D=0;((D<E.1c)&&(R===""));D++){6 k=E[D].u.1C().2h(i);3(!(E[D].u==f)){3(1r){1z=E[D].Q;1x=E[D].u;R="<1e 5=\'1X\'>&1d;&1d;<a u=\'#\'>2T &2R;</a></1e>"}n{1D=E[D].Q;1G=E[D].u;14="<1e 5=\'1U\'>&1d;&1d;<a u=\'#\'>&2O; 2N</a></1e>"}}n{1r=1b;1n="1t "+(D+1)+" 2L "+(E.1c)}}}S=1p 1t();S.1g=9(){S.1g=M;6 a=2x();6 x=a[0]-1M;6 y=a[1]-1M;6 b=S.z;6 c=S.A;3(b>x){c=c*(x/b);b=x;3(c>y){b=b*(y/c);c=y}}n 3(c>y){b=b*(y/c);c=y;3(b>x){c=c*(x/b);b=x}}13=b+30;1a=c+2G;$("#8").q("<a u=\'\' 5=\'1L\' Q=\'1o\'><1I 5=\'2F\' L=\'"+f+"\' z=\'"+b+"\' A=\'"+c+"\' 23=\'"+d+"\'/></a>"+"<4 5=\'2D\'>"+d+"<4 5=\'2C\'>"+1n+14+R+"</4></4><4 5=\'2A\'><a u=\'#\' 5=\'Z\' Q=\'1o\'>1l</a> 1k 1j 1s</4>");$("#Z").s(G);3(!(14==="")){9 12(){3($(o).N("s",12)){$(o).N("s",12)}$("#8").C();$("v").q("<4 5=\'8\'></4>");19(1D,1G,g);H P}$("#1U").s(12)}3(!(R==="")){9 1i(){$("#8").C();$("v").q("<4 5=\'8\'></4>");19(1z,1x,g);H P}$("#1X").s(1i)}o.1h=9(e){3(e==M){I=2w.2v}n{I=e.2u}3(I==27){G()}n 3(I==3k){3(!(R=="")){o.1h="";1i()}}n 3(I==3j){3(!(14=="")){o.1h="";12()}}};16();$("#K").C();$("#1L").s(G);$("#8").r({Y:"T"})};S.L=f}n{6 l=f.2r(/^[^\\?]+\\??/,\'\');6 m=2p(l);13=(m[\'z\']*1)+30||3h;1a=(m[\'A\']*1)+3g||3f;W=13-30;V=1a-3e;3(f.O(\'2j\')!=-1){1E=f.1B(\'3d\');$("#15").C();3(m[\'1A\']!="1b"){$("#8").q("<4 5=\'2f\'><4 5=\'1H\'>"+d+"</4><4 5=\'2e\'><a u=\'#\' 5=\'Z\' Q=\'1o\'>1l</a> 1k 1j 1s</4></4><U 1W=\'0\' 2d=\'0\' L=\'"+1E[0]+"\' 5=\'15\' 1v=\'15"+1f.2c(1f.1y()*2b)+"\' 1g=\'1m()\' J=\'z:"+(W+29)+"p;A:"+(V+17)+"p;\' > </U>")}n{$("#B").N();$("#8").q("<U 1W=\'0\' 2d=\'0\' L=\'"+1E[0]+"\' 5=\'15\' 1v=\'15"+1f.2c(1f.1y()*2b)+"\' 1g=\'1m()\' J=\'z:"+(W+29)+"p;A:"+(V+17)+"p;\'> </U>")}}n{3($("#8").r("Y")!="T"){3(m[\'1A\']!="1b"){$("#8").q("<4 5=\'2f\'><4 5=\'1H\'>"+d+"</4><4 5=\'2e\'><a u=\'#\' 5=\'Z\'>1l</a> 1k 1j 1s</4></4><4 5=\'F\' J=\'z:"+W+"p;A:"+V+"p\'></4>")}n{$("#B").N();$("#8").q("<4 5=\'F\' 3c=\'3b\' J=\'z:"+W+"p;A:"+V+"p;\'></4>")}}n{$("#F")[0].J.z=W+"p";$("#F")[0].J.A=V+"p";$("#F")[0].3a=0;$("#1H").11(d)}}$("#Z").s(G);3(f.O(\'37\')!=-1){$("#F").q($(\'#\'+m[\'26\']).1T());$("#8").24(9(){$(\'#\'+m[\'26\']).q($("#F").1T())});16();$("#K").C();$("#8").r({Y:"T"})}n 3(f.O(\'2j\')!=-1){16();3($.1q.35){$("#K").C();$("#8").r({Y:"T"})}}n{$("#F").34(f+="&1y="+(1p 33().32()),9(){16();$("#K").C();1u("#F a.18");$("#8").r({Y:"T"})})}}3(!m[\'1A\']){o.21=9(e){3(e==M){I=2w.2v}n{I=e.2u}3(I==27){G()}}}}31(e){}}9 1m(){$("#K").C();$("#8").r({Y:"T"})}9 G(){$("#2Y").N("s");$("#Z").N("s");$("#8").2X("2W",9(){$(\'#8,#B,#1F\').2V("24").N().C()});$("#K").C();3(2t o.v.J.2i=="2g"){$("v","11").r({A:"1Z",z:"1Z"});$("11").r("22","")}o.1h="";o.21="";H P}9 16(){$("#8").r({2U:\'-\'+20((13/2),10)+\'p\',z:13+\'p\'});3(!(1V.1q.2Q&&1V.1q.2P<7)){$("#8").r({38:\'-\'+20((1a/2),10)+\'p\'})}}9 2p(a){6 b={};3(!a){H b}6 c=a.1B(/[;&]/);25(6 i=0;i<c.1c;i++){6 d=c[i].1B(\'=\');3(!d||d.1c!=2){39}6 e=2a(d[0]);6 f=2a(d[1]);f=f.2r(/\\+/g,\' \');b[e]=f}H b}9 2x(){6 a=o.2M;6 w=1S.2o||1R.2o||(a&&a.1Q)||o.v.1Q;6 h=1S.1P||1R.1P||(a&&a.2n)||o.v.2n;1O=[w,h];H 1O}9 1K(){6 a=2K.2J.1C();3(a.O(\'2I\')!=-1&&a.O(\'3o\')!=-1){H 1b}}',62,211,'|||if|div|id|var||TB_window|function||||||||||||||else|document|px|append|css|click||href|body||||width|height|TB_overlay|remove|TB_Counter|TB_TempArray|TB_ajaxContent|tb_remove|return|keycode|style|TB_load|src|null|unbind|indexOf|false|title|TB_NextHTML|imgPreloader|block|iframe|ajaxContentH|ajaxContentW|this|display|TB_closeWindowButton||html|goPrev|TB_WIDTH|TB_PrevHTML|TB_iframeContent|tb_position||thickbox|tb_show|TB_HEIGHT|true|length|nbsp|span|Math|onload|onkeydown|goNext|Esc|or|close|tb_showIframe|TB_imageCount|Close|new|browser|TB_FoundURL|Key|Image|tb_init|name|imgLoader|TB_NextURL|random|TB_NextCaption|modal|split|toLowerCase|TB_PrevCaption|urlNoQuery|TB_HideSelect|TB_PrevURL|TB_ajaxWindowTitle|img|addClass|tb_detectMacXFF|TB_ImageOff|150|rel|arrayPageSize|innerHeight|clientWidth|self|window|children|TB_prev|jQuery|frameborder|TB_next|getElementById|auto|parseInt|onkeyup|overflow|alt|unload|for|inlineId||100||unescape|1000|round|hspace|TB_closeAjaxWindow|TB_title|undefined|match|maxHeight|TB_iframe|bmp|gif|png|clientHeight|innerWidth|tb_parseQuery|jpeg|replace|jpg|typeof|which|keyCode|event|tb_getPageSize|show|TB_overlayBG|TB_closeWindow|TB_overlayMacFFBGHack|TB_secondLine|TB_caption|blur|TB_Image|60|tb_pathToImage|mac|userAgent|navigator|of|documentElement|Prev|lt|version|msie|gt|ready|Next|marginLeft|trigger|fast|fadeOut|TB_imageOff|hidden||catch|getTime|Date|load|safari|get|TB_inline|marginTop|continue|scrollTop|TB_modal|class|TB_|45|440|40|630|input|188|190|substr|try|area|firefox'.split('|'),0,{}));
/*
 * jqModal - Minimalist Modaling with jQuery
 *   (http://dev.iceburg.net/jquery/jqModal/)
 *
 * Copyright (c) 2007,2008 Brice Burgess <bhb@iceburg.net>
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 * 
 * $Version: 03/01/2009 +r14
 */
(function($) {
$.fn.jqm=function(o){
var p={
overlay: 50,
overlayClass: 'jqmOverlay',
closeClass: 'jqmClose',
trigger: '.jqModal',
ajax: F,
ajaxText: '',
target: F,
modal: F,
toTop: F,
onShow: F,
onHide: F,
onLoad: F
};
return this.each(function(){if(this._jqm)return H[this._jqm].c=$.extend({},H[this._jqm].c,o);s++;this._jqm=s;
H[s]={c:$.extend(p,$.jqm.params,o),a:F,w:$(this).addClass('jqmID'+s),s:s};
if(p.trigger)$(this).jqmAddTrigger(p.trigger);
});};

$.fn.jqmAddClose=function(e){return hs(this,e,'jqmHide');};
$.fn.jqmAddTrigger=function(e){return hs(this,e,'jqmShow');};
$.fn.jqmShow=function(t){return this.each(function(){t=t||window.event;$.jqm.open(this._jqm,t);});};
$.fn.jqmHide=function(t){return this.each(function(){t=t||window.event;$.jqm.close(this._jqm,t)});};

$.jqm = {
hash:{},
open:function(s,t){var h=H[s],c=h.c,cc='.'+c.closeClass,z=(parseInt(h.w.css('z-index'))),z=(z>0)?z:3000,o=$('<div></div>').css({height:'100%',width:'100%',position:'fixed',left:0,top:0,'z-index':z-1,opacity:c.overlay/100});if(h.a)return F;h.t=t;h.a=true;h.w.css('z-index',z);
 if(c.modal) {if(!A[0])L('bind');A.push(s);}
 else if(c.overlay > 0)h.w.jqmAddClose(o);
 else o=F;

 h.o=(o)?o.addClass(c.overlayClass).prependTo('body'):F;
 if(ie6){$('html,body').css({height:'100%',width:'100%'});if(o){o=o.css({position:'absolute'})[0];for(var y in {Top:1,Left:1})o.style.setExpression(y.toLowerCase(),"(_=(document.documentElement.scroll"+y+" || document.body.scroll"+y+"))+'px'");}}

 if(c.ajax) {var r=c.target||h.w,u=c.ajax,r=(typeof r == 'string')?$(r,h.w):$(r),u=(u.substr(0,1) == '@')?$(t).attr(u.substring(1)):u;
  r.html(c.ajaxText).load(u,function(){if(c.onLoad)c.onLoad.call(this,h);if(cc)h.w.jqmAddClose($(cc,h.w));e(h);});}
 else if(cc)h.w.jqmAddClose($(cc,h.w));

 if(c.toTop&&h.o)h.w.before('<span id="jqmP'+h.w[0]._jqm+'"></span>').insertAfter(h.o);	
 (c.onShow)?c.onShow(h):h.w.show();e(h);return F;
},
close:function(s){var h=H[s];if(!h.a)return F;h.a=F;
 if(A[0]){A.pop();if(!A[0])L('unbind');}
 if(h.c.toTop&&h.o)$('#jqmP'+h.w[0]._jqm).after(h.w).remove();
 if(h.c.onHide)h.c.onHide(h);else{h.w.hide();if(h.o)h.o.remove();} return F;
},
params:{}};
var s=0,H=$.jqm.hash,A=[],ie6=$.browser.msie&&($.browser.version == "6.0"),F=false,
i=$('<iframe src="javascript:false;document.write(\'\');" class="jqm"></iframe>').css({opacity:0}),
e=function(h){if(ie6)if(h.o)h.o.html('<p style="width:100%;height:100%"/>').prepend(i);else if(!$('iframe.jqm',h.w)[0])h.w.prepend(i); f(h);},
f=function(h){try{$(':input:visible',h.w)[0].focus();}catch(_){}},
L=function(t){$()[t]("keypress",m)[t]("keydown",m)[t]("mousedown",m);},
m=function(e){var h=H[A[A.length-1]],r=(!$(e.target).parents('.jqmID'+h.s)[0]);if(r)f(h);return !r;},
hs=function(w,t,c){return w.each(function(){var s=this._jqm;$(t).each(function() {
 if(!this[c]){this[c]=[];$(this).click(function(){for(var i in {jqmShow:1,jqmHide:1})for(var s in this[i])if(H[this[i][s]])H[this[i][s]].w[i](this);return F;});}this[c].push(s);});});};
})(jQuery);;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
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}})());;
Cufon.registerFont({"w":180,"face":{"font-family":"Adobe Garamond Pro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 2 5 2 6 5 6 2 4 3","ascent":"261","descent":"-99","x-height":"5","cap-height":"1","bbox":"-14 -270 357.925 97","underline-thickness":"18","underline-position":"-18","stemh":"14","stemv":"27","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":90,"k":{"W":5,"V":5,"d":29,"b":25,"i":4,"f":29,"A":36,"X":29,"-":4}},"!":{"d":"40,5v-11,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v12,0,20,10,20,21v0,12,-8,20,-20,20xm40,-233v26,0,18,12,15,43r-11,116v-2,2,-7,2,-9,0r-13,-148v0,-9,6,-11,18,-11","w":79},"\"":{"d":"44,-252v17,0,16,6,14,23r-10,58v-3,3,-6,3,-8,0r-12,-72v0,-8,6,-9,16,-9xm102,-252v18,0,16,6,13,23r-9,58v-3,3,-6,3,-9,0r-11,-72v0,-8,5,-9,16,-9","w":145},"#":{"d":"120,-145r-42,0r-16,58r43,0xm172,-145r-37,0r-15,58r35,0r-5,18r-36,0r-18,68r-14,0r18,-68r-43,0r-18,68r-14,0r18,-68r-40,0r6,-18r39,0r15,-58r-40,0r6,-18r39,0r16,-62r16,0r-17,62r42,0r16,-62r16,0r-17,62r37,0"},"$":{"d":"90,-138r10,-82v-66,5,-47,66,-10,82xm98,-103r-11,92v24,0,47,-10,47,-39v0,-16,-4,-35,-36,-53xm117,-258r-4,28v12,0,23,2,36,5v4,8,8,28,8,41v-1,3,-6,3,-8,1v-4,-11,-12,-30,-37,-36r-10,87v28,14,59,33,58,70v0,36,-29,62,-75,62r-4,34v-3,2,-9,2,-12,0r5,-35v-50,-4,-51,-11,-54,-58v1,-3,5,-4,8,-1v4,15,17,41,47,48r12,-96v-26,-11,-54,-31,-54,-65v0,-31,25,-56,69,-57v2,-11,-2,-37,15,-28"},"%":{"d":"288,-65v0,29,-17,70,-55,70v-39,0,-56,-41,-56,-70v0,-29,17,-70,56,-70v38,0,55,41,55,70xm262,-65v0,-19,-3,-60,-29,-60v-26,0,-30,41,-30,60v0,20,4,60,30,60v26,0,29,-41,29,-60xm126,-161v0,29,-16,70,-55,70v-39,0,-55,-41,-55,-70v0,-28,16,-69,55,-69v39,0,55,41,55,69xm100,-161v0,-18,-2,-59,-28,-59v-26,0,-30,40,-30,59v0,20,4,60,30,60v26,0,28,-41,28,-60xm229,-229r-147,243v-5,0,-10,-3,-10,-8r145,-241v4,0,9,2,12,6","w":303},"&":{"d":"183,-74v10,-14,38,-59,45,-83v0,-8,-32,-2,-21,-15r80,-2v8,11,-8,10,-15,12v-20,3,-30,21,-41,39v-12,19,-27,39,-42,60v22,39,59,70,96,37v3,1,6,4,4,7v-14,18,-34,24,-57,24v-38,0,-48,-22,-60,-44v-21,24,-47,44,-79,44v-51,0,-70,-36,-70,-65v0,-37,26,-59,58,-78v-13,-9,-28,-23,-28,-44v0,-58,98,-65,97,-6v0,24,-19,34,-36,44v20,12,44,35,69,70xm90,-131v-18,9,-40,31,-40,60v-1,66,87,68,115,22v-17,-31,-46,-63,-75,-82xm102,-220v-38,7,-32,56,4,69v24,-10,33,-66,-4,-69","w":294},"(":{"d":"108,-248v-73,66,-73,235,0,301v0,4,-1,5,-5,6v-96,-54,-97,-259,0,-312v4,0,5,2,5,5","w":115,"k":{"W":-4,"V":-4,"J":-12}},")":{"d":"7,53v74,-66,74,-235,0,-301v0,-3,2,-5,5,-5v96,54,97,258,0,312v-3,-1,-5,-2,-5,-6","w":115},"*":{"d":"76,-243r3,46r45,-22v3,0,6,4,5,7r-42,29r41,29v1,3,-1,7,-4,7r-45,-23r-3,47v-3,2,-7,2,-9,0r-4,-47r-45,23v-3,0,-5,-4,-4,-7r41,-29r-41,-29v-1,-3,1,-7,4,-7r45,22r4,-46v2,-2,6,-2,9,0","w":141},"+":{"d":"101,0r-21,0r0,-65r-59,0r0,-18r59,0r0,-59r21,0r0,59r58,0r0,18r-58,0r0,65"},",":{"d":"50,4v-3,-24,-27,-14,-27,-32v0,-8,6,-16,18,-16v48,12,25,84,-19,88v-10,-18,32,-15,28,-40","w":90},"-":{"d":"14,-81r84,-8v7,5,8,14,3,21r-84,8v-6,-6,-6,-14,-3,-21","w":115,"k":{"W":25}},".":{"d":"45,5v-10,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v12,0,20,10,20,21v0,12,-8,20,-20,20","w":90},"\/":{"d":"107,-247r-75,253r-21,0r75,-253r21,0","w":117},"0":{"d":"90,-230v102,0,101,235,0,235v-53,0,-75,-61,-75,-118v0,-54,22,-117,75,-117xm90,-220v-40,0,-42,73,-42,107v0,34,2,107,42,107v40,0,42,-73,42,-107v0,-34,-2,-107,-42,-107"},"1":{"d":"79,-44r0,-122v3,-35,-9,-34,-34,-36v-3,-1,-4,-6,-1,-8v34,-4,49,-18,63,-19r-1,185v-2,37,5,35,30,36v3,2,2,8,0,9v-30,-2,-56,-1,-86,0v-3,-1,-3,-7,-1,-9v24,-1,30,1,30,-36"},"2":{"d":"9,-4v35,-28,111,-89,111,-154v0,-33,-16,-53,-45,-53v-22,0,-37,15,-47,36v-3,2,-9,0,-9,-5v16,-64,134,-69,132,8v11,38,-83,125,-93,146v24,9,97,9,101,-19v3,-1,7,0,8,2v-5,18,-11,37,-17,44r-138,0v-1,0,-3,-2,-3,-5"},"3":{"d":"161,-82v0,52,-70,102,-111,102v-16,0,-35,-5,-35,-22v0,-7,5,-14,14,-14v17,1,17,24,36,24v24,0,65,-31,65,-71v0,-53,-57,-77,-86,-41v-5,-1,-10,-6,-8,-13v26,-15,77,-23,77,-66v0,-48,-66,-30,-78,1v-4,1,-8,-1,-8,-5v12,-25,38,-43,66,-43v57,0,73,62,11,87v-2,4,0,5,4,5v28,3,53,22,53,56"},"4":{"d":"109,-159v-1,-9,14,-13,21,-13v5,0,5,4,5,11r0,70v-3,19,44,-6,31,23v-11,2,-32,-6,-31,8v2,29,-5,58,25,52v2,2,2,8,-1,9v-29,-2,-52,-1,-82,0v-2,-1,-3,-7,-1,-9v32,4,35,-11,33,-51v0,-9,-1,-9,-11,-9r-86,0v-9,-4,-5,-11,2,-20r115,-161v3,-6,16,-8,20,-2r-116,162v-5,6,0,6,10,6r56,0v8,0,10,-1,10,-10r0,-66"},"5":{"d":"28,-149r19,-64v2,-6,4,-9,10,-10r86,-12v2,-1,4,1,4,3v-3,8,-8,17,-13,22r-68,10v-17,0,-13,19,-19,31v-2,4,0,6,5,7v51,2,103,22,103,79v0,62,-72,106,-129,107v-4,-1,-4,-8,-1,-11v56,-3,103,-37,103,-86v0,-52,-54,-65,-97,-65v-5,0,-5,-3,-3,-11"},"6":{"d":"14,-85v0,-31,10,-75,49,-113v37,-36,81,-48,103,-51v2,1,3,6,1,8v-23,8,-54,18,-80,46v-30,32,-41,72,-41,109v0,42,15,80,50,80v27,0,41,-24,41,-55v0,-36,-23,-71,-61,-57v-3,-13,22,-17,35,-17v34,0,57,28,57,65v0,42,-31,75,-76,75v-53,0,-78,-41,-78,-90"},"7":{"d":"129,-203v-41,0,-95,-14,-111,18v-3,1,-6,1,-8,-3v4,-9,9,-25,13,-38r147,0v1,0,2,1,2,3v-42,72,-85,168,-125,246v-6,1,-11,-2,-12,-7r101,-206v6,-11,4,-13,-7,-13"},"8":{"d":"95,-230v32,0,59,18,59,52v0,30,-24,43,-42,55v25,14,47,33,47,67v0,38,-29,61,-72,61v-32,0,-66,-16,-66,-60v0,-27,25,-45,48,-61v-20,-11,-40,-28,-41,-56v0,-37,30,-58,67,-58xm91,-6v26,0,42,-17,42,-43v0,-29,-27,-49,-53,-60v-24,16,-33,35,-33,51v0,30,17,52,44,52xm92,-220v-25,0,-38,19,-38,40v0,25,25,40,48,51v36,-18,39,-91,-10,-91"},"9":{"d":"86,-220v-23,0,-40,18,-40,50v0,34,20,71,57,59v2,11,-17,14,-31,15v-30,0,-55,-24,-55,-61v0,-43,33,-73,74,-73v45,0,71,38,71,91v0,40,-16,86,-53,119v-26,24,-61,37,-85,42v-3,-1,-4,-7,-2,-9v69,-23,106,-57,108,-154v0,-33,-9,-79,-44,-79"},":":{"d":"45,-101v-10,0,-20,-7,-20,-20v0,-12,8,-21,20,-21v12,0,20,10,20,21v0,12,-8,20,-20,20xm45,5v-10,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v12,0,20,10,20,21v0,12,-8,20,-20,20","w":90},";":{"d":"50,4v-3,-24,-27,-14,-27,-32v0,-8,6,-16,18,-16v48,12,25,84,-19,88v-10,-18,32,-15,28,-40xm45,-101v-10,0,-20,-7,-20,-20v0,-12,8,-21,20,-21v12,0,20,10,20,21v0,12,-8,20,-20,20","w":90},"<":{"d":"20,-82r140,-67r0,21r-114,54r114,54r0,20r-140,-66r0,-16"},"=":{"d":"159,-110r0,18r-138,0r0,-18r138,0xm159,-56r0,18r-138,0r0,-18r138,0"},">":{"d":"20,-149r140,67r0,16r-140,66r0,-20r114,-55r-114,-53r0,-21"},"?":{"d":"65,-144v41,-21,13,-67,-30,-60v-3,0,-12,-6,-12,-15v0,-7,5,-14,14,-14v40,0,83,75,49,106v-20,11,-52,19,-38,52v-1,3,-5,4,-7,2v-13,-18,-21,-54,6,-62xm45,5v-10,0,-20,-8,-20,-20v0,-12,9,-21,20,-21v13,0,21,10,21,21v0,12,-8,20,-21,20","w":115},"@":{"d":"163,-117v-33,3,-60,58,-61,83v7,12,11,3,33,-14v18,-14,39,-47,43,-59v-2,-5,-7,-10,-15,-10xm74,-29v2,-27,54,-106,99,-101v5,0,12,3,13,8r9,-18v6,-2,15,1,18,4v-5,11,-37,85,-42,100v-4,8,-1,12,8,12v38,-2,70,-29,70,-74v0,-51,-41,-83,-94,-83v-71,0,-114,59,-114,126v0,42,25,99,107,99v26,0,44,-8,56,-13v3,1,4,4,3,7v-81,43,-191,9,-191,-93v0,-85,68,-138,142,-138v133,0,144,179,13,180v-48,1,-17,-19,-14,-42v-22,23,-54,42,-68,42v-11,0,-15,-8,-15,-16","w":275},"A":{"d":"167,-15v-4,-21,-13,-49,-20,-69v-6,-19,-48,-5,-70,-9v-22,2,-16,32,-26,47v-5,16,-8,26,-8,30v-4,11,34,2,22,17v-17,-2,-52,-1,-72,0v-7,-18,31,-3,33,-28r68,-177v5,-13,7,-20,6,-26v12,0,16,-19,24,-10r65,193v13,36,15,37,41,39v2,2,1,8,0,9v-25,-2,-63,-1,-85,0v-3,-1,-4,-7,-1,-9v8,-1,24,-2,23,-7xm107,-199v-11,20,-22,59,-32,83v-3,9,-2,9,8,9r44,0v11,0,11,-1,8,-11","w":224,"k":{"c":18,"C":18,"d":4,"e":4,"G":4,"o":2,"O":4,"t":2,"T":4,"u":2,"U":25,"Y":6,"z":7,"Q":22,"V":-2,"W":4,"b":29,"p":36,"q":4,"v":4,"w":2,"r":15,"y":15}},"B":{"d":"17,-236v57,-3,166,-19,166,52v0,26,-16,40,-37,50v0,3,3,4,7,5v19,4,48,22,48,60v0,56,-63,69,-139,69v-16,0,-28,1,-41,1v-5,-3,-1,-12,5,-10v19,-3,20,-7,20,-45r0,-137v2,-32,-5,-35,-29,-36v-3,-2,-3,-7,0,-9xm76,-113v1,47,-12,103,36,103v32,0,56,-14,56,-50v0,-29,-14,-62,-72,-62v-19,0,-20,2,-20,9xm97,-228v-13,0,-20,0,-21,12r0,73v0,10,0,11,18,10v37,-1,57,-12,57,-46v0,-35,-26,-49,-54,-49","w":217,"k":{"h":4,"b":2,"W":12,"V":7,"z":-4,"S":4}},"C":{"d":"226,-6v-92,32,-210,-5,-210,-111v0,-105,114,-147,216,-116v1,8,2,31,5,53v-2,2,-7,3,-9,0v-6,-24,-22,-52,-74,-52v-55,0,-102,35,-102,109v0,76,48,118,107,118v46,0,67,-31,75,-52v3,-2,8,-1,9,2v-2,18,-12,42,-17,49","w":250,"k":{"V":6,"p":6,"a":-11,"i":-5,"h":-5}},"D":{"d":"264,-122v0,93,-94,122,-202,122v-15,0,-28,0,-45,1v-5,-4,0,-12,7,-10v21,-3,22,-7,22,-45r0,-137v1,-30,-4,-35,-25,-36v-3,-2,-3,-7,1,-9v30,-2,59,-3,90,-3v89,0,152,44,152,117xm115,-228v-38,0,-40,-5,-39,33r0,133v-1,42,10,54,51,54v70,0,101,-46,101,-113v0,-40,-19,-107,-113,-107","w":280,"k":{"e":5,"G":4,"t":2,"Y":2,"Q":4,"p":4,"v":4,"y":7,"a":4,"g":-14,"k":-14,"n":2,"f":14,"j":4,"m":6}},"E":{"d":"76,-57v4,43,-4,46,50,46v57,0,48,-4,72,-40v2,-2,7,-1,9,2v-3,13,-12,40,-17,50r-177,0v-8,-9,4,-10,11,-10v20,-2,22,-7,22,-45r0,-130v1,-41,-3,-43,-28,-46v-2,-1,-1,-8,1,-9r159,0v2,6,4,32,6,48v-2,2,-8,3,-9,1v-4,-38,-41,-38,-89,-36v-10,0,-10,0,-10,14r0,72v-3,18,20,7,32,10v33,0,39,1,42,-29v2,-3,8,-3,10,0v-2,18,-2,54,0,71v-19,7,-6,-28,-24,-28r-49,-1v-10,0,-11,0,-11,9r0,51","w":210,"k":{"Y":2,"Q":2,"V":2,"b":2,"q":6,"w":6,"y":4,"a":2,"i":11,"h":2,"s":4,".":2,"X":4,",":2}},"F":{"d":"76,-212r0,76v-2,22,49,6,67,7v12,1,5,-34,21,-27r0,72v-17,7,-8,-25,-24,-28v-9,-2,-38,-2,-53,-2v-10,0,-11,1,-11,10v0,33,-13,102,22,95v8,-1,18,3,11,10r-93,0v-5,-5,0,-12,8,-10v21,-3,22,-7,22,-45r0,-130v1,-40,-3,-42,-27,-46v-2,-1,-2,-8,0,-9r157,0v0,17,0,34,1,48v-1,2,-6,3,-9,1v1,-37,-39,-38,-82,-36v-10,0,-10,0,-10,14","w":193,"k":{".":50,",":50,";":13}},"G":{"d":"161,-5v40,0,43,-7,43,-46v0,-39,-12,-33,-39,-37v-3,-1,-3,-8,0,-9v19,1,65,2,89,0v5,4,1,11,-5,10v-28,1,-17,67,-7,80v-25,3,-56,13,-83,13v-74,0,-144,-47,-142,-122v3,-77,56,-128,146,-127v35,0,46,7,68,8v0,12,2,31,6,52v-2,3,-8,4,-10,2v-10,-39,-37,-52,-74,-52v-70,0,-100,50,-100,104v0,69,35,124,108,124","w":268,"k":{"p":2,"v":2,"k":9,"l":4,"j":-5,"m":-5,"x":-5,"s":2,".":4}},"H":{"d":"197,-116r-103,0v-18,0,-18,0,-18,11v0,33,-12,103,22,96v8,-1,15,4,9,10v-33,-2,-57,-1,-87,0v-4,-3,-2,-12,5,-10v20,-4,21,-7,21,-45r0,-130v1,-44,-4,-44,-31,-46v-2,-1,-1,-8,1,-9r87,0v4,5,1,12,-6,10v-32,-6,-21,55,-21,87v0,11,0,11,18,11r103,0v34,5,12,-32,18,-53v1,-42,-3,-43,-29,-46v-2,-1,-2,-8,0,-9r87,0v4,5,-1,12,-7,10v-21,2,-22,8,-22,45r0,130v-1,43,3,43,30,46v2,2,2,8,0,9r-88,0v-4,-4,1,-11,7,-10v36,5,22,-62,22,-96v0,-11,-1,-11,-18,-11","w":290,"k":{"d":9,";":6,"]":11}},"I":{"d":"46,-55r0,-128v1,-44,-4,-45,-31,-47v-2,-1,-1,-8,1,-9r90,0v5,6,0,12,-8,10v-22,2,-22,8,-22,46r0,128v-1,43,3,44,31,47v2,2,1,8,-1,9r-90,0v-5,-5,0,-12,8,-10v21,-3,22,-8,22,-46","w":121,"k":{"b":6,"q":6,"v":6,"r":6,"h":2,"k":9,"l":9,"n":6,"f":4,".":6,"X":4,",":2,":":4,";":2,"}":6}},"J":{"d":"28,53v31,-3,23,-73,23,-100r0,-136v1,-46,-5,-44,-33,-47v-3,-1,-2,-8,0,-9r90,0v4,3,1,11,-5,10v-21,3,-22,8,-22,46r0,134v4,71,-22,117,-79,121v-5,0,-16,0,-16,-7v0,-21,25,-16,42,-12","w":124,"k":{"d":2,"G":6,".":7,"X":11,"S":11,"-":13}},"K":{"d":"46,-54r0,-130v1,-43,-4,-44,-31,-46v-2,-1,-1,-8,1,-9r87,0v4,5,1,12,-6,10v-32,-6,-18,56,-21,87v-3,15,8,16,14,10r58,-56v7,-12,51,-38,14,-42v-2,-2,-2,-7,1,-9v24,1,52,2,75,0v8,16,-23,10,-32,19v-23,14,-70,58,-92,84v31,43,69,81,97,112v11,12,21,15,39,16v2,2,2,8,-1,9v-21,-2,-58,-1,-84,0v-3,-1,-4,-7,-2,-9v12,0,23,-3,12,-13v-26,-24,-67,-85,-93,-97v-13,6,-5,46,-6,64v-3,44,3,44,30,46v2,2,2,8,-1,9r-85,0v-4,-3,-1,-12,6,-10v19,-3,20,-7,20,-45","w":243,"k":{"z":2,"V":7,"W":7,"w":13,"y":2,"h":13,"f":11,"j":17,"x":9}},"L":{"d":"76,-58v4,44,-4,47,46,47v60,0,46,-4,68,-40v2,-2,9,-1,9,2v0,4,-10,40,-15,50r-170,0v-2,-1,-2,-7,0,-9v28,-2,32,-2,32,-46r0,-130v1,-43,-4,-44,-32,-46v-2,-1,-2,-8,0,-9r91,0v6,5,0,11,-7,10v-22,2,-22,8,-22,45r0,126","w":199,"k":{"z":47,"b":4,"q":5,"w":7,"r":7,"i":2,"h":6,"k":4,"l":32,"n":40,"A":17,"-":4}},"M":{"d":"65,-191v-5,47,-4,100,-7,149v-2,34,7,33,30,34v2,2,2,8,-1,9v-24,-1,-51,-2,-76,0v-5,-5,0,-11,7,-10v15,-2,20,-4,22,-30r10,-159v3,-26,-6,-29,-29,-32v-2,-2,-2,-7,1,-9v22,2,35,1,58,0v12,65,58,137,86,192v25,-57,74,-134,89,-192v24,2,35,1,59,0v5,7,-2,11,-8,10v-22,2,-25,9,-25,34v1,38,4,105,4,157v0,24,7,30,29,30v2,2,2,8,0,9r-86,0v-3,-2,-3,-7,-1,-9v22,-1,28,-4,28,-32r-2,-150r-94,192v-2,2,-5,3,-7,0v-25,-65,-61,-129,-87,-193","w":328,"k":{"j":6,"e":11,"G":4,"o":9,":":9,")":13}},"N":{"d":"245,-221v-11,64,-3,148,-4,223v-1,2,-3,4,-7,4r-172,-198v-3,51,-7,128,5,176v2,6,19,7,29,8v2,3,2,7,-1,9v-28,-1,-54,-2,-79,0v-3,-2,-3,-7,-1,-9v43,8,27,-52,30,-82v-4,-44,10,-99,-8,-130v-6,-6,-17,-9,-28,-10v-2,-2,-2,-7,1,-9v25,1,39,2,57,0v40,63,110,134,157,184v1,-51,6,-121,-6,-167v0,-4,-17,-6,-29,-8v-2,-2,-2,-8,1,-9r80,0v5,4,1,11,-5,10v-11,2,-18,5,-20,8","w":281,"k":{"g":11,"X":11,";":11}},"O":{"d":"145,6v-80,0,-128,-57,-128,-122v0,-72,54,-127,128,-127v83,0,125,60,125,123v0,73,-56,126,-125,126xm149,-5v44,0,85,-33,85,-104v0,-59,-27,-123,-95,-123v-38,0,-86,25,-86,104v0,53,25,123,96,123","w":286,"k":{"y":-5,"i":2,"k":2,"l":11,"n":2,"j":11,"m":2,"s":19,"A":2,".":2,":":-14,";":-14,"S":2,"}":2,"]":4,")":2,"E":4,"I":4}},"P":{"d":"17,-236v69,-6,173,-11,169,66v-2,53,-43,65,-86,68v-2,-1,-2,-7,0,-7v76,-8,68,-122,-5,-119v-19,0,-19,2,-19,13r0,161v-2,44,4,43,33,46v2,2,2,8,-1,9r-90,0v-6,-4,-1,-12,6,-10v21,-3,22,-7,22,-45r0,-133v2,-39,-6,-37,-30,-40v-2,-2,-2,-7,1,-9","w":197,"k":{"h":2,"H":4,".":65,",":65,"G":4,"O":4,"z":2,"X":11,"S":19,"}":19,"-":6,"E":11}},"Q":{"d":"145,-243v83,0,125,60,125,123v0,60,-37,105,-87,120v23,31,75,77,133,64v3,0,3,4,2,5v-59,34,-142,-24,-165,-51v-19,-21,-32,-11,-59,-22v-48,-19,-77,-61,-77,-112v0,-72,54,-127,128,-127xm149,-5v44,0,85,-33,85,-104v0,-59,-27,-123,-95,-123v-38,0,-86,25,-86,104v0,53,25,123,96,123","w":286,"k":{"X":4,"W":11,"V":6,"t":14,"h":4,"I":9}},"R":{"d":"19,-236v61,-4,170,-18,170,59v0,34,-27,52,-45,60v21,48,52,84,75,104v5,8,26,6,25,15v-65,19,-97,-54,-126,-98v0,-12,-44,-18,-42,-3v4,36,-15,100,29,91v2,2,1,8,-1,9r-88,0v-2,-1,-3,-6,-1,-9v27,-3,31,-3,31,-46r0,-129v1,-42,-3,-41,-27,-44v-3,-2,-3,-7,0,-9xm102,-118v33,0,55,-14,55,-54v0,-29,-18,-56,-58,-56v-22,0,-23,2,-23,12r0,84v1,20,-2,14,26,14","w":232,"k":{"c":22,"C":5,"d":4,"e":2,"a":4,"h":13,"g":4,"k":13,"l":4,"n":13,"j":16,"m":4,"x":9,"A":13,".":25,":":11}},"S":{"d":"28,-181v-4,-52,66,-73,119,-56v3,9,7,29,7,44v-2,3,-7,4,-9,1v-5,-17,-15,-40,-49,-40v-66,0,-45,70,-12,84v31,21,72,38,73,87v0,40,-30,67,-76,67v-31,0,-50,-10,-57,-14v-4,-7,-9,-33,-9,-50v2,-2,7,-3,8,-1v6,18,21,54,62,54v56,0,61,-62,16,-92v-30,-20,-69,-36,-73,-84","w":176,"k":{"n":4,"j":4,"x":9,"s":9,":":11,";":11,"E":4,"I":2}},"T":{"d":"132,-214r0,160v-1,45,5,44,34,46v2,2,1,8,-1,9r-97,0v-7,-10,6,-9,13,-10v20,-2,22,-7,22,-45r0,-161v4,-19,-19,-9,-31,-11v-30,-4,-55,11,-60,33v-3,3,-8,1,-9,-2v5,-16,11,-39,13,-54v1,0,6,-1,7,0v2,12,14,11,31,11r145,0v20,0,23,0,29,-10v1,0,5,0,6,1v-4,15,-6,44,-5,55v-16,10,-9,-22,-19,-25v-10,-11,-43,-9,-67,-9v-11,0,-11,0,-11,12","w":237,"k":{"e":9,"G":-6,"O":9,"U":4,"Y":4,"z":4,"h":40,"l":34,"f":9,"m":43,"x":9,"s":12,".":-4,",":-4,"S":47,"}":40}},"U":{"d":"139,6v-63,-1,-96,-31,-96,-105r0,-85v1,-43,-3,-44,-30,-46v-3,-1,-2,-8,0,-9r89,0v5,6,0,12,-8,10v-21,1,-21,8,-21,45v0,82,-10,174,73,174v66,0,77,-65,72,-137v-3,-37,11,-88,-34,-83v-2,-3,-1,-7,1,-9v25,1,55,2,79,0v5,6,-2,11,-8,10v-35,-2,-18,52,-23,82v8,85,-16,153,-94,153","w":268,"k":{"m":9,"X":11,"S":11,"}":4,"-":13,")":4}},"V":{"d":"116,5v-23,-70,-54,-136,-80,-204v-9,-24,-15,-29,-36,-31v-2,-2,-2,-7,1,-9v23,2,56,1,81,0v5,4,1,11,-5,10v-13,2,-16,4,-17,7v14,44,50,126,70,174r68,-160v9,-20,0,-18,-20,-22v-2,-2,-2,-7,1,-9v21,1,49,2,72,0v3,2,3,8,1,9v-15,1,-23,3,-30,14v-28,49,-77,164,-97,221v-2,1,-5,1,-9,0","w":243,"k":{"}":9,"]":-9,"Q":9,";":16,":":38,".":43,"-":36,",":43,")":9,"u":4,"E":36,"I":9}},"W":{"d":"34,-203v-8,-19,-14,-27,-35,-27v-2,-2,-2,-7,1,-9v25,2,51,1,78,0v7,5,0,11,-7,10v-28,6,-3,19,6,54r63,134r33,-73v-11,-33,-28,-64,-42,-96v-7,-14,-14,-20,-32,-20v-3,-3,-2,-7,1,-9v19,2,63,1,78,0v2,1,3,6,1,9v-15,2,-28,-2,-17,20v9,17,17,41,27,63v7,-14,14,-28,22,-47v16,-39,9,-34,-12,-36v-2,-4,-1,-8,1,-9v19,2,50,1,69,0v2,1,2,6,0,9v-46,4,-51,66,-71,99r39,90r61,-147v5,-13,11,-29,11,-33v3,-13,-32,-3,-22,-18v24,1,48,2,68,0v7,5,0,11,-6,10v-26,-6,-54,92,-69,123v-18,36,-30,72,-45,111v-2,1,-7,1,-9,0v-12,-32,-33,-77,-44,-103v-13,27,-34,73,-45,103v-2,1,-7,1,-10,0","w":345,"k":{"}":-4,"m":34,"]":-9,"Q":6,";":22,":":32,".":43,"-":6,",":43,")":28,"Y":22,"i":2,"E":28,"I":6}},"X":{"d":"120,-139v14,-18,46,-65,54,-85v0,-7,-33,-2,-21,-15v23,1,51,2,73,0v5,5,-1,11,-8,10v-34,12,-67,69,-89,101v18,33,43,65,65,95v16,23,22,24,46,25v2,2,2,7,-1,9v-30,-2,-63,-1,-91,0v-3,-2,-3,-7,-1,-9v20,-3,32,-1,15,-22v-16,-21,-36,-51,-52,-72v-11,15,-44,58,-55,88v-2,7,29,1,20,15v-25,-1,-52,-2,-76,0v-4,-1,-4,-7,-2,-9v26,0,40,-16,52,-33r53,-73v-17,-30,-40,-57,-59,-86v-15,-22,-21,-26,-43,-30v-1,-2,-1,-8,1,-9r83,0v2,1,2,7,0,9v-24,1,-25,6,-10,26v12,17,33,49,46,65","w":231,"k":{"Q":24,"h":2,"S":9,"E":9}},"Y":{"d":"161,-171v-19,35,-40,64,-40,116v0,47,5,45,35,47v2,2,2,8,0,9r-97,0v-5,-7,4,-12,11,-10v26,5,21,-31,21,-64v0,-52,-36,-88,-54,-128v-13,-29,-17,-24,-38,-29v-2,-2,-2,-7,1,-9v18,1,63,2,80,0v5,3,2,11,-4,10v-31,0,-5,22,-4,34v14,27,27,55,41,80v11,-19,25,-39,34,-61v10,-26,43,-50,8,-53v-6,1,-10,-6,-6,-10v25,1,44,2,68,0v8,6,-2,11,-9,11v-19,0,-29,26,-47,57","w":206,"k":{"u":9,"U":-4,"z":9,"Q":2,"V":2,"p":4,"q":4,"g":14,"l":29,"f":31,"A":6,".":32,"X":6,",":34,";":-4,"S":-4,"-":32,")":18}},"Z":{"d":"62,-17v18,12,101,7,130,-2v10,-6,19,-20,25,-34v3,-1,8,0,9,3v-3,17,-10,42,-16,51r-198,0v-4,-12,25,-36,37,-53r113,-162v4,-9,9,-13,-9,-12v-34,1,-93,-5,-107,11v-12,9,-11,33,-25,22v4,-12,10,-34,15,-54v1,-1,4,-1,6,0v1,9,6,9,35,9r137,-1v1,1,2,2,2,4v-46,54,-112,150,-154,218","w":230,"k":{"b":2,"p":2,"X":11,"}":11}},"[":{"d":"61,-18v3,33,-6,57,14,59r32,4v2,3,2,6,0,8r-65,1r0,-301r65,1v2,2,2,6,0,8r-32,4v-21,1,-14,26,-14,59r0,157","w":115,"k":{"W":-9,"V":-4,"J":-12}},"\\":{"d":"32,-247r68,253r-20,0r-69,-253r21,0","w":111},"]":{"d":"54,-175v-3,-33,6,-57,-14,-59r-32,-4v-2,-2,-2,-6,1,-8r64,-1r0,301r-64,-1v-3,-2,-3,-5,-1,-8r32,-4v21,-1,14,-26,14,-59r0,-157","w":115},"^":{"d":"162,-88r-22,0r-50,-112r-50,112r-22,0r63,-137r18,0"},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0"},"a":{"d":"49,5v-40,0,-54,-54,-7,-64r43,-16v11,-2,4,-17,7,-27v0,-13,-4,-31,-26,-31v-11,0,-23,5,-24,16v4,17,-23,26,-29,14v0,-18,41,-44,67,-44v51,0,39,61,36,105v-2,24,13,38,30,27v1,0,2,2,2,4v0,2,-12,16,-30,16v-12,0,-21,-10,-29,-16v-9,2,-26,16,-40,16xm87,-63v-17,4,-51,14,-47,30v0,6,5,22,23,22v24,1,34,-29,24,-52","w":145},"b":{"d":"167,-76v0,67,-72,97,-128,72v-4,-1,-9,9,-13,3r1,-202v1,-23,-2,-25,-15,-32v-3,-16,27,-11,39,-22v11,22,-5,87,6,122v43,-29,110,0,110,59xm82,-131v-43,0,-26,45,-28,82v-1,25,12,43,36,43v34,0,47,-29,47,-60v0,-37,-19,-65,-55,-65","k":{"w":2,"v":2,".":6,",":6,"g":4,"k":4}},"c":{"d":"143,-32v-31,65,-130,39,-130,-35v0,-38,27,-80,87,-80v13,1,42,2,38,21v-6,32,-28,-15,-49,-9v-26,0,-50,20,-50,58v0,28,19,62,58,62v21,0,32,-9,40,-22v3,0,6,2,6,5","w":144},"d":{"d":"154,-255r-1,202v0,41,0,47,26,39v2,0,2,9,-1,11v-17,0,-41,15,-51,9v-1,-6,1,-14,-2,-18v-44,38,-112,6,-112,-52v0,-58,53,-94,111,-80v1,-24,13,-83,-13,-91v-3,-15,27,-12,39,-22v2,0,3,0,4,2xm96,-12v14,0,32,-4,30,-24v-4,-43,13,-100,-34,-100v-33,0,-50,29,-50,60v0,33,18,64,54,64","w":183},"e":{"d":"136,-28v-32,62,-123,29,-123,-38v0,-44,29,-81,72,-81v34,0,56,23,50,52v-17,6,-63,2,-88,3v-10,0,-10,1,-10,10v-5,50,58,93,93,49v4,-1,6,1,6,5xm41,-105v12,3,73,7,68,-8v0,-10,-7,-23,-28,-23v-21,0,-40,19,-40,31","w":142,"k":{"r":-1,"a":-2}},"f":{"d":"94,-243v-33,2,-33,56,-33,91v0,23,32,4,47,10v4,4,1,14,-3,15v-15,4,-44,-11,-44,11r0,76v-1,34,5,30,26,32v3,2,2,8,0,9v-28,-1,-49,-2,-74,0v-3,-1,-3,-7,-1,-9v19,-2,22,0,22,-32r0,-76v6,-22,-22,0,-21,-18v7,-4,21,-5,21,-14v2,-55,17,-104,76,-109v28,-2,49,26,22,34v-14,-3,-21,-22,-38,-20","w":104,"k":{"'":-28,"}":-40,"]":-42,".":6,",":6,")":-40,"\"":-28}},"g":{"d":"75,-147v34,0,48,18,86,13v4,2,3,15,-3,15r-26,0v8,45,-16,80,-75,74v-16,6,-27,35,9,35v41,0,93,-14,93,39v0,39,-42,68,-89,68v-50,0,-68,-28,-56,-55v5,-9,30,-21,27,-33v-14,-4,-26,-16,-26,-28v5,-11,24,-15,28,-30v-12,-6,-27,-20,-27,-44v0,-30,27,-54,59,-54xm98,12v-36,0,-60,3,-61,34v0,19,16,35,48,35v60,0,76,-69,13,-69xm78,-54v20,0,30,-15,30,-37v0,-25,-10,-45,-32,-45v-18,0,-31,15,-31,40v0,25,16,42,33,42","w":160,"k":{"C":6,"d":6}},"h":{"d":"94,-130v-20,1,-39,7,-36,29v4,31,-16,97,22,93v2,2,1,8,-1,9v-21,-2,-48,-1,-69,0v-3,-1,-4,-7,-1,-9v19,-2,23,0,23,-32r0,-163v1,-23,-3,-25,-15,-32v-3,-15,27,-12,39,-22v9,26,-4,91,4,129v28,-30,95,-23,95,28r0,60v-1,33,3,30,23,32v3,2,2,8,-1,9v-22,-1,-48,-2,-69,0v-6,-19,30,0,20,-41v-1,-40,9,-92,-34,-90","w":185},"i":{"d":"14,-8v39,3,14,-64,21,-95v5,-20,-14,-18,-12,-31v9,-1,31,-20,40,-16r-1,110v-1,31,3,29,21,32v3,2,2,8,-1,9v-19,-2,-48,-1,-67,0v-3,-1,-3,-7,-1,-9xm47,-225v11,0,18,9,18,19v0,13,-9,19,-19,19v-11,0,-18,-8,-18,-18v0,-12,8,-20,19,-20","w":92,"k":{"G":7,"o":7}},"j":{"d":"-5,89v55,-19,35,-117,41,-192v2,-19,-12,-17,-13,-31v11,-1,31,-20,41,-16v-3,60,7,143,-9,188v-9,27,-30,43,-55,59v-4,-1,-6,-5,-5,-8xm48,-225v11,0,18,9,18,19v0,13,-9,19,-19,19v-11,0,-19,-8,-19,-19v0,-11,9,-19,20,-19","w":91},"k":{"d":"32,-40r0,-163v1,-23,-3,-25,-15,-32v-3,-15,27,-12,39,-22v7,39,-1,115,2,170v0,5,1,5,7,5v18,0,44,-36,52,-46v1,-6,-28,-2,-17,-14v21,0,41,-1,66,-3v2,1,2,7,0,9v-28,1,-53,34,-67,45v-8,17,11,19,22,38v24,24,27,40,58,45v2,2,2,8,-1,9v-22,-2,-52,-1,-72,0v-6,-4,-1,-12,6,-10v12,-2,11,-4,3,-14r-39,-44v-6,-6,-19,-11,-18,7v2,26,-6,59,23,52v2,2,1,8,-1,9v-22,-2,-49,-1,-70,0v-4,-19,31,0,22,-41","w":173,"k":{"O":14,"t":14}},"l":{"d":"59,-255r-1,215v-1,32,4,30,23,32v2,2,1,8,-1,9v-22,-2,-49,-1,-70,0v-4,-19,31,0,22,-41r0,-163v1,-23,-3,-25,-15,-32v-3,-15,27,-12,39,-22v1,0,3,0,3,2","w":88,"k":{"u":4,"U":4}},"m":{"d":"98,-130v-46,0,-35,48,-36,90v-1,30,3,29,20,32v3,2,2,8,-1,9v-19,-2,-48,-1,-67,0v-3,-1,-4,-7,-1,-9v38,7,15,-62,22,-95v4,-20,-14,-18,-12,-31v10,-1,31,-22,40,-15v0,10,-5,18,3,20v24,-19,68,-29,86,3v18,-5,37,-21,58,-21v53,0,43,57,43,107v0,32,3,30,22,32v3,2,2,8,-1,9v-21,-1,-47,-2,-67,0v-7,-18,29,-1,19,-41v-1,-39,9,-90,-33,-90v-46,0,-35,47,-36,90v-1,31,3,30,22,32v2,2,1,8,-1,9v-20,-1,-48,-1,-67,0v-5,-18,25,-1,20,-41v-5,-39,9,-90,-33,-90","w":283},"n":{"d":"98,-130v-46,0,-35,48,-36,90v-1,30,3,29,20,32v3,2,2,8,-1,9v-18,-2,-48,-1,-66,0v-6,-19,28,1,20,-41v-6,-30,12,-77,-13,-88v0,-13,29,-15,37,-24v9,2,-3,23,7,23v30,-27,97,-24,92,27v5,31,-16,98,22,94v3,2,2,8,-1,9v-20,-1,-48,-1,-67,0v-6,-19,26,0,20,-41v-5,-40,11,-90,-34,-90","w":189,"k":{"z":25,"Q":25}},"o":{"d":"89,-147v41,0,73,30,73,75v0,45,-31,77,-76,77v-41,0,-73,-29,-73,-74v0,-45,34,-78,76,-78xm90,-6v62,0,53,-130,-5,-130v-24,0,-41,23,-41,62v0,33,14,68,46,68","w":174,"k":{"W":18,"b":18,".":6,",":4}},"p":{"d":"31,51r0,-154v1,-15,-3,-18,-13,-25v-1,-13,27,-15,36,-26v9,1,-3,21,6,24v4,-2,27,-17,50,-17v37,0,60,30,60,66v-1,56,-45,94,-108,85v-10,4,-4,33,-5,47v-3,35,7,29,28,33v2,2,2,8,-1,9v-28,-1,-50,-2,-74,0v-5,-4,0,-12,7,-10v13,-2,14,-6,14,-32xm92,-130v-51,0,-31,52,-35,94v-1,20,20,29,37,29v29,0,47,-27,47,-65v0,-28,-16,-58,-49,-58","w":182,"k":{"w":2,".":6,",":6}},"q":{"d":"13,-66v-1,-68,68,-94,128,-75v4,2,10,-10,14,-3v-7,52,-1,135,-3,195v-1,33,5,29,24,33v3,2,2,8,0,9v-26,-2,-49,-1,-74,0v-3,-1,-4,-7,-1,-9v37,9,22,-46,25,-79v0,-7,-1,-9,-4,-9v-9,5,-22,9,-36,9v-54,0,-73,-42,-73,-71xm100,-9v44,0,23,-40,26,-74v4,-39,-6,-53,-36,-53v-27,0,-47,25,-47,59v0,40,23,68,57,68","w":178},"r":{"d":"103,-116v-21,-12,-46,-10,-41,27v4,30,-16,91,27,81v3,2,2,8,0,9r-74,0v-4,-18,28,0,20,-41v-6,-30,12,-77,-13,-88v0,-13,28,-15,37,-24v8,3,0,19,4,27v13,-11,26,-22,40,-22v9,0,16,6,16,15v0,11,-10,16,-16,16","w":119,"k":{"q":7,"v":7,"a":2,"i":5,"h":4,"g":2,"l":-3,"f":-3,"x":-2,"X":2,",":-6,"I":2}},"s":{"d":"81,-28v-2,-37,-67,-40,-63,-78v-4,-38,54,-49,81,-34v3,8,5,19,5,29v-1,2,-6,3,-8,1v-5,-29,-53,-37,-55,-4v7,34,64,33,64,78v0,42,-63,51,-90,30v-3,-7,-5,-24,-4,-36v2,-2,6,-3,8,0v6,19,18,37,38,37v13,0,24,-8,24,-23","w":116,"k":{"r":14,"y":14}},"t":{"d":"58,-51v-7,31,24,50,45,33v3,0,5,4,4,6v-15,26,-87,21,-75,-22r0,-82v5,-21,-21,-2,-19,-18v22,-8,29,-14,38,-33v16,-5,0,26,14,25r40,0v4,3,4,13,0,15r-40,0v-6,0,-7,1,-7,9r0,67","w":110},"u":{"d":"91,-12v16,0,39,-8,36,-31v-4,-30,13,-88,-18,-89v-2,-2,-2,-7,0,-8v17,1,39,-9,46,-4v-2,24,-1,63,-1,91v0,39,1,44,25,38v2,2,2,9,0,10v-14,3,-35,7,-48,14v-8,0,0,-20,-7,-23v-23,23,-102,31,-93,-26v-5,-30,14,-89,-16,-92v-2,-2,-1,-7,1,-8v19,1,34,-10,42,-4v6,49,-24,132,33,132","w":184,"k":{"d":36,"e":23,"G":43,"O":-6,"t":43,"u":40,"z":29,"Q":29,"V":38,"W":34,"b":4,"p":40,"q":-4,"v":-4,"w":36,"r":-4}},"v":{"d":"86,-39v11,-19,28,-68,34,-88v1,-9,-23,-3,-15,-16v24,1,32,1,53,0v4,4,1,11,-5,10v-36,19,-49,97,-71,137v-16,5,-13,-25,-22,-37r-30,-73v-7,-17,-10,-27,-29,-28v-2,-3,-2,-8,1,-9v19,1,41,2,63,0v9,14,-25,6,-12,24v10,29,21,58,33,80","w":155,"k":{"q":2,".":27,",":27,"G":16,"t":5}},"w":{"d":"171,-39v10,-19,28,-62,33,-89v0,-7,-24,-4,-15,-15v20,1,33,2,52,0v5,17,-22,6,-25,33v-16,33,-35,81,-46,114v-18,6,-13,-24,-24,-39r-25,-60r-41,99v-15,7,-13,-22,-20,-30r-33,-81v-10,-23,-12,-24,-27,-27v-2,-2,-3,-7,1,-9v21,1,43,1,63,0v9,16,-24,0,-10,34r29,70v7,-22,57,-89,7,-95v-3,-2,-2,-8,1,-9v21,2,42,1,64,0v12,15,-32,5,-16,27","w":237,"k":{".":27,",":27,"c":2,"d":2}},"x":{"d":"64,-72v-20,-20,-27,-55,-60,-62v-2,-2,-2,-8,1,-9v27,2,35,1,62,0v9,14,-22,4,-9,23r22,31v2,-1,14,-19,21,-31v15,-15,-15,-9,-6,-23v17,1,36,1,53,0v9,13,-17,10,-23,16v-6,5,-19,22,-34,41v-4,6,-5,8,1,14v19,21,28,62,63,64v2,2,2,8,-1,9v-25,-1,-47,-2,-70,0v-3,-1,-3,-7,-1,-9v9,-1,26,-1,17,-12v-8,-11,-18,-28,-27,-37v-7,8,-15,22,-22,32v-10,16,-3,16,8,17v2,2,1,8,-1,9v-18,-1,-35,-1,-53,0v-3,-1,-3,-7,-1,-9v32,0,40,-36,59,-54v3,-4,4,-6,1,-10","w":155,"k":{"v":2,"q":2,"c":2,"C":2}},"y":{"d":"48,73v-9,21,-37,24,-39,1v-2,-21,27,-8,33,-21v16,-31,32,-42,18,-80r-28,-77v-7,-22,-11,-28,-30,-30v-2,-2,-2,-8,1,-9v21,1,43,2,65,0v12,12,-15,8,-16,16v4,19,17,47,22,67v2,5,9,24,11,25v7,-13,35,-76,38,-91v2,-9,-31,-4,-19,-17v22,1,38,2,59,0v5,4,0,11,-6,10v-21,3,-38,57,-50,80v-13,24,-42,86,-59,126","w":157,"k":{"c":4,"d":13,"e":4,"o":11,"O":4,"i":11,"x":4,"s":2,"A":2,"}":2}},"z":{"d":"122,1r-111,0v-3,-13,21,-36,33,-56r38,-65v5,-10,3,-11,-4,-11v-31,-2,-57,0,-62,26v-2,2,-7,2,-8,-1v2,-10,3,-42,16,-42v11,13,72,4,98,5v4,13,-13,26,-24,45r-44,73v-8,13,-7,14,7,14v31,2,59,-1,66,-31v3,-2,7,-1,8,2v-3,17,-9,34,-13,41","w":135,"k":{"C":-2,"U":29,"z":-4,"Q":29,"W":18,"p":5,"q":22,"v":13,"w":27,"g":14,"A":2,"X":2}},"{":{"d":"101,-243v-74,14,18,121,-50,147v67,16,-24,128,50,146v2,1,2,5,0,7v-17,0,-54,-3,-51,-45r5,-75v0,-12,-1,-27,-31,-30v-2,-2,-2,-5,0,-7v30,-3,31,-18,31,-30r-5,-74v0,-43,34,-46,51,-46v2,2,2,6,0,7","w":115,"k":{"W":-4,"V":-4,"J":-12,"T":2}},"|":{"d":"54,-270r0,360r-22,0r0,-360r22,0","w":86},"}":{"d":"14,50v75,-14,-18,-120,50,-147v-67,-15,24,-129,-50,-146v-2,-1,-2,-5,0,-7v18,0,54,3,51,46r-5,74v0,12,1,27,31,30v2,2,2,5,0,7v-30,3,-31,18,-31,30r5,75v0,42,-33,45,-51,45v-2,-2,-2,-6,0,-7","w":115},"~":{"d":"153,-101v-5,10,-15,40,-37,36v-36,2,-68,-9,-77,24v-4,1,-10,0,-12,-5v5,-11,17,-37,37,-37v35,0,68,10,77,-23v4,-2,10,-1,12,5"},"'":{"d":"42,-252v19,0,17,6,14,23r-9,58v-3,3,-6,3,-9,0r-11,-72v0,-8,5,-9,15,-9","w":84},"`":{"d":"29,-214v-16,-12,3,-23,13,-25v17,16,23,46,36,67v0,3,-5,4,-7,4","w":129},"\u00a0":{"w":90,"k":{"W":5,"V":5,"d":29,"b":25,"i":4,"f":29,"A":36,"X":29,"-":4}}}});Cufon.registerFont({"w":187,"face":{"font-family":"Adobe Garamond Pro","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 2 7 2 6 5 6 2 4 3","ascent":"261","descent":"-99","x-height":"5","cap-height":"1","bbox":"-20 -270 365.394 97","underline-thickness":"18","underline-position":"-18","stemh":"19","stemv":"47","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":86,"k":{"W":13,"V":13,"e":18,"g":18,"z":22,"p":32,"n":22,"f":18,"m":18,"x":18,"A":14,",":18,"S":18,":":22,"-":-9,";":22,"]":-6,")":18}},"!":{"d":"46,-233v41,0,29,15,23,58r-15,101v-5,3,-12,3,-16,0r-21,-143v0,-12,10,-16,29,-16xm46,5v-15,0,-29,-11,-29,-29v0,-17,13,-30,29,-30v17,0,29,14,29,30v0,16,-12,29,-29,29","w":91},"\"":{"d":"49,-252v27,-1,25,9,20,33r-13,74v-4,2,-10,2,-14,0r-16,-95v0,-11,8,-12,23,-12xm121,-252v27,-1,25,9,20,33r-13,74v-4,2,-10,2,-14,0r-16,-95v0,-11,8,-12,23,-12","w":169},"#":{"d":"119,-143r-35,0r-14,53r35,0xm177,-143r-36,0r-14,53r32,0r-4,23r-34,0r-18,66r-22,0r18,-66r-35,0r-18,66r-22,0r18,-66r-36,0r4,-23r38,0r14,-53r-36,0r5,-23r37,0r16,-59r23,0r-16,59r34,0r15,-59r24,0r-16,59r32,0"},"$":{"d":"92,-146r7,-63v-41,3,-42,51,-7,63xm102,-91r-8,74v46,-2,45,-58,8,-74xm122,-253r-4,28v17,1,32,5,41,7v3,8,6,27,6,47v-2,3,-9,4,-12,1v-4,-12,-14,-32,-37,-38r-8,70v32,11,66,27,66,72v0,39,-31,65,-83,66r-4,33v-2,4,-15,4,-17,0r4,-34v-53,-4,-59,-13,-61,-65v2,-4,9,-5,12,-1v6,19,25,44,51,49r10,-81v-28,-12,-60,-28,-60,-65v0,-36,29,-60,75,-62r3,-27v3,-4,16,-4,18,0"},"%":{"d":"239,4v-43,0,-58,-41,-58,-70v0,-28,15,-69,58,-69v42,0,58,41,58,69v0,29,-16,70,-58,70xm216,-66v0,20,3,56,23,56v20,0,22,-37,22,-56v0,-19,-2,-55,-22,-55v-20,0,-23,35,-23,55xm73,-91v-42,0,-58,-41,-58,-70v0,-28,16,-69,58,-69v43,0,58,41,58,69v0,29,-15,70,-58,70xm51,-161v0,20,3,56,23,56v20,0,22,-37,22,-56v0,-19,-2,-55,-22,-55v-20,0,-23,35,-23,55xm96,14v-6,2,-13,-2,-16,-8r133,-241v6,-1,15,2,17,8","w":311},"&":{"d":"226,5v-42,0,-43,-12,-56,-35v-20,18,-39,35,-73,35v-48,0,-77,-27,-77,-64v0,-42,37,-63,56,-71v-45,-28,-14,-100,37,-100v35,0,56,21,56,48v0,26,-23,37,-33,43v19,10,38,30,53,50v10,-16,23,-45,28,-63v1,-5,-10,-6,-16,-7v-8,-11,5,-16,16,-13v28,0,52,-2,71,-2v4,1,5,10,1,12v-49,3,-58,54,-83,81v-5,11,-5,4,2,20v12,27,54,51,86,28v3,1,5,6,4,9v-9,11,-33,29,-72,29xm160,-47v-15,-29,-45,-59,-68,-69v-2,0,-24,14,-24,43v0,31,22,49,49,49v27,0,43,-22,43,-23xm135,-187v0,-14,-7,-28,-22,-28v-12,0,-21,12,-21,27v0,25,25,38,28,38v3,-1,15,-16,15,-37","w":297},"(":{"d":"119,-246v-74,75,-73,223,0,298v0,3,-2,6,-6,7v-111,-64,-111,-248,0,-312v4,0,6,4,6,7","w":122,"k":{"W":-9,"V":-9,"J":-26,"y":-13}},")":{"d":"4,52v72,-75,72,-223,0,-298v0,-3,1,-7,6,-7v110,64,110,248,0,312v-5,-1,-6,-4,-6,-7","w":122},"*":{"d":"83,-194r45,-24v4,1,6,6,6,11r-41,29r40,28v1,5,-1,10,-5,11r-45,-23r-5,48v-2,2,-8,2,-11,0r-4,-48r-46,23v-4,-1,-6,-6,-5,-10r42,-29r-42,-29v-1,-4,1,-9,5,-10r46,23r4,-48v3,-2,9,-2,11,0","w":145},"+":{"d":"110,0r-32,0r0,-64r-56,0r0,-26r56,0r0,-57r32,0r0,57r56,0r0,26r-56,0r0,64"},",":{"d":"48,3v0,-27,-31,-16,-32,-40v0,-13,11,-23,26,-23v15,0,37,12,37,46v0,36,-28,56,-59,63v-7,-1,-8,-9,-4,-12v14,-5,32,-17,32,-34","w":93},"-":{"d":"16,-85r86,-8v6,6,6,21,1,29r-87,8v-6,-5,-7,-24,0,-29","w":118},".":{"d":"47,5v-15,0,-29,-11,-29,-29v0,-17,13,-30,29,-30v17,0,29,14,29,30v0,16,-12,29,-29,29","w":93},"\/":{"d":"115,-243r-75,249r-33,0r75,-249r33,0","w":122},"0":{"d":"94,-230v113,3,111,233,0,235v-113,-2,-114,-232,0,-235xm63,-113v0,32,3,101,31,101v27,0,30,-69,30,-101v0,-32,-3,-101,-30,-101v-28,0,-31,69,-31,101"},"1":{"d":"120,-228r-1,182v-2,36,9,32,34,34v4,3,3,12,0,13v-26,-2,-91,-1,-116,0v-3,-1,-4,-10,0,-13v25,-2,34,2,34,-34r0,-118v4,-34,-12,-29,-34,-34v-3,-1,-3,-10,0,-12v21,-1,66,-17,78,-22v2,0,4,1,5,4"},"2":{"d":"73,-41v8,9,35,4,50,4v26,0,31,-1,41,-20v3,-2,11,-2,12,2v-3,23,-11,47,-17,56r-148,0v-3,-1,-5,-5,-4,-8v31,-31,104,-88,103,-151v0,-25,-15,-44,-39,-44v-21,0,-35,13,-47,33v-4,3,-11,1,-11,-5v14,-37,47,-56,82,-56v43,0,68,27,68,61v13,34,-67,95,-90,128"},"3":{"d":"31,-25v22,1,21,28,40,27v15,0,48,-20,48,-65v0,-52,-49,-70,-78,-40v-7,-1,-11,-9,-8,-17v26,-12,72,-19,73,-61v0,-14,-12,-27,-29,-27v-18,0,-34,14,-45,30v-5,2,-10,-2,-10,-7v15,-29,43,-45,76,-45v67,0,84,63,11,87v-4,2,-1,5,4,5v32,-1,60,21,60,56v10,51,-82,102,-124,102v-20,0,-39,-7,-39,-25v0,-10,7,-20,21,-20"},"4":{"d":"100,-148v-1,-20,32,-20,43,-24v3,0,4,2,4,6r0,68v-3,19,19,8,32,11v6,3,6,17,0,20v-17,1,-38,-8,-32,21v0,33,3,34,26,34v3,3,3,12,-1,13v-27,-2,-83,-1,-106,0v-4,-1,-4,-10,-1,-13v29,1,39,-4,35,-45v0,-9,-1,-10,-9,-10r-83,0v-4,-2,-5,-7,-4,-11r117,-168v6,-9,11,-8,23,-8v6,0,9,2,3,10r-108,149v-3,5,-3,8,8,8r44,0v8,0,9,-1,9,-11r0,-50"},"5":{"d":"59,-224r96,-11v3,0,4,1,4,4v-3,14,-11,28,-20,37r-81,9v-8,1,-9,11,-11,19v-2,8,3,9,10,10v47,5,111,19,111,78v0,70,-84,101,-149,101v-5,-2,-7,-13,-2,-17v50,0,104,-21,105,-64v0,-52,-54,-57,-90,-60v-11,-1,-13,-4,-10,-12r21,-83v3,-9,5,-9,16,-11"},"6":{"d":"10,-91v1,-86,75,-154,162,-158v4,2,5,8,1,12v-74,17,-110,63,-110,142v0,38,13,83,40,83v48,-10,29,-106,-14,-109v-6,1,-12,1,-11,-6v37,-38,101,1,101,52v0,48,-32,80,-83,80v-54,0,-86,-40,-86,-96"},"7":{"d":"18,-226r164,0v3,0,4,3,3,5r-139,243v-6,1,-16,-3,-17,-11v34,-64,78,-125,106,-193v0,-4,-5,-6,-10,-6v-39,5,-97,-14,-109,18v-3,3,-11,2,-12,-2v6,-18,10,-41,14,-54"},"8":{"d":"92,5v-42,0,-79,-19,-79,-58v0,-27,19,-46,47,-60v-61,-26,-44,-117,36,-117v41,0,70,22,70,56v0,25,-21,39,-40,49v27,14,49,33,49,68v0,34,-27,62,-83,62xm59,-57v0,46,68,66,68,12v0,-29,-19,-44,-49,-58v-13,13,-19,28,-19,46xm125,-175v2,-50,-59,-51,-59,-5v0,17,12,32,42,44v11,-7,17,-22,17,-39"},"9":{"d":"85,-214v-46,0,-31,115,20,108v7,15,-19,18,-34,19v-34,0,-61,-28,-61,-65v0,-46,35,-78,80,-78v110,2,102,150,36,202v-32,25,-78,49,-108,50v-4,-2,-5,-10,-1,-12v70,-18,106,-78,106,-144v0,-28,-8,-80,-38,-80"},":":{"d":"47,5v-15,0,-29,-11,-29,-29v0,-17,13,-30,29,-30v17,0,29,14,29,30v0,16,-12,29,-29,29xm47,-83v-15,0,-29,-11,-29,-28v0,-18,13,-31,29,-31v17,0,29,15,29,31v0,16,-12,28,-29,28","w":93},";":{"d":"48,3v0,-27,-31,-16,-32,-40v0,-13,11,-23,26,-23v15,0,37,12,37,46v0,36,-28,56,-59,63v-7,-1,-8,-9,-4,-12v14,-5,32,-17,32,-34xm47,-83v-15,0,-29,-11,-29,-28v0,-18,13,-31,29,-31v17,0,29,15,29,31v0,16,-12,28,-29,28","w":93},"<":{"d":"24,-85r140,-64r0,30r-103,45r103,44r0,30r-140,-64r0,-21"},"=":{"d":"166,-38r-144,0r0,-26r144,0r0,26xm166,-90r-144,0r0,-26r144,0r0,26"},">":{"d":"24,-149r140,64r0,21r-140,64r0,-30r103,-45r-103,-44r0,-30"},"?":{"d":"36,-73v-18,-23,-27,-71,16,-78v10,-5,34,-12,34,-20v8,-24,-72,1,-72,-39v0,-12,10,-23,26,-23v48,0,93,88,42,112v-18,9,-50,17,-34,46v-2,3,-9,5,-12,2xm47,5v-14,0,-29,-11,-29,-29v0,-17,13,-30,29,-30v17,0,29,14,29,30v0,16,-12,29,-29,29","w":119},"@":{"d":"74,-31v2,-27,61,-122,110,-95v3,-14,20,-22,34,-12v-5,11,-36,85,-41,97v-3,9,-2,12,5,12v29,0,63,-25,63,-68v0,-50,-38,-82,-86,-82v-67,0,-110,58,-110,121v0,39,22,96,100,96v27,0,44,-7,55,-12v4,1,6,8,4,11v-84,41,-194,8,-194,-95v0,-84,68,-137,145,-137v68,0,105,46,105,97v0,47,-34,83,-95,83v-46,0,-13,-24,-14,-42v-19,23,-50,42,-65,42v-11,0,-16,-8,-16,-16xm165,-120v-22,10,-65,66,-50,84v21,-5,56,-56,61,-75v-2,-4,-5,-9,-11,-9","w":276},"A":{"d":"134,-75v-6,-12,-41,-3,-58,-6v-23,5,-19,40,-27,62v0,2,2,4,13,6v9,-2,16,7,10,14v-27,-2,-50,-1,-80,0v-4,-2,-3,-10,-1,-13v41,-2,39,-38,54,-76v16,-39,40,-96,47,-134v24,-4,32,-35,39,-14r66,190v8,29,13,32,37,34v3,2,3,11,0,13r-104,0v-4,-2,-5,-10,-1,-13v39,3,8,-43,5,-63xm84,-100v14,-3,45,8,38,-11r-22,-67v-7,13,-17,47,-24,67v-3,9,-1,11,8,11","w":224,"k":{"c":32,"C":32,"d":-2,"e":2,"g":9,"G":2,"o":2,"O":-2,"s":9,"t":2,"T":9,"u":-2,"U":2,"Y":25,"z":6,"Q":17,"V":22,"W":-2,"b":9,"p":29,"q":33,"v":2,"w":4,"i":2,"r":15,"y":15}},"B":{"d":"219,-68v-5,93,-120,63,-207,69v-7,-8,2,-16,11,-15v16,-3,18,-5,18,-38r0,-127v0,-43,-2,-41,-26,-43v-3,-2,-3,-13,2,-13v68,-3,190,-22,188,55v-1,37,-29,41,-44,49v27,10,59,24,58,63xm91,-203r0,59v0,9,0,10,19,10v31,0,42,-20,42,-41v0,-32,-19,-47,-44,-47v-17,0,-17,3,-17,19xm111,-118v-38,0,-14,34,-20,57v0,28,3,46,31,46v27,0,41,-21,41,-50v0,-31,-18,-53,-52,-53","w":228,"k":{"h":4,"m":2,"A":11,",":2,"S":11,":":4,"-":11,")":2}},"C":{"d":"14,-116v0,-112,123,-144,218,-118v0,6,1,35,4,56v-1,4,-11,6,-14,3v-9,-34,-32,-52,-67,-52v-40,0,-83,34,-83,106v0,72,41,110,85,110v43,0,63,-31,73,-56v3,-2,12,-1,14,3v-3,27,-9,48,-14,56v-91,34,-216,2,-216,-108","w":248,"k":{"s":4,"T":4,"z":4,"V":4,"q":6,"i":6,"r":4,"h":4,"k":2,"l":9,"n":-11,"f":-11,"j":-5,"m":-5,"x":-5,"A":-11}},"D":{"d":"271,-122v0,97,-91,122,-203,122v-18,0,-36,0,-56,1v-3,-2,-3,-11,0,-13v24,-3,30,-1,29,-40r0,-127v0,-39,-2,-42,-24,-44v-4,-2,-4,-12,1,-12v30,-2,58,-4,96,-4v88,0,157,43,157,117xm114,-222v-21,0,-21,1,-21,25r0,132v-2,37,6,51,37,51v62,0,83,-56,83,-105v0,-65,-34,-103,-99,-103","w":285,"k":{"z":2,"b":2,"v":4,"h":13,"m":4,"x":4,".":-14,"S":-14,":":-14,";":6}},"E":{"d":"93,-103v6,47,-19,86,43,86v31,0,44,-1,63,-41v3,-4,12,-3,14,1v-2,19,-10,48,-15,58r-192,0v-3,-2,-3,-11,0,-13v26,-4,35,3,35,-40r0,-134v1,-39,-5,-35,-27,-40v-4,-2,-3,-11,0,-13r177,0v0,6,3,32,4,56v-1,4,-9,5,-13,2v-6,-38,-32,-42,-78,-40v-11,0,-11,1,-11,14r0,63v-3,19,21,9,34,11v23,3,25,-11,29,-29v2,-3,11,-3,13,0v-1,23,-1,53,0,77v-23,10,-9,-39,-42,-29v-13,3,-37,-9,-34,11","w":213,"k":{"v":2,"i":2,"r":2,"y":2,"h":6,"l":4,"n":2,"j":2,"m":4,"x":4,"A":6,"X":2,",":11,".":11,"S":2,":":2,"-":13}},"F":{"d":"93,-206r0,65v-3,20,23,9,37,11v23,4,25,-11,29,-29v2,-3,11,-3,13,0r0,76v-23,12,-9,-37,-42,-28v-13,4,-40,-9,-37,11v4,28,-10,93,18,87r13,1v3,3,3,11,0,13r-113,0v-3,-2,-3,-10,0,-13v25,-3,30,1,30,-40r0,-134v0,-38,-4,-37,-26,-40v-3,-2,-3,-11,1,-13r175,0v0,6,0,32,1,56v-2,4,-9,5,-14,2v-4,-42,-29,-40,-74,-40v-11,0,-11,1,-11,15","w":197,"k":{".":43,",":43,"c":11,"O":13,"s":4,"T":13,"y":-4,"X":2,"}":-2}},"G":{"d":"72,-122v0,72,32,106,90,111v31,2,23,-24,25,-50v2,-26,-16,-23,-35,-26v-4,-2,-4,-11,0,-13r108,0v10,22,-27,5,-21,39v3,14,-4,44,7,44v5,14,-13,10,-26,14v-95,30,-206,-12,-206,-113v0,-72,64,-127,148,-127v40,0,60,8,71,8v1,11,2,36,5,58v-1,4,-11,5,-13,1v-12,-34,-35,-51,-68,-51v-57,0,-85,48,-85,105","w":264,"k":{"k":2,"m":4,")":4,"E":9,"I":4}},"H":{"d":"183,-114r-75,0v-15,0,-15,0,-15,10v0,35,-16,103,29,92v3,3,3,11,0,13r-108,0v-6,-6,0,-17,9,-14v16,-2,18,-5,18,-39r0,-134v0,-39,-4,-38,-27,-40v-3,-2,-3,-11,0,-13r104,0v5,6,1,17,-8,14v-25,-5,-15,54,-17,81v0,10,0,11,15,11r75,0v30,3,9,-34,15,-53v1,-38,-4,-37,-28,-40v-3,-2,-3,-11,0,-13r105,0v5,5,1,16,-7,14v-17,3,-19,6,-19,39r0,134v-1,39,4,37,27,40v3,3,3,11,0,13r-105,0v-5,-5,-1,-16,8,-14v30,6,19,-61,19,-91v0,-10,0,-10,-15,-10","w":290,"k":{"a":4,"u":4,"U":2,"Y":6,"w":4,"S":12,"}":13,"E":13}},"I":{"d":"93,-185r0,132v0,40,4,38,28,41v3,3,3,11,0,13r-109,0v-6,-6,1,-17,10,-14v17,-3,19,-6,19,-40r0,-132v1,-41,-6,-36,-29,-41v-3,-2,-3,-11,0,-13r109,0v6,28,-39,0,-28,54","w":133,"k":{"h":4,"k":6,"n":6,"j":4,"x":9,"X":6,",":9,"S":12,";":2,"E":2,"I":12}},"J":{"d":"-1,32v11,0,26,17,34,18v9,0,11,-17,12,-29v5,-41,2,-150,3,-206v1,-43,-7,-36,-32,-41v-3,-2,-3,-11,0,-13r112,0v6,28,-39,0,-28,54v-4,112,28,254,-93,257v-10,1,-27,-2,-27,-14v0,-10,8,-25,19,-26","w":137,"k":{"d":6,"z":8,"Q":15,"V":6,"y":2,";":4,"E":6}},"K":{"d":"99,-129v36,-17,62,-64,81,-91v0,-4,-9,-6,-15,-6v-4,-3,-3,-11,2,-13r88,0v4,2,5,10,2,13v-54,1,-73,41,-106,79v18,34,49,78,77,117v13,16,19,16,38,18v2,4,2,11,-1,13r-108,0v-18,-15,23,-11,11,-25v-20,-24,-43,-78,-67,-90v-15,0,-7,45,-8,62v-2,40,4,37,28,40v3,3,3,11,0,13r-108,0v-6,-6,1,-17,10,-14v16,-2,18,-5,18,-39r0,-134v1,-39,-4,-37,-28,-40v-4,-2,-4,-11,0,-13r108,0v6,7,0,16,-10,14v-27,-5,-18,55,-18,83v0,12,2,13,6,13","w":257,"k":{"m":-2,"A":15,",":2,"S":15,":":6,"-":15,")":9}},"L":{"d":"93,-60v3,38,-2,42,43,43v33,0,42,-1,64,-42v2,-4,11,-3,14,2v-2,18,-11,48,-16,58r-188,0v-3,-2,-4,-10,-1,-13v26,-3,32,3,32,-40r0,-134v1,-39,-4,-37,-29,-40v-3,-2,-3,-11,1,-13r107,0v6,6,0,16,-9,14v-16,3,-18,6,-18,39r0,126","w":210,"k":{",":67,".":47,"-":11,")":11,"I":11}},"M":{"d":"40,-123v0,-44,18,-105,-28,-103v-3,-3,-3,-12,1,-13v23,1,55,2,81,0v7,52,48,118,72,166v23,-52,57,-113,71,-166v32,3,49,1,80,0v13,23,-39,8,-31,41v0,74,3,113,3,158v0,22,7,28,27,28v3,3,3,12,0,13r-103,0v-5,-2,-5,-10,-1,-13v20,-2,27,-2,27,-29r-1,-135v-27,58,-56,118,-80,179v-3,3,-12,2,-16,0v-15,-45,-56,-134,-78,-179r-3,137v-3,25,11,24,30,27v3,3,3,11,0,13v-29,-1,-53,-2,-83,0v-7,-3,-4,-17,5,-14v18,-3,19,-5,21,-27v2,-18,6,-49,6,-83","w":326,"k":{"j":6,"c":6,"G":9,"W":4,"p":9,")":9}},"N":{"d":"240,-213v-11,50,-3,145,-5,210v-25,19,-24,1,-50,-31r-122,-149v-4,39,-4,126,3,159v4,10,18,11,31,12v3,3,2,11,0,13r-88,0v-11,-18,23,-12,26,-25v8,-41,8,-140,2,-188v-1,-10,-16,-14,-31,-14v-2,-3,-2,-12,2,-13r80,0v12,36,92,118,124,158v2,-35,3,-107,-4,-132v-4,-10,-17,-12,-31,-13v-2,-3,-2,-11,0,-13r89,0v4,4,2,16,-6,14v-10,1,-18,4,-20,12","w":269,"k":{")":11}},"O":{"d":"143,-243v75,0,126,50,126,123v0,79,-52,126,-130,126v-72,0,-125,-48,-125,-123v0,-71,54,-126,129,-126xm212,-115v0,-62,-27,-112,-72,-112v-44,0,-68,42,-68,102v0,44,15,114,74,114v47,0,66,-46,66,-104","w":283,"k":{"v":6,"w":6,"y":4,"x":4}},"P":{"d":"15,-235v80,-4,193,-20,193,68v0,63,-59,70,-90,67v-3,-2,-4,-7,-1,-9v30,-10,36,-31,36,-58v0,-26,-14,-55,-46,-55v-14,0,-14,4,-14,18r0,152v-1,42,6,36,29,41v4,2,4,10,0,12r-109,0v-8,-7,2,-15,10,-14v16,-3,18,-5,18,-39r0,-127v0,-44,-2,-42,-27,-44v-3,-2,-3,-10,1,-12","w":216,"k":{"h":4,"H":2,".":65,",":65,"c":9,"e":9,"s":13,"q":6,"w":2}},"Q":{"d":"143,-243v75,0,126,50,126,123v0,59,-29,99,-75,117v-2,1,-1,4,3,8v33,30,66,64,121,52v3,1,4,6,3,9v-66,34,-140,-5,-181,-49v-7,-7,-11,-12,-19,-12v-59,-5,-107,-51,-107,-122v0,-71,54,-126,129,-126xm140,-227v-44,0,-68,42,-68,102v0,44,15,115,74,115v47,0,66,-47,66,-105v0,-62,-27,-112,-72,-112","w":283,"k":{"X":4,"W":11,"V":6,"a":4,"e":9,"o":9,"u":13,"i":4,"y":11,"n":2}},"R":{"d":"16,-235v75,-7,192,-15,192,63v0,32,-22,45,-38,54v-4,1,-4,4,-2,7v33,61,35,87,80,101v3,1,3,7,1,9v-42,9,-80,-2,-98,-35v-11,-20,-20,-36,-28,-55v-5,-10,-10,-13,-19,-13v-29,-2,-8,33,-14,52v0,38,5,37,28,40v3,2,3,11,0,13r-105,0v-6,-7,1,-17,10,-14v16,-3,18,-6,18,-39r0,-127v1,-44,-3,-40,-26,-44v-3,-2,-3,-11,1,-12xm113,-120v30,0,40,-14,40,-49v0,-32,-19,-53,-47,-53v-15,0,-16,1,-16,18r0,70v0,13,1,14,23,14","w":239,"k":{"e":7,"g":7,"o":4,"s":7,"t":7,"U":2,"Q":-3,"W":-3,"q":-7,"x":2,"X":6,",":-3,"S":6,":":-4,"}":22,"]":22}},"S":{"d":"19,-175v0,-59,79,-82,137,-60v3,8,7,28,7,52v-2,4,-11,4,-14,1v-6,-19,-22,-45,-48,-45v-52,0,-42,59,-4,75v35,15,75,32,75,85v0,44,-37,73,-91,73v-67,0,-70,-12,-73,-72v3,-5,11,-5,14,-1v7,23,31,56,62,56v27,0,39,-18,39,-36v0,-66,-104,-55,-104,-128","w":182,"k":{"t":14,"T":12}},"T":{"d":"15,-245v19,-4,2,7,40,7r134,0v33,5,26,-13,42,-6v-3,12,-6,41,-5,62v-2,3,-11,4,-13,1v-5,-31,-21,-44,-60,-40v-9,0,-10,1,-10,10r0,159v-1,42,6,37,33,40v3,3,3,11,0,13r-119,0v-3,-2,-3,-10,0,-13v27,-3,35,3,35,-40r0,-159v3,-16,-19,-10,-31,-10v-26,0,-34,14,-45,41v-4,2,-11,1,-13,-4v7,-24,9,-47,12,-61","w":232,"k":{"a":9,"Q":6,"V":6}},"U":{"d":"137,6v-63,0,-98,-31,-98,-102r0,-90v0,-38,-4,-37,-27,-40v-3,-3,-3,-11,1,-13r105,0v6,6,0,17,-9,14v-16,3,-18,6,-18,39v0,75,-24,168,59,172v80,5,61,-134,55,-199v-4,-10,-17,-12,-31,-13v-3,-3,-2,-11,0,-13r89,0v10,18,-23,11,-26,26v-7,15,-8,74,-6,106v3,65,-27,113,-94,113","w":266,"k":{"G":39,"O":28,"s":-6,"t":43,"T":43,"u":4,"U":29,"Y":36,"z":29,"v":18,"w":18}},"V":{"d":"220,-212v-28,48,-74,165,-93,215v-4,3,-18,5,-22,0r-74,-188v-17,-43,-14,-34,-41,-41v-3,-4,-2,-11,1,-13r103,0v3,2,3,9,1,13v-32,4,-20,13,-6,48r43,109v19,-42,45,-108,57,-149v2,-7,-34,-6,-19,-21r78,0v3,2,3,10,1,13v-14,1,-23,4,-29,14","w":231,"k":{"}":-15,"]":-15,"Q":9,";":16,":":6,".":34,"-":22,",":43,")":-15,"d":17,"o":22,"t":22,"u":13,"U":6,"z":11,"j":2,"m":11}},"W":{"d":"364,-226v-34,6,-29,15,-45,50v-19,42,-59,132,-76,179v-6,4,-16,4,-22,0r-42,-94r-44,96v-3,3,-17,4,-21,0r-92,-204v-11,-26,-13,-23,-32,-27v-3,-4,-3,-11,1,-13v24,1,65,2,90,0v5,4,4,16,-5,14v-23,7,-5,19,9,50r54,118v7,-23,35,-46,24,-71r-34,-76v-9,-19,-11,-21,-28,-22v-4,-3,-3,-11,1,-13v25,1,66,2,87,0v6,3,3,16,-5,14v-25,11,12,44,14,63v6,-14,23,-46,24,-57v1,-4,-13,-6,-18,-7v-2,-3,-2,-11,1,-13v22,2,53,1,72,0v7,8,0,16,-10,15v-26,6,-46,63,-57,85v7,22,30,67,36,81r61,-161v0,-3,-10,-6,-15,-7v-3,-3,-2,-11,1,-13v23,1,48,2,70,0v3,2,3,10,1,13","w":345,"k":{"}":-15,"]":-17,"Q":9,";":22,":":22,".":43,"-":9,",":43,")":-15,"c":6,"C":2,"G":2,"V":9,"W":2,"b":9,"p":9}},"X":{"d":"110,-96v-16,24,-34,51,-46,79v-1,4,15,4,21,5v4,3,3,12,-1,13r-87,0v-6,-5,-3,-15,7,-13v48,-13,55,-54,86,-93v8,-10,7,-10,0,-23r-52,-78v-9,-12,-20,-17,-38,-20v-3,-3,-3,-11,0,-13v21,1,94,2,111,0v6,5,4,16,-6,14v-15,3,-14,6,-7,20v10,17,21,33,32,49v14,-23,31,-39,40,-65v-1,-3,-14,-4,-19,-5v-3,-3,-3,-11,1,-13v20,2,64,1,83,0v4,2,4,10,2,13v-14,1,-24,1,-33,10v-19,20,-44,50,-60,78v21,41,50,81,62,99v16,23,23,25,47,27v2,3,2,11,-1,13v-26,-2,-87,-1,-117,0v-7,-5,-2,-17,9,-14v22,-5,14,-4,3,-26v-5,-10,-32,-50,-37,-57","w":239,"k":{"Q":33,"s":33,"T":9,"U":33,"z":9,"V":9,"q":33,"k":32,"l":22,"]":27}},"Y":{"d":"120,-121v14,-24,44,-80,49,-99v-9,-3,-30,-5,-20,-19v25,1,53,2,76,0v13,17,-20,12,-26,23v-17,32,-67,95,-67,164v0,43,6,37,33,40v2,3,2,11,0,13r-115,0v-3,-2,-3,-10,0,-13v32,5,32,-18,31,-58v-3,-52,-37,-89,-53,-131v-8,-20,-15,-23,-35,-25v-3,-3,-3,-12,1,-13v27,2,79,1,104,0v11,13,-13,17,-21,19v8,25,32,74,43,99","w":207,"k":{"G":2,"o":2,"O":2,"s":15,"t":4,"u":15,"U":6,"Y":24,"h":13,"k":13,"f":13,")":2}},"Z":{"d":"142,-219v-9,-4,-37,-1,-51,-2v-42,0,-50,11,-62,41v-5,3,-12,2,-15,-2v7,-25,11,-45,14,-64v18,-2,5,8,40,8r145,-1v2,1,3,4,3,6v-19,20,-130,189,-139,212v2,6,49,4,67,4v35,0,47,-4,67,-45v4,-3,11,-1,14,3v-2,19,-10,51,-16,60r-202,0v-9,-12,18,-35,30,-54","w":221,"k":{"a":36,"c":18,"Y":-4,"p":6,"q":-4,"v":29,"w":29,"r":22,"y":27,"k":14,"l":14,"f":2,"m":2,"x":2,",":2}},"[":{"d":"44,55r0,-303r67,1v3,2,3,10,1,12v-35,8,-40,-9,-39,61r0,155v0,69,2,55,39,61v6,19,-14,13,-40,13r-28,0","w":122,"k":{"J":-13}},"\\":{"d":"40,-243r68,249r-32,0r-69,-249r33,0","w":115},"]":{"d":"79,-248r0,303r-68,-1v-9,-16,14,-13,25,-15v11,-2,13,-8,13,-58r0,-155v0,-71,-3,-53,-38,-61v-3,-2,-3,-10,0,-12","w":122},"^":{"d":"166,-88r-32,0r-40,-95r-40,95r-32,0r60,-137r24,0"},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0","w":180},"a":{"d":"12,-99v8,-30,38,-46,78,-50v50,-5,47,52,44,100v-2,32,12,37,29,26v4,1,6,5,5,9v-5,5,-21,19,-42,19v-16,0,-23,-10,-36,-15v-21,19,-79,23,-78,-23v-5,-28,47,-39,71,-47v19,-6,10,-50,-12,-51v-14,-5,-16,25,-25,32v-8,6,-33,17,-34,0xm76,-18v19,2,15,-36,12,-47v-31,-4,-41,43,-12,47","w":159},"b":{"d":"180,-77v0,72,-80,98,-138,72v-6,-1,-14,11,-19,3r1,-198v6,-27,-18,-18,-14,-37v18,-2,42,-20,62,-18r-1,107v3,21,24,-7,42,-1v41,0,67,31,67,72xm88,-126v-31,0,-14,49,-17,75v-2,19,9,39,28,39v23,0,32,-25,32,-54v0,-36,-18,-60,-43,-60","w":191,"k":{"w":-4,"v":4,"u":33,"Y":9,"Q":33,"W":9,"b":36,"p":9,"i":30,"n":4,"f":33,"j":29,"I":42}},"c":{"d":"101,-149v20,0,48,0,46,25v-1,14,-6,23,-16,19v-22,-44,-73,-27,-73,24v0,42,56,81,84,40v4,-1,9,2,9,8v-8,18,-29,38,-64,38v-45,0,-76,-30,-76,-73v0,-51,42,-81,90,-81","w":149,"k":{"e":4,"g":4}},"d":{"d":"169,-255r-1,196v0,47,0,45,24,39v3,3,3,12,0,16v-45,0,-63,21,-71,8v0,-5,3,-17,-2,-14v-44,35,-110,0,-108,-56v2,-57,48,-91,106,-81v9,-10,1,-36,4,-53v5,-26,-19,-19,-13,-37v17,-2,41,-20,61,-18xm102,-19v33,1,16,-57,19,-88v2,-15,-11,-24,-23,-25v-18,0,-36,19,-36,56v0,24,10,57,40,57","w":193,"k":{"t":4,"T":4}},"e":{"d":"134,-85r-69,0v-8,0,-9,0,-9,6v-5,40,55,77,84,35v4,-1,9,2,9,8v-31,74,-137,39,-137,-32v0,-46,32,-81,77,-81v38,0,58,24,58,52v0,7,-2,12,-13,12xm59,-107v6,9,51,12,47,-6v0,-12,-7,-19,-19,-19v-15,0,-28,14,-28,25","w":151,"k":{"Q":9,"V":9,".":2}},"f":{"d":"132,-208v-19,0,-35,-38,-40,-31v-9,0,-15,11,-15,44r0,41v-2,21,30,6,44,10v3,5,3,17,-3,19v-14,4,-41,-10,-41,11r0,72v-1,34,5,29,25,31v3,2,3,10,0,12r-92,0v-8,-23,29,-1,20,-43r0,-72v7,-22,-27,0,-23,-20v7,-5,22,-8,23,-18v1,-53,19,-106,81,-105v21,0,42,10,42,29v0,12,-9,20,-21,20","w":111,"k":{"'":-28,"}":-35,"]":-39,")":-41,"\"":-32}},"g":{"d":"173,27v0,44,-50,70,-96,70v-51,0,-70,-24,-70,-46v-1,-17,22,-23,29,-29v4,-3,3,-5,0,-5v-15,-6,-28,-22,-19,-37v12,-11,27,-12,25,-25v-52,-24,-34,-104,40,-104v21,0,40,6,54,13v14,3,44,-9,44,9v0,19,-16,15,-32,15v9,43,-23,80,-87,74v-12,7,-4,22,12,22v44,-1,99,-11,100,43xm59,-97v-3,49,45,65,45,7v3,-53,-44,-58,-45,-7xm100,20v-22,0,-50,-4,-50,17v0,25,19,41,47,41v23,0,38,-11,38,-29v0,-21,-15,-29,-35,-29","w":172,"k":{"c":2,"C":2,"d":2,"e":4,"g":4,"G":2,"o":2,"v":6,"w":6}},"h":{"d":"99,-123v-39,-1,-20,54,-23,87v-2,24,2,22,16,24v3,3,3,11,-1,13v-21,-2,-58,-1,-82,0v-4,-3,-3,-16,6,-13v12,-2,14,-5,14,-30r0,-158v6,-27,-18,-18,-14,-37v17,-2,41,-20,62,-18v1,40,-4,87,1,123v11,-5,25,-17,47,-17v56,0,46,55,46,107v0,28,1,29,20,30v3,3,3,11,-1,13v-19,-1,-64,-2,-82,0v-5,-4,-2,-16,6,-14v8,-1,10,-4,10,-23v0,-35,15,-85,-25,-87","w":196},"i":{"d":"78,-151v-2,31,-1,75,-1,109v0,29,1,30,20,30v3,3,3,11,0,13v-24,-2,-64,-1,-87,0v-5,-4,-2,-17,7,-13v23,1,9,-60,13,-84v5,-26,-16,-18,-12,-37v21,-3,46,-24,60,-18xm55,-230v15,0,25,11,25,26v0,17,-13,26,-27,26v-16,0,-25,-11,-25,-26v0,-16,12,-26,27,-26","w":102,"k":{"C":-5,"d":-5,"e":-5,"G":4,"O":2,"s":6}},"j":{"d":"78,-151v-3,61,7,142,-8,190v-8,26,-26,42,-73,58v-17,-11,10,-19,13,-25v27,-22,20,-111,21,-168v6,-26,-18,-19,-12,-37v21,-3,45,-24,59,-18xm55,-230v15,0,25,11,25,26v0,17,-13,26,-27,26v-16,0,-25,-11,-25,-26v0,-16,13,-26,27,-26","w":101},"k":{"d":"27,-42r0,-158v6,-26,-17,-18,-13,-37v17,-2,41,-20,61,-18r-1,166v15,19,43,-24,50,-37v-1,-5,-11,-4,-16,-5v-5,-8,-1,-16,9,-13v17,0,47,-2,68,-5v4,2,4,10,2,13v-25,1,-52,26,-62,40v6,18,40,63,50,75v5,6,15,7,26,9v3,3,2,12,-1,13v-17,-1,-73,-2,-90,0v-8,-6,3,-16,9,-16v-7,-18,-22,-35,-32,-51v-3,-6,-13,-9,-13,3v1,24,-6,58,20,51v3,3,3,11,0,13v-24,-2,-63,-1,-88,0v-5,-4,-2,-17,7,-13v13,-2,14,-5,14,-30","w":191,"k":{"c":9,"C":6,"e":6,"g":2,"u":2,"U":2,"Y":2,"z":4,"Q":2,"W":4,"k":14,"l":14}},"l":{"d":"27,-42r0,-158v6,-26,-17,-18,-13,-37v18,-2,41,-20,61,-18r-1,213v0,28,2,29,20,30v3,3,3,11,0,13v-23,-2,-63,-1,-86,0v-6,-4,-4,-16,6,-13v12,-1,13,-5,13,-30","w":100,"k":{"c":15,"O":20,"s":-2,"t":-2,"T":12,"W":-2,"x":2,"A":2}},"m":{"d":"99,-123v-37,1,-22,54,-22,87v0,22,1,24,16,24v3,3,3,11,0,13v-20,-2,-61,-1,-81,0v-5,-3,-4,-16,5,-13v23,0,8,-59,13,-84v5,-26,-16,-18,-12,-37v20,-3,45,-24,60,-18v1,7,-3,18,1,19v13,-5,26,-15,48,-17v17,-2,30,14,41,20v14,-5,27,-20,53,-20v52,0,43,57,43,107v0,27,2,29,19,30v3,3,3,11,0,13v-19,-1,-62,-2,-81,0v-5,-3,-4,-16,5,-13v9,-1,10,-5,10,-24v0,-35,14,-86,-24,-87v-38,-1,-22,55,-22,87v0,22,0,24,15,24v3,3,3,11,0,13v-19,-1,-58,-1,-77,0v-5,-3,-4,-16,5,-13v19,-6,10,-61,10,-86v0,-13,-7,-25,-25,-25","w":290},"n":{"d":"100,-123v-38,-1,-23,54,-23,87v0,22,1,24,16,24v3,3,3,11,0,13v-22,-2,-59,-1,-83,0v-4,-3,-3,-16,6,-13v25,0,9,-59,14,-84v5,-26,-16,-18,-12,-37v21,-3,46,-24,60,-18v1,7,-3,18,1,19v13,-5,27,-16,48,-17v55,0,45,56,45,107v0,28,2,29,20,30v3,3,3,11,0,13v-20,-1,-61,-2,-83,0v-10,-21,21,-3,16,-37v-5,-35,14,-86,-25,-87","w":198,"k":{"C":38,"d":2,"e":13,"g":25,"o":11,"O":32,"s":40,"Y":17,"V":17,":":25,"-":25}},"o":{"d":"92,5v-43,0,-80,-24,-81,-74v0,-52,40,-80,83,-80v42,0,81,26,81,77v0,52,-39,77,-83,77xm92,-132v-16,0,-29,16,-29,55v0,38,12,65,33,65v20,0,27,-23,27,-55v-1,-35,-11,-65,-31,-65","w":185,"k":{"c":11,"e":11,"s":11,"q":9,"w":11,"E":18,"I":18}},"p":{"d":"28,50r0,-146v6,-26,-18,-19,-12,-37v19,-2,45,-29,59,-19v0,5,-1,15,2,17v11,-5,27,-14,46,-14v38,0,61,30,61,69v0,55,-42,92,-104,84v-10,5,-4,32,-5,46v-2,33,5,28,25,30v3,2,3,11,0,13r-92,0v-6,-4,-4,-16,6,-13v12,-2,14,-5,14,-30xm94,-124v-34,0,-15,55,-19,83v-2,15,11,29,25,29v22,0,35,-23,35,-57v0,-35,-18,-55,-41,-55","w":195,"k":{"w":4}},"q":{"d":"11,-66v0,-68,71,-95,137,-78v4,2,17,-13,22,-4v-5,60,-1,134,-2,198v-1,33,5,28,25,30v3,2,3,11,0,13r-94,0v-5,-5,-2,-17,8,-13v24,1,10,-53,14,-77v0,-4,0,-7,-3,-7v-56,28,-107,-11,-107,-62xm108,-17v9,0,14,-2,13,-11v-5,-38,15,-103,-25,-104v-19,0,-35,21,-35,53v0,42,24,62,47,62","w":190},"r":{"d":"112,-104v-8,0,-24,-17,-28,-14v-13,8,-6,55,-7,77v-2,33,5,28,25,30v3,2,3,11,0,13r-92,0v-5,-5,-1,-16,7,-14v24,1,9,-59,13,-83v5,-26,-16,-18,-12,-37v17,-5,42,-15,53,-22v13,0,-2,21,9,23v12,-14,55,-32,55,3v0,17,-12,24,-23,24","w":133,"k":{"d":2,"e":2,"G":2,"o":2,"O":2,"t":2,"u":2,"U":2,"Y":11,"z":2,"V":22,"W":2,"p":9,"q":19,"v":2,"w":2,"i":2,"h":-14,"k":-14,"n":4,"f":2,"j":2,"m":2,"x":2,"A":2,"X":2,",":-2,".":11,"S":11}},"s":{"d":"58,-117v6,26,72,37,63,74v3,49,-74,59,-107,37v-4,-7,-6,-25,-5,-41v2,-3,10,-4,12,-1v5,15,18,36,37,36v10,0,18,-6,18,-18v0,-34,-66,-35,-61,-73v-5,-46,66,-54,96,-38v4,7,6,22,6,36v-2,3,-11,3,-13,1v-7,-21,-16,-28,-28,-28v-10,0,-18,6,-18,15","w":128,"k":{"s":-2,"T":11,"U":4,"z":11,"Q":4,"V":11,"p":19,"q":4,"v":13,"w":14,"r":11,"y":19,"l":11}},"t":{"d":"117,-137v3,17,-22,11,-37,12v-5,0,-5,1,-5,9v2,41,-15,112,40,91v3,1,6,5,5,9v-18,27,-92,32,-92,-20r0,-80v5,-19,-28,0,-20,-20v27,-13,36,-17,56,-44v15,-5,10,17,11,29v-1,20,39,-6,42,14","w":116,"k":{"z":4,"b":4,"v":2,"r":9,"l":9,"n":2,"j":11,"m":4,"A":2,".":-9,"S":-9,";":4,"}":6,"]":6,")":9,"I":4}},"u":{"d":"104,-140v23,3,58,-14,67,-5v-2,27,-1,67,-1,97v-1,33,4,35,24,28v3,1,3,14,-1,16v-43,-1,-66,22,-71,8v-1,-6,4,-16,-3,-16v-26,24,-98,28,-91,-29v-5,-28,13,-84,-16,-86v-2,-3,-2,-10,2,-13v22,4,53,-14,62,-5v-2,26,-1,62,-1,91v0,18,2,33,25,33v39,0,19,-53,23,-86v2,-17,-7,-18,-21,-20v-3,-3,-2,-11,2,-13","w":195,"k":{"p":-13,"q":40,"w":13,"r":43,"h":45,"l":-6,"n":25,"f":13,"j":-2,"m":-2,".":43,"S":12,":":39,"-":36}},"v":{"d":"99,-59v9,-20,20,-42,26,-68v-7,-1,-22,-9,-13,-18v19,2,41,1,57,0v5,4,3,16,-5,14v-11,1,-14,6,-21,19v-19,37,-35,76,-52,115v-2,2,-13,3,-16,0v-19,-46,-26,-63,-49,-111v-11,-22,-10,-22,-28,-24v-3,-3,-3,-12,1,-13v24,2,58,1,85,0v4,5,3,16,-5,14v-10,1,-5,7,-3,16v7,20,15,39,23,56","w":164,"k":{"q":13,".":27,",":27,"O":18,"W":22,"w":35,"X":36,";":33,"}":29}},"w":{"d":"186,-57v11,-26,18,-45,24,-69v1,-3,-11,-6,-16,-6v-2,-3,-2,-12,2,-13v21,1,39,1,57,0v4,1,4,16,-4,14v-12,2,-14,6,-20,19v-17,37,-33,76,-48,115v-4,3,-13,3,-17,0v-7,-20,-26,-62,-37,-85r-39,85v-4,3,-13,3,-17,0v-17,-41,-35,-83,-52,-120v-7,-12,-10,-13,-22,-15v-2,-3,-2,-11,2,-13r177,0v6,3,4,15,-4,14v-15,3,-15,3,-10,16v7,17,16,41,24,58xm96,-57v13,-24,39,-75,-10,-74v-21,1,-22,3,-15,18v5,12,19,45,25,56","w":245,"k":{"q":2,".":27,",":27,"t":25,"p":4,"I":13}},"x":{"d":"91,-99v3,-6,14,-19,18,-29v1,-3,-7,-3,-10,-4v-3,-3,-3,-12,1,-13v19,1,41,2,60,0v5,2,5,16,-4,13v-30,2,-39,26,-56,46v17,23,34,74,68,74v3,3,3,12,-1,13r-91,0v-6,-4,-3,-17,7,-14v17,-7,-10,-27,-14,-37v-6,9,-17,22,-19,34v8,0,18,9,12,17v-22,-1,-38,-2,-61,0v-12,-16,18,-13,25,-21v9,-20,51,-36,22,-65v-15,-15,-22,-47,-49,-47v-3,-2,-3,-12,1,-13v23,1,56,2,82,0v13,11,-18,12,-6,24v5,8,10,14,15,22","w":164,"k":{"q":2,"C":13,"S":2,":":13,";":11,"}":11,"E":13}},"y":{"d":"26,50v31,0,34,-22,41,-42v-7,-37,-28,-79,-41,-114v-7,-20,-11,-25,-28,-26v-3,-3,-3,-12,1,-13v24,1,61,2,88,0v5,3,3,17,-6,14v-24,8,-7,12,0,39v3,10,12,32,16,41r31,-75v0,-5,-10,-5,-15,-6v-4,-3,-3,-12,1,-13v14,1,44,2,63,0v5,2,3,16,-6,13v-26,5,-25,19,-38,46r-74,153v-8,30,-55,29,-54,2v0,-11,8,-19,21,-19","w":168,"k":{"n":11,"f":11,"X":6,":":2,"-":13,")":6,"E":15}},"z":{"d":"138,1r-128,0v-5,-14,20,-36,30,-58v10,-23,27,-45,37,-69v-25,-5,-56,-3,-58,26v-4,2,-11,1,-13,-3v5,-15,2,-51,18,-48v2,6,2,7,21,7r94,-1v4,14,-12,24,-23,47v-13,27,-34,51,-45,80v35,5,60,1,68,-30v2,-2,11,-1,13,2v-2,14,-9,40,-14,47","w":149,"k":{"b":31,"p":31,"h":24,"l":4,"f":32,"m":4,"x":33,"A":4,",":19,".":-4,"S":29,"-":-6,"}":4,"]":-4,")":-4}},"{":{"d":"59,-97v43,12,21,71,20,112v0,13,4,27,30,32v3,2,2,9,0,10v-33,0,-61,-5,-61,-47v0,-43,34,-95,-26,-102v-3,-3,-3,-7,0,-9v32,-2,32,-17,32,-28v0,-23,-6,-50,-6,-74v0,-42,30,-47,61,-47v2,1,3,8,0,10v-76,13,20,117,-50,143","w":122,"k":{"J":-13}},"|":{"d":"60,-270r0,360r-31,0r0,-360r31,0","w":89},"}":{"d":"43,15v-1,-41,-22,-100,20,-112v-44,-10,-20,-71,-20,-111v0,-11,-3,-27,-30,-32v-2,-2,-1,-9,1,-10v30,0,61,5,61,47v0,24,-6,51,-6,74v0,11,-1,26,31,28v3,2,3,6,0,9v-60,8,-25,59,-25,102v0,42,-29,47,-61,47v-2,-1,-3,-8,-1,-10v27,-5,30,-19,30,-32","w":122},"~":{"d":"20,-40v5,-18,18,-56,51,-50v36,-1,70,8,76,-26v6,-4,16,-2,20,5v-8,21,-16,47,-47,47v-39,0,-72,-8,-80,29v-6,3,-18,2,-20,-5"},"'":{"d":"46,-252v27,-1,25,9,20,33r-13,74v-4,2,-10,2,-14,0r-16,-95v0,-11,8,-12,23,-12","w":91},"`":{"d":"40,-215v-20,-12,2,-31,15,-32v4,0,8,3,12,11r32,66v0,4,-4,6,-9,5","w":136},"\u00a0":{"w":86,"k":{"W":13,"V":13,"e":18,"g":18,"z":22,"p":32,"n":22,"f":18,"m":18,"x":18,"A":14,",":18,"S":18,":":22,"-":-9,";":22,"]":-6,")":18}}}});Cufon.registerFont({"w":180,"face":{"font-family":"Adobe Garamond Pro","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 2 5 2 5 5 6 9 4 3","ascent":"261","descent":"-99","x-height":"5","cap-height":"1","bbox":"-56.6457 -274 378.845 103","underline-thickness":"18","underline-position":"-18","slope":"-18.5","stemh":"13","stemv":"27","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":90,"k":{"W":22,"V":17,"O":7,"r":5,"Y":5,"a":7,"i":7,"y":-3,"f":7}},"!":{"d":"90,-233v30,6,13,15,3,42r-44,117v-2,3,-8,3,-10,0r32,-147v3,-10,7,-12,19,-12xm10,-12v-2,-24,36,-30,36,-6v2,25,-36,33,-36,6","w":74},"\"":{"d":"99,-247v15,0,14,5,7,23r-24,58v-1,3,-6,3,-8,0r7,-58v2,-20,3,-23,18,-23xm156,-247v15,0,14,5,7,23r-24,58v-1,3,-7,3,-8,0r7,-58v2,-20,2,-23,18,-23","w":136},"#":{"d":"145,-145r-41,0r-24,58r41,0xm198,-145r-36,0r-25,58r35,0r-7,17r-34,0r-29,69r-15,0r27,-69r-41,0r-28,69r-15,0r28,-69r-40,0r8,-17r38,0r24,-58r-39,0r8,-18r38,0r25,-62r17,0r-25,62r40,0r25,-62r17,0r-25,62r36,0"},"$":{"d":"108,-139r24,-80v-44,-4,-62,62,-24,80xm112,-104r-27,93v58,4,69,-73,27,-93xm157,-258r-8,28v18,2,37,9,43,13v1,9,-2,24,-6,38v-1,3,-6,3,-8,2v1,-13,-4,-38,-33,-42r-25,87v24,15,45,31,45,62v0,46,-40,70,-84,70r-10,34v-3,3,-11,3,-13,0r10,-35v-50,-10,-62,-13,-50,-66v1,-2,5,-2,8,0v0,18,11,48,45,55r29,-100v-67,-30,-36,-121,35,-118r8,-28v4,-3,11,-3,14,0"},"%":{"d":"122,-230v27,0,41,19,41,48v0,43,-34,91,-72,91v-29,0,-43,-19,-43,-48v0,-44,32,-91,74,-91xm72,-129v0,18,7,27,18,27v32,0,49,-68,49,-92v0,-16,-7,-26,-18,-26v-31,0,-49,68,-49,91xm261,-135v26,0,40,19,40,48v0,43,-33,91,-71,91v-29,0,-43,-19,-43,-48v0,-43,31,-91,74,-91xm211,-33v0,18,6,27,18,27v32,0,49,-69,49,-93v0,-15,-7,-26,-18,-26v-31,0,-49,68,-49,92xm67,5r200,-240v5,0,11,3,11,9r-201,240v-7,0,-10,-4,-10,-9","w":310},"&":{"d":"280,-130v17,-5,-8,-36,16,-35v19,2,16,43,-3,41v-9,-2,-29,16,-36,7v-1,-3,-13,-17,-24,-26v-2,48,0,60,-39,109v-23,30,-61,39,-86,39v-96,0,-103,-89,-45,-149v33,-34,58,-37,76,-14v25,-24,57,-45,64,-82v-5,-12,-14,-33,6,-34v8,0,17,5,17,19v0,67,-120,135,-173,175v-2,47,35,65,63,65v51,0,111,-65,107,-132v-14,-12,-45,-3,-45,17v0,13,16,32,-6,32v-8,0,-16,-5,-16,-14v-7,-16,41,-60,60,-55v24,-4,42,31,64,37xm53,-94v26,-17,47,-33,59,-44v0,-29,-23,-22,-39,0v-11,15,-17,29,-20,44","w":277},"(":{"d":"166,-248v-81,52,-152,186,-91,303v0,3,-3,4,-6,4v-28,-29,-37,-66,-37,-113v0,-81,70,-172,129,-199v3,0,5,2,5,5","w":115,"k":{"J":-13}},")":{"d":"-24,54v81,-54,152,-186,91,-303v0,-3,2,-4,6,-4v27,29,36,65,36,112v0,82,-71,172,-128,200v-3,0,-5,-3,-5,-5","w":115},"*":{"d":"130,-241r-7,46r49,-12v3,1,4,6,3,9r-47,18r33,37v1,4,-2,8,-5,7r-39,-33r-14,45v-2,1,-7,1,-8,-2r7,-46r-49,13v-3,-2,-4,-6,-3,-9r46,-19r-33,-37v-1,-4,3,-7,6,-6r38,32r15,-45v2,-1,6,0,8,2","w":144},"+":{"d":"122,0r-21,0r0,-65r-59,0r0,-18r59,0r0,-59r21,0r0,59r59,0r0,18r-59,0r0,65","w":201},",":{"d":"32,-42v17,0,26,15,26,28v0,26,-31,45,-55,52v-2,-1,-3,-5,-2,-7v16,-3,51,-39,21,-52v-11,-5,-1,-21,10,-21","w":90},"-":{"d":"24,-83r88,-8v3,5,2,16,-3,21r-88,8v-3,-5,-2,-16,3,-21","w":115},".":{"d":"17,-12v-2,-25,36,-29,36,-6v2,24,-36,34,-36,6","w":90},"\/":{"d":"129,-243r-111,249r-21,0r111,-249r21,0","w":90},"0":{"d":"27,-64v2,-70,42,-166,114,-166v44,0,51,39,51,69v-2,64,-42,166,-112,166v-45,0,-53,-40,-53,-69xm140,-220v-54,11,-84,120,-86,176v0,23,8,38,28,38v30,0,50,-49,60,-75v11,-30,23,-68,23,-98v0,-22,-6,-41,-25,-41"},"1":{"d":"161,-229r-58,185v-11,35,-1,34,23,36v2,2,2,8,-1,9r-90,0v-7,-7,2,-11,9,-10v23,-3,26,-9,34,-37r36,-121v15,-39,1,-34,-23,-37v-2,-2,-1,-6,1,-7v36,-4,51,-18,69,-18"},"2":{"d":"-3,-5v45,-34,161,-96,161,-167v0,-60,-76,-45,-92,-8v-4,1,-8,-1,-8,-6v24,-55,128,-63,131,9v2,62,-123,123,-139,152v30,3,92,15,104,-18v3,-1,7,0,8,2v-5,14,-14,35,-21,42r-142,0v-3,-1,-2,-3,-2,-6"},"3":{"d":"51,7v42,0,87,-44,87,-89v0,-45,-61,-49,-83,-22v-5,0,-8,-8,-4,-14v29,-13,97,-34,97,-71v0,-50,-61,-23,-81,5v-4,0,-7,-2,-6,-6v14,-22,38,-40,71,-40v30,0,46,15,46,38v0,25,-31,40,-52,49v-6,3,-3,7,3,8v21,4,41,21,41,49v1,62,-82,108,-136,106v-21,0,-36,-8,-36,-21v0,-8,6,-15,15,-15v18,1,17,23,38,23"},"4":{"d":"174,-82v8,22,-31,4,-37,22r-7,22v-10,27,-3,28,16,30v2,2,1,8,-1,9v-31,-2,-51,-1,-82,0v-7,-10,15,-10,15,-10v25,3,26,-30,33,-50v3,-9,2,-10,-8,-10r-86,0v-9,-5,-2,-11,6,-19r164,-161v3,-5,17,-8,20,-2r-165,162v-6,6,-1,7,9,7v24,0,62,10,70,-10v8,-24,12,-54,24,-74v5,-2,14,-6,20,-6v5,0,4,4,2,11r-21,69v-5,16,16,8,28,10"},"5":{"d":"104,-201v-23,1,-20,18,-28,32v-6,11,7,7,13,10v34,5,76,18,76,70v0,72,-86,111,-157,113v-5,-1,-5,-9,-2,-12v81,0,132,-43,132,-92v0,-49,-41,-59,-83,-60v-5,0,-5,-4,-1,-11r29,-62v3,-7,7,-9,16,-10r90,-12v10,5,-7,20,-11,24"},"6":{"d":"146,-80v0,-33,-23,-48,-51,-38v-7,-13,24,-16,30,-17v30,0,52,18,52,59v0,40,-37,81,-86,81v-44,0,-67,-27,-67,-70v0,-51,35,-106,75,-136v51,-37,102,-48,127,-48v3,0,3,6,1,7v-26,7,-60,15,-95,40v-49,36,-77,96,-77,144v0,31,11,52,39,52v34,0,52,-43,52,-74"},"7":{"d":"220,-222v-64,70,-127,168,-187,245v-6,1,-12,-3,-11,-8r152,-205v9,-11,5,-14,-5,-14v-39,4,-96,-12,-110,17v-1,2,-6,0,-8,-3v6,-7,14,-23,19,-36r147,0v3,0,3,2,3,4"},"8":{"d":"166,-64v0,80,-146,95,-146,15v0,-41,39,-55,68,-73v-54,-29,-20,-108,41,-108v36,0,57,23,57,53v0,27,-28,42,-55,55v18,13,35,33,35,58xm89,-6v24,0,49,-16,49,-52v0,-27,-20,-44,-40,-56v-30,17,-51,35,-51,64v0,31,21,44,42,44xm161,-181v0,-22,-12,-39,-34,-39v-22,0,-42,18,-42,45v0,21,16,33,36,46v20,-12,40,-28,40,-52"},"9":{"d":"132,-230v85,0,69,100,31,155v-38,55,-95,87,-159,97v-3,-1,-3,-7,-1,-9v82,-12,161,-101,162,-188v0,-23,-9,-45,-34,-45v-31,0,-54,35,-54,69v0,26,16,49,45,40v6,12,-18,15,-28,16v-28,0,-48,-22,-48,-52v0,-38,37,-83,86,-83"},":":{"d":"48,-120v-2,-23,37,-30,37,-6v2,26,-37,33,-37,6xm17,-12v-2,-25,36,-29,36,-6v2,24,-36,34,-36,6","w":90},";":{"d":"32,-42v17,0,26,15,26,28v0,26,-31,45,-55,52v-2,-1,-3,-5,-2,-7v16,-3,51,-39,21,-52v-11,-5,-1,-21,10,-21xm48,-120v-2,-23,37,-30,37,-6v2,26,-37,33,-37,6","w":90},"<":{"d":"42,-82r141,-66r0,21r-115,54r115,53r0,21r-141,-67r0,-16","w":201},"=":{"d":"181,-110r0,18r-139,0r0,-18r139,0xm181,-56r0,18r-139,0r0,-18r139,0","w":201},">":{"d":"42,-148r141,66r0,16r-141,67r0,-21r115,-54r-115,-53r0,-21","w":201},"?":{"d":"119,-186v0,-29,-35,-29,-50,-17v-14,-10,-1,-30,20,-30v20,0,42,25,42,52v0,33,-35,52,-62,65v-17,9,-19,23,-13,41v-1,2,-4,3,-6,2v-19,-20,-13,-57,17,-67v18,-11,52,-25,52,-46xm24,-12v-2,-25,36,-29,36,-6v2,25,-36,33,-36,6","w":108},"@":{"d":"186,-117v-32,3,-60,58,-60,83v6,12,11,3,33,-14v18,-14,38,-47,43,-59v-2,-5,-8,-10,-16,-10xm97,-29v2,-26,56,-106,100,-101v4,0,11,3,13,8r9,-18v6,-2,14,1,17,4v-5,11,-36,85,-42,100v-3,8,-1,12,8,12v38,-2,71,-29,71,-74v0,-51,-42,-83,-94,-83v-72,0,-115,59,-115,126v0,42,25,99,108,99v26,0,44,-8,56,-13v2,1,3,4,2,7v-80,43,-190,10,-190,-93v0,-85,68,-138,142,-138v133,0,142,178,13,180v-51,1,-13,-21,-15,-42v-22,23,-53,42,-68,42v-10,0,-15,-8,-15,-16","w":277},"A":{"d":"181,-51v-4,45,1,40,27,43v2,2,1,8,-1,9v-21,-2,-62,-1,-82,0v-4,-1,-4,-7,-1,-9v41,6,26,-43,33,-77v0,-9,0,-10,-8,-10v-26,0,-58,-9,-70,11r-43,69v-1,7,34,3,21,16v-22,-2,-53,-1,-76,0v-2,-2,-2,-7,0,-9v17,-1,27,-4,36,-16v46,-67,105,-135,144,-207v18,-1,25,-18,31,-9xm105,-109r46,0v6,0,7,-1,7,-7v1,-29,7,-59,5,-88v-19,20,-46,65,-64,90v-3,4,-1,5,6,5","w":214,"k":{"c":6,"C":19,"d":26,"e":-2,"g":9,"G":22,"l":25,"n":11,"o":6,"O":6,"r":4,"s":15,"t":13,"f":6,"j":32}},"B":{"d":"200,-73v1,62,-75,83,-154,73v-15,-2,-44,8,-37,-8v25,-4,26,-3,39,-44r44,-141v11,-36,0,-31,-23,-33v-2,-2,-2,-7,0,-8v50,-7,150,-16,150,49v0,37,-37,54,-57,55v-5,0,-3,3,0,4v21,7,38,27,38,53xm93,-111r-21,70v-7,23,3,31,29,31v30,0,68,-19,68,-67v0,-31,-26,-46,-53,-46v-18,0,-19,1,-23,12xm126,-216r-22,72v-3,9,-2,10,13,10v26,0,72,-12,72,-58v0,-20,-16,-36,-45,-36v-14,0,-14,0,-18,12","w":209,"k":{"h":2,"W":6,"V":6,"s":36,"t":4,"T":20,"v":27,"j":9,"A":2,".":9,"-":9}},"C":{"d":"37,-91v-3,-107,125,-180,231,-141v-6,14,-13,35,-16,48v-1,3,-9,3,-10,0v7,-31,-2,-48,-39,-48v-63,0,-136,59,-135,148v0,51,25,79,70,79v38,0,60,-22,78,-51v3,-1,7,-1,8,3v-3,9,-11,29,-23,50v-77,16,-161,17,-164,-88","w":232,"k":{"r":4,"s":4}},"D":{"d":"48,-52r45,-146v10,-30,-1,-26,-21,-28v-2,-2,-2,-7,0,-9v6,-1,37,-4,67,-4v172,0,154,151,73,208v-67,47,-117,28,-205,32v-7,-6,2,-11,9,-10v17,-2,21,-6,32,-43xm125,-213r-54,172v-6,21,1,29,33,29v104,0,133,-87,133,-126v0,-34,-6,-90,-95,-90v-11,0,-13,3,-17,15","w":266,"k":{"h":11,"k":11,"f":4,"x":2,"A":2,",":9,"X":6,"}":6,":":2,";":6,"E":4,"I":6}},"E":{"d":"48,-52r41,-134v14,-39,7,-38,-15,-44v-2,-3,-2,-7,2,-9r159,0v-2,6,-11,35,-15,48v-1,3,-8,3,-9,0v12,-44,-32,-33,-72,-35v-9,0,-10,1,-14,12r-23,74v-3,10,-3,10,7,10v32,0,63,2,67,-18v3,-4,8,-17,15,-10v-5,13,-19,54,-21,70v-8,7,-10,-2,-9,-10v5,-25,-30,-18,-56,-19v-10,0,-11,0,-14,10v-6,24,-25,69,-20,88v2,5,9,8,40,8v39,0,54,-2,76,-38v3,-1,7,-1,8,3v-3,10,-15,37,-24,47r-168,0v-8,-9,5,-9,12,-10v17,-1,21,-6,33,-43","w":203,"k":{"o":11,"O":11,"T":9,"Y":6,"z":6,"Q":6,"W":6,"q":6,"k":9,"f":4,"j":4,",":-11,".":-11,"X":-11,":":4}},"F":{"d":"48,-52r42,-134v14,-39,7,-38,-15,-44v-3,-15,22,-8,41,-8r118,-1v-3,6,-11,35,-15,48v-1,3,-8,3,-9,0v10,-43,-29,-33,-70,-35v-10,0,-10,1,-14,12r-25,79v-2,7,-2,9,6,9v32,0,71,3,74,-18v2,-5,8,-17,16,-10v-6,12,-20,52,-22,70v-10,7,-9,-6,-9,-14v0,-12,-8,-16,-37,-16v-16,0,-36,-8,-38,10r-16,52v-14,43,-8,43,21,44v2,3,1,8,-2,9r-89,0v-3,-2,-3,-7,-1,-9v30,-3,30,-1,44,-44","w":191,"k":{".":50,",":50}},"G":{"d":"209,-232v-88,1,-141,71,-141,152v0,57,35,75,71,75v42,0,46,-28,57,-57v13,-34,-3,-33,-27,-36v-3,-2,-2,-7,1,-9v26,1,61,2,84,0v5,5,-1,11,-7,11v-20,-2,-26,49,-35,70v-3,7,7,10,1,16v-79,34,-177,12,-177,-78v0,-78,85,-155,177,-155v31,0,54,8,62,11v-6,13,-13,34,-17,48v-1,3,-8,3,-9,0v7,-33,-5,-48,-40,-48","w":253,"k":{"e":6,"g":9,"G":9,"n":11,"o":11,"O":9,"s":2,"Q":6,"V":6,"W":6}},"H":{"d":"113,-131r95,0v16,0,16,0,19,-8v2,-21,42,-88,7,-89v-7,0,-15,-5,-7,-11v28,2,55,1,84,0v6,6,-3,11,-9,11v-20,0,-22,7,-33,42r-42,134v-14,40,-10,42,16,44v3,4,1,8,-1,9r-86,0v-7,-9,4,-10,11,-10v29,5,38,-70,50,-98v3,-9,3,-9,-13,-9r-98,0v-11,0,-11,1,-13,8r-18,56v-14,41,-9,42,18,44v2,3,1,8,-2,9v-28,-1,-58,-2,-83,0v-6,-5,0,-11,7,-10v18,-2,21,-6,33,-43r42,-134v15,-40,7,-39,-17,-44v-2,-3,-2,-7,2,-9v28,2,56,1,84,0v6,6,-3,11,-9,11v-30,-3,-37,61,-48,89v-3,8,-2,8,11,8","w":273,"k":{"s":-18,"U":-18,"V":-18}},"I":{"d":"48,-52r42,-134v15,-40,7,-39,-17,-44v-2,-3,-2,-7,2,-9v30,2,54,1,85,0v7,8,-4,11,-10,11v-20,3,-22,7,-33,42r-42,134v-14,41,-9,42,18,44v2,3,1,8,-2,9r-86,0v-3,-2,-3,-7,-1,-9v30,-3,30,-1,44,-44","w":122,"k":{"l":4,"n":4}},"J":{"d":"-42,62v0,-26,30,-9,45,-5v10,0,17,-14,23,-31v18,-47,49,-153,68,-212v13,-39,8,-41,-18,-44v-2,-3,-1,-7,2,-9v27,1,55,2,83,0v2,2,3,7,0,9v-28,3,-27,4,-40,44v-26,73,-40,152,-74,218v-14,27,-38,40,-66,40v-11,0,-23,-2,-23,-10","w":122,"k":{"C":-18,"G":-18}},"K":{"d":"48,-52r42,-134v14,-40,9,-39,-14,-44v-3,-3,-2,-7,2,-9v24,2,55,1,81,0v6,6,-3,11,-8,11v-32,-2,-36,61,-49,90v-3,8,-2,10,6,10v36,0,63,-46,90,-69v20,-17,23,-24,23,-27v-2,-4,-25,-6,-14,-15v20,1,59,2,78,0v6,15,-17,10,-32,17v-15,3,-85,67,-109,91v-6,5,-7,5,-3,13r39,79v12,23,18,30,42,31v3,2,2,8,-1,9v-26,-2,-52,-1,-78,0v-8,-17,29,2,14,-29r-38,-75v-11,-21,-21,-22,-26,-6r-18,57v-14,40,-9,42,17,44v2,3,1,8,-2,9r-85,0v-3,-2,-3,-7,-1,-9v30,-3,30,-1,44,-44","w":224,"k":{"k":11,",":11,";":11}},"L":{"d":"117,-186r-40,128v-12,39,-15,47,29,47v42,0,57,-2,79,-38v4,-1,7,0,8,3v-4,12,-17,37,-23,47r-163,0v-6,-6,1,-11,8,-10v17,-2,21,-6,33,-43r42,-134v13,-40,7,-39,-17,-44v-2,-3,-2,-7,2,-9v29,2,55,1,86,0v8,9,-5,10,-11,11v-20,2,-22,7,-33,42","w":196,"k":{"g":22,"G":22,"l":2,"o":2,"O":2,"r":2,"t":4,"T":2,"u":2,"Y":2,"z":2,"Q":2,"V":17,"W":2,"m":18,"p":2,"v":13,"w":22,"a":2,"i":2,"y":2,"f":-22,"j":-22,"x":-22,",":4,".":4,"X":2,"}":2,":":-2,"-":9,"I":11}},"M":{"d":"26,-19v7,-11,69,-160,77,-200v2,-14,-38,-3,-25,-20r63,0v-8,46,12,139,17,183v37,-51,110,-133,133,-183v15,2,43,1,59,0v8,15,-26,11,-30,19v-20,45,-46,147,-58,201v-7,14,37,5,25,20v-27,-1,-62,-2,-90,0v-2,-2,-2,-7,0,-9v37,-2,36,-15,48,-54r41,-140r-88,115v-21,27,-42,54,-58,81v-2,2,-5,1,-6,-1r-19,-195r-44,116v-17,46,-21,60,-21,67v-2,9,17,10,26,11v1,2,1,7,-1,9v-19,-1,-59,-2,-80,0v-6,-17,25,-5,31,-20","w":314,"k":{"j":6}},"N":{"d":"2,-8v44,-6,35,-13,54,-76r40,-135v2,-14,-36,-5,-22,-20r59,1v8,47,53,142,72,188v19,-38,43,-132,52,-167v5,-17,-35,-6,-21,-22v23,1,53,2,75,0v8,15,-23,10,-27,17v-23,43,-61,173,-78,227v-2,3,-6,3,-9,3v-10,-38,-67,-168,-86,-217v-16,44,-43,138,-54,185v-4,15,12,14,25,16v3,2,2,7,-1,9v-19,-1,-57,-2,-78,0v-3,-1,-4,-6,-1,-9","w":266,"k":{"G":-2,"n":4,"r":-11,"s":-11,"t":-11,"m":-2}},"O":{"d":"94,-211v68,-57,178,-42,173,66v-4,78,-54,151,-142,151v-124,0,-102,-159,-31,-217xm237,-161v10,-74,-71,-86,-110,-50v-25,23,-58,74,-60,136v-1,34,13,70,60,70v62,0,114,-101,110,-156","w":262,"k":{"d":6,"e":29}},"P":{"d":"130,-239v91,0,116,79,60,118v-18,12,-46,18,-67,18v-2,-1,-3,-5,-1,-8v27,-3,68,-22,68,-71v0,-31,-20,-46,-48,-46v-12,0,-12,2,-16,13r-51,163v-14,42,-8,43,20,44v2,3,1,8,-1,9r-89,0v-7,-8,4,-10,11,-10v17,-2,21,-6,32,-43r47,-149v11,-26,-9,-22,-27,-25v-2,-2,-1,-6,1,-8v16,-3,37,-5,61,-5","w":198,"k":{"h":22,"H":4,".":65,",":65,"m":18,"q":18,"v":18,"w":14,"y":22,"f":-4,"j":18,"E":22}},"Q":{"d":"94,-211v68,-57,177,-43,173,66v-3,66,-46,131,-107,146v-3,1,-2,3,-1,5v27,24,73,75,129,57v2,1,3,4,2,6v-62,30,-126,-14,-160,-56v-5,-5,-9,-8,-17,-8v-26,-1,-78,-23,-76,-93v1,-44,19,-91,57,-123xm237,-161v10,-74,-71,-86,-110,-50v-25,23,-58,74,-60,136v-1,34,13,70,60,70v62,0,114,-101,110,-156","w":262,"k":{"X":4,"W":11,"V":11,"o":11,"r":11,"s":11,"t":11,"U":11,"Y":11,"b":-13,"m":22,"q":-6,"v":11,"k":4,"E":32}},"R":{"d":"75,-236v65,-7,145,-7,145,57v0,36,-34,59,-62,64v-5,1,-5,2,-4,8v14,35,11,97,54,100v4,12,-10,7,-23,8v-44,2,-42,-65,-55,-91v1,-28,-40,-22,-41,-6v-2,21,-41,86,-7,87v8,-2,13,7,7,10v-27,-1,-57,-2,-81,0v-6,-5,0,-11,7,-10v17,-3,21,-6,33,-43r42,-134v13,-45,6,-36,-17,-41v-2,-3,-2,-7,2,-9xm126,-216r-26,82v-4,15,-4,16,15,16v37,0,75,-26,76,-66v1,-28,-16,-44,-47,-44v-14,0,-15,3,-18,12","w":206,"k":{"h":4,"k":11,"x":11,"A":11,",":9,"-":4}},"S":{"d":"85,-186v0,54,74,60,74,117v0,70,-105,100,-146,50v1,-12,-2,-48,14,-41v3,31,17,55,53,55v23,0,53,-15,53,-51v0,-54,-75,-64,-74,-119v0,-40,31,-68,79,-68v24,0,45,9,52,14v-5,9,-9,29,-13,42v-2,2,-7,2,-10,-1v5,-24,-1,-44,-33,-44v-33,0,-49,21,-49,46","w":169,"k":{"C":-13,"g":2,"G":30,"r":30,"u":16,"U":-4,"Y":29,"Q":-4,"b":-4,"m":-4,"w":34,"a":18,"y":32,".":11,"X":29,"}":29,":":-4,";":22,"E":27,"I":13}},"T":{"d":"110,-238r133,0v23,4,25,-11,37,-6v-7,12,-18,41,-20,51v-2,3,-7,3,-9,0v10,-37,-21,-33,-56,-33v-11,0,-12,0,-16,15r-50,159v-15,43,-8,43,20,44v3,3,2,8,-2,9r-91,0v-3,-2,-3,-7,-1,-9v31,-2,33,1,47,-44r50,-159v5,-15,4,-15,-8,-15v-45,-1,-67,1,-84,32v-4,1,-8,0,-9,-4v9,-14,21,-36,26,-48v2,-2,6,-2,7,0v-1,7,4,8,26,8","w":228,"k":{"c":13,"C":2,"d":4,"e":13,"U":-4,"f":2,"A":9,",":4,".":6}},"U":{"d":"57,-96r28,-90v14,-39,8,-41,-17,-44v-2,-2,-2,-7,1,-9r87,0v6,7,-4,11,-11,10v-20,3,-23,8,-33,43v-15,54,-78,179,21,179v88,0,98,-125,120,-196v7,-20,-4,-26,-24,-27v-2,-3,-1,-7,2,-9r77,0v6,5,-2,11,-8,10v-36,10,-32,38,-46,82v-21,66,-42,153,-127,153v-65,0,-90,-36,-70,-102","w":264,"k":{"e":9,"o":6,"u":9,"a":9,"i":4,"y":9}},"V":{"d":"92,5r-17,-194v-4,-35,-4,-39,-26,-41v-3,-3,-2,-7,1,-9v23,2,54,1,75,0v3,2,3,7,0,9v-20,2,-28,1,-25,28r16,157r110,-163v15,-21,-1,-20,-14,-22v-2,-2,-2,-8,1,-9v24,1,50,2,72,0v3,2,3,7,1,9v-15,1,-22,4,-31,14v-36,41,-122,171,-154,221v-2,1,-6,1,-9,0","w":223,"k":{"Q":2,";":16,":":6,".":43,"-":22,",":43,"c":1,"g":5,"G":12,"l":5}},"W":{"d":"214,-42v24,-31,91,-134,116,-181v2,-7,-27,-4,-16,-16v21,1,46,2,63,0v5,5,-1,11,-8,10v-18,4,-31,27,-40,41r-128,193v-2,1,-7,1,-9,0v-2,-35,-9,-69,-14,-103r-70,103v-2,1,-5,1,-9,0r-28,-208v-2,-20,-5,-26,-25,-27v-2,-2,-2,-7,2,-9v22,2,49,1,72,0v6,18,-29,0,-24,31r26,166v5,-10,57,-57,53,-83r-13,-82v-2,-18,-8,-21,-24,-23v-3,-2,-3,-8,1,-9v20,2,54,1,71,0v8,18,-33,0,-22,29r9,69r51,-79v8,-12,-27,-6,-15,-19v20,1,45,1,63,0v4,5,-1,11,-7,10v-33,7,-67,76,-83,94v-14,17,7,77,8,93","w":316,"k":{"m":4,"Q":4,";":22,":":22,".":43,"-":14,",":2,"h":2,"k":2,"}":2}},"X":{"d":"-14,1v-6,-4,0,-12,7,-10v47,-13,64,-53,115,-102v3,-4,5,-7,3,-12r-32,-84v-5,-18,-13,-20,-29,-23v-2,-2,-1,-8,2,-9v26,1,54,2,75,0v11,17,-37,5,-22,28v8,22,17,48,27,73v21,-21,46,-52,66,-74v16,-17,0,-16,-11,-18v-2,-2,-2,-7,1,-9v20,1,49,2,69,0v7,17,-22,7,-30,22v-28,24,-52,51,-84,85v-6,6,-7,7,-4,14r36,91v7,18,14,18,32,19v2,2,2,8,-1,9v-24,-2,-55,-1,-79,0v-13,-16,35,-4,20,-27r-29,-78v-21,23,-54,61,-73,85v-4,4,-5,7,2,9v8,0,22,3,13,11v-22,-1,-52,-2,-74,0","w":207,"k":{"Q":9,"W":4,"m":4,"p":4}},"Y":{"d":"108,-208r18,84v2,9,4,9,11,1r79,-99v3,-8,-31,-3,-19,-17v26,1,46,2,70,0v7,16,-21,10,-28,19v-39,47,-102,100,-120,168v-12,46,-8,42,20,44v2,2,1,8,-1,9r-92,0v-6,-9,6,-11,13,-10v20,8,31,-40,40,-64v16,-42,-10,-85,-16,-124v-4,-29,-9,-29,-29,-33v-3,-2,-1,-7,1,-9v21,2,56,1,76,0v10,18,-37,4,-23,31","w":203,"k":{"c":4,"C":9,"y":15,"h":9,"k":11,"f":4,"x":9}},"Z":{"d":"-6,-5v68,-62,141,-145,207,-212v7,-6,5,-9,-10,-9v-59,2,-103,-12,-126,36v-3,1,-7,0,-8,-5v7,-12,16,-32,21,-52v2,-1,4,-1,5,0v2,9,6,9,34,9r135,-1v3,1,3,2,3,5v-59,55,-150,149,-208,217v0,3,4,6,32,6v34,0,81,2,99,-8v9,-5,21,-18,29,-32v3,-2,7,0,8,3v-4,15,-17,40,-25,49r-195,0v-2,-1,-3,-4,-1,-6","w":216,"k":{"C":34,"e":2,"l":34,"n":2,"o":27,"t":23,"v":32,"w":4,"a":25,"j":27}},"[":{"d":"14,54r90,-301r63,1v1,2,0,6,-1,7v-14,3,-34,2,-44,8v-30,66,-64,193,-81,269v8,7,27,5,39,8v2,16,-41,5,-66,8","w":115,"k":{"W":-9,"V":-6,"J":-13}},"\\":{"d":"42,-243r69,249r-21,0r-68,-249r20,0","w":122},"]":{"d":"131,-247r-89,301r-63,-1v0,-17,34,-4,45,-15v28,-69,64,-192,81,-269v-7,-7,-27,-5,-39,-8v-1,-15,19,-5,42,-8r23,0","w":115},"^":{"d":"186,-88r-22,0r-50,-112r-49,112r-23,0r64,-137r17,0","w":201},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0"},"a":{"d":"119,-142v9,1,11,3,16,10r10,-23v6,-3,15,1,17,5v-5,14,-36,93,-48,126v-2,6,0,8,3,8v6,0,16,-6,37,-24v2,0,5,2,5,5v-15,20,-41,40,-61,40v-26,-7,6,-41,4,-56v-25,31,-62,56,-79,56v-10,0,-16,-10,-16,-20v3,-32,60,-132,112,-127xm108,-128v-39,0,-70,75,-71,107v8,17,16,4,40,-16v29,-24,43,-57,49,-78v-3,-7,-9,-13,-18,-13","w":159},"b":{"d":"169,-114v10,38,-80,126,-115,119v-49,-9,-27,-62,-11,-104r42,-111v12,-28,8,-28,-5,-36v0,-11,32,-13,46,-9r-64,171v25,-38,49,-63,76,-63v21,0,31,14,31,33xm62,-6v31,-6,84,-88,83,-116v0,-9,-6,-13,-13,-13v-22,-2,-91,84,-83,110v0,14,6,19,13,19","w":167,"k":{"w":2,"v":2,".":9,",":9,"l":2,"o":2,"O":2,"u":2}},"c":{"d":"16,-33v0,-34,42,-114,93,-114v34,0,29,40,9,38v-15,-2,-2,-29,-20,-26v-29,5,-54,59,-54,99v0,42,35,19,54,1v4,0,6,3,5,6v-14,19,-37,34,-60,34v-14,0,-27,-10,-27,-38","w":121,"k":{"a":4,"y":2,"h":6,"x":6,".":6,"X":4}},"d":{"d":"10,-21v0,-43,64,-129,112,-126v6,0,15,4,19,11r26,-74v10,-28,7,-27,-5,-36v-1,-10,33,-13,45,-9r-23,63v-36,99,-53,156,-56,167v-1,5,-1,8,2,8v6,0,29,-18,40,-32v3,0,5,1,5,5v-9,20,-42,49,-61,49v-30,-9,9,-53,4,-68v-24,33,-51,68,-86,68v-14,0,-22,-11,-22,-26xm122,-136v-42,11,-80,78,-90,120v12,18,25,3,55,-25v29,-27,39,-50,44,-69v4,-15,0,-26,-9,-26","w":170,"k":{"C":2,"l":2,"u":11,"z":15,"Q":15,"v":2,"a":-4,"I":14}},"e":{"d":"16,-33v-8,-27,47,-117,97,-114v14,0,22,12,22,22v0,27,-35,45,-87,59v-6,12,-11,53,12,53v13,0,22,-7,38,-21v3,0,5,3,5,6v-22,27,-43,33,-58,33v-22,0,-29,-20,-29,-38xm51,-76v30,-8,57,-28,63,-51v-6,-17,-19,-8,-36,9v-14,15,-22,31,-27,42","w":124,"k":{"n":6,"o":6,"O":4,"r":2,"m":6,"p":25,"-":-9}},"f":{"d":"60,-142v13,-47,43,-112,98,-115v29,-2,36,38,13,44v-4,0,-5,-3,-5,-6v-5,-37,-30,-31,-46,-7v-16,24,-24,50,-34,84r45,0v3,4,2,10,-4,13r-44,0v-21,62,-37,163,-70,206v-5,5,-22,20,-43,20v-31,-1,-32,-23,-18,-34v26,5,42,41,58,-14v16,-57,30,-119,47,-178r-30,0v-4,-3,-2,-10,3,-13r30,0","w":93,"k":{"'":-32,"}":-26,"]":-35,")":-39,"\"":-32}},"g":{"d":"21,-65v-1,-43,56,-102,102,-75v14,1,39,-14,42,4v-1,23,-25,1,-37,9v11,45,-24,84,-69,95v-4,2,-8,7,-8,13v7,27,75,40,75,73v0,20,-30,43,-88,43v-26,0,-57,-10,-57,-34v0,-28,42,-45,61,-51v-23,-14,-5,-30,5,-44v-7,-2,-26,-9,-26,-33xm102,60v-12,-26,-52,-55,-83,-26v-28,26,-2,53,35,51v17,0,48,-7,48,-25xm53,-43v27,0,60,-70,57,-81v0,-8,-6,-12,-11,-12v-26,3,-56,57,-57,81v0,7,6,12,11,12","w":137,"k":{"E":6,"I":9}},"h":{"d":"81,-5v7,-29,32,15,38,-23v10,-23,26,-73,26,-93v-1,-20,-17,-8,-27,-1v-31,20,-73,85,-89,123v-4,7,-20,5,-17,-5r68,-203v11,-30,10,-28,-3,-37v-2,-10,34,-15,44,-11r-62,182v38,-48,47,-62,91,-74v16,0,22,12,22,24v-4,48,-34,117,-78,128v-12,0,-13,-8,-13,-10","w":171},"i":{"d":"19,-8v14,-39,36,-76,45,-116v-3,0,-12,4,-30,19v-3,0,-6,-3,-5,-6v23,-23,50,-44,65,-32v-6,41,-32,79,-45,118v-1,3,-1,8,1,8v7,0,26,-13,38,-27v3,0,5,3,5,6v-5,10,-48,52,-73,40v-2,-3,-3,-6,-1,-10xm95,-221v8,0,12,6,12,14v0,21,-31,31,-31,9v0,-8,5,-23,19,-23","w":100,"k":{"W":-9,"b":-9,"p":2,"v":2,"a":2,"h":6,"x":2,"-":3,";":11}},"j":{"d":"-39,63v13,16,30,33,43,1v19,-46,48,-144,59,-184v0,-3,-1,-5,-3,-5v-8,0,-26,18,-36,28v-2,0,-5,-3,-5,-6v7,-13,39,-44,62,-44v23,12,0,44,-10,80v-16,55,-32,161,-97,164v-27,1,-32,-28,-13,-34xm92,-221v8,0,12,6,12,14v0,20,-31,31,-31,9v0,-8,5,-23,19,-23","w":93},"k":{"d":"67,-96v20,-21,38,-49,76,-51v36,6,33,23,11,46v-16,16,-34,28,-57,32v-3,15,11,47,24,52v4,0,11,-4,21,-16v3,0,5,1,5,4v-23,35,-36,48,-53,20v-9,-15,-25,-78,-43,-36r-19,45v-2,9,-21,5,-18,-4r66,-199v11,-31,10,-30,-4,-36v0,-12,32,-17,46,-17xm66,-68v7,2,79,-32,75,-54v-21,-29,-70,31,-79,48v-2,4,-1,6,4,6","w":161,"k":{"c":4,"e":17,"n":36,"o":6,"O":13,"r":23,"t":17,"T":32,"u":40,"W":11,"m":4,"p":16,":":29,"-":40}},"l":{"d":"121,-257v-20,77,-53,156,-77,234v-3,8,-2,11,2,11v8,0,25,-17,41,-36v4,0,6,2,6,5v-9,18,-32,48,-62,48v-25,-6,-14,-16,-6,-41r57,-171v10,-31,5,-28,-7,-34v-3,-13,28,-12,46,-16","w":88,"k":{"Q":18,"V":40,"}":4,":":4,"E":4}},"m":{"d":"186,-4v8,-33,38,-81,45,-121v0,-4,0,-9,-6,-9v-38,19,-74,81,-103,135v-4,7,-21,5,-17,-5r35,-95v2,-4,16,-35,3,-35v-40,17,-77,80,-104,135v-4,8,-20,5,-17,-5v1,-3,40,-108,41,-114v2,-6,2,-10,-2,-10v-12,0,-25,11,-32,20v-3,0,-5,-3,-5,-5v9,-18,28,-34,56,-34v8,0,11,7,8,15v-7,22,-20,45,-24,66v26,-43,60,-81,88,-81v41,0,-2,61,-3,81v35,-55,62,-81,86,-81v14,0,20,8,20,20v-1,33,-43,94,-38,111v6,0,23,-12,34,-24v5,-1,5,2,5,5v-13,23,-42,40,-62,40v-3,0,-8,-5,-8,-9","w":262},"n":{"d":"104,-4v8,-33,37,-84,45,-121v0,-4,0,-9,-6,-9v-39,17,-78,81,-104,135v-4,7,-21,5,-17,-5v1,-12,47,-111,40,-122v-8,0,-21,8,-32,18v-3,0,-5,-3,-5,-5v14,-19,36,-34,54,-34v8,0,12,7,9,15v-7,21,-19,44,-23,64v25,-39,61,-79,88,-79v26,0,20,24,14,45v-7,24,-38,76,-32,86v6,0,23,-12,33,-24v6,-1,6,2,6,5v-13,23,-42,40,-62,40v-3,0,-8,-5,-8,-9","k":{"c":2,"g":-3,"l":-3,"O":-7,"u":-3,"Y":6,"z":-6,"Q":-6,"V":11,"b":-6,"i":1,"y":2,"X":11,"}":11,"-":1,"E":4}},"o":{"d":"56,-123v34,-36,89,-32,87,21v-1,20,-12,55,-39,82v-22,23,-41,25,-51,25v-23,0,-38,-17,-36,-48v1,-22,16,-56,39,-80xm56,-6v35,-2,60,-80,62,-106v2,-28,-24,-32,-41,-7v-20,29,-35,71,-36,90v-1,13,4,23,15,23","w":146,"k":{"Y":18,"z":18,"b":4,"q":6,"v":9,"x":9,"A":4,"X":9,"}":2,":":4,"-":4}},"p":{"d":"102,-163r-8,22v27,-3,63,0,63,40v0,33,-19,64,-48,86v-32,24,-44,22,-63,18v-11,12,-13,33,-20,49v-15,38,-3,31,18,35v1,2,1,6,-2,8v-27,0,-54,1,-78,2v-7,-6,3,-10,8,-10v20,-3,21,-11,27,-26r67,-188v-13,4,-22,7,-37,15v-3,-1,-5,-4,-3,-7v12,-9,27,-15,44,-20r11,-29v5,-4,19,0,21,5xm91,-130v-11,39,-31,74,-37,115v16,16,32,9,54,-21v19,-25,21,-52,21,-68v0,-21,-18,-30,-38,-26","w":161,"k":{"w":2}},"q":{"d":"13,-22v0,-54,54,-125,114,-125v10,0,17,9,20,20v7,-6,15,-38,27,-25r-65,209v-9,26,-2,26,16,27v2,2,1,7,-2,8v-13,1,-55,7,-77,11v-10,-11,7,-12,15,-14v15,-5,17,-11,23,-28r41,-128v-17,23,-55,72,-90,72v-16,0,-22,-14,-22,-27xm47,-11v34,-11,84,-61,85,-105v0,-7,-4,-20,-12,-20v-42,0,-78,80,-81,115v0,6,3,10,8,10","w":167},"r":{"d":"63,-67v18,-31,33,-71,64,-80v21,4,15,26,7,39v-18,17,-10,-36,-32,-5v-20,29,-42,72,-61,114v-4,8,-20,5,-18,-5v4,-15,27,-78,37,-114v1,-4,0,-7,-3,-7v-9,0,-19,10,-26,18v-3,1,-6,-1,-5,-5v11,-20,25,-35,42,-35v18,0,12,25,8,34v-3,14,-15,35,-13,46","w":122,"k":{"c":40,"C":36,"e":-4,"g":40,"l":-4,"n":32,"o":9,"r":-2,"t":47,"Y":40,"z":47,"Q":14,"V":40,"h":29,"k":36,"f":29,",":28,".":27}},"s":{"d":"33,-97v-6,-29,61,-76,70,-29v-6,25,-19,-5,-36,-4v-42,16,19,59,11,88v6,29,-65,71,-77,28v-1,-6,7,-18,16,-12v9,15,40,21,42,-6v1,-9,-30,-54,-26,-65","w":94,"k":{"d":4,"e":11,"u":14,"U":40,"Y":2,"Q":2,"V":2,"q":2,"x":2}},"t":{"d":"126,-138v5,20,-27,11,-44,13r-32,95v-2,7,-1,9,2,9v6,0,29,-19,41,-32v4,0,6,2,5,6v-20,30,-54,52,-69,52v-14,-4,-10,-13,-5,-30r34,-100r-28,0v-1,-15,22,-11,33,-15v10,-11,12,-44,34,-33r-11,35r40,0","w":102,"k":{".":11,"}":2,"-":11,"I":2}},"u":{"d":"94,-136r-40,105v-4,9,-2,12,2,12v35,-11,93,-100,102,-126v8,-1,16,2,18,7v-4,9,-27,69,-42,111v-2,5,-3,9,1,9v7,0,26,-17,35,-28v4,0,6,1,7,5v-10,18,-44,46,-63,46v-6,0,-11,-7,-9,-13r24,-66v-26,33,-71,79,-90,79v-15,0,-17,-15,-11,-31r33,-87v3,-7,3,-10,0,-10v-7,0,-25,15,-34,24v-4,1,-6,-2,-6,-5v9,-14,45,-43,62,-43v5,0,13,5,11,11","w":178,"k":{"C":-3,"z":13,"W":6,"m":11,"q":9,"i":11,"A":13,",":4,".":4}},"v":{"d":"66,-13v32,-8,88,-74,67,-121v1,-7,6,-13,13,-13v12,0,14,13,14,22v0,27,-27,78,-58,104v-27,22,-47,26,-56,26v-22,-6,-16,-31,-7,-56r24,-65v3,-6,3,-10,-2,-10v-7,0,-22,13,-34,25v-3,0,-5,-3,-5,-6v11,-16,36,-40,57,-40v8,0,16,11,11,24v-11,33,-27,61,-35,97v0,6,3,13,11,13","w":153,"k":{"q":2,".":22,",":22,"c":4,"d":5,"r":4,"T":5,"u":5,"z":7,"}":18,"I":18}},"w":{"d":"243,-125v9,36,-73,135,-108,130v-22,-3,-24,-33,-14,-51v1,-6,-1,-5,-5,0v-17,23,-47,51,-69,51v-22,0,-20,-26,-12,-46r27,-72v3,-8,4,-13,-1,-13v-7,0,-22,12,-33,25v-4,0,-6,-3,-6,-6v11,-16,35,-40,57,-40v8,0,16,11,11,24v-10,31,-29,68,-35,101v0,4,2,8,8,8v32,-4,77,-82,80,-112v2,-20,25,-25,27,-9v-5,22,-37,81,-32,105v0,11,5,16,14,16v31,0,84,-73,63,-120v1,-7,7,-13,14,-13v11,0,14,13,14,22","w":236,"k":{"q":6,".":22,",":22,"c":13,"C":25,"d":4,"e":22,"i":4}},"x":{"d":"15,-33v6,1,5,16,10,14v17,-8,31,-31,46,-47v-8,-15,-15,-47,-26,-56v-6,0,-11,11,-16,19v-3,1,-7,-1,-6,-5v11,-29,35,-60,48,-20r15,42v5,-3,52,-69,66,-61v9,0,14,9,14,17v0,13,-9,21,-14,21v-7,0,-6,-16,-13,-15v-7,0,-16,10,-49,49v8,15,16,49,27,55v7,4,15,-31,24,-19v-7,39,-39,64,-52,19r-14,-34v-10,10,-54,67,-65,59v-9,0,-13,-6,-13,-13v0,-8,8,-25,18,-25","w":151,"k":{"q":2,"Y":22,"z":29,"Q":25,"b":18,"m":29,"i":25,"h":18,"j":18,"A":29}},"y":{"d":"-2,77v45,-14,61,-75,59,-146v-2,-67,-16,-66,-35,-27v-4,1,-6,-1,-7,-4v8,-25,24,-47,42,-47v18,0,21,36,21,61v0,22,-5,55,-3,80v20,-28,42,-90,43,-129v1,-10,6,-11,9,-11v4,0,14,2,13,10v-3,50,-88,225,-157,233v-22,3,-25,-32,-5,-32v10,0,8,11,20,12","w":131,"k":{"c":13,"T":13,"u":11,"U":4,".":6,"-":4,";":6}},"z":{"d":"100,8v-31,-2,-72,-46,-85,-3v-27,-7,-14,-16,7,-36r87,-81v4,-4,3,-6,-4,-8v-29,-13,-72,-8,-51,20v0,4,-4,10,-13,10v-9,0,-13,-7,-13,-14v-1,-17,38,-42,54,-40v23,3,60,20,70,-3v6,-1,10,3,9,7v-19,20,-74,63,-117,110v25,-1,45,18,68,21v8,0,17,-7,17,-17v-1,-5,-9,-32,3,-28v10,0,16,10,16,18v1,18,-29,45,-48,44","w":146,"k":{"n":4,"o":4,"v":17,"w":2,"a":4,"i":13,"j":2}},"{":{"d":"31,28v-1,-26,33,-78,33,-105v0,-12,-11,-14,-25,-16v-1,-2,0,-6,2,-7v52,-8,38,-31,49,-66v4,-13,5,-27,9,-39v12,-42,45,-45,63,-45v0,2,0,5,-2,7v-78,10,-20,125,-94,147v11,3,18,11,18,25v0,33,-33,64,-33,97v0,15,8,22,22,25v0,2,0,5,-2,6v-20,0,-40,-4,-40,-29","w":115,"k":{"J":-11}},"|":{"d":"72,-270r0,360r-22,0r0,-360r22,0","w":93},"}":{"d":"117,-221v1,26,-33,78,-33,105v0,12,11,14,25,16v1,2,0,6,-2,7v-64,9,-39,54,-58,105v-15,41,-45,46,-63,45v0,-2,0,-5,2,-7v78,-10,20,-124,94,-147v-11,-3,-18,-11,-18,-25v0,-33,33,-64,33,-97v0,-15,-8,-22,-22,-25v0,-2,0,-5,2,-6v20,0,40,4,40,29","w":115},"~":{"d":"42,-46v4,-12,16,-37,36,-37v35,0,68,10,77,-23v5,-2,11,-1,12,5v-4,10,-16,40,-37,36v-35,2,-68,-9,-76,24v-5,1,-11,0,-12,-5","w":201},"'":{"d":"98,-247v14,0,14,5,6,23r-23,58v-1,3,-7,3,-9,0r7,-58v2,-20,3,-23,19,-23","w":74},"`":{"d":"65,-207v-13,-12,3,-22,12,-23v4,0,6,3,7,8r17,51v0,3,-5,4,-7,4","w":129},"\u00a0":{"w":90,"k":{"W":22,"V":17,"O":7,"r":5,"Y":5,"a":7,"i":7,"y":-3,"f":7}}}});Cufon.registerFont({"w":187,"face":{"font-family":"Adobe Garamond Pro","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 2 7 2 6 5 6 9 4 3","ascent":"261","descent":"-99","x-height":"5","cap-height":"1","bbox":"-59.4998 -274 418.487 103","underline-thickness":"18","underline-position":"-18","slope":"-18.5","stemh":"19","stemv":"47","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":86},"!":{"d":"61,-218v1,-20,57,-21,51,0v-12,41,-40,101,-56,144v-3,3,-11,3,-15,0xm8,-20v-4,-34,56,-50,55,-7v3,35,-54,46,-55,7","w":88},"\"":{"d":"130,-240r-43,95v-5,2,-10,2,-14,0r11,-95v3,-11,10,-12,23,-12v15,0,28,2,23,12xm202,-240r-43,95v-5,2,-10,2,-14,0r11,-95v3,-11,10,-12,23,-12v15,0,28,2,23,12","w":172},"#":{"d":"145,-143r-34,0r-23,53r35,0xm203,-143r-35,0r-23,53r32,0r-8,23r-34,0r-28,66r-22,0r28,-66r-35,0r-28,66r-22,0r28,-66r-35,0r7,-23r37,0r23,-53r-35,0r7,-23r38,0r25,-59r23,0r-25,59r34,0r25,-59r23,0r-25,59r32,0"},"$":{"d":"113,-91r-24,74v45,7,60,-58,24,-74xm113,-144r21,-65v-46,2,-51,48,-21,65xm150,-207r-23,71v29,15,50,33,50,67v0,42,-37,70,-93,69r-11,33v-5,4,-14,4,-18,0r12,-35v-52,-9,-64,-28,-48,-80v2,-3,9,-3,12,0v2,32,19,54,42,62r25,-80v-22,-14,-43,-27,-43,-58v0,-41,34,-67,84,-67v5,-12,5,-40,26,-28r-9,29v15,2,28,7,42,12v1,13,0,31,-6,52v-3,2,-9,2,-12,0v-1,-26,-12,-42,-30,-47"},"%":{"d":"266,-135v31,0,47,20,47,51v0,38,-29,89,-78,89v-31,0,-46,-20,-46,-48v0,-42,32,-92,77,-92xm267,-121v-29,7,-46,63,-46,91v0,11,4,21,14,21v30,-7,46,-62,46,-93v0,-11,-4,-19,-14,-19xm126,-230v31,0,47,19,47,50v0,38,-29,89,-77,89v-32,0,-47,-20,-47,-48v0,-42,32,-91,77,-91xm127,-217v-28,7,-43,62,-45,91v0,12,3,22,14,22v29,-6,45,-63,45,-93v0,-11,-3,-20,-14,-20xm277,-227r-179,241v-7,2,-13,-2,-14,-8r178,-241v6,-1,14,2,15,8","w":318},"&":{"d":"284,-128v17,-8,-15,-40,15,-41v26,-1,25,49,2,52v-18,2,-27,20,-43,14v-2,-4,-9,-12,-19,-20v14,57,-68,133,-125,128v-98,-9,-100,-93,-45,-152v24,-24,49,-28,56,-28v17,0,22,10,25,18v25,-24,65,-53,43,-94v0,-14,10,-23,22,-23v11,0,23,10,23,27v0,59,-127,140,-165,172v19,58,100,58,134,-1v14,-24,19,-41,19,-56v-7,-10,-39,-15,-39,4v3,13,19,37,-9,39v-10,0,-17,-9,-17,-20v-6,-21,40,-62,61,-58v26,-3,48,29,62,39xm71,-92v18,-19,44,-26,46,-49v-4,-21,-22,-13,-33,5v-8,12,-13,27,-13,44","w":295},"(":{"d":"174,-246v-75,42,-142,193,-87,297v0,4,-3,7,-7,8v-69,-69,-50,-199,16,-263v32,-30,57,-43,71,-49v5,0,8,4,7,7","w":122},")":{"d":"-22,51v76,-41,142,-194,86,-297v1,-3,4,-7,8,-7v69,68,50,199,-16,262v-32,30,-57,43,-71,50v-5,-1,-8,-5,-7,-8","w":122},"*":{"d":"126,-192r49,-13v3,2,4,7,2,12r-46,19r33,36v0,5,-4,9,-8,9r-38,-32r-16,46v-2,1,-8,0,-11,-3r7,-47r-49,12v-4,-2,-5,-8,-3,-11r47,-19r-34,-36v0,-5,4,-9,7,-10r39,32r16,-45v3,-1,9,0,11,2","w":144},"+":{"d":"113,0r-31,0r0,-64r-57,0r0,-26r57,0r0,-57r31,0r0,57r57,0r0,26r-57,0r0,64"},",":{"d":"31,-5v0,-15,-19,-16,-19,-31v0,-13,11,-24,25,-24v13,0,32,11,32,38v0,31,-30,55,-71,66v-6,-2,-7,-9,-4,-13v20,-6,37,-21,37,-36","w":93},"-":{"d":"23,-85r86,-8v6,7,7,22,0,29r-86,8v-7,-5,-8,-24,0,-29","w":115},".":{"d":"43,-54v14,0,24,10,24,27v0,34,-55,47,-55,7v0,-17,12,-34,31,-34","w":93},"\/":{"d":"141,-243r-111,249r-33,0r111,-249r33,0","w":108},"0":{"d":"24,-66v0,-70,47,-164,120,-164v48,0,61,37,61,73v0,65,-44,161,-121,162v-48,0,-60,-35,-60,-71xm146,-214v-41,0,-79,127,-79,174v0,20,8,28,18,28v13,0,24,-13,36,-36v20,-41,41,-103,41,-137v0,-12,0,-29,-16,-29"},"1":{"d":"116,-187v3,-15,-43,-4,-27,-23v23,-4,69,-15,83,-22v4,0,6,3,6,5r-59,180v-12,35,1,33,25,35v4,2,3,12,-1,13r-115,0v-7,-7,4,-16,14,-14v20,-3,22,-6,31,-34"},"2":{"d":"72,-40v24,6,82,13,94,-15v3,-3,11,0,12,5v-13,24,-13,61,-53,50r-131,1v-2,-2,-3,-5,-1,-8v37,-28,154,-97,154,-157v0,-56,-67,-45,-87,-6v-4,2,-11,-2,-11,-7v18,-33,50,-53,85,-53v37,0,65,20,65,58v1,62,-95,96,-127,132"},"3":{"d":"15,-25v23,1,22,27,44,27v36,0,68,-37,68,-80v0,-41,-46,-51,-70,-25v-7,0,-12,-12,-7,-18v28,-11,89,-28,91,-63v-7,-40,-57,-23,-73,7v-5,1,-9,-3,-10,-8v17,-29,47,-45,79,-45v26,0,53,13,53,40v0,22,-20,36,-54,48v-4,1,-2,4,2,4v22,2,45,18,45,51v0,63,-89,109,-146,107v-42,7,-59,-39,-22,-45"},"4":{"d":"189,-87v12,19,-12,21,-30,20v-14,-2,-11,15,-16,23v-9,27,-3,32,19,32v4,2,3,12,-2,13r-106,0v-8,-8,4,-16,14,-14v24,3,26,-25,34,-47v2,-6,1,-7,-6,-7r-81,0v-3,-2,-4,-7,-2,-11r169,-170v5,-6,14,-6,25,-6v6,0,7,3,0,10r-153,150v-4,4,-5,7,6,7r43,0v7,0,8,0,9,-6v10,-22,10,-57,31,-68v8,-5,28,-11,33,-11v5,0,7,2,6,6r-23,72v-2,6,-2,7,6,7r24,0"},"5":{"d":"103,-223r99,-12v4,0,5,3,5,6v-4,12,-15,25,-24,34r-88,11v-10,-1,-24,24,-13,26v47,6,95,26,93,79v-3,72,-93,102,-171,103v-7,-2,-7,-11,-3,-14v49,-3,127,-22,127,-79v0,-38,-33,-50,-78,-54v-7,-1,-9,-5,-5,-13r38,-76v4,-8,8,-9,20,-11"},"6":{"d":"139,-81v0,-19,-7,-45,-35,-38v-8,-16,21,-24,35,-24v31,0,51,22,51,56v0,53,-43,92,-94,92v-50,0,-74,-31,-74,-74v0,-43,27,-100,81,-137v37,-25,89,-42,130,-43v4,1,5,9,2,12v-92,12,-161,92,-164,182v0,18,2,43,24,43v32,0,44,-48,44,-69"},"7":{"d":"69,-226r164,0v2,1,3,3,2,5r-190,243v-7,2,-15,-4,-15,-12r132,-170v11,-15,15,-21,15,-25v-18,-8,-53,-3,-77,-3v-19,0,-32,1,-42,19v-4,2,-11,1,-12,-5v9,-17,18,-39,23,-52"},"8":{"d":"89,4v-41,0,-73,-18,-73,-55v0,-34,28,-56,61,-69v-49,-37,-6,-110,54,-110v36,0,68,17,68,55v0,28,-26,46,-51,55v58,36,27,124,-59,124xm132,-50v0,-31,-23,-47,-40,-58v-36,14,-48,94,4,96v20,0,36,-15,36,-38xm133,-132v27,-9,42,-81,-4,-82v-18,0,-31,16,-31,34v0,25,17,37,35,48"},"9":{"d":"133,-230v46,0,71,30,71,76v0,92,-120,171,-203,176v-4,-2,-5,-10,-2,-13v88,-18,153,-90,157,-180v0,-20,-3,-43,-25,-43v-38,0,-61,88,-25,105v4,4,25,-1,19,12v-36,24,-84,3,-84,-45v0,-47,42,-88,92,-88"},":":{"d":"43,-54v14,0,24,10,24,27v0,34,-55,47,-55,7v0,-17,12,-34,31,-34xm69,-142v15,0,24,10,24,27v0,35,-54,46,-55,7v0,-17,12,-34,31,-34","w":93},";":{"d":"31,-5v0,-15,-19,-16,-19,-31v0,-13,11,-24,25,-24v13,0,32,11,32,38v0,31,-30,55,-71,66v-6,-2,-7,-9,-4,-13v20,-6,37,-21,37,-36xm69,-142v15,0,24,10,24,27v0,35,-54,46,-55,7v0,-17,12,-34,31,-34","w":93},"<":{"d":"24,-85r140,-64r0,30r-103,45r103,44r0,30r-140,-64r0,-21"},"=":{"d":"170,-38r-145,0r0,-26r145,0r0,26xm170,-90r-145,0r0,-26r145,0r0,26"},">":{"d":"36,-149r140,64r0,21r-140,64r0,-30r103,-45r-103,-44r0,-30"},"?":{"d":"132,-178v-2,-32,-66,7,-67,-26v0,-13,12,-29,35,-29v25,0,52,28,52,61v0,30,-37,48,-65,59v-25,10,-25,14,-22,38v-17,10,-22,-22,-23,-34v-3,-32,39,-43,67,-53v13,-4,23,-9,23,-16xm58,-54v14,0,24,10,24,27v0,34,-56,46,-56,7v0,-17,13,-34,32,-34","w":126},"@":{"d":"102,-36v2,-28,54,-105,98,-101v6,0,11,2,12,6v3,-15,20,-22,34,-12v-4,11,-36,84,-41,96v-3,9,-2,12,5,12v29,0,63,-24,63,-67v0,-50,-38,-82,-86,-82v-67,0,-110,58,-110,121v0,39,22,95,100,95v27,0,44,-7,56,-11v3,1,5,8,3,11v-84,41,-194,8,-194,-96v0,-84,69,-136,145,-136v68,0,105,46,105,97v0,47,-34,83,-95,83v-45,0,-13,-25,-14,-42v-18,22,-50,42,-65,42v-11,0,-16,-8,-16,-16xm193,-125v-23,9,-65,66,-50,83v22,-3,56,-56,61,-74v-2,-5,-5,-9,-11,-9","w":279},"A":{"d":"127,-81v-20,0,-51,-8,-59,7v-8,15,-25,40,-29,55v-1,6,12,7,19,7v3,3,2,11,-2,13r-80,0v-8,-5,-3,-17,7,-14v18,-3,22,-6,40,-33r97,-143v11,-17,22,-32,23,-39v28,0,36,-25,45,-10v0,64,-3,128,-3,192v0,30,4,32,26,34v3,3,2,12,-1,13v-24,-1,-75,-2,-98,0v-7,-3,-4,-17,6,-14v35,-1,14,-36,21,-61v0,-7,-1,-7,-12,-7xm97,-100v14,-3,42,9,42,-10r2,-78r-51,80v-4,6,-3,8,7,8","w":216,"k":{"c":13,"C":4,"e":4,"g":13,"G":2,"i":4,"l":6,"n":6,"o":13,"O":4,"r":-2,"s":2,"t":26,"T":6,"u":26,"Y":-2,"z":13,"Q":24,"V":27,"W":9,"b":6,"m":4,"p":4,"q":13,"v":13}},"B":{"d":"221,-78v-3,92,-122,79,-219,79v-7,-7,4,-15,12,-14v17,-3,19,-5,30,-39r42,-136v11,-31,4,-32,-15,-35v-3,-3,-2,-11,2,-12v60,-6,167,-15,167,51v0,36,-35,47,-60,54v19,7,42,25,41,52xm138,-209r-21,65v-3,9,-2,10,13,10v36,0,62,-23,62,-55v0,-18,-13,-33,-37,-33v-12,0,-13,1,-17,13xm106,-107r-19,59v-7,24,0,33,18,33v59,0,99,-102,21,-103v-16,0,-17,1,-20,11","w":228,"k":{"h":2,"q":17,"a":6,"y":4,"x":11,";":22,"E":4}},"C":{"d":"35,-89v0,-96,60,-154,168,-154v36,0,61,9,72,13v-8,18,-13,37,-18,56v-2,4,-12,4,-13,0v3,-37,-11,-53,-44,-53v-62,0,-110,74,-110,141v0,110,93,86,131,24v4,-3,13,-2,14,2v-7,21,-20,47,-26,57v-14,1,-33,9,-64,9v-74,0,-110,-41,-110,-95","w":236,"k":{"C":6,"e":4,"i":2,"l":6,"n":6,"s":6,"T":6,"u":6,"q":2,"v":9,"w":-16,"a":-16,"y":-11,"E":4,"I":4}},"D":{"d":"152,-239v77,0,131,27,133,101v0,33,-13,67,-37,90v-76,71,-140,44,-246,49v-7,-7,4,-15,12,-14v16,-2,19,-5,29,-39r43,-136v10,-30,4,-32,-15,-35v-3,-3,-2,-11,2,-12v20,-2,44,-4,79,-4xm140,-206r-47,150v-8,28,-10,42,19,42v18,0,42,-5,70,-28v35,-28,49,-73,49,-107v0,-25,-7,-73,-69,-73v-15,0,-17,1,-22,16","w":277,"k":{"g":2,"i":-2,"m":2,"p":-6,"w":-22,"a":-22,"y":-22,"-":14,";":40}},"E":{"d":"218,-181v9,-44,-22,-40,-60,-40v-12,0,-13,1,-18,14r-19,63v-4,10,-3,11,6,11v34,3,53,-1,62,-29v3,-3,12,-3,13,0r-24,77v-3,3,-12,3,-13,0v3,-18,4,-32,-20,-29v-16,2,-34,-6,-37,11v-4,21,-23,59,-19,78v4,6,9,8,36,8v31,0,43,-1,73,-41v4,-3,12,-2,14,2v-6,18,-19,47,-27,57r-186,0v-8,-9,4,-15,14,-14v17,-3,20,-5,30,-39r42,-134v12,-34,8,-38,-16,-40v-3,-3,-2,-11,3,-13r178,0v-3,6,-12,32,-19,57v-1,4,-11,4,-13,1","w":214,"k":{"c":6,"C":2,"g":9,"G":4,"i":6,"n":9,"O":6,"T":6,"u":6,"Y":6,"z":2,"Q":11,"V":11,"W":4,"b":11,".":14,":":14}},"F":{"d":"215,-181v9,-44,-20,-40,-58,-40v-12,0,-12,1,-17,14r-20,66v-4,10,-3,11,6,11v35,2,57,1,66,-29v3,-3,12,-3,14,1v-10,21,-18,52,-25,76v-6,5,-17,1,-13,-9v8,-28,-26,-18,-48,-20v-9,0,-10,1,-13,11r-15,48v-13,36,-5,39,21,40v1,3,1,11,-3,13r-107,0v-7,-7,1,-17,11,-14v16,-3,19,-5,29,-39r42,-134v12,-34,8,-38,-16,-40v-3,-2,-2,-11,3,-13r175,0v-2,6,-12,32,-18,57v-1,4,-11,4,-14,1","w":200,"k":{".":32,",":32,"n":13,"p":9,"w":4,"h":9,"-":9,";":6}},"G":{"d":"37,-91v0,-97,64,-152,174,-152v36,0,61,8,74,13v-8,18,-14,37,-18,56v-3,4,-12,4,-14,0v4,-36,-10,-53,-46,-53v-64,0,-116,74,-116,145v0,54,31,71,62,71v32,0,33,-34,41,-57v10,-24,-6,-25,-27,-27v-4,-3,-3,-11,1,-13r102,0v9,22,-26,7,-28,39v-1,11,-18,47,-8,52v5,13,-21,11,-27,14v-17,6,-41,9,-59,9v-76,0,-111,-41,-111,-97","w":272,"k":{"C":6,"i":6,"Q":9,"V":2,"m":-11,"p":-11,"q":-11,"w":6,"X":7,",":22}},"H":{"d":"191,-114v-27,0,-76,-10,-83,12r-16,50v-14,36,-5,39,21,40v1,3,1,11,-2,13r-107,0v-7,-5,1,-16,10,-14v16,-2,19,-5,29,-39r42,-134v12,-35,6,-38,-20,-40v-3,-4,-2,-11,3,-13r106,0v6,7,-3,17,-13,14v-22,-4,-31,57,-40,80v-4,11,-3,12,17,12v27,0,79,12,83,-13v3,-20,37,-77,4,-79v-11,2,-16,-8,-7,-14r105,0v5,8,-4,16,-13,15v-14,2,-18,5,-28,38r-42,134v-12,35,-5,38,20,40v2,3,1,11,-2,13r-106,0v-7,-5,1,-15,10,-14v27,4,36,-66,46,-92v3,-8,2,-9,-17,-9","w":280,"k":{"m":13,"v":11,"y":13,":":13,"-":2}},"I":{"d":"92,-52v-13,34,-6,38,19,40v2,3,1,11,-3,13r-106,0v-6,-5,2,-16,12,-14v16,-3,19,-5,29,-39r42,-134v13,-35,5,-36,-19,-40v-2,-2,-2,-11,3,-13r106,0v8,6,-3,16,-12,15v-16,2,-19,5,-29,38","w":131,"k":{"c":4,"C":4,"g":9,"i":11,"O":6,"r":4,"s":6,"T":9,"u":9,"Y":9,"z":2,"q":2,"w":4,"a":2,"A":14,"U":40}},"J":{"d":"-27,33v12,-1,21,19,31,20v23,-13,33,-69,42,-98r44,-141v13,-35,5,-39,-21,-40v-3,-3,-3,-11,2,-13r106,0v7,6,-1,16,-10,14v-15,4,-18,6,-29,39v-24,70,-38,150,-72,210v-17,30,-45,48,-84,48v-14,0,-30,-3,-30,-15v1,-10,11,-23,21,-24","w":132,"k":{"b":6,"q":4,"w":4,"a":6,".":2,":":9}},"K":{"d":"43,-52r42,-134v13,-35,5,-36,-18,-40v-4,-2,-3,-11,1,-13r107,0v8,7,-3,15,-12,14v-26,-2,-33,61,-44,86v-3,7,-2,10,2,10v40,-16,77,-59,105,-92v0,-3,-9,-5,-14,-5v-2,-3,-3,-11,3,-13r91,0v5,2,5,10,1,13v-50,4,-85,44,-122,74v-12,10,-16,13,-9,29v13,31,26,64,40,95v6,15,14,15,29,16v3,3,2,11,-1,13r-99,0v-4,-2,-4,-10,-1,-13v8,-1,25,-2,19,-12v-5,-19,-17,-43,-24,-62v-13,-36,-27,-39,-35,-4v-4,19,-38,76,-3,77v10,-2,14,8,8,14r-107,0v-6,-6,2,-16,12,-14v16,-3,19,-5,29,-39","w":249,"k":{"C":11,"G":12,"t":11,"u":9,"m":-2,"f":4,"j":4}},"L":{"d":"134,-186r-40,127v-7,34,-16,42,29,42v31,0,44,-1,73,-41v4,-3,13,-2,15,2v-6,18,-20,47,-28,57r-181,0v-4,-2,-4,-11,1,-13v28,-3,28,0,41,-40r42,-134v12,-34,6,-38,-19,-40v-3,-2,-2,-11,3,-13r104,0v7,6,-3,16,-11,15v-15,3,-18,5,-29,38","w":209,"k":{"c":25,"e":22,"g":38,"G":44,"r":11,"t":16,"v":6,"w":-4,"a":17,"d":29,"k":40}},"M":{"d":"22,-21v21,-30,49,-121,67,-165v14,-34,7,-38,-17,-40v-4,-2,-3,-11,3,-13r88,0v-10,47,5,109,8,152v29,-42,85,-111,102,-152v23,2,59,1,85,0v8,7,-2,15,-11,14v-15,3,-22,5,-32,44r-35,129v-11,35,-6,38,19,40v2,3,1,11,-3,13r-105,0v-11,-9,2,-15,11,-14v15,-3,19,-5,30,-39r42,-143v-45,57,-90,126,-130,189v-5,3,-13,2,-16,-1v-1,-42,-7,-146,-15,-188r-59,172v-1,9,18,9,26,11v2,4,1,11,-2,13r-87,0v-11,-17,25,-13,31,-22","w":318,"k":{"j":2,"W":17,"p":2,"q":2,"v":6,"w":15,"y":9,",":26,".":2}},"N":{"d":"37,-39r47,-147v12,-34,6,-38,-19,-40v-3,-2,-2,-11,2,-13r74,0v4,36,49,124,68,166v13,-31,30,-97,38,-126v7,-23,-5,-26,-26,-27v-3,-3,-2,-10,3,-13r86,0v6,24,-37,10,-38,40r-60,198v-3,2,-14,4,-23,4r-82,-192r-45,150v-7,23,5,26,26,27v2,4,2,11,-2,13r-86,0v-7,-5,0,-17,9,-14v16,-4,22,-9,28,-26","w":259,"k":{"O":11,"r":9,"h":18,"x":40}},"O":{"d":"281,-142v0,78,-51,148,-143,148v-82,0,-102,-57,-102,-96v0,-76,72,-153,146,-153v44,0,99,23,99,101xm133,-11v60,0,97,-101,97,-156v0,-43,-19,-60,-44,-60v-65,0,-99,80,-99,156v0,35,16,60,46,60","w":272,"k":{"c":24,"C":2,"G":2,"n":2,"o":-2,"s":-22,"t":-22,"T":-22,"Y":4,"Q":2,"V":4,"W":2,"b":-2,"m":4,"q":11,"h":4,"d":7,"k":-3,"U":-3,"X":2,"-":-3,"E":-3}},"P":{"d":"73,-235v67,-7,172,-14,170,60v-2,56,-56,78,-112,76v-3,-3,-3,-7,0,-10v39,-6,61,-37,61,-76v0,-21,-11,-37,-34,-37v-12,0,-13,1,-16,11r-50,159v-13,36,-4,38,20,41v2,2,1,10,-2,12r-107,0v-8,-7,3,-15,11,-14v16,-2,18,-5,29,-39r43,-136v12,-31,5,-32,-15,-35v-4,-3,-3,-11,2,-12","w":220,"k":{"h":2,"H":4,".":61,",":61,"g":19,"s":4,"t":4,"X":2}},"Q":{"d":"281,-142v0,65,-41,125,-104,142v-2,0,-5,3,-1,6v33,29,65,62,118,51v4,1,6,6,4,9v-66,34,-135,-5,-176,-51v-5,-6,-9,-11,-14,-12v-56,-12,-72,-59,-72,-93v0,-76,72,-153,146,-153v44,0,99,23,99,101xm133,-11v60,0,97,-101,97,-156v0,-43,-19,-60,-44,-60v-65,0,-99,80,-99,156v0,35,16,60,46,60","w":272,"k":{"X":25,"W":2,"V":15,"e":4,"z":2,"Q":40,"b":4,"q":36,"v":2,"w":32,"U":38}},"R":{"d":"73,-235v67,-5,171,-17,171,56v0,36,-30,55,-58,62v-6,2,-6,4,-6,8v16,62,5,90,46,97v5,17,-14,11,-34,13v-54,6,-45,-51,-57,-90v1,-19,-25,-22,-30,-8v-3,21,-40,79,-6,84v9,-1,16,7,8,14r-104,0v-9,-8,3,-15,11,-14v16,-2,18,-5,29,-39r43,-136v12,-32,3,-30,-15,-35v-3,-3,-2,-11,2,-12xm192,-184v0,-19,-8,-38,-34,-38v-14,0,-14,2,-18,12r-24,77v-3,11,-1,12,16,12v34,0,60,-31,60,-63","w":225,"k":{"i":-2,"l":4,"O":-11,"r":-11,"s":-11,"T":-2,"m":-2}},"S":{"d":"37,-77v-1,31,26,66,57,66v22,0,43,-15,43,-43v0,-46,-79,-66,-79,-115v0,-73,105,-94,154,-55v-4,10,-10,26,-15,48v-3,4,-12,3,-14,0v4,-27,-8,-51,-39,-51v-52,0,-60,53,-12,81v26,15,52,37,52,75v0,44,-34,77,-96,77v-37,0,-64,-17,-72,-32v-1,-15,2,-35,7,-52v2,-3,11,-3,14,1","w":190,"k":{"e":9,"g":2,"G":4,"s":4,"u":9,"z":2}},"T":{"d":"251,-184v6,-35,-13,-39,-45,-37v-11,0,-12,0,-15,10r-49,159v-13,36,-4,39,23,40v2,3,1,11,-3,13r-112,0v-10,-11,5,-15,15,-14v15,-2,18,-5,29,-39r50,-159v3,-9,2,-10,-10,-10v-39,-2,-53,9,-70,38v-4,3,-14,1,-14,-4v12,-23,21,-43,27,-60v18,-4,3,9,39,9r134,0v21,3,22,-15,37,-8v-7,14,-18,45,-22,62v-3,4,-12,4,-14,0","w":232,"k":{"c":36,"C":41,"e":40,"Y":23,"Q":-6,"V":35,"W":35,"b":18,"m":36,"p":18,"a":22,"y":22}},"U":{"d":"170,-239v7,7,-2,15,-11,14v-15,3,-18,6,-28,39v-11,40,-30,77,-33,123v-2,31,14,49,46,49v77,-2,86,-125,107,-185v8,-22,-5,-25,-26,-27v-2,-4,-2,-10,2,-13r87,0v7,23,-37,11,-38,40v-33,73,-33,205,-148,205v-61,0,-91,-41,-73,-102r27,-90v12,-33,7,-38,-17,-40v-4,-3,-2,-11,3,-13r102,0","w":263,"k":{"n":2,"o":6,"O":11,"r":4,"v":14,"w":40,"a":2,"h":2,"I":2}},"V":{"d":"136,-65v28,-40,75,-102,99,-153v2,-4,-13,-7,-19,-8v-3,-3,-2,-11,3,-13r84,0v9,20,-23,13,-34,26v-46,54,-110,151,-154,216v-6,3,-17,5,-23,0r-14,-188v-4,-35,-4,-40,-26,-41v-3,-4,-2,-11,2,-13v30,2,60,1,93,0v4,2,3,10,0,13v-29,3,-24,9,-21,48","w":234,"k":{"Q":2,";":6,":":6,".":43,"-":22,",":43,"C":22,"Y":4,"z":33,"V":4,"W":4,"p":33,"v":25,"y":-4,"A":36,"U":23}},"W":{"d":"416,-239v12,16,-23,15,-29,23v-42,53,-115,155,-157,219v-5,3,-18,5,-22,0v-1,-14,-9,-68,-13,-93v-21,29,-51,70,-66,95v-5,3,-17,4,-22,0r-30,-204v-4,-26,-7,-24,-25,-27v-4,-4,-2,-11,2,-13r85,0v14,14,-15,13,-18,19v4,44,18,129,25,163v8,-11,36,-47,45,-61r-12,-86v-3,-20,-5,-21,-21,-22v-3,-3,-2,-11,3,-13v26,1,56,2,80,0v7,3,2,16,-6,14v-30,3,-4,42,-6,67r42,-61v1,-6,-10,-5,-15,-7v-3,-4,-2,-12,3,-13v23,1,51,2,71,0v8,6,-1,17,-10,15v-30,4,-70,71,-86,90v2,18,7,52,12,77r91,-131v4,-12,34,-35,8,-38v-4,-4,-2,-11,2,-13v23,1,49,2,69,0","w":347,"k":{"Q":9,";":22,":":22,".":40,"-":14,",":40,"c":27,"u":9,"Y":4,"V":2,"p":9,"q":2,"y":9,"A":6}},"X":{"d":"125,-97v-22,23,-48,49,-65,78v0,2,3,4,11,6v9,-2,13,11,5,14r-93,0v-10,-15,16,-13,26,-19v38,-22,78,-68,109,-102r-28,-81v-9,-25,-16,-19,-32,-25v-3,-4,-1,-12,3,-13v22,1,79,2,98,0v8,7,-2,17,-11,15v-17,5,-15,2,-10,19r16,49v21,-20,41,-40,57,-63v1,-4,-11,-6,-16,-7v-3,-4,-2,-11,3,-13v25,1,61,2,84,0v3,2,3,10,0,13v-55,9,-83,58,-121,91v9,31,22,64,32,98v6,19,14,23,36,25v2,3,1,12,-2,13v-22,-2,-82,-1,-104,0v-5,-2,-5,-11,0,-13v21,-3,30,-1,20,-27v-8,-20,-12,-39,-18,-58","w":230,"k":{"Q":9}},"Y":{"d":"134,-52v-13,36,-4,39,23,40v2,3,1,11,-3,13r-112,0v-4,-2,-3,-11,0,-13v41,10,56,-58,52,-101v-2,-27,-11,-54,-15,-81v-4,-25,-7,-31,-28,-32v-2,-3,-1,-11,3,-13r95,0v5,2,4,11,1,13v-21,4,-28,1,-23,31r12,77v22,-28,61,-72,76,-100v0,-6,-11,-6,-17,-8v-4,-3,-3,-11,2,-13r79,0v7,6,0,17,-9,14v-40,15,-72,68,-99,98v-24,25,-26,44,-37,75","w":213,"k":{"s":13,"T":-4,"u":29,"Y":29,"z":13,"Q":27,"V":13,"p":18,"q":32,"v":2,"a":2}},"Z":{"d":"194,-219v-25,-3,-67,-7,-88,6v-8,5,-17,14,-30,33v-5,3,-13,0,-14,-4v11,-26,22,-46,28,-64v1,-1,7,-1,10,0v0,8,2,10,27,10r146,-1v3,1,3,6,1,9v-48,39,-160,161,-198,209v15,7,83,8,104,-2v13,-6,26,-21,38,-39v3,-3,13,-2,14,3v-7,19,-21,51,-30,60r-203,0v-3,-1,-5,-4,-3,-7r48,-47r144,-155v4,-4,6,-8,6,-11","w":231,"k":{"O":-4,"v":2,"y":4,"d":4,"E":2,"I":4}},"[":{"d":"16,55r89,-303r67,1v5,18,-26,11,-38,18v-28,67,-63,188,-79,265v5,5,22,4,30,7v4,19,-17,12,-41,12r-28,0","w":122},"\\":{"d":"71,-243r69,249r-33,0r-68,-249r32,0","w":144},"]":{"d":"135,-248r-89,303r-67,-1v-4,-19,26,-10,38,-18v30,-64,63,-189,79,-265v-6,-7,-39,0,-28,-18","w":122},"^":{"d":"180,-88r-32,0r-40,-95r-40,95r-32,0r60,-137r25,0"},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0","w":180},"a":{"d":"7,-17v0,-37,78,-155,134,-119v0,-21,34,-24,44,-8v-13,34,-29,74,-43,114v-1,5,-2,8,1,8v5,0,23,-11,34,-23v3,0,7,3,7,8v-16,23,-47,42,-72,42v-32,0,0,-42,-1,-56v-21,28,-56,56,-82,56v-11,0,-22,-10,-22,-22xm117,-128v-26,8,-62,72,-60,100v1,4,2,6,5,6v24,-6,63,-69,70,-92v-4,-11,-9,-14,-15,-14","w":181},"b":{"d":"185,-113v4,49,-64,124,-123,118v-52,-5,-44,-48,-28,-91r47,-127v11,-20,-20,-16,-11,-32v12,-4,55,-17,70,-9r-59,154v17,-23,44,-49,69,-49v29,0,35,23,35,36xm71,-11v31,-5,74,-89,70,-103v0,-9,-5,-13,-10,-13v-18,-6,-76,77,-69,101v0,10,5,15,9,15","w":184,"k":{"w":2,"v":2}},"c":{"d":"102,-133v-21,7,-43,55,-40,88v3,41,29,24,53,1v5,0,8,3,7,8v-13,34,-108,70,-108,-1v0,-43,53,-117,98,-112v37,-6,50,47,12,50v-21,2,-9,-28,-22,-34","w":136},"d":{"d":"12,-29v0,-54,79,-147,134,-111r24,-70v14,-25,-19,-18,-11,-35v12,-4,55,-17,69,-9r-75,227v0,2,1,4,3,4v4,0,21,-11,33,-23v4,1,6,3,5,9v-8,11,-37,42,-73,42v-31,-7,2,-47,1,-65v-17,26,-45,65,-84,65v-16,0,-26,-14,-26,-34xm131,-133v-29,3,-76,86,-78,110v0,5,2,8,5,8v21,-7,69,-58,78,-94v3,-13,2,-24,-5,-24","w":190,"k":{";":22,"E":22}},"e":{"d":"14,-36v-2,-51,52,-114,106,-113v20,0,34,13,34,29v0,37,-61,54,-90,62v-5,12,-3,38,13,37v13,0,31,-9,47,-25v4,0,8,3,7,8v-17,27,-46,43,-78,43v-26,0,-39,-18,-39,-41xm67,-74v20,-5,45,-25,47,-51v-2,-13,-15,-8,-23,1v-13,14,-21,37,-24,50","w":144,"k":{"m":-2,":":11,"-":11,";":4,"I":2}},"f":{"d":"177,-201v-15,-2,-21,-49,-29,-41v-20,11,-36,70,-44,98r41,0v3,5,0,16,-6,19r-40,0v-21,63,-33,140,-64,190v-11,17,-34,32,-59,32v-37,0,-50,-47,-15,-51v26,11,29,62,45,3r48,-174r-34,0v-8,-24,19,-19,39,-19v16,-51,42,-109,103,-113v50,-3,42,54,15,56","w":107},"g":{"d":"68,-49v18,-1,41,-53,42,-73v0,-7,-5,-11,-9,-11v-22,4,-42,51,-43,73v0,7,4,11,10,11xm62,-25v15,23,79,32,79,73v0,38,-61,49,-91,49v-26,0,-68,-7,-68,-36v0,-28,41,-41,60,-47v-26,-13,-7,-37,9,-49v-16,-4,-32,-15,-32,-41v0,-25,24,-73,83,-73v10,-1,24,7,32,9v17,0,44,-20,44,8v0,23,-18,13,-31,10v-4,0,-1,12,-1,14v0,41,-33,72,-79,75v-2,1,-5,5,-5,8xm104,61v0,-16,-39,-37,-46,-38v-12,1,-31,14,-31,30v0,17,19,26,42,26v20,0,35,-7,35,-18","w":149,"k":{"u":-17,"W":-23,",":11,".":11,";":9}},"h":{"d":"105,-14v16,-21,35,-84,36,-102v0,-6,-2,-10,-7,-10v-28,2,-85,109,-89,125v-8,10,-42,9,-37,-8r69,-201v15,-25,-18,-18,-10,-35v12,-4,55,-17,70,-9r-57,159v17,-22,48,-53,79,-54v17,0,27,12,27,32v0,51,-34,117,-90,122v-23,2,-23,-30,-6,-31v6,0,14,13,15,12","w":183},"i":{"d":"111,-133v-11,36,-29,70,-43,104v-1,3,-1,5,2,5v5,0,25,-14,34,-22v4,0,8,4,7,8v-15,19,-47,43,-76,43v-17,-4,-21,-15,-12,-30v11,-32,32,-63,36,-95v-6,0,-26,16,-32,21v-4,-1,-7,-5,-5,-9v19,-23,53,-41,72,-41v8,0,17,8,17,16xm81,-198v-4,-30,48,-44,49,-9v5,30,-48,43,-49,9","w":111,"k":{",":9,"-":4,"I":2}},"j":{"d":"-38,50v21,6,29,53,41,15r55,-178v0,-4,0,-5,-3,-5v-7,0,-28,18,-32,23v-5,0,-8,-6,-6,-10v12,-14,44,-44,73,-44v32,12,14,39,0,81v-23,67,-30,158,-113,165v-31,3,-50,-43,-15,-47xm74,-198v-4,-29,47,-44,48,-9v5,30,-47,43,-48,9","w":108},"k":{"d":"83,-105v19,-19,40,-46,75,-44v42,2,37,46,11,64v-14,11,-32,17,-44,20v-7,11,6,42,14,42v9,4,26,-29,34,-12v-9,17,-32,40,-59,40v-30,0,-23,-43,-39,-58v-27,5,-10,59,-45,58v-9,0,-25,-3,-21,-14r68,-201v14,-25,-19,-18,-11,-35v12,-4,55,-17,70,-9xm72,-69v17,13,70,-24,69,-43v0,-8,-5,-11,-11,-11v-12,-4,-47,29,-58,54","w":177,"k":{"j":-9,"A":-9,"X":12,",":2,":":12,"E":4,"I":6}},"l":{"d":"35,5v-30,0,-25,-16,-18,-37r61,-178v13,-25,-17,-18,-11,-35v12,-3,56,-18,70,-9r-76,218v-3,10,-4,17,1,17v7,0,28,-22,37,-32v4,0,8,3,7,8v-11,20,-30,48,-71,48","w":99,"k":{"k":47,"f":47,"A":22,",":22,".":4,":":4,"E":22}},"m":{"d":"186,-9v10,-39,32,-73,41,-112v-7,-13,-16,1,-31,18v-21,26,-39,67,-55,100v-4,16,-45,7,-39,-3v0,-6,32,-80,42,-115v-9,-13,-18,1,-35,20v-20,23,-37,65,-52,100v-4,12,-45,4,-38,-5v1,-5,30,-85,35,-101v5,-12,3,-15,-2,-15v-16,-4,-28,34,-37,14v10,-23,33,-41,68,-41v17,0,17,13,14,23r-16,42v20,-28,50,-65,81,-65v36,9,13,34,5,65v25,-38,54,-65,80,-65v32,0,26,30,17,53v-7,18,-16,39,-27,64v-2,5,-1,8,2,8v6,0,22,-14,32,-24v4,-1,7,2,7,7v-10,18,-40,46,-76,46v-8,0,-16,-8,-16,-14","w":278},"n":{"d":"104,-9v9,-40,32,-73,41,-112v-8,-13,-18,0,-32,18v-21,25,-38,68,-56,102v-6,12,-41,8,-37,-8v2,-5,29,-82,35,-98v2,-7,3,-13,-2,-13v-9,-4,-29,30,-37,14v10,-19,40,-43,69,-43v17,0,15,14,12,23v-4,14,-14,31,-16,44v21,-29,49,-67,85,-67v31,0,23,30,15,53v-6,18,-16,39,-27,64v-2,5,-1,8,2,8v5,0,23,-14,32,-24v4,-1,7,2,7,7v-10,18,-40,46,-75,46v-9,0,-16,-8,-16,-14","w":195,"k":{"x":4,"d":4,"j":11,"X":9,":":11}},"o":{"d":"70,-11v30,-8,51,-67,54,-107v0,-8,-2,-15,-10,-15v-31,11,-50,64,-55,107v0,9,4,15,11,15xm18,-45v0,-46,48,-104,94,-104v38,0,53,27,53,53v0,46,-46,101,-95,101v-37,0,-52,-25,-52,-50","w":168,"k":{"l":4,"n":4,"O":4,"Q":2,"h":19,"x":2,"k":2,"f":2,"A":2,"U":4,",":2,":":2,"-":2,";":2,"E":19,"I":2}},"p":{"d":"179,-91v-3,52,-56,109,-116,92v-11,14,-14,37,-22,54v-9,20,6,25,25,24v4,2,3,11,-2,12v-37,0,-59,1,-100,4v-5,-2,-5,-9,-2,-12v24,-4,29,-4,39,-34r57,-167v-9,1,-28,10,-38,15v-5,-1,-6,-7,-4,-10v6,-8,34,-22,48,-25v7,-13,4,-34,27,-32v13,0,23,3,25,7r-8,20v47,-6,73,20,71,52xm84,-11v26,-6,50,-55,48,-85v-1,-24,-11,-30,-29,-29r-32,94v-6,8,6,22,13,20","w":182,"k":{"w":2}},"q":{"d":"130,-149v14,0,20,11,23,18v6,-9,13,-18,20,-27v6,-2,17,0,20,6r-64,207v-9,25,3,24,21,26v3,3,2,9,-1,11v-29,1,-68,5,-102,11v-8,-9,4,-14,12,-15v17,-3,20,-10,27,-30r34,-112v-14,21,-40,59,-82,59v-19,0,-26,-21,-26,-33v0,-17,8,-46,32,-76v27,-33,60,-45,86,-45xm62,-15v16,1,81,-73,72,-103v0,-10,-4,-16,-9,-16v-4,0,-20,5,-40,41v-24,44,-38,61,-23,78","w":182},"r":{"d":"78,-76v20,-34,32,-65,65,-73v10,0,18,7,18,22v0,20,-14,35,-24,35v-11,3,-9,-23,-16,-25v-28,19,-47,82,-63,116v-5,11,-42,8,-37,-8v10,-33,24,-71,34,-102v2,-7,2,-12,-2,-12v-6,0,-20,11,-30,22v-4,0,-7,-4,-6,-8v7,-14,30,-40,56,-40v42,0,1,57,5,73","w":142,"k":{"C":-5,"g":6,"G":-6,"i":-6,"l":4,"n":-10,"Y":-4,"z":7,"Q":2,"V":-5,"q":22,"v":22,"h":2,"x":2,"k":2,"U":2,"X":2,"-":11,";":2,"E":13}},"s":{"d":"50,-58v-38,-34,-5,-88,41,-91v33,-2,49,44,19,47v-19,-9,-35,-42,-46,-16v4,21,41,41,41,67v0,30,-33,58,-66,56v-31,6,-51,-43,-18,-49v17,9,39,45,52,17v0,-9,-16,-24,-23,-31","w":116,"k":{"d":4,"k":4,"f":9,"j":2,",":6,":":4}},"t":{"d":"137,-125r-37,0r-33,93v-2,5,-2,8,2,8v7,0,24,-13,38,-27v6,0,8,3,7,8v-12,18,-48,48,-78,48v-19,0,-20,-16,-13,-35r33,-95r-26,0v-10,-18,21,-17,34,-20v12,-14,26,-51,51,-32r-10,33r34,0v5,5,1,16,-2,19","w":115,"k":{"h":14,"k":43,"f":9,"j":36,"A":36,"X":-4,",":36,".":-4,":":30,"-":9,"E":-2}},"u":{"d":"93,-149v13,0,19,14,14,25r-35,88v-2,13,5,11,16,2v30,-26,56,-78,72,-112v11,-6,33,-1,39,5v-14,35,-29,71,-41,106v-2,4,-3,10,1,10v6,0,24,-14,33,-23v5,0,7,3,7,8v-10,18,-46,45,-76,45v-9,0,-16,-8,-12,-18v5,-16,16,-36,19,-51v-19,27,-58,69,-87,69v-22,0,-23,-22,-15,-40r30,-75v2,-5,2,-10,-1,-10v-7,0,-22,15,-32,22v-4,-1,-7,-3,-6,-8v13,-19,47,-43,74,-43","w":195,"k":{"h":11,"k":9,"f":9,"j":6,",":6,";":2,"E":11,"I":11}},"v":{"d":"172,-122v0,39,-72,131,-121,127v-51,-16,-3,-81,4,-112v2,-6,3,-13,-1,-13v-9,-4,-27,30,-37,16v9,-19,40,-45,70,-45v23,0,19,22,12,41v-9,23,-21,52,-26,76v0,4,3,10,9,10v24,-4,65,-65,48,-105v1,-14,9,-22,22,-22v18,0,20,15,20,27","w":165,"k":{"q":2,".":22,",":22,"e":2,"G":2,"f":2}},"w":{"d":"122,-44v-17,16,-45,50,-76,49v-52,-15,5,-79,9,-112v3,-8,2,-13,-1,-13v-10,-4,-27,30,-37,16v9,-19,40,-45,70,-45v22,0,19,22,12,41r-29,81v5,12,14,1,24,-8v27,-29,37,-53,43,-83v7,-28,20,-31,32,-31v9,0,19,5,19,16v0,26,-34,64,-32,95v0,9,3,15,10,15v28,0,58,-68,46,-106v1,-12,10,-20,23,-20v17,0,21,15,21,27v0,42,-79,127,-118,127v-24,0,-25,-31,-16,-49","w":248,"k":{"q":2,".":22,",":22,"C":2,"g":2,"O":2,"k":2}},"x":{"d":"162,-99v-9,0,-7,-18,-17,-17v-5,-2,-30,24,-38,35v4,12,16,57,22,54v5,4,16,-32,30,-21v-6,43,-61,78,-76,26r-8,-24v-15,16,-41,51,-63,51v-9,0,-16,-7,-16,-18v0,-13,12,-31,21,-31v6,-2,8,19,15,17v2,0,10,-6,26,-24r11,-14v-10,-21,-12,-76,-37,-29v-4,1,-9,-1,-10,-5v2,-22,56,-82,71,-27r9,27v15,-19,43,-53,60,-50v12,0,18,10,18,19v0,17,-9,31,-18,31","w":163,"k":{"q":2,"g":19727}},"y":{"d":"23,72v34,-21,34,-50,34,-118v-1,-43,-4,-71,-14,-71v-12,-4,-19,42,-35,26v7,-20,24,-58,55,-58v39,0,32,96,31,139v21,-39,29,-79,36,-124v1,-11,6,-15,12,-15v11,0,23,5,23,16v-18,60,-87,227,-168,230v-14,0,-28,-9,-28,-25v0,-13,10,-23,22,-23v14,-1,21,26,32,23","w":153,"k":{"o":2,"Y":7,"z":7,"v":-13,"y":32,"k":16,"f":-4,"j":29,"A":-4,",":-4,".":-4,"E":36,"I":18}},"z":{"d":"104,8v-31,3,-65,-46,-83,-3v-33,-4,-24,-22,-3,-39v31,-26,59,-46,86,-68v3,-2,4,-4,0,-6v-26,-5,-48,-17,-56,-2v6,11,16,28,-5,28v-11,0,-19,-8,-19,-17v1,-25,35,-48,60,-48v26,0,54,27,70,0v8,-1,17,7,14,17v-49,40,-76,56,-106,87v22,-6,60,39,74,16v1,-11,-20,-37,3,-37v14,0,23,14,23,25v0,27,-29,44,-58,47","w":159,"k":{"l":2,"v":11,"w":2,"y":11,"k":2,"A":11,"E":13,"I":2}},"{":{"d":"35,13v7,-28,22,-58,28,-77v3,-11,6,-26,-23,-28v-1,-3,-1,-8,1,-9v64,-5,41,-58,58,-104v15,-41,40,-46,73,-45v3,2,3,9,-1,11v-83,7,-19,120,-94,143v46,18,-8,81,-12,108v-2,12,-5,32,20,36v1,2,1,7,-2,9v-28,1,-58,-8,-48,-44","w":122},"|":{"d":"71,-270r0,360r-31,0r0,-360r31,0","w":89},"}":{"d":"116,-206v-7,28,-22,58,-28,77v-3,11,-7,26,23,28v1,3,1,8,-2,9v-62,6,-41,59,-57,104v-15,41,-40,46,-73,45v-3,-2,-3,-9,0,-11v84,-6,20,-119,94,-143v-44,-18,9,-81,13,-108v2,-12,5,-32,-20,-35v-2,-3,-1,-8,2,-10v28,-1,58,8,48,44","w":122},"~":{"d":"24,-40v4,-18,18,-56,50,-50v35,-1,70,9,76,-26v6,-4,17,-2,21,5v-9,21,-16,47,-48,47v-39,0,-72,-8,-80,29v-5,3,-17,2,-19,-5"},"'":{"d":"127,-240r-42,95v-5,2,-11,2,-14,0r10,-95v3,-11,10,-12,24,-12v15,0,27,2,22,12","w":94},"`":{"d":"77,-213v-17,-15,6,-29,19,-31v4,0,7,2,10,10r19,64v0,4,-5,6,-9,5","w":136},"\u00a0":{"w":86}}});;
/*
 * jquery.tools 1.1.2 - The missing UI library for the Web
 * 
 * [tools.scrollable-1.1.2, tools.scrollable.circular-0.5.1, tools.scrollable.autoscroll-1.0.1, tools.overlay-1.1.2, tools.expose-1.0.5]
 * 
 * Copyright (c) 2009 Tero Piirainen
 * http://flowplayer.org/tools/
 *
 * Dual licensed under MIT and GPL 2+ licenses
 * http://www.opensource.org/licenses
 * 
 * -----
 * 
 * File generated: Thu Jan 07 22:53:43 GMT 2010
 */
(function(b){b.tools=b.tools||{};b.tools.scrollable={version:"1.1.2",conf:{size:5,vertical:false,speed:400,keyboard:true,keyboardSteps:null,disabledClass:"disabled",hoverClass:null,clickable:true,activeClass:"active",easing:"swing",loop:false,items:".items",item:null,prev:".prev",next:".next",prevPage:".prevPage",nextPage:".nextPage",api:false}};var c;function a(o,m){var r=this,p=b(this),d=!m.vertical,e=o.children(),k=0,i;if(!c){c=r}b.each(m,function(s,t){if(b.isFunction(t)){p.bind(s,t)}});if(e.length>1){e=b(m.items,o)}function l(t){var s=b(t);return m.globalNav?s:o.parent().find(t)}o.data("finder",l);var f=l(m.prev),h=l(m.next),g=l(m.prevPage),n=l(m.nextPage);b.extend(r,{getIndex:function(){return k},getClickIndex:function(){var s=r.getItems();return s.index(s.filter("."+m.activeClass))},getConf:function(){return m},getSize:function(){return r.getItems().size()},getPageAmount:function(){return Math.ceil(this.getSize()/m.size)},getPageIndex:function(){return Math.ceil(k/m.size)},getNaviButtons:function(){return f.add(h).add(g).add(n)},getRoot:function(){return o},getItemWrap:function(){return e},getItems:function(){return e.children(m.item)},getVisibleItems:function(){return r.getItems().slice(k,k+m.size)},seekTo:function(s,w,t){if(s<0){s=0}if(k===s){return r}if(b.isFunction(w)){t=w}if(s>r.getSize()-m.size){return m.loop?r.begin():this.end()}var u=r.getItems().eq(s);if(!u.length){return r}var v=b.Event("onBeforeSeek");p.trigger(v,[s]);if(v.isDefaultPrevented()){return r}if(w===undefined||b.isFunction(w)){w=m.speed}function x(){if(t){t.call(r,s)}p.trigger("onSeek",[s])}if(d){e.animate({left:-u.position().left},w,m.easing,x)}else{e.animate({top:-u.position().top},w,m.easing,x)}c=r;k=s;v=b.Event("onStart");p.trigger(v,[s]);if(v.isDefaultPrevented()){return r}f.add(g).toggleClass(m.disabledClass,s===0);h.add(n).toggleClass(m.disabledClass,s>=r.getSize()-m.size);return r},move:function(u,t,s){i=u>0;return this.seekTo(k+u,t,s)},next:function(t,s){return this.move(1,t,s)},prev:function(t,s){return this.move(-1,t,s)},movePage:function(w,v,u){i=w>0;var s=m.size*w;var t=k%m.size;if(t>0){s+=(w>0?-t:m.size-t)}return this.move(s,v,u)},prevPage:function(t,s){return this.movePage(-1,t,s)},nextPage:function(t,s){return this.movePage(1,t,s)},setPage:function(t,u,s){return this.seekTo(t*m.size,u,s)},begin:function(t,s){i=false;return this.seekTo(0,t,s)},end:function(t,s){i=true;var u=this.getSize()-m.size;return u>0?this.seekTo(u,t,s):r},reload:function(){p.trigger("onReload");return r},focus:function(){c=r;return r},click:function(u){var v=r.getItems().eq(u),s=m.activeClass,t=m.size;if(u<0||u>=r.getSize()){return r}if(t==1){if(m.loop){return r.next()}if(u===0||u==r.getSize()-1){i=(i===undefined)?true:!i}return i===false?r.prev():r.next()}if(t==2){if(u==k){u--}r.getItems().removeClass(s);v.addClass(s);return r.seekTo(u,time,fn)}if(!v.hasClass(s)){r.getItems().removeClass(s);v.addClass(s);var x=Math.floor(t/2);var w=u-x;if(w>r.getSize()-t){w=r.getSize()-t}if(w!==u){return r.seekTo(w)}}return r},bind:function(s,t){p.bind(s,t);return r},unbind:function(s){p.unbind(s);return r}});b.each("onBeforeSeek,onStart,onSeek,onReload".split(","),function(s,t){r[t]=function(u){return r.bind(t,u)}});f.addClass(m.disabledClass).click(function(){r.prev()});h.click(function(){r.next()});n.click(function(){r.nextPage()});if(r.getSize()<m.size){h.add(n).addClass(m.disabledClass)}g.addClass(m.disabledClass).click(function(){r.prevPage()});var j=m.hoverClass,q="keydown."+Math.random().toString().substring(10);r.onReload(function(){if(j){r.getItems().hover(function(){b(this).addClass(j)},function(){b(this).removeClass(j)})}if(m.clickable){r.getItems().each(function(s){b(this).unbind("click.scrollable").bind("click.scrollable",function(t){if(b(t.target).is("a")){return}return r.click(s)})})}if(m.keyboard){b(document).unbind(q).bind(q,function(t){if(t.altKey||t.ctrlKey){return}if(m.keyboard!="static"&&c!=r){return}var u=m.keyboardSteps;if(d&&(t.keyCode==37||t.keyCode==39)){r.move(t.keyCode==37?-u:u);return t.preventDefault()}if(!d&&(t.keyCode==38||t.keyCode==40)){r.move(t.keyCode==38?-u:u);return t.preventDefault()}return true})}else{b(document).unbind(q)}});r.reload()}b.fn.scrollable=function(d){var e=this.eq(typeof d=="number"?d:0).data("scrollable");if(e){return e}var f=b.extend({},b.tools.scrollable.conf);d=b.extend(f,d);d.keyboardSteps=d.keyboardSteps||d.size;this.each(function(){e=new a(b(this),d);b(this).data("scrollable",e)});return d.api?e:this}})(jQuery);
(function(b){var a=b.tools.scrollable;a.plugins=a.plugins||{};a.plugins.circular={version:"0.5.1",conf:{api:false,clonedClass:"cloned"}};b.fn.circular=function(e){var d=b.extend({},a.plugins.circular.conf),c;b.extend(d,e);this.each(function(){var i=b(this).scrollable(),n=i.getItems(),k=i.getConf(),f=i.getItemWrap(),j=0;if(i){c=i}if(n.length<k.size){return false}n.slice(0,k.size).each(function(o){b(this).clone().appendTo(f).click(function(){i.click(n.length+o)}).addClass(d.clonedClass)});var l=b.makeArray(n.slice(-k.size)).reverse();b(l).each(function(o){b(this).clone().prependTo(f).click(function(){i.click(-o-1)}).addClass(d.clonedClass)});var m=f.children(k.item);var h=k.hoverClass;if(h){m.hover(function(){b(this).addClass(h)},function(){b(this).removeClass(h)})}function g(o){var p=m.eq(o);if(k.vertical){f.css({top:-p.position().top})}else{f.css({left:-p.position().left})}}g(k.size);b.extend(i,{move:function(s,r,p,q){var u=j+s+k.size;var t=u>i.getSize()-k.size;if(u<=0||t){var o=j+k.size+(t?-n.length:n.length);g(o);u=o+s}if(q){m.removeClass(k.activeClass).eq(u+Math.floor(k.size/2)).addClass(k.activeClass)}if(u===j+k.size){return self}return i.seekTo(u,r,p)},begin:function(p,o){return this.seekTo(k.size,p,o)},end:function(p,o){return this.seekTo(n.length,p,o)},click:function(p,r,q){if(!k.clickable){return self}if(k.size==1){return this.next()}var s=p-j,o=k.activeClass;s-=Math.floor(k.size/2);return this.move(s,r,q,true)},getIndex:function(){return j},setPage:function(p,q,o){return this.seekTo(p*k.size+k.size,q,o)},getPageAmount:function(){return Math.ceil(n.length/k.size)},getPageIndex:function(){if(j<0){return this.getPageAmount()-1}if(j>=n.length){return 0}var o=(j+k.size)/k.size-1;return o},getVisibleItems:function(){var o=j+k.size;return m.slice(o,o+k.size)}});i.onStart(function(p,o){j=o-k.size;return false});i.getNaviButtons().removeClass(k.disabledClass)});return d.api?c:this}})(jQuery);
(function(b){var a=b.tools.scrollable;a.plugins=a.plugins||{};a.plugins.autoscroll={version:"1.0.1",conf:{autoplay:true,interval:3000,autopause:true,steps:1,api:false}};b.fn.autoscroll=function(d){if(typeof d=="number"){d={interval:d}}var e=b.extend({},a.plugins.autoscroll.conf),c;b.extend(e,d);this.each(function(){var g=b(this).scrollable();if(g){c=g}var i,f,h=true;g.play=function(){if(i){return}h=false;i=setInterval(function(){g.move(e.steps)},e.interval);g.move(e.steps)};g.pause=function(){i=clearInterval(i)};g.stop=function(){g.pause();h=true};if(e.autopause){g.getRoot().add(g.getNaviButtons()).hover(function(){g.pause();clearInterval(f)},function(){if(!h){f=setTimeout(g.play,e.interval)}})}if(e.autoplay){setTimeout(g.play,e.interval)}});return e.api?c:this}})(jQuery);
(function(c){c.tools=c.tools||{};c.tools.overlay={version:"1.1.2",addEffect:function(e,f,g){b[e]=[f,g]},conf:{top:"10%",left:"center",absolute:false,speed:"normal",closeSpeed:"fast",effect:"default",close:null,oneInstance:true,closeOnClick:true,closeOnEsc:true,api:false,expose:null,target:null}};var b={};c.tools.overlay.addEffect("default",function(e){this.getOverlay().fadeIn(this.getConf().speed,e)},function(e){this.getOverlay().fadeOut(this.getConf().closeSpeed,e)});var d=[];function a(g,k){var o=this,m=c(this),n=c(window),j,i,h,e=k.expose&&c.tools.expose.version;var f=k.target||g.attr("rel");i=f?c(f):null||g;if(!i.length){throw"Could not find Overlay: "+f}if(g&&g.index(i)==-1){g.click(function(p){o.load(p);return p.preventDefault()})}c.each(k,function(p,q){if(c.isFunction(q)){m.bind(p,q)}});c.extend(o,{load:function(u){if(o.isOpened()){return o}var r=b[k.effect];if(!r){throw'Overlay: cannot find effect : "'+k.effect+'"'}if(k.oneInstance){c.each(d,function(){this.close(u)})}u=u||c.Event();u.type="onBeforeLoad";m.trigger(u);if(u.isDefaultPrevented()){return o}h=true;if(e){i.expose().load(u)}var t=k.top;var s=k.left;var p=i.outerWidth({margin:true});var q=i.outerHeight({margin:true});if(typeof t=="string"){t=t=="center"?Math.max((n.height()-q)/2,0):parseInt(t,10)/100*n.height()}if(s=="center"){s=Math.max((n.width()-p)/2,0)}if(!k.absolute){t+=n.scrollTop();s+=n.scrollLeft()}i.css({top:t,left:s,position:"absolute"});u.type="onStart";m.trigger(u);r[0].call(o,function(){if(h){u.type="onLoad";m.trigger(u)}});if(k.closeOnClick){c(document).bind("click.overlay",function(w){if(!o.isOpened()){return}var v=c(w.target);if(v.parents(i).length>1){return}c.each(d,function(){this.close(w)})})}if(k.closeOnEsc){c(document).unbind("keydown.overlay").bind("keydown.overlay",function(v){if(v.keyCode==27){c.each(d,function(){this.close(v)})}})}return o},close:function(q){if(!o.isOpened()){return o}q=q||c.Event();q.type="onBeforeClose";m.trigger(q);if(q.isDefaultPrevented()){return}h=false;b[k.effect][1].call(o,function(){q.type="onClose";m.trigger(q)});var p=true;c.each(d,function(){if(this.isOpened()){p=false}});if(p){c(document).unbind("click.overlay").unbind("keydown.overlay")}return o},getContent:function(){return i},getOverlay:function(){return i},getTrigger:function(){return g},getClosers:function(){return j},isOpened:function(){return h},getConf:function(){return k},bind:function(p,q){m.bind(p,q);return o},unbind:function(p){m.unbind(p);return o}});c.each("onBeforeLoad,onStart,onLoad,onBeforeClose,onClose".split(","),function(p,q){o[q]=function(r){return o.bind(q,r)}});if(e){if(typeof k.expose=="string"){k.expose={color:k.expose}}c.extend(k.expose,{api:true,closeOnClick:k.closeOnClick,closeOnEsc:false});var l=i.expose(k.expose);l.onBeforeClose(function(p){o.close(p)});o.onClose(function(p){l.close(p)})}j=i.find(k.close||".close");if(!j.length&&!k.close){j=c('<div class="close"></div>');i.prepend(j)}j.click(function(p){o.close(p)})}c.fn.overlay=function(e){var f=this.eq(typeof e=="number"?e:0).data("overlay");if(f){return f}if(c.isFunction(e)){e={onBeforeLoad:e}}var g=c.extend({},c.tools.overlay.conf);e=c.extend(true,g,e);this.each(function(){f=new a(c(this),e);d.push(f);c(this).data("overlay",f)});return e.api?f:this}})(jQuery);
(function(b){b.tools=b.tools||{};b.tools.expose={version:"1.0.5",conf:{maskId:null,loadSpeed:"slow",closeSpeed:"fast",closeOnClick:true,closeOnEsc:true,zIndex:9998,opacity:0.8,color:"#456",api:false}};function a(){if(b.browser.msie){var f=b(document).height(),e=b(window).height();return[window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,f-e<20?e:f]}return[b(window).width(),b(document).height()]}function c(h,g){var e=this,j=b(this),d=null,f=false,i=0;b.each(g,function(k,l){if(b.isFunction(l)){j.bind(k,l)}});b(window).resize(function(){e.fit()});b.extend(this,{getMask:function(){return d},getExposed:function(){return h},getConf:function(){return g},isLoaded:function(){return f},load:function(n){if(f){return e}i=h.eq(0).css("zIndex");if(g.maskId){d=b("#"+g.maskId)}if(!d||!d.length){var l=a();d=b("<div/>").css({position:"absolute",top:0,left:0,width:l[0],height:l[1],display:"none",opacity:0,zIndex:g.zIndex});if(g.maskId){d.attr("id",g.maskId)}b("body").append(d);var k=d.css("backgroundColor");if(!k||k=="transparent"||k=="rgba(0, 0, 0, 0)"){d.css("backgroundColor",g.color)}if(g.closeOnEsc){b(document).bind("keydown.unexpose",function(o){if(o.keyCode==27){e.close()}})}if(g.closeOnClick){d.bind("click.unexpose",function(o){e.close(o)})}}n=n||b.Event();n.type="onBeforeLoad";j.trigger(n);if(n.isDefaultPrevented()){return e}b.each(h,function(){var o=b(this);if(!/relative|absolute|fixed/i.test(o.css("position"))){o.css("position","relative")}});h.css({zIndex:Math.max(g.zIndex+1,i=="auto"?0:i)});var m=d.height();if(!this.isLoaded()){d.css({opacity:0,display:"block"}).fadeTo(g.loadSpeed,g.opacity,function(){if(d.height()!=m){d.css("height",m)}n.type="onLoad";j.trigger(n)})}f=true;return e},close:function(k){if(!f){return e}k=k||b.Event();k.type="onBeforeClose";j.trigger(k);if(k.isDefaultPrevented()){return e}d.fadeOut(g.closeSpeed,function(){k.type="onClose";j.trigger(k);h.css({zIndex:b.browser.msie?i:null})});f=false;return e},fit:function(){if(d){var k=a();d.css({width:k[0],height:k[1]})}},bind:function(k,l){j.bind(k,l);return e},unbind:function(k){j.unbind(k);return e}});b.each("onBeforeLoad,onLoad,onBeforeClose,onClose".split(","),function(k,l){e[l]=function(m){return e.bind(l,m)}})}b.fn.expose=function(d){var e=this.eq(typeof d=="number"?d:0).data("expose");if(e){return e}if(typeof d=="string"){d={color:d}}var f=b.extend({},b.tools.expose.conf);d=b.extend(f,d);this.each(function(){e=new c(b(this),d);b(this).data("expose",e)});return d.api?e:this}})(jQuery);
;
$(document).ready(function(){
/* $("#block-block-2").corner(); */

$("#block-block-2 .block-inner").corner("round 15px").parent().css('padding', '4px').corner("round 15px");

$(".promo").corner("round 15px top");
$(".promo h3").corner("round 15px top cc:#fff");

// disable checkboxes on form
$(":checkbox").each( function() {

  if ($(this).attr("id").search(/FULL/) > -1) {
    $(this).css("visibility","hidden");
  }
});


	$("#safetyalert").hover( function(){  

           $(this).addClass('hovered');
 	  },
          function() {
           $(this).removeClass('hovered');
          });

	$("#safetyalert").click(function(){ 
    	        window.location="http://www.nnedv.org/esc.html"; return false;
        });
	$("#safetyalert A").click(function(){ 
    	        window.location =this.getAttribute('href'); return false;
        });


// cufon stuff
  Cufon.replace('h1.title');
    
    $("#search-block-form .form-text").attr("value","Search the site...");
    $("#search-block-form .form-text").focus(function() {
    	if ($(this).attr("value") == "Search the site...") {
    		$(this).attr("value",""); 
    	}
	});
	    

        $('#psa-container').jqm({modal:true,toTop:true,ajax:'/sites/default/files/home/psa.html'}); 
         $('#psa-container').jqmAddTrigger($('#psa-trigger, #psa-trigger a')); 

	// scrollables

	if ($(".view-features .view-content .views-row").length > 1) {
		$(".view-features").scrollable( {
			items:".view-content", item:".views-row",size:1,
		}
		).circular().autoscroll({
			autoplay: true,
			interval: 4000
		});
	}
}); //close doc ready
;

