/*
 * 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>';
  }
};
;
// ColorBox v1.3.17.1 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+
// Copyright (c) 2011 Jack Moore - jack@colorpowered.com
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
(function(a,b,c){function bc(b){if(!T){O=b,_(a.extend(J,a.data(O,e))),x=a(O),P=0,J.rel!=="nofollow"&&(x=a("."+X).filter(function(){var b=a.data(this,e).rel||this.rel;return b===J.rel}),P=x.index(O),P===-1&&(x=x.add(O),P=x.length-1));if(!R){R=S=!0,q.show();if(J.returnFocus)try{O.blur(),a(O).one(k,function(){try{this.focus()}catch(a){}})}catch(c){}p.css({opacity:+J.opacity,cursor:J.overlayClose?"pointer":"auto"}).show(),J.w=Z(J.initialWidth,"x"),J.h=Z(J.initialHeight,"y"),W.position(0),n&&y.bind("resize."+o+" scroll."+o,function(){p.css({width:y.width(),height:y.height(),top:y.scrollTop(),left:y.scrollLeft()})}).trigger("resize."+o),ba(g,J.onOpen),I.add(C).hide(),H.html(J.close).show()}W.load(!0)}}function bb(){var a,b=f+"Slideshow_",c="click."+f,d,e,g;J.slideshow&&x[1]?(d=function(){E.text(J.slideshowStop).unbind(c).bind(i,function(){if(P<x.length-1||J.loop)a=setTimeout(W.next,J.slideshowSpeed)}).bind(h,function(){clearTimeout(a)}).one(c+" "+j,e),q.removeClass(b+"off").addClass(b+"on"),a=setTimeout(W.next,J.slideshowSpeed)},e=function(){clearTimeout(a),E.text(J.slideshowStart).unbind([i,h,j,c].join(" ")).one(c,d),q.removeClass(b+"on").addClass(b+"off")},J.slideshowAuto?d():e()):q.removeClass(b+"off "+b+"on")}function ba(b,c){c&&c.call(O),a.event.trigger(b)}function _(b){for(var c in b)a.isFunction(b[c])&&c.substring(0,2)!=="on"&&(b[c]=b[c].call(O));b.rel=b.rel||O.rel||"nofollow",b.href=b.href||a(O).attr("href"),b.title=b.title||O.title,typeof b.href=="string"&&(b.href=a.trim(b.href))}function $(a){return J.photo||/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i.test(a)}function Z(a,b){b=b==="x"?y.width():y.height();return typeof a=="string"?Math.round(/%/.test(a)?b/100*parseInt(a,10):parseInt(a,10)):a}function Y(c,d){var e=b.createElement("div");c&&(e.id=f+c),e.style.cssText=d||"";return a(e)}var d={transition:"elastic",speed:300,width:!1,initialWidth:"600",innerWidth:!1,maxWidth:!1,height:!1,initialHeight:"450",innerHeight:!1,maxHeight:!1,scalePhotos:!0,scrolling:!0,inline:!1,html:!1,iframe:!1,fastIframe:!0,photo:!1,href:!1,title:!1,rel:!1,opacity:.9,preloading:!0,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:!1,returnFocus:!0,loop:!0,slideshow:!1,slideshowAuto:!0,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",onOpen:!1,onLoad:!1,onComplete:!1,onCleanup:!1,onClosed:!1,overlayClose:!0,escKey:!0,arrowKey:!0,top:!1,bottom:!1,left:!1,right:!1,fixed:!1,data:!1},e="colorbox",f="cbox",g=f+"_open",h=f+"_load",i=f+"_complete",j=f+"_cleanup",k=f+"_closed",l=f+"_purge",m=a.browser.msie&&!a.support.opacity,n=m&&a.browser.version<7,o=f+"_IE6",p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J={},K,L,M,N,O,P,Q,R,S,T,U,V,W,X=f+"Element";W=a.fn[e]=a[e]=function(b,c){var f=this,g;if(!f[0]&&f.selector)return f;b=b||{},c&&(b.onComplete=c);if(!f[0]||f.selector===undefined)f=a("<a/>"),b.open=!0;f.each(function(){a.data(this,e,a.extend({},a.data(this,e)||d,b)),a(this).addClass(X)}),g=b.open,a.isFunction(g)&&(g=g.call(f)),g&&bc(f[0]);return f},W.init=function(){y=a(c),q=Y().attr({id:e,"class":m?f+(n?"IE6":"IE"):""}),p=Y("Overlay",n?"position:absolute":"").hide(),r=Y("Wrapper"),s=Y("Content").append(z=Y("LoadedContent","width:0; height:0; overflow:hidden"),B=Y("LoadingOverlay").add(Y("LoadingGraphic")),C=Y("Title"),D=Y("Current"),F=Y("Next"),G=Y("Previous"),E=Y("Slideshow").bind(g,bb),H=Y("Close")),r.append(Y().append(Y("TopLeft"),t=Y("TopCenter"),Y("TopRight")),Y(!1,"clear:left").append(u=Y("MiddleLeft"),s,v=Y("MiddleRight")),Y(!1,"clear:left").append(Y("BottomLeft"),w=Y("BottomCenter"),Y("BottomRight"))).children().children().css({"float":"left"}),A=Y(!1,"position:absolute; width:9999px; visibility:hidden; display:none"),a("body").prepend(p,q.append(r,A)),s.children().hover(function(){a(this).addClass("hover")},function(){a(this).removeClass("hover")}).addClass("hover"),K=t.height()+w.height()+s.outerHeight(!0)-s.height(),L=u.width()+v.width()+s.outerWidth(!0)-s.width(),M=z.outerHeight(!0),N=z.outerWidth(!0),q.css({"padding-bottom":K,"padding-right":L}).hide(),F.click(function(){W.next()}),G.click(function(){W.prev()}),H.click(function(){W.close()}),I=F.add(G).add(D).add(E),s.children().removeClass("hover"),p.click(function(){J.overlayClose&&W.close()}),a(b).bind("keydown."+f,function(a){var b=a.keyCode;R&&J.escKey&&b===27&&(a.preventDefault(),W.close()),R&&J.arrowKey&&x[1]&&(b===37?(a.preventDefault(),G.click()):b===39&&(a.preventDefault(),F.click()))})},W.remove=function(){q.add(p).remove(),a("."+X).removeData(e).removeClass(X)},W.position=function(a,c){function g(a){t[0].style.width=w[0].style.width=s[0].style.width=a.style.width,B[0].style.height=B[1].style.height=s[0].style.height=u[0].style.height=v[0].style.height=a.style.height}var d,e=0,f=0;q.hide(),J.fixed&&!n?q.css({position:"fixed"}):(e=y.scrollTop(),f=y.scrollLeft(),q.css({position:"absolute"})),J.right!==!1?f+=Math.max(y.width()-J.w-N-L-Z(J.right,"x"),0):J.left!==!1?f+=Z(J.left,"x"):f+=Math.max(y.width()-J.w-N-L,0)/2,J.bottom!==!1?e+=Math.max(b.documentElement.clientHeight-J.h-M-K-Z(J.bottom,"y"),0):J.top!==!1?e+=Z(J.top,"y"):e+=Math.max(b.documentElement.clientHeight-J.h-M-K,0)/2,q.show(),d=q.width()===J.w+N&&q.height()===J.h+M?0:a,r[0].style.width=r[0].style.height="9999px",q.dequeue().animate({width:J.w+N,height:J.h+M,top:e,left:f},{duration:d,complete:function(){g(this),S=!1,r[0].style.width=J.w+N+L+"px",r[0].style.height=J.h+M+K+"px",c&&c()},step:function(){g(this)}})},W.resize=function(a){if(R){a=a||{},a.width&&(J.w=Z(a.width,"x")-N-L),a.innerWidth&&(J.w=Z(a.innerWidth,"x")),z.css({width:J.w}),a.height&&(J.h=Z(a.height,"y")-M-K),a.innerHeight&&(J.h=Z(a.innerHeight,"y"));if(!a.innerHeight&&!a.height){var b=z.wrapInner("<div style='overflow:auto'></div>").children();J.h=b.height(),b.replaceWith(b.children())}z.css({height:J.h}),W.position(J.transition==="none"?0:J.speed)}},W.prep=function(b){function h(b){W.position(b,function(){function o(){m&&q[0].style.removeAttribute("filter")}var b,d,g,h,j=x.length,k,n;!R||(n=function(){clearTimeout(V),B.hide(),ba(i,J.onComplete)},m&&Q&&z.fadeIn(100),C.html(J.title).add(z).show(),j>1?(typeof J.current=="string"&&D.html(J.current.replace(/\{current\}/,P+1).replace(/\{total\}/,j)).show(),F[J.loop||P<j-1?"show":"hide"]().html(J.next),G[J.loop||P?"show":"hide"]().html(J.previous),b=P?x[P-1]:x[j-1],g=P<j-1?x[P+1]:x[0],J.slideshow&&E.show(),J.preloading&&(h=a.data(g,e).href||g.href,d=a.data(b,e).href||b.href,h=a.isFunction(h)?h.call(g):h,d=a.isFunction(d)?d.call(b):d,$(h)&&(a("<img/>")[0].src=h),$(d)&&(a("<img/>")[0].src=d))):I.hide(),J.iframe?(k=a("<iframe/>").addClass(f+"Iframe")[0],J.fastIframe?n():a(k).one("load",n),k.name=f+ +(new Date),k.src=J.href,J.scrolling||(k.scrolling="no"),m&&(k.frameBorder=0,k.allowTransparency="true"),a(k).appendTo(z).one(l,function(){k.src="//about:blank"})):n(),J.transition==="fade"?q.fadeTo(c,1,o):o(),y.bind("resize."+f,function(){W.position(0)}))})}function g(){J.h=J.h||z.height(),J.h=J.mh&&J.mh<J.h?J.mh:J.h;return J.h}function d(){J.w=J.w||z.width(),J.w=J.mw&&J.mw<J.w?J.mw:J.w;return J.w}if(!!R){var c=J.transition==="none"?0:J.speed;y.unbind("resize."+f),z.remove(),z=Y("LoadedContent").html(b),z.hide().appendTo(A.show()).css({width:d(),overflow:J.scrolling?"auto":"hidden"}).css({height:g()}).prependTo(s),A.hide(),a(Q).css({"float":"none"}),n&&a("select").not(q.find("select")).filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one(j,function(){this.style.visibility="inherit"}),J.transition==="fade"?q.fadeTo(c,0,function(){h(0)}):h(c)}},W.load=function(b){var c,d,g=W.prep;S=!0,Q=!1,O=x[P],b||_(a.extend(J,a.data(O,e))),ba(l),ba(h,J.onLoad),J.h=J.height?Z(J.height,"y")-M-K:J.innerHeight&&Z(J.innerHeight,"y"),J.w=J.width?Z(J.width,"x")-N-L:J.innerWidth&&Z(J.innerWidth,"x"),J.mw=J.w,J.mh=J.h,J.maxWidth&&(J.mw=Z(J.maxWidth,"x")-N-L,J.mw=J.w&&J.w<J.mw?J.w:J.mw),J.maxHeight&&(J.mh=Z(J.maxHeight,"y")-M-K,J.mh=J.h&&J.h<J.mh?J.h:J.mh),c=J.href,V=setTimeout(function(){B.show()},100),J.inline?(Y().hide().insertBefore(a(c)[0]).one(l,function(){a(this).replaceWith(z.children())}),g(a(c))):J.iframe?g(" "):J.html?g(J.html):$(c)?(a(Q=new Image).addClass(f+"Photo").error(function(){J.title=!1,g(Y("Error").text("This image could not be loaded"))}).load(function(){var a;Q.onload=null,J.scalePhotos&&(d=function(){Q.height-=Q.height*a,Q.width-=Q.width*a},J.mw&&Q.width>J.mw&&(a=(Q.width-J.mw)/Q.width,d()),J.mh&&Q.height>J.mh&&(a=(Q.height-J.mh)/Q.height,d())),J.h&&(Q.style.marginTop=Math.max(J.h-Q.height,0)/2+"px"),x[1]&&(P<x.length-1||J.loop)&&(Q.style.cursor="pointer",Q.onclick=function(){W.next()}),m&&(Q.style.msInterpolationMode="bicubic"),setTimeout(function(){g(Q)},1)}),setTimeout(function(){Q.src=c},1)):c&&A.load(c,J.data,function(b,c,d){g(c==="error"?Y("Error").text("Request unsuccessful: "+d.statusText):a(this).contents())})},W.next=function(){!S&&x[1]&&(P<x.length-1||J.loop)&&(P=P<x.length-1?P+1:0,W.load())},W.prev=function(){!S&&x[1]&&(P||J.loop)&&(P=P?P-1:x.length-1,W.load())},W.close=function(){R&&!T&&(T=!0,R=!1,ba(j,J.onCleanup),y.unbind("."+f+" ."+o),p.fadeTo(200,0),q.stop().fadeTo(300,0,function(){q.add(p).css({opacity:1,cursor:"auto"}).hide(),ba(l),z.remove(),setTimeout(function(){T=!1,ba(k,J.onClosed)},1)}))},W.element=function(){return a(O)},W.settings=d,U=function(a){a.button!==0&&typeof a.button!="undefined"||a.ctrlKey||a.shiftKey||a.altKey||(a.preventDefault(),bc(this))},a.fn.delegate?a(b).delegate("."+X,"click",U):a("."+X).live("click",U),a(W.init)})(jQuery,document,this);
(function ($) {

Drupal.behaviors.initColorbox = function (context) {
  if (!$.isFunction($.colorbox)) {
    return;
  }
  $('a, area, input', context)
    .filter('.colorbox:not(.initColorbox-processed)')
    .addClass('initColorbox-processed')
    .colorbox(Drupal.settings.colorbox);
};

{
  $(document).bind('cbox_complete', function () {
    Drupal.attachBehaviors('#cboxLoadedContent');
  });
}

})(jQuery);
;
(function ($) {

Drupal.behaviors.initColorboxDefaultStyle = function (context) {
  $(document).bind('cbox_complete', function () {
    // Only run if there is a title.
    if ($('#cboxTitle:empty', context).length == false) {
      setTimeout(function () { $('#cboxTitle', context).slideUp() }, 1500);
      $('#cboxLoadedContent img', context).bind('mouseover', function () {
        $('#cboxTitle', context).slideDown();
      });
      $('#cboxOverlay', context).bind('mouseover', function () {
        $('#cboxTitle', context).slideUp();
      });
    }
    else {
      $('#cboxTitle', context).hide();
    }
  });
};

})(jQuery);
;

$(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: panels.js,v 1.2.4.1 2009/10/05 22:40:35 merlinofchaos Exp $

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

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

  $(Drupal.Panels.autoAttach);
})(jQuery);
;
/**
 * @file
 * Modifies the file selection and download access expiration interfaces.
 */

var uc_file_list = {};

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

/**
 * Adds files to delete to the list.
 */
function _uc_file_delete_list_populate() {
  $('.affected-file-name').empty().append(uc_file_list[$('#edit-recurse-directories').attr('checked')]);
}

$(document).ready(
  function() {
    _uc_file_expiration_disable_check('#edit-uc-file-download-limit-duration-granularity', '#edit-uc-file-download-limit-duration-qty');
    _uc_file_expiration_disable_check('#edit-download-limit-duration-granularity', '#edit-download-limit-duration-qty');
    _uc_file_expiration_disable_check('#edit-download-limit-duration-granularity', '#edit-download-limit-duration-qty');
    _uc_file_delete_list_populate();

    toggle_limit_settings('#edit-download-override', '#edit-download-limit-number-wrapper');
    toggle_limit_settings('#edit-location-override', '#edit-download-limit-addresses-wrapper');
    toggle_limit_settings('#edit-time-override', '#edit-download-limit-duration-qty-wrapper');
    toggle_limit_settings('#edit-time-override', '#edit-download-limit-duration-granularity-wrapper');
  }
);

// When you change the global file expiration granularity select.
Drupal.behaviors.ucGlobalFileDownloadGranularity = function(context) {
  $('#edit-uc-file-download-limit-duration-granularity:not(.ucGlobalFileDownloadGranularity-processed)', context).addClass('ucGlobalFileDownloadGranularity-processed').change(
    function() {
      _uc_file_expiration_disable_check('#edit-uc-file-download-limit-duration-granularity', '#edit-uc-file-download-limit-duration-qty');
    }
  );
}

// When you change the per-file expiration granularity select.
Drupal.behaviors.ucFileDownloadGranularity = function(context) {
  $('#edit-download-limit-duration-granularity:not(.ucFileDownloadGranularity-processed)', context).addClass('ucFileDownloadGranularity-processed').change(
    function() {
      _uc_file_expiration_disable_check('#edit-download-limit-duration-granularity', '#edit-download-limit-duration-qty');
    }
  );
}



// When you click 'Check all' on the file action form.
Drupal.behaviors.ucFileSelectAll = function(context) {
  $('#uc_file_select_all:not(.ucFileSelectAll-processed)', context).addClass('ucFileSelectAll-processed').click(
    function() {
      $('.form-checkbox').attr('checked', true);
    }
  );
}

// When you click 'Uncheck all' on the file action form.
Drupal.behaviors.ucFileSelectNone = function(context) {
  $('#uc_file_select_none:not(.ucFileSelectNone-processed)', context).addClass('ucFileSelectNone-processed').click(
    function() {
      $('.form-checkbox').removeAttr('checked');
    }
  );
}

// When you (un)check the recursion option on the file deletion form.
Drupal.behaviors.ucFileDeleteList = function(context) {
  $('#edit-recurse-directories:not(.ucFileDeleteList-processed)', context).addClass('ucFileDeleteList-processed').change(
    function() {
      _uc_file_delete_list_populate()
    }
  );
}

/**
 * Give visual feedback to the user about download numbers.
 *
 * TODO: would be to use AJAX to get the new download key and
 * insert it into the link if the user hasn't exceeded download limits.
 * I dunno if that's technically feasible though.
 */
function uc_file_update_download(id, accessed, limit) {
  if (accessed < limit || limit == -1) {

    // Handle the max download number as well.
    var downloads = '';
    downloads += accessed + 1;
    downloads += '/';
    downloads += limit == -1 ? 'Unlimited' : limit;
    $('td#download-' + id).html(downloads);
    $('td#download-' + id).attr("onclick", "");
  }
}

Drupal.behaviors.ucFileLimitDownloads = function(context) {
  $('#edit-download-override:not(.ucFileLimitDownloads-processed)', context).addClass('ucFileLimitDownloads-processed').click(
    function() {
      toggle_limit_settings('#edit-download-override', '#edit-download-limit-number-wrapper');
    }
  );
}

Drupal.behaviors.ucFileLimitLocations = function(context) {
  $('#edit-location-override:not(.ucFileLimitLocations-processed)', context).addClass('ucFileLimitLocations-processed').click(
    function() {
      toggle_limit_settings('#edit-location-override', '#edit-download-limit-addresses-wrapper');
    }
  );
}

Drupal.behaviors.ucFileLimitTime = function(context) {
  $('#edit-time-override:not(.ucFileLimitTime-processed)', context).addClass('ucFileLimitTime-processed').click(
    function() {
      toggle_limit_settings('#edit-time-override', '#edit-download-limit-duration-qty-wrapper');
      toggle_limit_settings('#edit-time-override', '#edit-download-limit-duration-granularity-wrapper');
    }
  );
}

/**
 * Toggle the limit settings.
 */
function toggle_limit_settings(cause, effect) {
  if ($(cause).attr('checked')) {
    $(effect).show();
  }
  else {
    $(effect).hide();
  }
}
;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

