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

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

/**
 * Set the variable that indicates if JavaScript behaviors should be applied
 */
Drupal.jsEnabled = true;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// Global Killswitch on the <html> element
$(document.documentElement).addClass('js');
// Attach all behaviors.
$(document).ready(function() {
  Drupal.attachBehaviors(this);
});

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
// $Id: googleanalytics.js,v 1.9.2.3 2010/06/05 01:28:53 hass Exp $

$(document).ready(function() {

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

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

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing) {
          // External link clicked.
          _gaq.push(["_trackEvent", "Outgoing links", "Click", this.href]);
        }
      }

    });
  });
});
;
// $Id: panels.js,v 1.2.4.1 2009/10/05 22:40:35 merlinofchaos Exp $

(function ($) {
  Drupal.Panels = {};

  Drupal.Panels.autoAttach = function() {
    if ($.browser.msie) {
      // If IE, attach a hover event so we can see our admin links.
      $("div.panel-pane").hover(
        function() {
          $('div.panel-hide', this).addClass("panel-hide-hover"); return true;
        },
        function() {
          $('div.panel-hide', this).removeClass("panel-hide-hover"); return true;
        }
      );
      $("div.admin-links").hover(
        function() {
          $(this).addClass("admin-links-hover"); return true;
        },
        function(){
          $(this).removeClass("admin-links-hover"); return true;
        }
      );
    }
  };

  $(Drupal.Panels.autoAttach);
})(jQuery);
;
/*
 * Shadowbox.js, version 3.0.3
 * http://shadowbox-js.com/
 *
 * Copyright 2007-2010, Michael J. I. Jackson
 * Date: 2010-03-10 17:20:34 +0000
 */
(function(window,undefined){var S={version:"3.0.3"};var ua=navigator.userAgent.toLowerCase();if(ua.indexOf("windows")>-1||ua.indexOf("win32")>-1){S.isWindows=true}else{if(ua.indexOf("macintosh")>-1||ua.indexOf("mac os x")>-1){S.isMac=true}else{if(ua.indexOf("linux")>-1){S.isLinux=true}}}S.isIE=ua.indexOf("msie")>-1;S.isIE6=ua.indexOf("msie 6")>-1;S.isIE7=ua.indexOf("msie 7")>-1;S.isGecko=ua.indexOf("gecko")>-1&&ua.indexOf("safari")==-1;S.isWebKit=ua.indexOf("applewebkit/")>-1;var inlineId=/#(.+)$/,galleryName=/^(light|shadow)box\[(.*?)\]/i,inlineParam=/\s*([a-z_]*?)\s*=\s*(.+)\s*/,fileExtension=/[0-9a-z]+$/i,scriptPath=/(.+\/)shadowbox\.js/i;var open=false,initialized=false,lastOptions={},slideDelay=0,slideStart,slideTimer;S.current=-1;S.dimensions=null;S.ease=function(state){return 1+Math.pow(state-1,3)};S.errorInfo={fla:{name:"Flash",url:"http://www.adobe.com/products/flashplayer/"},qt:{name:"QuickTime",url:"http://www.apple.com/quicktime/download/"},wmp:{name:"Windows Media Player",url:"http://www.microsoft.com/windows/windowsmedia/"},f4m:{name:"Flip4Mac",url:"http://www.flip4mac.com/wmv_download.htm"}};S.gallery=[];S.onReady=noop;S.path=null;S.player=null;S.playerId="sb-player";S.options={animate:true,animateFade:true,autoplayMovies:true,continuous:false,enableKeys:true,flashParams:{bgcolor:"#000000",allowfullscreen:true},flashVars:{},flashVersion:"9.0.115",handleOversize:"resize",handleUnsupported:"link",onChange:noop,onClose:noop,onFinish:noop,onOpen:noop,showMovieControls:true,skipSetup:false,slideshowDelay:0,viewportPadding:20};S.getCurrent=function(){return S.current>-1?S.gallery[S.current]:null};S.hasNext=function(){return S.gallery.length>1&&(S.current!=S.gallery.length-1||S.options.continuous)};S.isOpen=function(){return open};S.isPaused=function(){return slideTimer=="pause"};S.applyOptions=function(options){lastOptions=apply({},S.options);apply(S.options,options)};S.revertOptions=function(){apply(S.options,lastOptions)};S.init=function(options,callback){if(initialized){return}initialized=true;if(S.skin.options){apply(S.options,S.skin.options)}if(options){apply(S.options,options)}if(!S.path){var path,scripts=document.getElementsByTagName("script");for(var i=0,len=scripts.length;i<len;++i){path=scriptPath.exec(scripts[i].src);if(path){S.path=path[1];break}}}if(callback){S.onReady=callback}bindLoad()};S.open=function(obj){if(open){return}var gc=S.makeGallery(obj);S.gallery=gc[0];S.current=gc[1];obj=S.getCurrent();if(obj==null){return}S.applyOptions(obj.options||{});filterGallery();if(S.gallery.length){obj=S.getCurrent();if(S.options.onOpen(obj)===false){return}open=true;S.skin.onOpen(obj,load)}};S.close=function(){if(!open){return}open=false;if(S.player){S.player.remove();S.player=null}if(typeof slideTimer=="number"){clearTimeout(slideTimer);slideTimer=null}slideDelay=0;listenKeys(false);S.options.onClose(S.getCurrent());S.skin.onClose();S.revertOptions()};S.play=function(){if(!S.hasNext()){return}if(!slideDelay){slideDelay=S.options.slideshowDelay*1000}if(slideDelay){slideStart=now();slideTimer=setTimeout(function(){slideDelay=slideStart=0;S.next()},slideDelay);if(S.skin.onPlay){S.skin.onPlay()}}};S.pause=function(){if(typeof slideTimer!="number"){return}slideDelay=Math.max(0,slideDelay-(now()-slideStart));if(slideDelay){clearTimeout(slideTimer);slideTimer="pause";if(S.skin.onPause){S.skin.onPause()}}};S.change=function(index){if(!(index in S.gallery)){if(S.options.continuous){index=(index<0?S.gallery.length+index:0);if(!(index in S.gallery)){return}}else{return}}S.current=index;if(typeof slideTimer=="number"){clearTimeout(slideTimer);slideTimer=null;slideDelay=slideStart=0}S.options.onChange(S.getCurrent());load(true)};S.next=function(){S.change(S.current+1)};S.previous=function(){S.change(S.current-1)};S.setDimensions=function(height,width,maxHeight,maxWidth,topBottom,leftRight,padding,preserveAspect){var originalHeight=height,originalWidth=width;var extraHeight=2*padding+topBottom;if(height+extraHeight>maxHeight){height=maxHeight-extraHeight}var extraWidth=2*padding+leftRight;if(width+extraWidth>maxWidth){width=maxWidth-extraWidth}var changeHeight=(originalHeight-height)/originalHeight,changeWidth=(originalWidth-width)/originalWidth,oversized=(changeHeight>0||changeWidth>0);if(preserveAspect&&oversized){if(changeHeight>changeWidth){width=Math.round((originalWidth/originalHeight)*height)}else{if(changeWidth>changeHeight){height=Math.round((originalHeight/originalWidth)*width)}}}S.dimensions={height:height+topBottom,width:width+leftRight,innerHeight:height,innerWidth:width,top:Math.floor((maxHeight-(height+extraHeight))/2+padding),left:Math.floor((maxWidth-(width+extraWidth))/2+padding),oversized:oversized};return S.dimensions};S.makeGallery=function(obj){var gallery=[],current=-1;if(typeof obj=="string"){obj=[obj]}if(typeof obj.length=="number"){each(obj,function(i,o){if(o.content){gallery[i]=o}else{gallery[i]={content:o}}});current=0}else{if(obj.tagName){var cacheObj=S.getCache(obj);obj=cacheObj?cacheObj:S.makeObject(obj)}if(obj.gallery){gallery=[];var o;for(var key in S.cache){o=S.cache[key];if(o.gallery&&o.gallery==obj.gallery){if(current==-1&&o.content==obj.content){current=gallery.length}gallery.push(o)}}if(current==-1){gallery.unshift(obj);current=0}}else{gallery=[obj];current=0}}each(gallery,function(i,o){gallery[i]=apply({},o)});return[gallery,current]};S.makeObject=function(link,options){var obj={content:link.href,title:link.getAttribute("title")||"",link:link};if(options){options=apply({},options);each(["player","title","height","width","gallery"],function(i,o){if(typeof options[o]!="undefined"){obj[o]=options[o];delete options[o]}});obj.options=options}else{obj.options={}}if(!obj.player){obj.player=S.getPlayer(obj.content)}var rel=link.getAttribute("rel");if(rel){var match=rel.match(galleryName);if(match){obj.gallery=escape(match[2])}each(rel.split(";"),function(i,p){match=p.match(inlineParam);if(match){obj[match[1]]=match[2]}})}return obj};S.getPlayer=function(content){if(content.indexOf("#")>-1&&content.indexOf(document.location.href)==0){return"inline"}var q=content.indexOf("?");if(q>-1){content=content.substring(0,q)}var ext,m=content.match(fileExtension);if(m){ext=m[0].toLowerCase()}if(ext){if(S.img&&S.img.ext.indexOf(ext)>-1){return"img"}if(S.swf&&S.swf.ext.indexOf(ext)>-1){return"swf"}if(S.flv&&S.flv.ext.indexOf(ext)>-1){return"flv"}if(S.qt&&S.qt.ext.indexOf(ext)>-1){if(S.wmp&&S.wmp.ext.indexOf(ext)>-1){return"qtwmp"}else{return"qt"}}if(S.wmp&&S.wmp.ext.indexOf(ext)>-1){return"wmp"}}return"iframe"};function filterGallery(){var err=S.errorInfo,plugins=S.plugins,obj,remove,needed,m,format,replace,inlineEl,flashVersion;for(var i=0;i<S.gallery.length;++i){obj=S.gallery[i];remove=false;needed=null;switch(obj.player){case"flv":case"swf":if(!plugins.fla){needed="fla"}break;case"qt":if(!plugins.qt){needed="qt"}break;case"wmp":if(S.isMac){if(plugins.qt&&plugins.f4m){obj.player="qt"}else{needed="qtf4m"}}else{if(!plugins.wmp){needed="wmp"}}break;case"qtwmp":if(plugins.qt){obj.player="qt"}else{if(plugins.wmp){obj.player="wmp"}else{needed="qtwmp"}}break}if(needed){if(S.options.handleUnsupported=="link"){switch(needed){case"qtf4m":format="shared";replace=[err.qt.url,err.qt.name,err.f4m.url,err.f4m.name];break;case"qtwmp":format="either";replace=[err.qt.url,err.qt.name,err.wmp.url,err.wmp.name];break;default:format="single";replace=[err[needed].url,err[needed].name]}obj.player="html";obj.content='<div class="sb-message">'+sprintf(S.lang.errors[format],replace)+"</div>"}else{remove=true}}else{if(obj.player=="inline"){m=inlineId.exec(obj.content);if(m){inlineEl=get(m[1]);if(inlineEl){obj.content=inlineEl.innerHTML}else{remove=true}}else{remove=true}}else{if(obj.player=="swf"||obj.player=="flv"){flashVersion=(obj.options&&obj.options.flashVersion)||S.options.flashVersion;if(S.flash&&!S.flash.hasFlashPlayerVersion(flashVersion)){obj.width=310;obj.height=177}}}}if(remove){S.gallery.splice(i,1);if(i<S.current){--S.current}else{if(i==S.current){S.current=i>0?i-1:i}}--i}}}function listenKeys(on){if(!S.options.enableKeys){return}(on?addEvent:removeEvent)(document,"keydown",handleKey)}function handleKey(e){if(e.metaKey||e.shiftKey||e.altKey||e.ctrlKey){return}var code=keyCode(e),handler;switch(code){case 81:case 88:case 27:handler=S.close;break;case 37:handler=S.previous;break;case 39:handler=S.next;break;case 32:handler=typeof slideTimer=="number"?S.pause:S.play;break}if(handler){preventDefault(e);handler()}}function load(changing){listenKeys(false);var obj=S.getCurrent();var player=(obj.player=="inline"?"html":obj.player);if(typeof S[player]!="function"){throw"unknown player "+player}if(changing){S.player.remove();S.revertOptions();S.applyOptions(obj.options||{})}S.player=new S[player](obj,S.playerId);if(S.gallery.length>1){var next=S.gallery[S.current+1]||S.gallery[0];if(next.player=="img"){var a=new Image();a.src=next.content}var prev=S.gallery[S.current-1]||S.gallery[S.gallery.length-1];if(prev.player=="img"){var b=new Image();b.src=prev.content}}S.skin.onLoad(changing,waitReady)}function waitReady(){if(!open){return}if(typeof S.player.ready!="undefined"){var timer=setInterval(function(){if(open){if(S.player.ready){clearInterval(timer);timer=null;S.skin.onReady(show)}}else{clearInterval(timer);timer=null}},10)}else{S.skin.onReady(show)}}function show(){if(!open){return}S.player.append(S.skin.body,S.dimensions);S.skin.onShow(finish)}function finish(){if(!open){return}if(S.player.onLoad){S.player.onLoad()}S.options.onFinish(S.getCurrent());if(!S.isPaused()){S.play()}listenKeys(true)}if(!Array.prototype.indexOf){Array.prototype.indexOf=function(obj,from){var len=this.length>>>0;from=from||0;if(from<0){from+=len}for(;from<len;++from){if(from in this&&this[from]===obj){return from}}return -1}}function now(){return(new Date).getTime()}function apply(original,extension){for(var property in extension){original[property]=extension[property]}return original}function each(obj,callback){var i=0,len=obj.length;for(var value=obj[0];i<len&&callback.call(value,i,value)!==false;value=obj[++i]){}}function sprintf(str,replace){return str.replace(/\{(\w+?)\}/g,function(match,i){return replace[i]})}function noop(){}function get(id){return document.getElementById(id)}function remove(el){el.parentNode.removeChild(el)}var supportsOpacity=true,supportsFixed=true;function checkSupport(){var body=document.body,div=document.createElement("div");supportsOpacity=typeof div.style.opacity==="string";div.style.position="fixed";div.style.margin=0;div.style.top="20px";body.appendChild(div,body.firstChild);supportsFixed=div.offsetTop==20;body.removeChild(div)}S.getStyle=(function(){var opacity=/opacity=([^)]*)/,getComputedStyle=document.defaultView&&document.defaultView.getComputedStyle;return function(el,style){var ret;if(!supportsOpacity&&style=="opacity"&&el.currentStyle){ret=opacity.test(el.currentStyle.filter||"")?(parseFloat(RegExp.$1)/100)+"":"";return ret===""?"1":ret}if(getComputedStyle){var computedStyle=getComputedStyle(el,null);if(computedStyle){ret=computedStyle[style]}if(style=="opacity"&&ret==""){ret="1"}}else{ret=el.currentStyle[style]}return ret}})();S.appendHTML=function(el,html){if(el.insertAdjacentHTML){el.insertAdjacentHTML("BeforeEnd",html)}else{if(el.lastChild){var range=el.ownerDocument.createRange();range.setStartAfter(el.lastChild);var frag=range.createContextualFragment(html);el.appendChild(frag)}else{el.innerHTML=html}}};S.getWindowSize=function(dimension){if(document.compatMode==="CSS1Compat"){return document.documentElement["client"+dimension]}return document.body["client"+dimension]};S.setOpacity=function(el,opacity){var style=el.style;if(supportsOpacity){style.opacity=(opacity==1?"":opacity)}else{style.zoom=1;if(opacity==1){if(typeof style.filter=="string"&&(/alpha/i).test(style.filter)){style.filter=style.filter.replace(/\s*[\w\.]*alpha\([^\)]*\);?/gi,"")}}else{style.filter=(style.filter||"").replace(/\s*[\w\.]*alpha\([^\)]*\)/gi,"")+" alpha(opacity="+(opacity*100)+")"}}};S.clearOpacity=function(el){S.setOpacity(el,1)};function getTarget(e){var target=e.target?e.target:e.srcElement;return target.nodeType==3?target.parentNode:target}function getPageXY(e){var x=e.pageX||(e.clientX+(document.documentElement.scrollLeft||document.body.scrollLeft)),y=e.pageY||(e.clientY+(document.documentElement.scrollTop||document.body.scrollTop));return[x,y]}function preventDefault(e){e.preventDefault()}function keyCode(e){return e.which?e.which:e.keyCode}function addEvent(el,type,handler){if(el.addEventListener){el.addEventListener(type,handler,false)}else{if(el.nodeType===3||el.nodeType===8){return}if(el.setInterval&&(el!==window&&!el.frameElement)){el=window}if(!handler.__guid){handler.__guid=addEvent.guid++}if(!el.events){el.events={}}var handlers=el.events[type];if(!handlers){handlers=el.events[type]={};if(el["on"+type]){handlers[0]=el["on"+type]}}handlers[handler.__guid]=handler;el["on"+type]=addEvent.handleEvent}}addEvent.guid=1;addEvent.handleEvent=function(event){var result=true;event=event||addEvent.fixEvent(((this.ownerDocument||this.document||this).parentWindow||window).event);var handlers=this.events[event.type];for(var i in handlers){this.__handleEvent=handlers[i];if(this.__handleEvent(event)===false){result=false}}return result};addEvent.preventDefault=function(){this.returnValue=false};addEvent.stopPropagation=function(){this.cancelBubble=true};addEvent.fixEvent=function(e){e.preventDefault=addEvent.preventDefault;e.stopPropagation=addEvent.stopPropagation;return e};function removeEvent(el,type,handler){if(el.removeEventListener){el.removeEventListener(type,handler,false)}else{if(el.events&&el.events[type]){delete el.events[type][handler.__guid]}}}var loaded=false,DOMContentLoaded;if(document.addEventListener){DOMContentLoaded=function(){document.removeEventListener("DOMContentLoaded",DOMContentLoaded,false);S.load()}}else{if(document.attachEvent){DOMContentLoaded=function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",DOMContentLoaded);S.load()}}}}function doScrollCheck(){if(loaded){return}try{document.documentElement.doScroll("left")}catch(e){setTimeout(doScrollCheck,1);return}S.load()}function bindLoad(){if(document.readyState==="complete"){return S.load()}if(document.addEventListener){document.addEventListener("DOMContentLoaded",DOMContentLoaded,false);window.addEventListener("load",S.load,false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",DOMContentLoaded);window.attachEvent("onload",S.load);var topLevel=false;try{topLevel=window.frameElement===null}catch(e){}if(document.documentElement.doScroll&&topLevel){doScrollCheck()}}}}S.load=function(){if(loaded){return}if(!document.body){return setTimeout(S.load,13)}loaded=true;checkSupport();S.onReady();if(!S.options.skipSetup){S.setup()}S.skin.init()};S.plugins={};if(navigator.plugins&&navigator.plugins.length){var names=[];each(navigator.plugins,function(i,p){names.push(p.name)});names=names.join(",");var f4m=names.indexOf("Flip4Mac")>-1;S.plugins={fla:names.indexOf("Shockwave Flash")>-1,qt:names.indexOf("QuickTime")>-1,wmp:!f4m&&names.indexOf("Windows Media")>-1,f4m:f4m}}else{var detectPlugin=function(name){var axo;try{axo=new ActiveXObject(name)}catch(e){}return !!axo};S.plugins={fla:detectPlugin("ShockwaveFlash.ShockwaveFlash"),qt:detectPlugin("QuickTime.QuickTime"),wmp:detectPlugin("wmplayer.ocx"),f4m:false}}var relAttr=/^(light|shadow)box/i,expando="shadowboxCacheKey",cacheKey=1;S.cache={};S.select=function(selector){var links=[];if(!selector){var rel;each(document.getElementsByTagName("a"),function(i,el){rel=el.getAttribute("rel");if(rel&&relAttr.test(rel)){links.push(el)}})}else{var length=selector.length;if(length){if(typeof selector=="string"){if(S.find){links=S.find(selector)}}else{if(length==2&&typeof selector[0]=="string"&&selector[1].nodeType){if(S.find){links=S.find(selector[0],selector[1])}}else{for(var i=0;i<length;++i){links[i]=selector[i]}}}}else{links.push(selector)}}return links};S.setup=function(selector,options){each(S.select(selector),function(i,link){S.addCache(link,options)})};S.teardown=function(selector){each(S.select(selector),function(i,link){S.removeCache(link)})};S.addCache=function(link,options){var key=link[expando];if(key==undefined){key=cacheKey++;link[expando]=key;addEvent(link,"click",handleClick)}S.cache[key]=S.makeObject(link,options)};S.removeCache=function(link){removeEvent(link,"click",handleClick);delete S.cache[link[expando]];link[expando]=null};S.getCache=function(link){var key=link[expando];return(key in S.cache&&S.cache[key])};S.clearCache=function(){for(var key in S.cache){S.removeCache(S.cache[key].link)}S.cache={}};function handleClick(e){S.open(this);if(S.gallery.length){preventDefault(e)}}
/*
 * Sizzle CSS Selector Engine - v1.0
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 *
 * Modified for inclusion in Shadowbox.js
 */
S.find=(function(){var chunker=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,done=0,toString=Object.prototype.toString,hasDuplicate=false,baseHasDuplicate=true;[0,0].sort(function(){baseHasDuplicate=false;return 0});var Sizzle=function(selector,context,results,seed){results=results||[];var origContext=context=context||document;if(context.nodeType!==1&&context.nodeType!==9){return[]}if(!selector||typeof selector!=="string"){return results}var parts=[],m,set,checkSet,extra,prune=true,contextXML=isXML(context),soFar=selector;while((chunker.exec(""),m=chunker.exec(soFar))!==null){soFar=m[3];parts.push(m[1]);if(m[2]){extra=m[3];break}}if(parts.length>1&&origPOS.exec(selector)){if(parts.length===2&&Expr.relative[parts[0]]){set=posProcess(parts[0]+parts[1],context)}else{set=Expr.relative[parts[0]]?[context]:Sizzle(parts.shift(),context);while(parts.length){selector=parts.shift();if(Expr.relative[selector]){selector+=parts.shift()}set=posProcess(selector,set)}}}else{if(!seed&&parts.length>1&&context.nodeType===9&&!contextXML&&Expr.match.ID.test(parts[0])&&!Expr.match.ID.test(parts[parts.length-1])){var ret=Sizzle.find(parts.shift(),context,contextXML);context=ret.expr?Sizzle.filter(ret.expr,ret.set)[0]:ret.set[0]}if(context){var ret=seed?{expr:parts.pop(),set:makeArray(seed)}:Sizzle.find(parts.pop(),parts.length===1&&(parts[0]==="~"||parts[0]==="+")&&context.parentNode?context.parentNode:context,contextXML);set=ret.expr?Sizzle.filter(ret.expr,ret.set):ret.set;if(parts.length>0){checkSet=makeArray(set)}else{prune=false}while(parts.length){var cur=parts.pop(),pop=cur;if(!Expr.relative[cur]){cur=""}else{pop=parts.pop()}if(pop==null){pop=context}Expr.relative[cur](checkSet,pop,contextXML)}}else{checkSet=parts=[]}}if(!checkSet){checkSet=set}if(!checkSet){throw"Syntax error, unrecognized expression: "+(cur||selector)}if(toString.call(checkSet)==="[object Array]"){if(!prune){results.push.apply(results,checkSet)}else{if(context&&context.nodeType===1){for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&(checkSet[i]===true||checkSet[i].nodeType===1&&contains(context,checkSet[i]))){results.push(set[i])}}}else{for(var i=0;checkSet[i]!=null;i++){if(checkSet[i]&&checkSet[i].nodeType===1){results.push(set[i])}}}}}else{makeArray(checkSet,results)}if(extra){Sizzle(extra,origContext,results,seed);Sizzle.uniqueSort(results)}return results};Sizzle.uniqueSort=function(results){if(sortOrder){hasDuplicate=baseHasDuplicate;results.sort(sortOrder);if(hasDuplicate){for(var i=1;i<results.length;i++){if(results[i]===results[i-1]){results.splice(i--,1)}}}}return results};Sizzle.matches=function(expr,set){return Sizzle(expr,null,null,set)};Sizzle.find=function(expr,context,isXML){var set,match;if(!expr){return[]}for(var i=0,l=Expr.order.length;i<l;i++){var type=Expr.order[i],match;if((match=Expr.leftMatch[type].exec(expr))){var left=match[1];match.splice(1,1);if(left.substr(left.length-1)!=="\\"){match[1]=(match[1]||"").replace(/\\/g,"");set=Expr.find[type](match,context,isXML);if(set!=null){expr=expr.replace(Expr.match[type],"");break}}}}if(!set){set=context.getElementsByTagName("*")}return{set:set,expr:expr}};Sizzle.filter=function(expr,set,inplace,not){var old=expr,result=[],curLoop=set,match,anyFound,isXMLFilter=set&&set[0]&&isXML(set[0]);while(expr&&set.length){for(var type in Expr.filter){if((match=Expr.match[type].exec(expr))!=null){var filter=Expr.filter[type],found,item;anyFound=false;if(curLoop===result){result=[]}if(Expr.preFilter[type]){match=Expr.preFilter[type](match,curLoop,inplace,result,not,isXMLFilter);if(!match){anyFound=found=true}else{if(match===true){continue}}}if(match){for(var i=0;(item=curLoop[i])!=null;i++){if(item){found=filter(item,match,i,curLoop);var pass=not^!!found;if(inplace&&found!=null){if(pass){anyFound=true}else{curLoop[i]=false}}else{if(pass){result.push(item);anyFound=true}}}}}if(found!==undefined){if(!inplace){curLoop=result}expr=expr.replace(Expr.match[type],"");if(!anyFound){return[]}break}}}if(expr===old){if(anyFound==null){throw"Syntax error, unrecognized expression: "+expr}else{break}}old=expr}return curLoop};var Expr=Sizzle.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\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(elem){return elem.getAttribute("href")}},relative:{"+":function(checkSet,part){var isPartStr=typeof part==="string",isTag=isPartStr&&!/\W/.test(part),isPartStrNotTag=isPartStr&&!isTag;if(isTag){part=part.toLowerCase()}for(var i=0,l=checkSet.length,elem;i<l;i++){if((elem=checkSet[i])){while((elem=elem.previousSibling)&&elem.nodeType!==1){}checkSet[i]=isPartStrNotTag||elem&&elem.nodeName.toLowerCase()===part?elem||false:elem===part}}if(isPartStrNotTag){Sizzle.filter(part,checkSet,true)}},">":function(checkSet,part){var isPartStr=typeof part==="string";if(isPartStr&&!/\W/.test(part)){part=part.toLowerCase();for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){var parent=elem.parentNode;checkSet[i]=parent.nodeName.toLowerCase()===part?parent:false}}}else{for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){checkSet[i]=isPartStr?elem.parentNode:elem.parentNode===part}}if(isPartStr){Sizzle.filter(part,checkSet,true)}}},"":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();checkFn=dirNodeCheck}checkFn("parentNode",part,doneName,checkSet,nodeCheck,isXML)},"~":function(checkSet,part,isXML){var doneName=done++,checkFn=dirCheck;if(typeof part==="string"&&!/\W/.test(part)){var nodeCheck=part=part.toLowerCase();checkFn=dirNodeCheck}checkFn("previousSibling",part,doneName,checkSet,nodeCheck,isXML)}},find:{ID:function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?[m]:[]}},NAME:function(match,context){if(typeof context.getElementsByName!=="undefined"){var ret=[],results=context.getElementsByName(match[1]);for(var i=0,l=results.length;i<l;i++){if(results[i].getAttribute("name")===match[1]){ret.push(results[i])}}return ret.length===0?null:ret}},TAG:function(match,context){return context.getElementsByTagName(match[1])}},preFilter:{CLASS:function(match,curLoop,inplace,result,not,isXML){match=" "+match[1].replace(/\\/g,"")+" ";if(isXML){return match}for(var i=0,elem;(elem=curLoop[i])!=null;i++){if(elem){if(not^(elem.className&&(" "+elem.className+" ").replace(/[\t\n]/g," ").indexOf(match)>=0)){if(!inplace){result.push(elem)}}else{if(inplace){curLoop[i]=false}}}}return false},ID:function(match){return match[1].replace(/\\/g,"")},TAG:function(match,curLoop){return match[1].toLowerCase()},CHILD:function(match){if(match[1]==="nth"){var test=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(match[2]==="even"&&"2n"||match[2]==="odd"&&"2n+1"||!/\D/.test(match[2])&&"0n+"+match[2]||match[2]);match[2]=(test[1]+(test[2]||1))-0;match[3]=test[3]-0}match[0]=done++;return match},ATTR:function(match,curLoop,inplace,result,not,isXML){var name=match[1].replace(/\\/g,"");if(!isXML&&Expr.attrMap[name]){match[1]=Expr.attrMap[name]}if(match[2]==="~="){match[4]=" "+match[4]+" "}return match},PSEUDO:function(match,curLoop,inplace,result,not){if(match[1]==="not"){if((chunker.exec(match[3])||"").length>1||/^\w/.test(match[3])){match[3]=Sizzle(match[3],null,null,curLoop)}else{var ret=Sizzle.filter(match[3],curLoop,inplace,true^not);if(!inplace){result.push.apply(result,ret)}return false}}else{if(Expr.match.POS.test(match[0])||Expr.match.CHILD.test(match[0])){return true}}return match},POS:function(match){match.unshift(true);return match}},filters:{enabled:function(elem){return elem.disabled===false&&elem.type!=="hidden"},disabled:function(elem){return elem.disabled===true},checked:function(elem){return elem.checked===true},selected:function(elem){elem.parentNode.selectedIndex;return elem.selected===true},parent:function(elem){return !!elem.firstChild},empty:function(elem){return !elem.firstChild},has:function(elem,i,match){return !!Sizzle(match[3],elem).length},header:function(elem){return/h\d/i.test(elem.nodeName)},text:function(elem){return"text"===elem.type},radio:function(elem){return"radio"===elem.type},checkbox:function(elem){return"checkbox"===elem.type},file:function(elem){return"file"===elem.type},password:function(elem){return"password"===elem.type},submit:function(elem){return"submit"===elem.type},image:function(elem){return"image"===elem.type},reset:function(elem){return"reset"===elem.type},button:function(elem){return"button"===elem.type||elem.nodeName.toLowerCase()==="button"},input:function(elem){return/input|select|textarea|button/i.test(elem.nodeName)}},setFilters:{first:function(elem,i){return i===0},last:function(elem,i,match,array){return i===array.length-1},even:function(elem,i){return i%2===0},odd:function(elem,i){return i%2===1},lt:function(elem,i,match){return i<match[3]-0},gt:function(elem,i,match){return i>match[3]-0},nth:function(elem,i,match){return match[3]-0===i},eq:function(elem,i,match){return match[3]-0===i}},filter:{PSEUDO:function(elem,match,i,array){var name=match[1],filter=Expr.filters[name];if(filter){return filter(elem,i,match,array)}else{if(name==="contains"){return(elem.textContent||elem.innerText||getText([elem])||"").indexOf(match[3])>=0}else{if(name==="not"){var not=match[3];for(var i=0,l=not.length;i<l;i++){if(not[i]===elem){return false}}return true}else{throw"Syntax error, unrecognized expression: "+name}}}},CHILD:function(elem,match){var type=match[1],node=elem;switch(type){case"only":case"first":while((node=node.previousSibling)){if(node.nodeType===1){return false}}if(type==="first"){return true}node=elem;case"last":while((node=node.nextSibling)){if(node.nodeType===1){return false}}return true;case"nth":var first=match[2],last=match[3];if(first===1&&last===0){return true}var doneName=match[0],parent=elem.parentNode;if(parent&&(parent.sizcache!==doneName||!elem.nodeIndex)){var count=0;for(node=parent.firstChild;node;node=node.nextSibling){if(node.nodeType===1){node.nodeIndex=++count}}parent.sizcache=doneName}var diff=elem.nodeIndex-last;if(first===0){return diff===0}else{return(diff%first===0&&diff/first>=0)}}},ID:function(elem,match){return elem.nodeType===1&&elem.getAttribute("id")===match},TAG:function(elem,match){return(match==="*"&&elem.nodeType===1)||elem.nodeName.toLowerCase()===match},CLASS:function(elem,match){return(" "+(elem.className||elem.getAttribute("class"))+" ").indexOf(match)>-1},ATTR:function(elem,match){var name=match[1],result=Expr.attrHandle[name]?Expr.attrHandle[name](elem):elem[name]!=null?elem[name]:elem.getAttribute(name),value=result+"",type=match[2],check=match[4];return result==null?type==="!=":type==="="?value===check:type==="*="?value.indexOf(check)>=0:type==="~="?(" "+value+" ").indexOf(check)>=0:!check?value&&result!==false:type==="!="?value!==check:type==="^="?value.indexOf(check)===0:type==="$="?value.substr(value.length-check.length)===check:type==="|="?value===check||value.substr(0,check.length+1)===check+"-":false},POS:function(elem,match,i,array){var name=match[2],filter=Expr.setFilters[name];if(filter){return filter(elem,i,match,array)}}}};var origPOS=Expr.match.POS;for(var type in Expr.match){Expr.match[type]=new RegExp(Expr.match[type].source+/(?![^\[]*\])(?![^\(]*\))/.source);Expr.leftMatch[type]=new RegExp(/(^(?:.|\r|\n)*?)/.source+Expr.match[type].source)}var makeArray=function(array,results){array=Array.prototype.slice.call(array,0);if(results){results.push.apply(results,array);return results}return array};try{Array.prototype.slice.call(document.documentElement.childNodes,0)}catch(e){makeArray=function(array,results){var ret=results||[];if(toString.call(array)==="[object Array]"){Array.prototype.push.apply(ret,array)}else{if(typeof array.length==="number"){for(var i=0,l=array.length;i<l;i++){ret.push(array[i])}}else{for(var i=0;array[i];i++){ret.push(array[i])}}}return ret}}var sortOrder;if(document.documentElement.compareDocumentPosition){sortOrder=function(a,b){if(!a.compareDocumentPosition||!b.compareDocumentPosition){if(a==b){hasDuplicate=true}return a.compareDocumentPosition?-1:1}var ret=a.compareDocumentPosition(b)&4?-1:a===b?0:1;if(ret===0){hasDuplicate=true}return ret}}else{if("sourceIndex" in document.documentElement){sortOrder=function(a,b){if(!a.sourceIndex||!b.sourceIndex){if(a==b){hasDuplicate=true}return a.sourceIndex?-1:1}var ret=a.sourceIndex-b.sourceIndex;if(ret===0){hasDuplicate=true}return ret}}else{if(document.createRange){sortOrder=function(a,b){if(!a.ownerDocument||!b.ownerDocument){if(a==b){hasDuplicate=true}return a.ownerDocument?-1:1}var aRange=a.ownerDocument.createRange(),bRange=b.ownerDocument.createRange();aRange.setStart(a,0);aRange.setEnd(a,0);bRange.setStart(b,0);bRange.setEnd(b,0);var ret=aRange.compareBoundaryPoints(Range.START_TO_END,bRange);if(ret===0){hasDuplicate=true}return ret}}}}function getText(elems){var ret="",elem;for(var i=0;elems[i];i++){elem=elems[i];if(elem.nodeType===3||elem.nodeType===4){ret+=elem.nodeValue}else{if(elem.nodeType!==8){ret+=getText(elem.childNodes)}}}return ret}(function(){var form=document.createElement("div"),id="script"+(new Date).getTime();form.innerHTML="<a name='"+id+"'/>";var root=document.documentElement;root.insertBefore(form,root.firstChild);if(document.getElementById(id)){Expr.find.ID=function(match,context,isXML){if(typeof context.getElementById!=="undefined"&&!isXML){var m=context.getElementById(match[1]);return m?m.id===match[1]||typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id").nodeValue===match[1]?[m]:undefined:[]}};Expr.filter.ID=function(elem,match){var node=typeof elem.getAttributeNode!=="undefined"&&elem.getAttributeNode("id");return elem.nodeType===1&&node&&node.nodeValue===match}}root.removeChild(form);root=form=null})();(function(){var div=document.createElement("div");div.appendChild(document.createComment(""));if(div.getElementsByTagName("*").length>0){Expr.find.TAG=function(match,context){var results=context.getElementsByTagName(match[1]);if(match[1]==="*"){var tmp=[];for(var i=0;results[i];i++){if(results[i].nodeType===1){tmp.push(results[i])}}results=tmp}return results}}div.innerHTML="<a href='#'></a>";if(div.firstChild&&typeof div.firstChild.getAttribute!=="undefined"&&div.firstChild.getAttribute("href")!=="#"){Expr.attrHandle.href=function(elem){return elem.getAttribute("href",2)}}div=null})();if(document.querySelectorAll){(function(){var oldSizzle=Sizzle,div=document.createElement("div");div.innerHTML="<p class='TEST'></p>";if(div.querySelectorAll&&div.querySelectorAll(".TEST").length===0){return}Sizzle=function(query,context,extra,seed){context=context||document;if(!seed&&context.nodeType===9&&!isXML(context)){try{return makeArray(context.querySelectorAll(query),extra)}catch(e){}}return oldSizzle(query,context,extra,seed)};for(var prop in oldSizzle){Sizzle[prop]=oldSizzle[prop]}div=null})()}(function(){var div=document.createElement("div");div.innerHTML="<div class='test e'></div><div class='test'></div>";if(!div.getElementsByClassName||div.getElementsByClassName("e").length===0){return}div.lastChild.className="e";if(div.getElementsByClassName("e").length===1){return}Expr.order.splice(1,0,"CLASS");Expr.find.CLASS=function(match,context,isXML){if(typeof context.getElementsByClassName!=="undefined"&&!isXML){return context.getElementsByClassName(match[1])}};div=null})();function dirNodeCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break}if(elem.nodeType===1&&!isXML){elem.sizcache=doneName;elem.sizset=i}if(elem.nodeName.toLowerCase()===cur){match=elem;break}elem=elem[dir]}checkSet[i]=match}}}function dirCheck(dir,cur,doneName,checkSet,nodeCheck,isXML){for(var i=0,l=checkSet.length;i<l;i++){var elem=checkSet[i];if(elem){elem=elem[dir];var match=false;while(elem){if(elem.sizcache===doneName){match=checkSet[elem.sizset];break}if(elem.nodeType===1){if(!isXML){elem.sizcache=doneName;elem.sizset=i}if(typeof cur!=="string"){if(elem===cur){match=true;break}}else{if(Sizzle.filter(cur,[elem]).length>0){match=elem;break}}}elem=elem[dir]}checkSet[i]=match}}}var contains=document.compareDocumentPosition?function(a,b){return a.compareDocumentPosition(b)&16}:function(a,b){return a!==b&&(a.contains?a.contains(b):true)};var isXML=function(elem){var documentElement=(elem?elem.ownerDocument||elem:0).documentElement;return documentElement?documentElement.nodeName!=="HTML":false};var posProcess=function(selector,context){var tmpSet=[],later="",match,root=context.nodeType?[context]:context;while((match=Expr.match.PSEUDO.exec(selector))){later+=match[0];selector=selector.replace(Expr.match.PSEUDO,"")}selector=Expr.relative[selector]?selector+"*":selector;for(var i=0,l=root.length;i<l;i++){Sizzle(selector,root[i],tmpSet)}return Sizzle.filter(later,tmpSet)};return Sizzle})();
/*
 * SWFObject v2.1 <http://code.google.com/p/swfobject/>
 * Copyright (c) 2007-2008 Geoff Stearns, Michael Williams, and Bobby van der Sluis
 * This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
 *
 * Modified for inclusion in Shadowbox.js
 */
S.flash=(function(){var swfobject=function(){var UNDEF="undefined",OBJECT="object",SHOCKWAVE_FLASH="Shockwave Flash",SHOCKWAVE_FLASH_AX="ShockwaveFlash.ShockwaveFlash",FLASH_MIME_TYPE="application/x-shockwave-flash",EXPRESS_INSTALL_ID="SWFObjectExprInst",win=window,doc=document,nav=navigator,domLoadFnArr=[],regObjArr=[],objIdArr=[],listenersArr=[],script,timer=null,storedAltContent=null,storedAltContentId=null,isDomLoaded=false,isExpressInstallActive=false;var ua=function(){var w3cdom=typeof doc.getElementById!=UNDEF&&typeof doc.getElementsByTagName!=UNDEF&&typeof doc.createElement!=UNDEF,playerVersion=[0,0,0],d=null;if(typeof nav.plugins!=UNDEF&&typeof nav.plugins[SHOCKWAVE_FLASH]==OBJECT){d=nav.plugins[SHOCKWAVE_FLASH].description;if(d&&!(typeof nav.mimeTypes!=UNDEF&&nav.mimeTypes[FLASH_MIME_TYPE]&&!nav.mimeTypes[FLASH_MIME_TYPE].enabledPlugin)){d=d.replace(/^.*\s+(\S+\s+\S+$)/,"$1");playerVersion[0]=parseInt(d.replace(/^(.*)\..*$/,"$1"),10);playerVersion[1]=parseInt(d.replace(/^.*\.(.*)\s.*$/,"$1"),10);playerVersion[2]=/r/.test(d)?parseInt(d.replace(/^.*r(.*)$/,"$1"),10):0}}else{if(typeof win.ActiveXObject!=UNDEF){var a=null,fp6Crash=false;try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX+".7")}catch(e){try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX+".6");playerVersion=[6,0,21];a.AllowScriptAccess="always"}catch(e){if(playerVersion[0]==6){fp6Crash=true}}if(!fp6Crash){try{a=new ActiveXObject(SHOCKWAVE_FLASH_AX)}catch(e){}}}if(!fp6Crash&&a){try{d=a.GetVariable("$version");if(d){d=d.split(" ")[1].split(",");playerVersion=[parseInt(d[0],10),parseInt(d[1],10),parseInt(d[2],10)]}}catch(e){}}}}var u=nav.userAgent.toLowerCase(),p=nav.platform.toLowerCase(),webkit=/webkit/.test(u)?parseFloat(u.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,ie=false,windows=p?/win/.test(p):/win/.test(u),mac=p?/mac/.test(p):/mac/.test(u);
/*@cc_on
			ie = true;
			@if (@_win32)
				windows = true;
			@elif (@_mac)
				mac = true;
			@end
		@*/
return{w3cdom:w3cdom,pv:playerVersion,webkit:webkit,ie:ie,win:windows,mac:mac}}();var onDomLoad=function(){if(!ua.w3cdom){return}addDomLoadEvent(main);if(ua.ie&&ua.win){try{doc.write("<script id=__ie_ondomload defer=true src=//:><\/script>");script=getElementById("__ie_ondomload");if(script){addListener(script,"onreadystatechange",checkReadyState)}}catch(e){}}if(ua.webkit&&typeof doc.readyState!=UNDEF){timer=setInterval(function(){if(/loaded|complete/.test(doc.readyState)){callDomLoadFunctions()}},10)}if(typeof doc.addEventListener!=UNDEF){doc.addEventListener("DOMContentLoaded",callDomLoadFunctions,null)}addLoadEvent(callDomLoadFunctions)}();function checkReadyState(){if(script.readyState=="complete"){script.parentNode.removeChild(script);callDomLoadFunctions()}}function callDomLoadFunctions(){if(isDomLoaded){return}if(ua.ie&&ua.win){var s=createElement("span");try{var t=doc.getElementsByTagName("body")[0].appendChild(s);t.parentNode.removeChild(t)}catch(e){return}}isDomLoaded=true;if(timer){clearInterval(timer);timer=null}var dl=domLoadFnArr.length;for(var i=0;i<dl;i++){domLoadFnArr[i]()}}function addDomLoadEvent(fn){if(isDomLoaded){fn()}else{domLoadFnArr[domLoadFnArr.length]=fn}}function addLoadEvent(fn){if(typeof win.addEventListener!=UNDEF){win.addEventListener("load",fn,false)}else{if(typeof doc.addEventListener!=UNDEF){doc.addEventListener("load",fn,false)}else{if(typeof win.attachEvent!=UNDEF){addListener(win,"onload",fn)}else{if(typeof win.onload=="function"){var fnOld=win.onload;win.onload=function(){fnOld();fn()}}else{win.onload=fn}}}}}function main(){var rl=regObjArr.length;for(var i=0;i<rl;i++){var id=regObjArr[i].id;if(ua.pv[0]>0){var obj=getElementById(id);if(obj){regObjArr[i].width=obj.getAttribute("width")?obj.getAttribute("width"):"0";regObjArr[i].height=obj.getAttribute("height")?obj.getAttribute("height"):"0";if(hasPlayerVersion(regObjArr[i].swfVersion)){if(ua.webkit&&ua.webkit<312){fixParams(obj)}setVisibility(id,true)}else{if(regObjArr[i].expressInstall&&!isExpressInstallActive&&hasPlayerVersion("6.0.65")&&(ua.win||ua.mac)){showExpressInstall(regObjArr[i])}else{displayAltContent(obj)}}}}else{setVisibility(id,true)}}}function fixParams(obj){var nestedObj=obj.getElementsByTagName(OBJECT)[0];if(nestedObj){var e=createElement("embed"),a=nestedObj.attributes;if(a){var al=a.length;for(var i=0;i<al;i++){if(a[i].nodeName=="DATA"){e.setAttribute("src",a[i].nodeValue)}else{e.setAttribute(a[i].nodeName,a[i].nodeValue)}}}var c=nestedObj.childNodes;if(c){var cl=c.length;for(var j=0;j<cl;j++){if(c[j].nodeType==1&&c[j].nodeName=="PARAM"){e.setAttribute(c[j].getAttribute("name"),c[j].getAttribute("value"))}}}obj.parentNode.replaceChild(e,obj)}}function showExpressInstall(regObj){isExpressInstallActive=true;var obj=getElementById(regObj.id);if(obj){if(regObj.altContentId){var ac=getElementById(regObj.altContentId);if(ac){storedAltContent=ac;storedAltContentId=regObj.altContentId}}else{storedAltContent=abstractAltContent(obj)}if(!(/%$/.test(regObj.width))&&parseInt(regObj.width,10)<310){regObj.width="310"}if(!(/%$/.test(regObj.height))&&parseInt(regObj.height,10)<137){regObj.height="137"}doc.title=doc.title.slice(0,47)+" - Flash Player Installation";var pt=ua.ie&&ua.win?"ActiveX":"PlugIn",dt=doc.title,fv="MMredirectURL="+win.location+"&MMplayerType="+pt+"&MMdoctitle="+dt,replaceId=regObj.id;if(ua.ie&&ua.win&&obj.readyState!=4){var newObj=createElement("div");replaceId+="SWFObjectNew";newObj.setAttribute("id",replaceId);obj.parentNode.insertBefore(newObj,obj);obj.style.display="none";var fn=function(){obj.parentNode.removeChild(obj)};addListener(win,"onload",fn)}createSWF({data:regObj.expressInstall,id:EXPRESS_INSTALL_ID,width:regObj.width,height:regObj.height},{flashvars:fv},replaceId)}}function displayAltContent(obj){if(ua.ie&&ua.win&&obj.readyState!=4){var el=createElement("div");obj.parentNode.insertBefore(el,obj);el.parentNode.replaceChild(abstractAltContent(obj),el);obj.style.display="none";var fn=function(){obj.parentNode.removeChild(obj)};addListener(win,"onload",fn)}else{obj.parentNode.replaceChild(abstractAltContent(obj),obj)}}function abstractAltContent(obj){var ac=createElement("div");if(ua.win&&ua.ie){ac.innerHTML=obj.innerHTML}else{var nestedObj=obj.getElementsByTagName(OBJECT)[0];if(nestedObj){var c=nestedObj.childNodes;if(c){var cl=c.length;for(var i=0;i<cl;i++){if(!(c[i].nodeType==1&&c[i].nodeName=="PARAM")&&!(c[i].nodeType==8)){ac.appendChild(c[i].cloneNode(true))}}}}}return ac}function createSWF(attObj,parObj,id){var r,el=getElementById(id);if(el){if(typeof attObj.id==UNDEF){attObj.id=id}if(ua.ie&&ua.win){var att="";for(var i in attObj){if(attObj[i]!=Object.prototype[i]){if(i.toLowerCase()=="data"){parObj.movie=attObj[i]}else{if(i.toLowerCase()=="styleclass"){att+=' class="'+attObj[i]+'"'}else{if(i.toLowerCase()!="classid"){att+=" "+i+'="'+attObj[i]+'"'}}}}}var par="";for(var j in parObj){if(parObj[j]!=Object.prototype[j]){par+='<param name="'+j+'" value="'+parObj[j]+'" />'}}el.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+att+">"+par+"</object>";objIdArr[objIdArr.length]=attObj.id;r=getElementById(attObj.id)}else{if(ua.webkit&&ua.webkit<312){var e=createElement("embed");e.setAttribute("type",FLASH_MIME_TYPE);for(var k in attObj){if(attObj[k]!=Object.prototype[k]){if(k.toLowerCase()=="data"){e.setAttribute("src",attObj[k])}else{if(k.toLowerCase()=="styleclass"){e.setAttribute("class",attObj[k])}else{if(k.toLowerCase()!="classid"){e.setAttribute(k,attObj[k])}}}}}for(var l in parObj){if(parObj[l]!=Object.prototype[l]){if(l.toLowerCase()!="movie"){e.setAttribute(l,parObj[l])}}}el.parentNode.replaceChild(e,el);r=e}else{var o=createElement(OBJECT);o.setAttribute("type",FLASH_MIME_TYPE);for(var m in attObj){if(attObj[m]!=Object.prototype[m]){if(m.toLowerCase()=="styleclass"){o.setAttribute("class",attObj[m])}else{if(m.toLowerCase()!="classid"){o.setAttribute(m,attObj[m])}}}}for(var n in parObj){if(parObj[n]!=Object.prototype[n]&&n.toLowerCase()!="movie"){createObjParam(o,n,parObj[n])}}el.parentNode.replaceChild(o,el);r=o}}}return r}function createObjParam(el,pName,pValue){var p=createElement("param");p.setAttribute("name",pName);p.setAttribute("value",pValue);el.appendChild(p)}function removeSWF(id){var obj=getElementById(id);if(obj&&(obj.nodeName=="OBJECT"||obj.nodeName=="EMBED")){if(ua.ie&&ua.win){if(obj.readyState==4){removeObjectInIE(id)}else{win.attachEvent("onload",function(){removeObjectInIE(id)})}}else{obj.parentNode.removeChild(obj)}}}function removeObjectInIE(id){var obj=getElementById(id);if(obj){for(var i in obj){if(typeof obj[i]=="function"){obj[i]=null}}obj.parentNode.removeChild(obj)}}function getElementById(id){var el=null;try{el=doc.getElementById(id)}catch(e){}return el}function createElement(el){return doc.createElement(el)}function addListener(target,eventType,fn){target.attachEvent(eventType,fn);listenersArr[listenersArr.length]=[target,eventType,fn]}function hasPlayerVersion(rv){var pv=ua.pv,v=rv.split(".");v[0]=parseInt(v[0],10);v[1]=parseInt(v[1],10)||0;v[2]=parseInt(v[2],10)||0;return(pv[0]>v[0]||(pv[0]==v[0]&&pv[1]>v[1])||(pv[0]==v[0]&&pv[1]==v[1]&&pv[2]>=v[2]))?true:false}function createCSS(sel,decl){if(ua.ie&&ua.mac){return}var h=doc.getElementsByTagName("head")[0],s=createElement("style");s.setAttribute("type","text/css");s.setAttribute("media","screen");if(!(ua.ie&&ua.win)&&typeof doc.createTextNode!=UNDEF){s.appendChild(doc.createTextNode(sel+" {"+decl+"}"))}h.appendChild(s);if(ua.ie&&ua.win&&typeof doc.styleSheets!=UNDEF&&doc.styleSheets.length>0){var ls=doc.styleSheets[doc.styleSheets.length-1];if(typeof ls.addRule==OBJECT){ls.addRule(sel,decl)}}}function setVisibility(id,isVisible){var v=isVisible?"visible":"hidden";if(isDomLoaded&&getElementById(id)){getElementById(id).style.visibility=v}else{createCSS("#"+id,"visibility:"+v)}}function urlEncodeIfNecessary(s){var regex=/[\\\"<>\.;]/;var hasBadChars=regex.exec(s)!=null;return hasBadChars?encodeURIComponent(s):s}var cleanup=function(){if(ua.ie&&ua.win){window.attachEvent("onunload",function(){var ll=listenersArr.length;for(var i=0;i<ll;i++){listenersArr[i][0].detachEvent(listenersArr[i][1],listenersArr[i][2])}var il=objIdArr.length;for(var j=0;j<il;j++){removeSWF(objIdArr[j])}for(var k in ua){ua[k]=null}ua=null;for(var l in swfobject){swfobject[l]=null}swfobject=null})}}();return{registerObject:function(objectIdStr,swfVersionStr,xiSwfUrlStr){if(!ua.w3cdom||!objectIdStr||!swfVersionStr){return}var regObj={};regObj.id=objectIdStr;regObj.swfVersion=swfVersionStr;regObj.expressInstall=xiSwfUrlStr?xiSwfUrlStr:false;regObjArr[regObjArr.length]=regObj;setVisibility(objectIdStr,false)},getObjectById:function(objectIdStr){var r=null;if(ua.w3cdom){var o=getElementById(objectIdStr);if(o){var n=o.getElementsByTagName(OBJECT)[0];if(!n||(n&&typeof o.SetVariable!=UNDEF)){r=o}else{if(typeof n.SetVariable!=UNDEF){r=n}}}}return r},embedSWF:function(swfUrlStr,replaceElemIdStr,widthStr,heightStr,swfVersionStr,xiSwfUrlStr,flashvarsObj,parObj,attObj){if(!ua.w3cdom||!swfUrlStr||!replaceElemIdStr||!widthStr||!heightStr||!swfVersionStr){return}widthStr+="";heightStr+="";if(hasPlayerVersion(swfVersionStr)){setVisibility(replaceElemIdStr,false);var att={};if(attObj&&typeof attObj===OBJECT){for(var i in attObj){if(attObj[i]!=Object.prototype[i]){att[i]=attObj[i]}}}att.data=swfUrlStr;att.width=widthStr;att.height=heightStr;var par={};if(parObj&&typeof parObj===OBJECT){for(var j in parObj){if(parObj[j]!=Object.prototype[j]){par[j]=parObj[j]}}}if(flashvarsObj&&typeof flashvarsObj===OBJECT){for(var k in flashvarsObj){if(flashvarsObj[k]!=Object.prototype[k]){if(typeof par.flashvars!=UNDEF){par.flashvars+="&"+k+"="+flashvarsObj[k]}else{par.flashvars=k+"="+flashvarsObj[k]}}}}addDomLoadEvent(function(){createSWF(att,par,replaceElemIdStr);if(att.id==replaceElemIdStr){setVisibility(replaceElemIdStr,true)}})}else{if(xiSwfUrlStr&&!isExpressInstallActive&&hasPlayerVersion("6.0.65")&&(ua.win||ua.mac)){isExpressInstallActive=true;setVisibility(replaceElemIdStr,false);addDomLoadEvent(function(){var regObj={};regObj.id=regObj.altContentId=replaceElemIdStr;regObj.width=widthStr;regObj.height=heightStr;regObj.expressInstall=xiSwfUrlStr;showExpressInstall(regObj)})}}},getFlashPlayerVersion:function(){return{major:ua.pv[0],minor:ua.pv[1],release:ua.pv[2]}},hasFlashPlayerVersion:hasPlayerVersion,createSWF:function(attObj,parObj,replaceElemIdStr){if(ua.w3cdom){return createSWF(attObj,parObj,replaceElemIdStr)}else{return undefined}},removeSWF:function(objElemIdStr){if(ua.w3cdom){removeSWF(objElemIdStr)}},createCSS:function(sel,decl){if(ua.w3cdom){createCSS(sel,decl)}},addDomLoadEvent:addDomLoadEvent,addLoadEvent:addLoadEvent,getQueryParamValue:function(param){var q=doc.location.search||doc.location.hash;if(param==null){return urlEncodeIfNecessary(q)}if(q){var pairs=q.substring(1).split("&");for(var i=0;i<pairs.length;i++){if(pairs[i].substring(0,pairs[i].indexOf("="))==param){return urlEncodeIfNecessary(pairs[i].substring((pairs[i].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(isExpressInstallActive&&storedAltContent){var obj=getElementById(EXPRESS_INSTALL_ID);if(obj){obj.parentNode.replaceChild(storedAltContent,obj);if(storedAltContentId){setVisibility(storedAltContentId,true);if(ua.ie&&ua.win){storedAltContent.style.display="block"}}storedAltContent=null;storedAltContentId=null;isExpressInstallActive=false}}}}}();return swfobject})();S.lang={code:"en",of:"of",loading:"loading",cancel:"Cancel",next:"Next",previous:"Previous",play:"Play",pause:"Pause",close:"Close",errors:{single:'You must install the <a href="{0}">{1}</a> browser plugin to view this content.',shared:'You must install both the <a href="{0}">{1}</a> and <a href="{2}">{3}</a> browser plugins to view this content.',either:'You must install either the <a href="{0}">{1}</a> or the <a href="{2}">{3}</a> browser plugin to view this content.'}};var pre,proxyId="sb-drag-proxy",dragData,dragProxy,dragTarget;function resetDrag(){dragData={x:0,y:0,startX:null,startY:null}}function updateProxy(){var dims=S.dimensions;apply(dragProxy.style,{height:dims.innerHeight+"px",width:dims.innerWidth+"px"})}function enableDrag(){resetDrag();var style=["position:absolute","cursor:"+(S.isGecko?"-moz-grab":"move"),"background-color:"+(S.isIE?"#fff;filter:alpha(opacity=0)":"transparent")].join(";");S.appendHTML(S.skin.body,'<div id="'+proxyId+'" style="'+style+'"></div>');dragProxy=get(proxyId);updateProxy();addEvent(dragProxy,"mousedown",startDrag)}function disableDrag(){if(dragProxy){removeEvent(dragProxy,"mousedown",startDrag);remove(dragProxy);dragProxy=null}dragTarget=null}function startDrag(e){preventDefault(e);var xy=getPageXY(e);dragData.startX=xy[0];dragData.startY=xy[1];dragTarget=get(S.player.id);addEvent(document,"mousemove",positionDrag);addEvent(document,"mouseup",endDrag);if(S.isGecko){dragProxy.style.cursor="-moz-grabbing"}}function positionDrag(e){var player=S.player,dims=S.dimensions,xy=getPageXY(e);var moveX=xy[0]-dragData.startX;dragData.startX+=moveX;dragData.x=Math.max(Math.min(0,dragData.x+moveX),dims.innerWidth-player.width);var moveY=xy[1]-dragData.startY;dragData.startY+=moveY;dragData.y=Math.max(Math.min(0,dragData.y+moveY),dims.innerHeight-player.height);apply(dragTarget.style,{left:dragData.x+"px",top:dragData.y+"px"})}function endDrag(){removeEvent(document,"mousemove",positionDrag);removeEvent(document,"mouseup",endDrag);if(S.isGecko){dragProxy.style.cursor="-moz-grab"}}S.img=function(obj,id){this.obj=obj;this.id=id;this.ready=false;var self=this;pre=new Image();pre.onload=function(){self.height=obj.height?parseInt(obj.height,10):pre.height;self.width=obj.width?parseInt(obj.width,10):pre.width;self.ready=true;pre.onload=null;pre=null};pre.src=obj.content};S.img.ext=["bmp","gif","jpg","jpeg","png"];S.img.prototype={append:function(body,dims){var img=document.createElement("img");img.id=this.id;img.src=this.obj.content;img.style.position="absolute";var height,width;if(dims.oversized&&S.options.handleOversize=="resize"){height=dims.innerHeight;width=dims.innerWidth}else{height=this.height;width=this.width}img.setAttribute("height",height);img.setAttribute("width",width);body.appendChild(img)},remove:function(){var el=get(this.id);if(el){remove(el)}disableDrag();if(pre){pre.onload=null;pre=null}},onLoad:function(){var dims=S.dimensions;if(dims.oversized&&S.options.handleOversize=="drag"){enableDrag()}},onWindowResize:function(){var dims=S.dimensions;switch(S.options.handleOversize){case"resize":var el=get(this.id);el.height=dims.innerHeight;el.width=dims.innerWidth;break;case"drag":if(dragTarget){var top=parseInt(S.getStyle(dragTarget,"top")),left=parseInt(S.getStyle(dragTarget,"left"));if(top+this.height<dims.innerHeight){dragTarget.style.top=dims.innerHeight-this.height+"px"}if(left+this.width<dims.innerWidth){dragTarget.style.left=dims.innerWidth-this.width+"px"}updateProxy()}break}}};S.iframe=function(obj,id){this.obj=obj;this.id=id;var overlay=get("sb-overlay");this.height=obj.height?parseInt(obj.height,10):overlay.offsetHeight;this.width=obj.width?parseInt(obj.width,10):overlay.offsetWidth};S.iframe.prototype={append:function(body,dims){var html='<iframe id="'+this.id+'" name="'+this.id+'" height="100%" width="100%" frameborder="0" marginwidth="0" marginheight="0" style="visibility:hidden" onload="this.style.visibility=\'visible\'" scrolling="auto"';if(S.isIE){html+=' allowtransparency="true"';if(S.isIE6){html+=" src=\"javascript:false;document.write('');\""}}html+="></iframe>";body.innerHTML=html},remove:function(){var el=get(this.id);if(el){remove(el);if(S.isGecko){delete window.frames[this.id]}}},onLoad:function(){var win=S.isIE?get(this.id).contentWindow:window.frames[this.id];win.location.href=this.obj.content}};S.html=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;this.width=obj.width?parseInt(obj.width,10):500};S.html.prototype={append:function(body,dims){var div=document.createElement("div");div.id=this.id;div.className="html";div.innerHTML=this.obj.content;body.appendChild(div)},remove:function(){var el=get(this.id);if(el){remove(el)}}};S.swf=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;this.width=obj.width?parseInt(obj.width,10):300};S.swf.ext=["swf"];S.swf.prototype={append:function(body,dims){var tmp=document.createElement("div");tmp.id=this.id;body.appendChild(tmp);var height=dims.innerHeight,width=dims.innerWidth,swf=this.obj.content,version=S.options.flashVersion,express=S.path+"expressInstall.swf",flashvars=S.options.flashVars,params=S.options.flashParams;S.flash.embedSWF(swf,this.id,width,height,version,express,flashvars,params)},remove:function(){S.flash.expressInstallCallback();S.flash.removeSWF(this.id)},onWindowResize:function(){var dims=S.dimensions,el=get(this.id);el.height=dims.innerHeight;el.width=dims.innerWidth}};var jwControllerHeight=20;S.flv=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;if(S.options.showMovieControls){this.height+=jwControllerHeight}this.width=obj.width?parseInt(obj.width,10):300};S.flv.ext=["flv","m4v"];S.flv.prototype={append:function(body,dims){var tmp=document.createElement("div");tmp.id=this.id;body.appendChild(tmp);var height=dims.innerHeight,width=dims.innerWidth,swf=S.path+"player.swf",version=S.options.flashVersion,express=S.path+"expressInstall.swf",flashvars=apply({file:this.obj.content,height:height,width:width,autostart:(S.options.autoplayMovies?"true":"false"),controlbar:(S.options.showMovieControls?"bottom":"none"),backcolor:"0x000000",frontcolor:"0xCCCCCC",lightcolor:"0x557722"},S.options.flashVars),params=S.options.flashParams;S.flash.embedSWF(swf,this.id,width,height,version,express,flashvars,params)},remove:function(){S.flash.expressInstallCallback();S.flash.removeSWF(this.id)},onWindowResize:function(){var dims=S.dimensions,el=get(this.id);el.height=dims.innerHeight;el.width=dims.innerWidth}};var qtControllerHeight=16;S.qt=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;if(S.options.showMovieControls){this.height+=qtControllerHeight}this.width=obj.width?parseInt(obj.width,10):300};S.qt.ext=["dv","mov","moov","movie","mp4","avi","mpg","mpeg"];S.qt.prototype={append:function(body,dims){var opt=S.options,autoplay=String(opt.autoplayMovies),controls=String(opt.showMovieControls);var html="<object",movie={id:this.id,name:this.id,height:this.height,width:this.width,kioskmode:"true"};if(S.isIE){movie.classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B";movie.codebase="http://www.apple.com/qtactivex/qtplugin.cab#version=6,0,2,0"}else{movie.type="video/quicktime";movie.data=this.obj.content}for(var m in movie){html+=" "+m+'="'+movie[m]+'"'}html+=">";var params={src:this.obj.content,scale:"aspect",controller:controls,autoplay:autoplay};for(var p in params){html+='<param name="'+p+'" value="'+params[p]+'">'}html+="</object>";body.innerHTML=html},remove:function(){try{document[this.id].Stop()}catch(e){}var el=get(this.id);if(el){remove(el)}}};var wmpControllerHeight=(S.isIE?70:45);S.wmp=function(obj,id){this.obj=obj;this.id=id;this.height=obj.height?parseInt(obj.height,10):300;if(S.options.showMovieControls){this.height+=wmpControllerHeight}this.width=obj.width?parseInt(obj.width,10):300};S.wmp.ext=["asf","avi","mpg","mpeg","wm","wmv"];S.wmp.prototype={append:function(body,dims){var opt=S.options,autoplay=opt.autoplayMovies?1:0;var movie='<object id="'+this.id+'" name="'+this.id+'" height="'+this.height+'" width="'+this.width+'"',params={autostart:opt.autoplayMovies?1:0};if(S.isIE){movie+=' classid="clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6"';params.url=this.obj.content;params.uimode=opt.showMovieControls?"full":"none"}else{movie+=' type="video/x-ms-wmv"';movie+=' data="'+this.obj.content+'"';params.showcontrols=opt.showMovieControls?1:0}movie+=">";for(var p in params){movie+='<param name="'+p+'" value="'+params[p]+'">'}movie+="</object>";body.innerHTML=movie},remove:function(){if(S.isIE){try{window[this.id].controls.stop();window[this.id].URL="movie"+now()+".wmv";window[this.id]=function(){}}catch(e){}}var el=get(this.id);if(el){setTimeout(function(){remove(el)},10)}}};var overlayOn=false,visibilityCache=[],pngIds=["sb-nav-close","sb-nav-next","sb-nav-play","sb-nav-pause","sb-nav-previous"],container,overlay,wrapper,doWindowResize=true;function animate(el,property,to,duration,callback){var isOpacity=(property=="opacity"),anim=isOpacity?S.setOpacity:function(el,value){el.style[property]=""+value+"px"};if(duration==0||(!isOpacity&&!S.options.animate)||(isOpacity&&!S.options.animateFade)){anim(el,to);if(callback){callback()}return}var from=parseFloat(S.getStyle(el,property))||0;var delta=to-from;if(delta==0){if(callback){callback()}return}duration*=1000;var begin=now(),ease=S.ease,end=begin+duration,time;var interval=setInterval(function(){time=now();if(time>=end){clearInterval(interval);interval=null;anim(el,to);if(callback){callback()}}else{anim(el,from+ease((time-begin)/duration)*delta)}},10)}function setSize(){container.style.height=S.getWindowSize("Height")+"px";container.style.width=S.getWindowSize("Width")+"px"}function setPosition(){container.style.top=document.documentElement.scrollTop+"px";container.style.left=document.documentElement.scrollLeft+"px"}function toggleTroubleElements(on){if(on){each(visibilityCache,function(i,el){el[0].style.visibility=el[1]||""})}else{visibilityCache=[];each(S.options.troubleElements,function(i,tag){each(document.getElementsByTagName(tag),function(j,el){visibilityCache.push([el,el.style.visibility]);el.style.visibility="hidden"})})}}function toggleNav(id,on){var el=get("sb-nav-"+id);if(el){el.style.display=on?"":"none"}}function toggleLoading(on,callback){var loading=get("sb-loading"),playerName=S.getCurrent().player,anim=(playerName=="img"||playerName=="html");if(on){S.setOpacity(loading,0);loading.style.display="block";var wrapped=function(){S.clearOpacity(loading);if(callback){callback()}};if(anim){animate(loading,"opacity",1,S.options.fadeDuration,wrapped)}else{wrapped()}}else{var wrapped=function(){loading.style.display="none";S.clearOpacity(loading);if(callback){callback()}};if(anim){animate(loading,"opacity",0,S.options.fadeDuration,wrapped)}else{wrapped()}}}function buildBars(callback){var obj=S.getCurrent();get("sb-title-inner").innerHTML=obj.title||"";var close,next,play,pause,previous;if(S.options.displayNav){close=true;var len=S.gallery.length;if(len>1){if(S.options.continuous){next=previous=true}else{next=(len-1)>S.current;previous=S.current>0}}if(S.options.slideshowDelay>0&&S.hasNext()){pause=!S.isPaused();play=!pause}}else{close=next=play=pause=previous=false}toggleNav("close",close);toggleNav("next",next);toggleNav("play",play);toggleNav("pause",pause);toggleNav("previous",previous);var counter="";if(S.options.displayCounter&&S.gallery.length>1){var len=S.gallery.length;if(S.options.counterType=="skip"){var i=0,end=len,limit=parseInt(S.options.counterLimit)||0;if(limit<len&&limit>2){var h=Math.floor(limit/2);i=S.current-h;if(i<0){i+=len}end=S.current+(limit-h);if(end>len){end-=len}}while(i!=end){if(i==len){i=0}counter+='<a onclick="Shadowbox.change('+i+');"';if(i==S.current){counter+=' class="sb-counter-current"'}counter+=">"+(++i)+"</a>"}}else{counter=[S.current+1,S.lang.of,len].join(" ")}}get("sb-counter").innerHTML=counter;callback()}function showBars(callback){var titleInner=get("sb-title-inner"),infoInner=get("sb-info-inner"),duration=0.35;titleInner.style.visibility=infoInner.style.visibility="";if(titleInner.innerHTML!=""){animate(titleInner,"marginTop",0,duration)}animate(infoInner,"marginTop",0,duration,callback)}function hideBars(anim,callback){var title=get("sb-title"),info=get("sb-info"),titleHeight=title.offsetHeight,infoHeight=info.offsetHeight,titleInner=get("sb-title-inner"),infoInner=get("sb-info-inner"),duration=(anim?0.35:0);animate(titleInner,"marginTop",titleHeight,duration);animate(infoInner,"marginTop",infoHeight*-1,duration,function(){titleInner.style.visibility=infoInner.style.visibility="hidden";callback()})}function adjustHeight(height,top,anim,callback){var wrapperInner=get("sb-wrapper-inner"),duration=(anim?S.options.resizeDuration:0);animate(wrapper,"top",top,duration);animate(wrapperInner,"height",height,duration,callback)}function adjustWidth(width,left,anim,callback){var duration=(anim?S.options.resizeDuration:0);animate(wrapper,"left",left,duration);animate(wrapper,"width",width,duration,callback)}function setDimensions(height,width){var bodyInner=get("sb-body-inner"),height=parseInt(height),width=parseInt(width),topBottom=wrapper.offsetHeight-bodyInner.offsetHeight,leftRight=wrapper.offsetWidth-bodyInner.offsetWidth,maxHeight=overlay.offsetHeight,maxWidth=overlay.offsetWidth,padding=parseInt(S.options.viewportPadding)||20,preserveAspect=(S.player&&S.options.handleOversize!="drag");return S.setDimensions(height,width,maxHeight,maxWidth,topBottom,leftRight,padding,preserveAspect)}var K={};K.markup='<div id="sb-container"><div id="sb-overlay"></div><div id="sb-wrapper"><div id="sb-title"><div id="sb-title-inner"></div></div><div id="sb-wrapper-inner"><div id="sb-body"><div id="sb-body-inner"></div><div id="sb-loading"><div id="sb-loading-inner"><span>{loading}</span></div></div></div></div><div id="sb-info"><div id="sb-info-inner"><div id="sb-counter"></div><div id="sb-nav"><a id="sb-nav-close" title="{close}" onclick="Shadowbox.close()"></a><a id="sb-nav-next" title="{next}" onclick="Shadowbox.next()"></a><a id="sb-nav-play" title="{play}" onclick="Shadowbox.play()"></a><a id="sb-nav-pause" title="{pause}" onclick="Shadowbox.pause()"></a><a id="sb-nav-previous" title="{previous}" onclick="Shadowbox.previous()"></a></div></div></div></div></div>';K.options={animSequence:"sync",counterLimit:10,counterType:"default",displayCounter:true,displayNav:true,fadeDuration:0.35,initialHeight:160,initialWidth:320,modal:false,overlayColor:"#000",overlayOpacity:0.5,resizeDuration:0.35,showOverlay:true,troubleElements:["select","object","embed","canvas"]};K.init=function(){S.appendHTML(document.body,sprintf(K.markup,S.lang));K.body=get("sb-body-inner");container=get("sb-container");overlay=get("sb-overlay");wrapper=get("sb-wrapper");if(!supportsFixed){container.style.position="absolute"}if(!supportsOpacity){var el,m,re=/url\("(.*\.png)"\)/;each(pngIds,function(i,id){el=get(id);if(el){m=S.getStyle(el,"backgroundImage").match(re);if(m){el.style.backgroundImage="none";el.style.filter="progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,src="+m[1]+",sizingMethod=scale);"}}})}var timer;addEvent(window,"resize",function(){if(timer){clearTimeout(timer);timer=null}if(open){timer=setTimeout(K.onWindowResize,10)}})};K.onOpen=function(obj,callback){doWindowResize=false;container.style.display="block";setSize();var dims=setDimensions(S.options.initialHeight,S.options.initialWidth);adjustHeight(dims.innerHeight,dims.top);adjustWidth(dims.width,dims.left);if(S.options.showOverlay){overlay.style.backgroundColor=S.options.overlayColor;S.setOpacity(overlay,0);if(!S.options.modal){addEvent(overlay,"click",S.close)}overlayOn=true}if(!supportsFixed){setPosition();addEvent(window,"scroll",setPosition)}toggleTroubleElements();container.style.visibility="visible";if(overlayOn){animate(overlay,"opacity",S.options.overlayOpacity,S.options.fadeDuration,callback)}else{callback()}};K.onLoad=function(changing,callback){toggleLoading(true);while(K.body.firstChild){remove(K.body.firstChild)}hideBars(changing,function(){if(!open){return}if(!changing){wrapper.style.visibility="visible"}buildBars(callback)})};K.onReady=function(callback){if(!open){return}var player=S.player,dims=setDimensions(player.height,player.width);var wrapped=function(){showBars(callback)};switch(S.options.animSequence){case"hw":adjustHeight(dims.innerHeight,dims.top,true,function(){adjustWidth(dims.width,dims.left,true,wrapped)});break;case"wh":adjustWidth(dims.width,dims.left,true,function(){adjustHeight(dims.innerHeight,dims.top,true,wrapped)});break;default:adjustWidth(dims.width,dims.left,true);adjustHeight(dims.innerHeight,dims.top,true,wrapped)}};K.onShow=function(callback){toggleLoading(false,callback);doWindowResize=true};K.onClose=function(){if(!supportsFixed){removeEvent(window,"scroll",setPosition)}removeEvent(overlay,"click",S.close);wrapper.style.visibility="hidden";var callback=function(){container.style.visibility="hidden";container.style.display="none";toggleTroubleElements(true)};if(overlayOn){animate(overlay,"opacity",0,S.options.fadeDuration,callback)}else{callback()}};K.onPlay=function(){toggleNav("play",false);toggleNav("pause",true)};K.onPause=function(){toggleNav("pause",false);toggleNav("play",true)};K.onWindowResize=function(){if(!doWindowResize){return}setSize();var player=S.player,dims=setDimensions(player.height,player.width);adjustWidth(dims.width,dims.left);adjustHeight(dims.innerHeight,dims.top);if(player.onWindowResize){player.onWindowResize()}};S.skin=K;window.Shadowbox=S})(window);;
// $Id: shadowbox_auto.js,v 1.1.4.4.2.4 2010/01/04 10:00:33 psynaptic Exp $

Drupal.behaviors.shadowbox = function (context) {
  var settings = Drupal.settings.shadowbox;
  if (settings.auto_enable_all_images == 1) {
    $("a[href$='jpg'], a[href$='png'], a[href$='gif'], a[href$='jpeg'], a[href$='bmp'], a[href$='JPG'], a[href$='PNG'], a[href$='GIF'], a[href$='JPEG'], a[href$='BMP']").each(function() {
      if (settings.auto_gallery == 1) {
        $(this).attr('rel', 'shadowbox[gallery]');
      }
      else {
        $(this).attr('rel', 'shadowbox');
      };
    });
  };
};
;
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.88 (08-JUN-2010)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.2.6 or later
 */
(function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version:	 2.72
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;
// $Id: views_slideshow_cycle.js,v 1.1.2.10 2010/09/13 00:48:46 redndahead Exp $

/**
 *  @file
 *  A simple jQuery Cycle Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowCycle = function (context) {
  $('.views_slideshow_cycle_main:not(.viewsSlideshowCycle-processed)', context).addClass('viewsSlideshowCycle-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowCycle[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
    settings.paused = false;

    settings.opts = {
      speed:parseInt(settings.speed),
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync,
      random:settings.random,
      pagerAnchorBuilder:function(idx, slide) {
        var classes = 'pager-item pager-num-' + (idx+1);
        if (idx == 0) {
          classes += ' first';
        }
        if ($(slide).siblings().length == idx) {
          classes += ' last';
        }

        if (idx % 2) {
          classes += ' odd';
        }
        else {
          classes += ' even';
        }
        
        // Call the theme function for the pager.
        var theme = 'viewsSlideshowPager' + settings.pager_type;
        return Drupal.theme.prototype[theme] ? Drupal.theme(theme, classes, idx, slide, settings) : '';
      },
      allowPagerClickBubble:(settings.pager_hover),
      prev:(settings.controls != 0)?'#views_slideshow_cycle_prev_' + settings.vss_id:null,
      next:(settings.controls != 0)?'#views_slideshow_cycle_next_' + settings.vss_id:null,
      pager:(settings.pager != 0)?'#views_slideshow_cycle_pager_' + settings.vss_id:null,
      nowrap:settings.nowrap,
      after:function(curr, next, opts) {
        // Used for Slide Counter.
        if (settings.slide_counter) {
          $('#views_slideshow_cycle_slide_counter_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_cycle_slide_counter_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(curr, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.vss_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (!settings.fixed_height) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
      },
      cleartype:(settings.cleartype)? true : false,
      cleartypeNoBg:(settings.cleartypenobg)? true : false,
      activePagerClass:'active-slide'
    }
    
    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.vss_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.pager_hover) {
      settings.opts.pagerEvent = 'mouseover';
      settings.opts.pauseOnPagerHover = true;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause) {
      $('#views_slideshow_cycle_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (!settings.paused) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click) {
      $('#views_slideshow_cycle_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowCyclePause(settings);
      });
    }
    
    // Allow pagers to override settings.
    if (settings.pager != 0) {
      var pagerAlter = 'viewsSlideshowCyclePager' + settings.pager_type + 'SettingsAlter';
      if (typeof window[pagerAlter] == 'function') {
        settings = window[pagerAlter](settings);
      }
    }
    
    // Advanced Settings
    if (typeof(settings.advanced_fx) !== 'undefined') { settings.opts.fx = settings.advanced_fx; }
    if (typeof(settings.advanced_timeout) !== 'undefined') { settings.opts.timeout = settings.advanced_timeout; }
    if (typeof(settings.advanced_timeoutFn) !== 'undefined') { settings.opts.timeoutFn = settings.advanced_timeoutFn; } 
    if (typeof(settings.advanced_continuous) !== 'undefined') { settings.opts.continuous = settings.advanced_continuous; }     // true to start next transition immediately after current one completes 
    if (typeof(settings.advanced_speed) !== 'undefined') { settings.opts.speed = settings.advanced_speed; }  // speed of the transition (any valid fx speed value) 
    if (typeof(settings.advanced_speedIn) !== 'undefined') { settings.opts.speedIn = settings.advanced_speedIn; }  // speed of the 'in' transition 
    if (typeof(settings.advanced_speedOut) !== 'undefined') { settings.opts.speedOut = settings.advanced_speedOut; }  // speed of the 'out' transition 
    if (typeof(settings.advanced_next) !== 'undefined') { settings.opts.next = settings.advanced_next; }  // selector for element to use as click trigger for next slide 
    if (typeof(settings.advanced_prev) !== 'undefined') { settings.opts.prev = settings.advanced_prev; }  // selector for element to use as click trigger for previous slide 
    if (typeof(settings.advanced_prevNextClick) !== 'undefined') { settings.opts.prevNextEvent = settings.advanced_prevNextClick; }  // callback fn for prev/next clicks:   function(isNext, zeroBasedSlideIndex, slideElement) 
    if (typeof(settings.advanced_prevNextEvent) !== 'undefined') { settings.opts.prevNextEvent = settings.advanced_prevNextEvent; }// event which drives the manual transition to the previous or next slide 
    if (typeof(settings.advanced_pager) !== 'undefined') { settings.opts.pager = settings.advanced_pager; }  // selector for element to use as pager container 
    if (typeof(settings.advanced_pagerClick) !== 'undefined') { settings.opts.pagerClick = settings.advanced_pagerClick; }  // callback fn for pager clicks:    function(zeroBasedSlideIndex, slideElement) 
    if (typeof(settings.advanced_pagerEvent) !== 'undefined') { settings.opts.pagerEvent = settings.advanced_pagerEvent; } // name of event which drives the pager navigation 
    if (typeof(settings.advanced_allowPagerClickBubble) !== 'undefined') { settings.opts.allowPagerClickBubble = settings.advanced_allowPagerClickBubble; }  // allows or prevents click event on pager anchors from bubbling 
    if (typeof(settings.advanced_pagerAnchorBuilder) !== 'undefined') { settings.opts.pagerAnchorBuilder = settings.advanced_pagerAnchorBuilder; } // callback fn for building anchor links:  function(index, DOMelement) 
    if (typeof(settings.advanced_before) !== 'undefined') { settings.opts.before = settings.advanced_before; }  // transition callback (scope set to element to be shown):     function(currSlideElement, nextSlideElement, options, forwardFlag) 
    if (typeof(settings.advanced_after) !== 'undefined') { settings.opts.after = settings.advanced_after; }  // transition callback (scope set to element that was shown):  function(currSlideElement, nextSlideElement, options, forwardFlag) 
    if (typeof(settings.advanced_end) !== 'undefined') { settings.opts.end = settings.advanced_end; }  // callback invoked when the slideshow terminates (use with autostop or nowrap options): function(options) 
    if (typeof(settings.advanced_easing) !== 'undefined') { settings.opts.easing = settings.advanced_easing; }  // easing method for both in and out transitions 
    if (typeof(settings.advanced_easeIn) !== 'undefined') { settings.opts.easeIn = settings.advanced_easeIn; }  // easing for "in" transition 
    if (typeof(settings.advanced_easeOut) !== 'undefined') { settings.opts.easeOut = settings.advanced_easeOut; }  // easing for "out" transition 
    if (typeof(settings.advanced_shuffle) !== 'undefined') { settings.opts.shuffle = settings.advanced_shuffle; }  // coords for shuffle animation, ex: { top:15, left: 200 } 
    if (typeof(settings.advanced_animIn) !== 'undefined') { settings.opts.animIn = settings.advanced_animIn; }  // properties that define how the slide animates in 
    if (typeof(settings.advanced_animOut) !== 'undefined') { settings.opts.animOut = settings.advanced_animOut; }  // properties that define how the slide animates out 
    if (typeof(settings.advanced_cssBefore) !== 'undefined') { settings.opts.cssBefore = settings.advanced_cssBefore; }  // properties that define the initial state of the slide before transitioning in 
    if (typeof(settings.advanced_cssAfter) !== 'undefined') { settings.opts.cssAfter = settings.advanced_cssAfter; }  // properties that defined the state of the slide after transitioning out 
    if (typeof(settings.advanced_fxFn) !== 'undefined') { settings.opts.fxFn = settings.advanced_fxFn; }  // function used to control the transition: function(currSlideElement, nextSlideElement, options, afterCalback, forwardFlag) 
    if (typeof(settings.advanced_height) !== 'undefined') { settings.opts.height = settings.advanced_height; } // container height 
    if (typeof(settings.advanced_startingSlide) !== 'undefined') { settings.opts.startingSlide = settings.advanced_startingSlide; }     // zero-based index of the first slide to be displayed 
    if (typeof(settings.advanced_sync) !== 'undefined') { settings.opts.sync = settings.advanced_sync; }     // true if in/out transitions should occur simultaneously 
    if (typeof(settings.advanced_random) !== 'undefined') { settings.opts.random = settings.advanced_random; }     // true for random, false for sequence (not applicable to shuffle fx) 
    if (typeof(settings.advanced_fit) !== 'undefined') { settings.opts.fit = settings.advanced_fit; }     // force slides to fit container 
    if (typeof(settings.advanced_containerResize) !== 'undefined') { settings.opts.containerResize = settings.advanced_containerResize; }     // resize container to fit largest slide 
    if (typeof(settings.advanced_pause) !== 'undefined') { settings.opts.pause = settings.advanced_pause; }     // true to enable "pause on hover" 
    if (typeof(settings.advanced_pauseOnPagerHover) !== 'undefined') { settings.opts.pauseOnPagerHover = settings.advanced_pauseOnPagerHover; }   // true to pause when hovering over pager link 
    if (typeof(settings.advanced_autostop) !== 'undefined') { settings.opts.autostop = settings.advanced_autostop; }     // true to end slideshow after X transitions (where X == slide count) 
    if (typeof(settings.advanced_autostopCount) !== 'undefined') { settings.opts.autostopCount = settings.advanced_autostopCount; }     // number of transitions (optionally used with autostop to define X) 
    if (typeof(settings.advanced_delay) !== 'undefined') { settings.opts.delay = settings.advanced_delay; }     // additional delay (in ms) for first transition (hint: can be negative) 
    if (typeof(settings.advanced_slideExpr) !== 'undefined') { settings.opts.slideExpr = settings.advanced_slideExpr; }  // expression for selecting slides (if something other than all children is required) 
    if (typeof(settings.advanced_cleartype) !== 'undefined') { settings.opts.cleartype = settings.advanced_cleartype; }  // true if clearType corrections should be applied (for IE) 
    if (typeof(settings.advanced_cleartypeNoBg) !== 'undefined') { settings.opts.cleartypeNoBg = settings.advanced_cleartypeNoBg; } // set to true to disable extra cleartype fixing (leave false to force background color setting on slides) 
    if (typeof(settings.advanced_nowrap) !== 'undefined') { settings.opts.nowrap = settings.advanced_nowrap; }     // true to prevent slideshow from wrapping 
    if (typeof(settings.advanced_fastOnEvent) !== 'undefined') { settings.opts.fastOnEvent = settings.advanced_fastOnEvent; }     // force fast transitions when triggered manually (via pager or prev/next); value == time in ms 
    if (typeof(settings.advanced_randomizeEffects) !== 'undefined') { settings.opts.randomizeEffects = settings.advanced_randomizeEffects; }     // valid when multiple effects are used; true to make the effect sequence random 
    if (typeof(settings.advanced_rev) !== 'undefined') { settings.opts.rev = settings.advanced_rev; }     // causes animations to transition in reverse 
    if (typeof(settings.advanced_manualTrump) !== 'undefined') { settings.opts.manualTrump = settings.advanced_manualTrump; }  // causes manual transition to stop an active transition instead of being ignored 
    if (typeof(settings.advanced_requeueOnImageNotLoaded) !== 'undefined') { settings.opts.requeueOnImageLoaded = settings.advanced_requeueOnImageLoaded; } // requeue the slideshow if any image slides are not yet loaded 
    if (typeof(settings.advanced_requeueTimeout) !== 'undefined') { settings.opts.requeueTimeout = settings.advanced_requeueTimeout; }   // ms delay for requeue 
    if (typeof(settings.advanced_activePagerClass) !== 'undefined') { settings.opts.activePagerClass = settings.advanced_activePagerClass; } // class name used for the active pager link 
    if (typeof(settings.advanced_updateActivePagerLink) !== 'undefined') { settings.opts.updateActivePagerLink = settings.advanced_updateActivePagerLink; } // callback fn invoked to update the active pager link (adds/removes activePagerClass style) 
    
    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowCyclePause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowCycleIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowCycleResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowCyclePause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when the window is resized.
      $(window).resize(function() {
        checkPause(settings);
      });
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_cycle_image_count_' + settings.vss_id).show();

    if (settings.controls != 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_cycle_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_cycle_playpause_' + settings.vss_id).click(function(e) {
      	if (settings.paused) {
      	  viewsSlideshowCycleResume(settings);
      	}
      	else {
      	  viewsSlideshowCyclePause(settings);
      	}
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowCyclePause = function (settings) {
  // Make Resume translatable
  var resume = Drupal.t('Resume');
  
  $(settings.targetId).cycle('pause');
  if (settings.controls != 0) {
    $('#views_slideshow_cycle_playpause_' + settings.vss_id)
      .addClass('views_slideshow_cycle_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_cycle_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowCycleResume = function (settings) {
  // Make Pause translatable
  var pause = Drupal.t('Pause');
  
  $(settings.targetId).cycle('resume');
  if (settings.controls != 0) {
    $('#views_slideshow_cycle_playpause_' + settings.vss_id)
      .addClass('views_slideshow_cycle_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_cycle_play')
      .removeClass('views_slideshow_play')
      .text(pause);
  }
  settings.paused = false;
}

// Theme the thumbnails type pager.
Drupal.theme.prototype.viewsSlideshowPagerthumbnails = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.thumbnails_pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  var img = $(slide).find('img')
  return '<div class="' + classes + '"><a href="' + href + '"><img src="' + $(img).attr('src') + '" alt="' + $(img).attr('alt') + '" title="' + $(img).attr('title') + '"/></a></div>';
}

// Make some adjustments for thumbnails pagers.
function viewsSlideshowCyclePagerthumbnailsSettingsAlter(settings) {
  if (settings.thumbnails_pager_click_to_page) {
    settings.opts.allowPagerClickBubble = true;
    settings.opts.pagerEvent = "mouseover";
  }
  return settings;
}

// Theme the numbered type pager.
Drupal.theme.prototype.viewsSlideshowPagernumbered = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.numbered_pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '">' + (idx+1) + '</a></div>';
}

// Make some adjustments for numbered pagers.
function viewsSlideshowCyclePagernumberedSettingsAlter(settings) {
  if (settings.numbered_pager_click_to_page) {
    settings.opts.allowPagerClickBubble = true;
    settings.opts.pagerEvent = "mouseover";
  }
  return settings;
}

// Theme the fields type pager.
Drupal.theme.prototype.viewsSlideshowPagerfields = function (classes, idx, slide, settings) {
  return '#views_slideshow_cycle_div_pager_item_' + settings.vss_id + '_' + idx;
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (var i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * type = The way to calculate how much is visible.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowCycleIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}

;
// $Id: views_slideshow.js,v 1.1.2.1.2.27.2.14 2010/09/04 07:14:35 redndahead Exp $

/**
 *  @file
 *  A simple jQuery SingleFrame Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowSingleFrame = function (context) {
  $('.views_slideshow_singleframe_main:not(.viewsSlideshowSingleFrame-processed)', context).addClass('viewsSlideshowSingleFrame-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowSingleFrame[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
    settings.paused = false;

    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_hover==1 || settings.pager_click_to_page),
      prev:(settings.controls > 0)?'#views_slideshow_singleframe_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_singleframe_next_' + settings.vss_id:null,
      pager:(settings.pager > 0)?'#views_slideshow_singleframe_pager_' + settings.vss_id:null,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder: function(idx, slide) {
        var classes = 'pager-item pager-num-' + (idx+1);
        if (idx == 0) {
          classes += ' first';
        }
        if ($(slide).siblings().length == idx) {
          classes += ' last';
        }

        if (idx % 2) {
          classes += ' odd';
        }
        else {
          classes += ' even';
        }
        
        var theme = 'viewsSlideshowPager' + settings.pager_type;
        return Drupal.theme.prototype[theme] ? Drupal.theme(theme, classes, idx, slide, settings) : '';
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(curr, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.vss_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
      },
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    }
    
    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.vss_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.pager_hover == 1) {
      settings.opts.pagerEvent = 'mouseover';
      settings.opts.pauseOnPagerHover = true;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowSingleFramePause(settings);
      });
    }

    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }
    
    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowSingleFramePause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowSingleFrameIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowSingleFrameResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowSingleFramePause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when the window is resized.
      $(window).resize(function() {
        checkPause(settings);
      });
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_singleframe_image_count_' + settings.vss_id).show();

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_singleframe_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_singleframe_playpause_' + settings.vss_id).click(function(e) {
      	if (settings.paused) {
      	  viewsSlideshowSingleFrameResume(settings);
      	}
      	else {
      	  viewsSlideshowSingleFramePause(settings);
      	}
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowSingleFramePause = function (settings) {
  // Make Resume translatable
  var resume = Drupal.t('Resume');
  
  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_singleframe_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowSingleFrameResume = function (settings) {
  // Make Pause translatable
  var pause = Drupal.t('Pause');
  
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_singleframe_play')
      .removeClass('views_slideshow_play')
      .text(pause);
  }
  settings.paused = false;
}

Drupal.theme.prototype.viewsSlideshowPagerThumbnails = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  var img = $(slide).find('img');
  return '<div class="' + classes + '"><a href="' + href + '"><img src="' + $(img).attr('src') + '" alt="' + $(img).attr('alt') + '" title="' + $(img).attr('title') + '"/></a></div>';
}

Drupal.theme.prototype.viewsSlideshowPagerNumbered = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '">' + (idx+1) + '</a></div>';
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (var i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * type = The way to calculate how much is visible.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowSingleFrameIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}

;
// $Id: views_slideshow.js,v 1.1.2.2.2.26.2.9 2010/09/04 07:14:35 redndahead Exp $

/**
 * @file
 * A simple jQuery ThumbnailHover Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowThumbnailHover = function (context) {
  $('.views_slideshow_thumbnailhover_main:not(.viewsSlideshowThumbnailHover-processed)', context).addClass('viewsSlideshowThumbnailHover-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowThumbnailHover[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
		settings.paused = false;
		
    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_event=='click')? false : true,
      pager:(settings.pager_event == 'hoverIntent') ? null : '#views_slideshow_breakout_teasers_' + settings.vss_id,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder:(settings.pager_event == 'hoverIntent') ? null : function(idx, slide) { 
        return '#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + idx; 
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(current, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.view_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
        
        var currId = (currId=$(current).attr('id')).substring(currId.lastIndexOf('_')+1)
        var nextId = (nextId=$(next).attr('id')).substring(nextId.lastIndexOf('_')+1)
        $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + currId).removeClass('activeSlide');
        $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + nextId).addClass('activeSlide');
      },
      pagerEvent: (settings.pager_event == 'hoverIntent') ? null : settings.pager_event,
      prev:(settings.controls > 0)?'#views_slideshow_thumbnailhover_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_thumbnailhover_next_' + settings.vss_id:null,
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    };

    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.view_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_thumbnailhover_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_thumbnailhover_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowThumbnailHoverPause(settings);
      });
    }
    
    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }

    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowThumbnailHoverPause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowThumbnailHoverIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowThumbnailHoverResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowThumbnailHoverPause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when window is resized.
      $(window).resize(function() {
        checkPause(settings);
      });
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id).show();
    
    if (settings.pager_event == 'hoverIntent') {
      $('#views_slideshow_thumbnailhover_breakout_teasers_' + settings.vss_id + ' .views_slideshow_thumbnailhover_div_breakout_teaser').each(function(i,obj) {
        $(obj).hoverIntent(
          function() {
            $('.views_slideshow_thumbnailhover_div_breakout_teaser').removeClass('activeSlide');
            var id = $(this).attr('id');
            id = parseInt(id.substring(id.lastIndexOf('_')+1));
            $(settings.targetId).cycle(id);
            $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + id).addClass('activeSlide');
            $(settings.targetId).cycle('stop');
          },
          function() {
            var id = $(this).attr('id');
            settings.opts.startingSlide = parseInt(id.substring(id.lastIndexOf('_')+1));
            $(settings.targetId).cycle(settings.opts);
          }
        );
      });
    }

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_thumbnailhover_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id).click(function(e) {
        if (settings.paused) {
          viewsSlideshowThumbnailHoverResume(settings);
        }
        else {
          viewsSlideshowThumbnailHoverPause(settings);
        }
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowThumbnailHoverPause = function (settings) {
  // Make Resume translatable
  var resume = Drupal.t('Resume');
  
  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_thumbnailhover_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowThumbnailHoverResume = function (settings) {
  // Make Pause translatable
  var pause = Drupal.t('Pause');
  
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_thumbnailhover_play')
      .removeClass('views_slideshow_play')
      .text(pause);
  }
  settings.paused = false;
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (var i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowThumbnailHoverIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
// $Id: base.js,v 1.10.2.3 2010/03/10 20:06:03 merlinofchaos Exp $
/**
 * @file base.js
 *
 * Some basic behaviors and utility functions for Views.
 */

Drupal.Views = {};

/**
 * jQuery UI tabs, Views integration component
 */
Drupal.behaviors.viewsTabs = function (context) {
  $('#views-tabset:not(.views-processed)').addClass('views-processed').each(function() {
    new Drupal.Views.Tabs($(this), {selectedClass: 'active'});
  });

  $('a.views-remove-link')
    .addClass('views-processed')
    .click(function() {
      var id = $(this).attr('id').replace('views-remove-link-', '');
      $('#views-row-' + id).hide();
      $('#views-removed-' + id).attr('checked', true);
      return false;
    });
  /**
   * Here is to handle display deletion 
   * (checking in the hidden checkbox and hiding out the row) 
   */
  $('a.display-remove-link')
    .addClass('display-processed')
    .click(function() {
      var id = $(this).attr('id').replace('display-remove-link-', '');
      $('#display-row-' + id).hide();
      $('#display-removed-' + id).attr('checked', true);
      return false;
    });
}

/**
 * For IE, attach some javascript so that our hovers do what they're supposed
 * to do.
 */
Drupal.behaviors.viewsHoverlinks = function() {
  if ($.browser.msie) {
    // If IE, attach a hover event so we can see our admin links.
    $("div.view:not(.views-hover-processed)").addClass('views-hover-processed').hover(
      function() {
        $('div.views-hide', this).addClass("views-hide-hover"); return true;
      },
      function(){
        $('div.views-hide', this).removeClass("views-hide-hover"); return true;
      }
    );
    $("div.views-admin-links:not(.views-hover-processed)")
      .addClass('views-hover-processed')
      .hover(
        function() {
          $(this).addClass("views-admin-links-hover"); return true;
        },
        function(){
          $(this).removeClass("views-admin-links-hover"); return true;
        }
      );
  }
}

/**
 * Helper function to parse a querystring.
 */
Drupal.Views.parseQueryString = function (query) {
  var args = {};
  var pos = query.indexOf('?');
  if (pos != -1) {
    query = query.substring(pos + 1);
  }
  var pairs = query.split('&');
  for(var i in pairs) {
    var pair = pairs[i].split('=');
    // Ignore the 'q' path argument, if present.
    if (pair[0] != 'q' && pair[1]) {
      args[pair[0]] = decodeURIComponent(pair[1].replace(/\+/g, ' '));
    }
  }
  return args;
};

/**
 * Helper function to return a view's arguments based on a path.
 */
Drupal.Views.parseViewArgs = function (href, viewPath) {
  var returnObj = {};
  var path = Drupal.Views.getPath(href);
  // Ensure we have a correct path.
  if (viewPath && path.substring(0, viewPath.length + 1) == viewPath + '/') {
    var args = decodeURIComponent(path.substring(viewPath.length + 1, path.length));
    returnObj.view_args = args;
    returnObj.view_path = path;
  }
  return returnObj;
};

/**
 * Strip off the protocol plus domain from an href.
 */
Drupal.Views.pathPortion = function (href) {
  // Remove e.g. http://example.com if present.
  var protocol = window.location.protocol;
  if (href.substring(0, protocol.length) == protocol) {
    // 2 is the length of the '//' that normally follows the protocol
    href = href.substring(href.indexOf('/', protocol.length + 2));
  }
  return href;
};

/**
 * Return the Drupal path portion of an href.
 */
Drupal.Views.getPath = function (href) {
  href = Drupal.Views.pathPortion(href);
  href = href.substring(Drupal.settings.basePath.length, href.length);
  // 3 is the length of the '?q=' added to the url without clean urls.
  if (href.substring(0, 3) == '?q=') {
    href = href.substring(3, href.length);
  }
  var chars = ['#', '?', '&'];
  for (i in chars) {
    if (href.indexOf(chars[i]) > -1) {
      href = href.substr(0, href.indexOf(chars[i]));
    }
  }
  return href;
};


;
// $Id: ajax_view.js,v 1.17.2.8 2010/03/25 18:25:33 merlinofchaos Exp $

/**
 * @file ajaxView.js
 *
 * Handles AJAX fetching of views, including filter submission and response.
 */

Drupal.Views.Ajax = Drupal.Views.Ajax || {};

/**
 * An ajax responder that accepts a packet of JSON data and acts appropriately.
 *
 * The following fields control behavior.
 * - 'display': Display the associated data in the view area.
 */
Drupal.Views.Ajax.ajaxViewResponse = function(target, response) {

  if (response.debug) {
    alert(response.debug);
  }

  var $view = $(target);

  // Check the 'display' for data.
  if (response.status && response.display) {
    var $newView = $(response.display);
    $view.replaceWith($newView);
    $view = $newView;
    Drupal.attachBehaviors($view.parent());
  }

  if (response.messages) {
    // Show any messages (but first remove old ones, if there are any).
    $view.find('.views-messages').remove().end().prepend(response.messages);
  }
};

/**
 * Ajax behavior for views.
 */
Drupal.behaviors.ViewsAjaxView = function() {
  if (Drupal.settings && Drupal.settings.views && Drupal.settings.views.ajaxViews) {
    var ajax_path = Drupal.settings.views.ajax_path;
    // If there are multiple views this might've ended up showing up multiple times.
    if (ajax_path.constructor.toString().indexOf("Array") != -1) {
      ajax_path = ajax_path[0];
    }
    $.each(Drupal.settings.views.ajaxViews, function(i, settings) {
      var view = '.view-dom-id-' + settings.view_dom_id;
      if (!$(view).size()) {
        // Backward compatibility: if 'views-view.tpl.php' is old and doesn't
        // contain the 'view-dom-id-#' class, we fall back to the old way of
        // locating the view:
        view = '.view-id-' + settings.view_name + '.view-display-id-' + settings.view_display_id;
      }


      // Process exposed filter forms.
      $('form#views-exposed-form-' + settings.view_name.replace(/_/g, '-') + '-' + settings.view_display_id.replace(/_/g, '-'))
      .filter(':not(.views-processed)')
      .each(function () {
        // remove 'q' from the form; it's there for clean URLs
        // so that it submits to the right place with regular submit
        // but this method is submitting elsewhere.
        $('input[name=q]', this).remove();
        var form = this;

        $('input[type=submit], button', this).click(function () {
          $(this).after('<span class="views-throbbing">&nbsp</span>');
          // We have to actually tell it what button got clicked if we want
          // anything to be sent:
          form.clk = this;
        });
        // ajaxSubmit doesn't accept a data argument, so we have to
        // pass additional fields this way.
        $.each(settings, function(key, setting) {
          $(form).append('<input type="hidden" name="'+ key + '" value="'+ setting +'"/>');
        });
      })
      .addClass('views-processed')
      .submit(function () {
        var object = this;
        $(this).ajaxSubmit({
          url: ajax_path,
          type: 'GET',
          success: function(response) {
            // Call all callbacks.
            if (response.__callbacks) {
              $.each(response.__callbacks, function(i, callback) {
                eval(callback)(view, response);
              });
              $('.views-throbbing', object).remove();
            }
          },
          error: function(xhr) { Drupal.Views.Ajax.handleErrors(xhr, ajax_path); $('.views-throbbing', object).remove(); },
          dataType: 'json'
        });

        return false;
      });

      $(view).filter(':not(.views-processed)')
        // Don't attach to nested views. Doing so would attach multiple behaviors
        // to a given element.
        .filter(function() {
          // If there is at least one parent with a view class, this view
          // is nested (e.g., an attachment). Bail.
          return !$(this).parents('.view').size();
        })
        .each(function() {
          // Set a reference that will work in subsequent calls.
          var target = this;
          $(this)
            .addClass('views-processed')
            // Process pager, tablesort, and attachment summary links.
            .find('ul.pager > li > a, th.views-field a, .attachment .views-summary a')
            .each(function () {
              var viewData = { 'js': 1 };
              // Construct an object using the settings defaults and then overriding
              // with data specific to the link.
              $.extend(
                viewData,
                Drupal.Views.parseQueryString($(this).attr('href')),
                // Extract argument data from the URL.
                Drupal.Views.parseViewArgs($(this).attr('href'), settings.view_base_path),
                // Settings must be used last to avoid sending url aliases to the server.
                settings
              );
              $(this).click(function () {
                $.extend(viewData, Drupal.Views.parseViewArgs($(this).attr('href'), settings.view_base_path));
                $(this).addClass('views-throbbing');
                $.ajax({
                  url: ajax_path,
                  type: 'GET',
                  data: viewData,
                  success: function(response) {
                    $(this).removeClass('views-throbbing');
                    // Scroll to the top of the view. This will allow users
                    // to browse newly loaded content after e.g. clicking a pager
                    // link.
                    var offset = $(target).offset();
                    // We can't guarantee that the scrollable object should be
                    // the body, as the view could be embedded in something
                    // more complex such as a modal popup. Recurse up the DOM
                    // and scroll the first element that has a non-zero top.
                    var scrollTarget = target;
                    while ($(scrollTarget).scrollTop() == 0 && $(scrollTarget).parent()) {
                      scrollTarget = $(scrollTarget).parent()
                    }
                    // Only scroll upward
                    if (offset.top - 10 < $(scrollTarget).scrollTop()) {
                      $(scrollTarget).animate({scrollTop: (offset.top - 10)}, 500);
                    }
                    // Call all callbacks.
                    if (response.__callbacks) {
                      $.each(response.__callbacks, function(i, callback) {
                        eval(callback)(target, response);
                      });
                    }
                  },
                  error: function(xhr) { $(this).removeClass('views-throbbing'); Drupal.Views.Ajax.handleErrors(xhr, ajax_path); },
                  dataType: 'json'
                });

                return false;
              });
            }); // .each function () {
      }); // $view.filter().each
    }); // .each Drupal.settings.views.ajaxViews
  } // if
};
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2000, 2001 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * Adobe Caslon is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Designer:
 * Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Adobe Caslon Pro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 5 5 2 5 5 10 2 4 3","ascent":"265","descent":"-95","x-height":"4","bbox":"-28.0475 -275 409 99.9395","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+00A9"},"glyphs":{" ":{"w":91,"k":{"T":16,"V":5,"W":5,"Y":5}},"!":{"d":"67,-15v0,11,-9,20,-20,19v-11,0,-24,-8,-23,-21v1,-9,10,-20,23,-20v11,0,21,10,20,22xm29,-225v0,-11,6,-21,17,-21v13,0,19,7,18,21r-15,151v-4,0,-10,1,-9,-4","w":91},"\"":{"d":"55,-246r-11,80r-12,0r-11,-79v0,-10,6,-15,17,-15v11,0,18,4,17,14xm112,-246r-10,80r-12,0r-11,-79v0,-10,5,-15,16,-15v11,0,18,4,17,14","w":133},"#":{"d":"104,-95r12,-55r-39,0r-12,55r39,0xm85,5v-1,-24,12,-55,15,-81r-39,0v-7,26,-8,59,-20,81v-7,-1,-20,4,-18,-5r17,-76r-41,0v-10,-24,24,-18,45,-19r11,-55v-13,-2,-34,4,-42,-3v3,-6,-1,-17,8,-17r38,0v7,-25,10,-53,19,-76v6,1,20,-3,18,4r-15,72r39,0v7,-25,8,-55,18,-76v6,2,20,-4,18,4r-15,72v18,2,52,-8,39,17v-8,7,-30,1,-43,3r-12,55v14,2,35,-4,44,3v-3,5,0,16,-8,16r-40,0v-7,26,-9,58,-19,81r-17,0"},"$":{"d":"111,-132v66,12,55,117,-4,125v1,10,1,31,-12,19r0,-18v-7,1,-13,1,-19,-1v0,9,0,31,-13,19r1,-22v-6,-1,-18,-13,-26,-14v-3,1,-12,15,-15,3r6,-55v0,-4,5,-1,8,-2v5,19,10,46,27,53r3,-92v-41,-10,-57,-72,-19,-101v7,-5,13,-10,21,-12v2,-9,-5,-27,11,-24v5,3,1,15,2,22v6,-1,13,0,19,1v2,-9,-5,-26,10,-23v7,3,1,18,2,25v10,4,20,5,28,-2v6,12,4,46,2,57v-2,1,-6,4,-7,0v-4,-20,-11,-30,-23,-39xm99,-135r2,-83v-6,-3,-12,-3,-19,-2r-2,80v3,1,9,3,19,5xm69,-217v-25,10,-26,65,-1,73xm79,-113r-3,92v2,2,9,3,20,3r2,-90v-7,-2,-7,-2,-19,-5xm108,-21v32,-8,34,-72,2,-83"},"%":{"d":"32,-167v0,31,4,56,29,61v28,-3,26,-29,26,-63v0,-44,-10,-66,-29,-66v-25,5,-26,31,-26,68xm7,-167v0,-39,16,-79,52,-79v40,0,53,36,54,75v1,42,-15,76,-52,76v-40,0,-54,-34,-54,-72xm69,1v-2,10,-14,-1,-15,-3r151,-244v4,1,17,5,10,11xm182,-69v0,31,3,58,29,61v28,-2,26,-30,26,-63v0,-44,-10,-66,-29,-66v-27,0,-26,30,-26,68xm157,-69v-1,-40,15,-79,52,-79v73,0,71,151,2,151v-40,-1,-53,-34,-54,-72","w":270},"&":{"d":"199,-75v30,34,42,51,76,57v23,4,32,-35,48,-25v-8,42,-83,67,-115,27v-13,-14,-18,-19,-30,-36v-26,33,-46,56,-89,57v-36,1,-78,-24,-76,-63v2,-42,35,-72,71,-90v-18,-11,-35,-25,-38,-45v-3,-24,38,-62,59,-62v25,0,51,27,50,50v0,20,-25,43,-39,50v25,13,59,46,76,70v9,-12,32,-45,35,-59v4,-16,-30,-5,-17,-23v24,2,54,-3,74,2v0,6,2,13,-8,11v-40,0,-27,16,-52,45v-15,17,-21,30,-25,34xm42,-70v-1,49,79,73,109,31v5,-7,16,-14,19,-21v-28,-40,-55,-67,-79,-81v-24,13,-48,39,-49,71xm134,-206v0,-13,-14,-36,-29,-36v-18,0,-34,23,-34,42v0,11,13,24,37,39v17,-13,25,-22,26,-45","w":297},"'":{"d":"54,-246r-10,80r-13,0r-10,-79v0,-10,5,-15,16,-15v11,0,18,4,17,14","w":74},"(":{"d":"100,62v-107,-60,-98,-267,0,-331v5,0,10,7,4,12v-77,74,-78,234,0,307v6,5,2,12,-4,12","w":118,"k":{"T":-6,"V":-19,"W":-19,"Y":-22,"J":-48}},")":{"d":"14,-257v-8,-8,5,-16,12,-9v46,44,71,85,71,163v0,63,-30,135,-78,165v-1,0,-8,-3,-7,-5v76,-76,83,-235,2,-314","w":118},"*":{"d":"61,-200r10,44v0,8,-4,12,-12,12v-8,0,-11,-4,-11,-12r9,-43v-14,8,-29,42,-48,27v-5,-16,6,-18,27,-24v27,-8,27,-4,-1,-12v-21,-6,-30,-2,-27,-22v14,-25,41,26,50,25r-10,-43v0,-8,3,-12,11,-12v27,0,-2,40,2,56v7,-4,35,-49,48,-27v5,17,-6,17,-27,23v-13,4,-20,3,-20,6v35,12,52,5,48,30v-15,20,-41,-22,-49,-28","w":118},"+":{"d":"101,-14r-21,0r0,-62r-60,0r0,-20r60,0r0,-62r21,0r0,62r59,0r0,20r-59,0r0,62"},",":{"d":"37,-3v-20,-3,-22,-43,4,-38v61,12,19,94,-18,105v-3,0,-4,-1,-4,-3v14,-22,46,-47,18,-64","w":91,"k":{" ":25}},"-":{"d":"22,-86v-6,0,-5,-18,0,-20r101,0v7,0,3,12,4,18v-29,6,-72,0,-105,2","w":145,"k":{"T":34,"V":22,"W":22,"Y":27}},".":{"d":"67,-15v0,11,-9,20,-20,19v-11,0,-24,-8,-23,-21v1,-11,9,-20,23,-20v12,0,20,10,20,22","w":91,"k":{" ":25}},"\/":{"d":"1,-1v30,-88,73,-171,107,-258v4,-5,18,1,18,8r-108,253v-4,8,-11,-2,-17,-3","w":126},"0":{"d":"91,-246v106,7,106,248,1,251v-116,-5,-101,-245,-1,-251xm89,-233v-62,0,-54,146,-34,195v8,21,22,30,37,30v47,0,44,-50,46,-122v1,-45,-13,-103,-49,-103"},"1":{"d":"35,-11v21,-8,46,9,46,-22r0,-147v1,-41,-33,-6,-51,-10v-1,-4,-6,-9,-1,-11r79,-45v8,51,-1,143,2,212v-6,31,22,14,42,24v5,17,-17,11,-31,11r-84,0v-4,-1,-1,-8,-2,-12"},"2":{"d":"143,5v-9,11,-10,-10,-30,-5v-36,-1,-79,4,-111,-1v37,-47,123,-103,123,-170v0,-51,-68,-68,-88,-26v-2,3,-8,18,-16,10v13,-81,138,-75,135,7v-2,76,-70,116,-114,156v46,-2,103,12,115,-31v1,-3,4,-3,7,-2v3,2,4,4,3,6"},"3":{"d":"157,-74v0,46,-43,79,-90,79v-29,0,-52,-8,-54,-28v-2,-19,21,-19,25,-5v15,41,88,13,88,-29v0,-38,-27,-60,-58,-67v-2,-2,-1,-8,4,-8v46,-1,67,-87,10,-92v-25,-2,-38,24,-52,43v-5,-1,-9,0,-7,-7v6,-28,33,-59,68,-58v67,0,68,84,13,109v24,5,53,33,53,63"},"4":{"d":"140,-5v0,9,-15,3,-23,5v-3,0,-4,-1,-4,-4r0,-63r-101,0v-8,-1,-5,-7,-2,-12r117,-161v6,-9,13,-9,13,5r0,144v11,1,28,-3,34,3v-1,8,4,21,-6,21r-28,0r0,62xm113,-89v-1,-34,3,-74,-2,-104v-28,27,-46,64,-71,94v-5,6,-4,10,2,10r71,0"},"5":{"d":"129,-240v17,3,20,-28,32,-16v-10,15,-4,44,-29,43r-75,0r-6,58v54,-1,95,21,96,71v1,49,-41,89,-90,89v-20,0,-45,-6,-47,-20v8,-24,33,11,54,5v28,1,56,-27,56,-56v0,-49,-39,-66,-85,-63v-4,-32,9,-72,11,-106v0,-3,2,-5,6,-5r77,0"},"6":{"d":"164,-78v0,51,-27,82,-73,83v-54,2,-74,-37,-75,-86v-1,-74,53,-147,121,-165v6,0,5,8,1,9v-37,17,-79,62,-85,112v39,-35,111,-9,111,47xm46,-69v0,35,15,68,54,62v49,-9,45,-119,-10,-119v-34,0,-43,23,-44,57"},"7":{"d":"50,-247v1,8,8,7,20,7r101,0v6,1,4,4,1,9v-31,58,-80,168,-94,218v-4,12,-10,18,-18,18v-24,-6,-14,-21,-1,-46r89,-173v-34,2,-76,-3,-105,4v-10,5,-14,29,-27,20r23,-61v2,-4,13,-5,11,4"},"8":{"d":"161,-58v0,32,-34,63,-71,63v-39,0,-66,-18,-66,-51v0,-39,20,-50,47,-69v-33,-18,-50,-39,-50,-62v1,-38,35,-69,77,-69v29,0,61,20,61,47v-2,45,-18,52,-49,76v27,15,51,29,51,65xm82,-108v-45,15,-50,101,10,101v42,0,57,-54,27,-78v-14,-11,-20,-14,-37,-23xm136,-187v1,-25,-17,-44,-43,-44v-43,0,-59,63,-23,83v6,4,15,11,28,18v18,-11,37,-32,38,-57"},"9":{"d":"16,-172v4,-36,35,-74,73,-74v50,0,73,37,75,83v3,80,-49,153,-122,168v-7,1,-6,-8,-2,-10v39,-16,82,-61,87,-112v-43,40,-118,6,-111,-55xm90,-115v31,0,41,-19,41,-56v0,-42,-13,-63,-41,-63v-27,0,-45,27,-45,60v0,31,19,59,45,59"},":":{"d":"67,-15v0,11,-9,20,-20,19v-11,0,-24,-8,-23,-21v1,-11,9,-20,23,-20v12,0,20,10,20,22xm67,-133v0,11,-9,20,-20,20v-11,0,-24,-8,-23,-21v1,-11,8,-21,23,-20v11,0,20,10,20,21","w":91,"k":{" ":11}},";":{"d":"37,-3v-20,-3,-22,-43,4,-38v61,12,19,94,-18,105v-3,0,-4,-1,-4,-3v14,-22,46,-47,18,-64xm62,-133v0,11,-10,20,-21,20v-11,0,-22,-7,-22,-21v0,-10,8,-22,22,-20v12,0,21,9,21,21","w":91,"k":{" ":11}},"<":{"d":"142,-14r-112,-67r0,-12r112,-65r0,23v-25,17,-56,28,-79,48r79,48r0,25"},"=":{"d":"20,-125r140,0r0,20r-140,0r0,-20xm20,-71r140,0r0,21r-140,0r0,-21"},">":{"d":"38,-158r112,66r0,12r-112,66r0,-24v25,-17,56,-28,79,-48r-79,-48r0,-24"},"?":{"d":"121,-152v-3,36,-29,45,-66,45v-12,7,11,45,-13,44v-6,-18,0,-49,-2,-71v12,-7,69,5,65,-31v-3,-25,-30,-52,-61,-49v-25,2,-36,-31,-8,-32v32,-2,88,58,85,94xm69,-15v0,11,-8,20,-20,19v-10,1,-20,-8,-19,-18v-1,-12,8,-20,20,-20v9,0,19,10,19,19","w":133},"@":{"d":"168,-192v-35,7,-69,61,-72,101v0,8,2,11,8,11v30,-6,78,-59,79,-92v0,-9,-6,-22,-15,-20xm38,-100v-6,84,96,111,159,77r5,9v-14,11,-52,19,-79,19v-66,0,-114,-38,-112,-100v3,-90,73,-162,162,-165v61,-2,97,36,96,96v0,51,-47,104,-103,101v-24,-8,-10,-25,0,-55r-2,-1v-14,20,-45,55,-75,56v-10,0,-19,-9,-18,-21v4,-53,50,-118,102,-118v11,0,18,5,22,13v2,-9,10,-12,22,-10v7,9,-7,19,-25,65v-9,23,-15,38,-15,49v0,5,4,8,11,8v30,-4,59,-47,59,-91v0,-51,-28,-79,-78,-79v-77,0,-125,70,-131,147","w":282},"A":{"d":"108,-243v11,-6,30,-16,38,-24v26,61,55,177,82,238v7,15,18,17,37,16v3,0,4,14,-1,14r-94,0v-5,0,-2,-7,-3,-11v3,-9,30,5,23,-17v-4,-16,-11,-40,-23,-73r-88,0v-3,11,-27,65,-26,79v-4,16,44,-3,29,22r-80,0v-3,-1,-4,-13,1,-14v43,-2,31,-19,51,-61v12,-24,16,-44,21,-57v-1,-12,49,-99,33,-112xm163,-113v-8,-23,-19,-68,-37,-111v-11,16,-4,7,-24,59v-12,30,-17,48,-18,52r79,0","w":267,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"y":13,"h":2,"m":2,"n":2,"p":2,"C":15,"G":15,"O":15,"Q":15,"t":2,"T":31,"u":5,"U":7,"V":34,"W":34,"v":9,"w":11,"X":11,"Y":34}},"B":{"d":"215,-66v0,85,-117,68,-202,65v-8,-25,35,3,35,-28v0,-23,1,-155,1,-191v0,-27,-19,-18,-38,-24v1,-13,-3,-11,19,-11v73,2,172,-15,169,58v-1,40,-15,41,-44,59v37,14,60,36,60,72xm177,-68v-3,-51,-37,-65,-96,-62v4,49,-18,123,38,120v35,-2,59,-19,58,-58xm166,-194v-1,-40,-35,-52,-79,-50v-13,9,-2,60,-6,101v48,6,86,-7,85,-51","w":237,"k":{"T":5,"V":4,"W":4,",":11,".":11,"A":14}},"C":{"d":"53,-138v0,64,34,123,104,123v39,1,73,-22,89,-46v3,-4,5,2,7,3v1,1,2,2,1,3v-63,107,-237,61,-237,-74v0,-101,110,-166,200,-111v14,8,2,-17,18,-12v2,26,9,53,8,78v-3,1,-7,4,-9,-1v-15,-40,-46,-73,-91,-73v-62,0,-90,48,-90,110","w":268,"k":{"C":7,"G":7,"O":7,"Q":7,"A":11}},"D":{"d":"278,-132v4,135,-133,144,-268,131v-8,-24,36,-1,39,-21v3,-12,1,-174,1,-210v0,-17,-27,-5,-38,-12v-4,-16,11,-11,28,-11r81,-1v94,-4,155,41,157,124xm121,-244v-62,0,-27,58,-36,114v5,52,-22,125,45,120v69,-5,111,-51,110,-120v-1,-70,-46,-114,-119,-114","w":292,"k":{"y":-11,"h":3,"C":-4,"G":-4,"O":-4,"Q":-4,"t":-4,"T":2,"u":-13,"U":-4,"V":9,"W":9,"v":-13,"w":-13,"X":14,"Y":2,",":7,".":7,"A":14,"k":-4,"l":-6,"z":-5,"r":-4,"j":-4,"b":-9,"x":-11}},"E":{"d":"201,-256v10,16,17,43,20,63v-12,7,-8,-3,-24,-18v-21,-38,-59,-30,-111,-32r0,105v48,3,61,-3,67,-38v22,-2,7,11,10,44v-3,9,13,46,-9,41v-4,-14,-5,-33,-21,-34v-11,-1,-27,-1,-47,-1r0,84v3,51,113,36,125,-1v12,-12,13,-28,25,-19v1,19,-13,39,-18,58v-41,14,-134,-2,-198,5v-6,1,-2,-8,-3,-12v9,-7,41,7,36,-18r-2,-199v2,-20,-21,-10,-34,-16v0,-13,-1,-11,19,-11","w":248,"k":{"T":2,"V":9,"W":9,"X":5,"Y":4,"J":5,"M":9,"B":9,"D":9,"E":9,"F":9,"H":9,"I":9,"K":9,"L":9,"N":9,"P":9,"R":9,"S":5,"Z":5}},"F":{"d":"20,1v-13,-25,32,-5,29,-22r1,-210v2,-16,-27,-7,-38,-13v-2,-11,2,-12,17,-12r176,0r14,66v-20,9,-27,-47,-58,-50v-9,-1,-35,-3,-77,-3r0,117v48,-1,63,4,66,-35v1,-5,10,-3,12,0v-3,10,2,67,-1,81v-18,10,-7,-32,-29,-32v-11,0,-27,-2,-48,-2r0,90v-4,19,23,6,35,13v3,16,-10,12,-27,11","w":215,"k":{"c":14,"d":14,"e":14,"o":14,"q":14,"T":-25,"u":12,"U":-25,",":36,".":36,"A":24,"a":11,"l":-13,"i":14,"r":13}},"G":{"d":"152,-9v39,0,69,0,69,-44v0,-25,6,-50,-30,-43v-5,0,-4,-12,-1,-14v30,2,66,-3,92,2v7,22,-28,1,-28,26r1,59v-26,20,-68,28,-104,28v-83,0,-134,-55,-134,-140v0,-104,125,-157,213,-104v9,9,15,-19,22,-6v-1,23,4,52,-1,72v-4,0,-8,3,-9,-2v-12,-39,-36,-71,-87,-72v-60,-1,-101,53,-101,112v0,73,35,126,98,126","w":294,"k":{"y":-4,"T":9,"u":-4}},"H":{"d":"190,-10v12,-9,38,6,35,-20v-4,-31,4,-68,-1,-96v-43,-3,-93,0,-138,-1v-6,0,-5,5,-5,11v0,27,1,57,1,91v0,23,34,-2,32,24v-23,3,-73,3,-101,0v-8,-25,34,4,34,-29r1,-189v2,-23,-11,-24,-33,-23v-5,-10,-3,-16,17,-13v27,3,61,-4,85,1v6,25,-44,-1,-35,33r-1,78v38,9,94,0,138,3v7,1,7,-3,7,-9r-1,-75v5,-24,-19,-15,-33,-20v-1,-14,0,-11,20,-11r76,-1v5,0,2,8,3,12v-11,6,-37,-5,-31,21r0,192v-3,22,21,15,34,21v-5,25,-64,4,-102,11v-4,0,-1,-8,-2,-11","w":307,"k":{"h":-4,"T":-4,"U":-4,"w":-5,"k":-5,"l":-5,"B":-4,"D":-4,"E":-4,"F":-4,"H":-4,"I":-4,"K":-4,"L":-4,"N":-4,"P":-4,"R":-4,"r":4,"b":-11,"x":-5}},"I":{"d":"84,-71v3,54,-12,57,32,58v5,0,2,8,3,12v-23,3,-82,2,-110,0v-9,-24,40,-2,40,-22r0,-207v1,-20,-29,-7,-42,-14v0,-26,70,-3,107,-12v5,0,2,8,3,12v-6,7,-32,-5,-32,12","w":133,"k":{"h":-4,"T":-4,"U":-4,"w":-5,"k":-5,"l":-5,"B":-4,"D":-4,"E":-4,"F":-4,"H":-4,"I":-4,"K":-4,"L":-4,"N":-4,"P":-4,"R":-4,"r":4,"b":-11,"x":-5}},"J":{"d":"21,60v43,-27,24,-133,24,-205v0,-46,-1,-75,-1,-85v0,-17,-24,-8,-36,-14v-2,-16,8,-12,27,-11v26,1,57,-4,79,1v8,24,-37,0,-34,23v-3,30,-3,152,-3,201v0,61,-30,101,-80,109v-11,0,-26,-8,-25,-21v2,-27,45,-18,49,2","w":119,"k":{"y":-4,"T":-9,",":5,".":5,"A":14,"i":-5}},"K":{"d":"107,-256v12,26,-33,4,-25,25r-1,97v36,-3,25,-11,60,-51v28,-32,38,-40,40,-55v-3,-4,-17,-3,-9,-16v21,2,48,-3,65,2v5,19,-20,7,-30,19v-14,10,-73,78,-84,94r97,119v5,11,29,6,40,12v4,15,-10,11,-25,10v-23,-1,-53,4,-73,-1v-6,-15,15,-7,13,-21v-2,-4,-11,-21,-35,-49v-35,-41,-21,-48,-59,-52r1,102v-3,17,37,-3,25,22v-28,-2,-63,3,-87,-2v-8,-19,23,-6,27,-18r0,-214v4,-16,-38,0,-23,-23r83,0","w":256,"k":{"y":4,"C":18,"G":18,"O":18,"Q":18,"T":4,"u":4,"U":4,"V":4,"W":4,"v":7,"w":13,"Y":4,"A":4,"a":-4,"l":-4,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"S":4}},"L":{"d":"119,-256v13,30,-45,0,-34,28r0,214v27,-3,103,13,111,-14v12,-15,21,-30,27,-47v3,-2,9,-1,9,4v-2,6,-8,30,-17,72r-201,-2v-9,-23,35,-3,35,-22r0,-206v2,-16,-16,-13,-30,-13v-7,-15,4,-13,23,-13","w":238,"k":{"c":-9,"d":-9,"e":-9,"o":-9,"q":-9,"y":7,"C":4,"G":4,"O":4,"Q":4,"T":45,"u":-4,"U":6,"V":32,"W":32,"v":7,"w":9,"Y":25,"A":4,"a":-4,"l":-4,"B":11,"D":11,"E":11,"F":11,"H":11,"I":11,"K":11,"L":11,"N":11,"P":11,"R":11,"j":-4}},"M":{"d":"48,-229v3,-21,-26,-8,-39,-15v-2,-14,5,-13,23,-11v20,2,52,-8,63,5r80,192r87,-193v13,-10,50,-1,72,-5v4,0,3,7,3,11v-6,9,-31,-6,-31,18r0,195v-5,26,22,15,36,22v3,15,-9,11,-25,10r-80,1v-5,0,-2,-7,-3,-11v7,-10,37,8,37,-16r-1,-208r-100,221v-5,10,-9,13,-13,3r-93,-223v-2,12,-2,151,-2,194v0,24,10,28,35,26v7,14,-3,13,-21,13r-73,1v1,-5,-2,-13,2,-14v21,1,37,0,38,-22v7,-16,7,-161,5,-194","w":353,"k":{"j":-4}},"N":{"d":"271,-244v-13,5,-28,1,-25,22v-5,54,2,165,-4,226v-63,-64,-118,-150,-180,-217v3,64,-3,137,7,195v2,9,34,-2,20,19v-23,-2,-53,4,-72,-2v-6,-24,33,1,30,-34v2,-6,2,-129,2,-173v0,-27,-18,-35,-41,-36v-4,-25,37,-5,62,-12v57,49,106,141,161,194r-1,-110v-3,-56,4,-66,-38,-72v1,-11,-4,-11,15,-11r62,-1v4,1,1,8,2,12","w":286,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"y":4,"u":4,"A":4,"a":4,"i":4}},"O":{"d":"278,-124v-2,70,-59,131,-130,129v-72,-2,-132,-51,-131,-130v0,-69,59,-135,131,-135v76,0,132,66,130,136xm54,-136v0,71,33,128,96,128v65,0,93,-50,93,-113v0,-72,-39,-132,-112,-125v-51,5,-77,55,-77,110","w":295,"k":{"y":-11,"h":3,"C":-4,"G":-4,"O":-4,"Q":-4,"t":-4,"T":2,"u":-13,"U":-4,"V":9,"W":9,"v":-13,"w":-13,"X":14,"Y":2,",":7,".":7,"A":14,"k":-4,"l":-6,"z":-5,"r":-4,"j":-4,"b":-9,"x":-11}},"P":{"d":"212,-186v2,62,-65,82,-131,72r1,90v0,19,27,5,38,14v-1,26,-65,2,-103,11v-5,1,-2,-7,-3,-11v4,-10,36,6,33,-14v2,-15,1,-181,1,-210v0,-19,-46,6,-35,-22v90,1,196,-14,199,70xm174,-185v0,-48,-46,-66,-93,-57r0,115v45,10,93,-5,93,-58","w":218,"k":{"c":17,"d":17,"e":17,"o":17,"q":17,"y":-5,"h":-5,"n":7,"T":-14,"u":-4,"Y":-7,",":47,".":47,"A":29,"a":12,"l":-9,"B":-4,"D":-4,"E":-4,"F":-4,"H":-4,"I":-4,"K":-4,"L":-4,"N":-4,"P":-4,"R":-4,"i":-4,"r":7,"s":11}},"Q":{"d":"17,-132v3,-75,55,-124,128,-128v73,-4,133,56,131,129v-2,73,-48,114,-100,135v59,19,128,41,205,43v10,3,21,-13,28,-5v-11,20,-39,33,-50,33v-89,-5,-195,-45,-275,-85v-39,-20,-69,-64,-67,-122xm54,-135v0,67,44,129,94,129v63,0,92,-53,92,-114v0,-72,-31,-127,-97,-127v-58,0,-89,50,-89,112","w":293,"k":{",":7,"y":-11,"h":3,"C":-4,"G":-4,"O":-4,"Q":-4,"t":-4,"T":2,"u":-13,"U":-4,"V":9,"W":9,"v":-13,"w":-13,"X":14,"Y":2,".":7,"A":14,"k":-4,"l":-6,"z":-5,"r":-4,"j":-4,"b":-9,"x":-11}},"R":{"d":"212,-193v1,51,-25,59,-66,73v32,19,51,75,81,101v5,7,39,0,26,20v-20,-1,-37,-2,-58,0v-35,-31,-43,-122,-113,-115r1,87v-1,23,23,8,35,17v-1,23,-62,4,-96,11v-5,0,-2,-7,-3,-11v4,-8,30,4,30,-15r1,-199v2,-22,-17,-16,-31,-20v-5,-22,27,-9,47,-11v70,-7,145,-1,146,62xm99,-244v-11,-1,-17,3,-17,14r0,102v51,6,95,-14,95,-59v0,-42,-33,-57,-78,-57","w":250,"k":{"C":5,"G":5,"O":5,"Q":5,"t":-4,"T":5,"u":-4,"U":2,"V":14,"W":14,"Y":9,",":-7,".":-7,"A":4,"a":-4,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"S":4}},"S":{"d":"129,-144v75,18,61,149,-24,149v-26,0,-48,-11,-65,-23v-3,-1,-8,12,-13,11v-9,-1,6,-63,3,-71v1,-3,10,-4,10,1v1,37,25,68,64,68v26,1,51,-17,49,-45v-3,-84,-126,-48,-126,-143v0,-49,65,-80,115,-54v8,5,16,-17,19,-1v-5,8,15,63,-1,61v-13,-25,-25,-56,-64,-56v-41,0,-54,47,-32,73v10,12,46,25,65,30","w":197,"k":{"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"y":-5,"h":-5,"m":-5,"n":-5,"p":-5,"t":-5,"u":-5,"v":-5,"w":-5,",":11,".":11,"a":-5,"k":-5,"l":-5,"i":-5,"r":-5,"j":-5}},"T":{"d":"69,-13v15,-1,36,4,37,-9v2,-8,1,-171,1,-220v-67,1,-77,-4,-98,46v-3,4,-11,1,-12,-3v13,-44,12,-57,21,-69v61,23,107,10,187,11v13,0,21,-7,30,-11v7,20,14,53,12,74r-6,1v-25,-47,-26,-51,-101,-49r0,215v-3,28,37,-1,39,25v-20,7,-75,-1,-109,3v-4,0,-4,-12,-1,-14","w":252,"k":{"n":14,"j":4,"c":34,"d":34,"e":34,"o":34,"q":34,"y":27,"m":32,"C":4,"G":4,"O":4,"Q":4,"T":-11,"u":34,"U":-4,"V":-3,"W":-3,"v":31,"w":34,"X":-4,"Y":-7,",":45,".":45,"A":40,"a":31,"z":31,"J":-4,"M":-5,"B":-4,"D":-4,"E":-4,"F":-4,"H":-4,"I":-4,"K":-4,"L":-4,"N":-4,"P":-4,"R":-4,"Z":9,"i":-7,")":-10,"]":-10,"}":-10,"r":32,"s":32,":":31,";":31,"-":9}},"U":{"d":"212,-169v-2,-48,14,-75,-33,-73v-5,0,-2,-7,-3,-11v14,-8,59,2,86,-3v5,0,4,5,4,10v-3,11,-31,-5,-32,18v0,2,-1,23,-1,60v0,109,-5,173,-100,173v-89,0,-99,-40,-97,-143r0,-86v2,-20,-13,-18,-31,-18v-8,-17,7,-14,27,-13v25,1,55,-4,76,1v-1,4,3,13,-3,12v-50,-9,-33,35,-36,85v0,12,2,39,2,77v0,48,25,69,69,71v80,4,75,-81,72,-160","w":268,"k":{"y":4,"h":-5,"t":2,"T":-14,",":22,".":22,"A":19,"k":-5,"l":-5,"i":-5,"r":4,"s":4,"b":-13}},"V":{"d":"74,-233v5,45,39,141,58,186r61,-166v7,-21,9,-30,-16,-29v-9,-17,7,-14,23,-13v20,2,47,-5,61,2v1,8,0,13,-12,11v-46,15,-36,31,-70,115r-53,130v-5,7,-8,5,-11,-4r-79,-229v-4,-14,-16,-10,-26,-14v-2,-15,7,-12,24,-11v24,2,56,-5,75,2v9,21,-37,2,-35,20","w":254,"k":{"c":29,"d":29,"e":29,"o":29,"q":29,"y":14,"h":-13,"m":20,"C":11,"G":11,"O":11,"Q":11,"t":13,"T":-10,"u":20,",":32,".":32,"A":43,"a":31,"S":4,"i":-11,")":-33,"]":-33,"}":-33,"r":17,":":6,";":6,"-":22}},"W":{"d":"178,-222v0,-12,-12,-23,-29,-20v-7,-14,3,-15,22,-13v23,2,55,-5,73,2v8,21,-35,0,-27,25r57,181v37,-109,56,-170,56,-184v0,-11,-11,-12,-23,-11v-8,-13,4,-13,21,-13r52,-1v6,4,2,19,-9,14v-25,11,-16,15,-35,66r-65,174v-5,12,-11,12,-15,1r-67,-197r-71,198v-3,9,-11,9,-14,1r-80,-230v0,-21,-39,-3,-27,-27v27,2,62,-4,85,2v8,19,-25,5,-19,25r59,182","w":376,"k":{"c":29,"d":29,"e":29,"o":29,"q":29,"y":14,"h":-13,"m":20,"C":11,"G":11,"O":11,"Q":11,"t":13,"T":-10,"u":20,",":32,".":32,"A":43,"a":31,"S":4,"i":-11,")":-33,"]":-33,"}":-33,"r":17,":":6,";":6,"-":22}},"X":{"d":"59,-29v-14,28,36,5,21,30r-86,0v-3,0,-3,-13,0,-14v17,0,22,1,34,-10v9,-4,77,-100,82,-105v-45,-67,-70,-104,-75,-109v-5,-11,-42,6,-32,-19r105,0v5,0,2,7,3,11v-5,7,-40,-3,-26,20v27,42,41,67,45,73v8,-13,57,-67,56,-85v-1,-8,-29,-1,-16,-19r76,0v4,0,3,12,0,14v-43,0,-33,6,-65,46r-43,55r78,118v9,12,27,7,39,13v2,15,-8,11,-25,10v-25,-1,-56,4,-78,-1v-7,-20,23,-4,25,-19r-59,-97v-37,52,-57,82,-59,88","w":250,"k":{"C":9,"G":9,"O":9,"Q":9,"T":4,"X":7,"A":11,"a":-5}},"Y":{"d":"133,-114v8,44,-23,109,31,101v5,0,2,7,3,11v-17,8,-68,-2,-99,3v-15,-23,31,-5,31,-23r1,-88v-2,-5,-71,-119,-75,-123v-7,-11,-20,-7,-30,-11v-4,-15,10,-12,25,-11v24,1,55,-4,75,1v9,22,-32,3,-25,24v8,23,46,84,56,104v12,-16,53,-80,66,-102v13,-20,-36,-5,-22,-28v25,2,57,-3,78,2v4,20,-20,7,-30,20v-4,6,-33,45,-85,120","w":239,"k":{"c":43,"d":43,"e":43,"o":43,"q":43,"C":11,"G":11,"O":11,"Q":11,"t":14,"T":-15,"u":25,"V":-8,"W":-8,"v":16,"X":-4,"Y":-11,",":14,".":14,"A":43,"a":36,"l":-18,"i":-11,")":-35,"]":-35,"}":-35,"r":29,":":7,";":7,"-":27}},"Z":{"d":"189,-13v13,-7,42,-47,54,-54v14,8,-2,16,-8,37v-13,20,-3,38,-25,34v-33,-6,-146,1,-195,-7v0,-8,173,-235,173,-240v-37,3,-84,-6,-112,5v-12,2,-39,68,-53,49v10,-22,14,-50,27,-69v26,7,142,-2,187,3v-6,21,-30,39,-89,123v-53,75,-82,114,-85,119r126,0","w":252,"k":{"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"C":4,"G":4,"O":4,"Q":4,"T":-4,"u":-4,"A":-4,"a":-4,"i":-4}},"[":{"d":"33,-266v18,-7,58,-4,79,-1v-1,4,2,12,-3,12r-48,0v-2,0,-4,1,-4,4r0,295v0,3,1,5,3,5v18,2,43,-4,56,3v0,4,2,10,-3,10r-76,0v-3,0,-4,-1,-4,-4r0,-324","w":127,"k":{"T":-6,"V":-19,"W":-19,"Y":-22,"J":-48}},"\\":{"d":"125,-4v2,7,-17,12,-18,5r-106,-256v6,-1,13,-10,18,-4","w":126},"]":{"d":"91,62v-25,-2,-59,5,-79,-3v1,-3,-2,-10,2,-10r54,0v7,-93,-1,-202,2,-300v0,-3,-1,-4,-3,-4v-17,-2,-41,4,-52,-3v1,-4,-2,-10,2,-11v25,2,58,-4,78,3r0,324v0,3,-1,4,-4,4","w":127},"^":{"d":"8,-94r76,-152r12,0r76,152r-23,0v-21,-38,-37,-82,-61,-118r-57,118r-23,0"},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0"},"`":{"d":"72,-181v1,3,-4,7,-6,6r-48,-34v-12,-7,-7,-24,5,-24v23,7,33,37,49,52","w":120},"a":{"d":"84,-154v52,-3,37,61,37,111v0,31,14,31,27,20v11,12,-11,27,-25,27v-16,0,-20,-13,-26,-24v-12,20,-81,43,-79,-6v-9,-31,67,-54,77,-64v1,-28,1,-51,-27,-51v-16,0,-30,6,-25,24v5,19,-28,31,-28,9v0,-30,39,-44,69,-46xm65,-13v10,1,31,-13,30,-22r0,-44v-15,9,-51,19,-49,47v1,11,7,19,19,19","w":153},"b":{"d":"167,-77v0,56,-63,102,-117,72v-7,3,-18,15,-25,5v-2,-71,7,-154,-3,-218v0,-9,-19,-7,-21,-16v17,-11,34,-19,48,-26v8,33,0,81,3,124v42,-41,115,-7,115,59xm140,-69v0,-50,-51,-89,-88,-55v2,53,-13,119,39,117v30,-2,49,-25,49,-62","w":181,"k":{"y":4,"h":2,"m":2,"n":2,"v":-2,"w":2,",":11,".":11,"k":2,"z":-2,"x":4}},"c":{"d":"126,-113v-20,2,-21,-32,-44,-30v-25,2,-45,25,-42,56v-7,50,55,100,97,57v4,-2,8,4,6,9v-10,13,-35,25,-58,25v-43,0,-71,-34,-72,-74v0,-42,32,-85,77,-84v26,1,49,8,49,29v0,8,-5,12,-13,12","w":147,"k":{"y":-5,"h":-2,"a":-4,"k":-4,"l":-7}},"d":{"d":"13,-71v0,-56,55,-100,118,-78v-6,-34,18,-91,-23,-91v-5,0,-5,-11,0,-12r48,-8v5,25,1,143,1,202v0,37,4,35,26,41v1,3,1,6,-2,7r-40,14v-7,1,-7,-13,-10,-19v-13,13,-39,24,-65,19v-33,-6,-53,-34,-53,-75xm89,-11v23,0,42,-10,42,-32v0,0,9,-99,-41,-99v-73,0,-58,131,-1,131","w":187,"k":{"l":-7}},"e":{"d":"87,-154v33,1,51,22,53,52v0,4,-3,6,-10,6r-89,0v-7,40,14,79,50,79v22,0,38,-14,47,-26v14,7,-5,27,-16,35v-49,34,-114,-5,-109,-70v3,-42,28,-77,74,-76xm108,-112v3,-28,-30,-42,-50,-23v-7,6,-12,15,-15,28v20,-2,54,6,65,-5","w":153,"k":{"y":-2,"v":-4,"w":-4,",":3,".":3,"z":-1}},"f":{"d":"9,-1v-2,-25,30,1,30,-23r0,-109v-13,-1,-33,6,-26,-15v4,-5,18,-1,26,-2v-4,-62,32,-106,83,-110v28,-2,45,31,17,35v-16,2,-20,-19,-35,-18v-41,3,-40,48,-40,93r44,0v1,0,7,17,-4,17r-40,0r1,112v-5,20,44,-5,31,22v-28,-2,-63,3,-87,-2","w":111,"k":{"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"t":-7,",":6,".":6,"g":-2,"i":4,")":-47,"]":-47,"}":-47,"\"":-39,"'":-39,"r":-22,"s":-4}},"g":{"d":"164,37v0,39,-40,62,-86,61v-36,0,-71,-10,-73,-41v-1,-22,24,-34,38,-44v-13,-3,-24,-12,-24,-26v-1,-18,21,-27,32,-35v-18,-8,-33,-27,-33,-54v0,-49,77,-72,107,-32v13,-9,24,-14,33,-14v20,-2,22,30,3,29v-9,-1,-19,-14,-31,-7v19,49,-16,94,-68,83v-16,2,-30,28,-8,32v53,0,110,-3,110,48xm43,-92v0,21,13,41,33,41v39,1,47,-93,6,-93v-27,0,-39,22,-39,52xm36,29v-27,30,10,57,55,57v20,0,55,-13,51,-37v3,-45,-84,-45,-106,-20","w":174,"k":{"c":2,"d":2,"e":2,"o":2,"q":2,"y":-11,"p":-2,",":4,".":4,"f":-4}},"h":{"d":"15,-12v38,0,20,-18,20,-75v0,-42,4,-94,-3,-130v-1,-8,-35,-11,-18,-21v14,-8,29,-16,45,-22v3,0,4,3,3,9v2,39,-5,85,1,120v30,-41,115,-23,100,44r1,70v0,4,4,5,13,5v10,-4,16,8,8,13r-69,0v-4,1,-3,-6,-3,-10v1,-7,26,1,25,-10v-3,-49,12,-118,-36,-119v-18,-1,-41,14,-41,33r0,78v-8,24,31,5,20,28r-69,0v-3,-1,-7,-13,3,-13","w":194,"k":{"y":4}},"i":{"d":"13,-129v9,-16,34,-16,49,-25v3,38,1,89,1,133v0,19,35,-2,23,22v-25,-2,-58,5,-77,-3v-7,-20,27,0,27,-17r1,-86v2,-19,-13,-17,-24,-24xm61,-216v1,11,-9,20,-21,20v-10,0,-19,-10,-19,-19v-1,-11,9,-18,21,-18v11,0,19,7,19,17","w":96},"j":{"d":"-27,81v0,-27,31,-9,42,1v10,0,16,-10,18,-31v2,-35,2,-104,2,-149v0,-25,-17,-16,-23,-32v12,-8,31,-16,48,-24v5,7,0,78,1,112v2,81,-4,140,-67,140v-11,0,-21,-6,-21,-17xm64,-217v0,11,-11,22,-23,21v-10,0,-23,-9,-22,-22v1,-28,45,-27,45,1","w":88,"k":{",":2,".":2}},"k":{"d":"113,-3v-3,-13,14,-4,10,-14v-9,-6,-42,-62,-63,-56r0,54v-2,14,31,-2,18,20r-66,0v-8,-10,3,-15,15,-13v4,0,6,-3,6,-9r1,-186v3,-22,-12,-21,-24,-28v7,-15,35,-16,50,-25v5,14,-3,121,0,176v26,4,42,-32,56,-44v10,-15,-23,-3,-10,-23v21,2,50,-4,65,3v3,18,-21,6,-31,18v-6,3,-21,18,-47,43v63,59,57,65,95,78v2,22,-43,3,-72,10v-2,0,-3,-2,-3,-4","w":178},"l":{"d":"6,-234v23,-14,40,-20,53,-26v7,76,-3,176,2,237v-5,22,37,-2,27,24r-81,0v-4,-1,-6,-14,2,-13v11,-1,26,4,25,-9r-1,-184v3,-22,-21,-16,-27,-29","w":92,"k":{"y":-4,"v":-4,"w":-4,"l":-2}},"m":{"d":"197,-138v-48,0,-36,67,-37,118v-4,17,34,-3,21,21r-66,0v-3,0,-5,-13,1,-13v8,0,19,2,19,-6v-5,-47,17,-121,-34,-120v-21,0,-40,17,-40,45r0,72v-5,18,34,-2,21,22v-22,-2,-52,4,-69,-3v-6,-19,23,0,22,-19v-4,-39,14,-94,-20,-108v6,-15,27,-17,41,-24v8,3,-1,22,6,26v16,-29,79,-41,93,0v26,-36,105,-39,105,28r0,80v-3,14,31,-2,18,20r-63,0v-4,-1,-6,-14,2,-13v32,6,17,-56,17,-89v0,-25,-13,-37,-37,-37","w":290,"k":{"u":4,"v":2,"w":2}},"n":{"d":"111,-154v64,0,49,74,50,135v-3,15,34,-3,21,20r-67,0v-4,1,-3,-6,-3,-10v3,-8,25,3,23,-11v-5,-46,20,-120,-36,-117v-18,1,-38,15,-38,39r0,74v-7,21,28,1,19,25v-21,-2,-50,4,-66,-3v-7,-18,22,-2,21,-17v-4,-42,13,-99,-20,-110v7,-14,27,-17,40,-25v7,3,2,20,7,26v10,-12,28,-26,49,-26","w":191,"k":{"y":2,"T":29,"v":2,"w":2}},"o":{"d":"167,-75v1,40,-39,81,-80,79v-44,-1,-76,-33,-74,-83v1,-42,38,-75,79,-75v45,0,75,39,75,79xm42,-76v0,38,16,70,49,70v62,0,58,-138,-2,-138v-33,0,-47,29,-47,68","w":179,"k":{"y":4,"h":2,"m":2,"n":2,"v":-2,"w":2,",":11,".":11,"k":2,"z":-2,"x":4}},"p":{"d":"8,99v-14,-23,26,-3,23,-22v2,-35,1,-132,1,-179v4,-20,-30,-17,-21,-33v14,-6,28,-16,43,-20v5,3,0,21,5,25v35,-47,113,-20,113,49v0,60,-54,102,-114,79r0,76v-8,23,36,0,24,25r-74,0xm143,-67v0,-63,-58,-94,-85,-48r0,79v1,24,21,29,44,29v28,0,41,-25,41,-60","w":185,"k":{"y":4,"h":2,"m":2,"n":2,"v":-2,"w":2,",":11,".":11,"k":2,"z":-2,"x":4}},"q":{"d":"13,-71v4,-60,55,-101,121,-76v8,-2,19,-11,26,-5v-6,54,-5,165,-2,228v-5,19,32,0,19,23v-24,-2,-57,5,-75,-3v-7,-19,27,-1,27,-18r0,-91v-48,37,-121,11,-116,-58xm41,-84v0,58,53,96,89,57r0,-83v0,-20,-22,-32,-41,-33v-27,-2,-48,33,-48,59","w":182,"k":{",":2,".":2}},"r":{"d":"61,-27v-2,19,12,15,27,15v9,15,-5,12,-20,12r-57,1v-15,-20,22,-5,24,-20v-4,-41,14,-98,-23,-110v8,-14,29,-18,44,-25v7,5,-1,24,6,29v8,-20,51,-50,61,-16v-1,22,-21,18,-37,12v-37,1,-22,64,-25,102","w":122,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"y":-13,"h":-2,"m":-2,"n":-2,"p":-5,"t":-5,"u":-5,"v":-14,"w":-14,",":22,".":22,"a":-2,"k":2,"l":-7,"z":-4,"i":-4,"f":-4,"b":-4,"x":-11,":":-5,";":-5}},"s":{"d":"104,-73v26,31,-1,83,-44,77v-16,-1,-34,-1,-39,-15v-1,-12,-8,-27,-4,-37v22,1,14,46,49,41v23,1,39,-30,20,-45v-20,-16,-76,-25,-69,-59v-3,-40,64,-58,90,-29v0,0,12,27,-2,29v-14,-9,-19,-34,-41,-32v-26,-4,-38,37,-12,47v17,7,42,11,52,23","w":128},"t":{"d":"109,-14v-9,27,-77,21,-75,-12r2,-105v-12,1,-41,0,-21,-11v12,-6,37,-41,46,-49v7,7,0,29,2,41r50,0v5,2,1,18,-5,19r-46,0r-1,86v-5,30,23,38,42,27v3,-1,6,1,6,4","w":114,"k":{"y":-5,"p":-2,"v":-2,"w":-2,"b":-3}},"u":{"d":"102,-150r47,-1v3,0,3,1,3,3v-3,26,-1,93,-1,117v0,24,29,1,25,21v-15,4,-28,12,-45,14v-9,-2,-2,-19,-7,-25v-9,12,-29,25,-49,25v-56,-2,-51,-66,-48,-129v1,-18,-23,-6,-22,-22v8,-8,30,0,45,-4v16,27,-22,145,40,139v14,-1,34,-12,34,-28r0,-86v4,-18,-29,-3,-22,-24","w":182},"v":{"d":"50,-131v0,16,23,81,34,98v21,-50,33,-80,35,-90v4,-13,-2,-16,-14,-15v-4,-7,0,-17,11,-13r47,0v6,16,-10,11,-19,17v-21,30,-44,96,-61,131v-5,10,-12,11,-16,1r-47,-123v-4,-10,-9,-14,-22,-13v-8,-12,3,-14,17,-12v16,2,40,-5,51,2v5,15,-16,5,-16,17","w":155,"k":{"c":2,"d":2,"e":2,"o":2,"q":2,"v":-4,",":27,".":27,"k":-5,"l":-5,"r":-2,"s":-2,"b":-5,":":-7,";":-7}},"w":{"d":"119,-121v3,-21,-21,-5,-21,-25v11,-6,48,-2,67,-1v6,16,-17,5,-16,20r29,88v10,-31,27,-60,31,-94v-1,-7,-22,-2,-12,-18v18,1,42,-3,57,2v5,17,-18,6,-23,17v-1,2,-20,47,-55,133v-3,5,-12,7,-13,-2r-37,-103r-45,104v-4,7,-10,7,-13,-2r-47,-127v-2,-8,-13,-10,-24,-9v-4,0,-3,-12,0,-13v21,2,50,-4,66,3v5,14,-15,5,-10,19r29,96","w":246,"k":{"c":2,"d":2,"e":2,"o":2,"q":2,"p":-2,"t":-4,",":27,".":27,"r":-4,":":-7,";":-7}},"x":{"d":"89,-82v33,38,25,65,66,70v7,10,-1,14,-15,12v-16,-3,-40,5,-52,-2v-6,-15,21,-5,11,-21r-26,-42v-10,18,-28,30,-32,51v3,3,22,1,11,15v-19,-2,-45,4,-59,-3v-6,-17,21,-6,27,-14r47,-58v-31,-36,-25,-62,-66,-64v-9,-12,3,-14,16,-12v16,2,39,-5,50,2v4,14,-18,7,-7,22r22,35v9,-15,24,-26,29,-43v-2,-6,-19,-1,-10,-17v18,2,43,-3,55,3v5,15,-16,7,-23,14v-4,3,-19,21,-44,52","w":157,"k":{"c":2,"d":2,"e":2,"o":2,"q":2,"v":2}},"y":{"d":"56,-130v0,2,27,96,31,95v1,-1,38,-88,37,-90v3,-12,-2,-14,-12,-13v-4,0,-3,-12,0,-13v18,3,41,-4,54,3v4,16,-16,6,-21,16r-104,221v-9,13,-42,13,-41,-9v1,-20,27,-10,40,-13v5,-7,26,-51,29,-61v-7,-18,-31,-118,-52,-142v-5,-6,-24,5,-20,-13v13,-3,53,-3,73,0v6,16,-16,5,-14,19","w":156,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"m":-4,"n":-4,"p":-4,"t":-4,"v":-4,",":31,".":31,"l":-4,"z":-4,"i":-4,"r":-4,"s":-4,"f":-5,"j":-5,"b":-4,":":-11,";":-11}},"z":{"d":"28,-155v28,9,84,1,118,7v-26,48,-66,91,-96,137v56,1,71,6,101,-39v3,-5,10,2,9,5r-28,49v-26,-6,-79,-3,-114,-4v-4,0,-5,-2,-2,-6r93,-133v-53,-1,-70,-1,-95,39v-2,4,-11,0,-9,-4","w":156,"k":{"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"y":-9,"a":-4}},"{":{"d":"32,4v-1,-31,34,-100,-12,-105v-3,0,-5,-2,-5,-6v0,-5,2,-7,5,-7v47,-1,11,-69,12,-99v1,-39,38,-56,80,-56v8,0,7,12,2,12v-32,-1,-54,12,-54,42v0,41,17,87,-16,105v2,17,22,23,22,46v0,12,-6,48,-6,65v0,29,22,47,56,50v2,0,2,2,2,6v1,9,-8,4,-14,5v-39,-3,-70,-17,-72,-58","w":127,"k":{"T":-6,"V":-19,"W":-19,"Y":-22,"J":-48}},"|":{"d":"73,90v0,8,-11,3,-17,4v-7,-115,1,-246,-2,-365v1,-5,19,-6,19,1r0,360","w":126},"}":{"d":"96,-213v1,30,-34,95,11,100v3,0,5,2,5,6v0,5,-2,7,-5,7v-48,2,-9,68,-11,99v-2,40,-36,67,-81,63v-4,0,-6,-1,-6,-5v-1,-9,11,-6,16,-7v24,-2,43,-22,43,-49v0,-15,-6,-55,-6,-66v-3,-29,36,-36,9,-57v-20,-16,-2,-60,-3,-88v0,-29,-26,-47,-55,-47v-2,0,-4,-2,-4,-6v-1,-10,8,-5,15,-6v36,2,71,20,72,56","w":127},"~":{"d":"100,-93v15,15,43,14,40,-18r19,0v2,41,-33,66,-65,38v-16,-15,-56,-30,-54,11r-19,0v-5,-51,50,-63,79,-31"},"\u00a9":{"d":"204,-156v-21,-62,-108,-47,-108,22v0,67,82,96,117,43v2,2,9,3,5,6v-39,66,-148,37,-148,-44v0,-59,64,-99,121,-67v9,4,1,-12,15,-6v-2,10,5,26,5,46v-2,0,-5,2,-7,0xm17,-127v0,-74,60,-133,132,-133v75,0,131,57,131,133v0,75,-55,132,-131,132v-77,0,-132,-56,-132,-132xm36,-127v2,74,43,119,113,119v73,0,112,-49,112,-119v0,-73,-43,-117,-112,-120v-64,-3,-115,54,-113,120","w":297},"\u00a0":{"w":91,"k":{"T":16,"V":5,"W":5,"Y":5}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2000, 2001 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * Adobe Caslon is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Designer:
 * Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Adobe Caslon Pro Bold","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 5 7 2 6 5 10 2 4 3","ascent":"265","descent":"-95","x-height":"5","cap-height":"1","bbox":"-37.1705 -274.725 420 99","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+00A9"},"glyphs":{" ":{"w":72,"k":{"T":16,"V":5,"W":5,"Y":5}},"!":{"d":"72,-19v0,15,-11,24,-27,24v-13,-1,-26,-10,-26,-24v1,-14,10,-27,27,-26v15,0,26,12,26,26xm43,-74v-7,-10,-18,-127,-22,-140v0,-21,8,-32,26,-32v18,0,31,8,28,26r-23,143v0,4,-5,3,-9,3","w":93},"\"":{"d":"31,-155v3,-25,-41,-106,6,-105v13,0,20,9,21,20r-15,85r-12,0xm93,-155v3,-25,-41,-105,5,-105v47,-1,3,80,6,105r-11,0","w":135},"#":{"d":"101,-98r10,-45r-31,0r-11,45r32,0xm82,5v-4,-19,11,-48,13,-70r-32,0v-6,23,-9,50,-18,70v-8,-2,-27,6,-25,-5r15,-65v-12,-2,-32,4,-39,-3r5,-28v9,-5,28,0,40,-2r10,-45v-12,-2,-31,4,-38,-3v4,-10,-2,-28,9,-31r35,0v7,-22,8,-50,18,-69r23,0v1,20,-10,47,-13,69r32,0v7,-22,7,-51,18,-69r23,0v1,20,-10,47,-13,69v13,2,32,-4,40,3v-4,10,1,28,-10,31r-35,0r-10,45r38,0v-1,9,3,33,-9,33r-36,0v-7,23,-7,52,-18,70r-23,0"},"$":{"d":"166,-73v0,34,-25,60,-58,65v1,10,2,30,-13,19r0,-18v-7,1,-13,1,-18,-1v0,10,1,30,-14,19r1,-21v-11,-3,-25,-11,-35,-16v-2,0,-12,18,-15,3r6,-62v0,-3,13,-4,13,1v1,31,11,47,31,58r3,-80v-52,-4,-70,-82,-28,-113v9,-6,18,-11,30,-13v2,-10,-5,-27,12,-23v5,3,1,15,2,22v6,0,11,-1,18,0v2,-9,-5,-25,11,-22v5,4,1,17,2,24v6,0,26,12,31,1v2,-2,9,-4,8,2v-2,26,3,48,-1,61v-3,0,-7,2,-9,0v-8,-28,-15,-37,-29,-48r-3,74v35,10,55,24,55,68xm99,-144r2,-75v-7,-2,-14,-3,-19,-2r-2,73v2,1,8,2,19,4xm68,-153r1,-64v-23,6,-27,57,-1,64xm80,-103r-3,81v4,1,10,2,19,2r2,-78v-12,-3,-17,-5,-18,-5xm111,-94r-3,72v28,-7,29,-61,3,-72"},"%":{"d":"66,-232v-28,2,-23,98,-10,119v3,3,5,4,8,4v22,-8,17,-22,17,-70v0,-36,-5,-53,-15,-53xm80,3v-5,5,-21,-5,-16,-13r147,-236v6,2,18,6,14,13xm121,-171v0,45,-18,76,-59,76v-39,0,-54,-34,-55,-72v-1,-42,19,-79,60,-79v41,1,54,34,54,75xm225,-134v-29,3,-21,96,-10,119v3,3,5,5,8,5v24,-8,17,-21,17,-70v0,-36,-5,-54,-15,-54xm280,-73v0,45,-18,76,-59,76v-39,0,-54,-34,-55,-72v-1,-42,19,-79,60,-79v41,1,54,34,54,75","w":287},"&":{"d":"213,-77v20,29,77,83,108,30v3,-3,13,3,9,7v-15,42,-99,64,-134,22v-10,-5,-12,-28,-25,-12v-16,19,-38,35,-74,35v-41,0,-83,-28,-84,-62v-2,-37,38,-72,67,-86v-24,-16,-36,-32,-36,-50v-1,-29,39,-62,69,-62v34,0,62,20,62,50v-1,22,-25,41,-43,48v24,10,48,33,71,67v10,-13,20,-34,21,-53v0,-8,-6,-12,-16,-11v-6,-3,-2,-17,8,-13r71,0v13,20,-31,7,-32,28v-12,22,-27,43,-42,62xm63,-70v-1,44,62,63,93,33v4,-3,9,-8,15,-14v-16,-28,-52,-67,-78,-83v-15,9,-30,39,-30,64xm118,-166v22,-10,25,-70,-5,-74v-24,-3,-34,42,-16,58v6,6,13,12,21,16","w":331},"'":{"d":"31,-155v2,-24,-41,-106,6,-105v13,0,19,8,20,20r-14,85r-12,0","w":72},"(":{"d":"107,-264v-63,71,-62,248,0,321v0,2,-6,5,-7,5v-49,-29,-88,-91,-88,-165v0,-71,39,-135,88,-166v1,0,7,3,7,5","w":117,"k":{"T":-6,"V":-19,"W":-19,"Y":-22,"J":-48}},")":{"d":"11,57v64,-73,61,-248,0,-321v-1,-2,6,-5,7,-5v49,29,87,90,87,165v-1,72,-39,134,-87,166v-1,0,-8,-3,-7,-5","w":117},"*":{"d":"63,-197v-3,10,28,53,-4,53v-32,0,-1,-43,-4,-53v-12,11,-26,48,-46,25v-13,-27,27,-23,44,-31v-18,-5,-58,-2,-45,-27v10,-18,20,-7,33,7v9,9,11,17,16,15v-4,-12,-27,-52,2,-52v34,-1,-1,45,4,53v24,-25,23,-41,45,-23v15,25,-30,22,-44,28v36,9,50,0,45,30v-19,19,-35,-14,-46,-25","w":118},"+":{"d":"105,-13r-29,0r0,-60r-57,0r0,-28r57,0r0,-59r29,0r0,59r56,0r0,28r-56,0r0,60"},",":{"d":"38,1v-28,-4,-22,-52,7,-52v22,0,39,23,37,47v-3,36,-30,61,-61,71v-3,0,-4,-2,-4,-4v16,-21,46,-44,21,-62","w":100,"k":{" ":11}},"-":{"d":"21,-83v-6,-3,-5,-23,0,-28r101,0v7,1,6,25,0,28r-101,0","w":144},".":{"d":"79,-22v0,16,-12,27,-28,27v-15,0,-30,-12,-29,-28v1,-13,12,-28,29,-28v16,0,28,13,28,29","w":100,"k":{" ":11}},"\/":{"d":"3,-9r106,-250v5,-4,24,3,23,12r-106,249v-5,7,-26,-3,-23,-11","w":135},"0":{"d":"92,5v-117,0,-106,-250,-1,-251v53,0,79,42,79,124v-1,71,-17,127,-78,127xm61,-114v0,58,-5,92,31,105v12,0,20,-8,23,-24v3,-17,5,-49,5,-97v0,-67,-9,-101,-27,-101v-12,0,-19,8,-22,24v-7,31,-10,62,-10,93"},"1":{"d":"31,-11v17,-9,40,6,40,-22r0,-146v1,-34,-28,-6,-46,-10v0,-4,-5,-10,0,-12r94,-45v9,56,-1,137,3,211v-6,30,19,15,36,24v-1,5,3,13,-4,12v-40,-2,-87,4,-123,-2r0,-10"},"2":{"d":"146,5v-11,10,-9,-9,-34,-5v-36,-1,-79,4,-111,-1v-1,-3,-1,-6,2,-8v46,-44,105,-95,106,-162v1,-49,-66,-58,-84,-15v-3,5,-14,1,-11,-6v12,-29,35,-54,78,-54v37,0,68,30,68,66v0,52,-68,106,-102,142v42,-1,91,8,103,-28v3,-6,13,1,10,4"},"3":{"d":"166,-74v0,47,-49,79,-101,79v-30,0,-53,-8,-56,-28v-1,-9,7,-18,15,-18v21,0,22,31,47,31v24,0,42,-25,42,-50v0,-37,-24,-55,-58,-64v-3,-5,0,-11,5,-11v30,-6,45,-21,45,-48v1,-19,-12,-36,-32,-35v-21,-3,-33,20,-45,38v-4,-2,-11,-1,-9,-8v7,-30,32,-58,72,-58v35,0,61,20,63,49v2,25,-17,43,-46,62v27,3,59,31,58,61"},"4":{"d":"149,-5v-4,11,-32,3,-45,4v-3,-16,0,-38,-1,-56r-93,0v-16,0,-10,-11,-4,-20r129,-163v6,-8,14,-9,14,6r0,145v8,1,24,-3,27,3v-2,9,6,29,-5,29r-22,0r0,52xm104,-169v0,-5,-5,-4,-7,-1v-19,27,-43,50,-60,79v17,5,46,0,67,2r0,-80"},"5":{"d":"42,-235v0,-3,2,-5,6,-5v36,-5,91,15,102,-18v1,-2,3,-3,7,-2v7,15,-8,44,-14,60v-24,5,-59,1,-87,2r-6,39v54,1,100,21,100,77v0,49,-48,87,-100,87v-24,0,-61,-18,-35,-32v13,0,25,15,45,14v26,-2,48,-17,48,-49v0,-45,-39,-53,-78,-57v0,-37,9,-78,12,-116"},"6":{"d":"169,-82v-1,53,-29,86,-83,87v-53,1,-76,-45,-76,-94v0,-88,57,-142,134,-157v3,-1,6,2,6,4v0,4,-3,7,-9,9v-31,12,-70,60,-77,97v11,-1,24,-13,42,-13v40,0,63,30,63,67xm60,-72v0,28,4,60,29,64v47,-1,39,-116,0,-118v-32,-2,-29,20,-29,54"},"7":{"d":"179,-237v-34,59,-73,138,-86,215v-4,27,-51,40,-52,5v11,-54,71,-126,101,-182v-43,4,-100,-13,-119,19v-3,4,-12,2,-10,-4r23,-67v2,-5,14,-5,10,4v1,9,9,7,21,7r108,0v2,0,4,0,4,3"},"8":{"d":"168,-60v1,36,-37,65,-79,65v-40,0,-71,-17,-71,-50v0,-36,20,-50,45,-67v-24,-19,-47,-27,-47,-65v0,-38,39,-69,83,-69v32,0,64,21,64,49v-1,38,-17,47,-46,65v30,16,50,31,51,72xm76,-104v-34,21,-32,93,13,95v35,2,45,-45,25,-68v-7,-8,-20,-17,-38,-27xm103,-140v33,-17,36,-86,-8,-89v-31,-2,-43,45,-24,66v6,6,16,14,32,23"},"9":{"d":"12,-160v-1,-49,32,-86,77,-86v54,0,81,40,81,83v0,87,-50,155,-127,168v-8,1,-7,-9,-1,-11v32,-11,71,-61,69,-101v-9,7,-22,11,-40,11v-36,0,-59,-32,-59,-64xm93,-117v28,0,25,-12,25,-53v0,-42,-10,-63,-28,-63v-49,0,-40,116,3,116"},":":{"d":"79,-22v0,16,-12,27,-28,27v-15,0,-30,-12,-29,-28v1,-13,12,-28,29,-28v16,0,28,13,28,29xm79,-127v0,16,-12,27,-28,27v-15,-1,-30,-12,-29,-29v1,-13,13,-27,29,-27v16,0,28,13,28,29","w":100,"k":{" ":11}},";":{"d":"38,5v-28,-4,-21,-54,7,-53v22,0,39,23,37,47v-3,37,-30,61,-61,72v-3,0,-4,-2,-4,-4v15,-20,46,-46,21,-62xm79,-127v0,16,-12,27,-28,27v-15,-1,-30,-12,-29,-29v1,-13,13,-27,29,-27v16,0,28,13,28,29","w":100,"k":{" ":11}},"<":{"d":"140,-13r-110,-65r0,-17r110,-65r0,30r-74,43r74,44r0,30"},"=":{"d":"19,-131r143,0r0,27r-143,0r0,-27xm19,-77r143,0r0,27r-143,0r0,-27"},">":{"d":"40,-160r110,66r0,16r-110,65r0,-29r74,-44r-74,-44r0,-30"},"?":{"d":"126,-150v0,41,-30,51,-71,50v-10,4,9,43,-17,31r0,-72v7,-13,66,7,62,-29v-3,-23,-34,-32,-58,-32v-15,0,-27,-8,-27,-22v0,-13,9,-22,23,-22v34,0,88,58,88,96xm74,-18v0,15,-11,23,-27,23v-17,0,-26,-8,-26,-23v-1,-14,12,-24,27,-24v14,0,26,9,26,24","w":136},"@":{"d":"127,-87v19,-10,53,-57,53,-85v0,-11,-4,-17,-12,-17v-24,0,-52,68,-50,90v0,8,3,12,9,12xm75,-87v0,-52,48,-115,98,-115v10,0,17,5,19,13v2,-13,19,-10,34,-10v3,0,4,2,2,6v-4,9,-33,85,-32,107v-1,4,4,7,7,7v32,-9,48,-47,48,-89v0,-51,-28,-78,-78,-78v-77,0,-126,68,-131,146v-5,83,93,106,159,77v10,16,-16,20,-32,24v-85,19,-166,-16,-164,-96v3,-94,77,-162,172,-165v67,-2,107,34,107,96v0,60,-48,101,-110,101v-26,0,-15,-26,-7,-50v-22,20,-31,48,-69,50v-14,0,-23,-9,-23,-24","w":289},"A":{"d":"98,-243v12,-6,40,-15,49,-24v27,61,55,177,82,237v5,12,15,18,33,16v9,18,-5,14,-27,14r-83,1v-6,1,-5,-12,-2,-15v12,0,25,2,21,-13v-5,-19,-12,-43,-22,-72r-79,0v-14,36,-20,59,-20,69v0,21,20,12,30,19v1,27,-55,3,-91,12v-14,-22,25,-9,34,-31v22,-56,67,-149,78,-208v-2,-2,-3,-4,-3,-5xm146,-113v-3,-6,-15,-60,-31,-103v-21,35,-30,81,-40,103r71,0","w":261,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"y":4,"a":-9,"b":-4,"g":-9,"C":15,"G":15,"O":15,"Q":15,"T":31,"u":5,"U":13,"V":23,"W":23,"v":9,"w":4,"X":11,"Y":13}},"B":{"d":"232,-66v0,92,-121,61,-215,67v-6,1,-3,-7,-4,-12v6,-9,30,5,30,-18v0,-23,3,-155,1,-191v4,-28,-19,-15,-33,-24v0,-28,75,-2,116,-12v60,0,90,12,90,59v0,34,-26,47,-53,60v40,11,68,26,68,71xm97,-142v40,5,66,-16,66,-52v0,-32,-23,-50,-49,-50v-10,0,-16,2,-16,6xm124,-10v61,7,65,-98,17,-113v-11,-4,-25,-7,-44,-7v4,44,-15,115,27,120","w":248,"k":{"T":5,"U":-2,"V":4,"W":4}},"C":{"d":"150,-244v-115,7,-87,223,13,222v37,0,71,-16,85,-39v5,-7,8,0,12,3v-19,43,-65,63,-107,63v-88,2,-129,-51,-135,-129v-8,-104,110,-168,205,-121v13,6,2,-14,17,-12v5,0,6,1,6,6v1,28,11,59,7,84v-5,1,-11,5,-13,-2v-9,-36,-47,-77,-90,-75","w":270,"k":{"C":7,"G":7,"O":7,"Q":7,"h":-7,"l":-9,"A":4}},"D":{"d":"284,-132v4,139,-131,137,-273,133v-5,0,-2,-8,-3,-13v6,-7,32,5,33,-10v3,-11,4,-176,1,-209v3,-20,-44,2,-30,-25r110,0v96,-3,159,37,162,124xm126,-242v-51,-3,-19,63,-28,112v7,45,-21,119,36,116v61,-4,92,-57,92,-117v0,-63,-40,-107,-100,-111","w":302,"k":{"y":-11,"b":-7,"C":-4,"G":-4,"O":-4,"Q":-4,"T":2,"u":-7,"U":-4,"V":9,"W":9,"v":-11,"w":-11,"X":14,"Y":2,"h":3,"k":-4,"l":-9,"A":11,"j":-4,",":7,".":7,"x":-11,"z":-5,"t":-4}},"E":{"d":"211,-256v8,17,14,45,16,63v-15,8,-10,-4,-29,-18v-26,-31,-50,-31,-98,-32r-1,105v47,5,54,-12,64,-39v21,0,9,10,12,42v-4,14,13,48,-12,45v-4,-29,-28,-38,-64,-36r1,83v-7,42,37,29,68,29v33,0,40,-32,68,-51v2,2,7,2,7,6r-16,55v-14,13,-57,4,-88,4r-122,1v-5,1,-4,-6,-4,-11v5,-11,40,6,33,-19r-1,-198v-1,-15,-13,-14,-29,-14v-4,-11,-4,-19,18,-14","w":250,"k":{"T":-2,"V":9,"W":9,"X":5,"Y":-14,"J":-2,"M":5,"B":5,"D":5,"E":5,"F":5,"H":5,"I":5,"K":5,"L":5,"N":5,"P":5,"R":5,"S":4,"Z":2}},"F":{"d":"220,-186v-37,-33,-36,-65,-121,-56r-1,115v41,3,56,-7,65,-37v19,-1,8,11,10,44v0,13,1,26,2,38v-2,3,-13,7,-13,1v-8,-29,-25,-35,-64,-34r1,90v-2,20,22,6,33,13v3,17,-8,12,-29,12r-84,1v-3,-1,-4,-13,0,-15v9,0,25,2,24,-7r1,-210v2,-14,-24,-7,-33,-12v-4,-17,11,-13,30,-12r170,-2v7,19,14,46,16,67","w":226,"k":{"c":14,"d":14,"e":14,"o":14,"q":14,"a":11,"T":-25,"u":12,"U":-14,"l":-20,"A":24,",":36,".":36,"i":-14,"r":13}},"G":{"d":"212,-53v-1,-23,7,-49,-28,-42v-7,-4,-4,-19,7,-15r96,0v5,0,2,8,3,12v-4,8,-24,-3,-24,16r1,59v-26,20,-69,27,-111,28v-87,0,-138,-54,-138,-140v0,-105,130,-156,219,-108v12,6,16,-22,23,-4v1,27,6,55,4,81v0,0,-13,6,-15,-1v-14,-43,-41,-77,-90,-77v-111,0,-112,233,4,232v33,-1,51,-3,49,-41","w":302,"k":{"y":-4,"T":9,"u":-4}},"H":{"d":"121,1v-42,-7,-118,14,-106,-15v15,0,27,4,27,-16r0,-188v3,-23,-7,-24,-27,-23v-6,0,-4,-6,-4,-11v17,-9,81,-1,115,-3v10,23,-35,5,-28,34r-2,78v30,8,78,0,114,3v17,-6,2,-58,4,-83v2,-20,-7,-18,-23,-18v-7,-9,-4,-20,17,-14r85,-1v6,-1,5,5,5,11v-6,10,-33,-3,-27,22r0,191v-2,18,10,19,27,18v9,17,-4,14,-26,14r-82,1v-6,0,-5,-5,-5,-11v5,-10,35,4,30,-20r2,-90v0,-3,-3,-5,-8,-5r-108,0v-5,0,-5,5,-5,10v0,21,1,51,3,89v-5,20,36,2,22,27","w":312,"k":{"b":-11,"T":-4,"U":-4,"w":-5,"Y":-14,"h":-4,"k":-5,"l":-5,"x":-5,"B":-4,"D":-4,"E":-4,"F":-4,"H":-4,"I":-4,"K":-4,"L":-4,"N":-4,"P":-4,"R":-4,"r":4}},"I":{"d":"103,-27v-6,25,33,-1,30,26v-25,5,-80,-2,-114,2v-6,-5,-1,-20,11,-15v10,0,15,-3,16,-9v2,-13,0,-178,0,-206v0,-18,-21,-8,-32,-14v-3,-18,11,-12,32,-12r82,-1v5,0,2,8,3,12v-2,8,-28,-2,-28,12r0,205","w":149,"k":{"b":-11,"T":-4,"U":-4,"w":-5,"Y":-14,"h":-4,"k":-5,"l":-5,"x":-5,"B":-4,"D":-4,"E":-4,"F":-4,"H":-4,"I":-4,"K":-4,"L":-4,"N":-4,"P":-4,"R":-4,"r":4}},"J":{"d":"17,59v43,-25,22,-131,22,-204v0,-58,8,-78,-8,-95v-8,-2,-32,3,-21,-16r110,0v5,0,2,8,3,12v-3,8,-29,-2,-29,13r-2,201v-3,60,-42,109,-102,109v-13,0,-29,-9,-27,-26v6,-38,48,-21,54,6","w":128,"k":{"y":-4,"T":-9,",":5,".":5,"i":-5}},"K":{"d":"98,-231r-2,93v29,-3,18,-12,49,-43v12,-19,35,-34,39,-57v-4,-7,-25,0,-15,-18r82,0v5,0,2,8,3,12v-5,7,-21,1,-30,9v-17,10,-67,66,-79,82r98,130v6,7,13,10,24,9v6,16,-3,14,-24,14r-77,1v-4,-2,-4,-18,5,-14v5,0,8,-6,5,-10v-11,-7,-55,-110,-80,-102r2,103v-3,15,32,-1,20,23v-32,-2,-71,4,-99,-2v-7,-18,19,-8,23,-19r0,-213v3,-14,-35,0,-20,-23r96,0v5,0,2,8,3,12v-2,8,-26,-2,-23,13","w":266,"k":{"y":4,"a":-7,"C":13,"G":13,"O":13,"Q":13,"T":4,"u":4,"U":4,"v":18,"w":13,"Y":4,"l":-4,"A":4,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"S":4}},"L":{"d":"129,-256v14,29,-39,3,-30,28r0,214v42,-5,81,10,101,-24v9,-15,17,-27,21,-37v2,-5,13,-1,12,4v-2,6,-8,30,-17,72r-200,0v-5,0,-2,-8,-3,-12v3,-8,29,2,29,-12r2,-138v0,-33,-1,-55,-2,-67v2,-15,-11,-13,-24,-13v-7,-16,4,-14,24,-14","w":238,"k":{"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"y":7,"C":4,"G":4,"O":4,"Q":4,"T":45,"u":-4,"U":6,"V":32,"W":32,"v":7,"w":9,"Y":25,"l":-4,"A":4,"j":-4,"B":11,"D":11,"E":11,"F":11,"H":11,"I":11,"K":11,"L":11,"N":11,"P":11,"R":11}},"M":{"d":"232,1v-15,-29,38,-3,30,-27v3,-33,2,-152,2,-205v-8,0,-7,9,-15,29r-79,190v-6,10,-12,12,-16,2r-93,-223v0,18,-10,178,6,209v5,12,13,10,27,10v7,14,-3,14,-20,14r-70,1v1,-5,-2,-13,2,-15v59,13,27,-110,38,-145v-5,-34,17,-90,-32,-82v-8,-16,4,-16,24,-14v23,3,59,-9,73,5r69,175r73,-176v17,-9,63,-1,89,-5v3,1,4,15,-1,15v-14,0,-26,-3,-25,14r2,194v-4,27,15,14,28,22v3,16,-8,11,-26,11","w":356,"k":{"j":-4}},"N":{"d":"59,-133v6,37,-17,129,35,119v3,1,4,13,0,15r-82,0v-3,-1,-4,-13,0,-15v24,2,27,-3,28,-35r4,-150v1,-27,-19,-43,-43,-45v-2,-27,48,-3,79,-12v4,0,7,2,10,5r145,179r2,0r-4,-155v-2,-11,-16,-16,-31,-14v-7,-14,3,-16,22,-14v19,1,45,-5,59,2v4,22,-23,2,-23,31v0,56,-11,151,-8,214v1,17,-12,13,-19,7v-49,-52,-127,-146,-171,-205r-3,0r0,73","w":291,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"y":4,"a":4,"T":-4,"u":4,"A":4,"i":4}},"O":{"d":"294,-124v0,74,-54,129,-138,129v-79,0,-138,-48,-138,-130v0,-73,59,-138,139,-135v86,3,137,52,137,136xm150,-243v-103,0,-97,231,9,231v57,0,78,-52,78,-109v0,-65,-28,-122,-87,-122","w":312,"k":{"y":-11,"b":-7,"C":-4,"G":-4,"O":-4,"Q":-4,"T":2,"u":-7,"U":-4,"V":9,"W":9,"v":-11,"w":-11,"X":14,"Y":2,"h":3,"k":-4,"l":-9,"A":11,"j":-4,",":7,".":7,"x":-11,"z":-5,"t":-4}},"P":{"d":"221,-180v0,58,-59,79,-125,71r1,84v-2,23,34,-4,32,23v-20,6,-84,2,-115,1v-8,-23,28,-4,28,-23r0,-209v5,-19,-40,6,-28,-23v95,1,207,-17,207,76xm164,-183v0,-42,-27,-66,-68,-58r0,118v42,8,68,-16,68,-60","w":230,"k":{"c":17,"d":17,"e":17,"o":17,"q":17,"y":-5,"a":12,"T":-14,"u":-4,"Y":-22,"h":-5,"l":-9,"A":29,",":47,".":47,"B":-4,"D":-4,"E":-4,"F":-4,"H":-4,"I":-4,"K":-4,"L":-4,"N":-4,"P":-4,"R":-4,"s":11,"i":-4,"r":7,"n":7}},"Q":{"d":"86,-10v-113,-53,-73,-250,69,-250v82,0,142,51,140,129v-1,73,-45,116,-101,134v44,21,144,45,190,45v14,4,25,-19,36,-7v-4,18,-35,47,-56,47v-83,0,-156,-44,-229,-80v-19,-4,-31,-9,-49,-18xm76,-139v3,57,24,129,82,129v114,0,100,-233,-5,-233v-43,0,-79,53,-77,104","w":313,"k":{",":7,"y":-11,"b":-7,"C":-4,"G":-4,"O":-4,"Q":-4,"T":2,"u":-7,"U":-4,"V":9,"W":9,"v":-11,"w":-11,"X":14,"Y":2,"h":3,"k":-4,"l":-9,"A":11,"j":-4,".":7,"x":-11,"z":-5,"t":-4}},"R":{"d":"190,1v-26,-9,-39,-119,-95,-113r1,84v-4,26,33,0,26,29r-102,0v-4,0,-4,-13,-1,-15v12,0,25,1,25,-11r0,-198v2,-23,-15,-14,-26,-21v-3,-16,9,-12,26,-11r96,-1v39,-2,83,27,84,63v2,41,-30,66,-66,69v30,21,57,77,80,103v4,9,39,0,27,22v-32,0,-34,-2,-75,0xm168,-187v2,-39,-33,-64,-67,-53v-10,30,-3,78,-6,115v48,4,70,-23,73,-62","w":264,"k":{"a":-4,"C":5,"G":5,"O":5,"Q":5,"T":5,"u":-4,"U":2,"V":14,"W":14,"Y":9,"A":4,",":-7,".":-7,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"S":4,"t":-4}},"S":{"d":"37,-14v-3,0,-14,19,-17,5v3,-23,1,-51,8,-71v4,1,12,-3,12,3v0,29,24,68,60,65v37,4,60,-47,36,-73v-28,-31,-114,-32,-114,-105v0,-62,73,-83,127,-63v10,4,16,-20,22,-3v0,21,8,47,4,64v-5,1,-11,6,-13,0v-11,-26,-24,-50,-58,-52v-35,-2,-50,45,-29,65v32,31,114,30,114,105v0,45,-34,79,-79,79v-33,0,-55,-8,-73,-19","w":206,"k":{"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"y":-5,"a":-2,"u":-5,"v":-5,"w":-5,"h":-5,"k":-5,"l":-5,"j":-5,"t":-5,"i":-5,"r":-5,"m":-4,"n":-4,"p":-4}},"T":{"d":"253,-188v-25,-33,-30,-56,-95,-50r0,210v-3,26,33,0,32,26v-22,8,-81,-2,-117,3v-4,0,-3,-7,-3,-11v3,-12,33,5,33,-14r1,-214v-65,-4,-66,8,-98,49v-3,-2,-8,-1,-9,-6v9,-36,15,-59,17,-70v11,-16,17,13,36,8r93,2v25,-1,89,2,104,-16v10,5,8,29,14,80","w":265,"k":{"j":7,"c":34,"d":34,"e":34,"o":34,"q":34,"y":27,"a":31,"C":4,"G":4,"O":4,"Q":4,"T":-13,"u":32,"U":-4,"V":-6,"W":-6,"v":32,"w":34,"X":-4,"Y":-18,"h":-11,"A":40,",":45,".":45,"z":32,"J":-4,"M":-5,"B":-4,"D":-4,"E":-4,"F":-4,"H":-4,"I":-4,"K":-4,"L":-4,"N":-4,"P":-4,"R":-4,"Z":9,")":-10,"]":-10,"}":-10,"s":32,"i":-7,"r":32,"m":32,":":31,";":31,"-":9}},"U":{"d":"136,5v-88,0,-107,-36,-104,-143r0,-85v3,-25,-18,-13,-30,-21v-2,-18,12,-11,32,-11v28,0,64,-5,87,2v6,22,-37,4,-35,26v8,80,-28,210,58,210v88,0,65,-133,60,-208v-1,-13,-10,-18,-25,-16v-9,-17,6,-15,24,-14v19,1,45,-5,59,2v6,22,-30,3,-29,25v0,3,-1,24,-1,60v0,107,-8,173,-96,173","w":262,"k":{"y":4,"a":-5,"b":-20,"T":-14,"h":-18,"k":-11,"l":-18,"A":9,"z":4,"s":7,"i":-5}},"V":{"d":"193,-210v9,-17,2,-36,-22,-31v-8,-15,5,-16,23,-14v22,2,53,-5,70,2v1,8,0,14,-11,12v-43,10,-54,80,-70,116r-56,126v-5,9,-13,6,-17,-3r-88,-227v-4,-11,-12,-13,-25,-12v-8,-17,5,-16,26,-14v30,2,69,-5,94,2v8,26,-44,-5,-33,33v11,37,37,112,51,157r2,0v12,-29,24,-56,33,-82","w":245,"k":{"c":29,"d":29,"e":29,"o":29,"q":29,"y":14,"a":31,"C":9,"G":9,"O":9,"Q":9,"T":-7,"u":15,"h":-13,"A":32,",":32,".":32,"S":4,")":-33,"]":-33,"}":-33,"t":13,"i":-11,"r":17,"m":16,":":6,";":6,"-":22}},"W":{"d":"332,-232v0,-15,-36,-1,-21,-24r72,0v5,3,4,20,-7,15v-25,8,-17,12,-31,50r-70,187v-5,13,-16,15,-20,1r-64,-180v-19,31,-56,145,-71,181v-4,10,-12,13,-16,2r-81,-228v0,-20,-35,-5,-23,-28r95,0v5,0,2,8,3,12v-2,8,-23,-3,-18,15r49,157v17,-32,39,-99,50,-140v0,-15,-7,-32,-25,-29v-4,-3,-4,-20,7,-15r88,0v5,0,2,8,3,12v-3,7,-27,-3,-21,17r50,155r2,0v33,-90,49,-144,49,-160","w":378,"k":{"c":29,"d":29,"e":29,"o":29,"q":29,"y":14,"a":31,"C":9,"G":9,"O":9,"Q":9,"T":-7,"u":15,"h":-13,"A":32,",":32,".":32,"S":4,")":-33,"]":-33,"}":-33,"t":13,"i":-11,"r":17,"m":16,":":6,";":6,"-":22}},"X":{"d":"94,-233v2,8,34,71,41,76v15,-26,36,-47,46,-76v5,-14,-33,0,-19,-23r83,0v5,0,4,13,1,15v-14,0,-26,0,-33,6v-8,6,-31,37,-70,92v37,63,63,102,75,120v2,15,45,-1,31,24r-107,0v-5,-2,-5,-18,5,-15v7,0,11,-2,11,-6v0,-3,-16,-34,-47,-84v-33,50,-50,76,-50,81v-4,16,35,1,20,24r-86,0v-5,-4,-2,-20,9,-15v51,-11,69,-73,100,-105r-55,-92v-17,-26,-13,-30,-47,-30v-6,-17,5,-14,27,-14r84,-1v5,0,2,8,3,12v-2,7,-24,-2,-22,11","w":249,"k":{"a":-5,"C":11,"G":11,"O":11,"Q":11,"T":4,"X":7,"A":11}},"Y":{"d":"134,-107v7,39,-18,97,24,93v5,0,2,8,3,12v-19,8,-74,-2,-107,3v-4,0,-6,-15,0,-15v10,0,25,2,25,-8r1,-82r-72,-129v-3,-12,-37,-2,-24,-23r106,0v6,4,2,20,-9,15v-16,6,-8,14,2,34r42,85v18,-36,41,-67,54,-107v5,-16,-38,-5,-23,-27r81,0v5,0,2,8,3,12v-5,7,-25,-1,-30,11v-7,7,-70,115,-76,126","w":220,"k":{"j":-4,"c":29,"d":29,"e":29,"o":29,"q":29,"a":27,"C":11,"G":11,"O":11,"Q":11,"T":-15,"u":14,"V":-8,"W":-8,"v":14,"X":-4,"Y":-29,"l":-32,"A":22,",":14,".":14,")":-35,"]":-35,"}":-35,"t":11,"i":-18,"r":18,":":7,";":7,"-":27}},"Z":{"d":"218,5v-41,-7,-141,-5,-203,-5v-10,1,-7,-6,-5,-10r165,-232v-32,3,-73,-7,-95,7v-14,4,-40,59,-56,49v1,-23,15,-46,21,-68v2,-7,6,-3,14,-3v20,3,135,2,178,0v5,0,9,5,5,9r-168,234v37,-2,84,3,114,-4v15,-3,44,-58,61,-46v1,7,-24,64,-31,69","w":253,"k":{"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"a":-4,"C":4,"G":4,"O":4,"Q":4,"T":-4,"u":-4,"A":-4,"i":-4}},"[":{"d":"28,-266v20,-7,61,-4,84,-1v7,24,-32,4,-43,16r0,295v0,3,1,5,3,5v14,2,52,-8,40,13r-80,0v-3,0,-4,-1,-4,-4r0,-324","w":126,"k":{"T":-6,"V":-19,"W":-19,"Y":-22,"J":-48}},"\\":{"d":"3,-251v0,-9,19,-14,24,-11r105,253v0,9,-22,17,-24,9","w":135},"]":{"d":"94,62r-80,0v-5,0,-3,-6,-3,-10v8,-8,31,-1,44,-3v7,-93,-1,-202,2,-300v-5,-15,-46,12,-43,-16v21,-6,55,0,80,-2v2,0,4,1,4,3r0,324v0,3,-1,4,-4,4","w":126},"^":{"d":"5,-90r77,-150r17,0r76,150r-31,0v-19,-35,-33,-75,-55,-107r-53,107r-31,0"},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0"},"`":{"d":"72,-182v2,4,-4,8,-8,7v-16,-17,-62,-26,-49,-57v30,-21,42,34,57,50","w":82},"a":{"d":"14,-28v-9,-36,68,-58,77,-68v0,-22,4,-43,-20,-43v-15,0,-27,10,-20,27v2,20,-39,31,-39,8v0,-39,47,-49,79,-52v63,-6,44,61,48,112v-4,22,8,32,18,18v3,-4,12,2,10,7v-8,27,-61,35,-71,2v-18,20,-83,40,-82,-11xm60,-50v-8,27,24,45,32,20r0,-51v-14,7,-27,14,-32,31","w":164},"b":{"d":"178,-79v0,59,-69,106,-132,75v-7,4,-13,12,-24,8r0,-199v2,-28,-8,-29,-26,-36r0,-5v19,-9,50,-19,72,-29v10,22,-3,87,0,126v43,-38,110,-8,110,60xm69,-124v3,45,-12,115,25,115v28,0,36,-26,36,-58v0,-44,-24,-78,-61,-57","w":189,"k":{"y":-2,"v":-4,"w":-2,"h":2,"k":2,",":11,".":11,"x":4,"z":-2}},"c":{"d":"11,-67v-2,-49,34,-88,80,-89v34,-1,58,13,58,35v0,11,-8,16,-19,17v-27,3,-24,-39,-47,-37v-43,15,-28,126,26,119v23,5,32,-19,45,-7v-2,22,-41,33,-68,34v-47,3,-74,-32,-75,-72","w":156,"k":{"y":-9,"a":-4,"h":-2,"k":-4,"l":-7}},"d":{"d":"11,-63v-3,-64,44,-105,107,-89v-4,-38,13,-90,-27,-95v0,-4,-2,-10,3,-10r70,-8v3,0,3,2,3,6v-2,25,-2,147,-2,201v1,33,0,37,26,39v1,4,2,9,-2,10r-54,13v-8,1,-7,-15,-10,-21v-10,11,-30,22,-49,22v-41,1,-63,-33,-65,-68xm98,-19v35,0,17,-58,20,-90v2,-22,-12,-31,-30,-33v-50,9,-34,123,10,123","w":193,"k":{"l":-7}},"e":{"d":"150,-104v2,9,2,14,-10,14r-82,0v-12,59,57,88,86,46v4,-3,16,1,9,11v-10,36,-87,49,-117,21v-47,-45,-22,-150,54,-144v36,3,55,22,60,52xm104,-111v1,-14,-6,-30,-18,-31v-16,0,-25,13,-28,39v15,-2,45,6,46,-8","w":162,"k":{"y":-2,"v":-4,"w":-4,"j":-4,",":3,".":3,"x":-2,"z":-1}},"f":{"d":"102,-247v-33,3,-21,60,-22,96v14,2,36,-4,44,3v-2,6,2,16,-7,16r-37,0r-1,108v-5,20,39,0,25,25r-95,0v-5,0,-2,-7,-3,-11v4,-8,25,5,25,-14r-1,-108v-8,-2,-24,5,-25,-4v2,-5,-2,-15,6,-15r19,0v-5,-65,35,-109,91,-114v34,-3,52,38,18,43v-19,3,-26,-22,-37,-25","w":117,"k":{"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"g":-2,",":6,".":6,")":-47,"]":-47,"}":-47,"\"":-42,"'":-42,"s":-4,"t":-7}},"g":{"d":"176,36v0,42,-48,63,-98,62v-40,-1,-72,-7,-75,-39v-2,-17,17,-26,37,-40v-41,-14,-27,-52,7,-68v-55,-28,-35,-107,38,-107v22,0,39,7,51,20v15,-15,50,-21,51,6v0,8,-8,16,-16,16v-11,0,-14,-20,-28,-9v19,47,-23,92,-81,79v-9,6,-14,10,-14,16v5,18,20,13,50,13v45,0,78,14,78,51xm58,-91v0,19,7,34,25,34v14,0,21,-16,21,-51v1,-24,-4,-33,-21,-35v-18,4,-25,22,-25,52xm46,35v-16,27,11,49,44,49v20,0,47,-11,47,-31v0,-32,-45,-31,-78,-27v-5,1,-10,4,-13,9","k":{"c":2,"d":2,"e":2,"o":2,"q":2,"y":-18,"a":-4,"g":-4,",":4,".":4,"i":-7,"r":-9,"f":-7,"m":-7,"n":-7,"p":-9}},"h":{"d":"102,-135v-38,2,-25,67,-27,108v-6,23,23,5,12,28r-82,0v-6,-4,-5,-17,8,-14v18,-1,13,-8,14,-29r0,-150v1,-26,-13,-31,-27,-39v0,-6,0,-7,6,-9v17,-3,42,-18,66,-25v3,0,4,3,3,9r-1,122r3,0v29,-43,113,-19,98,47r-1,69v-2,10,35,-2,20,19r-81,0v-4,0,-3,-7,-3,-11v0,-4,4,-3,7,-3v21,-8,8,-67,8,-102v0,-13,-10,-21,-23,-20","w":201},"i":{"d":"23,-208v0,-27,53,-30,52,-1v0,13,-11,24,-27,24v-14,0,-26,-9,-25,-23xm28,-102v4,-22,-19,-15,-21,-32v19,-10,44,-16,67,-22v11,8,-1,95,3,134v-3,18,33,-1,20,23r-89,0v-4,0,-5,-13,0,-14v9,-1,20,4,20,-7v0,-21,1,-58,0,-82","w":104},"j":{"d":"49,-235v15,0,27,11,27,25v0,15,-13,25,-30,25v-15,0,-28,-11,-28,-25v0,-14,15,-25,31,-25xm-17,55v16,-2,21,24,34,24v6,0,10,-7,10,-21v0,-56,5,-123,-4,-172v-1,-6,-29,-9,-17,-21v23,-7,43,-16,68,-21v8,5,-1,78,2,114v6,86,-15,130,-80,140v-32,5,-41,-39,-13,-43","w":97,"k":{",":2,".":2}},"k":{"d":"11,1v-10,-20,19,-9,16,-22r0,-186v3,-21,-13,-22,-24,-30r0,-6v14,-9,49,-14,71,-22v8,6,-2,119,1,177v18,-5,37,-30,44,-44v-1,-8,-18,-6,-9,-20r72,0v4,2,4,17,-5,13v-22,2,-52,30,-66,43r67,78v6,7,31,1,19,19r-82,0v-4,1,-3,-6,-3,-10v20,-10,0,-17,-30,-62v-2,-3,-5,-5,-8,-5r0,54v-4,15,27,2,14,23r-77,0","w":188},"l":{"d":"-2,-239v15,-9,59,-19,75,-26v9,65,-1,166,4,241v-5,20,33,0,23,25r-95,0v-3,0,-4,-14,2,-14v13,1,21,0,21,-15r-1,-179v4,-18,-27,-15,-29,-32","w":104,"k":{"y":-4,"v":-4,"w":-4,"l":-2}},"m":{"d":"102,-133v-36,1,-26,60,-26,98v0,20,3,22,14,23v5,25,-34,7,-61,12v-10,0,-25,7,-21,-12v7,-3,22,3,21,-10v-4,-36,13,-90,-19,-101v-4,-2,-3,-7,0,-10v18,-7,35,-18,55,-23v11,1,2,21,10,25v15,-28,81,-37,94,0v34,-39,108,-30,101,39r-2,65v-5,21,31,5,19,28r-76,0v-4,1,-3,-6,-3,-10v1,-8,13,-1,13,-10v-1,-39,16,-113,-22,-113v-12,0,-27,12,-27,34r0,71v-5,21,25,6,14,28r-74,0v-6,-3,-4,-18,6,-14v14,-5,8,-56,8,-78v0,-29,1,-42,-24,-42","w":296,"k":{"u":4,"v":2,"w":2}},"n":{"d":"29,-100v6,-16,-27,-19,-17,-33v18,-7,35,-18,55,-23v10,0,3,17,11,20v24,-31,100,-28,99,31r-2,80v-5,21,33,2,20,26r-81,0v-4,-2,-4,-17,6,-14v17,-9,7,-54,9,-84v1,-24,-7,-35,-26,-36v-40,-1,-21,70,-27,109v-2,15,22,6,12,25v-25,-2,-59,5,-78,-3v-6,-16,19,-6,19,-18r0,-80","w":203,"k":{"y":2,"T":25,"v":2,"w":2}},"o":{"d":"178,-76v-1,43,-38,81,-85,81v-53,0,-82,-32,-82,-83v0,-44,39,-78,84,-78v44,0,84,35,83,80xm93,-141v-41,0,-35,83,-22,115v4,10,13,16,24,16v41,0,40,-131,-2,-131","w":189,"k":{"y":-2,"v":-4,"w":-2,"h":2,"k":2,",":11,".":11,"x":4,"z":-2}},"p":{"d":"74,-1v7,30,-17,91,22,86v4,0,5,13,0,14r-88,0v-4,0,-3,-7,-3,-11v3,-7,22,3,22,-12r-2,-187v-1,-8,-27,-10,-18,-23v18,-7,39,-17,58,-22v6,1,4,17,8,21v33,-41,110,-16,110,47v0,60,-50,111,-109,87xm105,-9v21,0,29,-22,29,-48v1,-62,-24,-89,-60,-65v3,44,-15,113,31,113","w":194,"k":{"y":-2,"v":-4,"w":-2,"h":2,"k":2,",":11,".":11,"x":4,"z":-2}},"q":{"d":"11,-65v0,-61,58,-112,121,-83v13,-1,30,-14,40,-5v-6,45,-3,178,-3,228v0,17,27,2,17,24r-87,0v-4,0,-3,-7,-3,-11v1,-8,22,2,22,-10v0,-23,6,-63,0,-86v-43,31,-107,4,-107,-57xm91,-143v-50,9,-40,126,5,126v10,0,18,-3,24,-8v-3,-46,14,-114,-29,-118","w":192,"k":{",":2,".":2}},"r":{"d":"91,-123v-26,13,-12,62,-15,96v-1,17,12,14,26,14v8,16,-6,13,-24,13r-72,1v-3,-2,-4,-15,2,-14v36,7,16,-42,21,-79v3,-25,-18,-22,-24,-38v17,-11,38,-19,59,-26v10,3,5,22,8,32r3,0v11,-23,24,-34,42,-34v12,-1,19,8,19,20v0,22,-30,25,-45,15","w":131,"k":{"c":2,"d":2,"e":2,"o":2,"q":2,"y":-18,"a":-2,"b":-4,"u":-10,"v":-19,"w":-19,"h":-2,"k":-2,"l":-7,",":22,".":22,"x":-14,"z":-4,"t":-9,"i":-7,"r":-7,"f":-7,"m":-7,"n":-7,"p":-7,":":-5,";":-5}},"s":{"d":"15,-102v0,-51,72,-70,103,-40v2,12,11,36,-6,32v-12,-11,-23,-30,-43,-32v-18,-1,-28,22,-15,33v25,13,79,15,74,59v6,52,-77,71,-109,40v0,-12,-6,-28,-2,-38v23,-1,26,44,55,40v19,2,29,-28,14,-38v-22,-14,-71,-16,-71,-56","w":139},"t":{"d":"120,-14v-15,28,-92,27,-92,-14r1,-102v-15,2,-39,-3,-18,-14v17,-9,47,-39,62,-51v11,5,2,30,4,44v15,2,40,-4,48,3v-3,6,-1,16,-7,18r-42,0v3,42,-18,133,38,109v3,-1,4,5,6,7","w":122,"k":{"y":-5,"b":-3,"u":-2,"v":-4,"w":-4,"i":-2,"r":-2,"f":-2,"m":-2,"n":-2,"p":-4}},"u":{"d":"24,-126v1,-16,-23,-7,-20,-22v15,-8,44,0,65,-4v11,12,-1,72,4,106v2,16,5,30,23,29v39,-2,21,-69,25,-109v2,-17,-25,-5,-21,-25r68,-1v3,0,3,1,3,3v-3,25,-1,94,-1,117v0,26,30,-1,22,23r-58,14v-14,2,-3,-19,-11,-24v-9,15,-35,29,-61,23v-45,-10,-41,-73,-38,-130","w":196},"v":{"d":"18,-125v-5,-20,-28,-6,-26,-24v18,-8,59,1,90,-3v5,0,3,6,3,10v0,7,-18,0,-16,10v2,11,19,66,31,80v8,-23,28,-49,28,-82v-3,-8,-23,-1,-14,-18r68,0v8,18,-17,10,-24,19v-18,13,-58,138,-75,138v-24,-15,-52,-110,-65,-130","w":170,"k":{"c":2,"d":2,"e":2,"o":2,"q":2,"b":-5,"v":-4,"k":-5,"l":-5,",":27,".":27,"s":-2,"r":-2,":":-7,";":-7}},"w":{"d":"13,-129v-4,-14,-27,-6,-17,-23r75,0v4,3,4,16,-5,13v-4,0,-5,3,-3,9v10,24,13,53,26,74v6,-25,30,-51,19,-77v-4,-3,-24,-4,-12,-17v23,1,52,-3,72,2v5,14,-12,9,-11,19v10,23,14,51,27,71v6,-23,22,-49,21,-74v-1,-10,-25,-3,-15,-20r60,0v4,2,4,16,-4,13v-7,0,-13,3,-15,8r-55,132v-3,6,-16,5,-16,-4v-14,-30,-22,-66,-39,-93r-40,96v-4,7,-12,7,-16,-2","w":245,"k":{"c":2,"d":2,"e":2,"o":2,"q":2,",":27,".":27,"t":-4,"r":-4,"p":-2,":":-7,";":-7}},"x":{"d":"57,-69v-28,-39,-28,-63,-65,-72v-1,-24,47,-4,79,-11v3,1,4,15,-2,13v-9,14,12,28,16,40v6,-11,21,-20,21,-35v0,-7,-20,-2,-11,-18v19,2,46,-4,60,3v5,17,-22,6,-28,21v-12,11,-23,27,-34,41r48,67v5,11,27,1,18,21r-78,0v-5,0,-3,-6,-3,-10v0,-6,14,-3,8,-14r-20,-33v-5,8,-21,23,-26,41v4,1,23,3,11,16r-59,0v-4,1,-3,-6,-3,-10v3,-9,17,-1,24,-9v7,-5,39,-42,44,-51","w":154,"k":{"c":2,"d":2,"e":2,"o":2,"q":2,"v":2}},"y":{"d":"72,-139v-21,4,19,83,17,92r2,0v4,-14,35,-69,30,-88v-3,-7,-26,0,-14,-17r59,0v3,1,5,16,-3,13v-5,0,-10,3,-14,8r-106,216v-9,16,-49,19,-49,-8v0,-17,16,-25,32,-17v18,9,14,-1,25,-21v8,-14,11,-24,13,-31v-12,-17,-39,-148,-68,-147v-5,0,-2,-7,-3,-11v18,-6,55,1,83,-2v5,0,2,7,3,11v0,4,-4,1,-7,2","w":159,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"b":-4,"v":-4,"l":-4,"j":-5,",":31,".":31,"z":-4,"s":-4,"t":-7,"i":-4,"r":-4,"f":-5,"m":-4,"n":-4,"p":-4,":":-11,";":-11}},"z":{"d":"68,-13v47,2,55,-1,87,-37v4,-5,11,0,10,5r-24,49v-26,-5,-89,-3,-127,-4v-5,0,-6,-3,-2,-9r84,-130v-49,-2,-57,7,-82,40v-3,2,-11,-2,-9,-6r20,-52v33,11,88,1,129,8v1,1,1,3,0,5","w":163,"k":{"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"y":-9,"a":-5}},"{":{"d":"113,-258v-87,0,5,121,-64,145v-10,3,-4,11,3,14v65,25,-26,150,61,150v5,2,7,13,-4,11v-52,1,-78,-13,-80,-57v-1,-34,38,-98,-9,-106v-5,0,-7,-2,-7,-6v0,-5,2,-7,7,-7v49,-3,7,-70,9,-98v2,-43,28,-57,80,-57v9,0,11,10,4,11","w":126,"k":{"T":-6,"V":-19,"W":-19,"Y":-22,"J":-48}},"|":{"d":"76,90v0,7,-24,7,-26,0r2,-364v8,2,24,-5,24,4r0,360","w":126},"}":{"d":"13,51v91,1,-11,-126,69,-155v5,-9,-10,-9,-14,-14v-53,-32,29,-140,-55,-140v-5,-2,-7,-13,4,-11v51,0,80,13,80,57v0,30,-36,92,9,99v5,0,7,2,7,6v0,5,-2,7,-7,7v-51,5,-6,73,-9,105v-4,43,-28,57,-80,57v-9,0,-11,-10,-4,-11","w":126},"~":{"d":"19,-54v-7,-71,61,-71,94,-35v18,4,25,-4,24,-29r24,0v7,61,-44,73,-81,42v-22,-18,-38,-7,-37,22r-24,0"},"\u00a9":{"d":"152,-192v-41,0,-48,78,-25,103v26,28,64,15,87,-4v2,3,8,3,4,8v-39,66,-148,37,-148,-44v0,-58,67,-97,119,-69v7,7,5,-17,16,-3v0,20,6,37,4,49r-6,2v-14,-17,-21,-42,-51,-42xm280,-127v0,75,-55,132,-131,132v-77,0,-132,-56,-132,-132v0,-74,60,-133,132,-133v75,0,131,57,131,133xm40,-127v2,72,40,113,109,115v72,2,109,-48,109,-115v0,-70,-42,-114,-109,-116v-64,-2,-111,49,-109,116","w":297},"\u00a0":{"w":72,"k":{"T":16,"V":5,"W":5,"Y":5}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2000, 2001 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * Adobe Caslon is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Designer:
 * Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Adobe Caslon Pro","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 5 5 2 5 5 11 9 10 3","ascent":"265","descent":"-95","x-height":"4","cap-height":"1","bbox":"-74.0594 -275 370.953 108.25","underline-thickness":"18","underline-position":"-18","slope":"-22","unicode-range":"U+0020-U+00A9"},"glyphs":{" ":{"w":82,"k":{"T":16,"V":5,"W":5,"Y":5}},"!":{"d":"48,-17v1,12,-8,21,-19,21v-7,-1,-17,-8,-17,-19v0,-23,36,-26,36,-2xm79,-228v2,-25,32,-24,34,-3v-10,39,-48,122,-62,162v-2,4,-6,4,-7,0","w":97},"\"":{"d":"78,-247v29,17,-19,58,-21,81r-9,-2v7,-15,3,-84,30,-79xm121,-247v29,17,-19,58,-21,81r-9,-2v7,-15,3,-84,30,-79","w":84},"#":{"d":"110,-89r18,-53r-35,0r-18,53r35,0xm105,-71r-35,0r-28,76v-5,-2,-19,4,-16,-4r25,-72r-34,0v-10,-22,20,-18,39,-18r18,-53v-12,-1,-30,3,-39,-2v3,-5,1,-16,9,-16r34,0v10,-23,14,-53,28,-72v6,1,18,-4,15,5r-23,67r35,0v10,-23,14,-52,27,-72v5,1,18,-4,15,4r-23,68v11,1,30,-3,36,2v-3,5,0,16,-9,16r-32,0r-18,53r39,0v1,6,0,17,-8,18r-36,0v-10,25,-15,55,-29,76v-5,-1,-16,3,-15,-3"},"$":{"d":"39,-34v-6,-3,-9,15,-17,13v2,-21,15,-50,24,-70v3,1,8,2,6,5v-6,24,-1,43,14,55r22,-87v-40,-26,-27,-101,25,-102v5,-10,1,-33,17,-29v1,9,-5,20,-6,29v5,0,10,2,16,4v5,-10,0,-35,16,-31v3,9,-5,25,-6,36v9,6,17,8,21,-5v3,0,6,-1,5,3v-4,19,-4,42,-11,58v-3,0,-7,1,-7,-3v0,-16,-3,-29,-11,-39r-20,80v46,34,22,104,-26,107r-8,34v-1,6,-5,2,-9,1v-5,-8,5,-24,6,-35v-7,0,-12,-2,-17,-3v-6,12,-2,43,-19,38v-2,-12,7,-29,9,-42v-9,-3,-16,-14,-24,-17xm96,-109r-20,85v5,2,11,3,17,3r18,-74v-4,-4,-10,-11,-15,-14xm118,-124r19,-81v-4,-3,-10,-4,-16,-4r-17,72v9,8,13,13,14,13xm111,-208v-27,3,-34,44,-16,63xm104,-22v25,-6,37,-43,16,-64"},"%":{"d":"100,-221v-36,6,-64,73,-48,114v2,5,8,7,12,7v35,-7,52,-60,54,-100v0,-12,-6,-23,-18,-21xm138,-193v2,43,-33,104,-73,103v-25,0,-38,-19,-38,-44v0,-47,30,-98,75,-98v24,0,35,15,36,39xm73,3v-4,5,-17,-2,-13,-9r147,-225v5,-2,15,3,13,9xm254,-100v0,43,-33,103,-73,103v-25,0,-37,-18,-37,-44v1,-48,29,-95,74,-98v24,-2,36,15,36,39xm216,-129v-34,10,-64,75,-47,115v3,5,7,7,11,7v35,-6,53,-59,54,-100v0,-13,-7,-22,-18,-22","w":252},"&":{"d":"262,-144v43,73,-17,156,-101,152v-71,-4,-121,-26,-125,-93v-1,-34,21,-64,42,-74v-29,-34,-10,-98,40,-94v35,-6,47,44,18,52v0,-11,-2,-31,-22,-31v-32,0,-46,46,-26,70v10,-4,29,-3,31,6v1,29,-29,9,-41,8v-12,8,-21,28,-21,49v0,51,49,80,105,80v54,0,97,-33,101,-77v5,-52,-83,-81,-87,-23v-1,11,10,36,14,20v0,-7,8,-14,16,-14v10,1,17,7,17,18v0,9,-10,19,-22,18v-20,-1,-38,-20,-38,-44v0,-44,44,-49,93,-49v38,0,58,-11,58,-32v0,-11,-10,-25,-21,-25v-8,4,-2,26,-18,23v-9,1,-16,-6,-16,-13v10,-42,69,-18,69,16v0,35,-29,49,-66,57","w":306},"'":{"d":"80,-247v29,17,-19,59,-22,81r-9,-2v8,-14,4,-84,31,-79","w":51},"(":{"d":"162,-251v-74,60,-133,186,-102,319v0,2,-1,4,-5,5v-17,0,-13,-22,-18,-43v-29,-129,40,-230,117,-288v2,-2,5,-1,7,2v1,2,1,4,1,5","w":123,"k":{"T":-22,"V":-25,"W":-25,"Y":-29,"J":-47}},")":{"d":"-18,66v76,-58,132,-185,103,-319v0,-2,0,-4,4,-5v17,1,11,23,19,43v24,131,-40,230,-117,288v-3,4,-9,-4,-9,-7","w":123},"*":{"d":"83,-193v3,-17,-12,-52,11,-54v6,0,9,2,9,7v1,6,-6,23,-17,47v11,-6,42,-49,52,-20v-3,16,-39,14,-52,22v7,2,47,9,46,18v0,16,-26,17,-30,3v-6,-6,-10,-14,-17,-19v1,11,10,57,-10,53v-6,0,-9,-3,-9,-8v-2,-4,8,-23,16,-45v-12,10,-25,26,-42,31v-5,0,-11,-3,-10,-9v-3,-17,43,-18,52,-25v-14,-6,-40,-5,-45,-19v13,-30,35,6,46,18","w":108},"+":{"d":"107,-14r-22,0r0,-63r-59,0r0,-19r59,0r0,-62r22,0r0,62r59,0r0,19r-59,0r0,63"},",":{"d":"55,-10v0,34,-24,49,-51,56v-11,-14,33,-17,28,-40v2,-14,-17,-19,-18,-34v0,-10,6,-17,16,-17v14,-1,26,22,25,35","w":90,"k":{" ":11}},"-":{"d":"26,-78v-5,-1,-5,-17,0,-20r116,0v5,1,5,18,0,20r-116,0","w":150},".":{"d":"54,-16v0,10,-9,21,-20,20v-11,0,-20,-9,-19,-20v1,-9,8,-19,18,-19v12,0,20,9,21,19","w":90,"k":{" ":11}},"\/":{"d":"-18,-6r173,-238v3,-5,20,1,15,8r-173,238v-5,8,-10,-2,-16,-3v-1,-1,-1,-3,1,-5","w":118},"0":{"d":"190,-166v-1,80,-43,166,-115,171v-38,3,-57,-32,-56,-72v2,-77,46,-160,118,-165v36,-3,53,29,53,66xm166,-179v3,-40,-41,-49,-65,-21v-29,34,-52,89,-56,145v-1,25,10,45,29,46v64,-14,86,-99,92,-170"},"1":{"d":"17,1v-8,-15,12,-13,24,-13v40,0,33,-26,46,-70r31,-102v-4,-22,-47,23,-55,2v-1,-2,0,-3,2,-4v31,-15,58,-34,92,-46v8,1,3,6,1,13r-62,189v-11,26,23,12,38,21v2,15,-20,9,-34,10r-83,0"},"2":{"d":"157,-51v-7,12,-22,50,-31,58v-22,-14,-86,-6,-126,-6v-8,-12,21,-23,29,-31v42,-42,106,-69,118,-138v8,-45,-56,-56,-74,-21v-10,5,-10,29,-23,20v4,-29,40,-63,75,-63v32,0,51,23,51,54v0,83,-86,112,-135,154r64,0v25,0,33,-16,46,-30"},"3":{"d":"155,-82v0,46,-52,87,-97,87v-29,0,-54,-16,-55,-40v0,-6,5,-14,12,-14v11,-1,15,11,14,21v-1,12,15,23,30,22v58,6,96,-96,34,-118v-4,-4,-1,-9,5,-8v19,-4,53,-27,50,-53v-4,-50,-68,-21,-76,4v-2,6,-7,0,-10,-1v9,-33,43,-50,70,-50v24,0,43,16,43,35v0,33,-23,47,-47,63v18,11,27,28,27,52"},"4":{"d":"10,-67v-9,-3,-5,-9,3,-16r164,-145v4,-3,7,-4,10,-4v5,0,5,4,2,12r-50,134r37,0v7,3,-3,18,-9,19r-36,0r-26,66v-6,0,-29,9,-22,-8r23,-58r-96,0xm40,-88v19,6,50,0,73,2r38,-95v3,-7,-2,-7,-4,-4r-104,92v-2,1,-3,4,-3,5"},"5":{"d":"10,-11v7,-26,27,2,48,2v36,0,68,-30,68,-62v0,-39,-33,-55,-72,-58v5,-32,24,-64,33,-95v25,-12,80,12,95,-17v2,-2,11,4,8,6v-12,11,-11,34,-32,34r-64,0v-5,16,-16,36,-18,51v41,2,82,26,78,66v-5,54,-45,87,-104,89v-16,0,-38,-3,-40,-16"},"6":{"d":"167,-89v0,47,-41,96,-86,94v-91,-4,-45,-138,-7,-171v30,-26,56,-56,97,-66v6,0,4,8,0,9v-45,23,-74,54,-95,97v36,-26,91,-11,91,37xm51,-49v0,23,9,43,32,42v36,-2,55,-45,56,-82v0,-19,-14,-37,-33,-36v-39,2,-53,35,-55,76"},"7":{"d":"73,-235v12,-13,5,16,24,8r94,0v6,10,-3,14,-16,36v-39,68,-63,128,-104,192v-21,10,-26,-7,-13,-24v46,-61,95,-157,109,-180v-46,1,-100,-9,-114,30v-2,4,-12,-1,-9,-5"},"8":{"d":"128,-109v46,38,10,114,-52,114v-34,0,-54,-18,-54,-48v0,-43,39,-54,66,-70v-11,-15,-29,-29,-29,-54v0,-34,37,-65,77,-65v29,0,52,16,52,42v0,41,-36,60,-64,75v0,0,1,3,4,6xm46,-41v0,19,16,36,31,37v51,2,57,-72,24,-94v-3,-3,-4,-5,-5,-6v-24,12,-50,26,-50,63xm129,-220v-55,4,-56,63,-14,97v26,-15,49,-27,50,-62v0,-17,-14,-37,-36,-35"},"9":{"d":"42,-138v0,-45,39,-97,85,-94v91,4,45,139,7,172v-29,25,-60,56,-102,65v-5,1,-7,-6,-3,-9v50,-23,76,-48,101,-94v-29,29,-88,8,-88,-40xm99,-98v41,-2,57,-42,57,-83v0,-26,-10,-39,-31,-39v-40,0,-56,46,-56,85v0,19,10,37,30,37"},":":{"d":"49,-16v1,11,-9,21,-20,20v-11,0,-20,-9,-19,-20v1,-9,8,-19,19,-19v12,0,19,10,20,19xm89,-131v1,11,-9,19,-20,19v-11,0,-20,-8,-19,-19v0,-9,8,-19,19,-19v12,0,19,10,20,19","w":90,"k":{" ":11}},";":{"d":"57,-10v-2,33,-25,49,-52,56v-11,-14,34,-16,28,-40v2,-14,-17,-20,-18,-34v0,-10,6,-17,16,-17v14,-1,26,22,26,35xm83,-131v0,10,-10,19,-20,19v-11,0,-20,-8,-19,-19v0,-9,8,-19,19,-19v12,0,20,10,20,19","w":90,"k":{" ":11}},"<":{"d":"142,-14r-112,-67r0,-12r112,-65r0,23v-25,17,-56,28,-79,48r79,48r0,25"},"=":{"d":"26,-125r140,0r0,20r-140,0r0,-20xm26,-70r140,0r0,19r-140,0r0,-19"},">":{"d":"45,-158r112,66r0,12r-112,66r0,-24v26,-17,57,-28,80,-48r-80,-48r0,-24"},"?":{"d":"59,-201v1,-24,26,-46,55,-46v68,0,63,92,16,109v-23,15,-53,24,-70,44v-11,23,20,34,40,24v8,-4,11,-13,18,-6v-15,36,-78,30,-73,-14v7,-63,103,-48,103,-114v0,-17,-16,-31,-36,-30v-21,0,-41,13,-42,33v-1,11,9,21,16,13v-6,-22,29,-31,31,-10v1,13,-15,26,-28,25v-17,0,-31,-9,-30,-28xm83,-14v0,8,-8,19,-18,18v-10,0,-19,-8,-19,-18v1,-10,7,-19,18,-19v10,0,19,9,19,19","w":154},"@":{"d":"170,-181v-26,-4,-72,69,-69,95v0,7,2,11,8,11v27,-7,74,-57,75,-88v1,-8,-6,-19,-14,-18xm46,-95v-6,79,91,107,151,73r4,9v-13,11,-48,18,-74,18v-62,0,-109,-37,-106,-95v4,-90,65,-157,153,-157v56,0,91,35,91,91v0,49,-43,102,-97,96v-26,-3,-7,-28,-2,-52v-14,19,-44,51,-72,52v-11,0,-17,-8,-17,-20v0,-51,48,-111,97,-111v10,0,17,4,21,12v2,-8,9,-11,20,-9v-1,23,-39,83,-37,108v0,5,3,7,10,7v30,-2,57,-46,56,-86v-2,-48,-26,-77,-74,-75v-73,2,-119,65,-124,139","w":252},"A":{"d":"183,-43v-7,22,-5,33,19,31v8,7,0,15,-10,13r-78,0v-7,-5,-2,-16,8,-13v41,-4,33,-64,48,-96r-64,0v-19,26,-54,58,-65,87v-6,16,42,0,23,22r-91,-2v2,-5,1,-13,10,-11v14,0,28,-9,43,-27r167,-199v8,-4,33,-6,39,-9v3,0,4,2,3,4xm115,-121r59,0r28,-95v1,-2,-1,-4,-3,-4v-2,0,-4,-1,-5,1","w":222,"k":{"p":-4,"u":-4,"v":-4,"w":-4,"a":-2,"b":-4,"g":-4,"h":-4,"i":-4,"j":-7,"k":-4,"f":-7,"l":-4,"m":-4,"n":-4,"r":-4,"s":-4,"t":-4,"x":-4,"y":-4,"z":-4,"C":4,"G":4,"O":4,"Q":4,"T":5,"U":-4,"V":2,"W":2,"X":14,"Y":-14}},"B":{"d":"190,-100v41,60,-22,113,-108,101v-25,-3,-57,3,-78,-3v-2,-17,29,-4,34,-16v26,-60,39,-132,56,-200v5,-15,-38,0,-31,-21v53,-5,163,-16,163,46v0,42,-36,63,-71,69v-2,0,-3,1,-1,2v15,5,28,11,36,22xm171,-69v0,-37,-34,-50,-73,-49v-7,32,-19,62,-23,96v2,10,14,11,28,12v41,1,68,-23,68,-59xm195,-188v-1,-29,-33,-47,-67,-42r-26,100v49,6,94,-12,93,-58","w":222,"k":{"T":14,"U":5,"V":5,"W":5,"A":2}},"C":{"d":"73,-77v-3,40,25,68,56,68v42,0,71,-22,89,-64v3,-5,11,-3,12,2v-11,25,-15,57,-29,79v-13,2,-2,-17,-12,-18v-15,4,-43,15,-66,15v-48,0,-89,-36,-86,-85v6,-86,52,-159,139,-167v26,-2,44,18,65,26v7,2,8,-17,17,-12v2,0,4,1,3,3r-19,75v-2,4,-11,2,-12,-2v9,-38,-14,-80,-52,-77v-72,7,-99,85,-105,157","w":239,"k":{"C":4,"G":4,"O":4,"Q":4,"T":3,"A":-14}},"D":{"d":"282,-143v0,138,-132,150,-278,144v-6,-1,-1,-8,0,-11v17,-4,37,-2,44,-31r42,-169v6,-19,-18,-19,-38,-18v-3,-24,43,-15,76,-15v93,0,154,25,154,100xm248,-142v0,-63,-53,-95,-123,-87r-49,206v0,7,8,11,25,11v93,2,147,-46,147,-130","w":279,"k":{"u":-5,"v":-9,"w":-9,"f":-4,"r":-5,"y":-11,"T":16,"U":6,"V":2,"W":2,"X":11,"Y":11,"A":-2,",":11,".":11}},"E":{"d":"206,0r-204,1v-6,0,-2,-6,-2,-10v12,-7,35,0,42,-23r55,-171v7,-22,-9,-28,-31,-26v-6,0,-2,-7,-1,-11v42,-4,121,-2,173,-1r14,55v-1,3,-7,7,-10,3v-14,-15,-23,-35,-40,-46r-65,0r-31,95v39,1,72,2,77,-31v2,-2,11,-1,10,3v-8,23,-10,53,-22,73v-3,0,-7,1,-7,-3v6,-39,-27,-29,-62,-31r-35,111v43,-5,101,13,122,-15r29,-37v3,-3,11,2,9,7v-7,19,-12,40,-21,57","w":240,"k":{"T":5,"U":5,"V":10,"W":10,"Y":-16,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"S":4,"Z":13}},"F":{"d":"260,-184v-21,21,-21,-50,-46,-43v-12,-1,-38,-2,-79,-2r-30,97r54,-1v25,0,28,-17,34,-37v1,-3,12,-3,11,2r-21,91v-1,3,-12,3,-12,-3v4,-23,6,-37,-16,-38r-54,-3v-8,33,-25,68,-26,104v1,6,16,5,25,5v-1,27,-60,5,-94,13v-5,0,-2,-7,-1,-10v12,-7,31,-1,39,-25r56,-181v6,-14,-8,-15,-22,-14v-6,0,-2,-6,-1,-10v42,-9,122,5,172,-7v8,16,7,42,11,62","w":223,"k":{"c":17,"d":17,"e":17,"o":17,"q":17,"u":12,"a":19,"i":-2,"l":-5,"r":7,"T":-14,"U":-7,"A":31,",":43,".":43}},"G":{"d":"72,-89v0,68,63,103,111,66v9,-12,16,-42,13,-61v-5,-8,-36,6,-28,-14v19,-5,56,1,84,-2v5,0,2,7,2,10v-6,7,-25,0,-25,16v-7,20,-7,48,-19,63v-81,40,-173,3,-173,-84v0,-112,125,-190,215,-129v6,4,9,-22,19,-9r-20,72v0,3,-6,2,-9,2v-3,-14,2,-37,-11,-53v-11,-14,-26,-22,-47,-22v-68,-2,-112,74,-112,145","w":255,"k":{"u":-4,"n":-4,"r":-5,"y":-7,"T":2}},"H":{"d":"226,-117r-131,0v-8,32,-27,66,-28,100v2,10,34,-4,27,15v-17,8,-61,-2,-91,3v-4,0,-1,-7,-1,-10v14,-6,29,-6,37,-31r56,-172v5,-15,-10,-19,-26,-17v-5,-5,0,-16,11,-13r84,0v2,23,-37,3,-39,32r-26,80r131,0r27,-83v2,-13,-6,-18,-20,-16v-7,-6,0,-14,10,-13v24,3,56,-4,76,2v-2,19,-35,3,-36,30r-56,173v-7,18,2,25,22,25v7,0,1,8,1,11v-18,5,-64,-2,-92,2v-4,1,-3,-6,-3,-10v5,-7,25,0,31,-10v15,-24,24,-68,36,-98","w":282,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"u":4,"a":4,"b":-7,"i":4,"j":-4,"k":-4,"f":-5,"l":-4,"r":-4,"y":4,"T":-4,"Y":-18}},"I":{"d":"2,-12v30,1,38,-2,45,-27r45,-166v10,-29,-17,-19,-33,-27v9,-22,71,-5,109,-9v-2,24,-45,1,-46,38r-45,166v-7,24,9,26,32,25v6,6,0,16,-11,13r-98,0v-5,0,-2,-7,-1,-10v0,-2,1,-3,3,-3","w":129,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"u":4,"a":4,"b":-7,"i":4,"j":-4,"k":-4,"f":-5,"l":-4,"r":-4,"y":4,"T":-4,"Y":-18}},"J":{"d":"-15,44v-1,11,-5,17,10,16v16,0,30,-22,42,-64r59,-203v10,-20,-10,-22,-28,-23v3,-26,58,-5,95,-12v5,0,2,10,2,11v-17,4,-37,3,-40,32v-25,76,-42,184,-81,241v-14,21,-34,30,-56,30v-19,1,-34,-9,-35,-24v0,-9,6,-20,16,-19v9,0,17,7,16,15","w":124,"k":{"T":-5,",":11,".":11}},"K":{"d":"99,-115v-7,32,-27,60,-25,97v1,11,31,-1,22,16v-16,8,-60,-2,-89,3v-4,0,-3,-7,-2,-10v13,-6,29,-2,37,-25r56,-172v8,-19,-2,-23,-21,-23v-7,0,-1,-7,-1,-11v23,-5,58,1,89,-2v11,22,-35,5,-35,32r-27,85v31,-2,26,-7,49,-27v24,-20,47,-41,68,-65v7,-8,2,-14,-10,-12v-7,-5,-1,-16,9,-13v23,2,53,-3,72,3v-5,19,-32,4,-45,22r-108,96v20,18,55,117,100,109v7,-1,3,6,2,9v-16,9,-54,0,-87,4v-4,0,-3,-7,-2,-10v1,-7,24,1,19,-13r-58,-88v-3,-3,-7,-5,-13,-5","w":246,"k":{"v":13,"w":17,"a":-5,"y":10,"C":13,"G":13,"O":13,"Q":13,"T":-4,"U":5,"Y":-11}},"L":{"d":"199,5v-58,-9,-132,-4,-196,-4v-7,-7,0,-15,11,-13v21,-1,24,-7,30,-27r51,-168v13,-27,-16,-18,-31,-25v9,-23,67,-3,107,-10v5,0,2,7,1,10v-15,8,-44,-3,-46,28r-56,181v-5,13,11,11,23,11v89,4,87,-2,116,-49v2,-4,10,2,10,4v-5,7,-13,58,-20,62","w":225,"k":{"v":7,"w":9,"j":-4,"l":-4,"y":7,"C":13,"G":13,"O":13,"Q":13,"T":38,"U":21,"V":22,"W":22,"Y":25,"A":-13}},"M":{"d":"119,-211v0,-3,-1,-5,-4,-5r-61,178v-8,24,1,28,21,26v7,14,-6,12,-22,12r-53,1v-12,-18,23,-8,28,-19v30,-60,49,-133,72,-201v1,-13,-24,-9,-36,-11v-3,-18,20,-11,36,-12v12,3,45,-7,47,9r17,174v1,9,4,10,9,3r127,-179v14,-13,41,-4,68,-7v7,17,-18,8,-25,19v-22,58,-36,126,-55,188v-4,17,4,26,22,23v6,4,1,16,-9,13r-82,0v-5,0,-4,-6,-3,-10v14,-6,42,-3,43,-29r48,-174v1,-3,1,-4,-1,-4v-2,0,-3,0,-4,2r-148,209v-4,7,-13,7,-14,-3","w":337,"k":{"j":-7}},"N":{"d":"56,-239v20,-5,66,-10,74,7r77,173v5,6,9,-8,9,-8r47,-141v8,-20,-6,-22,-24,-21v-6,1,-4,-6,-3,-10v15,-8,50,1,76,-3v6,-1,2,6,2,10v-9,7,-30,-1,-32,23r-74,208v-6,2,-9,-2,-11,-6r-88,-194v-2,-2,-4,1,-4,3r-46,152v-9,29,1,37,26,34v7,0,3,6,2,10v-17,8,-60,-2,-90,3v-12,-19,26,-8,32,-21v27,-54,42,-128,63,-188v7,-21,-13,-22,-34,-21v-6,1,-2,-6,-2,-10","w":268,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"u":4,"a":4,"C":-5,"G":-5,"O":-5,"Q":-5,"T":-5}},"O":{"d":"257,-139v-3,81,-47,141,-127,144v-61,2,-94,-47,-93,-109v2,-77,53,-140,126,-143v56,-3,97,48,94,108xm64,-80v-2,42,23,71,57,71v68,0,107,-79,108,-153v0,-39,-20,-72,-59,-69v-63,4,-102,85,-106,151","w":255,"k":{"u":-5,"v":-9,"w":-9,"f":-4,"r":-5,"y":-11,"T":16,"U":6,"V":2,"W":2,"X":11,"Y":11,"A":-2,",":11,".":11}},"P":{"d":"235,-176v0,59,-75,88,-140,72r-17,65v-7,25,4,29,25,27v8,6,1,15,-10,13r-83,0v-13,-19,23,-8,29,-21v24,-54,33,-124,52,-184v8,-24,-8,-25,-29,-24v-3,-17,6,-13,42,-14v69,-2,131,-2,131,66xm204,-179v-2,-41,-33,-55,-75,-51r-31,113v49,19,109,-12,106,-62","w":212,"k":{"c":7,"d":7,"e":7,"o":7,"q":7,"u":-4,"a":13,"r":-11,"y":-4,"T":-4,"Y":-18,"A":32,",":58,".":58,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,":":4,";":4}},"Q":{"d":"114,1v-67,-8,-95,-102,-58,-167v28,-48,52,-78,120,-81v77,-3,112,84,81,157v-18,43,-48,82,-96,93v-42,10,-70,19,-85,27v48,-3,83,-1,106,33v11,16,30,21,35,3v-5,-10,-9,-34,9,-33v9,0,14,7,14,14v0,40,-62,59,-85,26v-19,-27,-82,-39,-110,-17v-6,0,-8,-4,-8,-12v2,-19,61,-34,77,-43xm111,-195v-38,39,-75,186,19,186v69,0,104,-83,108,-158v3,-54,-53,-84,-97,-56v-12,7,-21,18,-30,28","w":266,"k":{"u":-5,"v":-9,"w":-9,"f":-4,"r":-5,"y":-11,"T":16,"U":6,"V":2,"W":2,"X":11,"Y":11,"A":-2,",":11,".":11}},"R":{"d":"193,1v-33,-20,-28,-131,-95,-118v-8,32,-29,64,-27,100v1,11,38,-5,31,16v-22,5,-62,-1,-94,2v-5,0,-2,-7,-1,-10v9,-6,28,-2,33,-21v16,-65,45,-125,58,-193v-1,-11,-37,3,-27,-15v47,-9,167,-15,167,47v0,41,-45,64,-81,71v31,23,36,78,65,103v5,8,40,-1,25,18r-54,0xm206,-191v0,-29,-35,-45,-72,-39r-32,101v57,3,104,-13,104,-62","w":249,"k":{"u":-4,"a":-7,"t":-4,"y":4,"C":13,"G":13,"O":13,"Q":13,"T":22,"U":16,"V":9,"W":9,"X":13,"Y":5,"A":4,",":-7,".":-7,"B":7,"D":7,"E":7,"F":7,"H":7,"I":7,"K":7,"L":7,"N":7,"P":7,"R":7,"S":2}},"S":{"d":"145,-117v45,51,-1,153,-74,115v-8,-5,-15,-12,-25,-20v-12,-10,-10,23,-24,14v2,-28,18,-55,25,-82v1,-3,12,-2,10,3v-13,41,10,76,42,78v38,2,55,-53,27,-77v-20,-31,-59,-47,-59,-97v1,-30,26,-64,61,-64v14,0,30,11,48,18v2,2,5,-23,16,-10v-6,22,-6,52,-16,70v-18,0,-1,-46,-26,-56v-32,-28,-76,20,-50,58v11,17,32,35,45,50","w":181,"k":{"a":-4,"T":5}},"T":{"d":"69,-248v53,11,154,12,210,0v5,20,-2,51,-1,75v-1,4,-13,7,-12,-2v-1,-11,-10,-38,-14,-47v-11,-4,-46,-9,-62,-8r-60,187v-11,28,3,33,30,31v6,16,-9,12,-30,12r-77,1v-5,-1,-4,-13,2,-13v32,1,38,-10,47,-37r57,-181v-62,-4,-92,14,-110,50v-2,3,-13,1,-10,-5","w":239,"k":{";":23,":":23,"c":23,"d":23,"e":23,"o":23,"q":23,"u":14,"v":22,"w":27,"a":31,"i":-4,"m":11,"r":7,"s":14,"y":20,"z":7,"C":-4,"G":-4,"O":-4,"Q":-4,"T":-14,"U":-4,"V":-7,"W":-7,"X":2,"Y":-25,"A":36,",":38,".":38,"B":-4,"D":-4,"E":-4,"F":-4,"H":-4,"I":-4,"K":-4,"L":-4,"N":-4,"P":-4,"R":-4,"Z":-4,")":-17,"]":-17,"}":-17,"-":27,"M":-7}},"U":{"d":"87,-112v-42,78,37,130,93,83v43,-36,50,-118,72,-178v8,-21,-7,-23,-27,-22v-6,0,-2,-7,-2,-10v17,-8,53,1,81,-3v5,0,2,7,2,10v-10,6,-25,2,-32,20v-32,85,-36,212,-144,217v-67,3,-97,-43,-77,-110r31,-102v11,-26,-12,-19,-26,-25v8,-22,59,-4,95,-10v5,0,2,7,1,10v-9,7,-36,-1,-38,24","w":263,"k":{"c":7,"d":7,"e":7,"o":7,"q":7,"a":7,"b":-4,"g":4,"f":-7,"m":4,"s":4,"x":9,"T":-4,"A":15,",":13,".":13}},"V":{"d":"153,-242v2,26,-40,3,-37,29r-24,158v3,4,5,-2,8,-4r111,-147v10,-9,9,-27,-12,-23v-7,1,-3,-6,-2,-10v14,-5,61,-5,82,0v-1,8,-5,10,-16,10v-10,0,-22,9,-37,28r-157,202v-5,8,-17,10,-15,-6r29,-204v6,-21,-16,-18,-31,-22v9,-25,61,-4,101,-11","w":220,"k":{"j":2,"c":36,"d":36,"e":36,"o":36,"q":36,"u":20,"a":40,"h":-4,"i":-7,"m":19,"r":16,"t":17,"y":20,"C":7,"G":7,"O":7,"Q":7,"T":-4,"A":47,",":43,".":43,")":-30,"]":-30,"}":-30,":":6,";":6,"-":22}},"W":{"d":"193,-189v11,-16,19,-35,0,-40v-9,2,-10,-3,-7,-10v13,-8,45,0,69,-3v6,0,2,6,2,10v-7,7,-22,-2,-25,21r-18,163v31,-31,88,-137,99,-162v7,-15,1,-20,-13,-19v-7,-8,3,-15,14,-13v17,3,36,0,54,0v6,0,1,7,1,10v-6,7,-23,1,-30,13r-66,110r-75,107v-6,6,-10,9,-12,9v-5,0,-6,-4,-5,-11r16,-165v-39,44,-90,123,-128,168v-5,6,-9,8,-12,8v-4,0,-5,-5,-3,-16r32,-201v5,-17,-4,-20,-20,-19v-6,0,-3,-7,-2,-10v16,-8,53,0,81,-3v7,0,3,6,2,10v-8,7,-32,-2,-30,23r-29,156v0,5,4,2,6,0v4,-4,38,-48,99,-136","w":314,"k":{"j":9,"c":36,"d":36,"e":36,"o":36,"q":36,"u":20,"a":40,"h":-4,"i":-7,"m":19,"r":16,"t":17,"y":20,"C":7,"G":7,"O":7,"Q":7,"T":-4,"A":47,",":43,".":43,")":-30,"]":-30,"}":-30,":":6,";":6,"-":22}},"X":{"d":"136,-223v1,30,17,53,24,80v9,-12,74,-61,70,-81v-2,-9,-23,1,-17,-15v16,-8,51,0,78,-3v-1,7,1,15,-10,13v-48,17,-80,69,-117,99r36,99v3,17,23,17,36,22v-4,22,-51,3,-84,10v-6,1,-4,-6,-3,-10v4,-7,27,2,20,-18r-29,-85r-80,83v-8,9,-1,20,12,17v7,15,-8,14,-24,12v-19,-2,-46,6,-60,-2v3,-18,32,-6,44,-24r103,-97v-12,-33,-23,-71,-37,-101v-5,-10,-31,4,-26,-15v17,-8,53,0,81,-3v7,0,3,6,3,10v-2,7,-20,-1,-20,9","w":248,"k":{"c":2,"d":2,"e":2,"o":2,"q":2,"a":-4,"i":-4,"r":-4,"y":4,"C":13,"G":13,"O":13,"Q":13,"T":2,"V":-5,"W":-5,"X":14,"Y":-2,"A":14}},"Y":{"d":"41,-9v14,-7,37,-1,37,-22v0,-25,19,-48,10,-73r-39,-111v-3,-11,-14,-15,-30,-14v-5,-5,-1,-16,9,-13r78,0v10,21,-33,3,-24,30r34,100v1,4,3,5,5,2v8,-15,71,-87,67,-114v-2,-9,-30,2,-23,-15v17,-8,53,1,82,-3v7,16,-15,11,-25,17v-25,26,-57,74,-100,138v-5,21,-15,48,-13,71v3,6,41,-1,22,17r-89,0v-4,-1,-1,-7,-1,-10","w":194,"k":{"c":18,"d":18,"e":18,"o":18,"q":18,"u":16,"v":11,"a":22,"i":-4,"l":-4,"r":7,"t":8,"C":2,"G":2,"O":2,"Q":2,"T":-9,"V":-9,"W":-9,"X":3,"Y":-18,"A":29,",":14,".":14,")":-31,"]":-31,"}":-31,":":22,";":22,"-":27}},"Z":{"d":"218,2r-192,-2v-5,0,-5,-5,-3,-8r190,-220v-94,2,-119,-11,-147,31v-3,-1,-7,-1,-7,-5v7,-14,8,-34,18,-45v45,12,118,3,174,6v6,-1,6,5,3,8r-188,220v98,-5,128,12,159,-37v3,-3,12,0,10,5","w":243,"k":{"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"w":9,"a":-4,"y":4,"C":14,"G":14,"O":14,"Q":14,"T":11,"A":-4}},"[":{"d":"86,68v-19,8,-54,1,-79,3v-2,0,-3,-2,-2,-5r88,-323v20,-8,53,-1,79,-3v4,22,-33,10,-54,13v-2,0,-4,1,-5,5r-81,296v0,2,1,4,3,4v17,1,39,-3,53,2","w":116,"k":{"T":-22,"V":-25,"W":-25,"Y":-29,"J":-47}},"\\":{"d":"107,-4v2,7,-12,8,-17,7r-49,-241v0,-8,13,-9,18,-6","w":115},"]":{"d":"55,-258v21,-6,54,0,79,-2v-20,107,-60,219,-86,327v-17,9,-56,3,-79,3v2,-4,-1,-13,6,-12v17,-3,45,7,52,-6r81,-295v0,-2,0,-4,-2,-4v-17,-1,-40,3,-53,-2","w":116},"^":{"d":"17,-94r76,-153r12,0r76,153r-23,0v-21,-38,-37,-82,-61,-118r-57,118r-23,0"},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0"},"`":{"d":"99,-174v2,3,-3,8,-6,6r-43,-33v-9,-6,-4,-22,6,-21v20,7,29,34,43,48","w":84},"a":{"d":"12,-19v5,-57,48,-131,103,-131v12,0,21,4,26,12v5,-7,9,-15,23,-12v-4,23,-43,113,-43,128v0,3,1,4,4,4v9,1,27,-37,32,-16v-4,8,-41,40,-56,38v-20,-10,0,-20,10,-61r-2,-1v-14,21,-48,62,-77,62v-11,0,-21,-10,-20,-23xm110,-138v-39,0,-68,67,-71,110v0,8,3,13,9,13v27,-10,79,-67,79,-102v0,-14,-6,-21,-17,-21","w":163},"b":{"d":"37,4v-23,1,-28,-24,-19,-45r77,-184v2,-11,-39,0,-18,-18r46,0v4,0,4,2,2,6r-58,131r2,1v15,-18,40,-45,66,-45v17,0,25,10,25,28v0,62,-63,124,-123,126xm122,-132v-41,12,-76,60,-83,108v-1,12,5,15,15,15v41,-8,77,-61,80,-108v0,-10,-4,-15,-12,-15","w":160,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"v":-4,"w":-2,"a":2,"h":4,"k":2,"l":2,"x":4,"y":4,"z":4,",":7,".":7}},"c":{"d":"82,-132v-25,2,-39,58,-41,88v-3,51,37,23,49,9v11,13,-27,39,-48,39v-16,-1,-27,-16,-27,-34v0,-52,34,-114,82,-120v24,-3,28,36,6,36v-12,0,-9,-18,-21,-18","w":108,"k":{"a":-2,"h":4,"y":-2}},"d":{"d":"13,-20v0,-58,53,-125,107,-130v8,0,15,4,22,12r28,-79v7,-14,-12,-13,-23,-16v0,-18,39,-10,55,-8v-15,52,-68,180,-75,207v-6,23,4,19,15,9v9,-7,12,-16,20,-7v0,12,-39,36,-53,36v-6,0,-10,-3,-10,-9v0,-7,5,-25,16,-52r-3,-1v-14,24,-45,62,-76,62v-13,0,-23,-10,-23,-24xm112,-138v-40,0,-78,76,-69,120v2,2,4,3,7,3v33,-9,81,-67,81,-99v0,-16,-6,-24,-19,-24","w":169,"k":{",":2,".":2}},"e":{"d":"45,-69v-7,14,-10,56,14,56v20,0,32,-19,44,-26v13,9,-11,22,-20,31v-23,21,-71,16,-67,-24v7,-55,39,-108,94,-118v41,10,9,58,-13,66v-18,7,-34,14,-52,15xm108,-120v-4,-25,-30,-13,-42,6v-9,14,-16,25,-18,34v17,2,63,-19,60,-40","w":125,"k":{"v":-2,"w":-4,"b":-2,"g":1,"f":-7,"l":2,"r":-2,"x":-2,"y":-4,"z":-4,",":2,".":2}},"f":{"d":"173,-209v-21,3,-14,-38,-44,-21v-28,16,-34,57,-45,90r35,0v5,0,1,9,1,11v-8,5,-27,0,-39,2r-27,91v-24,60,-37,135,-103,143v-24,3,-37,-34,-10,-37v15,-1,14,19,23,23v41,-5,73,-163,93,-220r-33,0v-4,-1,0,-13,4,-13r32,0v24,-61,33,-97,95,-107v27,-5,48,34,18,38","w":100,"k":{"r":-18,"i":4,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"s":-4," ":-4,",":6,".":6,")":-49,"]":-49,"}":-49,"\"":-49,"'":-49}},"g":{"d":"171,-132v-6,25,-29,-6,-41,8v12,45,-16,82,-59,88v-11,2,-28,17,-13,27v24,18,74,36,74,69v0,65,-145,60,-151,0v5,-30,36,-41,61,-52v-27,-20,-8,-36,17,-48v-54,-18,-18,-110,36,-110v14,0,23,6,30,17v8,-11,44,-22,46,1xm94,-141v-22,-1,-41,45,-40,69v0,16,6,25,17,25v28,0,38,-40,39,-70v0,-16,-5,-24,-16,-24xm62,96v47,5,58,-45,21,-61r-32,-20v-30,12,-45,26,-45,42v-1,24,33,37,56,39","w":155,"k":{"p":-11,"c":2,"d":2,"e":2,"o":2,"q":2,"a":6,"g":-4,"f":-17,"r":-5,"s":4,"y":-13,",":7,".":7}},"h":{"d":"101,-4v24,-15,41,-77,41,-107v0,-28,-17,-22,-33,-9v-38,29,-59,68,-77,117v-1,5,-19,5,-23,1r82,-204v9,-18,6,-28,-18,-25v-7,0,-3,-5,-2,-9v12,-7,36,-1,53,-3v7,2,4,7,1,15r-57,133r2,1v21,-26,36,-53,71,-56v16,-1,25,13,25,30v-3,45,-29,126,-79,132v-20,2,-23,-31,-5,-34v12,-1,10,16,19,18","w":168,"k":{"v":-4,"w":-4}},"i":{"d":"85,-150v17,9,5,19,-4,49v-7,24,-23,54,-27,79v4,12,10,2,20,-6v11,-9,10,-18,19,-10v-1,19,-38,39,-60,42v-4,0,-6,-3,-6,-9v-2,-9,32,-89,38,-115v-13,-19,-26,31,-41,18v3,-16,40,-45,61,-48xm110,-216v-1,9,-8,18,-19,18v-12,0,-18,-9,-19,-17v1,-10,7,-18,19,-18v11,0,19,6,19,17","w":103,"k":{"v":2,"y":2}},"j":{"d":"89,-150v5,0,7,2,7,7v-21,66,-48,180,-102,219v-18,13,-54,8,-56,-14v-1,-8,7,-16,15,-16v18,0,11,24,24,25v40,-15,45,-66,60,-106v11,-27,21,-54,27,-84v-2,-11,-8,-5,-16,1v-8,5,-15,19,-21,9v2,-14,44,-40,62,-41xm118,-217v0,9,-9,19,-19,19v-10,0,-19,-7,-19,-16v0,-11,9,-20,20,-20v11,0,18,8,18,17","w":97,"k":{",":4,".":4}},"k":{"d":"55,-68v28,7,78,-29,76,-53v-24,-30,-67,24,-76,53xm155,-129v-3,32,-44,52,-67,65v15,18,30,74,59,43v3,-3,4,3,6,4v-2,16,-36,27,-50,16v-13,-12,-23,-37,-33,-54v-2,-4,-8,-5,-18,-4r-22,56v-2,5,-14,2,-21,3v-2,0,-3,-1,-2,-4r85,-211v7,-15,-7,-17,-23,-16v-4,-2,1,-12,5,-12r48,0v3,0,4,2,3,6r-52,125r2,1v12,-15,36,-39,61,-39v11,1,20,7,19,21","w":156},"l":{"d":"13,-7v18,-61,53,-140,76,-201v8,-21,1,-25,-16,-23v-2,-1,-2,-12,4,-12r44,0v3,0,5,1,4,5r-75,191v-6,18,-12,25,-5,28v11,2,27,-30,34,-14v0,12,-42,37,-58,37v-5,0,-8,-4,-8,-11","w":91,"k":{",":2,".":2}},"m":{"d":"193,4v-22,-18,33,-87,36,-129v0,-5,-3,-6,-8,-6v-40,22,-80,78,-96,129v-3,3,-17,3,-23,1v8,-29,44,-105,45,-122v0,-5,-2,-7,-7,-7v-41,21,-82,78,-98,128v-3,3,-13,2,-19,2v-2,0,-3,-2,-2,-4r48,-119v-4,-13,-8,-3,-19,5v-12,9,-14,21,-23,11v9,-20,35,-38,59,-43v27,11,-22,65,-15,77v19,-30,45,-70,84,-77v9,-2,16,7,16,16v0,9,-7,30,-21,62r2,0v24,-32,40,-69,83,-78v9,-2,18,9,17,18v3,10,-37,96,-37,106v4,9,9,1,18,-6v10,-8,13,-22,22,-13v-1,18,-41,45,-62,49","w":263},"n":{"d":"108,-4v9,-39,33,-77,42,-118v0,-6,-3,-8,-9,-8v-47,18,-80,76,-96,128v-4,3,-17,2,-23,1v9,-29,41,-104,44,-123v0,-4,-1,-6,-5,-6v-6,0,-16,8,-30,24v-15,-3,-3,-13,4,-20v10,-8,48,-41,58,-13v1,14,-20,46,-17,54v13,-21,51,-65,82,-65v27,0,16,33,10,48r-31,80v2,10,9,3,17,-2v9,-4,13,-17,20,-8v-2,15,-39,36,-57,36v-6,0,-9,-3,-9,-8","w":186,"k":{"T":32}},"o":{"d":"139,-108v-2,53,-32,112,-83,112v-21,0,-38,-24,-37,-47v1,-53,33,-103,82,-107v23,-2,39,19,38,42xm107,-133v-40,3,-73,64,-73,101v0,11,6,17,16,18v40,-5,69,-61,75,-99v0,-11,-7,-21,-18,-20","w":142,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"v":-4,"w":-2,"a":2,"h":4,"k":2,"l":2,"x":4,"y":4,"z":4,",":7,".":7}},"p":{"d":"99,-149v82,-12,78,89,22,122v-17,10,-49,25,-75,27v-8,29,-28,59,-28,91v0,9,34,-2,24,15v-18,3,-61,3,-83,0v-1,-16,22,-6,28,-17v33,-64,54,-146,82,-216v-20,0,-36,37,-51,29v-1,-1,-2,-3,-1,-4v17,-20,36,-34,58,-42v6,-12,6,-30,16,-38v8,-2,17,-9,26,-7xm138,-94v0,-28,-16,-46,-44,-40r-44,123v41,-6,88,-37,88,-83","w":165,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"v":-4,"w":-2,"a":2,"h":4,"k":2,"l":2,"x":4,"y":4,"z":4,",":7,".":7}},"q":{"d":"18,-38v3,-59,60,-142,121,-99v12,1,17,-13,29,-14v3,0,4,3,2,7r-83,221v-7,17,2,21,17,19v4,7,1,14,-16,11v-20,-3,-48,5,-63,-2v2,-19,36,0,39,-28r35,-92v-27,28,-83,29,-81,-23xm113,-136v-41,6,-73,65,-73,108v0,12,6,22,17,22v46,-8,67,-64,75,-109v2,-12,-8,-23,-19,-21","w":163,"k":{",":4,".":4}},"r":{"d":"146,-134v-1,22,-22,16,-33,9v-16,2,-64,82,-70,122v-1,6,-13,2,-19,3v-3,0,-4,-1,-3,-3r38,-122v-12,-19,-30,25,-41,14v5,-17,31,-39,53,-39v7,0,10,5,10,13v0,4,-4,21,-13,51r2,1v9,-19,37,-65,59,-65v9,0,17,7,17,16","w":128,"k":{"p":-7,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"u":-5,"v":-14,"w":-14,"a":7,"i":-4,"k":2,"f":-14,"l":-2,"m":-2,"n":-4,"r":-9,"t":-3,"x":-9,"y":-10,"z":-11,",":22,".":22,":":-5,";":-5}},"s":{"d":"68,-90v27,32,21,94,-30,94v-17,0,-33,-7,-34,-21v1,-5,5,-12,13,-11v15,-3,11,23,27,21v32,-3,17,-49,5,-64v-23,-28,-3,-81,35,-79v19,-4,37,26,14,30v-13,1,-11,-17,-21,-19v-20,2,-22,34,-9,49","w":105,"k":{"y":-2}},"t":{"d":"15,-5v11,-45,34,-81,49,-122v-14,2,-38,0,-20,-13r26,0v11,-23,16,-51,46,-55v0,18,-17,37,-23,55r36,0v5,2,-1,11,-5,13r-37,0r-43,104v4,13,14,3,25,-3v13,-7,15,-21,23,-9v-1,14,-46,39,-65,39v-8,0,-12,-3,-12,-9","w":113,"k":{"c":5,"d":5,"e":5,"o":5,"q":5,"u":-2,"v":-4,"w":-4,"a":5,"f":-2,"r":-5,"y":-3}},"u":{"d":"91,-137v5,6,-46,103,-43,115v0,4,2,6,6,6v46,-18,85,-77,97,-128v2,-4,14,-1,20,-2v3,0,4,1,3,3r-43,122v3,9,9,2,18,-5v10,-7,11,-18,20,-10v-4,17,-40,36,-59,40v-5,0,-7,-3,-7,-9v0,-1,8,-21,23,-61r-2,-1v-23,27,-45,71,-89,71v-7,0,-14,-8,-13,-15v7,-43,32,-72,43,-113v-10,-17,-30,24,-41,12v4,-12,38,-39,56,-38v6,-1,11,7,11,13","w":174},"v":{"d":"107,-136v-13,2,-33,9,-55,9v-11,0,-20,7,-20,19v-1,8,16,12,16,21v0,7,-6,12,-13,12v-10,-1,-17,-9,-17,-21v0,-50,56,-58,106,-52v-13,25,-43,61,-43,99v-1,19,9,33,25,34v42,-1,79,-80,54,-119v0,-11,5,-16,16,-16v10,0,14,9,14,19v-5,65,-36,135,-98,135v-20,0,-36,-15,-36,-37v2,-37,31,-79,51,-103","w":188,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"a":2,"r":-2,"y":-2,",":9,".":9,":":-7,";":-7}},"w":{"d":"91,4v-70,0,-9,-109,15,-133v-12,-3,-33,7,-57,3v-6,0,-14,5,-13,12v-2,9,15,14,14,22v-1,8,-4,13,-14,12v-9,0,-18,-10,-17,-21v1,-27,29,-45,70,-45v12,0,27,-3,38,-1v-11,19,-47,71,-45,103v3,38,50,29,64,1v11,-14,17,-64,21,-91v1,-12,25,-17,25,-2v-8,24,-25,64,-27,88v-1,16,15,30,32,29v31,-1,50,-37,50,-75v0,-17,-17,-33,-17,-41v-1,-9,7,-16,16,-15v12,0,18,12,18,37v0,57,-23,110,-78,117v-19,2,-35,-19,-36,-34v-11,13,-35,34,-59,34","w":265,"k":{"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"r":-2,",":4,".":4,":":-7,";":-7}},"x":{"d":"18,-47v20,-7,-5,29,13,29v6,0,23,-18,51,-54v-8,-16,-8,-42,-22,-52v-6,0,-14,9,-23,27v-2,2,-9,1,-9,-4v5,-15,47,-82,59,-29r12,41v16,-18,35,-56,62,-61v22,5,7,35,1,54v-2,4,-10,0,-10,-3v14,-40,-10,-28,-21,-11v-16,16,-11,13,-28,33v9,18,10,48,27,58v13,1,19,-33,31,-23v-9,34,-48,68,-60,30r-15,-48v-32,38,-34,52,-63,64v-25,-1,-7,-37,-5,-51","w":169,"k":{"c":2,"d":2,"e":2,"o":2,"q":2,"v":2,"s":2}},"y":{"d":"127,-111v0,0,-14,-36,9,-39v9,0,15,9,15,18v-7,65,-69,164,-109,206v-21,22,-40,33,-55,33v-23,0,-26,-30,-6,-32v7,-1,16,10,23,10v50,-15,69,-68,54,-135r-7,-66v-1,-7,-3,-10,-6,-10v-11,0,-16,36,-29,28v7,-22,20,-46,43,-52v16,4,15,18,18,41r8,106v14,-26,43,-70,42,-108","w":147,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"v":-4,"w":-4,"j":-4,"f":-4,"r":-2,",":4,".":4,":":-4,";":-4}},"z":{"d":"123,7v-19,0,-51,-21,-72,-25v-18,-3,-11,25,-30,23v-14,-3,-7,-19,2,-26v33,-28,68,-60,93,-91v-23,4,-40,-23,-61,-27v-21,3,-3,12,-1,23v0,6,-5,14,-12,13v-9,-1,-16,-7,-16,-18v1,-16,16,-29,36,-29v25,0,48,20,69,21v15,1,13,-30,31,-29v16,10,3,26,-15,37r-84,83v19,3,48,27,71,34v29,-3,-9,-44,19,-45v10,0,14,5,14,17v0,21,-19,39,-44,39","w":171,"k":{"a":-2,"y":2}},"{":{"d":"28,15v-1,-23,25,-58,27,-87v1,-14,-6,-23,-17,-25v-3,0,-5,-3,-5,-6v0,-3,2,-5,5,-5v32,-3,38,-23,36,-58v-3,-64,31,-91,88,-94v8,0,8,11,2,11v-57,-1,-69,46,-70,102v-1,23,-22,34,-36,47v37,27,-6,74,-6,115v0,25,18,45,46,44v2,0,2,3,2,7v0,4,0,5,-2,5v-37,-2,-68,-17,-70,-56","w":116,"k":{"T":-22,"V":-25,"W":-25,"Y":-29,"J":-47}},"|":{"d":"71,90v0,8,-11,3,-17,4v-1,0,-3,-2,-3,-4r0,-361v1,-5,20,-6,20,1r0,360","w":90},"}":{"d":"104,-158v-9,16,-26,59,4,65v3,0,5,3,5,6v0,3,-2,5,-5,5v-30,5,-38,21,-35,58v3,64,-32,92,-89,95v-8,1,-7,-12,-2,-12v58,3,68,-46,70,-101v1,-23,24,-34,36,-48v-37,-26,6,-73,6,-114v0,-26,-19,-44,-45,-45v-2,0,-3,-2,-3,-6v0,-4,1,-5,3,-5v59,-1,86,49,55,102","w":116},"~":{"d":"105,-93v14,15,44,15,41,-18r19,0v1,40,-33,66,-66,38v-16,-15,-56,-30,-54,11r-19,0v-5,-51,49,-62,79,-31"},"\u00a9":{"d":"105,-127v-1,63,77,92,112,41v2,1,8,2,5,6v-38,63,-141,35,-141,-42v0,-56,64,-96,115,-63v8,5,4,-15,15,-4v1,13,6,29,4,41r-7,1v-9,-22,-27,-39,-52,-39v-31,-1,-51,30,-51,59xm31,-121v0,-70,57,-126,125,-126v72,0,125,53,125,126v0,71,-53,126,-125,126v-72,0,-125,-54,-125,-126xm49,-121v2,70,40,114,107,114v70,0,107,-47,107,-114v0,-68,-42,-111,-107,-113v-60,-2,-109,50,-107,113","w":280},"\u00a0":{"w":82,"k":{"T":16,"V":5,"W":5,"Y":5}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2000, 2001 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * Adobe Caslon is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Designer:
 * Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Adobe Caslon Pro Bold","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 5 7 2 6 5 11 9 10 3","ascent":"265","descent":"-95","x-height":"4","cap-height":"1","bbox":"-76 -280.657 372.893 108","underline-thickness":"18","underline-position":"-18","slope":"-22","unicode-range":"U+0020-U+00A9"},"glyphs":{" ":{"w":72,"k":{"T":16,"V":5,"W":5,"Y":5}},"!":{"d":"54,-22v0,14,-10,26,-24,26v-10,0,-23,-10,-21,-24v1,-13,9,-24,23,-24v12,0,22,11,22,22xm69,-228v1,-23,49,-26,52,-3v-14,51,-51,112,-69,159v-2,5,-15,4,-11,-5","w":96},"\"":{"d":"33,-161v10,-19,-2,-93,35,-86v34,6,-3,42,-7,57v-7,12,-13,23,-17,32xm86,-161v11,-19,-4,-92,35,-86v18,3,16,12,8,27r-33,62","w":82},"#":{"d":"111,-95r14,-41r-29,0r-14,41r29,0xm102,-65r-28,0v-9,23,-13,50,-25,70r-21,0v0,-21,16,-47,21,-70v-10,-2,-31,5,-33,-4v4,-8,4,-21,12,-26r29,0r14,-41v-11,-2,-34,5,-35,-5v4,-8,2,-25,12,-25r31,0v9,-21,11,-49,24,-66v7,1,21,-3,21,3r-20,63r28,0v9,-21,12,-48,24,-66v7,1,23,-4,21,4r-20,62v10,2,33,-6,33,5v-4,8,-4,22,-13,25r-27,0r-14,41v11,3,36,-7,36,6v-5,8,-2,23,-14,24r-31,0v-9,23,-14,49,-25,70v-7,-2,-22,4,-22,-3"},"$":{"d":"146,-214v10,5,19,10,22,-3v3,1,7,-1,6,4v-5,19,-3,44,-12,59v-3,-1,-7,0,-8,-4v0,-17,-4,-29,-12,-36r-17,69v29,16,40,70,13,96v-10,10,-24,17,-41,19v-6,12,-1,43,-19,36v-3,-10,6,-24,7,-35v-5,0,-11,-1,-17,-2v-4,12,-5,28,-11,38v-4,-1,-11,1,-9,-6r9,-36v-14,-2,-27,-27,-37,-6v-2,5,-9,1,-8,-3v9,-22,14,-48,26,-67v3,1,8,2,7,6v-5,22,0,38,16,51r20,-75v-26,-20,-46,-62,-16,-92v10,-11,25,-17,43,-18v5,-10,0,-35,18,-30v1,10,-5,20,-6,30v6,0,11,1,15,2v5,-10,0,-34,17,-30v3,9,-5,23,-6,33xm105,-204v-24,2,-32,35,-14,50xm117,-206r-16,62r13,11r18,-69v-4,-2,-9,-4,-15,-4xm100,-25v23,-4,35,-34,14,-53xm91,-100r-19,73v5,2,9,4,15,4r17,-65"},"%":{"d":"111,-205v1,-10,-3,-14,-11,-15v-20,-4,-55,82,-52,102v0,9,4,14,11,16v19,4,54,-86,52,-103xm209,-231v6,-2,19,4,16,12r-145,222v-6,6,-21,-5,-16,-12xm22,-132v1,-52,28,-97,78,-100v25,-1,38,14,38,37v0,47,-30,105,-77,105v-27,0,-39,-17,-39,-42xm151,-39v0,-50,28,-98,78,-100v25,-1,38,14,38,37v1,48,-30,105,-77,105v-27,0,-39,-17,-39,-42xm240,-112v0,-10,-3,-14,-11,-15v-20,-3,-54,83,-52,102v0,9,4,15,12,16v19,4,51,-86,51,-103","w":270},"&":{"d":"265,-130v36,73,-33,142,-112,138v-72,-4,-122,-26,-126,-93v-2,-35,24,-64,45,-74v-34,-38,-12,-95,40,-94v40,-8,57,55,22,63v0,-12,-6,-30,-26,-30v-25,0,-39,37,-24,57v12,-6,43,-12,42,9v-1,25,-26,19,-43,7v-17,-6,-26,24,-26,44v0,51,45,70,101,70v53,0,97,-23,101,-67v4,-47,-88,-64,-88,-12v0,7,13,28,15,13v-2,-8,7,-19,16,-19v15,0,22,6,22,18v0,16,-10,23,-29,23v-22,0,-40,-19,-39,-44v0,-51,57,-60,113,-52v38,7,56,-46,20,-54v-9,4,1,30,-21,29v-11,-1,-18,-8,-19,-18v9,-44,76,-25,76,15v0,37,-22,58,-55,62v-6,1,-8,4,-5,9","w":301},"'":{"d":"45,-161v10,-19,-3,-95,35,-86v33,7,-5,42,-8,57v-7,12,-13,23,-17,32","w":50},"(":{"d":"177,-273v-76,71,-141,194,-116,348v0,2,-1,4,-5,5v-4,1,-6,1,-7,-1v-39,-68,-34,-178,12,-246v29,-42,62,-80,108,-112v2,-2,5,-1,7,2v1,2,1,3,1,4","w":108,"k":{"T":-22,"V":-25,"W":-25,"Y":-29,"J":-47}},")":{"d":"-56,73v78,-70,140,-194,116,-348v0,-2,1,-4,5,-5v4,-1,6,-1,7,1v40,66,34,178,-12,246v-29,42,-62,81,-108,113v-2,2,-5,0,-7,-3v-1,-2,-1,-3,-1,-4","w":108},"*":{"d":"85,-187v1,19,19,51,-10,51v-9,0,-14,-3,-14,-11v-2,-4,26,-40,19,-41v-9,7,-33,50,-48,26v-17,-27,29,-20,47,-30v-17,-5,-54,0,-40,-26v16,-30,34,25,45,21v-4,-15,-19,-52,10,-50v10,0,14,3,14,9v-2,12,-20,32,-20,43v9,-5,35,-48,48,-23v14,29,-31,17,-47,27v13,4,57,2,40,26v-18,25,-33,-15,-44,-22","w":108},"+":{"d":"108,-13r-28,0r0,-61r-57,0r0,-26r57,0r0,-60r28,0r0,60r57,0r0,26r-57,0r0,61"},",":{"d":"66,-8v0,38,-31,55,-63,61v-7,0,-7,-9,0,-10v13,-4,32,-17,32,-33v0,-16,-20,-21,-21,-38v0,-11,6,-25,17,-24v23,1,35,21,35,44","w":90,"k":{" ":11}},"-":{"d":"25,-76v-6,-2,-5,-22,0,-26r116,0v6,2,5,22,0,26r-116,0","w":149},".":{"d":"62,-22v0,14,-11,26,-26,26v-14,0,-26,-11,-26,-27v0,-13,12,-25,26,-25v17,0,26,12,26,26","w":90,"k":{" ":11}},"\/":{"d":"153,-245v5,-5,20,5,18,12r-173,237v-6,5,-19,-5,-17,-12","w":118},"0":{"d":"182,-169v-2,82,-34,168,-110,174v-40,3,-56,-31,-55,-71v3,-82,33,-166,112,-166v35,0,53,21,53,63xm146,-190v0,-16,-3,-23,-17,-25v-44,17,-76,120,-76,178v0,17,6,25,18,25v42,-17,75,-124,75,-178"},"1":{"d":"103,-30v-11,33,51,4,28,31v-38,-2,-84,4,-119,-2v1,-23,48,-3,49,-42r43,-136v-7,-18,-42,19,-47,-3v-1,-2,-1,-2,1,-3v34,-15,67,-35,104,-47v7,-1,5,9,4,13"},"2":{"d":"132,3v-9,10,-12,-3,-35,-3r-103,1v-10,0,-6,-10,0,-14v52,-40,120,-78,132,-154v3,-18,-10,-34,-30,-34v-23,0,-39,23,-49,35v-18,-24,31,-66,71,-66v63,0,68,83,29,114v-28,34,-64,56,-98,81r0,4v43,-1,81,7,98,-25v3,-8,12,-2,10,4v-5,9,-22,47,-25,57"},"3":{"d":"133,-179v0,-36,-62,-24,-71,-2v-4,5,-6,-1,-10,-2v11,-32,45,-49,73,-49v30,0,50,14,50,39v0,30,-28,54,-53,63v20,6,35,24,35,48v2,50,-51,87,-102,87v-31,0,-55,-16,-58,-40v-2,-19,25,-25,33,-11v4,16,0,37,25,38v50,3,83,-96,25,-110v-12,-3,-10,-15,0,-15v31,0,53,-19,53,-46"},"4":{"d":"119,-7v-4,14,-29,4,-44,7v-4,-18,14,-41,18,-60r-82,0v-15,-2,-11,-10,-1,-19r151,-139v14,-11,20,-20,28,-10v-8,49,-31,91,-44,138v10,2,30,-5,31,4v-4,8,-4,22,-12,26r-28,0xm48,-90r54,0v7,-25,23,-51,25,-76v-30,17,-53,49,-80,71v-4,4,-4,5,1,5"},"5":{"d":"112,-71v0,-38,-31,-46,-68,-46v2,-36,24,-71,33,-107v27,-13,86,13,103,-17v3,-4,13,3,10,6v-12,14,-10,40,-32,44r-75,0r-13,37v54,-1,86,23,86,70v0,54,-47,88,-110,89v-19,0,-42,-4,-43,-21v9,-33,29,3,55,3v28,0,54,-31,54,-58"},"6":{"d":"169,-91v0,50,-38,96,-88,96v-42,0,-66,-25,-66,-67v0,-89,75,-149,151,-170v8,0,6,14,0,15v-40,18,-69,46,-88,82v10,6,26,-10,42,-7v29,0,49,22,49,51xm100,-125v-38,2,-42,44,-42,80v0,24,8,36,23,36v32,0,42,-52,42,-89v-1,-13,-9,-27,-23,-27"},"7":{"d":"68,-235v12,-13,7,14,24,8r98,0v10,1,5,6,2,13v-32,47,-89,171,-111,213v-32,19,-40,-12,-23,-36r49,-69v9,-12,45,-69,52,-84v-44,3,-97,-12,-113,24v-3,5,-12,-2,-10,-5"},"8":{"d":"123,-121v63,44,30,128,-46,126v-36,-1,-63,-14,-63,-49v0,-40,34,-52,63,-66v-22,-23,-31,-29,-35,-57v-8,-69,143,-94,143,-20v0,37,-36,53,-62,66xm50,-43v0,19,11,35,30,35v35,0,43,-41,28,-66v-5,-7,-12,-16,-23,-26v-23,10,-35,29,-35,57xm149,-185v-1,-18,-12,-34,-32,-34v-39,0,-43,51,-20,70v4,5,4,4,17,18v23,-12,35,-30,35,-54"},"9":{"d":"28,-140v0,-50,37,-91,90,-92v99,-1,56,137,13,173v-31,26,-63,56,-110,64v-8,0,-6,-13,0,-14v41,-20,66,-44,88,-79v-5,-4,-16,6,-26,3v-35,1,-55,-24,-55,-55xm74,-135v0,15,5,34,20,34v37,-2,42,-46,42,-80v0,-25,-7,-37,-20,-37v-30,0,-42,49,-42,83"},":":{"d":"56,-21v0,14,-11,26,-26,25v-13,0,-26,-12,-25,-26v0,-13,10,-24,25,-24v16,0,26,11,26,25xm39,-130v0,-12,13,-24,25,-24v17,-1,27,11,27,25v0,14,-12,25,-27,25v-14,0,-25,-12,-25,-26","w":90,"k":{" ":11}},";":{"d":"62,-8v-1,37,-31,56,-63,61v-5,0,-6,-9,0,-10v26,-5,45,-42,16,-59v-9,-12,-4,-36,13,-36v21,0,34,25,34,44xm35,-129v0,-13,12,-25,25,-25v17,0,26,12,26,26v0,14,-11,24,-26,24v-14,0,-25,-11,-25,-25","w":90,"k":{" ":11}},"<":{"d":"148,-13r-111,-65r0,-17r111,-65r0,28r-79,45r79,44r0,30"},"=":{"d":"26,-132r143,0r0,26r-143,0r0,-26xm26,-75r143,0r0,26r-143,0r0,-26"},">":{"d":"43,-160r111,66r0,16r-111,65r0,-27r79,-46r-79,-46r0,-28"},"?":{"d":"53,-201v0,-25,30,-46,60,-46v63,0,76,68,41,104v-12,27,-88,34,-93,57v1,21,44,14,53,1v3,-2,8,3,7,7v-12,29,-82,36,-78,-14v-6,-35,55,-62,85,-83v21,-14,14,-59,-17,-57v-28,-6,-56,31,-31,45v8,1,4,-7,4,-12v0,-10,7,-18,19,-18v11,0,17,7,17,17v0,18,-17,30,-34,30v-19,0,-33,-12,-33,-31xm85,-18v0,10,-10,23,-22,22v-12,-1,-23,-9,-23,-22v0,-12,9,-24,23,-24v14,0,22,11,22,24","w":153},"@":{"d":"139,-82v14,-13,51,-50,51,-81v0,-11,-4,-16,-11,-16v-26,7,-47,54,-50,84v0,8,3,13,10,13xm181,-191v19,-3,19,16,32,3v7,1,23,-3,23,3v-18,37,-31,75,-36,103v-1,5,5,7,8,7v27,-4,52,-44,52,-84v0,-47,-28,-73,-74,-73v-72,0,-119,64,-124,137v-5,74,83,104,143,73v6,-3,6,4,8,7v-11,14,-45,20,-72,20v-66,1,-114,-33,-114,-95v0,-89,74,-157,163,-157v62,0,101,30,99,91v-2,58,-40,96,-101,96v-31,0,-19,-19,-12,-42r-3,-2v-20,24,-28,44,-57,44v-16,0,-24,-8,-23,-26v3,-47,45,-99,88,-105","w":285},"A":{"d":"193,-43v-10,22,-2,32,19,31v-1,29,-65,4,-103,13v-13,-17,15,-11,24,-19v14,-20,21,-63,30,-90r-60,0v-16,21,-54,63,-58,84v-2,10,12,12,24,11v6,16,-6,15,-28,13v-23,-2,-54,5,-72,-2v-1,-18,17,-8,30,-18v7,-6,16,-11,22,-18r169,-200v9,-6,34,-4,53,-9v3,0,4,2,3,4xm112,-121r55,0r26,-90v1,-2,0,-3,-2,-4v-2,-1,-4,0,-5,2","w":236,"k":{"p":-4,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"u":-4,"v":-4,"w":-4,"a":-2,"b":-4,"g":-4,"h":-4,"i":-4,"j":-7,"k":-4,"f":-7,"l":-4,"m":-4,"n":-4,"r":-4,"s":-4,"t":-4,"x":-4,"y":-4,"z":-4,"T":-2,"U":-2,"V":-9,"W":-9,"X":14,"Y":-11}},"B":{"d":"209,-63v-2,80,-121,62,-209,64v-5,-1,-4,-13,1,-14v19,1,27,-2,32,-21r48,-184v4,-16,-35,1,-25,-21v45,-3,174,-21,174,47v0,46,-40,60,-78,70v38,9,57,29,57,59xm86,-16v53,26,100,-59,52,-93v-11,-5,-20,-7,-34,-8r-21,79v-2,12,-2,20,3,22xm182,-190v-1,-24,-19,-43,-48,-39r-26,98v42,6,76,-16,74,-59","w":226,"k":{"T":4,"U":2,"V":2,"W":2,"A":2}},"C":{"d":"177,-247v35,-8,60,38,76,10v4,2,11,0,9,6r-19,76v-2,3,-13,3,-14,-2v3,-39,-13,-74,-49,-74v-67,0,-94,89,-97,154v-1,36,20,65,48,65v38,0,66,-21,86,-63v3,-2,13,-1,14,4r-26,77v-13,9,-7,-12,-17,-14v-62,28,-163,10,-159,-70v3,-63,18,-91,51,-127v25,-28,57,-42,97,-42","w":245,"k":{"T":3,"A":-14,"C":4,"G":4,"O":4,"Q":4}},"D":{"d":"283,-143v0,141,-135,150,-281,144v-7,-5,-1,-17,10,-14v13,0,22,-10,27,-28r41,-168v6,-20,-14,-18,-31,-19v-1,-24,44,-13,77,-15v87,-6,157,24,157,100xm233,-142v0,-50,-37,-87,-87,-87v-8,0,-14,1,-14,4r-47,202v0,6,11,10,17,10v75,0,131,-51,131,-129","w":285,"k":{"p":-4,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"u":-5,"v":-9,"w":-9,"f":-4,"r":-5,"y":-11,"T":16,"U":6,"V":2,"W":2,"X":7,"Y":13,"A":5,",":11,".":11,"M":4}},"E":{"d":"168,-89v-5,-25,-21,-37,-56,-33r-35,109v42,-2,89,9,109,-19v17,-12,18,-23,35,-33v2,2,8,3,5,8v-7,19,-12,40,-21,57r-208,1v-6,-1,0,-7,-1,-11v11,-7,30,-1,37,-22r54,-171v7,-21,-6,-27,-27,-25v-8,-17,13,-14,29,-14r148,1v3,19,15,41,12,58v-3,2,-5,4,-9,0v-16,-14,-26,-35,-47,-45r-48,0r-30,93v36,2,57,-1,70,-30v3,-4,11,-1,12,3v-11,22,-13,52,-22,74","w":243,"k":{"T":5,"U":7,"V":10,"W":10,"Y":-2,"M":-4,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"S":4,"Z":13}},"F":{"d":"249,-246v9,14,11,48,10,65v-15,8,-13,-7,-26,-21v-15,-17,-10,-24,-33,-25v-16,-1,-35,-1,-56,-1r-30,95v41,0,71,0,80,-37v1,-3,13,-3,13,2r-21,91v-1,2,-15,3,-14,-3v10,-42,-27,-38,-62,-40v-8,32,-26,67,-26,102v3,10,36,-3,25,17v-25,5,-74,-2,-108,2v-10,-22,32,-6,33,-35r56,-181v5,-13,-5,-14,-17,-13v-8,-12,8,-14,20,-14v51,2,110,3,156,-4","w":230,"k":{"c":17,"d":17,"e":17,"o":17,"q":17,"u":12,"a":19,"i":-2,"l":-5,"r":7,"T":-14,"U":-5,"A":31,",":43,".":43}},"G":{"d":"84,-89v0,51,37,90,84,73v11,-13,15,-46,14,-67v-5,-8,-32,5,-24,-15v24,-6,68,1,102,-2v5,0,2,8,2,11v-5,7,-27,1,-27,15v-7,21,-6,50,-20,64v-80,38,-184,5,-184,-81v0,-109,126,-199,220,-134v4,1,14,-23,22,-8v-9,24,-12,54,-24,74v-5,-1,-12,3,-12,-4v1,-40,-17,-67,-57,-68v-53,0,-96,80,-96,142","w":266,"k":{"u":-4,"n":-4,"r":-5,"T":2}},"H":{"d":"296,-210r-56,173v-5,17,1,28,19,24v6,0,2,7,2,12v-22,5,-74,-2,-105,2v-5,0,-2,-10,-2,-11v4,-7,21,0,27,-9v14,-22,23,-65,34,-93v1,-3,0,-5,-3,-5r-99,0v-4,0,-6,2,-7,4v-7,31,-25,63,-25,96v3,9,29,-4,22,15v-19,7,-77,1,-108,2v-4,-19,21,-8,27,-19v30,-56,43,-130,67,-192v8,-20,-14,-13,-24,-20v9,-25,67,-4,108,-11v5,22,-33,7,-35,32r-24,75v-1,3,0,4,3,4r100,0v3,0,4,-1,5,-4v7,-30,24,-57,24,-89v-4,-7,-24,1,-16,-16v24,-3,70,-3,99,0v1,20,-25,6,-33,30","w":295,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"u":4,"a":4,"b":-7,"i":4,"j":-4,"k":-4,"f":-5,"l":-4,"r":-4,"y":4,"T":-4,"Y":-18}},"I":{"d":"171,-231v-18,7,-33,3,-40,28r-45,166v-7,22,7,26,27,24v6,17,-8,13,-32,13r-85,1v-9,-9,1,-15,13,-14v21,2,23,-9,28,-26r45,-165v10,-28,-13,-20,-27,-27v9,-25,72,-4,114,-11v7,0,3,7,2,11","w":138,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"u":4,"a":4,"b":-7,"i":4,"j":-4,"k":-4,"f":-5,"l":-4,"r":-4,"y":4,"T":-4,"Y":-18}},"J":{"d":"-21,19v16,0,21,17,16,32v7,12,24,5,30,-9v29,-70,48,-170,74,-248v9,-26,-13,-19,-27,-25v9,-26,69,-3,110,-11v5,0,2,10,2,11v-16,6,-28,3,-37,32v-24,75,-46,189,-87,241v-16,21,-38,30,-62,30v-23,0,-40,-11,-41,-29v0,-12,8,-24,22,-24","w":146,"k":{"T":-9,",":11,".":11}},"K":{"d":"154,-131v23,21,52,120,95,118v7,1,3,7,2,11v-20,7,-67,-1,-103,3v-6,0,-3,-7,-3,-11v2,-7,25,0,18,-14r-43,-83v-3,-5,-7,-8,-12,-8v-8,32,-28,60,-26,96v1,11,26,-1,18,17v-19,8,-68,-2,-100,3v-12,-21,31,-8,32,-35v18,-63,45,-124,57,-189v-3,-10,-30,2,-20,-17v26,-5,66,1,100,-2v6,4,0,19,-11,14v-10,0,-16,6,-20,18r-26,81v12,0,21,-2,25,-6v49,-46,77,-61,86,-90v-5,-3,-26,-5,-10,-17r81,0v6,-1,4,6,3,10v-10,9,-25,2,-40,14","w":259,"k":{"v":20,"w":17,"a":-5,"y":22,"T":-4,"U":5,"Y":-11,"C":13,"G":13,"O":13,"Q":13}},"L":{"d":"208,0v-7,13,-26,-4,-45,1r-164,0v-14,-16,15,-12,23,-19v28,-53,40,-128,63,-188v10,-27,-12,-18,-26,-25v11,-25,75,-4,117,-11v6,0,1,8,1,11v-14,8,-41,-2,-43,27r-56,181v-4,17,23,8,36,10v71,11,74,-31,105,-55v2,2,7,1,8,5","w":237,"k":{"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"v":7,"w":9,"a":-4,"j":-4,"l":-4,"y":7,"T":38,"U":21,"V":22,"W":22,"Y":25,"A":-13,"C":13,"G":13,"O":13,"Q":13}},"M":{"d":"137,-241v7,-1,7,2,8,8r24,166v2,0,4,-1,5,-3r117,-165v15,-14,48,-4,79,-7v5,0,2,10,2,11v-13,6,-23,3,-30,29r-46,167v-5,16,2,25,19,22v6,15,-6,13,-28,13r-76,1v-14,-24,37,-4,36,-39r49,-177v-54,66,-100,141,-151,210v-4,7,-14,8,-16,-3r-26,-181v-1,-5,-2,-6,-4,-1r-47,141v-4,17,-10,41,16,36v7,13,-5,16,-22,13r-53,1v-5,-4,-1,-18,9,-14v28,-6,30,-29,42,-63r42,-120v15,-28,-5,-31,-26,-35v-1,-16,21,-10,37,-11v11,0,24,1,40,1","w":348,"k":{"j":-7,"C":2,"G":2,"O":2,"Q":2}},"N":{"d":"92,-189v-14,36,-51,147,-38,175v8,0,33,1,17,15r-83,0v-5,-4,-2,-18,8,-14v24,-4,30,-24,38,-51v15,-49,35,-95,43,-148v-2,-14,-12,-18,-29,-16v-5,-5,0,-16,11,-14v23,5,58,-8,67,10r82,161v3,3,5,3,6,-2r30,-97v15,-52,11,-56,-14,-61v1,-24,47,-5,77,-11v6,-1,2,10,2,11v0,5,-8,2,-12,3v-8,0,-17,12,-26,37r-64,182v-4,12,-12,11,-18,2","w":266,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"u":4,"a":4,"T":-9,"C":-5,"G":-5,"O":-5,"Q":-5}},"O":{"d":"271,-143v0,75,-60,148,-137,148v-64,0,-99,-45,-99,-105v0,-85,52,-147,136,-147v62,0,100,39,100,104xm222,-176v4,-62,-67,-63,-93,-25v-27,39,-71,121,-36,173v7,11,20,15,36,15v64,0,88,-90,93,-163","w":275,"k":{"p":-4,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"u":-5,"v":-9,"w":-9,"f":-4,"r":-5,"y":-11,"T":16,"U":6,"V":2,"W":2,"X":7,"Y":13,"A":5,",":11,".":11,"M":4}},"P":{"d":"238,-176v0,62,-70,92,-140,76r-16,61v-6,26,5,27,26,26v6,16,-6,13,-29,13r-79,1v-7,-4,-2,-17,8,-14v17,0,22,-13,26,-28r43,-162v6,-25,-4,-25,-24,-24v-4,-3,-2,-15,5,-14v79,2,180,-20,180,65xm128,-109v63,4,86,-115,17,-121v-6,0,-10,1,-13,1r-30,114v6,4,15,6,26,6","w":225,"k":{"c":7,"d":7,"e":7,"o":7,"q":7,"u":-4,"a":13,"r":-11,"y":-4,"T":-4,"Y":-9,"A":32,",":58,".":58,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,":":4,";":4}},"Q":{"d":"202,79v39,23,-5,-42,33,-42v12,0,17,7,17,21v0,30,-28,41,-61,41v-53,-1,-55,-53,-113,-48v-23,-4,-21,16,-33,16v-10,0,-13,-11,-14,-18v7,-20,62,-35,79,-45r0,-3v-70,-5,-95,-103,-59,-168v28,-50,55,-75,125,-80v112,-8,116,145,58,211v-34,39,-113,42,-158,71r1,3v37,-5,91,-6,107,20v7,12,14,17,18,21xm118,-13v74,5,110,-90,110,-163v0,-35,-15,-52,-44,-52v-63,0,-104,91,-108,160v-1,33,16,53,42,55","w":277,"k":{"p":-4,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"u":-5,"v":-9,"w":-9,"f":-4,"r":-5,"y":-11,"T":16,"U":6,"V":2,"W":2,"X":7,"Y":13,"A":5,",":11,".":11,"M":4}},"R":{"d":"153,-121v41,15,36,114,95,108v7,10,-1,16,-17,13v-22,-4,-54,10,-64,-10v-16,-35,-31,-73,-52,-104v-4,-2,-8,-2,-14,-2v-9,31,-22,60,-28,93v-4,21,31,-3,25,22v-24,5,-70,-2,-103,2v-11,-19,29,-8,29,-31r58,-179v9,-21,-13,-15,-25,-21v2,-4,0,-11,7,-11v72,4,176,-22,176,52v0,39,-46,65,-87,68xm189,-192v0,-25,-20,-43,-53,-38r-31,101v48,1,84,-19,84,-63","w":253,"k":{"u":-4,"a":-7,"t":-4,"y":4,"T":22,"U":16,"V":9,"W":9,"X":13,"Y":5,"A":4,"C":13,"G":13,"O":13,"Q":13,",":-7,".":-7,"B":7,"D":7,"E":7,"F":7,"H":7,"I":7,"K":7,"L":7,"N":7,"P":7,"R":7,"S":2}},"S":{"d":"56,-90v-3,37,8,76,42,77v36,1,42,-46,21,-67v-30,-30,-62,-54,-62,-103v0,-34,30,-64,72,-64v14,0,30,11,48,18v4,3,6,-22,16,-10v-6,22,-6,52,-16,70v-4,0,-10,2,-10,-3v0,-30,-10,-56,-39,-57v-33,-1,-38,49,-16,66v23,30,60,45,60,97v0,44,-32,71,-76,71v-22,0,-38,-15,-55,-28v-12,5,-10,23,-22,15v4,-27,17,-60,29,-84","w":190,"k":{"a":-4,"T":5}},"T":{"d":"262,-169v-25,-42,-7,-61,-73,-59r-56,184v-9,28,4,33,30,31v6,19,-11,13,-36,13r-87,1v-5,-1,-4,-14,2,-14v30,1,37,-10,44,-36r54,-179v-69,-6,-72,24,-107,51v-17,-8,-3,-15,7,-40v10,-24,10,-26,16,-33v33,17,179,10,218,1v3,23,-2,52,-2,76v0,5,-7,3,-10,4","w":237,"k":{";":23,":":23,"c":23,"d":23,"e":23,"o":23,"q":23,"u":14,"v":22,"w":27,"a":31,"h":-4,"i":-7,"m":11,"r":7,"s":14,"y":20,"z":7,"T":-22,"U":-4,"V":-14,"W":-14,"X":-5,"Y":-32,"A":36,"C":-4,"G":-4,"O":-4,"Q":-4,",":38,".":38,"M":-7,"B":-7,"D":-7,"E":-7,"F":-7,"H":-7,"I":-7,"K":-7,"L":-7,"N":-7,"P":-7,"R":-7,"Z":-7,")":-17,"]":-17,"}":-17,"-":27}},"U":{"d":"201,-25v-39,45,-165,42,-160,-35v3,-51,24,-101,38,-146v8,-27,-11,-19,-25,-25v9,-25,67,-3,107,-11v3,0,5,14,-2,14v-18,-1,-24,3,-29,20v-12,42,-36,103,-40,146v-4,51,59,57,89,32v44,-36,49,-118,67,-180v4,-14,-5,-20,-20,-18v-6,0,-1,-7,-2,-11v16,-8,49,0,76,-3v5,2,4,17,-6,14v-10,0,-19,13,-27,39v-20,57,-31,123,-66,164","w":267,"k":{"c":7,"d":7,"e":7,"o":7,"q":7,"a":7,"b":-4,"g":4,"f":-7,"m":4,"s":4,"x":7,"y":4,"T":-4,"A":15,",":13,".":13}},"V":{"d":"66,-208v10,-31,-33,-10,-24,-31v21,-5,79,-5,108,0v2,19,-33,4,-33,26v0,47,-20,95,-21,140v2,1,4,0,6,-3r87,-116v15,-21,24,-33,11,-36v-12,4,-14,-11,-5,-14r71,0v5,0,2,7,2,10v0,5,-5,4,-9,4v-10,0,-27,14,-51,43r-151,186v-6,9,-20,10,-18,-8","w":215,"k":{"j":-20,"c":36,"d":36,"e":36,"o":36,"q":36,"u":18,"a":40,"h":-11,"i":-7,"m":12,"r":16,"t":6,"y":20,"T":-4,"A":56,"C":7,"G":7,"O":7,"Q":7,",":43,".":43,")":-30,"]":-30,"}":-30,":":6,";":6,"-":22}},"W":{"d":"62,-209v8,-31,-23,-10,-15,-30v19,-8,61,0,93,-3v2,5,0,17,-9,14v-13,0,-17,6,-18,19v-4,45,-17,95,-16,138v27,-31,47,-69,71,-103v10,-14,14,-28,14,-41v0,-20,-19,-5,-13,-25v20,-5,51,1,78,-2v6,0,3,7,2,11v-7,6,-19,1,-19,20v0,47,-14,99,-11,144v24,-25,66,-105,78,-143v9,-26,-21,-8,-17,-29v16,-8,51,0,79,-3v6,18,-19,10,-27,23v-51,83,-71,123,-138,213v-6,9,-12,13,-17,13v-6,0,-8,-4,-7,-14r4,-146v-17,14,-85,114,-110,150v-8,12,-24,16,-22,-4","w":306,"k":{"j":-13,"c":36,"d":36,"e":36,"o":36,"q":36,"u":18,"a":40,"h":-11,"i":-7,"m":12,"r":16,"t":6,"y":20,"T":-4,"A":56,"C":7,"G":7,"O":7,"Q":7,",":43,".":43,")":-30,"]":-30,"}":-30,":":6,";":6,"-":22}},"X":{"d":"108,-118r-38,-105v-4,-9,-32,1,-18,-19r91,0v6,0,1,7,2,11v-7,7,-24,-1,-17,21r18,58v4,-8,63,-55,56,-71v-4,-9,-25,1,-18,-17v20,-3,62,-3,86,0v0,22,-22,9,-39,25r-81,77v15,39,24,85,44,120v5,9,31,0,18,19r-94,0v-5,-4,-1,-18,9,-14v8,1,10,-6,8,-14v-12,-44,-20,-70,-23,-77v-39,43,-62,55,-70,86v1,8,30,2,13,19r-88,-1v-2,-23,33,-6,43,-27v19,-13,70,-66,98,-91","w":228,"k":{"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"a":-4,"i":-4,"r":-4,"y":4,"T":-2,"V":-5,"W":-5,"X":14,"Y":-2,"A":14,"C":13,"G":13,"O":13,"Q":13}},"Y":{"d":"51,-13v42,4,31,-45,42,-72v-2,-49,-28,-86,-37,-130v-3,-14,-22,-10,-33,-16v6,-25,67,-4,106,-11v10,22,-30,4,-21,30v10,32,15,71,29,99v11,-6,8,-12,31,-47v19,-28,27,-44,28,-48v6,-17,-3,-21,-19,-20v-5,-1,-5,-14,2,-14r79,0v6,0,1,7,2,11v-9,7,-26,2,-35,18v-35,61,-94,104,-95,197v5,4,33,1,17,17r-98,0v-6,0,-1,-8,-1,-11v0,-2,1,-3,3,-3","w":216,"k":{"c":11,"d":11,"e":11,"o":11,"q":11,"u":16,"v":11,"a":20,"i":-4,"l":-11,"r":7,"t":8,"T":-9,"V":-9,"W":-9,"X":3,"Y":-18,"A":27,"C":2,"G":2,"O":2,"Q":2,",":14,".":14,")":-31,"]":-31,"}":-31,":":22,";":22,"-":27}},"Z":{"d":"208,6v-28,-11,-140,-4,-191,-6v-8,0,-5,-7,-2,-11r183,-217v-87,3,-112,-2,-139,43v-2,4,-13,0,-12,-3v7,-20,10,-44,20,-60v35,13,133,7,186,7v8,0,7,8,3,11r-180,216v76,2,116,-1,145,-46v3,-5,12,1,11,5v-9,20,-12,45,-24,61","w":244,"k":{"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"w":9,"a":-4,"y":4,"T":11,"A":-4,"C":14,"G":14,"O":14,"Q":14}},"[":{"d":"92,-274v16,-7,61,-7,80,-1v4,22,-37,2,-47,16r-88,320v0,2,0,4,2,4v14,1,33,-3,43,2v-2,5,1,11,-8,11r-75,0v-2,0,-3,-2,-2,-5","w":111,"k":{"T":-22,"V":-25,"W":-25,"Y":-29,"J":-47}},"\\":{"d":"110,-3v-3,6,-18,10,-23,5r-49,-240v1,-6,19,-12,24,-6","w":115},"]":{"d":"2,59r88,-320v-6,-11,-34,2,-45,-6v2,-5,0,-12,8,-11r73,0v3,0,4,2,3,5r-94,348v-19,6,-59,5,-80,1v-5,-23,37,-3,47,-17","w":111},"^":{"d":"17,-96r74,-151r12,0r75,151r-29,0v-19,-35,-31,-77,-53,-109r-52,109r-27,0"},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0"},"`":{"d":"102,-176v2,3,-3,8,-6,6v-16,-15,-50,-21,-50,-47v4,-14,20,-14,28,-2","w":86},"a":{"d":"5,-24v4,-58,41,-130,97,-130v12,0,21,5,28,13v2,-16,18,-16,37,-15v3,0,4,2,3,5v-16,46,-24,71,-25,75v-2,11,-13,39,-14,52v14,10,20,-26,32,-15v-3,22,-32,41,-57,43v-30,-9,-10,-20,-1,-59r-3,-2v-19,27,-32,57,-72,61v-10,1,-26,-16,-25,-28xm99,-138v-29,0,-53,76,-51,102v0,7,3,10,9,10v20,-14,61,-60,58,-96v0,-8,-8,-16,-16,-16","w":171},"b":{"d":"6,-22v11,-70,48,-123,73,-204v3,-10,-36,1,-16,-18r62,0v4,0,5,2,3,6r-59,130r4,2v18,-25,31,-46,66,-48v16,-1,27,18,27,32v-3,63,-50,128,-128,126v-17,0,-35,-9,-32,-26xm114,-128v-34,14,-60,64,-69,106v0,7,3,12,12,10v39,-7,67,-61,66,-99v1,-9,-2,-16,-9,-17","w":169,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"v":-4,"w":-2,"a":2,"h":4,"k":2,"l":2,"x":4,"y":4,"z":4,",":7,".":7}},"c":{"d":"111,-113v-19,4,-17,-36,-34,-15v-12,23,-24,49,-24,85v0,37,36,17,47,8v11,16,-30,40,-55,39v-20,-1,-38,-17,-36,-40v4,-58,35,-110,90,-118v29,-4,37,35,12,41","w":119,"k":{"a":-2,"h":4,"y":-4}},"d":{"d":"5,-30v3,-55,46,-120,97,-124v12,0,21,4,27,12v6,-28,20,-55,19,-85v-3,-9,-28,4,-21,-15v17,-5,46,-1,67,-2v5,0,6,2,4,7v-2,16,-73,199,-60,219v11,-3,19,-26,29,-14v-7,19,-34,34,-60,36v-28,-7,-9,-24,-1,-59r-4,-3v-18,26,-31,57,-68,62v-16,2,-29,-18,-29,-34xm99,-141v-18,-2,-51,86,-49,106v2,22,18,10,25,-1v13,-19,42,-48,42,-81v0,-13,-6,-23,-18,-24","w":174,"k":{",":2,".":2}},"e":{"d":"55,-66v-6,14,-4,49,17,46v15,1,30,-10,41,-20v16,10,-4,22,-19,32v-30,21,-86,15,-85,-29v1,-60,49,-117,104,-117v45,0,29,57,-5,72v-17,7,-34,15,-53,16xm58,-80v24,-2,44,-16,44,-43v-4,-22,-19,-13,-29,5v-7,12,-12,25,-15,38","w":140,"k":{"v":-2,"w":-4,"b":-2,"g":1,"j":-4,"f":-7,"l":2,"r":-2,"x":-2,"y":-4,"z":-4,",":2,".":2}},"f":{"d":"-59,64v20,0,12,24,27,27v30,-11,36,-49,47,-95r29,-123v-13,-1,-40,7,-31,-13v5,-7,23,-1,34,-3v15,-49,37,-97,96,-105v37,-5,58,38,24,45v-27,6,-21,-50,-48,-23v-18,18,-21,54,-29,83r38,0v4,2,2,15,-3,16r-38,0v-21,70,-34,154,-75,203v-17,20,-35,31,-55,31v-18,-1,-33,-7,-33,-23v0,-10,7,-20,17,-20","w":111,"k":{"i":4,"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"s":-4," ":-4,",":6,".":6,")":-49,"]":-49,"}":-49,"\"":-49,"'":-49}},"g":{"d":"143,53v0,70,-162,73,-170,9v5,-35,27,-35,60,-52v-29,-19,-4,-40,18,-50v-62,-26,-16,-114,46,-114v19,0,32,6,39,17v11,-9,21,-13,30,-13v10,0,18,7,17,17v-2,29,-30,2,-40,9v10,44,-28,89,-76,87v-22,9,-10,27,6,31v23,13,70,30,70,59xm95,-141v-26,8,-34,42,-34,73v0,11,4,17,11,17v22,-2,36,-48,33,-77v0,-7,-3,-14,-10,-13xm14,56v0,26,23,37,50,38v24,1,47,-21,31,-43v-5,-9,-51,-31,-54,-33v-15,9,-27,17,-27,38","w":168,"k":{"p":-14,"c":2,"d":2,"e":2,"o":2,"q":2,"a":6,"g":-11,"i":-4,"f":-17,"m":-4,"n":-4,"r":-9,"s":4,"y":-16,",":7,".":7}},"h":{"d":"64,-12v-2,-20,30,-25,31,-5v0,9,3,13,7,13v5,0,10,-10,16,-31v7,-25,16,-60,15,-76v0,-10,-4,-16,-11,-16v-31,0,-72,82,-85,124v-6,6,-23,2,-34,3v-4,0,-5,-1,-4,-4r80,-220v3,-12,-38,-1,-18,-20r65,0v8,3,3,7,0,16r-53,126r3,2v23,-36,45,-54,66,-54v21,0,32,13,32,38v0,50,-43,128,-87,128v-14,0,-22,-10,-23,-24","k":{"v":-4,"w":-4}},"i":{"d":"98,-37v-7,21,-38,41,-70,41v-9,0,-14,-4,-14,-11r37,-116v-13,-16,-26,29,-38,17v8,-25,36,-44,68,-48v28,7,15,21,4,53r-25,77v11,21,31,-33,38,-13xm61,-212v-1,-27,48,-29,48,-2v1,12,-14,24,-25,24v-14,0,-22,-9,-23,-22","w":106,"k":{"v":2,"y":2}},"j":{"d":"81,-154v28,8,14,33,2,68v-23,70,-39,154,-119,169v-33,6,-51,-40,-18,-46v20,-3,17,23,26,32v45,-27,57,-127,78,-190v-8,-17,-19,5,-35,12v-11,-11,8,-20,23,-31v13,-10,28,-14,43,-14xm60,-211v-2,-30,51,-35,53,-5v1,30,-50,35,-53,5","w":100,"k":{",":4,".":4}},"k":{"d":"128,-122v-2,-16,-15,-8,-28,2v-21,17,-30,28,-37,50v23,8,68,-32,65,-52xm168,-130v-2,37,-45,45,-66,63v16,16,27,70,55,45v4,-2,9,5,6,8v-18,23,-68,27,-77,-4v-9,-14,-7,-39,-27,-42r-20,57v-7,6,-31,4,-40,1r79,-213v7,-14,-4,-18,-19,-16v-4,-2,-1,-14,5,-13r66,0v4,0,4,2,2,7r-55,123r3,1v12,-16,38,-41,63,-41v14,0,26,8,25,24","w":169},"l":{"d":"87,-33v-4,22,-70,57,-83,21v18,-62,45,-134,67,-196v9,-25,-6,-21,-20,-26v2,-4,0,-11,6,-10r63,0v4,0,4,2,2,6r-72,202v-4,10,-2,16,4,16v6,2,16,-12,29,-18","w":93,"k":{",":2,".":2}},"m":{"d":"185,-9v-5,-2,35,-99,34,-108v-8,-16,-12,-3,-27,12v-22,26,-45,64,-57,103v-7,5,-24,1,-35,2v-3,0,-5,-2,-4,-5r22,-59v11,-30,16,-48,16,-53v-7,-15,-11,-4,-26,11v-25,26,-45,63,-58,103v-6,7,-25,1,-36,3v-3,0,-4,-2,-3,-5r40,-119v-3,-10,-9,-3,-17,4v-9,8,-12,19,-20,9v5,-18,36,-44,60,-43v49,2,-10,59,1,76v26,-39,39,-68,77,-76v38,11,21,26,4,75v7,3,4,-1,14,-13v19,-25,31,-58,69,-62v12,-1,21,11,22,20v8,6,-41,105,-28,112v16,1,21,-35,34,-23v-6,26,-34,46,-65,49v-10,1,-17,-5,-17,-13","w":276},"n":{"d":"103,-10r33,-107v-6,-17,-15,-5,-29,9v-30,30,-47,66,-59,106v-8,5,-25,1,-36,2v-3,0,-4,-1,-3,-4r41,-120v-2,-10,-8,-6,-16,1v-7,6,-13,19,-20,9v11,-26,42,-40,65,-40v28,11,11,23,-3,61r4,3v24,-34,38,-60,76,-64v13,-1,23,12,23,24r-32,104v1,11,8,7,14,1v6,-5,11,-15,17,-7v-5,19,-35,34,-60,36v-10,0,-15,-5,-15,-14","w":191,"k":{"T":22}},"o":{"d":"142,-101v0,52,-26,107,-83,105v-27,-1,-49,-23,-48,-55v1,-53,26,-103,80,-103v32,0,51,19,51,53xm41,-33v0,8,5,16,13,16v28,-1,59,-67,59,-101v0,-10,-5,-15,-14,-15v-34,0,-55,66,-58,100","w":150,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"v":-4,"w":-2,"a":2,"h":4,"k":2,"l":2,"x":4,"y":4,"z":4,",":7,".":7}},"p":{"d":"105,-153v37,-6,67,14,67,50v0,56,-59,99,-121,103v-7,29,-25,58,-25,90v0,9,33,-2,23,16v-23,5,-66,-2,-97,2v-6,-6,1,-16,11,-13v12,0,20,-9,27,-28r66,-192v-17,3,-32,23,-44,29v-1,-3,-6,-3,-4,-8v15,-21,34,-34,56,-42v6,-14,5,-34,17,-42v15,-2,33,-13,45,-10xm130,-94v0,-26,-7,-45,-31,-40r-42,121v32,-5,73,-41,73,-81","w":178,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"v":-4,"w":-2,"a":2,"h":4,"k":2,"l":2,"x":4,"y":4,"z":4,",":7,".":7}},"q":{"d":"11,-40v3,-55,30,-112,93,-114v16,-1,24,10,35,14v13,-3,28,-19,41,-12v-24,80,-57,152,-84,229v-6,17,1,19,15,18v6,13,-8,12,-25,12r-69,1v-4,0,-3,-7,-2,-10v12,-7,31,-2,39,-21r39,-89r-3,-2v-25,31,-81,21,-79,-26xm111,-138v-38,11,-64,69,-64,110v0,11,5,16,15,16v34,0,61,-69,61,-105v0,-13,-3,-21,-12,-21","w":173,"k":{",":4,".":4}},"r":{"d":"154,-134v0,24,-25,26,-38,16v-36,17,-48,74,-62,115v-7,7,-24,1,-36,3v-3,0,-4,-1,-3,-3r35,-121v-12,-21,-25,21,-38,12v4,-21,31,-41,57,-42v33,9,16,20,4,62r4,2v19,-43,39,-64,57,-64v11,0,20,9,20,20","w":140,"k":{"p":-7,"c":-2,"d":-2,"e":-2,"o":-2,"q":-2,"u":-8,"v":-14,"w":-14,"a":7,"i":-4,"k":2,"f":-14,"l":-2,"m":-5,"n":-7,"r":-9,"t":-6,"x":-9,"y":-14,"z":-11,",":22,".":22,":":-5,";":-5}},"s":{"d":"95,-48v-2,31,-26,53,-60,52v-32,7,-55,-33,-23,-40v13,-4,17,24,29,26v43,-20,-15,-61,-15,-95v-1,-30,26,-50,59,-49v27,-6,45,35,15,40v-18,3,-12,-26,-24,-26v-11,0,-13,7,-13,20v0,20,34,43,32,72","w":117,"k":{"y":-2}},"t":{"d":"66,-182v11,-7,39,-11,50,-19v4,19,-16,39,-21,58r37,0v8,22,-23,15,-42,16r-35,98v3,12,13,7,25,0v12,-8,16,-17,22,-3v-12,14,-71,58,-90,23v4,-46,25,-78,36,-118v-15,1,-42,2,-24,-16r30,0","w":115,"k":{"p":-7,"c":5,"d":5,"e":5,"o":5,"q":5,"u":-5,"v":-4,"w":-4,"a":5,"i":-4,"f":-5,"m":-4,"n":-4,"r":-9,"y":-6}},"u":{"d":"75,-154v62,0,-39,111,-9,130v33,-25,64,-75,74,-124v8,-5,26,-1,38,-2v4,0,4,2,3,5r-38,121v8,18,16,-21,32,-12v-4,21,-31,41,-59,40v-10,0,-15,-5,-15,-13v0,-6,6,-23,18,-54r-4,-3v-20,28,-39,64,-80,70v-50,-18,20,-102,17,-129v-11,-21,-28,22,-38,9v9,-21,31,-38,61,-38","w":187},"v":{"d":"177,-154v25,2,23,43,15,64v-14,38,-47,95,-101,94v-18,0,-36,-13,-34,-42v2,-42,26,-71,47,-94v-10,2,-30,9,-54,9v-13,0,-20,4,-20,11v1,7,22,11,19,26v0,10,-5,15,-16,15v-12,0,-19,-13,-19,-28v0,-51,61,-60,113,-53v-15,34,-30,48,-31,93v0,17,6,33,19,35v37,-3,48,-36,48,-76v4,-20,-10,-20,-10,-35v0,-10,11,-19,24,-19","w":199,"k":{"a":2,"r":-2,"y":-2,",":9,".":9,":":-7,";":-7}},"w":{"d":"14,-102v0,-50,70,-54,121,-48v-9,21,-38,62,-36,95v0,11,7,25,18,25v39,0,45,-46,47,-92v-4,-23,30,-38,38,-17v-4,23,-23,64,-22,84v0,13,8,25,22,25v26,0,43,-29,43,-56v0,-29,-12,-31,-17,-50v0,-10,8,-17,18,-18v52,8,20,102,-3,124v-16,35,-82,55,-88,-3v-13,15,-33,37,-60,37v-24,0,-36,-16,-36,-40v1,-34,34,-79,52,-99v-15,9,-37,16,-68,16v-9,0,-13,2,-13,7v-1,10,23,10,20,26v0,9,-6,15,-16,15v-13,0,-20,-16,-20,-31","w":279,"k":{"c":-4,"d":-4,"e":-4,"o":-4,"q":-4,"a":-2,"r":-2,",":4,".":4,":":-7,";":-7}},"x":{"d":"157,-42v-2,35,-64,70,-76,23v-3,-12,-4,-26,-9,-36v-17,20,-26,52,-55,59v-28,1,-14,-43,-5,-53v13,-1,-2,30,11,26v13,-4,39,-32,47,-46r-12,-50v-1,-6,-4,-8,-8,-8v-5,0,-13,8,-22,26v-2,2,-9,1,-9,-4v9,-22,25,-47,55,-49v26,-2,18,38,29,54v20,-31,20,-46,53,-54v25,4,11,34,4,54v-12,7,-9,-8,-8,-14v0,-21,-10,-13,-22,0v-8,8,-17,18,-25,29r14,57v13,31,25,-26,38,-14","w":169,"k":{"c":2,"d":2,"e":2,"o":2,"q":2,"v":2,"s":2}},"y":{"d":"37,-125v-13,0,-11,30,-26,25v0,-25,21,-54,51,-54v40,0,23,113,26,140r4,1v13,-29,44,-80,25,-123v1,-11,8,-17,19,-18v47,9,9,77,-4,100v-31,54,-80,148,-144,161v-30,6,-32,-39,-7,-41v9,-1,16,13,24,12v28,-8,52,-28,53,-68v-4,-7,-8,-135,-21,-135","w":160,"k":{"c":4,"d":4,"e":4,"o":4,"q":4,"v":-4,"w":-4,"j":-4,"f":-4,"r":-2,",":4,".":4,":":-4,";":-4}},"z":{"d":"118,-14v49,32,-6,-44,34,-44v12,0,18,8,18,23v3,52,-89,60,-112,22v-4,-2,-6,-7,-11,-8v-14,1,-12,29,-32,26v-17,-3,-12,-25,0,-33v7,-6,14,-10,22,-12r73,-69v-21,0,-42,-8,-52,-25v-5,-4,-13,-6,-15,1v9,11,19,37,-4,37v-12,0,-21,-9,-21,-22v1,-22,22,-36,47,-36v26,0,49,17,64,21v9,-3,11,-31,30,-29v18,2,13,20,2,30r-96,86v24,2,43,17,53,32","w":174,"k":{"c":-5,"d":-5,"e":-5,"o":-5,"q":-5,"a":-7}},"{":{"d":"34,-114v27,0,37,-22,33,-58v-8,-70,34,-101,92,-106v4,0,6,2,6,5v0,12,-6,7,-16,9v-70,11,-16,137,-90,154v-10,16,36,21,20,51v-17,32,-43,124,15,125v2,0,2,2,2,7v0,3,0,5,-2,5v-89,4,-80,-95,-45,-148v2,-17,0,-30,-17,-31v-6,-1,-6,-13,2,-13","w":111,"k":{"T":-22,"V":-25,"W":-25,"Y":-29,"J":-47}},"|":{"d":"51,94v-7,-115,1,-246,-2,-365v2,-7,15,-1,22,-3v6,115,1,250,1,368r-21,0","w":90},"}":{"d":"42,-278v82,-5,85,89,47,140v-4,16,-5,40,14,39v3,0,5,3,5,6v0,5,-2,7,-6,7v-31,5,-37,22,-34,58v6,69,-32,103,-91,106v-4,0,-6,-2,-6,-5v0,-11,7,-5,16,-9v70,-8,16,-135,86,-151v22,-14,-25,-20,-18,-42v3,-31,24,-52,22,-87v-1,-29,-6,-50,-35,-49v-2,0,-3,-3,-3,-8v0,-4,1,-5,3,-5","w":111},"~":{"d":"88,-106v18,13,59,34,54,-12r23,0v5,59,-45,71,-82,41v-21,-17,-40,-6,-38,23r-23,0v-3,-43,30,-77,66,-52"},"\u00a9":{"d":"81,-122v0,-54,60,-96,111,-66v10,6,7,-15,19,-4v1,15,6,32,4,46r-7,2v-13,-20,-23,-42,-50,-40v-63,4,-51,121,11,121v18,0,33,-13,48,-24v2,2,8,3,5,7v-38,63,-141,35,-141,-42xm31,-121v0,-70,57,-126,125,-126v72,0,125,53,125,126v0,71,-53,126,-125,126v-72,0,-125,-54,-125,-126xm51,-121v1,70,40,112,105,112v69,0,105,-46,105,-112v0,-69,-42,-109,-105,-112v-60,-3,-106,50,-105,112","w":280},"\u00a0":{"w":72,"k":{"T":16,"V":5,"W":5,"Y":5}}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2007 The Monotype Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Arial is a trademark of The Monotype Corporation in the United States and/or
 * other countries.
 * 
 * Description:
 * Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains
 * more humanist characteristics than many of its predecessors and as such is more
 * in tune with the mood of the last decades of the twentieth century. The overall
 * treatment of curves is softer and fuller than in most industrial-style sans
 * serif faces. Terminal strokes are cut on the diagonal which helps to give the
 * face a less mechanical appearance. Arial is an extremely versatile family of
 * typefaces which can be used with equal success for text setting in reports,
 * presentations, magazines etc, and for display use in newspapers, advertising and
 * promotions.
 * 
 * Manufacturer:
 * The Monotype Corporation
 * 
 * Designer:
 * Robin Nicholas, Patricia Saunders
 */
Cufon.registerFont({"w":164,"face":{"font-family":"Arial Narrow","font-weight":400,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 6 6 2 2 2 3 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-14 -281 289 76.2352","underline-thickness":"26.3672","underline-position":"-24.9609","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":82,"k":{"Y":5,"T":5,"A":16}},"\u00a0":{"w":82},"!":{"d":"34,-64r-8,-137r0,-57r32,0v1,68,-4,130,-7,194r-17,0xm27,0r0,-36r30,0r0,36r-30,0","w":82},"\"":{"d":"21,-166v-5,-28,-10,-57,-8,-92r30,0v1,34,-2,64,-7,92r-15,0xm68,-166v-4,-29,-9,-57,-7,-92r30,0v1,34,-2,64,-7,92r-16,0","w":104},"#":{"d":"14,4r13,-74r-24,0r0,-27r28,0r11,-63r-39,0r0,-27r43,0r13,-75r22,0r-13,75r45,0r13,-75r22,0r-13,75r25,0r0,27r-29,0r-11,63r40,0r0,27r-44,0r-13,74r-22,0r13,-74r-45,0r-13,74r-22,0xm53,-97r45,0r11,-63r-45,0"},"$":{"d":"150,-73v1,42,-26,75,-62,78r0,32r-15,0r0,-32v-44,-5,-58,-33,-63,-77r26,-6v3,30,14,52,37,57r0,-101v-31,-8,-60,-30,-58,-73v1,-41,19,-67,58,-71r0,-15r15,0r0,15v36,4,51,28,57,63r-27,5v-3,-24,-13,-38,-30,-42r0,92v41,10,59,29,62,75xm73,-240v-42,6,-45,78,0,88r0,-88xm88,-21v29,-2,45,-51,28,-78v-5,-7,-15,-14,-28,-19r0,97"},"%":{"d":"61,-126v-30,0,-44,-31,-44,-70v0,-37,15,-66,44,-66v31,0,46,29,46,68v0,37,-15,68,-46,68xm62,-148v31,0,32,-91,0,-92v-32,0,-32,92,0,92xm62,9r115,-271r21,0r-115,271r-21,0xm198,9v-30,0,-45,-31,-45,-69v0,-36,15,-67,44,-67v31,0,47,29,47,68v0,36,-15,68,-46,68xm199,-12v31,0,32,-95,-1,-93v-19,1,-22,20,-22,46v0,27,3,47,23,47","w":262},"&":{"d":"92,-262v29,0,50,25,49,55v0,24,-13,46,-40,63r38,59v4,-10,7,-22,10,-36r27,7v-5,22,-11,40,-19,55v9,15,21,29,33,40r-17,25v-10,-8,-22,-20,-33,-36v-17,23,-37,34,-60,34v-40,0,-67,-38,-67,-75v0,-32,16,-58,50,-77v-14,-21,-23,-31,-24,-57v-1,-30,23,-57,53,-57xm91,-236v-39,3,-23,56,-3,71v29,-11,38,-64,3,-71xm41,-73v-2,32,32,66,63,41v8,-6,15,-13,20,-23r-47,-72v-21,15,-35,27,-36,54","w":196},"'":{"d":"19,-166v-5,-28,-8,-58,-7,-92r30,0v1,34,-2,64,-7,92r-16,0","w":56},"(":{"d":"88,-262v-56,100,-59,230,0,338r-19,0v-59,-87,-73,-238,0,-338r19,0","w":98},")":{"d":"29,-262v73,101,62,248,0,338r-18,0v59,-108,54,-238,0,-338r18,0","w":98},"*":{"d":"9,-210r6,-25v15,7,27,12,34,17v-2,-22,-3,-36,-3,-44r21,0v0,11,-2,26,-4,44v10,-6,21,-12,34,-17r7,25v-12,5,-24,7,-36,9v6,6,14,18,25,34r-17,15v-5,-9,-12,-22,-20,-38v-7,17,-14,29,-19,38r-17,-15v11,-16,19,-28,24,-34v-13,-3,-24,-5,-35,-9","w":114},"+":{"d":"74,-42r0,-70r-58,0r0,-30r58,0r0,-70r24,0r0,70r58,0r0,30r-58,0r0,70r-24,0","w":172},",":{"d":"27,0r0,-36r29,0v0,37,3,76,-24,87r-7,-14v12,-6,17,-17,16,-37r-14,0","w":82},"-":{"d":"9,-77r0,-32r80,0r0,32r-80,0","w":98},"\u00ad":{"d":"9,-77r0,-32r80,0r0,32r-80,0","w":98},".":{"d":"27,0r0,-36r30,0r0,36r-30,0","w":82},"\/":{"d":"0,4r61,-266r21,0r-61,266r-21,0","w":82},"0":{"d":"81,4v-56,0,-70,-56,-69,-131v0,-71,12,-132,69,-132v57,0,69,60,69,132v0,70,-12,131,-69,131xm80,-233v-38,9,-42,45,-42,106v0,63,3,97,43,105v38,-8,42,-44,42,-105v0,-63,-3,-97,-43,-106"},"1":{"d":"32,-194v25,-13,51,-40,61,-65r17,0r0,259r-27,0r0,-202v-11,14,-35,31,-51,39r0,-31","k":{"1":22}},"2":{"d":"148,-187v0,70,-77,106,-103,157r104,0r0,30r-140,0v2,-80,108,-114,113,-188v1,-24,-18,-45,-40,-45v-26,0,-43,22,-42,52r-26,-3v3,-46,25,-73,69,-75v42,-2,65,34,65,72"},"3":{"d":"150,-76v4,64,-73,108,-117,61v-13,-13,-19,-31,-21,-53r26,-4v4,74,85,57,85,-4v0,-34,-27,-60,-60,-46r3,-28v27,5,47,-17,47,-43v0,-22,-14,-40,-34,-40v-24,0,-36,21,-39,47r-25,-6v5,-38,25,-64,63,-67v61,-4,84,94,33,119v26,7,37,31,39,64"},"4":{"d":"95,0r0,-62r-92,0r0,-29r97,-167r21,0r0,167r29,0r0,29r-29,0r0,62r-26,0xm95,-91r0,-116r-66,116r66,0"},"5":{"d":"152,-87v0,67,-68,121,-119,72v-13,-13,-19,-31,-21,-53r27,-2v3,27,15,48,40,48v28,0,47,-29,45,-63v9,-56,-63,-77,-83,-33r-25,-4r21,-132r105,0r0,30r-84,0r-12,69v48,-42,106,6,106,68"},"6":{"d":"11,-121v0,-80,16,-138,75,-138v35,0,58,27,60,64r-25,3v-3,-45,-55,-56,-73,-13v-7,16,-12,40,-12,72v10,-18,28,-34,52,-34v83,0,83,174,-4,171v-56,-2,-73,-52,-73,-125xm82,-139v-59,1,-52,117,2,117v54,-1,53,-119,-2,-117"},"7":{"d":"43,0v3,-85,36,-172,74,-224r-103,0r0,-30r136,0r0,24v-38,50,-76,147,-80,230r-27,0"},"8":{"d":"81,4v-74,8,-95,-126,-29,-144v-55,-20,-33,-126,29,-119v61,-7,84,98,30,119v65,20,46,152,-30,144xm81,-233v-18,0,-34,20,-34,40v0,22,13,41,34,41v19,0,35,-17,35,-40v0,-21,-16,-41,-35,-41xm81,-126v-26,0,-43,25,-43,52v0,28,17,52,43,52v26,-1,43,-22,43,-51v0,-28,-17,-53,-43,-53"},"9":{"d":"151,-134v-1,76,-12,138,-76,138v-36,0,-57,-27,-59,-64r25,-2v4,27,16,40,35,40v42,0,47,-53,49,-99v-8,17,-28,34,-50,34v-39,0,-63,-39,-63,-85v0,-47,25,-87,66,-87v58,0,74,54,73,125xm81,-115v26,0,41,-26,41,-58v0,-31,-15,-60,-41,-60v-53,1,-60,118,0,118"},":":{"d":"27,-151r0,-36r30,0r0,36r-30,0xm27,0r0,-36r30,0r0,36r-30,0","w":82},";":{"d":"27,-151r0,-36r29,0r0,36r-29,0xm27,0r0,-36r29,0v0,37,3,76,-24,87r-7,-14v12,-6,17,-17,16,-37r-14,0","w":82},"\u037e":{"d":"27,-151r0,-36r29,0r0,36r-29,0xm27,0r0,-36r29,0v0,37,3,76,-24,87r-7,-14v12,-6,17,-17,16,-37r-14,0","w":82},"<":{"d":"16,-113r0,-29r140,-72r0,31r-111,56r111,56r0,31","w":172},"=":{"d":"156,-152r-140,0r0,-29r140,0r0,29xm156,-73r-140,0r0,-30r140,0r0,30","w":172},">":{"d":"156,-113r-140,73r0,-31r111,-56r-111,-56r0,-31r140,72r0,29","w":172},"?":{"d":"149,-192v0,59,-62,64,-57,129r-24,0v-12,-65,49,-76,54,-127v2,-24,-17,-47,-40,-46v-27,1,-40,22,-43,52r-27,-4v5,-44,25,-74,69,-74v38,0,68,31,68,70xm66,0r0,-36r29,0r0,36r-29,0"},"@":{"d":"195,1v-21,0,-26,-10,-28,-30v-11,15,-25,28,-44,30v-87,-15,-56,-192,23,-192v20,0,34,15,43,33r5,-27r26,0r-25,145v0,6,4,11,10,11v33,-8,55,-55,55,-97v0,-65,-40,-111,-102,-111v-80,0,-121,69,-121,152v0,85,43,133,125,135v46,0,84,-23,101,-53r26,0v-22,43,-62,79,-127,79v-96,-2,-146,-61,-146,-158v0,-98,45,-180,143,-180v78,0,120,59,123,136v2,55,-37,124,-87,127xm147,-164v-50,0,-73,125,-19,139v34,-5,52,-49,53,-89v1,-27,-12,-50,-34,-50","w":299},"A":{"d":"0,0r81,-258r30,0r86,258r-32,0r-24,-78r-88,0r-24,78r-29,0xm61,-106r71,0r-37,-125v-7,45,-22,84,-34,125","w":196,"k":{"y":5,"w":5,"v":5,"Y":22,"W":11,"V":22,"T":22," ":16}},"B":{"d":"181,-75v-2,50,-26,75,-79,75r-80,0r0,-258r79,0v73,-9,90,92,41,121v23,8,40,30,39,62xm144,-188v0,-46,-47,-39,-94,-39r0,78v45,-1,94,8,94,-39xm152,-75v0,-51,-52,-44,-102,-44r0,89v50,0,102,7,102,-45","w":196},"C":{"d":"111,-25v37,0,56,-28,62,-65r28,8v-10,50,-37,86,-89,86v-73,0,-93,-61,-98,-135v-6,-95,78,-167,152,-112v16,12,25,31,31,56r-27,8v-9,-36,-29,-54,-57,-54v-52,0,-69,45,-70,102v0,59,18,106,68,106","w":213},"D":{"d":"197,-130v0,75,-24,130,-99,130r-76,0r0,-258r73,0v80,-2,102,53,102,128xm168,-131v0,-59,-13,-98,-74,-96r-44,0r0,197r45,0v61,2,73,-44,73,-101","w":213},"E":{"d":"23,0r0,-258r153,0r0,31r-125,0r0,79r117,0r0,30r-117,0r0,88r130,0r0,30r-158,0","w":196},"F":{"d":"25,0r0,-258r142,0r0,31r-114,0r0,80r99,0r0,30r-99,0r0,117r-28,0","w":180,"k":{"A":16,".":33,",":33}},"G":{"d":"123,-26v23,0,50,-14,61,-27r0,-48r-62,0r0,-30r90,0r0,95v-23,21,-50,40,-88,40v-73,0,-107,-55,-108,-132v-2,-89,59,-160,147,-125v26,11,39,33,45,67r-25,9v-7,-37,-23,-56,-61,-56v-55,0,-76,44,-77,103v0,60,25,102,78,104","w":229},"H":{"d":"23,0r0,-258r28,0r0,106r109,0r0,-106r28,0r0,258r-28,0r0,-121r-109,0r0,121r-28,0","w":213},"I":{"d":"28,0r0,-258r28,0r0,258r-28,0","w":82},"J":{"d":"124,-82v0,55,-13,86,-59,86v-43,0,-56,-31,-57,-77r25,-4v2,33,6,48,32,51v26,-3,31,-23,31,-54r0,-178r28,0r0,176","w":147},"K":{"d":"22,0r0,-258r28,0r0,128r105,-128r38,0r-89,105r93,153r-37,0r-76,-130r-34,41r0,89r-28,0","w":196},"L":{"d":"21,0r0,-258r28,0r0,228r104,0r0,30r-132,0","k":{"y":11,"Y":22,"W":22,"V":22,"T":22," ":11}},"M":{"d":"22,0r0,-258r42,0r60,221r62,-221r38,0r0,258r-27,0r0,-216r-62,216r-25,0r-61,-219r0,219r-27,0","w":245},"N":{"d":"22,0r0,-258r29,0r111,203r0,-203r26,0r0,258r-28,0r-111,-202r0,202r-27,0","w":213},"O":{"d":"116,4v-63,0,-101,-64,-101,-130v0,-76,35,-136,101,-136v68,0,100,58,101,133v1,71,-36,133,-101,133xm116,-233v-51,0,-72,46,-72,108v0,54,26,100,72,100v49,0,72,-47,72,-104v0,-56,-20,-104,-72,-104","w":229},"P":{"d":"184,-184v0,49,-24,81,-79,79r-54,0r0,105r-28,0r0,-258r79,0v58,-2,82,23,82,74xm155,-182v0,-53,-51,-46,-104,-45r0,92v51,1,104,7,104,-47","w":196,"k":{"A":22,".":38,",":38," ":5}},"Q":{"d":"115,-262v108,-4,126,167,69,234v13,11,25,19,36,24r-9,24v-15,-7,-30,-18,-45,-32v-79,51,-157,-26,-153,-117v4,-74,32,-130,102,-133xm42,-129v0,68,39,123,101,97v-9,-7,-18,-11,-28,-14r7,-25v16,5,29,13,40,24v42,-48,33,-188,-47,-186v-49,1,-73,46,-73,104","w":229},"R":{"d":"192,-188v0,40,-23,66,-60,71v40,26,52,77,77,117r-35,0r-28,-54v-23,-45,-29,-65,-95,-60r0,114r-28,0r0,-258r93,0v53,-1,76,23,76,70xm163,-187v0,-52,-62,-41,-112,-42r0,85v51,0,112,10,112,-43","w":213,"k":{"Y":5,"W":5,"V":5,"T":5}},"S":{"d":"143,-137v67,33,39,142,-43,142v-52,0,-86,-36,-87,-88r27,-3v-9,69,115,83,115,16v0,-71,-134,-27,-134,-121v0,-75,113,-95,144,-35v7,12,10,25,10,41r-27,2v-2,-32,-19,-47,-51,-49v-39,-2,-63,35,-40,62v9,12,73,26,86,33","w":196},"T":{"d":"77,0r0,-227r-70,0r0,-31r168,0r0,31r-70,0r0,227r-28,0","w":180,"k":{"y":16,"w":16,"u":11,"s":25,"r":11,"o":33,"i":7,"e":33,"c":33,"a":33,"O":5,"A":22,";":33,":":33,".":33,"-":16,",":33," ":5}},"U":{"d":"104,-26v48,0,57,-26,57,-83r0,-149r28,0v-7,109,33,262,-83,262v-115,0,-76,-155,-83,-262r28,0r0,149v-2,54,9,83,53,83","w":213},"V":{"d":"83,0r-82,-258r31,0r66,230r68,-230r29,0r-83,258r-29,0","w":196,"k":{"y":11,"u":11,"r":11,"o":16,"i":5,"e":16,"a":22,"A":22,";":11,":":11,".":27,"-":16,",":27}},"W":{"d":"60,0r-56,-258r29,0r41,222r50,-222r33,0r31,131v7,32,12,62,16,91r44,-222r28,0r-58,258r-27,0r-51,-227r-51,227r-29,0","w":278,"k":{"y":2,"u":5,"r":5,"o":5,"e":5,"a":11,"A":11,";":5,":":5,".":16,"-":5,",":16}},"X":{"d":"1,0r82,-134r-72,-124r33,0r56,98v17,-34,40,-66,59,-98r30,0r-74,122r80,136r-34,0r-63,-109r-63,109r-34,0","w":196},"Y":{"d":"82,0r0,-109r-81,-149r34,0r63,122r64,-122r33,0r-85,149r0,109r-28,0","w":196,"k":{"v":16,"u":16,"q":27,"p":22,"o":27,"i":11,"e":27,"a":22,"A":22,";":19,":":16,".":38,"-":27,",":38," ":5}},"Z":{"d":"6,0r0,-32r131,-195r-119,0r0,-31r152,0r0,31r-132,197r135,0r0,30r-167,0","w":180},"[":{"d":"21,72r0,-330r57,0r0,26r-32,0r0,277r32,0r0,27r-57,0","w":82},"\\":{"d":"61,4r-61,-266r21,0r61,266r-21,0","w":82},"]":{"d":"64,72r-58,0r0,-27r32,0r0,-277r-32,0r0,-26r58,0r0,330","w":82},"^":{"d":"34,-121r-26,0r51,-141r21,0r51,141r-26,0r-36,-105","w":138},"_":{"d":"-2,27r168,0r0,18r-168,0r0,-18"},"`":{"d":"67,-210r-21,0r-33,-49r35,0","w":98},"a":{"d":"84,-191v96,-8,41,142,67,191r-27,0v-3,-6,-4,-14,-5,-23v-27,39,-109,37,-109,-26v0,-59,67,-57,107,-69v2,-32,-10,-47,-37,-47v-27,0,-34,10,-40,36r-25,-4v8,-38,25,-54,69,-58xm69,-21v37,0,51,-29,48,-73v-20,15,-79,4,-79,44v0,19,13,29,31,29"},"b":{"d":"152,-95v6,75,-71,134,-109,72r0,23r-24,0r0,-258r26,0r0,92v10,-15,20,-25,42,-25v46,0,61,44,65,96xm84,-165v-54,1,-60,143,0,143v55,-1,57,-142,0,-143"},"c":{"d":"81,-22v24,0,35,-20,38,-46r26,4v-4,38,-26,68,-65,68v-47,0,-69,-43,-69,-98v0,-98,114,-137,131,-38r-25,5v-4,-22,-14,-38,-35,-38v-32,0,-44,30,-44,71v0,42,10,72,43,72","w":147},"d":{"d":"75,-191v20,0,33,13,42,26r0,-93r26,0r0,258r-25,0r0,-24v-9,15,-20,28,-42,28v-43,-1,-66,-45,-66,-97v0,-54,18,-98,65,-98xm76,-165v-56,0,-54,143,2,143v28,0,41,-30,41,-68v0,-42,-11,-75,-43,-75"},"e":{"d":"37,-85v-4,62,71,90,87,25r26,4v-7,36,-29,60,-67,60v-50,0,-73,-40,-73,-96v0,-56,25,-99,72,-99v49,0,72,47,69,106r-114,0xm124,-111v3,-46,-45,-72,-72,-39v-8,10,-13,23,-14,39r86,0"},"f":{"d":"89,-231v-30,-9,-41,10,-37,44r30,0r0,25r-30,0r0,162r-26,0r0,-162r-23,0r0,-25r23,0v-6,-54,15,-86,67,-72","w":82,"k":{"f":5}},"g":{"d":"144,-25v2,67,-14,97,-69,101v-39,3,-61,-23,-61,-61r25,5v0,31,43,38,63,21v16,-14,15,-28,16,-65v-10,14,-22,24,-43,24v-88,-1,-90,-191,0,-191v22,0,34,11,45,27r0,-23r24,0r0,162xm76,-165v-55,2,-55,140,2,139v58,-1,57,-140,-2,-139"},"h":{"d":"85,-164v-59,0,-35,103,-40,164r-26,0r0,-258r26,0r0,93v10,-16,25,-26,46,-26v77,-1,47,117,53,191r-26,0r0,-118v0,-28,-9,-46,-33,-46"},"i":{"d":"19,-221r0,-37r26,0r0,37r-26,0xm19,0r0,-187r26,0r0,187r-26,0","w":65},"j":{"d":"19,-221r0,-37r26,0r0,37r-26,0xm45,10v3,50,-17,75,-59,62r5,-26v25,6,29,-6,28,-37r0,-196r26,0r0,197","w":65},"k":{"d":"20,0r0,-258r26,0r0,147r61,-76r34,0r-59,70r64,117r-31,0r-51,-95r-18,21r0,74r-26,0","w":147},"l":{"d":"18,0r0,-258r26,0r0,258r-26,0","w":65},"m":{"d":"83,-163v-59,0,-32,104,-38,163r-26,0r0,-187r24,0r0,27v8,-18,23,-30,46,-31v24,0,37,14,43,33v10,-19,23,-33,47,-33v75,0,41,120,48,191r-26,0r0,-118v0,-28,-4,-45,-27,-45v-59,0,-32,104,-38,163r-26,0r0,-121v1,-26,-6,-42,-27,-42","w":245},"n":{"d":"86,-163v-63,0,-35,103,-41,163r-26,0r0,-187r23,0r0,27v11,-18,24,-31,49,-31v78,0,45,116,52,191r-26,0r0,-114v1,-32,-5,-49,-31,-49"},"o":{"d":"81,4v-48,0,-72,-41,-72,-97v0,-56,25,-98,72,-98v46,0,72,42,72,96v0,59,-22,99,-72,99xm80,-165v-30,0,-44,33,-44,72v0,40,14,71,46,71v30,0,44,-32,44,-71v0,-40,-14,-72,-46,-72"},"p":{"d":"152,-95v5,73,-64,131,-107,76r0,91r-26,0r0,-259r24,0r0,25v10,-18,21,-29,44,-29v47,0,61,44,65,96xm84,-166v-54,2,-60,143,0,144v55,0,57,-143,0,-144"},"q":{"d":"75,-191v22,0,35,12,44,29r0,-25r23,0r0,259r-25,0r0,-92v-45,57,-111,-2,-107,-75v3,-48,19,-96,65,-96xm76,-166v-55,0,-55,144,3,144v27,0,41,-31,40,-68v-1,-42,-12,-76,-43,-76"},"r":{"d":"93,-151v-32,-24,-48,18,-48,53r0,98r-26,0r0,-187r23,0r0,29v11,-29,33,-43,60,-23","w":98,"k":{".":16,",":16}},"s":{"d":"116,-97v41,31,14,101,-43,101v-37,0,-58,-20,-64,-60r26,-5v-4,47,73,53,75,10v3,-32,-63,-30,-75,-44v-40,-23,-20,-102,36,-96v35,4,56,17,59,52r-25,5v3,-39,-64,-41,-67,-7v-3,30,66,30,78,44","w":147},"t":{"d":"51,-53v-2,24,6,28,26,25r3,28v-41,7,-55,-6,-55,-55r0,-107r-19,0r0,-25r19,0r0,-46r26,-19r0,65r26,0r0,25r-26,0r0,109","w":82},"u":{"d":"76,-23v60,0,36,-102,41,-164r26,0r0,187r-24,0r0,-27v-10,18,-24,31,-48,31v-78,0,-47,-116,-53,-191r26,0v7,57,-23,164,32,164"},"v":{"d":"62,0r-58,-187r27,0r43,150v11,-50,29,-102,43,-150r27,0r-58,187r-24,0","w":147,"k":{".":22,",":22}},"w":{"d":"47,0r-47,-187r27,0r33,148r33,-148r27,0r30,144r35,-144r25,0r-48,187r-26,0r-31,-144r-31,144r-27,0","w":213,"k":{".":16,",":16}},"x":{"d":"2,0r56,-97r-52,-90r33,0r34,65r37,-65r31,0r-53,88r57,99r-31,0r-40,-74r-40,74r-32,0","w":147},"y":{"d":"18,72r-3,-30v37,7,38,-4,48,-42r-58,-187r28,0r43,152v11,-54,29,-101,43,-152r26,0r-58,190v-16,46,-19,80,-69,69","w":147,"k":{".":22,",":22}},"z":{"d":"6,0r0,-26r97,-136v-31,2,-59,0,-91,1r0,-26r125,0r0,21r-99,140v35,-2,68,-1,103,-1r0,27r-135,0","w":147},"{":{"d":"38,-11v-1,-42,1,-63,-30,-68r0,-29v31,-5,30,-26,30,-68v0,-57,1,-87,54,-86r0,28v-27,-1,-30,7,-30,36v-1,64,2,83,-30,105v25,14,30,34,30,79v0,48,-8,59,30,62r0,28v-54,1,-54,-29,-54,-87","w":98},"|":{"d":"27,76r0,-338r23,0r0,338r-23,0","w":76},"}":{"d":"60,-176v1,42,-1,63,30,68r0,29v-31,5,-30,26,-30,68v0,57,0,88,-53,87r0,-28v27,0,29,-7,29,-36v0,-63,-2,-84,30,-105v-25,-16,-29,-34,-30,-79v-1,-48,9,-60,-29,-62r0,-28v53,-1,53,29,53,86","w":98},"~":{"d":"50,-122v-18,2,-25,9,-37,24r0,-36v26,-42,77,-7,110,3v18,-1,28,-13,37,-25r0,38v-29,41,-76,4,-110,-4","w":172}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2007 The Monotype Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Arial is a trademark of The Monotype Corporation in the United States and/or
 * other countries.
 * 
 * Description:
 * Monotype Drawing Office 1982. A contemporary sans serif design, Arial contains
 * more humanist characteristics than many of its predecessors and as such is more
 * in tune with the mood of the last decades of the twentieth century. The overall
 * treatment of curves is softer and fuller than in most industrial-style sans
 * serif faces. Terminal strokes are cut on the diagonal which helps to give the
 * face a less mechanical appearance. Arial is an extremely versatile family of
 * typefaces which can be used with equal success for text setting in reports,
 * presentations, magazines etc, and for display use in newspapers, advertising and
 * promotions.
 * 
 * Manufacturer:
 * The Monotype Corporation
 * 
 * Designer:
 * Robin Nicholas, Patricia Saunders
 */
Cufon.registerFont({"w":164,"face":{"font-family":"Arial Narrow","font-weight":700,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 7 6 2 2 2 3 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-13 -278 287 76.1149","underline-thickness":"26.3672","underline-position":"-24.9609","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":82,"k":{"Y":5,"A":11}},"!":{"d":"37,-66r-11,-131r0,-61r44,0v2,69,-6,129,-10,192r-23,0xm28,0r0,-49r41,0r0,49r-41,0","w":98},"\"":{"d":"24,-166v-5,-28,-10,-57,-8,-92r44,0v1,34,-2,64,-6,92r-30,0xm89,-166v-5,-28,-10,-57,-8,-92r44,0v1,34,-2,64,-6,92r-30,0","w":140},"#":{"d":"22,-64r-19,0r0,-39r26,0r8,-52r-34,0r0,-39r41,0r11,-68r32,0r-11,68r32,0r11,-68r33,0r-11,68r20,0r0,39r-27,0r-8,52r35,0r0,39r-42,0r-11,68r-32,0r11,-68r-32,0r-12,68r-32,0xm70,-155r-9,52r32,0r9,-52r-32,0"},"$":{"d":"151,-77v1,43,-24,74,-60,80r0,33r-20,0r0,-32v-35,-5,-55,-30,-61,-76r38,-5v3,17,11,33,23,39r0,-74v-72,-14,-73,-142,0,-149r0,-17r20,0r0,17v32,5,50,27,54,61r-36,6v-2,-14,-9,-23,-18,-28r0,69v41,13,58,30,60,76xm71,-223v-23,8,-26,51,0,61r0,-61xm91,-36v30,-6,35,-61,0,-68r0,68"},"%":{"d":"60,-126v-34,0,-47,-28,-47,-68v0,-41,12,-68,46,-68v34,0,47,28,47,68v0,40,-12,68,-46,68xm59,-234v-22,2,-21,78,0,80v22,-1,22,-80,0,-80xm90,10r-30,0r113,-272r29,0xm202,10v-34,0,-47,-28,-47,-68v0,-41,12,-68,47,-68v34,0,47,28,47,68v0,41,-12,68,-47,68xm202,-98v-23,1,-21,79,0,80v21,-2,20,-78,0,-80","w":262},"&":{"d":"175,-61v6,8,26,24,33,30r-24,38v-12,-7,-24,-17,-35,-30v-16,18,-31,27,-61,28v-88,2,-99,-123,-27,-155v-37,-45,-24,-112,38,-112v33,0,59,25,58,58v-2,32,-15,43,-39,62r30,47v3,-7,6,-17,9,-29r36,10v-6,25,-11,43,-18,53xm100,-227v-35,1,-16,42,-2,55v20,-10,36,-51,2,-55xm82,-118v-31,13,-41,80,4,82v12,0,25,-7,38,-20","w":213},"'":{"d":"21,-166v-5,-28,-10,-57,-8,-92r44,0v1,34,-2,64,-6,92r-30,0","w":70},"(":{"d":"89,-262v-46,105,-45,232,-1,338r-28,0v-56,-89,-59,-251,1,-338r28,0","w":98},")":{"d":"37,-262v59,87,59,249,1,338r-28,0v44,-104,45,-234,0,-338r27,0","w":98},"*":{"d":"35,-139r-21,-21r27,-34r-37,-11r8,-31v12,6,24,13,34,21v-2,-19,-3,-35,-3,-47r25,0v0,8,0,24,-3,47v11,-7,26,-15,36,-19r8,32v-11,3,-23,5,-37,8r25,36r-22,18r-20,-40v-5,12,-12,26,-20,41","w":114},"+":{"d":"68,-37r0,-67r-56,0r0,-46r56,0r0,-67r36,0r0,67r56,0r0,46r-56,0r0,67r-36,0","w":172},",":{"d":"20,-49r41,0v1,50,1,94,-36,106r-8,-20v15,-6,23,-17,23,-37r-20,0r0,-49","w":82},"-":{"d":"9,-69r0,-49r80,0r0,49r-80,0","w":98},"\u00ad":{"d":"9,-69r0,-49r80,0r0,49r-80,0","w":98},".":{"d":"21,0r0,-49r41,0r0,49r-41,0","w":82},"\/":{"d":"0,4r52,-266r30,0r-52,266r-30,0","w":82},"0":{"d":"81,4v-57,-6,-69,-54,-69,-132v-1,-76,14,-124,69,-131v56,7,69,55,69,132v0,77,-13,125,-69,131xm81,-37v41,3,25,-134,19,-165v-5,-11,-11,-16,-19,-16v-29,9,-26,37,-26,91v0,55,-3,81,26,90"},"1":{"d":"23,-194v24,-9,53,-37,60,-65r33,0r0,259r-40,0r0,-186v-15,17,-33,29,-53,37r0,-45","k":{"1":16}},"2":{"d":"149,-188v0,68,-58,98,-80,142r80,0r0,46r-142,0v1,-79,94,-112,102,-184v2,-20,-10,-34,-28,-34v-18,0,-28,13,-29,40r-40,-4v4,-47,25,-75,70,-77v42,-1,67,31,67,71"},"3":{"d":"152,-77v4,65,-73,107,-119,62v-13,-13,-20,-31,-22,-53r39,-6v1,21,11,36,30,37v39,1,40,-83,2,-83v-5,0,-12,2,-19,4r5,-40v20,0,33,-13,33,-34v0,-17,-7,-28,-23,-28v-16,1,-25,15,-26,34r-38,-7v7,-41,24,-66,65,-68v63,-3,85,95,32,120v25,6,39,31,41,62"},"4":{"d":"92,0r0,-52r-87,0r0,-43r92,-164r34,0r0,164r26,0r0,43r-26,0r0,52r-39,0xm92,-95r0,-88r-49,88r49,0"},"5":{"d":"155,-86v-2,43,-26,92,-72,90v-41,-1,-66,-29,-70,-70r41,-5v1,19,13,35,29,36v21,-2,31,-23,31,-51v0,-45,-42,-63,-63,-28r-33,-6r21,-134r107,0r0,46r-76,0r-7,44v51,-29,94,25,92,78"},"6":{"d":"13,-126v0,-77,17,-133,77,-133v36,0,55,27,60,64r-39,6v-1,-32,-31,-39,-45,-15v-6,10,-9,29,-11,58v35,-49,99,0,99,63v0,48,-26,87,-68,87v-56,0,-73,-54,-73,-130xm86,-131v-39,0,-37,95,2,94v21,-1,26,-19,26,-45v0,-27,-7,-49,-28,-49"},"7":{"d":"41,0v2,-81,29,-156,64,-208r-93,0r0,-46r139,0r0,36v-38,47,-71,134,-71,218r-39,0"},"8":{"d":"83,5v-74,0,-96,-117,-36,-144v-51,-23,-32,-128,34,-120v67,-8,83,96,34,120v59,24,42,144,-32,144xm81,-220v-16,0,-25,13,-25,31v0,18,9,31,25,31v15,0,25,-13,25,-31v0,-18,-10,-31,-25,-31xm81,-118v-39,0,-38,84,1,83v19,-1,29,-19,29,-43v0,-21,-12,-40,-30,-40"},"9":{"d":"150,-129v0,77,-17,134,-77,134v-38,0,-55,-26,-60,-65r40,-5v1,34,31,38,45,14v6,-10,9,-29,11,-58v-34,51,-100,1,-100,-62v0,-47,26,-88,68,-88v56,0,73,54,73,130xm77,-123v41,-1,36,-95,-2,-95v-37,1,-35,96,2,95"},":":{"d":"29,-137r0,-50r40,0r0,50r-40,0xm29,0r0,-49r40,0r0,49r-40,0","w":98},";":{"d":"28,-137r0,-50r40,0r0,50r-40,0xm28,-49r40,0v1,50,1,94,-36,106r-8,-20v15,-5,24,-16,23,-37r-19,0r0,-49","w":98},"\u037e":{"d":"28,-137r0,-50r40,0r0,50r-40,0xm28,-49r40,0v1,50,1,94,-36,106r-8,-20v15,-5,24,-16,23,-37r-19,0r0,-49","w":98},"<":{"d":"159,-29r-145,-77r0,-43r145,-76r0,50r-101,47r101,49r0,50","w":172},"=":{"d":"12,-143r0,-46r148,0r0,46r-148,0xm12,-65r0,-46r148,0r0,46r-148,0","w":172},">":{"d":"14,-29r0,-50r101,-48r-101,-48r0,-50r145,77r0,42","w":172},"?":{"d":"91,-260v54,0,93,55,68,105v-7,25,-58,42,-51,89r-36,0v-15,-65,51,-76,55,-122v2,-20,-16,-36,-35,-35v-22,0,-35,15,-40,44r-37,-6v1,-42,33,-75,76,-75xm72,0r0,-49r40,0r0,49r-40,0","w":180},"@":{"d":"157,43v48,0,80,-16,99,-46r31,0v-19,47,-63,79,-127,79v-100,-1,-151,-61,-151,-161v0,-99,49,-177,147,-177v79,0,121,56,123,135v2,60,-39,129,-95,127v-16,-1,-23,-6,-26,-20v-37,45,-99,6,-95,-53v4,-58,24,-118,78,-118v20,0,30,10,38,24r4,-19r38,0r-24,142v0,5,1,7,5,8v31,-9,51,-51,51,-92v0,-62,-34,-102,-97,-102v-82,0,-121,64,-121,148v0,77,42,126,122,125xm145,-159v-32,0,-44,50,-45,83v0,25,8,42,27,44v33,-4,42,-50,44,-86v1,-21,-9,-41,-26,-41","w":287},"A":{"d":"212,0r-46,0r-19,-59r-84,0r-18,59r-45,0r82,-258r45,0xm133,-102r-29,-96r-28,96r57,0","w":213,"k":{"y":11,"w":5,"v":11,"Y":27,"W":16,"V":22,"T":22," ":11}},"B":{"d":"198,-75v-4,60,-27,81,-105,75r-72,0r0,-258r85,0v86,-16,104,89,52,121v25,7,42,31,40,62xm147,-186v0,-39,-40,-27,-83,-29r0,60v41,-1,83,8,83,-31xm154,-77v0,-44,-46,-34,-90,-35r0,69v43,-1,90,10,90,-34","w":213},"C":{"d":"110,-40v29,0,41,-25,47,-55r41,16v-10,50,-35,83,-87,83v-66,0,-97,-60,-97,-131v0,-74,30,-135,99,-135v47,0,76,29,85,75r-43,13v-5,-25,-19,-44,-44,-44v-40,0,-53,38,-53,88v0,53,12,90,52,90","w":213},"D":{"d":"198,-126v0,74,-22,127,-97,126r-80,0r0,-258r78,0v81,0,99,53,99,132xm154,-128v2,-66,-17,-94,-90,-86r0,171r32,0v55,3,56,-34,58,-85","w":213},"E":{"d":"22,0r0,-258r156,0r0,44r-114,0r0,57r106,0r0,43r-106,0r0,71r118,0r0,43r-160,0","w":196},"F":{"d":"22,0r0,-258r145,0r0,44r-103,0r0,61r89,0r0,43r-89,0r0,110r-42,0","w":180,"k":{"A":16,".":33,",":33}},"G":{"d":"119,-40v20,0,39,-11,50,-22r0,-33r-49,0r0,-43r92,0r0,102v-16,20,-55,41,-91,40v-74,-2,-107,-57,-107,-133v0,-76,32,-132,105,-133v53,-1,83,29,90,76r-42,9v-6,-23,-22,-41,-48,-41v-42,0,-62,36,-61,86v0,51,16,92,61,92","w":229},"H":{"d":"22,0r0,-258r42,0r0,102r84,0r0,-102r43,0r0,258r-43,0r0,-113r-84,0r0,113r-42,0","w":213},"I":{"d":"20,0r0,-258r43,0r0,258r-43,0","w":82},"J":{"d":"72,-40v25,0,26,-17,26,-51r0,-167r42,0r0,163v1,63,-15,99,-70,99v-45,0,-65,-33,-65,-84r40,-5v0,27,7,45,27,45"},"K":{"d":"22,0r0,-258r43,0r0,115r86,-115r57,0r-79,101r84,157r-56,0r-58,-121r-34,43r0,78r-43,0","w":213},"L":{"d":"23,0r0,-256r42,0r0,213r106,0r0,43r-148,0","w":180,"k":{"y":11,"Y":27,"W":16,"V":22,"T":22," ":5}},"M":{"d":"21,0r0,-258r64,0r38,176r38,-176r64,0r0,258r-40,0r0,-203r-42,203r-41,0r-41,-203r0,203r-40,0","w":245},"N":{"d":"22,0r0,-258r41,0r87,172r0,-172r40,0r0,258r-43,0r-85,-168r0,168r-40,0","w":213},"O":{"d":"116,4v-71,0,-104,-58,-103,-131v1,-78,27,-135,102,-135v67,0,103,57,103,133v0,75,-33,132,-102,133xm116,-218v-42,0,-59,37,-59,89v0,50,18,89,59,89v41,0,58,-41,58,-90v0,-51,-17,-88,-58,-88","w":229},"P":{"d":"183,-178v3,69,-42,86,-119,81r0,97r-43,0r0,-258r69,0v72,-4,90,21,93,80xm139,-178v0,-39,-33,-37,-75,-36r0,73v42,1,75,3,75,-37","w":196,"k":{"A":22,".":38,",":38," ":5}},"Q":{"d":"116,-262v104,-5,127,157,76,229v10,9,22,16,34,22r-16,37v-23,-10,-17,-9,-47,-33v-83,37,-150,-26,-150,-122v0,-77,34,-130,103,-133xm57,-129v0,57,24,101,74,86v-9,-7,-17,-12,-26,-16r12,-29v14,6,27,14,40,26v30,-43,23,-160,-42,-156v-41,2,-58,39,-58,89","w":229},"R":{"d":"194,-186v2,41,-20,66,-55,72v34,24,50,73,72,114r-50,0r-54,-94v-9,-13,-20,-15,-43,-14r0,108r-42,0r0,-258r89,0v60,-3,81,20,83,72xm150,-182v4,-43,-45,-30,-86,-32r0,65v42,-2,91,11,86,-33","w":213,"k":{"Y":11,"W":5,"V":5}},"S":{"d":"153,-141v54,45,29,146,-56,146v-52,0,-80,-30,-86,-89r41,-5v-1,61,88,67,88,14v0,-40,-69,-36,-94,-56v-47,-38,-28,-137,50,-131v50,4,79,28,80,78r-42,2v4,-45,-75,-49,-75,-12v0,36,73,35,94,53","w":196},"T":{"d":"69,0r0,-214r-63,0r0,-44r168,0r0,44r-62,0r0,214r-43,0","w":180,"k":{"y":22,"w":22,"u":22,"s":22,"r":16,"o":22,"i":5,"e":22,"c":22,"a":22,"O":5,"A":22,";":33,":":33,".":33,"-":16,",":33}},"U":{"d":"108,4v-76,-3,-87,-37,-87,-124r0,-138r43,0r0,140v-2,53,2,73,43,78v39,-5,41,-23,40,-75r0,-143r43,0v-8,109,35,267,-82,262","w":213},"V":{"d":"75,0r-75,-258r46,0r54,191r51,-191r46,0r-76,258r-46,0","w":196,"k":{"y":11,"u":11,"r":16,"o":22,"i":5,"e":16,"a":16,"A":22,";":16,":":16,".":27,"-":16,",":27}},"W":{"d":"51,0r-50,-258r44,0r31,177r39,-177r51,0r37,180r32,-180r43,0r-51,258r-45,0r-43,-193r-41,193r-47,0","w":278,"k":{"y":5,"u":5,"r":5,"o":5,"i":2,"e":5,"a":11,"A":16,";":5,":":5,".":16,"-":6,",":16}},"X":{"d":"0,0r72,-134r-65,-124r50,0r42,83r42,-83r49,0r-66,125r73,133r-52,0r-47,-89r-47,89r-51,0","w":196},"Y":{"d":"77,0r0,-108r-77,-150r50,0r49,102r49,-102r49,0r-77,150r0,108r-43,0","w":196,"k":{"v":16,"u":16,"q":22,"p":16,"o":22,"i":11,"e":16,"a":16,"A":27,";":22,":":22,".":33,"-":16,",":33," ":5}},"Z":{"d":"3,0r0,-47r111,-167r-98,0r0,-44r154,0r0,41r-115,174r120,0r0,43r-172,0","w":180},"[":{"d":"21,73r0,-331r72,0r0,39r-34,0r0,253r34,0r0,39r-72,0","w":98},"\\":{"d":"0,-262r30,0r52,266r-30,0","w":82},"]":{"d":"77,-258r0,331r-72,0r0,-39r34,0r0,-253r-34,0r0,-39r72,0","w":98},"^":{"d":"17,-122r54,-140r32,0r53,140r-41,0r-29,-86r-28,86r-41,0","w":172},"_":{"d":"-2,27r168,0r0,18r-168,0r0,-18"},"`":{"d":"72,-210r-26,0r-40,-52r46,0","w":98},"a":{"d":"79,-153v-17,0,-22,7,-27,23r-37,-8v8,-36,25,-49,66,-53v100,-10,46,123,73,191r-40,0r-5,-20v-25,39,-104,27,-98,-31v-6,-56,62,-56,95,-71v0,-24,-6,-31,-27,-31xm74,-31v28,-2,33,-24,32,-59v-16,9,-57,9,-55,34v1,13,10,26,23,25"},"b":{"d":"105,4v-22,0,-39,-14,-48,-31r0,27r-38,0r0,-258r41,0r0,93v40,-57,109,-7,109,71v0,53,-22,98,-64,98xm93,-153v-23,0,-33,25,-33,56v0,36,7,58,35,62v24,-3,33,-26,32,-58v0,-35,-7,-60,-34,-60","w":180},"c":{"d":"12,-93v0,-101,123,-138,143,-38r-40,8v-3,-20,-13,-29,-28,-29v-25,0,-33,22,-33,55v0,63,58,84,63,25r40,9v-8,45,-32,67,-71,67v-52,0,-74,-46,-74,-97"},"d":{"d":"12,-94v-10,-78,68,-129,109,-71r0,-93r41,0r0,258r-38,0r0,-27v-42,67,-121,12,-112,-67xm87,-153v-23,1,-34,25,-33,56v1,36,5,62,34,62v45,0,47,-120,-1,-118","w":180},"e":{"d":"51,-79v-5,43,50,67,59,20r40,8v-9,33,-28,54,-66,55v-53,0,-75,-41,-75,-96v-1,-52,23,-99,71,-99v55,0,75,52,72,112r-101,0xm112,-109v4,-36,-31,-58,-52,-33v-6,8,-8,19,-8,33r60,0"},"f":{"d":"102,-221v-26,-9,-41,2,-36,34r31,0r0,39r-31,0r0,148r-40,0r0,-148r-22,0r0,-39r22,0v-2,-46,5,-76,47,-75v11,0,23,2,34,6","w":98},"g":{"d":"89,76v-46,0,-73,-18,-72,-64r47,7v1,14,7,19,23,19v38,0,35,-31,34,-68v-10,16,-24,30,-46,30v-42,0,-63,-46,-63,-94v0,-82,75,-130,112,-66r0,-27r38,0r0,168v0,64,-14,95,-73,95xm87,-153v-42,0,-47,112,-1,113v48,0,49,-113,1,-113","w":180},"h":{"d":"95,-153v-54,0,-26,99,-33,153r-41,0r0,-258r41,0r0,95v10,-15,24,-28,46,-28v77,0,46,115,52,191r-40,0r0,-99v-1,-38,2,-54,-25,-54","w":180},"i":{"d":"21,-212r0,-46r41,0r0,46r-41,0xm21,0r0,-187r41,0r0,187r-41,0","w":82},"j":{"d":"20,-212r0,-46r41,0r0,46r-41,0xm-6,28v24,5,27,-4,26,-37r0,-178r41,0r0,181v6,66,-20,94,-74,76","w":82},"k":{"d":"20,0r0,-258r40,0r0,137r48,-66r50,0r-53,69r56,118r-43,0r-39,-84r-19,24r0,60r-40,0"},"l":{"d":"21,0r0,-258r41,0r0,258r-41,0","w":82},"m":{"d":"55,-161v15,-36,79,-42,91,0v25,-50,97,-33,97,42r0,119r-40,0r0,-107v-1,-30,0,-43,-22,-46v-48,6,-24,100,-30,153r-40,0r0,-102v-2,-33,2,-49,-22,-51v-50,7,-23,99,-30,153r-41,0r0,-187r37,0r0,26","w":262},"n":{"d":"109,-191v78,0,44,117,51,191r-40,0r0,-95v1,-37,0,-53,-25,-58v-55,4,-26,98,-33,153r-41,0r0,-187r38,0r0,28v12,-19,25,-32,50,-32","w":180},"o":{"d":"91,4v-51,0,-81,-42,-79,-100v2,-52,27,-95,79,-95v50,-1,79,47,79,97v-1,54,-27,98,-79,98xm91,-151v-25,0,-38,26,-38,58v0,32,13,57,38,57v49,0,50,-115,0,-115","w":180},"p":{"d":"169,-95v10,76,-67,133,-108,72r0,94r-41,0r0,-258r38,0r0,28v42,-69,120,-13,111,64xm95,-152v-24,0,-35,24,-35,55v0,34,9,62,35,62v44,0,46,-117,0,-117","w":180},"q":{"d":"78,-191v24,0,36,13,46,32r0,-28r38,0r0,258r-41,0r0,-94v-45,62,-108,4,-108,-72v0,-51,23,-96,65,-96xm88,-35v45,0,50,-117,1,-117v-25,0,-34,25,-34,59v0,34,7,58,33,58","w":180},"r":{"d":"106,-139v-44,-24,-46,26,-46,81r0,58r-40,0r0,-187r37,0r0,27v10,-29,35,-40,62,-22","w":114,"k":{".":16,",":16}},"s":{"d":"138,-94v31,41,-1,98,-58,98v-41,0,-66,-22,-73,-57r41,-8v0,36,57,41,61,9v-1,-11,-5,-12,-16,-16v-54,-17,-74,-18,-80,-66v-6,-55,73,-71,110,-45v10,7,18,20,22,37r-38,9v0,-27,-53,-30,-57,-7v3,24,78,24,88,46"},"t":{"d":"95,-3v-44,18,-72,0,-72,-63r0,-81r-19,0r0,-40r19,0r0,-37r41,-29r0,66r27,0r0,40r-27,0r0,75v-2,33,2,40,27,31","w":98},"u":{"d":"86,-33v53,-5,27,-97,33,-154r40,0r0,187r-37,0r0,-28v-10,17,-27,32,-51,32v-76,-2,-45,-117,-51,-191r41,0v7,54,-20,148,25,154","w":180},"v":{"d":"63,0r-61,-187r42,0r37,127r38,-127r41,0r-60,187r-37,0","k":{".":22,",":22}},"w":{"d":"50,0r-49,-187r40,0r28,123r27,-123r39,0r25,123r30,-123r40,0r-50,187r-38,0r-27,-120r-26,120r-39,0","w":229,"k":{".":11,",":11}},"x":{"d":"2,0r55,-96r-53,-91r50,0r27,52r28,-52r48,0r-52,89r57,98r-50,0r-31,-58r-32,58r-47,0"},"y":{"d":"2,-187r43,0r37,133r35,-133r42,0v-27,80,-42,173,-78,244v-9,18,-40,23,-66,16r-3,-39v30,7,44,-5,48,-33","k":{".":22,",":22}},"z":{"d":"5,0r0,-38r78,-109v-21,2,-49,1,-72,1r0,-41r126,0r0,35r-79,110v31,-2,53,0,84,-1r0,43r-137,0","w":147},"{":{"d":"40,-4v0,-42,2,-64,-31,-68r0,-42v31,-4,31,-25,31,-63v0,-62,8,-87,67,-85r0,42v-24,0,-29,2,-29,25v0,39,1,87,-27,102v26,15,27,61,27,101v-1,24,7,24,29,26r0,42v-57,2,-67,-22,-67,-80","w":114},"|":{"d":"25,76r0,-338r33,0r0,338r-33,0","w":82},"}":{"d":"73,-183v0,42,-2,65,32,69r0,42v-31,4,-32,24,-32,62v0,64,-8,86,-66,86r0,-42v23,-1,28,-4,29,-26v1,-36,1,-88,27,-101v-28,-17,-27,-60,-27,-102v0,-23,-5,-25,-29,-25r0,-42v55,-1,66,20,66,79","w":114},"~":{"d":"120,-92v-23,1,-52,-25,-71,-24v-13,0,-26,9,-39,25r0,-46v27,-46,82,-11,113,0v17,-2,30,-12,40,-25r0,47v-9,10,-23,22,-43,23","w":172},"\u00a0":{"w":82,"k":{"Y":5,"A":11}}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Georgia is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * Manufacturer:
 * Carter & Cone
 * 
 * Designer:
 * Matthew Carter
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/
 */
Cufon.registerFont({"w":231,"face":{"font-family":"Georgia","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 4 5 2 5 4 5 2 3 3","ascent":"288","descent":"-72","x-height":"5","bbox":"-26.4684 -272.168 356 78.1605","underline-thickness":"17.7539","underline-position":"-23.0273","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":86},"\u00a0":{"w":86},"!":{"d":"38,-232v-2,-21,26,-32,39,-17v4,5,6,10,6,17r-16,156r-14,0xm60,-44v13,0,25,12,25,24v0,13,-12,24,-25,24v-13,0,-24,-12,-24,-24v0,-12,11,-24,24,-24","w":119},"\"":{"d":"108,-269v12,0,19,10,19,20v0,23,-9,49,-14,79r-11,0r-14,-79v1,-11,7,-20,20,-20xm41,-269v12,0,19,10,19,20v0,23,-9,49,-14,79r-11,0r-14,-79v1,-11,7,-20,20,-20","w":148},"#":{"d":"204,-131r-43,0r-13,44r46,0r0,22r-52,0r-19,65r-19,0r18,-65r-38,0r-19,65r-19,0r19,-65r-38,0r0,-22r44,0r13,-44r-46,0r0,-22r52,0r18,-63r20,0r-19,63r38,0r19,-63r19,0r-18,63r37,0r0,22xm142,-131r-39,0r-13,45r39,0"},"$":{"d":"173,-160v-23,0,-21,-20,-16,-38v-6,-10,-20,-16,-37,-16r0,82v32,15,74,21,74,68v0,39,-36,65,-74,67r0,50r-15,0r0,-50v-41,1,-77,-21,-78,-56v0,-12,5,-22,18,-21v27,-1,18,26,12,43v7,13,26,21,48,20r0,-88v-31,-12,-71,-23,-71,-68v0,-34,35,-62,71,-61r0,-40r15,0r0,40v37,1,69,16,69,49v0,11,-3,19,-16,19xm105,-214v-44,-3,-55,63,-11,73r11,5r0,-78xm120,-11v26,-1,41,-14,41,-39v-1,-27,-18,-38,-41,-46r0,85","w":219},"%":{"d":"79,-255v36,0,60,29,60,65v0,40,-23,65,-60,65v-37,0,-60,-26,-60,-65v0,-37,24,-65,60,-65xm79,-138v41,-2,41,-102,0,-104v-40,0,-43,104,0,104xm216,-124v37,0,59,28,59,65v0,40,-23,65,-60,65v-37,0,-59,-25,-59,-65v0,-37,23,-65,60,-65xm215,-7v41,0,42,-103,1,-104v-43,0,-42,102,-1,104xm263,-250r-207,250r-24,0r207,-250r24,0","w":294},"&":{"d":"192,-130v-3,-11,-16,-12,-30,-16r0,-12r94,0r0,12v-54,2,-52,61,-79,91v17,21,40,42,76,43r0,12r-72,0r-27,-30v-17,18,-35,36,-69,36v-43,0,-72,-23,-72,-67v0,-41,23,-55,55,-77v-15,-22,-30,-33,-30,-63v0,-35,25,-54,61,-54v33,0,55,17,55,49v0,34,-24,49,-49,63v20,29,41,51,63,77v12,-20,23,-39,24,-64xm97,-153v36,-9,51,-82,4,-87v-46,8,-28,64,-4,87xm75,-127v-41,22,-32,112,24,109v20,0,37,-10,46,-22","w":255},"'":{"d":"19,-249v-2,-17,25,-28,34,-14v16,24,-8,63,-9,93r-11,0","w":77},"(":{"d":"54,-104v1,75,14,134,69,147r0,15v-108,-5,-126,-194,-75,-278v18,-28,43,-45,75,-49r0,14v-54,13,-70,73,-69,151","w":135},")":{"d":"12,-269v107,5,126,193,75,278v-18,28,-43,45,-75,49r0,-15v55,-13,68,-72,69,-147v1,-78,-15,-137,-69,-151r0,-14","w":135},"*":{"d":"90,-196v25,1,58,-24,65,3v-6,26,-43,1,-65,3v11,18,30,26,37,47v0,6,-8,12,-14,12v-21,-9,-14,-32,-28,-56v-14,22,-6,48,-28,56v-6,0,-14,-5,-13,-12v5,-21,25,-28,36,-47v-23,-3,-59,23,-65,-3v7,-27,41,-1,65,-3v-12,-16,-29,-27,-36,-48v-1,-6,8,-12,13,-12v21,5,16,39,28,57v13,-20,8,-49,28,-57v5,1,14,6,14,12v-6,20,-23,26,-37,48","w":169},"+":{"d":"206,-87r-79,0r0,79r-22,0r0,-79r-80,0r0,-22r80,0r0,-80r22,0r0,80r79,0r0,22"},",":{"d":"45,-44v41,0,34,64,12,81v-8,11,-21,19,-32,25r-8,-12v20,-12,35,-25,40,-50v-20,1,-34,-5,-34,-23v0,-10,10,-21,22,-21","w":97},"-":{"d":"120,-82r-105,0r0,-27r105,0r0,27","w":134},"\u00ad":{"d":"120,-82r-105,0r0,-27r105,0r0,27","w":134},".":{"d":"49,-44v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24","w":97},"\/":{"d":"153,-268r-122,343r-22,0r121,-343r23,0","w":168},"0":{"d":"111,-194v62,0,92,40,92,100v0,62,-32,100,-93,100v-61,0,-92,-39,-92,-100v0,-61,32,-100,93,-100xm110,-6v74,0,73,-178,1,-176v-40,1,-55,40,-54,88v0,45,14,88,53,88","w":220},"1":{"d":"101,-36v-1,20,23,22,41,24r0,12r-118,0r0,-12v17,-3,43,1,43,-22r0,-123r-44,0r0,-15v29,3,54,-9,65,-22r15,0","w":154},"2":{"d":"175,-135v0,72,-88,65,-126,104r135,0r0,31r-165,0v-1,-80,117,-48,117,-137v0,-46,-58,-55,-79,-26v7,19,9,47,-17,46v-13,0,-19,-10,-19,-23v0,-35,36,-52,76,-54v43,-1,78,20,78,59","w":201},"3":{"d":"180,-12v5,82,-156,108,-169,26v-2,-12,6,-23,18,-23v25,0,24,26,17,44v32,31,104,10,95,-47v2,-41,-26,-54,-71,-50r0,-20v43,4,61,-13,61,-54v0,-47,-53,-56,-76,-27v5,17,11,49,-17,46v-12,0,-18,-11,-18,-22v0,-37,36,-54,78,-55v43,0,69,20,72,57v3,39,-27,49,-52,63v35,5,59,21,62,62","w":198},"4":{"d":"191,-16r-36,0r0,80r-34,0r0,-80r-112,0r0,-27r123,-150r23,0r0,154r36,0r0,23xm121,-39r0,-115r-95,115r95,0","w":203},"5":{"d":"47,-83v46,-34,128,-10,128,60v0,50,-40,87,-91,87v-36,0,-71,-19,-74,-48v-2,-28,39,-29,40,-5v0,6,-3,21,-5,26v40,31,101,0,92,-60v6,-57,-72,-75,-98,-34r-12,-5r15,-127r126,0r0,32r-112,0","w":190},"6":{"d":"118,-160v40,0,73,38,71,79v-2,52,-35,86,-85,87v-102,2,-105,-150,-49,-210v26,-28,59,-46,101,-52r3,16v-59,10,-92,47,-102,104v17,-15,34,-23,61,-24xm104,-8v32,0,47,-31,47,-68v0,-35,-16,-63,-48,-63v-27,0,-48,10,-48,43v0,44,13,88,49,88","w":203},"7":{"d":"152,-159v-54,4,-127,-18,-126,39r-10,0r0,-69r165,0r0,12r-125,241r-22,0","w":180},"8":{"d":"141,-132v31,15,55,28,55,66v0,44,-43,72,-92,72v-47,0,-86,-26,-86,-70v0,-36,24,-51,55,-63v-25,-14,-45,-30,-45,-62v0,-39,41,-67,83,-67v42,0,76,25,76,64v0,29,-21,49,-46,60xm129,-138v37,-20,34,-104,-21,-104v-39,0,-61,52,-30,76v10,9,26,18,51,28xm108,-8v47,0,71,-58,35,-84v-15,-10,-38,-21,-58,-29v-49,19,-40,113,23,113","w":214},"9":{"d":"100,-194v100,0,105,152,48,208v-25,24,-57,46,-100,51r-4,-16v59,-10,93,-45,103,-102v-44,46,-132,17,-132,-55v0,-47,38,-86,85,-86xm101,-50v26,0,47,-9,47,-43v0,-44,-13,-88,-49,-88v-31,0,-46,32,-46,68v0,35,16,63,48,63","w":203},":":{"d":"56,-174v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24xm56,-44v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24","w":112},";":{"d":"56,-174v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24xm53,-44v41,0,34,64,12,81v-8,11,-21,19,-32,25r-8,-12v20,-12,35,-25,40,-50v-20,1,-34,-5,-34,-23v0,-10,10,-21,22,-21","w":112},"\u037e":{"d":"56,-174v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24xm53,-44v41,0,34,64,12,81v-8,11,-21,19,-32,25r-8,-12v20,-12,35,-25,40,-50v-20,1,-34,-5,-34,-23v0,-10,10,-21,22,-21","w":112},"<":{"d":"197,-4r-163,-84r0,-20r163,-85r0,24r-136,71r136,70r0,24"},"=":{"d":"204,-120r-177,0r0,-22r177,0r0,22xm204,-55r-177,0r0,-22r177,0r0,22"},">":{"d":"198,-88r-163,84r0,-24r135,-70r-135,-71r0,-24r163,85r0,20"},"?":{"d":"79,-255v47,0,76,26,76,72v0,46,-34,73,-78,78r0,39r-16,0r0,-67v35,-3,60,-15,60,-54v0,-43,-33,-66,-67,-47v7,17,6,44,-18,41v-11,-1,-17,-10,-17,-22v2,-28,30,-40,60,-40xm69,-44v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24","w":172},"@":{"d":"175,41v39,0,66,-10,88,-29r6,9v-23,20,-54,36,-96,34v-85,-3,-143,-50,-143,-139v0,-94,62,-157,158,-157v74,0,115,43,118,115v1,52,-34,102,-83,102v-22,0,-34,-13,-39,-29v-9,15,-21,27,-41,28v-28,-1,-42,-18,-40,-48v3,-49,32,-91,82,-95v16,-2,23,11,28,22r7,-20r26,0v-11,39,-29,72,-36,114v-2,11,6,17,16,17v41,-1,66,-45,64,-93v-3,-62,-38,-98,-103,-98v-80,0,-129,56,-129,139v0,78,38,128,117,128xm133,-70v0,53,46,27,55,-1r20,-59v-3,-16,-8,-27,-24,-28v-37,6,-51,49,-51,88","w":334},"A":{"d":"51,-28v1,11,22,16,36,16r0,12r-94,0r0,-12v20,-4,34,-13,41,-31r82,-210r14,0r89,226v5,9,18,14,31,15r0,12r-104,0r0,-12v15,-3,36,-1,30,-18r-20,-56r-88,0v-7,20,-15,36,-17,58xm149,-102r-38,-97r-37,97r75,0","w":241},"B":{"d":"146,-133v38,5,73,22,73,65v0,87,-115,66,-202,68r0,-12v15,-2,34,-4,34,-22r0,-179v1,-19,-18,-22,-33,-24r0,-12v76,5,185,-23,188,54v1,40,-32,50,-60,62xm88,-139v46,3,75,-8,75,-53v0,-41,-34,-48,-75,-43r0,96xm122,-14v36,-2,54,-22,54,-60v1,-43,-40,-57,-88,-50v5,43,-20,113,34,110","w":235},"C":{"d":"227,-63v-17,44,-46,69,-100,69v-72,0,-109,-53,-113,-128v-5,-102,96,-164,180,-115v4,-7,8,-15,22,-12r1,89r-14,0v-10,-37,-23,-80,-68,-80v-58,0,-79,53,-79,115v0,61,25,111,84,111v40,0,61,-25,73,-55"},"D":{"d":"127,-249v78,4,129,44,129,126v0,81,-56,123,-136,123r-103,0r0,-12v17,0,35,-3,34,-21r0,-180v2,-19,-17,-22,-33,-24r0,-12r109,0xm126,-14v63,0,87,-44,87,-109v0,-75,-42,-121,-125,-111r0,191v0,24,14,29,38,29","w":269},"E":{"d":"131,-14v54,9,72,-26,83,-59r13,0r-5,73r-207,0r0,-12v17,-1,36,-3,36,-22r0,-179v2,-20,-20,-22,-36,-24r0,-12r193,0r0,60r-13,0v-7,-26,-28,-53,-68,-47r-39,0r0,100v42,4,69,-4,69,-41r13,0r0,97r-13,0v-1,-36,-26,-47,-69,-42v4,48,-19,120,43,108","w":235},"F":{"d":"51,-213v2,-20,-20,-22,-36,-24r0,-12r196,0r0,62r-13,0v-8,-25,-26,-49,-68,-49r-42,0r0,101v41,3,72,-2,71,-41r14,0r0,98r-14,0v1,-38,-27,-48,-71,-43r0,86v-2,19,19,21,35,23r0,12r-108,0r0,-12v16,-2,36,-2,36,-21r0,-180","w":215},"G":{"d":"14,-123v-5,-103,104,-162,189,-114v4,-7,8,-15,22,-12r1,87r-14,0v-9,-40,-26,-78,-74,-78v-61,0,-82,53,-82,116v0,63,25,112,87,114v37,1,56,-17,48,-63v3,-24,-23,-25,-42,-27r0,-12r110,0r0,12v-41,-5,-34,44,-32,84v-28,12,-56,22,-92,22v-75,0,-117,-51,-121,-129","w":261},"H":{"d":"17,-12v14,-2,34,-2,34,-21r0,-180v0,-18,-18,-22,-34,-24r0,-12r104,0r0,12v-15,2,-33,2,-33,22r0,77r117,0r0,-75v2,-19,-18,-22,-33,-24r0,-12r103,0r0,12v-15,2,-32,3,-32,22r0,180v-1,18,16,21,32,23r0,12r-103,0r0,-12v13,-2,33,-1,33,-21r0,-89r-117,0r0,87v-1,18,17,21,33,23r0,12r-104,0r0,-12","w":293},"I":{"d":"14,-12v14,-3,37,0,37,-21r0,-181v1,-19,-21,-20,-37,-23r0,-12r112,0r0,12v-18,1,-37,2,-37,22r0,180v-1,20,20,21,37,23r0,12r-112,0r0,-12","w":140},"J":{"d":"104,-213v1,-20,-20,-22,-37,-24r0,-12r110,0r0,12v-17,1,-35,2,-35,22r0,148v-3,43,-30,72,-76,73v-37,1,-64,-23,-64,-59v0,-34,47,-43,47,-9v0,18,-13,26,-18,40v6,8,17,15,33,15v37,-1,40,-35,40,-74r0,-132","w":186},"K":{"d":"18,-12v14,-2,33,-3,33,-21r0,-180v1,-19,-18,-22,-33,-24r0,-12r103,0r0,12v-15,2,-33,2,-33,22r0,86r4,0v30,-29,71,-58,85,-99v-3,-7,-15,-9,-26,-9r0,-12r94,0v5,22,-31,10,-41,27r-77,82r81,99v13,15,26,27,51,29r0,12r-70,0v-28,-42,-62,-85,-96,-122r-5,0r0,87v-1,18,17,21,33,23r0,12r-103,0r0,-12","w":249},"L":{"d":"129,-14v52,0,62,-32,76,-60r12,0r-5,74r-195,0r0,-12v16,-2,34,-3,34,-22r0,-179v1,-18,-18,-21,-34,-24r0,-12r106,0r0,12v-16,2,-35,3,-35,23r0,167v-3,31,11,33,41,33","w":217},"M":{"d":"283,-35v-2,19,18,21,34,23r0,12r-110,0r0,-12v17,-2,39,-2,39,-23r0,-182r-3,0r-85,213r-8,0r-81,-217r-3,0r0,149v-3,40,11,57,43,60r0,12r-101,0r0,-12v33,-2,41,-16,41,-58r0,-128v2,-28,-16,-37,-39,-39r0,-12r85,0r71,187r70,-187r81,0r0,12v-15,2,-34,2,-34,22r0,180","w":333},"N":{"d":"49,-194v1,-28,-22,-40,-45,-43r0,-12r71,0r141,190v-4,-55,11,-131,-11,-168v-5,-3,-25,-9,-33,-10r0,-12r101,0r0,12v-16,3,-38,4,-38,25v0,66,-1,144,-2,214r-16,0r-151,-204r0,129v1,32,1,53,28,57v8,2,14,4,17,4r0,12r-103,0r0,-12v15,-4,38,-6,39,-24v5,-44,1,-109,2,-158","w":276},"O":{"d":"134,-255v77,0,120,52,120,131v0,77,-44,130,-120,130v-76,0,-120,-52,-120,-130v0,-78,44,-131,120,-131xm134,-10v59,0,77,-52,77,-114v0,-63,-18,-116,-77,-116v-60,0,-77,54,-77,116v0,62,17,114,77,114","w":267},"P":{"d":"16,-249v81,2,192,-19,192,61v0,62,-51,83,-120,78r0,76v-2,20,19,20,36,22r0,12r-107,0r0,-12v16,-2,34,-3,34,-22r0,-180v1,-19,-18,-22,-35,-23r0,-12xm88,-125v47,3,77,-12,77,-54v1,-44,-28,-61,-77,-56r0,110","w":219},"Q":{"d":"134,-255v77,0,120,52,120,131v0,66,-34,104,-82,123v-1,37,39,60,77,47r0,14v-50,19,-120,3,-119,-54v-74,-6,-116,-54,-116,-130v0,-78,44,-131,120,-131xm134,-10v59,0,77,-52,77,-114v0,-63,-18,-116,-77,-116v-60,0,-77,54,-77,116v0,62,17,114,77,114","w":267},"R":{"d":"211,-190v1,43,-27,57,-61,67v29,35,51,79,87,106v5,3,17,4,23,5r0,12r-67,0r-79,-113r-26,0r0,79v-2,20,18,20,35,22r0,12r-106,0r0,-12v16,-2,34,-3,34,-22r0,-180v2,-19,-19,-21,-34,-23r0,-12v79,5,193,-23,194,59xm88,-128v47,5,80,-15,80,-58v0,-42,-34,-53,-80,-49r0,107","w":252},"S":{"d":"56,-203v7,78,132,44,132,132v0,70,-96,96,-147,58v-4,8,-8,16,-22,13r-2,-85r14,0v12,39,28,75,75,75v30,0,49,-13,47,-44v-4,-80,-129,-42,-129,-133v0,-67,88,-84,131,-50v3,-8,7,-15,21,-12r1,82r-14,0v-11,-35,-21,-72,-66,-73v-21,0,-43,16,-41,37","w":201},"T":{"d":"93,-236v-50,-7,-67,22,-78,54r-12,0r0,-67r217,0r0,67r-12,0v-11,-32,-28,-61,-78,-54r0,200v-1,20,23,21,40,24r0,12r-118,0r0,-12v16,-3,41,-1,41,-23r0,-201","w":222},"U":{"d":"145,-14v92,0,67,-114,64,-197v-1,-21,-23,-23,-41,-26r0,-12r101,0r0,12v-66,-2,-35,103,-40,164v-5,52,-39,79,-90,79v-52,0,-93,-23,-93,-72r0,-147v2,-19,-18,-22,-33,-24r0,-12r104,0r0,12v-16,2,-35,4,-34,22v7,81,-30,201,62,201","w":272},"V":{"d":"191,-211v6,-23,-18,-25,-36,-26r0,-12r92,0r0,12v-20,2,-32,13,-38,30r-84,210r-15,0r-80,-216v-5,-15,-19,-23,-37,-24r0,-12r104,0r0,12v-16,1,-37,0,-30,18r63,167","w":239},"W":{"d":"279,-133v6,-35,52,-105,-13,-104r0,-12r90,0r0,12v-53,10,-52,80,-66,125r-36,115r-16,0r-63,-192r-65,192r-16,0r-65,-226v-5,-8,-18,-13,-30,-14r0,-12r102,0r0,12v-16,2,-38,-1,-31,19r45,157r62,-185r18,0r62,189v13,-44,16,-42,22,-76","w":351},"X":{"d":"169,-197v20,-26,22,-40,-14,-40r0,-12r93,0r0,12v-44,1,-56,37,-75,63r-29,39r77,109v9,11,18,13,35,14r0,12r-117,0r0,-12v19,-1,41,-2,29,-21v-15,-25,-32,-50,-47,-74v-14,21,-49,65,-55,83v3,11,12,11,29,12r0,12r-93,0r0,-12v49,-7,50,-35,78,-68v19,-22,17,-23,31,-42r-71,-102v-6,-8,-22,-12,-35,-13r0,-12r115,0r0,12v-15,2,-41,0,-28,21r43,67","w":255},"Y":{"d":"177,-224v-2,-13,-20,-11,-33,-13r0,-12r87,0r0,12v-36,5,-47,39,-63,64v-23,37,-40,68,-40,136v0,21,23,22,40,25r0,12r-117,0r0,-12v16,-2,42,-1,40,-23v-2,-33,4,-66,-12,-87v-29,-38,-32,-103,-87,-115r0,-12r107,0r0,12v-21,1,-40,1,-29,19r51,93v16,-28,47,-71,56,-99","w":221},"Z":{"d":"104,-236v-46,-5,-63,28,-77,57r-12,0r7,-70r187,0r0,6r-157,229v36,-3,90,6,113,-9v15,-10,30,-38,36,-55r12,0r-8,78r-200,0r0,-6r157,-230r-58,0","w":216},"[":{"d":"123,54r-93,0r0,-321r93,0r0,16r-62,0r0,289r62,0r0,16","w":135},"\\":{"d":"160,75r-23,0r-121,-343r23,0","w":168},"]":{"d":"105,54r-93,0r0,-16r62,0r0,-289r-62,0r0,-16r93,0r0,321","w":135},"^":{"d":"198,-140r-26,0r-56,-92r-57,92r-25,0r72,-116r20,0"},"_":{"d":"232,50r-233,0r0,-18r233,0r0,18"},"`":{"d":"60,-246v-9,-15,9,-32,24,-21v19,22,26,38,46,66r-7,6","w":180},"a":{"d":"148,-77v0,27,-12,70,29,63r0,11v-24,13,-57,7,-62,-19v-20,35,-101,38,-101,-17v0,-55,68,-51,101,-72v1,-30,-3,-54,-33,-54v-9,0,-21,4,-25,8v5,16,6,39,-17,39v-12,0,-17,-10,-18,-20v5,-26,32,-38,62,-40v61,-5,64,39,64,101xm49,-43v-1,39,53,31,65,8r1,-61v-30,11,-64,15,-66,53","w":181},"b":{"d":"65,-155v45,-52,124,-5,124,68v0,71,-78,118,-136,76v-7,8,-9,25,-24,18r2,-238v1,-19,-16,-26,-34,-26r0,-11r64,-4v8,32,-4,85,4,117xm104,-8v62,0,69,-151,-3,-151v-18,1,-28,8,-38,18r0,101v6,17,18,32,41,32","w":201},"c":{"d":"163,-40v-13,24,-40,44,-70,45v-52,2,-81,-39,-80,-92v1,-53,30,-89,82,-91v31,-1,58,15,58,45v0,27,-43,30,-40,6r4,-29v-4,-8,-13,-9,-23,-9v-66,0,-60,150,7,150v27,0,39,-14,50,-33","w":163},"d":{"d":"13,-87v0,-70,66,-111,126,-80r0,-60v2,-25,-18,-29,-41,-30r0,-11r71,-4r3,3r0,233v-1,17,12,22,30,21r0,12v-20,-1,-48,8,-63,1v-1,-5,2,-13,-1,-16v-46,49,-125,7,-125,-69xm100,-14v19,0,30,-10,39,-20r0,-101v-6,-16,-17,-30,-40,-30v-66,3,-70,150,1,151","w":206},"e":{"d":"105,-15v26,0,37,-12,49,-33r13,7v-14,25,-37,46,-72,46v-55,0,-82,-37,-82,-93v0,-51,28,-90,79,-90v51,0,72,33,70,86r-114,0v0,44,14,77,57,77xm128,-107v-1,-29,-6,-58,-36,-58v-29,1,-43,26,-44,58r80,0","w":174},"f":{"d":"110,-272v32,-3,44,35,15,40v-16,-1,-22,-16,-29,-26v-26,5,-24,48,-25,85r45,0r0,17r-45,0r0,125v-1,17,17,19,33,19r0,12r-91,0r0,-12v15,1,25,-3,25,-18r0,-126r-34,0r0,-17r34,0v-4,-55,25,-95,72,-99","w":117},"g":{"d":"76,-34v50,0,101,1,100,52v-1,47,-41,58,-90,60v-44,1,-77,-9,-79,-45v-1,-28,28,-35,50,-42v-15,-5,-31,-10,-30,-31v1,-17,11,-24,26,-30r0,-3v-19,-9,-35,-23,-35,-49v-1,-45,53,-67,97,-51r60,0r0,17v-13,1,-30,-2,-41,1v34,42,-6,103,-70,89v-22,8,-12,32,12,32xm82,-78v22,0,32,-20,32,-43v0,-24,-10,-45,-32,-45v-23,0,-30,19,-30,44v0,23,10,44,30,44xm92,65v31,1,55,-11,55,-40v0,-36,-45,-23,-74,-28v-22,4,-35,13,-35,35v0,25,25,32,54,33","w":183},"h":{"d":"176,-31v0,15,10,19,25,19r0,12r-85,0r0,-12v16,1,28,-3,27,-18v-3,-48,16,-127,-30,-127v-22,0,-37,12,-45,26r0,100v-1,15,12,19,26,19r0,12r-85,0r0,-12v16,1,27,-3,26,-18r0,-201v1,-19,-16,-26,-34,-26r0,-11v21,1,50,-8,67,-1r0,120v16,-15,29,-28,59,-29v65,-1,47,85,49,147","w":209},"i":{"d":"71,-32v0,15,12,20,26,20r0,12r-84,0r0,-12v15,1,25,-3,25,-18r0,-107v1,-18,-14,-21,-30,-23r0,-12v20,1,46,-6,63,-1r0,141xm52,-266v14,0,22,11,23,22v0,13,-10,25,-23,25v-12,0,-22,-11,-22,-23v0,-12,9,-24,22,-24","w":105},"j":{"d":"43,-135v1,-20,-22,-23,-39,-26r0,-11v23,1,52,-6,72,-1v-6,100,29,242,-71,251v-32,3,-44,-37,-15,-40v17,-2,22,16,28,25v25,-4,25,-33,25,-68r0,-130xm56,-266v14,0,22,11,22,22v1,13,-9,25,-22,25v-12,0,-23,-12,-23,-23v0,-12,10,-24,23,-24","w":105},"k":{"d":"129,-152v0,-7,-15,-9,-22,-10r0,-11r76,0r0,11v-36,10,-55,32,-77,55v23,26,47,67,72,92v4,2,10,3,18,3r0,12r-52,0r-62,-87r-14,14v0,29,-7,65,26,61r0,12r-85,0r0,-12v16,1,27,-3,26,-18r0,-201v0,-18,-14,-27,-34,-26r0,-11v21,1,50,-8,67,-1r0,183v20,-22,43,-42,61,-66","w":192},"l":{"d":"68,-32v0,15,12,20,26,20r0,12r-85,0r0,-12v16,1,27,-3,26,-18r0,-200v2,-20,-17,-26,-35,-27r0,-11r66,-4v7,74,2,162,2,240","w":103},"m":{"d":"283,-31v0,16,13,18,27,19r0,12r-85,0r0,-12v15,1,26,-3,25,-18v-4,-47,17,-124,-29,-127v-23,-1,-36,12,-44,26r0,100v0,15,11,18,25,19r0,12r-82,0r0,-12v15,1,25,-3,24,-18v-4,-47,17,-124,-29,-127v-21,-1,-37,14,-44,26r0,99v-1,15,12,20,26,20r0,12r-84,0r0,-12v15,1,26,-3,25,-18r0,-107v0,-17,-13,-21,-28,-23r0,-12v19,1,44,-6,60,-1v1,8,-3,21,2,25v17,-33,92,-43,104,1v14,-15,30,-31,60,-31v64,-3,47,86,47,147","w":317},"n":{"d":"179,-31v0,15,11,18,25,19r0,12r-85,0r0,-12v16,1,28,-3,27,-18v-3,-48,16,-127,-30,-127v-22,0,-37,12,-45,26r0,100v-1,16,13,18,27,19r0,12r-85,0r0,-12v15,1,26,-3,25,-18r0,-107v0,-16,-11,-23,-27,-23r0,-12v19,0,44,-6,60,-1v1,7,-2,18,1,24v14,-15,29,-28,58,-29v67,-2,49,85,49,147","w":212},"o":{"d":"98,-178v50,-1,86,38,84,90v-2,55,-31,93,-87,93v-53,0,-82,-37,-83,-91v-1,-52,35,-92,86,-92xm98,-8v63,0,67,-157,0,-157v-38,0,-48,36,-49,76v0,43,10,81,49,81","w":194},"p":{"d":"118,-178v50,2,73,39,75,91v3,69,-67,112,-125,80r0,52v-1,19,18,20,35,21r0,12r-97,0r0,-12v16,0,30,-2,29,-19r0,-184v-2,-15,-12,-23,-29,-23r0,-12v20,1,45,-6,61,-1v1,6,-2,17,2,20v10,-12,29,-26,49,-25xm108,-8v67,0,65,-149,-2,-151v-19,-1,-30,10,-38,20r0,102v6,16,19,29,40,29","w":205},"q":{"d":"13,-89v-4,-74,84,-112,137,-71v8,-8,9,-27,25,-21v-5,71,-2,149,-3,225v0,18,15,21,31,22r0,12r-94,0r0,-12v16,-1,31,-2,30,-19v-1,-21,2,-45,-1,-64v-13,11,-25,23,-49,22v-50,-3,-73,-40,-76,-94xm49,-85v0,58,55,93,90,53r0,-104v-7,-15,-19,-29,-41,-29v-33,0,-49,39,-49,80","w":201},"r":{"d":"120,-178v27,-3,36,49,7,50v-18,1,-23,-14,-18,-30v-16,2,-30,13,-38,26r0,101v-2,18,18,18,33,19r0,12r-91,0r0,-12v15,1,26,-3,25,-18r0,-107v-1,-15,-10,-23,-27,-23r0,-12v19,0,44,-6,60,-1v1,7,-2,18,1,24v11,-14,29,-27,48,-29","w":147},"s":{"d":"121,-123v1,-38,-70,-62,-77,-17v7,53,96,21,98,90v2,54,-78,69,-111,39r-3,12r-13,0r-2,-61r12,0v8,25,23,48,55,51v41,3,46,-53,9,-59v-32,-12,-70,-17,-72,-59v-2,-45,61,-64,97,-42v1,-7,6,-11,16,-9r3,55r-12,0","w":155},"t":{"d":"67,-59v-8,37,21,47,53,39r0,12v-30,16,-86,22,-86,-30r0,-118r-32,0r0,-17r32,0r0,-54r32,0r0,54r50,0r0,17r-49,0r0,97","w":124},"u":{"d":"172,-35v0,15,10,21,26,20r0,12v-19,-1,-45,8,-59,1v-1,-7,2,-17,-1,-22v-13,15,-27,28,-57,28v-63,0,-48,-81,-48,-141v0,-17,-12,-21,-27,-23r0,-11v20,0,44,-6,61,-2r0,120v-6,51,60,43,72,13r0,-99v0,-18,-15,-21,-33,-21r0,-11v21,0,48,-6,66,-2r0,138","w":207},"v":{"d":"142,-149v-2,-8,-15,-12,-24,-13r0,-11r66,0r0,10v-33,10,-37,40,-49,70r-38,95r-13,0r-60,-145v-4,-10,-16,-17,-27,-19r0,-11r80,0r0,12v-10,0,-27,4,-19,15r42,102v12,-32,32,-65,42,-105","w":178},"w":{"d":"225,-134v8,-18,-2,-28,-20,-28r0,-11r66,0r0,11v-33,4,-36,44,-45,71r-30,92r-15,0r-47,-127r-46,127r-15,0r-48,-144v-3,-11,-15,-16,-26,-19r0,-11r77,0r0,12v-10,1,-25,3,-17,16r31,100r45,-125r17,0r45,123","w":265},"x":{"d":"66,-53v-9,13,-35,41,0,42r0,11r-64,0r0,-11v40,-14,45,-40,73,-74v-18,-24,-33,-51,-53,-73v-4,-3,-10,-4,-17,-4r0,-11r75,0r0,11v-10,0,-22,2,-12,12r29,45v10,-16,25,-28,32,-48v0,-6,-12,-7,-18,-9r0,-11r64,0r0,11v-39,8,-48,42,-70,66v20,26,34,57,58,79v4,3,10,5,17,5r0,12r-80,0r0,-12v30,1,13,-20,2,-35r-19,-28v-6,8,-12,15,-17,22","w":181},"y":{"d":"57,66v-15,17,-58,17,-58,-9v0,-34,40,-16,45,2v13,-7,33,-44,38,-60r-58,-142v-4,-10,-16,-17,-27,-19r0,-11r79,0r0,12v-10,0,-26,3,-18,15r42,103v12,-36,31,-63,41,-106v-1,-6,-16,-12,-23,-13r0,-11r64,0v4,20,-23,14,-26,31r-62,147v-12,26,-22,44,-37,61","w":177},"z":{"d":"49,-14v52,4,91,0,90,-47r11,0r0,61r-140,0r0,-9r98,-150r-48,0v-23,0,-28,18,-33,39r-11,0r0,-53r133,0r0,7","w":159},"{":{"d":"98,-35v-1,45,-2,85,45,79r0,15v-48,0,-80,-14,-78,-64r2,-44v1,-34,-22,-44,-54,-45r0,-23v30,-3,56,-11,54,-45v-3,-49,-6,-101,43,-105v10,-1,21,-3,33,-3r0,14v-26,1,-46,8,-45,38v5,62,-7,106,-61,110r0,5v38,6,62,24,61,68","w":154},"|":{"d":"79,75r-23,0r0,-343r23,0r0,343","w":135},"}":{"d":"88,-162v-2,34,24,42,54,45r0,23v-31,2,-57,10,-54,45v4,50,4,100,-43,105v-10,1,-21,3,-33,3r0,-15v46,5,47,-34,45,-79v-2,-44,23,-62,61,-68r0,-5v-53,-4,-66,-47,-61,-110v2,-30,-19,-37,-45,-38r0,-14v48,-1,80,14,78,63","w":154},"~":{"d":"160,-100v20,0,28,-16,35,-31r14,5v-11,23,-26,51,-60,52v-32,0,-48,-24,-78,-24v-20,0,-25,15,-34,31r-14,-5v10,-24,28,-52,60,-52v34,0,47,24,77,24"}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Georgia is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * Manufacturer:
 * Carter & Cone
 * 
 * Designer:
 * Matthew Carter
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/
 */
Cufon.registerFont({"w":253,"face":{"font-family":"Georgia","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 4 8 2 5 4 5 2 2 3","ascent":"288","descent":"-72","x-height":"6","bbox":"-41.2221 -272.098 412 78.5275","underline-thickness":"21.4453","underline-position":"-20.918","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":91},"\u00a0":{"w":91},"!":{"d":"34,-222v-3,-28,38,-43,58,-23v7,6,12,14,10,23r-27,141r-14,0v-7,-54,-22,-91,-27,-141xm68,-60v18,0,34,17,34,33v0,17,-17,32,-34,32v-17,1,-34,-14,-34,-32v0,-17,16,-33,34,-33","w":135},"\"":{"d":"133,-269v59,6,9,84,6,124r-12,0v-4,-28,-23,-73,-23,-96v0,-15,13,-30,29,-28xm50,-269v59,6,9,84,6,124r-12,0v-4,-28,-23,-73,-23,-96v0,-15,13,-30,29,-28","w":183},"#":{"d":"226,-131r-46,0r-14,45r49,0r0,28r-57,0r-18,58r-26,0r17,-58r-40,0r-18,58r-26,0r18,-58r-38,0r0,-28r46,0r14,-45r-49,0r0,-29r58,0r18,-60r26,0r-18,60r40,0r19,-60r26,0r-19,60r38,0r0,29xm154,-132r-41,0r-14,46r41,0"},"$":{"d":"47,-81v34,0,34,38,22,59v8,3,26,11,39,10r0,-79v-45,-2,-83,-21,-83,-66v0,-46,36,-69,83,-73r0,-38r18,0r0,38v39,1,78,16,80,49v0,16,-11,29,-27,29v-33,0,-32,-37,-21,-57v-7,-4,-21,-6,-32,-6r0,72v48,5,86,22,86,71v1,46,-42,72,-86,75r0,50r-18,0r0,-50v-41,1,-87,-22,-89,-55v0,-16,10,-29,28,-29xm67,-180v-1,26,18,33,41,36r0,-71v-22,2,-41,13,-41,35xm126,-12v28,-3,45,-15,45,-40v0,-25,-20,-34,-45,-37r0,77","w":230},"%":{"d":"84,-257v37,0,69,27,69,66v0,39,-30,66,-68,66v-38,0,-69,-27,-69,-66v0,-39,31,-65,68,-66xm85,-138v20,-3,21,-27,21,-53v0,-26,-1,-51,-22,-53v-20,3,-21,27,-21,52v0,27,0,53,22,54xm232,-125v38,0,69,26,69,65v0,39,-31,66,-69,66v-38,1,-68,-27,-68,-66v0,-39,30,-65,68,-65xm233,-7v31,0,30,-105,-1,-105v-21,0,-22,26,-22,51v0,27,1,54,23,54xm277,-251r-208,251r-29,0r208,-251r29,0","w":316},"&":{"d":"203,-65v25,29,40,48,86,51r0,14r-103,0r-22,-26v-37,47,-153,43,-152,-32v1,-45,31,-61,63,-77v-17,-22,-26,-33,-28,-63v-5,-67,133,-82,133,-11v0,33,-18,47,-44,62r57,70v10,-17,22,-32,22,-53v0,-12,-17,-11,-30,-15r0,-13r99,0r0,13v-55,0,-53,53,-81,80xm127,-158v28,-12,40,-78,-1,-81v-44,6,-19,61,1,81xm83,-124v-37,36,-8,119,54,96v5,-2,11,-4,17,-9","w":287},"'":{"d":"49,-269v59,7,8,83,5,124r-12,0v-4,-28,-23,-73,-23,-96v0,-16,13,-30,30,-28","w":96},"(":{"d":"80,-106v0,77,16,134,69,148r0,16v-147,-4,-172,-261,-47,-313v15,-7,31,-12,47,-14r0,16v-54,13,-69,71,-69,147","w":160},")":{"d":"12,-269v148,2,171,261,47,312v-15,7,-31,13,-47,15r0,-16v53,-13,69,-72,69,-148v0,-76,-15,-134,-69,-147r0,-16","w":160},"*":{"d":"96,-196v21,-1,63,-23,63,6v0,31,-42,4,-63,5v12,16,57,48,19,60v-21,-5,-18,-35,-28,-54v-11,16,-7,51,-28,54v-39,-13,8,-43,19,-60v0,0,-59,25,-64,-5v4,-29,41,-6,64,-6v-10,-16,-35,-27,-35,-45v0,-8,8,-15,16,-15v23,0,16,38,28,54v10,-19,7,-50,28,-54v38,13,-9,45,-19,60","w":173},"+":{"d":"224,-87r-83,0r0,83r-29,0r0,-83r-83,0r0,-28r83,0r0,-83r29,0r0,83r83,0r0,28"},",":{"d":"54,-60v46,0,52,64,23,95v-13,14,-26,25,-43,33r-8,-12v21,-12,42,-25,44,-56v-52,12,-61,-60,-16,-60","w":118},"-":{"d":"121,-76r-106,0r0,-39r106,0r0,39","w":136},"\u00ad":{"d":"121,-76r-106,0r0,-39r106,0r0,39","w":136},".":{"d":"59,-64v17,0,35,17,35,35v0,18,-17,34,-35,34v-18,0,-35,-17,-35,-34v0,-17,17,-35,35,-35","w":118},"\/":{"d":"158,-268r-122,343r-31,0r121,-343r32,0","w":169},"0":{"d":"126,-195v66,0,108,35,108,101v0,64,-41,100,-108,100v-67,0,-108,-36,-108,-100v0,-64,41,-101,108,-101xm126,-9v38,-4,42,-42,42,-85v0,-41,-3,-85,-42,-85v-39,0,-42,44,-42,85v0,42,5,81,42,85","w":252},"1":{"d":"125,-37v-2,22,24,22,41,24r0,13r-145,0r0,-13v18,-3,44,0,44,-23r0,-111r-44,0r0,-17v37,2,62,-9,74,-31r31,0","w":176},"2":{"d":"200,-135v-2,71,-101,50,-137,87r147,0r0,48r-191,0r0,-32v30,-35,90,-45,112,-86v11,-40,-15,-74,-56,-57v12,23,10,62,-25,62v-18,0,-29,-13,-29,-29v0,-70,182,-76,179,7","w":225},"3":{"d":"134,-74v38,4,73,20,73,62v0,49,-56,77,-113,77v-40,0,-84,-19,-85,-53v0,-16,11,-29,29,-29v36,0,36,39,24,62v41,13,77,-9,77,-57v0,-42,-23,-52,-66,-49r0,-21v41,4,58,-14,58,-54v0,-36,-27,-51,-59,-39v10,25,12,62,-24,62v-18,0,-29,-13,-29,-29v1,-36,47,-54,89,-53v49,0,88,16,88,58v0,40,-33,51,-62,63","w":224},"4":{"d":"222,-2r-38,0r0,67r-59,0r0,-67r-116,0r0,-32r126,-160r49,0r0,155r38,0r0,37xm125,-39r0,-113r-89,113r89,0","w":233},"5":{"d":"49,-83v52,-32,152,-17,152,60v0,55,-50,89,-107,88v-39,1,-84,-19,-84,-52v0,-16,12,-30,29,-30v35,0,37,39,24,63v47,12,70,-24,73,-69v3,-56,-72,-74,-95,-32r-14,-5r17,-129r148,0r0,48r-135,0","w":215},"6":{"d":"84,-137v45,-49,134,-19,134,56v0,51,-46,87,-99,87v-112,0,-128,-151,-57,-211v31,-26,67,-45,117,-51r5,17v-62,6,-90,45,-100,102xm119,-9v46,-3,49,-128,-1,-128v-24,0,-36,11,-36,41v0,43,7,82,37,87","w":233},"7":{"d":"165,-142v-57,5,-137,-20,-137,39r-12,0r0,-86r185,0r0,21r-128,233r-26,0","w":199},"8":{"d":"161,-140v36,13,62,31,64,70v4,96,-207,106,-207,10v0,-37,26,-52,61,-60v-28,-13,-50,-34,-51,-68v-1,-86,187,-94,187,-7v0,33,-24,46,-54,55xm149,-146v13,-30,16,-95,-27,-95v-36,0,-47,54,-18,71v12,7,32,18,45,24xm123,-9v44,0,57,-58,23,-78v-15,-9,-38,-18,-54,-27v-24,30,-20,105,31,105","w":243},"9":{"d":"114,-195v111,0,129,151,58,210v-30,25,-68,44,-118,51r-4,-17v58,-9,91,-41,99,-100v-45,45,-134,17,-134,-58v0,-52,46,-86,99,-86xm116,-52v23,0,35,-11,35,-40v0,-42,-6,-82,-36,-87v-47,3,-49,127,1,127","w":233},":":{"d":"66,-175v18,0,35,17,35,35v0,18,-17,34,-35,34v-18,0,-35,-17,-35,-34v0,-17,17,-35,35,-35xm66,-64v17,0,35,17,35,35v0,18,-17,34,-35,34v-18,0,-35,-17,-35,-34v0,-17,17,-35,35,-35","w":132},";":{"d":"66,-175v18,0,35,17,35,35v0,18,-17,34,-35,34v-18,0,-35,-17,-35,-34v0,-17,17,-35,35,-35xm62,-60v45,0,50,64,22,95v-13,14,-26,25,-43,33r-8,-12v21,-12,42,-25,44,-56v-52,12,-61,-60,-15,-60","w":132},"\u037e":{"d":"66,-175v18,0,35,17,35,35v0,18,-17,34,-35,34v-18,0,-35,-17,-35,-34v0,-17,17,-35,35,-35xm62,-60v45,0,50,64,22,95v-13,14,-26,25,-43,33r-8,-12v21,-12,42,-25,44,-56v-52,12,-61,-60,-15,-60","w":132},"<":{"d":"213,-1r-176,-88r0,-24r176,-88r0,33r-139,67r139,67r0,33"},"=":{"d":"221,-123r-188,0r0,-29r188,0r0,29xm221,-50r-188,0r0,-29r188,0r0,29"},">":{"d":"216,-89r-175,88r0,-33r138,-67r-138,-67r0,-33r175,88r0,24"},"?":{"d":"92,-255v77,0,115,84,62,130v-16,15,-37,23,-64,25r-1,24r-16,0r0,-68v58,7,76,-93,17,-97v-10,0,-17,3,-24,7v10,22,12,56,-23,56v-18,0,-29,-13,-29,-29v1,-30,42,-48,78,-48xm82,-60v18,0,33,16,33,33v0,18,-16,32,-33,32v-17,1,-34,-14,-34,-32v0,-17,16,-33,34,-33","w":197},"@":{"d":"196,-242v78,0,122,43,126,116v3,55,-37,107,-88,106v-24,0,-41,-9,-48,-24v-20,36,-93,27,-88,-27v5,-54,37,-100,90,-100v16,0,24,6,28,18r6,-16r45,0v-12,40,-30,74,-39,117v0,9,3,16,13,16v42,0,63,-45,61,-92v-2,-63,-42,-96,-107,-96v-81,0,-133,54,-133,138v0,80,42,126,120,126v42,0,71,-12,95,-30r7,11v-26,20,-58,37,-103,36v-89,-3,-153,-49,-153,-141v0,-97,68,-158,168,-158xm145,-66v-3,30,30,31,37,10r27,-78v0,-12,-7,-22,-19,-22v-33,8,-41,51,-45,90","w":348},"A":{"d":"56,-35v-3,19,16,19,36,21r0,14r-102,0r0,-14v24,-1,37,-12,45,-31r86,-208r36,0r87,216v7,13,18,23,39,23r0,14r-136,0r0,-14v10,-1,45,-2,33,-18r-21,-51r-86,0v-7,14,-15,33,-17,48xm152,-101r-36,-90r-36,90r72,0","w":272},"B":{"d":"178,-133v39,7,80,20,80,65v0,99,-149,60,-246,68r0,-14v18,-1,37,-3,37,-22r0,-176v1,-20,-22,-20,-37,-24r0,-13v86,7,232,-28,232,55v0,39,-34,49,-66,58r0,3xm111,-140v40,2,64,-14,65,-49v0,-35,-25,-48,-65,-44r0,93xm111,-32v21,34,86,9,77,-38v1,-42,-32,-58,-77,-53r0,91","w":272},"C":{"d":"12,-122v-4,-105,110,-163,202,-118v6,-6,13,-11,27,-9r1,91r-15,0v-16,-45,-29,-81,-77,-81v-52,0,-67,51,-67,111v0,62,17,110,76,110v41,0,61,-24,79,-54r15,9v-20,40,-51,70,-110,70v-80,0,-128,-49,-131,-129","w":257},"D":{"d":"144,-249v83,2,144,40,144,126v0,85,-64,123,-150,123r-126,0r0,-14v18,0,38,-2,37,-21r0,-177v0,-18,-21,-22,-37,-24r0,-13r132,0xm144,-16v59,0,73,-47,73,-107v-1,-71,-27,-118,-106,-110r0,190v1,19,12,27,33,27","w":300},"E":{"d":"49,-212v2,-20,-22,-20,-37,-24r0,-13r221,0r0,63r-13,0v-11,-38,-49,-56,-109,-48r0,97v42,4,68,-9,71,-43r14,0r0,104r-14,0v-3,-35,-26,-52,-71,-45v4,46,-19,116,41,105v56,9,72,-31,86,-62r13,0r-5,78r-234,0r0,-14v18,-1,38,-4,37,-22r0,-176","w":259},"F":{"d":"49,-212v1,-19,-22,-20,-37,-24r0,-13r224,0r0,66r-13,0v-10,-26,-31,-57,-73,-51r-39,0r0,98v43,5,67,-9,70,-43r14,0r0,105r-14,0v-3,-34,-25,-52,-70,-45r0,82v-1,20,20,21,36,23r0,14r-135,0r0,-14v17,-1,37,-2,37,-22r0,-176","w":241},"G":{"d":"12,-122v-6,-110,113,-161,208,-118v6,-6,12,-11,26,-9r2,91r-16,0v-16,-45,-30,-81,-79,-81v-52,0,-71,52,-70,111v0,62,17,115,69,117v18,0,37,-7,46,-15r0,-51v2,-21,-21,-21,-38,-24r0,-14r130,0r0,14v-42,-5,-32,41,-31,79v-22,14,-80,30,-116,29v-81,-2,-128,-48,-131,-129","w":290},"H":{"d":"182,-14v17,0,36,-3,36,-21r0,-86r-107,0r0,84v-1,19,19,21,36,23r0,14r-135,0r0,-14v17,0,37,-2,37,-21r0,-177v0,-18,-21,-22,-37,-24r0,-13r135,0r0,13v-16,2,-36,3,-36,23r0,74r107,0r0,-73v0,-18,-21,-20,-36,-24r0,-13r135,0r0,13v-16,3,-37,3,-37,23r0,176v-1,20,19,22,37,23r0,14r-135,0r0,-14","w":328},"I":{"d":"11,-14v17,-1,38,0,38,-21r0,-177v2,-20,-23,-20,-38,-24r0,-13r138,0r0,13v-17,2,-38,3,-38,23r0,176v-1,19,21,21,38,23r0,14r-138,0r0,-14","w":160},"J":{"d":"108,-212v2,-20,-22,-20,-36,-24r0,-13r133,0r0,13v-17,3,-34,2,-34,23r0,137v-3,54,-41,80,-95,83v-41,1,-73,-22,-73,-60v0,-22,13,-37,35,-37v19,0,33,13,33,31v1,21,-19,27,-26,41v29,23,63,-9,63,-53r0,-141","w":214},"K":{"d":"206,-229v-4,-6,-14,-6,-26,-7r0,-13r109,0r0,13v-64,5,-86,54,-122,85r88,109v12,14,25,27,50,28r0,14r-99,0v-30,-47,-55,-75,-86,-115r-9,0r0,78v-1,19,17,21,33,23r0,14r-132,0r0,-14v17,-1,37,-2,37,-21r0,-177v1,-19,-21,-21,-37,-24r0,-13r137,0r0,13v-17,2,-38,2,-38,23r0,84r7,0v28,-28,74,-61,88,-100","w":294},"L":{"d":"111,-49v-8,47,61,36,90,24v12,-11,26,-39,33,-55r13,0r-5,80r-230,0r0,-14v18,-1,37,-2,37,-22r0,-176v1,-19,-21,-21,-37,-24r0,-13r137,0r0,13v-17,2,-38,2,-38,23r0,164","w":246},"M":{"d":"320,-37v-2,20,19,20,35,23r0,14r-135,0r0,-14v18,-1,38,-2,38,-23r0,-186r-85,219r-23,0r-81,-222r0,152v-4,41,14,56,44,60r0,14r-107,0r0,-14v18,-2,38,-5,40,-25v5,-45,2,-106,3,-157v1,-28,-16,-39,-41,-40r0,-13r115,0r61,164r60,-164r111,0r0,13v-16,2,-35,3,-35,23r0,176","w":368},"N":{"d":"235,-81v-5,-63,20,-155,-43,-155r0,-13r107,0r0,13v-33,0,-43,19,-43,59r0,178r-31,0r-156,-192v7,68,-25,176,44,177r0,14r-107,0r0,-14v35,-1,46,-17,43,-58v-5,-64,22,-160,-44,-163r0,-14r94,0","w":302},"O":{"d":"148,-256v82,0,135,48,135,130v0,83,-51,133,-137,133v-80,0,-134,-48,-134,-129v0,-82,52,-134,136,-134xm148,-10v55,0,64,-56,64,-115v0,-56,-10,-114,-64,-114v-51,0,-66,53,-65,115v1,58,10,114,65,114","w":295},"P":{"d":"12,-249v90,7,234,-29,234,62v0,68,-63,82,-135,80r0,70v-1,20,20,20,36,23r0,14r-135,0r0,-14v18,-1,37,-2,37,-22r0,-176v1,-19,-21,-21,-37,-24r0,-13xm111,-124v42,2,66,-14,66,-54v0,-44,-20,-58,-66,-55r0,109","w":252},"Q":{"d":"148,-256v82,0,135,48,135,130v0,62,-34,106,-83,123v-1,39,32,62,72,48r0,15v-30,13,-94,23,-119,-5v-12,-13,-20,-28,-22,-49v-71,-9,-119,-52,-119,-128v0,-82,52,-134,136,-134xm148,-10v55,0,64,-56,64,-115v0,-56,-10,-114,-64,-114v-51,0,-66,53,-65,115v1,58,10,114,65,114","w":295},"R":{"d":"248,-190v0,40,-25,57,-61,67r76,94v10,12,18,13,35,15r0,14r-95,0v-17,-25,-30,-45,-41,-60v-11,-15,-25,-32,-41,-52r-10,0r0,75v-2,19,19,20,34,23r0,14r-133,0r0,-14v18,0,38,-4,37,-22r0,-176v2,-20,-23,-20,-37,-24r0,-13v90,7,236,-29,236,59xm111,-129v44,2,69,-13,68,-56v0,-39,-26,-51,-68,-48r0,104","w":287},"S":{"d":"220,-73v0,84,-119,96,-179,61v-7,6,-11,15,-27,12r-3,-90r15,0v17,36,36,75,87,79v40,3,66,-42,38,-66v-40,-35,-133,-27,-133,-104v0,-76,106,-90,161,-58v6,-6,12,-12,26,-10r1,85r-15,0v-14,-34,-28,-72,-73,-75v-34,-3,-59,40,-33,62v41,35,135,26,135,104","w":233},"T":{"d":"92,-234v-48,-7,-65,25,-76,56r-14,0r0,-71r242,0r0,71r-14,0v-12,-29,-26,-65,-76,-56r0,196v-1,20,21,22,39,24r0,14r-139,0r0,-14v16,-1,38,-1,38,-22r0,-198","w":246},"U":{"d":"236,-91v-2,-61,17,-146,-45,-145r0,-13r108,0r0,13v-63,-2,-43,91,-43,152v0,56,-44,91,-101,91v-67,0,-111,-29,-111,-91r0,-128v0,-18,-18,-22,-34,-24r0,-13r131,0r0,13v-18,1,-35,4,-35,22v0,82,-26,200,64,197v42,-2,68,-28,66,-74","w":300},"V":{"d":"208,-185v14,-26,16,-54,-27,-50r0,-14r101,0r0,14v-56,8,-62,73,-80,118r-49,120r-36,0r-86,-209v-8,-18,-20,-26,-42,-30r0,-13r135,0r0,13v-21,4,-38,2,-30,21r64,158","w":274},"W":{"d":"349,-206v9,-25,-16,-28,-37,-29r0,-14r100,0r0,14v-54,8,-54,72,-69,115r-42,123r-35,0r-66,-186r-60,186r-35,0r-71,-209v-6,-19,-20,-26,-41,-30r0,-13r133,0r0,13v-16,3,-36,-1,-29,21r48,147r57,-181r37,0r66,187","w":405},"X":{"d":"212,-224v-3,-10,-11,-10,-28,-12r0,-13r97,0r0,13v-42,4,-58,37,-80,62r-29,33r78,111v12,10,22,15,42,16r0,14r-152,0r0,-14v57,4,23,-33,9,-55r-21,-32v-32,39,-44,48,-57,75v1,11,15,10,27,12r0,14r-96,0r0,-14v46,-3,60,-39,83,-65r32,-37r-73,-103v-12,-11,-22,-16,-42,-17r0,-13r153,0r0,13v-48,-4,-30,24,-14,49r20,31v29,-36,40,-42,51,-68","w":291},"Y":{"d":"214,-223v-2,-12,-15,-11,-31,-13r0,-13r92,0r0,13v-56,14,-66,75,-97,112v-18,22,-14,48,-15,86v-1,20,21,22,39,24r0,14r-139,0r0,-14v18,-1,39,-2,38,-22v-2,-32,2,-64,-13,-84v-26,-35,-41,-82,-75,-110v-5,-3,-17,-5,-24,-6r0,-13r143,0r0,13v-20,2,-41,0,-31,17r55,96v40,-65,38,-59,58,-100","w":263},"Z":{"d":"142,-16v67,6,70,-31,90,-68r14,0r-9,84r-234,0r0,-11r161,-222r-54,0v-55,-2,-56,23,-80,60r-14,0r8,-76r217,0r0,10r-161,223r62,0","w":248},"[":{"d":"149,54r-116,0r0,-321r116,0r0,17r-61,0r0,287r61,0r0,17","w":160},"\\":{"d":"165,75r-32,0r-121,-343r32,0","w":169},"]":{"d":"128,54r-116,0r0,-17r61,0r0,-287r-61,0r0,-17r116,0r0,321","w":160},"^":{"d":"217,-134r-35,0r-55,-90r-56,90r-34,0r77,-122r25,0"},"_":{"d":"254,53r-255,0r0,-21r255,0r0,21"},"`":{"d":"53,-234v-20,-11,-18,-40,7,-38v31,1,30,20,47,41r23,31r-7,6v-30,-20,-45,-26,-70,-40","w":180},"a":{"d":"211,-17r0,13v-26,13,-81,14,-87,-16v-21,34,-110,37,-110,-18v0,-59,72,-53,110,-73v-1,-26,2,-56,-26,-54v-9,0,-15,2,-21,6v9,21,7,47,-25,47v-19,0,-29,-10,-30,-26v6,-31,43,-40,79,-41v47,0,81,10,81,58v0,40,-24,112,29,104xm75,-48v0,32,37,32,48,12r1,-59v-25,8,-49,15,-49,47","w":214},"b":{"d":"86,-155v50,-50,144,-13,134,69v7,80,-101,118,-158,72v-12,7,-20,29,-36,19v5,-72,1,-156,2,-233v-1,-18,-14,-26,-32,-27r0,-13r87,-4r3,3r0,114xm118,-9v52,0,58,-142,-2,-143v-15,0,-23,4,-30,13v5,49,-19,130,32,130","w":232},"c":{"d":"191,-44v-16,27,-39,50,-80,50v-62,0,-99,-33,-99,-94v0,-56,41,-90,102,-91v37,0,70,13,70,45v0,18,-9,28,-30,28v-33,0,-35,-30,-25,-53v-36,-22,-53,29,-53,69v0,36,19,70,50,70v28,0,40,-14,52,-33","w":191},"d":{"d":"206,-39v-2,18,14,22,31,22r0,13v-29,0,-63,7,-89,3v-1,-5,1,-13,-1,-17v-10,11,-32,25,-53,24v-49,0,-80,-44,-82,-95v-2,-66,76,-113,136,-79r0,-58v-1,-22,-19,-28,-40,-29r0,-13r95,-4r3,3r0,230xm117,-20v15,0,24,-6,31,-15v-5,-48,18,-127,-32,-127v-51,0,-60,140,1,142","w":238},"e":{"d":"134,-20v24,0,41,-17,52,-32r13,10v-17,27,-44,48,-86,48v-63,0,-101,-33,-101,-94v0,-56,37,-91,97,-91v57,0,88,27,85,86r-118,0v0,45,14,74,58,73xm132,-109v-1,-26,-1,-56,-26,-56v-25,0,-30,25,-30,57","w":205},"f":{"d":"131,-272v25,-1,45,9,45,30v-1,17,-8,28,-27,27v-26,-2,-28,-18,-39,-42v-19,10,-15,44,-16,83r49,0r0,19r-49,0r0,121v0,18,19,19,35,21r0,13r-118,0v-6,-23,26,-7,26,-32r0,-123r-36,0r0,-19r36,0v1,-60,32,-97,94,-98","w":141},"g":{"d":"15,-123v-2,-52,73,-64,124,-51r68,0r0,19r-39,0v37,42,-9,89,-66,89v-16,0,-36,-3,-36,12v5,26,57,12,84,16v31,5,57,19,57,52v0,51,-51,63,-108,64v-50,0,-91,-7,-94,-45v-2,-26,29,-28,53,-35v-18,-6,-33,-15,-34,-35v-1,-23,25,-23,37,-33v-27,-11,-45,-22,-46,-53xm98,-79v19,0,28,-19,27,-42v-1,-24,-6,-45,-27,-45v-36,0,-34,87,0,87xm108,64v28,-3,46,-10,46,-37v0,-32,-42,-21,-79,-24v-26,21,-11,65,33,61","w":207},"h":{"d":"213,-34v0,16,12,19,26,21r0,13r-106,0v-6,-22,25,-7,22,-32v-6,-43,16,-118,-26,-118v-19,0,-31,10,-38,22r0,94v-2,16,10,19,22,21r0,13r-106,0v-6,-23,26,-7,26,-32r0,-196v0,-18,-14,-26,-32,-27r0,-13r87,-4r3,3r0,121v17,-16,32,-30,65,-31v70,-3,57,78,57,145","w":244},"i":{"d":"95,-34v-1,16,13,19,26,21r0,13r-111,0r0,-13v15,0,27,-3,27,-19r0,-102v-1,-17,-14,-23,-31,-25r0,-13v29,0,64,-7,89,-2r0,140xm61,-272v18,0,35,14,35,32v0,18,-17,32,-35,32v-18,0,-35,-14,-35,-32v0,-18,17,-32,35,-32","w":127},"j":{"d":"39,-134v0,-17,-16,-24,-34,-25r0,-13v30,0,66,-7,92,-2r0,153v-2,59,-35,93,-95,99v-45,4,-62,-57,-16,-57v26,0,27,20,39,41v27,-31,14,-134,14,-196xm63,-272v18,0,35,14,35,32v0,18,-17,32,-35,32v-18,0,-35,-14,-35,-32v0,-18,17,-32,35,-32","w":124},"k":{"d":"146,-140v15,-14,1,-20,-15,-22r0,-12r89,0r0,12v-35,9,-53,22,-76,43r62,92v7,10,17,13,30,14r0,13r-83,0v-18,-33,-33,-53,-52,-80v-16,10,-20,73,14,67r0,13r-108,0v-6,-23,31,-7,26,-32r0,-196v-1,-18,-14,-26,-32,-27r0,-13r87,-4r3,3r0,181","w":227},"l":{"d":"91,-34v-1,16,12,19,26,21r0,13r-110,0r0,-13v15,0,26,-3,26,-19r0,-195v0,-19,-16,-26,-33,-28r0,-13r88,-4r3,3r0,235","w":123},"m":{"d":"334,-34v-1,16,11,19,25,21r0,13r-104,0v-6,-22,25,-7,21,-32v-7,-42,16,-115,-25,-118v-19,-2,-30,11,-37,22r0,94v0,14,9,19,21,21r0,13r-100,0v-7,-22,25,-6,21,-32v-7,-41,17,-115,-25,-118v-19,-1,-30,11,-37,22r0,94v0,14,9,19,21,21r0,13r-105,0r0,-13v16,0,27,-4,27,-19v0,-46,21,-124,-29,-127r0,-13v28,0,62,-7,86,-2v1,8,-2,19,1,25v20,-33,102,-44,116,2v18,-12,34,-32,68,-32v68,0,55,79,55,145","w":365},"n":{"d":"217,-34v0,16,11,19,25,21r0,13r-106,0v-7,-22,27,-7,23,-32v-6,-42,17,-118,-26,-118v-19,0,-31,10,-39,22r0,94v-1,15,10,19,23,21r0,13r-107,0r0,-13v16,0,29,-4,27,-19v-5,-46,21,-124,-29,-127r0,-13v28,0,62,-7,86,-2v1,8,-2,20,1,26v17,-14,32,-31,64,-31v70,0,59,78,58,145","w":248},"o":{"d":"114,-179v63,0,102,30,102,91v0,62,-40,94,-103,94v-60,0,-101,-33,-101,-93v0,-60,40,-91,102,-92xm115,-9v35,0,37,-41,37,-79v0,-34,-1,-78,-37,-77v-35,1,-38,38,-38,76v0,41,1,80,38,80","w":228},"p":{"d":"92,-154v46,-54,142,-11,132,68v5,67,-74,114,-133,79r0,49v-2,21,21,21,38,23r0,13r-127,0r0,-13v16,0,31,-3,31,-21r0,-179v-1,-17,-14,-23,-31,-24r0,-13v29,0,64,-7,89,-2v1,6,-1,15,1,20xm123,-11v51,0,56,-140,-2,-141v-15,-1,-24,6,-30,14v4,49,-17,127,32,127","w":236},"q":{"d":"206,41v-2,19,16,22,32,24r0,13r-123,0r0,-13v16,0,35,-2,33,-21v-2,-19,4,-46,-2,-61v-47,50,-134,6,-134,-72v0,-80,101,-112,164,-73v11,-7,17,-28,32,-20xm117,-21v16,0,23,-7,31,-14v-5,-49,18,-129,-33,-129v-51,0,-59,143,2,143","w":233},"r":{"d":"94,-148v19,-29,89,-48,91,6v1,17,-13,33,-30,33v-24,0,-35,-18,-28,-41v-14,0,-26,10,-33,19r0,97v-1,18,18,20,34,21r0,13r-118,0r0,-13v16,0,27,-4,27,-19r0,-102v-1,-17,-13,-23,-29,-25r0,-13v28,0,62,-7,86,-2r0,26","w":187},"s":{"d":"159,-90v39,44,-7,96,-67,96v-21,0,-47,-7,-59,-16r-5,12r-14,0r-2,-65r13,0v10,26,29,50,64,54v32,3,43,-34,19,-45v-37,-17,-90,-17,-91,-70v-2,-55,82,-66,127,-45v1,-8,6,-12,17,-10r3,60r-12,0v-6,-21,-28,-45,-54,-45v-28,0,-39,30,-17,41v20,10,65,18,78,33","w":184},"t":{"d":"90,-58v-4,35,20,42,51,35r0,15v-36,20,-109,21,-109,-39r0,-108r-32,0r0,-19r32,0r0,-53r57,0r0,53r50,0r0,19r-49,0r0,97","w":143},"u":{"d":"211,-38v0,16,12,23,29,21r0,13v-28,0,-62,7,-87,3v-1,-7,2,-18,-1,-23v-17,15,-31,29,-66,29v-66,0,-53,-76,-54,-140v-1,-16,-12,-24,-29,-24r0,-13v28,1,62,-7,87,-2r0,117v-6,45,51,40,63,15r0,-95v-1,-16,-12,-23,-30,-22r0,-13v28,0,63,-7,88,-2r0,136","w":243},"v":{"d":"163,-144v2,-15,-15,-15,-25,-18r0,-12r73,0r0,12v-34,6,-38,47,-52,73v-15,29,-30,58,-39,91r-32,0r-65,-145v-4,-11,-17,-16,-28,-19r0,-12r109,0r0,12v-10,0,-31,5,-20,17r41,92","w":204},"w":{"d":"265,-138v9,-17,-12,-22,-24,-24r0,-12r72,0r0,12v-31,5,-33,45,-46,70v-9,17,-25,64,-34,94r-34,0r-44,-120r-42,120r-34,0r-55,-145v-3,-11,-15,-16,-26,-19r0,-12r107,0r0,12v-8,1,-30,4,-20,17r32,86r39,-115r35,0r45,119","w":310},"x":{"d":"136,-127v8,-7,33,-37,0,-35r0,-12r70,0r0,12v-39,12,-48,39,-75,63v21,27,37,57,61,81v4,3,10,4,19,5r0,13r-110,0r0,-13v32,2,14,-19,3,-34v-8,-12,-8,-11,-15,-21v-12,16,-28,28,-36,47v0,8,12,7,19,8r0,13r-71,0r0,-13v42,-14,50,-40,79,-68v-20,-25,-35,-55,-59,-76v-5,-2,-11,-4,-18,-5r0,-12r107,0r0,12v-25,-1,-13,14,-3,28v7,11,8,11,16,23","w":211},"y":{"d":"159,-138v10,-17,-10,-21,-23,-24r0,-12r73,0r0,12v-39,9,-41,59,-59,89v-33,54,-39,138,-109,151v-38,7,-53,-58,-10,-57v19,0,28,13,38,25v8,-8,23,-27,27,-41r-74,-148v-5,-11,-14,-17,-27,-19r0,-12r108,0r0,12v-9,1,-27,3,-20,17r43,86","w":202},"z":{"d":"77,-16v56,6,90,-4,91,-50r13,0r0,66r-173,0r0,-12r101,-146r-38,0v-32,-4,-37,19,-44,41r-12,0r0,-57r163,0r0,11","w":189},"{":{"d":"123,-30v-2,43,3,76,45,73r0,16v-57,-1,-105,-8,-104,-67r2,-43v2,-35,-23,-39,-53,-42r0,-26v29,-3,57,-7,53,-41v-6,-58,3,-108,60,-108v13,-1,27,-2,42,-2r0,15v-41,-2,-48,30,-45,74v3,46,-27,62,-64,69r0,13v37,8,67,22,64,69","w":180},"|":{"d":"85,75r-30,0r0,-343r30,0r0,343","w":139},"}":{"d":"114,-160v-2,35,24,38,54,41r0,26v-30,3,-58,7,-54,42v6,57,-2,107,-59,107v-13,1,-28,3,-43,3r0,-16v42,3,45,-28,45,-73v0,-45,27,-61,64,-69r0,-13v-49,-6,-70,-40,-64,-103v3,-31,-18,-38,-45,-40r0,-15v58,-1,106,8,104,67","w":180},"~":{"d":"173,-102v21,0,28,-17,36,-35r19,8v-13,26,-28,58,-65,59v-36,1,-50,-30,-82,-30v-22,0,-29,16,-37,35r-19,-8v12,-26,28,-58,65,-59v37,-1,49,30,83,30"}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Georgia is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * Manufacturer:
 * Carter & Cone
 * 
 * Designer:
 * Matthew Carter
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/
 */
Cufon.registerFont({"w":231,"face":{"font-family":"Georgia","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 4 5 2 5 4 5 9 3 3","ascent":"288","descent":"-72","x-height":"5","bbox":"-63 -272.094 392 78.3031","underline-thickness":"16.875","underline-position":"-23.7305","slope":"-13","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":86},"\u00a0":{"w":86},"!":{"d":"117,-238v-14,61,-32,93,-52,162r-14,0r21,-156v1,-22,43,-37,45,-6xm48,-44v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24","w":119},"\"":{"d":"118,-170v4,-46,-12,-113,38,-94v12,29,-21,60,-28,94r-10,0xm52,-170v4,-46,-12,-113,38,-94v12,29,-21,60,-28,94r-10,0","w":148},"#":{"d":"207,-131r-40,0r-17,44r46,0r-5,22r-49,0r-24,65r-20,0r25,-65r-39,0r-24,65r-20,0r25,-65r-38,0r5,-22r41,0r17,-44r-46,0r5,-22r49,0r24,-63r19,0r-24,63r38,0r24,-63r20,0r-24,63r37,0xm148,-131r-39,0r-17,45r39,0"},"$":{"d":"42,-74v29,-1,15,34,5,43v6,14,18,19,38,21r21,-91v-27,-12,-58,-21,-59,-57v-1,-42,47,-70,89,-70r8,-40r17,0r-10,40v29,3,54,17,57,43v3,25,-36,37,-40,11v11,-20,11,-41,-20,-41r-19,85v28,11,61,22,62,58v1,45,-45,75,-93,75r-11,50r-17,0r12,-49v-32,-1,-63,-19,-64,-48v0,-15,9,-30,24,-30xm133,-214v-52,-8,-75,63,-25,77r6,3xm101,-9v57,9,79,-77,20,-88","w":219},"%":{"d":"107,-255v31,-1,48,19,48,49v0,43,-31,81,-73,81v-30,0,-50,-19,-49,-49v2,-47,27,-79,74,-81xm84,-137v27,0,43,-40,43,-73v0,-17,-7,-34,-23,-34v-28,0,-43,40,-42,74v-1,17,6,33,22,33xm225,-125v30,-1,49,20,49,50v1,42,-32,80,-74,80v-30,0,-51,-19,-49,-49v3,-45,27,-80,74,-81xm203,-6v28,0,43,-41,42,-74v1,-17,-6,-33,-22,-33v-28,0,-42,39,-42,74v0,17,6,33,22,33xm295,-250r-257,250r-25,0r256,-250r26,0","w":294},"&":{"d":"201,-133v-2,-10,-15,-10,-27,-13r3,-12r94,0r-3,12v-60,3,-67,64,-102,92v12,23,31,42,66,42r-3,12r-68,0r-20,-32v-20,17,-41,37,-76,38v-34,1,-64,-22,-62,-56v3,-48,35,-67,76,-89v-34,-44,-12,-120,54,-116v26,2,48,14,47,41v-2,43,-28,52,-66,72r45,79v16,-21,36,-40,42,-70xm109,-152v27,-14,47,-27,48,-61v0,-17,-9,-28,-26,-28v-44,0,-44,60,-22,89xm84,-128v-43,12,-65,111,-1,111v21,0,38,-11,51,-24","w":255},"'":{"d":"49,-170v4,-45,-11,-113,38,-94v12,29,-21,60,-27,94r-11,0","w":77},"(":{"d":"95,58v-106,-13,-84,-190,-35,-258v28,-40,60,-64,100,-69r-3,14v-75,24,-105,118,-105,216v0,43,11,78,46,84","w":135},")":{"d":"49,-269v107,12,83,189,35,257v-28,40,-60,65,-100,70r3,-15v76,-23,105,-118,105,-216v0,-42,-11,-77,-46,-83","w":135},"*":{"d":"112,-196v25,1,58,-24,65,3v-6,26,-43,1,-65,3v11,18,30,26,37,47v0,6,-7,12,-13,12v-22,-8,-15,-32,-29,-56v-14,22,-6,48,-28,56v-6,0,-14,-5,-13,-12v5,-21,25,-28,36,-47v-23,-3,-59,23,-65,-3v7,-27,41,-1,65,-3v-10,-18,-31,-28,-36,-48v-1,-6,8,-12,13,-12v21,5,16,39,28,57v14,-20,7,-51,29,-57v5,0,14,6,13,12v-5,20,-23,26,-37,48","w":169},"+":{"d":"211,-87r-80,0r0,79r-22,0r0,-79r-79,0r0,-22r79,0r0,-80r22,0r0,80r80,0r0,22"},",":{"d":"48,-44v44,2,20,67,0,78v-12,12,-26,21,-40,28r-6,-12v22,-11,42,-26,50,-50v-17,2,-30,-5,-30,-20v0,-13,11,-25,26,-24","w":97},"-":{"d":"125,-109r-6,27r-105,0r6,-27r105,0","w":134},"\u00ad":{"d":"125,-109r-6,27r-105,0r6,-27r105,0","w":134},".":{"d":"46,-44v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24","w":97},"\/":{"d":"185,-268r-181,343r-24,0r181,-343r24,0","w":168},"0":{"d":"137,-194v45,-2,75,30,75,71v0,75,-46,126,-120,129v-44,2,-75,-29,-75,-71v0,-74,46,-126,120,-129xm95,-8v58,-2,76,-64,79,-122v1,-31,-13,-51,-40,-51v-57,0,-76,65,-79,123v-2,29,12,51,40,50","w":220},"1":{"d":"41,-172v30,2,55,-8,70,-22r15,0r-39,165v-1,17,23,15,36,17r-3,12r-118,0r3,-12v21,-2,44,-1,48,-21r29,-125r-44,0","w":154},"2":{"d":"36,-133v1,-71,153,-88,153,-6v0,82,-114,63,-157,108r140,0r-7,31r-165,0v11,-87,143,-52,152,-143v5,-43,-56,-47,-74,-22v3,25,0,47,-25,47v-11,0,-17,-6,-17,-15","w":201},"3":{"d":"37,-134v2,-65,150,-89,150,-11v0,43,-34,57,-66,71v28,4,54,16,52,48v-3,60,-48,88,-111,90v-33,1,-62,-16,-65,-43v-3,-27,39,-42,43,-14v1,11,-8,21,-11,29v43,36,107,-3,107,-65v0,-32,-30,-35,-65,-33r4,-20v48,6,73,-24,75,-66v2,-41,-53,-39,-70,-18v2,27,-3,48,-28,48v-12,0,-15,-6,-15,-16","w":198},"4":{"d":"194,-38r-6,22r-36,0r-19,80r-34,0r19,-80r-113,0r7,-29r156,-148r24,0r-35,155r37,0xm150,-154r-123,116r96,0","w":203},"5":{"d":"19,-6v29,0,16,32,9,43v43,41,112,-16,105,-74v4,-55,-76,-50,-95,-20r-11,-5r42,-127r127,0r-8,31r-111,0r-24,75v37,-28,122,-19,118,43v-5,63,-47,101,-111,104v-32,2,-63,-15,-65,-42v-1,-14,10,-28,24,-28","w":190},"6":{"d":"133,-160v35,-1,61,29,59,64v-3,61,-40,100,-101,102v-105,3,-74,-156,-23,-201v30,-27,72,-55,121,-61r0,17v-64,7,-103,52,-123,104v20,-15,38,-24,67,-25xm95,-7v35,-1,60,-44,60,-84v0,-57,-64,-60,-93,-27v-11,37,-15,113,33,111","w":203},"7":{"d":"172,-160v-60,2,-128,-13,-134,40r-12,0r16,-69r165,0r-2,12r-180,241r-23,0","w":178},"8":{"d":"51,-181v-5,-75,161,-112,161,-21v0,36,-28,58,-59,71v25,12,44,26,44,56v0,47,-54,81,-106,81v-41,0,-74,-20,-74,-58v0,-45,28,-61,68,-76v-19,-13,-32,-28,-34,-53xm142,-137v35,-12,59,-104,-1,-106v-41,-2,-75,51,-42,82v9,8,24,16,43,24xm98,-7v48,0,87,-58,47,-89v-13,-10,-30,-19,-48,-26v-50,11,-68,115,1,115","w":214},"9":{"d":"122,-194v73,-4,87,83,60,143v-28,62,-81,106,-159,116r0,-17v67,-10,103,-46,124,-101v-39,39,-131,28,-126,-40v4,-59,41,-98,101,-101xm59,-96v-4,53,64,58,92,26v12,-33,14,-113,-32,-111v-43,2,-57,43,-60,85","w":203},":":{"d":"83,-174v13,0,26,11,25,24v0,13,-12,24,-25,24v-13,0,-24,-12,-24,-24v-1,-13,11,-24,24,-24xm54,-44v13,0,25,12,25,24v0,13,-12,24,-25,24v-13,0,-24,-12,-24,-24v0,-12,11,-24,24,-24","w":138},";":{"d":"83,-174v13,0,26,11,25,24v0,13,-12,24,-25,24v-13,0,-24,-12,-24,-24v-1,-13,11,-24,24,-24xm57,-44v43,3,19,66,0,78v-12,12,-26,21,-41,28r-5,-12v21,-12,42,-25,49,-50v-17,2,-29,-5,-29,-20v0,-13,11,-25,26,-24","w":138},"\u037e":{"d":"83,-174v13,0,26,11,25,24v0,13,-12,24,-25,24v-13,0,-24,-12,-24,-24v-1,-13,11,-24,24,-24xm57,-44v43,3,19,66,0,78v-12,12,-26,21,-41,28r-5,-12v21,-12,42,-25,49,-50v-17,2,-29,-5,-29,-20v0,-13,11,-25,26,-24","w":138},"<":{"d":"201,-4r-163,-84r0,-20r163,-85r0,24r-135,71r135,70r0,24"},"=":{"d":"209,-120r-178,0r0,-22r178,0r0,22xm209,-55r-178,0r0,-22r178,0r0,22"},">":{"d":"202,-88r-163,84r0,-24r136,-70r-136,-71r0,-24r163,85r0,20"},"?":{"d":"111,-255v71,-5,84,85,39,122v-19,15,-40,25,-69,29r-9,38r-16,0r14,-67v43,-4,74,-22,74,-70v0,-36,-36,-48,-61,-32v2,25,-3,42,-26,42v-9,0,-14,-7,-15,-15v5,-31,33,-45,69,-47xm57,-44v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24","w":172},"@":{"d":"179,41v40,0,67,-10,89,-29r6,9v-23,20,-54,36,-96,34v-86,-3,-144,-51,-144,-139v0,-93,62,-157,159,-157v74,0,115,43,117,115v1,52,-32,102,-83,102v-21,0,-35,-12,-38,-29v-9,15,-21,27,-41,28v-29,0,-41,-19,-41,-48v0,-49,33,-90,82,-95v16,-2,24,11,28,22r8,-20r26,0v-12,39,-28,73,-37,114v0,11,6,17,17,17v41,-2,66,-46,64,-93v-2,-62,-38,-98,-104,-98v-80,0,-128,56,-128,139v0,78,37,128,116,128xm138,-70v-3,36,24,37,39,20v19,-21,25,-52,36,-80v-3,-16,-8,-27,-24,-28v-36,7,-47,47,-51,88","w":334},"A":{"d":"154,-101r-16,-98r-60,98r76,0xm38,-25v2,11,19,11,32,13r-2,12r-96,0r3,-12v24,-2,37,-13,48,-30r130,-211r14,0r37,227v5,8,14,15,28,14r-3,12r-102,0r3,-12v14,-2,33,0,35,-13r-9,-62r-87,0v-11,20,-25,40,-31,62","w":241},"B":{"d":"54,-249v66,6,171,-23,174,44v2,48,-40,58,-73,72v31,5,62,17,62,53v0,96,-123,79,-222,80r3,-12v19,0,36,-5,39,-21r42,-188v0,-14,-17,-15,-28,-17xm98,-139v55,4,88,-16,88,-65v0,-31,-30,-34,-65,-32xm107,-13v68,0,99,-114,19,-112r-31,1r-21,94v1,14,16,17,33,17","w":235},"C":{"d":"18,-94v-4,-114,106,-196,209,-143v5,-7,9,-15,24,-12r-19,89r-15,0v2,-47,-11,-84,-56,-81v-70,4,-102,69,-102,144v0,45,25,84,68,84v40,0,67,-28,83,-57r13,7v-26,43,-54,69,-112,69v-59,0,-92,-39,-93,-100"},"D":{"d":"54,-249v104,-3,216,-9,212,96v-3,96,-66,153,-162,153r-109,0r3,-12v18,1,34,-4,38,-20r43,-189v1,-14,-18,-14,-28,-17xm112,-14v77,0,111,-62,113,-139v2,-59,-40,-92,-104,-82r-46,202v1,17,16,19,37,19","w":269},"E":{"d":"78,-214v7,-19,-16,-23,-30,-24r3,-11r193,0r-14,60r-13,0v-1,-33,-16,-53,-56,-47r-40,0r-23,100v45,5,71,-10,78,-41r13,0r-22,97v-8,1,-17,2,-12,-10v4,-35,-27,-34,-60,-33v-6,32,-16,59,-20,93v2,18,13,13,37,16v65,7,75,-31,98,-59r12,0r-21,73r-208,0r3,-12v20,0,37,-4,41,-21","w":235},"F":{"d":"78,-214v7,-19,-16,-23,-30,-24r3,-11r196,0r-15,62r-13,0v-1,-33,-15,-49,-55,-49r-43,0r-23,101v45,4,73,-7,80,-41r14,0r-23,98v-16,4,-12,-8,-13,-22v-2,-27,-34,-21,-62,-22v-6,32,-16,60,-20,94v-1,15,19,14,31,16r-3,12r-108,0r3,-12v19,0,35,-3,39,-20","w":215},"G":{"d":"18,-95v0,-119,116,-194,219,-142v5,-7,9,-15,24,-12r-19,87r-14,0v-2,-46,-15,-82,-64,-79v-73,5,-99,70,-105,148v-5,68,63,107,114,69v6,-18,12,-36,14,-59v2,-18,-23,-15,-36,-18r2,-11r110,0r-3,11v-46,-1,-42,50,-51,85v-72,39,-191,27,-191,-79","w":261},"H":{"d":"233,-214v6,-18,-14,-23,-28,-24r3,-11r103,0r-2,11v-18,2,-34,5,-38,22r-43,188v1,12,15,16,28,16r-2,12r-104,0r3,-12v18,0,34,-4,38,-20r21,-90r-117,0v-6,32,-18,60,-21,94v-1,13,15,16,28,16r-3,12r-103,0r2,-12v18,-1,34,-3,38,-20r43,-188v1,-15,-17,-16,-29,-18r3,-11r104,0r-3,11v-18,2,-34,5,-38,22r-18,79r118,0","w":293},"I":{"d":"79,-214v6,-19,-17,-22,-32,-24r3,-11r112,0r-3,11v-19,3,-38,3,-42,22r-43,188v-1,15,21,13,33,16r-2,12r-113,0r3,-12v19,0,38,-4,42,-20","w":140},"J":{"d":"132,-214v6,-20,-18,-22,-33,-24r3,-11r111,0r-3,11v-18,1,-39,4,-40,22v-28,88,-13,217,-125,222v-31,1,-54,-16,-54,-46v-1,-21,13,-46,32,-44v41,5,3,52,-9,64v12,21,63,15,69,-8v26,-51,32,-125,49,-186","w":186},"K":{"d":"208,-230v-3,-6,-12,-7,-23,-8r2,-11r94,0v-1,21,-36,10,-47,26r-99,86r69,111v8,9,18,14,34,14r-3,12r-64,0v-19,-41,-42,-81,-67,-118r-10,0v-6,31,-16,57,-20,90v-2,14,18,13,28,16r-2,12r-104,0r3,-12v18,-1,33,-4,37,-20r43,-188v1,-15,-17,-14,-28,-18r3,-11r103,0r-2,11v-18,2,-36,4,-39,22r-20,89v43,-26,87,-62,112,-103","w":249},"L":{"d":"77,-46v-16,38,25,36,60,31v27,-3,25,-15,43,-32v14,-13,10,-29,33,-27r-22,74r-195,0r2,-12v19,0,35,-4,39,-21r42,-187v1,-14,-19,-15,-29,-18r3,-11r105,0r-2,11v-18,3,-36,5,-40,23","w":217},"M":{"d":"73,-199v8,-25,-9,-38,-30,-39r3,-11r84,0r27,187r107,-175v3,-6,5,-10,5,-12r84,0r-3,11v-18,2,-36,5,-39,22r-42,188v-1,13,16,15,29,16r-2,12r-110,0r3,-12v21,0,41,-5,44,-22r43,-186r-2,0r-136,216r-9,0r-31,-220r-2,0r-39,171v-8,29,10,39,33,41r-3,12r-100,0r2,-12v38,-1,46,-21,54,-57","w":333},"N":{"d":"239,-197v9,-32,-13,-38,-34,-41r3,-11r101,0r-3,11v-18,3,-38,6,-43,25v-19,66,-34,145,-52,215r-16,0r-102,-210r-37,170v-2,20,20,24,36,26r-3,12r-102,0r2,-12v37,-2,48,-21,55,-58r30,-139v0,-20,-20,-26,-37,-29r3,-11r72,0r95,195","w":276},"O":{"d":"163,-255v59,-3,100,42,97,102v-5,89,-56,154,-145,159v-58,3,-100,-42,-97,-101v4,-92,55,-156,145,-160xm118,-9v73,-5,98,-78,100,-155v1,-43,-18,-80,-59,-77v-70,5,-98,79,-100,154v-1,45,17,81,59,78","w":262},"P":{"d":"52,-249v71,4,179,-20,179,50v0,69,-61,93,-139,89r-19,83v-1,15,18,14,32,15r-2,12r-107,0r2,-12v19,0,35,-4,39,-21r42,-189v1,-15,-18,-13,-30,-16xm95,-124v58,5,93,-21,93,-71v0,-35,-28,-45,-67,-41","w":219},"Q":{"d":"163,-255v59,-3,99,42,97,102v-3,79,-46,132,-109,153v-10,42,29,60,69,46r-3,13v-46,17,-120,12,-106,-53v-56,-1,-95,-43,-93,-101v4,-92,55,-156,145,-160xm118,-9v73,-5,98,-78,100,-155v1,-43,-18,-80,-59,-77v-70,5,-98,79,-100,154v-1,45,17,81,59,78","w":262},"R":{"d":"234,-202v0,51,-37,70,-79,81v28,37,29,102,86,109r-3,12r-63,0v-18,-46,-35,-75,-56,-114r-26,0r-20,87v-1,15,17,14,31,15r-3,12r-106,0r3,-12v19,0,35,-4,39,-21r42,-189v2,-15,-18,-14,-29,-16r3,-11v70,5,181,-23,181,47xm96,-128v55,7,94,-22,95,-70v1,-35,-32,-41,-70,-38","w":252},"S":{"d":"144,-136v85,37,27,141,-57,141v-27,0,-50,-8,-65,-18v-5,7,-9,16,-24,13r18,-85r14,0v3,43,17,76,63,76v33,0,59,-21,58,-54v-4,-69,-111,-38,-111,-114v0,-71,95,-98,147,-60v5,-7,9,-15,24,-12r-18,82r-14,0v-1,-40,-11,-74,-54,-74v-43,0,-70,67,-28,85","w":201},"T":{"d":"126,-237v-53,-6,-74,25,-91,55r-12,0r15,-67r218,0r-16,67r-12,0v-1,-38,-17,-62,-65,-55r-47,208v-2,17,22,14,35,17r-3,12r-117,0r2,-12v21,0,42,-4,46,-22","w":222},"U":{"d":"235,-200v8,-29,-13,-36,-34,-38r2,-11r102,0r-2,11v-22,2,-38,6,-45,27v-29,89,-18,219,-142,217v-49,0,-87,-24,-77,-72r35,-154v-1,-13,-16,-17,-28,-18r3,-11r104,0r-3,11v-18,2,-36,5,-39,22v-10,54,-29,104,-34,160v-5,56,84,51,108,21v33,-41,35,-106,50,-165","w":272},"V":{"d":"217,-215v11,-19,-15,-21,-31,-23r3,-11r95,0v-6,21,-41,15,-48,41r-133,211r-15,0r-34,-227v-5,-8,-16,-13,-27,-14r2,-11r101,0r-2,11v-19,3,-37,-1,-34,18r24,169r86,-139v7,-12,11,-20,13,-25","w":239},"W":{"d":"326,-213v10,-21,-8,-23,-28,-25r2,-11r92,0r-2,11v-22,3,-37,14,-45,31r-113,210r-15,0r-21,-192r-109,192r-15,0r-11,-217v0,-17,-14,-22,-29,-24r3,-11r100,0r-3,11v-52,-1,-35,33,-32,86r5,93r105,-187r16,0r21,191","w":351},"X":{"d":"215,-228v-1,-7,-18,-10,-27,-10r3,-11r93,0r-3,11v-48,3,-64,41,-92,66v-23,20,-21,23,-36,38v20,40,32,87,59,119v4,4,15,3,23,3r-3,12r-112,0r3,-12v18,0,41,0,32,-24r-29,-73v-23,25,-58,55,-76,88v0,9,17,8,27,9r-2,12r-94,0r2,-12v51,-3,67,-41,94,-68r42,-43r-47,-102v-3,-9,-20,-12,-32,-13r3,-11r111,0r-3,11v-19,0,-44,3,-32,23v10,29,15,40,28,68v27,-31,49,-48,68,-81","w":255},"Y":{"d":"198,-213v17,-17,-2,-26,-23,-25r3,-11r89,0v-6,22,-35,15,-47,36v-29,32,-61,73,-87,109v-8,20,-16,49,-19,74v-2,17,21,16,35,18r-3,12r-116,0r2,-12v21,-1,43,-2,45,-22v4,-29,22,-59,9,-88v-18,-40,-12,-106,-61,-116r3,-11r102,0v3,24,-46,-2,-35,32r30,96","w":221},"Z":{"d":"137,-236v-49,-6,-70,32,-91,57r-13,0r24,-70r187,0r-2,6r-206,230v39,0,86,3,113,-10v16,-13,38,-38,49,-55r13,0r-27,78r-200,0r2,-6r206,-230r-55,0","w":216},"[":{"d":"163,-267r-3,15r-63,0r-67,291r62,0r-3,15r-94,0r74,-321r94,0","w":135},"\\":{"d":"123,75r-23,0r-42,-343r23,0","w":168},"]":{"d":"145,-267r-74,321r-93,0r3,-15r62,0r68,-291r-63,0r4,-15r93,0","w":135},"^":{"d":"207,-140r-26,0r-56,-92r-57,92r-26,0r73,-116r19,0"},"_":{"d":"205,32r-4,17r-233,0r4,-17r233,0"},"`":{"d":"104,-237v-15,-7,-13,-34,5,-33v22,1,25,24,34,38r19,31r-7,6","w":180},"a":{"d":"193,-9v-28,15,-67,19,-72,-14v-14,12,-29,27,-54,28v-36,0,-56,-29,-55,-68v0,-76,70,-138,143,-103v11,-1,26,-12,34,-6r-31,138v-3,22,22,17,37,14xm49,-63v-6,56,52,60,76,23r22,-94v1,-21,-11,-31,-31,-31v-46,0,-62,51,-67,102","w":206},"b":{"d":"78,-153v36,-42,112,-25,109,43v-4,80,-68,138,-147,106v-11,-5,-17,-13,-24,-23r48,-212v1,-17,-14,-17,-29,-18r2,-11r66,-4v-3,39,-18,80,-25,119xm85,-7v48,-4,61,-52,66,-102v5,-53,-53,-61,-78,-26r-23,104v3,15,16,25,35,24","w":199},"c":{"d":"155,-42v-14,23,-44,46,-77,47v-42,0,-67,-27,-66,-69v2,-64,34,-109,97,-113v30,-1,49,12,52,37v3,28,-38,43,-42,15v0,-8,9,-25,10,-31v-45,-33,-84,36,-81,87v2,30,12,54,41,54v27,-1,42,-17,56,-35","w":163},"d":{"d":"194,-9v-27,14,-68,21,-71,-15v-14,12,-30,28,-56,29v-36,0,-56,-29,-55,-68v-1,-78,69,-138,144,-103v5,-25,12,-47,15,-73v2,-19,-18,-16,-34,-18r2,-11r71,-4r2,3r-53,235v-3,23,23,17,38,14xm49,-63v-5,58,53,58,78,22r22,-95v-3,-17,-14,-29,-34,-29v-46,0,-61,51,-66,102","w":207},"e":{"d":"113,-177v30,-1,50,11,50,36v0,54,-64,60,-116,69v-1,34,11,57,41,57v30,0,42,-15,57,-35r10,8v-15,24,-44,47,-79,47v-42,1,-64,-26,-64,-67v0,-65,37,-112,101,-115xm48,-84v40,-6,84,-15,82,-61v-2,-35,-44,-19,-59,3v-11,16,-20,35,-23,58","w":169},"f":{"d":"178,-252v-7,37,-39,14,-45,-6v-31,6,-33,50,-43,86r44,0r-3,16r-44,0v-25,90,-19,222,-120,234v-17,2,-30,-6,-30,-21v7,-36,39,-12,45,7v26,-7,33,-36,40,-68r32,-152r-34,0r4,-16r33,0v11,-52,35,-96,91,-100v17,-1,30,6,30,20","w":118},"g":{"d":"12,-64v-1,-77,70,-137,143,-102v11,-1,26,-12,34,-6v-31,99,-12,248,-140,250v-26,0,-47,-4,-47,-25v0,-10,6,-20,18,-19v17,1,22,20,28,32v53,-1,66,-42,77,-90v-18,9,-31,29,-60,28v-36,-1,-53,-30,-53,-68xm49,-64v-6,58,55,57,79,23r20,-95v0,-20,-13,-29,-32,-29v-47,0,-62,51,-67,101","w":206},"h":{"d":"159,-58v-9,26,-1,52,33,38r-2,11v-32,19,-80,17,-68,-33r22,-89v-2,-44,-59,-19,-72,2r-30,129r-32,0r54,-239v1,-17,-14,-17,-29,-18r3,-11r65,-4r2,3r-28,121v25,-32,109,-48,100,17v-4,26,-10,49,-18,73","w":202},"i":{"d":"63,-58v-7,22,-7,50,24,41v4,-1,8,-1,10,-2r-3,11v-31,20,-81,15,-67,-33v10,-33,18,-64,22,-100v4,-23,-21,-16,-36,-13r2,-11v30,-19,80,-19,67,32xm87,-266v13,-2,22,11,22,22v1,13,-9,25,-22,25v-12,0,-22,-11,-22,-23v0,-12,9,-25,22,-24","w":107},"j":{"d":"17,-165v30,-19,82,-19,68,32v-24,84,-22,201,-116,211v-31,3,-41,-40,-12,-40v16,0,22,15,28,26v52,-32,51,-133,67,-205v5,-23,-24,-16,-38,-12xm88,-266v14,0,23,10,23,22v0,13,-10,25,-23,25v-12,0,-22,-12,-22,-23v0,-11,10,-24,22,-24","w":104},"k":{"d":"153,-172v13,-9,36,-4,35,15v-1,22,-30,25,-45,14v-15,11,-28,18,-42,33v21,35,21,110,83,90r-3,12v-18,6,-25,12,-44,11v-42,-3,-42,-59,-59,-88r-21,17r-15,68r-32,0r54,-239v1,-17,-14,-17,-29,-18r3,-11r65,-4r2,3r-43,183v30,-28,58,-63,91,-86","w":190},"l":{"d":"63,-226v7,-23,-5,-32,-27,-31r2,-11r66,-4v-11,79,-41,156,-52,238v-3,22,24,19,40,15r-3,11v-31,20,-81,17,-69,-33","w":102},"m":{"d":"273,-58v-8,26,-1,53,33,38r-2,11v-32,19,-83,17,-68,-33v9,-29,18,-57,22,-89v3,-26,-25,-30,-45,-20v-8,4,-16,11,-25,21r-31,130r-33,0r31,-132v-5,-41,-57,-21,-73,3r-30,129r-33,0r31,-139v2,-22,-22,-17,-36,-13r3,-11v24,-14,68,-21,69,16v24,-17,33,-29,66,-30v20,-1,33,15,37,31v23,-17,35,-31,68,-31v59,0,28,82,16,119","w":316},"n":{"d":"169,-58v-9,19,-9,51,23,40v4,-1,8,-1,10,-2r-3,11v-31,20,-82,16,-67,-33v9,-29,16,-57,21,-89v-3,-45,-56,-19,-71,2r-30,129r-33,0r31,-139v2,-22,-22,-17,-36,-13r3,-11v24,-14,68,-21,69,16v23,-16,33,-30,66,-30v59,0,25,80,17,119","w":212},"o":{"d":"115,-177v41,-2,69,28,67,69v-3,65,-37,112,-105,113v-39,1,-66,-29,-65,-69v3,-66,37,-110,103,-113xm83,-7v48,0,61,-56,63,-108v0,-30,-10,-50,-35,-50v-48,0,-62,55,-63,107v-1,30,8,51,35,51","w":193},"p":{"d":"139,-177v37,1,57,28,57,67v0,78,-73,140,-142,102v-4,29,-32,78,18,75r-2,11r-97,0r2,-11v18,0,31,-4,34,-19r40,-187v3,-23,-21,-17,-35,-13r2,-11v22,-12,65,-22,69,11v17,-9,30,-25,54,-25xm94,-8v47,-6,62,-50,66,-101v4,-52,-50,-63,-77,-26r-23,100v2,14,16,28,34,27","w":208},"q":{"d":"142,38v-8,20,7,30,27,29r-3,11r-96,0r2,-11v18,0,32,-3,35,-19v4,-23,14,-50,16,-72v-15,10,-30,29,-56,29v-36,0,-56,-29,-55,-68v0,-77,71,-138,144,-103v11,-1,26,-12,34,-6xm49,-63v0,26,4,49,31,48v21,-1,34,-14,47,-26r22,-93v-1,-19,-11,-31,-32,-31v-46,0,-68,50,-68,102","w":199},"r":{"d":"85,-145v27,-18,41,-43,75,-26v15,13,8,53,-16,53v-24,0,-19,-29,-10,-41v-24,3,-39,17,-53,33r-28,126r-33,0r30,-139v2,-22,-22,-17,-36,-13r3,-11v24,-13,71,-24,68,18","w":166},"s":{"d":"136,-55v0,37,-34,60,-72,60v-28,0,-61,-9,-61,-33v0,-10,8,-20,18,-20v29,1,14,43,47,41v24,-1,38,-13,38,-36v0,-44,-83,-25,-80,-79v2,-37,39,-60,85,-55v17,2,37,9,37,27v0,30,-38,19,-40,-2v-11,-27,-55,-8,-52,18v5,44,80,27,80,79","w":155},"t":{"d":"61,-59v-15,32,9,53,44,38r-3,13v-28,16,-91,23,-79,-30r27,-118r-31,0r4,-16r32,0r12,-51r32,0r-12,51r49,0r-4,16r-49,0","w":124},"u":{"d":"195,-9v-28,16,-70,18,-72,-16v-19,15,-31,31,-63,29v-68,-5,-18,-94,-14,-143v2,-22,-21,-16,-35,-13r2,-11v28,-18,78,-20,66,32r-20,89v-1,42,54,23,68,2r31,-133v11,1,27,-5,33,1r-31,138v-3,22,22,17,37,14","w":207},"v":{"d":"160,-177v16,0,23,14,23,32v-5,76,-35,144,-108,150v-36,3,-57,-26,-48,-63r20,-81v3,-22,-24,-16,-37,-12r3,-12v29,-19,78,-19,66,32r-20,87v0,19,10,29,29,29v54,0,89,-81,55,-128v-9,-13,0,-34,17,-34","w":193},"w":{"d":"263,-177v16,0,22,14,22,32v-5,76,-33,150,-106,150v-24,0,-44,-14,-49,-34v-17,15,-30,34,-60,34v-76,0,-31,-92,-24,-144v4,-22,-21,-16,-35,-13r2,-11v28,-18,81,-19,66,32v-8,29,-18,55,-20,89v-3,44,55,24,68,3r31,-134v10,1,27,-6,33,1r-29,129v-1,20,11,30,30,28v47,-5,76,-55,66,-109v-14,-12,-26,-52,5,-53","w":296},"x":{"d":"152,-171v14,-9,37,-6,36,13v0,22,-29,22,-46,15v-12,13,-28,33,-38,51v10,38,14,90,67,72r-3,12v-29,15,-68,18,-77,-18r-10,-39v-21,25,-31,63,-69,68v-12,1,-19,-6,-19,-18v0,-22,31,-23,46,-14v11,-12,28,-33,38,-50v-10,-32,-10,-93,-62,-72r3,-12v13,-6,26,-12,39,-12v37,-1,34,41,43,69v14,-21,30,-52,52,-65","w":180},"y":{"d":"21,34v18,1,23,22,28,32v51,-1,69,-48,76,-91v-24,32,-109,47,-100,-17v4,-33,17,-63,21,-97v3,-22,-21,-16,-35,-13r2,-11v29,-19,78,-19,66,32r-20,88v0,44,56,22,70,2r29,-132v10,1,27,-6,33,1v-30,100,-17,250,-142,250v-25,0,-46,-3,-46,-25v0,-10,7,-19,18,-19","w":201},"z":{"d":"122,-158v-49,-4,-80,2,-88,39r-10,0r10,-53r130,0r-2,10r-126,148r64,-1v21,-4,24,-30,34,-46r11,0r-12,61r-138,0r3,-12","w":159},"{":{"d":"59,-65v0,-24,-18,-29,-46,-32r5,-21v53,-1,67,-38,72,-89v5,-47,39,-63,94,-63r-4,13v-86,-3,-36,123,-114,141v-8,5,-25,1,-27,12v26,5,48,14,48,45v0,28,-14,52,-14,79v0,21,18,24,38,25r-3,14v-41,-1,-65,-8,-66,-43v-1,-29,17,-53,17,-81","w":154},"|":{"d":"83,75r-22,0r0,-343r22,0r0,343","w":135},"}":{"d":"101,-146v0,24,18,29,46,31r-5,22v-112,-6,-21,163,-166,152r4,-14v86,3,36,-122,114,-140v9,-5,24,-2,27,-12v-64,-1,-47,-75,-34,-124v1,-22,-19,-24,-38,-26r3,-13v42,0,66,7,66,43v0,28,-17,54,-17,81","w":154},"~":{"d":"165,-100v19,1,27,-17,34,-31r14,5v-10,24,-27,52,-60,52v-32,0,-48,-24,-78,-24v-19,0,-26,16,-34,31r-14,-5v10,-24,28,-51,60,-52v34,-1,47,22,78,24"}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Georgia is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * Manufacturer:
 * Carter & Cone
 * 
 * Designer:
 * Matthew Carter
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/
 */
Cufon.registerFont({"w":253,"face":{"font-family":"Georgia","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 4 8 2 5 4 5 9 2 3","ascent":"288","descent":"-72","x-height":"6","bbox":"-76 -273 448 78.0051","underline-thickness":"21.0938","underline-position":"-21.2695","slope":"-13","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":91},"\u00a0":{"w":91},"!":{"d":"133,-229v-11,53,-41,92,-59,148r-14,0r3,-129v-7,-43,65,-62,70,-19xm56,-60v18,0,33,16,33,33v0,18,-16,32,-33,32v-17,1,-34,-14,-34,-32v0,-17,16,-33,34,-33","w":135},"\"":{"d":"90,-269v51,0,7,65,-3,86v-6,12,-12,24,-18,38r-12,0v2,-49,-18,-124,33,-124xm199,-247v-7,39,-33,65,-47,102r-12,0v3,-49,-17,-123,33,-124v15,-1,28,9,26,22","w":183},"#":{"d":"235,-131r-48,0r-17,45r48,0r0,28r-59,0r-23,58r-26,0r23,-58r-41,0r-23,58r-26,0r23,-58r-36,0r0,-28r47,0r18,-45r-48,0r0,-29r59,0r23,-60r26,0r-23,60r40,0r24,-60r26,0r-24,60r37,0r0,29xm162,-132r-41,0r-18,46r41,0"},"$":{"d":"135,-215v-52,-6,-74,66,-16,72xm107,-11v58,6,83,-73,18,-79xm37,-81v33,0,34,38,22,59v10,6,18,10,31,11r18,-81v-61,1,-94,-68,-46,-109v18,-15,44,-27,76,-29r9,-38r17,0r-9,38v38,2,68,15,70,49v1,16,-12,29,-27,29v-32,0,-32,-37,-21,-57v-7,-4,-15,-6,-25,-6r-16,73v53,4,93,46,65,96v-17,30,-52,46,-97,49r-11,50r-17,0r11,-50v-41,0,-76,-20,-78,-55v0,-16,10,-29,28,-29","w":230},"%":{"d":"33,-181v-9,-77,137,-112,140,-20v10,78,-137,111,-140,20xm95,-138v24,0,34,-43,33,-76v0,-17,-3,-30,-17,-30v-26,0,-33,45,-33,78v0,15,3,28,17,28xm238,-125v34,0,59,21,59,55v0,42,-38,76,-80,76v-34,0,-60,-21,-60,-55v0,-41,39,-76,81,-76xm220,-6v24,0,33,-45,33,-77v0,-17,-3,-30,-17,-30v-26,0,-35,44,-34,78v0,16,4,29,18,29xm307,-251r-256,251r-27,0r255,-251r28,0","w":316},"&":{"d":"195,-63v19,31,33,48,77,50r-3,13r-103,0r-17,-26v-37,42,-147,49,-147,-22v0,-52,43,-70,82,-87v-41,-51,0,-125,67,-121v30,2,56,13,56,40v0,39,-29,53,-62,71r43,70v14,-14,33,-40,36,-58v-2,-9,-16,-9,-27,-13r3,-12r98,0r-3,12v-58,3,-65,55,-100,83xm139,-157v20,-13,37,-30,39,-57v0,-15,-9,-25,-23,-25v-42,1,-37,54,-16,82xm90,-124v-44,24,-35,118,33,97v5,-2,12,-5,19,-10","w":287},"'":{"d":"114,-247v-8,39,-33,65,-47,102r-12,0v3,-50,-17,-123,34,-124v14,-1,25,9,25,22","w":96},"(":{"d":"104,-180v-29,55,-61,200,17,222r-4,16v-91,-6,-122,-113,-86,-201v26,-64,82,-114,157,-126r-4,16v-36,8,-63,39,-80,73","w":160},")":{"d":"61,-32v28,-55,62,-200,-16,-222r3,-15v61,10,101,46,101,118v0,117,-70,189,-171,209r4,-16v37,-8,62,-40,79,-74","w":160},"*":{"d":"166,-205v10,-1,17,5,16,15v-4,30,-42,4,-63,5v12,16,57,48,19,60v-22,-5,-18,-35,-28,-54v-11,16,-7,51,-29,54v-37,-14,8,-42,19,-60v0,0,-58,25,-63,-5v4,-29,40,-6,63,-6v-12,-18,-55,-46,-19,-60v23,3,17,37,29,54v11,-19,6,-50,28,-54v38,13,-9,45,-19,60","w":173},"+":{"d":"224,-87r-83,0r0,83r-29,0r0,-83r-83,0r0,-28r83,0r0,-83r29,0r0,83r83,0r0,28"},",":{"d":"56,-60v47,1,39,62,12,89v-16,16,-34,30,-55,39r-5,-12v25,-13,46,-26,54,-56v-23,1,-41,-3,-42,-24v0,-18,17,-37,36,-36","w":118},"-":{"d":"118,-76r-107,0r9,-39r107,0","w":136},"\u00ad":{"d":"118,-76r-107,0r9,-39r107,0","w":136},".":{"d":"54,-64v17,0,35,18,35,35v0,17,-17,34,-35,34v-18,0,-35,-16,-35,-34v0,-18,17,-35,35,-35","w":118},"\/":{"d":"188,-268r-182,343r-32,0r181,-343r33,0","w":169},"0":{"d":"151,-195v55,0,92,25,92,78v0,77,-55,123,-134,123v-54,0,-91,-25,-91,-77v0,-78,55,-124,133,-124xm112,-8v52,-9,67,-70,67,-129v0,-24,-6,-43,-31,-43v-51,0,-67,71,-67,127v0,25,7,43,31,45","w":252},"1":{"d":"112,-40v-8,25,18,25,35,27r-3,13r-145,0r3,-13v21,-1,44,-2,49,-22r26,-113r-44,0v3,-5,0,-16,8,-16v35,0,61,-13,77,-31r31,0","w":176},"2":{"d":"37,-141v5,-72,178,-76,178,1v0,77,-112,58,-165,90r0,3r149,0r-11,47r-191,0v5,-18,5,-39,22,-45v42,-35,122,-33,130,-101v3,-32,-36,-38,-60,-26v13,22,9,61,-24,61v-17,0,-29,-14,-28,-30","w":225},"3":{"d":"37,-141v0,-62,179,-82,179,-2v0,45,-41,57,-78,70v34,3,61,15,61,51v0,62,-60,85,-127,87v-41,1,-78,-18,-79,-53v0,-16,11,-29,29,-29v33,0,36,38,23,60v47,19,86,-18,86,-72v0,-30,-25,-34,-57,-32r5,-21v48,5,72,-21,72,-66v0,-32,-38,-36,-62,-23v13,24,10,60,-23,60v-17,0,-29,-14,-29,-30","w":224},"4":{"d":"210,-2r-39,0r-15,67r-58,0r16,-67r-118,0r8,-34r161,-158r51,0r-36,156r39,0xm122,-38r26,-113r-115,113r89,0","w":233},"5":{"d":"194,-36v0,59,-57,101,-118,101v-39,0,-82,-19,-83,-52v0,-16,12,-30,30,-30v34,0,35,40,23,63v52,12,80,-30,83,-81v3,-55,-70,-50,-89,-18r-13,-5r45,-131r148,0r-11,48r-134,0r-19,59v45,-32,138,-23,138,46","w":215},"6":{"d":"222,-97v0,56,-57,103,-117,103v-50,0,-88,-31,-87,-81v1,-103,89,-172,192,-181r1,17v-66,8,-99,48,-118,102v16,-14,37,-24,67,-24v35,0,62,28,62,64xm108,-8v31,0,49,-50,49,-89v0,-21,-11,-39,-30,-40v-40,0,-47,35,-47,79v0,25,7,50,28,50","w":233},"7":{"d":"178,-142v-61,3,-137,-17,-144,39r-13,0r20,-86r186,0r-6,22r-179,232r-30,0","w":203},"8":{"d":"159,-257v42,-1,81,19,81,54v0,36,-31,54,-65,64v29,12,53,27,53,60v0,54,-61,86,-123,86v-46,0,-90,-20,-90,-59v0,-41,32,-60,72,-69v-24,-12,-40,-30,-40,-58v0,-55,54,-76,112,-78xm163,-145v16,-23,35,-94,-10,-97v-36,-3,-64,55,-29,75xm113,-8v44,0,75,-61,34,-82r-48,-25v-26,20,-41,107,14,107","w":243},"9":{"d":"137,-195v50,0,88,32,87,82v-1,106,-90,167,-193,179r-1,-17v65,-8,101,-46,120,-100v-41,40,-130,26,-130,-43v0,-57,57,-101,117,-101xm86,-94v0,46,47,54,69,23v6,-28,19,-109,-20,-109v-31,0,-49,47,-49,86","w":233},":":{"d":"84,-175v18,0,34,17,34,35v0,17,-17,34,-34,34v-18,0,-35,-16,-35,-34v0,-18,17,-35,35,-35xm59,-64v17,0,35,17,35,35v0,18,-17,34,-35,34v-18,0,-35,-17,-35,-34v0,-17,17,-35,35,-35","w":132},";":{"d":"62,-60v47,2,37,63,11,89v-16,16,-34,30,-55,39r-5,-12v25,-13,46,-27,55,-56v-24,1,-42,-3,-43,-24v0,-18,18,-37,37,-36xm84,-175v18,0,34,17,34,35v0,17,-17,34,-34,34v-18,0,-35,-16,-35,-34v0,-18,17,-35,35,-35","w":132},"\u037e":{"d":"62,-60v47,2,37,63,11,89v-16,16,-34,30,-55,39r-5,-12v25,-13,46,-27,55,-56v-24,1,-42,-3,-43,-24v0,-18,18,-37,37,-36xm84,-175v18,0,34,17,34,35v0,17,-17,34,-34,34v-18,0,-35,-16,-35,-34v0,-18,17,-35,35,-35","w":132},"<":{"d":"216,-1r-175,-88r0,-24r175,-88r0,33r-138,67r138,67r0,33"},"=":{"d":"224,-123r-188,0r0,-29r188,0r0,29xm224,-50r-188,0r0,-29r188,0r0,29"},">":{"d":"220,-89r-176,88r0,-33r139,-67r-139,-67r0,-33r176,88r0,24"},"?":{"d":"71,-60v18,0,34,16,34,33v0,18,-17,32,-34,32v-17,0,-34,-14,-34,-32v0,-17,16,-33,34,-33xm42,-205v1,-32,48,-50,85,-50v41,0,75,23,75,63v0,57,-51,90,-110,92r-5,24r-15,0r13,-68v38,-4,69,-21,69,-61v0,-33,-34,-43,-59,-28v8,25,7,55,-25,55v-17,0,-29,-10,-28,-27","w":197},"@":{"d":"200,-242v77,0,122,41,125,116v2,54,-36,107,-87,106v-24,0,-41,-10,-49,-24v-20,37,-92,26,-87,-27v5,-54,37,-100,90,-100v16,0,23,7,28,18r6,-16r45,0v-12,40,-30,74,-39,117v0,9,3,16,13,16v42,0,62,-46,61,-92v-2,-63,-42,-96,-108,-96v-81,0,-133,56,-133,138v0,80,42,126,120,126v42,0,71,-12,95,-30r7,11v-25,20,-58,37,-103,36v-89,-3,-153,-50,-153,-141v0,-98,69,-158,169,-158xm148,-66v-3,30,31,32,38,10r27,-78v0,-12,-7,-22,-19,-22v-34,8,-43,51,-46,90","w":348},"A":{"d":"157,-100r-15,-91r-57,91r72,0xm44,-27v2,12,18,12,33,14r-3,13r-105,0r3,-13v25,-2,41,-13,52,-31r135,-209r35,0r41,226v5,8,18,13,30,14r-3,13r-133,0r3,-13v20,-3,41,0,37,-22r-9,-49r-86,0v-9,15,-26,38,-30,57","w":272},"B":{"d":"121,-140v46,4,78,-20,78,-61v0,-30,-25,-34,-56,-33xm127,-15v33,0,58,-31,58,-67v0,-34,-28,-45,-67,-42r-22,93v1,10,18,16,31,16xm75,-209v7,-20,-10,-25,-30,-28r3,-12r132,0v61,-4,107,22,81,72v-12,24,-41,35,-73,41r-1,4v34,5,67,15,67,54v0,103,-158,73,-264,78r3,-13v19,-1,38,-5,42,-21","w":273},"C":{"d":"15,-97v-2,-119,120,-190,233,-143v7,-5,14,-11,28,-9r-19,91r-16,0v-3,-46,-23,-82,-66,-82v-69,0,-88,78,-91,149v-2,43,23,74,63,74v43,0,65,-26,88,-55r13,9v-25,38,-60,70,-121,70v-68,0,-111,-38,-112,-104","w":257},"D":{"d":"48,-249v115,0,248,-17,248,98v0,101,-74,151,-176,151r-130,0r3,-13v19,-2,38,-3,42,-21r42,-184v-2,-14,-15,-16,-32,-19xm129,-15v71,-5,98,-70,98,-145v0,-52,-26,-80,-84,-74r-45,199v1,16,12,21,31,20","w":300},"E":{"d":"75,-209v7,-20,-10,-25,-30,-28r3,-12r219,0r-14,63r-14,0v-7,-29,-19,-55,-61,-48r-35,0r-22,97v46,6,68,-13,79,-43r14,0r-24,104v-7,0,-15,3,-14,-7v5,-37,-22,-42,-59,-39r-19,90v1,19,13,14,35,17v63,7,75,-35,99,-63r13,0r-22,78r-233,0r3,-13v19,-2,38,-3,42,-21","w":259},"F":{"d":"75,-209v7,-20,-10,-25,-30,-28r3,-12r224,0r-15,66r-14,0v-5,-29,-18,-59,-61,-51r-39,0r-23,99v45,5,71,-13,81,-44r13,0r-24,105v-5,-1,-14,3,-13,-5v4,-36,-22,-45,-60,-41r-20,90v1,16,12,14,31,17r-3,13r-135,0r3,-13v19,-1,38,-5,42,-21","w":241},"G":{"d":"15,-95v-3,-124,123,-192,239,-145v7,-5,14,-11,28,-9r-19,91r-16,0v-5,-46,-24,-82,-68,-82v-72,0,-88,80,-95,154v-6,63,52,98,98,60v4,-20,10,-37,12,-58v-2,-14,-18,-15,-35,-18r3,-13r135,0r-3,13v-19,1,-35,5,-39,22r-13,58v-24,14,-77,29,-115,29v-67,-2,-110,-36,-112,-102","w":290},"H":{"d":"242,-209v7,-20,-9,-25,-29,-28r3,-12r135,0r-3,12v-18,3,-38,4,-42,23r-42,184v1,14,14,16,32,17r-3,13r-135,0r3,-13v19,-1,37,-4,41,-21r20,-87r-105,0r-20,91v1,16,12,14,31,17r-3,13r-135,0r3,-13v19,-2,38,-3,42,-21r42,-184v-2,-14,-15,-16,-32,-19r3,-12r135,0r-3,12v-18,2,-37,5,-41,23r-18,75r105,0","w":328},"I":{"d":"99,-40v-7,22,10,25,32,27r-3,13r-139,0r3,-13v19,-1,39,-3,43,-21r42,-184v-2,-14,-16,-16,-33,-19r3,-12r138,0r-3,12v-18,4,-39,4,-43,23","w":162},"J":{"d":"134,-209v8,-19,-11,-25,-30,-28r3,-12r135,0r-3,12v-17,4,-39,3,-41,23v-27,91,-18,221,-134,221v-41,0,-72,-20,-72,-59v0,-22,13,-38,35,-38v34,0,44,42,18,59v-3,5,-10,6,-11,13v33,25,61,-17,69,-53","w":214},"K":{"d":"203,-191v17,-16,57,-44,10,-46r3,-12r109,0r-3,12v-68,10,-99,58,-144,90r75,120v7,7,19,14,33,14r-3,13r-93,0v-19,-45,-40,-77,-63,-115r-11,0r-19,85v1,16,12,14,31,17r-3,13r-135,0r3,-13v19,-2,38,-3,42,-21r42,-184v-2,-14,-15,-16,-32,-19r3,-12r135,0r-3,12v-18,2,-37,5,-41,23r-20,85r8,0","w":294},"L":{"d":"136,-15v55,5,73,-36,95,-65r12,0r-23,80r-230,0r3,-13v19,-1,38,-5,42,-21r42,-184v-2,-14,-15,-16,-32,-19r3,-12r137,0r-3,12v-18,4,-39,3,-43,23r-41,183v1,19,14,14,38,16","w":246},"M":{"d":"72,-195v9,-27,-9,-42,-31,-42r3,-12r114,0r24,164r92,-152v3,-6,5,-10,5,-12r116,0r-3,12v-18,2,-37,5,-41,23r-41,184v2,16,12,14,32,17r-3,13r-135,0r3,-13v19,-3,38,-3,42,-23r41,-187r-136,219r-22,0r-30,-222r-2,0r-39,170v-8,30,13,40,34,43r-3,13r-108,0r3,-13v37,-1,47,-23,56,-59","w":371},"N":{"d":"251,-176v11,-35,1,-61,-30,-61r3,-12r107,0r-3,12v-37,1,-48,23,-56,59r-42,179r-29,0r-108,-199r-33,157v-4,23,21,23,35,28r-3,13r-108,0r3,-13v37,-2,48,-22,56,-59r30,-131v-1,-21,-15,-31,-35,-34r3,-12r92,0r94,175","w":298},"O":{"d":"178,-256v64,-3,117,40,114,102v-4,97,-64,159,-164,161v-63,2,-115,-41,-113,-103v4,-96,66,-155,163,-160xm133,-9v68,-7,91,-86,91,-162v0,-38,-14,-69,-49,-69v-71,0,-88,86,-91,162v-1,38,14,73,49,69","w":295},"P":{"d":"48,-249v82,8,221,-29,221,52v0,74,-73,92,-155,90r-17,77v2,16,12,14,32,17r-3,13r-136,0r3,-13v19,-1,38,-5,42,-21r42,-184v-2,-14,-15,-16,-32,-19xm118,-123v55,3,81,-24,82,-74v0,-32,-23,-39,-57,-37","w":254},"Q":{"d":"178,-256v64,-3,116,40,114,102v-2,82,-48,131,-113,153v-6,43,26,60,66,47r-2,14v-49,19,-142,25,-130,-54v-56,-5,-98,-43,-98,-102v0,-96,66,-155,163,-160xm133,-9v68,-7,91,-86,91,-162v0,-38,-14,-69,-49,-69v-71,0,-88,86,-91,162v-1,38,14,73,49,69","w":295},"R":{"d":"119,-128v52,5,83,-21,83,-69v0,-32,-25,-39,-59,-37xm186,0v-22,-50,-32,-69,-58,-113r-13,0r-18,83v1,16,12,14,31,17r-3,13r-135,0r3,-13v19,-1,38,-5,42,-21r42,-184v-2,-14,-15,-16,-32,-19r3,-12r137,0v48,0,86,8,86,48v0,46,-38,68,-80,78r55,95v8,12,17,14,34,15r-3,13r-91,0","w":287},"S":{"d":"44,-137v-50,-94,95,-148,169,-102v7,-6,13,-12,28,-10r-18,85r-15,0v-7,-39,-20,-73,-64,-75v-35,-2,-68,39,-41,65v33,32,117,27,117,91v0,89,-127,109,-198,71v-8,6,-13,15,-30,12r19,-90r15,0v9,41,29,75,76,79v41,3,73,-38,47,-68v-23,-27,-88,-25,-105,-58","w":235},"T":{"d":"124,-235v-52,-5,-71,29,-89,57r-14,0r17,-71r242,0r-17,71r-13,0v-5,-34,-16,-64,-63,-57r-47,204v0,16,20,16,34,18r-3,13r-139,0r3,-13v20,0,39,-4,43,-23","w":246},"U":{"d":"254,-176v11,-34,0,-61,-30,-61r3,-12r108,0r-3,12v-19,3,-39,6,-46,25v-24,63,-23,157,-75,195v-59,43,-192,30,-170,-67r31,-134v-2,-15,-14,-15,-32,-19r3,-12r134,0r-3,12v-18,3,-36,4,-40,22r-31,139v-16,65,66,72,102,39v33,-30,33,-91,49,-139","w":300},"V":{"d":"240,-209v17,-22,-6,-26,-29,-28r3,-12r103,0r-3,12v-64,19,-71,64,-107,120r-77,120r-35,0r-38,-210v-4,-19,-16,-26,-36,-30r3,-12r133,0r-3,12v-24,4,-40,2,-34,33r27,147","w":274},"W":{"d":"373,-209v14,-23,-8,-25,-31,-28r3,-12r103,0r-3,12v-22,4,-36,14,-46,31r-121,209r-36,0r-23,-184r-101,184r-35,0r-23,-210v-2,-21,-16,-25,-34,-30r3,-12r130,0r-3,12v-24,2,-36,4,-33,34r13,135r99,-181r37,0r23,187","w":405},"X":{"d":"202,-185v16,-14,59,-51,9,-52r3,-12r101,0r-3,12v-47,6,-67,38,-95,64r-38,35r54,108v9,10,19,16,38,17r-3,13r-147,0r3,-13v72,3,15,-55,7,-89v-24,27,-54,48,-74,79v2,8,13,8,26,10r-3,13r-101,0r3,-13v50,-5,69,-39,98,-66r43,-40v-28,-41,-28,-110,-88,-118r3,-12r147,0r-3,12v-23,0,-50,7,-32,32r21,50","w":288},"Y":{"d":"240,-220v8,-14,-15,-16,-27,-17r3,-12r95,0r-3,12v-64,20,-85,76,-124,113v-26,25,-24,53,-35,93v0,16,20,16,34,18r-3,13r-139,0r3,-13v20,0,41,-4,43,-23v4,-28,21,-58,7,-84v-22,-41,-17,-109,-72,-117r3,-12r139,0r-3,12v-20,1,-39,-1,-34,20v7,29,22,65,32,95","w":263},"Z":{"d":"143,-234v-59,-2,-63,27,-94,61r-15,0r26,-76r215,0r-3,10r-208,224r59,0v70,7,78,-38,107,-69r13,0r-28,84r-232,0r2,-11r209,-223r-51,0","w":248},"[":{"d":"114,54r-116,0r74,-321r117,0r-4,17r-61,0r-67,288r61,0","w":160},"\\":{"d":"137,75r-31,0r-61,-343r31,0","w":169},"]":{"d":"94,54r-116,0r4,-16r61,0r66,-288r-61,0r4,-17r117,0","w":160},"^":{"d":"224,-134r-35,0r-56,-90r-55,90r-34,0r77,-122r25,0"},"_":{"d":"222,53r-255,0r5,-21r255,0"},"`":{"d":"79,-234v-19,-8,-13,-39,8,-38v40,4,41,47,64,72r-8,6","w":180},"a":{"d":"11,-62v-2,-81,80,-142,154,-103r54,-11r3,3r-31,134v-2,23,28,19,42,13r-3,15v-30,18,-83,23,-96,-11v-19,10,-31,27,-61,27v-41,0,-62,-26,-62,-67xm74,-61v-4,40,39,52,58,23r23,-95v-1,-16,-8,-30,-26,-28v-41,5,-50,54,-55,100","w":237},"b":{"d":"105,-155v34,-37,117,-29,117,44v0,97,-103,145,-184,98v-7,-5,-13,-12,-19,-21r45,-200v0,-17,-14,-19,-30,-21r3,-13r92,-4r2,3xm104,-9v42,-8,50,-54,55,-103v4,-42,-39,-50,-59,-23r-22,98v1,16,9,27,26,28","w":233},"c":{"d":"186,-44v-17,27,-49,49,-88,50v-52,0,-86,-26,-86,-76v0,-66,44,-106,114,-108v36,-1,61,12,64,42v4,39,-57,48,-61,15v1,-14,6,-26,13,-36v-39,-29,-69,33,-67,79v2,32,11,57,40,57v31,0,42,-13,58,-33","w":192},"d":{"d":"11,-62v0,-80,77,-141,152,-104v4,-23,14,-42,14,-67v0,-18,-19,-20,-36,-22r3,-13r98,-4r2,3r-52,230v-2,23,28,19,42,13r-4,15v-32,20,-80,20,-97,-11v-33,42,-122,35,-122,-40xm74,-61v-4,41,39,51,59,23r22,-96v0,-18,-9,-28,-27,-28v-42,0,-49,56,-54,101","w":238},"e":{"d":"188,-44v-19,27,-51,50,-92,50v-51,0,-84,-25,-84,-75v0,-68,46,-106,116,-109v36,0,65,10,65,40v0,54,-68,58,-119,66v1,28,9,51,39,51v32,-1,47,-12,63,-33xm74,-86v32,-5,62,-10,62,-47v0,-35,-32,-42,-46,-9v-7,16,-14,34,-16,56","w":200},"f":{"d":"184,-213v-26,0,-35,-26,-42,-46v-16,20,-22,55,-30,88r45,0r-4,18r-44,0v-24,105,-21,231,-135,231v-29,0,-50,-6,-50,-34v0,-14,11,-26,26,-26v27,0,34,28,43,46v34,-53,38,-147,58,-217r-34,0r4,-18r34,0v10,-56,46,-102,106,-102v28,0,50,7,50,33v0,16,-9,27,-27,27","w":137},"g":{"d":"2,44v-2,-31,45,-32,57,-9v6,7,11,20,16,29v39,-8,47,-40,57,-82v-18,8,-30,22,-57,22v-40,0,-64,-26,-64,-67v-1,-81,80,-141,155,-102r54,-11r2,3v-29,105,-17,252,-152,251v-35,-1,-66,-4,-68,-34xm74,-62v-4,40,42,50,62,23r19,-95v0,-17,-9,-27,-27,-27v-42,0,-49,54,-54,99","w":233},"h":{"d":"201,-65v-9,23,-6,54,27,42v4,-1,8,-3,10,-4r-4,16v-42,27,-114,14,-92,-50v8,-23,13,-45,16,-70v-5,-34,-46,-11,-60,4r-29,127r-58,0r53,-234v1,-18,-15,-19,-30,-21r3,-13r92,-4r2,3r-27,121v30,-41,139,-44,110,33","w":243},"i":{"d":"125,-25r-4,16v-41,27,-108,15,-92,-50r19,-77v3,-24,-26,-19,-41,-13r4,-15v39,-26,115,-16,91,49v-14,38,-41,115,23,90xm95,-272v17,0,34,14,34,32v0,18,-17,32,-34,32v-18,0,-35,-14,-35,-32v0,-18,17,-32,35,-32","w":131},"j":{"d":"13,-164v34,-19,106,-25,97,31v-17,101,-22,211,-126,211v-29,0,-50,-6,-50,-34v0,-14,11,-26,26,-26v27,0,34,28,43,46v27,-54,39,-132,49,-200v3,-22,-28,-19,-43,-13xm96,-272v17,-1,34,14,34,32v0,18,-17,33,-34,32v-18,0,-35,-14,-35,-32v0,-18,17,-32,35,-32","w":131},"k":{"d":"178,-172v20,-12,50,-6,50,21v0,36,-50,38,-69,17v-10,5,-9,5,-20,15v14,31,23,71,43,95v7,8,32,2,41,-1r-4,16v-23,8,-40,17,-66,13v-41,-6,-42,-48,-57,-82v-20,15,-18,52,-27,78r-58,0r53,-234v1,-18,-15,-19,-30,-21r3,-13r92,-4r2,3r-42,183v35,-32,54,-63,89,-86","w":230},"l":{"d":"63,-224v6,-23,-10,-31,-30,-31r4,-13r92,-4r2,3r-52,231v-2,25,30,18,45,13r-4,16v-42,27,-110,17,-95,-50","w":127},"m":{"d":"318,-65v-8,23,-6,54,28,41v4,-1,8,-2,10,-3r-4,16v-42,26,-114,16,-93,-50v7,-23,14,-44,17,-70v-5,-34,-45,-10,-56,4r-29,127r-58,0r28,-131v-5,-33,-42,-12,-57,4r-29,127r-58,0r29,-134v3,-24,-26,-19,-41,-13r4,-15v31,-18,90,-22,97,17v21,-18,37,-33,72,-33v25,0,38,17,44,33v23,-18,37,-33,72,-33v60,-2,38,74,24,113","w":360},"n":{"d":"206,-65v-11,30,3,56,37,38r-4,16v-42,27,-114,14,-92,-50v8,-23,13,-45,16,-70v-4,-34,-46,-11,-59,4r-29,127r-58,0r29,-134v3,-24,-26,-19,-41,-13r4,-15v31,-18,90,-22,98,17v19,-17,40,-33,74,-33v62,0,40,73,25,113","w":248},"o":{"d":"131,-179v50,-2,87,26,86,74v-2,71,-50,109,-122,111v-48,1,-84,-28,-83,-75v1,-71,50,-108,119,-110xm101,-8v46,-8,51,-66,54,-117v0,-25,-7,-38,-27,-40v-45,6,-53,65,-54,116v0,25,7,39,27,41","w":228},"p":{"d":"104,-151v37,-41,123,-36,123,40v0,82,-78,141,-151,103r-12,56v0,16,20,16,34,18r-3,12r-127,0r3,-12v16,-3,31,-3,35,-21r40,-179v3,-23,-26,-19,-41,-13r4,-15v28,-15,86,-24,95,11xm111,-10v40,-8,48,-54,53,-102v4,-43,-40,-50,-59,-23r-22,97v0,17,11,28,28,28","w":238},"q":{"d":"174,39v-8,21,13,26,31,27r-3,12r-127,0r3,-12v16,-3,34,-2,36,-21v2,-20,15,-46,13,-62v-35,38,-116,25,-116,-45v0,-82,79,-142,155,-103r54,-11r2,3xm74,-61v-4,41,39,50,59,23r22,-96v0,-17,-9,-26,-27,-27v-41,7,-50,54,-54,100","w":233},"r":{"d":"162,-178v21,0,33,13,32,36v7,40,-56,55,-64,19v2,-15,3,-14,10,-30v-16,6,-27,17,-37,29r-28,124r-58,0r29,-134v3,-24,-26,-18,-41,-13r4,-15v31,-18,90,-22,98,17v19,-18,27,-33,55,-33","w":192},"s":{"d":"155,-86v36,48,-17,98,-79,92v-37,-3,-74,-5,-74,-37v0,-14,13,-26,28,-26v27,1,35,29,41,50v40,6,55,-47,16,-57v-31,-8,-62,-21,-62,-57v0,-43,40,-57,88,-57v33,0,63,5,66,34v0,13,-11,24,-26,24v-27,0,-32,-27,-39,-46v-29,-2,-47,45,-12,54v18,5,44,14,53,26","w":186},"t":{"d":"88,-59v-17,33,16,49,47,33r-4,16v-41,26,-118,21,-102,-49r22,-94r-32,0r4,-18r33,0r12,-53r57,0r-12,53r48,0r-5,18r-47,0","w":150},"u":{"d":"239,-11v-33,21,-89,19,-99,-17v-22,19,-38,33,-74,33v-71,0,-26,-91,-19,-139v3,-23,-27,-20,-41,-12r4,-16v39,-26,114,-16,92,49v-8,23,-17,45,-17,71v0,35,47,9,58,-4r29,-127r56,-3r2,3r-29,134v-4,23,28,19,41,12","w":246},"v":{"d":"178,-178v24,0,35,19,35,43v0,76,-42,138,-117,141v-40,2,-69,-20,-69,-57v0,-29,18,-52,20,-83v1,-23,-28,-20,-41,-12r4,-16v30,-18,96,-24,95,22v-1,32,-19,58,-19,87v0,20,10,33,31,33v35,0,63,-33,58,-72v-3,-24,-33,-25,-31,-55v1,-20,13,-31,34,-31","w":220},"w":{"d":"293,-178v23,0,35,19,35,43v-4,78,-41,137,-118,141v-33,2,-56,-13,-64,-39v-22,23,-39,38,-76,38v-71,0,-31,-90,-23,-139v4,-22,-28,-20,-41,-12r4,-16v35,-21,107,-22,94,39v-6,29,-19,46,-19,77v0,37,48,17,60,-2v5,-45,18,-83,27,-125r56,-3v0,40,-22,82,-24,126v-1,20,10,30,29,30v35,-1,62,-31,58,-72v-3,-24,-32,-25,-31,-55v1,-20,13,-31,33,-31","w":336},"x":{"d":"188,-178v14,-1,26,10,26,26v0,32,-38,39,-64,27v-7,5,-14,15,-21,24v9,35,10,54,27,76v8,10,30,3,41,0r-4,16v-19,8,-34,13,-54,14v-39,2,-47,-30,-54,-62v-18,24,-28,59,-62,61v-14,1,-26,-10,-26,-26v0,-33,39,-42,64,-27v6,-5,15,-15,20,-24v-12,-33,-11,-97,-66,-74r3,-15v17,-8,34,-13,54,-14v39,-3,47,29,53,59v19,-22,28,-59,63,-61","w":210},"y":{"d":"9,44v-3,-32,45,-32,57,-9v10,10,11,39,32,23v23,-17,39,-51,42,-86v-30,44,-138,45,-111,-32r18,-74v3,-24,-28,-19,-41,-12r4,-16v39,-26,114,-16,92,49v-8,22,-14,44,-17,69v4,34,46,11,59,-3r27,-126r56,-3r2,3v-29,106,-18,251,-152,251v-35,-1,-65,-4,-68,-34","w":240},"z":{"d":"63,-15v56,8,86,-11,97,-49r12,0r-13,64r-164,0r3,-15r123,-144r-43,1v-23,1,-34,22,-42,41r-13,0r11,-56r157,0r-3,12","w":186},"{":{"d":"100,3v-8,28,14,41,39,41r-2,15v-54,1,-105,-8,-92,-67v7,-37,30,-91,-32,-86r6,-27v53,1,71,-30,71,-82v0,-55,53,-68,116,-67r-3,14v-75,-5,-38,98,-89,126v-15,9,-33,14,-51,18r-3,13v51,5,54,55,40,102","w":180},"|":{"d":"89,75r-30,0r0,-343r30,0r0,343","w":139},"}":{"d":"129,-159v-6,32,11,42,43,42r-6,26v-55,-2,-68,32,-72,83v-4,56,-54,67,-115,67r2,-15v76,6,39,-96,89,-125v14,-8,34,-14,51,-18r3,-13v-55,-4,-52,-62,-39,-113v1,-25,-17,-30,-40,-30r3,-15v51,0,98,5,92,58v-2,19,-8,35,-11,53","w":180},"~":{"d":"176,-102v21,0,29,-17,37,-35r19,8v-13,26,-28,58,-65,59v-36,1,-50,-30,-83,-30v-21,0,-28,17,-36,35r-19,-8v12,-26,28,-58,65,-59v37,-1,49,30,82,30"}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1998 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":203,"face":{"font-family":"AvantGarde Bk BT","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 4 2 2 2 2 2 2 4","ascent":"274","descent":"-86","x-height":"5","bbox":"-9 -291 339 85","underline-thickness":"19.8633","underline-position":"-21.4453","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":101},"!":{"d":"64,-67r-25,0r0,-189r25,0r0,189xm64,0r-25,0r0,-47r25,0r0,47","w":103},"\"":{"d":"83,-252r0,97r-18,0r0,-97r18,0xm35,-252r0,97r-18,0r0,-97r18,0","w":100},"#":{"d":"171,-152r-46,0r-17,49r47,0xm161,-256r-29,85r46,0r30,-85r23,0r-30,85r55,0r-6,19r-56,0r-17,49r60,0r-7,19r-60,0r-30,84r-22,0r30,-84r-47,0r-31,84r-22,0r30,-84r-57,0r6,-19r58,0r17,-49r-62,0r6,-19r63,0r30,-85r22,0","w":276},"$":{"d":"177,-74v0,41,-26,70,-63,73r0,44r-25,0r0,-44v-38,-3,-62,-34,-62,-75r24,0v0,34,16,53,50,53v31,1,50,-18,51,-47v3,-59,-119,-43,-119,-118v0,-34,26,-62,56,-66r0,-37r25,0r0,37v34,4,56,27,57,64r-25,0v0,-25,-18,-43,-43,-43v-27,-1,-45,18,-45,44v2,55,119,40,119,115"},"%":{"d":"78,-237v-21,0,-40,18,-40,39v0,21,18,40,40,40v22,0,40,-18,40,-40v0,-22,-18,-39,-40,-39xm79,-135v-35,0,-63,-28,-63,-63v0,-35,28,-63,63,-63v34,0,63,29,63,63v0,35,-28,63,-63,63xm216,-261r21,0r-137,266r-21,0xm236,-98v-21,0,-40,18,-40,40v0,21,19,40,40,40v21,0,40,-19,40,-40v0,-21,-19,-40,-40,-40xm237,5v-35,0,-64,-28,-64,-63v0,-34,29,-63,64,-63v34,0,63,30,63,63v0,34,-28,63,-63,63","w":315},"&":{"d":"103,-237v-28,-2,-45,34,-29,58v4,7,13,15,24,24v42,-7,55,-79,5,-82xm88,-128v-52,13,-52,111,11,108v30,-1,42,-21,57,-45xm163,-201v-1,32,-22,51,-49,62r52,48r31,-79r27,0r-39,97r58,53r-16,19r-52,-48v-14,30,-38,53,-78,54v-41,2,-75,-37,-74,-77v0,-34,22,-61,48,-73v-49,-29,-30,-116,33,-116v31,0,61,29,59,60","w":249},"'":{"d":"35,-252r0,97r-18,0r0,-97r18,0","w":51},"(":{"d":"76,78v-69,-27,-53,-137,-54,-232v0,-54,18,-88,54,-107r0,28v-46,29,-29,127,-29,199v0,45,5,64,29,83r0,29","w":95},")":{"d":"48,-34v0,-72,17,-170,-29,-199r0,-28v69,27,53,137,54,231v0,54,-18,89,-54,108r0,-29v24,-19,29,-38,29,-83","w":95},"*":{"d":"90,-172r-32,46r-19,-13r35,-44r-52,-15r6,-21r52,17r0,-54r20,0r0,54r50,-17r8,21r-53,15r36,44r-19,13","w":180},"+":{"d":"159,-215r0,99r96,0r0,17r-96,0r0,99r-17,0r0,-99r-97,0r0,-17r97,0r0,-99r17,0","w":299},",":{"d":"44,28r-26,0r28,-75r25,0","w":101},"-":{"d":"99,-108r0,23r-82,0r0,-23r82,0","w":115,"k":{"x":13,"w":13,"v":13,"t":6,"j":-7,"Y":20,"X":13,"W":20,"V":20,"T":20,"S":13,"J":20,"A":6}},".":{"d":"63,0r-25,0r0,-47r25,0r0,47","w":101},"\/":{"d":"13,33r-22,0r88,-289r21,0","w":100},"0":{"d":"102,-239v-39,0,-62,27,-62,68v0,72,-11,154,62,154v72,0,61,-83,61,-155v0,-40,-22,-67,-61,-67xm102,5v-56,0,-88,-33,-87,-95r0,-76v-1,-64,31,-92,87,-95v85,-4,86,83,86,172v0,62,-31,94,-86,94"},"1":{"d":"119,0r-27,0r0,-234r-45,0r0,-22r72,0r0,256"},"2":{"d":"105,-261v57,-1,98,66,68,119v-26,45,-79,80,-116,117r125,0r0,25r-159,0r0,-25v39,-39,98,-83,127,-126v25,-37,-3,-87,-47,-87v-37,0,-58,28,-55,68r-25,0v-2,-53,32,-90,82,-91"},"3":{"d":"182,-78v0,72,-93,110,-141,61v-15,-15,-22,-35,-22,-61v8,1,22,-3,26,2v-1,33,23,59,54,59v34,0,58,-25,58,-59v0,-45,-33,-64,-79,-59r0,-22v35,4,62,-7,61,-41v0,-22,-16,-41,-38,-41v-27,-1,-40,18,-41,43r-23,0v1,-38,27,-65,65,-65v57,0,87,83,38,111v26,13,42,35,42,72"},"4":{"d":"136,-72r1,-154r-95,154r94,0xm160,0r-25,0r0,-49r-120,0r0,-23r116,-184r29,0r0,184r28,0r0,23r-28,0r0,49"},"5":{"d":"189,-85v0,73,-94,121,-147,67v-16,-16,-25,-36,-27,-60r25,0v1,31,29,60,62,60v35,0,61,-31,61,-67v0,-67,-91,-86,-117,-35r-19,-9r22,-127r116,0r0,25r-94,0r-13,72v53,-42,131,5,131,74"},"6":{"d":"162,-81v0,-37,-24,-64,-59,-64v-35,0,-62,28,-62,63v0,35,28,65,62,65v35,0,59,-28,59,-64xm101,5v-49,0,-88,-36,-86,-84v3,-58,66,-128,94,-177r31,0r-59,93v59,-18,108,25,108,81v0,49,-40,87,-88,87"},"7":{"d":"75,0r-28,0r101,-231r-112,0r0,-25r141,0r0,23"},"8":{"d":"102,-238v-25,0,-45,17,-45,41v0,25,17,42,43,42v30,0,47,-13,48,-42v0,-24,-20,-41,-46,-41xm102,-131v-35,0,-56,23,-57,58v-1,31,25,56,55,56v33,0,58,-25,58,-58v0,-33,-22,-56,-56,-56xm20,-76v1,-36,15,-50,39,-67v-54,-29,-20,-124,42,-118v64,-8,98,88,43,118v70,30,40,148,-44,148v-42,0,-82,-37,-80,-81"},"9":{"d":"41,-175v0,36,24,64,59,64v35,0,62,-28,62,-64v0,-35,-29,-64,-62,-64v-35,0,-60,28,-59,64xm102,-261v49,0,89,37,87,84v-3,58,-68,127,-95,177r-31,0r60,-93v-59,18,-108,-25,-108,-81v0,-50,37,-87,87,-87"},":":{"d":"64,-147r-25,0r0,-46r25,0r0,46xm64,0r-25,0r0,-47r25,0r0,47","w":103},";":{"d":"44,28r-26,0r28,-75r25,0xm64,-193r0,46r-25,0r0,-46r25,0","w":103},"<":{"d":"253,-180r-179,73r179,72r0,20r-207,-85r0,-14r207,-86r0,20","w":299},"=":{"d":"255,-83r0,17r-210,0r0,-17r210,0xm255,-149r0,18r-210,0r0,-18r210,0","w":299},">":{"d":"253,-114r0,14r-207,85r0,-20r180,-72r-180,-73r0,-20","w":299},"?":{"d":"156,-185v0,50,-61,64,-60,115r-25,0v-3,-53,59,-71,59,-116v0,-29,-18,-50,-47,-49v-33,0,-47,24,-49,57r-26,0v-1,-48,30,-83,77,-83v43,-1,71,33,71,76xm71,0r0,-47r25,0r0,47r-25,0","w":166},"@":{"d":"102,-80v-7,-70,90,-134,126,-67r11,-22r16,0r-27,115v0,10,7,17,19,16v50,-4,72,-48,73,-100v2,-63,-59,-104,-125,-102v-94,3,-149,58,-154,150v-7,128,167,153,250,91r7,10v-31,22,-67,39,-115,39v-97,0,-162,-49,-162,-144v0,-100,71,-162,175,-162v81,0,143,40,143,119v0,66,-33,115,-97,115v-22,0,-37,-10,-33,-32v-10,18,-26,31,-52,32v-37,0,-52,-21,-55,-58xm123,-78v0,41,44,51,70,29v20,-17,23,-49,31,-77v-4,-19,-17,-35,-38,-35v-38,0,-63,41,-63,83","w":360},"A":{"d":"18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm153,-103r-48,-129r-48,129r96,0","w":214,"k":{"y":6,"w":10,"v":11,"Y":13,"V":10,"T":13,"S":-10,";":6,":":6,".":6,"-":6,",":6}},"B":{"d":"144,-72v0,-48,-45,-51,-96,-49r0,97v50,2,96,0,96,-48xm130,-189v0,-40,-38,-44,-82,-43r0,87v47,0,82,-2,82,-44xm170,-76v3,77,-67,79,-146,76r0,-256v70,-3,132,0,132,68v0,26,-11,40,-28,50v26,11,41,29,42,62","w":183,"k":{";":13,":":13,".":13,",":13}},"C":{"d":"143,5v-116,8,-173,-149,-92,-229v36,-35,110,-50,159,-18v20,12,36,29,48,52r-30,0v-20,-27,-44,-46,-87,-46v-55,-1,-104,51,-104,107v0,59,46,111,104,110v41,-1,66,-17,85,-44r30,0v-20,39,-59,64,-113,68","w":270,"k":{";":6,":":6,".":6,",":6}},"D":{"d":"202,-129v-3,-65,-33,-105,-107,-103r-46,0r0,208v92,8,157,-18,153,-105xm229,-128v0,85,-47,132,-144,128r-61,0r0,-256r73,0v87,-2,132,49,132,128","w":240,"k":{";":6,":":6,".":20,"-":-7,",":20}},"E":{"d":"49,-141r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-256r133,0r0,25r-108,0r0,90","w":180,"k":{";":13,":":13,".":6,"-":6,",":6}},"F":{"d":"24,0r0,-256r126,0r0,25r-101,0r0,90r101,0r0,25r-101,0r0,116r-25,0","w":174,"k":{"y":8,"u":6,"r":6,"o":8,"i":6,"e":8,"a":8,"S":13,"A":16,";":20,":":20,".":46,"-":10,",":46}},"G":{"d":"37,-129v0,85,101,145,169,87v19,-15,30,-34,36,-58r-129,0r0,-23r159,0v-2,71,-59,128,-131,128v-73,0,-130,-61,-130,-135v0,-102,109,-163,200,-113v20,11,35,29,47,51r-31,0v-20,-26,-43,-44,-84,-45v-57,-1,-106,50,-106,108","w":283,"k":{";":6,":":6,".":13,",":13}},"H":{"d":"49,0r-25,0r0,-256r25,0r0,115r122,0r0,-115r25,0r0,256r-25,0r0,-117r-122,0r0,117","w":219,"k":{";":6,":":6,".":6,",":6}},"I":{"d":"49,0r-26,0r0,-256r26,0r0,256","w":72,"k":{";":6,":":6,".":6,",":6}},"J":{"d":"70,-20v40,0,43,-25,43,-74r0,-162r25,0r0,173v12,76,-68,112,-116,70v-13,-11,-17,-29,-17,-49r25,0v1,24,17,42,40,42","w":160,"k":{";":6,":":6,".":13,",":13}},"K":{"d":"48,-79r0,79r-25,0r0,-256r25,0r0,142r119,-142r30,0r-104,124r102,132r-31,0r-87,-113","w":193,"k":{"y":13,"u":10,"o":13,"e":13,"a":13,"Y":6,"W":6,"O":16,"C":16,";":6,":":6,".":6,"-":20,",":6}},"L":{"d":"139,0r-115,0r0,-256r25,0r0,231r90,0r0,25","w":148,"k":{"y":20,"u":11,"o":11,"e":11,"a":11,"Y":20,"W":21,"V":33,"U":6,"T":15,"O":13,";":6,":":6,".":13,"-":26,",":13}},"M":{"d":"25,0r0,-256r37,0r89,223r88,-223r37,0r0,256r-24,0r0,-226r-90,226r-23,0r-90,-226r0,226r-24,0","w":297,"k":{";":6,":":6,".":6,",":6}},"N":{"d":"194,-31r-3,-225r25,0r0,256r-31,0r-140,-226r3,226r-25,0r0,-256r30,0","w":240,"k":{";":6,":":6,".":6,",":6}},"O":{"d":"141,-237v-64,3,-101,47,-104,108v-3,59,47,110,106,110v58,0,103,-52,103,-111v0,-56,-49,-108,-105,-107xm141,5v-73,3,-133,-61,-130,-135v4,-78,51,-131,130,-131v80,0,131,53,131,131v0,82,-52,132,-131,135","w":283,"k":{"X":10,"T":13,";":6,":":6,".":20,",":20}},"P":{"d":"144,-181v0,-51,-46,-52,-98,-50r0,98v51,2,98,1,98,-48xm171,-182v-2,64,-52,80,-125,74r0,108r-25,0r0,-256v79,-3,151,0,150,74","w":181,"k":{"u":6,"s":10,"r":6,"o":16,"n":6,"i":6,"e":16,"a":16,"A":23,";":13,":":13,".":79,"-":26,",":79}},"Q":{"d":"272,-125v0,43,-17,71,-41,94v10,8,25,11,44,10v-1,11,6,28,-13,23v-20,0,-38,-7,-51,-17v-85,56,-207,-15,-200,-115v5,-77,51,-128,130,-131v75,-3,133,60,131,136xm96,-110v59,2,77,26,115,64v20,-20,35,-47,35,-84v2,-56,-49,-108,-105,-107v-64,1,-121,66,-100,139v17,-7,33,-12,55,-12xm50,-75v20,44,86,73,141,44v-40,-43,-78,-69,-141,-44","w":283,"k":{".":6,",":6}},"R":{"d":"157,-174v0,-56,-48,-61,-112,-57r0,231r-25,0r0,-256r69,0v61,-2,92,28,95,81v2,38,-26,73,-62,75r62,100r-30,0r-76,-123v45,4,79,-12,79,-51","w":200,"k":{"o":6,"e":6,"a":6,";":6,":":6,".":20,"-":13,",":20}},"S":{"d":"108,-142v78,21,51,147,-27,147v-43,0,-72,-34,-71,-78r24,0v1,30,18,51,47,52v30,0,49,-20,49,-52v0,-59,-121,-44,-113,-118v-6,-59,74,-93,114,-52v11,12,18,29,19,50r-24,0v-2,-26,-15,-43,-41,-44v-38,-2,-58,52,-28,75v7,5,39,17,51,20","w":167,"k":{";":6,":":6,".":13,"-":-7,",":13}},"T":{"d":"78,0r-25,0r0,-231r-51,0r0,-25r128,0r0,25r-52,0r0,231","w":131,"k":{"y":6,"w":8,"u":8,"s":11,"r":8,"o":15,"e":15,"c":15,"a":15,"O":13,"C":13,"A":13,";":13,":":13,".":26,"-":20,",":26}},"U":{"d":"103,5v-120,0,-74,-155,-83,-261r25,0r0,162v-3,49,18,76,57,76v90,0,46,-152,56,-238r25,0v-8,105,34,261,-80,261","k":{".":13,",":13}},"V":{"d":"-7,-256r25,0r81,218r81,-218r25,0r-96,256r-20,0","w":200,"k":{"y":6,"u":11,"o":20,"e":20,"a":20,"A":10,";":13,":":13,".":40,"-":20,",":40}},"W":{"d":"158,-256r52,210r64,-210r24,0r-79,256r-21,0r-51,-209r-52,209r-21,0r-79,-256r25,0r63,210r52,-210r23,0","w":292,"k":{"u":10,"r":6,"o":13,"e":13,"a":13,";":6,":":6,".":26,"-":20,",":26}},"X":{"d":"30,0r-31,0r89,-129r-87,-127r31,0r71,106r70,-106r31,0r-87,127r89,129r-32,0r-71,-109","w":204,"k":{"e":6,"O":10,"C":10,";":6,":":6,".":6,"-":13,",":6}},"Y":{"d":"98,-94r0,94r-25,0r0,-94r-82,-162r29,0r66,133r66,-133r28,0","w":172,"k":{"u":18,"o":24,"e":24,"a":24,"A":13,";":13,":":13,".":40,"-":20,",":40}},"Z":{"d":"126,-231r-112,0r0,-25r142,0r0,24r-120,207r122,0r0,25r-151,0r0,-24","w":164,"k":{".":13,"-":26,",":13}},"[":{"d":"82,52r0,20r-59,0r0,-328r59,0r0,21r-34,0r0,287r34,0","w":95},"\\":{"d":"88,33r-88,-289r21,0r88,289r-21,0","w":100},"]":{"d":"13,52r34,0r0,-287r-34,0r0,-21r59,0r0,328r-59,0r0,-20","w":95},"^":{"d":"192,-256r93,98r-25,0r-80,-80r-81,80r-25,0r94,-98r24,0","w":360},"_":{"d":"180,67r0,18r-180,0r0,-18r180,0","w":180},"`":{"d":"96,-219r-47,-62r26,0r37,62r-16,0","w":180},"a":{"d":"110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77xm10,-96v0,-91,127,-138,173,-66r0,-31r24,0r0,193r-24,0r0,-31v-14,21,-41,36,-74,36v-55,0,-99,-45,-99,-101","w":226,"k":{".":6,",":6}},"b":{"d":"115,5v-33,0,-54,-15,-71,-34r0,29r-25,0r0,-256r25,0r0,95v18,-23,40,-36,76,-37v53,-1,97,47,97,101v0,56,-44,102,-102,102xm117,-175v-40,0,-73,38,-73,80v0,40,35,78,72,77v41,0,75,-36,75,-80v0,-40,-35,-78,-74,-77","w":226,"k":{";":6,":":6,".":13,",":13}},"c":{"d":"10,-96v0,-77,90,-133,156,-86v16,11,28,27,36,48r-27,0v-14,-25,-32,-41,-67,-41v-41,-1,-72,36,-72,78v0,42,31,80,73,79v33,-1,54,-18,66,-42r27,0v-14,39,-44,64,-92,65v-55,2,-100,-47,-100,-101","w":218,"k":{";":6,":":6,".":13,",":13}},"d":{"d":"111,-18v37,1,72,-38,72,-77v0,-41,-34,-80,-73,-80v-39,0,-74,36,-74,77v0,44,34,80,75,80xm109,-198v34,0,57,14,73,35r0,-93r25,0r0,256r-25,0r0,-29v-15,20,-41,34,-73,34v-55,2,-99,-47,-99,-102v0,-56,45,-101,99,-101","w":226,"k":{".":6,",":6}},"e":{"d":"111,-199v60,0,100,48,99,110r-175,0v3,40,32,71,74,71v32,0,55,-20,66,-43r28,0v-15,38,-45,65,-93,66v-55,2,-101,-47,-101,-102v0,-57,44,-102,102,-102xm182,-110v-4,-58,-77,-85,-122,-48v-13,12,-21,28,-24,48r146,0","w":218,"k":{";":6,":":6,".":13,",":13}},"f":{"d":"95,-237v-32,0,-42,12,-41,44r41,0r0,21r-41,0r0,172r-24,0r0,-172r-26,0r0,-21r25,0v-1,-46,20,-67,66,-66r0,22","w":98,"k":{".":26,"-":6,",":26}},"g":{"d":"206,-32v18,114,-151,147,-182,48r29,0v7,22,28,35,56,36v47,0,75,-36,73,-86v-44,74,-173,29,-173,-63v0,-55,44,-102,99,-101v36,0,58,14,74,36r0,-31r24,0r0,161xm109,-175v-41,0,-73,35,-73,77v0,43,31,79,73,79v37,0,73,-37,73,-76v0,-41,-32,-80,-73,-80","w":225,"k":{".":6,",":6}},"h":{"d":"102,-173v-79,0,-54,99,-58,173r-24,0r0,-256r24,0r0,85v13,-17,32,-24,59,-26v96,-5,76,107,78,197r-24,0v-5,-71,23,-173,-55,-173","w":200,"k":{".":6,",":6}},"i":{"d":"45,-216r-25,0r0,-40r25,0r0,40xm20,0r0,-193r25,0r0,193r-25,0","w":65,"k":{".":6,",":6}},"j":{"d":"45,-216r-25,0r0,-40r25,0r0,40xm-4,39v24,-1,24,-7,24,-35r0,-197r25,0r0,194v0,43,-8,62,-49,61r0,-23","w":65,"k":{".":6,",":6}},"k":{"d":"45,0r-25,0r0,-256r25,0r0,152r70,-89r28,0r-70,89r85,104r-31,0r-82,-101r0,101","w":149,"k":{"o":6,"e":6,"a":6,".":6,"-":13,",":6}},"l":{"d":"20,0r0,-256r25,0r0,256r-25,0","w":65,"k":{".":6,",":6}},"m":{"d":"44,-171v24,-39,110,-31,128,8v13,-20,36,-34,68,-34v93,0,73,108,75,197r-23,0v-5,-70,23,-173,-54,-173v-78,0,-54,98,-58,173r-23,0v-5,-71,23,-173,-55,-173v-79,0,-54,99,-58,173r-24,0r0,-193r24,0r0,22","w":335,"k":{".":6,",":6}},"n":{"d":"102,-173v-79,0,-54,99,-58,173r-24,0r0,-193r24,0r0,22v14,-17,32,-26,61,-26v55,0,76,31,76,96r0,101r-24,0v-5,-70,24,-173,-55,-173","w":200,"k":{".":6,",":6}},"o":{"d":"107,-176v-40,0,-72,38,-72,79v0,42,33,79,75,79v42,0,73,-37,73,-79v0,-44,-32,-79,-76,-79xm110,5v-55,0,-101,-47,-101,-102v0,-54,46,-103,99,-103v54,0,101,48,101,101v0,56,-44,104,-99,104","w":218,"k":{";":6,":":6,".":13,",":13}},"p":{"d":"117,5v-34,0,-59,-14,-73,-36r0,94r-25,0r0,-256r25,0r0,31v45,-70,173,-26,173,66v0,55,-45,102,-100,101xm116,-175v-37,0,-72,38,-72,77v0,42,33,80,73,80v40,0,74,-36,74,-77v0,-44,-34,-80,-75,-80","w":226,"k":{";":6,":":6,".":13,",":13}},"q":{"d":"10,-96v0,-91,127,-138,172,-66r0,-31r25,0r0,256r-25,0r0,-92v-14,20,-41,34,-73,34v-55,1,-99,-45,-99,-101xm110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77","w":226,"k":{".":6,",":6}},"r":{"d":"88,-169v-69,2,-35,106,-43,169r-25,0r0,-193r23,0r0,22v11,-15,22,-24,45,-25r0,27","w":90,"k":{"z":-7,"y":-20,"x":-13,"w":-13,"v":-13,"f":-13,".":26,"-":6,",":26}},"s":{"d":"95,-106v59,19,37,111,-26,111v-37,0,-61,-28,-61,-66v8,1,19,-2,25,1v-6,47,70,57,70,10v0,-54,-95,-33,-87,-94v-3,-46,63,-72,95,-40v10,9,15,22,16,39r-26,0v-2,-18,-12,-28,-31,-29v-29,-1,-37,42,-13,54v9,5,26,10,38,14","w":140,"k":{".":13,",":13}},"t":{"d":"37,0r0,-168r-37,0r0,-25r37,0r0,-63r25,0r0,63r36,0r0,25r-36,0r0,168r-25,0","w":98,"k":{".":20,"-":6,",":20}},"u":{"d":"98,5v-98,6,-77,-107,-79,-198r25,0v5,71,-24,175,55,175v77,0,55,-99,58,-175r24,0r0,193r-24,0r0,-21v-15,17,-30,24,-59,26","w":200,"k":{".":6,",":6}},"v":{"d":"95,0r-22,0r-76,-193r26,0r62,156r63,-156r27,0","w":171,"k":{";":6,":":6,".":40,"-":13,",":40}},"w":{"d":"179,-49r46,-144r27,0r-65,193r-17,0r-45,-147r-45,147r-16,0r-65,-193r26,0r47,144r44,-144r18,0","w":249,"k":{";":6,":":6,".":26,"-":13,",":26}},"x":{"d":"30,-193r45,73r48,-73r29,0r-63,92r63,101r-29,0r-49,-81r-52,81r-27,0r65,-100r-58,-93r28,0","w":149,"k":{";":6,":":6,".":6,"-":13,",":6}},"y":{"d":"-6,-193r29,0r59,157r63,-157r29,0r-105,256r-26,0r26,-63","w":165,"k":{".":33,"-":6,",":33}},"z":{"d":"137,0r-133,0r0,-23r100,-147r-89,0r0,-23r117,0r0,26r-99,142r104,0r0,25","w":145,"k":{";":6,":":6,".":13,"-":6,",":13}},"{":{"d":"83,-152v-1,-64,-6,-118,67,-108r0,19v-90,-19,-7,137,-80,148v41,6,34,55,34,103v0,37,9,45,46,44r0,19v-71,9,-69,-42,-67,-108v1,-38,-15,-50,-52,-49r0,-19v37,1,53,-10,52,-49","w":180},"|":{"d":"100,-275r0,360r-19,0r0,-360r19,0","w":180},"}":{"d":"30,-260v71,-9,70,42,68,108v-1,38,14,50,52,49r0,19v-56,-8,-52,40,-52,92v0,54,-15,66,-68,65r0,-19v90,19,6,-138,81,-147v-42,-6,-34,-54,-35,-103v0,-38,-10,-46,-46,-45r0,-19","w":180},"~":{"d":"147,-117v47,20,88,15,122,-15r0,20v-20,14,-39,24,-68,25v-26,1,-78,-26,-102,-24v-28,3,-45,13,-68,28r0,-20v34,-24,69,-34,116,-14","w":299},"\u00a0":{"w":101}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Converted by ALLTYPE
 */
Cufon.registerFont({"w":201,"face":{"font-family":"AvantGarde-Demi","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"6","bbox":"0 -308 323 78.5367","underline-thickness":"18","underline-position":"-19.8","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":100},"\u00a0":{"w":100},"!":{"d":"26,-46r48,0r0,46r-48,0r0,-46xm26,-266r48,0r0,198r-48,0r0,-198","w":100},"\"":{"d":"27,-266r27,0r0,81r-27,0r0,-81xm75,-266r27,0r0,81r-27,0r0,-81","w":129},"#":{"d":"180,-84r-37,0r-11,84r-32,0r11,-84r-31,0r-11,84r-32,0r11,-84r-36,0r0,-35r41,0r5,-33r-36,0r0,-36r40,0r11,-78r31,0r-10,78r31,0r10,-78r33,0r-11,78r32,0r0,36r-37,0r-4,33r32,0r0,35xm89,-152r-4,33r31,0r4,-33r-31,0"},"$":{"d":"80,-17v-30,-4,-64,-38,-58,-73r47,0v0,18,13,32,31,32v17,0,31,-15,31,-32v0,-20,-16,-27,-32,-32v-36,-11,-68,-27,-67,-73v1,-34,18,-59,48,-65r0,-48r45,0r0,47v24,9,42,33,45,62r-45,0v-2,-28,-48,-27,-48,2v0,24,23,29,41,34v35,10,59,32,60,74v0,39,-22,63,-53,72r0,48r-45,0r0,-48"},"%":{"d":"236,-123v35,0,65,30,65,65v0,36,-30,64,-65,64v-35,0,-65,-29,-65,-64v0,-35,30,-65,65,-65xm236,-83v-13,0,-25,10,-25,24v0,14,12,26,25,26v33,0,31,-51,0,-50xm190,-266r37,0r-110,266r-37,0xm72,-271v35,0,65,30,65,65v0,35,-30,65,-65,65v-34,0,-64,-30,-64,-65v0,-35,29,-65,64,-65xm72,-231v-13,0,-24,12,-24,25v0,13,12,25,24,25v14,0,25,-12,25,-25v1,-14,-11,-25,-25,-25","w":309},"&":{"d":"176,-205v0,33,-18,53,-42,65r25,27r26,-44r53,0r-46,80r47,51r-35,31r-36,-38v-15,19,-35,39,-67,39v-46,0,-88,-36,-88,-83v0,-42,23,-61,50,-77v-45,-34,-17,-117,45,-117v36,0,69,29,68,66xm60,-75v0,29,39,46,60,26v6,-6,10,-13,14,-20r-41,-47v-14,9,-33,18,-33,41xm108,-224v-29,0,-25,39,-6,48v1,1,1,3,3,3v11,-8,26,-12,26,-30v-1,-13,-9,-21,-23,-21","w":244},"'":{"d":"27,-266r27,0r0,81r-27,0r0,-81","w":79},"(":{"d":"126,-216v-64,38,-65,175,0,212r0,50v-110,-25,-128,-221,-41,-288v13,-10,26,-19,41,-23r0,49","w":136},")":{"d":"13,-4v66,-38,63,-175,0,-212r0,-50v94,24,130,185,63,266v-15,18,-36,42,-63,46r0,-50","w":136},"*":{"d":"42,-175r19,-33r-36,3r0,-25r36,2r-19,-32r22,-11r16,33r16,-33r21,13r-19,30r36,-2r0,25r-37,-2r20,30r-20,13r-17,-33r-16,33","w":158},"+":{"d":"88,-205r42,0r0,69r70,0r0,41r-70,0r0,72r-42,0r0,-72r-70,0r0,-41r70,0r0,-69","w":216},",":{"d":"74,-48v2,52,3,101,-48,98r0,-24v13,-2,23,-9,21,-26r-21,0r0,-48r48,0","w":100},"-":{"d":"27,-136r99,0r0,43r-99,0r0,-43","w":151},".":{"d":"26,-48r48,0r0,48r-48,0r0,-48","w":100},"\/":{"d":"126,-266r33,0r-116,312r-34,0","w":165},"0":{"d":"92,-270v58,-5,97,33,97,93r0,90v0,57,-31,93,-87,93v-57,0,-91,-34,-91,-95r0,-88v-2,-56,31,-89,81,-93xm99,-224v-58,2,-40,83,-40,143v0,25,16,40,40,41v59,1,42,-81,42,-139v0,-24,-16,-46,-42,-45"},"1":{"d":"89,-221r-34,0r0,-45r81,0r0,266r-47,0r0,-221"},"2":{"d":"98,-271v72,-4,118,91,68,145v-26,29,-55,55,-84,81r105,0r0,45r-172,0r0,-45r92,-86v13,-13,32,-29,32,-54v0,-23,-16,-39,-38,-39v-27,0,-43,22,-41,50r-48,0v-5,-56,37,-94,86,-97"},"3":{"d":"139,-82v-2,-33,-25,-47,-61,-45r0,-46v23,0,43,-2,42,-27v0,-14,-12,-24,-26,-24v-12,0,-22,10,-21,23r-48,-1v-2,-37,33,-69,69,-69v60,0,100,85,50,119v27,9,40,37,42,71v3,76,-101,116,-153,63v-17,-17,-27,-36,-28,-60r49,-1v-1,22,22,39,43,39v23,0,43,-19,42,-42"},"4":{"d":"122,-266r41,0r0,181r28,0r0,45r-28,0r0,40r-48,0r0,-40r-115,0r0,-39xm115,-185r-64,100r64,0r0,-100"},"5":{"d":"139,-87v0,-41,-59,-61,-80,-27r-43,-13r25,-139r121,0r0,45r-85,0r-8,49v61,-27,118,27,118,86v0,75,-98,124,-154,67v-17,-18,-28,-36,-29,-59r48,-1v2,20,20,39,42,39v26,0,45,-21,45,-47"},"6":{"d":"100,6v-78,0,-115,-92,-73,-156r76,-116r56,0r-59,90v58,-4,90,33,92,88v2,50,-41,94,-92,94xm99,-132v-23,-1,-45,21,-44,45v0,25,19,47,45,47v23,0,44,-22,44,-45v0,-25,-20,-47,-45,-47"},"7":{"d":"130,-221r-107,0r0,-45r157,0r0,45r-96,221r-53,0"},"8":{"d":"11,-82v1,-30,16,-56,39,-66v-44,-34,-14,-130,49,-123v61,-5,97,85,51,123v24,12,37,35,38,69v1,46,-43,85,-88,85v-49,0,-90,-40,-89,-88xm100,-122v-22,0,-41,19,-41,42v0,21,20,40,41,40v21,0,40,-18,40,-40v0,-24,-18,-43,-40,-42xm100,-224v-14,0,-28,12,-28,27v0,14,14,29,28,29v16,0,28,-14,28,-29v0,-16,-12,-27,-28,-27"},"9":{"d":"99,-271v86,0,112,99,68,165r-71,106r-56,0r59,-89v-55,5,-91,-36,-91,-86v0,-51,38,-96,91,-96xm99,-224v-23,0,-43,21,-43,45v0,25,18,46,44,46v25,0,43,-23,44,-46v1,-25,-20,-45,-45,-45"},":":{"d":"26,-48r48,0r0,48r-48,0r0,-48xm26,-181r48,0r0,48r-48,0r0,-48","w":100},";":{"d":"74,-48v2,52,3,101,-48,98r0,-24v13,-2,23,-9,21,-26r-21,0r0,-48r48,0xm26,-181r48,0r0,48r-48,0r0,-48","w":100},"<":{"d":"201,-15r-183,-81r0,-36r183,-81r0,39r-130,61r130,58r0,40","w":216},"=":{"d":"200,-59r-182,0r0,-41r182,0r0,41xm200,-129r-182,0r0,-41r182,0r0,41","w":216},">":{"d":"148,-113r-131,-61r0,-39r184,81r0,36r-184,81r0,-40","w":216},"?":{"d":"68,-46r48,0r0,46r-48,0r0,-46xm93,-223v-23,0,-32,15,-34,35r-47,0v2,-53,37,-84,89,-82v55,2,93,68,63,119v-16,27,-55,37,-48,83r-48,0v-4,-55,28,-75,52,-101v18,-19,2,-54,-27,-54"},"@":{"d":"28,-132v0,99,129,146,191,81r34,0v-24,32,-57,57,-110,57v-76,0,-142,-60,-142,-138v0,-76,64,-139,140,-139v140,0,173,220,35,220v-12,0,-22,-6,-21,-20v-32,39,-103,6,-97,-47v-8,-62,78,-115,120,-63r3,-19r35,0r-19,115v0,5,6,7,10,5v24,-10,35,-35,36,-66v2,-61,-43,-98,-103,-98v-64,-1,-112,49,-112,112xm138,-164v-39,-2,-51,71,-8,72v41,4,53,-71,8,-72","w":266},"A":{"d":"113,-266r39,0r112,266r-54,0r-29,-69r-95,0r-29,69r-54,0xm161,-117r-28,-80r-29,80r57,0","w":266,"k":{"y":18,"w":18,"v":18,"Y":50,"W":35,"V":46,"T":26}},"B":{"d":"197,-81v0,82,-84,86,-173,81r0,-266v78,-3,156,-2,157,70v0,24,-11,43,-29,51v27,8,45,31,45,64xm148,-83v0,-33,-38,-34,-74,-33r0,68v37,1,74,1,74,-35xm83,-164v50,15,67,-54,17,-54r-26,0r0,54r9,0","w":208},"C":{"d":"148,-41v30,0,51,-14,67,-31r57,0v-15,44,-69,78,-123,78v-74,0,-138,-64,-138,-139v0,-102,120,-178,212,-116v24,15,41,34,51,59r-57,0v-14,-18,-40,-33,-69,-33v-48,-1,-88,44,-88,92v0,46,41,90,88,90","w":280},"D":{"d":"236,-150v11,98,-55,155,-155,150r-57,0r0,-266r69,1v83,-2,135,42,143,115xm188,-131v0,-62,-46,-91,-114,-87r0,170v67,5,114,-23,114,-83","w":252},"E":{"d":"24,-266r143,0r0,48r-93,0r0,61r89,0r0,48r-89,0r0,61r93,0r0,48r-143,0r0,-266","w":187},"F":{"d":"24,-266r136,0r0,48r-86,0r0,61r82,0r0,48r-82,0r0,109r-50,0r0,-266","w":172,"k":{"A":34,".":15,",":15}},"G":{"d":"11,-131v0,-105,127,-180,220,-116v23,16,40,34,50,59r-59,0v-14,-19,-40,-35,-70,-35v-57,0,-94,40,-91,101v4,84,138,109,171,33r-111,0r0,-47r173,0v5,82,-64,142,-141,142v-75,0,-142,-61,-142,-137","w":302},"H":{"d":"24,-266r50,0r0,107r95,0r0,-107r49,0r0,266r-49,0r0,-112r-95,0r0,112r-50,0r0,-266","w":244},"I":{"d":"24,-266r50,0r0,266r-50,0r0,-266","w":100},"J":{"d":"75,-42v20,0,24,-14,25,-33r0,-191r49,0r-1,208v-1,60,-78,83,-122,46v-15,-12,-23,-29,-23,-49r50,0v1,12,10,19,22,19","w":172},"K":{"d":"24,-266r50,0r0,115r83,-115r59,0r-101,131r101,135r-59,0r-83,-117r0,117r-50,0r0,-266","w":223},"L":{"d":"24,-266r50,0r0,218r81,0r0,48r-131,0r0,-266","w":158,"k":{"y":27,"Y":32,"W":32,"V":32,"T":18}},"M":{"d":"24,-266r68,0r71,203r72,-203r67,0r0,266r-49,0r0,-199r-69,199r-41,0r-69,-199r0,199r-50,0r0,-266","w":324},"N":{"d":"24,-266r56,0r111,194r0,-194r49,0r0,266r-55,0r-111,-194r0,194r-50,0r0,-266","w":266},"O":{"d":"149,-271v75,0,139,64,139,140v0,74,-65,137,-139,137v-74,0,-138,-64,-138,-137v0,-76,64,-140,138,-140xm149,-223v-49,0,-89,43,-89,91v0,47,43,91,89,91v47,0,90,-43,90,-91v0,-49,-41,-91,-90,-91","w":302},"P":{"d":"194,-185v0,64,-49,93,-120,84r0,101r-50,0r0,-266r68,0v61,-4,102,26,102,81xm145,-184v0,-33,-34,-36,-71,-34r0,69v36,4,71,-1,71,-35","k":{"A":36,".":6,",":6}},"Q":{"d":"262,-45v8,6,23,9,36,7r0,44v-28,1,-52,-7,-69,-19v-91,54,-224,-13,-218,-118v4,-85,56,-136,140,-140v76,-3,144,63,142,140v-1,39,-11,63,-31,86xm188,-50v-26,-18,-69,-46,-111,-30v18,32,71,50,111,30xm153,-223v-56,5,-98,39,-92,103v67,-17,125,15,161,47v51,-51,4,-156,-69,-150","w":302},"R":{"d":"202,-181v0,46,-28,75,-70,83r72,98r-60,0r-70,-102r0,102r-50,0r0,-266r78,0v60,-2,100,30,100,85xm152,-179v0,-39,-37,-41,-78,-39r0,79v39,2,78,-1,78,-40","w":208,"k":{"y":-11,"Y":7,"W":7,"V":9,"T":-6}},"S":{"d":"128,-151v81,30,50,157,-37,157v-45,0,-87,-36,-86,-81r52,0v0,21,17,34,37,34v17,0,34,-15,34,-34v0,-31,-27,-38,-50,-46v-34,-12,-62,-30,-63,-74v-3,-66,87,-101,133,-54v15,16,23,33,23,54r-51,0v1,-16,-15,-28,-30,-28v-15,0,-27,12,-26,28v3,32,40,35,64,44","w":187},"T":{"d":"51,-218r-48,0r0,-48r147,0r0,48r-49,0r0,218r-50,0r0,-218","w":151,"k":{"y":4,"w":5,"u":20,"s":15,"r":15,"o":18,"i":2,"e":18,"c":18,"a":14,"A":25,";":4,":":4,".":-1,"-":4,",":-1}},"U":{"d":"114,6v-60,0,-91,-43,-90,-106r0,-166r50,0r1,188v3,21,17,39,41,37v28,-2,39,-25,39,-59r0,-166r49,0r0,166v3,64,-32,106,-90,106","w":230},"V":{"d":"3,-266r52,0r71,202r72,-202r52,0r-103,266r-41,0","w":252,"k":{"y":5,"u":24,"r":14,"o":29,"i":3,"e":29,"a":29,"A":45,";":5,":":5,".":5,"-":7,",":5}},"W":{"d":"3,-266r50,0r46,186r46,-186r36,0r45,186r47,-186r50,0r-77,266r-39,0r-44,-176r-44,176r-39,0","w":324,"k":{"u":14,"r":14,"o":18,"i":3,"e":18,"a":18,"A":34,";":4,":":4,".":4,"-":4,",":4}},"X":{"d":"94,-132r-92,-134r57,0r63,91r64,-91r57,0r-92,134r92,132r-57,0r-64,-91r-63,91r-57,0","w":244},"Y":{"d":"89,-98r-88,-168r54,0r58,122r58,-122r54,0r-87,168r0,98r-49,0r0,-98","w":223,"k":{"v":9,"u":30,"q":36,"p":22,"o":36,"i":2,"e":36,"a":36,"A":50,";":3,":":3,".":3,"-":22,",":3}},"Z":{"d":"108,-218r-96,0r0,-48r154,0r0,45r-100,173r107,0r0,48r-167,0r0,-42","w":180},"[":{"d":"105,46v-92,-10,-88,-144,-74,-241v5,-35,35,-66,74,-71r0,51v-45,20,-28,103,-28,164v0,21,9,41,28,46r0,51","w":115},"\\":{"d":"30,-266r38,0r113,266r-37,0","w":230},"]":{"d":"13,-266v92,10,87,137,75,235v-5,38,-34,72,-75,77r0,-51v48,-17,23,-100,29,-163v-3,-20,-10,-41,-29,-46r0,-52","w":115},"^":{"d":"23,-130r64,-136r44,0r64,136r-37,17r-49,-101r-49,101","w":216},"_":{"d":"0,50r0,-33r180,0r0,33r-180,0","w":180},"`":{"d":"47,-302r80,48r-19,33r-81,-45","w":151},"a":{"d":"111,-206v30,0,53,15,66,35r0,-28r44,0r0,199r-44,0r0,-27v-14,19,-37,33,-68,33v-63,0,-98,-43,-98,-105v0,-64,38,-107,100,-107xm176,-100v0,-34,-25,-59,-58,-59v-34,-1,-59,26,-59,61v0,32,27,58,59,58v33,0,58,-27,58,-60","w":237},"b":{"d":"131,6v-33,1,-53,-13,-68,-33r0,27r-44,0r0,-266r48,0r1,87v12,-17,35,-26,62,-27v60,-2,107,55,99,119v-8,54,-39,91,-98,93xm125,-159v-32,0,-61,24,-61,57v0,35,26,63,61,62v33,0,57,-26,57,-59v0,-32,-25,-60,-57,-60","w":237},"c":{"d":"59,-100v-6,57,80,81,103,35r54,0v-10,41,-53,75,-105,71v-59,-5,-98,-44,-100,-107v-3,-81,100,-136,168,-84v18,14,31,30,37,52r-54,0v-23,-46,-110,-24,-103,33","w":230},"d":{"d":"11,-99v-7,-89,108,-139,162,-80r0,-87r48,0r0,266r-44,0v-1,-8,2,-21,-1,-27v-12,20,-36,34,-66,33v-62,-3,-95,-44,-99,-105xm176,-100v0,-32,-29,-59,-60,-59v-28,0,-57,29,-57,58v0,33,25,61,58,61v33,0,59,-29,59,-60","w":237},"e":{"d":"117,-206v62,1,115,60,99,128r-154,0v7,39,70,50,97,21r53,-1v-10,34,-52,64,-96,64v-56,0,-105,-47,-105,-104v0,-59,47,-109,106,-108xm171,-121v-10,-49,-99,-48,-110,0r110,0","w":230},"f":{"d":"21,-199v0,-42,30,-79,78,-71r0,47v-21,1,-29,2,-31,24r28,0r0,42r-28,0r0,157r-47,0r0,-157r-17,0r0,-42r17,0","w":100,"k":{"f":-14}},"g":{"d":"11,-99v-7,-93,116,-142,165,-73r0,-27r44,0r0,169v12,122,-171,147,-206,45r54,0v31,35,114,17,108,-43v-17,21,-36,38,-73,34v-55,-6,-87,-46,-92,-105xm175,-99v0,-33,-27,-62,-60,-60v-33,2,-56,23,-56,59v-1,33,26,60,60,60v31,0,56,-29,56,-59","w":237},"h":{"d":"108,-159v-62,0,-36,97,-41,159r-48,0r0,-266r48,0r0,82v47,-49,146,-6,129,76r0,108r-48,0v-7,-61,24,-159,-40,-159","w":216},"i":{"d":"19,-199r48,0r0,199r-48,0r0,-199xm19,-266r48,0r0,44r-48,0r0,-44","w":86},"j":{"d":"6,20v21,2,20,-17,20,-33r0,-186r48,0r0,187v0,47,-23,76,-68,79r0,-47xm26,-266r48,0r0,44r-48,0r0,-44","w":93},"k":{"d":"19,-266r48,0r0,161r64,-94r57,0r-72,97r84,102r-64,0r-69,-93r0,93r-48,0r0,-266","w":208},"l":{"d":"19,-266r48,0r0,266r-48,0r0,-266","w":86},"m":{"d":"106,-159v-63,0,-32,99,-39,159r-48,0r0,-199r44,0v1,6,-2,14,1,18v20,-37,95,-28,110,6v12,-18,37,-31,63,-31v56,0,83,38,82,94r0,112r-48,0v-8,-57,24,-159,-37,-159v-63,0,-35,97,-41,159r-48,0v-6,-61,23,-159,-39,-159","w":338},"n":{"d":"111,-159v-66,0,-38,96,-44,159r-48,0r0,-199r45,0r0,18v36,-48,130,-16,130,41v0,43,2,93,3,140r-48,0v-7,-59,21,-159,-38,-159","w":216},"o":{"d":"118,-206v57,0,105,50,105,107v0,59,-50,105,-107,105v-57,0,-105,-49,-105,-105v0,-58,49,-107,107,-107xm175,-99v0,-33,-29,-64,-67,-59v-66,8,-62,118,8,118v33,0,59,-26,59,-59","w":230},"p":{"d":"228,-99v7,82,-108,143,-161,77r0,89r-48,0r0,-266r44,0v1,8,-2,19,1,25v13,-20,35,-32,64,-32v63,0,95,44,100,107xm123,-159v-33,0,-60,28,-59,60v1,35,22,57,57,59v34,2,59,-27,59,-60v0,-31,-26,-59,-57,-59","w":237},"q":{"d":"111,-206v30,0,52,12,64,33v3,-6,0,-18,1,-26r44,0r0,266r-48,0r-1,-89v-12,19,-32,27,-60,28v-58,2,-103,-52,-100,-107v3,-61,40,-105,100,-105xm118,-159v-33,0,-59,26,-59,59v-1,34,24,60,59,60v31,0,57,-29,57,-59v0,-31,-26,-60,-57,-60","w":237},"r":{"d":"110,-159v-67,0,-36,97,-43,159r-48,0r0,-199r44,0v1,6,-2,14,1,18v10,-16,22,-26,46,-25r0,47","w":115,"k":{"q":6,"o":6,"n":-2,"m":-2,"g":3,"f":-14,"e":3,"d":3,"c":10,".":-3,"-":4,",":-3}},"s":{"d":"65,-86v-67,-12,-63,-120,16,-120v33,0,65,29,65,61r-47,0v-2,-20,-37,-19,-37,3v0,15,17,16,27,20v30,10,62,18,62,60v0,63,-81,88,-123,49v-14,-13,-20,-29,-21,-49r49,-1v-1,26,47,32,47,4v0,-20,-21,-24,-38,-27","w":158},"t":{"d":"27,-157r-24,0r0,-42r24,0r0,-67r48,0r0,67r28,0r0,42r-28,0r0,157r-48,0r0,-157","w":108},"u":{"d":"108,-40v64,0,34,-98,41,-159r48,0r0,199r-44,0v-1,-6,2,-16,-1,-21v-9,18,-26,27,-50,27v-54,0,-83,-34,-83,-92r0,-113r48,0v7,59,-22,159,41,159","w":216},"v":{"d":"0,-199r54,0r46,131r46,-131r53,0r-81,199r-37,0"},"w":{"d":"4,-199r50,0r37,121r33,-121r38,0r33,121r37,-121r51,0r-73,199r-29,0r-38,-129r-38,129r-29,0","w":288},"x":{"d":"71,-103r-62,-96r56,0r35,54r34,-54r55,0r-61,96r71,103r-59,0r-40,-64r-41,64r-59,0"},"y":{"d":"75,-19r-73,-180r55,0r45,127r48,-127r54,0r-114,266r-51,0","w":208},"z":{"d":"7,-42r89,-115r-79,0r0,-42r136,0r0,42r-89,115r95,0r0,42r-152,0r0,-42","w":165},"{":{"d":"109,46v-121,17,-24,-146,-96,-157v74,-5,-27,-173,96,-154v-65,6,9,141,-61,154v68,5,-5,139,61,157","w":122},"|":{"d":"87,-266r43,0r0,266r-43,0r0,-266","w":216},"}":{"d":"109,-111v-72,9,30,169,-95,157v64,-8,-10,-144,61,-157v-69,-3,4,-136,-61,-154v41,-5,66,11,66,54v0,42,-12,99,29,100","w":122},"~":{"d":"148,-125v17,0,21,-17,29,-27r23,27v-14,43,-70,49,-107,24v-23,-15,-44,4,-52,24r-23,-27v13,-18,24,-44,54,-44v31,0,47,21,76,23","w":216}}});
;
Cufon.registerFont({"w":184,"face":{"font-family":"Vegur","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"277","descent":"-83","x-height":"4","bbox":"-15 -270 307 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+201D"},"glyphs":{" ":{"w":85},"A":{"d":"180,0r-29,-86r-98,0r-29,86r-15,0r86,-244r15,0r85,244r-15,0xm58,-99r89,0r-45,-127","w":207,"k":{"y":9,"Y":28,"w":10,"W":22,"V":24,"v":12,"T":27}},"a":{"d":"36,-168v44,-19,103,-8,103,48r0,120r-13,0v-1,-10,1,-25,-2,-33v-19,55,-107,45,-107,-18v0,-50,57,-67,108,-56v8,-57,-44,-69,-88,-49xm75,-8v36,1,55,-39,50,-87v-41,-9,-92,1,-92,42v0,28,18,45,42,45","w":167},"@":{"d":"179,-209v58,0,103,53,103,103v0,53,-29,88,-66,88v-15,0,-26,-10,-32,-29v-21,46,-87,43,-89,-16v-2,-66,52,-106,116,-87v-2,35,-32,121,9,121v27,0,49,-27,49,-71v0,-54,-38,-98,-97,-98v-75,0,-133,56,-133,127v0,94,99,132,172,87r1,10v-76,49,-185,4,-185,-90v0,-89,68,-145,152,-145xm140,-26v46,0,51,-71,58,-116v-53,-11,-92,23,-91,75v0,27,16,41,33,41","w":316},"`":{"d":"15,-253v7,1,17,-2,19,4v7,14,16,29,24,42r-14,0v-8,-12,-21,-31,-29,-46","w":88},"B":{"d":"113,-129v30,11,54,29,54,60v0,61,-70,81,-136,67r0,-240v59,-12,130,3,130,54v0,30,-24,52,-48,59xm45,-131v52,3,95,-3,100,-54v4,-41,-53,-55,-100,-45r0,99xm151,-67v0,-43,-51,-57,-106,-52r0,105v52,11,106,-7,106,-53","w":185},"b":{"d":"45,-139v38,-66,137,-39,137,49v0,89,-101,126,-137,57r-1,33r-13,0r0,-259r14,0r0,120xm104,-164v-48,0,-59,42,-59,95v0,36,27,60,59,60v35,0,62,-29,62,-78v0,-46,-22,-77,-62,-77","w":199},"C":{"d":"16,-121v0,-101,94,-151,180,-116r-2,13v-80,-32,-162,8,-162,102v0,95,79,135,158,101r2,13v-86,34,-176,-6,-176,-113","w":208},"c":{"d":"33,-89v0,70,57,96,115,70r2,13v-62,27,-133,-3,-133,-79v0,-80,75,-108,135,-81r-2,12v-50,-24,-117,-5,-117,65","w":164},"D":{"d":"31,-242v103,-19,195,21,192,113v-4,99,-86,146,-192,128r0,-241xm45,-230r0,217v91,14,159,-28,162,-113v3,-80,-71,-120,-162,-104","w":238},"d":{"d":"154,-33v-39,67,-137,37,-137,-50v0,-89,101,-125,137,-56r0,-120r14,0r0,259r-13,0xm95,-9v48,0,59,-41,59,-94v0,-36,-27,-61,-59,-61v-35,0,-62,29,-62,78v0,46,22,77,62,77","w":199},"#":{"d":"168,-147r-37,0r-9,57r38,0r0,11r-40,0r-11,66r-11,0r10,-66r-42,0r-11,66r-11,0r10,-66r-35,0r0,-11r37,0r10,-57r-39,0r0,-11r40,0r11,-66r12,0r-11,66r42,0r11,-66r12,0r-11,66r35,0r0,11xm110,-90r10,-57r-43,0r-9,57r42,0","w":187},"\"":{"d":"36,-180r-12,0r-1,-66v-1,-9,8,-7,16,-7xm67,-180r-11,0r-2,-66v0,-8,9,-7,17,-7","w":90},"!":{"d":"54,-8v0,17,-23,14,-23,0v0,-6,5,-11,11,-11v6,0,12,5,12,11xm49,-50r-13,0r-2,-194r17,0","w":84},"E":{"d":"45,-13r109,0r0,13r-123,0r0,-244r120,0r0,13r-106,0r0,99r94,0r0,12r-94,0r0,107","w":174},"e":{"d":"97,-177v46,0,66,43,60,91r-125,0v-3,67,55,92,110,68r1,12v-60,25,-127,3,-126,-79v0,-49,32,-92,80,-92xm33,-98r111,0v0,-39,-16,-67,-50,-67v-36,0,-59,32,-61,67","w":176},"F":{"d":"45,0r-14,0r0,-244r120,0r0,13r-106,0r0,102r94,0r0,13r-94,0r0,116","w":160},"f":{"d":"41,-173v-5,-65,31,-105,82,-85r-2,12v-43,-17,-72,16,-65,73r46,0r0,13r-46,0r0,160r-15,0r0,-160r-28,0r0,-13r28,0","w":112},"G":{"d":"16,-120v0,-105,96,-151,179,-116r-2,14v-75,-35,-161,4,-161,100v0,94,76,130,156,102r0,-83r-61,0r0,-13r75,0r0,106v-90,32,-186,2,-186,-110","w":224},"g":{"d":"167,-173r0,149v2,98,-70,114,-136,86r2,-13v62,34,135,2,119,-85v-37,69,-135,36,-135,-49v0,-89,101,-121,136,-54r1,-34r13,0xm94,-164v-35,0,-61,30,-61,77v0,46,23,76,62,76v46,0,58,-40,58,-92v0,-36,-27,-61,-59,-61","w":198},"H":{"d":"193,-244r15,0r0,244r-15,0r0,-120r-148,0r0,120r-14,0r0,-244r14,0r0,112r148,0r0,-112","w":238},"h":{"d":"45,-259r1,121v13,-25,36,-39,62,-39v76,1,48,106,53,177r-14,0v-6,-62,24,-164,-44,-164v-33,0,-58,28,-58,62r0,102r-14,0r0,-259r14,0","w":188},"I":{"d":"45,0r-14,0r0,-244r14,0r0,244","w":76},"i":{"d":"31,0r0,-173r14,0r0,173r-14,0xm38,-220v-6,0,-11,-5,-11,-11v0,-6,5,-11,11,-11v6,0,11,5,11,11v0,6,-5,11,-11,11","w":76},"J":{"d":"103,-78v1,70,-46,93,-101,77r2,-13v46,14,85,0,84,-63r0,-167r15,0r0,166","w":131},"j":{"d":"50,-173v-7,95,29,240,-63,247r-2,-13v31,-6,50,-22,50,-73r0,-161r15,0xm42,-220v-6,0,-10,-5,-10,-11v0,-6,4,-11,10,-11v6,0,11,5,11,11v0,6,-5,11,-11,11","w":80},"K":{"d":"185,-244r-104,117r112,127r-20,0r-102,-117r-26,30r0,87r-14,0r0,-244r14,0v2,45,-4,98,2,139r120,-139r18,0","w":189},"k":{"d":"156,-173r-71,71r80,102r-18,0r-72,-91r-30,31r0,60r-14,0r0,-259r14,0r1,183v17,-20,91,-97,91,-97r19,0","w":164},"L":{"d":"31,-244r14,0r0,231r113,0r0,13r-127,0r0,-244","w":167},"l":{"d":"45,0r-14,0r0,-259r14,0r0,259","w":76},"M":{"d":"232,-244r18,0r8,244r-14,0r-7,-225r-87,218r-14,0r-87,-218r-6,225r-13,0r9,-244r18,0r87,220","w":289},"m":{"d":"103,-176v28,0,39,24,49,44v23,-66,109,-58,109,19r0,113r-15,0v-6,-59,22,-163,-40,-163v-64,1,-53,95,-53,163r-14,0v-5,-60,21,-162,-41,-163v-64,0,-53,95,-53,163r-14,0r0,-173r13,0v1,11,-1,26,2,35v12,-24,30,-38,57,-38","w":288},"N":{"d":"213,-244r0,244r-19,0r-152,-230r1,230r-13,0r0,-244r20,0r151,230r-1,-230r13,0","w":243},"O":{"d":"126,4v-66,0,-110,-60,-110,-126v0,-66,44,-126,110,-126v66,0,111,60,111,126v0,66,-45,126,-111,126xm126,-9v58,0,95,-54,95,-113v0,-59,-37,-113,-95,-113v-58,0,-94,54,-94,113v0,59,36,113,94,113","w":252},"o":{"d":"17,-86v0,-55,34,-90,79,-90v45,0,79,35,79,90v0,55,-34,90,-79,90v-45,0,-79,-35,-79,-90xm33,-86v0,46,24,77,63,77v39,0,63,-31,63,-77v0,-46,-24,-78,-63,-78v-39,0,-63,32,-63,78","w":191},"P":{"d":"45,-231r0,114v53,9,103,-10,103,-60v0,-50,-51,-62,-103,-54xm31,0r0,-241v62,-15,136,3,133,60v-3,62,-57,86,-119,77r0,104r-14,0","w":177,"k":{"q":8,"o":8,"J":22,"g":8,"e":8,"d":8,"c":8,"a":9}},"p":{"d":"45,-139v38,-66,137,-39,137,49v0,89,-101,126,-137,57r0,104r-14,0r0,-244r13,0xm104,-164v-48,0,-59,42,-59,95v0,36,27,60,59,60v35,0,62,-29,62,-78v0,-46,-22,-77,-62,-77","w":199},"q":{"d":"154,-33v-39,67,-137,37,-137,-50v0,-89,101,-125,137,-56r1,-34r13,0r0,244r-14,0r0,-104xm95,-9v48,0,59,-41,59,-94v0,-36,-27,-61,-59,-61v-35,0,-62,29,-62,78v0,46,22,77,62,77","w":199},"Q":{"d":"237,-122v0,53,-29,102,-75,119r13,51r-14,4r-12,-51v-79,17,-133,-50,-133,-123v0,-66,44,-126,110,-126v66,0,111,60,111,126xm126,-9v58,0,95,-54,95,-113v0,-59,-37,-113,-95,-113v-58,0,-94,54,-94,113v0,59,36,113,94,113","w":252},"R":{"d":"45,-123v56,4,105,-5,105,-57v0,-48,-56,-61,-105,-49r0,106xm155,0v-15,-44,-9,-112,-66,-111r-44,0r0,111r-14,0r0,-240v61,-16,135,-1,135,56v0,36,-28,57,-52,66v46,10,40,76,58,118r-17,0","w":183},"r":{"d":"93,-177r-1,17v-58,5,-46,93,-47,160r-14,0r0,-174r13,0v1,14,-1,33,2,45v9,-28,26,-46,47,-48","w":97,"k":{"y":-4,"v":-4,"t":-8}},"s":{"d":"104,-42v7,-38,-87,-43,-78,-89v-3,-44,56,-54,87,-37r-1,12v-22,-13,-71,-12,-71,22v0,46,90,48,79,88v3,49,-65,61,-102,40r1,-12v30,15,86,14,85,-24","w":140},"S":{"d":"137,-60v0,-62,-109,-60,-109,-126v0,-59,72,-74,116,-53r-2,13v-33,-18,-102,-9,-98,37v-8,63,118,61,109,125v5,60,-79,82,-135,59r2,-14v43,19,117,13,117,-41","w":176},"T":{"d":"165,-244r0,13r-72,0r0,231r-15,0r0,-231r-73,0r0,-13r160,0","w":170,"k":{"n":28,"z":28,"y":19,"x":26,"w":21,"v":23,"u":28,"s":28,"r":28,"q":26,"o":26,"m":28,"J":31,"g":26,"e":26,"d":26,"c":26,"a":29,"A":27}},"t":{"d":"88,-173r0,13r-40,0r0,119v0,34,22,37,45,28r1,12v-27,11,-60,5,-60,-35r0,-124r-26,0r0,-13r26,0r0,-36r14,0r0,36r40,0","w":109},"U":{"d":"185,-82v0,55,-34,86,-79,86v-45,0,-78,-34,-78,-81r0,-167r14,0r0,163v0,46,28,72,65,72v95,0,56,-145,64,-235r14,0r0,162","w":211},"u":{"d":"143,-35v-14,26,-37,39,-62,39v-77,-1,-47,-106,-53,-177r14,0v6,62,-23,164,44,164v32,0,57,-28,57,-62r0,-102r15,0r0,173r-14,0","w":188},"v":{"d":"146,-173r14,0r-69,173r-15,0r-69,-173r15,0r62,157","w":165},"V":{"d":"91,0r-85,-244r15,0r78,226r78,-226r15,0r-86,244r-15,0","w":195,"k":{"z":17,"s":22,"q":14,"o":14,"J":22,"e":14,"d":14,"c":14,"a":19,"A":24}},"W":{"d":"293,-244r14,0r-75,244r-14,0r-61,-224r-61,224r-15,0r-74,-244r15,0r67,225r61,-225r15,0r61,225","w":312,"k":{"z":15,"s":21,"q":12,"o":12,"J":21,"g":12,"e":12,"d":12,"c":12,"a":17,"A":22}},"w":{"d":"242,-173r14,0r-60,173r-15,0r-49,-154r-48,154r-16,0r-60,-173r16,0r53,155r49,-155r15,0r49,155","w":263},"x":{"d":"147,-173r-60,84r65,89r-18,0r-56,-77r-56,77r-16,0r64,-89r-61,-84r18,0v19,23,32,52,53,73r51,-73r16,0","w":159},"X":{"d":"167,-244r-72,119r77,125r-17,0r-68,-113r-66,113r-16,0r76,-125r-73,-119r16,0r65,107r63,-107r15,0","w":174},"Y":{"d":"163,-244r16,0r-79,137r0,107r-14,0r0,-105r-80,-139r17,0r71,125","w":183,"k":{"n":27,"z":27,"u":27,"s":28,"r":27,"q":24,"o":24,"m":27,"J":27,"g":24,"d":24,"c":24,"a":26,"A":28}},"y":{"d":"91,1v-19,46,-40,66,-74,73r-1,-13v27,-5,49,-25,61,-61r-70,-173r15,0r63,157r62,-157r14,0","w":163},"z":{"d":"128,-160r-95,147r100,0r0,13r-116,0r0,-13r95,-147r-87,0r0,-13r103,0r0,13","w":149},"Z":{"d":"179,-13r0,13r-163,0r0,-13r141,-218r-130,0r0,-13r146,0r0,13r-141,218r147,0","w":195},"{":{"d":"29,-105r0,-11v45,0,20,-49,20,-81v0,-44,18,-59,53,-59r0,11v-61,-2,-39,57,-35,99v2,24,-6,28,-20,36v57,15,-34,138,55,134r0,11v-35,0,-53,-15,-53,-59v0,-32,25,-81,-20,-81","w":118},"|":{"d":"49,90r-12,0r0,-360r12,0r0,360","w":85},"}":{"d":"89,-105v-45,0,-20,49,-20,81v0,44,-18,59,-53,59r0,-11v61,2,40,-56,36,-99v-3,-24,6,-28,20,-36v-57,-15,34,-138,-56,-134r0,-11v35,0,53,15,53,59v0,32,-25,81,20,81r0,11","w":118},"~":{"d":"190,-107v-4,75,-103,7,-135,7v-13,0,-19,7,-19,23r-10,0v3,-75,104,-7,134,-7v13,0,19,-7,19,-23r11,0","w":215},"_":{"d":"172,31r-163,0r0,-11r163,0r0,11","w":181},"^":{"d":"103,-235r65,140r-12,0r-60,-129r-59,129r-13,0r66,-140r13,0","w":192},"]":{"d":"17,-241r0,-11r53,0r0,283r-53,0r0,-10r42,0r0,-262r-42,0","w":106},"\\":{"d":"11,-252r112,265r-12,0r-113,-265r13,0","w":121},"[":{"d":"90,-241r-42,0r0,262r42,0r0,10r-53,0r0,-283r53,0r0,11","w":106},";":{"d":"49,-166v0,15,-23,13,-23,0v0,-6,5,-12,11,-12v6,0,12,6,12,12xm26,-10v1,-8,11,-6,19,-6v-8,25,-18,53,-27,73r-14,2v8,-23,18,-52,22,-69","w":72},":":{"d":"47,-166v0,15,-23,13,-23,0v0,-6,5,-12,11,-12v6,0,12,6,12,12xm35,-19v6,0,12,5,12,11v0,17,-23,14,-23,0v0,-6,5,-11,11,-11","w":70},"9":{"d":"91,-240v40,0,73,35,73,96v0,79,-55,143,-114,148r-1,-13v55,-8,95,-61,99,-122v-25,62,-128,43,-128,-30v0,-48,31,-79,71,-79xm91,-106v32,0,56,-22,56,-52v0,-37,-26,-70,-57,-70v-28,0,-54,24,-54,65v0,33,22,57,55,57"},"8":{"d":"163,-62v2,87,-142,86,-142,5v0,-36,26,-53,56,-69v-24,-11,-46,-29,-46,-59v0,-32,28,-55,64,-55v33,0,63,23,63,53v0,30,-24,49,-49,60v34,16,54,34,54,65xm46,-185v0,28,21,43,48,53v56,-9,68,-94,1,-96v-29,0,-49,19,-49,43xm92,-9v29,0,56,-18,56,-50v0,-31,-23,-49,-57,-62v-33,13,-55,31,-55,60v0,31,25,52,56,52"},"7":{"d":"163,-237r0,13r-94,224r-15,0r94,-224r-122,0r0,-13r137,0"},"6":{"d":"93,4v-41,0,-72,-36,-72,-97v0,-79,54,-142,113,-147r2,12v-54,7,-99,63,-99,122v25,-63,128,-42,128,30v0,48,-32,80,-72,80xm94,-131v-32,0,-56,23,-56,52v0,38,25,70,56,70v28,0,55,-23,55,-64v0,-33,-22,-58,-55,-58"},"5":{"d":"48,-132v50,-22,112,3,112,59v0,65,-77,95,-134,66r1,-13v49,25,115,6,117,-49v2,-55,-56,-70,-96,-49r-13,-1r3,-118r110,0r0,13r-97,0"},"4":{"d":"144,-76r32,0r0,13r-32,0r0,63r-14,0r0,-63r-115,0r0,-12r114,-162r15,0r0,161xm130,-76r0,-140r-98,140r98,0"},"3":{"d":"159,-65v0,65,-79,84,-136,57r2,-13v45,23,117,14,118,-41v0,-31,-22,-50,-68,-52r0,-14v31,-2,63,-25,63,-56v0,-46,-61,-54,-100,-32r-2,-13v42,-23,117,-10,117,40v0,33,-29,53,-55,64v32,6,61,27,61,60"},"2":{"d":"157,-13r0,13r-133,0r0,-11v29,-40,127,-151,114,-169v4,-48,-64,-60,-101,-34r-2,-13v48,-29,122,-9,118,45v13,23,-72,120,-110,169r114,0"},"1":{"d":"44,-210v23,-8,40,-23,68,-27r0,237r-15,0r0,-218r-51,20"},"0":{"d":"93,-240v45,0,76,45,76,122v0,77,-31,122,-76,122v-45,0,-77,-45,-77,-122v0,-77,32,-122,77,-122xm93,-9v33,0,60,-39,60,-109v0,-70,-27,-110,-60,-110v-33,0,-61,40,-61,110v0,70,28,109,61,109"},"\/":{"d":"111,-252r12,0r-112,265r-13,0","w":121},".":{"d":"35,-19v6,0,12,5,12,11v0,17,-23,14,-23,0v0,-6,5,-11,11,-11","w":70},"-":{"d":"101,-98r0,11r-73,0r0,-11r73,0","w":129},",":{"d":"26,-10v1,-8,11,-6,19,-6v-8,25,-18,53,-27,73r-14,2v8,-23,18,-52,22,-69","w":69},"+":{"d":"116,-98r80,0r0,11r-80,0r0,87r-12,0r0,-87r-80,0r0,-11r80,0r0,-86r12,0r0,86","w":219},"*":{"d":"73,-243r14,0v0,17,-4,37,-2,52r47,-19r4,13v-16,5,-36,7,-50,14r33,39r-11,8r-28,-43r-28,43r-11,-8v10,-14,23,-25,32,-40r-49,-13r4,-13r48,19","w":159},")":{"d":"74,-111v0,59,-21,114,-43,145r-11,0v53,-68,54,-221,0,-289r11,0v22,31,43,85,43,144","w":105},"'":{"d":"45,-180r-11,0r-2,-66v0,-8,9,-7,17,-7","w":68},"%":{"d":"272,-58v0,34,-19,62,-50,62v-31,0,-50,-28,-50,-62v0,-34,19,-61,50,-61v31,0,50,27,50,61xm260,-58v0,-32,-16,-50,-38,-50v-22,0,-37,18,-37,50v0,32,15,51,37,51v22,0,38,-19,38,-51xm125,-179v0,34,-19,61,-50,61v-31,0,-49,-27,-49,-61v0,-34,18,-61,49,-61v31,0,50,27,50,61xm113,-179v0,-32,-16,-51,-38,-51v-22,0,-37,19,-37,51v0,32,15,50,37,50v22,0,38,-18,38,-50xm225,-248r13,0r-165,255r-14,0","w":297},"$":{"d":"53,-176v-10,48,110,59,97,107v0,31,-22,53,-54,57r0,34r-11,0r0,-33v-19,0,-36,-4,-52,-10r3,-13v35,17,101,16,99,-30v11,-48,-98,-56,-98,-109v0,-30,21,-47,48,-51r0,-35r12,0r0,34v18,0,31,4,42,9r-2,13v-28,-15,-87,-13,-84,27"},"&":{"d":"220,0r-20,0v-8,-8,-13,-18,-22,-25v-41,44,-157,41,-158,-35v-1,-37,27,-55,62,-80v-17,-20,-32,-37,-32,-59v0,-32,28,-49,51,-49v30,0,48,21,48,47v1,29,-21,43,-47,64r79,92v14,-18,22,-45,23,-76r14,0v-2,37,-13,66,-29,85xm100,-235v-46,0,-42,61,-6,88v25,-17,39,-28,39,-52v0,-21,-14,-36,-33,-36xm36,-62v-2,60,101,67,134,27r-80,-95v-34,22,-54,38,-54,68","w":231},"(":{"d":"32,-111v0,-59,21,-113,43,-144r11,0v-53,68,-54,221,0,289r-11,0v-22,-31,-43,-86,-43,-145","w":105},"<":{"d":"152,-29r0,13r-134,-73r0,-13r134,-72r0,13r-123,66","w":178},"=":{"d":"195,-49r-163,0r0,-11r163,0r0,11xm195,-124r-163,0r0,-11r163,0r0,11","w":226},">":{"d":"150,-95r-124,-66r0,-13r134,72r0,13r-134,73r0,-13","w":178},"?":{"d":"46,-50v-9,-65,52,-101,56,-151v3,-35,-54,-47,-84,-26r-1,-13v39,-21,101,-9,101,38v0,40,-71,93,-58,152r-14,0xm53,4v17,0,14,-23,0,-23v-6,0,-11,5,-11,11v0,6,5,12,11,12","w":138},"\u2019":{"d":"42,-248v2,-8,12,-4,20,-5v-8,25,-18,52,-27,72r-14,3v8,-23,17,-53,21,-70","w":85},"\u2018":{"d":"43,-184v-2,8,-11,6,-20,6v8,-25,18,-53,27,-73r14,-2v-8,23,-17,52,-21,69","w":85},"\u201c":{"d":"78,-184v-2,8,-11,6,-20,6v8,-25,18,-53,27,-73r14,-2v-8,23,-17,52,-21,69xm43,-184v-2,8,-11,6,-20,6v8,-25,18,-53,27,-73r14,-2v-8,23,-17,52,-21,69","w":120},"\u201d":{"d":"42,-248v2,-8,12,-4,20,-5v-8,25,-18,52,-27,72r-14,3v8,-23,17,-53,21,-70xm77,-248v2,-8,12,-4,20,-5v-8,25,-18,52,-27,72r-14,3v8,-23,17,-53,21,-70","w":120},"n":{"d":"44,-174v1,11,-1,27,2,36v13,-25,36,-39,62,-39v76,1,48,106,53,177r-14,0v-6,-62,24,-164,-44,-164v-33,0,-58,28,-58,62r0,102r-14,0r0,-174r13,0","w":188},"\u00a0":{"w":85}}});Cufon.registerFont({"w":200,"face":{"font-family":"Vegur","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"277","descent":"-83","bbox":"-22 -270 330 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+201D"},"glyphs":{" ":{"w":70},"`":{"d":"8,-253v17,2,39,-6,46,7v8,14,23,39,35,57r-37,1v-13,-16,-33,-46,-44,-65","w":112},"@":{"d":"184,-215v65,0,109,46,109,103v0,61,-33,94,-75,94v-23,0,-38,-8,-43,-25v-18,45,-90,31,-90,-24v0,-75,78,-105,142,-78r-11,72v-3,22,3,29,16,29v18,0,32,-26,32,-58v0,-51,-30,-86,-93,-86v-62,0,-122,46,-122,115v0,90,94,120,166,79r3,25v-86,47,-197,10,-198,-95v0,-92,77,-151,164,-151xm147,-50v24,7,33,-40,35,-69v-30,-8,-54,10,-54,46v0,15,9,23,19,23","w":323},"a":{"d":"30,-168v53,-23,134,-12,134,51r0,117r-47,0v-1,-7,1,-17,-2,-22v-22,43,-104,29,-104,-33v0,-47,54,-65,105,-57v2,-38,-51,-34,-81,-20xm85,-33v20,1,32,-16,31,-50v-23,-5,-55,-1,-55,25v0,14,9,25,24,25","w":185},"B":{"d":"191,-75v3,74,-90,86,-167,72r0,-237v71,-14,160,-6,160,55v0,26,-18,46,-41,54v31,9,48,28,48,56xm72,-144v32,2,60,-1,60,-31v0,-28,-27,-36,-60,-31r0,62xm139,-70v0,-33,-30,-40,-67,-37r0,69v34,4,67,0,67,-32","w":205},"!":{"d":"81,-25v0,16,-13,29,-29,29v-16,0,-28,-13,-28,-29v0,-16,12,-28,28,-28v16,0,29,12,29,28xm72,-71r-40,0r-3,-173r46,0","w":104},"\"":{"d":"53,-152r-35,0r-2,-88v-1,-16,28,-13,45,-13xm123,-152r-35,0r-2,-88v-1,-16,28,-13,46,-13","w":144},"#":{"d":"182,-138r-37,0r-6,39r33,0r0,27r-37,0r-10,59r-30,0r10,-59r-31,0r-9,59r-30,0r9,-59r-32,0r0,-27r37,0r6,-39r-33,0r0,-27r37,0r10,-59r30,0r-10,59r31,0r10,-59r29,0r-9,59r32,0r0,27xm109,-99r7,-39r-31,0r-6,39r30,0","w":194},"$":{"d":"111,-143v83,14,79,120,2,131r0,37r-35,0r0,-36v-18,-1,-37,-6,-51,-14r5,-37v21,9,43,14,61,14v19,0,30,-9,30,-24v0,-15,-11,-24,-34,-28v-72,-12,-77,-106,-9,-121r0,-41r36,0r0,38v19,1,36,7,47,13r-5,38v-18,-13,-72,-23,-78,5v0,13,8,21,31,25"},"%":{"d":"227,-119v34,0,61,25,61,61v0,36,-27,62,-61,62v-34,0,-61,-26,-61,-62v0,-36,27,-61,61,-61xm227,-32v11,0,20,-9,20,-26v0,-17,-9,-26,-20,-26v-11,0,-21,9,-21,26v0,17,10,26,21,26xm79,-240v34,0,61,25,61,61v0,36,-27,61,-61,61v-34,0,-61,-25,-61,-61v0,-36,27,-61,61,-61xm79,-153v11,0,21,-9,21,-26v0,-17,-10,-26,-21,-26v-11,0,-20,9,-20,26v0,17,9,26,20,26xm218,-248r35,0r-165,255r-35,0","w":306},"&":{"d":"253,0r-65,0v-5,-5,-7,-12,-13,-16v-50,38,-162,21,-162,-51v0,-33,22,-55,58,-74v-13,-12,-27,-29,-27,-53v0,-33,31,-54,69,-54v39,0,67,26,67,55v1,27,-18,43,-43,60r46,53v6,-9,11,-25,12,-42r48,0v-1,33,-13,57,-30,76xm112,-210v-27,2,-18,38,-1,45v19,-5,28,-44,1,-45xm65,-70v0,37,62,44,84,22r-52,-63v-18,9,-32,20,-32,41","w":261},"'":{"d":"53,-152r-35,0r-2,-88v-1,-16,28,-13,45,-13","w":74},"(":{"d":"99,-255v-42,97,-42,191,0,289r-35,0v-20,-33,-39,-88,-39,-145v0,-57,19,-111,39,-144r35,0","w":111},")":{"d":"13,34v42,-98,42,-192,0,-289r35,0v20,33,39,87,39,144v0,57,-19,112,-39,145r-35,0","w":111},"*":{"d":"73,-243r39,0v-1,18,-10,43,-6,57r50,-24r12,36v-18,5,-39,6,-55,12r39,41r-32,23v-10,-16,-17,-35,-28,-50r-27,50r-32,-23v13,-14,27,-27,39,-42r-55,-11r12,-36v18,8,33,18,52,24","w":185},"+":{"d":"127,-110r71,0r0,35r-71,0r0,75r-40,0r0,-75r-71,0r0,-35r71,0r0,-74r40,0r0,74","w":213},",":{"d":"22,-27v5,-21,30,-18,55,-18v-10,30,-23,67,-37,100r-43,4v11,-34,21,-67,25,-86","w":93},"-":{"d":"120,-110r0,35r-99,0r0,-35r99,0","w":141},".":{"d":"45,-53v16,0,28,12,28,28v0,16,-12,29,-28,29v-16,0,-28,-13,-28,-29v0,-16,12,-28,28,-28","w":90},"\/":{"d":"111,-252r44,0r-113,265r-44,0","w":153},"0":{"d":"100,-240v57,0,94,47,94,122v0,75,-37,122,-94,122v-57,0,-93,-47,-93,-122v0,-75,36,-122,93,-122xm100,-35v29,0,42,-26,42,-83v0,-57,-13,-84,-42,-84v-29,0,-41,27,-41,84v0,57,12,83,41,83"},"1":{"d":"36,-202v35,-11,57,-36,104,-35r0,237r-48,0r0,-182r-51,17"},"2":{"d":"181,-176v7,47,-64,100,-99,137r100,0r0,39r-161,0r0,-38v31,-32,122,-116,108,-133v0,-37,-56,-37,-89,-20r-5,-38v58,-25,149,-9,146,53"},"3":{"d":"181,-69v0,70,-104,90,-165,59r5,-39v33,17,108,26,108,-17v0,-21,-20,-32,-54,-34r0,-37v57,6,62,-66,8,-65v-14,0,-32,4,-47,10r-5,-38v54,-20,143,-11,143,46v0,33,-27,51,-54,57v35,5,61,25,61,58"},"4":{"d":"164,-237r0,150r35,0r0,38r-35,0r0,49r-48,0r0,-49r-112,0r0,-39r89,-149r71,0xm116,-87r1,-109v-9,22,-32,55,-63,109r62,0"},"5":{"d":"74,-145v52,-22,111,12,111,66v0,82,-101,99,-166,69r5,-38v41,19,106,23,109,-27v2,-31,-38,-48,-63,-29r-43,-1r5,-132r142,0r0,39r-98,0"},"6":{"d":"98,4v-45,0,-83,-31,-83,-96v0,-83,62,-144,139,-148r5,38v-45,3,-82,32,-90,70v42,-38,117,-2,117,55v0,54,-42,81,-88,81xm134,-72v6,-47,-63,-51,-67,-11v-4,56,66,64,67,11"},"7":{"d":"186,-237r0,39r-96,198r-49,0r97,-198r-116,0r0,-39r164,0"},"8":{"d":"185,-66v0,48,-42,70,-85,70v-48,0,-85,-25,-85,-67v-1,-30,23,-46,51,-59v-67,-28,-45,-118,37,-118v85,0,102,89,35,115v32,15,47,35,47,59xm102,-203v-37,5,-33,48,1,60v31,-7,39,-59,-1,-60xm100,-35v21,0,34,-13,34,-31v0,-18,-9,-29,-34,-40v-44,7,-45,71,0,71"},"9":{"d":"103,-240v45,0,82,31,82,96v0,83,-62,144,-139,148r-5,-38v45,-3,83,-32,91,-70v-41,40,-117,3,-117,-54v0,-54,42,-82,88,-82xm67,-164v-6,47,63,53,67,12v4,-57,-66,-66,-67,-12"},":":{"d":"45,-53v16,0,28,12,28,28v0,16,-12,29,-28,29v-16,0,-28,-13,-28,-29v0,-16,12,-28,28,-28xm45,-121v-16,0,-28,-12,-28,-28v0,-16,12,-29,28,-29v16,0,28,13,28,29v0,16,-12,28,-28,28","w":90},"<":{"d":"50,-96v31,19,67,32,100,49r0,45r-139,-70r0,-46r139,-70r0,45","w":169},";":{"d":"22,-27v5,-21,30,-18,55,-18v-10,30,-23,67,-37,100r-43,4v11,-34,21,-67,25,-86xm52,-121v-16,0,-28,-12,-28,-28v0,-16,12,-29,28,-29v16,0,29,13,29,29v0,16,-13,28,-29,28","w":97},"[":{"d":"115,-217r-45,0r0,213r45,0r0,35r-85,0r0,-283r85,0r0,35","w":125},"\\":{"d":"42,-252r113,265r-44,0r-113,-265r44,0","w":153},"]":{"d":"10,-217r0,-35r86,0r0,283r-86,0r0,-35r45,0r0,-213r-45,0","w":125},"^":{"d":"125,-243r63,141r-44,0r-42,-98r-42,98r-43,0r63,-141r45,0","w":204},"_":{"d":"199,51r-190,0r0,-35r190,0r0,35","w":208},"~":{"d":"194,-53v-19,8,-115,-47,-123,-41v-9,0,-17,9,-17,33r-36,0v0,-43,22,-68,60,-68v19,-8,115,47,123,41v9,0,17,-9,17,-33r35,0v0,44,-21,68,-59,68","w":271},"}":{"d":"35,-70v-3,-24,14,-35,35,-41v-42,-3,-37,-45,-30,-82v2,-17,-9,-27,-31,-27r0,-36v45,0,77,17,72,58v-4,30,-15,75,24,70r0,35v-39,-5,-28,40,-24,70v5,41,-27,58,-72,58r0,-36v43,2,30,-38,26,-69","w":127},"|":{"d":"70,90r-40,0r0,-360r40,0r0,360","w":99},"{":{"d":"57,-111v20,6,38,16,35,41v-4,31,-17,71,26,69r0,36v-45,0,-77,-17,-72,-58v4,-30,15,-75,-24,-70r0,-35v39,5,28,-40,24,-70v-5,-41,27,-58,72,-58r0,36v-43,-2,-29,38,-26,69v3,23,-12,37,-35,40","w":127},"z":{"d":"21,-176r131,0r0,37r-83,102r85,0r0,37r-143,0r0,-36r83,-103r-73,0r0,-37","w":164},"y":{"d":"122,-13v-25,65,-54,83,-99,87r-5,-37v29,-3,42,-14,50,-36r-68,-177r51,0r43,134v11,-48,28,-89,42,-134r49,0","w":183},"Z":{"d":"63,-38v39,4,86,0,128,1r0,37r-182,0r0,-40r121,-167r-110,0r0,-37r164,0r0,40","w":198},"=":{"d":"215,-113r-190,0r0,-35r190,0r0,35xm215,-36r-190,0r0,-35r190,0r0,35","w":239},">":{"d":"19,-47r101,-49r-101,-47r0,-45r139,70r0,46r-139,70r0,-45","w":169},"?":{"d":"94,-25v0,-16,-13,-28,-29,-28v-16,0,-28,12,-28,28v0,16,12,29,28,29v16,0,29,-13,29,-29xm41,-71v-11,-45,53,-76,53,-113v0,-30,-56,-30,-80,-14r-5,-37v50,-26,141,-13,137,48v10,37,-59,70,-58,116r-47,0","w":159},"\u201d":{"d":"39,-236v5,-22,31,-16,55,-17v-10,30,-23,66,-37,99r-43,5v11,-34,21,-68,25,-87xm116,-236v5,-22,32,-17,56,-17v-10,30,-24,66,-38,99r-43,5v11,-34,20,-68,25,-87","w":187},"\u2019":{"d":"39,-236v5,-22,31,-16,55,-17v-10,30,-23,66,-37,99r-43,5v11,-34,21,-68,25,-87","w":110},"\u201c":{"d":"149,-167v-5,22,-31,18,-56,18v10,-30,24,-67,38,-100r43,-4v-11,34,-21,67,-25,86xm72,-167v-5,22,-31,18,-56,18v10,-30,24,-67,38,-100r42,-4v-11,34,-20,67,-24,86","w":187},"\u2018":{"d":"72,-167v-5,22,-31,18,-56,18v10,-30,24,-67,38,-100r42,-4v-11,34,-20,67,-24,86","w":110},"q":{"d":"145,-21v-47,52,-133,17,-133,-64v0,-80,82,-124,133,-70r1,-21r47,0r0,247r-48,0r0,-92xm105,-33v29,0,40,-25,40,-59v0,-31,-15,-50,-40,-50v-28,0,-43,22,-43,55v0,33,14,54,43,54","w":217},"Q":{"d":"261,-122v0,53,-30,96,-74,115r14,51r-47,12r-13,-53v-76,6,-131,-53,-131,-125v0,-71,52,-125,125,-125v73,0,126,54,126,125xm135,-35v41,0,73,-30,73,-87v0,-57,-32,-87,-73,-87v-41,0,-72,30,-72,87v0,57,31,87,72,87","w":270},"S":{"d":"26,-176v0,-71,90,-83,145,-63r-5,38v-25,-10,-90,-17,-90,20v0,21,15,29,38,35v40,12,66,29,66,71v0,75,-97,93,-164,69r5,-39v39,13,108,21,108,-22v0,-20,-13,-30,-36,-36v-37,-10,-67,-29,-67,-73","w":196},"R":{"d":"72,-136v35,2,63,-3,63,-36v0,-33,-30,-39,-63,-34r0,70xm143,0v-16,-42,-3,-112,-71,-99r0,99r-48,0r0,-240v25,-4,54,-6,74,-6v107,0,115,103,45,124v38,14,36,79,53,122r-53,0"},"r":{"d":"128,-179r-1,47v-41,5,-54,11,-55,66r0,66r-48,0r0,-176r47,0v1,10,-1,24,2,32v10,-19,32,-34,55,-35","w":128,"k":{"v":-8,"t":-4,"y":-8}},"s":{"d":"67,-67v-30,-8,-48,-22,-48,-55v0,-50,65,-69,111,-49r-5,36v-14,-7,-54,-14,-56,8v0,9,5,16,17,19v37,10,52,23,52,53v0,56,-77,71,-127,49r5,-36v22,10,72,17,72,-7v0,-9,-8,-14,-21,-18","w":149},"T":{"d":"207,-244r0,38r-77,0r0,206r-48,0r0,-206r-77,0r0,-38r202,0","w":212,"k":{"A":30,"c":33,"d":33,"e":33,"g":33,"J":35,"m":35,"n":35,"o":33,"x":26,"w":25,"v":26,"u":35,"s":35,"r":35,"q":33,"y":22,"z":32,"a":31}},"t":{"d":"131,-176r0,37r-45,0v3,44,-18,124,44,103r5,35v-43,12,-97,6,-97,-50r0,-88r-30,0r0,-37r30,0r0,-40r48,0r0,40r45,0","w":145},"u":{"d":"96,-35v54,0,33,-88,37,-141r48,0r0,176r-47,0v-1,-7,1,-17,-2,-22v-30,45,-111,30,-111,-41r0,-113r48,0r0,106v0,24,8,35,27,35","w":205},"U":{"d":"210,-84v0,58,-42,88,-94,88v-52,0,-93,-30,-93,-81r0,-167r48,0r0,163v0,31,22,46,46,46v25,0,48,-13,48,-46r0,-163r45,0r0,160","w":231},"V":{"d":"168,-244r49,0r-85,244r-49,0r-84,-244r51,0r32,100v9,24,16,61,28,98v19,-81,37,-127,58,-198","w":213,"k":{"A":27,"c":15,"d":15,"e":15,"g":15,"J":22,"o":15,"s":20,"q":15,"z":13,"a":19}},"v":{"d":"136,-176r49,0r-68,176r-50,0r-67,-176r51,0r43,134v11,-48,28,-89,42,-134","w":183},"W":{"d":"282,-244r48,0r-73,244r-49,0v-16,-70,-33,-113,-43,-196v-11,82,-27,126,-44,196r-48,0r-73,-244r50,0v16,68,37,119,47,198r16,-81r29,-117r48,0v16,68,35,118,44,197v13,-69,31,-133,48,-197","w":327,"k":{"A":24,"c":13,"d":13,"e":13,"g":13,"J":21,"o":13,"s":18,"q":13,"z":11,"a":17}},"w":{"d":"232,-176r49,0r-60,176r-50,0v-11,-45,-25,-82,-30,-134v-7,50,-19,90,-30,134r-50,0r-60,-176r52,0v11,42,29,93,34,137v5,-42,20,-95,31,-137r49,0r32,137v4,-45,23,-95,33,-137","w":280},"x":{"d":"116,-92r65,92r-59,0v-13,-18,-20,-41,-35,-57r-33,57r-55,0r63,-90r-62,-86r59,0v11,17,19,36,31,52r31,-52r56,0","w":181},"X":{"d":"195,-244r-70,118r76,126r-57,0r-47,-85r-45,85r-53,0r73,-123r-72,-121r57,0r43,78r42,-78r53,0","w":197},"Y":{"d":"153,-244r52,0r-78,139r0,105r-49,0r0,-101r-79,-143r55,0r50,99","w":201,"k":{"A":32,"c":28,"d":28,"e":28,"g":28,"J":26,"m":22,"n":22,"o":28,"u":22,"s":31,"q":28,"a":31}},"P":{"d":"72,-206r0,80v36,2,63,-5,64,-41v0,-35,-29,-44,-64,-39xm24,0r0,-240v78,-17,167,-2,164,68v-2,65,-53,92,-116,85r0,87r-48,0","w":192,"k":{"c":4,"d":4,"e":4,"g":4,"J":27,"o":4,"q":4,"a":10}},"p":{"d":"72,-155v47,-51,134,-16,134,64v0,81,-84,126,-134,70r0,92r-48,0r0,-247r47,0xm112,-142v-29,0,-40,24,-40,58v0,31,15,51,40,51v28,0,43,-22,43,-55v0,-33,-14,-54,-43,-54","w":217},"N":{"d":"235,-244r0,244r-68,0v-35,-69,-69,-119,-100,-197r1,197r-45,0r0,-244r68,0v35,70,68,118,100,197r-1,-197r45,0","w":257},"O":{"d":"135,-247v73,0,126,54,126,125v0,71,-53,126,-126,126v-73,0,-125,-55,-125,-126v0,-71,52,-125,125,-125xm135,-35v41,0,73,-30,73,-87v0,-57,-32,-87,-73,-87v-41,0,-72,30,-72,87v0,57,31,87,72,87","w":270},"o":{"d":"101,-179v56,0,90,40,90,91v0,51,-34,92,-90,92v-56,0,-89,-41,-89,-92v0,-51,33,-91,89,-91xm101,-33v27,0,39,-24,39,-55v0,-31,-12,-54,-39,-54v-27,0,-39,23,-39,54v0,31,12,55,39,55","w":202},"n":{"d":"109,-141v-54,0,-33,88,-37,141r-48,0r0,-176r47,0v1,7,-1,18,2,23v30,-46,112,-30,112,41r0,112r-49,0r0,-105v0,-24,-8,-36,-27,-36","w":205},"M":{"d":"215,-235r59,0r9,235r-49,0r-2,-118v-1,-22,2,-40,1,-57v-12,58,-39,114,-57,168r-51,0v-17,-53,-44,-112,-56,-167r-1,174r-45,0r8,-235r59,0v20,62,48,119,62,187v18,-65,41,-126,63,-187","w":306},"m":{"d":"72,-153v20,-34,87,-35,101,6v28,-52,109,-40,109,33r0,114r-49,0r0,-107v0,-22,-8,-34,-26,-34v-42,-2,-28,94,-30,141r-48,0r0,-107v0,-22,-8,-34,-26,-34v-41,-2,-30,93,-31,141r-48,0r0,-176r47,0","w":302},"L":{"d":"24,-244r48,0r0,207r110,0r0,37r-158,0r0,-244","w":184},"l":{"d":"72,0r-48,0r0,-259r48,0r0,259","w":95},"k":{"d":"190,-176r-74,74r79,102r-61,0v-18,-21,-32,-48,-52,-67v-16,9,-8,43,-10,67r-48,0r0,-259r48,0r1,151v17,-24,35,-45,53,-68r64,0","w":187},"K":{"d":"215,-244r-104,114r111,130r-66,0r-77,-96r-7,9r0,87r-48,0r0,-244r48,0r1,100r81,-100r61,0","w":214},"J":{"d":"119,-86v2,78,-59,101,-125,85r5,-38v39,12,72,-2,72,-45r0,-160r48,0r0,158","w":137},"j":{"d":"53,-191v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27v0,15,-13,28,-28,28xm77,-14v0,64,-41,84,-94,88r-5,-37v31,-4,51,-15,51,-49r0,-164r48,0r0,162","w":100},"i":{"d":"24,0r0,-176r48,0r0,176r-48,0xm48,-191v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27v0,15,-13,28,-28,28","w":95},"I":{"d":"72,0r-48,0r0,-244r48,0r0,244","w":95},"H":{"d":"183,-244r48,0r0,244r-48,0r0,-107r-111,0r0,107r-48,0r0,-244r48,0r0,99r111,0r0,-99","w":254},"h":{"d":"109,-141v-54,0,-33,88,-37,141r-48,0r0,-259r48,0r1,106v30,-46,112,-30,112,41r0,112r-49,0r0,-105v0,-24,-8,-36,-27,-36","w":205},"g":{"d":"193,-176r0,150v4,90,-89,119,-167,88r5,-37v49,24,120,16,113,-48v-47,51,-132,16,-132,-63v0,-79,83,-123,132,-69r1,-21r48,0xm104,-142v-27,0,-42,20,-42,53v0,33,15,53,43,53v28,0,39,-23,39,-56v0,-31,-15,-50,-40,-50","w":216},"G":{"d":"211,-198v-68,-25,-149,-10,-149,76v0,74,53,99,113,82r0,-54r-44,0r0,-38r92,0r0,121v-98,34,-213,14,-213,-107v0,-111,113,-153,206,-118","w":242},"F":{"d":"72,0r-48,0r0,-244r142,0r0,38r-94,0r0,65r82,0r0,38r-82,0r0,103","w":169},"f":{"d":"37,-176v-3,-67,52,-100,113,-82r-5,36v-31,-12,-64,3,-59,46r43,0r0,37r-43,0r0,139r-49,0r0,-139r-29,0r0,-37r29,0","w":135},"E":{"d":"72,-39r97,0r0,39r-145,0r0,-244r142,0r0,38r-94,0r0,61r82,0r0,38r-82,0r0,68","w":179},"e":{"d":"103,-179v54,0,80,50,70,105r-114,0v1,47,63,48,99,30r5,36v-62,29,-151,7,-151,-75v0,-58,36,-96,91,-96xm98,-142v-19,0,-33,15,-37,35r68,0v-1,-18,-10,-35,-31,-35","w":187},"d":{"d":"145,-21v-47,52,-133,17,-133,-64v0,-80,82,-124,133,-70r0,-104r48,0r0,259r-47,0xm105,-33v29,0,40,-25,40,-59v0,-31,-15,-50,-40,-50v-28,0,-43,22,-43,55v0,33,14,54,43,54","w":217},"D":{"d":"24,-240v105,-19,223,3,223,108v0,117,-108,149,-223,129r0,-237xm72,-205r0,167v70,7,121,-11,123,-87v2,-66,-54,-90,-123,-80","w":256},"C":{"d":"10,-120v0,-108,115,-151,207,-116r-5,38v-68,-24,-150,-12,-150,76v0,86,81,102,147,75r5,39v-91,32,-204,3,-204,-112","w":225},"c":{"d":"63,-87v0,56,54,63,92,45r5,36v-64,26,-148,3,-148,-77v0,-85,84,-112,150,-86r-5,36v-40,-18,-94,-10,-94,46","w":170},"b":{"d":"72,-155v47,-51,134,-16,134,64v0,81,-84,126,-134,70r-1,21r-47,0r0,-259r48,0r0,104xm112,-142v-29,0,-40,24,-40,58v0,31,15,51,40,51v28,0,43,-22,43,-55v0,-33,-14,-54,-43,-54","w":217},"A":{"d":"172,0r-23,-72r-73,0r-23,72r-48,0r84,-244r50,0r84,244r-51,0xm113,-199r-26,89r51,0v-8,-24,-15,-48,-25,-89","w":227,"k":{"Y":32,"w":14,"W":24,"v":16,"V":27,"T":30,"y":9}},"\u00a0":{"w":70}}});;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 The Monotype Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Arial is a trademark of The Monotype Corporation in the United States and/or
 * other countries.
 * 
 * Manufacturer:
 * The Monotype Corporation
 * 
 * Designer:
 * Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Arial","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 4 2 2 2 2 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-17 -281 352 76.2176","underline-thickness":"26.3672","underline-position":"-24.9609","unicode-range":"U+0020-U+00A9"},"glyphs":{" ":{"w":100,"k":{"Y":7,"T":7,"A":20}},"\u00a0":{"w":100},"!":{"d":"41,-64r-10,-137r0,-57r39,0v1,69,-5,130,-9,194r-20,0xm32,0r0,-36r37,0r0,36r-37,0","w":100},"\"":{"d":"25,-166v-5,-28,-10,-57,-8,-92r36,0v2,35,-3,64,-8,92r-20,0xm83,-166v-5,-28,-10,-57,-8,-92r36,0v2,35,-3,64,-9,92r-19,0","w":127},"#":{"d":"18,4r15,-74r-29,0r0,-27r35,0r13,-63r-48,0r0,-27r53,0r15,-75r27,0r-16,75r56,0r15,-75r27,0r-16,75r31,0r0,27r-36,0r-13,63r49,0r0,27r-54,0r-16,74r-26,0r15,-74r-55,0r-16,74r-26,0xm65,-97r55,0r13,-63r-55,0"},"$":{"d":"183,-73v2,43,-32,78,-75,78r0,32r-18,0r0,-32v-49,-4,-73,-29,-77,-77r32,-6v3,33,19,53,45,57r0,-101v-35,-7,-74,-27,-72,-72v1,-41,27,-69,72,-72r0,-15r18,0r0,15v40,4,64,26,69,63r-33,5v-3,-24,-15,-37,-36,-42r0,92v48,10,72,26,75,75xm90,-240v-32,2,-52,44,-31,70v6,7,17,14,31,18r0,-88xm108,-21v34,-1,56,-49,34,-78v-6,-7,-17,-13,-34,-19r0,97"},"%":{"d":"75,-126v-37,0,-55,-29,-54,-70v0,-34,18,-66,54,-66v35,0,56,29,56,68v0,39,-22,67,-56,68xm104,-195v0,-27,-7,-45,-28,-45v-22,0,-27,18,-27,47v0,28,6,45,27,45v22,0,28,-18,28,-47xm76,9r141,-271r26,0r-141,271r-26,0xm242,9v-36,0,-54,-29,-54,-69v0,-37,18,-67,54,-67v34,1,56,29,56,68v0,39,-21,68,-56,68xm270,-60v0,-27,-6,-45,-27,-45v-22,0,-28,19,-28,48v0,26,7,45,28,45v22,0,27,-19,27,-48","w":320},"&":{"d":"112,-262v34,0,60,24,60,55v0,24,-17,46,-49,63r46,59v5,-10,10,-22,13,-36r32,7v-6,22,-12,40,-22,55v12,16,25,29,40,40r-21,25v-13,-8,-26,-20,-40,-36v-18,20,-40,33,-74,34v-45,2,-83,-33,-82,-75v1,-40,29,-60,62,-77v-18,-21,-27,-30,-29,-57v-2,-32,30,-57,64,-57xm110,-236v-30,0,-39,38,-17,55r14,16v21,-13,29,-18,32,-41v1,-17,-13,-30,-29,-30xm50,-73v-2,35,40,65,77,41v10,-6,18,-14,24,-23r-58,-72v-26,16,-41,26,-43,54","w":240},"'":{"d":"24,-166v-5,-28,-10,-57,-8,-92r36,0v2,35,-3,64,-9,92r-19,0","w":68},"(":{"d":"107,-262v-66,97,-72,231,0,338r-23,0v-31,-40,-62,-101,-62,-169v1,-74,27,-121,62,-169r23,0","w":119},")":{"d":"107,-93v1,68,-32,129,-63,169r-22,0v71,-107,66,-242,0,-338r22,0v35,49,62,96,63,169","w":119},"*":{"d":"11,-210r8,-25v19,7,33,12,41,17v-2,-21,-4,-36,-4,-44r26,0v0,12,-2,27,-4,44v12,-6,25,-12,41,-17r8,25v-15,5,-29,7,-43,9v7,6,17,18,30,34r-21,15v-7,-9,-15,-22,-24,-38v-9,17,-16,29,-23,38r-21,-15v14,-17,23,-29,29,-34v-15,-3,-29,-5,-43,-9","w":140},"+":{"d":"90,-42r0,-70r-70,0r0,-30r70,0r0,-70r30,0r0,70r70,0r0,30r-70,0r0,70r-30,0","w":210},",":{"d":"32,0r0,-36r36,0v1,40,2,77,-29,87r-9,-14v15,-6,20,-16,20,-37r-18,0","w":100},"-":{"d":"11,-77r0,-32r98,0r0,32r-98,0","w":119},"\u00ad":{"d":"11,-77r0,-32r98,0r0,32r-98,0","w":119},".":{"d":"33,0r0,-36r36,0r0,36r-36,0","w":100},"\/":{"d":"0,4r75,-266r25,0r-75,266r-25,0","w":100},"0":{"d":"99,4v-67,0,-84,-54,-84,-131v0,-75,16,-132,84,-132v67,0,84,56,84,132v0,74,-16,131,-84,131xm99,-233v-46,6,-52,44,-52,106v0,65,8,98,52,105v44,-6,51,-40,51,-105v0,-65,-6,-99,-51,-106"},"1":{"d":"39,-194v32,-13,61,-39,75,-65r20,0r0,259r-32,0r0,-202v-14,14,-43,31,-63,39r0,-31","k":{"1":27}},"2":{"d":"181,-187v0,78,-96,103,-126,157r126,0r0,30r-170,0v6,-90,131,-106,137,-188v2,-26,-21,-46,-48,-45v-31,0,-51,20,-51,52r-32,-3v3,-47,35,-75,84,-75v46,0,80,30,80,72"},"3":{"d":"136,-140v88,26,42,150,-39,145v-45,-3,-78,-32,-82,-73r32,-4v6,31,18,50,50,50v30,1,54,-23,53,-53v0,-37,-34,-60,-72,-47r3,-28v28,4,58,-12,58,-42v0,-23,-19,-41,-42,-41v-28,0,-43,20,-47,47r-32,-6v7,-38,36,-64,78,-67v71,-6,103,95,40,119"},"4":{"d":"116,0r0,-62r-111,0r0,-29r117,-167r26,0r0,167r35,0r0,29r-35,0r0,62r-32,0xm116,-91r0,-116r-80,116r80,0"},"5":{"d":"186,-87v0,102,-163,129,-171,19r33,-2v3,29,21,48,50,48v31,0,54,-28,54,-63v0,-60,-78,-75,-102,-33r-29,-4r25,-132r128,0r0,30r-103,0r-14,69v54,-41,129,2,129,68"},"6":{"d":"14,-121v0,-103,66,-171,142,-121v14,9,20,27,23,47r-31,3v-4,-35,-42,-53,-70,-32v-23,18,-33,45,-33,91v13,-20,34,-34,63,-34v43,-1,77,38,76,83v-2,50,-31,88,-81,88v-63,0,-89,-47,-89,-125xm101,-139v-29,0,-52,24,-51,56v1,33,19,61,52,61v29,0,49,-26,49,-60v0,-33,-19,-57,-50,-57"},"7":{"d":"53,0v4,-86,46,-174,90,-224r-126,0r0,-30r167,0r0,24v-47,54,-92,133,-98,230r-33,0"},"8":{"d":"15,-75v1,-36,19,-57,49,-65v-71,-23,-35,-126,35,-119v70,-9,105,99,37,119v29,9,47,30,48,66v1,46,-38,78,-85,78v-48,0,-85,-33,-84,-79xm99,-233v-23,0,-42,18,-42,40v0,24,18,41,43,41v23,0,41,-18,41,-40v0,-23,-19,-41,-42,-41xm99,-126v-29,0,-53,23,-52,52v2,30,22,52,53,52v29,1,52,-22,52,-51v0,-30,-23,-53,-53,-53"},"9":{"d":"184,-134v0,81,-20,135,-92,138v-42,2,-68,-26,-72,-64r30,-2v5,25,16,40,43,40v49,0,58,-49,60,-99v-11,18,-35,34,-62,34v-43,0,-76,-38,-76,-85v0,-49,34,-90,81,-87v64,4,88,47,88,125xm99,-115v31,-1,50,-24,50,-58v0,-33,-19,-60,-49,-60v-30,1,-53,29,-53,62v0,31,22,56,52,56"},":":{"d":"33,-151r0,-36r36,0r0,36r-36,0xm33,0r0,-36r36,0r0,36r-36,0","w":100},";":{"d":"32,-151r0,-36r36,0r0,36r-36,0xm32,0r0,-36r36,0v1,40,2,77,-29,87r-9,-14v15,-6,20,-16,20,-37r-18,0","w":100},"\u037e":{"d":"32,-151r0,-36r36,0r0,36r-36,0xm32,0r0,-36r36,0v1,40,2,77,-29,87r-9,-14v15,-6,20,-16,20,-37r-18,0","w":100},"<":{"d":"20,-113r0,-29r170,-72r0,31r-135,56r135,56r0,31","w":210},"=":{"d":"190,-152r-170,0r0,-29r170,0r0,29xm190,-73r-170,0r0,-30r170,0r0,30","w":210},">":{"d":"190,-113r-170,73r0,-31r135,-56r-135,-56r0,-31r170,72r0,29","w":210},"?":{"d":"182,-192v0,61,-74,60,-69,129r-30,0v-10,-71,61,-75,67,-127v3,-24,-25,-47,-50,-46v-31,2,-47,20,-52,52r-32,-4v6,-45,33,-74,83,-74v46,0,83,28,83,70xm81,0r0,-36r36,0r0,36r-36,0"},"@":{"d":"238,1v-22,0,-33,-7,-34,-30v-13,16,-30,30,-54,30v-108,0,-62,-192,28,-192v25,0,42,14,53,33r6,-27r31,0r-30,145v0,7,5,11,12,11v38,-8,68,-51,68,-97v0,-70,-56,-111,-126,-111v-89,0,-145,64,-146,152v-1,91,61,134,151,135v57,0,101,-22,124,-53r31,0v-26,46,-78,80,-155,79v-107,-1,-177,-53,-177,-158v0,-107,64,-180,174,-180v88,0,146,52,150,137v3,58,-51,127,-106,126xm180,-164v-61,-1,-88,129,-23,139v41,-6,61,-45,64,-89v1,-28,-16,-50,-41,-50","w":365},"A":{"d":"-1,0r99,-258r37,0r106,258r-39,0r-30,-78r-108,0r-28,78r-37,0xm74,-106r87,0r-45,-125v-9,45,-28,84,-42,125","w":240,"k":{"y":7,"w":7,"v":7,"Y":27,"W":13,"V":27,"T":27," ":20}},"B":{"d":"221,-75v1,89,-104,75,-195,75r0,-258v82,0,182,-14,182,66v0,27,-15,46,-36,55v29,8,48,29,49,62xm175,-188v0,-52,-64,-37,-115,-39r0,78v50,-2,115,12,115,-39xm186,-75v0,-55,-70,-43,-126,-44r0,89v56,-2,126,12,126,-45","w":240},"C":{"d":"136,-25v43,0,68,-26,76,-65r34,8v-12,51,-48,86,-107,86v-84,1,-113,-57,-121,-135v-14,-136,189,-182,223,-56r-33,8v-11,-33,-29,-53,-69,-54v-60,-1,-86,44,-86,102v0,61,25,106,83,106","w":259},"D":{"d":"241,-130v0,82,-35,130,-120,130r-93,0r0,-258r89,0v89,-3,124,46,124,128xm206,-131v0,-64,-21,-99,-90,-96r-54,0r0,197r55,0v68,2,89,-37,89,-101","w":259},"E":{"d":"28,0r0,-258r187,0r0,31r-152,0r0,79r142,0r0,30r-142,0r0,88r158,0r0,30r-193,0","w":240},"F":{"d":"30,0r0,-258r173,0r0,31r-139,0r0,80r121,0r0,30r-121,0r0,117r-34,0","w":219,"k":{"A":20,".":40,",":40}},"G":{"d":"54,-130v-8,101,111,128,170,77r0,-48r-76,0r0,-30r110,0r0,95v-29,22,-61,40,-107,40v-80,0,-127,-52,-132,-132v-8,-116,138,-177,215,-100v10,10,16,25,20,42r-31,9v-9,-35,-33,-55,-75,-56v-64,0,-89,42,-94,103","w":280},"H":{"d":"29,0r0,-258r34,0r0,106r134,0r0,-106r34,0r0,258r-34,0r0,-121r-134,0r0,121r-34,0","w":259},"I":{"d":"34,0r0,-258r34,0r0,258r-34,0","w":100},"J":{"d":"152,-82v13,80,-77,109,-124,67v-13,-12,-18,-32,-18,-58r31,-4v1,34,9,51,38,51v31,0,39,-19,39,-54r0,-178r34,0r0,176","w":180},"K":{"d":"26,0r0,-258r34,0r0,128r128,-128r47,0r-108,105r112,153r-45,0r-91,-130r-43,41r0,89r-34,0","w":240},"L":{"d":"26,0r0,-258r34,0r0,228r127,0r0,30r-161,0","k":{"y":13,"Y":27,"W":27,"V":27,"T":27," ":13}},"M":{"d":"27,0r0,-258r51,0r73,221r76,-221r46,0r0,258r-33,0r0,-216r-75,216r-31,0r-74,-219r0,219r-33,0","w":299},"N":{"d":"27,0r0,-258r35,0r136,203r0,-203r32,0r0,258r-35,0r-135,-202r0,202r-33,0","w":259},"O":{"d":"141,4v-77,0,-122,-55,-124,-130v-2,-80,49,-136,124,-136v78,0,123,54,123,134v0,78,-48,132,-123,132xm141,-233v-57,0,-88,40,-88,108v0,57,35,100,87,100v55,0,90,-43,89,-104v-1,-60,-30,-104,-88,-104","w":280},"P":{"d":"224,-183v0,78,-78,83,-162,78r0,105r-34,0r0,-258v90,1,196,-17,196,75xm189,-182v0,-59,-69,-43,-127,-45r0,92v57,-1,127,12,127,-47","w":240,"k":{"A":27,".":46,",":46," ":7}},"Q":{"d":"262,-129v0,45,-14,77,-39,101v16,11,31,19,44,24r-10,24v-19,-7,-38,-18,-56,-32v-89,47,-191,-16,-186,-117v4,-77,45,-133,124,-133v77,0,123,53,123,133xm51,-129v0,75,53,122,122,97v-11,-7,-21,-11,-33,-14r8,-25v20,6,36,13,49,24v55,-50,34,-192,-58,-186v-55,3,-88,41,-88,104","w":280},"R":{"d":"234,-187v-1,42,-29,66,-72,70v46,24,63,76,93,117r-42,0v-30,-37,-46,-92,-92,-113v-15,-2,-41,-1,-59,-1r0,114r-34,0r0,-258v90,3,209,-22,206,71xm199,-187v0,-56,-81,-40,-137,-42r0,85v57,-2,136,14,137,-43","w":259,"k":{"Y":7,"W":7,"V":7,"T":7}},"S":{"d":"177,-136v81,33,37,140,-51,140v-65,0,-107,-28,-110,-87r32,-3v4,41,33,55,76,60v56,6,90,-59,34,-80v-45,-17,-132,-19,-132,-85v0,-83,139,-91,175,-35v8,12,12,26,13,41r-33,2v5,-62,-119,-67,-122,-10v-2,44,93,40,118,57","w":240},"T":{"d":"93,0r0,-227r-85,0r0,-31r205,0r0,31r-86,0r0,227r-34,0","w":219,"k":{"y":20,"w":20,"u":13,"s":40,"r":13,"o":40,"i":13,"e":40,"c":40,"a":40,"O":7,"A":27,";":40,":":40,".":40,"-":20,",":40," ":7}},"U":{"d":"127,-26v108,0,60,-141,70,-232r34,0r0,149v1,76,-28,113,-101,113v-74,0,-102,-37,-102,-113r0,-149r34,0v9,90,-34,232,65,232","w":259},"V":{"d":"101,0r-99,-258r36,0r81,230r83,-230r35,0r-101,258r-35,0","w":240,"k":{"y":13,"u":13,"r":13,"o":20,"i":7,"e":20,"a":27,"A":27,";":13,":":13,".":33,"-":20,",":33}},"W":{"d":"73,0r-69,-258r35,0r50,222r61,-222r41,0r37,131v9,32,16,63,20,91r53,-222r35,0r-71,258r-33,0r-62,-227r-62,227r-35,0","w":339,"k":{"y":3,"u":7,"r":7,"o":7,"e":7,"a":13,"A":13,";":7,":":7,".":20,"-":7,",":20}},"X":{"d":"2,0r99,-134r-88,-124r41,0r67,98r73,-98r37,0r-91,122r98,136r-42,0r-76,-109r-77,109r-41,0","w":240},"Y":{"d":"100,0r0,-109r-99,-149r42,0r77,122r78,-122r39,0r-103,149r0,109r-34,0","w":240,"k":{"v":20,"u":20,"q":33,"p":27,"o":33,"i":13,"e":33,"a":27,"A":27,";":23,":":20,".":46,"-":33,",":46," ":7}},"Z":{"d":"7,0r0,-32r132,-165v9,-12,19,-21,27,-30r-144,0r0,-31r185,0r0,31r-161,197r165,0r0,30r-204,0","w":219},"[":{"d":"24,72r0,-330r70,0r0,26r-38,0r0,277r38,0r0,27r-70,0","w":100},"\\":{"d":"75,4r-75,-266r25,0r75,266r-25,0","w":100},"]":{"d":"77,72r-70,0r0,-27r38,0r0,-277r-38,0r0,-26r70,0r0,330","w":100},"^":{"d":"42,-121r-33,0r63,-141r25,0r62,141r-31,0r-44,-105","w":168},"_":{"d":"-5,72r0,-23r209,0r0,23r-209,0"},"`":{"d":"82,-210r-26,0r-40,-49r42,0","w":119},"a":{"d":"175,-120v0,46,-6,99,10,120r-33,0v-3,-7,-5,-14,-6,-23v-33,39,-133,39,-133,-26v0,-63,86,-56,130,-69v3,-35,-13,-47,-45,-47v-32,0,-42,10,-49,36r-31,-4v8,-41,37,-58,85,-58v50,0,72,16,72,71xm84,-21v42,-2,63,-23,59,-73v-23,15,-97,3,-96,44v0,18,15,31,37,29"},"b":{"d":"185,-96v10,81,-84,134,-132,73r0,23r-29,0r0,-258r31,0r0,92v47,-57,140,-8,130,70xm104,-165v-33,0,-51,31,-51,70v0,44,15,73,49,73v33,0,51,-31,51,-72v0,-41,-16,-71,-49,-71"},"c":{"d":"47,-94v-15,78,93,98,99,26r31,4v-5,40,-35,68,-78,68v-54,0,-87,-39,-85,-97v-17,-102,139,-138,160,-39r-31,5v-6,-23,-18,-38,-43,-38v-37,0,-54,28,-53,71","w":180},"d":{"d":"91,-191v24,0,41,12,52,26r0,-93r31,0r0,258r-29,0r0,-24v-12,19,-29,28,-52,28v-53,-2,-81,-43,-81,-97v0,-55,26,-96,79,-98xm94,-165v-34,0,-49,29,-49,72v0,41,18,71,51,71v32,0,49,-29,49,-69v0,-44,-16,-74,-51,-74"},"e":{"d":"102,-22v28,0,41,-15,50,-38r32,4v-9,36,-37,60,-82,60v-56,1,-89,-38,-89,-96v0,-59,32,-99,87,-99v55,0,90,42,85,106r-139,0v2,37,21,63,56,63xm152,-111v2,-50,-57,-70,-88,-39v-10,10,-15,23,-16,39r104,0"},"f":{"d":"108,-231v-33,-9,-51,6,-45,44r36,0r0,25r-36,0r0,162r-32,0r0,-162r-28,0r0,-25r28,0v-7,-60,24,-85,81,-72","w":100,"k":{"f":7}},"g":{"d":"176,-25v13,94,-74,121,-138,86v-15,-8,-20,-26,-20,-46r31,5v-1,35,56,37,77,21v18,-14,19,-25,18,-65v-14,16,-31,24,-52,24v-51,2,-80,-45,-80,-94v1,-55,25,-96,80,-97v22,0,41,9,55,27r0,-23r29,0r0,162xm95,-165v-33,0,-51,29,-51,68v0,42,16,71,51,71v35,0,52,-28,52,-70v0,-39,-20,-69,-52,-69"},"h":{"d":"105,-164v-69,0,-47,96,-50,164r-31,0r0,-258r31,0r0,93v38,-46,121,-31,121,47r0,118r-32,0v-8,-60,25,-164,-39,-164"},"i":{"d":"24,-221r0,-37r32,0r0,37r-32,0xm24,0r0,-187r32,0r0,187r-32,0","w":79},"j":{"d":"24,-221r0,-37r31,0r0,37r-31,0xm55,10v4,55,-26,74,-72,62r6,-26v28,7,35,-3,35,-37r0,-196r31,0r0,197","w":79},"k":{"d":"24,0r0,-258r32,0r0,147r74,-76r41,0r-71,70r79,117r-39,0r-62,-95r-22,21r0,74r-32,0","w":180},"l":{"d":"23,0r0,-258r32,0r0,258r-32,0","w":79},"m":{"d":"102,-163v-67,0,-42,97,-47,163r-31,0r0,-187r28,0r0,27v15,-38,98,-44,109,2v28,-52,116,-43,116,30r0,128r-32,0r0,-118v1,-31,-8,-44,-33,-45v-67,-2,-41,99,-46,163r-31,0r0,-121v-1,-26,-7,-42,-33,-42","w":299},"n":{"d":"105,-163v-69,-3,-46,97,-50,163r-31,0r0,-187r28,0r0,27v33,-53,123,-40,123,45r0,115r-31,0v-8,-59,25,-161,-39,-163"},"o":{"d":"99,4v-55,0,-87,-38,-87,-97v0,-59,32,-97,87,-98v54,0,88,39,88,95v0,64,-30,100,-88,100xm99,-165v-37,0,-55,30,-55,72v0,42,19,71,55,71v37,0,55,-29,55,-72v0,-42,-18,-71,-55,-71"},"p":{"d":"186,-95v8,78,-84,130,-131,76r0,91r-31,0r0,-259r29,0r0,25v12,-17,27,-29,54,-29v54,1,74,43,79,96xm104,-166v-32,0,-52,34,-52,74v0,41,17,70,50,70v34,0,51,-31,51,-73v0,-41,-16,-71,-49,-71"},"q":{"d":"13,-95v-11,-82,88,-129,133,-67r0,-25r28,0r0,259r-31,0r0,-92v-45,55,-141,3,-130,-75xm94,-166v-32,0,-49,31,-49,72v0,41,18,72,52,72v31,0,49,-30,49,-69v0,-42,-18,-75,-52,-75"},"r":{"d":"114,-151v-36,-23,-59,12,-59,53r0,98r-32,0r0,-187r29,0r0,29v13,-32,41,-42,73,-23","w":119,"k":{".":20,",":20}},"s":{"d":"138,-99v56,31,18,103,-47,103v-48,0,-73,-19,-80,-60r31,-5v-2,47,89,53,92,9v-16,-47,-118,-16,-118,-85v0,-61,103,-69,132,-30v5,7,9,16,11,28r-31,5v2,-39,-81,-42,-81,-7v0,32,70,31,91,42","w":180},"t":{"d":"61,-53v-2,25,10,28,32,25r4,28v-45,6,-67,0,-67,-55r0,-107r-24,0r0,-25r24,0r0,-46r31,-19r0,65r32,0r0,25r-32,0r0,109","w":100},"u":{"d":"93,-23v70,2,46,-96,50,-164r31,0r0,187r-28,0r0,-27v-34,53,-123,38,-123,-44r0,-116r32,0v8,60,-25,163,38,164"},"v":{"d":"76,0r-71,-187r33,0r52,150r53,-150r33,0r-71,187r-29,0","w":180,"k":{".":27,",":27}},"w":{"d":"58,0r-57,-187r33,0r41,148v8,-38,28,-107,39,-148r32,0r38,144r42,-144r31,0r-58,187r-33,0r-37,-144r-38,144r-33,0","w":259,"k":{".":20,",":20}},"x":{"d":"3,0r68,-97r-63,-90r39,0r42,65v15,-24,30,-42,46,-65r37,0r-64,88r69,99r-38,0r-49,-74r-49,74r-38,0","w":180},"y":{"d":"22,72r-3,-30v38,11,50,-10,58,-42r-71,-187r34,0r39,108v5,14,9,29,13,44v14,-54,35,-101,53,-152r32,0r-89,233v-12,23,-35,37,-66,26","w":180,"k":{".":27,",":27}},"z":{"d":"7,0r0,-26r119,-136r-112,1r0,-26r153,0r0,21r-121,140r126,-1r0,27r-165,0","w":180},"{":{"d":"46,-9v0,-44,-1,-66,-36,-70r0,-29v34,-3,37,-25,36,-67v-2,-63,6,-89,66,-87r0,28v-30,-1,-37,4,-36,36v0,67,1,84,-37,105v29,13,36,33,37,79v1,48,-6,61,36,62r0,28v-59,3,-67,-25,-66,-85","w":120},"|":{"d":"33,76r0,-338r28,0r0,338r-28,0","w":93},"}":{"d":"74,-178v0,44,1,66,36,70r0,29v-34,3,-37,26,-36,68v1,63,-6,89,-66,87r0,-28v30,1,37,-4,36,-36v0,-64,1,-86,37,-105v-29,-15,-37,-32,-37,-79v0,-48,7,-62,-36,-62r0,-28v58,-3,67,25,66,84","w":120},"~":{"d":"61,-122v-23,0,-30,10,-46,24r0,-36v34,-42,92,-8,135,3v19,0,35,-14,45,-25r0,38v-14,12,-26,19,-49,20v-28,1,-59,-24,-85,-24","w":210},"\u00a9":{"d":"1,-129v0,-77,57,-133,132,-133v76,0,133,57,133,133v0,75,-56,132,-133,132v-76,0,-132,-56,-132,-132xm244,-129v0,-63,-47,-111,-111,-111v-64,0,-111,48,-111,111v0,62,47,110,111,110v64,-1,111,-48,111,-110xm88,-128v-9,62,78,70,88,20r21,6v-7,28,-30,49,-64,49v-43,0,-69,-30,-69,-76v0,-78,110,-104,131,-33r-21,5v-17,-46,-95,-28,-86,29","w":265}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 The Monotype Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Arial is a trademark of The Monotype Corporation in the United States and/or
 * other countries.
 * 
 * Manufacturer:
 * The Monotype Corporation
 * 
 * Designer:
 * Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Arial","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 4 2 2 2 2 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-17 -278 350 76.147","underline-thickness":"37.793","underline-position":"-19.3359","unicode-range":"U+0020-U+00A9"},"glyphs":{" ":{"w":100,"k":{"Y":7,"A":13}},"\u00a0":{"w":100},"!":{"d":"45,-66v-5,-63,-15,-121,-13,-192r54,0v2,71,-7,129,-13,192r-28,0xm34,0r0,-49r50,0r0,49r-50,0","w":119},"\"":{"d":"29,-166v-6,-28,-11,-56,-9,-92r53,0v2,35,-2,64,-8,92r-36,0xm108,-166v-6,-28,-11,-56,-9,-92r54,0v2,35,-2,64,-8,92r-37,0","w":170},"#":{"d":"27,-64r-24,0r0,-39r32,0r10,-52r-42,0r0,-39r50,0r14,-68r40,0r-14,68r38,0r14,-68r41,0r-14,68r24,0r0,39r-32,0r-11,52r43,0r0,39r-51,0r-14,68r-39,0r14,-68r-39,0r-14,68r-40,0xm85,-155r-10,52r39,0r10,-52r-39,0"},"$":{"d":"184,-77v1,44,-31,76,-73,80r0,33r-25,0r0,-32v-42,-5,-67,-34,-74,-76r46,-5v4,17,15,33,28,39r0,-74v-40,-12,-67,-33,-67,-78v0,-39,30,-68,67,-71r0,-17r25,0r0,17v38,5,60,25,66,61r-44,6v-3,-14,-11,-23,-22,-28r0,69v48,14,72,26,73,76xm86,-223v-29,6,-30,54,0,61r0,-61xm111,-36v24,-2,40,-34,23,-55v-5,-6,-12,-10,-23,-13r0,68"},"%":{"d":"73,-126v-39,0,-57,-25,-57,-68v0,-42,18,-68,56,-68v39,0,57,25,57,68v0,42,-18,68,-56,68xm72,-234v-17,1,-18,16,-18,40v0,24,2,36,18,40v26,0,26,-82,0,-80xm110,10r-37,0r137,-272r36,0xm247,10v-40,0,-58,-26,-58,-68v0,-42,18,-68,57,-68v39,0,57,25,57,68v0,42,-17,68,-56,68xm246,-98v-17,2,-18,16,-18,40v0,24,1,37,18,40v17,-2,18,-16,18,-40v0,-24,-1,-37,-18,-40","w":320},"&":{"d":"214,-61v8,8,31,25,40,30r-30,38v-15,-7,-29,-17,-42,-30v-44,49,-172,32,-166,-48v2,-41,27,-62,59,-79v-15,-16,-27,-32,-27,-56v0,-35,31,-56,72,-56v40,0,71,23,71,59v0,33,-18,41,-47,61r36,47v4,-8,8,-17,11,-29r45,10v-7,26,-11,37,-22,53xm121,-227v-41,2,-19,42,-1,55v10,-8,28,-20,28,-32v0,-14,-12,-24,-27,-23xm100,-118v-39,12,-49,83,5,82v21,-1,32,-9,46,-20","w":259},"'":{"d":"25,-166v-6,-28,-11,-56,-9,-92r54,0v2,35,-2,64,-8,92r-37,0","w":85},"(":{"d":"108,-262v-55,100,-54,241,0,338r-34,0v-31,-46,-53,-103,-55,-169v-1,-69,26,-126,56,-169r33,0","w":119},")":{"d":"101,-96v-1,69,-23,124,-55,172r-34,0v54,-95,55,-240,0,-338r33,0v31,44,56,98,56,166","w":119},"*":{"d":"43,-139r-26,-21r33,-34r-45,-11r10,-31v15,6,29,13,41,21v-3,-19,-4,-35,-4,-47r31,0v0,9,-1,24,-4,47r44,-19r9,32v-13,3,-28,5,-45,8r31,36r-27,18r-23,-40v-7,13,-16,27,-25,41","w":140},"+":{"d":"82,-37r0,-67r-67,0r0,-46r67,0r0,-67r45,0r0,67r68,0r0,46r-68,0r0,67r-45,0","w":210},",":{"d":"25,-49r49,0v2,53,-1,95,-44,106r-9,-20v19,-5,27,-15,28,-37r-24,0r0,-49","w":100},"-":{"d":"20,-69r0,-49r97,0r0,49r-97,0","w":119},"\u00ad":{"d":"20,-69r0,-49r97,0r0,49r-97,0","w":119},".":{"d":"26,0r0,-49r49,0r0,49r-49,0","w":100},"\/":{"d":"-1,4r64,-266r37,0r-64,266r-37,0","w":100},"0":{"d":"15,-128v0,-79,18,-131,84,-131v66,0,83,54,83,132v0,78,-17,131,-83,131v-65,0,-84,-50,-84,-132xm99,-37v48,0,32,-111,27,-152v-2,-18,-10,-28,-27,-29v-35,7,-32,41,-32,91v0,52,-4,83,32,90"},"1":{"d":"28,-194v27,-9,65,-37,74,-65r40,0r0,259r-50,0r0,-186v-18,17,-40,29,-64,37r0,-45","k":{"1":20}},"2":{"d":"182,-187v1,71,-71,97,-98,141r98,0r0,46r-173,0v3,-65,81,-112,113,-153v20,-24,12,-67,-23,-65v-23,2,-33,15,-35,40r-49,-4v5,-51,34,-76,85,-77v46,-1,82,29,82,72"},"3":{"d":"136,-139v91,25,42,143,-38,143v-46,0,-81,-29,-84,-72r47,-6v3,21,16,37,37,37v22,1,36,-18,36,-42v0,-32,-25,-50,-57,-37r5,-40v45,8,58,-61,13,-62v-18,1,-31,15,-32,34r-46,-7v8,-43,32,-65,80,-68v69,-4,108,91,39,120"},"4":{"d":"112,0r0,-52r-105,0r0,-43r111,-164r42,0r0,164r32,0r0,43r-32,0r0,52r-48,0xm112,-95r0,-88r-59,88r59,0"},"5":{"d":"189,-86v0,103,-162,125,-173,20r49,-5v2,19,18,36,37,36v24,0,37,-22,37,-51v0,-49,-52,-62,-77,-28r-40,-6r25,-134r131,0r0,46r-93,0r-8,44v58,-28,112,19,112,78"},"6":{"d":"15,-125v0,-82,27,-134,95,-134v42,0,66,26,73,64r-48,6v0,-32,-39,-38,-55,-15v-7,9,-12,28,-14,58v44,-51,121,-3,121,63v0,50,-33,89,-82,87v-63,-2,-90,-51,-90,-129xm105,-131v-21,0,-34,18,-34,44v0,27,14,50,36,50v23,0,32,-18,32,-45v0,-29,-11,-49,-34,-49"},"7":{"d":"50,0v2,-81,37,-158,78,-208r-113,0r0,-46r169,0r0,36v-43,45,-85,132,-86,218r-48,0"},"8":{"d":"15,-74v0,-32,17,-55,43,-65v-22,-9,-37,-26,-37,-53v0,-41,31,-67,77,-67v76,0,106,96,42,120v26,10,43,31,44,63v0,48,-35,81,-83,81v-48,0,-87,-32,-86,-79xm99,-220v-17,0,-31,13,-31,31v0,19,12,31,30,31v18,0,31,-12,31,-31v0,-18,-13,-31,-30,-31xm99,-118v-22,0,-36,19,-36,40v-1,24,16,43,37,43v22,0,35,-18,35,-43v0,-23,-15,-40,-36,-40"},"9":{"d":"184,-129v0,81,-28,134,-95,134v-43,0,-66,-26,-73,-65r48,-5v0,31,40,38,55,15v7,-9,12,-29,14,-59v-44,51,-122,5,-122,-63v0,-49,35,-89,83,-87v63,3,90,52,90,130xm94,-123v21,0,34,-20,34,-45v0,-27,-13,-50,-36,-50v-22,0,-32,18,-32,46v0,29,11,49,34,49"},":":{"d":"35,-137r0,-50r50,0r0,50r-50,0xm35,0r0,-49r50,0r0,49r-50,0","w":119},";":{"d":"34,-137r0,-50r49,0r0,50r-49,0xm34,-49r49,0v2,52,1,96,-43,106r-10,-20v18,-6,27,-16,28,-37r-24,0r0,-49","w":119},"\u037e":{"d":"34,-137r0,-50r49,0r0,50r-49,0xm34,-49r49,0v2,52,1,96,-43,106r-10,-20v18,-6,27,-16,28,-37r-24,0r0,-49","w":119},"<":{"d":"193,-29r-176,-77r0,-43r176,-76r0,50r-123,47r123,49r0,50","w":210},"=":{"d":"15,-143r0,-46r180,0r0,46r-180,0xm15,-65r0,-46r180,0r0,46r-180,0","w":210},">":{"d":"17,-29r0,-50r123,-48r-123,-48r0,-50r177,77r0,42","w":210},"?":{"d":"111,-260v61,0,113,51,83,105v-6,11,-48,44,-59,60v-3,5,-3,15,-3,29r-45,0v-12,-71,62,-74,68,-122v3,-21,-20,-35,-42,-35v-29,1,-43,17,-49,44r-45,-6v1,-44,43,-75,92,-75xm87,0r0,-49r50,0r0,49r-50,0","w":219},"@":{"d":"191,43v56,1,97,-14,121,-46r38,0v-25,51,-81,79,-156,79v-110,0,-183,-55,-183,-161v0,-107,70,-177,180,-177v89,0,146,50,149,135v1,66,-53,129,-116,127v-19,0,-28,-5,-32,-20v-43,44,-115,10,-115,-54v0,-76,86,-160,141,-93r5,-19r46,0r-29,141v0,6,2,9,7,9v36,-8,61,-49,62,-92v0,-63,-51,-102,-119,-102v-93,0,-147,60,-147,148v0,84,62,125,148,125xm176,-159v-37,0,-52,47,-54,83v-1,26,11,44,32,44v40,0,53,-47,55,-86v1,-23,-13,-41,-33,-41","w":351},"A":{"d":"259,0r-57,0r-23,-59r-103,0r-21,59r-55,0r100,-258r55,0xm163,-102r-36,-96r-35,96r71,0","w":259,"k":{"y":13,"w":7,"v":13,"Y":33,"W":20,"V":27,"T":27," ":13}},"B":{"d":"242,-75v0,66,-41,75,-128,75r-88,0r0,-258v88,3,202,-21,204,65v0,27,-18,47,-37,56v29,8,49,28,49,62xm179,-185v0,-43,-52,-27,-101,-30r0,60v45,-2,101,11,101,-30xm188,-77v0,-49,-61,-32,-110,-35r0,69v47,-3,110,14,110,-34","w":259},"C":{"d":"134,-40v34,0,51,-23,57,-55r51,16v-15,51,-46,83,-108,83v-71,0,-117,-54,-117,-131v0,-139,187,-188,224,-60r-52,13v-5,-24,-25,-45,-54,-44v-44,1,-64,35,-64,88v0,56,18,90,63,90","w":259},"D":{"d":"242,-126v0,80,-32,126,-118,126r-98,0r0,-258r95,0v89,-2,121,47,121,132xm188,-129v2,-75,-30,-91,-110,-85r0,171r39,0v59,2,70,-28,71,-86","w":259},"E":{"d":"26,0r0,-258r191,0r0,44r-139,0r0,57r130,0r0,43r-130,0r0,71r144,0r0,43r-196,0","w":240},"F":{"d":"27,0r0,-258r176,0r0,44r-124,0r0,61r107,0r0,43r-107,0r0,110r-52,0","w":219,"k":{"A":20,".":40,",":40}},"G":{"d":"71,-132v0,87,83,114,135,70r0,-33r-60,0r0,-43r112,0r0,102v-20,21,-69,41,-110,40v-82,-1,-131,-52,-131,-134v0,-80,44,-131,128,-132v62,0,99,26,110,76r-52,9v-7,-25,-27,-41,-58,-41v-49,1,-74,33,-74,86","w":280},"H":{"d":"26,0r0,-258r52,0r0,102r102,0r0,-102r52,0r0,258r-52,0r0,-113r-102,0r0,113r-52,0","w":259},"I":{"d":"25,0r0,-258r52,0r0,258r-52,0","w":100},"J":{"d":"87,-40v29,0,31,-16,32,-51r0,-167r52,0v-8,109,36,267,-85,262v-52,-2,-81,-30,-80,-84r49,-5v1,29,9,45,32,45"},"K":{"d":"27,0r0,-258r52,0r0,115r105,-115r70,0r-97,101r102,157r-67,0r-71,-121r-42,43r0,78r-52,0","w":259},"L":{"d":"28,0r0,-256r52,0r0,213r129,0r0,43r-181,0","w":219,"k":{"y":13,"Y":33,"W":20,"V":27,"T":27," ":7}},"M":{"d":"25,0r0,-258r78,0r47,176r46,-176r78,0r0,258r-48,0r0,-203r-51,203r-50,0r-51,-203r0,203r-49,0","w":299},"N":{"d":"27,0r0,-258r50,0r106,172r0,-172r48,0r0,258r-52,0r-104,-168r0,168r-48,0","w":259},"O":{"d":"141,4v-76,0,-126,-52,-125,-131v1,-85,41,-133,124,-135v78,-1,126,54,126,134v0,81,-48,132,-125,132xm141,-218v-48,0,-72,36,-72,89v0,53,25,89,72,89v48,0,71,-37,71,-90v0,-53,-24,-88,-71,-88","w":280},"P":{"d":"224,-178v0,76,-62,85,-146,81r0,97r-52,0r0,-258r84,0v81,-4,114,15,114,80xm170,-178v-1,-42,-45,-36,-92,-36r0,73v47,0,92,5,92,-37","w":240,"k":{"A":27,".":46,",":46," ":7}},"Q":{"d":"265,-129v0,43,-10,72,-31,96v13,9,26,17,41,22r-19,37v-27,-10,-23,-10,-58,-33v-94,36,-182,-18,-182,-122v0,-82,45,-133,125,-133v78,0,125,52,124,133xm69,-129v0,60,35,102,91,86v-11,-7,-21,-12,-32,-16r15,-29v17,6,33,14,49,26v38,-46,23,-162,-51,-156v-47,4,-72,36,-72,89","w":280},"R":{"d":"237,-185v0,42,-27,66,-68,71v42,23,61,73,89,114r-62,0r-65,-94v-11,-13,-27,-14,-53,-14r0,108r-52,0r0,-258r110,0v68,-3,101,17,101,73xm184,-182v0,-46,-59,-29,-106,-32r0,65v47,-3,106,12,106,-33","w":259,"k":{"Y":13,"W":7,"V":7}},"S":{"d":"184,-142v73,44,30,156,-65,147v-65,-6,-99,-31,-106,-89r51,-5v6,32,21,47,56,50v46,4,72,-50,26,-63v-47,-14,-124,-26,-124,-88v0,-77,119,-89,167,-51v16,14,25,33,26,57r-52,2v-5,-26,-17,-35,-47,-37v-29,-2,-59,20,-36,41v14,13,87,26,104,36","w":240},"T":{"d":"84,0r0,-214r-76,0r0,-44r205,0r0,44r-77,0r0,214r-52,0","w":219,"k":{"y":27,"w":27,"u":27,"s":27,"r":20,"o":27,"i":7,"e":27,"c":27,"a":27,"O":7,"A":27,";":40,":":40,".":40,"-":20,",":40}},"U":{"d":"132,4v-85,0,-106,-36,-106,-124r0,-138r52,0r0,140v-2,56,7,78,52,78v44,0,49,-24,49,-75r0,-143r52,0r0,136v4,90,-19,126,-99,126","w":259},"V":{"d":"92,0r-92,-258r56,0r65,191r64,-191r55,0r-93,258r-55,0","w":240,"k":{"y":13,"u":13,"r":20,"o":27,"i":7,"e":20,"a":20,"A":27,";":20,":":20,".":33,"-":20,",":33}},"W":{"d":"63,0r-62,-258r53,0r39,177r47,-177r62,0r46,180r39,-180r52,0r-62,258r-55,0r-52,-193r-51,193r-56,0","w":339,"k":{"y":7,"u":7,"r":7,"o":7,"i":3,"e":7,"a":13,"A":20,";":7,":":7,".":20,"-":7,",":20}},"X":{"d":"0,0r88,-134r-80,-124r61,0r52,83r50,-83r61,0r-80,125r88,133r-63,0r-57,-89r-58,89r-62,0","w":240},"Y":{"d":"94,0r0,-108r-95,-150r61,0r61,102r60,-102r59,0r-94,150r0,108r-52,0","w":240,"k":{"v":20,"u":20,"q":27,"p":20,"o":27,"i":13,"e":20,"a":20,"A":33,";":27,":":27,".":40,"-":20,",":40," ":7}},"Z":{"d":"4,0r0,-47r135,-167r-120,0r0,-44r189,0r0,41r-141,174r146,0r0,43r-209,0","w":219},"[":{"d":"26,73r0,-331r87,0r0,39r-40,0r0,253r40,0r0,39r-87,0","w":119},"\\":{"d":"-1,-262r37,0r64,266r-37,0","w":100},"]":{"d":"94,-258r0,331r-87,0r0,-39r40,0r0,-253r-40,0r0,-39r87,0","w":119},"^":{"d":"20,-122r66,-140r40,0r64,140r-50,0r-35,-86r-35,86r-50,0","w":210},"_":{"d":"-3,71r0,-32r205,0r0,32r-205,0"},"`":{"d":"87,-210r-31,0r-49,-52r56,0","w":119},"a":{"d":"95,-153v-20,1,-26,7,-32,23r-45,-8v11,-36,33,-54,81,-53v56,2,78,12,78,72v0,43,-5,93,11,119r-49,0r-6,-20v-30,38,-120,31,-120,-31v0,-60,78,-55,116,-71v1,-24,-8,-31,-34,-31xm90,-31v30,-1,43,-21,39,-59v-18,8,-68,8,-67,34v0,14,12,26,28,25"},"b":{"d":"206,-95v11,86,-93,131,-136,68r0,27r-46,0r0,-258r49,0r0,93v49,-57,143,-12,133,70xm114,-153v-27,0,-41,23,-41,56v0,37,14,62,43,62v27,0,39,-24,39,-58v0,-37,-12,-60,-41,-60","w":219},"c":{"d":"15,-93v0,-107,150,-136,174,-38r-49,8v-3,-19,-14,-30,-34,-29v-29,1,-40,20,-40,55v0,66,70,83,77,25r48,9v-10,42,-36,66,-86,67v-56,0,-90,-39,-90,-97"},"d":{"d":"15,-94v-9,-83,83,-128,133,-71r0,-93r49,0r0,258r-46,0r0,-27v-43,63,-147,18,-136,-67xm107,-153v-28,0,-42,23,-42,56v0,39,13,62,42,62v27,0,41,-26,41,-58v0,-36,-12,-60,-41,-60","w":219},"e":{"d":"62,-79v-6,46,63,64,72,20r49,8v-11,34,-38,54,-81,55v-57,1,-91,-38,-91,-96v-1,-56,33,-100,86,-99v61,1,92,43,89,112r-124,0xm137,-109v4,-38,-41,-58,-64,-32v-7,8,-10,19,-10,32r74,0"},"f":{"d":"124,-221v-27,-8,-49,-1,-43,34r37,0r0,39r-37,0r0,148r-49,0r0,-148r-28,0r0,-39r28,0v-11,-69,41,-86,98,-69","w":119},"g":{"d":"108,76v-56,1,-87,-16,-87,-64r57,7v2,17,10,18,28,19v42,3,43,-26,41,-68v-45,64,-140,15,-132,-64v-10,-85,90,-131,136,-66r0,-27r46,0r0,168v2,69,-24,94,-89,95xm106,-153v-27,0,-41,23,-41,56v0,34,14,57,40,57v28,0,43,-22,43,-56v0,-34,-14,-57,-42,-57","w":219},"h":{"d":"116,-153v-61,0,-36,94,-41,153r-49,0r0,-258r49,0r0,95v41,-52,121,-31,121,53r0,110r-50,0r0,-99v0,-39,-1,-54,-30,-54","w":219},"i":{"d":"26,-212r0,-46r49,0r0,46r-49,0xm26,0r0,-187r49,0r0,187r-49,0","w":100},"j":{"d":"25,-212r0,-46r49,0r0,46r-49,0xm-8,28v26,5,33,-2,33,-37r0,-178r49,0r0,181v9,72,-31,92,-91,76","w":100},"k":{"d":"24,0r0,-258r49,0r0,137r58,-66r61,0r-64,69r69,118r-54,0r-46,-84r-24,24r0,60r-49,0"},"l":{"d":"26,0r0,-258r49,0r0,258r-49,0","w":100},"m":{"d":"109,-153v-59,0,-31,95,-37,153r-50,0r0,-187r46,0r0,26v26,-39,92,-40,111,0v30,-48,118,-40,118,42r0,119r-50,0r0,-107v0,-33,-3,-46,-26,-46v-57,0,-32,95,-37,153r-49,0r0,-102v-1,-35,0,-51,-26,-51","w":320},"n":{"d":"71,-159v36,-53,125,-40,125,43r0,116r-50,0v-7,-52,23,-153,-30,-153v-61,0,-36,93,-41,153r-50,0r0,-187r46,0r0,28","w":219},"o":{"d":"111,4v-60,-1,-98,-38,-97,-100v1,-55,39,-95,97,-95v55,0,96,42,96,97v0,54,-41,100,-96,98xm111,-151v-29,0,-46,24,-46,58v0,34,17,57,46,57v28,0,45,-25,45,-58v0,-32,-17,-57,-45,-57","w":219},"p":{"d":"207,-94v0,82,-86,130,-133,71r0,94r-50,0r0,-258r46,0r0,28v11,-17,32,-32,59,-32v48,1,78,43,78,97xm115,-152v-27,0,-42,23,-42,55v0,35,14,62,43,62v27,0,40,-23,40,-59v0,-34,-13,-58,-41,-58","w":219},"q":{"d":"16,-95v0,-84,97,-130,136,-64r0,-28r45,0r0,258r-49,0r0,-94v-10,15,-31,27,-55,27v-49,-1,-77,-45,-77,-99xm107,-35v27,0,42,-27,42,-61v0,-34,-13,-56,-41,-56v-29,0,-42,23,-42,59v0,35,13,58,41,58","w":219},"r":{"d":"129,-139v-48,-23,-60,18,-56,81r0,58r-49,0r0,-187r46,0r0,27v14,-31,43,-39,75,-22","w":140,"k":{".":20,",":20}},"s":{"d":"167,-95v38,45,-4,99,-69,99v-49,0,-80,-20,-90,-57r50,-8v5,20,16,27,40,30v32,4,51,-29,15,-37v-64,-14,-92,-14,-98,-66v-7,-59,95,-69,136,-44v12,8,20,20,25,36r-46,9v0,-27,-63,-31,-69,-7v2,24,89,25,106,45"},"t":{"d":"115,-3v-47,18,-87,4,-87,-63r0,-81r-23,0r0,-40r23,0r0,-37r50,-29r0,66r33,0r0,40r-33,0r0,75v-3,35,5,40,33,31","w":119},"u":{"d":"105,-33v61,2,34,-93,40,-154r50,0r0,187r-46,0r0,-28v-29,50,-124,44,-124,-41r0,-118r49,0v7,55,-22,152,31,154","w":219},"v":{"d":"77,0r-75,-187r52,0r45,127r46,-127r51,0r-74,187r-45,0","k":{".":27,",":27}},"w":{"d":"61,0r-59,-187r48,0r35,123r32,-123r47,0r31,123r36,-123r49,0r-60,187r-48,0r-32,-120r-31,120r-48,0","w":280,"k":{".":13,",":13}},"x":{"d":"2,0r67,-96r-64,-91r60,0r33,52r35,-52r58,0r-63,89r69,98r-61,0r-38,-58r-38,58r-58,0"},"y":{"d":"2,-187r53,0r45,133r43,-133r51,0r-77,212v-11,40,-47,59,-98,48r-5,-39v33,9,54,-7,59,-33","k":{".":27,",":27}},"z":{"d":"6,0r0,-38r95,-109v-26,2,-60,1,-88,1r0,-41r154,0r0,35r-96,110r102,-1r0,43r-167,0","w":180},"{":{"d":"49,-3v0,-48,0,-64,-38,-69r0,-42v35,-2,40,-23,38,-63v-3,-69,17,-86,82,-85r0,42v-74,-12,-5,97,-69,127v31,9,33,64,33,101v0,24,9,25,36,26r0,42v-61,2,-82,-16,-82,-79","w":140},"|":{"d":"31,76r0,-338r39,0r0,338r-39,0","w":100},"}":{"d":"90,-183v-2,47,1,65,38,69r0,42v-35,2,-40,22,-38,62v3,70,-16,87,-82,86r0,-42v27,0,36,-2,36,-25v0,-37,1,-94,33,-102v-32,-24,-31,-39,-33,-100v-1,-26,-7,-27,-36,-27r0,-42v61,-2,84,15,82,79","w":140},"~":{"d":"146,-92v-27,0,-63,-25,-86,-24v-16,0,-32,9,-48,25r0,-46v35,-46,97,-12,138,0v19,-1,36,-11,48,-25r0,47v-9,11,-32,23,-52,23","w":210},"\u00a9":{"d":"-2,-128v0,-76,57,-135,135,-135v78,0,135,57,135,135v0,77,-58,134,-135,134v-77,0,-135,-57,-135,-134xm241,-128v0,-63,-45,-108,-108,-108v-64,0,-108,46,-108,108v0,62,47,108,108,108v61,0,108,-46,108,-108xm98,-128v-8,53,59,67,68,20r28,9v-7,27,-28,45,-59,46v-41,0,-68,-30,-68,-74v0,-79,106,-106,127,-33r-28,7v-17,-44,-74,-24,-68,25","w":265}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 The Monotype Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Arial is a trademark of The Monotype Corporation in the United States and/or
 * other countries.
 * 
 * Manufacturer:
 * The Monotype Corporation
 * 
 * Designer:
 * Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Arial","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 4 2 2 2 9 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-44 -275 382 77.1171","underline-thickness":"26.3672","underline-position":"-24.9609","slope":"-12","unicode-range":"U+0020-U+00A9"},"glyphs":{" ":{"w":100,"k":{"Y":7,"A":13}},"\u00a0":{"w":100},"!":{"d":"40,-65r20,-140r11,-53r38,0v-13,68,-32,129,-49,193r-20,0xm20,0r8,-36r36,0r-8,36r-36,0","w":100},"\"":{"d":"49,-166v0,-34,4,-65,11,-92r36,0v-6,34,-16,64,-28,92r-19,0xm107,-166v0,-34,4,-65,11,-92r36,0v-6,34,-16,64,-28,92r-19,0","w":127},"#":{"d":"31,4r15,-74r-29,0r0,-27r35,0r13,-63r-48,0r0,-27r53,0r15,-75r27,0r-16,75r56,0r15,-75r27,0r-16,75r31,0r0,27r-36,0r-13,63r49,0r0,27r-54,0r-16,74r-26,0r15,-74r-55,0r-16,74r-26,0xm78,-97r55,0r13,-63r-55,0"},"$":{"d":"190,-74v0,48,-40,83,-93,78r-6,30r-18,0r7,-32v-34,-7,-60,-38,-62,-77r32,-1v2,26,14,45,35,52r21,-97v-33,-15,-57,-30,-57,-70v0,-41,39,-74,86,-70r3,-14r17,0r-3,16v32,9,49,29,54,64r-30,1v-4,-20,-12,-33,-30,-39r-18,89v38,17,62,29,62,70xm130,-236v-38,-4,-63,35,-43,66v4,6,13,13,25,19xm102,-21v38,4,71,-39,49,-74v-5,-7,-14,-13,-29,-19"},"%":{"d":"50,9r213,-271r29,0r-212,271r-30,0xm82,-124v-32,0,-49,-19,-47,-54v2,-42,20,-82,64,-82v34,0,51,17,51,50v0,42,-21,87,-68,86xm100,-239v-26,0,-37,39,-38,66v-1,17,6,26,20,27v31,1,38,-40,40,-68v1,-15,-9,-25,-22,-25xm307,-77v0,42,-20,88,-68,86v-32,-1,-49,-19,-47,-54v3,-41,19,-81,65,-81v33,1,50,17,50,49xm258,-105v-28,0,-37,39,-39,66v0,17,7,26,21,27v29,1,38,-40,39,-68v0,-15,-8,-25,-21,-25","w":320},"&":{"d":"202,-213v0,40,-27,50,-64,71v15,28,30,51,44,69v9,-10,17,-23,25,-37r27,14v-8,16,-18,32,-32,48v8,10,18,21,30,35r-24,19v-12,-10,-21,-20,-29,-31v-26,20,-37,29,-73,31v-44,2,-78,-31,-78,-73v0,-50,29,-66,68,-85v-31,-47,-5,-109,51,-110v31,-1,55,21,55,49xm147,-237v-33,0,-41,43,-21,71v24,-14,42,-21,45,-46v2,-13,-12,-25,-24,-25xm61,-71v0,53,69,64,99,21v-22,-29,-39,-54,-51,-77v-28,14,-48,25,-48,56","w":240},"'":{"d":"46,-166v0,-34,4,-65,11,-92r36,0v-6,34,-16,64,-28,92r-19,0","w":68},"(":{"d":"149,-262v-67,69,-116,211,-67,338r-24,0v-18,-40,-28,-82,-28,-125v0,-102,40,-150,94,-213r25,0","w":119},")":{"d":"-19,76v66,-70,117,-211,67,-338r23,0v19,40,28,82,28,124v0,103,-39,151,-93,214r-25,0","w":119},"*":{"d":"41,-210r9,-25v19,7,32,12,40,17v-2,-21,-3,-36,-3,-44r25,0v0,12,-2,27,-4,44v12,-6,26,-12,42,-17r8,25v-15,5,-30,7,-44,9v7,6,17,18,30,34r-21,15v-7,-9,-15,-22,-24,-38v-9,17,-16,29,-23,38r-21,-15v14,-17,24,-29,30,-34v-15,-3,-30,-5,-44,-9","w":140},"+":{"d":"102,-42r0,-70r-70,0r0,-30r70,0r0,-70r30,0r0,70r70,0r0,30r-70,0r0,70r-30,0","w":210},",":{"d":"20,0r7,-36r36,0v-7,40,-15,84,-54,88r3,-14v14,-4,23,-16,27,-38r-19,0","w":100},"-":{"d":"17,-77r6,-32r97,0r-6,32r-97,0","w":119},"\u00ad":{"d":"17,-77r6,-32r97,0r-6,32r-97,0","w":119},".":{"d":"21,0r7,-36r36,0r-7,36r-36,0","w":100},"\/":{"d":"-18,4r138,-266r28,0r-139,266r-27,0","w":100},"0":{"d":"94,4v-44,0,-72,-38,-69,-89v5,-84,29,-174,109,-174v45,0,72,36,70,86v-4,82,-29,177,-110,177xm135,-233v-63,0,-73,96,-79,157v-3,32,12,55,40,55v60,0,73,-102,77,-160v2,-33,-10,-52,-38,-52"},"1":{"d":"87,0r40,-195v-18,14,-42,26,-74,34r6,-29v36,-16,76,-38,95,-69r19,0r-54,259r-32,0","k":{"1":27}},"2":{"d":"202,-190v1,75,-103,101,-136,161r115,0r-6,29r-154,0v13,-85,110,-104,146,-171v16,-30,-9,-63,-40,-62v-31,2,-44,22,-51,53r-31,-5v5,-43,36,-74,82,-74v44,0,73,27,75,69"},"3":{"d":"158,-132v65,36,13,136,-58,136v-47,0,-77,-29,-80,-72r31,-3v3,32,17,49,47,50v30,0,57,-26,58,-55v0,-30,-24,-47,-58,-44r6,-26v35,5,65,-15,65,-45v1,-23,-19,-43,-42,-42v-26,1,-44,21,-48,47r-31,-6v8,-38,39,-66,82,-67v40,-1,71,29,71,67v-1,32,-19,48,-43,60"},"4":{"d":"108,0r13,-66r-105,0r7,-31r144,-161r26,0r-34,164r36,0r-6,28r-36,0r-14,66r-31,0xm127,-94r23,-107r-96,107r73,0"},"5":{"d":"98,4v-46,0,-74,-31,-73,-78r32,-3v-1,31,14,56,43,56v39,0,63,-39,65,-78v3,-55,-75,-60,-96,-21r-28,-2r39,-132r126,0r-6,29r-98,0r-19,66v43,-36,118,-7,113,57v-4,60,-38,106,-98,106"},"6":{"d":"175,-192v-1,-38,-36,-51,-64,-29v-18,13,-32,49,-39,72v40,-43,121,-20,121,51v0,51,-36,102,-88,102v-47,0,-78,-38,-75,-90v5,-80,30,-173,112,-173v38,0,59,27,62,64xm119,-146v-60,-3,-84,119,-14,125v60,1,84,-122,14,-125"},"7":{"d":"52,0v18,-86,66,-172,120,-225r-128,0r6,-29r164,0r-6,29v-56,46,-105,146,-123,225r-33,0"},"8":{"d":"27,-66v0,-39,23,-67,54,-76v-58,-30,-16,-117,49,-117v42,0,73,24,73,63v-1,31,-17,48,-43,58v64,37,16,143,-59,143v-42,0,-74,-29,-74,-71xm133,-233v-28,1,-49,18,-49,46v-1,23,17,37,40,37v54,0,69,-85,9,-83xm116,-127v-33,0,-59,28,-57,64v0,26,19,40,45,42v54,4,81,-107,12,-106"},"9":{"d":"198,-168v-4,83,-31,169,-111,172v-38,1,-61,-25,-63,-63r30,-3v1,41,44,52,69,24v14,-16,26,-38,33,-67v-42,44,-120,17,-120,-52v0,-51,36,-103,88,-102v46,1,76,39,74,91xm124,-233v-63,-2,-80,121,-14,125v61,2,84,-120,14,-125"},":":{"d":"52,-151r8,-36r35,0r-7,36r-36,0xm21,0r7,-36r36,0r-8,36r-35,0","w":100},";":{"d":"51,-151r8,-36r35,0r-7,36r-36,0xm20,0r7,-36r36,0v-7,40,-15,84,-54,88r3,-14v14,-4,23,-16,27,-38r-19,0","w":100},"\u037e":{"d":"51,-151r8,-36r35,0r-7,36r-36,0xm20,0r7,-36r36,0v-7,40,-15,84,-54,88r3,-14v14,-4,23,-16,27,-38r-19,0","w":100},"<":{"d":"32,-113r0,-29r171,-72r0,31r-135,56r135,56r0,31","w":210},"=":{"d":"202,-152r-170,0r0,-29r170,0r0,29xm202,-73r-170,0r0,-30r170,0r0,30","w":210},">":{"d":"203,-113r-171,73r0,-31r136,-56r-136,-56r0,-31r171,72r0,29","w":210},"?":{"d":"202,-199v1,62,-89,74,-97,134r-30,0v1,-66,88,-76,95,-136v3,-20,-20,-37,-42,-36v-31,2,-46,20,-50,55r-32,-5v9,-45,34,-75,82,-75v40,0,73,24,74,63xm60,0r7,-36r36,0r-7,36r-36,0"},"@":{"d":"238,1v-22,0,-33,-7,-34,-30v-13,16,-30,30,-54,30v-108,0,-62,-192,28,-192v25,0,42,14,53,33r6,-27r31,0r-30,145v0,7,5,11,12,11v38,-8,68,-51,68,-97v0,-70,-56,-111,-126,-111v-89,0,-145,64,-146,152v-1,91,61,134,151,135v57,0,101,-22,124,-53r31,0v-26,46,-78,80,-155,79v-107,-1,-177,-53,-177,-158v0,-107,64,-180,174,-180v88,0,146,52,150,137v3,58,-51,127,-106,126xm180,-164v-61,-1,-88,129,-23,139v41,-6,61,-45,64,-89v1,-28,-16,-50,-41,-50","w":365},"A":{"d":"-7,0r146,-258r40,0r43,258r-33,0r-13,-74r-104,0r-41,74r-38,0xm87,-101r85,0r-17,-129v-17,41,-47,89,-68,129","w":240,"k":{"y":3,"w":7,"v":7,"Y":27,"W":7,"V":20,"T":27," ":13}},"B":{"d":"230,-82v0,49,-39,82,-90,82r-124,0r54,-258v76,1,166,-13,166,61v-1,33,-20,53,-48,63v25,8,42,23,42,52xm204,-194v0,-46,-60,-32,-106,-34r-17,80v56,0,123,7,123,-46xm195,-81v1,-51,-71,-34,-120,-37r-19,89v0,0,137,9,139,-52","w":240},"C":{"d":"137,-24v43,0,69,-31,80,-67r34,5v-18,52,-55,89,-116,90v-65,1,-102,-41,-102,-110v0,-108,111,-201,201,-134v18,14,26,34,29,59r-32,3v-5,-35,-25,-55,-62,-56v-62,-2,-102,62,-102,128v0,49,25,82,70,82","w":259},"D":{"d":"147,-258v121,-16,131,138,75,207v-27,33,-55,51,-113,51r-93,0r54,-258r77,0xm221,-154v2,-73,-49,-78,-123,-74r-41,199v106,9,161,-30,164,-125","w":259},"E":{"d":"16,0r54,-258r186,0r-6,30r-152,0r-16,80r147,0r-6,29r-148,0r-18,90r162,0r-6,29r-197,0","w":240},"F":{"d":"16,0r54,-258r168,0r-6,30r-134,0r-17,82r136,0r-6,29r-136,0r-24,117r-35,0","w":219,"k":{"A":27,".":46,",":46," ":7}},"G":{"d":"70,-103v-3,84,84,97,144,57r12,-56r-79,0r7,-29r112,0r-21,105v-25,16,-63,30,-103,30v-67,0,-107,-41,-107,-107v0,-107,85,-189,191,-149v31,12,43,34,50,70r-34,3v-8,-34,-28,-54,-67,-54v-69,0,-103,57,-105,130","w":280},"H":{"d":"15,0r54,-258r34,0r-22,107r134,0r22,-107r34,0r-53,258r-35,0r25,-121r-133,0r-25,121r-35,0","w":259},"I":{"d":"21,0r54,-258r34,0r-54,258r-34,0","w":100},"J":{"d":"126,-13v-43,38,-139,12,-111,-62r32,-2v-21,49,44,72,65,32v18,-66,31,-144,47,-213r34,0r-39,189v-6,26,-15,45,-28,56","w":180},"K":{"d":"16,0r54,-258r34,0r-26,124r140,-124r49,0r-120,105r88,153r-39,0r-74,-131r-54,47r-18,84r-34,0","w":240},"L":{"d":"14,0r54,-258r35,0r-48,229r134,0r-6,29r-169,0","k":{"y":7,"Y":33,"W":13,"V":20,"T":27," ":7}},"M":{"d":"16,0r54,-258r42,0r26,167v3,22,6,43,7,63v33,-70,88,-159,126,-230r43,0r-54,258r-34,0r27,-125v6,-29,15,-62,27,-98v-36,76,-84,150,-124,223r-33,0r-26,-165v-2,-15,-4,-33,-5,-53v-10,83,-28,142,-43,218r-33,0","w":299},"N":{"d":"18,0r54,-258r33,0v30,75,66,137,90,219r44,-219r33,0r-53,258r-34,0r-91,-218v-10,72,-29,148,-43,218r-33,0","w":259},"O":{"d":"141,4v-67,2,-107,-47,-108,-112v-3,-85,58,-153,136,-154v65,-1,111,48,109,115v-3,86,-51,149,-137,151xm169,-233v-59,1,-104,59,-102,127v1,48,30,82,76,82v66,0,98,-58,101,-125v2,-48,-30,-84,-75,-84","w":280},"P":{"d":"251,-194v-3,87,-85,94,-179,89r-22,105r-35,0r54,-258v80,3,185,-20,182,64xm217,-194v1,-52,-70,-32,-119,-36r-20,96v70,2,138,4,139,-60","w":240,"k":{"A":27,".":46,",":46," ":13}},"Q":{"d":"278,-147v-1,56,-26,101,-60,126v9,10,20,20,35,30r-16,21v-16,-10,-30,-23,-42,-38v-80,38,-166,-14,-162,-104v4,-85,50,-148,137,-150v65,-1,109,48,108,115xm153,-75v20,8,27,17,44,32v26,-20,47,-62,47,-106v0,-48,-30,-84,-74,-84v-64,0,-101,57,-103,123v-2,58,49,102,107,80v-11,-10,-22,-17,-33,-23","w":280},"R":{"d":"263,-195v-2,50,-35,73,-87,79v36,28,48,72,67,116r-39,0v-23,-45,-21,-115,-89,-114r-40,0r-24,114r-34,0r54,-258v81,4,195,-23,192,63xm230,-195v2,-54,-81,-28,-131,-34r-18,87v71,0,147,10,149,-53","w":259,"k":{"Y":13,"W":7,"V":7,"T":7}},"S":{"d":"195,-124v63,46,9,135,-70,128v-60,-5,-101,-23,-100,-87r34,-3v-3,44,25,62,67,62v43,0,82,-34,55,-67v-26,-32,-128,-39,-124,-102v2,-47,39,-69,90,-69v56,0,94,26,95,77r-34,3v0,-38,-25,-47,-62,-51v-49,-5,-77,49,-33,70v8,5,71,31,82,39","w":240},"T":{"d":"82,0r47,-228r-84,0r6,-30r203,0r-6,30r-84,0r-48,228r-34,0","w":219,"k":{"y":27,"w":27,"u":27,"s":33,"r":27,"o":33,"i":3,"e":33,"c":33,"a":33,"O":7,"A":27,";":27,":":27,".":33,"-":33,",":33}},"U":{"d":"219,-45v-31,68,-189,70,-184,-25v3,-58,26,-130,36,-188r35,0r-37,188v0,60,103,56,121,10v21,-52,31,-137,47,-198r35,0v-17,69,-27,155,-53,213","w":259},"V":{"d":"94,0r-49,-258r33,0r30,154v6,28,8,50,10,67r119,-221r35,0r-141,258r-37,0","w":240,"k":{"y":7,"u":7,"r":7,"o":13,"i":7,"e":13,"a":13,"A":20,";":7,":":7,".":27,"-":13,",":27}},"W":{"d":"61,0r-16,-258r35,0r8,211r109,-211r36,0r10,213r104,-213r35,0r-131,258r-37,0r-10,-205v-34,75,-72,134,-108,205r-35,0","w":339,"k":{"i":3,"e":7,"a":7,"A":7,".":13,"-":7,",":13}},"X":{"d":"-11,0r123,-130r-73,-128r38,0r58,106v24,-31,68,-74,97,-106r45,0r-125,133r71,125r-38,0r-56,-104v-28,36,-64,70,-95,104r-45,0","w":240},"Y":{"d":"101,0r20,-100r-79,-158r37,0r62,128v25,-43,65,-88,96,-128r41,0r-123,161r-20,97r-34,0","w":240,"k":{"v":13,"u":13,"q":20,"p":20,"o":20,"i":7,"e":20,"a":27,"A":20,";":13,":":13,".":33,"-":27,",":33," ":7}},"Z":{"d":"9,0r3,-26r172,-204r-139,2r7,-30r177,0r-3,27r-170,203v48,-3,100,0,150,-1r-6,29r-191,0","w":219},"[":{"d":"2,70r68,-328r71,0r-5,25r-39,0r-58,279r39,0r-5,24r-71,0","w":100},"\\":{"d":"74,4r-43,-266r24,0r43,266r-24,0","w":100},"]":{"d":"49,70r-70,0r5,-24r39,0r58,-279r-38,0r5,-25r70,0","w":100},"^":{"d":"58,-121r-33,0r62,-141r26,0r62,141r-32,0r-43,-105","w":168},"_":{"d":"-23,72r0,-23r210,0r0,23r-210,0"},"`":{"d":"87,-209r-35,-49r39,0r20,49r-24,0","w":119},"a":{"d":"119,-191v51,-1,79,29,66,83v-9,35,-22,71,-11,108r-32,0v-2,-6,-3,-14,-4,-23v-31,39,-122,38,-122,-27v0,-67,83,-55,138,-67v12,-30,-4,-49,-36,-48v-28,1,-44,13,-52,34r-32,-3v13,-35,39,-57,85,-57xm47,-51v0,48,79,31,89,-1v6,-10,11,-25,14,-43v-34,13,-103,-1,-103,44"},"b":{"d":"168,-35v-20,43,-106,56,-121,0r-7,35r-28,0r54,-258r32,0r-20,92v39,-46,115,-22,115,51v0,33,-11,62,-25,80xm122,-165v-42,0,-62,50,-63,94v-2,29,15,49,40,49v43,0,59,-53,62,-94v2,-28,-15,-49,-39,-49"},"c":{"d":"52,-68v0,75,80,49,89,0r32,3v-13,40,-39,68,-85,69v-42,1,-68,-29,-68,-74v0,-83,76,-156,146,-104v13,10,18,26,18,45r-31,2v0,-22,-15,-38,-37,-38v-48,0,-64,51,-64,97","w":180},"d":{"d":"19,-72v0,-86,94,-165,144,-85r21,-101r31,0r-53,258r-30,0r6,-27v-41,57,-119,31,-119,-45xm112,-165v-42,0,-57,47,-61,87v-3,35,10,56,39,57v57,2,98,-144,22,-144"},"e":{"d":"92,-22v26,0,48,-19,57,-41r31,3v-9,29,-47,65,-88,64v-47,-1,-73,-31,-73,-79v0,-61,37,-115,99,-116v55,-1,82,47,71,106r-137,0v-5,33,11,63,40,63xm161,-110v11,-50,-46,-72,-79,-42v-11,9,-19,23,-25,42r104,0"},"f":{"d":"16,0r34,-162r-28,0r5,-25r28,0v9,-37,9,-77,57,-75v8,0,20,2,35,5r-6,28v-28,-7,-47,-8,-50,22r-4,20r36,0r-5,25r-36,0r-34,162r-32,0","w":100},"g":{"d":"149,40v-22,50,-152,50,-139,-23r32,3v-5,41,61,32,76,14v6,-8,15,-38,19,-59v-45,52,-119,17,-119,-55v0,-84,101,-155,150,-76r6,-31r29,0v-19,74,-27,164,-54,227xm112,-165v-63,0,-91,139,-22,139v41,0,65,-45,66,-89v0,-28,-16,-50,-44,-50"},"h":{"d":"154,-113v21,-49,-20,-62,-53,-43v-43,24,-43,100,-57,156r-32,0r54,-258r32,0r-21,99v20,-18,35,-32,65,-32v90,0,25,129,20,191r-32,0"},"i":{"d":"57,-222r8,-36r31,0r-7,36r-32,0xm11,0r39,-187r32,0r-39,187r-32,0","w":79},"j":{"d":"57,-222r8,-36r31,0r-7,36r-32,0xm-44,70r6,-27v34,8,40,-4,48,-41r39,-189r32,0r-40,195v-8,52,-31,78,-85,62","w":79},"k":{"d":"12,0r54,-258r32,0r-33,160r92,-89r42,0r-79,70r48,117r-35,0r-37,-96r-39,34r-13,62r-32,0","w":180},"l":{"d":"9,0r54,-258r32,0r-54,258r-32,0","w":79},"m":{"d":"148,-126v13,-37,-19,-46,-46,-30v-44,26,-43,100,-58,156r-32,0r39,-187r32,0r-7,31v21,-21,31,-34,62,-35v25,-1,41,14,45,35v19,-37,109,-56,109,7v0,49,-20,101,-29,149r-31,0r29,-145v-7,-40,-67,-9,-75,11v-14,34,-23,92,-33,134r-32,0","w":299},"n":{"d":"155,-118v6,-26,5,-47,-22,-47v-74,0,-72,100,-89,165r-32,0r39,-187r29,0r-7,33v21,-21,37,-37,69,-37v90,0,24,129,20,191r-32,0"},"o":{"d":"94,4v-47,0,-76,-27,-76,-75v0,-62,37,-121,101,-120v45,0,76,31,75,78v-1,65,-38,117,-100,117xm118,-166v-47,0,-67,46,-69,92v-1,32,16,54,45,54v46,0,68,-45,69,-93v1,-31,-17,-53,-45,-53"},"p":{"d":"193,-116v-5,64,-32,120,-92,120v-22,0,-40,-11,-52,-34r-21,102r-32,0r54,-259r30,0r-6,26v36,-52,125,-30,119,45xm121,-165v-43,0,-59,48,-62,89v-3,37,12,52,41,54v56,4,94,-143,21,-143"},"q":{"d":"111,-191v27,0,43,16,53,39r7,-35r28,0r-54,259r-32,0r20,-93v-45,50,-118,19,-115,-51v3,-63,34,-119,93,-119xm112,-165v-42,2,-59,48,-62,89v-2,32,14,54,40,54v41,0,61,-51,62,-94v2,-27,-16,-49,-40,-49"},"r":{"d":"71,-149v19,-27,42,-55,80,-35r-13,29v-74,-24,-80,89,-96,155r-30,0r39,-187r28,0","w":119,"k":{".":13,"-":7,",":20}},"s":{"d":"152,-88v38,40,-4,96,-61,92v-44,-3,-79,-21,-76,-68r32,-2v-2,31,19,45,46,46v23,1,41,-10,42,-29v-8,-45,-94,-32,-94,-88v0,-53,84,-70,120,-38v12,11,20,25,20,43r-32,2v5,-40,-78,-50,-78,-12v0,28,74,39,81,54","w":180},"t":{"d":"58,-59v-11,31,0,39,28,33r-5,26v-40,11,-76,-8,-56,-54r22,-108r-25,0r5,-25r26,0r9,-46r37,-22r-15,68r32,0r-6,25r-31,0","w":100},"u":{"d":"58,-67v-7,25,-4,46,22,45v77,-4,70,-99,89,-165r32,0r-39,187r-30,0r7,-34v-22,25,-45,38,-68,38v-91,0,-26,-128,-20,-191r32,0"},"v":{"d":"59,0r-31,-187r31,0r23,158r86,-158r33,0r-107,187r-35,0","w":180,"k":{".":27,",":27}},"w":{"d":"47,0r-19,-187r31,0r12,153v16,-54,45,-103,66,-153r34,0r8,150v16,-41,49,-106,69,-150r32,0r-92,187r-33,0r-8,-149r-66,149r-34,0","w":259,"k":{".":20,",":20}},"x":{"d":"-1,0r82,-95r-47,-92r35,0r32,69r54,-69r39,0r-79,95r47,92r-35,0r-32,-68r-56,68r-40,0","w":180},"y":{"d":"0,72r2,-30v38,13,49,-17,62,-41r-31,-188r31,0r21,151r84,-151r33,0r-119,212v-20,37,-37,59,-83,47","w":180,"k":{".":27,",":27}},"z":{"d":"7,0r5,-25r100,-113v7,-8,15,-15,24,-24v-38,4,-64,1,-102,2r6,-27r144,0r-4,20r-127,141v43,-3,68,-2,110,-2r-6,28r-150,0","w":180},"{":{"d":"87,76v-85,12,-44,-77,-40,-126v2,-18,-10,-29,-28,-29r6,-29v86,-5,12,-165,135,-154r-6,28v-68,-7,-35,93,-76,124v-7,5,-15,12,-27,17v44,14,16,85,11,124v1,16,10,17,31,17","w":120},"|":{"d":"33,76r0,-338r28,0r0,338r-28,0","w":93},"}":{"d":"79,-93v-44,-16,-14,-84,-11,-125v1,-16,-12,-17,-31,-16r6,-28v36,-3,54,6,55,36v2,38,-43,116,13,118r-6,29v-86,10,-20,171,-135,155r6,-28v55,12,44,-67,58,-95v11,-23,22,-37,45,-46","w":120},"~":{"d":"75,-122v-23,0,-30,10,-46,24r0,-36v34,-41,91,-8,134,3v19,0,36,-14,46,-25r0,38v-14,12,-26,19,-49,20v-28,1,-59,-24,-85,-24","w":210},"\u00a9":{"d":"15,-129v0,-77,57,-133,132,-133v76,0,133,57,133,133v0,75,-56,132,-133,132v-76,0,-132,-56,-132,-132xm258,-129v0,-63,-47,-111,-111,-111v-64,0,-110,48,-110,111v0,63,47,110,110,110v64,0,111,-48,111,-110xm102,-128v-9,62,78,70,88,20r21,6v-7,28,-30,49,-64,49v-43,0,-69,-30,-69,-76v0,-78,110,-104,131,-33r-21,5v-17,-46,-95,-28,-86,29","w":265}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 The Monotype Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Arial is a trademark of The Monotype Corporation in the United States and/or
 * other countries.
 * 
 * Manufacturer:
 * The Monotype Corporation
 * 
 * Designer:
 * Monotype Type Drawing Office - Robin Nicholas, Patricia Saunders 1982
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Arial","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 4 2 2 2 9 2 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-39 -277 384 77.5779","underline-thickness":"37.793","underline-position":"-19.3359","slope":"-12","unicode-range":"U+0020-U+00A9"},"glyphs":{" ":{"w":100,"k":{"Y":7,"A":13}},"\u00a0":{"w":100},"!":{"d":"73,-66r-27,0r16,-131r12,-61r53,0v-11,71,-34,130,-54,192xm32,-49r50,0r-10,49r-50,0","w":119},"\"":{"d":"54,-166v-1,-35,3,-65,11,-92r53,0v-5,34,-15,64,-27,92r-37,0xm118,-166v-1,-35,3,-65,11,-92r53,0v-5,34,-15,64,-27,92r-37,0","w":170},"#":{"d":"41,-64r-24,0r0,-39r32,0r10,-52r-42,0r0,-39r50,0r14,-68r40,0r-14,68r39,0r13,-68r41,0r-14,68r24,0r0,39r-32,0r-11,52r43,0r0,39r-51,0r-13,68r-40,0r14,-68r-39,0r-14,68r-40,0xm99,-155r-10,52r39,0r10,-52r-39,0"},"$":{"d":"191,-76v2,46,-42,83,-91,81r-6,31r-26,0r7,-34v-33,-9,-57,-37,-59,-77r44,-2v2,20,11,33,24,39r16,-77v-31,-13,-54,-37,-54,-73v0,-46,37,-76,85,-74r3,-15r25,0r-4,18v30,8,48,29,52,63r-43,2v-2,-13,-8,-22,-17,-27r-14,70v35,13,57,36,58,75xm123,-225v-38,-1,-48,50,-13,64xm108,-34v29,-1,52,-28,37,-55v-3,-5,-11,-10,-22,-16"},"%":{"d":"81,-127v-30,0,-49,-20,-48,-51v0,-42,24,-86,68,-84v31,0,50,20,49,53v-2,43,-23,82,-69,82xm99,-232v-25,1,-43,69,-15,76v18,-1,30,-38,30,-60v0,-10,-6,-16,-15,-16xm85,11r-40,0r214,-273r41,0xm242,11v-29,0,-49,-20,-48,-51v0,-42,25,-86,68,-85v31,0,50,20,49,53v-2,44,-24,83,-69,83xm260,-95v-22,0,-27,39,-29,59v-1,11,4,17,14,17v18,0,30,-37,30,-59v0,-10,-6,-18,-15,-17","w":320},"&":{"d":"217,-213v0,34,-28,56,-60,72r39,58v6,-6,14,-16,22,-29r36,22v-6,12,-18,31,-28,39v7,7,15,15,25,24r-31,33v-9,-4,-24,-18,-31,-25v-46,41,-165,26,-159,-50v4,-48,28,-67,66,-86v-29,-54,2,-107,61,-107v33,0,60,20,60,49xm156,-229v-26,0,-31,31,-17,53v19,-11,32,-17,35,-37v0,-10,-7,-17,-18,-16xm80,-73v0,41,51,45,81,22v-18,-22,-34,-44,-47,-68v-23,12,-34,27,-34,46","w":259},"'":{"d":"54,-166v-1,-35,3,-65,11,-92r53,0v-5,34,-15,64,-27,92r-37,0","w":85},"(":{"d":"157,-262v-74,73,-111,210,-71,338r-34,0v-16,-37,-28,-84,-28,-131v0,-97,41,-146,94,-207r39,0","w":119},")":{"d":"-28,76v73,-74,112,-211,70,-338r35,0v16,37,28,84,28,131v0,96,-42,146,-95,207r-38,0","w":119},"*":{"d":"73,-139r-26,-21r33,-34r-45,-11r11,-31v15,6,29,13,41,21v-3,-19,-4,-35,-4,-47r31,0v0,9,-2,24,-5,47r44,-19r10,32v-13,3,-28,5,-45,8r31,36r-27,18r-24,-40v-7,13,-16,27,-25,41","w":140},"+":{"d":"97,-37r0,-67r-68,0r0,-46r68,0r0,-67r45,0r0,67r67,0r0,46r-67,0r0,67r-45,0","w":210},",":{"d":"26,-49r50,0v-9,50,-16,106,-72,105r5,-23v16,-5,25,-14,29,-33r-23,0","w":100},"-":{"d":"24,-117r98,0r-10,48r-98,0","w":119},"\u00ad":{"d":"24,-117r98,0r-10,48r-98,0","w":119},".":{"d":"26,-49r50,0r-10,49r-50,0","w":100},"\/":{"d":"-16,4r128,-266r35,0r-127,266r-36,0","w":100},"0":{"d":"95,4v-46,0,-73,-37,-72,-88v4,-82,34,-175,111,-175v47,0,74,37,72,89v-3,78,-33,174,-111,174xm132,-218v-46,0,-56,95,-59,144v-2,23,5,38,24,38v48,0,53,-98,59,-146v3,-22,-6,-36,-24,-36"},"1":{"d":"43,-148r9,-45v43,-19,77,-41,101,-66r31,0r-54,259r-51,0r37,-179v-18,12,-49,27,-73,31","k":{"1":27}},"2":{"d":"130,-219v-22,0,-30,17,-35,42r-49,-8v6,-43,35,-71,82,-74v75,-4,99,85,50,132v-20,20,-59,54,-79,81r89,0r-10,46r-156,0v13,-82,91,-108,130,-172v12,-21,1,-47,-22,-47"},"3":{"d":"158,-132v67,36,11,142,-60,136v-46,-4,-75,-28,-80,-71r49,-6v3,24,9,34,31,36v22,1,40,-18,40,-41v0,-24,-16,-36,-42,-34r9,-42v26,4,50,-12,47,-37v-4,-43,-57,-29,-60,8r-46,-9v12,-40,39,-64,83,-67v80,-6,97,109,29,127"},"4":{"d":"111,-53r-101,0r9,-42r139,-163r44,0r-34,163r31,0r-9,42r-31,0r-11,53r-48,0xm120,-95r17,-81r-68,81r51,0"},"5":{"d":"198,-102v0,81,-93,140,-154,85v-15,-13,-21,-33,-21,-57r49,-4v-1,24,8,39,29,41v44,3,72,-101,17,-101v-17,0,-27,9,-37,19r-42,-4r39,-131r130,0r-10,46r-85,0r-12,40v48,-22,97,13,97,66"},"6":{"d":"29,-93v-4,-97,69,-207,157,-150v11,11,18,26,21,48r-47,4v1,-29,-30,-34,-46,-17v-9,10,-17,25,-23,47v48,-31,106,8,103,65v-3,56,-35,101,-90,101v-52,0,-72,-40,-75,-98xm118,-139v-42,-1,-60,97,-12,103v42,1,58,-97,12,-103"},"7":{"d":"37,-208r10,-46r170,0r-8,36v-52,47,-99,140,-117,218r-48,0v18,-79,56,-153,103,-208r-110,0"},"8":{"d":"24,-67v0,-37,23,-66,53,-75v-55,-34,-15,-117,54,-117v43,0,74,25,73,64v-1,30,-19,47,-44,57v68,37,14,150,-61,143v-43,-4,-75,-29,-75,-72xm130,-220v-18,0,-33,16,-33,35v0,16,10,27,26,27v17,0,34,-17,34,-34v0,-17,-10,-28,-27,-28xm114,-119v-40,-5,-60,82,-12,84v41,5,61,-83,12,-84"},"9":{"d":"201,-161v0,97,-72,208,-158,149v-13,-9,-19,-27,-20,-47r47,-4v-1,29,30,34,46,17v10,-10,17,-25,23,-47v-48,31,-103,-8,-103,-65v0,-51,38,-102,90,-101v51,1,75,43,75,98xm112,-116v42,3,60,-98,12,-102v-41,-2,-58,97,-12,102"},":":{"d":"64,-187r50,0r-10,49r-50,0xm36,-49r49,0r-10,49r-50,0","w":119},";":{"d":"65,-187r50,0r-10,49r-50,0xm37,-49r50,0v-9,50,-16,106,-72,105r5,-23v16,-5,25,-14,29,-33r-23,0","w":119},"\u037e":{"d":"65,-187r50,0r-10,49r-50,0xm37,-49r50,0v-9,50,-16,106,-72,105r5,-23v16,-5,25,-14,29,-33r-23,0","w":119},"<":{"d":"207,-29r-176,-77r0,-43r176,-76r0,50r-123,47r123,49r0,50","w":210},"=":{"d":"29,-143r0,-46r180,0r0,46r-180,0xm29,-65r0,-46r180,0r0,46r-180,0","w":210},">":{"d":"31,-29r0,-50r123,-48r-123,-48r0,-50r177,77r0,42","w":210},"?":{"d":"223,-197v1,57,-89,77,-100,133r-45,0v-1,-63,84,-85,97,-136v0,-17,-15,-26,-35,-25v-30,1,-42,17,-49,45r-47,-8v11,-43,46,-73,97,-74v47,-1,81,26,82,65xm72,-49r50,0r-10,49r-50,0","w":219},"@":{"d":"204,43v56,1,96,-15,121,-46r37,0v-25,51,-80,79,-155,79v-111,0,-184,-56,-184,-161v0,-106,70,-177,181,-177v88,1,147,50,149,135v1,66,-53,129,-116,127v-19,0,-28,-5,-32,-20v-43,44,-116,10,-116,-54v0,-75,87,-160,142,-93r4,-19r47,0r-29,141v0,6,2,9,7,9v35,-9,62,-50,62,-92v0,-62,-51,-102,-119,-102v-93,0,-148,60,-148,148v0,83,62,125,149,125xm189,-159v-37,0,-52,47,-54,83v0,26,10,44,31,44v39,0,53,-45,55,-86v1,-23,-12,-41,-32,-41","w":351},"A":{"d":"184,-57r-103,0r-31,57r-54,0r146,-258r59,0r41,258r-50,0xm177,-100r-15,-104r-62,104r77,0","w":259,"k":{"Y":27,"W":20,"V":27,"T":27," ":13}},"B":{"d":"249,-83v0,58,-44,83,-113,83r-122,0r54,-258v82,3,188,-18,188,63v0,33,-20,52,-49,61v24,6,42,24,42,51xm203,-189v0,-37,-53,-23,-91,-26r-13,61v46,-1,103,8,104,-35xm195,-79v0,-41,-63,-28,-105,-30r-14,68v52,-1,119,10,119,-38","w":259},"C":{"d":"138,-40v34,0,54,-24,63,-53r54,8v-17,52,-57,90,-120,90v-66,0,-101,-43,-101,-112v0,-113,112,-198,204,-133v19,13,27,35,30,61r-50,5v-6,-27,-20,-42,-49,-42v-56,0,-80,57,-83,111v-1,38,19,65,52,65","w":259},"D":{"d":"139,-258v149,-25,144,170,66,232v-38,30,-118,25,-189,26r54,-258r69,0xm208,-152v3,-59,-33,-67,-94,-63r-37,174v93,10,127,-33,131,-111","w":259},"E":{"d":"15,0r54,-258r191,0r-9,43r-138,0r-13,59r134,0r-9,43r-134,0r-16,70r150,0r-9,43r-201,0","w":240},"F":{"d":"14,0r54,-258r180,0r-9,43r-127,0r-13,62r125,0r-9,43r-125,0r-23,110r-53,0","w":219,"k":{"A":20,".":40,",":40}},"G":{"d":"83,-104v-5,73,75,73,124,48r8,-39r-66,0r9,-43r116,0r-24,111v-26,17,-68,31,-110,31v-72,0,-108,-41,-108,-107v0,-90,53,-158,143,-159v61,-1,96,30,108,81r-50,6v-7,-27,-25,-44,-57,-44v-62,0,-89,52,-93,115","w":280},"H":{"d":"192,-115r-99,0r-24,115r-53,0r54,-258r53,0r-21,100r99,0r21,-100r53,0r-54,258r-53,0","w":259},"I":{"d":"12,0r54,-258r53,0r-53,258r-54,0","w":100},"J":{"d":"60,-78v-14,39,39,49,57,26v18,-52,32,-145,47,-206r52,0v-19,75,-27,193,-67,240v-37,43,-158,26,-138,-55"},"K":{"d":"14,0r54,-258r53,0r-23,110r119,-110r71,0r-115,101r85,157r-60,0r-64,-123r-50,44r-16,79r-54,0","w":259},"L":{"d":"16,0r54,-258r53,0r-45,215r131,0r-9,43r-184,0","w":219,"k":{"Y":27,"W":20,"V":20,"T":27," ":7}},"M":{"d":"163,0r-50,0r-10,-215r-41,215r-47,0r53,-258r76,0r8,181r88,-181r76,0r-54,258r-48,0r51,-214","w":299},"N":{"d":"221,0r-50,0r-69,-173r-36,173r-50,0r54,-258r50,0r69,173r36,-173r50,0","w":259},"O":{"d":"137,5v-66,0,-106,-44,-106,-106v0,-91,50,-159,145,-161v62,-1,108,44,106,108v-3,88,-55,159,-145,159xm171,-218v-53,-1,-87,63,-87,116v0,35,24,63,59,62v54,-2,83,-59,86,-113v1,-37,-23,-64,-58,-65","w":280},"P":{"d":"253,-193v-3,84,-66,101,-165,95r-20,98r-53,0r54,-258v81,2,187,-19,184,65xm200,-189v2,-37,-50,-23,-87,-26r-16,74v60,2,100,-1,103,-48","w":240,"k":{"A":27,".":46,",":46," ":13}},"Q":{"d":"282,-154v-1,54,-25,103,-58,128v11,11,24,20,36,27r-25,33v-16,-8,-32,-21,-46,-39v-77,32,-162,-15,-158,-97v5,-86,54,-160,145,-160v62,-1,108,44,106,108xm162,-42v-2,-12,-20,-19,-29,-23r20,-30v16,8,29,20,41,33v41,-33,57,-159,-23,-156v-59,2,-84,54,-87,113v-2,43,32,74,78,63","w":280},"R":{"d":"267,-190v-2,48,-30,75,-79,80v27,30,36,59,58,110r-57,0v-15,-23,-23,-113,-76,-107r-22,0r-22,107r-53,0r54,-258v86,4,201,-23,197,68xm214,-189v1,-37,-62,-23,-100,-26r-15,70v59,0,113,5,115,-44","w":259,"k":{"Y":7,"W":7,"T":7}},"S":{"d":"208,-123v48,55,-9,132,-84,127v-60,-4,-103,-25,-101,-87r50,-3v2,36,15,43,51,46v38,3,66,-29,40,-51v-32,-27,-110,-33,-110,-96v0,-76,112,-95,162,-54v17,14,25,33,27,57r-50,2v5,-43,-85,-54,-88,-11v4,26,19,25,47,39v29,14,48,23,56,31","w":240},"T":{"d":"127,0r-53,0r45,-215r-76,0r9,-43r203,0r-9,43r-74,0","w":219,"k":{"y":13,"w":13,"u":7,"s":13,"r":7,"o":13,"i":7,"e":13,"c":13,"a":13,"O":7,"A":27,";":27,":":27,".":27,"-":20,",":27}},"U":{"d":"225,-49v-33,80,-215,69,-191,-41r35,-168r53,0r-37,183v-3,34,49,45,75,28v23,-15,25,-32,33,-70r30,-141r52,0v-16,66,-28,154,-50,209","w":259},"V":{"d":"144,0r-57,0r-46,-258r53,0r32,195r107,-195r53,0","w":240,"k":{"y":7,"u":7,"r":7,"o":13,"i":13,"e":13,"a":13,"A":27,";":13,":":13,".":33,"-":13,",":33}},"W":{"d":"260,0r-54,0r-6,-188r-93,188r-55,0r-10,-258r52,0r2,181r89,-181r57,0r6,179r85,-179r51,0","w":339,"k":{"y":7,"u":7,"r":7,"o":7,"i":3,"e":7,"a":7,"A":20,";":13,":":13,".":27,"-":13,",":27}},"X":{"d":"58,0r-69,0r114,-130r-64,-128r55,0r45,89r77,-89r66,0r-118,136r64,122r-60,0r-40,-83v-10,15,-51,62,-70,83","w":240},"Y":{"d":"144,0r-53,0r21,-100r-71,-158r57,0r47,111v23,-38,52,-73,76,-111r61,0r-118,163","w":240,"k":{"v":13,"u":13,"q":13,"p":13,"o":13,"i":13,"e":13,"a":13,"A":27,";":20,":":20,".":33,"-":27,",":33," ":7}},"Z":{"d":"9,0r8,-41r149,-174r-120,0r9,-43r185,0r-7,41r-150,175r135,-1r-9,43r-200,0","w":219},"[":{"d":"97,33r-8,38r-85,0r68,-329r86,0r-8,40r-39,0r-52,251r38,0","w":119},"\\":{"d":"68,4r-40,-266r35,0r40,266r-35,0","w":100},"]":{"d":"41,-220r8,-38r86,0r-69,329r-86,0r8,-39r39,0r53,-252r-39,0","w":119},"^":{"d":"38,-122r66,-140r39,0r64,140r-49,0r-35,-86r-35,86r-50,0","w":210},"_":{"d":"-3,71r0,-32r205,0r0,32r-205,0"},"`":{"d":"48,-263r49,0r22,52r-34,0","w":119},"a":{"d":"143,-136v-2,-28,-55,-24,-57,2r-50,-4v12,-34,39,-52,85,-53v42,-1,70,16,71,50v1,36,-29,100,-15,141r-49,0v-2,-7,-4,-14,-4,-21v-26,39,-112,31,-108,-29v3,-43,27,-59,76,-62v24,-2,40,-4,48,-7v2,-7,3,-13,3,-17xm64,-54v0,33,51,21,59,1v3,-7,8,-22,11,-34v-32,7,-70,4,-70,33"},"b":{"d":"217,-114v-6,63,-31,118,-93,118v-27,0,-46,-12,-59,-35r-6,31r-46,0r54,-258r50,0r-18,86v44,-40,125,-14,118,58xm133,-155v-52,-1,-78,121,-16,121v35,0,49,-41,51,-78v0,-23,-13,-43,-35,-43","w":219},"c":{"d":"72,-70v0,55,62,35,69,0r49,8v-14,39,-44,65,-91,66v-48,1,-77,-31,-77,-79v0,-88,90,-148,159,-99v14,10,20,27,22,46r-48,5v-1,-19,-12,-31,-30,-31v-37,0,-53,44,-53,84"},"d":{"d":"21,-74v0,-56,37,-119,93,-117v25,0,43,10,56,30r20,-97r51,0r-54,258r-48,0r4,-20v-39,46,-122,23,-122,-54xm121,-154v-49,0,-77,116,-16,121v54,1,75,-114,16,-121","w":219},"e":{"d":"125,-191v59,0,86,54,71,113r-126,0v-9,47,58,64,75,20r45,8v-15,32,-42,54,-84,54v-50,1,-85,-35,-85,-86v0,-61,43,-109,104,-109xm154,-108v6,-43,-37,-61,-63,-35v-8,8,-13,20,-16,35r79,0"},"f":{"d":"144,-187r-7,37r-36,0r-31,150r-51,0r32,-150r-29,0r8,-37r28,0v8,-43,15,-75,63,-75v15,0,31,2,48,8r-9,36v-25,-8,-47,-13,-48,18r-3,13r35,0","w":119,"k":{"f":7}},"g":{"d":"166,48v-32,46,-171,42,-154,-38r53,8v0,34,59,24,65,0r9,-39v-46,45,-120,17,-117,-54v3,-63,32,-116,90,-116v28,0,48,17,58,37r7,-33r47,0r-32,156v-9,39,-11,57,-26,79xm120,-155v-47,0,-74,112,-15,118v53,1,74,-112,15,-118","w":219},"h":{"d":"158,-111v16,-38,-16,-54,-42,-35v-36,25,-36,94,-50,146r-51,0r54,-258r51,0r-20,92v30,-32,116,-38,113,22v-3,46,-20,99,-28,144r-51,0","w":219},"i":{"d":"68,-258r51,0r-10,46r-50,0xm53,-187r51,0r-39,187r-51,0","w":100},"j":{"d":"69,-258r50,0r-9,46r-51,0xm54,-187r50,0v-16,69,-33,190,-57,240v-12,26,-56,28,-86,17r8,-42v45,9,41,-8,52,-60","w":100},"k":{"d":"14,0r54,-258r50,0r-28,134r66,-63r65,0r-75,68r40,119r-50,0r-26,-86r-34,30r-12,56r-50,0"},"l":{"d":"14,0r54,-258r50,0r-53,258r-51,0","w":100},"m":{"d":"147,-113v21,-46,-30,-52,-48,-24v-21,32,-25,93,-36,137r-50,0r39,-187r47,0r-4,23v30,-35,93,-39,105,6v18,-37,117,-51,113,11v-3,47,-20,101,-29,147r-51,0r29,-138v-4,-28,-39,-17,-52,3v-18,28,-27,94,-37,135r-50,0","w":320},"n":{"d":"157,-106v18,-44,-12,-60,-42,-40v-36,24,-34,96,-49,146r-51,0r39,-187r48,0r-5,25v29,-35,119,-45,116,19v-2,43,-20,99,-28,143r-50,0","w":219},"o":{"d":"109,4v-53,0,-86,-31,-87,-82v-2,-66,42,-114,106,-113v54,0,87,32,88,84v0,60,-44,111,-107,111xm111,-35v55,0,82,-116,17,-118v-38,-1,-54,39,-56,75v0,24,15,43,39,43","w":219},"p":{"d":"218,-111v10,82,-96,159,-149,85r-20,97r-51,0r54,-258r48,0r-4,19v43,-44,132,-21,122,57xm133,-155v-54,-1,-74,116,-15,121v51,1,77,-118,15,-121","w":219},"q":{"d":"21,-73v6,-60,32,-117,93,-118v27,0,46,12,58,34r7,-30r46,0r-54,258r-50,0r18,-87v-41,41,-125,15,-118,-57xm121,-154v-51,-1,-76,116,-16,121v54,1,76,-115,16,-121","w":219},"r":{"d":"51,-187r47,0r-8,37v25,-34,43,-50,81,-36r-20,42v-72,-15,-74,81,-89,144r-50,0","w":140,"k":{".":20,",":20}},"s":{"d":"168,-96v46,42,-6,100,-68,100v-52,0,-81,-19,-92,-56r49,-8v8,19,17,27,42,28v20,1,44,-12,31,-29v-37,-23,-94,-21,-94,-70v0,-76,153,-82,163,-11r-47,8v-4,-25,-69,-32,-69,-5v0,25,76,26,85,43"},"t":{"d":"107,2v-38,6,-81,1,-78,-36v2,-28,17,-83,23,-115r-25,0r8,-38r24,0r7,-30r57,-34r-13,64r31,0r-8,38r-31,0r-21,102v3,15,15,14,34,11","w":119},"u":{"d":"142,-25v-35,40,-117,44,-117,-19v0,-43,20,-100,28,-143r51,0r-28,136v11,41,65,4,71,-20v8,-33,17,-80,25,-116r51,0r-39,187r-47,0","w":219},"v":{"d":"108,0r-44,0r-37,-187r49,0r20,126r72,-126r55,0","k":{".":20,",":20}},"w":{"d":"210,0r-48,0r-9,-119r-57,119r-47,0r-23,-187r45,0r13,125r58,-125r46,0r6,125r58,-125r51,0","w":280,"k":{".":13,",":13}},"x":{"d":"100,-52r-46,52r-62,0r86,-96r-47,-91r54,0r27,54r47,-54r61,0r-86,97r47,90r-54,0"},"y":{"d":"30,-187r50,0r18,144v18,-49,48,-99,72,-144r53,0r-137,241v-15,22,-52,28,-84,16r5,-37v29,7,42,-4,56,-33","k":{".":13,",":13}},"z":{"d":"6,0r7,-34r102,-113r-83,0r8,-40r147,0r-6,30r-104,116r90,0r-8,41r-153,0","w":180},"{":{"d":"33,35v0,-32,37,-109,-18,-107r9,-42v91,-6,13,-166,152,-148r-8,42v-38,0,-37,2,-45,36v-14,56,-15,66,-52,91v34,14,13,86,9,112v3,14,11,15,32,15r-9,42v-41,1,-70,-3,-70,-41","w":140},"|":{"d":"31,76r0,-338r39,0r0,338r-39,0","w":100},"}":{"d":"113,-222v1,32,-38,110,18,108r-9,42v-90,5,-13,166,-153,148r10,-42v35,-2,36,-4,44,-36v12,-57,16,-68,52,-91v-35,-20,-14,-74,-10,-113v-2,-16,-10,-14,-32,-14r10,-42v40,-1,69,3,70,40","w":140},"~":{"d":"159,-91v-27,0,-64,-26,-87,-25v-16,0,-32,9,-48,25r0,-46v14,-15,27,-24,53,-24v46,0,98,49,134,-1r0,47v-10,10,-33,24,-52,24","w":210},"\u00a9":{"d":"16,-128v0,-77,56,-135,134,-135v78,0,135,57,135,135v0,77,-58,134,-135,134v-76,0,-134,-56,-134,-134xm258,-128v0,-63,-44,-108,-108,-108v-64,1,-108,46,-108,108v0,61,47,108,108,108v61,0,108,-46,108,-108xm115,-128v-9,53,60,67,68,20r28,9v-7,27,-28,45,-59,46v-41,0,-68,-30,-68,-74v0,-77,106,-107,127,-33r-28,7v-17,-44,-74,-24,-68,25","w":265}}});
;
// $Id: jquery.bgiframe.min.js,v 1.1 2009/08/19 04:28:07 sociotech Exp $

/* Copyright (c) 2006 Brandon Aaron (http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) 
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * $LastChangedDate: 2007-06-19 20:25:28 -0500 (Tue, 19 Jun 2007) $
 * $Rev: 2111 $
 *
 * Version 2.1
 */
(function($){$.fn.bgIframe=$.fn.bgiframe=function(s){if($.browser.msie&&parseInt($.browser.version)<=6){s=$.extend({top:'auto',left:'auto',width:'auto',height:'auto',opacity:true,src:'javascript:false;'},s||{});var prop=function(n){return n&&n.constructor==Number?n+'px':n;},html='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+s.src+'"'+'style="display:block;position:absolute;z-index:-1;'+(s.opacity!==false?'filter:Alpha(Opacity=\'0\');':'')+'top:'+(s.top=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+\'px\')':prop(s.top))+';'+'left:'+(s.left=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+\'px\')':prop(s.left))+';'+'width:'+(s.width=='auto'?'expression(this.parentNode.offsetWidth+\'px\')':prop(s.width))+';'+'height:'+(s.height=='auto'?'expression(this.parentNode.offsetHeight+\'px\')':prop(s.height))+';'+'"/>';return this.each(function(){if($('> iframe.bgiframe',this).length==0)this.insertBefore(document.createElement(html),this.firstChild);});}return this;};if(!$.browser.version)$.browser.version=navigator.userAgent.toLowerCase().match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)[1];})(jQuery);;
// $Id: hoverIntent.js,v 1.1 2009/08/19 04:28:07 sociotech Exp $

(function($){
	/* hoverIntent by Brian Cherne */
	$.fn.hoverIntent = function(f,g) {
		// default configuration options
		var cfg = {
			sensitivity: 7,
			interval: 100,
			timeout: 0
		};
		// override configuration options with user supplied object
		cfg = $.extend(cfg, g ? { over: f, out: g } : f );

		// instantiate variables
		// cX, cY = current X and Y position of mouse, updated by mousemove event
		// pX, pY = previous X and Y position of mouse, set by mouseover and polling interval
		var cX, cY, pX, pY;

		// A private function for getting mouse position
		var track = function(ev) {
			cX = ev.pageX;
			cY = ev.pageY;
		};

		// A private function for comparing current and previous mouse position
		var compare = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			// compare mouse positions to see if they've crossed the threshold
			if ( ( Math.abs(pX-cX) + Math.abs(pY-cY) ) < cfg.sensitivity ) {
				$(ob).unbind("mousemove",track);
				// set hoverIntent state to true (so mouseOut can be called)
				ob.hoverIntent_s = 1;
				return cfg.over.apply(ob,[ev]);
			} else {
				// set previous coordinates for next time
				pX = cX; pY = cY;
				// use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs)
				ob.hoverIntent_t = setTimeout( function(){compare(ev, ob);} , cfg.interval );
			}
		};

		// A private function for delaying the mouseOut function
		var delay = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			ob.hoverIntent_s = 0;
			return cfg.out.apply(ob,[ev]);
		};

		// A private function for handling mouse 'hovering'
		var handleHover = function(e) {
			// next three lines copied from jQuery.hover, ignore children onMouseOver/onMouseOut
			var p = (e.type == "mouseover" ? e.fromElement : e.toElement) || e.relatedTarget;
			while ( p && p != this ) { try { p = p.parentNode; } catch(e) { p = this; } }
			if ( p == this ) { return false; }

			// copy objects to be passed into t (required for event object to be passed in IE)
			var ev = jQuery.extend({},e);
			var ob = this;

			// cancel hoverIntent timer if it exists
			if (ob.hoverIntent_t) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); }

			// else e.type == "onmouseover"
			if (e.type == "mouseover") {
				// set "previous" X and Y position based on initial entry point
				pX = ev.pageX; pY = ev.pageY;
				// update "current" X and Y position based on mousemove
				$(ob).bind("mousemove",track);
				// start polling interval (self-calling timeout) to compare mouse coordinates over time
				if (ob.hoverIntent_s != 1) { ob.hoverIntent_t = setTimeout( function(){compare(ev,ob);} , cfg.interval );}

			// else e.type == "onmouseout"
			} else {
				// unbind expensive mousemove event
				$(ob).unbind("mousemove",track);
				// if hoverIntent state is true, then call the mouseOut function after the specified delay
				if (ob.hoverIntent_s == 1) { ob.hoverIntent_t = setTimeout( function(){delay(ev,ob);} , cfg.timeout );}
			}
		};

		// bind the function to the two event listeners
		return this.mouseover(handleHover).mouseout(handleHover);
	};
	
})(jQuery);;
// $Id: supposition.js,v 1.1 2009/08/19 04:28:07 sociotech Exp $

/*
 * Supposition v0.2 - an optional enhancer for Superfish jQuery menu widget
 *
 * Copyright (c) 2008 Joel Birch - based mostly on work by Jesse Klaasse and credit goes largely to him.
 * Special thanks to Karl Swedberg for valuable input.
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 */

(function($){

	$.fn.supposition = function(){
		var $w = $(window), /*do this once instead of every onBeforeShow call*/
			_offset = function(dir) {
				return window[dir == 'y' ? 'pageYOffset' : 'pageXOffset']
				|| document.documentElement && document.documentElement[dir=='y' ? 'scrollTop' : 'scrollLeft']
			    || document.body[dir=='y' ? 'scrollTop' : 'scrollLeft'];
			},
			onInit = function(){
				/* I haven't touched this bit - needs work as there are still z-index issues */
				$topNav = $('li',this);
				var cZ=parseInt($topNav.css('z-index')) + $topNav.length;
				$topNav.each(function() {
					$(this).css({zIndex:--cZ});
				});
			},
			onHide = function(){
				this.css({marginTop:'',marginLeft:''});
			},
			onBeforeShow = function(){
				this.each(function(){
					var $u = $(this);
					$u.css('display','block');
					var menuWidth = $u.width(),
						parentWidth = $u.parents('ul').width(),
						totalRight = $w.width() + _offset('x'),
						menuRight = $u.offset().left + menuWidth;
					if (menuRight > totalRight) {
						$u.css('margin-left', ($u.parents('ul').length == 1 ? totalRight - menuRight : -(menuWidth + parentWidth)) + 'px');
					}

					var windowHeight = $w.height(),
						offsetTop = $u.offset().top,
						menuHeight = $u.height(),
						baseline = windowHeight + _offset('y');
					var expandUp = (offsetTop + menuHeight > baseline);
					if (expandUp) {
						$u.css('margin-top',baseline - (menuHeight + offsetTop));
					}
					$u.css('display','none');
				});
			};
		
		return this.each(function() {
			var o = $.fn.superfish.o[this.serial]; /* get this menu's options */
			
			/* if callbacks already set, store them */
			var _onInit = o.onInit,
				_onBeforeShow = o.onBeforeShow,
				_onHide = o.onHide;
				
			$.extend($.fn.superfish.o[this.serial],{
				onInit		: function() {
					onInit.call(this); /* fire our Supposition callback */
					_onInit.call(this); /* fire stored callbacks */
				},
				onBeforeShow: function() {
					onBeforeShow.call(this); /* fire our Supposition callback */
					_onBeforeShow.call(this); /* fire stored callbacks */
				},
				onHide		: function() {
					onHide.call(this); /* fire our Supposition callback */
					_onHide.call(this); /* fire stored callbacks */
				}
			});
		});
	};

})(jQuery);;
// $Id: supersubs.js,v 1.1 2009/08/19 04:28:07 sociotech Exp $

/*
 * Supersubs v0.2b - jQuery plugin
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 *
 * This plugin automatically adjusts submenu widths of suckerfish-style menus to that of
 * their longest list item children. If you use this, please expect bugs and report them
 * to the jQuery Google Group with the word 'Superfish' in the subject line.
 *
 */

;(function($){ // $ will refer to jQuery within this closure

	$.fn.supersubs = function(options){
		var opts = $.extend({}, $.fn.supersubs.defaults, options);
		// return original object to support chaining
		return this.each(function() {
			// cache selections
			var $$ = $(this);
			// support metadata
			var o = $.meta ? $.extend({}, opts, $$.data()) : opts;
			// get the font size of menu.
			// .css('fontSize') returns various results cross-browser, so measure an em dash instead
			var fontsize = $('<li id="menu-fontsize">&#8212;</li>').css({
				'padding' : 0,
				'position' : 'absolute',
				'top' : '-999em',
				'width' : 'auto'
			}).appendTo($$).width(); //clientWidth is faster, but was incorrect here
			// remove em dash
			$('#menu-fontsize').remove();
			// cache all ul elements
			$ULs = $$.find('ul');
			// loop through each ul in menu
			$ULs.each(function(i) {	
				// cache this ul
				var $ul = $ULs.eq(i);
				// get all (li) children of this ul
				var $LIs = $ul.children();
				// get all anchor grand-children
				var $As = $LIs.children('a');
				// force content to one line and save current float property
				var liFloat = $LIs.css('white-space','nowrap').css('float');
				// remove width restrictions and floats so elements remain vertically stacked
				var emWidth = $ul.add($LIs).add($As).css({
					'float' : 'none',
					'width'	: 'auto'
				})
				// this ul will now be shrink-wrapped to longest li due to position:absolute
				// so save its width as ems. Clientwidth is 2 times faster than .width() - thanks Dan Switzer
				.end().end()[0].clientWidth / fontsize;
				// add more width to ensure lines don't turn over at certain sizes in various browsers
				emWidth += o.extraWidth;
				// restrict to at least minWidth and at most maxWidth
				if (emWidth > o.maxWidth)		{ emWidth = o.maxWidth; }
				else if (emWidth < o.minWidth)	{ emWidth = o.minWidth; }
				emWidth += 'em';
				// set ul to width in ems
				$ul.css('width',emWidth);
				// restore li floats to avoid IE bugs
				// set li width to full width of this ul
				// revert white-space to normal
				$LIs.css({
					'float' : liFloat,
					'width' : '100%',
					'white-space' : 'normal'
				})
				// update offset position of descendant ul to reflect new width of parent
				.each(function(){
					var $childUl = $('>ul',this);
					var offsetDirection = $childUl.css('left')!==undefined ? 'left' : 'right';
					$childUl.css(offsetDirection,emWidth);
				});
			});
			
		});
	};
	// expose defaults
	$.fn.supersubs.defaults = {
		minWidth		: 9,		// requires em unit.
		maxWidth		: 25,		// requires em unit.
		extraWidth		: 0			// extra width can ensure lines don't sometimes turn over due to slight browser differences in how they round-off values
	};
	
})(jQuery); // plugin code ends
;
// $Id: superfish.js,v 1.1 2009/08/19 04:28:07 sociotech Exp $

/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

;(function($){
	$.fn.superfish = function(op){

		var sf = $.fn.superfish,
			c = sf.c,
			$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
			over = function(){
				var $$ = $(this), menu = getMenu($$);
				clearTimeout(menu.sfTimer);
				$$.showSuperfishUl().siblings().hideSuperfishUl();
			},
			out = function(){
				var $$ = $(this), menu = getMenu($$), o = sf.op;
				clearTimeout(menu.sfTimer);
				menu.sfTimer=setTimeout(function(){
					o.retainPath=($.inArray($$[0],o.$path)>-1);
					$$.hideSuperfishUl();
					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
				},o.delay);	
			},
			getMenu = function($menu){
				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
				sf.op = sf.o[menu.serial];
				return menu;
			},
			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
			
		return this.each(function() {
			var s = this.serial = sf.o.length;
			var o = $.extend({},sf.defaults,op);
			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
					.filter('li:has(ul)').removeClass(o.pathClass);
			});
			sf.o[s] = sf.op = o;
			
			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
				if (o.autoArrows) addArrow( $('>a:first-child',this) );
			})
			.not('.'+c.bcClass)
				.hideSuperfishUl();
			
			var $a = $('a',this);
			$a.each(function(i){
				var $li = $a.eq(i).parents('li');
				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
			});
			o.onInit.call(this);
			
		}).each(function() {
			menuClasses = [c.menuClass];
			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
			$(this).addClass(menuClasses.join(' '));
		});
	};

	var sf = $.fn.superfish;
	sf.o = [];
	sf.op = {};
	sf.IE7fix = function(){
		var o = sf.op;
		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
			this.toggleClass(sf.c.shadowClass+'-off');
		};
	sf.c = {
		bcClass     : 'sf-breadcrumb',
		menuClass   : 'sf-js-enabled',
		anchorClass : 'sf-with-ul',
		arrowClass  : 'sf-sub-indicator',
		shadowClass : 'sf-shadow'
	};
	sf.defaults = {
		hoverClass	: 'sfHover',
		pathClass	: 'overideThisToUse',
		pathLevels	: 1,
		delay		: 800,
		animation	: {opacity:'show'},
		speed		: 'normal',
		autoArrows	: true,
		dropShadows : true,
		disableHI	: false,		// true disables hoverIntent detection
		onInit		: function(){}, // callback functions
		onBeforeShow: function(){},
		onShow		: function(){},
		onHide		: function(){}
	};
	$.fn.extend({
		hideSuperfishUl : function(){
			var o = sf.op,
				not = (o.retainPath===true) ? o.$path : '';
			o.retainPath = false;
			var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
					.find('>ul').hide().css('visibility','hidden');
			o.onHide.call($ul);
			return this;
		},
		showSuperfishUl : function(){
			var o = sf.op,
				sh = sf.c.shadowClass+'-off',
				$ul = this.addClass(o.hoverClass)
					.find('>ul:hidden').css('visibility','visible');
			sf.IE7fix.call($ul);
			o.onBeforeShow.call($ul);
			$ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
			return this;
		}
	});

})(jQuery);
;
// $Id: screenshot.js,v 1.1.2.2 2010/02/14 06:44:15 sociotech Exp $
/*
 * Screenshot preview script 
 * (based on "Easiest Tooltip" script by Alen Grakalic: http://cssglobe.com)
 *
 */

this.screenshotPreview = function(){
  // configure distance of preview from the cursor
  var xOffset = 20;
  var yOffset = 0;

  $('span.preview-icon').hover(function(e){
    var img_class = this.id;
    var caption = $(this).parent().text();
    // add preview markup
    $('body').append('<div id="screenshot">' +
                     '<div class="screenshot-preview ' + img_class + '" alt="preview"></div>' + 
                     '<div class="screenshot-caption">' + caption + '</div>' +
                     '</div>');
    $("#screenshot").hide();  // hide preview until dimensions are set
    $("#screenshot").css("left", (e.pageX + xOffset) + "px").css("top", (e.pageY + yOffset) + "px");  // set initial preview position
    // load image in order to set preview dimensions
    var img = new Image();
    img.onload = function() {
      var caption_height = parseFloat($("#screenshot .screenshot-caption").css("height"));
      $("#screenshot").css("height", img.height + caption_height);
      $("#screenshot").css("width", img.width);
      $("#screenshot ." + img_class).css("height", img.height);
      $("#screenshot ." + img_class).css("width", img.width);
      $("#screenshot .screenshot-caption").css("width", img.width - 10);
      $("#screenshot").fadeIn("fast");  // now show preview
    }
    img.src = $("." + img_class).css("background-image").replace(/^url|[\(\)\"]/g, '');
  },
  function(){
    $("#screenshot").remove();
  });
  // adjust preview position with cursor movement
  $("span.preview-icon").mousemove(function(e){
    $("#screenshot").css("left", (e.pageX + xOffset) + "px").css("top", (e.pageY + yOffset) + "px");
  });
};

// start the script on page load
$(document).ready(function(){
  if ($('span.preview-icon').size() > 0) {
    screenshotPreview();
  }
});
;
 $(document).ready(function() {

   $('.primary-menu-inner ul.sf-menu a').hover(
     function(){
       if(!$(this).hasClass('active')){
         $(this).parent().addClass('hover');
       }
     },
     function(){
       if(!$(this).hasClass('active')){
         $(this).parent().removeClass('hover');
       }
     }
   );

//   $('.primary-menu-inner ul.sf-menu li.active-trail a').css('width','auto');

$(document).ready(function() {
        $('#block-menu-secondary-links ul').superfish({
           delay:       800,                            // one second delay on mouseout
            animation:   {opacity:'show',height:'show'},  // fade-in and slide-down animation
            speed:       'fast',                          // faster animation speed
            autoArrows:  false,                           // disable generation of arrow mark-up
            dropShadows: false  

          });
          $('.nav li li:has(ul) > a').addClass('subfish');
      });
 });


function summerFairSlideTransitionBefore(currSlideElement, nextSlideElement, options, afterCalback, forwardFlag) {
  console.log('before transition');
} ;
// $Id: jquery.equalheights.js,v 1.1.2.1 2010/02/14 06:44:15 sociotech Exp $

/**
 * Equal Heights Plugin
 * Equalize the heights of elements. Great for columns or any elements
 * that need to be the same size (floats, etc).
 * 
 * Version 1.0
 * Updated 12/10/2008
 *
 * Copyright (c) 2008 Rob Glazebrook (cssnewbie.com) 
 *
 * Usage: $(object).equalHeights([minHeight], [maxHeight]);
 * 
 * Example 1: $(".cols").equalHeights(); Sets all columns to the same height.
 * Example 2: $(".cols").equalHeights(400); Sets all cols to at least 400px tall.
 * Example 3: $(".cols").equalHeights(100,300); Cols are at least 100 but no more
 * than 300 pixels tall. Elements with too much content will gain a scrollbar.
 * 
 */

(function($) {
	$.fn.equalHeights = function(minHeight, maxHeight) {
		tallest = (minHeight) ? minHeight : 0;
		this.each(function() {
			if($(this).height() > tallest) {
				tallest = $(this).height();
			}
		});
		if((maxHeight) && tallest > maxHeight) tallest = maxHeight;
		return this.each(function() {
			$(this).height(tallest).css("overflow","visible");
		});
	};
})(jQuery);;

