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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 *
 * Version: 1.3.1 (05/03/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

(function($) {

	var tmp, loading, overlay, wrap, outer, inner, close, nav_left, nav_right,

		selectedIndex = 0, selectedOpts = {}, selectedArray = [], currentIndex = 0, currentOpts = {}, currentArray = [],

		ajaxLoader = null, imgPreloader = new Image(), imgRegExp = /\.(jpg|gif|png|bmp|jpeg)(.*)?$/i, swfRegExp = /[^\.]\.(swf)\s*$/i,

		loadingTimer, loadingFrame = 1,

		start_pos, final_pos, busy = false, shadow = 20, fx = $.extend($('<div/>')[0], { prop: 0 }), titleh = 0, 

		isIE6 = !$.support.opacity && !window.XMLHttpRequest,

		/*
		 * Private methods 
		 */

		fancybox_abort = function() {
			loading.hide();

			imgPreloader.onerror = imgPreloader.onload = null;

			if (ajaxLoader) {
				ajaxLoader.abort();
			}

			tmp.empty();
		},

		fancybox_error = function() {
			$.fancybox('<p id="fancybox_error">The requested content cannot be loaded.<br />Please try again later.</p>', {
				'scrolling'		: 'no',
				'padding'		: 20,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none'
			});
		},

		fancybox_get_viewport = function() {
			return [ $(window).width(), $(window).height(), $(document).scrollLeft(), $(document).scrollTop() ];
		},

		fancybox_get_zoom_to = function () {
			var view	= fancybox_get_viewport(),
				to		= {},

				margin = currentOpts.margin,
				resize = currentOpts.autoScale,

				horizontal_space	= (shadow + margin) * 2,
				vertical_space		= (shadow + margin) * 2,
				double_padding		= (currentOpts.padding * 2),
				
				ratio;

			if (currentOpts.width.toString().indexOf('%') > -1) {
				to.width = ((view[0] * parseFloat(currentOpts.width)) / 100) - (shadow * 2) ;
				resize = false;

			} else {
				to.width = currentOpts.width + double_padding;
			}

			if (currentOpts.height.toString().indexOf('%') > -1) {
				to.height = ((view[1] * parseFloat(currentOpts.height)) / 100) - (shadow * 2);
				resize = false;

			} else {
				to.height = currentOpts.height + double_padding;
			}

			if (resize && (to.width > (view[0] - horizontal_space) || to.height > (view[1] - vertical_space))) {
				if (selectedOpts.type == 'image' || selectedOpts.type == 'swf') {
					horizontal_space	+= double_padding;
					vertical_space		+= double_padding;

					ratio = Math.min(Math.min( view[0] - horizontal_space, currentOpts.width) / currentOpts.width, Math.min( view[1] - vertical_space, currentOpts.height) / currentOpts.height);

					to.width	= Math.round(ratio * (to.width	- double_padding)) + double_padding;
					to.height	= Math.round(ratio * (to.height	- double_padding)) + double_padding;

				} else {
					to.width	= Math.min(to.width,	(view[0] - horizontal_space));
					to.height	= Math.min(to.height,	(view[1] - vertical_space));
				}
			}

			to.top	= view[3] + ((view[1] - (to.height	+ (shadow * 2 ))) * 0.5);
			to.left	= view[2] + ((view[0] - (to.width	+ (shadow * 2 ))) * 0.5);

			if (currentOpts.autoScale === false) {
				to.top	= Math.max(view[3] + margin, to.top);
				to.left	= Math.max(view[2] + margin, to.left);
			}

			return to;
		},

		fancybox_format_title = function(title) {
			if (title && title.length) {
				switch (currentOpts.titlePosition) {
					case 'inside':
						return title;
					case 'over':
						return '<span id="fancybox-title-over">' + title + '</span>';
					default:
						return '<span id="fancybox-title-wrap"><span id="fancybox-title-left"></span><span id="fancybox-title-main">' + title + '</span><span id="fancybox-title-right"></span></span>';
				}
			}

			return false;
		},

		fancybox_process_title = function() {
			var title	= currentOpts.title,
				width	= final_pos.width - (currentOpts.padding * 2),
				titlec	= 'fancybox-title-' + currentOpts.titlePosition;
				
			$('#fancybox-title').remove();

			titleh = 0;

			if (currentOpts.titleShow === false) {
				return;
			}

			title = $.isFunction(currentOpts.titleFormat) ? currentOpts.titleFormat(title, currentArray, currentIndex, currentOpts) : fancybox_format_title(title);

			if (!title || title === '') {
				return;
			}

			$('<div id="fancybox-title" class="' + titlec + '" />').css({
				'width'			: width,
				'paddingLeft'	: currentOpts.padding,
				'paddingRight'	: currentOpts.padding
			}).html(title).appendTo('body');

			switch (currentOpts.titlePosition) {
				case 'inside':
					titleh = $("#fancybox-title").outerHeight(true) - currentOpts.padding;
					final_pos.height += titleh;
				break;

				case 'over':
					$('#fancybox-title').css('bottom', currentOpts.padding);
				break;

				default:
					$('#fancybox-title').css('bottom', $("#fancybox-title").outerHeight(true) * -1);
				break;
			}

			$('#fancybox-title').appendTo( outer ).hide();
		},

		fancybox_set_navigation = function() {
			$(document).unbind('keydown.fb').bind('keydown.fb', function(e) {
				if (e.keyCode == 27 && currentOpts.enableEscapeButton) {
					e.preventDefault();
					$.fancybox.close();

				} else if (e.keyCode == 37) {
					e.preventDefault();
					$.fancybox.prev();

				} else if (e.keyCode == 39) {
					e.preventDefault();
					$.fancybox.next();
				}
			});

			if ($.fn.mousewheel) {
				wrap.unbind('mousewheel.fb');

				if (currentArray.length > 1) {
					wrap.bind('mousewheel.fb', function(e, delta) {
						e.preventDefault();

						if (busy || delta === 0) {
							return;
						}

						if (delta > 0) {
							$.fancybox.prev();
						} else {
							$.fancybox.next();
						}
					});
				}
			}

			if (!currentOpts.showNavArrows) { return; }

			if ((currentOpts.cyclic && currentArray.length > 1) || currentIndex !== 0) {
				nav_left.show();
			}

			if ((currentOpts.cyclic && currentArray.length > 1) || currentIndex != (currentArray.length -1)) {
				nav_right.show();
			}
		},

		fancybox_preload_images = function() {
			var href, 
				objNext;
				
			if ((currentArray.length -1) > currentIndex) {
				href = currentArray[ currentIndex + 1 ].href;

				if (typeof href !== 'undefined' && href.match(imgRegExp)) {
					objNext = new Image();
					objNext.src = href;
				}
			}

			if (currentIndex > 0) {
				href = currentArray[ currentIndex - 1 ].href;

				if (typeof href !== 'undefined' && href.match(imgRegExp)) {
					objNext = new Image();
					objNext.src = href;
				}
			}
		},

		_finish = function () {
			inner.css('overflow', (currentOpts.scrolling == 'auto' ? (currentOpts.type == 'image' || currentOpts.type == 'iframe' || currentOpts.type == 'swf' ? 'hidden' : 'auto') : (currentOpts.scrolling == 'yes' ? 'auto' : 'visible')));

			if (!$.support.opacity) {
				inner.get(0).style.removeAttribute('filter');
				wrap.get(0).style.removeAttribute('filter');
			}

			$('#fancybox-title').show();

			if (currentOpts.hideOnContentClick)	{
				inner.one('click', $.fancybox.close);
			}
			if (currentOpts.hideOnOverlayClick)	{
				overlay.one('click', $.fancybox.close);
			}

			if (currentOpts.showCloseButton) {
				close.show();
			}

			fancybox_set_navigation();

			$(window).bind("resize.fb", $.fancybox.center);

			if (currentOpts.centerOnScroll) {
				$(window).bind("scroll.fb", $.fancybox.center);
			} else {
				$(window).unbind("scroll.fb");
			}

			if ($.isFunction(currentOpts.onComplete)) {
				currentOpts.onComplete(currentArray, currentIndex, currentOpts);
			}

			busy = false;

			fancybox_preload_images();
		},

		fancybox_draw = function(pos) {
			var width	= Math.round(start_pos.width	+ (final_pos.width	- start_pos.width)	* pos),
				height	= Math.round(start_pos.height	+ (final_pos.height	- start_pos.height)	* pos),

				top		= Math.round(start_pos.top	+ (final_pos.top	- start_pos.top)	* pos),
				left	= Math.round(start_pos.left	+ (final_pos.left	- start_pos.left)	* pos);

			wrap.css({
				'width'		: width		+ 'px',
				'height'	: height	+ 'px',
				'top'		: top		+ 'px',
				'left'		: left		+ 'px'
			});

			width	= Math.max(width - currentOpts.padding * 2, 0);
			height	= Math.max(height - (currentOpts.padding * 2 + (titleh * pos)), 0);

			inner.css({
				'width'		: width		+ 'px',
				'height'	: height	+ 'px'
			});

			if (typeof final_pos.opacity !== 'undefined') {
				wrap.css('opacity', (pos < 0.5 ? 0.5 : pos));
			}
		},

		fancybox_get_obj_pos = function(obj) {
			var pos		= obj.offset();

			pos.top		+= parseFloat( obj.css('paddingTop') )	|| 0;
			pos.left	+= parseFloat( obj.css('paddingLeft') )	|| 0;

			pos.top		+= parseFloat( obj.css('border-top-width') )	|| 0;
			pos.left	+= parseFloat( obj.css('border-left-width') )	|| 0;

			pos.width	= obj.width();
			pos.height	= obj.height();

			return pos;
		},

		fancybox_get_zoom_from = function() {
			var orig = selectedOpts.orig ? $(selectedOpts.orig) : false,
				from = {},
				pos,
				view;

			if (orig && orig.length) {
				pos = fancybox_get_obj_pos(orig);

				from = {
					width	: (pos.width	+ (currentOpts.padding * 2)),
					height	: (pos.height	+ (currentOpts.padding * 2)),
					top		: (pos.top		- currentOpts.padding - shadow),
					left	: (pos.left		- currentOpts.padding - shadow)
				};
				
			} else {
				view = fancybox_get_viewport();

				from = {
					width	: 1,
					height	: 1,
					top		: view[3] + view[1] * 0.5,
					left	: view[2] + view[0] * 0.5
				};
			}

			return from;
		},

		fancybox_show = function() {
			loading.hide();

			if (wrap.is(":visible") && $.isFunction(currentOpts.onCleanup)) {
				if (currentOpts.onCleanup(currentArray, currentIndex, currentOpts) === false) {
					$.event.trigger('fancybox-cancel');

					busy = false;
					return;
				}
			}

			currentArray	= selectedArray;
			currentIndex	= selectedIndex;
			currentOpts		= selectedOpts;

			inner.get(0).scrollTop	= 0;
			inner.get(0).scrollLeft	= 0;

			if (currentOpts.overlayShow) {
				if (isIE6) {
					$('select:not(#fancybox-tmp select)').filter(function() {
						return this.style.visibility !== 'hidden';
					}).css({'visibility':'hidden'}).one('fancybox-cleanup', function() {
						this.style.visibility = 'inherit';
					});
				}

				overlay.css({
					'background-color'	: currentOpts.overlayColor,
					'opacity'			: currentOpts.overlayOpacity
				}).unbind().show();
			}

			final_pos = fancybox_get_zoom_to();

			fancybox_process_title();

			if (wrap.is(":visible")) {
				$( close.add( nav_left ).add( nav_right ) ).hide();

				var pos = wrap.position(),
					equal;

				start_pos = {
					top		:	pos.top ,
					left	:	pos.left,
					width	:	wrap.width(),
					height	:	wrap.height()
				};

				equal = (start_pos.width == final_pos.width && start_pos.height == final_pos.height);

				inner.fadeOut(currentOpts.changeFade, function() {
					var finish_resizing = function() {
						inner.html( tmp.contents() ).fadeIn(currentOpts.changeFade, _finish);
					};
					
					$.event.trigger('fancybox-change');

					inner.empty().css('overflow', 'hidden');

					if (equal) {
						inner.css({
							top			: currentOpts.padding,
							left		: currentOpts.padding,
							width		: Math.max(final_pos.width	- (currentOpts.padding * 2), 1),
							height		: Math.max(final_pos.height	- (currentOpts.padding * 2) - titleh, 1)
						});
						
						finish_resizing();

					} else {
						inner.css({
							top			: currentOpts.padding,
							left		: currentOpts.padding,
							width		: Math.max(start_pos.width	- (currentOpts.padding * 2), 1),
							height		: Math.max(start_pos.height	- (currentOpts.padding * 2), 1)
						});
						
						fx.prop = 0;

						$(fx).animate({ prop: 1 }, {
							 duration	: currentOpts.changeSpeed,
							 easing		: currentOpts.easingChange,
							 step		: fancybox_draw,
							 complete	: finish_resizing
						});
					}
				});

				return;
			}

			wrap.css('opacity', 1);

			if (currentOpts.transitionIn == 'elastic') {
				start_pos = fancybox_get_zoom_from();

				inner.css({
						top			: currentOpts.padding,
						left		: currentOpts.padding,
						width		: Math.max(start_pos.width	- (currentOpts.padding * 2), 1),
						height		: Math.max(start_pos.height	- (currentOpts.padding * 2), 1)
					})
					.html( tmp.contents() );

				wrap.css(start_pos).show();

				if (currentOpts.opacity) {
					final_pos.opacity = 0;
				}

				fx.prop = 0;

				$(fx).animate({ prop: 1 }, {
					 duration	: currentOpts.speedIn,
					 easing		: currentOpts.easingIn,
					 step		: fancybox_draw,
					 complete	: _finish
				});

			} else {
				inner.css({
						top			: currentOpts.padding,
						left		: currentOpts.padding,
						width		: Math.max(final_pos.width	- (currentOpts.padding * 2), 1),
						height		: Math.max(final_pos.height	- (currentOpts.padding * 2) - titleh, 1)
					})
					.html( tmp.contents() );

				wrap.css( final_pos ).fadeIn( currentOpts.transitionIn == 'none' ? 0 : currentOpts.speedIn, _finish );
			}
		},

		fancybox_process_inline = function() {
			tmp.width(	selectedOpts.width );
			tmp.height(	selectedOpts.height );

			if (selectedOpts.width	== 'auto') {
				selectedOpts.width = tmp.width();
			}
			if (selectedOpts.height	== 'auto') {
				selectedOpts.height	= tmp.height();
			}

			fancybox_show();
		},
		
		fancybox_process_image = function() {
			busy = true;

			selectedOpts.width	= imgPreloader.width;
			selectedOpts.height	= imgPreloader.height;

			$("<img />").attr({
				'id'	: 'fancybox-img',
				'src'	: imgPreloader.src,
				'alt'	: selectedOpts.title
			}).appendTo( tmp );

			fancybox_show();
		},

		fancybox_start = function() {
			fancybox_abort();

			var obj	= selectedArray[ selectedIndex ],
				href, 
				type, 
				title,
				str,
				emb,
				selector,
				data;

			selectedOpts = $.extend({}, $.fn.fancybox.defaults, (typeof $(obj).data('fancybox') == 'undefined' ? selectedOpts : $(obj).data('fancybox')));
			title = obj.title || $(obj).title || selectedOpts.title || '';
			
			if (obj.nodeName && !selectedOpts.orig) {
				selectedOpts.orig = $(obj).children("img:first").length ? $(obj).children("img:first") : $(obj);
			}

			if (title === '' && selectedOpts.orig) {
				title = selectedOpts.orig.attr('alt');
			}

			if (obj.nodeName && (/^(?:javascript|#)/i).test(obj.href)) {
				href = selectedOpts.href || null;
			} else {
				href = selectedOpts.href || obj.href || null;
			}

			if (selectedOpts.type) {
				type = selectedOpts.type;

				if (!href) {
					href = selectedOpts.content;
				}
				
			} else if (selectedOpts.content) {
				type	= 'html';

			} else if (href) {
				if (href.match(imgRegExp)) {
					type = 'image';

				} else if (href.match(swfRegExp)) {
					type = 'swf';

				} else if ($(obj).hasClass("iframe")) {
					type = 'iframe';

				} else if (href.match(/#/)) {
					obj = href.substr(href.indexOf("#"));

					type = $(obj).length > 0 ? 'inline' : 'ajax';
				} else {
					type = 'ajax';
				}
			} else {
				type = 'inline';
			}

			selectedOpts.type	= type;
			selectedOpts.href	= href;
			selectedOpts.title	= title;

			if (selectedOpts.autoDimensions && selectedOpts.type !== 'iframe' && selectedOpts.type !== 'swf') {
				selectedOpts.width		= 'auto';
				selectedOpts.height		= 'auto';
			}

			if (selectedOpts.modal) {
				selectedOpts.overlayShow		= true;
				selectedOpts.hideOnOverlayClick	= false;
				selectedOpts.hideOnContentClick	= false;
				selectedOpts.enableEscapeButton	= false;
				selectedOpts.showCloseButton	= false;
			}

			if ($.isFunction(selectedOpts.onStart)) {
				if (selectedOpts.onStart(selectedArray, selectedIndex, selectedOpts) === false) {
					busy = false;
					return;
				}
			}

			tmp.css('padding', (shadow + selectedOpts.padding + selectedOpts.margin));

			$('.fancybox-inline-tmp').unbind('fancybox-cancel').bind('fancybox-change', function() {
				$(this).replaceWith(inner.children());
			});

			switch (type) {
				case 'html' :
					tmp.html( selectedOpts.content );
					fancybox_process_inline();
				break;

				case 'inline' :
					$('<div class="fancybox-inline-tmp" />').hide().insertBefore( $(obj) ).bind('fancybox-cleanup', function() {
						$(this).replaceWith(inner.children());
					}).bind('fancybox-cancel', function() {
						$(this).replaceWith(tmp.children());
					});

					$(obj).appendTo(tmp);

					fancybox_process_inline();
				break;

				case 'image':
					busy = false;

					$.fancybox.showActivity();

					imgPreloader = new Image();

					imgPreloader.onerror = function() {
						fancybox_error();
					};

					imgPreloader.onload = function() {
						imgPreloader.onerror = null;
						imgPreloader.onload = null;
						fancybox_process_image();
					};

					imgPreloader.src = href;
		
				break;

				case 'swf':
					str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="' + selectedOpts.width + '" height="' + selectedOpts.height + '"><param name="movie" value="' + href + '"></param>';
					emb = '';
					
					$.each(selectedOpts.swf, function(name, val) {
						str += '<param name="' + name + '" value="' + val + '"></param>';
						emb += ' ' + name + '="' + val + '"';
					});

					str += '<embed src="' + href + '" type="application/x-shockwave-flash" width="' + selectedOpts.width + '" height="' + selectedOpts.height + '"' + emb + '></embed></object>';

					tmp.html(str);

					fancybox_process_inline();
				break;

				case 'ajax':
					selector	= href.split('#', 2);
					data		= selectedOpts.ajax.data || {};

					if (selector.length > 1) {
						href = selector[0];

						if (typeof data == "string") {
							data += '&selector=' + selector[1];
						} else {
							data.selector = selector[1];
						}
					}

					busy = false;
					$.fancybox.showActivity();

					ajaxLoader = $.ajax($.extend(selectedOpts.ajax, {
						url		: href,
						data	: data,
						error	: fancybox_error,
						success : function(data, textStatus, XMLHttpRequest) {
							if (ajaxLoader.status == 200) {
								tmp.html( data );
								fancybox_process_inline();
							}
						}
					}));

				break;

				case 'iframe' :
					$('<iframe id="fancybox-frame" name="fancybox-frame' + new Date().getTime() + '" frameborder="0" hspace="0" scrolling="' + selectedOpts.scrolling + '" src="' + selectedOpts.href + '"></iframe>').appendTo(tmp);
					fancybox_show();
				break;
			}
		},

		fancybox_animate_loading = function() {
			if (!loading.is(':visible')){
				clearInterval(loadingTimer);
				return;
			}

			$('div', loading).css('top', (loadingFrame * -40) + 'px');

			loadingFrame = (loadingFrame + 1) % 12;
		},

		fancybox_init = function() {
			if ($("#fancybox-wrap").length) {
				return;
			}

			$('body').append(
				tmp			= $('<div id="fancybox-tmp"></div>'),
				loading		= $('<div id="fancybox-loading"><div></div></div>'),
				overlay		= $('<div id="fancybox-overlay"></div>'),
				wrap		= $('<div id="fancybox-wrap"></div>')
			);

			if (!$.support.opacity) {
				wrap.addClass('fancybox-ie');
				loading.addClass('fancybox-ie');
			}

			outer = $('<div id="fancybox-outer"></div>')
				.append('<div class="fancy-bg" id="fancy-bg-n"></div><div class="fancy-bg" id="fancy-bg-ne"></div><div class="fancy-bg" id="fancy-bg-e"></div><div class="fancy-bg" id="fancy-bg-se"></div><div class="fancy-bg" id="fancy-bg-s"></div><div class="fancy-bg" id="fancy-bg-sw"></div><div class="fancy-bg" id="fancy-bg-w"></div><div class="fancy-bg" id="fancy-bg-nw"></div>')
				.appendTo( wrap );

			outer.append(
				inner		= $('<div id="fancybox-inner"></div>'),
				close		= $('<a id="fancybox-close"></a>'),

				nav_left	= $('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),
				nav_right	= $('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>')
			);

			close.click($.fancybox.close);
			loading.click($.fancybox.cancel);

			nav_left.click(function(e) {
				e.preventDefault();
				$.fancybox.prev();
			});

			nav_right.click(function(e) {
				e.preventDefault();
				$.fancybox.next();
			});

			if (isIE6) {
				overlay.get(0).style.setExpression('height',	"document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'");
				loading.get(0).style.setExpression('top',		"(-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px'");

				outer.prepend('<iframe id="fancybox-hide-sel-frame" src="javascript:\'\';" scrolling="no" frameborder="0" ></iframe>');
			}
		};

	/*
	 * Public methods 
	 */

	$.fn.fancybox = function(options) {
		$(this)
			.data('fancybox', $.extend({}, options, ($.metadata ? $(this).metadata() : {})))
			.unbind('click.fb').bind('click.fb', function(e) {
				e.preventDefault();

				if (busy) {
					return;
				}

				busy = true;

				$(this).blur();

				selectedArray	= [];
				selectedIndex	= 0;

				var rel = $(this).attr('rel') || '';

				if (!rel || rel == '' || rel === 'nofollow') {
					selectedArray.push(this);

				} else {
					selectedArray	= $("a[rel=" + rel + "], area[rel=" + rel + "]");
					selectedIndex	= selectedArray.index( this );
				}

				fancybox_start();

				return false;
			});

		return this;
	};

	$.fancybox = function(obj) {
		if (busy) {
			return;
		}

		busy = true;

		var opts = typeof arguments[1] !== 'undefined' ? arguments[1] : {};

		selectedArray	= [];
		selectedIndex	= opts.index || 0;

		if ($.isArray(obj)) {
			for (var i = 0, j = obj.length; i < j; i++) {
				if (typeof obj[i] == 'object') {
					$(obj[i]).data('fancybox', $.extend({}, opts, obj[i]));
				} else {
					obj[i] = $({}).data('fancybox', $.extend({content : obj[i]}, opts));
				}
			}

			selectedArray = jQuery.merge(selectedArray, obj);

		} else {
			if (typeof obj == 'object') {
				$(obj).data('fancybox', $.extend({}, opts, obj));
			} else {
				obj = $({}).data('fancybox', $.extend({content : obj}, opts));
			}

			selectedArray.push(obj);
		}

		if (selectedIndex > selectedArray.length || selectedIndex < 0) {
			selectedIndex = 0;
		}

		fancybox_start();
	};

	$.fancybox.showActivity = function() {
		clearInterval(loadingTimer);

		loading.show();
		loadingTimer = setInterval(fancybox_animate_loading, 66);
	};

	$.fancybox.hideActivity = function() {
		loading.hide();
	};

	$.fancybox.next = function() {
		return $.fancybox.pos( currentIndex + 1);
	};
	
	$.fancybox.prev = function() {
		return $.fancybox.pos( currentIndex - 1);
	};

	$.fancybox.pos = function(pos) {
		if (busy) {
			return;
		}

		pos = parseInt(pos, 10);

		if (pos > -1 && currentArray.length > pos) {
			selectedIndex = pos;
			fancybox_start();
		}

		if (currentOpts.cyclic && currentArray.length > 1 && pos < 0) {
			selectedIndex = currentArray.length - 1;
			fancybox_start();
		}

		if (currentOpts.cyclic && currentArray.length > 1 && pos >= currentArray.length) {
			selectedIndex = 0;
			fancybox_start();
		}

		return;
	};

	$.fancybox.cancel = function() {
		if (busy) {
			return;
		}

		busy = true;

		$.event.trigger('fancybox-cancel');

		fancybox_abort();

		if (selectedOpts && $.isFunction(selectedOpts.onCancel)) {
			selectedOpts.onCancel(selectedArray, selectedIndex, selectedOpts);
		}

		busy = false;
	};

	// Note: within an iframe use - parent.$.fancybox.close();
	$.fancybox.close = function() {
		if (busy || wrap.is(':hidden')) {
			return;
		}

		busy = true;

		if (currentOpts && $.isFunction(currentOpts.onCleanup)) {
			if (currentOpts.onCleanup(currentArray, currentIndex, currentOpts) === false) {
				busy = false;
				return;
			}
		}

		fancybox_abort();

		$(close.add( nav_left ).add( nav_right )).hide();

		$('#fancybox-title').remove();

		wrap.add(inner).add(overlay).unbind();

		$(window).unbind("resize.fb scroll.fb");
		$(document).unbind('keydown.fb');

		function _cleanup() {
			overlay.fadeOut('fast');

			wrap.hide();

			$.event.trigger('fancybox-cleanup');

			inner.empty();

			if ($.isFunction(currentOpts.onClosed)) {
				currentOpts.onClosed(currentArray, currentIndex, currentOpts);
			}

			currentArray	= selectedOpts	= [];
			currentIndex	= selectedIndex	= 0;
			currentOpts		= selectedOpts	= {};

			busy = false;
		}

		inner.css('overflow', 'hidden');

		if (currentOpts.transitionOut == 'elastic') {
			start_pos = fancybox_get_zoom_from();

			var pos = wrap.position();

			final_pos = {
				top		:	pos.top ,
				left	:	pos.left,
				width	:	wrap.width(),
				height	:	wrap.height()
			};

			if (currentOpts.opacity) {
				final_pos.opacity = 1;
			}

			fx.prop = 1;

			$(fx).animate({ prop: 0 }, {
				 duration	: currentOpts.speedOut,
				 easing		: currentOpts.easingOut,
				 step		: fancybox_draw,
				 complete	: _cleanup
			});

		} else {
			wrap.fadeOut( currentOpts.transitionOut == 'none' ? 0 : currentOpts.speedOut, _cleanup);
		}
	};

	$.fancybox.resize = function() {
		var c, h;
		
		if (busy || wrap.is(':hidden')) {
			return;
		}

		busy = true;

		c = inner.wrapInner("<div style='overflow:auto'></div>").children();
		h = c.height();

		wrap.css({height:	h + (currentOpts.padding * 2) + titleh});
		inner.css({height:	h});

		c.replaceWith(c.children());

		$.fancybox.center();
	};

	$.fancybox.center = function() {
		busy = true;

		var view	= fancybox_get_viewport(),
			margin	= currentOpts.margin,
			to		= {};

		to.top	= view[3] + ((view[1] - ((wrap.height() - titleh) + (shadow * 2 ))) * 0.5);
		to.left	= view[2] + ((view[0] - (wrap.width() + (shadow * 2 ))) * 0.5);

		to.top	= Math.max(view[3] + margin, to.top);
		to.left	= Math.max(view[2] + margin, to.left);

		wrap.css(to);

		busy = false;
	};

	$.fn.fancybox.defaults = {
		padding				:	10,
		margin				:	20,
		opacity				:	false,
		modal				:	false,
		cyclic				:	false,
		scrolling			:	'auto',	// 'auto', 'yes' or 'no'

		width				:	560,
		height				:	340,

		autoScale			:	true,
		autoDimensions		:	true,
		centerOnScroll		:	false,

		ajax				:	{},
		swf					:	{ wmode: 'transparent' },

		hideOnOverlayClick	:	true,
		hideOnContentClick	:	false,

		overlayShow			:	true,
		overlayOpacity		:	0.3,
		overlayColor		:	'#666',

		titleShow			:	true,
		titlePosition		:	'outside',	// 'outside', 'inside' or 'over'
		titleFormat			:	null,

		transitionIn		:	'fade',	// 'elastic', 'fade' or 'none'
		transitionOut		:	'fade',	// 'elastic', 'fade' or 'none'

		speedIn				:	300,
		speedOut			:	300,

		changeSpeed			:	300,
		changeFade			:	'fast',

		easingIn			:	'swing',
		easingOut			:	'swing',

		showCloseButton		:	true,
		showNavArrows		:	true,
		enableEscapeButton	:	true,

		onStart				:	null,
		onCancel			:	null,
		onComplete			:	null,
		onCleanup			:	null,
		onClosed			:	null
	};

	$(document).ready(function() {
		fancybox_init();
	});

})(jQuery);;

/**
 * Initiate Fancybox using selector and options from the module's settings.
 */
Drupal.behaviors.initFancybox = function() {
  var settings = Drupal.settings.fancybox;

  // Convert any JavaScript events to function calls.
  var events = ["onStart", "onComplete", "onClosed", "onCleanup", "onCancel"];
  for (var i in events) {
    if (settings.options[events[i]].length && typeof(settings.options[events[i]]) == 'string') {
      settings.options[events[i]] = eval("("+settings.options[events[i]]+")");
    }
  }

  if (settings && settings.selector.length) {
    $(settings.selector).fancybox(settings.options);
  }

  $('.imagefield-fancybox').fancybox(settings.options);

  // emvideo support
  settings.options.hideOnContentClick = false;
  $('.emvideo-modal-fancybox').fancybox(settings.options);

}
;
// $Id: googleanalytics.js,v 1.9.2.4 2010/09/19 11:39:20 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 && this.href) {
          // External link clicked.
          _gaq.push(["_trackEvent", "Outgoing links", "Click", this.href]);
        }
      }

    });
  });
});
;
Drupal.behaviors.spamspan=function(_1){$("span."+Drupal.settings.spamspan.m,_1).each(function(_2){var _3=($("span."+Drupal.settings.spamspan.u,this).text()+"@"+$("span."+Drupal.settings.spamspan.d,this).text()).replace(/\s+/g,"").replace(/\[dot\]/g,".");var _4=$("span."+Drupal.settings.spamspan.h,this).text().replace(/^ ?\((.*)\) ?$/,"$1");var _5=$.map(_4.split(/, /),function(n,i){return (n.replace(/: /,"="));});var _6=$("span."+Drupal.settings.spamspan.t,this).text().replace(/^ \((.*)\)$/,"$1");var _7="mailto:"+encodeURIComponent(_3);var _8=_5.join("&");_7+=_8?("?"+_8):"";$(this).after($("<a></a>").attr("href",_7).html(_6?_6:_3).addClass("spamspan")).remove();});};;
/*
 * 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: custom_search.js,v 1.1.2.15 2010/12/22 13:36:36 jdanthinne Exp $

Drupal.behaviors.custom_search = function (context) {

  if (!Drupal.settings.custom_search.solr) {
    // Check if the search box is not empty on submit
    $('form.search-form', context).submit(function(){
      var box = $(this).find('input.custom-search-box');
      if (box.val() != undefined && (box.val() == '' || box.val() == $(this).find('input.default-text').val())) {
        $(this).find('input.custom-search-box').addClass('error');
        return false;
      }
      // If basic search is hidden, copy or value to the keys
      if ($(this).find('#edit-keys').parents('div.element-invisible').attr('class') == 'element-invisible') {
        $(this).find('#edit-keys').val($(this).find('#edit-or').val());
        $(this).find('#edit-or').val('');
      }
      return true;
    });
  }

  // Search from target
  $('form.search-form').attr('target', Drupal.settings.custom_search.form_target);

  // Clear default text on focus, and put it back on blur. Also displays Popup.
  $('input.custom-search-box', context)
    .blur(function(e){
      $this = $(this);
      $parentForm = $this.parents('form');
      if ($this.val() == '') {
        $this.addClass('custom-search-default-value');
        $this.val($parentForm.find('input.default-text').val());
      }
    })
    .bind('click focus', function(e){
      $this = $(this);
      $parentForm = $this.parents('form');
      if ($this.val() == $parentForm.find('input.default-text').val()) $this.val('');
      $this.removeClass('custom-search-default-value');
      // check if there's something in the popup and displays it
      var popup = $parentForm.find('fieldset.custom_search-popup');
      if (popup.find('input,select').length && !popup.hasClass('opened')) popup.fadeIn().addClass('opened');
      e.stopPropagation();
    }
  );
  $(document).bind('click focus', function(){
    $('fieldset.custom_search-popup').hide().removeClass('opened');
  });

  // Handle checkboxes
  $('.custom-search-selector input:checkbox', context).each(function(){
    var el = $(this);
    if (el.val() == 'c-all') {
      el.change(function(){
        $(this).parents('.custom-search-selector').find('input:checkbox[value!=c-all]').attr('checked', false);
      });
    }
    else {
      if (el.val().substr(0,2) == 'c-') {
        el.change(function(){
          $('.custom-search-selector input:checkbox').each(function(){
            if ($(this).val().substr(0,2) == 'o-') $(this).attr('checked', false);
          });
          $(this).parents('.custom-search-selector').find('input:checkbox[value=c-all]').attr('checked', false);
        });
      } else {
        el.change(function(){
          $(this).parents('.custom-search-selector').find('input:checkbox[value!='+el.val()+']').attr('checked', false);
        });
      }
    }
  });

  // Reselect types and terms in advanced search
  var edit_keys = $('#edit-keys').val();
  if(edit_keys) {
    // types
    var pos = edit_keys.indexOf('type:');
    if (pos) {
      var pos2 = edit_keys.indexOf(' ',pos);
      if (pos2==-1) pos2 = edit_keys.length;
      var types = edit_keys.substring(pos+5,pos2);
      types = types.split(',');
      for (var i in types) {
        $('.search-form input:checkbox[value='+types[i]+']').attr('checked', true);
      }
    }
    // terms
    var pos = edit_keys.indexOf('category:');
    if (pos) {
      var pos2 = edit_keys.indexOf(' ',pos);
      if (pos2==-1) pos2 = edit_keys.length;
      var terms = edit_keys.substring(pos+9,pos2);
      terms = terms.split(',');
      for (var i in terms) {
        $('.search-form option[value='+terms[i]+']').attr('selected', true);
      }
    }
  }

  var popup = $('fieldset.custom_search-popup:not(.custom_search-processed)', context).addClass("custom_search-processed");
  popup.click(function(e){
    e.stopPropagation();
  })
  popup.append('<a class="custom_search-popup-close" href="#">' + Drupal.t('Close') + '</a>');
  $('a.custom_search-popup-close').click(function(e){
    $('fieldset.custom_search-popup.opened').hide().removeClass('opened');
    e.preventDefault();
  });

}
;

/**
 * @file
 * Loads content of blocks via AJAX just after page loading, updates Drupal.settings, reattaches behaviors.
 */