;
/*
 * 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}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright © Esselte Corporation 1997.  Portions Copyright Microsoft Corporation
 * 1997.  All rights reserved.
 * 
 * Trademark:
 * Pristina is a Trademark of Esselte Corporation.
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"228,-218v24,5,36,-41,55,-6v2,2,2,4,2,6v-40,32,-107,153,-129,204v6,12,-8,17,-18,19v-6,0,-22,-17,-9,-24v0,-63,-19,-155,-44,-191v-13,-18,-25,0,-46,7v-3,0,-5,-1,-5,-3v13,-15,48,-56,69,-26v24,35,41,98,50,188v7,-16,74,-132,82,-147v-7,0,-15,-22,-7,-27","w":238},{"d":"143,-240v41,10,81,16,80,61v0,52,-42,80,-78,106v-2,-1,-12,-6,-9,-12v4,-22,8,-39,13,-52v-13,19,-40,56,-61,65v-5,-3,-16,-9,-15,-17v5,-30,25,-70,60,-89v2,0,12,6,18,14v-1,6,-15,-3,-18,2v-16,13,-50,55,-43,79v28,-17,54,-59,68,-88v5,3,14,8,12,14v-6,18,-12,40,-17,67v43,-14,71,-107,20,-131v-6,-3,-13,-4,-21,-4v-45,0,-105,100,-107,161v-12,39,45,37,74,29v25,-7,49,-31,63,-50v2,-1,2,0,2,2v-11,46,-70,86,-122,60v-21,-1,-36,-16,-35,-41v2,-81,51,-162,116,-176","w":213},{"d":"-28,18v1,-8,29,-17,29,0v5,-26,17,-69,36,-126v-32,-17,-12,-28,15,-37v31,-68,33,-99,69,-114v6,-3,35,17,50,17v14,22,-5,32,-17,67v-4,10,-17,8,-13,-3v6,-18,9,-35,11,-51v2,-15,-16,-13,-26,-6v-22,13,-49,68,-59,102v27,-5,74,-28,85,6v0,13,-29,31,-41,35v29,36,47,47,33,74v-12,8,-22,23,-41,23v-22,1,-50,-14,-58,-35v0,-2,4,-21,11,-20v5,1,15,9,13,21v12,11,34,18,43,18v11,0,16,-4,16,-11v0,-27,-18,-42,-40,-61v-13,0,-10,0,-13,-11v0,-10,13,-18,24,-8v20,-14,31,-17,27,-28v-19,-4,-39,5,-67,15v-19,43,-39,142,-52,189v0,0,-13,8,-21,8v-11,-1,-1,-23,-3,-31v0,-20,-5,-26,-11,-33","w":160},{"d":"132,-143v7,32,-35,15,-70,18v-4,9,-7,18,-10,27v17,1,53,4,62,-4v5,4,0,22,-13,20v-18,-2,-37,-2,-54,-2v-9,30,-11,68,21,71v36,-8,77,-32,91,-64v0,-3,2,-4,4,-4v16,21,10,36,-10,49v-34,23,-59,37,-79,37v-41,-11,-69,-39,-52,-89v-14,-2,-14,9,-20,1v2,-10,6,-25,25,-16v3,-9,5,-19,9,-27v-18,-4,-30,9,-34,1v0,-16,17,-19,40,-15v22,-39,74,-141,120,-84v3,-13,9,-5,19,1v15,18,-7,57,-22,68v-8,-1,-19,-7,-18,-11v12,-11,19,-31,19,-45v-37,-33,-73,40,-91,72v15,0,55,4,63,-4","w":181},{"d":"122,-138v7,-6,27,5,20,11v-16,29,-27,63,-35,102v5,-8,5,-15,14,-25v4,0,3,4,2,6v-16,22,-5,61,-34,41v-9,-25,10,-60,14,-80v-23,37,-43,64,-57,81v-10,12,-36,3,-34,-15v4,-34,9,-61,18,-83v-2,2,-7,8,-12,9v7,-18,15,-30,23,-44v5,-9,17,-2,23,5v-14,19,-40,89,-30,120v30,-18,69,-99,88,-128xm120,-218v17,4,5,46,-5,52v-15,-9,3,-35,5,-52xm82,-218v18,4,6,44,-3,52v-15,-6,0,-35,3,-52","w":142},{"d":"101,-10v23,-2,36,-26,67,-47v4,0,4,4,2,7v-26,36,-46,54,-62,54v-9,-3,-33,-11,-33,-29v0,-8,3,-18,8,-33v-14,23,-66,95,-87,42v9,-39,43,-106,77,-55v-3,8,-20,-6,-24,0v-15,9,-32,37,-36,59v4,9,12,1,20,-5v24,-22,57,-60,59,-101v0,-8,-6,-12,-13,-9v-23,4,-43,4,-46,26v-6,-1,-11,-13,-13,-22v12,-19,47,-27,73,-22v2,1,4,5,5,11v7,2,11,6,12,10v9,-12,18,-34,39,-19v-1,-6,1,-5,11,-6v17,0,3,20,7,39v0,34,-27,45,-60,34v-5,9,-22,57,-6,66xm110,-83v31,10,49,-21,36,-52v-16,8,-27,29,-36,52","w":175},{"d":"20,-2v-5,30,-1,63,18,75v-21,3,-36,-13,-36,-41v0,-31,9,-75,28,-132v-2,2,-7,8,-12,9v7,-18,15,-30,23,-44v5,-9,17,-2,23,5v-14,19,-40,89,-30,120v30,-18,69,-99,88,-128v6,-5,27,4,20,11v-16,29,-27,63,-35,102v5,-8,5,-15,14,-25v4,0,3,4,2,6v-16,22,-5,61,-34,41v-9,-25,10,-60,14,-80v-23,37,-43,63,-57,81v-7,9,-18,7,-26,0","w":142},{"d":"43,-5v39,-10,54,-67,58,-114v0,-7,-4,-8,-9,-6v-18,-1,-30,1,-35,7v-15,17,-31,50,-31,87v0,18,6,26,17,26xm99,-137v-5,-46,-21,-130,-60,-110v-6,0,-7,-6,-2,-8v13,-5,31,-24,42,-8v22,36,33,63,39,123v18,10,16,9,2,23v-5,51,-20,112,-64,122v-25,-1,-55,-10,-51,-38v6,-37,24,-138,77,-103v8,-3,13,-3,17,-1","w":125},{"d":"86,46v-46,-33,-18,-60,5,-101v-23,2,-54,-4,-66,8v-2,-9,4,-27,16,-25v12,1,29,2,53,2v-1,-7,-1,-8,-4,-22v-19,3,-48,-4,-56,9v-4,-7,3,-28,15,-26v12,2,25,2,37,2v-13,-42,-30,-73,-47,-97v-15,-21,-25,0,-43,10v-2,0,-3,-1,-3,-4v21,-31,43,-60,59,-39v19,24,51,106,61,143v42,-66,65,-104,69,-115v-12,7,-21,28,-28,-1v8,-16,46,-54,61,-18v-26,51,-63,93,-76,121v17,1,35,-1,42,-8v2,0,3,1,3,3v-8,25,-15,22,-54,20v-3,4,-7,12,-12,22v23,-1,45,1,55,-9v8,31,-34,25,-63,24v-22,48,-32,60,-19,96v0,3,-2,5,-5,5","w":203},{"d":"80,-204v1,-21,-4,-47,-13,-54v7,-9,36,-16,35,7r-3,214v0,40,3,49,13,60v0,9,-15,7,-24,6v-7,0,-10,-6,-10,-17","w":143},{"d":"115,-137v3,1,20,8,15,20v-13,29,-18,55,-22,75v6,-4,13,-22,20,-14v-13,18,-19,42,-28,60v-4,-1,-22,-7,-17,-18v5,-30,12,-55,19,-75v-19,27,-55,82,-87,94v-8,-3,-23,-13,-18,-25v9,-46,42,-108,83,-127v3,0,17,8,25,20v-4,7,-21,-7,-26,3v-23,17,-62,73,-65,108v4,9,11,3,18,-4v29,-29,69,-79,83,-117xm128,-218v4,14,15,39,27,44v1,2,-16,9,-17,8v-11,-5,-14,-21,-21,-34v-19,5,-34,27,-53,34v-3,-6,-7,-12,3,-14v3,3,40,-25,54,-39v4,-2,7,-1,7,1","w":140},{"d":"18,-103v20,-7,59,-14,70,-28r8,15v-9,12,-31,15,-51,23v8,18,34,33,40,52v-4,3,-16,8,-18,-3v-1,-5,-23,-34,-43,-47v-4,-1,-6,-8,-6,-12xm24,-25v27,4,57,7,72,-2v7,5,0,24,-13,20v-38,-2,-56,-5,-76,2v-2,0,-4,-1,-3,-3v2,-7,3,-20,20,-17","w":106},{"d":"88,-214v-1,-3,22,-26,30,-26v5,4,23,7,19,13v-21,16,-29,41,-49,13xm130,-86v13,8,28,23,14,35v-36,31,-54,57,-92,57v-6,0,-13,-5,-21,-15v-43,-10,-24,-35,2,-74v16,-24,34,-46,52,-65v-21,7,-27,9,-20,-3v33,-5,46,-45,58,-5v-28,27,-85,82,-91,124v-1,12,5,18,17,18v34,-9,61,-28,79,-57v-1,-5,-5,-15,2,-15","w":168},{"d":"31,-120v-9,-9,-1,-12,8,-11v11,9,20,37,48,53v4,1,12,13,3,14v-21,3,-57,13,-66,26v-2,0,-4,-1,-6,-6v-9,-25,29,-21,49,-32v-6,-15,-29,-31,-36,-44xm18,-25v28,2,58,7,73,-2v7,5,-1,24,-14,20v-38,-2,-56,-5,-76,2v-5,-7,0,-25,17,-20","w":106},{"d":"98,-147v5,4,22,3,20,15v-2,18,-1,66,-22,43v-9,-10,8,-30,2,-39v-29,29,-48,73,-62,113v-8,23,-5,23,-24,13v-4,-2,-5,-6,-4,-12v9,-41,19,-74,30,-102v-13,10,-14,24,-23,18v9,-10,21,-54,46,-38v8,13,-6,16,-13,44v-5,20,-11,36,-14,47v19,-39,35,-77,64,-102","w":113},{"d":"229,-239v-18,20,-34,141,-32,186v1,30,4,39,22,31v8,11,-21,21,-34,27v-11,0,-15,-29,-12,-87v-28,2,-55,3,-80,6r-35,43v17,-6,17,10,22,22v-1,8,-9,3,-15,3v-8,-3,-38,13,-47,21v-9,-4,-26,-18,-11,-27v11,-7,48,-38,55,-48v-5,-30,0,-31,28,-33v29,-35,52,-70,70,-104v-24,19,-104,13,-98,60v1,4,-1,6,-4,6v-26,-29,-21,-59,28,-64v36,-3,72,-8,86,-33v3,-1,14,8,15,14v-15,33,-58,95,-78,120v28,0,49,-1,65,-2v2,-26,14,-82,19,-115v2,-14,21,-32,36,-26xm163,-297v24,-21,48,20,53,36v0,3,-1,4,-3,4v-15,-10,-25,-31,-43,-35v-5,0,-7,-2,-7,-5","w":230},{"d":"171,-233v43,10,71,15,71,54v0,78,-50,134,-108,160v-10,8,-49,9,-56,-2v-30,-2,-54,-16,-53,-49v1,-83,53,-157,119,-170v8,-1,27,2,27,7xm46,-73v-2,42,44,48,82,38v47,-13,92,-54,92,-124v0,-43,-23,-61,-65,-66v-44,-6,-105,90,-109,152xm86,-96v4,-30,26,-87,50,-98v5,7,41,-1,41,14v0,19,0,46,-15,42v-20,-5,2,-24,-2,-35v1,-8,-7,-6,-12,-8v-23,13,-43,52,-44,87v0,16,5,24,15,24v10,3,26,-21,44,-37v3,16,-12,40,-32,46v-24,-2,-49,-11,-45,-35","w":235},{"d":"74,-221v9,-18,28,-8,38,3v-31,5,-31,37,-49,77v6,8,34,-6,39,6v-6,11,-14,3,-44,8v-13,46,-30,81,-22,114v2,3,18,-18,34,-25v1,17,-24,36,-37,44v-6,-2,-27,-10,-21,-20v4,-30,12,-67,25,-111v-8,-1,-27,-2,-17,-12v5,-2,19,-5,25,-9v13,-39,23,-63,29,-75","w":84},{"d":"149,-224v16,-18,34,-37,54,-15v27,0,25,13,22,38v-11,74,-62,234,-149,200v-35,-14,-54,-17,-54,-56v-1,-56,43,-149,75,-176v20,-17,31,-5,52,9xm125,-223v-44,18,-97,137,-72,194v40,40,80,9,110,-54v21,-44,36,-89,39,-133v1,-9,-2,-13,-7,-13v-31,12,-51,39,-85,63v-2,0,-3,0,-3,-2v8,-19,22,-34,34,-48v-6,-5,-11,-7,-16,-7xm218,-291v17,6,1,18,-8,27v-18,29,-29,-16,-51,-18v-2,-3,-16,11,-23,20v-15,-9,0,-18,8,-28v21,-26,29,15,51,19v4,3,16,-11,23,-20","w":209},{"d":"272,-234v13,-14,23,-1,40,14v-8,8,-24,-2,-30,18v-25,47,-41,102,-50,164v4,-11,9,-18,17,-24v4,0,4,7,1,10v-8,17,-13,33,-16,50v-1,6,-3,10,-7,10v-6,-1,-33,-14,-23,-27v3,-25,10,-57,21,-96v-26,47,-52,80,-72,107v-22,30,-55,-11,-62,-17v-23,-56,20,-136,39,-182v-39,17,-66,19,-78,45v0,7,9,19,2,23v-22,-17,-39,-55,-4,-63v23,-6,51,-14,86,-25v14,-22,24,-12,40,4v0,2,-6,5,-17,7v-22,34,-46,117,-51,167v-2,26,21,45,38,25v51,-60,82,-129,126,-210xm247,-304v4,14,15,39,27,44v1,2,-16,9,-17,8v-11,-5,-14,-21,-21,-34v-19,5,-34,27,-53,34v-3,-6,-7,-12,3,-14v3,3,40,-25,54,-39v4,-2,7,-1,7,1","w":269},{"d":"101,-128v-28,0,-57,19,-58,46v0,11,7,17,21,16v26,-1,50,-11,73,-29v-14,-24,-13,-33,-36,-33xm251,-94v3,35,-40,46,-60,46v-27,0,-33,-13,-48,-36v-19,25,-94,61,-108,10v-26,-35,20,-71,59,-71v29,0,40,23,53,44v23,-26,44,-38,63,-38v30,-1,38,18,41,45xm153,-89v12,43,90,26,87,-17v-17,-35,-72,0,-87,17","w":273},{"d":"113,-69v18,5,18,-14,28,-7v-4,9,3,24,-13,24v-22,0,-61,-6,-97,-11v-6,-3,-13,14,-16,3v2,-2,2,-26,15,-22v35,10,63,13,83,13","w":159},{"d":"137,-154v-14,23,-72,100,-101,138r101,-7v-6,-38,-2,-79,0,-131xm166,-10v-21,22,-99,-3,-151,8v-8,-6,-15,-12,-2,-13v9,-14,112,-137,109,-147v1,-1,3,-4,8,-8v2,-19,13,-28,31,-32v4,0,5,2,5,5v-12,37,-15,144,0,187","w":204},{"d":"152,-129v-4,7,-28,24,-35,26v-10,3,-34,-22,-46,-22v-8,0,-20,9,-27,17v-4,1,-10,-7,-10,-9v8,-10,31,-37,47,-22v16,15,41,26,57,5v0,-3,2,-4,4,-4v4,-1,10,9,10,9xm142,-90v-4,8,-27,23,-35,26v-5,2,-35,-22,-46,-22v-8,0,-20,8,-27,17v-4,1,-10,-7,-10,-9v3,-8,26,-24,34,-26v16,3,53,39,70,9v0,-2,2,-4,4,-4v3,0,10,8,10,9","w":162},{"d":"179,-233v16,0,20,-1,20,18v0,18,-3,38,-11,61v-2,6,-5,9,-9,9v-1,0,-21,-1,-18,-6v9,-10,15,-46,15,-64v0,-13,-14,-13,-22,-6v-44,42,-61,101,-90,184v-3,8,-7,12,-13,14v34,-1,71,6,108,5v2,1,5,-13,9,-13v18,15,12,39,-6,43v-39,-10,-90,-20,-137,-11v-1,1,-10,17,-15,14v-18,-21,-13,-39,28,-38v20,-70,41,-124,63,-165v19,-35,36,-53,49,-55v4,-1,13,2,29,10","w":191},{"d":"35,-19v19,-13,73,-89,79,-114v4,-18,7,-13,19,-4v4,3,5,7,3,15v-16,75,-31,132,-45,169v-42,110,-97,144,-167,68v0,-4,2,-5,5,-5v56,44,95,31,131,-43v19,-39,39,-101,51,-165v-23,34,-54,87,-88,104v-7,-4,-12,-10,-16,-17v15,-17,29,-82,25,-116v-3,1,-22,24,-24,15v5,-4,20,-42,34,-32v12,-2,15,-5,16,7v1,16,-17,107,-23,118","w":146},{"d":"142,-254v12,4,8,22,8,43v0,14,-10,12,-18,16v-4,-12,-1,-42,-5,-50v0,-5,14,-9,15,-9xm85,-155v-18,14,-34,20,-22,47v15,33,68,98,16,119v-2,34,-39,18,-66,16v-4,0,-7,-3,-8,-7v19,-11,76,7,75,-31v4,-16,-49,-95,-45,-110v0,-18,15,-30,45,-37v3,-1,5,0,5,3xm94,-62v-15,-10,27,-17,19,-34v5,-33,-82,-113,-27,-140v8,-4,27,-16,35,-8v-20,15,-37,22,-26,49v12,29,39,61,39,95v0,24,-17,30,-40,38","w":136},{"d":"287,-38v2,0,17,3,16,9v-3,9,-11,47,-35,30v10,-15,9,-33,19,-39xm167,-38v2,0,17,3,16,9v-3,9,-11,47,-34,30v7,-15,9,-33,18,-39xm46,-38v2,0,18,2,17,9v-3,9,-11,47,-35,30v7,-8,9,-30,18,-39","w":360},{"d":"76,-133v1,-1,17,-9,24,-9v8,-1,22,18,20,31v-5,47,-21,108,-64,116v-25,-1,-54,-10,-51,-38v4,-34,24,-102,52,-113v4,0,10,5,19,13xm43,-5v39,-9,55,-69,58,-116v-6,-22,-34,14,-44,3v-14,18,-30,55,-31,87v0,18,6,26,17,26xm48,-211v24,-21,48,20,53,36v0,3,-1,4,-3,4v-15,-10,-25,-31,-43,-35v-5,0,-7,-2,-7,-5","w":125},{"d":"46,-148v-13,-7,-28,-23,-14,-35v34,-30,55,-49,92,-57v7,0,13,5,21,15v10,2,26,8,26,17v-5,33,-55,97,-80,122v8,-1,21,-13,25,-2v-16,13,-41,18,-51,29v-5,-2,-21,-22,-2,-30v26,-20,77,-80,81,-114v1,-12,-5,-17,-17,-17v-35,9,-59,29,-79,57v0,5,5,14,-2,15xm69,-34v1,-1,18,7,19,14v1,3,-22,26,-30,26v0,0,-14,-4,-21,-10v-1,-2,1,-3,3,-3v7,-5,19,-19,29,-27","w":168},{"d":"44,-4v-7,13,-33,50,-18,57v15,1,22,-6,43,-21v7,-5,7,1,4,5v-11,14,-29,43,-50,23v-37,-17,-4,-66,21,-64"},{"d":"229,-239v-18,20,-34,141,-32,186v1,30,4,39,22,31v8,11,-21,21,-34,27v-11,0,-15,-29,-12,-87v-28,2,-55,3,-80,6r-35,43v17,-6,17,10,22,22v-1,8,-9,3,-15,3v-8,-3,-38,13,-47,21v-9,-4,-26,-18,-11,-27v11,-7,48,-38,55,-48v-5,-30,0,-31,28,-33v29,-35,52,-70,70,-104v-24,19,-104,13,-98,60v1,4,-1,6,-4,6v-26,-29,-21,-59,28,-64v36,-3,72,-8,86,-33v3,-1,14,8,15,14v-15,33,-58,95,-78,120v28,0,49,-1,65,-2v2,-26,14,-82,19,-115v2,-14,21,-32,36,-26xm221,-304v4,14,15,39,27,44v1,2,-16,9,-17,8v-11,-5,-14,-21,-21,-34v-19,5,-34,27,-53,34v-3,-6,-7,-12,3,-14v3,3,40,-25,54,-39v4,-2,7,-1,7,1","w":230},{"d":"242,-213v5,-26,20,-20,27,-3v0,6,-8,19,-22,39v-25,71,-44,153,-75,217v-18,21,-38,-2,-64,-21v17,-13,37,20,51,-10v19,-40,40,-88,57,-147v-22,39,-46,72,-72,99v-7,7,-13,11,-18,11v-21,-14,-45,-17,-42,-52v2,-25,13,-67,36,-124v-34,15,-60,20,-71,45v0,7,10,20,3,24v-22,-17,-41,-53,-6,-63v23,-7,51,-16,85,-28v11,-24,25,-13,40,3v0,3,-6,6,-16,8v-22,28,-46,98,-48,143v-1,26,14,32,27,19v43,-41,77,-96,108,-160xm208,-253v-8,-16,28,-61,51,-40v0,3,-3,5,-8,5v-18,3,-28,25,-43,35","w":240},{"d":"55,-151v17,0,31,14,31,31v0,16,-14,31,-31,31v-16,0,-31,-15,-31,-31v0,-17,15,-31,31,-31","w":95},{"d":"60,-144v1,-6,6,-5,9,1v45,0,69,13,87,3v2,1,4,3,4,5v0,9,-14,25,-29,19v-2,21,-8,45,-18,75v4,-3,15,-25,24,-22v-7,20,-26,37,-36,64v-5,10,-9,6,-19,0v-2,-2,-3,-4,-2,-8v20,-51,31,-88,32,-113v-11,-1,-25,-2,-42,-3v-6,27,-16,51,-15,76v0,-1,4,-2,4,0v-2,1,-11,67,-29,39v-8,-33,12,-63,24,-116v-29,-4,-31,9,-43,22v-1,-23,10,-50,49,-42","w":152},{"d":"43,-5v39,-9,55,-68,58,-114v0,-8,-3,-8,-9,-6v-11,1,-27,13,-35,7v-14,18,-30,55,-31,87v0,18,6,26,17,26xm5,-33v4,-34,24,-102,52,-113v4,0,10,5,19,13v12,-3,15,-7,23,-4v-2,-19,-6,-40,-13,-63v-23,7,-28,4,-35,18v-10,-25,12,-27,30,-30v-8,-19,-20,-49,-42,-35v-6,0,-7,-6,-2,-8v11,-5,21,-13,33,-15v17,10,18,26,30,53v18,-6,21,-9,27,-15v8,17,-1,27,-22,27v6,21,10,43,13,65v18,10,16,9,2,23v-5,51,-20,112,-64,122v-25,-1,-54,-10,-51,-38","w":125},{"d":"32,-114v-9,-7,-1,-24,13,-21v37,-2,71,0,103,4v29,4,11,32,7,54v-10,20,-11,42,-22,56v-3,1,-8,-6,-7,-11r12,-82v-23,-1,-64,-7,-86,2v-4,7,-15,1,-20,-2","w":192},{"d":"103,-206v10,0,18,16,3,25v-16,23,-46,15,-52,-6v3,-13,38,-49,45,-19v1,1,0,1,-2,1v-12,-5,-27,12,-32,25v0,4,2,6,7,6v8,2,36,-15,31,-32"},{"d":"102,-129r-9,37v15,0,39,1,44,-5v7,5,-1,25,-13,22v-13,-1,-25,-2,-35,-2v-2,16,-11,34,-5,48v-3,5,-20,-2,-21,-10r11,-38v-10,-1,-43,-3,-46,4v-7,-6,0,-27,17,-22v10,1,22,2,33,2v2,-8,10,-41,5,-48v0,-2,1,-2,3,-2v2,0,18,9,16,14xm23,1v-8,-43,74,-1,98,-22v7,4,-1,23,-11,20v-31,0,-68,-6,-87,2","w":152},{"d":"115,-137v3,1,20,8,15,20v-13,29,-18,55,-22,75v6,-4,13,-22,20,-14v-13,18,-19,42,-28,60v-4,-1,-22,-7,-17,-18v5,-30,12,-55,19,-75v-19,27,-55,82,-87,94v-8,-3,-23,-13,-18,-25v9,-46,42,-108,83,-127v3,0,17,8,25,20v-4,7,-21,-7,-26,3v-23,17,-62,73,-65,108v4,9,11,3,18,-4v29,-29,69,-79,83,-117xm126,-206v10,0,18,16,3,25v-16,23,-46,15,-52,-6v3,-13,38,-49,45,-19v1,1,0,1,-2,1v-12,-5,-27,12,-32,25v0,4,2,6,7,6v8,2,36,-15,31,-32","w":140},{"d":"110,-145v14,5,35,17,32,37v-6,48,-34,153,-85,95v1,-6,11,-1,16,-1v34,-5,48,-69,48,-104v0,-17,-13,-12,-21,-3v-68,67,-98,144,-102,271v0,6,-3,9,-5,9v-4,0,-23,-13,-18,-24v4,-97,85,-351,125,-413v16,-25,25,-13,48,2v-12,6,-25,1,-35,21v-24,46,-49,107,-72,187v20,-30,38,-60,69,-77","w":148},{"d":"194,-207v24,2,28,-50,47,-24v4,4,5,8,5,12v-16,41,-38,44,-95,92v14,58,18,90,47,108v2,2,21,-13,25,-4v-15,17,-39,29,-47,29v-14,0,-29,-39,-45,-118v-56,48,-87,64,-103,116v3,5,3,19,-6,8v-10,-11,-20,-25,-6,-42v16,-21,53,-53,112,-98v-5,-28,-9,-54,-11,-79v-26,18,-81,30,-57,72v0,3,-2,4,-4,4v-20,-22,-35,-42,-11,-60v13,-11,57,-24,69,-33v-1,-12,33,-37,34,-10v-14,18,-7,49,0,91v31,-24,50,-41,59,-50v-11,-4,-18,-8,-13,-14","w":231},{"d":"67,-195v-13,4,-19,16,-20,35v0,8,3,12,8,12v11,0,18,-12,22,-37v2,-9,-3,-12,-7,-15v9,-4,25,3,23,13v-3,22,-10,45,-35,45v-43,0,-28,-52,-6,-63v1,0,10,3,15,10","w":82},{"d":"152,-14v4,-54,32,-169,59,-205v-42,0,-69,0,-80,2v-28,70,-60,163,-96,219v-5,14,-28,3,-29,-2v3,-15,16,-28,16,-50v6,3,12,13,10,15v17,-25,57,-121,72,-175v-23,-15,-24,-26,8,-27v5,-9,11,-7,17,1v62,3,106,7,143,-4v6,1,11,9,5,17v-6,9,-21,3,-35,5v-31,40,-45,89,-67,181v6,-7,12,-32,21,-24v-10,19,-16,49,-25,66v-2,-1,-20,-3,-19,-19","w":238},{"d":"159,-231v15,-1,21,0,20,18v-2,28,-3,65,-32,50v10,-9,16,-80,-13,-56v-30,25,-42,64,-63,119v12,2,97,-21,80,21v-15,10,-19,-2,-37,-3v-31,0,-49,1,-51,1v-8,18,-12,46,-25,58v31,0,64,0,99,6v15,2,11,-11,19,-14v18,14,11,39,-7,43v-39,-10,-90,-20,-137,-11v-2,6,-8,14,-14,14v-9,1,-10,-23,-11,-23v-2,-10,21,-15,38,-15v2,-9,7,-22,12,-40v-10,-27,-15,-30,12,-34v30,-95,57,-143,81,-144v5,0,14,3,29,10","w":183},{"d":"272,-234v13,-14,23,-1,40,14v-8,8,-24,-2,-30,18v-25,47,-41,102,-50,164v4,-11,9,-18,17,-24v4,0,4,7,1,10v-8,17,-13,33,-16,50v-1,6,-3,10,-7,10v-6,-1,-33,-14,-23,-27v3,-25,10,-57,21,-96v-26,47,-52,80,-72,107v-22,30,-55,-11,-62,-17v-23,-56,20,-136,39,-182v-39,17,-66,19,-78,45v0,7,9,19,2,23v-22,-17,-39,-55,-4,-63v23,-6,51,-14,86,-25v14,-22,24,-12,40,4v0,2,-6,5,-17,7v-22,34,-46,117,-51,167v-2,26,21,45,38,25v51,-60,82,-129,126,-210xm192,-297v24,-21,48,20,53,36v0,3,-1,4,-3,4v-15,-10,-25,-31,-43,-35v-5,0,-7,-2,-7,-5","w":269},{"d":"38,-140v2,0,18,2,17,9v-2,8,-12,49,-35,29v11,-15,9,-32,18,-38","w":60},{"d":"45,-192v22,-14,33,-68,69,-46v-20,16,-38,69,-32,98v0,2,-1,3,-3,3v-4,-2,-24,-5,-22,-14v2,-13,12,-50,20,-64r-28,28v-3,0,-4,-2,-4,-5xm200,-223r-125,179v-11,19,-26,32,-22,54v-4,6,-21,-2,-22,-13v0,-3,1,-7,4,-11r127,-181v16,-24,22,-31,19,-51v4,-6,21,3,22,13v0,4,-1,7,-3,10xm216,-49v8,16,4,31,-18,27v-7,24,3,47,-20,27v5,-22,5,-22,6,-27v-17,1,-39,-3,-51,3v-4,0,-6,-4,-6,-14v0,-4,1,-6,4,-7v17,-16,30,-34,39,-52v-1,-4,-13,-12,-2,-13v9,-6,19,-41,34,-19v-7,26,-38,64,-56,80v2,3,30,3,42,3v8,-16,10,-60,33,-53v-8,10,-13,21,-20,52v9,1,10,-4,15,-7","w":249},{"d":"71,-162v30,-15,53,-57,67,-86v5,5,15,6,16,15v-5,12,-11,29,-18,52v3,-3,7,-8,13,-11v-1,11,-16,27,-15,38v-2,8,-10,5,-16,1v-8,-17,7,-46,10,-58v-13,18,-39,54,-60,63v-6,-5,-20,-8,-20,-18v5,-28,27,-67,47,-83v12,-9,27,-7,36,9v-3,4,-16,-4,-18,2v-16,12,-42,49,-45,71v-1,3,1,5,3,5","w":140},{"d":"84,-171v-8,-16,28,-61,51,-40v0,3,-3,5,-8,5v-18,3,-28,25,-43,35"},{"d":"42,-178v4,-22,25,-48,26,-68v4,-4,17,-12,17,-1v0,27,-15,73,-43,69","w":72},{"d":"134,-167v2,-13,11,-14,20,-9v5,10,3,31,-9,32v-21,31,-122,207,-124,255v-13,-8,-29,-26,-16,-49r122,-207v-30,-4,-85,-14,-96,19v-2,8,-13,8,-11,-1v6,-26,4,-54,42,-49","w":147},{"d":"99,-218v4,14,15,39,27,44v1,2,-16,9,-17,8v-11,-5,-14,-21,-21,-34v-19,5,-34,27,-53,34v-3,-6,-7,-12,3,-14v3,3,40,-25,54,-39v4,-2,7,-1,7,1"},{"d":"272,-234v13,-14,23,-1,40,14v-8,8,-24,-2,-30,18v-25,47,-41,102,-50,164v4,-11,9,-18,17,-24v4,0,4,7,1,10v-8,17,-13,33,-16,50v-1,6,-3,10,-7,10v-6,-1,-33,-14,-23,-27v3,-25,10,-57,21,-96v-26,47,-52,80,-72,107v-22,30,-55,-11,-62,-17v-23,-56,20,-136,39,-182v-39,17,-66,19,-78,45v0,7,9,19,2,23v-22,-17,-39,-55,-4,-63v23,-6,51,-14,86,-25v14,-22,24,-12,40,4v0,2,-6,5,-17,7v-22,34,-46,117,-51,167v-2,26,21,45,38,25v51,-60,82,-129,126,-210xm248,-304v17,4,5,46,-5,52v-15,-9,3,-35,5,-52xm210,-304v18,4,6,44,-3,52v-15,-6,0,-35,3,-52","w":269},{"d":"219,-262r-180,0r0,-17r180,0r0,17","w":180},{"d":"29,-97v-4,-26,38,-11,60,-15v10,-11,2,-23,9,-29v9,4,20,19,7,31v17,4,34,-8,38,-2v-1,22,-19,17,-45,15r-12,25v16,0,43,2,47,-6v7,5,-2,24,-13,21v-14,-1,-27,-2,-40,-2v-9,13,-5,23,-10,31v-11,-3,-22,-18,-7,-31v-10,-1,-37,-2,-39,4v-4,-3,-1,-22,7,-21r39,3v5,-9,9,-17,12,-24v-11,-1,-46,-2,-51,4v-2,0,-2,-2,-2,-4","w":152},{"d":"90,-181v8,-1,17,1,10,14r-3,10v29,-3,11,43,8,54v-3,12,-21,-4,-20,-6v7,-6,12,-27,7,-37r-45,123v21,4,39,-30,53,-40v2,0,2,1,2,3v-10,22,-20,59,-58,45v-5,7,1,19,-3,22v-12,-1,-10,-12,-4,-24v-16,-6,-25,-17,-23,-34v3,-33,25,-100,52,-111v3,-2,13,8,22,7v3,-8,7,-20,2,-26xm86,-148v-36,7,-52,60,-52,98v0,11,3,18,7,23","w":118},{"d":"113,-219v-31,8,-84,68,-49,101v-15,10,-39,-22,-35,-28v7,-37,40,-78,73,-89v22,6,60,3,58,42v-3,55,-16,96,-39,151v-33,81,-59,111,-109,56v6,-14,28,13,35,7v39,-4,90,-168,90,-222v0,-16,-7,-18,-24,-18","w":156},{"d":"146,-123v8,27,-23,25,-53,24v-11,37,-20,69,-25,95v-1,6,-3,9,-7,9v-29,-2,-24,-40,-12,-60v2,0,5,3,12,8v4,-14,5,-14,16,-51v-12,-3,-13,10,-18,5v1,-16,8,-26,23,-22v11,-37,20,-61,24,-72v-29,22,-55,32,-65,61v-3,7,16,25,4,27v-26,-22,-39,-40,-13,-61v20,-18,48,-37,86,-59v12,-24,9,-29,27,-13v19,-8,35,-20,55,-2v12,-4,47,21,43,45v-8,54,-42,124,-69,162v-32,44,-50,36,-89,5v7,-13,25,9,39,5v35,-1,96,-136,96,-180v0,-43,-66,-20,-92,-1v-10,23,-20,51,-30,83v23,1,43,-2,48,-8","w":230},{"d":"76,-133v1,-1,17,-9,24,-9v8,-1,22,18,20,31v-5,47,-21,108,-64,116v-25,-1,-54,-10,-51,-38v4,-34,24,-102,52,-113v4,0,10,5,19,13xm43,-5v39,-9,55,-69,58,-116v-6,-22,-34,14,-44,3v-14,18,-30,55,-31,87v0,18,6,26,17,26xm110,-218v17,4,5,46,-5,52v-15,-9,3,-35,5,-52xm72,-218v18,4,6,44,-3,52v-15,-6,0,-35,3,-52","w":125},{"d":"83,-184v22,3,47,2,42,22v9,40,-45,55,-77,60v-10,-1,-20,-10,-24,-18v24,3,98,-20,89,-46v-7,-10,-54,11,-45,-23v15,-14,41,-20,44,-36v-11,-12,-40,10,-42,18v-23,-21,16,-39,35,-41v9,5,17,15,18,28v-6,20,-20,20,-40,36","w":124},{"d":"36,50v55,-9,66,-50,86,-113r48,-150v-4,-6,-9,-10,-16,-13v-8,27,-20,71,-41,132v-33,98,-60,146,-77,144xm174,-226v3,-13,5,-28,19,-11v4,3,4,8,1,16v-26,77,-57,196,-92,252v-26,41,-98,42,-119,2v15,-3,23,20,42,16v10,1,23,-15,38,-49v8,-18,22,-56,42,-114v-4,0,-30,18,-35,16v-14,-7,-26,-14,-24,-29v8,-62,68,-133,128,-99","w":182},{"d":"180,-138v21,19,-16,14,-21,29v-2,0,-17,-7,-12,-13v2,-2,8,-6,16,-12v13,-22,24,-44,32,-68v-13,-26,-20,-21,-57,-19v-11,18,-22,53,-33,103v-1,5,-3,7,-5,7v-4,0,-17,-2,-15,-11v2,-11,0,-36,15,-32v6,-23,13,-45,22,-66v-47,4,-70,1,-55,37v0,2,-1,4,-3,4v-10,-8,-14,-25,-14,-35v1,-23,56,-22,79,-23v10,-15,15,6,34,-1v22,0,30,-5,42,15r4,-20v14,4,9,16,3,33v12,23,21,44,27,62v23,-42,50,-69,71,-104v8,-7,22,-1,27,10v-8,-1,-12,1,-17,10v-12,23,-20,53,-24,93v3,-3,9,-21,11,-9v-9,14,-4,53,-27,31v-3,-2,-5,-6,-4,-10v8,-48,14,-76,19,-87v-20,24,-38,51,-54,82v6,13,-2,18,-10,24v-2,-8,-12,-13,-5,-21v-4,-17,-12,-37,-23,-60v-6,15,-14,32,-23,51","w":316},{"d":"191,-213v12,-11,38,-10,36,7v-1,11,-18,30,-38,19v-17,9,-42,37,-76,83v25,1,44,1,57,2v5,0,7,3,7,6v0,3,-3,5,-9,5v-23,2,-45,3,-69,6v-17,24,-30,45,-38,61v21,-1,58,6,98,11v7,1,8,-12,13,-11v20,9,11,51,-14,41v-37,-15,-74,-20,-109,-20v-8,16,-36,7,-38,-6v3,-10,13,-18,29,-15v5,-9,13,-20,23,-35v0,-13,-5,-29,-1,-39v3,-3,14,-5,32,-6v31,-44,56,-74,76,-90v-14,-2,-87,-42,-102,-6v-6,14,-15,31,-22,54v0,7,-11,11,-11,1v14,-47,10,-91,54,-98v15,-2,90,31,102,30","w":196},{"d":"81,-40v-5,20,-24,45,-26,68v-4,5,-9,6,-15,5v-4,-24,13,-78,41,-73xm42,-40v-6,20,-24,49,-27,68v-4,4,-15,9,-17,1v5,-25,15,-74,44,-69","w":111},{"d":"116,-131v-39,22,-69,89,-90,130v-3,0,-18,-7,-15,-20v21,-103,48,-212,97,-267v14,-16,33,10,42,19v-3,8,-16,-4,-20,-2v-7,0,-15,8,-24,22v-31,50,-54,115,-69,197v23,-41,43,-73,78,-94v11,5,30,10,23,30v-2,21,-8,45,-18,75v4,-3,14,-26,24,-22v-7,20,-26,37,-36,64v-5,11,-10,5,-20,0v-2,-2,-3,-4,-1,-8v20,-58,37,-90,29,-124","w":150},{"d":"161,-235v-8,24,-5,101,10,119v-1,4,-5,12,-8,12v-21,17,-69,68,-86,92v3,8,-19,27,-31,18v8,-10,-2,-104,-14,-119v54,-51,84,-97,94,-105v-1,-7,13,-18,30,-21v3,0,5,2,5,4xm144,-116v-4,-9,-7,-41,-8,-92v-16,22,-42,55,-80,97v5,11,11,75,11,93v21,-34,46,-66,77,-98","w":173},{"d":"18,-103v20,-7,59,-14,70,-28r8,15v-9,12,-31,15,-51,23v8,18,34,33,40,52v-4,3,-16,8,-18,-3v-1,-5,-23,-34,-43,-47v-4,-1,-6,-8,-6,-12","w":106},{"d":"54,-84v32,5,61,11,74,31v-6,14,5,35,-9,47v-37,32,-124,116,-163,44v5,-13,26,11,33,6v48,-10,109,-41,123,-85v-7,-25,-49,-28,-75,-22v-11,-2,-11,-27,2,-33v34,-15,50,-21,63,-51v-14,-22,-67,17,-65,26v-1,3,-3,5,-5,5v-34,-34,30,-52,58,-60v10,0,11,8,14,13v43,36,-20,57,-50,79","w":137},{"d":"62,-128v-6,-11,11,-19,20,-22v29,22,-32,39,-43,62v12,27,21,45,26,68v1,7,-21,23,-23,15v7,-30,-8,-48,-28,-83v3,-9,42,-31,48,-40","w":95},{"d":"75,-24v15,-22,28,16,57,12v31,-4,62,0,68,-23v-2,-29,-58,-58,-77,-69v-27,-3,-19,-7,-2,-21v8,-6,16,1,23,4v33,-2,58,-49,58,-84v0,-30,-56,-4,-72,0v-16,53,-49,164,-77,198v0,1,-22,9,-24,3v8,-23,11,-39,13,-55v0,0,6,-3,15,-6v3,-1,5,1,6,5v16,-31,39,-99,47,-136v-40,22,-75,26,-66,74v0,2,0,3,-2,3v-16,-14,-33,-31,-18,-47v16,-17,65,-48,91,-57v3,-12,-3,-17,4,-20v5,1,14,13,12,14v44,-11,63,-22,80,10v9,0,12,5,12,14v0,43,-24,83,-66,92v39,28,83,44,50,90v8,21,-21,28,-78,28v-25,0,-76,3,-54,-29","w":232},{"d":"229,-223v-7,27,-22,79,-50,46v9,-3,34,-40,16,-52v-11,-2,-31,16,-46,8v15,-11,51,-39,64,-14v10,4,14,4,16,12xm124,-180v-6,18,51,112,51,127v0,21,-10,38,-32,51v-6,10,-15,14,-25,14v-41,-1,-98,-47,-106,-82v-1,-7,19,-29,24,-14v-1,36,58,73,92,74v14,0,22,-9,22,-29v4,-19,-56,-113,-50,-134v1,-25,14,-38,36,-48v3,0,5,1,5,4v-6,12,-19,22,-17,37xm243,-303v8,-6,10,-3,11,5v-9,5,-42,23,-60,44v-4,1,-7,1,-7,-1v-4,-15,-14,-40,-27,-45v0,-2,16,-8,17,-8v10,7,14,22,21,35v19,-9,23,-14,45,-30","w":196},{"d":"122,-138v7,-6,27,5,20,11v-16,29,-27,63,-35,102v5,-8,5,-15,14,-25v4,0,3,4,2,6v-16,22,-5,61,-34,41v-9,-25,10,-60,14,-80v-23,37,-43,64,-57,81v-10,12,-36,3,-34,-15v4,-34,9,-61,18,-83v-2,2,-7,8,-12,9v7,-18,15,-30,23,-44v5,-9,17,-2,23,5v-14,19,-40,89,-30,120v30,-18,69,-99,88,-128xm117,-218v4,14,15,39,27,44v1,2,-16,9,-17,8v-11,-5,-14,-21,-21,-34v-19,5,-34,27,-53,34v-3,-6,-7,-12,3,-14v3,3,40,-25,54,-39v4,-2,7,-1,7,1","w":142},{"d":"149,-224v16,-18,34,-37,54,-15v27,0,25,13,22,38v-11,74,-62,234,-149,200v-35,-14,-54,-17,-54,-56v-1,-56,43,-149,75,-176v20,-17,31,-5,52,9xm125,-223v-44,18,-97,137,-72,194v40,40,80,9,110,-54v21,-44,36,-89,39,-133v1,-9,-2,-13,-7,-13v-31,12,-51,39,-85,63v-2,0,-3,0,-3,-2v8,-19,22,-34,34,-48v-6,-5,-11,-7,-16,-7xm136,-297v24,-21,48,20,53,36v0,3,-1,4,-3,4v-15,-10,-25,-31,-43,-35v-5,0,-7,-2,-7,-5","w":209},{"d":"31,-107v18,-17,84,8,109,-8v7,5,0,24,-13,20v-33,-2,-74,-7,-96,2v-4,-3,-1,-5,0,-14xm31,-76v24,1,82,11,102,-2v7,5,-2,24,-13,21v-33,-1,-75,-8,-96,2v-4,-3,-1,-22,7,-21","w":152},{"d":"31,19v8,0,32,-5,27,12v17,22,-13,32,-37,37v-4,0,-9,-6,-10,-16v0,-6,5,-1,9,-1v10,1,29,-8,33,-17v-8,-10,-48,12,-35,-17v4,-3,8,-23,21,-17v-2,5,-5,11,-8,19"},{"d":"65,-91v0,-15,17,-17,28,-13v-10,1,-17,109,-4,109v6,5,3,14,-8,12v-12,-2,-23,0,-22,-18v1,-41,6,-71,6,-90xm62,-242v9,-9,35,-11,35,9v0,27,-3,57,-6,89v-1,16,-15,16,-28,14v8,-8,7,-19,10,-64v2,-31,-2,-39,-11,-48","w":143},{"d":"89,-240v4,-9,22,-7,26,1v-20,18,-35,62,-33,96v2,4,2,6,-2,6v-11,-3,-23,-5,-21,-20v5,-23,12,-43,19,-58v-8,8,-16,19,-27,28v-5,0,-7,-6,-3,-8v14,-11,26,-26,35,-43v2,-3,4,-3,6,-2","w":90},{"d":"143,-223r-125,179v-11,19,-26,32,-22,54v-4,7,-21,-3,-23,-13v39,-68,90,-127,132,-192v16,-24,22,-31,19,-51v4,-6,21,3,22,13v0,4,-1,7,-3,10","w":75},{"d":"37,-178v7,0,30,10,52,3v22,-48,24,-71,50,-81v5,2,23,13,12,17v-19,-4,-29,42,-41,63v17,-3,48,-5,47,16v-12,10,-28,-7,-53,-2v-22,58,-39,116,-51,174v4,-4,6,-6,7,-6v4,6,-17,38,-24,20v5,-56,22,-110,48,-187v-16,0,-53,6,-47,-17","w":137},{"d":"54,-175v7,-15,29,-57,54,-36v0,3,-2,5,-7,5v-18,3,-28,25,-43,35v-2,0,-4,-1,-4,-4xm94,-175v7,-15,29,-57,54,-36v0,3,-2,5,-7,5v-18,3,-28,25,-43,35v-2,0,-4,-1,-4,-4"},{"d":"229,-239v-18,20,-34,141,-32,186v1,30,4,39,22,31v8,11,-21,21,-34,27v-11,0,-15,-29,-12,-87v-28,2,-55,3,-80,6r-35,43v17,-6,17,10,22,22v-1,8,-9,3,-15,3v-8,-3,-38,13,-47,21v-9,-4,-26,-18,-11,-27v11,-7,48,-38,55,-48v-5,-30,0,-31,28,-33v29,-35,52,-70,70,-104v-24,19,-104,13,-98,60v1,4,-1,6,-4,6v-26,-29,-21,-59,28,-64v36,-3,72,-8,86,-33v3,-1,14,8,15,14v-15,33,-58,95,-78,120v28,0,49,-1,65,-2v2,-26,14,-82,19,-115v2,-14,21,-32,36,-26","w":230},{"d":"15,-38v2,0,19,2,17,9v-2,8,-11,48,-35,30v10,-16,10,-32,18,-39","w":72},{"d":"59,-113v-68,-23,3,-107,33,-121v27,0,73,1,62,54v-14,65,-58,253,-136,166v2,-16,26,6,34,2v37,-2,81,-142,81,-191v0,-14,-9,-18,-24,-17v-30,9,-81,71,-45,103v0,2,-1,4,-5,4xm117,-257v-8,-16,28,-61,51,-40v0,3,-3,5,-8,5v-18,3,-28,25,-43,35","w":149},{"d":"115,-166v47,37,-35,73,-49,98v6,12,10,72,34,48v5,0,5,5,2,7v-15,17,-29,28,-39,7v-6,-13,-9,-29,-14,-47v-44,47,-67,80,-68,103v-3,8,9,20,2,22v-11,-9,-17,-15,-17,-32v8,-34,51,-77,79,-105v-12,-37,-9,-66,-36,-53v-2,-13,26,-21,32,-25v13,10,8,23,22,61v27,-28,44,-41,52,-69v1,-5,-5,-13,0,-15","w":118},{"d":"101,-142v41,-72,53,-103,94,-121v7,-3,37,21,49,22v17,22,-18,85,-38,53v11,-9,15,-24,18,-44v3,-13,-15,-15,-25,-9v-21,13,-46,46,-73,99v27,0,26,0,37,-8v7,24,-18,27,-45,24r-12,23v25,0,30,1,39,-8v2,0,3,1,3,3v-2,26,-20,21,-49,21v-30,60,-39,101,-57,144v-9,0,-23,9,-28,2v2,-21,8,-58,-7,-62v0,-3,4,-5,14,-7v12,-2,17,-2,18,10v7,-20,19,-49,36,-88v-18,-1,-39,0,-44,9v-1,-11,3,-26,14,-25v47,7,37,-2,49,-23v-17,0,-41,-1,-45,9v-2,-16,6,-33,29,-24r23,0","w":199},{"d":"100,-135v8,-8,14,-8,18,0v-1,8,-6,30,-22,20v-10,9,-20,21,-30,35v9,0,38,-4,26,5v-11,3,-24,7,-40,12v-14,18,-23,30,-27,39v6,0,49,6,57,5v9,2,15,-8,21,-12v4,9,-11,38,-27,37v-14,0,-49,-15,-66,-12v-6,18,-21,10,-21,-4v0,-10,10,-15,20,-15v12,-18,26,-22,19,-45v-3,-9,8,-8,23,-9r31,-38v-10,-3,-21,-4,-32,-4v-22,0,-23,15,-35,24v-2,0,-2,-3,-2,-6v10,-20,7,-40,32,-41v11,0,29,3,55,9","w":115},{"d":"81,-178v7,-20,22,-48,27,-68v4,-4,16,-12,16,-1v0,29,-13,72,-43,69xm42,-178v4,-22,25,-48,26,-68v4,-4,17,-12,17,-1v0,27,-15,73,-43,69","w":111},{"d":"130,-215v8,-6,10,-3,11,5v-9,5,-42,23,-60,44v-4,1,-7,1,-7,-1v-4,-15,-14,-40,-27,-45v0,-2,16,-8,17,-8v10,7,14,22,21,35v19,-9,23,-14,45,-30"},{"d":"59,-113v-68,-23,3,-107,33,-121v27,0,73,1,62,54v-14,65,-58,253,-136,166v2,-16,26,6,34,2v37,-2,81,-142,81,-191v0,-14,-9,-18,-24,-17v-30,9,-81,71,-45,103v0,2,-1,4,-5,4xm94,-297v24,-21,48,20,53,36v0,3,-1,4,-3,4v-15,-10,-25,-31,-43,-35v-5,0,-7,-2,-7,-5","w":149},{"d":"135,-117v-11,0,-29,0,-54,-1r-16,45v20,2,37,2,53,1v3,-6,9,-21,17,-45xm140,-131v6,-16,14,-34,7,-51v5,-6,30,-6,24,12r-14,38v16,2,21,-15,30,-7v-4,7,-1,26,-17,22r-19,0r-16,45v24,1,29,-12,40,-8v-4,10,2,24,-16,22v-13,2,-32,-4,-32,10v-6,20,-10,30,-6,46v-4,9,-25,0,-24,-9r16,-46v-1,0,-18,-1,-53,-2v-5,17,-17,42,-10,57v-7,9,-28,0,-22,-15r16,-43v-19,-3,-28,11,-34,3v5,-16,11,-23,39,-18r16,-44v-24,-5,-32,5,-44,4v6,-8,2,-25,21,-20v7,-2,31,8,31,-6v5,-16,8,-28,3,-41v5,-6,30,-5,24,12r-14,38v19,2,35,3,54,1","w":189},{"d":"100,-157v-39,19,-78,29,-60,74v0,3,-2,5,-4,5v-4,0,-11,-11,-21,-31v-9,-43,64,-58,94,-77v6,-18,9,-41,13,-59v4,-1,21,11,18,15r-13,38v38,-13,53,-17,69,11v12,9,17,11,19,25v-6,40,-39,83,-78,93v0,0,-50,-16,-22,-16v27,0,47,-26,56,-33v12,-14,22,-29,22,-47v0,-35,-47,-14,-73,-6v-16,53,-30,97,-43,130v1,1,13,-10,18,-9v5,1,24,25,8,26v-15,1,-29,19,-42,23v-5,1,-28,-16,-13,-21v20,-46,37,-94,52,-141","w":203},{"d":"79,-166v11,-21,9,-53,18,-74v1,0,6,4,13,13v11,13,-10,69,-20,74v-6,-4,-10,-8,-11,-13xm55,-240v15,9,23,34,8,62v-8,31,-17,30,-26,12v11,-21,11,-51,18,-74","w":99},{"d":"131,-126v-15,-13,-47,-18,-71,-17v0,4,-15,14,-16,2v0,-16,5,-24,22,-23v25,-23,42,-29,47,-59v-10,-13,-39,4,-41,19v-6,-1,-11,-11,-13,-16v19,-17,49,-41,61,-20v13,-4,13,-2,14,11v3,36,-43,49,-59,67v20,4,66,1,59,34v0,2,-1,2,-3,2","w":123},{"d":"59,-113v-68,-23,3,-107,33,-121v27,0,73,1,62,54v-14,65,-58,253,-136,166v2,-16,26,6,34,2v37,-2,81,-142,81,-191v0,-14,-9,-18,-24,-17v-30,9,-81,71,-45,103v0,2,-1,4,-5,4xm150,-304v4,14,15,39,27,44v1,2,-16,9,-17,8v-11,-5,-14,-21,-21,-34v-19,5,-34,27,-53,34v-3,-6,-7,-12,3,-14v3,3,40,-25,54,-39v4,-2,7,-1,7,1","w":149},{"d":"84,-216v9,-1,23,-15,27,-2v4,13,-14,11,-23,14r15,19v-8,14,-18,6,-25,-11v-4,6,-8,16,-14,20v-2,0,-12,-6,-11,-9r15,-19v0,0,-21,-3,-24,-7v0,-3,2,-15,6,-13r22,9v1,-5,-8,-27,6,-27v12,0,7,19,6,26","w":95},{"d":"92,-203v-28,-4,-14,-20,-11,-37v16,-4,25,14,16,32v-1,4,-3,5,-5,5xm66,-177v7,2,22,10,16,20v-7,37,-37,123,-51,152v-4,19,-31,1,-32,-2v0,-2,2,-4,6,-4v23,-39,43,-89,60,-150v4,-8,-4,-13,1,-16","w":86},{"d":"115,-245v11,-10,40,-6,37,15v-5,35,-16,88,-61,80v-55,-9,-19,-94,8,-104v5,0,10,3,16,9xm102,-235v-10,13,-20,34,-21,60v-1,19,9,21,22,15v15,-13,34,-55,27,-82v-9,1,-23,12,-28,7","w":140},{"d":"292,13v-13,25,-25,44,-48,24v-42,-38,-85,-85,-128,-144v-10,26,-30,97,-49,114v-6,-3,-19,-14,-17,-17v6,-15,9,-33,16,-48v2,0,5,3,10,11v9,-19,18,-43,29,-74v-10,-19,-17,-20,8,-24v5,-14,10,-33,16,-55v-37,14,-56,24,-77,47v-14,15,7,34,-2,48v-18,-14,-38,-49,-14,-69v25,-21,56,-39,97,-51v2,0,3,-22,7,-21v2,0,5,6,10,15v48,-9,58,-20,75,13v52,27,-17,107,-47,110v-14,1,-25,-8,-33,-16v1,-10,13,-1,20,-2v20,4,61,-50,59,-70v-3,-31,-54,-20,-80,-9v-5,23,-11,46,-19,69v29,46,102,137,143,153v8,4,19,-15,24,-4","w":254},{"d":"5,-33v4,-34,24,-102,52,-113v4,0,10,5,19,13v3,-2,8,-4,15,-7v4,-8,9,-19,3,-26v4,-1,22,3,11,17v-8,11,19,17,15,38v-7,51,-22,128,-85,113v-4,9,-11,21,-6,31v-5,0,-17,-2,-10,-17r8,-16v-15,-6,-24,-17,-22,-33xm38,-5v43,-2,60,-71,63,-119v0,-3,-3,-4,-6,-4xm57,-118v-16,20,-40,71,-26,108r53,-115v-7,0,-19,13,-27,7","w":125},{"d":"149,-224v16,-18,34,-37,54,-15v27,0,25,13,22,38v-11,74,-62,234,-149,200v-35,-14,-54,-17,-54,-56v-1,-56,43,-149,75,-176v20,-17,31,-5,52,9xm125,-223v-44,18,-97,137,-72,194v40,40,80,9,110,-54v21,-44,36,-89,39,-133v1,-9,-2,-13,-7,-13v-31,12,-51,39,-85,63v-2,0,-3,0,-3,-2v8,-19,22,-34,34,-48v-6,-5,-11,-7,-16,-7xm196,-304v4,14,15,39,27,44v1,2,-16,9,-17,8v-11,-5,-14,-21,-21,-34v-19,5,-34,27,-53,34v-3,-6,-7,-12,3,-14v3,3,40,-25,54,-39v4,-2,7,-1,7,1","w":209},{"d":"85,-148v14,6,2,48,-16,45v-5,-13,0,-47,16,-45xm44,-116v-2,31,46,92,-5,105v-6,23,-30,14,-54,11v-3,0,-4,-2,-5,-5v10,-16,65,3,62,-31v2,-10,-22,-65,-21,-76v2,-15,15,-24,41,-30v3,-1,3,1,3,3v-8,8,-23,14,-21,23xm122,-215v8,-6,10,-3,11,5v-9,5,-42,23,-60,44v-4,1,-7,1,-7,-1v-4,-15,-14,-40,-27,-45v0,-2,16,-8,17,-8v10,7,14,22,21,35v19,-9,23,-14,45,-30","w":87},{"d":"221,-269v-12,7,-24,-12,-38,11v-38,61,-58,121,-76,218v3,0,13,-20,21,-17v-13,17,-21,46,-29,61v-4,0,-19,-8,-18,-18v2,-21,17,-85,27,-119v-12,4,-28,6,-48,7v-23,67,-47,155,-50,217v-5,0,-25,-13,-22,-20v3,-41,51,-190,52,-196v-11,1,-25,1,-24,-9v14,-11,34,1,37,-32v18,-46,27,-88,56,-115v15,-7,45,12,49,22v-9,8,-29,-13,-41,3v-21,28,-37,73,-51,114v34,4,41,12,50,-17v12,-38,36,-115,72,-134v6,-1,28,16,33,24","w":139},{"d":"228,-223v14,10,3,38,-18,30v-21,-8,-47,-10,-75,-15v-8,32,-13,57,-17,73v12,5,85,-23,82,17v0,4,-4,6,-13,8v-20,6,-15,-6,-27,-7v-26,0,-42,1,-48,2v-12,30,-14,68,-40,83v32,-3,55,1,110,5v8,1,8,-20,16,-7v7,12,5,34,-12,36v-37,-12,-88,-16,-136,-11v-10,9,-17,13,-19,13v-6,-9,-13,-30,1,-32v5,-1,14,-3,30,-4v12,-23,22,-45,29,-67v-6,-10,-16,-34,11,-33r20,-79v-36,-6,-71,-14,-73,22v-3,7,9,28,1,33v-18,-26,-24,-84,22,-84v12,0,31,2,56,7v8,-5,12,-11,15,-3v0,2,0,3,-1,6v5,1,27,6,69,16v8,2,12,-6,17,-9xm185,-304v17,4,5,46,-5,52v-15,-9,3,-35,5,-52xm147,-304v18,4,6,44,-3,52v-15,-6,0,-35,3,-52","w":217},{"d":"81,-141v25,-5,18,30,11,49v15,0,39,1,44,-5v7,5,-2,26,-14,22v-13,-1,-24,-2,-34,-2v-7,16,-3,42,-10,50v-1,-2,-17,-4,-16,-12r10,-38v-13,-1,-42,-2,-46,4v-11,-30,25,-20,50,-20v2,-8,13,-41,5,-48","w":152},{"d":"180,65r-180,0r0,-17r180,0r0,17","w":180},{"d":"46,-202v26,-1,63,11,81,-2v2,0,3,1,3,3v-2,7,-4,25,-22,19v-19,0,-59,-7,-74,3v-4,-5,-1,-25,12,-23"},{"d":"272,-234v13,-14,23,-1,40,14v-8,8,-24,-2,-30,18v-25,47,-41,102,-50,164v4,-11,9,-18,17,-24v4,0,4,7,1,10v-8,17,-13,33,-16,50v-1,6,-3,10,-7,10v-6,-1,-33,-14,-23,-27v3,-25,10,-57,21,-96v-26,47,-52,80,-72,107v-22,30,-55,-11,-62,-17v-23,-56,20,-136,39,-182v-39,17,-66,19,-78,45v0,7,9,19,2,23v-22,-17,-39,-55,-4,-63v23,-6,51,-14,86,-25v14,-22,24,-12,40,4v0,2,-6,5,-17,7v-22,34,-46,117,-51,167v-2,26,21,45,38,25v51,-60,82,-129,126,-210","w":269},{"d":"115,-137v3,1,20,8,15,20v-13,29,-18,55,-22,75v6,-4,13,-22,20,-14v-13,18,-19,42,-28,60v-4,-1,-22,-7,-17,-18v5,-30,12,-55,19,-75v-19,27,-55,82,-87,94v-8,-3,-23,-13,-18,-25v9,-46,42,-108,83,-127v3,0,17,8,25,20v-4,7,-21,-7,-26,3v-23,17,-62,73,-65,108v4,9,11,3,18,-4v29,-29,69,-79,83,-117xm149,-205v17,6,1,18,-8,27v-18,29,-29,-16,-51,-18v-2,-3,-16,11,-23,20v-15,-9,0,-18,8,-28v21,-26,29,15,51,19v4,3,16,-11,23,-20","w":140},{"d":"272,-234v13,-14,23,-1,40,14v-8,8,-24,-2,-30,18v-25,47,-41,102,-50,164v4,-11,9,-18,17,-24v4,0,4,7,1,10v-8,17,-13,33,-16,50v-1,6,-3,10,-7,10v-6,-1,-33,-14,-23,-27v3,-25,10,-57,21,-96v-26,47,-52,80,-72,107v-22,30,-55,-11,-62,-17v-23,-56,20,-136,39,-182v-39,17,-66,19,-78,45v0,7,9,19,2,23v-22,-17,-39,-55,-4,-63v23,-6,51,-14,86,-25v14,-22,24,-12,40,4v0,2,-6,5,-17,7v-22,34,-46,117,-51,167v-2,26,21,45,38,25v51,-60,82,-129,126,-210xm217,-257v-8,-16,28,-61,51,-40v0,3,-3,5,-8,5v-18,3,-28,25,-43,35","w":269},{"d":"56,-176v19,-35,52,-94,86,-45v-6,4,-20,-7,-25,0v-38,30,-104,158,-35,198v8,4,-2,19,-2,21v-34,-1,-61,-2,-81,9v-4,-21,7,-35,34,-28v16,1,27,2,32,2v-51,-34,-38,-101,-9,-157xm122,-186v10,-27,31,-46,61,-52v7,0,13,3,18,10v22,1,20,20,22,45v3,54,-48,156,-86,166v44,1,40,-4,65,-22v4,0,3,4,2,6v-10,15,-17,40,-43,34v-15,-3,-34,-3,-55,-3v3,-5,5,-14,11,-15v34,-13,87,-117,83,-169v0,-14,-2,-35,-15,-34v-24,2,-37,21,-60,36v-2,0,-3,0,-3,-2","w":217},{"d":"90,-258v18,1,34,2,47,-1v7,-1,7,6,7,13v-12,12,-75,285,-103,274v-10,-4,-36,5,-41,-6v13,-13,33,-3,42,-31r69,-208v6,-18,4,-31,-20,-31v-3,0,-5,-1,-5,-5v0,-3,1,-5,4,-5","w":143},{"w":64},{"d":"23,-89v18,-17,84,8,109,-8v7,5,-1,25,-13,22v-33,-1,-75,-8,-96,2v-5,-3,0,-6,0,-16xm72,-109v-3,-5,4,-41,22,-27v4,1,6,4,6,6v-3,12,-10,28,-28,21xm59,-32v-3,-5,4,-41,22,-27v4,2,6,4,6,6v-3,12,-10,28,-28,21","w":152},{"d":"42,-40v-6,19,-23,47,-27,68v-3,5,-15,10,-16,1v4,-27,14,-74,43,-69","w":72},{"d":"98,-236r-15,218v1,18,5,20,9,28v1,10,-16,6,-24,5v-8,-1,-12,-5,-11,-14r16,-195v3,-30,-2,-39,-11,-48v7,-6,37,-15,36,6","w":143},{"d":"115,-220v-36,2,-88,75,-51,103v0,2,-2,4,-5,4v-6,0,-33,-19,-31,-31v6,-37,37,-78,69,-91v23,3,60,3,58,36v-3,63,-33,142,-56,177v-14,20,-17,28,-37,30v-13,1,-59,-17,-39,-29v71,38,90,-89,105,-142v6,-20,14,-59,-13,-57xm146,-304v18,6,6,39,-5,52v-15,-10,3,-34,5,-52xm119,-290v-1,13,-18,58,-21,28v6,-11,3,-30,10,-42v2,-1,10,8,11,14","w":149},{"d":"140,-5v14,5,15,24,4,31v-7,-2,-5,-12,-17,-13v-37,-11,-64,-16,-100,-15v0,6,-26,22,-28,2v3,-25,5,-35,38,-28v32,-31,78,-58,85,-111v1,-14,-8,-15,-20,-13v-14,3,-60,15,-53,43v1,4,0,5,-2,5v-11,-4,-31,-25,-17,-36v34,-26,63,-38,82,-37v5,0,9,5,14,13v20,-6,19,-4,20,18v2,36,-4,35,-24,57v-23,25,-47,45,-69,63v29,2,57,10,87,21","w":157},{"d":"76,-133v1,-1,17,-9,24,-9v8,-1,22,18,20,31v-5,47,-21,108,-64,116v-25,-1,-54,-10,-51,-38v4,-34,24,-102,52,-113v4,0,10,5,19,13xm43,-5v39,-9,55,-69,58,-116v-6,-22,-34,14,-44,3v-14,18,-30,55,-31,87v0,18,6,26,17,26xm132,-205v17,6,1,18,-8,27v-18,29,-29,-16,-51,-18v-2,-3,-16,11,-23,20v-15,-9,0,-18,8,-28v21,-26,29,15,51,19v4,3,16,-11,23,-20","w":125},{"d":"227,-221v-8,85,-58,253,-151,221v-10,13,-17,50,-38,34v9,-8,19,-24,25,-38v-27,-9,-41,-20,-41,-53v-1,-56,43,-149,75,-176v20,-17,31,-5,52,9v12,-7,20,-32,18,-45v-1,-3,-1,-5,2,-5v8,6,13,15,10,26v10,-3,18,1,24,9v18,2,22,2,24,18xm92,-10v55,-8,108,-137,110,-206v1,-25,-24,-11,-34,-2v-30,81,-59,150,-87,207v5,1,8,1,11,1xm125,-223v-44,18,-95,135,-73,193v3,6,9,11,17,15v32,-62,59,-124,81,-188v-10,9,-23,25,-38,36v-3,0,-4,-1,-4,-4v10,-18,23,-34,33,-45v-6,-5,-11,-7,-16,-7","w":208},{"d":"64,19v8,0,32,-5,27,12v16,23,-14,32,-37,37v-5,1,-9,-8,-11,-16v1,-5,6,-3,9,-1v10,1,29,-7,33,-17v-7,-10,-46,13,-35,-17v4,-6,7,-11,10,-15v-17,-13,-42,-24,-42,-46v0,-61,36,-130,70,-166v31,-33,43,-44,74,-14v1,-5,2,-7,5,-7v3,0,21,10,20,17v-6,30,-13,62,-31,73v-8,-1,-20,-7,-18,-11v14,-13,19,-36,22,-59v-6,-6,-12,-9,-18,-9v-52,15,-101,111,-101,176v0,22,19,38,39,29v30,-12,64,-29,79,-62v0,-3,2,-4,4,-4v16,21,11,37,-10,49v-35,21,-48,36,-85,36v-1,1,-2,7,-4,15","w":181},{"d":"99,-118v-48,-20,-78,56,-78,97v0,8,2,13,8,13v37,-23,70,-80,80,-129v0,-3,2,-5,4,-5v13,5,25,16,8,38v-12,26,-35,112,-42,148v8,-13,9,-25,21,-29v3,0,4,0,4,3v-24,41,-32,93,-40,143v-9,-6,-30,-18,-18,-49v5,-35,27,-129,37,-159v-13,22,-26,42,-49,52v-14,-6,-34,-9,-33,-29v5,-43,31,-107,69,-118v5,0,24,9,32,22v0,2,-1,2,-3,2","w":128},{"d":"83,-218v23,1,8,45,-2,52v-25,-7,4,-31,2,-52"},{"d":"6,-49v6,-51,45,-113,89,-127v25,3,76,8,65,46v-6,66,-83,225,-134,235v-9,2,-30,-7,-39,-21v1,-11,27,2,33,-4v46,-20,112,-148,115,-213v1,-26,-26,-37,-44,-20v-24,21,-56,65,-60,100v-1,9,2,13,10,13v25,-3,38,-19,61,-30v2,0,4,1,4,3v-25,29,-45,65,-80,37v-10,-3,-21,-5,-20,-19","w":163},{"d":"91,-250v-6,20,-25,47,-26,68v-4,4,-17,10,-18,0v6,-24,14,-74,44,-68","w":72},{"d":"113,-149v0,28,5,49,30,85v-2,8,-45,33,-48,41v4,19,-29,29,-29,8v4,-17,45,-30,51,-50v-11,-24,-20,-42,-25,-67v-2,-8,18,-17,21,-17xm52,-150v0,30,4,47,30,85v-2,8,-44,33,-48,41v3,19,-27,30,-30,9v5,-18,42,-29,52,-51v-12,-25,-21,-42,-26,-67v-2,-9,18,-17,22,-17","w":156},{"d":"48,-111v26,15,38,59,56,98v24,-26,77,-151,78,-198v1,-6,2,-9,4,-9v2,0,6,5,13,16v3,49,-52,149,-73,197v-8,19,-38,16,-41,-5v-15,-33,-24,-62,-50,-76v-2,-3,-20,13,-25,5v10,-15,24,-26,38,-28","w":210},{"d":"200,-234v12,-4,47,21,43,45v-8,54,-42,124,-69,162v-32,44,-50,36,-89,5v7,-13,25,9,39,5v35,-1,96,-136,96,-180v0,-43,-66,-20,-92,-1v-21,49,-48,139,-60,194v-1,6,-3,9,-7,9v-29,-2,-24,-40,-12,-60v2,0,5,3,12,8v16,-54,31,-101,45,-140v-29,22,-55,32,-65,61v-3,7,16,25,4,27v-26,-22,-39,-40,-13,-61v20,-18,48,-37,86,-59v12,-24,9,-29,27,-13v19,-8,35,-20,55,-2","w":230},{"d":"59,-113v-68,-23,3,-107,33,-121v27,0,73,1,62,54v-14,65,-58,253,-136,166v2,-16,26,6,34,2v37,-2,81,-142,81,-191v0,-14,-9,-18,-24,-17v-30,9,-81,71,-45,103v0,2,-1,4,-5,4","w":149},{"d":"36,-142v6,3,22,2,22,15v0,10,-8,38,-23,86v6,-1,13,-21,18,-16v-4,11,-29,47,-33,60v-5,4,-17,-4,-20,-7v11,-22,41,-98,34,-124v-8,-1,-15,20,-22,14v-1,-2,22,-31,24,-28","w":68},{"d":"55,-243v15,8,23,34,8,62v-8,29,-17,32,-26,12v11,-21,11,-52,18,-74","w":57},{"d":"49,-211v24,-21,48,20,53,36v0,3,-1,4,-3,4v-15,-10,-25,-31,-43,-35v-5,0,-7,-2,-7,-5"},{"d":"39,-147v37,16,15,39,1,89v14,-23,49,-80,76,-87v39,5,11,70,7,96v5,-6,7,-12,16,-19v4,17,-27,41,-32,68v-3,11,-20,1,-22,-3v11,-28,38,-92,27,-127v-36,28,-61,69,-84,120v-6,14,-17,8,-26,2v12,-29,37,-89,34,-126v-8,5,-15,20,-24,17v9,-10,15,-23,27,-30","w":151},{"d":"36,-142v6,3,22,2,22,15v0,10,-8,38,-23,86v6,-1,13,-21,18,-16v-4,11,-29,47,-33,60v-5,4,-17,-4,-20,-7v11,-22,41,-98,34,-124v-8,-1,-15,20,-22,14v-1,-2,22,-31,24,-28xm69,-218v4,14,15,39,27,44v1,2,-16,9,-17,8v-11,-5,-14,-21,-21,-34v-19,5,-34,27,-53,34v-3,-6,-7,-12,3,-14v3,3,40,-25,54,-39v4,-2,7,-1,7,1","w":68},{"d":"5,-33v4,-34,24,-100,52,-111v6,8,44,-1,46,14v-2,21,-1,47,-17,48v-22,-7,2,-27,-3,-39v1,-8,-7,-8,-13,-9v-26,14,-46,61,-46,99v0,18,6,26,17,26v10,3,30,-21,49,-41v2,0,3,1,3,3v-10,26,-21,58,-62,45v-3,6,-7,12,-10,19v13,-2,33,-8,32,10v16,23,-21,30,-39,36v-4,0,-9,-6,-9,-15v0,-6,5,-1,9,-1v10,1,30,-7,33,-17v-6,-10,-46,13,-35,-17v1,-1,5,-7,13,-17v-14,-6,-21,-17,-20,-33","w":105},{"d":"123,-128v-6,-11,11,-19,20,-22v30,24,-34,37,-42,64v12,28,20,43,25,66v1,7,-21,23,-23,15v7,-30,-8,-48,-28,-83v3,-8,42,-30,48,-40xm14,-88v4,-15,52,-30,50,-52v3,-1,19,-20,24,-5v9,25,-39,34,-49,57v13,25,21,44,26,68v-1,12,-32,28,-21,1v1,-17,-12,-41,-30,-69","w":156},{"d":"87,-113v16,-3,66,-2,48,20v-13,1,-25,-9,-53,-5v-12,40,-22,77,-29,110v4,-4,6,-6,7,-6v4,3,-10,26,-17,26v-4,-2,-6,-4,-6,-6v1,-38,12,-69,26,-123v-21,1,-53,2,-42,-19v5,7,28,7,46,5v8,-25,15,-45,21,-59v-22,0,-59,4,-48,-19v10,10,28,7,53,5v20,-42,21,-63,46,-72v5,2,23,13,12,17v-16,-5,-25,32,-38,53v23,0,43,-6,45,17v-11,10,-26,-7,-51,-2v-6,15,-12,34,-20,58","w":137},{"d":"36,-192v36,-80,65,-59,113,13v10,-18,7,-38,13,-51v25,11,14,28,-2,70v21,40,36,77,47,110v41,-69,80,-121,112,-161v8,-10,11,-30,24,-34v5,0,22,7,31,20v-11,6,-20,0,-29,19v-21,45,-38,99,-45,165v4,-6,6,-17,16,-24v4,0,4,5,2,9v-5,12,-9,30,-14,53v-3,14,-14,6,-25,-2v-7,-5,-9,-5,-7,-17v5,-34,23,-129,33,-150v-26,32,-70,100,-91,142v10,21,-4,32,-16,40v-4,-13,-21,-20,-9,-35v-8,-28,-21,-62,-41,-102v-13,32,-25,61,-38,87v10,13,21,21,3,24v-12,2,-23,8,-31,19v-1,4,-2,5,-5,5v-3,1,-30,-12,-19,-21v8,-7,17,-13,27,-19v22,-36,39,-75,53,-115v-17,-35,-33,-58,-63,-69v-17,-1,-25,32,-39,24","w":335},{"d":"362,-178v0,1,22,19,8,22r-11,-7v-20,75,-45,128,-74,161v-3,3,-7,5,-12,5v-39,-8,-65,-18,-65,-67v0,-33,4,-67,13,-102v-33,37,-79,105,-96,151v-4,6,-30,22,-35,13v18,-45,57,-156,56,-215v-25,5,-65,27,-85,38v-16,8,-3,28,-8,37v-25,-26,-42,-40,-4,-59v14,-7,72,-26,85,-32v1,-3,1,-9,7,-9v12,2,40,18,30,42v-2,21,-22,94,-29,115v10,-16,76,-104,88,-116v7,-22,4,-30,18,-34v16,4,32,8,20,20r-12,13v-18,60,-24,97,-24,146v0,32,28,58,50,28v23,-31,56,-108,63,-153v-14,-15,-11,-63,7,-73v26,14,23,28,10,76","w":353},{"d":"228,-223v14,10,3,38,-18,30v-21,-8,-47,-10,-75,-15v-8,32,-13,57,-17,73v12,5,85,-23,82,17v0,4,-4,6,-13,8v-20,6,-15,-6,-27,-7v-26,0,-42,1,-48,2v-12,30,-14,68,-40,83v32,-3,55,1,110,5v8,1,8,-20,16,-7v7,12,5,34,-12,36v-37,-12,-88,-16,-136,-11v-10,9,-17,13,-19,13v-6,-9,-13,-30,1,-32v5,-1,14,-3,30,-4v12,-23,22,-45,29,-67v-6,-10,-16,-34,11,-33r20,-79v-36,-6,-71,-14,-73,22v-3,7,9,28,1,33v-18,-26,-24,-84,22,-84v12,0,31,2,56,7v8,-5,12,-11,15,-3v0,2,0,3,-1,6v5,1,27,6,69,16v8,2,12,-6,17,-9xm135,-297v24,-21,48,20,53,36v0,3,-1,4,-3,4v-15,-10,-25,-31,-43,-35v-5,0,-7,-2,-7,-5","w":217},{"d":"107,-237v9,-32,24,-16,56,-19v3,0,5,2,5,5v-14,12,-33,3,-42,30r-69,209v-6,18,-4,31,20,31v4,0,5,1,5,5v0,3,-2,5,-5,5v-23,0,-35,-2,-46,1v-7,1,-7,-6,-7,-13","w":143},{"d":"122,-138v7,-6,27,5,20,11v-16,29,-27,63,-35,102v5,-8,5,-15,14,-25v4,0,3,4,2,6v-16,22,-5,61,-34,41v-9,-25,10,-60,14,-80v-23,37,-43,64,-57,81v-10,12,-36,3,-34,-15v4,-34,9,-61,18,-83v-2,2,-7,8,-12,9v7,-18,15,-30,23,-44v5,-9,17,-2,23,5v-14,19,-40,89,-30,120v30,-18,69,-99,88,-128xm84,-171v-8,-16,28,-61,51,-40v0,3,-3,5,-8,5v-18,3,-28,25,-43,35","w":142},{"d":"339,-69v22,5,23,-14,36,-7v-5,10,2,24,-16,24v-23,0,-74,1,-153,-3r-170,-8v-9,-3,-16,13,-22,4v5,-2,3,-28,21,-23v24,7,258,13,304,13","w":393},{"d":"80,-87v40,0,56,-50,64,-86v-2,-21,-45,-6,-52,-6v-16,15,-28,39,-31,69v-1,14,7,23,19,23xm38,-107v2,-25,21,-57,32,-75v-6,-14,-24,-28,2,-36v-3,6,6,28,17,21v6,0,11,3,16,8v20,-6,38,-15,53,1v12,-8,19,-12,21,-16v15,19,-3,22,-16,31v-1,26,-15,57,-30,72v16,9,19,17,3,25v0,-2,-9,-16,-16,-13v-18,18,-60,7,-74,-4v-9,8,-14,14,-15,18v-17,-14,-13,-22,7,-32","w":164},{"d":"20,-2v-5,30,-1,63,18,75v-21,3,-36,-13,-36,-41v0,-31,9,-75,28,-132v-2,2,-7,8,-12,9v7,-18,15,-30,23,-44v5,-9,17,-2,23,5v-14,19,-40,89,-30,120v30,-18,69,-99,88,-128v6,-5,27,4,20,11v-16,29,-27,63,-35,102v5,-8,5,-15,14,-25v4,0,3,4,2,6v-16,22,-5,61,-34,41v-9,-25,10,-60,14,-80v-23,37,-43,63,-57,81v-7,9,-18,7,-26,0","w":142},{"d":"40,-110v2,0,18,2,16,9v-3,9,-11,47,-35,30v10,-15,9,-33,19,-39xm43,-40v-6,21,-23,46,-28,68v3,6,-9,11,-15,9v-6,-21,13,-84,43,-77","w":72},{"d":"187,-214v-6,30,-13,62,-31,73v-8,-1,-20,-7,-18,-11v14,-13,19,-36,22,-59v-6,-6,-12,-9,-18,-9v-52,15,-101,111,-101,176v0,44,51,31,78,9v17,-14,34,-21,40,-42v0,-3,2,-4,4,-4v16,21,10,36,-10,49v-33,21,-47,37,-79,37v-10,0,-17,-4,-22,-10v-58,-21,-32,-80,-12,-131v16,-40,56,-96,91,-106v15,2,15,5,31,18v1,-5,2,-7,5,-7v3,0,21,10,20,17","w":181},{"d":"229,-223v-7,27,-22,79,-50,46v9,-3,34,-40,16,-52v-11,-2,-31,16,-46,8v15,-11,51,-39,64,-14v10,4,14,4,16,12xm124,-180v-6,18,51,112,51,127v0,21,-10,38,-32,51v-6,10,-15,14,-25,14v-41,-1,-98,-47,-106,-82v-1,-7,19,-29,24,-14v-1,36,58,73,92,74v14,0,22,-9,22,-29v4,-19,-56,-113,-50,-134v1,-25,14,-38,36,-48v3,0,5,1,5,4v-6,12,-19,22,-17,37","w":196},{"d":"114,-170v11,19,20,58,40,66v1,4,-21,11,-23,10v-16,-8,-18,-24,-30,-47v-25,9,-41,31,-73,47v-5,-2,-10,-18,3,-18v13,-6,60,-34,68,-49v0,-5,11,-8,15,-9","w":162},{"d":"242,-213v5,-26,20,-20,27,-3v0,6,-8,19,-22,39v-25,71,-44,153,-75,217v-18,21,-38,-2,-64,-21v17,-13,37,20,51,-10v19,-40,40,-88,57,-147v-22,39,-46,72,-72,99v-7,7,-13,11,-18,11v-21,-14,-45,-17,-42,-52v2,-25,13,-67,36,-124v-34,15,-60,20,-71,45v0,7,10,20,3,24v-22,-17,-41,-53,-6,-63v23,-7,51,-16,85,-28v11,-24,25,-13,40,3v0,3,-6,6,-16,8v-22,28,-46,98,-48,143v-1,26,14,32,27,19v43,-41,77,-96,108,-160xm236,-304v17,4,5,46,-5,52v-15,-9,3,-35,5,-52xm198,-304v18,4,6,44,-3,52v-15,-6,0,-35,3,-52","w":240},{"d":"152,-121v-13,16,-27,61,-33,91v18,3,19,-16,29,-8r4,22v-1,11,-24,8,-38,9v-4,21,-11,43,-4,60v0,5,-2,5,-7,5v-27,-11,-20,-17,-9,-64v-36,1,-62,1,-80,-1v0,9,-13,8,-16,2v-3,-4,-6,-27,5,-27v26,-23,53,-57,67,-86v-3,-6,-8,-10,-10,-18v0,-3,2,-5,7,-4v17,-7,26,-65,52,-33v-11,45,-62,108,-90,138v-2,2,0,3,4,4v27,3,49,5,67,3v13,-39,17,-73,38,-95v4,0,14,-1,14,2","w":166},{"d":"149,-224v16,-18,34,-37,54,-15v27,0,25,13,22,38v-11,74,-62,234,-149,200v-35,-14,-54,-17,-54,-56v-1,-56,43,-149,75,-176v20,-17,31,-5,52,9xm125,-223v-44,18,-97,137,-72,194v40,40,80,9,110,-54v21,-44,36,-89,39,-133v1,-9,-2,-13,-7,-13v-31,12,-51,39,-85,63v-2,0,-3,0,-3,-2v8,-19,22,-34,34,-48v-6,-5,-11,-7,-16,-7","w":209},{"d":"85,-148v14,6,2,48,-16,45v-5,-13,0,-47,16,-45xm44,-116v-2,31,46,92,-5,105v-6,23,-30,14,-54,11v-3,0,-4,-2,-5,-5v10,-16,65,3,62,-31v2,-10,-22,-65,-21,-76v2,-15,15,-24,41,-30v3,-1,3,1,3,3v-8,8,-23,14,-21,23","w":87},{"d":"229,-239v-18,20,-34,141,-32,186v1,30,4,39,22,31v8,11,-21,21,-34,27v-11,0,-15,-29,-12,-87v-28,2,-55,3,-80,6r-35,43v17,-6,17,10,22,22v-1,8,-9,3,-15,3v-8,-3,-38,13,-47,21v-9,-4,-26,-18,-11,-27v11,-7,48,-38,55,-48v-5,-30,0,-31,28,-33v29,-35,52,-70,70,-104v-24,19,-104,13,-98,60v1,4,-1,6,-4,6v-26,-29,-21,-59,28,-64v36,-3,72,-8,86,-33v3,-1,14,8,15,14v-15,33,-58,95,-78,120v28,0,49,-1,65,-2v2,-26,14,-82,19,-115v2,-14,21,-32,36,-26xm188,-257v-8,-16,28,-61,51,-40v0,3,-3,5,-8,5v-18,3,-28,25,-43,35","w":230},{"d":"147,-203v-56,4,-135,19,-91,78v0,6,-7,4,-10,1v-23,-31,-40,-72,13,-85v32,-9,65,-14,98,-17v8,-18,8,-14,22,-3v3,0,13,-2,29,-4v7,-5,27,-21,38,-6v3,14,10,26,-15,26v-18,0,-41,6,-67,8v-7,15,-17,44,-30,90v28,3,82,-20,84,17v0,4,-5,5,-14,8v-18,6,-13,-6,-26,-6v-26,0,-42,0,-50,1v-4,11,-11,40,-22,87v-5,17,-7,16,-24,10v-12,-9,0,-34,2,-48v1,-5,6,-8,14,-6v7,-11,12,-35,3,-50v1,-4,6,-8,17,-10v1,-2,10,-32,29,-91","w":216},{"d":"249,19v-2,12,-30,32,-39,35v-16,0,-44,-44,-86,-131v-13,3,-17,-4,-6,-13v-3,-6,-6,-14,-9,-20v-51,39,-79,68,-82,89v-2,10,8,11,17,10v22,-4,56,-17,70,-40v10,-5,15,-9,16,3v2,29,-23,22,-43,38v-34,14,-49,27,-67,2v-11,-8,-16,-16,-16,-22v0,-31,65,-76,98,-98v-11,-28,-16,-51,-16,-68v0,-5,7,-8,22,-8v8,0,26,-1,25,7v22,2,35,2,39,16v-1,33,-18,40,-47,60r9,20v41,0,89,5,96,-15v0,-4,10,-5,9,1v-4,24,1,34,-39,35r-55,1v20,40,46,91,73,106v8,4,24,-18,31,-8xm118,-139v12,-13,60,-33,22,-46v-38,-17,-38,12,-22,46","w":256},{"d":"35,-19v19,-13,73,-89,79,-114v4,-18,7,-13,19,-4v4,3,5,7,3,15v-16,75,-31,132,-45,169v-42,110,-97,144,-167,68v0,-4,2,-5,5,-5v56,44,95,31,131,-43v19,-39,39,-101,51,-165v-23,34,-54,87,-88,104v-7,-4,-12,-10,-16,-17v15,-17,29,-82,25,-116v-3,1,-22,24,-24,15v5,-4,20,-42,34,-32v12,-2,15,-5,16,7v1,16,-17,107,-23,118xm83,-171v-8,-16,28,-61,51,-40v0,3,-3,5,-8,5v-18,3,-28,25,-43,35","w":146},{"d":"227,-221v-4,68,-40,158,-73,196v25,6,44,-2,59,-14v5,13,-16,49,-41,40v-2,0,-14,-3,-38,-8v-28,27,-79,1,-98,-10v-44,-60,25,-180,61,-216v19,-18,31,-5,52,9v16,-18,34,-37,54,-15v18,2,22,2,24,18xm83,-57v15,7,25,19,46,25v34,-34,69,-121,73,-184v1,-9,-2,-13,-7,-13v-31,12,-51,39,-85,63v-2,0,-3,0,-3,-2v8,-19,22,-34,34,-48v-6,-5,-11,-7,-16,-7v-44,18,-98,138,-72,194v6,13,36,28,55,14v-11,-1,-44,-19,-25,-42","w":217},{"d":"122,-138v7,-6,27,5,20,11v-16,29,-27,63,-35,102v5,-8,5,-15,14,-25v4,0,3,4,2,6v-16,22,-5,61,-34,41v-9,-25,10,-60,14,-80v-23,37,-43,64,-57,81v-10,12,-36,3,-34,-15v4,-34,9,-61,18,-83v-2,2,-7,8,-12,9v7,-18,15,-30,23,-44v5,-9,17,-2,23,5v-14,19,-40,89,-30,120v30,-18,69,-99,88,-128","w":142},{"d":"38,-140v2,0,18,2,17,9v-2,8,-12,49,-35,29v11,-15,9,-32,18,-38","w":60},{"d":"52,-150v0,30,4,47,30,85v-2,8,-44,33,-48,41v3,19,-27,30,-30,9v5,-18,42,-29,52,-51v-12,-25,-21,-42,-26,-67v-2,-9,18,-17,22,-17","w":95},{"d":"61,5v-5,1,-28,-16,-13,-21v29,-66,50,-126,64,-181v-52,28,-76,35,-61,75v0,3,-1,5,-4,5v-4,0,-11,-11,-21,-31v-9,-41,63,-59,92,-76v3,-20,6,-29,23,-8v36,-11,52,-15,67,12v50,31,-22,107,-41,128v-18,13,-32,7,-51,-6v7,-5,29,-3,34,-10v23,-17,53,-57,55,-90v2,-34,-51,-13,-74,-6v-20,71,-38,127,-54,169v1,1,13,-10,18,-9v5,1,24,25,8,26v-15,1,-29,19,-42,23","w":203},{"d":"137,-154v-14,23,-72,100,-101,138r101,-7v-6,-38,-2,-79,0,-131xm166,-10v-21,22,-99,-3,-151,8v-8,-6,-15,-12,-2,-13v9,-14,112,-137,109,-147v1,-1,3,-4,8,-8v2,-19,13,-28,31,-32v4,0,5,2,5,5v-12,37,-15,144,0,187","w":204},{"d":"101,-54v-23,34,-52,61,-62,59v-10,-2,-37,-15,-34,-32v2,-16,7,-35,13,-54v-5,-2,-11,-7,-3,-8v2,0,4,0,6,1v15,-29,20,-51,43,-60v2,0,6,2,14,5v-3,-7,6,-6,12,-6v16,-1,1,24,7,39v0,35,-28,44,-61,34v-5,11,-20,56,-5,66v22,-3,37,-25,66,-47v2,0,4,1,4,3xm78,-128v-1,-9,-3,-8,-8,-4v-11,9,-21,26,-30,49v29,1,45,-2,38,-45xm103,-218v17,4,5,46,-5,52v-15,-9,3,-35,5,-52xm65,-218v18,4,6,44,-3,52v-15,-6,0,-35,3,-52","w":105},{"d":"105,-200v6,-32,-15,-36,-32,-50v0,-4,3,-6,7,-5v32,8,52,13,49,47v-4,58,-55,238,-99,239v-11,0,-30,-8,-41,-21v4,-11,27,5,32,2v12,0,27,-22,45,-67v19,-46,30,-95,39,-145","w":143},{"d":"115,-137v3,1,20,8,15,20v-13,29,-18,55,-22,75v6,-4,13,-22,20,-14v-13,18,-19,42,-28,60v-4,-1,-22,-7,-17,-18v5,-30,12,-55,19,-75v-19,27,-55,82,-87,94v-8,-3,-23,-13,-18,-25v9,-46,42,-108,83,-127v3,0,17,8,25,20v-4,7,-21,-7,-26,3v-23,17,-62,73,-65,108v4,9,11,3,18,-4v29,-29,69,-79,83,-117","w":140},{"d":"83,-230v3,-20,31,-2,32,1v-29,36,-46,91,-65,154v-5,8,5,15,-2,17v-7,-1,-22,-11,-16,-21v8,-36,38,-121,51,-151xm33,4v-24,7,-22,-27,-10,-37v25,9,16,11,10,37","w":86},{"d":"5,-33v3,-34,24,-100,52,-111v6,8,44,-1,46,14v-2,21,-1,47,-17,48v-22,-7,2,-27,-3,-39v1,-8,-7,-8,-13,-9v-26,14,-46,61,-46,99v0,18,6,26,17,26v10,3,30,-21,49,-41v2,0,3,1,3,3v-9,19,-14,44,-39,48v-26,-1,-51,-11,-49,-38","w":105},{"d":"38,-192v22,-14,33,-68,69,-46v-20,16,-38,69,-32,98v0,2,-1,3,-3,3v-4,-2,-24,-5,-22,-14v2,-13,12,-50,20,-64r-28,28v-3,0,-4,-2,-4,-5xm193,-223r-125,179v-11,19,-26,32,-22,54v-4,6,-21,-2,-22,-13v0,-3,1,-7,4,-11r127,-181v16,-24,22,-31,19,-51v4,-6,21,3,22,13v0,4,-1,7,-3,10xm220,2v-12,-15,-48,-18,-70,-17v0,2,-17,13,-17,2v0,-12,7,-29,22,-23v24,-21,42,-30,47,-59v-9,-13,-42,3,-40,19v-6,-1,-14,-14,-13,-17v11,-13,44,-38,60,-19v8,-3,15,-3,14,10v-1,40,-38,46,-59,67v25,3,73,7,56,37","w":249},{"d":"45,-125v81,-2,11,-143,118,-127v3,0,5,1,5,4v-11,14,-38,-1,-42,27v-10,24,-19,99,-61,107v38,29,-11,77,-11,118v0,10,8,15,23,15v4,0,5,1,5,5v0,3,-2,5,-5,5v-27,-1,-44,-4,-46,-25v4,-31,19,-46,31,-96v6,-11,-28,-21,-17,-33","w":143},{"d":"76,-133v1,-1,17,-9,24,-9v8,-1,22,18,20,31v-5,47,-21,108,-64,116v-25,-1,-54,-10,-51,-38v4,-34,24,-102,52,-113v4,0,10,5,19,13xm43,-5v39,-9,55,-69,58,-116v-6,-22,-34,14,-44,3v-14,18,-30,55,-31,87v0,18,6,26,17,26xm81,-171v-8,-16,28,-61,51,-40v0,3,-3,5,-8,5v-18,3,-28,25,-43,35","w":125},{"d":"228,-223v14,10,3,38,-18,30v-21,-8,-47,-10,-75,-15v-8,32,-13,57,-17,73v12,5,85,-23,82,17v0,4,-4,6,-13,8v-20,6,-15,-6,-27,-7v-26,0,-42,1,-48,2v-12,30,-14,68,-40,83v32,-3,55,1,110,5v8,1,8,-20,16,-7v7,12,5,34,-12,36v-37,-12,-88,-16,-136,-11v-10,9,-17,13,-19,13v-6,-9,-13,-30,1,-32v5,-1,14,-3,30,-4v12,-23,22,-45,29,-67v-6,-10,-16,-34,11,-33r20,-79v-36,-6,-71,-14,-73,22v-3,7,9,28,1,33v-18,-26,-24,-84,22,-84v12,0,31,2,56,7v8,-5,12,-11,15,-3v0,2,0,3,-1,6v5,1,27,6,69,16v8,2,12,-6,17,-9","w":217},{"d":"273,-66v-9,34,-13,71,-50,70v-20,-1,-36,-10,-35,-25v3,-26,22,-93,51,-62v21,-15,30,1,34,17xm120,-215v-10,32,-15,70,-51,70v-19,0,-36,-10,-35,-25v3,-26,22,-93,52,-62v20,-16,30,1,34,17xm148,-195v16,-24,23,-33,19,-51v4,-6,21,3,22,13v0,3,0,6,-3,10r-125,179v-17,28,-28,36,-22,54v-4,6,-22,-1,-22,-14v38,-68,89,-126,131,-191xm177,-65v-10,33,-13,69,-50,69v-20,0,-37,-10,-35,-25v3,-26,22,-94,52,-62v21,-15,29,2,33,18xm227,-74v-11,13,-19,32,-20,55v5,30,25,17,35,-6v7,-14,17,-38,11,-53v-8,-1,-20,6,-26,4xm65,-152v20,0,38,-46,37,-74v-5,-6,-23,5,-29,3v-10,13,-18,32,-19,55v0,11,4,16,11,16xm131,-74v-9,13,-17,33,-20,55v5,29,25,17,35,-6v6,-13,21,-41,9,-53v-5,0,-20,5,-24,4","w":302},{"d":"43,-40v-6,21,-23,46,-28,68v3,6,-9,11,-15,9v-6,-21,13,-84,43,-77","w":72},{"d":"149,-233v-9,9,-24,-11,-36,0v-46,28,-84,234,-115,283v-23,36,-38,25,-68,0v5,-9,20,6,26,3v62,-6,95,-315,152,-310v6,0,30,8,41,24","w":87},{"d":"257,-230v10,-13,19,-3,25,8v-1,10,-17,23,-24,32v-13,46,-47,131,-38,178v1,7,-19,27,-26,11v-2,-51,-59,-132,-78,-167v-8,27,-33,89,-47,123v3,-1,8,5,15,18v2,15,-35,-1,-35,24v-6,17,-35,-3,-32,-8v0,-6,10,-15,28,-26v14,-22,50,-118,60,-147v-11,-16,-17,-26,-34,-30v-7,-3,-23,19,-31,9v25,-32,47,-54,73,-11v4,-8,0,-14,4,-18v13,1,16,24,7,36v24,32,68,107,81,146v4,-27,14,-71,30,-132v-3,-2,-13,-8,-14,-14v13,-3,17,-7,36,-32","w":251},{"d":"190,-128v3,-2,44,12,21,18v-19,5,-15,6,-21,28v-11,45,-21,83,-34,115v-13,30,-32,13,-57,-6v10,-9,29,9,36,-12v12,-18,24,-52,38,-102v-21,27,-72,72,-107,73v-24,-6,-48,-20,-48,-48v0,-73,72,-159,131,-180v6,0,15,4,27,13v2,-16,15,-7,22,-1v1,17,-6,40,-11,56v-3,10,-24,5,-27,-2v10,-7,11,-24,13,-39v0,-5,-2,-7,-8,-7v-62,15,-116,96,-125,163v9,46,45,31,81,-1v18,-16,36,-31,49,-47v-42,2,-51,12,-60,-15v9,-1,70,8,80,-6","w":217},{"d":"43,38v-16,-7,-12,-27,-6,-41v-26,-9,-50,-28,-26,-52v7,11,10,20,33,29v8,-27,18,-55,28,-84v-29,-54,-36,-79,13,-108v3,0,4,1,4,4v-18,21,-21,43,-6,72v10,-29,20,-54,30,-76v-5,3,-14,5,-16,0v3,-8,12,-9,23,-14v7,-11,11,-43,32,-38v10,9,-13,17,-15,32v12,-10,22,12,32,12v3,2,4,4,4,7v-7,25,-21,73,-47,43v7,-5,31,-39,14,-49v-2,0,-6,1,-10,2v-12,26,-25,58,-40,97v23,35,53,90,0,116v-10,15,-22,17,-41,11v-5,9,1,35,-6,37xm98,-46v-1,-11,-7,-28,-19,-50v-11,32,-19,56,-24,74v23,10,45,6,43,-24","w":139},{"d":"229,-239v-18,20,-34,141,-32,186v1,30,4,39,22,31v8,11,-21,21,-34,27v-11,0,-15,-29,-12,-87v-28,2,-55,3,-80,6r-35,43v17,-6,17,10,22,22v-1,8,-9,3,-15,3v-8,-3,-38,13,-47,21v-9,-4,-26,-18,-11,-27v11,-7,48,-38,55,-48v-5,-30,0,-31,28,-33v29,-35,52,-70,70,-104v-24,19,-104,13,-98,60v1,4,-1,6,-4,6v-26,-29,-21,-59,28,-64v36,-3,72,-8,86,-33v3,-1,14,8,15,14v-15,33,-58,95,-78,120v28,0,49,-1,65,-2v2,-26,14,-82,19,-115v2,-14,21,-32,36,-26xm217,-292v10,0,18,16,3,25v-16,23,-46,15,-52,-6v3,-13,38,-49,45,-19v1,1,0,1,-2,1v-12,-5,-27,12,-32,25v0,4,2,6,7,6v8,2,36,-15,31,-32","w":230},{"d":"22,-82v40,6,71,25,88,3v3,2,3,30,-8,27v-18,1,-47,-6,-75,-11v-4,-3,-10,14,-12,3v1,0,2,-22,7,-22","w":130},{"d":"328,-218v21,18,3,37,-25,30v-21,-5,-49,-9,-84,-15v-6,22,-9,45,-12,69v36,0,69,-12,89,1r4,15v2,6,-21,9,-26,10v-10,-14,-45,-8,-70,-9r-5,85v21,1,49,1,82,5v9,1,8,-20,16,-7v7,12,5,35,-12,36v-20,-6,-57,-14,-68,-12v-17,-5,-31,36,-40,0v-12,1,-27,-1,-32,6v-16,-17,-9,-27,30,-28v0,-17,0,-33,1,-48v-21,1,-47,3,-76,4v-53,63,-54,62,-59,69v-19,25,-29,13,-43,-5v2,-9,30,-32,26,-39v8,-11,14,6,21,13v2,-2,8,-9,19,-22v-3,-34,1,-33,32,-35v20,-24,60,-86,76,-114v-45,-5,-50,-7,-77,-5v-28,3,-26,25,-21,53v1,8,-9,6,-10,1v-10,-40,-27,-79,35,-79v22,0,57,4,105,11v6,-6,20,-18,28,-11v0,5,-4,12,-7,15v34,2,78,26,103,6xm188,-207v-26,46,-52,87,-71,111v28,0,48,-1,61,-2v2,-15,8,-51,18,-108v-1,0,-4,-1,-8,-1","w":313},{"d":"130,-53v-19,23,-34,-7,-48,-21v-10,8,-27,24,-32,37v-23,-18,4,-33,21,-49v-11,-9,-26,-31,-34,-27v-5,0,-5,-5,0,-7v21,-13,26,6,45,24v9,-10,24,-18,28,-32v0,-3,2,-5,4,-5v24,21,-11,36,-21,48v20,20,25,29,33,28v2,-2,4,3,4,4","w":152},{"d":"13,-80v5,-38,34,-63,18,-97v2,-4,8,-6,19,-4v30,5,56,8,79,8v5,-8,6,-10,15,-9v2,13,13,39,-9,36v-40,-6,-62,-17,-81,-7v-12,32,-23,51,-22,65v39,-17,68,-47,87,-14v19,6,29,14,21,36v-21,64,-81,136,-143,160v-17,-2,-39,-23,-28,-33v8,2,16,9,22,8v53,-21,128,-84,128,-148v0,-10,-5,-15,-16,-15v-28,0,-53,19,-73,40v-9,-6,-12,-14,-17,-26","w":156},{"d":"205,-107v20,-51,41,-181,101,-124v0,2,-3,4,-8,4v-31,-2,-31,22,-48,58v-16,34,-26,79,-38,132v6,-7,12,-32,21,-24r-25,66v-3,-1,-20,-3,-20,-20v0,-14,5,-39,13,-75v-44,-3,-77,-3,-99,1v-6,18,-33,77,-42,91v-5,16,-32,2,-31,-4v0,-15,16,-22,13,-43v0,-4,1,-5,3,-5v3,-1,14,11,13,15v7,-8,13,-20,19,-38v-11,-25,-18,-34,16,-36v9,-19,34,-86,38,-106v-23,19,-106,18,-86,65v-10,6,-12,-9,-17,-19v-24,-63,100,-31,113,-74v24,10,12,27,-4,68r-27,67v32,3,63,3,95,1","w":252},{"d":"149,-224v16,-18,34,-37,54,-15v27,0,25,13,22,38v-11,74,-62,234,-149,200v-35,-14,-54,-17,-54,-56v-1,-56,43,-149,75,-176v20,-17,31,-5,52,9xm125,-223v-44,18,-97,137,-72,194v40,40,80,9,110,-54v21,-44,36,-89,39,-133v1,-9,-2,-13,-7,-13v-31,12,-51,39,-85,63v-2,0,-3,0,-3,-2v8,-19,22,-34,34,-48v-6,-5,-11,-7,-16,-7xm162,-257v-8,-16,28,-61,51,-40v0,3,-3,5,-8,5v-18,3,-28,25,-43,35","w":209},{"d":"122,-138v7,-6,27,5,20,11v-16,29,-27,63,-35,102v5,-8,5,-15,14,-25v4,0,3,4,2,6v-16,22,-5,61,-34,41v-9,-25,10,-60,14,-80v-23,37,-43,64,-57,81v-10,12,-36,3,-34,-15v4,-34,9,-61,18,-83v-2,2,-7,8,-12,9v7,-18,15,-30,23,-44v5,-9,17,-2,23,5v-14,19,-40,89,-30,120v30,-18,69,-99,88,-128xm59,-211v24,-21,48,20,53,36v0,3,-1,4,-3,4v-15,-10,-25,-31,-43,-35v-5,0,-7,-2,-7,-5","w":142},{"d":"134,-255v9,0,33,8,43,22v-4,11,-26,-6,-30,-3v-40,18,-85,160,-89,226v-1,23,22,20,33,36v1,4,-3,4,-5,4v-33,-8,-52,-11,-50,-46v3,-58,57,-239,98,-239","w":143},{"d":"28,4v-11,-6,-19,-9,-16,-25v21,-105,46,-212,96,-267v14,-16,33,10,42,19v-3,8,-16,-4,-20,-2v-7,0,-15,8,-24,22v-32,51,-55,118,-69,201v24,-41,39,-60,66,-88v17,-18,45,1,43,19v-6,48,-23,105,-60,122v-7,1,-25,-13,-34,-31v8,-7,20,13,26,9v30,-10,44,-68,47,-104v0,-11,-8,-10,-14,-5v-29,24,-67,82,-78,124v-1,4,-3,6,-5,6","w":150},{"d":"205,-214v15,-8,38,-50,57,-17v-18,31,-88,97,-114,117v26,33,50,86,88,97v5,3,18,-13,22,-3v-5,10,-17,24,-33,32v-33,-10,-77,-92,-98,-109v-11,6,-15,-1,-16,-11v-1,-14,16,-19,27,-15v20,-14,67,-61,78,-80v-7,-4,-11,-8,-11,-11xm157,-230v-28,63,-75,149,-78,232v0,2,-1,3,-3,3v-7,-2,-29,-13,-19,-26v17,-60,42,-127,66,-184v-41,12,-67,17,-80,42v-2,1,10,25,0,26v-11,-5,-16,-22,-19,-39v5,-35,86,-30,121,-63v3,0,12,6,12,9","w":264},{"d":"125,-202v-2,35,-72,43,-76,3v-2,-11,7,-22,13,-14v0,29,21,40,40,23v7,-4,8,-26,21,-23v3,3,4,7,2,11"},{"d":"101,-54v-23,34,-52,61,-62,59v-10,-2,-37,-15,-34,-32v2,-16,7,-35,13,-54v-5,-2,-11,-7,-3,-8v2,0,4,0,6,1v15,-29,20,-51,43,-60v2,0,6,2,14,5v-3,-7,6,-6,12,-6v16,-1,1,24,7,39v0,35,-28,44,-61,34v-5,11,-20,56,-5,66v22,-3,37,-25,66,-47v2,0,4,1,4,3xm78,-128v-1,-9,-3,-8,-8,-4v-11,9,-21,26,-30,49v29,1,45,-2,38,-45xm45,-211v24,-21,48,20,53,36v0,3,-1,4,-3,4v-15,-10,-25,-31,-43,-35v-5,0,-7,-2,-7,-5","w":105},{"d":"109,-238v-20,16,-38,69,-32,98v0,2,-1,3,-3,3v-3,-3,-24,-4,-22,-14v3,-13,12,-49,19,-64v-8,8,-18,22,-27,28v-7,-3,-4,-9,3,-13v19,-10,32,-64,62,-38xm198,-233v-44,81,-107,147,-151,228v-4,5,5,22,-6,18v-9,-6,-21,-13,-11,-27r127,-181v15,-24,24,-33,18,-51v5,-7,21,3,23,13xm181,-71v26,2,34,3,44,15v-3,3,-1,11,0,17v-4,31,-48,45,-79,50v-10,2,-29,-16,-22,-20v34,10,78,-20,90,-40v-8,-18,-60,10,-47,-30v17,-11,38,-17,42,-33v-11,-13,-39,11,-42,18v-5,-2,-7,-11,-7,-15v-1,-9,44,-40,51,-18v20,28,1,37,-30,56","w":249},{"d":"23,-89v18,-17,84,8,109,-8v7,5,-1,25,-13,22v-33,-1,-75,-8,-96,2v-5,-3,0,-6,0,-16","w":152},{"d":"76,-133v1,-1,17,-9,24,-9v8,-1,22,18,20,31v-5,47,-21,108,-64,116v-25,-1,-54,-10,-51,-38v4,-34,24,-102,52,-113v4,0,10,5,19,13xm43,-5v39,-9,55,-69,58,-116v-6,-22,-34,14,-44,3v-14,18,-30,55,-31,87v0,18,6,26,17,26","w":125},{"d":"257,-230v10,-13,19,-3,25,8v-1,10,-17,23,-24,32v-13,46,-47,131,-38,178v1,7,-19,27,-26,11v-2,-51,-59,-132,-78,-167v-8,27,-33,89,-47,123v3,-1,8,5,15,18v2,15,-35,-1,-35,24v-6,17,-35,-3,-32,-8v0,-6,10,-15,28,-26v14,-22,50,-118,60,-147v-11,-16,-17,-26,-34,-30v-7,-3,-23,19,-31,9v25,-32,47,-54,73,-11v4,-8,0,-14,4,-18v13,1,16,24,7,36v24,32,68,107,81,146v4,-27,14,-71,30,-132v-3,-2,-13,-8,-14,-14v13,-3,17,-7,36,-32xm237,-291v17,6,1,18,-8,27v-18,29,-29,-16,-51,-18v-2,-3,-16,11,-23,20v-15,-9,0,-18,8,-28v21,-26,29,15,51,19v4,3,16,-11,23,-20","w":251},{"d":"158,-252v79,34,-24,91,-48,117v3,5,51,30,49,56v-4,43,-71,87,-110,84v-7,0,-14,-5,-20,-16v-14,-11,-39,-25,-23,-49v13,-20,57,-55,81,-75v-52,-37,-16,-100,37,-124v4,-2,34,14,20,20v-37,-8,-86,68,-46,94v24,-27,85,-64,55,-101v0,-4,1,-6,5,-6xm55,-17v30,0,85,-45,84,-72v0,-9,-14,-22,-40,-36v-26,27,-60,52,-72,90v0,12,9,18,28,18","w":171},{"d":"99,-168v20,-3,49,-8,49,17v0,76,-36,199,-116,144v-54,-37,9,-135,31,-164v15,-11,13,-6,36,3xm66,-6v42,-10,56,-81,59,-132v1,-26,-21,-17,-39,-20v-29,17,-54,76,-54,122v0,16,16,29,34,30","w":152},{"d":"113,-151v6,1,24,9,15,24v-4,14,-16,23,-2,36v0,5,-10,7,-13,1v-16,28,-32,85,-60,95v-6,-2,-13,-6,-19,-2v-23,-10,-14,-91,-8,-113v-3,-1,-14,23,-22,14v10,-18,12,-15,29,-41v8,-12,21,-4,28,6v-22,24,-32,93,-12,122v22,-16,41,-63,50,-91v-6,-15,1,-43,14,-51","w":124},{"d":"115,-137v3,1,20,8,15,20v-13,29,-18,55,-22,75v6,-4,13,-22,20,-14v-13,18,-19,42,-28,60v-4,-1,-22,-7,-17,-18v5,-30,12,-55,19,-75v-19,27,-55,82,-87,94v-8,-3,-23,-13,-18,-25v9,-46,42,-108,83,-127v3,0,17,8,25,20v-4,7,-21,-7,-26,3v-23,17,-62,73,-65,108v4,9,11,3,18,-4v29,-29,69,-79,83,-117xm106,-171v-8,-16,28,-61,51,-40v0,3,-3,5,-8,5v-18,3,-28,25,-43,35","w":140},{"d":"31,-120v-9,-9,-1,-12,8,-11v11,9,20,37,48,53v4,1,12,13,3,14v-21,3,-57,13,-66,26v-2,0,-4,-1,-6,-6v-9,-25,29,-21,49,-32v-6,-15,-29,-31,-36,-44","w":106},{"d":"40,-110v2,0,18,2,16,9v-3,9,-11,47,-35,30v10,-15,9,-33,19,-39xm15,-38v2,0,19,2,17,9v-2,8,-11,48,-35,30v7,-8,9,-30,18,-39","w":72},{"d":"39,-147v37,16,15,39,1,89v14,-23,49,-80,76,-87v39,5,11,70,7,96v5,-6,7,-12,16,-19v4,17,-27,41,-32,68v-3,11,-20,1,-22,-3v11,-28,38,-92,27,-127v-36,28,-61,69,-84,120v-6,14,-17,8,-26,2v12,-29,37,-89,34,-126v-8,5,-15,20,-24,17v9,-10,15,-23,27,-30xm147,-205v17,6,1,18,-8,27v-18,29,-29,-16,-51,-18v-2,-3,-16,11,-23,20v-15,-9,0,-18,8,-28v21,-26,29,15,51,19v4,3,16,-11,23,-20","w":151},{"d":"137,-229v0,32,-19,47,-31,97v-6,10,32,21,17,32v-80,3,-12,143,-118,128v-3,0,-4,-2,-4,-5v13,-13,36,-1,41,-27v11,-23,20,-97,61,-107v-38,-29,10,-76,11,-117v4,-16,-23,-9,-27,-21v0,-3,1,-4,4,-4v27,1,46,2,46,24","w":143},{"d":"103,-178v18,-13,27,-40,46,-14v-1,12,-38,33,-46,14xm158,-259v-9,8,-29,-13,-41,3v-21,30,-35,71,-50,114v19,6,50,-8,55,15v0,10,-8,39,-23,86v3,1,12,-19,18,-16v0,9,-26,45,-29,58v-5,8,-20,0,-24,-5v15,-27,30,-76,36,-117v-3,-10,-27,-3,-39,-5v-24,66,-49,154,-51,217v-5,0,-25,-13,-22,-20v3,-41,51,-190,52,-196v-11,1,-25,1,-24,-9v14,-11,34,1,37,-32v18,-46,26,-89,56,-115v12,-11,44,15,49,22","w":130},{"d":"36,-142v6,3,22,2,22,15v0,10,-8,38,-23,86v6,-1,13,-21,18,-16v-4,11,-29,47,-33,60v-5,4,-17,-4,-20,-7v11,-22,41,-98,34,-124v-8,-1,-15,20,-22,14v-1,-2,22,-31,24,-28xm36,-171v-8,-16,28,-61,51,-40v0,3,-3,5,-8,5v-18,3,-28,25,-43,35","w":68},{"d":"101,-54v-23,34,-52,61,-62,59v-10,-2,-37,-15,-34,-32v2,-16,7,-35,13,-54v-5,-2,-11,-7,-3,-8v2,0,4,0,6,1v15,-29,20,-51,43,-60v2,0,6,2,14,5v-3,-7,6,-6,12,-6v16,-1,1,24,7,39v0,35,-28,44,-61,34v-5,11,-20,56,-5,66v22,-3,37,-25,66,-47v2,0,4,1,4,3xm78,-128v-1,-9,-3,-8,-8,-4v-11,9,-21,26,-30,49v29,1,45,-2,38,-45xm101,-218v4,14,15,39,27,44v1,2,-16,9,-17,8v-11,-5,-14,-21,-21,-34v-19,5,-34,27,-53,34v-3,-6,-7,-12,3,-14v3,3,40,-25,54,-39v4,-2,7,-1,7,1","w":105},{"d":"115,-137v3,1,20,8,15,20v-13,29,-18,55,-22,75v6,-4,13,-22,20,-14v-13,18,-19,42,-28,60v-4,-1,-22,-7,-17,-18v5,-30,12,-55,19,-75v-19,27,-55,82,-87,94v-8,-3,-23,-13,-18,-25v9,-46,42,-108,83,-127v3,0,17,8,25,20v-4,7,-21,-7,-26,3v-23,17,-62,73,-65,108v4,9,11,3,18,-4v29,-29,69,-79,83,-117xm68,-211v24,-21,48,20,53,36v0,3,-1,4,-3,4v-15,-10,-25,-31,-43,-35v-5,0,-7,-2,-7,-5","w":140},{"d":"149,-224v16,-18,34,-37,54,-15v27,0,25,13,22,38v-11,74,-62,234,-149,200v-35,-14,-54,-17,-54,-56v-1,-56,43,-149,75,-176v20,-17,31,-5,52,9xm125,-223v-44,18,-97,137,-72,194v40,40,80,9,110,-54v21,-44,36,-89,39,-133v1,-9,-2,-13,-7,-13v-31,12,-51,39,-85,63v-2,0,-3,0,-3,-2v8,-19,22,-34,34,-48v-6,-5,-11,-7,-16,-7xm200,-311v17,4,5,46,-5,52v-15,-9,3,-35,5,-52xm162,-311v18,4,6,44,-3,52v-15,-6,0,-35,3,-52","w":209},{"d":"101,-54v-23,34,-52,61,-62,59v-10,-2,-37,-15,-34,-32v2,-16,7,-35,13,-54v-5,-2,-11,-7,-3,-8v2,0,4,0,6,1v15,-29,20,-51,43,-60v2,0,6,2,14,5v-3,-7,6,-6,12,-6v16,-1,1,24,7,39v0,35,-28,44,-61,34v-5,11,-20,56,-5,66v22,-3,37,-25,66,-47v2,0,4,1,4,3xm78,-128v-1,-9,-3,-8,-8,-4v-11,9,-21,26,-30,49v29,1,45,-2,38,-45","w":105},{"d":"36,-142v6,3,22,2,22,15v0,10,-8,38,-23,86v6,-1,13,-21,18,-16v-4,11,-29,47,-33,60v-5,4,-17,-4,-20,-7v11,-22,41,-98,34,-124v-8,-1,-15,20,-22,14v-1,-2,22,-31,24,-28xm72,-218v17,7,9,41,-5,52v-15,-10,3,-34,5,-52xm45,-203v-1,12,-17,57,-21,27v5,-12,6,-28,10,-42v2,-1,11,9,11,15","w":68},{"d":"44,-179v15,0,29,-44,46,-13v1,8,-37,36,-46,13xm7,-98v7,-11,20,-27,35,-47v5,1,23,9,17,23v-16,75,-31,132,-45,169v-42,110,-97,144,-167,68v0,-3,2,-5,5,-5v20,12,40,26,56,26v48,0,89,-71,121,-213r9,-44v-9,4,-21,35,-31,23","w":68},{"d":"121,-146v14,7,41,15,32,41v-14,40,-37,103,-84,110v-24,-3,-58,-9,-58,-31v0,-74,32,-153,67,-198v30,-38,42,-44,75,-14v-3,8,-18,-3,-28,4v-47,32,-92,122,-91,200v0,16,7,25,21,26v43,-5,77,-71,77,-113v0,-6,-2,-9,-6,-9v-21,3,-41,14,-58,23v-4,0,-6,-2,-6,-5v14,-18,36,-28,59,-34","w":162},{"d":"120,-215v-10,32,-15,70,-51,70v-19,0,-36,-10,-35,-25v3,-26,22,-93,52,-62v20,-16,30,1,34,17xm148,-195v16,-24,23,-33,19,-51v4,-6,21,3,22,13v0,3,0,6,-3,10r-125,179v-17,28,-28,36,-22,54v-4,6,-22,-1,-22,-14v38,-68,89,-126,131,-191xm177,-65v-10,33,-13,69,-50,69v-20,0,-37,-10,-35,-25v3,-26,22,-94,52,-62v21,-15,29,2,33,18xm65,-152v20,0,38,-46,37,-74v-5,-6,-23,5,-29,3v-10,13,-18,32,-19,55v0,11,4,16,11,16xm131,-74v-9,13,-17,33,-20,55v5,29,25,17,35,-6v6,-13,21,-41,9,-53v-5,0,-20,5,-24,4","w":203},{"d":"121,-205v17,6,1,18,-8,27v-18,29,-29,-16,-51,-18v-2,-3,-16,11,-23,20v-15,-9,0,-18,8,-28v21,-26,29,15,51,19v4,3,16,-11,23,-20"},{"d":"184,-288v14,-15,33,8,42,19v-2,8,-16,-4,-19,-2v-7,0,-16,8,-25,22v-32,53,-55,122,-70,210v4,-3,13,-17,19,-19v3,0,4,1,1,5v-11,16,-18,33,-22,51v-7,11,-23,-1,-23,-12r13,-67v-21,27,-51,73,-81,86v-9,-2,-24,-13,-21,-25v10,-46,43,-107,83,-127v4,0,18,8,26,20v-4,7,-21,-7,-26,3v-23,16,-60,73,-63,106v1,10,9,6,17,-2v25,-27,68,-73,78,-110v16,-61,39,-125,71,-158","w":144},{"d":"116,4v-13,2,-25,-23,-34,-15v-17,28,-80,12,-77,-22v4,-34,23,-104,52,-114v4,0,10,4,19,12v24,-12,27,-15,41,8v18,-20,17,-26,39,-16v-3,-4,1,-7,6,-6v21,-5,7,22,12,39v-1,32,-25,45,-58,34v-9,19,-14,37,-14,55v0,8,2,11,6,11v23,-4,45,-34,67,-47v2,0,3,1,3,3v-16,24,-52,64,-62,58xm118,-83v36,10,45,-22,35,-52v-17,8,-24,26,-35,52xm97,-88v0,-13,9,-34,0,-42v-16,-1,-28,18,-40,10v-13,16,-30,59,-31,88v-1,33,25,30,40,12v10,-11,20,-31,29,-61v-6,-3,-10,-7,-4,-9v2,0,4,1,6,2","w":182},{"w":64},{"d":"211,-142v37,2,68,-17,71,16v-2,11,-9,10,-25,13v-6,1,-9,-10,-14,-10v-15,0,-28,1,-39,2v-7,20,-34,72,-45,85v46,0,81,1,105,4v10,1,4,-16,13,-15v3,-1,8,11,10,26v-2,10,-10,16,-17,19v-41,-10,-84,-18,-128,-12v-14,17,-53,30,-73,12v-31,-8,-46,-20,-46,-55v0,-56,44,-146,75,-175v14,-13,27,-8,46,-1v36,-26,112,12,152,14v6,-8,10,-11,13,-11v4,1,5,7,5,19v0,14,-16,15,-26,12r1,1v-18,-6,-39,-9,-66,-14v8,24,-1,32,-12,70xm108,-9v-3,-17,3,-25,23,-24v11,-9,36,-51,42,-67v-15,-21,-10,-35,14,-36v7,-19,22,-56,19,-79v-61,-12,-72,21,-72,87v0,10,-9,11,-9,1v0,-34,3,-66,12,-96v-9,-1,-15,0,-19,3v-31,27,-94,134,-65,191v9,11,34,28,55,20","w":297},{"d":"101,-54v-23,34,-52,61,-62,59v-10,-2,-37,-15,-34,-32v2,-16,7,-35,13,-54v-5,-2,-11,-7,-3,-8v2,0,4,0,6,1v15,-29,20,-51,43,-60v2,0,6,2,14,5v-3,-7,6,-6,12,-6v16,-1,1,24,7,39v0,35,-28,44,-61,34v-5,11,-20,56,-5,66v22,-3,37,-25,66,-47v2,0,4,1,4,3xm78,-128v-1,-9,-3,-8,-8,-4v-11,9,-21,26,-30,49v29,1,45,-2,38,-45xm72,-171v-8,-16,28,-61,51,-40v0,3,-3,5,-8,5v-18,3,-28,25,-43,35","w":105},{"d":"110,-145v14,5,35,17,32,37v-6,48,-34,153,-85,95v1,-6,11,-1,16,-1v34,-5,48,-69,48,-104v0,-17,-13,-12,-21,-3v-68,67,-98,144,-102,271v0,6,-3,9,-5,9v-4,0,-23,-13,-18,-24v3,-80,54,-250,85,-304v15,-26,25,-13,48,2v-12,6,-24,-1,-34,21v-10,13,-28,59,-33,78v20,-30,38,-60,69,-77","w":148},{"d":"147,20v8,3,14,-13,18,-5v-7,18,-22,30,-28,29v-28,-9,-60,-72,-74,-107v-14,17,-24,38,-29,61v-1,5,-3,7,-5,7v-15,-6,-20,-7,-16,-26v20,-103,47,-213,96,-267v15,-16,32,11,43,19v-3,8,-17,-4,-21,-2v-7,0,-15,8,-24,22v-32,51,-54,118,-68,201v0,-6,20,-24,17,-40v0,-3,4,-5,12,-7v20,-27,29,-42,48,-51v5,4,30,15,23,28v-3,12,-5,28,-16,31v-5,0,-20,-6,-18,-9v6,-5,16,-20,10,-33v-16,8,-27,24,-37,43v22,59,35,94,69,106","w":139},{"d":"91,-259v20,-38,37,-25,67,-1v-8,11,-23,-10,-37,0v-12,8,-30,47,-55,118v23,5,33,0,40,7v-8,10,-32,6,-46,9v-24,70,-45,146,-50,217v-5,-1,-27,-14,-22,-22v10,-52,27,-117,52,-194v-18,4,-32,-6,-18,-12v8,-2,22,-3,24,-10v19,-55,34,-92,45,-112","w":87},{"d":"171,-233v43,10,71,15,71,54v0,78,-50,134,-108,160v-10,8,-49,9,-56,-2v-30,-2,-54,-16,-53,-49v1,-83,53,-157,119,-170v8,-1,27,2,27,7xm46,-73v-2,42,44,48,82,38v47,-13,92,-54,92,-124v0,-43,-23,-61,-65,-66v-44,-6,-105,90,-109,152xm128,-139v22,14,47,-17,47,-33v0,-13,-24,-12,-36,-7v-3,13,-6,27,-11,40xm179,-184v29,17,-10,57,-26,60v-5,0,-12,-2,-20,-6v19,32,30,48,35,48v4,2,11,-9,13,-3v-3,10,-12,19,-16,18v-22,-6,-23,-22,-42,-54v-8,20,-12,44,-27,58v-20,-1,-6,-22,-4,-34v1,0,3,2,6,6v11,-25,18,-42,29,-84v-20,3,-17,9,-19,26v-20,-15,-7,-37,21,-39v0,-8,5,-17,10,-3v23,-3,32,-11,40,7","w":235},{"d":"201,-41v9,-9,10,-18,19,-22v3,0,2,4,1,7v-8,10,-21,38,-37,64v-4,2,-22,-5,-20,-8v14,-32,33,-87,34,-125v0,-4,-2,-6,-5,-6v-35,20,-74,93,-88,134v-8,-1,-24,-8,-16,-17v15,-38,23,-76,23,-112v0,-4,-2,-5,-4,-5v-36,22,-66,95,-86,135v-1,0,-26,-10,-13,-18v9,-16,28,-92,25,-114r-23,20v-3,-14,17,-28,25,-38v3,5,22,6,20,19v-3,23,-7,43,-13,63v25,-40,36,-69,65,-83v7,3,23,7,23,20v0,24,-2,45,-8,64v27,-38,40,-69,70,-84v9,3,27,8,26,24v-2,28,-7,56,-18,82","w":231},{"d":"242,-213v5,-26,20,-20,27,-3v0,6,-8,19,-22,39v-25,71,-44,153,-75,217v-18,21,-38,-2,-64,-21v17,-13,37,20,51,-10v19,-40,40,-88,57,-147v-22,39,-46,72,-72,99v-7,7,-13,11,-18,11v-21,-14,-45,-17,-42,-52v2,-25,13,-67,36,-124v-34,15,-60,20,-71,45v0,7,10,20,3,24v-22,-17,-41,-53,-6,-63v23,-7,51,-16,85,-28v11,-24,25,-13,40,3v0,3,-6,6,-16,8v-22,28,-46,98,-48,143v-1,26,14,32,27,19v43,-41,77,-96,108,-160","w":240},{"d":"115,-137v3,1,20,8,15,20v-13,29,-18,55,-22,75v6,-4,13,-22,20,-14v-13,18,-19,42,-28,60v-4,-1,-22,-7,-17,-18v5,-30,12,-55,19,-75v-19,27,-55,82,-87,94v-8,-3,-23,-13,-18,-25v9,-46,42,-108,83,-127v3,0,17,8,25,20v-4,7,-21,-7,-26,3v-23,17,-62,73,-65,108v4,9,11,3,18,-4v29,-29,69,-79,83,-117xm134,-218v17,4,5,46,-5,52v-15,-9,3,-35,5,-52xm96,-218v18,4,6,44,-3,52v-15,-6,0,-35,3,-52","w":140},{"d":"56,-176v19,-35,52,-94,86,-45v-6,4,-20,-7,-25,0v-38,30,-104,158,-35,198v8,4,-2,19,-2,21v-34,-1,-61,-2,-81,9v-4,-21,7,-35,34,-28v16,1,27,2,32,2v-51,-34,-38,-101,-9,-157xm122,-186v10,-27,31,-46,61,-52v7,0,13,3,18,10v22,1,20,20,22,45v3,54,-48,156,-86,166v44,1,40,-4,65,-22v4,0,3,4,2,6v-10,15,-17,40,-43,34v-15,-3,-34,-3,-55,-3v3,-5,5,-14,11,-15v34,-13,87,-117,83,-169v0,-14,-2,-35,-15,-34v-24,2,-37,21,-60,36v-2,0,-3,0,-3,-2","w":217},{"d":"229,-239v-18,20,-34,141,-32,186v1,30,4,39,22,31v8,11,-21,21,-34,27v-11,0,-15,-29,-12,-87v-28,2,-55,3,-80,6r-35,43v17,-6,17,10,22,22v-1,8,-9,3,-15,3v-8,-3,-38,13,-47,21v-9,-4,-26,-18,-11,-27v11,-7,48,-38,55,-48v-5,-30,0,-31,28,-33v29,-35,52,-70,70,-104v-24,19,-104,13,-98,60v1,4,-1,6,-4,6v-26,-29,-21,-59,28,-64v36,-3,72,-8,86,-33v3,-1,14,8,15,14v-15,33,-58,95,-78,120v28,0,49,-1,65,-2v2,-26,14,-82,19,-115v2,-14,21,-32,36,-26xm236,-291v17,6,1,18,-8,27v-18,29,-29,-16,-51,-18v-2,-3,-16,11,-23,20v-15,-9,0,-18,8,-28v21,-26,29,15,51,19v4,3,16,-11,23,-20","w":230},{"d":"156,-135v4,-19,27,-8,29,5v1,14,-18,32,-1,39v5,3,4,11,-2,10v-1,1,-10,-5,-12,-6v-15,41,-29,68,-38,83v-10,16,-35,6,-38,-9v-5,-21,-8,-39,-8,-52v-11,13,-46,60,-59,69v-2,0,-16,-6,-18,-12v19,-19,23,-78,21,-114v-2,-2,-17,30,-24,18v7,-13,23,-46,47,-35v3,39,-3,80,-12,109v35,-31,41,-62,54,-106v5,-16,22,-5,28,4v-4,20,-20,33,-18,59v1,18,1,49,12,62v19,-24,37,-72,41,-86v-12,-8,-5,-24,-2,-38","w":185},{"d":"36,-142v6,3,22,2,22,15v0,10,-8,38,-23,86v6,-1,13,-21,18,-16v-4,11,-29,47,-33,60v-5,4,-17,-4,-20,-7v11,-22,41,-98,34,-124v-8,-1,-15,20,-22,14v-1,-2,22,-31,24,-28xm14,-211v24,-21,48,20,53,36v0,3,-1,4,-3,4v-15,-10,-25,-31,-43,-35v-5,0,-7,-2,-7,-5","w":68},{"d":"35,-19v19,-13,73,-89,79,-114v4,-18,7,-13,19,-4v4,3,5,7,3,15v-16,75,-31,132,-45,169v-42,110,-97,144,-167,68v0,-4,2,-5,5,-5v56,44,95,31,131,-43v19,-39,39,-101,51,-165v-23,34,-54,87,-88,104v-7,-4,-12,-10,-16,-17v15,-17,29,-82,25,-116v-3,1,-22,24,-24,15v5,-4,20,-42,34,-32v12,-2,15,-5,16,7v1,16,-17,107,-23,118xm118,-218v17,4,5,46,-5,52v-15,-9,3,-35,5,-52xm80,-218v18,4,6,44,-3,52v-15,-6,0,-35,3,-52","w":146},{"d":"76,-133v1,-1,17,-9,24,-9v8,-1,22,18,20,31v-5,47,-21,108,-64,116v-25,-1,-54,-10,-51,-38v4,-34,24,-102,52,-113v4,0,10,5,19,13xm43,-5v39,-9,55,-69,58,-116v-6,-22,-34,14,-44,3v-14,18,-30,55,-31,87v0,18,6,26,17,26xm109,-218v4,14,15,39,27,44v1,2,-16,9,-17,8v-11,-5,-14,-21,-21,-34v-19,5,-34,27,-53,34v-3,-6,-7,-12,3,-14v3,3,40,-25,54,-39v4,-2,7,-1,7,1","w":125},{"d":"75,-167v7,-17,23,-7,32,3v0,3,-3,5,-9,5v-23,34,-55,104,-45,158v0,4,-1,6,-5,6v-18,-5,-28,-10,-22,-33v10,-40,18,-72,30,-96v-17,18,-19,27,-46,46v-7,0,-7,-7,-3,-11v22,-17,44,-46,62,-79v1,0,3,0,6,1","w":90},{"d":"228,-223v14,10,3,38,-18,30v-21,-8,-47,-10,-75,-15v-8,32,-13,57,-17,73v12,5,85,-23,82,17v0,4,-4,6,-13,8v-20,6,-15,-6,-27,-7v-26,0,-42,1,-48,2v-12,30,-14,68,-40,83v32,-3,55,1,110,5v8,1,8,-20,16,-7v7,12,5,34,-12,36v-37,-12,-88,-16,-136,-11v-10,9,-17,13,-19,13v-6,-9,-13,-30,1,-32v5,-1,14,-3,30,-4v12,-23,22,-45,29,-67v-6,-10,-16,-34,11,-33r20,-79v-36,-6,-71,-14,-73,22v-3,7,9,28,1,33v-18,-26,-24,-84,22,-84v12,0,31,2,56,7v8,-5,12,-11,15,-3v0,2,0,3,-1,6v5,1,27,6,69,16v8,2,12,-6,17,-9xm158,-257v-8,-16,28,-61,51,-40v0,3,-3,5,-8,5v-18,3,-28,25,-43,35","w":217},{"d":"111,-218v17,4,5,46,-5,52v-15,-9,3,-35,5,-52xm73,-218v18,4,6,44,-3,52v-15,-6,0,-35,3,-52"},{"d":"130,-250v-5,20,-24,45,-26,68v-4,5,-17,10,-17,0v5,-26,13,-74,43,-68xm91,-250v-6,20,-25,47,-26,68v-4,4,-16,10,-18,1v6,-25,14,-75,44,-69","w":111},{"d":"79,-233v25,-4,73,21,94,31v11,-5,22,-29,5,-33v-3,0,-6,2,-10,5v-39,-17,-107,-44,-120,15v0,23,32,58,50,70v-56,43,-88,64,-88,92v0,13,10,26,20,31v18,52,171,10,125,-40v-8,0,-27,20,-26,34v-20,13,-97,16,-96,-15v12,-41,38,-53,80,-90v24,10,41,-26,17,-33v-7,1,-17,8,-22,12v-26,-31,-42,-47,-29,-79","w":160},{"d":"28,4v-11,-6,-19,-9,-16,-25v21,-104,46,-213,96,-267v14,-16,33,10,42,19v-3,8,-16,-4,-20,-2v-7,0,-15,8,-24,22v-34,53,-56,127,-70,210v4,-3,13,-17,19,-19v3,0,3,1,0,5v-15,17,-15,42,-27,57","w":68},{"d":"152,-129v-4,7,-28,24,-35,26v-10,3,-34,-22,-46,-22v-8,0,-20,9,-27,17v-4,1,-10,-7,-10,-9v8,-10,31,-37,47,-22v16,15,41,26,57,5v0,-3,2,-4,4,-4v4,-1,10,9,10,9xm142,-90v-4,8,-27,23,-35,26v-5,2,-35,-22,-46,-22v-8,0,-20,8,-27,17v-4,1,-10,-7,-10,-9v3,-8,26,-24,34,-26v16,3,53,39,70,9v0,-2,2,-4,4,-4v3,0,10,8,10,9","w":162},{"d":"229,-239v-18,20,-34,141,-32,186v1,30,4,39,22,31v8,11,-21,21,-34,27v-11,0,-15,-29,-12,-87v-28,2,-55,3,-80,6r-35,43v17,-6,17,10,22,22v-1,8,-9,3,-15,3v-8,-3,-38,13,-47,21v-9,-4,-26,-18,-11,-27v11,-7,48,-38,55,-48v-5,-30,0,-31,28,-33v29,-35,52,-70,70,-104v-24,19,-104,13,-98,60v1,4,-1,6,-4,6v-26,-29,-21,-59,28,-64v36,-3,72,-8,86,-33v3,-1,14,8,15,14v-15,33,-58,95,-78,120v28,0,49,-1,65,-2v2,-26,14,-82,19,-115v2,-14,21,-32,36,-26xm224,-304v17,4,5,46,-5,52v-15,-9,3,-35,5,-52xm186,-304v18,4,6,44,-3,52v-15,-6,0,-35,3,-52","w":230},{"d":"39,-179v23,-12,26,-39,46,-13v0,7,-37,36,-46,13xm12,-114v9,-16,22,-36,42,-22v5,3,4,9,3,16v-3,16,-10,42,-22,79v3,-2,10,-13,17,-18v2,9,-28,44,-30,59v-4,10,-18,0,-22,-4v11,-22,40,-94,34,-124v-8,-1,-16,21,-22,14","w":68},{"d":"30,-9v41,-23,71,-86,84,-138v5,1,23,9,17,23v-36,187,-82,280,-140,280v-21,0,-53,-15,-71,-41v0,-3,2,-5,5,-5v20,12,40,26,56,26v48,0,89,-71,121,-213v-27,41,-36,66,-67,82v-70,-21,-2,-140,38,-151v13,1,19,10,30,22v-7,9,-25,-9,-34,4v-19,19,-46,63,-47,98v0,9,3,13,8,13","w":139},{"d":"228,-223v14,10,3,38,-18,30v-21,-8,-47,-10,-75,-15v-8,32,-13,57,-17,73v12,5,85,-23,82,17v0,4,-4,6,-13,8v-20,6,-15,-6,-27,-7v-26,0,-42,1,-48,2v-12,30,-14,68,-40,83v32,-3,55,1,110,5v8,1,8,-20,16,-7v7,12,5,34,-12,36v-37,-12,-88,-16,-136,-11v-10,9,-17,13,-19,13v-6,-9,-13,-30,1,-32v5,-1,14,-3,30,-4v12,-23,22,-45,29,-67v-6,-10,-16,-34,11,-33r20,-79v-36,-6,-71,-14,-73,22v-3,7,9,28,1,33v-18,-26,-24,-84,22,-84v12,0,31,2,56,7v8,-5,12,-11,15,-3v0,2,0,3,-1,6v5,1,27,6,69,16v8,2,12,-6,17,-9xm189,-304v4,14,15,39,27,44v1,2,-16,9,-17,8v-11,-5,-14,-21,-21,-34v-19,5,-34,27,-53,34v-3,-6,-7,-12,3,-14v3,3,40,-25,54,-39v4,-2,7,-1,7,1","w":217},{"d":"148,-149v22,9,1,25,-11,36v-24,37,-40,-21,-68,-24v-4,-1,-12,5,-26,20v0,4,-2,6,-4,6v-21,-10,-1,-24,10,-37v29,-35,37,20,68,25v5,3,21,-14,31,-26","w":162},{"d":"170,-223r-118,179v-16,28,-26,36,-22,53v-3,15,-19,0,-24,-4v-6,-5,-5,-12,0,-19r120,-181v13,-24,23,-31,17,-49v5,-11,28,2,30,11v0,3,-1,6,-3,10","w":143},{"d":"212,-233v12,-10,42,-22,43,12v-13,15,-57,10,-83,16v-18,36,-53,149,-61,197v-4,21,-19,15,-29,5v4,-21,-3,-72,25,-64v2,-11,43,-131,45,-136v-40,4,-100,9,-105,43v-1,7,8,21,13,35v0,6,-7,5,-9,1v-22,-31,-40,-71,13,-85v32,-8,65,-14,98,-17v8,-18,9,-14,22,-3v3,0,12,-2,28,-4","w":204}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-340-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);})("OB^8xhm=&?,5Ouo9~hPdKBK,nLm8^h,5nL(d&?G6^]gC2#=U]TF{~QR[^B^{~QK[2?m{~QR[^hm{~QR[^Q^{~QR#2hm{~QKd4w({~QR[2Q]gn.H[4BHdn.Hd472=n.H[4B(hn.Hd4728{or84wF74Pr84wF%:nG{~QR[^w]{~QR[^B({~QKd4?]{~QK[4Qm{~QR#:QG{~QKdmw%4+]r84wF%m8r847Rdmor84wFh47,{~QRd^B({~QR[2#({~QR[^BG{~QK[47({~QR#2#F{~QR[^7F{~QR[2?m{~QRd^BP{~QR[27P{~QR[^Q]{~QR[^h]2n.H[4BK[n.Hd47Fhn.H[4BN#n.H[4B*Zn.H[4BKIn.H[4B(7n.H[4BP%n.H[4BK=n.Hd4wNsm8r84w(7mor84wFT28r84wF%^or847KL4Pr84wF%4T${~QR[^wF{~QR[^7^{~QR[27m{~QR[27^{~QKr47(&n.Hd4wPo&Pr847]72Q[#n.Hd4w4Z*or84wNL4Pr84wFh2or84wFT478{~QR[27%{~QR[2Q^{~QR[27o{~QK[mwG{~QK[47F{~QRd^BGFSor84wF7^.%{~QRr:Q(in.Hd4wP7n.H[4h4In.H[4Bm7K8r84wFT^][Un.H[4BKdn.H[4BmoOor84wF%4]r84wFU2]({~QR[^7%{~QR[^wG{~QRrm7P{~?2[4w({~QR[2LKyn8r84w(7:]]{~QR[^Qm{~QR[^BP{~QR#2Qo~n.H[4BN[n.H[4B2In.Hd4wP%nPr{~QR[2L2dn.H[4BRFuwNPB.K(OS4m:a*G`QH]?n2^&x{~+3q%U7Toh6M$vyCA5|[rd#=8LIsZi9g,tD28n.H[4B*sn.H[4B4I{]r84w(T:Qo{~QK[4Qo{~QR[2h({~QKd4?PN`]r84wN#4`~qxor84wFo^]r84wFom8r84wF%2or847Rd4H8nn.H[4B4s?8r84wFh2]r847RrmPr84wF%mPr84wFUmQAwH8Z{~QRrm#q=QIm{~QR[2#PB(or84wFh^PP8n.Hd47NZn.Hd4wm%HPr847K[mor84wFo2Uo%K?m{~QR[2hG9n.H[4B2#G]r847R#4ur{~QKd4h(:GdG{~QR[2#HAn.H[4B4Ln.H[4B*ImH%{~QR[^wm{~QR[^7TM2TA{~QRd^w%{~QR[^Q%{~QR[2h]{~QR[2?G|n.H[4B*r:wFLn.H[4BHra7${~QR[^7P,n.]h4wRrn.H[4B]Tn.H[4B]%n.H[4BH[n.H[4B*L^]r84wFo^hML(]r84w(T2LG{~QRrmQ4qn.H[4QHdn.H[4BHZ{BAhn.H[4BPox]o{~QR[^QG{~QKr47^{~QR[2#mIn.H[4B]7n.H[4B^hn.H[4B2=4]r84wF7:]r84wF%:Pr847Rr^Pr847Kr4?r{~QKd^7({~QR[2#G$^8r84wF72nZ{S8*US6m[xBo=OuKUO`r$aQRC{w8US6RCxw8[Shroxh~=&ur6a?K5^UZ6x.o[&.4,+I=9&?2M2UZ|&#=|nUqD:6~I~8[5OQgMa#$I&?rCxI~#^Loh~.m{Shm|nuZ8&dTTSLT5~B]#~u%CxLm%~Bo|xUZMxIm=xhPA^`T$^h,dOwA$aB[9OdA$O?~x28A$n]=,{PA$nn=$OuTq")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":107,"face":{"font-family":"Pristina","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"3 6 4 2 4 4 6 8 2 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-153 -311 375 161","underline-thickness":"21.0938","underline-position":"-45.8789","unicode-range":"U+0020-U+F002"}}));
;

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

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

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

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

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

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

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

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

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

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

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

		// bind the function to the two event listeners
		return this.mouseover(handleHover).mouseout(handleHover);
	};
	
})(jQuery);;

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

(function($){

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

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

})(jQuery);;

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

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

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

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

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

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

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

})(jQuery);
;

Drupal.behaviors.fusionEqualheights = function (context) {
  if (jQuery().equalHeights) {
    $("#header-top-wrapper div.equal-heights div.content").equalHeights();
    $("#header-group-wrapper div.equal-heights div.content").equalHeights();
    $("#preface-top-wrapper div.equal-heights div.content").equalHeights();
    $("#preface-bottom div.equal-heights div.content").equalHeights();
    $("#sidebar-first div.equal-heights div.content").equalHeights();
    $("#content-top div.equal-heights div.content").equalHeights();
    $("#content-region div.equal-heights div.content").equalHeights();
    $("#content-bottom div.equal-heights div.content").equalHeights();
    $("#node-top div.equal-heights div.content").equalHeights();
    $("#node-bottom div.equal-heights div.content").equalHeights();
    $("#sidebar-last div.equal-heights div.content").equalHeights();
    $("#postscript-top div.equal-heights div.content").equalHeights();
    $("#postscript-bottom-wrapper div.equal-heights div.content").equalHeights();
    $("#footer-wrapper div.equal-heights div.content").equalHeights();
  }
};

Drupal.behaviors.fusionIE6fixes = function (context) {
  // IE6 & less-specific functions
  // Add hover class to primary menu li elements on hover
  if ($.browser.msie && ($.browser.version < 7)) {
    $('form input.form-submit').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('#primary-menu ul.sf-menu li.expanded').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('.sf-menu li').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('#search input#search_header').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
  };
};

Drupal.behaviors.fusionOverlabel = function (context) {
  if (jQuery().overlabel) {
    $("div.fusion-horiz-login label").overlabel();
  }
};

Drupal.behaviors.fusionSuperfish = function (context) {
  $("#primary-menu ul.sf-menu").superfish({
    hoverClass:  'sfHover',
    delay:       250,
    animation:   {opacity:'show',height:'show'},
    speed:       'fast',
    autoArrows:  false,
    dropShadows: false,
    disableHI:   true
  }).supposition();
};

Drupal.behaviors.fusionSuperfishBlocks = function (context) {
  $("div.block ul.sf-menu").superfish({
    hoverClass:  'sfHover',
    delay:       250,
    animation:   {opacity:'show',height:'show'},
    speed:       'fast',
    autoArrows:  false,
    dropShadows: false,
    disableHI:   true
  }).supposition();
};

Drupal.behaviors.fusionGridMask = function (context) {
  if ($('body.grid-mask-enabled').size() > 0) {
    var grid_width_pos = parseInt($('body').attr('class').indexOf('grid-width-')) + 11;
    var grid_width = $('body').attr('class').substring(grid_width_pos, grid_width_pos + 2);
    var grid = '<div id="grid-mask-overlay" class="full-width"><div class="row">';
    for (i = 1; i <= grid_width; i++) {
      grid += '<div class="block grid' + grid_width + '-1"><div class="inner"></div></div>';
    }
    grid += '</div></div>';
    $('body.grid-mask-enabled').prepend(grid);
    $('#grid-mask-overlay .row').addClass('grid' + grid_width + '-' + grid_width);
    $('#grid-mask-overlay .block .inner').height($('body').height());
  }
};

Drupal.behaviors.fusionGridMaskToggle = function (context) {
  if ($('body.grid-mask-enabled').size() > 0) {
    $('body.grid-mask-enabled').prepend('<div id="grid-mask-toggle">grid</div>');
    $('div#grid-mask-toggle')
      .toggle( function () {
        $(this).toggleClass('grid-on');
        $('body').toggleClass('grid-mask');
      },
      function() {
        $(this).toggleClass('grid-on');
        $('body').toggleClass('grid-mask');
      });
  }
};

Drupal.behaviors.fusionPanelsShowEdit = function (context) {
  // Sets parent row and block elements to have "overflow: visible" if editing Panel page
  if ($("#panels-edit-display-form").size() > 0 || $("#page-manager-edit").size() > 0) {
    $("#panels-edit-display-form").parents('.row, .block').css("overflow", "visible");
    $("#page-manager-edit").parents('.row, .block').css("overflow", "visible");
  }
};

Drupal.behaviors.fusionScreenshotpreview = function (context) {
  // Displays Skinr previews
  if ($('span.preview-icon').size() > 0) {
    // configure distance of preview from the cursor
    var xOffset = 20;
    var yOffset = 0;
  
    $('span.preview-icon').hover(function(e){
      var img_class = this.id;
      var caption = $(this).parent().text();
      // add preview markup
      $('body').append('<div id="screenshot">' +
                       '<div class="screenshot-preview ' + img_class + '" alt="preview"></div>' + 
                       '<div class="screenshot-caption">' + caption + '</div>' +
                       '</div>');
      $("#screenshot").hide();  // hide preview until dimensions are set
      $("#screenshot").css("left", (e.pageX + xOffset) + "px").css("top", (e.pageY + yOffset) + "px");  // set initial preview position
      // load image in order to set preview dimensions
      var img = new Image();
      img.onload = function() {
        var caption_height = parseFloat($("#screenshot .screenshot-caption").css("height"));
        $("#screenshot").css("height", img.height + caption_height);
        $("#screenshot").css("width", img.width);
        $("#screenshot ." + img_class).css("height", img.height);
        $("#screenshot ." + img_class).css("width", img.width);
        $("#screenshot .screenshot-caption").css("width", img.width - 10);
        $("#screenshot").fadeIn("fast");  // now show preview
      }
      img.src = $("." + img_class).css("background-image").replace(/^url|[\(\)\"]/g, '');
    },
    function(){
      $("#screenshot").remove();
    });
    // adjust preview position with cursor movement
    $("span.preview-icon").mousemove(function(e){
      $("#screenshot").css("left", (e.pageX + xOffset) + "px").css("top", (e.pageY + yOffset) + "px");
    });
  }
};
;
// $Id: jquery.corner.js,v 1.2 2010/09/17 21:36:06 eternalistic Exp $

/*!
 * jQuery corner plugin: simple corner rounding
 * Examples and documentation at: http://jquery.malsup.com/corner/
 * version 2.06 (16-FEB-2010)
 * Requires jQuery v1.3.2 or later
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Authors: Dave Methvin and Mike Alsup
 */

