/*
 * 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")}})})();
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var K=function(){return K.replace.apply(null,arguments)};var U=K.DOM={ready:(function(){var Z=false,b={loaded:1,complete:1};var Y=[],a=function(){if(Z){return}Z=true;for(var c;c=Y.shift();c()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",a,false);window.addEventListener("pageshow",a,false)}if(!window.opera&&document.readyState){(function(){b[document.readyState]?a():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");a()}catch(c){setTimeout(arguments.callee,1)}})()}O(window,"load",a);return function(c){if(!arguments.length){a()}else{Z?c():Y.push(c)}}})()};var L=K.CSS={Size:function(Z,Y){this.value=parseFloat(Z);this.unit=String(Z).match(/[a-z%]*$/)[0]||"px";this.convert=function(a){return a/Y*this.value};this.convertFrom=function(a){return a/this.value*Y};this.toString=function(){return this.value+this.unit}},getStyle:function(Z){var Y=document.defaultView;if(Y&&Y.getComputedStyle){return new A(Y.getComputedStyle(Z,null))}if(Z.currentStyle){return new A(Z.currentStyle)}return new A(Z.style)},ready:(function(){var a=false;var Z=[],b=function(){a=true;for(var d;d=Z.shift();d()){}};var Y=Object.prototype.propertyIsEnumerable?F("style"):{length:0};var c=F("link");U.ready(function(){var g=0,f;for(var e=0,d=c.length;f=c[e],e<d;++e){if(!f.disabled&&f.rel.toLowerCase()=="stylesheet"){++g}}if(document.styleSheets.length>=Y.length+g){b()}else{setTimeout(arguments.callee,10)}});return function(d){if(a){d()}else{Z.push(d)}}})(),supports:function(a,Z){var Y=document.createElement("span").style;if(Y[a]===undefined){return false}Y[a]=Z;return Y[a]===Z},textAlign:function(b,a,Y,Z){if(a.get("textAlign")=="right"){if(Y>0){b=" "+b}}else{if(Y<Z-1){b+=" "}}return b},textDecoration:function(d,c){if(!c){c=this.getStyle(d)}var Z={underline:null,overline:null,"line-through":null};for(var Y=d;Y.parentNode&&Y.parentNode.nodeType==1;){var b=true;for(var a in Z){if(Z[a]){continue}if(c.get("textDecoration").indexOf(a)!=-1){Z[a]=c.get("color")}b=false}if(b){break}c=this.getStyle(Y=Y.parentNode)}return Z},textShadow:I(function(c){if(c=="none"){return null}var b=[],d={},Y,Z=0;var a=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Y=a.exec(c)){if(Y[0]==","){b.push(d);d={},Z=0}else{if(Y[1]){d.color=Y[1]}else{d[["offX","offY","blur"][Z++]]=Y[2]}}}b.push(d);return b}),color:I(function(Z){var Y={};Y.color=Z.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(b,a,c){Y.opacity=parseFloat(c);return"rgb("+a+")"});return Y}),textTransform:function(Z,Y){return Z[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Y.get("textTransform")]||"toString"]()}};function Q(Z){var Y=this.face=Z.face;this.glyphs=Z.glyphs;this.w=Z.w;this.baseSize=parseInt(Y["units-per-em"],10);this.family=Y["font-family"].toLowerCase();this.weight=Y["font-weight"];this.style=Y["font-style"]||"normal";this.viewBox=(function(){var b=Y.bbox.split(/\s+/);var a={minX:parseInt(b[0],10),minY:parseInt(b[1],10),maxX:parseInt(b[2],10),maxY:parseInt(b[3],10)};a.width=a.maxX-a.minX,a.height=a.maxY-a.minY;a.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return a})();this.ascent=-parseInt(Y.ascent,10);this.descent=-parseInt(Y.descent,10);this.height=-this.ascent+this.descent}function E(){var Z={},Y={oblique:"italic",italic:"oblique"};this.add=function(a){(Z[a.style]||(Z[a.style]={}))[a.weight]=a};this.get=function(e,f){var d=Z[e]||Z[Y[e]]||Z.normal||Z.italic||Z.oblique;if(!d){return null}f={normal:400,bold:700}[f]||parseInt(f,10);if(d[f]){return d[f]}var b={1:1,99:0}[f%100],h=[],c,a;if(b===undefined){b=f>400}if(f==500){f=400}for(var g in d){g=parseInt(g,10);if(!c||g<c){c=g}if(!a||g>a){a=g}h.push(g)}if(f<c){f=c}if(f>a){f=a}h.sort(function(j,i){return(b?(j>f&&i>f)?j<i:j>i:(j<f&&i<f)?j>i:j<i)?-1:1});return d[h[0]]}}function P(){function a(c,d){if(c.contains){return c.contains(d)}return c.compareDocumentPosition(d)&16}function Y(d){var c=d.relatedTarget;if(!c||a(this,c)){return}Z(this)}function b(c){Z(this)}function Z(c){setTimeout(function(){K.replace(c,D.get(c).options,true)},10)}this.attach=function(c){if(c.onmouseenter===undefined){O(c,"mouseover",Y);O(c,"mouseout",Y)}else{O(c,"mouseenter",b);O(c,"mouseleave",b)}}}function X(){var a={},Y=0;function Z(b){return b.cufid||(b.cufid=++Y)}this.get=function(b){var c=Z(b);return a[c]||(a[c]={})}}function A(Y){var a={},Z={};this.get=function(b){return a[b]!=undefined?a[b]:Y[b]};this.getSize=function(c,b){return Z[c]||(Z[c]=new L.Size(this.get(c),b))};this.extend=function(b){for(var c in b){a[c]=b[c]}return this}}function O(Z,Y,a){if(Z.addEventListener){Z.addEventListener(Y,a,false)}else{if(Z.attachEvent){Z.attachEvent("on"+Y,function(){return a.call(Z,window.event)})}}}function R(Z,Y){var a=D.get(Z);if(a.options){return Z}if(Y.hover&&Y.hoverables[Z.nodeName.toLowerCase()]){B.attach(Z)}a.options=Y;return Z}function I(Y){var Z={};return function(a){if(!Z.hasOwnProperty(a)){Z[a]=Y.apply(null,arguments)}return Z[a]}}function C(d,c){if(!c){c=L.getStyle(d)}var Z=c.get("fontFamily").split(/\s*,\s*/),b;for(var a=0,Y=Z.length;a<Y;++a){b=Z[a].replace(/^(["'])(.*?)\1$/,"$2").toLowerCase();if(H[b]){return H[b].get(c.get("fontStyle"),c.get("fontWeight"))}}return null}function F(Y){return document.getElementsByTagName(Y)}function G(){var Y={},b;for(var a=0,Z=arguments.length;a<Z;++a){for(b in arguments[a]){Y[b]=arguments[a][b]}}return Y}function M(b,k,Z,m,c,a){var j=m.separate;if(j=="none"){return W[m.engine].apply(null,arguments)}var h=document.createDocumentFragment(),e;var f=k.split(N[j]),Y=(j=="words");if(Y&&S){if(/^\s/.test(k)){f.unshift("")}if(/\s$/.test(k)){f.push("")}}for(var g=0,d=f.length;g<d;++g){e=W[m.engine](b,Y?L.textAlign(f[g],Z,g,d):f[g],Z,m,c,a,g<d-1);if(e){h.appendChild(e)}}return h}function J(Z,g){var a,Y,d,f;for(var b=R(Z,g).firstChild;b;b=d){d=b.nextSibling;f=false;if(b.nodeType==1){if(!b.firstChild){continue}if(!/cufon/.test(b.className)){arguments.callee(b,g);continue}else{f=true}}if(!Y){Y=L.getStyle(Z).extend(g)}if(!a){a=C(Z,Y)}if(!a){continue}if(f){W[g.engine](a,null,Y,g,b,Z);continue}var e=b.data;if(e===""){continue}var c=M(a,e,Y,g,b,Z);if(c){b.parentNode.replaceChild(c,b)}else{b.parentNode.removeChild(b)}}}var S=" ".split(/\s+/).length==0;var D=new X();var B=new P();var V=[];var W={},H={},T={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||window.jQuery||(window.dojo&&dojo.query)||(window.$$&&function(Y){return $$(Y)})||(window.$&&function(Y){return $(Y)})||(document.querySelectorAll&&function(Y){return document.querySelectorAll(Y)})||F),separate:"words",textShadow:"none"};var N={words:/\s+/,characters:""};K.now=function(){U.ready();return K};K.refresh=function(){var a=V.splice(0,V.length);for(var Z=0,Y=a.length;Z<Y;++Z){K.replace.apply(null,a[Z])}return K};K.registerEngine=function(Z,Y){if(!Y){return K}W[Z]=Y;return K.set("engine",Z)};K.registerFont=function(a){var Y=new Q(a),Z=Y.family;if(!H[Z]){H[Z]=new E()}H[Z].add(Y);return K.set("fontFamily",Z)};K.replace=function(a,Z,Y){Z=G(T,Z);if(!Z.engine){return K}if(typeof Z.textShadow=="string"){Z.textShadow=L.textShadow(Z.textShadow)}if(!Y){V.push(arguments)}if(a.nodeType||typeof a=="string"){a=[a]}L.ready(function(){for(var c=0,b=a.length;c<b;++c){var d=a[c];if(typeof d=="string"){K.replace(Z.selector(d),Z,true)}else{J(d,Z)}}});return K};K.set=function(Y,Z){T[Y]=Z;return K};return K})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return null}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("@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{position:absolute;left:-10000in;font-size:1px}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));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(q,T,k,P,X,r){var I=(T===null);var V=q.viewBox;var J=k.getSize("fontSize",q.baseSize);var h=k.get("letterSpacing");h=(h=="normal")?0:J.convertFrom(parseInt(h,10));var W=0,j=0,f=0,R=0;var U=P.textShadow,d=[];if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];var c=J.convertFrom(parseFloat(Z.offX));var b=J.convertFrom(parseFloat(Z.offY));d[p]=[c,b];if(b<W){W=b}if(c>j){j=c}if(b>f){f=b}if(c<R){R=c}}}var u=Cufon.CSS.textTransform(I?X.alt:T,k).split("");var G=0,S=null;for(var p=0,m=u.length;p<m;++p){var Q=q.glyphs[u[p]]||q.missingGlyph;if(!Q){continue}G+=S=Number(Q.w||q.w)+h}if(S===null){return null}j+=(V.width-S);R+=V.minX;var O,K;if(I){O=X;K=X.firstChild}else{O=document.createElement("span");O.className="cufon cufon-canvas";O.alt=T;K=document.createElement("canvas");O.appendChild(K);if(P.printable){var n=document.createElement("span");n.className="cufon-alt";n.appendChild(document.createTextNode(T));O.appendChild(n)}}var v=O.style;var a=K.style;var H=J.convert(V.height-W+f);var t=Math.ceil(H);var e=t/H;K.width=Math.ceil(J.convert(G+j-R)*e);K.height=t;W+=V.minY;a.top=Math.round(J.convert(W-q.ascent))+"px";a.left=Math.round(J.convert(R))+"px";var N=Math.ceil(J.convert(G*e))+"px";if(A){v.width=N;v.height=J.convert(q.height)+"px"}else{v.paddingLeft=N;v.paddingBottom=(J.convert(q.height)-1)+"px"}var s=K.getContext("2d"),Y=t/V.height;s.scale(Y,Y);s.translate(-R,-W);s.lineWidth=q.face["underline-thickness"];s.save();function L(i,g){s.strokeStyle=g;s.beginPath();s.moveTo(0,i);s.lineTo(G,i);s.stroke()}var M=P.enableTextDecoration?Cufon.CSS.textDecoration(r,k):{};if(M.underline){L(-q.face["underline-position"],M.underline)}if(M.overline){L(q.ascent,M.overline)}s.fillStyle=k.get("color");function o(){for(var w=0,g=u.length;w<g;++w){var x=q.glyphs[u[w]]||q.missingGlyph;if(!x){continue}s.beginPath();if(x.d){if(x.code){C(x.code,s)}else{x.code=D("m"+x.d,s)}}s.fill();s.translate(Number(x.w||q.w)+h,0)}}if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];s.save();s.fillStyle=Z.color;s.translate.apply(s,d[p]);o();s.restore()}}o();s.restore();if(M["line-through"]){L(-q.descent,M["line-through"])}return O}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}document.write('<!--[if vml]><script type="text/javascript">Cufon.vmlEnabled=true;<\/script><![endif]-->');if(!Cufon.vmlEnabled){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml");document.write('<style type="text/css">@media screen{cvml\\:shape,cvml\\:group,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>')}function B(C,D){return A(C,/(?:em|ex|%)$/i.test(D)?"1em":D)}function A(F,G){if(/px$/i.test(G)){return parseFloat(G)}var E=F.style.left,D=F.runtimeStyle.left;F.runtimeStyle.left=F.currentStyle.left;F.style.left=G;var C=F.style.pixelLeft;F.style.left=E;F.runtimeStyle.left=D;return C}return function(r,U,m,R,Y,s,h){var F=(U===null);if(F){U=Y.alt}var W=r.viewBox;var G=m.computedFontSize||(m.computedFontSize=new Cufon.CSS.Size(B(s,m.get("fontSize"))+"px",r.baseSize));var g=m.computedLSpacing;if(g==undefined){g=m.get("letterSpacing");m.computedLSpacing=g=(g=="normal")?0:~~G.convertFrom(A(s,g))}var O,H;if(F){O=Y;H=Y.firstChild}else{O=document.createElement("span");O.className="cufon cufon-vml";O.alt=U;H=document.createElement("span");H.className="cufon-vml-canvas";O.appendChild(H);if(R.printable){var p=document.createElement("span");p.className="cufon-alt";p.appendChild(document.createTextNode(U));O.appendChild(p)}if(!h){O.appendChild(document.createElement("cvml:group"))}}var x=O.style;var b=H.style;var D=G.convert(W.height),u=Math.ceil(D);var f=u/D;var e=W.minX,d=W.minY;b.height=u;b.top=Math.round(G.convert(d-r.ascent));b.left=Math.round(G.convert(e));x.height=G.convert(r.height)+"px";var K=R.enableTextDecoration?Cufon.CSS.textDecoration(s,m):{};var T=m.get("color");var v=Cufon.CSS.textTransform(U,m).split("");var C=0,c=0,L=null;var S,M,V=R.textShadow;for(var q=0,o=0,n=v.length;q<n;++q){S=r.glyphs[v[q]]||r.missingGlyph;if(S){C+=L=~~(S.w||r.w)+g}}if(L===null){return null}var N=-e+C+(W.width-L);var w=G.convert(N*f),j=Math.round(w);var a=N+","+W.height,E;var X="r"+a+"nsnf";for(q=0;q<n;++q){S=r.glyphs[v[q]]||r.missingGlyph;if(!S){continue}if(F){M=H.childNodes[o];if(M.firstChild){M.removeChild(M.firstChild)}}else{M=document.createElement("cvml:shape");H.appendChild(M)}M.stroked="f";M.coordsize=a;M.coordorigin=E=(e-c)+","+d;M.path=(S.d?"m"+S.d+"xe":"")+"m"+E+X;M.fillcolor=T;var t=M.style;t.width=j;t.height=u;if(V){var J=V[0],I=V[1];var Q=Cufon.CSS.color(J.color),P;var Z=document.createElement("cvml:shadow");Z.on="t";Z.color=Q.color;Z.offset=J.offX+","+J.offY;if(I){P=Cufon.CSS.color(I.color);Z.type="double";Z.color2=P.color;Z.offset2=I.offX+","+I.offY}Z.opacity=Q.opacity||(P&&P.opacity)||1;M.appendChild(Z)}c+=~~(S.w||r.w)+g;++o}x.width=Math.max(Math.ceil(G.convert(C*f)),0);return O}})());
// Serif Beta
if (!{"tomdancer.com":1,"www.tomdancer.com":1,"tom":1,"tomdancer":1}[location.host]) throw Error("Host not allowed");Cufon.registerFont({"w":181,"face":{"font-family":"Serif12 Beta Rg","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"3","cap-height":"1","bbox":"-32 -292 369 94","underline-thickness":"18","underline-position":"-36","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":88},"!":{"d":"77,-242r-11,172v0,7,-12,6,-13,0r-10,-172v-1,-10,8,-18,18,-18v10,-1,17,7,16,18xm38,-16v0,-12,9,-20,21,-20v13,0,22,8,22,20v0,12,-9,20,-22,20v-12,0,-21,-8,-21,-20","w":118},"\"":{"d":"35,-173r-5,-73v-2,-19,29,-21,28,0r-5,73r-18,0xm89,-173r-5,-73v-2,-19,29,-21,28,0r-5,73r-18,0","w":139},"#":{"d":"96,0r14,-75r-38,0r-13,75r-16,0r13,-75r-44,0r1,-15r46,0r13,-74r-53,0r2,-16r54,0r14,-77r16,0r-14,77r37,0r14,-77r16,0r-13,77r43,0r-1,16r-45,0r-13,74r52,0r-1,15r-54,0r-13,75r-17,0xm88,-164r-13,74r37,0r14,-74r-38,0","w":198},"$":{"d":"37,-73v5,33,17,53,42,60r9,-104v-52,-25,-66,-49,-66,-78v1,-43,39,-67,79,-65r3,-32r15,0r-3,34v17,5,30,14,36,20r5,-19r13,0r0,69r-14,0v-4,-31,-21,-49,-41,-56r-8,93v43,21,76,48,73,80v-1,51,-41,80,-87,74r-3,32r-15,0r2,-34v-16,-5,-29,-13,-38,-22r-6,21r-11,0r0,-73r15,0xm151,-57v0,-27,-25,-41,-48,-53r-9,99v32,5,57,-16,57,-46xm49,-203v0,22,19,33,43,45r8,-88v-32,-5,-53,16,-51,43","w":203},"%":{"d":"39,-204v0,-31,22,-57,59,-57v36,0,58,26,58,57v0,33,-22,60,-58,60v-37,0,-59,-27,-59,-60xm67,-204v0,26,8,48,31,48v22,0,30,-22,30,-48v0,-24,-8,-44,-30,-44v-23,0,-31,20,-31,44xm70,0r154,-257r19,0r-154,257r-19,0xm158,-56v0,-31,22,-57,59,-57v36,0,58,26,58,57v0,33,-22,60,-58,60v-37,0,-59,-27,-59,-60xm186,-56v0,26,8,47,31,47v22,0,30,-21,30,-47v0,-24,-8,-44,-30,-44v-23,0,-31,20,-31,44","w":311},"&":{"d":"194,-42v16,18,32,33,48,15r5,4v-18,38,-50,32,-75,3v-39,42,-152,25,-144,-41v0,-34,33,-61,62,-74v-11,-19,-30,-40,-28,-67v0,-33,22,-57,59,-57v25,0,49,16,49,45v0,33,-22,55,-47,70r62,92v8,-10,14,-21,18,-31v-4,-14,-15,-40,6,-40v11,0,15,8,11,22v-4,17,-12,39,-26,59xm163,-30v-19,-23,-47,-65,-68,-96v-46,25,-35,115,22,113v17,0,33,-7,46,-17xm147,-210v0,-21,-9,-37,-27,-37v-42,3,-33,63,-7,87r4,8v15,-14,30,-32,30,-58","w":259},"'":{"d":"27,-173r-5,-73v-1,-19,30,-21,29,0r-5,73r-19,0","w":70},"(":{"d":"118,72r-2,10v-115,-63,-121,-303,0,-368r2,10v-44,33,-57,111,-57,169v0,64,13,146,57,179","w":126},")":{"d":"8,-276r2,-10v115,64,121,303,0,368r-2,-10v44,-33,58,-111,58,-168v0,-64,-14,-147,-58,-180","w":126},"*":{"d":"70,-258r20,0r-1,55r52,-19r7,19r-55,15r34,43r-16,12r-31,-44r-31,44r-17,-12r34,-42r-54,-16r7,-19r53,19"},"+":{"d":"81,-180r19,0r0,63r69,0r0,19r-69,0r0,63r-19,0r0,-63r-69,0r0,-19r69,0r0,-63"},",":{"d":"42,6v-25,-1,-28,-46,-1,-42v52,7,4,92,-14,96r-9,-9v11,-10,23,-22,24,-45","w":80},"-":{"d":"29,-99r0,-31r105,0r0,31r-105,0","w":163},".":{"d":"16,-17v0,-12,9,-21,23,-21v14,0,23,9,23,21v0,12,-9,21,-23,21v-14,0,-23,-9,-23,-21","w":77},"\/":{"d":"14,39r127,-302r17,0r-128,302r-16,0","w":173},"0":{"d":"23,-129v0,-74,33,-132,93,-132v60,0,93,58,93,132v0,75,-33,132,-93,132v-60,0,-93,-57,-93,-132xm62,-129v0,68,13,119,54,119v41,0,54,-51,54,-119v0,-66,-13,-118,-54,-118v-41,0,-54,52,-54,118","w":231},"1":{"d":"90,-16r35,5r0,12r-104,0r0,-12r36,-4r0,-201r-36,0r0,-15v21,-2,42,-9,51,-26r18,-1r0,242","w":145},"2":{"d":"50,-29r109,0v1,-8,6,-12,17,-10r-7,39r-156,0r-1,-16v96,-92,118,-136,118,-182v5,-39,-59,-55,-84,-24v9,16,15,46,-14,46v-17,0,-23,-24,-14,-40v31,-56,150,-65,149,24v2,47,-59,103,-119,157","w":188},"3":{"d":"68,-117r-8,-21v80,-11,85,-35,85,-62v0,-36,-54,-57,-83,-30v7,16,9,47,-17,44v-19,0,-23,-22,-15,-38v15,-27,53,-36,77,-36v36,0,75,18,75,61v0,29,-23,52,-72,63r1,6v55,0,82,31,82,63v5,82,-143,87,-172,37v-12,-21,0,-41,18,-41v22,-1,21,29,14,40v30,32,108,21,101,-37v0,-45,-28,-60,-86,-49","w":208},"4":{"d":"14,-58r0,-12r124,-187r18,0r0,180r36,0r-3,19r-33,0r0,44r28,5r0,10r-89,0r0,-10r28,-4r0,-45r-109,0xm123,-201r-80,124r80,0r0,-124","w":207},"5":{"d":"156,-216v-6,-20,-66,-11,-95,-13r-10,86v17,-7,29,-22,57,-21v51,0,70,42,70,78v0,56,-38,89,-89,89v-32,0,-61,-16,-68,-33v-12,-21,0,-41,18,-41v23,-1,22,30,12,40v5,11,24,18,38,18v37,0,52,-32,52,-72v5,-62,-55,-69,-92,-44r-18,0r15,-128r119,0r2,41r-11,0","w":195},"6":{"d":"173,-196v-21,-2,-28,-21,-18,-43v-62,-26,-90,28,-92,117r5,1v28,-65,141,-38,133,36v0,45,-36,89,-88,89v-64,0,-89,-61,-89,-108v0,-99,45,-157,100,-157v28,0,68,15,65,49v0,11,-8,16,-16,16xm118,-10v34,0,46,-29,46,-67v8,-77,-86,-79,-101,-19v0,39,8,86,55,86","w":220},"7":{"d":"95,-14v0,11,-6,16,-17,16v-11,0,-18,-5,-18,-16v0,-60,24,-134,81,-208r-1,-6r-102,0v-20,-3,-16,14,-35,13r6,-42r155,0r0,18v-60,79,-69,157,-69,225","w":172},"8":{"d":"108,-260v94,-5,104,101,27,116r1,5v31,14,63,36,63,70v0,38,-34,72,-87,72v-103,5,-113,-107,-29,-125r-1,-5v-27,-13,-53,-34,-53,-64v0,-37,30,-69,79,-69xm167,-59v0,-34,-40,-51,-72,-62v-54,20,-57,111,17,111v41,0,55,-22,55,-49xm60,-202v1,30,33,47,61,57v49,-16,53,-101,-13,-101v-35,0,-48,20,-48,44","w":217},"9":{"d":"100,2v-37,-1,-60,-18,-67,-37v-3,-6,-4,-31,16,-31v24,1,21,28,9,41v9,7,21,11,37,11v50,0,63,-73,64,-124r-5,-1v-27,75,-144,38,-135,-38v0,-42,36,-83,88,-83v64,0,88,65,88,113v0,99,-44,149,-95,149xm102,-244v-35,0,-46,29,-46,69v-8,74,91,74,103,13v-2,-38,-12,-82,-57,-82","w":218},":":{"d":"20,-149v0,-12,9,-20,22,-20v14,0,24,8,24,20v0,12,-10,22,-24,22v-13,0,-22,-10,-22,-22xm20,-17v0,-12,9,-21,22,-21v14,0,24,9,24,21v0,12,-10,21,-24,21v-13,0,-22,-9,-22,-21","w":85},";":{"d":"21,-149v0,-12,9,-20,23,-20v14,0,23,8,23,20v0,12,-9,22,-23,22v-14,0,-23,-10,-23,-22xm45,6v-26,-1,-28,-46,0,-42v50,8,4,91,-15,96r-9,-9v12,-10,23,-22,24,-45","w":88},"<":{"d":"150,-156r-118,51r118,50r0,19r-141,-60r0,-17r141,-61r0,18","w":158},"=":{"d":"16,-132r0,-19r164,0r0,19r-164,0xm16,-73r0,-19r164,0r0,19r-164,0","w":196},">":{"d":"9,-54r118,-51r-118,-49r0,-20r141,60r0,17r-141,61r0,-18","w":158},"?":{"d":"100,-120r0,50v0,6,-27,5,-27,0r0,-48v43,-14,57,-48,57,-75v3,-51,-52,-64,-85,-37v12,16,12,42,-13,43v-17,0,-20,-20,-11,-34v27,-50,143,-62,142,18v0,33,-22,62,-63,83xm65,-16v0,-12,9,-20,21,-20v12,0,21,8,21,20v0,12,-9,20,-21,20v-12,0,-21,-8,-21,-20","w":183},"@":{"d":"312,-117v0,49,-44,104,-94,104v-20,1,-29,-15,-25,-45r-5,-1v-6,18,-21,48,-50,48v-28,0,-44,-27,-40,-61v6,-67,54,-92,78,-92v13,0,21,3,28,13r5,-10r23,0r-12,107v-3,22,1,24,13,24v29,0,61,-46,61,-84v0,-51,-31,-99,-105,-99v-75,0,-144,53,-144,144v0,61,39,109,112,109v46,0,73,-14,95,-31r4,9v-22,20,-52,37,-103,37v-82,0,-128,-58,-128,-124v0,-99,78,-160,164,-160v89,0,123,54,123,112xm152,-34v32,-7,46,-50,48,-84v3,-20,-6,-31,-27,-31v-21,0,-41,20,-46,73v-4,27,5,42,25,42","w":332},"A":{"d":"5,-9r22,-3r90,-245r20,0r87,243r24,5r0,10r-85,0r0,-10r26,-4r-22,-63r-96,0v-14,38,-21,63,-21,63r27,4r0,10r-72,0r0,-10xm119,-213r-42,119r84,0","w":253},"B":{"d":"17,-247r0,-10r95,0v112,-9,129,113,35,123r1,5v43,5,76,21,76,63v0,37,-34,66,-97,66r-110,1r0,-10r27,-4r0,-230xm78,-15r46,1v49,0,65,-29,65,-53v0,-25,-13,-56,-69,-55r-42,0r0,107xm78,-137r35,0v49,-2,61,-30,61,-54v0,-34,-41,-59,-96,-51r0,105","w":242},"C":{"d":"66,-129v0,70,31,117,80,117v43,0,66,-21,74,-58r9,0r0,70r-12,0r-4,-23v-64,55,-188,19,-188,-106v2,-123,118,-157,188,-109r4,-19r12,0r0,65r-9,0v-8,-33,-31,-54,-74,-54v-49,0,-80,48,-80,117","w":245},"D":{"d":"73,-15r34,1v80,1,100,-64,100,-117v3,-59,-41,-124,-134,-111r0,227xm12,-257r98,0v85,0,135,58,135,125v-2,106,-79,142,-189,132r-44,1r0,-10r26,-4r0,-230r-27,-4","w":269},"E":{"d":"17,-257r188,0r1,67v-9,1,-17,1,-16,-8v-6,-23,-21,-45,-55,-44r-57,0r0,106v33,1,66,-1,61,-35r11,0r0,84r-11,0v5,-34,-26,-37,-61,-35r0,108v63,3,127,1,132,-52r14,0r-8,66r-199,1r0,-10r27,-4r0,-230r-27,-4r0,-10","w":234},"F":{"d":"17,-257r188,0r4,67r-14,0v-6,-52,-55,-55,-117,-52r0,105v37,0,82,7,77,-34r11,0r0,83r-11,0v5,-40,-39,-34,-77,-34r0,108r28,3r0,12r-89,0r0,-10r27,-4r0,-230r-27,-4r0,-10","w":215},"G":{"d":"66,-129v0,70,31,116,80,116v88,-6,59,-24,64,-82r-28,-7r0,-10r83,0r0,10r-22,7r0,96r-12,1r-7,-18v-86,43,-192,15,-199,-113v1,-125,123,-159,189,-106r4,-22r14,0r0,64r-10,0v-9,-32,-30,-52,-76,-52v-49,0,-80,47,-80,116","w":275},"H":{"d":"78,-14r26,5r0,10r-87,0r0,-10r27,-4r0,-230r-27,-4r0,-10r87,0r0,10r-26,4r0,108r137,0r0,-108r-26,-4r0,-10r87,0r0,10r-26,4r0,229r26,5r0,10r-87,0r0,-10r26,-4r0,-106r-137,0r0,105","w":293},"I":{"d":"82,-14r26,5r0,10r-87,0r0,-10r27,-4r0,-230r-28,-4r1,-10r87,0r0,10r-26,4r0,229","w":129},"J":{"d":"99,-243r-27,-4r1,-10r87,0r0,10r-27,4r0,144v0,59,-31,101,-86,101v-22,0,-39,-10,-39,-21v0,-8,6,-16,16,-16v20,0,20,22,43,22v19,0,32,-16,32,-60r0,-170","w":178},"K":{"d":"78,-14r27,5r0,10r-88,0r0,-10r27,-4r0,-230r-27,-4r0,-10r87,0r0,10r-26,4r0,124r99,-119r0,-5r-25,-2r1,-12r78,0r0,12r-29,3r-84,96r114,131r20,5r-1,10r-84,0r0,-10v6,-3,22,0,20,-8r-89,-104r-20,23r0,85","w":259},"L":{"d":"78,-243r0,228v64,1,119,7,124,-56r13,0r-5,71r-193,1r0,-10r27,-4r0,-230r-27,-4r0,-10r87,0r0,10","w":224},"M":{"d":"301,-14r26,5r0,10r-88,0r0,-10r27,-4r0,-192r-99,205r-9,0r-99,-197r2,183r28,5r0,10r-76,0r0,-10r28,-4v1,-11,3,-165,2,-209v0,-20,-15,-22,-30,-25r0,-10r53,0r107,208r100,-208r54,0r0,10r-26,4r0,229","w":342},"N":{"d":"222,-243r-31,-4r0,-10r81,0r0,10r-26,4v-3,38,-3,183,-3,243r-24,0r-156,-201r3,187r28,5r0,10r-79,0r0,-10r28,-4v2,-12,2,-167,2,-211v0,-20,-15,-20,-30,-23r0,-10r52,1r158,207","w":285},"O":{"d":"25,-129v0,-74,48,-132,123,-132v75,0,122,58,122,132v0,75,-47,132,-122,132v-75,0,-123,-57,-123,-132xm67,-129v0,66,21,116,81,116v60,0,81,-50,81,-116v0,-65,-21,-115,-81,-115v-60,0,-81,50,-81,115","w":295},"P":{"d":"78,-14r27,5r0,10r-88,0r0,-10r27,-4r0,-230r-27,-4r0,-10r95,0v68,0,105,34,105,75v0,63,-66,81,-139,76r0,92xm109,-241r-31,0r0,120r35,0v56,2,69,-30,69,-60v0,-28,-18,-61,-73,-60","w":231},"Q":{"d":"25,-129v0,-74,48,-132,123,-132v75,0,122,58,122,132v0,66,-36,117,-94,129r-39,19v44,13,70,48,114,26v2,-2,2,-10,10,-10v7,0,10,7,5,10v-10,11,-36,29,-59,29v-47,0,-67,-26,-96,-38v-6,-2,-14,-1,-25,6v-9,-10,-6,-16,8,-18r49,-21v-72,-2,-118,-58,-118,-132xm67,-129v0,66,21,116,81,116v60,0,81,-50,81,-116v0,-65,-21,-115,-81,-115v-60,0,-81,50,-81,115","w":295},"R":{"d":"78,-14r27,5r0,10r-88,0r0,-10r27,-4r0,-230r-27,-4r0,-10r95,0v63,0,97,26,97,63v0,36,-27,52,-63,59r2,6v47,3,61,29,58,72v-2,43,18,57,31,31r7,5v-21,40,-79,25,-72,-36v2,-34,-6,-63,-39,-66r-55,0r0,109xm172,-193v7,-34,-40,-56,-94,-49r0,105v58,7,100,-22,94,-56","w":249},"S":{"d":"37,-73v6,42,23,63,65,63v29,0,49,-19,49,-47v0,-32,-34,-46,-60,-59v-54,-25,-69,-50,-69,-79v-4,-67,99,-81,130,-43r5,-19r13,0r0,69r-14,0v-1,-70,-106,-80,-107,-15v0,27,32,38,64,55v45,23,67,46,67,77v4,78,-101,94,-141,50r-6,21r-11,0r0,-73r15,0","w":203},"T":{"d":"210,-190v-7,-38,-28,-57,-76,-52r0,229r27,3r0,11r-88,0r0,-11r26,-3r0,-229v-49,-5,-71,13,-78,52r-15,0r4,-67r210,0r4,67r-14,0","w":230},"U":{"d":"132,1v-47,0,-92,-26,-92,-79r0,-165r-27,-4r0,-10r87,0r0,10r-25,4r0,164v0,41,26,60,68,60v42,0,70,-20,70,-63r0,-161r-27,-4r0,-10r71,0r0,10r-27,4r0,161v0,56,-40,83,-98,83","w":269},"V":{"d":"248,-248r-24,5r-88,243r-19,0r-87,-243r-25,-5r0,-9r86,0r0,9r-26,4r70,199r69,-199r-27,-4r0,-9r71,0r0,9","w":253},"W":{"d":"114,0r-16,0r-68,-241r-25,-6r0,-10r91,0r0,12v-9,3,-24,0,-29,7r50,182r69,-201r21,0r73,202r43,-187r-34,-4r0,-11r80,0r0,11r-25,6r-62,240r-16,0r-77,-212","w":373},"X":{"d":"12,-9r23,-4r76,-116r-70,-114r-23,-5r0,-10r90,0r0,10r-27,4r50,84r53,-84r-26,-4r0,-10r73,0r0,10r-23,5r-68,100r82,130r23,4r0,10r-90,0r0,-10r25,-4r-59,-100r-62,100r26,4r0,10r-73,0r0,-10","w":257},"Y":{"d":"29,-243r-23,-5r0,-10r86,0r0,10v-7,3,-22,-1,-23,8r61,115v19,-41,45,-75,61,-119r-25,-4r0,-10r72,0r0,10r-23,5r-75,136r0,93r26,5r0,10r-87,0r0,-10r26,-4r0,-94","w":244},"Z":{"d":"29,-257r167,0r0,9r-141,234r82,0v47,-3,53,-29,56,-56r14,1r-6,69r-185,0r0,-14r140,-229v-56,2,-113,-13,-117,51r-14,-1","w":219},"[":{"d":"78,40r33,5r0,9r-60,0r0,-333r60,0r0,10r-33,4r0,305","w":129},"\\":{"d":"33,-263r127,302r-19,0r-127,-302r19,0","w":173},"]":{"d":"51,-265r-33,-4r0,-10r60,0r0,333r-59,0r0,-10r32,-3r0,-306","w":129},"^":{"d":"90,-156r-30,-78r-28,78r-20,0r41,-100r17,0r41,100r-21,0","w":122},"_":{"d":"12,31r0,-16r157,0r0,16r-157,0"},"`":{"d":"72,-202v-14,-16,-39,-23,-46,-46v2,-12,21,-19,28,-7r28,45","w":105},"a":{"d":"47,-119v-17,0,-22,-21,-13,-32v29,-43,126,-54,123,25r0,91v-2,23,17,24,26,9r5,6v-8,25,-68,34,-62,-9r-6,-1v-11,48,-104,38,-100,-10v-11,-36,59,-54,106,-64v2,-35,-1,-65,-36,-63v-10,0,-22,4,-31,12v12,10,11,38,-12,36xm53,-44v3,43,65,31,73,-4r0,-43v-31,4,-81,24,-73,47","w":195},"b":{"d":"26,0r2,-243r-22,-6r1,-16r53,-5r0,124r7,1v9,-22,29,-39,55,-39v48,0,73,44,73,92v0,43,-29,92,-90,92v-20,0,-40,-9,-53,-20v-9,6,-11,23,-26,20xm114,-161v-27,0,-54,18,-54,43v0,52,-17,100,46,101v74,1,70,-142,8,-144","w":212},"c":{"d":"132,-163v-45,-22,-79,19,-79,75v0,69,82,97,108,37r11,3v-11,30,-37,52,-68,52v-123,-3,-104,-185,0,-188v25,0,45,8,57,25v9,13,6,36,-14,36v-21,-1,-24,-22,-15,-40","w":185},"d":{"d":"152,-243r-22,-6r0,-14r54,-4r0,243r24,6r0,12r-52,8r-3,-36r-7,-2v-9,23,-28,40,-52,40v-106,-8,-101,-188,13,-188v16,0,32,5,45,14r0,-73xm100,-19v26,0,52,-17,52,-41v0,-52,17,-105,-45,-107v-42,0,-55,31,-55,80v0,34,14,68,48,68","w":216},"e":{"d":"169,-103r-117,0v-5,45,10,84,59,86v21,0,40,-9,51,-28r9,6v-13,25,-38,43,-72,43v-113,-3,-105,-184,1,-188v39,0,74,28,69,81xm100,-169v-25,0,-41,19,-46,53r84,0v0,-38,-18,-53,-38,-53","w":188},"f":{"d":"8,-164r0,-9r28,-5v-2,-48,20,-84,65,-88v30,-3,64,29,30,39v-14,1,-23,-11,-24,-24v-34,-12,-42,30,-39,71r51,0r0,16r-51,0r0,152r27,4r0,9r-86,0r-1,-9r28,-3r0,-153r-28,0","w":124},"g":{"d":"51,-70v-57,-32,-33,-120,44,-114v29,2,61,2,93,0r-1,18r-35,0v47,47,-2,123,-80,103v-25,3,-32,42,2,42r44,0v54,2,71,26,71,49v0,34,-42,66,-98,66v-40,0,-81,-15,-81,-44v0,-18,13,-32,45,-42r0,-7v-36,-6,-31,-56,-4,-64r0,-7xm159,33v0,-29,-51,-30,-87,-28v-50,24,-38,71,19,72v42,0,68,-16,68,-44xm54,-122v0,28,10,49,41,49v30,0,40,-21,40,-49v0,-28,-10,-48,-40,-48v-31,0,-41,20,-41,48","w":200},"h":{"d":"36,-11r0,-229r-22,-6r0,-17r54,-4r0,128r7,1v14,-58,112,-67,111,11r0,115r27,4r-1,9r-83,0r0,-9r25,-3r0,-115v0,-23,-9,-35,-32,-35v-26,0,-53,25,-54,59r0,90r26,4r0,9r-84,0r-1,-9","w":222},"i":{"d":"37,-11r0,-144r-22,-6r1,-16r53,-5r0,170r28,4r0,9r-86,0r-1,-9xm31,-237v0,-12,8,-18,20,-18v13,0,21,6,21,18v0,12,-8,19,-21,19v-12,0,-20,-7,-20,-19","w":106},"j":{"d":"68,-182v-7,101,31,263,-69,266v-18,0,-31,-8,-31,-17v0,-7,5,-14,15,-14v17,0,17,15,35,15v13,0,18,-17,18,-59r0,-164r-22,-6r0,-16xm31,-237v0,-12,8,-18,20,-18v13,0,21,6,21,18v0,12,-8,19,-21,19v-12,0,-20,-7,-20,-19","w":98},"k":{"d":"36,-11r0,-229r-22,-6r0,-17r54,-4r0,180v25,-21,42,-50,64,-74r0,-5r-22,-2r1,-12r79,0r0,12r-28,3r-58,59r83,92r20,4r0,9r-80,1r0,-9v6,-3,21,1,20,-9r-63,-67r-16,16r0,57r22,4r-1,9r-79,0r-1,-9","w":205},"l":{"d":"37,-12r0,-228r-22,-6r1,-17r53,-4r0,255r27,4r-1,9r-83,0r-1,-9","w":106},"m":{"d":"36,-11r0,-144r-22,-6r0,-16r54,-5r0,42r7,1v12,-54,101,-65,111,-5r7,1v16,-57,108,-57,107,16r0,115r27,4r-1,9r-83,0r-1,-9r26,-3r0,-115v0,-23,-9,-35,-32,-35v-24,0,-46,20,-50,48r0,101r27,4r-1,9r-83,0r0,-9r25,-3r0,-119v0,-20,-9,-31,-32,-31v-26,0,-53,25,-54,59r0,90r26,4r0,9r-84,0r-1,-9","w":335},"n":{"d":"35,-11r0,-144r-22,-6r1,-16r53,-5r0,44r7,0v16,-60,112,-66,112,11r0,115r26,4r0,9r-82,0r-1,-9r25,-3r0,-115v0,-23,-10,-35,-32,-35v-27,0,-54,25,-55,59r0,90r27,4r-1,9r-83,0r-1,-9","w":221},"o":{"d":"18,-90v0,-52,35,-94,90,-94v56,0,91,42,91,94v0,52,-35,93,-91,93v-55,0,-90,-41,-90,-93xm53,-90v0,43,15,79,55,79v41,0,56,-36,56,-79v0,-42,-15,-79,-56,-79v-40,0,-55,37,-55,79","w":217},"p":{"d":"70,72r26,4r0,9r-84,0r0,-9r25,-4r0,-221r-23,-9r0,-16r52,-8r2,41r6,0v9,-24,33,-42,58,-42v47,0,71,46,71,90v0,47,-27,97,-87,97v-16,0,-33,-5,-46,-16r0,84xm123,-160v-26,0,-52,20,-53,48v2,51,-15,98,47,99v40,0,53,-30,53,-80v0,-34,-14,-67,-47,-67","w":221},"q":{"d":"185,72r26,5r0,9r-84,0r-1,-9r26,-4r0,-113r-6,0v-35,85,-128,27,-128,-50v0,-43,29,-92,90,-92v18,0,37,9,51,19v9,-6,14,-23,28,-18xm152,-70v-4,-49,17,-94,-45,-95v-74,0,-72,142,-8,144v28,0,53,-20,53,-49","w":220},"r":{"d":"36,-11r0,-144r-22,-6r0,-16r53,-5r-3,48r6,2v8,-24,25,-51,51,-51v28,-4,37,39,7,40v-13,0,-20,-7,-24,-16v-46,15,-35,87,-36,147r26,4r0,9r-84,0r-1,-9","w":151},"s":{"d":"32,-57v10,33,27,49,55,49v19,0,31,-13,31,-30v0,-21,-26,-32,-45,-41v-37,-19,-49,-36,-49,-57v-3,-51,79,-58,102,-29r3,-15r12,0r0,51r-10,0v-6,-24,-25,-43,-50,-43v-20,0,-29,12,-29,28v0,18,24,27,45,37v34,17,50,34,50,57v5,60,-88,66,-111,31r-3,19r-11,0r0,-57r10,0","w":169},"t":{"d":"61,-53v-5,41,38,43,53,20r7,8v-15,19,-31,26,-53,26v-14,0,-39,-11,-39,-48r0,-117r-24,0r0,-10r24,-4r0,-44r32,-7r0,49r51,0r0,16r-51,0r0,111","w":126},"u":{"d":"156,-79r0,-78r-26,-6r0,-17r58,-4r0,166r22,4r-1,13r-52,4r2,-45r-7,-1v-13,59,-116,72,-115,-8r0,-106r-25,-6r0,-17r57,-4r0,131v0,23,9,35,32,35v28,0,55,-25,55,-61","w":221},"v":{"d":"112,2r-14,0r-74,-167v-8,-4,-24,0,-21,-15r81,0r0,10r-25,4r53,129r44,-126v-5,-7,-18,-5,-27,-8r0,-9r73,0r0,9r-25,5","w":204},"w":{"d":"26,-165v-8,-4,-25,-1,-20,-15r76,0r0,11v-6,3,-23,0,-22,7r34,113r47,-131r19,0r52,136r29,-122r-27,-4r0,-10r69,0r0,10r-23,5r-47,165r-14,0r-55,-143r-51,143r-14,0","w":289},"x":{"d":"66,-166v8,23,27,36,39,56v12,-19,29,-33,39,-55r-23,-4r0,-11r69,0r0,10r-24,5r-53,66r64,85v7,4,22,1,19,15r-80,-1r0,-9v7,-3,21,1,22,-8r-43,-58v-13,21,-31,37,-42,61r23,4r0,10r-69,0r0,-10r24,-5r56,-70r-60,-80v-7,-4,-22,-1,-19,-15r81,0r0,9","w":203},"y":{"d":"173,-166r-79,206v-12,34,-33,45,-50,45v-26,7,-53,-37,-14,-40v15,0,20,9,26,18v22,-3,28,-45,37,-65r-72,-163r-22,-6r1,-9r80,0r0,10r-24,4v14,46,36,85,52,129r45,-126v-5,-7,-18,-5,-27,-8r0,-9r72,0r0,9","w":197},"z":{"d":"24,-180r133,0r0,9r-103,155r66,0v23,0,27,-18,32,-32r11,0r-2,48r-147,0r0,-14r102,-151r-52,0v-19,0,-27,18,-31,33r-13,0","w":174},"{":{"d":"33,-104v29,10,37,56,34,79v-7,54,5,78,43,93r-3,10v-50,-8,-77,-38,-70,-103v4,-32,3,-69,-25,-76r0,-6v28,-6,29,-43,25,-76v-7,-65,20,-94,70,-103r3,10v-38,16,-50,39,-43,93v3,24,-5,70,-34,79","w":125},"|":{"d":"54,-263r0,323r-16,0r0,-323r16,0","w":92},"}":{"d":"93,-104v-30,-9,-38,-55,-35,-79v8,-54,-4,-77,-42,-93r2,-10v51,9,78,38,71,103v-4,33,-4,70,24,76r0,6v-28,7,-28,44,-24,76v7,65,-20,95,-71,103r-2,-10v38,-15,50,-39,42,-93v-3,-23,5,-69,35,-79","w":125},"~":{"d":"83,-153v48,-4,46,58,96,60v14,0,26,-10,32,-27v-10,-9,-14,-31,4,-33v9,0,13,12,11,22v-6,36,-32,63,-61,63v-49,5,-50,-54,-96,-59v-13,0,-26,10,-32,27v11,9,14,31,-5,33v-9,0,-13,-12,-10,-22v6,-37,29,-64,61,-64","w":248},"\u00d7":{"d":"138,-166r14,14r-47,46r47,46r-14,14r-47,-46r-48,46r-14,-13r48,-47r-48,-46r14,-14r48,46"},"\u2013":{"d":"19,-99r0,-23r165,0r0,23r-165,0","w":203},"\u2014":{"d":"19,-99r0,-23r202,0r0,23r-202,0","w":240},"\u2018":{"d":"41,-224v26,2,29,42,0,42v-13,0,-23,-12,-23,-29v0,-33,27,-60,38,-67r9,9v-11,11,-23,22,-24,45","w":83},"\u2019":{"d":"42,-219v-25,-1,-28,-46,-1,-42v52,7,4,92,-14,96r-9,-9v11,-10,23,-22,24,-45","w":83},"\u201c":{"d":"104,-221v25,3,28,46,0,42v-51,-8,-4,-91,15,-95r9,9v-12,10,-23,22,-24,44xm41,-221v25,3,29,46,0,42v-51,-8,-3,-91,15,-95r9,9v-11,10,-23,22,-24,44","w":145},"\u201d":{"d":"42,-219v-25,-1,-28,-46,-1,-42v52,7,4,92,-14,96r-9,-9v11,-10,23,-22,24,-45xm104,-219v-25,-1,-28,-46,0,-42v50,8,4,91,-15,96r-9,-9v12,-10,23,-22,24,-45","w":145},"\u2026":{"d":"16,-17v0,-12,9,-21,23,-21v14,0,23,9,23,21v0,12,-9,21,-23,21v-14,0,-23,-9,-23,-21xm92,-17v0,-12,9,-21,22,-21v14,0,24,9,24,21v0,12,-10,21,-24,21v-13,0,-22,-9,-22,-21xm168,-17v0,-12,9,-21,22,-21v14,0,23,9,23,21v0,12,-9,21,-23,21v-13,0,-22,-9,-22,-21","w":229},"\u2122":{"d":"185,-190v3,1,9,0,8,6v-10,-1,-20,-1,-30,0v-1,-6,4,-4,8,-5r0,-54r-27,58r-4,0r-29,-54r0,49v3,2,10,0,9,6v-8,-1,-17,-1,-25,0v-1,-6,5,-4,9,-5r0,-57v2,-8,-12,-4,-8,-11r21,0r28,51r25,-51r23,0v1,6,-4,4,-8,5r0,62xm84,-236v1,-14,-9,-16,-22,-15r0,62v3,1,10,-1,8,5v-10,-1,-20,-1,-30,0v-1,-6,4,-4,8,-5r0,-62v-14,-1,-26,0,-24,15r-5,0r0,-21r70,0r0,21r-5,0","w":212},"\u00a0":{"w":88}}});Cufon.registerFont({"w":208,"face":{"font-family":"Serif12 Beta Rg","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"3","cap-height":"1","bbox":"-34 -292 363 94","underline-thickness":"18","underline-position":"-36","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":88},"!":{"d":"87,-231r-15,154v-1,7,-23,6,-23,0r-15,-154v-1,-17,11,-29,27,-29v16,-1,27,11,26,29xm37,-17v0,-12,10,-20,25,-20v14,0,25,8,25,20v0,12,-11,20,-25,20v-15,0,-25,-8,-25,-20","w":118},"\"":{"d":"31,-171r-5,-73v-2,-22,36,-23,34,0r-5,73r-24,0xm85,-171r-5,-73v-2,-22,36,-23,34,0r-5,73r-24,0","w":139},"#":{"d":"97,0r14,-75r-38,0r-14,75r-16,0r14,-75r-45,0r2,-15r45,0r13,-74r-52,0r1,-16r54,0r14,-77r16,0r-14,77r38,0r14,-77r17,0r-14,77r44,0r-1,16r-46,0r-13,74r52,0r-1,15r-54,0r-13,75r-17,0xm89,-164r-14,74r38,0r13,-74r-37,0","w":198},"$":{"d":"98,-108v-50,-22,-84,-53,-80,-87v1,-44,47,-67,94,-65r2,-32r16,0r-3,34v27,3,36,21,47,1r12,0r0,72r-18,0v-5,-29,-21,-46,-43,-52r-7,84v53,23,79,49,78,86v0,46,-45,72,-93,71r-3,31r-15,0r2,-33v-21,-3,-37,-11,-48,-17v-6,7,-7,18,-22,15r0,-80r20,-1v9,42,21,60,52,64xm64,-206v0,20,16,32,39,45r7,-79v-29,-2,-47,11,-46,34xm147,-54v0,-20,-8,-30,-34,-45r-8,83v26,0,42,-15,42,-38","w":203},"%":{"d":"36,-204v0,-31,23,-57,62,-57v39,0,63,26,63,57v0,33,-24,60,-63,60v-39,0,-62,-27,-62,-60xm75,-204v0,25,6,44,23,44v18,0,24,-19,24,-44v0,-23,-6,-40,-24,-40v-17,0,-23,17,-23,40xm71,0r154,-257r19,0r-154,257r-19,0xm156,-56v0,-31,23,-57,62,-57v39,0,63,26,63,57v0,33,-24,60,-63,60v-39,0,-62,-27,-62,-60xm195,-56v0,25,6,44,23,44v17,0,24,-19,24,-44v0,-23,-7,-41,-24,-41v-17,0,-23,18,-23,41","w":311},"&":{"d":"203,-53v19,18,34,31,52,14r5,5v-18,38,-59,51,-89,16v-43,38,-165,23,-157,-43v0,-32,26,-63,68,-76v-36,-38,-43,-125,40,-122v28,0,56,16,56,45v0,30,-22,49,-48,63r64,87v20,-15,-11,-53,17,-59v10,0,13,8,11,22v-3,15,-9,32,-19,48xm161,-29r-70,-96v-38,35,-27,109,34,107v13,0,25,-4,36,-11xm123,-161v24,-12,34,-83,-2,-84v-30,8,-19,64,2,84","w":259},"'":{"d":"24,-171r-6,-73v-1,-22,37,-23,35,0r-5,73r-24,0","w":70},"(":{"d":"119,71r-2,11v-121,-63,-127,-303,0,-368r2,12v-38,32,-51,110,-51,167v0,63,13,145,51,178","w":126},")":{"d":"9,-274r2,-12v119,64,127,303,0,368r-2,-11v38,-33,50,-110,50,-167v0,-63,-12,-146,-50,-178","w":126},"*":{"d":"70,-258r21,0r-2,55r54,-19r6,19r-55,15r34,43r-16,12r-32,-44r-30,44r-17,-12r34,-42r-55,-16r7,-19r53,19","w":181},"+":{"d":"82,-180r19,0r0,63r69,0r0,19r-69,0r0,63r-19,0r0,-63r-70,0r0,-19r70,0r0,-63","w":181},",":{"d":"42,6v-26,-1,-28,-46,0,-42v52,8,4,92,-15,98r-9,-10v12,-10,23,-22,24,-46","w":80},"-":{"d":"29,-99r0,-32r103,0r0,32r-103,0","w":163},".":{"d":"7,-18v0,-12,11,-22,27,-22v16,0,27,10,27,22v0,12,-11,21,-27,21v-16,0,-27,-9,-27,-21","w":66},"\/":{"d":"14,39r129,-302r16,0r-128,302r-17,0","w":173},"0":{"d":"15,-129v0,-74,42,-132,112,-132v71,0,112,58,112,132v0,75,-41,132,-112,132v-70,0,-112,-57,-112,-132xm73,-129v0,67,13,114,54,114v42,0,55,-47,55,-114v0,-65,-13,-113,-55,-113v-41,0,-54,48,-54,113","w":253},"1":{"d":"101,-19r32,5r0,15r-115,0r0,-15r32,-4r0,-196r-33,0r1,-17v22,-2,45,-9,55,-26r28,-1r0,239","w":149},"2":{"d":"69,-42r101,0r4,-10r14,0r-8,52r-164,0r-1,-20v85,-86,110,-120,110,-170v4,-44,-42,-61,-67,-32v12,20,15,52,-20,53v-26,0,-27,-28,-18,-47v33,-56,158,-69,161,27v0,47,-58,95,-115,140","w":198},"3":{"d":"63,-115v-3,-11,-7,-22,-13,-31v75,-10,81,-30,81,-54v5,-36,-48,-49,-76,-28v19,14,15,52,-15,49v-19,0,-26,-26,-17,-45v15,-27,53,-36,77,-36v42,0,87,18,87,61v0,29,-25,52,-78,62r1,7v62,1,88,31,88,63v5,79,-154,89,-185,37v-10,-24,-3,-50,19,-50v31,0,30,35,16,47v27,28,90,14,90,-35v0,-45,-22,-58,-75,-47"},"4":{"d":"14,-58v1,-5,-2,-12,1,-15r124,-184r36,0r0,164r36,0r-3,35r-33,0r0,42r28,5r0,12r-107,0r0,-12r28,-4r0,-43r-110,0xm124,-198r-70,105r70,0r0,-105","w":221},"5":{"d":"163,-202v-10,-27,-72,-9,-105,-14v-1,22,-8,47,-7,67v15,-14,37,-24,60,-24v61,0,83,48,83,87v0,56,-42,89,-101,89v-34,0,-64,-16,-72,-33v-11,-24,2,-48,21,-48v31,0,32,37,13,46v33,34,96,1,86,-54v6,-48,-59,-62,-94,-39r-20,0r17,-132r124,0r7,55r-12,0","w":206},"6":{"d":"198,-215v1,31,-40,31,-44,4v0,-9,3,-17,7,-26v-64,-18,-85,34,-87,122r4,1v18,-75,141,-42,131,29v0,49,-39,87,-95,87v-70,0,-98,-61,-98,-106v0,-97,48,-156,109,-156v43,0,73,20,73,45xm120,-17v27,0,34,-24,34,-60v7,-65,-66,-73,-80,-19v1,36,8,79,46,79","w":223},"7":{"d":"109,-25v0,19,-7,27,-23,27v-16,0,-26,-8,-26,-27v0,-57,22,-112,79,-182r0,-8r-103,0v-11,0,-17,5,-21,14r-11,-1r5,-55r170,0r0,18v-59,75,-70,149,-70,214","w":183},"8":{"d":"109,-260v98,-4,116,92,37,114r1,5v31,16,61,38,61,72v0,38,-37,72,-95,72v-108,5,-133,-97,-41,-121r-2,-8v-25,-15,-48,-36,-48,-65v0,-37,34,-69,87,-69xm158,-59v-1,-32,-39,-47,-68,-57v-47,22,-50,105,23,102v34,0,45,-19,45,-45xm72,-202v1,31,33,44,59,54v35,-23,37,-97,-22,-95v-28,0,-37,18,-37,41","w":224},"9":{"d":"27,-34v-5,-16,-1,-36,16,-36v25,-2,26,35,11,48v61,20,92,-23,93,-99r-8,0v-39,55,-126,6,-126,-56v0,-42,38,-83,95,-83v69,0,96,69,96,121v0,78,-54,141,-111,141v-35,0,-59,-19,-66,-36xm103,-240v-30,0,-39,27,-39,65v-7,71,74,74,84,13v-2,-37,-9,-78,-45,-78","w":220},":":{"d":"13,-149v0,-12,10,-22,26,-22v16,0,27,10,27,22v0,11,-11,20,-27,20v-16,0,-26,-9,-26,-20xm13,-18v0,-12,10,-22,26,-22v16,0,27,10,27,22v0,12,-11,21,-27,21v-16,0,-26,-9,-26,-21","w":85},";":{"d":"12,-149v0,-12,11,-22,27,-22v16,0,27,10,27,22v0,11,-11,20,-27,20v-16,0,-27,-9,-27,-20xm46,6v-26,-1,-30,-43,-1,-42v14,0,24,12,24,30v0,33,-26,61,-38,68r-9,-10v11,-10,23,-22,24,-46","w":88},"<":{"d":"151,-156r-119,51r119,49r0,20r-142,-60r0,-17r142,-61r0,18","w":158},"=":{"d":"16,-132r0,-19r165,0r0,19r-165,0xm16,-73r0,-19r165,0r0,19r-165,0","w":196},">":{"d":"9,-54r119,-51r-119,-49r0,-20r142,60r0,17r-142,61r0,-18","w":158},"?":{"d":"108,-119r0,49v0,9,-41,9,-41,0r0,-41v37,-16,53,-52,53,-82v4,-50,-39,-62,-71,-39v18,17,17,50,-14,52v-17,0,-23,-24,-14,-41v27,-51,151,-60,150,18v0,37,-16,60,-63,84xm63,-17v0,-12,11,-20,25,-20v15,0,25,8,25,20v0,12,-10,20,-25,20v-14,0,-25,-8,-25,-20","w":183},"@":{"d":"315,-117v0,49,-45,104,-95,104v-21,0,-34,-12,-30,-41r-5,-2v-5,16,-19,45,-46,45v-31,0,-48,-27,-44,-61v6,-67,57,-92,82,-92v12,0,19,3,25,13r5,-10r30,0r-12,107v-2,21,0,23,9,23v22,0,48,-44,48,-80v0,-51,-25,-98,-92,-99v-69,0,-131,51,-131,141v0,60,36,105,101,105v46,0,72,-11,93,-28r4,10v-21,20,-51,37,-103,37v-83,0,-129,-58,-129,-124v0,-99,78,-160,165,-160v90,0,125,54,125,112xm153,-35v30,-6,43,-50,45,-83v3,-19,-5,-27,-26,-27v-17,0,-33,17,-37,69v-3,26,4,41,18,41","w":332},"A":{"d":"6,-12r23,-3v20,-45,68,-180,90,-242r31,0r88,240r27,5r0,13r-111,0r0,-13r26,-4r-20,-60r-85,0r-21,60r26,4r0,13r-74,0r0,-13xm118,-198r-36,104r72,0","w":266},"B":{"d":"9,-243r1,-14r101,0v115,-9,141,103,47,122r1,7v40,4,72,20,72,62v0,37,-37,66,-105,66r-116,1r0,-13r27,-4r0,-224xm88,-18r35,0v41,1,55,-26,55,-49v0,-24,-11,-53,-58,-52r-32,0r0,101xm88,-238r0,98v48,6,80,-19,75,-51v4,-29,-30,-55,-75,-47","w":238},"C":{"d":"74,-129v0,66,29,111,71,111v47,0,67,-29,78,-55r12,0r0,73r-14,0r-6,-19v-69,48,-198,14,-198,-110v1,-123,127,-158,198,-109r6,-19r14,0r0,73r-12,0v-11,-26,-31,-55,-78,-55v-42,0,-71,45,-71,110","w":247},"D":{"d":"88,-18v84,13,115,-51,113,-113v1,-56,-35,-120,-113,-107r0,220xm10,-257r108,0v86,0,136,58,136,125v-2,108,-81,142,-194,132r-50,1r0,-13r27,-4r0,-224r-28,-3","w":268},"E":{"d":"10,-257r202,0r1,67v-9,0,-21,3,-20,-8v-5,-20,-21,-41,-54,-40r-48,0r0,101v32,1,59,-3,55,-34r11,0r0,84r-11,0v4,-30,-22,-33,-55,-33r0,102v58,3,119,0,123,-48r17,1r-7,65r-214,1r0,-13r27,-4r0,-224r-28,-3","w":243},"F":{"d":"10,-257r198,0r4,67r-17,0v-7,-45,-51,-54,-107,-48r0,101v35,0,74,3,69,-34r11,0r0,84r-11,0v6,-35,-33,-33,-69,-33r0,103r28,3r0,15r-106,0r0,-13r27,-4r0,-224r-28,-3","w":217},"G":{"d":"74,-129v0,66,29,111,71,111v70,-9,51,-27,54,-77r-28,-7r0,-10r98,0v3,15,-11,13,-19,17r1,96r-20,1r-7,-18v-89,44,-200,13,-207,-113v1,-122,129,-158,200,-109r5,-19r16,0r0,76r-12,0v-9,-31,-31,-58,-77,-58v-45,0,-75,45,-75,110","w":274},"H":{"d":"91,-17r27,5r0,13r-108,0r0,-13r27,-4r0,-224r-28,-3r1,-14r108,0r0,14r-27,3r0,102r110,0r0,-102r-27,-3r0,-14r108,0r0,14r-26,3r0,223r26,5r0,13r-108,0r0,-13r27,-4r0,-98r-110,0r0,97","w":289},"I":{"d":"95,-17r27,5r0,13r-105,0r0,-13r27,-4r0,-224r-27,-3r0,-14r105,0r0,14r-27,3r0,223","w":137},"J":{"d":"92,-240r-26,-3r0,-14r105,0r0,14r-28,4r0,140v0,59,-33,101,-96,101v-29,0,-38,-10,-38,-21v0,-12,7,-23,18,-23v19,0,19,23,40,23v15,0,25,-14,25,-54r0,-167","w":178},"K":{"d":"88,-17r27,5r0,13r-105,0r0,-13r27,-4r0,-224r-28,-3r1,-14r104,0r0,14r-26,3r0,116r102,-112r0,-6r-25,-1r0,-14r91,0r0,13r-29,4r-83,86r106,137r20,5r0,12r-110,0r0,-12v6,-3,22,0,20,-8r-72,-96r-20,21r0,78","w":269},"L":{"d":"91,-240r0,222v57,2,103,4,107,-53r17,0r-5,71r-200,1r0,-13r27,-4r0,-224r-28,-3r1,-14r108,0r0,14","w":218},"M":{"d":"312,-17r26,5r0,13r-105,0r0,-13r27,-4r0,-186r-92,202r-9,0r-105,-203r4,186r30,5r0,13r-82,0r0,-13r27,-4r4,-204v0,-19,-14,-21,-29,-23r1,-14r75,0r98,186r85,-186r71,0r0,14r-26,3r0,223","w":345},"N":{"d":"221,-239r-31,-5r0,-13r84,0r0,13r-25,4v-3,27,-3,186,-3,240r-26,0r-158,-195r2,178r30,5r0,13r-85,0r0,-13r29,-4v1,-14,3,-162,2,-208v0,-20,-14,-17,-29,-19r0,-14r69,0r144,180","w":281},"O":{"d":"17,-129v0,-74,49,-132,127,-132v78,0,127,58,127,132v0,75,-49,132,-127,132v-78,0,-127,-57,-127,-132xm75,-129v0,63,19,111,69,111v50,0,69,-48,69,-111v0,-61,-19,-110,-69,-110v-50,0,-69,49,-69,110","w":285},"P":{"d":"90,-17r27,5r0,13r-107,0r0,-13r27,-4r0,-224r-28,-3r1,-14r103,0v72,0,113,35,113,76v0,59,-63,82,-136,78r0,86xm172,-180v3,-33,-28,-65,-82,-58r0,117v55,7,88,-20,82,-59","w":231},"Q":{"d":"199,80v-59,5,-63,-63,-113,-39v-9,-10,-8,-16,5,-18r47,-20v-74,-3,-121,-58,-121,-132v0,-74,49,-132,127,-132v78,0,127,58,127,132v0,64,-36,114,-94,128r-28,17v41,15,59,51,101,27v2,-2,2,-10,11,-10v6,0,9,9,5,12v-11,10,-44,35,-67,35xm75,-129v0,63,19,111,69,111v50,0,69,-48,69,-111v0,-61,-19,-110,-69,-110v-50,0,-69,49,-69,110","w":285},"R":{"d":"90,-17r27,5r0,13r-107,0r0,-13r27,-4r0,-224r-28,-3r1,-14r102,0v119,-10,140,109,43,125r1,8v48,3,67,26,64,67v-1,40,15,50,29,31r7,7v-24,40,-100,21,-90,-38v2,-28,-5,-59,-28,-61r-48,0r0,101xm163,-191v3,-29,-27,-54,-73,-48r0,104v52,7,79,-23,73,-56","w":258},"S":{"d":"37,-81v11,48,25,65,68,65v26,0,42,-15,42,-38v0,-26,-13,-34,-58,-58v-53,-27,-71,-49,-71,-83v-4,-65,105,-78,146,-51v5,-6,9,-13,22,-11r0,72r-18,0v-6,-38,-33,-55,-64,-55v-27,0,-40,13,-40,34v0,25,24,38,57,54v53,25,75,48,75,85v5,71,-113,87,-157,52v-6,7,-7,18,-22,15r0,-80","w":213},"T":{"d":"217,-188v-9,-33,-23,-56,-70,-50r0,222r28,3r-1,14r-104,0r0,-14r26,-3r0,-222v-47,-6,-65,15,-73,50r-18,0r4,-69r222,0r4,69r-18,0","w":238},"U":{"d":"138,1v-51,0,-101,-26,-101,-79r0,-162r-28,-3r1,-14r105,0r0,14r-26,3r0,161v0,38,24,55,60,55v42,0,67,-18,67,-58r0,-158r-27,-3r0,-14r74,0r1,14r-27,3r0,158v0,56,-41,83,-99,83","w":272},"V":{"d":"252,-244r-25,5r-81,239r-28,0r-88,-239r-25,-5r0,-13r104,0r0,13r-26,4r66,178r52,-178r-27,-4r0,-13r78,0r0,13","w":254},"W":{"d":"119,0r-23,0r-68,-238r-23,-6r0,-13r109,0r0,14r-30,4r43,159r58,-177r31,0r67,179r31,-162r-33,-4r0,-13r82,0r0,13r-25,5r-54,239r-23,0r-73,-193","w":365},"X":{"d":"3,-12r21,-4r81,-106r-75,-118r-23,-5r0,-13r107,0r0,13r-28,4r49,79r58,-79r-25,-4r0,-13r78,0r0,13r-22,5r-78,97r82,127r23,4r0,13r-104,0r0,-13r24,-3r-55,-88r-62,88r26,3r0,13r-77,0r0,-13","w":257},"Y":{"d":"28,-240r-23,-5r0,-13r102,0r0,13v-7,3,-22,-1,-23,8r61,98v16,-35,38,-63,50,-101r-25,-4r0,-14r77,0r0,14r-21,4r-72,127r0,96r26,5r0,13r-104,0r0,-13r26,-4r0,-99","w":250},"Z":{"d":"28,-257r182,0r0,9r-135,229r72,0v43,-3,64,-29,52,-56r18,0r-2,75r-201,0r0,-14r135,-224v-53,-2,-105,-2,-107,51r-19,-1","w":230},"[":{"d":"86,40r33,4r0,10r-71,0r0,-333r71,0r0,11r-33,3r0,305","w":129},"\\":{"d":"33,-263r129,302r-19,0r-129,-302r19,0","w":173},"]":{"d":"48,-264r-33,-5r0,-10r71,0r0,333r-71,0r0,-10r33,-4r0,-304","w":129},"^":{"d":"90,-156r-30,-76r-27,76r-21,0r41,-100r18,0r40,100r-21,0","w":122},"_":{"d":"12,31r0,-16r158,0r0,16r-158,0","w":181},"`":{"d":"69,-199v-15,-16,-39,-24,-47,-46v2,-12,25,-24,33,-10r28,45","w":105},"a":{"d":"197,-19v-10,23,-77,32,-77,-4r-8,0v-9,17,-28,25,-53,25v-27,0,-42,-19,-42,-42v-3,-35,56,-58,103,-64v1,-31,0,-63,-29,-61v-10,0,-24,2,-33,10v11,12,8,37,-15,36v-12,0,-18,-8,-18,-17v1,-31,47,-48,75,-48v42,0,70,14,70,58r0,91v-2,16,14,16,22,9xm68,-47v1,34,45,21,52,-1r0,-41v-25,6,-54,14,-52,42","w":201},"b":{"d":"23,0v6,-72,2,-162,3,-240r-23,-7r1,-18r72,-4r0,119r8,2v39,-77,124,-18,124,56v0,43,-30,92,-94,92v-20,0,-41,-9,-55,-18v-12,6,-17,22,-36,18xm119,-153v-22,0,-42,15,-43,34v1,43,-12,96,39,96v55,0,55,-129,4,-130","w":221},"c":{"d":"135,-158v-39,-23,-72,16,-68,70v0,37,15,66,50,66v24,0,39,-5,49,-25r11,4v-10,28,-38,47,-72,47v-130,-3,-112,-185,0,-188v25,0,49,8,61,25v9,14,5,39,-16,39v-22,-1,-25,-23,-15,-38","w":186},"d":{"d":"149,-240r-23,-7r1,-15r73,-4r0,241r24,7r0,12r-71,8r-3,-33r-7,-2v-9,22,-27,37,-52,37v-49,0,-77,-46,-77,-91v0,-58,73,-127,135,-83r0,-70xm101,-28v22,0,45,-12,48,-29v-4,-47,17,-102,-38,-104v-34,0,-44,28,-44,74v0,30,10,59,34,59","w":223},"e":{"d":"181,-94r-114,0v-2,38,12,73,51,75v23,0,44,-9,55,-25r10,7v-14,24,-42,41,-79,41v-60,0,-90,-48,-90,-89v0,-46,31,-99,91,-99v45,-1,83,28,76,90xm104,-165v-23,0,-33,19,-36,55r64,0v0,-43,-9,-55,-28,-55","w":195},"f":{"d":"6,-163r0,-12r25,-2v-2,-51,24,-86,81,-88v19,0,39,8,43,24v3,9,-1,24,-15,24v-21,0,-26,-16,-22,-27v-31,-15,-40,25,-36,64r38,0r0,17r-38,0r0,148r28,5r-1,11r-105,0r-1,-11r28,-4r0,-149r-25,0","w":121},"g":{"d":"48,-64v-63,-32,-33,-124,49,-120v30,4,63,5,97,4r2,19v-10,2,-27,-4,-32,3v49,53,-15,123,-96,102v-20,10,-13,33,13,32r33,0v65,1,86,21,86,52v0,38,-47,66,-103,66v-46,0,-94,-15,-94,-44v0,-23,25,-32,41,-35r1,-9v-31,-14,-31,-46,3,-62r0,-8xm154,36v5,-25,-54,-26,-87,-24v-39,28,-23,64,30,63v31,0,57,-15,57,-39xm67,-117v0,32,7,45,30,45v23,0,30,-13,30,-45v0,-31,-7,-47,-30,-47v-23,0,-30,16,-30,47","w":203},"h":{"d":"31,-14r0,-224r-22,-6r0,-18r73,-4r0,122r7,1v16,-57,114,-56,112,16r0,112r27,5r0,11r-103,0r0,-11r26,-4r0,-112v0,-22,-7,-30,-25,-30v-22,0,-43,22,-44,54r0,87r26,5r0,11r-103,0r0,-11","w":231},"i":{"d":"31,-14r0,-139r-22,-7r0,-17r72,-5r0,167r29,5r0,11r-106,0r-1,-11xm57,-214v-39,0,-41,-45,0,-44v19,0,29,10,29,21v0,12,-10,23,-29,23","w":112},"j":{"d":"88,-182v-7,109,34,266,-84,265v-22,0,-38,-11,-38,-21v0,-11,8,-21,23,-21v16,0,16,22,35,22v10,0,14,-14,14,-55r0,-161r-23,-7r1,-17xm61,-214v-38,0,-39,-45,0,-44v16,0,25,10,25,21v0,12,-9,23,-25,23","w":116},"k":{"d":"31,-14r0,-224r-22,-6r0,-18r73,-4r0,175r62,-67v-1,-10,-17,-4,-25,-7r1,-15r88,0r0,15r-28,3r-49,47r73,100r20,5r0,11r-98,-1r0,-10v6,-3,17,0,19,-7r-48,-65r-15,15r0,52r22,5r-1,11r-98,0r0,-11","w":223},"l":{"d":"31,-14r0,-224r-22,-6r0,-18r73,-4r0,252r27,4r-1,11r-102,0r-1,-11","w":112},"m":{"d":"82,-100r-1,-2r1,87r23,5r-1,11r-99,0r0,-11r26,-4r0,-139r-22,-7r0,-17r72,-5r0,38r8,1v12,-53,100,-55,111,-4r8,2v14,-56,110,-51,107,18r0,112r23,5r0,11r-95,0r-1,-11r23,-4r0,-116v0,-19,-7,-26,-25,-26v-53,1,-37,86,-39,141r23,5r0,11r-95,0r-1,-11r23,-4r0,-120v0,-16,-7,-22,-25,-22v-22,0,-44,24,-44,56","w":340},"n":{"d":"31,-14r0,-139r-22,-7r0,-17r72,-5r0,39r8,0v16,-57,114,-56,112,16r0,112r27,5r-1,11r-101,0r-1,-11r26,-4r0,-116v0,-19,-8,-26,-25,-26v-22,0,-44,22,-45,54r0,87r27,5r0,11r-103,0r0,-11","w":230},"o":{"d":"16,-90v0,-52,37,-94,97,-94v60,0,97,42,97,94v0,52,-37,93,-97,93v-60,0,-97,-41,-97,-93xm69,-90v0,40,10,72,44,72v34,0,43,-32,43,-72v0,-39,-9,-72,-43,-72v-34,0,-44,33,-44,72","w":224},"p":{"d":"82,67r27,5r-1,12v-34,-2,-68,-2,-102,0r-1,-12r26,-4r0,-216r-24,-9r0,-17r71,-8r2,37r7,0v9,-23,32,-38,55,-38v49,0,74,46,74,90v8,60,-72,126,-134,83r0,77xm129,-155v-22,0,-44,16,-47,41v4,47,-18,95,41,95v31,0,41,-27,41,-74v0,-31,-10,-62,-35,-62","w":229},"q":{"d":"201,68r26,4r0,12r-103,0r-1,-12r27,-3r0,-102r-8,0v-34,75,-127,15,-127,-53v0,-45,31,-96,97,-96v17,0,34,10,46,20v15,-6,25,-25,45,-19v-5,75,-1,169,-2,249xm150,-70v-5,-44,19,-91,-39,-89v-55,-1,-61,128,-8,130v24,0,47,-17,47,-41","w":230},"r":{"d":"31,-14r0,-139r-22,-7r0,-17r64,-5r0,41r10,1v6,-22,24,-43,52,-43v16,0,26,9,26,25v3,28,-35,32,-47,13v-45,6,-31,80,-32,130r26,5r0,11r-103,0r0,-11","w":163},"s":{"d":"30,-61v10,33,32,50,63,50v14,0,20,-7,20,-20v0,-15,-26,-32,-42,-41v-44,-21,-54,-38,-54,-60v-3,-56,92,-62,115,-32r4,-16r13,0r0,56r-11,0v-6,-25,-30,-44,-57,-44v-17,0,-22,7,-22,18v0,16,24,27,43,36v40,18,54,36,54,60v5,65,-95,69,-122,36r-4,18r-11,0r0,-60","w":167},"t":{"d":"5,-161r0,-11r24,-5r0,-45r51,-7r0,49r44,0r0,19r-44,0r0,107v-4,32,35,34,46,15r6,10v-16,21,-33,30,-56,30v-17,0,-46,-11,-46,-48r-1,-114r-24,0","w":137},"u":{"d":"150,-78r0,-77r-26,-7r0,-18r77,-4r0,165r23,4r-1,14r-71,4r2,-37r-9,-2v-15,57,-117,59,-114,-16r0,-103r-26,-7r0,-18r76,-4r0,135v0,20,7,27,25,27v22,0,44,-24,44,-56","w":226},"v":{"d":"123,0r-28,0r-73,-164r-21,-6r0,-11r96,1r0,11v-6,3,-20,-1,-21,8r50,108r31,-108v-4,-7,-17,-5,-25,-8r0,-11r76,0r0,12r-24,5"},"w":{"d":"4,-168r0,-12r93,0r0,14v-6,3,-19,0,-21,7r27,94r39,-115r25,0r48,125r25,-108r-27,-4r0,-13r71,0r0,13r-24,5r-44,162r-28,0r-46,-119r-43,119r-25,0r-50,-162","w":287},"x":{"d":"81,-165v7,21,23,33,33,51v10,-17,25,-30,33,-50r-24,-4r0,-12r72,0r0,12r-20,5r-52,60r63,87r19,6r0,11r-99,-1r0,-11v7,-3,22,1,23,-8r-38,-51v-11,19,-27,34,-36,55r23,3r0,12r-71,0r0,-11r20,-5r57,-65r-60,-82v-8,-4,-22,-2,-19,-17r99,0r0,10"},"y":{"d":"70,53v25,-2,23,-35,33,-53r-10,0r-73,-164r-21,-6r0,-11r95,1r0,11v-6,3,-22,0,-20,8r49,108r31,-108v-4,-7,-17,-5,-25,-8r0,-11r77,0r0,12r-25,5r-54,147r2,0v-11,36,-35,107,-70,101v-28,7,-53,-38,-15,-42v15,0,20,5,26,10"},"z":{"d":"19,-180r144,0r0,9r-95,153r59,0v22,0,27,-22,31,-39r12,0r-2,57r-159,0r0,-14r94,-148r-44,0v-19,0,-26,20,-30,39r-14,-1","w":174},"{":{"d":"41,-104v29,10,37,56,34,79v-6,53,3,76,36,92r-3,11v-53,-8,-82,-38,-74,-103v3,-32,3,-69,-25,-76r0,-6v28,-6,29,-43,25,-76v-8,-65,21,-94,74,-103r3,12v-33,15,-42,39,-36,91v3,24,-5,70,-34,79","w":125},"|":{"d":"55,-263r0,323r-16,0r0,-323r16,0","w":92},"}":{"d":"85,-104v-28,-9,-37,-55,-34,-79v7,-52,-3,-76,-35,-91r2,-12v54,9,82,38,75,103v-4,33,-3,70,25,76r0,6v-28,7,-29,44,-25,76v7,65,-21,95,-75,103r-2,-11v32,-16,42,-39,35,-92v-3,-23,6,-69,34,-79","w":125},"~":{"d":"145,-119v11,24,64,36,74,-2v-11,-8,-14,-30,5,-32v9,0,13,12,11,22v-13,70,-99,87,-135,29v-11,-23,-59,-36,-69,3v11,8,14,30,-5,32v-10,0,-13,-12,-11,-22v8,-68,98,-90,130,-30","w":248},"\u00d7":{"d":"139,-166r14,14r-48,46r48,46r-14,14r-48,-46r-47,46r-15,-13r48,-47r-48,-46r15,-14r47,47","w":181},"\u2013":{"d":"20,-99r0,-23r165,0r0,23r-165,0","w":203},"\u2014":{"d":"20,-99r0,-23r203,0r0,23r-203,0","w":240},"\u2018":{"d":"41,-224v26,2,28,46,0,42v-53,-7,-4,-93,14,-97r10,9v-12,10,-23,23,-24,46","w":83},"\u2019":{"d":"42,-219v-26,-1,-28,-46,0,-42v52,8,4,92,-15,98r-9,-10v12,-10,23,-22,24,-46","w":83},"\u201c":{"d":"103,-221v25,2,30,46,1,42v-52,-7,-5,-92,14,-97r9,10v-11,10,-23,22,-24,45xm41,-221v25,3,29,46,0,42v-53,-8,-4,-92,14,-97r10,10v-12,10,-23,22,-24,45","w":145},"\u201d":{"d":"42,-219v-26,-1,-28,-46,0,-42v52,8,4,92,-15,98r-9,-10v12,-10,23,-22,24,-46xm105,-219v-26,-1,-29,-46,-1,-42v54,8,5,93,-14,98r-9,-10v11,-10,23,-22,24,-46","w":145},"\u2026":{"d":"7,-18v0,-12,11,-22,27,-22v16,0,27,10,27,22v0,12,-11,21,-27,21v-16,0,-27,-9,-27,-21xm83,-18v0,-12,10,-22,26,-22v17,0,27,10,27,22v0,12,-10,21,-27,21v-16,0,-26,-9,-26,-21xm159,-18v0,-12,10,-22,26,-22v17,0,27,10,27,22v0,12,-10,21,-27,21v-16,0,-26,-9,-26,-21","w":229},"\u2122":{"d":"190,-190v3,1,9,0,8,6v-13,-1,-25,-1,-38,0v-1,-6,4,-4,8,-5r0,-46r-23,50r-4,0r-29,-51r0,46v3,2,10,0,9,6v-8,-1,-17,-1,-25,0v-1,-6,5,-4,9,-5r0,-57v1,-8,-10,-4,-9,-11r26,0r27,45r22,-45r27,0v1,6,-4,4,-8,5r0,62xm85,-236v1,-13,-8,-16,-21,-15r0,62v3,1,10,-1,8,5v-12,-1,-25,-1,-37,0v-1,-5,4,-4,7,-5r0,-62v-13,-1,-23,1,-21,15r-5,0r0,-21r73,0r0,21r-4,0","w":212},"\u00a0":{"w":88}}});Cufon.registerFont({"w":119,"face":{"font-family":"Serif12 Beta Rg","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"3","cap-height":"1","bbox":"-55.6268 -292 393 94","underline-thickness":"18","underline-position":"-36","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":69},"-":{"d":"39,-99r7,-27r123,0r-6,27r-124,0","w":185},".":{"d":"-1,-16v2,-23,50,-29,44,0v-2,23,-50,29,-44,0","w":66},"0":{"d":"31,-129v14,-74,65,-132,132,-132v63,0,94,58,79,132v-14,75,-64,132,-131,132v-64,0,-96,-57,-80,-132xm69,-129v-13,67,-6,117,45,117v48,0,77,-50,89,-117v14,-65,8,-117,-44,-117v-49,0,-77,52,-90,117","w":255},"1":{"d":"64,-20r28,5r-3,16r-90,0r3,-16r30,-4r38,-198r-29,0r4,-14v17,-2,37,-9,48,-26r17,-1"},"2":{"d":"46,-29r105,0v2,-8,9,-12,21,-10r-18,39r-157,0r3,-16v120,-92,153,-136,165,-182v12,-46,-51,-48,-78,-22v5,22,-3,45,-26,44v-17,0,-17,-24,-5,-40v24,-25,59,-43,92,-43v39,0,63,22,53,67v-10,47,-82,102,-156,156","w":178},"3":{"d":"71,-118r-3,-23v82,-9,91,-34,95,-59v4,-20,-5,-43,-34,-43v-12,0,-28,4,-40,12v4,21,-4,48,-26,45v-18,0,-19,-22,-7,-38v20,-27,59,-36,83,-36v33,0,69,18,62,61v-7,29,-33,53,-82,64r1,4v53,1,71,32,65,64v-11,76,-144,92,-177,37v-6,-21,8,-41,26,-41v25,0,12,33,6,41v31,33,100,17,104,-38v9,-43,-14,-61,-73,-50","w":202},"4":{"d":"185,-257r-142,184r76,0r17,-76r31,0r-16,76r42,0r-6,15r-39,0r-10,46r26,5r-2,8r-86,0r1,-8r28,-4r11,-47r-101,0r3,-12v79,-94,105,-136,136,-187r31,0","w":200},"5":{"d":"153,-226r-77,0r-20,83v17,-14,40,-23,62,-23v55,0,68,42,60,80v-11,56,-56,89,-109,89v-30,0,-56,-16,-61,-33v-6,-21,8,-41,26,-41v26,0,11,36,6,44v36,36,99,-4,103,-53v18,-64,-50,-74,-89,-48r-17,0r30,-129r124,0r-5,44r-11,0v-1,-7,-4,-13,-22,-13","w":192},"6":{"d":"185,-195v-20,-2,-22,-23,-10,-39v-61,-29,-93,32,-113,113r6,0v35,-61,143,-43,123,36v-9,43,-55,87,-102,87v-65,0,-77,-61,-69,-106v19,-97,79,-156,130,-156v27,0,63,14,54,49v-2,11,-11,16,-19,16xm96,-15v35,0,51,-27,57,-62v7,-36,-3,-61,-32,-61v-25,0,-50,15,-64,42v-5,37,-4,81,39,81","w":208},"7":{"d":"80,-14v-1,21,-37,22,-32,0v12,-58,39,-130,108,-202r1,-9r-117,0v-5,5,-4,15,-16,13r15,-45r151,0r-3,18v-74,79,-94,157,-107,225","w":167},"8":{"d":"147,-147r-4,8v28,13,55,36,48,70v-7,38,-47,72,-99,72v-50,0,-80,-28,-74,-62v6,-31,34,-53,68,-62r3,-5v-25,-13,-47,-35,-40,-65v6,-37,43,-69,91,-69v45,0,73,26,66,58v-4,28,-30,48,-59,55xm159,-59v6,-33,-29,-51,-58,-61v-30,8,-46,33,-51,58v-5,27,5,50,45,50v37,0,59,-21,64,-47xm81,-202v-6,31,24,48,51,58v25,-9,39,-30,43,-54v5,-26,-3,-46,-38,-46v-34,0,-52,19,-56,42","w":210},"9":{"d":"81,2v-39,0,-53,-20,-59,-37v-2,-6,4,-31,22,-31v26,2,16,30,4,43v71,30,104,-57,117,-117r-5,-2v-32,67,-145,49,-124,-31v8,-44,54,-87,103,-87v63,0,73,65,64,113v-20,99,-76,149,-122,149xm130,-242v-34,0,-52,30,-59,71v-5,31,4,53,34,53v25,0,52,-16,64,-48v4,-37,0,-76,-39,-76","w":208},"A":{"d":"-10,-9r26,-5r156,-242r18,0r19,242r25,5r-2,10r-87,0r2,-10r28,-4r-5,-63r-95,0r-41,63r26,4r-2,10r-71,0xm162,-210r-76,116r83,0","w":252},"B":{"d":"55,-243r4,-14r95,0v63,0,96,28,88,65v-6,38,-43,50,-77,62v44,4,76,22,67,64v-8,69,-132,70,-227,67r3,-13r28,-4r46,-224xm69,-17r26,5r-2,12r-36,0r2,-17r58,1v51,0,74,-28,78,-51v6,-24,-2,-54,-60,-53r-44,0xm117,-240r-22,102v62,7,111,-20,111,-53v5,-23,-7,-50,-58,-49r-31,0","w":248},"C":{"d":"171,-246v-45,-1,-83,51,-99,117v-14,68,10,114,53,114v44,0,73,-17,95,-51r11,5v-56,99,-225,89,-199,-68v19,-92,97,-131,142,-131v30,0,51,12,57,25r10,-22r14,0r-16,76r-13,0v-1,-38,-16,-65,-55,-65","w":234},"D":{"d":"69,-17v95,14,145,-54,156,-114v14,-56,-19,-120,-108,-109xm59,-257r92,0v82,0,124,58,110,125v-26,102,-98,141,-212,132r-44,1r3,-13r28,-4r46,-224r-27,-3","w":261},"E":{"d":"59,-257r190,0r-13,67r-12,0v20,-55,-51,-52,-107,-50r-22,103v37,1,68,-3,71,-34r11,0r-17,84r-12,0v11,-32,-21,-36,-57,-34r-22,104v62,1,139,10,141,-50r12,0r-14,67r-203,1r3,-13r28,-4r46,-224r-27,-3","w":236},"F":{"d":"59,-257r190,0r-13,67r-12,0v20,-55,-51,-52,-107,-50r-22,103v39,1,76,0,78,-34r12,0r-17,84r-12,0v12,-35,-28,-35,-65,-34r-22,104r27,3r-3,15r-88,0r3,-13r28,-4r46,-224r-27,-3","w":211},"G":{"d":"182,-246v-52,-1,-94,51,-110,117v-14,70,13,117,62,117v96,-5,64,-30,83,-83r-27,-7r3,-10r85,-1r-2,10r-25,8r-13,66v-80,55,-233,46,-206,-100v30,-119,141,-156,223,-113r7,-15r15,0r-14,65r-12,0v-4,-31,-24,-54,-69,-54","w":277},"H":{"d":"69,-17r26,5r-3,13r-87,0r3,-13r28,-4r46,-224r-27,-3r4,-14r87,0r-3,14r-26,3r-23,104r134,0r21,-104r-26,-3r4,-14r86,0r-3,14r-26,3r-47,223r26,5r-3,13r-87,0r3,-13r27,-4r21,-101r-134,0","w":287},"I":{"d":"69,-17r26,5r-3,13r-87,0r3,-13r28,-4r46,-224r-27,-3r4,-14r87,0r-3,14r-26,3"},"J":{"d":"134,-240r-27,-3r4,-14r86,0r-3,14r-27,4v-23,98,-25,242,-139,241v-34,2,-49,-34,-18,-34v20,0,19,16,43,16v19,0,36,-15,45,-57","w":160},"K":{"d":"69,-17r26,5r-3,13r-87,0r3,-13r28,-4r46,-224r-27,-3r4,-14r87,0r-3,14r-26,3r-27,122r126,-115r1,-6r-24,-1r4,-17r81,0r-4,16r-29,3r-105,92r86,127r20,5r-4,13r-88,1r4,-13v8,-4,24,0,27,-9r-71,-101r-27,24","w":262},"L":{"d":"117,-240r-48,223v64,-1,130,12,134,-54r16,0r-16,71r-198,1r3,-13r28,-4r46,-224r-27,-3r4,-14r87,0r-3,14","w":226},"M":{"d":"298,-17r26,5r-3,13r-87,0r3,-13r27,-4r37,-179r-131,195r-10,0r-66,-196r-38,179r29,5r-3,13r-78,0r3,-13r30,-4r42,-202v4,-20,-9,-23,-24,-25r4,-14r55,0r67,211r141,-211r52,0r-3,14r-26,3","w":348},"N":{"d":"268,-236r-32,-5r4,-16r80,0r-4,16r-29,4r-49,237r-24,0r-116,-209r-41,189r29,5r-3,16r-78,0r3,-16r30,-4r40,-196v4,-20,-9,-23,-23,-25r4,-17r52,1r116,212","w":282},"O":{"d":"32,-129v16,-74,75,-132,152,-132v71,0,111,58,96,132v-16,75,-76,132,-152,132v-72,0,-112,-57,-96,-132xm73,-129v-14,67,-2,117,58,117v57,0,94,-50,108,-117v13,-65,1,-117,-59,-117v-57,0,-93,52,-107,117","w":280},"P":{"d":"59,-257r104,0v70,0,103,31,94,72v-16,63,-87,85,-169,79r-19,89r26,5r-3,13r-87,0r3,-13r28,-4r46,-224r-27,-3xm93,-124r43,1v57,1,79,-32,84,-61v6,-27,-7,-56,-64,-55r-40,0","w":234},"Q":{"d":"31,-129v16,-74,75,-132,152,-132v71,0,111,58,95,132v-15,72,-70,127,-140,132r-39,14v51,14,71,48,123,30v3,-1,1,-11,10,-11v7,0,9,6,5,9v-11,10,-36,28,-61,28v-51,0,-63,-26,-98,-38v-6,-2,-15,-1,-25,6v-11,-10,-9,-15,5,-17r58,-21v-66,-6,-101,-61,-85,-132xm71,-129v-14,67,-2,117,59,117v56,0,94,-50,107,-117v14,-65,1,-117,-58,-117v-58,0,-94,52,-108,117","w":267},"R":{"d":"69,-17r26,5r-3,13r-87,0r3,-13r28,-4r46,-224r-27,-3r4,-14r95,0v63,0,96,28,88,65v-7,35,-39,53,-80,61v33,8,56,30,49,74v-5,36,20,44,40,29r5,10v-10,9,-28,20,-49,20v-66,2,14,-143,-89,-122r-27,0xm148,-240r-31,0r-22,102v62,7,111,-20,111,-53v5,-23,-7,-50,-58,-49","w":267},"S":{"d":"36,-75v-3,41,16,63,59,63v30,0,53,-15,58,-38v9,-33,-29,-51,-53,-64v-47,-27,-65,-49,-57,-80v14,-63,110,-85,146,-44v5,-8,4,-22,21,-19r-15,69r-12,0v4,-37,-18,-58,-49,-58v-29,0,-55,16,-61,40v-9,64,141,73,112,147v-10,39,-52,63,-95,63v-32,0,-55,-21,-62,-29r-9,25r-11,0r16,-75r12,0","w":197},"T":{"d":"247,-197v17,-45,-28,-45,-71,-43r-46,224r26,3r-4,14r-86,0r3,-14r26,-3r47,-224v-45,-1,-86,-2,-88,43r-15,0r12,-60r223,0r-13,60r-14,0","w":231},"U":{"d":"122,1v-49,0,-95,-26,-83,-79r33,-162r-27,-3r4,-14r87,0r-3,14r-26,3r-34,161v-9,40,23,58,65,58v45,0,72,-19,81,-61r33,-158r-25,-3r3,-14r71,0r-3,14r-28,3r-33,158v-12,56,-58,83,-115,83","w":275},"V":{"d":"294,-244r-27,5r-150,239r-17,0r-29,-239r-25,-5r4,-13r90,0r-4,13r-29,4r20,191r119,-191r-26,-4r4,-13r74,0","w":252},"W":{"d":"111,0r-17,0r-27,-238r-21,-6r4,-13r88,0r-4,15v-10,3,-24,1,-30,7r18,175r94,-197r22,0r39,196r65,-177r-28,-5r3,-14r76,0r-3,15r-27,5r-91,237r-17,0r-42,-210","w":347},"X":{"d":"-1,-12r24,-4r103,-111r-48,-113r-22,-5r3,-13r90,0r-3,13r-26,4r33,84r77,-84r-24,-4r3,-13r69,0r-4,13r-23,5r-93,97r56,127r22,4r-3,13r-93,0r3,-13r27,-3r-39,-99r-88,99r24,3r-3,13r-68,0","w":260},"Y":{"d":"68,-240r-21,-5r3,-13r86,0r-3,13r-27,4r43,119r88,-118r-25,-4r3,-14r73,0r-3,14r-23,4r-108,135r-19,88r26,5r-3,13r-87,0r3,-13r28,-4r18,-90","w":241},"Z":{"d":"61,-257r174,0r-2,9r-179,230r81,0v46,-4,64,-18,66,-48r17,1r-16,65r-193,0r3,-14r177,-225v-58,4,-114,-17,-130,43r-15,-1","w":228},"a":{"d":"50,2v-31,0,-40,-32,-28,-74v24,-82,82,-112,111,-112v14,0,23,5,29,17r8,-13r25,0r-38,130v-7,26,-6,33,2,33v11,0,21,-13,31,-31r11,3v-13,28,-39,50,-64,47v-17,-2,-18,-23,-12,-48r-6,-2v-11,19,-35,50,-69,50xm72,-24v45,-10,67,-67,77,-104v7,-24,1,-37,-23,-37v-23,0,-52,24,-71,88v-9,33,-5,53,17,53","w":207},"b":{"d":"28,-65r52,-179r-22,-4r5,-14r55,-4r-35,121r10,2v17,-25,38,-41,58,-41v38,0,49,40,35,88v-10,44,-53,96,-109,96v-18,0,-65,-10,-49,-65xm138,-160v-32,-2,-75,52,-79,98v-8,25,-1,46,23,46v35,0,62,-46,71,-80v11,-36,11,-64,-15,-64","w":197},"c":{"d":"125,-142v-1,-12,21,-25,-8,-25v-31,0,-51,35,-60,81v-16,68,65,89,91,28r13,3v-18,35,-51,59,-80,59v-46,0,-68,-48,-58,-88v11,-48,46,-100,91,-100v21,0,39,7,45,24v6,13,-1,36,-21,36v-9,0,-16,-9,-13,-18","w":164},"d":{"d":"25,-83v15,-56,73,-128,137,-90r16,-71r-21,-4r5,-14r53,-4r-51,217v-7,25,-7,32,3,32v10,0,21,-13,30,-31r11,3v-13,28,-40,50,-64,47v-16,-2,-18,-22,-12,-47r-8,-1v-15,30,-41,50,-62,50v-40,0,-50,-43,-37,-87xm76,-22v34,3,74,-64,77,-114v4,-14,-1,-31,-30,-31v-31,0,-51,34,-65,84v-10,33,-10,61,18,61","w":214},"e":{"d":"166,-145v-11,45,-81,61,-107,65v-7,29,-2,60,33,60v17,0,40,-11,56,-35r11,3v-23,34,-56,56,-86,56v-48,0,-58,-48,-46,-89v13,-46,51,-99,102,-99v25,0,43,14,37,39xm123,-166v-25,0,-46,25,-60,72v25,-5,68,-14,77,-50v4,-14,-1,-22,-17,-22","w":167},"f":{"d":"138,-248v-30,-15,-45,33,-52,68r43,0r-5,18r-42,0v-22,87,-29,248,-118,250v-27,1,-25,-31,-1,-31v11,0,12,13,24,13v10,0,21,-19,32,-68r33,-164r-24,0r3,-15v9,-3,25,2,26,-9v10,-49,43,-79,77,-79v32,0,55,35,19,41v-14,1,-18,-11,-15,-24","w":108},"g":{"d":"57,-66v-65,-28,-20,-124,50,-118v27,6,57,2,87,0r-4,17r-34,0v27,50,-13,111,-81,105v-24,16,-23,36,9,45v31,9,83,26,73,57v-8,41,-54,54,-94,54v-40,0,-84,-15,-77,-44v3,-19,16,-36,55,-46v5,-13,-17,-18,-10,-32v3,-16,13,-25,25,-32xm130,48v5,-27,-43,-36,-68,-44v-38,16,-45,26,-48,43v-4,17,19,30,53,30v31,0,59,-7,63,-29xm58,-122v-5,25,1,46,28,46v25,0,41,-21,46,-46v5,-26,-1,-46,-28,-46v-25,0,-42,20,-46,46","w":176},"h":{"d":"141,-49r22,-77v6,-22,1,-34,-21,-34v-39,-3,-85,99,-91,160r-32,0r61,-244r-22,-4r5,-14r55,-4r-34,135r9,1v18,-34,44,-54,64,-54v29,0,49,17,37,58r-22,77v-7,25,-7,32,2,32v11,0,21,-12,30,-31r11,4v-12,27,-39,49,-64,46v-17,-1,-17,-25,-10,-51","w":222},"i":{"d":"78,-237v4,-12,13,-18,25,-18v11,0,18,6,14,18v-3,12,-12,19,-24,19v-12,0,-18,-7,-15,-19xm33,-49r29,-111r-21,-3r4,-14r54,-5r-34,133v-7,25,-7,32,2,32v10,0,20,-13,31,-31r10,3v-13,28,-39,50,-64,47v-17,-2,-18,-25,-11,-51","w":114},"j":{"d":"103,-182v-27,94,-27,258,-130,264v-29,1,-30,-28,-6,-31v13,0,10,16,28,16v12,0,24,-16,34,-60r36,-167r-21,-3r5,-14xm83,-237v4,-12,13,-18,25,-18v11,0,18,6,14,18v-4,12,-13,19,-24,19v-12,0,-18,-7,-15,-19","w":109},"k":{"d":"20,0r59,-244r-21,-4r4,-14r55,-4r-31,123r9,2v17,-23,40,-43,64,-43v22,0,36,12,30,35v-8,27,-32,46,-59,58v11,22,9,66,36,69v4,0,14,-6,24,-27r10,3v-21,43,-69,76,-84,13r-10,-49r-37,12r-18,70r-31,0xm141,-164v-33,3,-63,48,-70,83v33,-11,82,-31,89,-60v4,-15,-4,-23,-19,-23","w":197},"l":{"d":"31,-49r49,-195r-22,-4r5,-14r55,-4r-55,217v-8,22,-6,29,3,29v10,0,21,-11,29,-28r10,3v-11,28,-38,50,-63,47v-18,-2,-18,-25,-11,-51","w":112},"m":{"d":"239,-49r22,-77v6,-22,2,-34,-17,-34v-21,0,-52,30,-69,75r-24,85r-31,0r37,-130v6,-19,1,-30,-18,-30v-40,-2,-84,102,-93,160r-31,0r44,-160r-21,-3r4,-14r54,-5r-14,50r9,2v14,-35,42,-54,62,-54v25,0,43,14,36,46r10,2v18,-30,40,-48,59,-48v27,0,46,17,34,58r-22,77v-6,22,-6,29,4,29v9,0,20,-11,28,-28r11,3v-12,28,-39,50,-63,47v-18,-2,-18,-25,-11,-51","w":320},"n":{"d":"136,-49r23,-77v6,-22,0,-34,-21,-34v-41,-2,-80,103,-89,160r-32,0r41,-160r-21,-3r5,-14r54,-5r-12,46r9,2v18,-32,40,-50,60,-50v28,0,49,17,37,58r-23,77v-6,22,-6,29,4,29v9,0,20,-11,29,-28r11,3v-13,28,-39,50,-64,47v-17,-2,-18,-25,-11,-51","w":217},"o":{"d":"22,-83v13,-56,54,-101,101,-101v44,0,70,39,60,87v-12,56,-53,100,-100,100v-45,0,-71,-38,-61,-86xm58,-83v-9,39,-4,71,28,71v30,0,52,-38,62,-85v9,-39,4,-71,-29,-71v-29,0,-51,38,-61,85","w":192},"p":{"d":"188,-90v-10,55,-71,120,-134,83r-18,83r24,4r-2,10r-81,0r2,-10r26,-4r52,-232r-23,-5r4,-13r54,-8r-8,38r10,2v14,-25,34,-41,53,-41v39,0,54,38,41,93xm136,-159v-37,-2,-70,65,-74,115v-3,15,1,32,28,32v36,0,54,-32,65,-78v10,-43,6,-69,-19,-69","w":199},"q":{"d":"206,-181v-29,73,-44,175,-65,258r24,4r-3,10r-81,0r3,-10r25,-4r29,-121r-9,-2v-16,30,-41,48,-62,48v-39,0,-53,-40,-39,-88v8,-54,88,-129,145,-79v9,-8,15,-22,33,-16xm80,-22v32,3,75,-60,79,-112v3,-14,0,-31,-29,-31v-34,0,-60,45,-70,79v-10,36,-6,64,20,64","w":204},"r":{"d":"22,0r37,-160r-21,-3r5,-14r48,-5r-10,43r8,1v9,-16,28,-45,52,-45v12,0,21,8,18,21v-3,17,-34,19,-42,5v-42,21,-53,102,-66,157r-29,0","w":133},"s":{"d":"135,-44v-9,53,-94,61,-116,22v-4,-16,2,-28,17,-28v13,0,10,19,6,31v17,15,60,8,63,-15v6,-24,-14,-35,-30,-46v-31,-19,-42,-36,-36,-57v12,-45,84,-64,109,-25v5,16,-5,28,-18,28v-13,0,-10,-20,-4,-30v-20,-11,-53,0,-57,20v-3,18,11,27,28,39v29,17,45,35,38,61","w":156},"t":{"d":"32,-162r3,-13r25,-5r9,-35r33,-6r-10,41r48,0r-5,18r-48,0r-28,111v-5,17,-4,29,7,30v14,1,28,-11,37,-26r9,5v-13,25,-39,43,-61,43v-14,0,-34,-11,-24,-48r29,-115r-24,0"},"u":{"d":"85,-19v35,4,74,-88,82,-141r-19,-3r5,-14r50,-5r-33,133v-6,23,-4,29,5,29v10,0,20,-11,27,-28r11,4v-10,27,-37,49,-61,46v-16,-2,-19,-20,-15,-43r-9,-1v-16,30,-36,47,-63,47v-26,0,-44,-13,-34,-54r28,-113r-21,-4r4,-14r54,-4r-34,135v-5,23,2,30,23,30","w":218},"v":{"d":"158,-141v-10,-20,-13,-47,16,-49v15,0,16,24,7,42v-28,59,-52,95,-100,148r-13,0v-3,-58,-9,-102,-20,-162r-20,-3r4,-14r46,-6v11,55,17,92,18,153v26,-35,47,-73,62,-109","w":176},"w":{"d":"75,0r-12,0v-1,-49,-6,-108,-15,-162r-20,-3r4,-14r47,-6v7,49,8,94,9,137r71,-132r17,0v8,60,11,108,12,148v24,-38,42,-76,54,-109v-11,-17,-12,-48,14,-49v16,0,16,24,8,42v-26,60,-48,95,-87,148r-14,0v0,-42,-6,-84,-10,-138","w":259},"x":{"d":"79,-185v14,13,20,40,27,67v15,-26,24,-43,46,-59v15,-11,41,-11,42,5v4,20,-27,25,-42,14v-15,10,-31,33,-42,55v8,31,19,115,53,70r8,6v-16,19,-32,31,-49,31v-19,6,-24,-45,-32,-68v-15,26,-30,45,-53,60v-16,11,-38,7,-40,-9v-2,-22,30,-25,43,-10v15,-10,35,-34,46,-56v-8,-31,-13,-64,-31,-84r-18,-2r4,-15","w":181},"y":{"d":"149,-141v-9,-19,-18,-47,14,-49v15,0,15,24,7,42v-28,59,-50,94,-95,146r-12,35v-10,37,-40,56,-55,56v-12,0,-25,-4,-27,-20v-2,-10,7,-20,20,-20v10,0,13,10,17,20v24,-1,35,-49,42,-74v-2,-55,-7,-99,-16,-157r-19,-3r4,-14r45,-6v10,53,14,91,15,148v25,-33,47,-70,60,-104","w":164},"z":{"d":"49,-180r118,0r0,5r-129,152v49,-5,59,28,90,11v-7,-14,1,-33,18,-32v8,0,11,8,8,18v-3,14,-33,39,-63,39v-36,1,-47,-16,-86,-10r0,-15r121,-143v-37,-1,-75,-2,-85,24r-10,-2v8,-15,12,-31,18,-47","w":164},"!":{"d":"105,-242r-45,172v-2,7,-13,6,-12,0r22,-172v2,-20,42,-27,35,0xm23,-16v1,-12,12,-20,24,-20v12,0,19,8,17,20v-1,23,-46,29,-41,0","w":113},"\"":{"d":"49,-173r10,-73v3,-19,33,-21,27,0r-19,73r-18,0xm100,-173r9,-73v3,-19,34,-21,28,0r-19,73r-18,0","w":133},"#":{"d":"77,0r27,-75r-37,0r-27,75r-16,0r27,-75r-42,0r4,-15r44,0r27,-74r-51,0r4,-16r53,0r28,-77r16,0r-29,77r37,0r28,-77r16,0r-28,77r42,0r-4,16r-43,0r-28,74r50,0r-3,15r-52,0r-27,75r-16,0xm100,-164r-27,74r36,0r27,-74r-36,0","w":190},"$":{"d":"36,-75v-2,32,9,53,35,61r28,-100v-46,-27,-64,-49,-56,-80v13,-44,58,-67,97,-66r9,-32r12,0r-9,34v19,4,33,14,37,20v5,-8,4,-22,21,-19r-15,69r-12,0v3,-31,-12,-51,-35,-56r-27,96v39,26,76,45,64,89v-12,42,-57,68,-107,62r-9,32r-12,0r10,-35v-21,-6,-34,-19,-39,-25r-9,25r-11,0r16,-75r12,0xm153,-50v8,-29,-20,-46,-44,-59r-27,97v37,3,65,-11,71,-38xm73,-206v-7,25,14,39,37,52r26,-92v-31,-1,-57,15,-63,40","w":195},"%":{"d":"59,-204v7,-31,34,-57,69,-57v34,0,52,26,46,57v-7,33,-33,60,-69,60v-33,0,-51,-27,-46,-60xm87,-204v-5,25,-1,46,21,46v21,0,34,-21,39,-46v3,-23,0,-42,-22,-42v-22,0,-34,19,-38,42xm53,0r198,-257r16,0r-199,257r-15,0xm147,-56v6,-31,32,-57,68,-57v33,0,52,26,46,57v-7,33,-34,60,-69,60v-33,0,-52,-27,-45,-60xm211,-99v-36,0,-59,86,-16,89v21,0,33,-21,38,-46v4,-23,1,-43,-22,-43","w":299},"&":{"d":"179,-44v15,20,26,33,44,16r4,5v-23,35,-52,35,-73,2v-41,41,-151,30,-132,-40v6,-34,46,-56,74,-73v-8,-20,-20,-40,-15,-68v7,-33,36,-57,69,-57v25,0,44,16,38,45v-6,31,-36,53,-59,68r43,92v15,-14,25,-28,22,-55v2,-7,7,-14,16,-14v10,0,12,8,6,22v-6,16,-20,38,-37,57xm147,-31v-15,-23,-34,-64,-47,-95v-23,14,-36,32,-40,56v-11,56,51,70,87,39xm166,-210v3,-20,-3,-35,-18,-35v-44,-2,-44,63,-22,92v17,-13,34,-31,40,-57","w":249},"'":{"d":"42,-173r10,-73v3,-19,33,-21,27,0r-19,73r-18,0","w":66},"(":{"d":"82,77r-3,5v-49,-30,-65,-112,-50,-189v14,-69,60,-149,121,-179r2,6v-50,33,-79,114,-90,173v-13,66,-16,150,20,184","w":120},")":{"d":"46,-280r3,-6v49,30,64,113,49,190v-13,69,-59,148,-121,178r-1,-5v49,-34,78,-114,89,-173v13,-66,16,-151,-19,-184","w":120},"*":{"d":"34,-203r10,-19r47,19r9,-55r20,0r-12,55r55,-19r2,19r-56,15r25,43r-18,12r-22,-44r-38,44r-14,-12r41,-42","w":174},"+":{"d":"96,-180r19,0r-12,63r66,0r-3,19r-67,0r-12,63r-19,0r12,-63r-67,0r4,-19r67,0","w":174},",":{"d":"5,-16v2,-12,12,-20,25,-20v11,0,18,11,15,27v-6,32,-37,57,-50,63r-5,-8v14,-9,27,-19,31,-40v-10,-1,-18,-12,-16,-22","w":75},"\/":{"d":"-12,39r183,-302r16,0r-183,302r-16,0","w":166},":":{"d":"18,-148v1,-22,46,-27,41,0v-2,25,-47,29,-41,0xm5,-16v3,-12,13,-20,25,-20v11,0,19,8,16,20v-1,24,-46,28,-41,0","w":81},";":{"d":"19,-148v3,-11,13,-19,25,-19v11,0,19,8,16,19v-1,25,-46,29,-41,0xm8,-16v2,-12,12,-20,24,-20v12,0,19,11,16,27v-6,32,-38,57,-50,63r-5,-8v13,-9,26,-19,31,-40v-10,-1,-18,-12,-16,-22","w":83},"<":{"d":"159,-159r-128,54r108,52r-4,17r-125,-60r4,-17r148,-61","w":151},"=":{"d":"23,-132r5,-19r159,0r-4,19r-160,0xm12,-73r4,-19r159,0r-3,19r-160,0","w":188},">":{"d":"2,-51r127,-54r-106,-52r3,-17r124,60r-3,17r-148,61","w":151},"?":{"d":"104,-124r-10,54v-1,6,-27,5,-26,0r8,-48v45,-14,65,-48,71,-75v14,-56,-41,-70,-76,-42v9,19,4,48,-21,48v-16,0,-15,-20,-4,-34v20,-23,51,-40,81,-40v36,0,61,17,53,58v-6,33,-42,62,-76,79xm49,-16v2,-12,12,-20,24,-20v11,0,19,8,17,20v-2,12,-13,20,-24,20v-12,0,-20,-8,-17,-20","w":176},"@":{"d":"309,-117v-9,49,-63,104,-112,104v-16,0,-25,-11,-18,-38r-4,0v-11,16,-30,40,-57,40v-25,0,-37,-27,-27,-61v19,-67,72,-92,94,-92v13,0,20,3,26,13v2,-11,15,-11,29,-10r-34,107v-8,26,-3,29,8,29v28,0,62,-48,70,-88v10,-54,-8,-104,-76,-104v-70,-1,-143,54,-162,148v-11,64,16,113,84,113v40,0,71,-13,95,-32r2,4v-25,22,-57,39,-106,39v-76,0,-114,-58,-101,-124v20,-99,107,-160,190,-160v87,0,110,54,99,112xm136,-30v34,-7,55,-57,64,-88v7,-23,1,-35,-21,-35v-18,0,-42,21,-59,77v-8,29,-4,46,16,46","w":321},"[":{"d":"52,37r30,4r-2,13r-58,0r64,-333r58,0r-3,14r-32,3","w":123},"\\":{"d":"63,-263r65,302r-16,0r-64,-302r15,0","w":166},"]":{"d":"82,-261r-31,-5r3,-13r59,0r-65,333r-58,0r3,-13r33,-4","w":123},"^":{"d":"102,-156r-15,-82r-46,82r-17,0r60,-100r16,0r20,100r-18,0","w":117},"_":{"d":"-12,31r3,-16r153,0r-4,16r-152,0","w":174},"`":{"d":"94,-203v-10,-15,-34,-25,-35,-46v2,-11,20,-18,25,-6r19,45","w":100},"{":{"d":"32,-104v29,10,28,56,20,79v-17,53,-10,76,24,92r-4,11v-48,-8,-69,-38,-49,-103v10,-30,16,-66,-13,-73r2,-11v33,-7,41,-43,42,-74v5,-65,37,-94,88,-103r0,12v-40,15,-56,39,-59,91v-1,24,-19,70,-51,79"},"|":{"d":"86,-263r-63,323r-15,0r63,-323r15,0","w":87},"}":{"d":"95,-104v-29,-9,-28,-55,-20,-79v17,-52,10,-76,-24,-91r4,-12v48,9,68,38,49,103v-10,31,-16,67,13,74r-2,11v-33,7,-41,43,-42,73v-5,65,-37,95,-88,103r0,-11v40,-16,56,-39,59,-92v1,-23,18,-69,51,-79"},"~":{"d":"93,-153v48,-4,34,61,83,62v13,0,30,-10,39,-27v-10,-10,-11,-33,6,-35v10,0,14,13,9,25v-13,35,-44,60,-74,60v-49,5,-39,-56,-84,-62v-12,0,-28,10,-38,27v10,11,9,36,-7,36v-11,0,-14,-14,-8,-25v13,-35,40,-61,74,-61","w":238},"\u00d7":{"d":"149,-166r11,14r-55,46r37,46r-16,14r-38,-46r-55,46r-11,-13r55,-47r-37,-46r16,-14r38,46","w":174},"\u2013":{"d":"21,-99r4,-23r160,0r-5,23r-159,0","w":195},"\u2014":{"d":"21,-99r4,-23r196,0r-5,23r-195,0","w":231},"\u2018":{"d":"90,-202v-2,12,-12,20,-24,20v-11,0,-19,-11,-16,-27v7,-31,38,-57,50,-63r5,8v-13,9,-26,20,-31,40v11,2,18,12,16,22","w":79},"\u2019":{"d":"28,-241v2,-12,12,-20,24,-20v11,0,19,11,16,27v-6,32,-38,57,-50,63r-5,-8v13,-9,26,-19,31,-40v-11,-1,-18,-12,-16,-22","w":79},"\u201c":{"d":"128,-221v26,5,17,44,-8,42v-12,0,-19,-10,-16,-26v6,-32,37,-57,50,-63r5,8v-14,9,-27,19,-31,39xm73,-221v28,6,17,44,-8,42v-11,0,-19,-10,-15,-26v6,-32,37,-57,49,-63r5,8v-13,9,-26,19,-31,39","w":135},"\u201d":{"d":"28,-241v2,-12,12,-20,24,-20v11,0,19,11,16,27v-6,32,-38,57,-50,63r-5,-8v13,-9,26,-19,31,-40v-11,-1,-18,-12,-16,-22xm79,-241v2,-12,12,-20,25,-20v11,0,18,11,15,27v-6,32,-37,57,-50,63r-5,-8v14,-9,27,-19,31,-40v-10,-1,-18,-12,-16,-22","w":133},"\u2026":{"d":"3,-16v1,-24,46,-28,41,0v-3,12,-13,20,-25,20v-11,0,-19,-8,-16,-20xm74,-16v1,-24,46,-28,41,0v-1,24,-46,28,-41,0xm145,-16v1,-23,46,-29,41,0v-1,24,-46,28,-41,0","w":221},"\u2122":{"d":"199,-190v4,1,10,1,7,6v-10,-1,-20,-1,-30,0v0,-5,5,-4,9,-5r10,-54r-37,58r-4,0r-17,-54r-10,49v4,1,11,0,8,6v-8,-1,-16,-1,-24,0v0,-5,5,-4,9,-5r11,-57v2,-8,-7,-4,-6,-11r21,0r18,51r33,-51r23,0v0,5,-5,4,-9,5xm77,-251v-15,-1,-24,2,-26,15r-3,0r3,-21r67,0v-3,6,1,20,-8,21v5,-12,-5,-17,-19,-15r-12,62v4,1,10,0,7,5v-10,-1,-19,-1,-29,0v-1,-6,4,-4,8,-5","w":204},"\u00a0":{"w":69}}});