if (Drupal.jsEnabled) $(document).ready(function () {
  if (typeof Drupal.settings.ajaxblocks == 'undefined') return;
  $.ajax({
    url: Drupal.settings.basePath + "ajaxblocks",
    type: "GET",
    dataType: "json",
    data: Drupal.settings.ajaxblocks,
    cache: false,
    success: function (data) {
      // Replaces the placeholder divs by the actual block contents returned by the AJAX call,
      // executes the extra JavaScript code and attach behaviours if the apply to the blocks.
      Drupal.freezeHeight();
      for (key in data) {
        var wrapper = $('#block-' + key + '-ajax-content');
        var context = $(data[key]['content']).insertBefore(wrapper);
        wrapper.remove();
        if (data[key]['ajaxblocks_settings']) $.extend(true, Drupal.settings, data[key]['ajaxblocks_settings']);
        Drupal.attachBehaviors(context);
      }
      Drupal.unfreezeHeight();
    }
  });
});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitized data copyright (C) 1992 - 2001 The Monotype Corporation. All rights
 * reserved. Amasis is a trademark of the Monotype Corporation which may be
 * registered in certain jurisdictions.
 * 
 * Trademark:
 * Amasis is a trademark of the Monotype Corporation which may be registered in
 * certain jurisdictions.
 * 
 * Manufacturer:
 * Agfa Monotype Corporation
 * 
 * Vendor URL:
 * http://www.agfamonotype.com
 * 
 * License information:
 * http://www.agfamonotype.com/html/type/license.html
 */