/**
 *  corner() takes a single string argument:  $('#myDiv').corner("effect corners width")
 *
 *  effect:  name of the effect to apply, such as round, bevel, notch, bite, etc (default is round). 
 *  corners: one or more of: top, bottom, tr, tl, br, or bl.  (default is all corners)
 *  width:   width of the effect; in the case of rounded corners this is the radius. 
 *           specify this value using the px suffix such as 10px (yes, it must be pixels).
 */
;(function($) { 

var style = document.createElement('div').style;
var moz = style['MozBorderRadius'] !== undefined;
var webkit = style['WebkitBorderRadius'] !== undefined;
var radius = style['BorderRadius'] !== undefined;
var mode = document.documentMode || 0;
var noBottomFold = $.browser.msie && (($.browser.version < 8 && !mode) || mode < 8);

var expr = $.browser.msie && (function() {
    var div = document.createElement('div');
    try { div.style.setExpression('width','0+0'); div.style.removeExpression('width'); }
    catch(e) { return false; }
    return true;
})();
    
function sz(el, p) { 
    return parseInt($.css(el,p))||0; 
};
function hex2(s) {
    var s = parseInt(s).toString(16);
    return ( s.length < 2 ) ? '0'+s : s;
};
function gpc(node) {
    for ( ; node && node.nodeName.toLowerCase() != 'html'; node = node.parentNode ) {
        var v = $.css(node,'backgroundColor');
        if (v == 'rgba(0, 0, 0, 0)')
            continue; // webkit
        if (v.indexOf('rgb') >= 0) { 
            var rgb = v.match(/\d+/g); 
            return '#'+ hex2(rgb[0]) + hex2(rgb[1]) + hex2(rgb[2]);
        }
        if ( v && v != 'transparent' )
            return v;
    }
    return '#ffffff';
};

function getWidth(fx, i, width) {
    switch(fx) {
    case 'round':  return Math.round(width*(1-Math.cos(Math.asin(i/width))));
    case 'cool':   return Math.round(width*(1+Math.cos(Math.asin(i/width))));
    case 'sharp':  return Math.round(width*(1-Math.cos(Math.acos(i/width))));
    case 'bite':   return Math.round(width*(Math.cos(Math.asin((width-i-1)/width))));
    case 'slide':  return Math.round(width*(Math.atan2(i,width/i)));
    case 'jut':    return Math.round(width*(Math.atan2(width,(width-i-1))));
    case 'curl':   return Math.round(width*(Math.atan(i)));
    case 'tear':   return Math.round(width*(Math.cos(i)));
    case 'wicked': return Math.round(width*(Math.tan(i)));
    case 'long':   return Math.round(width*(Math.sqrt(i)));
    case 'sculpt': return Math.round(width*(Math.log((width-i-1),width)));
	case 'dogfold':
    case 'dog':    return (i&1) ? (i+1) : width;
    case 'dog2':   return (i&2) ? (i+1) : width;
    case 'dog3':   return (i&3) ? (i+1) : width;
    case 'fray':   return (i%2)*width;
    case 'notch':  return width; 
	case 'bevelfold':
    case 'bevel':  return i+1;
    }
};

$.fn.corner = function(options) {
    // in 1.3+ we can fix mistakes with the ready state
	if (this.length == 0) {
        if (!$.isReady && this.selector) {
            var s = this.selector, c = this.context;
            $(function() {
                $(s,c).corner(options);
            });
        }
        return this;
	}

    return this.each(function(index){
		var $this = $(this);
		// meta values override options
		var o = [$this.attr($.fn.corner.defaults.metaAttr) || '', options || ''].join(' ').toLowerCase();
		var keep = /keep/.test(o);                       // keep borders?
		var cc = ((o.match(/cc:(#[0-9a-f]+)/)||[])[1]);  // corner color
		var sc = ((o.match(/sc:(#[0-9a-f]+)/)||[])[1]);  // strip color
		var width = parseInt((o.match(/(\d+)px/)||[])[1]) || 10; // corner width
		var re = /round|bevelfold|bevel|notch|bite|cool|sharp|slide|jut|curl|tear|fray|wicked|sculpt|long|dog3|dog2|dogfold|dog/;
		var fx = ((o.match(re)||['round'])[0]);
		var fold = /dogfold|bevelfold/.test(o);
		var edges = { T:0, B:1 };
		var opts = {
			TL:  /top|tl|left/.test(o),       TR:  /top|tr|right/.test(o),
			BL:  /bottom|bl|left/.test(o),    BR:  /bottom|br|right/.test(o)
		};
		if ( !opts.TL && !opts.TR && !opts.BL && !opts.BR )
			opts = { TL:1, TR:1, BL:1, BR:1 };
			
		// support native rounding
		if ($.fn.corner.defaults.useNative && fx == 'round' && (radius || moz || webkit) && !cc && !sc) {
			if (opts.TL)
				$this.css(radius ? 'border-top-left-radius' : moz ? '-moz-border-radius-topleft' : '-webkit-border-top-left-radius', width + 'px');
			if (opts.TR)
				$this.css(radius ? 'border-top-right-radius' : moz ? '-moz-border-radius-topright' : '-webkit-border-top-right-radius', width + 'px');
			if (opts.BL)
				$this.css(radius ? 'border-bottom-left-radius' : moz ? '-moz-border-radius-bottomleft' : '-webkit-border-bottom-left-radius', width + 'px');
			if (opts.BR)
				$this.css(radius ? 'border-bottom-right-radius' : moz ? '-moz-border-radius-bottomright' : '-webkit-border-bottom-right-radius', width + 'px');
			return;
		}
			
		var strip = document.createElement('div');
		$(strip).css({
			overflow: 'hidden',
			height: '1px',
			minHeight: '1px',
			fontSize: '1px',
			backgroundColor: sc || 'transparent',
			borderStyle: 'solid'
		});
	
        var pad = {
            T: parseInt($.css(this,'paddingTop'))||0,     R: parseInt($.css(this,'paddingRight'))||0,
            B: parseInt($.css(this,'paddingBottom'))||0,  L: parseInt($.css(this,'paddingLeft'))||0
        };

        if (typeof this.style.zoom != undefined) this.style.zoom = 1; // force 'hasLayout' in IE
        if (!keep) this.style.border = 'none';
        strip.style.borderColor = cc || gpc(this.parentNode);
        var cssHeight = $.curCSS(this, 'height');

        for (var j in edges) {
            var bot = edges[j];
            // only add stips if needed
            if ((bot && (opts.BL || opts.BR)) || (!bot && (opts.TL || opts.TR))) {
                strip.style.borderStyle = 'none '+(opts[j+'R']?'solid':'none')+' none '+(opts[j+'L']?'solid':'none');
                var d = document.createElement('div');
                $(d).addClass('jquery-corner');
                var ds = d.style;

                bot ? this.appendChild(d) : this.insertBefore(d, this.firstChild);

                if (bot && cssHeight != 'auto') {
                    if ($.css(this,'position') == 'static')
                        this.style.position = 'relative';
                    ds.position = 'absolute';
                    ds.bottom = ds.left = ds.padding = ds.margin = '0';
                    if (expr)
                        ds.setExpression('width', 'this.parentNode.offsetWidth');
                    else
                        ds.width = '100%';
                }
                else if (!bot && $.browser.msie) {
                    if ($.css(this,'position') == 'static')
                        this.style.position = 'relative';
                    ds.position = 'absolute';
                    ds.top = ds.left = ds.right = ds.padding = ds.margin = '0';
                    
                    // fix ie6 problem when blocked element has a border width
                    if (expr) {
                        var bw = sz(this,'borderLeftWidth') + sz(this,'borderRightWidth');
                        ds.setExpression('width', 'this.parentNode.offsetWidth - '+bw+'+ "px"');
                    }
                    else
                        ds.width = '100%';
                }
                else {
                	ds.position = 'relative';
                    ds.margin = !bot ? '-'+pad.T+'px -'+pad.R+'px '+(pad.T-width)+'px -'+pad.L+'px' : 
                                        (pad.B-width)+'px -'+pad.R+'px -'+pad.B+'px -'+pad.L+'px';                
                }

                for (var i=0; i < width; i++) {
                    var w = Math.max(0,getWidth(fx,i, width));
                    var e = strip.cloneNode(false);
                    e.style.borderWidth = '0 '+(opts[j+'R']?w:0)+'px 0 '+(opts[j+'L']?w:0)+'px';
                    bot ? d.appendChild(e) : d.insertBefore(e, d.firstChild);
                }
				
				if (fold && $.support.boxModel) {
					if (bot && noBottomFold) continue;
					for (var c in opts) {
						if (!opts[c]) continue;
						if (bot && (c == 'TL' || c == 'TR')) continue;
						if (!bot && (c == 'BL' || c == 'BR')) continue;
						
						var common = { position: 'absolute', border: 'none', margin: 0, padding: 0, overflow: 'hidden', backgroundColor: strip.style.borderColor };
						var $horz = $('<div/>').css(common).css({ width: width + 'px', height: '1px' });
						switch(c) {
						case 'TL': $horz.css({ bottom: 0, left: 0 }); break;
						case 'TR': $horz.css({ bottom: 0, right: 0 }); break;
						case 'BL': $horz.css({ top: 0, left: 0 }); break;
						case 'BR': $horz.css({ top: 0, right: 0 }); break;
						}
						d.appendChild($horz[0]);
						
						var $vert = $('<div/>').css(common).css({ top: 0, bottom: 0, width: '1px', height: width + 'px' });
						switch(c) {
						case 'TL': $vert.css({ left: width }); break;
						case 'TR': $vert.css({ right: width }); break;
						case 'BL': $vert.css({ left: width }); break;
						case 'BR': $vert.css({ right: width }); break;
						}
						d.appendChild($vert[0]);
					}
				}
            }
        }
    });
};

$.fn.uncorner = function() { 
	if (radius || moz || webkit)
		this.css(radius ? 'border-radius' : moz ? '-moz-border-radius' : '-webkit-border-radius', 0);
	$('div.jquery-corner', this).remove();
	return this;
};

// expose options
$.fn.corner.defaults = {
	useNative: true, // true if plugin should attempt to use native browser support for border radius rounding
	metaAttr:  'data-corner' // name of meta attribute to use for options
};
    
})(jQuery);
;
// $Id: acquia-prosper-script.js,v 1.3 2010/09/17 21:36:06 eternalistic Exp $

Drupal.behaviors.acquia_prosperRoundedCorner = function (context) {
  $(".prosper-rounded-title h2.block-title").corner("top 5px"); 
  $(".prosper-shoppingcart h2.block-title").corner("top 5px"); 
  $(".prosper-menu-list h2.block-title").corner("top 5px"); 
  $(".prosper-grayborder-darkbackground .inner").corner("7px"); 
};;