Cufon.registerFont({"w":187,"face":{"font-family":"amasis","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 4 6 3 5 3 4 2 2 3","ascent":"288","descent":"-72","x-height":"5","bbox":"-24 -262.049 362 86","underline-thickness":"17.9297","underline-position":"-27.0703","unicode-range":"U+0020-U+201D"},"glyphs":{" ":{"w":93},"!":{"d":"28,-248r30,0r-3,187r-23,0xm43,5v-10,1,-19,-10,-19,-19v0,-9,9,-20,19,-19v10,-1,20,9,20,19v0,10,-10,20,-20,19","w":86},"\"":{"d":"36,-242v35,6,8,62,9,91r-20,0v1,-31,-27,-86,11,-91xm93,-242v35,6,8,62,9,91r-20,0v1,-31,-26,-85,11,-91","w":127},"#":{"d":"15,-173r56,0r15,-70r26,0r-15,70r70,0r14,-70r26,0r-15,70r33,0r0,25r-38,0r-13,61r51,0r0,25r-56,0r-14,70r-26,0r15,-70r-71,0r-14,70r-26,0r15,-70r-33,0r0,-25r39,0r12,-61r-51,0r0,-25xm162,-148r-71,0r-13,61r71,0","w":240},"$":{"d":"20,-175v0,-33,26,-56,60,-59r0,-15r20,0r0,15v17,1,36,6,53,14r0,47r-22,0v1,-29,-7,-37,-31,-40r0,84v34,15,59,29,61,69v1,37,-27,65,-62,66r0,32r-21,0r0,-32v-19,0,-40,-5,-63,-13r0,-55v12,2,27,-8,25,12v-3,26,15,32,38,36r0,-94v-35,-20,-58,-28,-58,-67xm80,-213v-43,6,-39,59,0,73r0,-73xm99,-15v28,-5,44,-38,26,-63v-5,-7,-13,-14,-26,-20r0,83","w":176},"%":{"d":"213,-253r21,0r-155,260r-21,0xm56,-120v-36,0,-47,-25,-47,-67v0,-45,16,-66,48,-66v32,0,48,22,48,65v0,46,-16,68,-49,68xm57,-134v35,0,36,-105,0,-105v-17,0,-26,17,-26,53v1,30,4,52,26,52xm235,7v-31,0,-47,-23,-47,-67v0,-45,17,-67,49,-67v32,0,47,22,47,65v0,46,-16,69,-49,69xm261,-62v0,-30,-2,-51,-25,-51v-17,0,-25,17,-25,53v0,30,2,50,25,53v24,-2,25,-23,25,-55","w":292},"&":{"d":"170,-64v9,-15,30,-58,-8,-54r0,-17r76,0r0,17v-18,0,-25,1,-29,18v-6,25,-15,44,-23,56v14,17,26,31,52,25r0,20v-30,13,-49,4,-71,-22v-46,50,-149,31,-149,-44v0,-30,19,-54,56,-73v-15,-22,-24,-33,-25,-56v-1,-31,26,-53,59,-52v34,0,57,18,57,49v0,35,-22,46,-52,62xm107,-226v-43,4,-33,47,-7,75v24,-13,36,-19,38,-46v1,-17,-14,-31,-31,-29xm49,-67v1,50,72,66,103,27r-64,-80v-26,16,-39,33,-39,53","w":254},"'":{"d":"34,-242v36,5,9,61,10,91r-21,0v0,-30,-25,-84,11,-91","w":67},"(":{"d":"72,80v-65,-86,-75,-238,0,-333r26,0v-63,87,-63,247,0,333r-26,0","w":108},")":{"d":"37,-253v66,85,73,238,0,333r-26,0v62,-87,64,-247,0,-333r26,0","w":108},"*":{"d":"73,-253r25,0r-3,61r59,-21r7,23r-59,17r38,49r-20,14r-34,-51r-34,50r-20,-14v10,-18,25,-32,38,-48r-59,-17r8,-23v21,5,38,14,57,21","w":172},"+":{"d":"24,-131r82,0r0,-82r28,0r0,82r82,0r0,28r-82,0r0,82r-28,0r0,-82r-82,0r0,-28","w":240},",":{"d":"43,-36v46,13,13,84,-22,85r0,-14v15,-8,24,-19,25,-32v-14,1,-22,-9,-23,-20v0,-10,10,-19,20,-19","w":86,"k":{"\u2019":10,"\u201d":10}},"-":{"d":"11,-98r94,0r0,28r-94,0r0,-28","w":116},".":{"d":"43,5v-10,1,-19,-10,-19,-19v0,-9,9,-20,19,-19v10,-1,20,9,20,19v0,10,-10,20,-20,19","w":86,"k":{"\u2019":10,"\u201d":10}},"\/":{"d":"147,-247r29,0r-122,247r-30,0","w":198},"0":{"d":"94,-242v60,0,74,51,74,120v0,84,-25,127,-76,127v-59,0,-72,-52,-73,-123v-1,-69,17,-124,75,-124xm94,-17v61,6,49,-141,32,-181v-6,-15,-18,-22,-32,-22v-41,0,-45,46,-45,102v0,58,4,97,45,101"},"1":{"d":"87,-178v3,-24,-22,-13,-38,-13r0,-16v24,-3,40,-14,50,-35r16,0r0,209v-3,19,16,15,33,15r0,18r-95,0r0,-18v16,-1,38,5,34,-15r0,-145"},"2":{"d":"87,-221v-27,0,-40,17,-37,48r-22,0r0,-42v39,-45,130,-32,129,34v0,57,-70,121,-99,155r63,0v24,4,21,-10,21,-29r22,0r0,55r-142,0r0,-22v62,-72,94,-85,105,-158v4,-23,-15,-41,-40,-41"},"3":{"d":"89,-222v-25,0,-40,15,-36,44r-22,0r0,-44v44,-35,125,-23,125,38v0,29,-17,47,-38,57v73,21,43,132,-35,132v-22,0,-42,-6,-59,-17r0,-47r23,0v-3,29,7,42,37,42v28,0,48,-20,47,-49v-2,-36,-20,-46,-61,-48r0,-24v39,-1,58,-15,58,-43v0,-23,-15,-42,-39,-41"},"4":{"d":"86,-18v16,-1,32,6,32,-15r0,-27r-101,0r0,-28r102,-154r25,0r0,160r28,0r0,22r-28,0v2,22,-9,49,25,42r0,18r-83,0r0,-18xm118,-200v-28,37,-51,79,-78,118r78,0r0,-118"},"5":{"d":"133,-80v0,-50,-50,-78,-78,-41r-22,0r6,-116r116,0r0,25r-93,0r-3,63v48,-31,110,8,103,66v8,74,-78,114,-134,70r0,-49r25,0v-1,28,1,46,29,46v34,0,51,-29,51,-64"},"6":{"d":"19,-103v0,-75,25,-138,93,-139v19,0,36,4,51,13r0,44r-23,0v2,-25,-5,-37,-29,-37v-35,0,-59,34,-59,91v41,-51,124,-18,119,53v-3,47,-28,84,-76,83v-57,-1,-76,-45,-76,-108xm96,-15v30,0,47,-26,46,-61v0,-33,-15,-57,-45,-57v-30,0,-47,24,-47,57v0,35,17,61,46,61"},"7":{"d":"61,-211v-18,-4,-10,16,-12,29r-22,0r0,-55r142,0r0,25v-37,52,-76,130,-77,214r-27,0v3,-80,39,-161,76,-213r-80,0"},"8":{"d":"95,-242v69,0,93,90,35,117v69,27,39,130,-36,130v-77,0,-104,-102,-37,-130v-60,-28,-30,-117,38,-117xm134,-179v0,-24,-16,-42,-40,-42v-23,-1,-41,18,-41,42v0,27,16,44,41,44v24,0,40,-18,40,-44xm139,-65v0,-27,-18,-48,-45,-48v-26,0,-45,21,-45,47v0,29,18,49,46,49v27,0,45,-21,44,-48"},"9":{"d":"171,-134v0,96,-59,170,-144,126r0,-44r22,0v-1,24,6,37,30,37v35,0,59,-34,59,-91v-41,50,-119,19,-119,-52v0,-47,28,-85,76,-84v57,1,76,45,76,108xm94,-222v-30,0,-46,25,-46,61v0,33,15,57,45,57v30,0,47,-25,47,-58v0,-33,-18,-60,-46,-60"},":":{"d":"43,-137v-10,1,-19,-10,-19,-19v0,-10,9,-20,19,-20v10,-1,20,10,20,20v0,10,-10,20,-20,19xm43,5v-10,1,-19,-10,-19,-19v0,-9,9,-20,19,-19v10,-1,20,9,20,19v0,10,-10,20,-20,19","w":86},";":{"d":"43,-137v-10,1,-19,-10,-19,-19v0,-10,9,-20,19,-20v10,-1,20,10,20,20v0,10,-10,20,-20,19xm43,-36v46,13,13,84,-22,85r0,-14v15,-8,24,-19,25,-32v-14,1,-22,-9,-23,-20v0,-10,10,-19,20,-19","w":86},"<":{"d":"216,-24r-192,-81r0,-25r192,-81r0,30r-155,64r155,63r0,30","w":240},"=":{"d":"24,-173r192,0r0,28r-192,0r0,-28xm24,-90r192,0r0,28r-192,0r0,-28","w":240},">":{"d":"24,-211r192,81r0,25r-192,81r0,-30r155,-63r-155,-63r0,-31","w":240},"?":{"d":"72,-233v-27,2,-40,15,-37,46r-23,0r0,-45v43,-37,133,-26,130,38v-3,57,-65,74,-64,136r-23,0v-5,-60,57,-83,57,-138v0,-21,-17,-38,-40,-37xm67,5v-10,1,-20,-9,-20,-19v0,-10,10,-20,20,-19v10,-1,20,9,19,19v1,10,-9,20,-19,19","w":153},"@":{"d":"86,-79v0,-72,95,-159,145,-79r6,-27r32,0r-32,147v0,7,4,10,11,10v39,0,69,-50,69,-99v0,-67,-59,-111,-127,-111v-85,0,-146,70,-145,154v0,88,63,134,153,134v54,0,96,-17,124,-53r30,0v-25,46,-82,79,-155,79v-107,0,-178,-59,-178,-159v0,-104,64,-177,173,-179v87,-2,150,58,152,136v2,60,-51,127,-106,126v-22,0,-33,-7,-34,-29v-44,58,-118,19,-118,-50xm221,-115v0,-26,-17,-49,-41,-49v-35,-2,-61,52,-61,88v0,26,14,50,37,50v37,0,65,-48,65,-89","w":363},"A":{"d":"57,-40v-7,14,0,27,22,22r0,18r-76,0r0,-18v19,1,24,-4,29,-19r75,-213r30,0r73,209v7,19,7,24,30,23r0,18r-81,0r0,-18v19,2,28,0,20,-23r-13,-38r-95,0xm119,-213v-16,35,-26,75,-40,112r79,0","w":243,"k":{"\u2019":42,"\u201d":42,"y":16,"w":21,"v":24,"u":13,"p":8,"Y":27,"W":27,"V":30,"U":16,"T":26,"Q":18,"O":18,"G":19,"C":13}},"B":{"d":"40,-213v2,-18,-9,-16,-25,-16r0,-18v78,3,177,-18,177,61v0,27,-13,42,-34,54v34,7,50,28,50,62v0,89,-107,68,-193,70r0,-18v18,0,25,1,25,-19r0,-176xm70,-225r0,86v47,3,92,-2,92,-45v0,-41,-47,-43,-92,-41xm176,-68v0,-51,-51,-51,-106,-49r0,95v51,1,106,5,106,-46","w":225,"k":{"U":8,"A":8,".":21,",":18}},"C":{"d":"19,-122v0,-73,47,-133,121,-131v31,0,58,7,81,20r0,55r-26,0v6,-49,-21,-53,-57,-53v-55,0,-86,47,-86,107v0,60,33,104,86,104v33,0,63,-12,83,-31r0,30v-23,18,-52,28,-87,28v-71,1,-115,-56,-115,-129","w":240,"k":{".":8,",":5}},"D":{"d":"40,-211v3,-19,-7,-18,-24,-18r0,-18r106,0v82,-2,123,42,123,122v0,71,-40,125,-115,125r-114,0r0,-18v18,0,24,2,24,-19r0,-174xm211,-123v2,-86,-51,-109,-140,-101r0,202r50,0v68,1,87,-38,90,-101","w":262,"k":{"Y":18,"W":16,"V":19,"A":18,".":40,",":37}},"E":{"d":"41,-213v3,-18,-8,-16,-24,-16r0,-18r181,0r0,55r-23,0v0,-22,4,-33,-22,-33r-81,0r0,87r64,0v19,2,17,-8,17,-24r20,0r0,71r-20,0v0,-17,2,-25,-19,-25r-62,0r0,94r91,0v22,3,15,-15,16,-33r23,0r0,55r-185,0r0,-18v16,0,24,2,24,-17r0,-178","w":217},"F":{"d":"42,-211v1,-19,-7,-18,-25,-18r0,-18r183,0r0,55r-23,0v-1,-20,5,-32,-20,-32r-84,0r0,85r58,0v19,1,18,-6,18,-23r20,0r0,70r-20,0v8,-40,-45,-21,-76,-25r0,81v-3,22,9,17,27,18r0,18r-83,0r0,-18v19,1,25,-1,25,-21r0,-172","w":209,"k":{"r":8,"o":21,"e":21,"a":19,"A":29,".":63,",":60}},"G":{"d":"191,-30v-6,-27,18,-77,-26,-69r0,-18r82,0r0,18v-17,0,-25,-2,-25,19r0,62v-27,16,-54,25,-84,25v-75,1,-121,-55,-121,-129v0,-75,50,-131,126,-131v29,0,55,6,79,19r0,56r-25,0v6,-41,-20,-53,-56,-53v-58,-1,-90,48,-90,107v0,81,67,130,140,94","w":254,"k":{".":16,",":13}},"H":{"d":"41,-212v2,-18,-8,-17,-25,-17r0,-18r80,0r0,18v-16,0,-24,-1,-24,17r0,69r127,0r0,-69v1,-18,-8,-17,-25,-17r0,-18r80,0r0,18v-18,0,-24,-2,-24,19r0,175v-3,19,8,17,24,17r0,18r-80,0r0,-18v18,-1,26,3,25,-17r0,-85r-127,0r0,85v-3,18,7,18,24,17r0,18r-80,0r0,-18v16,0,25,1,25,-17r0,-177","w":270},"I":{"d":"44,-211v2,-20,-7,-17,-24,-18r0,-18r80,0r0,18v-18,1,-24,-1,-24,21r0,169v-1,23,3,21,24,21r0,18r-80,0r0,-18v18,0,24,3,24,-19r0,-174","w":119},"J":{"d":"105,-213v3,-18,-9,-16,-25,-16r0,-18r81,0r0,18v-17,0,-25,-1,-25,18v0,92,28,223,-73,218v-18,0,-35,-5,-51,-13r0,-48r23,0v-2,25,5,40,31,40v34,-1,40,-25,39,-60r0,-139","w":172,"k":{"o":13,"e":13,"a":10,"A":11,".":29,",":26}},"K":{"d":"41,-211v1,-17,-8,-19,-25,-18r0,-18r80,0r0,18v-17,0,-24,-2,-24,18r0,80v28,-31,61,-58,86,-92v0,-7,-5,-6,-14,-6r0,-18r80,0r0,18v-24,0,-30,4,-43,18r-77,80r89,91v13,13,20,22,43,22r0,18r-89,0r0,-18v20,3,16,-11,7,-20r-82,-85r0,85v-2,22,5,20,24,20r0,18r-80,0r0,-18v12,0,25,2,25,-10r0,-183","w":232,"k":{"y":13,"w":13,"v":16,"a":-8,"O":13,"G":13,"C":13}},"L":{"d":"42,-213v2,-17,-9,-16,-25,-16r0,-18r83,0r0,18v-18,0,-27,-3,-27,19r0,188r85,0v21,3,14,-19,15,-36r24,0r0,58r-180,0r0,-18v17,0,25,2,25,-18r0,-177","w":206,"k":{"\u2019":24,"\u201d":24,"y":16,"w":19,"Y":21,"W":21,"V":24,"U":11,"T":24,"O":8,"G":8,"C":8}},"M":{"d":"41,-211v3,-20,-7,-18,-24,-18r0,-18r72,0r71,212r71,-212r71,0r0,18v-17,0,-24,-2,-24,18r0,176v-3,19,7,17,24,17r0,18r-78,0r0,-18v18,0,24,2,24,-20r-1,-191r-76,229r-29,0r-77,-228r0,193v-3,19,7,17,24,17r0,18r-72,0r0,-18v17,0,24,2,24,-18r0,-175","w":318},"N":{"d":"40,-213v3,-18,-8,-16,-24,-16r0,-18r71,0r113,200r0,-164v1,-20,-7,-18,-25,-18r0,-18r73,0r0,18v-17,0,-24,-2,-24,18r0,214r-32,0r-127,-226r0,187v-1,19,6,18,24,18r0,18r-73,0r0,-18v18,0,24,2,24,-20r0,-175","w":258,"k":{"A":8,".":26,",":24}},"O":{"d":"255,-125v0,75,-48,132,-120,132v-71,0,-117,-55,-117,-128v0,-76,46,-132,119,-132v74,0,118,54,118,128xm221,-127v0,-61,-28,-102,-84,-103v-59,0,-84,46,-85,107v-1,65,29,106,85,106v57,0,84,-46,84,-110","w":273,"k":{"Y":16,"X":18,"W":13,"V":16,"T":8,"A":13,".":37,",":34}},"P":{"d":"40,-212v1,-18,-8,-17,-25,-17r0,-18v81,1,182,-17,182,68v0,63,-59,73,-126,68r0,78v-2,18,9,15,27,15r0,18r-83,0r0,-18v18,0,25,2,25,-18r0,-176xm71,-132v49,2,95,1,95,-46v0,-47,-46,-50,-95,-47r0,93","w":213,"k":{"o":26,"e":27,"a":21,"A":39,".":70,",":68}},"Q":{"d":"255,-125v0,69,-39,122,-100,130v18,18,47,26,88,26r0,19v-58,8,-106,-11,-138,-47v-54,-14,-87,-58,-87,-125v0,-74,46,-131,119,-131v74,0,118,54,118,128xm221,-127v0,-61,-28,-102,-84,-103v-59,0,-84,46,-85,107v-1,65,29,106,85,106v57,0,84,-46,84,-110","w":273,"k":{"Y":9,"W":13,"V":16,"U":5,"T":8,"A":13,".":32,",":10}},"R":{"d":"40,-212v1,-18,-8,-17,-25,-17r0,-18v80,2,182,-17,182,66v0,34,-17,56,-49,67v19,29,34,67,57,91v7,4,17,5,29,5r0,18r-56,0r-61,-111r-47,0r0,77v-1,18,8,16,25,16r0,18r-80,0r0,-18v19,0,25,1,25,-20r0,-174xm70,-132v50,2,96,1,96,-47v0,-46,-47,-48,-96,-46r0,93","w":228,"k":{"v":5,"a":-8,"Y":13,"W":13,"V":16,"U":8,"T":10,"Q":8,"O":10,"G":8,"C":8}},"S":{"d":"22,-190v0,-66,96,-77,145,-48r0,54r-24,0v4,-38,-12,-48,-45,-48v-25,-1,-45,15,-45,37v0,70,123,48,123,130v0,75,-100,87,-159,57r0,-62r26,0v-5,40,15,55,50,55v27,0,53,-16,51,-43v-5,-71,-122,-54,-122,-132","w":191,"k":{".":13,",":10}},"T":{"d":"101,-225v-33,4,-81,-18,-69,37r-23,0r0,-59r215,0r0,59r-23,0v-2,-18,7,-37,-17,-37r-52,0r0,188v-3,22,7,18,26,19r0,18r-83,0r0,-18v16,0,26,3,26,-17r0,-190","w":232,"k":{"z":8,"y":8,"w":5,"u":5,"s":24,"r":5,"o":37,"m":5,"e":37,"c":37,"a":23,"Q":8,"O":10,"G":8,"C":8,"A":21,";":5,":":5,".":40,"-":21,",":37}},"U":{"d":"35,-211v1,-18,-7,-18,-24,-18r0,-18r80,0r0,18v-18,1,-26,-1,-24,20v6,80,-25,192,65,192v92,0,59,-112,65,-192v2,-22,-5,-20,-24,-20r0,-18r75,0r0,18v-18,0,-24,-1,-24,18r0,124v0,62,-31,94,-93,94v-64,0,-96,-31,-96,-92r0,-126","w":258,"k":{"A":16,".":37,",":34}},"V":{"d":"86,-229v-19,-1,-27,0,-20,21r60,168r62,-179v1,-10,-12,-11,-24,-10r0,-18r76,0r0,18v-15,-1,-22,3,-26,15r-78,217r-29,0r-83,-228v-3,-3,-12,-5,-21,-4r0,-18r83,0r0,18","w":243,"k":{"y":6,"u":8,"r":8,"o":27,"e":24,"a":19,"Q":16,"O":16,"G":16,"C":16,"A":29,";":18,":":21,".":50,"-":24,",":47}},"W":{"d":"287,-204v8,-18,1,-27,-21,-25r0,-18r76,0r0,18v-22,-1,-26,7,-31,26r-57,206r-29,0r-53,-202r-54,202r-30,0r-55,-207v-6,-20,-6,-26,-30,-25r0,-18r81,0r0,18v-18,-2,-30,3,-21,21r45,163r53,-202r29,0r53,202","w":344,"k":{"y":16,"u":11,"r":18,"o":37,"i":5,"h":-5,"e":34,"d":32,"a":31,"O":13,"G":13,"C":13,"A":26,";":8,":":10,".":34,"-":15,",":32}},"X":{"d":"148,-18v17,2,22,-4,12,-19r-42,-65v-16,26,-39,48,-52,78v-1,6,10,6,18,6r0,18r-76,0r0,-18v25,0,28,-8,42,-27r54,-79v-23,-32,-43,-76,-71,-101v-5,-3,-11,-4,-20,-4r0,-18r84,0r0,18v-18,0,-21,7,-11,22r37,56v14,-23,37,-46,46,-72v1,-6,-10,-6,-18,-6r0,-18r77,0r0,18v-26,-1,-28,11,-41,27r-51,72v27,36,45,85,82,111v4,1,8,1,14,1r0,18r-84,0r0,-18","w":240,"k":{"O":15,"G":15,"C":16}},"Y":{"d":"76,-18v43,9,21,-47,26,-79v-27,-42,-50,-90,-80,-128v-4,-4,-12,-4,-20,-4r0,-18r83,0r0,18v-19,-1,-24,2,-14,19r51,86r59,-98v1,-9,-14,-6,-24,-7r0,-18r77,0r0,18v-20,1,-20,1,-30,17r-71,113r0,63v-2,20,7,18,26,18r0,18r-83,0r0,-18","w":236,"k":{"v":13,"u":13,"q":38,"p":13,"o":39,"i":5,"e":31,"d":28,"a":39,"S":5,"O":10,"G":11,"C":11,"A":26,";":10,":":13,".":44,"-":21,",":41}},"Z":{"d":"68,-224v-31,-4,-24,13,-25,38r-22,0r0,-61r181,0r0,23r-149,201r112,0v27,6,17,-20,19,-40r23,0r0,63r-192,0r0,-23r150,-201r-97,0","w":221},"[":{"d":"24,-247r69,0r0,20r-43,0r0,282r43,0r0,21r-69,0r0,-323","w":105},"\\":{"d":"23,-247r30,0r122,247r-29,0","w":198},"]":{"d":"81,76r-69,0r0,-20r43,0r0,-283r-43,0r0,-20r69,0r0,323","w":105},"^":{"d":"40,-106r-29,0r60,-141r26,0r61,141r-29,0r-45,-105","w":168},"_":{"d":"182,45r-184,0r0,-18r184,0r0,18","w":180},"`":{"d":"79,-195r-20,0r-38,-47r34,0","w":119},"a":{"d":"120,-114v0,-30,-9,-43,-34,-43v-26,0,-37,12,-35,36r-23,0r0,-36v44,-32,130,-27,120,46r0,70v-3,22,7,28,24,18r0,18v-24,13,-49,16,-52,-18v-26,41,-111,36,-106,-21v5,-56,40,-50,106,-70xm73,-18v37,1,52,-31,47,-77v-48,15,-72,10,-77,48v-2,17,13,29,30,29","w":176,"k":{"y":5,"w":5,"v":8,"b":-4}},"b":{"d":"23,-217v3,-19,-9,-15,-25,-16r0,-15r54,-5r1,105v8,-16,28,-28,52,-28v47,0,68,40,71,86v5,73,-75,127,-124,71r-11,23r-18,0r0,-221xm145,-86v0,-37,-13,-67,-46,-67v-36,0,-49,31,-49,71v-1,36,18,63,49,63v32,0,47,-30,46,-67","w":191,"k":{"y":8,"w":5,"v":8,".":21,",":18}},"c":{"d":"17,-82v0,-77,75,-116,139,-78r0,50r-25,0v3,-29,-6,-46,-32,-45v-35,0,-52,31,-52,69v0,70,65,84,109,42r0,27v-53,47,-139,15,-139,-65","w":172,"k":{".":8,",":13}},"d":{"d":"139,-218v2,-17,-9,-15,-25,-15r0,-15r53,-5r0,216v-2,19,7,17,25,17r0,16r-50,4v-2,-7,-3,-15,-3,-25v-11,20,-29,29,-53,29v-47,1,-71,-38,-71,-86v0,-73,77,-126,124,-71r0,-65xm141,-87v0,-38,-15,-66,-49,-66v-32,0,-46,30,-46,67v0,41,15,67,47,67v32,0,48,-30,48,-68","w":195},"e":{"d":"15,-82v-8,-73,75,-123,128,-75v13,13,20,36,20,69r-117,0v-5,73,71,89,113,42r0,26v-52,51,-152,19,-144,-62xm47,-108r87,0v1,-46,-43,-61,-71,-36v-8,8,-14,20,-16,36","w":176,"k":{"z":-4,"p":-4,"b":-4,".":10,",":8}},"f":{"d":"8,-16v17,0,23,1,23,-19r0,-115r-23,0r0,-21r23,0v-10,-67,41,-100,97,-73r0,33r-21,0v1,-16,-3,-27,-19,-27v-28,1,-28,32,-28,67r37,0r0,21r-37,0r0,115v-1,22,3,18,24,19r0,16r-76,0r0,-16","w":101,"k":{"\u2019":-38,"\u201d":-38,"o":5,"l":-15,"k":-17,"f":-13,"?":-51,".":8,",":5,"!":-36," ":-43}},"g":{"d":"23,-112v-1,-49,50,-76,100,-59r55,0r0,22r-32,0v30,49,-2,111,-70,101v-14,-1,-31,17,-14,23v38,14,115,-10,115,47v0,40,-38,58,-89,58v-86,0,-104,-65,-39,-82v-33,-13,-23,-44,10,-54v-23,-8,-36,-28,-36,-56xm130,-111v-1,-27,-13,-46,-39,-47v-26,-1,-40,21,-40,45v0,28,15,47,41,47v24,0,39,-19,38,-45xm149,30v0,-24,-25,-24,-57,-25v-37,0,-56,9,-56,27v0,41,113,39,113,-2","w":183,"k":{"y":-8,"r":-8,".":10,",":8}},"h":{"d":"28,-216v2,-20,-8,-15,-25,-16r0,-16r53,-5r1,106v26,-45,107,-34,107,36r0,81v-1,16,5,14,20,14r0,16r-70,0v1,-6,-4,-19,6,-16v16,-1,14,-2,14,-19v0,-46,16,-116,-33,-116v-53,0,-45,65,-45,119v0,17,5,16,20,16r0,16r-69,0v1,-7,-4,-19,7,-16v14,0,13,-3,14,-17r0,-183","w":191,"k":{"y":5}},"i":{"d":"43,-212v-10,1,-21,-10,-20,-20v0,-10,10,-19,20,-19v9,0,19,10,19,19v0,11,-8,20,-19,20xm31,-133v3,-21,-6,-19,-24,-19r0,-16r52,-5r0,141v-1,17,5,16,21,16r0,16r-70,0r0,-16v16,0,21,1,21,-18r0,-99","w":90,"k":{"v":5}},"j":{"d":"45,-211v-10,0,-20,-10,-20,-20v0,-10,10,-20,20,-19v10,-1,20,9,20,19v0,10,-10,20,-20,20xm32,-137v3,-17,-9,-15,-24,-15r0,-16r54,-5r0,177v5,62,-33,88,-86,71r0,-35r19,0v0,15,4,23,17,23v24,0,20,-18,20,-54r0,-146","w":90},"k":{"d":"27,-218v3,-19,-9,-14,-25,-15r0,-15r53,-5r0,156v19,-18,45,-30,60,-52v0,-7,-4,-4,-13,-5r0,-17r72,0r0,17v-17,0,-17,3,-30,12r-58,45v31,25,54,70,96,81r0,16r-72,0r0,-16v16,1,11,-8,3,-16r-58,-58r0,58v-1,17,5,16,21,16r0,16r-69,0v1,-6,-4,-19,6,-16v15,0,13,-3,14,-19r0,-183","w":176,"k":{"y":-11,"o":5,"e":5}},"l":{"d":"31,-215v1,-19,-6,-16,-25,-17r0,-16r54,-5r0,220v-1,18,3,17,20,17r0,16r-71,0v1,-6,-4,-19,6,-16v15,-1,15,-2,16,-17r0,-182","w":90,"k":{"y":5,"w":5}},"m":{"d":"30,-134v2,-21,-7,-15,-24,-16r0,-16r49,-5v2,8,4,17,4,26v18,-39,91,-42,103,3v24,-49,111,-41,111,31r0,78v-1,17,3,17,19,17r0,16r-69,0v1,-6,-4,-19,6,-16v15,-1,16,-3,15,-20v-3,-45,15,-115,-33,-115v-52,0,-46,64,-45,118v0,17,2,17,19,17r0,16r-69,0r0,-16v21,-1,21,2,21,-20v0,-45,15,-115,-33,-115v-55,0,-45,64,-45,118v-1,17,3,18,20,17r0,16r-70,0r0,-16v16,0,21,-1,21,-18r0,-100","w":299,"k":{"y":5,"u":5}},"n":{"d":"31,-133v3,-20,-7,-17,-24,-17r0,-16r49,-5v1,2,2,11,3,25v27,-47,108,-37,108,35r0,81v-1,16,5,14,20,14r0,16r-70,0v1,-6,-4,-19,6,-16v16,0,15,-3,14,-19v-4,-45,17,-116,-33,-116v-53,0,-45,65,-45,119v0,18,6,15,21,16r0,16r-70,0v1,-7,-4,-19,7,-16v14,0,13,-3,14,-17r0,-100","w":195,"k":{"\u2019":5,"y":5,"v":8}},"o":{"d":"15,-82v0,-53,32,-93,85,-93v51,0,80,34,80,87v0,52,-32,93,-85,93v-51,0,-80,-36,-80,-87xm45,-84v0,37,18,69,53,69v36,0,52,-31,52,-71v0,-41,-16,-67,-52,-68v-37,-1,-53,32,-53,70","w":195,"k":{"y":5,"x":5,"w":5,"v":5,"g":5,".":23,",":18}},"p":{"d":"27,-133v1,-19,-5,-17,-23,-17r0,-16r49,-5v2,7,0,19,3,26v39,-61,124,-20,124,56v0,48,-27,96,-76,94v-20,0,-36,-7,-49,-22r0,59v-2,20,5,17,24,17r0,17r-72,0v1,-6,-4,-20,6,-17v15,-1,14,-2,14,-18r0,-174xm149,-84v0,-37,-13,-67,-47,-67v-32,0,-49,31,-49,66v0,39,15,68,50,68v32,0,46,-30,46,-67","w":195,"k":{"z":5,"y":8,"w":8,".":26,",":24}},"q":{"d":"16,-82v-5,-71,75,-125,124,-71r11,-22r17,0r0,215v0,20,1,19,21,19r0,17r-73,0r0,-17v45,10,16,-50,24,-82v-12,19,-30,28,-54,28v-46,1,-67,-42,-70,-87xm94,-17v32,-1,48,-28,48,-70v0,-37,-15,-65,-49,-65v-63,1,-63,138,1,135","w":191},"r":{"d":"32,-134v2,-17,-9,-16,-24,-16r0,-16r47,-5v2,12,4,23,4,32v15,-27,40,-42,68,-29r0,35r-20,0v1,-10,-1,-17,-10,-16v-39,6,-38,69,-38,121v0,14,10,12,22,12r0,16r-70,0v1,-6,-4,-19,6,-16v13,-1,15,-2,15,-16r0,-102","w":127,"k":{"y":-15,"v":-13,"u":-13,"t":-8,"s":-5,"r":-13,"p":-13,"o":5,"n":-8,"m":-13,"l":-5,"k":-10,"j":-10,"d":5,".":29,"-":5,",":21}},"s":{"d":"38,-93v-42,-24,-14,-82,38,-82v19,0,37,4,52,11r0,44r-21,0v3,-26,-9,-38,-32,-38v-27,0,-41,28,-23,43v26,21,85,23,85,69v0,55,-75,62,-122,40r0,-48r23,0v-3,29,8,42,35,41v43,0,44,-40,6,-59","w":150,"k":{".":10,",":8}},"t":{"d":"106,-8v-33,21,-78,18,-78,-32r0,-110r-21,0r0,-15v20,-7,31,-24,34,-52r17,0r0,46r45,0r0,21r-45,0r0,104v0,37,25,31,48,17r0,21","w":112},"u":{"d":"27,-139v-1,-18,-4,-12,-24,-14r0,-16r54,-4r0,109v-1,31,7,42,32,43v55,2,46,-64,46,-118v0,-18,-4,-12,-25,-14r0,-16r53,-4r0,136v-2,17,8,17,24,16r0,16r-49,5v-3,-8,-1,-19,-4,-26v-24,49,-107,39,-107,-32r0,-81","w":191},"v":{"d":"135,-138v5,-13,-1,-17,-17,-16r0,-17r64,0r0,17v-22,1,-17,4,-25,24r-53,133r-21,0r-55,-137v-7,-15,-7,-20,-27,-20r0,-17r74,0r0,17v-16,-1,-23,0,-17,15r39,101","w":183,"k":{"q":5,"o":5,"c":5,"a":5,".":24,",":26}},"w":{"d":"1,-171r73,0v-1,6,4,20,-6,17v-17,1,-14,6,-9,21r29,94r38,-132r23,0r41,132r30,-106v0,-8,-9,-10,-19,-9r0,-17r64,0r0,17v-19,1,-18,4,-24,21r-44,136r-22,0r-41,-130r-39,130r-21,0v-19,-50,-32,-109,-56,-153v-3,-3,-9,-4,-17,-4r0,-17","w":266,"k":{"q":7,"o":8,"h":4,"e":5,"d":5,"c":13,"a":10,".":26,",":23}},"x":{"d":"9,-171r73,0r0,17v-16,-1,-20,3,-10,17r23,32v10,-14,24,-28,32,-44v0,-3,-5,-5,-15,-5r0,-17r64,0r0,17v-38,4,-46,45,-70,65v23,24,32,67,72,73r0,16r-72,0v1,-6,-4,-19,6,-16v14,-2,12,-6,3,-16r-26,-36v-12,16,-27,28,-36,47v0,4,8,5,15,5r0,16r-62,0r0,-16v38,-7,47,-47,71,-69v-22,-23,-29,-65,-68,-69r0,-17","w":183,"k":{"o":8,"e":8,"d":5,"c":8}},"y":{"d":"1,-171r74,0r0,17v-14,-1,-23,1,-17,16r39,102v12,-37,30,-72,39,-111v1,-7,-10,-7,-18,-7r0,-17r64,0r0,17v-19,1,-16,3,-23,18v-29,65,-51,151,-88,205v-14,14,-42,14,-61,4r0,-33r20,0v-4,21,16,25,27,13v7,-8,21,-40,24,-53v-21,-49,-37,-107,-63,-150v-3,-3,-9,-4,-17,-4r0,-17","w":183,"k":{"o":8,"g":10,"e":10,"d":10,"c":8,"a":5,".":37,",":34}},"z":{"d":"49,-150v-20,-4,-12,12,-14,27r-23,0r0,-48r134,0r0,21r-103,130r68,0v21,4,14,-14,15,-31r23,0r0,51r-140,0r0,-20r103,-130r-63,0","w":157},"{":{"d":"47,-170v0,-55,10,-80,63,-77r0,26v-28,0,-34,4,-34,35v0,56,1,83,-36,100v28,13,35,30,36,76v1,47,-8,59,34,59r0,27v-53,3,-63,-24,-63,-78v0,-41,1,-67,-35,-70r0,-27v35,-4,35,-29,35,-71","w":119},"|":{"d":"83,-247r29,0r0,333r-29,0r0,-333","w":195},"}":{"d":"73,-2v1,55,-10,81,-63,78r0,-27v28,0,34,-4,34,-35v0,-56,-1,-83,36,-100v-28,-12,-36,-31,-36,-75v0,-47,8,-60,-34,-60r0,-26v53,-3,63,23,63,78v0,42,0,66,35,70r0,27v-37,3,-36,27,-35,70","w":119},"~":{"d":"163,-99v-32,0,-60,-28,-89,-28v-16,0,-33,8,-52,25r0,-30v18,-15,37,-23,54,-23v28,0,61,28,87,29v16,0,33,-9,51,-26r0,30v-18,15,-35,23,-51,23","w":236},"\u00ab":{"d":"131,-154r27,0r-44,68r44,70r-27,0r-47,-70xm58,-154r27,0r-44,68r44,70r-27,0r-47,-70","w":168},"\u00bb":{"d":"38,-16r-27,0r43,-68r-43,-70r27,0r47,70xm111,-16r-27,0r43,-68r-43,-70r27,0r47,70","w":168},"\u2013":{"d":"-2,-102r184,0r0,24r-184,0r0,-24","w":180},"\u2014":{"d":"-2,-102r364,0r0,24r-364,0r0,-24","w":360},"\u201c":{"d":"45,-169v-46,-12,-16,-83,21,-84r0,14v-15,8,-24,18,-25,31v28,-3,29,38,4,39xm108,-169v-46,-12,-16,-83,21,-84r0,14v-15,8,-24,18,-25,31v28,-3,29,38,4,39","w":150,"k":{"A":37}},"\u201d":{"d":"105,-253v28,1,29,42,13,61v-8,9,-19,18,-34,23r0,-14v15,-8,24,-18,25,-31v-14,1,-22,-9,-23,-20v0,-9,9,-20,19,-19xm43,-253v28,1,27,42,12,61v-8,9,-19,18,-34,23r0,-14v15,-8,24,-18,25,-31v-14,1,-22,-9,-23,-20v-1,-10,10,-20,20,-19","w":150},"\u2018":{"d":"44,-169v-27,0,-28,-43,-13,-62v7,-10,20,-17,35,-22r0,14v-15,8,-25,18,-26,31v28,-3,29,39,4,39","w":86,"k":{"A":37}},"\u2019":{"d":"43,-253v28,1,27,42,12,61v-8,9,-19,18,-34,23r0,-14v15,-8,24,-18,25,-31v-14,1,-22,-9,-23,-20v-1,-10,10,-20,20,-19","w":86,"k":{"t":5,"s":24,"r":5,"d":23}},"\u00a0":{"w":93}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitized data copyright (C) 1992 - 2001 The Monotype Corporation. All rights
 * reserved. Amasis is a trademark of the Monotype Corporation which may be
 * registered in certain jurisdictions.
 * 
 * Trademark:
 * Amasis is a trademark of the Monotype Corporation which may be registered in
 * certain jurisdictions.
 * 
 * Manufacturer:
 * Agfa Monotype Corporation
 * 
 * Vendor URL:
 * http://www.agfamonotype.com
 * 
 * License information:
 * http://www.agfamonotype.com/html/type/license.html
 */
Cufon.registerFont({"w":202,"face":{"font-family":"amasis","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 4 8 3 5 3 4 2 2 3","ascent":"288","descent":"-72","x-height":"6","bbox":"-27 -262 362 84.0437","underline-thickness":"17.9297","underline-position":"-27.0703","unicode-range":"U+0020-U+201D"},"glyphs":{" ":{"w":101},"!":{"d":"30,-257r53,0r-5,181r-43,0xm57,6v-15,0,-30,-14,-30,-29v-1,-15,15,-31,30,-30v15,0,29,15,29,30v0,15,-14,29,-29,29","w":112},"\"":{"d":"126,-246v45,0,21,64,18,101r-34,0v-3,-36,-30,-101,16,-101xm47,-246v45,0,21,64,18,101r-35,0v-4,-37,-30,-101,17,-101","w":172},"#":{"d":"13,-182r53,0r14,-66r38,0r-14,66r58,0r14,-66r37,0r-13,66r27,0r0,38r-35,0r-10,49r45,0r0,37r-52,0r-15,66r-37,0r14,-66r-59,0r-13,66r-38,0r14,-66r-28,0r0,-37r36,0r10,-49r-46,0r0,-38xm155,-144r-58,0r-11,48r58,0","w":240},"$":{"d":"117,-236v25,1,40,9,51,13r0,59r-39,0v3,-28,-6,-41,-30,-43v-27,-2,-40,31,-20,47v31,26,100,38,99,97v-1,38,-28,68,-68,70r0,33r-36,0r0,-33v-19,-2,-37,-7,-56,-14r0,-65r40,0v-2,29,6,47,34,47v30,0,45,-34,25,-53v-28,-26,-99,-43,-97,-96v1,-34,25,-60,61,-62r0,-17r36,0r0,17","w":191},"%":{"d":"56,8r152,-265r40,0r-152,265r-40,0xm67,-122v-42,0,-58,-23,-58,-65v0,-47,19,-70,58,-70v41,1,57,20,57,64v0,47,-19,71,-57,71xm67,-144v27,1,20,-65,14,-82v-2,-6,-8,-9,-14,-9v-28,1,-29,89,0,91xm238,8v-41,-1,-58,-24,-58,-66v0,-47,20,-70,59,-70v41,1,56,22,56,65v0,47,-19,71,-57,71xm238,-14v27,3,19,-64,15,-82v-3,-6,-9,-10,-15,-10v-29,2,-28,90,0,92","w":303},"&":{"d":"118,-251v37,0,63,19,64,51v0,25,-16,47,-48,65r42,54v8,-13,12,-33,12,-59r67,0r0,30v-40,-8,-34,43,-51,61v18,16,28,22,51,15r0,34v-31,13,-63,6,-82,-15v-50,43,-156,23,-156,-53v0,-31,18,-56,55,-75v-43,-46,-19,-108,46,-108xm142,-200v0,-33,-49,-27,-49,-1v0,11,6,24,19,39v19,-11,30,-24,30,-38xm94,-112v-43,23,-31,80,15,81v13,0,25,-4,38,-14","w":270},"'":{"d":"43,-246v45,0,21,64,18,101r-34,0v-3,-36,-30,-101,16,-101","w":86},"(":{"d":"119,-257v-56,88,-66,242,0,341r-43,0v-77,-110,-78,-231,0,-341r43,0","w":131},")":{"d":"12,84v56,-89,66,-242,0,-341r44,0v78,110,77,230,0,341r-44,0","w":131},"*":{"d":"77,-257r41,0r-3,58r56,-20r12,38v-17,8,-38,11,-57,16v12,16,26,29,36,47r-34,23r-30,-49r-34,49r-33,-25r37,-45r-56,-16r13,-38v19,6,37,13,55,20","w":195},"+":{"d":"21,-142r77,0r0,-77r44,0r0,77r77,0r0,44r-77,0r0,77r-44,0r0,-77r-77,0r0,-44","w":240},",":{"d":"57,-54v39,3,39,59,17,87v-11,14,-28,26,-50,34r0,-25v17,-7,27,-19,29,-37v-37,-3,-31,-61,4,-59","w":112},"-":{"d":"12,-112r108,0r0,48r-108,0r0,-48","w":131},".":{"d":"57,6v-16,0,-30,-14,-30,-30v0,-16,14,-29,30,-29v16,0,29,14,29,29v0,15,-14,30,-29,30","w":112},"\/":{"d":"153,-250r48,0r-133,257r-47,0","w":221},"0":{"d":"105,-246v64,0,82,46,82,121v0,87,-29,130,-87,130v-66,0,-83,-49,-84,-123v0,-85,30,-128,89,-128xm102,-32v49,3,36,-121,26,-157v-3,-12,-14,-19,-25,-19v-35,0,-35,41,-35,89v0,48,-1,85,34,87"},"1":{"d":"82,-161v4,-25,-20,-16,-37,-15r0,-29v27,-5,45,-19,57,-41r29,0r0,202v-3,19,16,14,32,15r0,29r-114,0r0,-29v17,0,33,4,33,-16r0,-116"},"2":{"d":"125,-179v0,-16,-11,-31,-29,-31v-24,0,-31,20,-29,48r-41,0r0,-55v47,-45,150,-40,150,35v0,67,-54,99,-97,140v26,-5,74,17,65,-27r40,0r0,69r-165,0r0,-41v57,-54,93,-72,106,-138"},"3":{"d":"125,-180v0,-18,-10,-31,-29,-31v-22,0,-31,16,-29,41r-38,0r0,-53v46,-37,145,-33,145,39v0,27,-15,43,-38,55v75,26,43,134,-42,134v-26,0,-50,-6,-72,-18r0,-59r41,0v-2,25,3,42,28,42v23,0,36,-16,36,-38v0,-26,-16,-39,-47,-39r0,-38v30,-1,45,-13,45,-35"},"4":{"d":"82,-29v16,-1,34,4,31,-15r0,-17r-99,0r0,-47r100,-138r46,0r0,146r29,0r0,39r-29,0v-1,21,-3,37,26,32r0,29r-104,0r0,-29xm53,-100r61,0r0,-84"},"5":{"d":"128,-80v0,-40,-38,-62,-59,-32r-39,-1r6,-127r135,0r0,41r-96,0r-2,46v52,-27,109,8,106,69v-3,51,-29,89,-85,89v-27,0,-49,-6,-68,-19r0,-58r41,0v-1,24,1,42,24,42v27,0,37,-21,37,-50"},"6":{"d":"16,-107v0,-77,30,-139,103,-139v22,0,43,5,62,16r0,52r-41,0v1,-23,-3,-33,-24,-33v-28,0,-44,24,-47,72v45,-41,120,-12,120,56v0,52,-31,88,-85,88v-59,0,-88,-37,-88,-112xm70,-77v0,25,11,49,35,49v25,0,35,-22,35,-50v0,-27,-11,-45,-35,-46v-25,0,-35,20,-35,47"},"7":{"d":"79,-196v-20,-3,-13,17,-14,33r-40,0r0,-77r161,0r0,43v-29,39,-75,128,-75,201r-48,0v2,-64,27,-131,76,-200r-60,0"},"8":{"d":"103,-246v75,-9,104,88,45,119v69,28,37,145,-46,132v-87,14,-115,-103,-47,-132v-62,-31,-26,-129,48,-119xm133,-179v0,-19,-12,-33,-31,-33v-18,1,-32,14,-32,35v0,20,13,34,32,34v21,0,31,-16,31,-36xm67,-68v0,22,14,39,35,39v23,0,35,-17,34,-41v0,-21,-13,-38,-34,-38v-23,0,-35,16,-35,40"},"9":{"d":"186,-133v0,78,-28,139,-103,138v-22,0,-42,-4,-61,-15r0,-52r41,0v0,22,1,33,23,33v28,0,43,-24,47,-72v-45,41,-120,12,-120,-56v0,-52,31,-89,85,-89v59,0,88,38,88,113xm133,-164v0,-26,-11,-48,-35,-48v-25,0,-35,22,-35,50v-1,27,11,46,34,46v23,0,36,-20,36,-48"},":":{"d":"57,-123v-16,0,-30,-14,-30,-30v0,-16,14,-29,30,-29v16,0,29,14,29,29v0,15,-14,30,-29,30xm57,6v-16,0,-30,-14,-30,-30v0,-16,14,-29,30,-29v16,0,29,14,29,29v0,15,-14,30,-29,30","w":112},";":{"d":"57,-123v-16,0,-30,-14,-30,-30v0,-16,14,-29,30,-29v16,0,29,14,29,29v0,15,-14,30,-29,30xm57,-54v39,3,39,59,17,87v-11,14,-28,26,-50,34r0,-25v17,-7,27,-19,29,-37v-37,-3,-31,-61,4,-59","w":112},"<":{"d":"219,-18r-198,-82r0,-39r198,-82r0,46r-138,55r138,55r0,47","w":240},"=":{"d":"21,-184r198,0r0,44r-198,0r0,-44xm21,-99r198,0r0,43r-198,0r0,-43","w":240},">":{"d":"21,-221r198,81r0,40r-198,82r0,-47r138,-55r-138,-55r0,-46","w":240},"?":{"d":"160,-197v-1,53,-62,68,-63,122r-44,0v-3,-50,55,-77,55,-121v0,-15,-12,-27,-29,-27v-24,0,-28,18,-27,44r-40,0r0,-55v44,-38,150,-32,148,37xm77,6v-15,0,-30,-14,-30,-29v-1,-15,15,-30,30,-30v15,0,31,15,30,30v0,15,-15,29,-30,29","w":172},"@":{"d":"43,-84v0,84,60,130,149,129v59,0,100,-16,122,-48r36,0v-25,51,-81,79,-156,79v-110,-1,-183,-54,-185,-160v-2,-101,76,-178,182,-178v85,0,149,53,149,134v0,65,-51,131,-115,128v-19,0,-30,-7,-33,-20v-42,44,-121,9,-115,-55v-7,-71,85,-158,141,-92r5,-19r46,0r-29,141v0,6,2,9,7,9v33,-8,62,-50,62,-93v1,-64,-54,-103,-119,-103v-88,0,-147,63,-147,148xm209,-118v0,-22,-11,-41,-33,-41v-34,0,-54,48,-54,83v0,24,9,44,32,44v34,0,55,-52,55,-86","w":352},"A":{"d":"148,-32v32,7,21,-21,13,-40r-77,0v-4,16,-23,44,12,40r0,32r-93,0r0,-32v20,0,20,-4,27,-21r70,-200r56,0r77,217v4,4,11,4,19,4r0,32r-104,0r0,-32xm123,-197v-13,27,-20,59,-31,88r61,0","w":254,"k":{"\u2019":26,"\u201d":26,"y":8,"w":18,"v":21,"u":5,"p":5,"Y":31,"W":24,"V":31,"U":13,"T":29,"Q":8,"O":8,"G":8,"C":8}},"B":{"d":"39,-202v1,-16,-8,-16,-24,-16r0,-32v80,2,195,-18,195,63v0,25,-12,43,-34,54v32,8,49,29,49,61v0,52,-33,72,-95,72r-115,0r0,-32v16,0,24,2,24,-17r0,-153xm91,-148v34,1,65,0,65,-33v0,-30,-32,-33,-65,-31r0,64xm168,-75v0,-36,-38,-36,-77,-35r0,72v40,1,77,2,77,-37","w":240,"k":{"U":4,"A":5,".":13,",":10}},"C":{"d":"17,-123v0,-78,46,-136,128,-134v31,0,60,6,85,19r0,73r-47,0v4,-38,-9,-56,-41,-56v-48,-1,-69,41,-69,91v0,95,95,115,156,64r0,46v-26,18,-56,28,-89,28v-78,1,-123,-55,-123,-131","w":247},"D":{"d":"39,-201v1,-17,-8,-17,-24,-17r0,-32r115,0v84,-2,124,49,125,124v1,74,-44,126,-117,126r-123,0r0,-32v17,0,24,1,24,-17r0,-152xm195,-124v0,-66,-31,-93,-102,-86r0,172v68,6,102,-16,102,-86","w":270,"k":{"Y":10,"W":8,"V":11,"A":10,".":29,",":26}},"E":{"d":"39,-202v1,-16,-8,-16,-24,-16r0,-32r191,0r0,66r-41,0v0,-16,1,-27,-17,-27r-54,0r0,63r41,0v11,2,6,-11,7,-19r39,0r0,79r-39,0v-1,-9,3,-21,-7,-21r-41,0r0,71r58,0v21,2,18,-13,18,-31r41,0r0,69r-196,0r0,-32v17,0,24,2,24,-17r0,-153","w":225},"F":{"d":"39,-200v1,-18,-7,-18,-24,-18r0,-32r193,0r0,66r-41,0v0,-17,3,-27,-17,-27r-56,0r0,63v18,-3,50,11,44,-19r39,0r0,78r-39,0v-1,-9,3,-22,-8,-20r-36,0r0,61v-2,19,12,16,29,16r0,32r-108,0r0,-32v16,0,24,1,24,-17r0,-151","w":217,"k":{"r":5,"o":18,"e":18,"a":19,"A":26,".":47,",":45}},"G":{"d":"18,-123v-2,-79,50,-135,131,-134v32,0,61,6,86,19r0,71r-46,0v4,-35,-11,-53,-43,-53v-48,0,-68,42,-70,94v-2,67,42,107,105,85v-3,-23,14,-60,-25,-52r0,-32r102,0r0,32v-15,-1,-24,0,-24,15r0,64v-28,14,-58,22,-88,22v-86,-1,-126,-50,-128,-131","w":270,"k":{".":16,",":13}},"H":{"d":"39,-201v1,-18,-9,-17,-25,-17r0,-32r105,0r0,32v-37,-8,-22,36,-25,64r89,0v-4,-26,15,-70,-24,-64r0,-32r104,0r0,32v-16,1,-24,-3,-24,16r0,154v-2,17,8,16,24,16r0,32r-104,0r0,-32v16,0,24,1,24,-16r0,-64r-89,0r0,66v-1,14,11,14,25,14r0,32r-105,0r0,-32v16,0,25,1,25,-17r0,-152","w":277},"I":{"d":"40,-201v1,-18,-9,-17,-25,-17r0,-32r105,0r0,32v-18,0,-25,0,-25,19r0,150v-2,18,8,17,25,17r0,32r-105,0r0,-32v17,0,25,1,25,-17r0,-152","w":135},"J":{"d":"155,-81v8,86,-76,105,-143,76r0,-60r37,0v0,25,4,34,23,34v22,0,27,-14,27,-41r0,-129v2,-19,-10,-17,-27,-17r0,-32r107,0r0,32v-16,0,-24,-2,-24,17r0,120","w":191,"k":{"y":5,"u":5,"o":8,"e":8,"a":10,"A":5,".":21,",":18}},"K":{"d":"40,-201v1,-16,-9,-18,-25,-17r0,-32r103,0r0,32v-17,1,-24,-1,-24,17r0,64v20,-25,46,-46,63,-74v0,-5,-5,-7,-14,-7r0,-32r101,0r0,32v-21,0,-25,5,-36,17r-61,70v30,30,57,71,91,95v6,2,11,4,18,4r0,32r-118,0r0,-32v19,2,22,-6,10,-20r-54,-62r0,65v-1,17,4,17,20,17r0,32r-99,0r0,-32v15,0,25,2,25,-15r0,-154","w":254,"k":{"y":5,"w":5,"v":8,"O":5,"G":5,"C":5}},"L":{"d":"39,-201v1,-18,-8,-17,-25,-17r0,-32r107,0r0,32v-17,0,-27,-1,-27,17r0,163v31,-4,81,17,69,-35r42,0r0,73r-191,0r0,-32v16,0,25,0,25,-16r0,-153","w":213,"k":{"\u2019":18,"\u201d":18,"y":8,"w":13,"Y":18,"W":11,"V":13,"U":5,"T":26,"O":5,"G":5,"C":5}},"M":{"d":"39,-200v1,-18,-8,-18,-25,-18r0,-32r112,0r46,155v18,-61,34,-113,48,-155r110,0r0,32v-20,0,-24,-1,-24,20r0,147v-2,21,6,19,24,19r0,32r-101,0r0,-32v18,0,23,1,23,-19r0,-167r-62,203r-43,0r-61,-203r0,169v-1,19,7,16,24,17r0,32r-96,0r0,-32v0,0,25,1,25,-19r0,-149","w":344},"N":{"d":"39,-201v2,-17,-8,-17,-24,-17r0,-32r92,0r82,163r0,-114v2,-18,-7,-16,-23,-17r0,-32r92,0r0,32v-16,0,-24,-1,-24,17r0,201r-55,0r-95,-181r0,132v-1,16,8,17,24,17r0,32r-93,0r0,-32v16,0,24,2,24,-17r0,-152","w":270,"k":{"A":5,".":18,",":15}},"O":{"d":"265,-129v0,79,-47,137,-125,137v-76,0,-123,-53,-123,-130v0,-80,47,-135,126,-135v77,0,123,51,122,128xm207,-128v0,-52,-18,-90,-65,-90v-48,0,-68,42,-68,95v0,52,19,91,67,91v49,0,66,-42,66,-96","w":281,"k":{"Y":8,"X":8,"W":5,"V":8,"T":5,"A":5,".":26,",":24}},"P":{"d":"39,-201v2,-18,-8,-16,-24,-17r0,-32r108,0v61,-1,87,22,89,72v2,61,-50,80,-120,74r0,57v-2,18,12,15,28,15r0,32r-105,0r0,-32v16,0,24,-1,24,-17r0,-152xm160,-178v0,-35,-31,-37,-68,-35r0,73v37,1,68,-1,68,-38","w":225,"k":{"o":13,"e":13,"a":11,"A":26,".":52,",":49}},"Q":{"d":"267,-129v0,68,-34,119,-90,131v18,15,45,22,82,21r0,33v-74,7,-134,-18,-164,-57v-48,-17,-76,-60,-77,-122v-1,-78,49,-134,127,-134v77,0,123,51,122,128xm143,-32v49,0,66,-44,66,-96v0,-52,-18,-90,-65,-90v-49,0,-69,40,-68,95v0,52,19,90,67,91","w":285,"k":{"Y":8,"W":8,"V":8,"U":5,"T":5,"A":5,".":24,",":5}},"R":{"d":"39,-201v2,-17,-8,-18,-24,-17r0,-32r111,0v90,-13,112,99,52,134v15,26,26,58,45,79v4,5,15,5,25,5r0,32r-72,0r-50,-104r-35,0r0,58v-1,16,9,14,24,14r0,32r-100,0r0,-32v15,0,24,2,24,-16r0,-153xm91,-213r0,73v37,2,69,-2,69,-37v0,-34,-32,-38,-69,-36","w":243,"k":{"y":5,"w":5,"v":8,"u":5,"a":-8,"Y":13,"W":5,"V":13,"U":5,"T":5,"Q":5,"O":5,"G":5,"C":5}},"S":{"d":"33,-150v-32,-53,6,-107,73,-107v27,0,52,5,76,15r0,63r-43,0v3,-30,-6,-46,-32,-46v-19,0,-36,12,-33,30v9,56,119,50,119,126v0,81,-107,92,-175,62r0,-72r45,0v-2,32,8,51,37,51v33,0,49,-37,28,-57v-16,-16,-85,-49,-95,-65","w":206},"T":{"d":"98,-211v-18,4,-53,-11,-47,16r0,19r-41,0r0,-74r232,0r0,74r-41,0v-1,-17,6,-35,-16,-35r-32,0r0,162v-2,19,10,17,27,17r0,32r-109,0r0,-32v16,0,27,3,27,-17r0,-162","w":251,"k":{"z":5,"u":5,"s":16,"r":5,"o":23,"m":5,"e":24,"c":24,"a":18,"Q":5,"O":5,"G":5,"C":5,"A":13,";":10,":":10,".":37,"-":21,",":34}},"U":{"d":"35,-201v2,-17,-8,-17,-24,-17r0,-32r104,0r0,32v-17,0,-27,-1,-24,19v6,64,-24,164,48,164v71,0,42,-100,48,-164v2,-18,-7,-20,-24,-19r0,-32r96,0r0,32v-16,0,-24,-1,-24,17r0,110v0,67,-31,99,-97,99v-68,0,-103,-30,-103,-96r0,-113","w":270,"k":{"A":10,".":26,",":24}},"V":{"d":"3,-250r105,0r0,32v-17,-1,-25,2,-19,20r44,131r46,-141v1,-9,-10,-11,-21,-10r0,-32r94,0r0,32v-17,0,-21,5,-27,21r-71,199r-54,0r-69,-196v-7,-19,-7,-24,-28,-24r0,-32","w":254,"k":{"y":5,"u":8,"r":10,"o":26,"e":26,"a":24,"Q":8,"O":13,"G":5,"C":5,"A":29,";":8,":":8,".":45,"-":10,",":42}},"W":{"d":"280,-195v6,-16,1,-27,-20,-23r0,-32r93,0r0,32v-21,0,-23,8,-28,25r-55,195r-53,0r-39,-165r-41,165r-54,0r-50,-190v-6,-22,-6,-30,-30,-30r0,-32r105,0r0,32v-16,-1,-30,1,-22,18r29,124r42,-174r53,0r40,174","w":356,"k":{"y":5,"u":8,"r":8,"o":23,"h":-4,"e":23,"d":21,"a":24,"O":8,"G":8,"C":8,"A":19,";":10,":":10,".":39,"-":10,",":37}},"X":{"d":"15,-250r103,0r0,32v-15,-1,-15,6,-7,18r21,32v8,-14,24,-29,28,-44v1,-6,-6,-6,-13,-6r0,-32r94,0r0,32v-22,1,-23,4,-36,22r-48,64v23,30,44,72,70,96v5,3,12,4,19,4r0,32r-106,0r0,-32v17,1,16,-6,7,-20r-23,-36v-10,15,-26,35,-33,50v-1,6,8,6,15,6r0,32r-97,0r0,-32v22,1,26,-6,37,-20r53,-72v-21,-29,-40,-67,-66,-90v-5,-3,-10,-4,-18,-4r0,-32","w":254,"k":{"O":8,"G":8,"C":8}},"Y":{"d":"72,-32v16,0,26,2,26,-15r0,-52v-27,-38,-48,-84,-80,-116v-4,-2,-8,-3,-14,-3r0,-32r106,0r0,32v-11,-1,-22,2,-16,12r37,60v12,-21,31,-42,40,-65v1,-6,-10,-8,-19,-7r0,-32r95,0r0,32v-19,1,-18,4,-28,19r-66,100v5,27,-18,75,26,67r0,32r-107,0r0,-32","w":251,"k":{"v":8,"u":8,"q":24,"p":5,"o":24,"i":5,"e":24,"d":24,"a":23,"O":8,"G":8,"C":8,"A":29,";":11,":":13,".":47,"-":18,",":44}},"Z":{"d":"79,-210v-24,-3,-17,15,-18,33r-40,0r0,-73r192,0r0,40r-132,171r77,0v25,4,18,-17,19,-36r41,0r0,75r-203,0r0,-39r131,-171r-67,0","w":232},"[":{"d":"25,-250r89,0r0,35r-41,0r0,255r41,0r0,36r-89,0r0,-326","w":127},"\\":{"d":"21,-250r47,0r133,257r-48,0","w":221},"]":{"d":"103,76r-90,0r0,-35r42,0r0,-256r-42,0r0,-35r90,0r0,326","w":127},"^":{"d":"20,-110r66,-140r39,0r65,140r-50,0r-35,-85r-35,85r-50,0","w":209},"_":{"d":"-2,45r0,-18r184,0r0,18r-184,0","w":180},"`":{"d":"2,-248r55,0r22,46r-36,0","w":119},"a":{"d":"94,-150v-22,-1,-25,11,-25,32r-40,0r0,-42v47,-32,151,-36,145,41r0,64v-2,21,8,26,23,18r0,31v-26,13,-62,20,-72,-10v-34,35,-111,28,-111,-29v0,-53,67,-60,108,-71v0,-24,-8,-33,-28,-34xm89,-27v27,0,36,-27,33,-61v-33,11,-53,10,-56,38v-2,14,9,23,23,23","k":{"w":5,"v":8}},"b":{"d":"24,-203v1,-19,-7,-19,-24,-19r0,-29r77,-6r0,101v11,-17,28,-25,51,-25v47,-1,70,39,70,87v0,75,-74,131,-130,79r-11,20r-33,0r0,-208xm74,-84v0,27,10,50,34,51v22,0,34,-19,34,-56v1,-28,-8,-51,-33,-51v-27,0,-35,26,-35,56","w":213,"k":{"w":8,"v":10,"l":5,".":18,",":16}},"c":{"d":"15,-83v-4,-84,83,-122,153,-84r0,61r-40,0v1,-23,0,-42,-23,-42v-26,0,-39,27,-39,53v0,61,60,72,101,40r0,41v-20,14,-43,20,-67,20v-54,1,-83,-39,-85,-89","w":183,"k":{".":10,",":8}},"d":{"d":"136,-163v-4,-26,14,-67,-24,-59r0,-29r77,-6r0,205v-2,19,6,20,22,18r0,29r-70,5v-3,-7,-2,-18,-5,-24v-10,19,-27,29,-51,29v-47,1,-71,-40,-71,-88v0,-73,68,-130,122,-80xm138,-91v0,-29,-10,-53,-34,-53v-44,0,-46,109,0,107v23,-1,34,-24,34,-54","w":217},"e":{"d":"14,-85v0,-80,90,-130,144,-74v15,15,21,42,21,78r-111,0v3,55,66,55,106,24r0,43v-23,13,-48,20,-74,20v-54,1,-86,-38,-86,-91xm129,-112v3,-32,-30,-50,-50,-28v-6,7,-10,17,-11,28r61,0","w":191,"k":{"p":-5,".":5,",":5}},"f":{"d":"106,-225v-21,0,-20,25,-20,49r35,0r0,37r-35,0r0,87v-1,23,4,22,25,22r0,30r-102,0r0,-30v21,0,23,0,23,-22r0,-87r-23,0r0,-37r23,0v-9,-72,57,-96,118,-72r0,44r-29,0v0,-16,-3,-21,-15,-21","w":123,"k":{"\u2019":-31,"\u201d":-31,"l":-20,"k":-23,"f":-8,"a":-5,"?":-49,".":8,",":5,"!":-36," ":-51}},"g":{"d":"20,-115v0,-56,60,-79,114,-61r59,0r0,32r-27,0v27,45,-10,91,-62,91v-21,0,-32,5,-32,13v12,22,89,5,105,24v12,8,17,21,17,37v-1,48,-44,64,-100,63v-59,0,-89,-14,-89,-43v0,-21,17,-31,42,-38v-39,-12,-28,-53,11,-63v-26,-10,-38,-28,-38,-55xm97,-80v19,-1,28,-15,28,-38v0,-26,-9,-39,-27,-39v-20,1,-28,19,-28,42v0,17,10,35,27,35xm55,34v0,30,93,27,93,-2v0,-11,-15,-17,-46,-17v-31,0,-47,7,-47,19","w":198,"k":{"y":-10,"r":-8}},"h":{"d":"191,-108v7,28,-18,86,20,78r0,30r-93,0r0,-30v33,7,10,-43,17,-70v0,-27,-3,-38,-23,-40v-34,-3,-33,50,-31,88v1,21,-4,22,18,22r0,30r-93,0r0,-30v22,0,22,0,22,-20r0,-150v1,-21,-4,-23,-24,-22r0,-29r77,-6r1,104v9,-19,26,-28,52,-28v44,0,58,24,57,73","w":217,"k":{"y":5}},"i":{"d":"54,-204v-19,0,-33,-9,-34,-27v0,-18,14,-26,33,-26v19,0,33,9,33,25v0,16,-15,28,-32,28xm32,-117v0,-25,-1,-29,-24,-26r0,-29r76,-7r0,127v0,22,-2,22,20,22r0,30r-95,0r0,-30v21,0,23,0,23,-22r0,-65","w":112},"j":{"d":"57,-204v-19,0,-34,-9,-34,-27v0,-17,14,-26,33,-26v19,0,33,9,33,25v0,16,-15,28,-32,28xm32,-117v1,-26,2,-28,-22,-27r0,-28r77,-7r0,174v7,75,-50,101,-114,80r0,-46r29,0v0,14,3,22,14,22v18,0,16,-15,16,-38r0,-130","w":112},"k":{"d":"28,-203v2,-18,-6,-20,-23,-19r0,-28r77,-7r0,158v13,-14,34,-24,42,-42v0,-7,-6,-6,-14,-6r0,-29r94,0r0,29v-31,5,-45,35,-68,49r45,53v10,10,13,15,30,15r0,30r-104,0r0,-30v13,3,17,-3,11,-11r-36,-40r0,81r-74,0r0,-30v15,0,20,1,20,-16r0,-157","w":209,"k":{"y":-8}},"l":{"d":"31,-201v1,-20,-3,-23,-23,-22r0,-28r76,-6r0,205v1,21,-2,22,20,22r0,30r-94,0r0,-30v21,0,21,-1,21,-22r0,-149","w":112},"m":{"d":"32,-128v2,-15,-9,-14,-23,-14r0,-29r72,-7v1,4,3,13,4,25v22,-38,90,-38,103,5v22,-49,125,-46,114,32r0,71v-2,15,6,15,20,15r0,30r-93,0r0,-30v10,0,19,1,18,-11v-4,-35,14,-98,-23,-99v-40,0,-31,55,-32,95v-1,14,4,15,18,15r0,30r-88,0r0,-30v14,0,18,0,17,-13v-4,-35,14,-97,-23,-97v-38,-1,-29,53,-31,94v-1,16,4,17,18,16r0,30r-92,0r0,-30v14,0,22,0,21,-15r0,-83","w":330},"n":{"d":"84,-92v0,26,-14,70,18,62r0,30r-91,0r0,-30v21,0,20,0,20,-20r-1,-83v-1,-12,-9,-10,-21,-9r0,-30r71,-6v3,6,1,19,4,26v11,-19,29,-29,53,-29v65,0,58,64,57,129v0,22,-2,22,20,22r0,30r-93,0r0,-30v33,7,12,-41,18,-69v-1,-27,-2,-41,-24,-41v-21,0,-31,16,-31,48","w":221,"k":{"\u2019":8,"v":5}},"o":{"d":"14,-84v0,-57,33,-98,92,-98v54,0,89,34,89,88v0,59,-33,100,-93,100v-55,0,-88,-37,-88,-90xm68,-86v0,28,10,57,37,56v29,-1,37,-27,37,-61v-1,-31,-10,-56,-37,-56v-28,0,-37,29,-37,61","w":209,"k":{"y":5,"x":5,"w":5,"v":5,"g":5,".":16,",":13}},"p":{"d":"202,-93v0,48,-26,100,-76,98v-17,0,-31,-6,-45,-19v5,25,-16,68,24,60r0,30r-98,0r0,-30v16,0,21,0,21,-18r0,-144v0,-25,2,-28,-22,-27r0,-28r71,-5v3,7,1,18,4,24v12,-20,29,-29,52,-29v47,0,70,39,69,88xm113,-139v-25,1,-35,27,-35,56v0,28,10,51,35,51v45,0,45,-107,0,-107","w":217,"k":{"z":8,"y":5,"w":5,".":21,",":18}},"q":{"d":"15,-83v0,-76,75,-129,131,-78r11,-20r33,0r0,211v-2,17,5,16,20,16r0,30r-98,0r0,-30v39,9,20,-38,24,-67v-12,17,-28,26,-50,26v-47,1,-71,-41,-71,-88xm139,-91v0,-29,-9,-52,-34,-52v-25,0,-33,24,-33,54v-1,29,8,53,33,53v24,0,34,-24,34,-55","w":213},"r":{"d":"30,-128v2,-16,-8,-15,-22,-15r0,-29r69,-5v3,8,2,21,5,30v16,-29,37,-39,69,-27r0,54r-33,0v1,-9,-2,-12,-8,-13v-29,4,-29,51,-29,90v0,15,10,13,24,13r0,30r-96,0r0,-30v15,0,21,1,21,-15r0,-83","w":150,"k":{"y":-10,"v":-13,"u":-13,"t":-13,"s":-5,"r":-13,"q":-5,"p":-13,"o":-5,"n":-13,"m":-10,"l":-5,"k":-5,"j":-13,"g":-5,"e":-5,"d":-5,"c":-5,"a":-5,".":21,",":18}},"s":{"d":"17,-128v0,-59,84,-64,133,-42r0,47r-40,0v11,-35,-42,-41,-44,-14v15,37,94,28,94,85v0,66,-92,67,-144,45r0,-51r41,0v-1,22,5,32,25,33v14,0,24,-7,24,-20v-11,-36,-89,-31,-89,-83","w":172,"k":{"w":5,".":10,",":8}},"t":{"d":"125,-8v-40,20,-98,20,-98,-41r0,-90r-22,0r0,-31v26,-8,41,-29,44,-62r32,0r0,56r42,0r0,37r-42,0v3,43,-18,126,44,94r0,37","w":135},"u":{"d":"26,-60v-7,-30,19,-91,-21,-83r0,-29r76,-7r0,108v0,22,6,33,24,35v35,4,32,-51,31,-89v0,-21,-1,-17,-23,-18r0,-29r76,-7r0,129v-2,17,7,17,22,16r0,29r-71,6v-2,-8,-4,-16,-4,-25v-27,49,-119,35,-110,-36","w":217},"v":{"d":"99,-147v-18,0,-17,4,-11,19r25,63r28,-74v0,-5,-5,-8,-15,-8r0,-29r82,0r0,29v-13,-1,-17,11,-21,19r-59,132r-44,0r-57,-130v-7,-13,-8,-20,-25,-21r0,-29r97,0r0,29","w":209,"k":{"q":5,"o":5,"e":5,"d":5,"c":5,"a":5,".":34,",":32}},"w":{"d":"235,-131v5,-12,1,-17,-13,-16r0,-29r80,0r0,29v-14,1,-15,4,-20,19r-52,130r-44,0r-33,-97r-32,97r-45,0v-20,-47,-35,-103,-60,-145v-3,-3,-8,-4,-14,-4r0,-29r95,0r0,29v-14,0,-18,3,-15,15r22,64r33,-108r45,0r33,108","w":303,"k":{".":34,",":32}},"x":{"d":"11,-176r93,0r0,29v-18,6,7,22,9,32v7,-9,16,-18,21,-28v0,-3,-2,-4,-7,-4r0,-29r78,0r0,29v-32,7,-41,37,-63,54v22,21,30,56,65,63r0,30r-93,0v-5,-18,9,-32,3,-41r-15,-21v-6,9,-16,17,-20,28v0,3,1,4,5,4r0,30r-80,0r0,-30v33,-6,44,-40,66,-58v-20,-20,-29,-53,-62,-59r0,-29","w":213,"k":{"o":5,"e":5,"d":5,"c":5}},"y":{"d":"26,-125v-4,-8,-8,-25,-24,-22r0,-29r97,0r0,29v-20,1,-18,5,-11,20r24,61v9,-25,22,-46,28,-73v0,-5,-4,-8,-14,-8r0,-29r81,0r0,29v-16,1,-13,5,-20,18r-73,163v-13,42,-55,60,-102,39r0,-48r31,0v-2,24,19,23,26,8v4,-7,8,-18,13,-33","w":209,"k":{"o":5,"g":5,"e":5,"d":5,"c":5,"a":5,".":40,",":37}},"z":{"d":"111,-141v-23,4,-64,-14,-57,23r-39,0r0,-58r161,0r0,35r-99,105v25,-4,69,15,62,-24r41,0r0,60r-169,0r0,-38","w":191,"k":{"o":5,"e":5,"d":5,"c":5}},"{":{"d":"49,0v2,-43,-2,-64,-39,-67r0,-41v33,-2,39,-17,39,-60v0,-66,18,-83,82,-82r0,40v-27,2,-35,-1,-36,25v-1,56,-1,78,-33,98v32,20,32,38,33,97v0,25,10,24,36,25r0,41v-61,2,-85,-15,-82,-76","w":138},"|":{"d":"89,-250r44,0r0,299r-44,0r0,-299","w":221},"}":{"d":"90,-174v0,42,1,64,38,67r0,40v-32,2,-39,16,-38,60v2,65,-17,85,-82,83r0,-41v27,-1,35,0,36,-25v1,-56,1,-77,33,-97v-31,-19,-32,-39,-33,-98v0,-25,-10,-23,-36,-24r0,-41v61,-2,82,16,82,76","w":138},"~":{"d":"160,-91v-30,1,-59,-28,-87,-28v-17,0,-34,9,-53,27r0,-45v19,-17,38,-25,57,-25v18,-4,70,27,88,27v15,0,32,-9,52,-26r0,45v-19,17,-39,25,-57,25","w":236},"\u00ab":{"d":"104,-17r-46,0r-49,-71r49,-71r47,0r-45,71xm192,-17r-47,0r-48,-71r48,-71r47,0r-44,71"},"\u00bb":{"d":"99,-159r46,0r48,71r-48,71r-47,0r44,-71xm11,-159r47,0r48,71r-48,71r-48,0r45,-71"},"\u2013":{"d":"-2,-109r184,0r0,38r-184,0r0,-38","w":180},"\u2014":{"d":"-2,-109r364,0r0,38r-364,0r0,-38","w":360},"\u201c":{"d":"55,-136v-38,-2,-41,-59,-17,-87v12,-14,27,-26,49,-34r0,25v-17,8,-26,20,-28,37v36,4,31,61,-4,59xm140,-136v-38,-2,-41,-59,-18,-87v12,-14,28,-26,50,-34r0,25v-17,8,-27,20,-29,37v37,3,33,61,-3,59","w":195,"k":{"A":29}},"\u201d":{"d":"140,-257v39,2,41,59,17,87v-12,14,-27,26,-49,34r0,-26v17,-8,26,-19,28,-36v-35,-4,-32,-61,4,-59xm55,-257v40,2,42,59,18,87v-12,14,-28,26,-50,34r0,-26v17,-8,27,-19,29,-36v-36,-3,-34,-61,3,-59","w":195},"\u2018":{"d":"57,-136v-38,-2,-43,-59,-18,-87v12,-14,27,-26,49,-34r0,25v-17,8,-26,20,-28,37v36,2,31,61,-3,59","w":112,"k":{"A":29}},"\u2019":{"d":"56,-257v40,2,42,59,18,87v-12,14,-28,26,-50,34r0,-26v17,-8,27,-19,29,-36v-36,-2,-32,-61,3,-59","w":112,"k":{"v":-5,"t":-5,"s":11,"l":-5,"d":18}},"\u00a0":{"w":101}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1995, 2002 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * ITC Franklin Gothic is a trademark of International Typeface Corporation.
 * 
 * Full name:
 * ITCFranklinGothicStd-MdCd
 * 
 * Designer:
 * Vic Caruso
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":183,"face":{"font-family":"franklin","font-weight":500,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 7 6 3 5 3 2 2 4","ascent":"247","descent":"-113","x-height":"4","bbox":"-11 -270 251 90","underline-thickness":"18","underline-position":"-18","stemh":"30","stemv":"37","unicode-range":"U+0020-U+201D"},"glyphs":{" ":{"w":90},"!":{"d":"37,-240r49,0r-13,175r-24,0xm41,-44r40,0r0,44r-40,0r0,-44","w":122},"\"":{"d":"59,-240r-6,99r-26,0r-5,-99r37,0xm114,-240r-6,99r-26,0r-5,-99r37,0","w":135},"#":{"d":"66,-240r26,0r-12,70r40,0r11,-70r26,0r-11,70r34,0r-4,24r-34,0r-8,47r34,0r-3,24r-35,0r-13,75r-26,0r13,-75r-40,0r-13,75r-25,0r12,-75r-34,0r4,-24r34,0r8,-47r-35,0r4,-24r35,0xm116,-146r-40,0r-8,47r40,0"},"$":{"d":"25,-172v0,-35,28,-62,57,-63r0,-24r22,0r0,24v36,4,50,21,59,48r-29,12v-7,-20,-15,-29,-31,-32r0,66v25,7,65,19,65,67v0,44,-31,64,-64,67r0,31r-22,0r0,-31v-45,-6,-57,-30,-65,-58r31,-10v5,20,13,34,35,39r0,-72v-16,-5,-58,-17,-58,-64xm83,-147r0,-60v-7,2,-24,7,-24,30v0,22,17,28,24,30xm103,-102r0,66v19,-3,31,-13,31,-33v0,-25,-21,-30,-31,-33"},"%":{"d":"63,-242v28,0,47,22,47,62v0,43,-21,62,-47,62v-27,0,-48,-20,-48,-62v0,-40,20,-62,48,-62xm63,-220v-10,0,-20,5,-20,40v0,34,10,40,20,40v13,0,19,-12,19,-40v0,-30,-7,-40,-19,-40xm183,-122v28,0,47,21,47,62v0,41,-20,62,-47,62v-28,0,-47,-22,-47,-62v0,-42,20,-62,47,-62xm163,-59v0,17,1,37,20,39v11,0,19,-8,19,-40v0,-29,-7,-40,-19,-40v-11,0,-20,8,-20,41xm170,-240r23,0r-117,240r-23,0","w":245},"&":{"d":"181,-134r30,7v-7,37,-17,58,-32,81v7,10,18,20,36,15r0,31v-26,9,-51,-4,-60,-21v-11,10,-29,25,-61,25v-51,0,-73,-37,-73,-70v0,-34,20,-56,52,-71v-26,-33,-32,-107,36,-107v39,0,54,28,54,52v0,37,-32,56,-44,62r41,59v5,-8,14,-23,21,-63xm110,-217v-34,0,-21,51,-6,65v15,-9,27,-23,27,-41v0,-15,-8,-24,-21,-24xm138,-44r-49,-71v-10,6,-30,19,-30,47v0,46,64,51,79,24","w":226},"\u2019":{"d":"23,-195r0,-45r38,0r0,43r-24,45r-18,0r21,-43r-17,0","w":79,"k":{"\u2019":29,"r":18,"s":27,"d":31}},"(":{"d":"68,-240r29,0v-51,100,-62,185,0,300r-29,0v-32,-46,-49,-94,-49,-150v0,-80,37,-133,49,-150","w":116},")":{"d":"49,-240v22,27,49,98,49,150v0,80,-37,132,-49,150r-29,0v54,-89,55,-211,0,-300r29,0","w":116},"*":{"d":"79,-240r26,0r-4,47r40,-26r12,24r-41,19r41,18r-12,24r-40,-26r4,47r-26,0r4,-47r-40,26r-12,-24r41,-18r-41,-19r12,-24r40,26"},"+":{"d":"107,-135r59,0r0,30r-59,0r0,59r-30,0r0,-59r-59,0r0,-30r59,0r0,-59r30,0r0,59"},",":{"d":"25,-45r40,0r0,43r-26,53r-18,0r22,-51r-18,0r0,-45","w":86,"k":{"\u201d":54,"\u2019":54," ":18}},"-":{"d":"14,-105r76,0r0,30r-76,0r0,-30","w":104},".":{"d":"23,-45r40,0r0,45r-40,0r0,-45","w":86,"k":{"\u201d":54,"\u2019":54}},"\/":{"d":"127,-240r27,0r-132,300r-27,0","w":171},"0":{"d":"92,-244v63,0,78,62,78,121v0,62,-11,127,-78,127v-63,0,-78,-61,-78,-121v0,-62,12,-127,78,-127xm92,-215v-32,0,-37,44,-37,95v0,53,6,95,37,95v30,0,37,-38,37,-95v0,-54,-6,-95,-37,-95"},"1":{"d":"158,-30r0,30r-119,0r0,-30r41,0r0,-164v-7,9,-17,20,-43,34r0,-37v21,-12,38,-26,53,-46r29,0r0,213r39,0"},"2":{"d":"12,-35v28,-30,108,-71,108,-136v0,-18,-8,-41,-34,-41v-32,0,-37,37,-38,49r-36,-8v4,-18,14,-73,77,-73v51,0,72,35,72,70v0,35,-16,72,-107,139r108,0r-1,35r-149,0r0,-35"},"3":{"d":"59,-139v35,5,59,-10,59,-37v0,-20,-10,-38,-33,-38v-28,0,-35,25,-38,36r-33,-8v4,-14,17,-58,75,-58v39,0,69,21,69,64v0,36,-23,48,-37,54v17,-1,49,36,44,59v3,96,-151,90,-158,7r34,-8v2,10,9,41,43,41v19,0,39,-11,39,-42v0,-47,-35,-40,-64,-41r0,-29"},"4":{"d":"98,-244r45,0r0,157r30,0r0,30r-30,0r0,57r-39,0r0,-57r-93,0r0,-29xm42,-86r64,0r0,-123"},"5":{"d":"91,-28v53,0,55,-98,1,-100v-26,0,-34,17,-38,26r-30,-6r8,-132r125,0r-4,35r-91,0r-4,66v31,-41,115,-23,111,58v-4,86,-82,108,-134,65v-16,-13,-17,-29,-20,-41r35,-9v4,14,10,38,41,38"},"6":{"d":"19,-114v0,-43,19,-130,83,-130v54,0,65,44,69,58r-33,10v-3,-13,-10,-37,-37,-37v-38,0,-44,50,-45,94v25,-60,117,-42,117,43v0,50,-30,80,-74,80v-53,0,-69,-48,-72,-58v-6,-22,-8,-42,-8,-60xm99,-124v-57,0,-49,97,0,98v34,0,35,-36,35,-50v0,-7,0,-48,-35,-48"},"7":{"d":"20,-205r3,-35r139,0r0,28v-14,18,-36,48,-53,111v-13,48,-13,83,-13,101r-42,0v0,-111,53,-180,72,-205r-106,0"},"8":{"d":"94,-244v31,0,71,26,71,61v0,34,-26,47,-38,53v12,6,45,23,45,64v0,33,-24,70,-82,70v-32,0,-78,-19,-78,-65v0,-39,30,-53,45,-61v-13,-8,-37,-23,-37,-57v0,-28,18,-65,74,-65xm97,-142v35,-7,51,-73,-3,-75v-20,0,-36,13,-36,33v0,24,21,35,39,42xm85,-107v-14,6,-37,17,-37,44v0,27,20,39,43,39v22,0,43,-12,43,-36v0,-27,-25,-37,-49,-47"},"9":{"d":"16,-48r34,-10v3,13,9,32,34,32v38,0,42,-53,43,-91v-6,12,-18,32,-49,32v-39,0,-66,-34,-66,-79v0,-42,24,-80,75,-80v63,0,77,58,77,115v0,72,-19,133,-83,133v-48,0,-59,-33,-65,-52xm87,-213v-19,0,-37,14,-37,48v0,27,12,47,36,47v29,0,37,-29,37,-48v0,-21,-9,-47,-36,-47"},":":{"d":"23,-45r40,0r0,45r-40,0r0,-45xm23,-177r40,0r0,45r-40,0r0,-45","w":86},";":{"d":"25,-45r40,0r0,43r-26,53r-18,0r22,-51r-18,0r0,-45xm25,-177r40,0r0,45r-40,0r0,-45","w":86},"<":{"d":"170,-212r0,36r-117,56r117,56r0,36r-156,-76r0,-32"},"=":{"d":"166,-130r-148,0r0,-29r148,0r0,29xm166,-81r-148,0r0,-29r148,0r0,29"},">":{"d":"14,-28r0,-36r117,-56r-117,-56r0,-36r156,77r0,31"},"?":{"d":"63,-64v-11,-67,52,-57,52,-116v0,-23,-13,-33,-31,-33v-32,0,-35,35,-36,50r-34,-7v1,-11,3,-32,17,-50v36,-48,132,-19,124,41v5,59,-68,62,-59,115r-33,0xm60,-43r39,0r0,43r-39,0r0,-43","w":177},"@":{"d":"140,-183r21,0r-13,99v0,10,4,12,9,12v16,0,31,-24,31,-63v0,-64,-35,-90,-74,-90v-54,0,-85,50,-85,107v0,57,30,103,89,103v32,0,53,-12,64,-19r8,19v-12,7,-37,21,-73,21v-68,0,-114,-47,-114,-123v0,-71,40,-129,111,-129v64,0,98,46,98,108v0,55,-27,89,-58,89v-20,0,-23,-10,-26,-20v-20,37,-70,22,-70,-37v0,-41,19,-79,51,-79v19,0,25,15,28,22xm110,-159v-18,0,-25,29,-25,52v0,21,7,32,17,32v24,0,25,-50,25,-53v0,-10,-2,-31,-17,-31","w":214},"A":{"d":"68,-240r45,0r64,240r-41,0r-15,-60r-70,0r-14,60r-38,0xm59,-91r54,0r-27,-111","w":177},"B":{"d":"179,-67v2,42,-38,67,-83,67r-73,0r0,-240v65,0,147,-13,148,61v0,39,-25,49,-36,53v24,6,42,24,44,59xm62,-210r0,70v34,-1,64,8,68,-36v-6,-46,-34,-31,-68,-34xm62,-110r0,78v40,3,81,-3,76,-39v-7,-51,-39,-36,-76,-39","w":196},"C":{"d":"144,-81r36,5v-3,19,-11,80,-78,80v-78,0,-87,-83,-87,-123v0,-38,8,-125,88,-125v67,0,75,61,78,82r-37,5v-3,-20,-8,-55,-41,-55v-41,0,-46,56,-46,94v0,43,8,90,46,90v24,0,35,-18,41,-53","w":190},"D":{"d":"159,-211v58,66,29,225,-79,211r-57,0r0,-240v59,2,100,-12,136,29xm63,-32v66,13,82,-51,82,-88v0,-52,-19,-95,-82,-88r0,176","w":202,"k":{"W":7,"Y":7,"A":7,"V":7,",":14,".":14}},"E":{"d":"23,-240r137,0r0,32r-97,0r0,69r76,0r0,31r-76,0r0,76r99,0r0,32r-139,0r0,-240","w":165},"F":{"d":"23,-240r133,0r0,32r-93,0r0,72r75,0r0,31r-75,0r0,105r-40,0r0,-240","w":153,"k":{"A":14,",":45,".":45,"e":7,"a":14,"i":-9,"o":7,"r":7}},"G":{"d":"105,-123r80,0r0,125r-22,0r-5,-31v-6,11,-19,33,-57,33v-68,0,-86,-70,-86,-121v0,-44,10,-127,90,-127v55,0,72,36,79,73r-36,9v-5,-22,-12,-50,-43,-50v-37,0,-48,39,-48,92v0,41,7,92,49,92v41,0,42,-47,42,-63r-43,0r0,-32","w":202},"H":{"d":"23,-240r40,0r0,100r71,0r0,-100r39,0r0,240r-39,0r0,-107r-71,0r0,107r-40,0r0,-240","w":196},"I":{"d":"23,-240r40,0r0,240r-40,0r0,-240","w":86},"J":{"d":"49,-240r39,0r0,149v0,48,0,95,-63,95v-11,0,-18,-1,-31,-4r0,-33v39,9,55,-1,55,-58r0,-149","w":110},"K":{"d":"23,-240r40,0r0,114r72,-114r42,0r-62,88r73,152r-43,0r-54,-119r-28,40r0,79r-40,0r0,-240","k":{"O":9,"e":7,"o":7}},"L":{"d":"23,-240r40,0r0,207r85,0r0,33r-125,0r0,-240","w":147,"k":{"T":11,"W":9,"Y":16,"\u201d":27,"\u2019":27,"V":16,"y":9}},"M":{"d":"22,-240r59,0r48,173r49,-173r56,0r0,240r-37,0r0,-205r-57,205r-29,0r-56,-205r0,205r-33,0r0,-240","w":257},"N":{"d":"22,-240r46,0r80,173r0,-173r33,0r0,240r-37,0r-89,-192r0,192r-33,0r0,-240","w":202},"O":{"d":"102,-244v72,0,86,68,86,124v0,49,-11,124,-86,124v-72,0,-87,-68,-87,-124v0,-55,15,-124,87,-124xm146,-120v0,-33,0,-92,-44,-92v-44,0,-45,61,-45,92v0,29,4,92,45,92v43,0,44,-63,44,-92","w":202,"k":{"W":7,"Y":7,"A":5,"V":7,",":7,".":7,"J":11,"X":9}},"P":{"d":"82,-240v77,-12,125,84,61,134v-25,19,-50,11,-80,12r0,94r-40,0r0,-240r59,0xm129,-167v3,-30,-25,-52,-66,-43r0,85v34,-1,61,9,66,-42","w":177,"k":{"A":18,",":63,".":63,"e":9,"a":9,"o":9}},"Q":{"d":"174,51v-38,14,-79,-8,-72,-47v-69,0,-87,-62,-87,-124v0,-57,16,-124,87,-124v97,0,93,106,79,181v-8,43,-34,54,-49,61v-6,23,23,31,42,23r0,30xm101,-212v-43,-5,-43,68,-44,92v0,67,15,92,44,92v17,0,44,-7,44,-92v0,-28,0,-96,-44,-92","w":202},"R":{"d":"23,-240v0,0,149,-11,149,68v0,44,-27,58,-37,63r46,109r-43,0r-38,-100r-37,0r0,100r-40,0r0,-240xm133,-172v-7,-51,-34,-35,-70,-38r0,79v40,4,75,-5,70,-41","w":190,"k":{"O":4}},"S":{"d":"166,-186r-34,11v-8,-22,-17,-37,-42,-37v-26,0,-33,20,-33,31v0,22,20,29,48,40v28,10,67,25,67,73v0,35,-25,72,-81,72v-67,0,-79,-51,-83,-67r36,-10v3,11,10,45,49,45v33,0,38,-24,38,-35v0,-42,-76,-42,-91,-65v-40,-36,-25,-116,52,-116v57,0,69,41,74,58"},"T":{"d":"-6,-240r146,0r0,34r-53,0r0,206r-40,0r0,-206r-53,0r0,-34","w":135,"k":{"u":20,"A":9,",":27,".":18,"w":20,"e":22,"a":22,"i":-9,"o":22,"r":20,"y":18,"-":14}},"U":{"d":"175,-94v1,58,-10,98,-77,98v-76,0,-77,-53,-77,-95r0,-149r39,0r0,149v0,32,0,63,40,63v39,0,39,-29,39,-64r0,-148r36,0r0,146","w":196},"V":{"d":"-1,-240r41,0r46,191r46,-191r35,0r-63,241r-44,-1","w":165,"k":{"G":7,"O":7,"u":13,"A":7,",":27,".":27,"e":22,"a":11,"i":-9,"o":22}},"W":{"d":"1,-240r40,0r33,180r37,-180r35,0r37,180r34,-180r34,0r-51,241r-36,0r-38,-177r-37,177r-36,0","w":251,"k":{"O":7,"u":11,"A":5,",":27,".":27,"e":14,"a":13,"o":14}},"X":{"d":"3,-240r44,0r34,77r39,-77r37,0r-56,109r63,131r-44,0r-41,-92r-46,92r-38,0r64,-124","w":159},"Y":{"d":"-11,-240r43,0r44,100r45,-100r38,0r-67,138r0,102r-39,0r0,-102","w":147,"k":{"O":7,"u":13,"A":7,",":18,".":18,"e":18,"a":18,"i":-7,"o":18}},"Z":{"d":"7,-240r144,0r0,28r-107,179r109,0r0,33r-153,0r0,-31r105,-177r-98,0r0,-32","w":153},"[":{"d":"28,-240r63,0r0,20r-28,0r0,260r28,0r0,20r-63,0r0,-300","w":116},"\\":{"d":"45,-240r132,300r-27,0r-133,-300r28,0","w":171},"]":{"d":"88,60r-62,0r0,-20r28,0r0,-260r-28,0r0,-20r62,0r0,300","w":116},"^":{"d":"179,-114r-35,0r-52,-100r-52,100r-35,0r68,-129r38,0"},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"57,-156r-38,0r0,-43r24,-45r18,0r-21,44r17,0r0,44","w":79,"k":{"\u2018":29,"A":25}},"a":{"d":"13,-47v0,-52,39,-64,96,-62v0,-20,3,-46,-26,-46v-23,0,-28,20,-29,28r-35,-5v8,-46,50,-50,67,-50v91,-3,49,104,63,182r-34,0v-2,-9,-3,-13,-3,-30v-7,13,-18,34,-50,34v-29,0,-49,-18,-49,-51xm75,-23v17,0,37,-24,34,-64v-41,-4,-62,18,-58,38v0,21,12,26,24,26","w":165},"b":{"d":"21,-240r37,0r0,83v6,-9,17,-24,41,-24v49,0,60,54,60,90v0,19,-3,68,-35,87v-31,18,-70,1,-74,-20v-3,8,-5,11,-8,24r-21,0r0,-240xm90,-154v-29,0,-32,40,-32,79v0,12,0,51,31,51v23,0,31,-22,31,-67v0,-36,-5,-63,-30,-63","w":171,"k":{"v":5}},"c":{"d":"144,-118r-35,4v-3,-21,-6,-39,-27,-39v-25,0,-31,25,-31,68v0,16,0,59,31,59v23,0,26,-23,27,-38r35,3v-3,22,-8,65,-64,65v-58,0,-67,-55,-67,-92v0,-41,11,-94,69,-94v53,0,59,45,62,64","w":147},"d":{"d":"114,-240r36,0r0,240r-33,0r0,-27v-5,10,-14,30,-45,30v-50,0,-59,-57,-59,-91v0,-61,25,-93,60,-93v28,0,37,16,41,24r0,-83xm82,-24v33,0,32,-40,32,-80v0,-23,-6,-50,-32,-50v-27,0,-31,35,-31,63v0,30,3,67,31,67","w":171},"e":{"d":"150,-83r-100,0v0,20,1,60,35,60v24,0,28,-21,31,-34r33,5v-3,13,-13,56,-65,56v-53,0,-71,-44,-71,-90v0,-100,92,-121,125,-65v13,23,12,46,12,68xm113,-108v4,-21,-17,-53,-30,-47v-22,0,-30,23,-32,47r62,0","w":159,"k":{"v":-4,"w":-4}},"f":{"d":"63,-177r32,0r0,29r-32,0r0,148r-36,0r0,-148r-23,0r0,-29r23,0v1,-33,1,-70,51,-70v10,0,16,1,22,2r0,29v-27,-5,-41,4,-37,39","w":92,"k":{"\u201d":-9,"\u2019":-9,",":11,".":11,"e":7}},"g":{"d":"160,-206r-1,27v-15,-3,-23,0,-27,18v36,45,-5,111,-71,92v-5,3,-13,6,-13,16v0,13,9,14,45,16v35,2,69,3,69,47v0,47,-48,56,-81,56v-25,0,-71,-5,-71,-45v0,-25,18,-31,26,-34v-7,-4,-20,-12,-20,-30v0,-22,18,-31,26,-35v-9,-6,-23,-16,-23,-45v0,-48,58,-72,97,-51v0,-18,14,-39,44,-32xm84,-158v-23,0,-27,20,-27,35v0,5,0,34,25,34v25,0,26,-30,26,-34v0,-8,-1,-35,-24,-35xm107,-5v-24,0,-64,-14,-64,20v0,19,16,25,43,25v15,0,42,-3,42,-25v0,-16,-13,-19,-21,-20","w":159,"k":{",":-9,".":-5,"y":-7}},"h":{"d":"22,-240r36,0r0,86v5,-24,64,-47,81,-7v17,41,3,108,6,161r-37,0r0,-112v0,-20,0,-40,-22,-40v-25,0,-28,29,-28,50r0,102r-36,0r0,-240","w":165},"i":{"d":"22,-177r36,0r0,177r-36,0r0,-177xm59,-202r-38,0r0,-38r38,0r0,38","w":79},"j":{"d":"22,-177r37,0r0,171v0,36,0,70,-46,70v-9,0,-16,-2,-22,-3r0,-30v26,4,31,0,31,-38r0,-170xm60,-202r-38,0r0,-38r38,0r0,38","w":79},"k":{"d":"22,-240r36,0r0,142r58,-79r36,0r-46,61r51,116r-40,0r-35,-89r-24,32r0,57r-36,0r0,-240","w":153,"k":{"o":7,"y":13}},"l":{"d":"22,-240r36,0r0,240r-36,0r0,-240","w":79},"m":{"d":"108,-108v2,-37,-4,-40,-21,-44v-28,0,-29,31,-29,49r0,103r-36,0r0,-177r33,0r0,27v6,-13,15,-32,44,-32v33,0,38,22,41,33v2,-24,61,-53,84,-14v15,43,4,109,7,163r-37,0r0,-109v0,-24,1,-43,-21,-43v-21,0,-28,18,-28,48r0,104r-37,0r0,-108","w":251},"n":{"d":"99,-182v27,0,46,28,46,68r0,114r-37,0r0,-112v0,-23,0,-40,-21,-40v-29,0,-29,35,-29,53r0,99r-36,0r0,-177r33,0r0,27v4,-10,13,-32,44,-32","w":165,"k":{"v":7}},"o":{"d":"83,-182v55,0,70,48,70,91v0,41,-11,95,-71,95v-55,0,-69,-47,-69,-93v0,-43,12,-93,70,-93xm83,-154v-22,0,-31,22,-31,65v0,46,10,66,31,66v21,0,31,-18,31,-66v0,-46,-10,-65,-31,-65","w":165,"k":{"v":5}},"p":{"d":"159,-91v0,27,-17,94,-61,94v-24,0,-33,-12,-40,-21r0,78r-37,0r0,-237r34,0r0,29v5,-11,16,-33,44,-33v36,0,60,34,60,90xm89,-154v-30,0,-35,43,-31,80v-4,25,9,50,31,50v23,0,31,-25,31,-66v0,-33,-6,-64,-31,-64","w":171,"k":{"y":5}},"q":{"d":"13,-86v0,-45,16,-95,63,-95v28,0,38,20,43,30v4,-9,7,-13,12,-28r19,0r0,239r-37,0r0,-83v-36,52,-100,18,-100,-63xm113,-81v0,-37,-12,-79,-31,-73v-24,0,-31,28,-31,65v0,20,3,65,31,65v11,0,31,-11,31,-57","w":171},"r":{"d":"22,-177r32,0r0,39v4,-12,17,-47,51,-43r0,38v-70,-3,-41,82,-47,143r-36,0r0,-177","w":98,"k":{"u":-7,"v":-18,",":11,".":11,"r":-5,"y":-18,"k":-7,"l":-7,"m":-5,"n":-5,"p":-5,"s":-5,"t":-18,":":-14,";":-14}},"s":{"d":"47,-133v0,40,88,21,88,81v0,27,-20,56,-65,56v-55,0,-61,-38,-64,-51r31,-6v1,8,6,30,34,30v24,0,28,-17,28,-23v0,-17,-16,-22,-31,-27v-24,-8,-56,-18,-56,-54v0,-28,22,-55,59,-55v45,0,55,34,58,46r-29,8v-3,-8,-9,-27,-30,-27v-15,0,-23,10,-23,22","w":141},"t":{"d":"93,-177r0,29r-34,0r0,79v-4,39,9,45,39,41r0,29v-7,1,-15,3,-27,3v-76,-1,-40,-89,-48,-152r-23,0r0,-29r24,0r2,-47r33,-3r0,50r34,0","w":98},"u":{"d":"21,-177r36,0r0,112v0,25,0,40,21,40v30,0,29,-34,29,-67r0,-85r37,0r0,177r-34,0r0,-27v-6,13,-15,31,-45,31v-45,0,-44,-38,-44,-68r0,-113","w":165},"v":{"d":"-2,-177r36,0r33,127r33,-127r31,0r-50,177r-32,0","w":128,"k":{",":11,".":11}},"w":{"d":"0,-177r36,0r26,122r25,-122r33,0r25,122r28,-122r30,0r-44,177r-31,0r-27,-123r-26,123r-31,0","w":202,"k":{",":11,".":11}},"x":{"d":"0,-177r40,0r26,51r27,-51r34,0r-45,80r53,97r-41,0r-32,-63r-34,63r-34,0r51,-92","w":128,"k":{"e":11}},"y":{"d":"0,-177r37,0r31,121r31,-121r33,0r-57,188v-8,34,-27,61,-71,51r0,-30v30,3,36,0,46,-38","w":128,"k":{",":20,".":20}},"z":{"d":"12,-177r108,0r0,22r-75,127r75,0r0,28r-115,0r0,-28r72,-122r-65,0r0,-27","w":122},"{":{"d":"90,-240r0,21v-52,-8,7,119,-44,127v32,2,22,58,22,96v0,28,1,35,22,35r0,21v-37,2,-55,-6,-55,-56v0,-29,11,-90,-20,-84r0,-25v30,5,20,-50,20,-79v0,-48,15,-58,55,-56","w":116},"|":{"d":"108,-270r0,360r-36,0r0,-360r36,0","w":180},"}":{"d":"27,60r0,-21v50,6,-8,-122,43,-131v-31,-3,-22,-55,-22,-92v0,-28,-1,-35,-21,-35r0,-21v36,-2,55,5,55,56v0,28,-10,85,19,79r0,25v-30,-5,-19,55,-19,84v0,48,-15,58,-55,56","w":116},"~":{"d":"124,-94v-14,0,-43,-20,-70,-20v-16,0,-23,14,-28,24r-21,-14v10,-22,21,-46,52,-46v3,-6,63,24,72,21v16,0,23,-11,29,-21r21,12v-8,16,-21,44,-55,44"},"'":{"d":"58,-240r-5,99r-26,0r-6,-99r37,0","w":79},"\u201c":{"d":"112,-156r-39,0r0,-43r25,-45r17,0r-20,44r17,0r0,44xm58,-156r-39,0r0,-43r25,-45r17,0r-20,44r17,0r0,44","w":135,"k":{"A":25}},"\u00ab":{"d":"125,-35r-20,0r-34,-57r34,-58r20,0r-19,58xm70,-36r-20,0r-34,-56r34,-56r20,0r-19,56","w":141},"\u2013":{"d":"12,-104r124,0r0,28r-124,0r0,-28","w":147},"\u201d":{"d":"23,-240r38,0r0,43r-24,45r-18,0r21,-43r-17,0r0,-45xm77,-240r38,0r0,43r-24,45r-18,0r21,-43r-17,0r0,-45","w":135},"\u00bb":{"d":"16,-150r20,0r34,58r-34,57r-20,0r19,-57xm71,-150r20,0r34,58r-34,57r-20,0r19,-57","w":141},"`":{"d":"117,-212r-13,13r-62,-39r19,-24","w":180},"\u2014":{"d":"11,-104r205,0r0,28r-205,0r0,-28","w":226},"\u00a0":{"w":90}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © 1995, 2002 Adobe Systems Incorporated. All Rights Reserved.
 * 
 * Trademark:
 * ITC Franklin Gothic is a trademark of International Typeface Corporation.
 * 
 * Full name:
 * ITCFranklinGothicStd-MdCd
 * 
 * Designer:
 * Vic Caruso
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":183,"face":{"font-family":"franklin","font-weight":500,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 7 6 3 5 3 2 2 4","ascent":"247","descent":"-113","x-height":"4","bbox":"-11 -270 251 90","underline-thickness":"18","underline-position":"-18","stemh":"30","stemv":"37","unicode-range":"U+0020-U+201D"},"glyphs":{" ":{"w":90},"!":{"d":"37,-240r49,0r-13,175r-24,0xm41,-44r40,0r0,44r-40,0r0,-44","w":122},"\"":{"d":"59,-240r-6,99r-26,0r-5,-99r37,0xm114,-240r-6,99r-26,0r-5,-99r37,0","w":135},"#":{"d":"66,-240r26,0r-12,70r40,0r11,-70r26,0r-11,70r34,0r-4,24r-34,0r-8,47r34,0r-3,24r-35,0r-13,75r-26,0r13,-75r-40,0r-13,75r-25,0r12,-75r-34,0r4,-24r34,0r8,-47r-35,0r4,-24r35,0xm116,-146r-40,0r-8,47r40,0"},"$":{"d":"25,-172v0,-35,28,-62,57,-63r0,-24r22,0r0,24v36,4,50,21,59,48r-29,12v-7,-20,-15,-29,-31,-32r0,66v25,7,65,19,65,67v0,44,-31,64,-64,67r0,31r-22,0r0,-31v-45,-6,-57,-30,-65,-58r31,-10v5,20,13,34,35,39r0,-72v-16,-5,-58,-17,-58,-64xm83,-147r0,-60v-7,2,-24,7,-24,30v0,22,17,28,24,30xm103,-102r0,66v19,-3,31,-13,31,-33v0,-25,-21,-30,-31,-33"},"%":{"d":"63,-242v28,0,47,22,47,62v0,43,-21,62,-47,62v-27,0,-48,-20,-48,-62v0,-40,20,-62,48,-62xm63,-220v-10,0,-20,5,-20,40v0,34,10,40,20,40v13,0,19,-12,19,-40v0,-30,-7,-40,-19,-40xm183,-122v28,0,47,21,47,62v0,41,-20,62,-47,62v-28,0,-47,-22,-47,-62v0,-42,20,-62,47,-62xm163,-59v0,17,1,37,20,39v11,0,19,-8,19,-40v0,-29,-7,-40,-19,-40v-11,0,-20,8,-20,41xm170,-240r23,0r-117,240r-23,0","w":245},"&":{"d":"181,-134r30,7v-7,37,-17,58,-32,81v7,10,18,20,36,15r0,31v-26,9,-51,-4,-60,-21v-11,10,-29,25,-61,25v-51,0,-73,-37,-73,-70v0,-34,20,-56,52,-71v-26,-33,-32,-107,36,-107v39,0,54,28,54,52v0,37,-32,56,-44,62r41,59v5,-8,14,-23,21,-63xm110,-217v-34,0,-21,51,-6,65v15,-9,27,-23,27,-41v0,-15,-8,-24,-21,-24xm138,-44r-49,-71v-10,6,-30,19,-30,47v0,46,64,51,79,24","w":226},"\u2019":{"d":"23,-195r0,-45r38,0r0,43r-24,45r-18,0r21,-43r-17,0","w":79,"k":{"\u2019":29,"r":18,"s":27,"d":31}},"(":{"d":"68,-240r29,0v-51,100,-62,185,0,300r-29,0v-32,-46,-49,-94,-49,-150v0,-80,37,-133,49,-150","w":116},")":{"d":"49,-240v22,27,49,98,49,150v0,80,-37,132,-49,150r-29,0v54,-89,55,-211,0,-300r29,0","w":116},"*":{"d":"79,-240r26,0r-4,47r40,-26r12,24r-41,19r41,18r-12,24r-40,-26r4,47r-26,0r4,-47r-40,26r-12,-24r41,-18r-41,-19r12,-24r40,26"},"+":{"d":"107,-135r59,0r0,30r-59,0r0,59r-30,0r0,-59r-59,0r0,-30r59,0r0,-59r30,0r0,59"},",":{"d":"25,-45r40,0r0,43r-26,53r-18,0r22,-51r-18,0r0,-45","w":86,"k":{"\u201d":54,"\u2019":54," ":18}},"-":{"d":"14,-105r76,0r0,30r-76,0r0,-30","w":104},".":{"d":"23,-45r40,0r0,45r-40,0r0,-45","w":86,"k":{"\u201d":54,"\u2019":54}},"\/":{"d":"127,-240r27,0r-132,300r-27,0","w":171},"0":{"d":"92,-244v63,0,78,62,78,121v0,62,-11,127,-78,127v-63,0,-78,-61,-78,-121v0,-62,12,-127,78,-127xm92,-215v-32,0,-37,44,-37,95v0,53,6,95,37,95v30,0,37,-38,37,-95v0,-54,-6,-95,-37,-95"},"1":{"d":"158,-30r0,30r-119,0r0,-30r41,0r0,-164v-7,9,-17,20,-43,34r0,-37v21,-12,38,-26,53,-46r29,0r0,213r39,0"},"2":{"d":"12,-35v28,-30,108,-71,108,-136v0,-18,-8,-41,-34,-41v-32,0,-37,37,-38,49r-36,-8v4,-18,14,-73,77,-73v51,0,72,35,72,70v0,35,-16,72,-107,139r108,0r-1,35r-149,0r0,-35"},"3":{"d":"59,-139v35,5,59,-10,59,-37v0,-20,-10,-38,-33,-38v-28,0,-35,25,-38,36r-33,-8v4,-14,17,-58,75,-58v39,0,69,21,69,64v0,36,-23,48,-37,54v17,-1,49,36,44,59v3,96,-151,90,-158,7r34,-8v2,10,9,41,43,41v19,0,39,-11,39,-42v0,-47,-35,-40,-64,-41r0,-29"},"4":{"d":"98,-244r45,0r0,157r30,0r0,30r-30,0r0,57r-39,0r0,-57r-93,0r0,-29xm42,-86r64,0r0,-123"},"5":{"d":"91,-28v53,0,55,-98,1,-100v-26,0,-34,17,-38,26r-30,-6r8,-132r125,0r-4,35r-91,0r-4,66v31,-41,115,-23,111,58v-4,86,-82,108,-134,65v-16,-13,-17,-29,-20,-41r35,-9v4,14,10,38,41,38"},"6":{"d":"19,-114v0,-43,19,-130,83,-130v54,0,65,44,69,58r-33,10v-3,-13,-10,-37,-37,-37v-38,0,-44,50,-45,94v25,-60,117,-42,117,43v0,50,-30,80,-74,80v-53,0,-69,-48,-72,-58v-6,-22,-8,-42,-8,-60xm99,-124v-57,0,-49,97,0,98v34,0,35,-36,35,-50v0,-7,0,-48,-35,-48"},"7":{"d":"20,-205r3,-35r139,0r0,28v-14,18,-36,48,-53,111v-13,48,-13,83,-13,101r-42,0v0,-111,53,-180,72,-205r-106,0"},"8":{"d":"94,-244v31,0,71,26,71,61v0,34,-26,47,-38,53v12,6,45,23,45,64v0,33,-24,70,-82,70v-32,0,-78,-19,-78,-65v0,-39,30,-53,45,-61v-13,-8,-37,-23,-37,-57v0,-28,18,-65,74,-65xm97,-142v35,-7,51,-73,-3,-75v-20,0,-36,13,-36,33v0,24,21,35,39,42xm85,-107v-14,6,-37,17,-37,44v0,27,20,39,43,39v22,0,43,-12,43,-36v0,-27,-25,-37,-49,-47"},"9":{"d":"16,-48r34,-10v3,13,9,32,34,32v38,0,42,-53,43,-91v-6,12,-18,32,-49,32v-39,0,-66,-34,-66,-79v0,-42,24,-80,75,-80v63,0,77,58,77,115v0,72,-19,133,-83,133v-48,0,-59,-33,-65,-52xm87,-213v-19,0,-37,14,-37,48v0,27,12,47,36,47v29,0,37,-29,37,-48v0,-21,-9,-47,-36,-47"},":":{"d":"23,-45r40,0r0,45r-40,0r0,-45xm23,-177r40,0r0,45r-40,0r0,-45","w":86},";":{"d":"25,-45r40,0r0,43r-26,53r-18,0r22,-51r-18,0r0,-45xm25,-177r40,0r0,45r-40,0r0,-45","w":86},"<":{"d":"170,-212r0,36r-117,56r117,56r0,36r-156,-76r0,-32"},"=":{"d":"166,-130r-148,0r0,-29r148,0r0,29xm166,-81r-148,0r0,-29r148,0r0,29"},">":{"d":"14,-28r0,-36r117,-56r-117,-56r0,-36r156,77r0,31"},"?":{"d":"63,-64v-11,-67,52,-57,52,-116v0,-23,-13,-33,-31,-33v-32,0,-35,35,-36,50r-34,-7v1,-11,3,-32,17,-50v36,-48,132,-19,124,41v5,59,-68,62,-59,115r-33,0xm60,-43r39,0r0,43r-39,0r0,-43","w":177},"@":{"d":"140,-183r21,0r-13,99v0,10,4,12,9,12v16,0,31,-24,31,-63v0,-64,-35,-90,-74,-90v-54,0,-85,50,-85,107v0,57,30,103,89,103v32,0,53,-12,64,-19r8,19v-12,7,-37,21,-73,21v-68,0,-114,-47,-114,-123v0,-71,40,-129,111,-129v64,0,98,46,98,108v0,55,-27,89,-58,89v-20,0,-23,-10,-26,-20v-20,37,-70,22,-70,-37v0,-41,19,-79,51,-79v19,0,25,15,28,22xm110,-159v-18,0,-25,29,-25,52v0,21,7,32,17,32v24,0,25,-50,25,-53v0,-10,-2,-31,-17,-31","w":214},"A":{"d":"68,-240r45,0r64,240r-41,0r-15,-60r-70,0r-14,60r-38,0xm59,-91r54,0r-27,-111","w":177},"B":{"d":"179,-67v2,42,-38,67,-83,67r-73,0r0,-240v65,0,147,-13,148,61v0,39,-25,49,-36,53v24,6,42,24,44,59xm62,-210r0,70v34,-1,64,8,68,-36v-6,-46,-34,-31,-68,-34xm62,-110r0,78v40,3,81,-3,76,-39v-7,-51,-39,-36,-76,-39","w":196},"C":{"d":"144,-81r36,5v-3,19,-11,80,-78,80v-78,0,-87,-83,-87,-123v0,-38,8,-125,88,-125v67,0,75,61,78,82r-37,5v-3,-20,-8,-55,-41,-55v-41,0,-46,56,-46,94v0,43,8,90,46,90v24,0,35,-18,41,-53","w":190},"D":{"d":"159,-211v58,66,29,225,-79,211r-57,0r0,-240v59,2,100,-12,136,29xm63,-32v66,13,82,-51,82,-88v0,-52,-19,-95,-82,-88r0,176","w":202,"k":{"W":7,"Y":7,"A":7,"V":7,",":14,".":14}},"E":{"d":"23,-240r137,0r0,32r-97,0r0,69r76,0r0,31r-76,0r0,76r99,0r0,32r-139,0r0,-240","w":165},"F":{"d":"23,-240r133,0r0,32r-93,0r0,72r75,0r0,31r-75,0r0,105r-40,0r0,-240","w":153,"k":{"A":14,",":45,".":45,"e":7,"a":14,"i":-9,"o":7,"r":7}},"G":{"d":"105,-123r80,0r0,125r-22,0r-5,-31v-6,11,-19,33,-57,33v-68,0,-86,-70,-86,-121v0,-44,10,-127,90,-127v55,0,72,36,79,73r-36,9v-5,-22,-12,-50,-43,-50v-37,0,-48,39,-48,92v0,41,7,92,49,92v41,0,42,-47,42,-63r-43,0r0,-32","w":202},"H":{"d":"23,-240r40,0r0,100r71,0r0,-100r39,0r0,240r-39,0r0,-107r-71,0r0,107r-40,0r0,-240","w":196},"I":{"d":"23,-240r40,0r0,240r-40,0r0,-240","w":86},"J":{"d":"49,-240r39,0r0,149v0,48,0,95,-63,95v-11,0,-18,-1,-31,-4r0,-33v39,9,55,-1,55,-58r0,-149","w":110},"K":{"d":"23,-240r40,0r0,114r72,-114r42,0r-62,88r73,152r-43,0r-54,-119r-28,40r0,79r-40,0r0,-240","k":{"O":9,"e":7,"o":7}},"L":{"d":"23,-240r40,0r0,207r85,0r0,33r-125,0r0,-240","w":147,"k":{"T":11,"W":9,"Y":16,"\u201d":27,"\u2019":27,"V":16,"y":9}},"M":{"d":"22,-240r59,0r48,173r49,-173r56,0r0,240r-37,0r0,-205r-57,205r-29,0r-56,-205r0,205r-33,0r0,-240","w":257},"N":{"d":"22,-240r46,0r80,173r0,-173r33,0r0,240r-37,0r-89,-192r0,192r-33,0r0,-240","w":202},"O":{"d":"102,-244v72,0,86,68,86,124v0,49,-11,124,-86,124v-72,0,-87,-68,-87,-124v0,-55,15,-124,87,-124xm146,-120v0,-33,0,-92,-44,-92v-44,0,-45,61,-45,92v0,29,4,92,45,92v43,0,44,-63,44,-92","w":202,"k":{"W":7,"Y":7,"A":5,"V":7,",":7,".":7,"J":11,"X":9}},"P":{"d":"82,-240v77,-12,125,84,61,134v-25,19,-50,11,-80,12r0,94r-40,0r0,-240r59,0xm129,-167v3,-30,-25,-52,-66,-43r0,85v34,-1,61,9,66,-42","w":177,"k":{"A":18,",":63,".":63,"e":9,"a":9,"o":9}},"Q":{"d":"174,51v-38,14,-79,-8,-72,-47v-69,0,-87,-62,-87,-124v0,-57,16,-124,87,-124v97,0,93,106,79,181v-8,43,-34,54,-49,61v-6,23,23,31,42,23r0,30xm101,-212v-43,-5,-43,68,-44,92v0,67,15,92,44,92v17,0,44,-7,44,-92v0,-28,0,-96,-44,-92","w":202},"R":{"d":"23,-240v0,0,149,-11,149,68v0,44,-27,58,-37,63r46,109r-43,0r-38,-100r-37,0r0,100r-40,0r0,-240xm133,-172v-7,-51,-34,-35,-70,-38r0,79v40,4,75,-5,70,-41","w":190,"k":{"O":4}},"S":{"d":"166,-186r-34,11v-8,-22,-17,-37,-42,-37v-26,0,-33,20,-33,31v0,22,20,29,48,40v28,10,67,25,67,73v0,35,-25,72,-81,72v-67,0,-79,-51,-83,-67r36,-10v3,11,10,45,49,45v33,0,38,-24,38,-35v0,-42,-76,-42,-91,-65v-40,-36,-25,-116,52,-116v57,0,69,41,74,58"},"T":{"d":"-6,-240r146,0r0,34r-53,0r0,206r-40,0r0,-206r-53,0r0,-34","w":135,"k":{"u":20,"A":9,",":27,".":18,"w":20,"e":22,"a":22,"i":-9,"o":22,"r":20,"y":18,"-":14}},"U":{"d":"175,-94v1,58,-10,98,-77,98v-76,0,-77,-53,-77,-95r0,-149r39,0r0,149v0,32,0,63,40,63v39,0,39,-29,39,-64r0,-148r36,0r0,146","w":196},"V":{"d":"-1,-240r41,0r46,191r46,-191r35,0r-63,241r-44,-1","w":165,"k":{"G":7,"O":7,"u":13,"A":7,",":27,".":27,"e":22,"a":11,"i":-9,"o":22}},"W":{"d":"1,-240r40,0r33,180r37,-180r35,0r37,180r34,-180r34,0r-51,241r-36,0r-38,-177r-37,177r-36,0","w":251,"k":{"O":7,"u":11,"A":5,",":27,".":27,"e":14,"a":13,"o":14}},"X":{"d":"3,-240r44,0r34,77r39,-77r37,0r-56,109r63,131r-44,0r-41,-92r-46,92r-38,0r64,-124","w":159},"Y":{"d":"-11,-240r43,0r44,100r45,-100r38,0r-67,138r0,102r-39,0r0,-102","w":147,"k":{"O":7,"u":13,"A":7,",":18,".":18,"e":18,"a":18,"i":-7,"o":18}},"Z":{"d":"7,-240r144,0r0,28r-107,179r109,0r0,33r-153,0r0,-31r105,-177r-98,0r0,-32","w":153},"[":{"d":"28,-240r63,0r0,20r-28,0r0,260r28,0r0,20r-63,0r0,-300","w":116},"\\":{"d":"45,-240r132,300r-27,0r-133,-300r28,0","w":171},"]":{"d":"88,60r-62,0r0,-20r28,0r0,-260r-28,0r0,-20r62,0r0,300","w":116},"^":{"d":"179,-114r-35,0r-52,-100r-52,100r-35,0r68,-129r38,0"},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"\u2018":{"d":"57,-156r-38,0r0,-43r24,-45r18,0r-21,44r17,0r0,44","w":79,"k":{"\u2018":29,"A":25}},"a":{"d":"13,-47v0,-52,39,-64,96,-62v0,-20,3,-46,-26,-46v-23,0,-28,20,-29,28r-35,-5v8,-46,50,-50,67,-50v91,-3,49,104,63,182r-34,0v-2,-9,-3,-13,-3,-30v-7,13,-18,34,-50,34v-29,0,-49,-18,-49,-51xm75,-23v17,0,37,-24,34,-64v-41,-4,-62,18,-58,38v0,21,12,26,24,26","w":165},"b":{"d":"21,-240r37,0r0,83v6,-9,17,-24,41,-24v49,0,60,54,60,90v0,19,-3,68,-35,87v-31,18,-70,1,-74,-20v-3,8,-5,11,-8,24r-21,0r0,-240xm90,-154v-29,0,-32,40,-32,79v0,12,0,51,31,51v23,0,31,-22,31,-67v0,-36,-5,-63,-30,-63","w":171,"k":{"v":5}},"c":{"d":"144,-118r-35,4v-3,-21,-6,-39,-27,-39v-25,0,-31,25,-31,68v0,16,0,59,31,59v23,0,26,-23,27,-38r35,3v-3,22,-8,65,-64,65v-58,0,-67,-55,-67,-92v0,-41,11,-94,69,-94v53,0,59,45,62,64","w":147},"d":{"d":"114,-240r36,0r0,240r-33,0r0,-27v-5,10,-14,30,-45,30v-50,0,-59,-57,-59,-91v0,-61,25,-93,60,-93v28,0,37,16,41,24r0,-83xm82,-24v33,0,32,-40,32,-80v0,-23,-6,-50,-32,-50v-27,0,-31,35,-31,63v0,30,3,67,31,67","w":171},"e":{"d":"150,-83r-100,0v0,20,1,60,35,60v24,0,28,-21,31,-34r33,5v-3,13,-13,56,-65,56v-53,0,-71,-44,-71,-90v0,-100,92,-121,125,-65v13,23,12,46,12,68xm113,-108v4,-21,-17,-53,-30,-47v-22,0,-30,23,-32,47r62,0","w":159,"k":{"v":-4,"w":-4}},"f":{"d":"63,-177r32,0r0,29r-32,0r0,148r-36,0r0,-148r-23,0r0,-29r23,0v1,-33,1,-70,51,-70v10,0,16,1,22,2r0,29v-27,-5,-41,4,-37,39","w":92,"k":{"\u201d":-9,"\u2019":-9,",":11,".":11,"e":7}},"g":{"d":"160,-206r-1,27v-15,-3,-23,0,-27,18v36,45,-5,111,-71,92v-5,3,-13,6,-13,16v0,13,9,14,45,16v35,2,69,3,69,47v0,47,-48,56,-81,56v-25,0,-71,-5,-71,-45v0,-25,18,-31,26,-34v-7,-4,-20,-12,-20,-30v0,-22,18,-31,26,-35v-9,-6,-23,-16,-23,-45v0,-48,58,-72,97,-51v0,-18,14,-39,44,-32xm84,-158v-23,0,-27,20,-27,35v0,5,0,34,25,34v25,0,26,-30,26,-34v0,-8,-1,-35,-24,-35xm107,-5v-24,0,-64,-14,-64,20v0,19,16,25,43,25v15,0,42,-3,42,-25v0,-16,-13,-19,-21,-20","w":159,"k":{",":-9,".":-5,"y":-7}},"h":{"d":"22,-240r36,0r0,86v5,-24,64,-47,81,-7v17,41,3,108,6,161r-37,0r0,-112v0,-20,0,-40,-22,-40v-25,0,-28,29,-28,50r0,102r-36,0r0,-240","w":165},"i":{"d":"22,-177r36,0r0,177r-36,0r0,-177xm59,-202r-38,0r0,-38r38,0r0,38","w":79},"j":{"d":"22,-177r37,0r0,171v0,36,0,70,-46,70v-9,0,-16,-2,-22,-3r0,-30v26,4,31,0,31,-38r0,-170xm60,-202r-38,0r0,-38r38,0r0,38","w":79},"k":{"d":"22,-240r36,0r0,142r58,-79r36,0r-46,61r51,116r-40,0r-35,-89r-24,32r0,57r-36,0r0,-240","w":153,"k":{"o":7,"y":13}},"l":{"d":"22,-240r36,0r0,240r-36,0r0,-240","w":79},"m":{"d":"108,-108v2,-37,-4,-40,-21,-44v-28,0,-29,31,-29,49r0,103r-36,0r0,-177r33,0r0,27v6,-13,15,-32,44,-32v33,0,38,22,41,33v2,-24,61,-53,84,-14v15,43,4,109,7,163r-37,0r0,-109v0,-24,1,-43,-21,-43v-21,0,-28,18,-28,48r0,104r-37,0r0,-108","w":251},"n":{"d":"99,-182v27,0,46,28,46,68r0,114r-37,0r0,-112v0,-23,0,-40,-21,-40v-29,0,-29,35,-29,53r0,99r-36,0r0,-177r33,0r0,27v4,-10,13,-32,44,-32","w":165,"k":{"v":7}},"o":{"d":"83,-182v55,0,70,48,70,91v0,41,-11,95,-71,95v-55,0,-69,-47,-69,-93v0,-43,12,-93,70,-93xm83,-154v-22,0,-31,22,-31,65v0,46,10,66,31,66v21,0,31,-18,31,-66v0,-46,-10,-65,-31,-65","w":165,"k":{"v":5}},"p":{"d":"159,-91v0,27,-17,94,-61,94v-24,0,-33,-12,-40,-21r0,78r-37,0r0,-237r34,0r0,29v5,-11,16,-33,44,-33v36,0,60,34,60,90xm89,-154v-30,0,-35,43,-31,80v-4,25,9,50,31,50v23,0,31,-25,31,-66v0,-33,-6,-64,-31,-64","w":171,"k":{"y":5}},"q":{"d":"13,-86v0,-45,16,-95,63,-95v28,0,38,20,43,30v4,-9,7,-13,12,-28r19,0r0,239r-37,0r0,-83v-36,52,-100,18,-100,-63xm113,-81v0,-37,-12,-79,-31,-73v-24,0,-31,28,-31,65v0,20,3,65,31,65v11,0,31,-11,31,-57","w":171},"r":{"d":"22,-177r32,0r0,39v4,-12,17,-47,51,-43r0,38v-70,-3,-41,82,-47,143r-36,0r0,-177","w":98,"k":{"u":-7,"v":-18,",":11,".":11,"r":-5,"y":-18,"k":-7,"l":-7,"m":-5,"n":-5,"p":-5,"s":-5,"t":-18,":":-14,";":-14}},"s":{"d":"47,-133v0,40,88,21,88,81v0,27,-20,56,-65,56v-55,0,-61,-38,-64,-51r31,-6v1,8,6,30,34,30v24,0,28,-17,28,-23v0,-17,-16,-22,-31,-27v-24,-8,-56,-18,-56,-54v0,-28,22,-55,59,-55v45,0,55,34,58,46r-29,8v-3,-8,-9,-27,-30,-27v-15,0,-23,10,-23,22","w":141},"t":{"d":"93,-177r0,29r-34,0r0,79v-4,39,9,45,39,41r0,29v-7,1,-15,3,-27,3v-76,-1,-40,-89,-48,-152r-23,0r0,-29r24,0r2,-47r33,-3r0,50r34,0","w":98},"u":{"d":"21,-177r36,0r0,112v0,25,0,40,21,40v30,0,29,-34,29,-67r0,-85r37,0r0,177r-34,0r0,-27v-6,13,-15,31,-45,31v-45,0,-44,-38,-44,-68r0,-113","w":165},"v":{"d":"-2,-177r36,0r33,127r33,-127r31,0r-50,177r-32,0","w":128,"k":{",":11,".":11}},"w":{"d":"0,-177r36,0r26,122r25,-122r33,0r25,122r28,-122r30,0r-44,177r-31,0r-27,-123r-26,123r-31,0","w":202,"k":{",":11,".":11}},"x":{"d":"0,-177r40,0r26,51r27,-51r34,0r-45,80r53,97r-41,0r-32,-63r-34,63r-34,0r51,-92","w":128,"k":{"e":11}},"y":{"d":"0,-177r37,0r31,121r31,-121r33,0r-57,188v-8,34,-27,61,-71,51r0,-30v30,3,36,0,46,-38","w":128,"k":{",":20,".":20}},"z":{"d":"12,-177r108,0r0,22r-75,127r75,0r0,28r-115,0r0,-28r72,-122r-65,0r0,-27","w":122},"{":{"d":"90,-240r0,21v-52,-8,7,119,-44,127v32,2,22,58,22,96v0,28,1,35,22,35r0,21v-37,2,-55,-6,-55,-56v0,-29,11,-90,-20,-84r0,-25v30,5,20,-50,20,-79v0,-48,15,-58,55,-56","w":116},"|":{"d":"108,-270r0,360r-36,0r0,-360r36,0","w":180},"}":{"d":"27,60r0,-21v50,6,-8,-122,43,-131v-31,-3,-22,-55,-22,-92v0,-28,-1,-35,-21,-35r0,-21v36,-2,55,5,55,56v0,28,-10,85,19,79r0,25v-30,-5,-19,55,-19,84v0,48,-15,58,-55,56","w":116},"~":{"d":"124,-94v-14,0,-43,-20,-70,-20v-16,0,-23,14,-28,24r-21,-14v10,-22,21,-46,52,-46v3,-6,63,24,72,21v16,0,23,-11,29,-21r21,12v-8,16,-21,44,-55,44"},"'":{"d":"58,-240r-5,99r-26,0r-6,-99r37,0","w":79},"\u201c":{"d":"112,-156r-39,0r0,-43r25,-45r17,0r-20,44r17,0r0,44xm58,-156r-39,0r0,-43r25,-45r17,0r-20,44r17,0r0,44","w":135,"k":{"A":25}},"\u00ab":{"d":"125,-35r-20,0r-34,-57r34,-58r20,0r-19,58xm70,-36r-20,0r-34,-56r34,-56r20,0r-19,56","w":141},"\u2013":{"d":"12,-104r124,0r0,28r-124,0r0,-28","w":147},"\u201d":{"d":"23,-240r38,0r0,43r-24,45r-18,0r21,-43r-17,0r0,-45xm77,-240r38,0r0,43r-24,45r-18,0r21,-43r-17,0r0,-45","w":135},"\u00bb":{"d":"16,-150r20,0r34,58r-34,57r-20,0r19,-57xm71,-150r20,0r34,58r-34,57r-20,0r19,-57","w":141},"`":{"d":"117,-212r-13,13r-62,-39r19,-24","w":180},"\u2014":{"d":"11,-104r205,0r0,28r-205,0r0,-28","w":226},"\u00a0":{"w":90}}});
;

