/*
 * 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.2 - 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(!U){P=b,_(),y=a(P),Q=0,K.rel!=="nofollow"&&(y=a("."+g).filter(function(){var b=a.data(this,e).rel||this.rel;return b===K.rel}),Q=y.index(P),Q===-1&&(y=y.add(P),Q=y.length-1));if(!S){S=T=!0,r.show();if(K.returnFocus)try{P.blur(),a(P).one(l,function(){try{this.focus()}catch(a){}})}catch(c){}q.css({opacity:+K.opacity,cursor:K.overlayClose?"pointer":"auto"}).show(),K.w=Z(K.initialWidth,"x"),K.h=Z(K.initialHeight,"y"),X.position(),o&&z.bind("resize."+p+" scroll."+p,function(){q.css({width:z.width(),height:z.height(),top:z.scrollTop(),left:z.scrollLeft()})}).trigger("resize."+p),ba(h,K.onOpen),J.add(D).hide(),I.html(K.close).show()}X.load(!0)}}function bb(){var a,b=f+"Slideshow_",c="click."+f,d,e,g;K.slideshow&&y[1]?(d=function(){F.text(K.slideshowStop).unbind(c).bind(j,function(){if(Q<y.length-1||K.loop)a=setTimeout(X.next,K.slideshowSpeed)}).bind(i,function(){clearTimeout(a)}).one(c+" "+k,e),r.removeClass(b+"off").addClass(b+"on"),a=setTimeout(X.next,K.slideshowSpeed)},e=function(){clearTimeout(a),F.text(K.slideshowStart).unbind([j,i,k,c].join(" ")).one(c,d),r.removeClass(b+"on").addClass(b+"off")},K.slideshowAuto?d():e()):r.removeClass(b+"off "+b+"on")}function ba(b,c){c&&c.call(P),a.event.trigger(b)}function _(b){K=a.extend({},a.data(P,e));for(b in K)a.isFunction(K[b])&&b.substring(0,2)!=="on"&&(K[b]=K[b].call(P));K.rel=K.rel||P.rel||"nofollow",K.href=K.href||a(P).attr("href"),K.title=K.title||P.title,typeof K.href=="string"&&(K.href=a.trim(K.href))}function $(a){return K.photo||/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i.test(a)}function Z(a,b){return Math.round((/%/.test(a)?(b==="x"?z.width():z.height())/100:1)*parseInt(a,10))}function Y(c,d,e){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+"Element",h=f+"_open",i=f+"_load",j=f+"_complete",k=f+"_cleanup",l=f+"_closed",m=f+"_purge",n=a.browser.msie&&!a.support.opacity,o=n&&a.browser.version<7,p=f+"_IE6",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;X=a.fn[e]=a[e]=function(b,c){var f=this;b=b||{};if(!f[0]){if(f.selector)return f;f=a("<a/>"),b.open=!0}c&&(b.onComplete=c),f.each(function(){a.data(this,e,a.extend({},a.data(this,e)||d,b)),a(this).addClass(g)}),(a.isFunction(b.open)&&b.open.call(f)||b.open)&&bc(f[0]);return f},X.init=function(){z=a(c),r=Y().attr({id:e,"class":n?f+(o?"IE6":"IE"):""}),q=Y("Overlay",o?"position:absolute":"").hide(),s=Y("Wrapper"),t=Y("Content").append(A=Y("LoadedContent","width:0; height:0; overflow:hidden"),C=Y("LoadingOverlay").add(Y("LoadingGraphic")),D=Y("Title"),E=Y("Current"),G=Y("Next"),H=Y("Previous"),F=Y("Slideshow").bind(h,bb),I=Y("Close")),s.append(Y().append(Y("TopLeft"),u=Y("TopCenter"),Y("TopRight")),Y(!1,"clear:left").append(v=Y("MiddleLeft"),t,w=Y("MiddleRight")),Y(!1,"clear:left").append(Y("BottomLeft"),x=Y("BottomCenter"),Y("BottomRight"))).children().children().css({"float":"left"}),B=Y(!1,"position:absolute; width:9999px; visibility:hidden; display:none"),a("body").prepend(q,r.append(s,B)),t.children().hover(function(){a(this).addClass("hover")},function(){a(this).removeClass("hover")}).addClass("hover"),L=u.height()+x.height()+t.outerHeight(!0)-t.height(),M=v.width()+w.width()+t.outerWidth(!0)-t.width(),N=A.outerHeight(!0),O=A.outerWidth(!0),r.css({"padding-bottom":L,"padding-right":M}).hide(),G.click(function(){X.next()}),H.click(function(){X.prev()}),I.click(function(){X.close()}),J=G.add(H).add(E).add(F),t.children().removeClass("hover"),q.click(function(){K.overlayClose&&X.close()}),a(b).bind("keydown."+f,function(a){var b=a.keyCode;S&&K.escKey&&b===27&&(a.preventDefault(),X.close()),S&&K.arrowKey&&y[1]&&(b===37?(a.preventDefault(),H.click()):b===39&&(a.preventDefault(),G.click()))})},X.remove=function(){r.add(q).remove(),a("."+g).removeData(e).removeClass(g)},X.position=function(a,c){function g(a){u[0].style.width=x[0].style.width=t[0].style.width=a.style.width,C[0].style.height=C[1].style.height=t[0].style.height=v[0].style.height=w[0].style.height=a.style.height}var d=0,e=0;z.unbind("resize."+f),r.hide(),K.fixed&&!o?r.css({position:"fixed"}):(d=z.scrollTop(),e=z.scrollLeft(),r.css({position:"absolute"})),K.right!==!1?e+=Math.max(z.width()-K.w-O-M-Z(K.right,"x"),0):K.left!==!1?e+=Z(K.left,"x"):e+=Math.round(Math.max(z.width()-K.w-O-M,0)/2),K.bottom!==!1?d+=Math.max(b.documentElement.clientHeight-K.h-N-L-Z(K.bottom,"y"),0):K.top!==!1?d+=Z(K.top,"y"):d+=Math.round(Math.max(b.documentElement.clientHeight-K.h-N-L,0)/2),r.show(),a=r.width()===K.w+O&&r.height()===K.h+N?0:a||0,s[0].style.width=s[0].style.height="9999px",r.dequeue().animate({width:K.w+O,height:K.h+N,top:d,left:e},{duration:a,complete:function(){g(this),T=!1,s[0].style.width=K.w+O+M+"px",s[0].style.height=K.h+N+L+"px",c&&c(),setTimeout(function(){z.bind("resize."+f,X.position)},1)},step:function(){g(this)}})},X.resize=function(a){if(S){a=a||{},a.width&&(K.w=Z(a.width,"x")-O-M),a.innerWidth&&(K.w=Z(a.innerWidth,"x")),A.css({width:K.w}),a.height&&(K.h=Z(a.height,"y")-N-L),a.innerHeight&&(K.h=Z(a.innerHeight,"y"));if(!a.innerHeight&&!a.height){var b=A.wrapInner("<div style='overflow:auto'></div>").children();K.h=b.height(),b.replaceWith(b.children())}A.css({height:K.h}),X.position(K.transition==="none"?0:K.speed)}},X.prep=function(b){function h(){K.h=K.h||A.height(),K.h=K.mh&&K.mh<K.h?K.mh:K.h;return K.h}function g(){K.w=K.w||A.width(),K.w=K.mw&&K.mw<K.w?K.mw:K.w;return K.w}if(!!S){var c,d=K.transition==="none"?0:K.speed;A.remove(),A=Y("LoadedContent").append(b),A.hide().appendTo(B.show()).css({width:g(),overflow:K.scrolling?"auto":"hidden"}).css({height:h()}).prependTo(t),B.hide(),a(R).css({"float":"none"}),o&&a("select").not(r.find("select")).filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one(k,function(){this.style.visibility="inherit"}),c=function(){function o(){n&&r[0].style.removeAttribute("filter")}var b,c,g,h,i=y.length,k,l;!S||(l=function(){clearTimeout(W),C.hide(),ba(j,K.onComplete)},n&&R&&A.fadeIn(100),D.html(K.title).add(A).show(),i>1?(typeof K.current=="string"&&E.html(K.current.replace("{current}",Q+1).replace("{total}",i)).show(),G[K.loop||Q<i-1?"show":"hide"]().html(K.next),H[K.loop||Q?"show":"hide"]().html(K.previous),b=Q?y[Q-1]:y[i-1],g=Q<i-1?y[Q+1]:y[0],K.slideshow&&F.show(),K.preloading&&(h=a.data(g,e).href||g.href,c=a.data(b,e).href||b.href,h=a.isFunction(h)?h.call(g):h,c=a.isFunction(c)?c.call(b):c,$(h)&&(a("<img/>")[0].src=h),$(c)&&(a("<img/>")[0].src=c))):J.hide(),K.iframe?(k=a("<iframe/>").addClass(f+"Iframe")[0],K.fastIframe?l():a(k).one("load",l),k.name=f+ +(new Date),k.src=K.href,K.scrolling||(k.scrolling="no"),n&&(k.frameBorder=0,k.allowTransparency="true"),a(k).appendTo(A).one(m,function(){k.src="//about:blank"})):l(),K.transition==="fade"?r.fadeTo(d,1,o):o())},K.transition==="fade"?r.fadeTo(d,0,function(){X.position(0,c)}):X.position(d,c)}},X.load=function(b){var c,d,e=X.prep;T=!0,R=!1,P=y[Q],b||_(),ba(m),ba(i,K.onLoad),K.h=K.height?Z(K.height,"y")-N-L:K.innerHeight&&Z(K.innerHeight,"y"),K.w=K.width?Z(K.width,"x")-O-M:K.innerWidth&&Z(K.innerWidth,"x"),K.mw=K.w,K.mh=K.h,K.maxWidth&&(K.mw=Z(K.maxWidth,"x")-O-M,K.mw=K.w&&K.w<K.mw?K.w:K.mw),K.maxHeight&&(K.mh=Z(K.maxHeight,"y")-N-L,K.mh=K.h&&K.h<K.mh?K.h:K.mh),c=K.href,W=setTimeout(function(){C.show()},100),K.inline?(Y().hide().insertBefore(a(c)[0]).one(m,function(){a(this).replaceWith(A.children())}),e(a(c))):K.iframe?e(" "):K.html?e(K.html):$(c)?(a(R=new Image).addClass(f+"Photo").error(function(){K.title=!1,e(Y("Error").text("This image could not be loaded"))}).load(function(){var a;R.onload=null,K.scalePhotos&&(d=function(){R.height-=R.height*a,R.width-=R.width*a},K.mw&&R.width>K.mw&&(a=(R.width-K.mw)/R.width,d()),K.mh&&R.height>K.mh&&(a=(R.height-K.mh)/R.height,d())),K.h&&(R.style.marginTop=Math.max(K.h-R.height,0)/2+"px"),y[1]&&(Q<y.length-1||K.loop)&&(R.style.cursor="pointer",R.onclick=function(){X.next()}),n&&(R.style.msInterpolationMode="bicubic"),setTimeout(function(){e(R)},1)}),setTimeout(function(){R.src=c},1)):c&&B.load(c,K.data,function(b,c,d){e(c==="error"?Y("Error").text("Request unsuccessful: "+d.statusText):a(this).contents())})},X.next=function(){!T&&y[1]&&(Q<y.length-1||K.loop)&&(Q=Q<y.length-1?Q+1:0,X.load())},X.prev=function(){!T&&y[1]&&(Q||K.loop)&&(Q=Q?Q-1:y.length-1,X.load())},X.close=function(){S&&!U&&(U=!0,S=!1,ba(k,K.onCleanup),z.unbind("."+f+" ."+p),q.fadeTo(200,0),r.stop().fadeTo(300,0,function(){r.add(q).css({opacity:1,cursor:"auto"}).hide(),ba(m),A.remove(),setTimeout(function(){U=!1,ba(l,K.onClosed)},1)}))},X.element=function(){return a(P)},X.settings=d,V=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("."+g,"click",V):a("."+g).live("click",V),a(X.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: poormanscron.js,v 1.1.2.3 2010/01/17 00:27:52 davereid Exp $
(function ($) {

/**
 * Checks to see if the cron should be automatically run.
 */
Drupal.behaviors.cronCheck = function(context) {
  if (Drupal.settings.cron.runNext || false) {
    $('body:not(.cron-check-processed)', context).addClass('cron-check-processed').each(function() {
      // Only execute the cron check if its the right time.
      if (Math.round(new Date().getTime() / 1000.0) >= Drupal.settings.cron.runNext) {
        $.get(Drupal.settings.cron.basePath + '/run-cron-check');
      }
    });
  }
};

})(jQuery);
;
/*
 * 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}})());;
/*
 * jQuery Nivo Slider v2.0
 * http://nivo.dev7studios.com
 *
 * Copyright 2010, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * May 2010 - Pick random effect from specified set of effects by toronegro
 * May 2010 - controlNavThumbsFromRel option added by nerd-sh
 * May 2010 - Do not start nivoRun timer if there is only 1 slide by msielski
 * April 2010 - controlNavThumbs option added by Jamie Thompson (http://jamiethompson.co.uk)
 * March 2010 - manualAdvance option added by HelloPablo (http://hellopablo.co.uk)
 */

eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('(9($){$.1f.1q=9(1X){b 3=$.2i({},$.1f.1q.2c,1X);I g.E(9(){b 4={f:0,t:\'\',U:0,o:\'\',N:m,1k:m,1N:m};b 5=$(g);5.1S(\'7:4\',4);5.e(\'2h\',\'2g\');5.1n(\'1q\');b d=5.2j();d.E(9(){b j=$(g);b 1p=\'\';6(!j.K(\'B\')){6(j.K(\'a\')){j.1n(\'7-2k\');1p=j}j=j.1g(\'B:1s\')}b 1c=j.w();6(1c==0)1c=j.s(\'w\');b 1d=j.x();6(1d==0)1d=j.s(\'x\');6(1c>5.w()){5.w(1c)}6(1d>5.x()){5.x(1d)}6(1p!=\'\'){1p.e(\'P\',\'1h\')}j.e(\'P\',\'1h\');4.U++});6(3.1a>0){6(3.1a>=4.U)3.1a=4.U-1;4.f=3.1a}6($(d[4.f]).K(\'B\')){4.t=$(d[4.f])}n{4.t=$(d[4.f]).1g(\'B:1s\')}6($(d[4.f]).K(\'a\')){$(d[4.f]).e(\'P\',\'1w\')}5.e(\'W\',\'V(\'+4.t.s(\'D\')+\') R-Y\');2b(b i=0;i<3.h;i++){b G=X.27(5.w()/3.h);6(i==3.h-1){5.J($(\'<C z="7-c"></C>\').e({21:(G*i)+\'13\',w:(5.w()-(G*i))+\'13\'}))}n{5.J($(\'<C z="7-c"></C>\').e({21:(G*i)+\'13\',w:G+\'13\'}))}}5.J($(\'<C z="7-H"><p></p></C>\').e({P:\'1h\',y:3.1Y}));6(4.t.s(\'16\')!=\'\'){$(\'.7-H p\',5).1y(4.t.s(\'16\'));$(\'.7-H\',5).1x(3.q)}b l=0;6(!3.1i&&d.1j>1){l=1v(9(){F(5,d,3,m)},3.1m)}6(3.T){5.J(\'<C z="7-T"><a z="7-2a">2f</a><a z="7-29">2m</a></C>\');6(3.2d){$(\'.7-T\',5).24();5.25(9(){$(\'.7-T\',5).2l()},9(){$(\'.7-T\',5).24()})}$(\'a.7-2a\',5).1J(\'1I\',9(){6(4.N)I m;S(l);l=\'\';4.f-=2;F(5,d,3,\'1C\')});$(\'a.7-29\',5).1J(\'1I\',9(){6(4.N)I m;S(l);l=\'\';F(5,d,3,\'1A\')})}6(3.M){b 1b=$(\'<C z="7-M"></C>\');5.J(1b);2b(b i=0;i<d.1j;i++){6(3.20){b j=d.1B(i);6(!j.K(\'B\')){j=j.1g(\'B:1s\')}6(3.1Q){1b.J(\'<a z="7-1l" 11="\'+i+\'"><B D="\'+j.s(\'11\')+\'" 28="" /></a>\')}n{1b.J(\'<a z="7-1l" 11="\'+i+\'"><B D="\'+j.s(\'D\').2n(3.1R,3.1P)+\'" 28="" /></a>\')}}n{1b.J(\'<a z="7-1l" 11="\'+i+\'">\'+i+\'</a>\')}}$(\'.7-M a:1B(\'+4.f+\')\',5).1n(\'1o\');$(\'.7-M a\',5).1J(\'1I\',9(){6(4.N)I m;6($(g).2e(\'1o\'))I m;S(l);l=\'\';5.e(\'W\',\'V(\'+4.t.s(\'D\')+\') R-Y\');4.f=$(g).s(\'11\')-1;F(5,d,3,\'1l\')})}6(3.1M){$(2q).2A(9(1L){6(1L.1Z==\'2C\'){6(4.N)I m;S(l);l=\'\';4.f-=2;F(5,d,3,\'1C\')}6(1L.1Z==\'2D\'){6(4.N)I m;S(l);l=\'\';F(5,d,3,\'1A\')}})}6(3.1T){5.25(9(){4.1k=Q;S(l);l=\'\'},9(){4.1k=m;6(l==\'\'&&!3.1i){l=1v(9(){F(5,d,3,m)},3.1m)}})}5.2E(\'7:Z\',9(){4.N=m;$(d).E(9(){6($(g).K(\'a\')){$(g).e(\'P\',\'1h\')}});6($(d[4.f]).K(\'a\')){$(d[4.f]).e(\'P\',\'1w\')}6(l==\'\'&&!4.1k&&!3.1i){l=1v(9(){F(5,d,3,m)},3.1m)}3.1U.1z(g)})});9 F(5,d,3,19){b 4=5.1S(\'7:4\');6((!4||4.1N)&&!19)I m;3.1W.1z(g);6(!19){5.e(\'W\',\'V(\'+4.t.s(\'D\')+\') R-Y\')}n{6(19==\'1C\'){5.e(\'W\',\'V(\'+4.t.s(\'D\')+\') R-Y\')}6(19==\'1A\'){5.e(\'W\',\'V(\'+4.t.s(\'D\')+\') R-Y\')}}4.f++;6(4.f==4.U){4.f=0;3.1V.1z(g)}6(4.f<0)4.f=(4.U-1);6($(d[4.f]).K(\'B\')){4.t=$(d[4.f])}n{4.t=$(d[4.f]).1g(\'B:1s\')}6(3.M){$(\'.7-M a\',5).2F(\'1o\');$(\'.7-M a:1B(\'+4.f+\')\',5).1n(\'1o\')}6(4.t.s(\'16\')!=\'\'){6($(\'.7-H\',5).e(\'P\')==\'1w\'){$(\'.7-H p\',5).22(3.q,9(){$(g).1y(4.t.s(\'16\'));$(g).1x(3.q)})}n{$(\'.7-H p\',5).1y(4.t.s(\'16\'))}$(\'.7-H\',5).1x(3.q)}n{$(\'.7-H\',5).22(3.q)}b i=0;$(\'.7-c\',5).E(9(){b G=X.27(5.w()/3.h);$(g).e({x:\'O\',y:\'0\',W:\'V(\'+4.t.s(\'D\')+\') R-Y -\'+((G+(i*G))-G)+\'13 0%\'});i++});6(3.k==\'1t\'){b 10=2G 2B("1K","14","1F","17","1E","12","1D","1r");4.o=10[X.26(X.1t()*(10.1j+1))];6(4.o==2y)4.o=\'1r\'}6(3.k.2o(\',\')!=-1){b 10=3.k.2r(\',\');4.o=$.2z(10[X.26(X.1t()*10.1j)])}4.N=Q;6(3.k==\'2p\'||3.k==\'1K\'||4.o==\'1K\'||3.k==\'14\'||4.o==\'14\'){b u=0;b i=0;b h=$(\'.7-c\',5);6(3.k==\'14\'||4.o==\'14\')h=$(\'.7-c\',5).1e();h.E(9(){b c=$(g);c.e(\'1G\',\'O\');6(i==3.h-1){L(9(){c.A({x:\'r%\',y:\'1.0\'},3.q,\'\',9(){5.18(\'7:Z\')})},(r+u))}n{L(9(){c.A({x:\'r%\',y:\'1.0\'},3.q)},(r+u))}u+=1u;i++})}n 6(3.k==\'2t\'||3.k==\'1F\'||4.o==\'1F\'||3.k==\'17\'||4.o==\'17\'){b u=0;b i=0;b h=$(\'.7-c\',5);6(3.k==\'17\'||4.o==\'17\')h=$(\'.7-c\',5).1e();h.E(9(){b c=$(g);c.e(\'23\',\'O\');6(i==3.h-1){L(9(){c.A({x:\'r%\',y:\'1.0\'},3.q,\'\',9(){5.18(\'7:Z\')})},(r+u))}n{L(9(){c.A({x:\'r%\',y:\'1.0\'},3.q)},(r+u))}u+=1u;i++})}n 6(3.k==\'1E\'||3.k==\'2u\'||4.o==\'1E\'||3.k==\'12\'||4.o==\'12\'){b u=0;b i=0;b v=0;b h=$(\'.7-c\',5);6(3.k==\'12\'||4.o==\'12\')h=$(\'.7-c\',5).1e();h.E(9(){b c=$(g);6(i==0){c.e(\'1G\',\'O\');i++}n{c.e(\'23\',\'O\');i=0}6(v==3.h-1){L(9(){c.A({x:\'r%\',y:\'1.0\'},3.q,\'\',9(){5.18(\'7:Z\')})},(r+u))}n{L(9(){c.A({x:\'r%\',y:\'1.0\'},3.q)},(r+u))}u+=1u;v++})}n 6(3.k==\'1D\'||4.o==\'1D\'){b u=0;b i=0;$(\'.7-c\',5).E(9(){b c=$(g);b 1H=c.w();c.e({1G:\'O\',x:\'r%\',w:\'O\'});6(i==3.h-1){L(9(){c.A({w:1H,y:\'1.0\'},3.q,\'\',9(){5.18(\'7:Z\')})},(r+u))}n{L(9(){c.A({w:1H,y:\'1.0\'},3.q)},(r+u))}u+=1u;i++})}n 6(3.k==\'1r\'||4.o==\'1r\'){b i=0;$(\'.7-c\',5).E(9(){$(g).e(\'x\',\'r%\');6(i==3.h-1){$(g).A({y:\'1.0\'},(3.q*2),\'\',9(){5.18(\'7:Z\')})}n{$(g).A({y:\'1.0\'},(3.q*2))}i++})}}};$.1f.1q.2c={k:\'1t\',h:15,q:2x,1m:2w,1a:0,T:Q,2d:Q,M:Q,20:m,1Q:m,1R:\'.1O\',1P:\'2v.1O\',1M:Q,1T:Q,1i:m,1Y:0.8,1W:9(){},1U:9(){},1V:9(){}};$.1f.1e=[].1e})(2s);',62,167,'|||settings|vars|slider|if|nivo||function||var|slice|kids|css|currentSlide|this|slices||child|effect|timer|false|else|randAnim||animSpeed|100|attr|currentImage|timeBuff||width|height|opacity|class|animate|img|div|src|each|nivoRun|sliceWidth|caption|return|append|is|setTimeout|controlNav|running|0px|display|true|no|clearInterval|directionNav|totalSlides|url|background|Math|repeat|animFinished|anims|rel|sliceUpDownLeft|px|sliceDownLeft||title|sliceUpLeft|trigger|nudge|startSlide|nivoControl|childWidth|childHeight|reverse|fn|find|none|manualAdvance|length|paused|control|pauseTime|addClass|active|link|nivoSlider|fade|first|random|50|setInterval|block|fadeIn|html|call|next|eq|prev|fold|sliceUpDown|sliceUpRight|top|origWidth|click|live|sliceDownRight|event|keyboardNav|stop|jpg|controlNavThumbsReplace|controlNavThumbsFromRel|controlNavThumbsSearch|data|pauseOnHover|afterChange|slideshowEnd|beforeChange|options|captionOpacity|keyCode|controlNavThumbs|left|fadeOut|bottom|hide|hover|floor|round|alt|nextNav|prevNav|for|defaults|directionNavHide|hasClass|Prev|relative|position|extend|children|imageLink|show|Next|replace|indexOf|sliceDown|window|split|jQuery|sliceUp|sliceUpDownRight|_thumb|3000|500|undefined|trim|keypress|Array|37|39|bind|removeClass|new'.split('|'),0,{}))
;
// $Id: views_nivo_slider.js,v 1.1.2.5.2.2 2010/06/18 15:04:17 pedrofaria Exp $ 
Drupal.behaviors.views_nivo_sliderBehavior = function (context) {
  $('.views-nivo-slider').each(function() {
    var id = $(this).attr('id');
    var vns = $(this);
    var cfg = Drupal.settings.views_nivo_slider[id];

    // Fix sizes
    vns.data('hmax', 0).data('wmax', 0);
    $('img', vns).each(function () {
      hmax =  (vns.data('hmax') > $(this).height()) ? vns.data('hmax') : $(this).height();
      wmax =  (vns.data('wmax') > $(this).width()) ? vns.data('hmax') : $(this).width();

      vns.width(wmax).height(hmax).data('hmax', hmax).data('wmax', wmax);
    });

    vns.nivoSlider(cfg);
  });
};
;
/*!
 * jCarousel - Riding carousels with jQuery
 *   http://sorgalla.com/jcarousel/
 *
 * Copyright (c) 2006 Jan Sorgalla (http://sorgalla.com)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php)
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * Built on top of the jQuery library
 *   http://jquery.com
 *
 * Inspired by the "Carousel Component" by Bill Scott
 *   http://billwscott.com/carousel/
 */

(function(i){var q={vertical:false,rtl:false,start:1,offset:1,size:null,scroll:3,visible:null,animation:"normal",easing:"swing",auto:0,wrap:null,initCallback:null,reloadCallback:null,itemLoadCallback:null,itemFirstInCallback:null,itemFirstOutCallback:null,itemLastInCallback:null,itemLastOutCallback:null,itemVisibleInCallback:null,itemVisibleOutCallback:null,buttonNextHTML:"<div></div>",buttonPrevHTML:"<div></div>",buttonNextEvent:"click",buttonPrevEvent:"click",buttonNextCallback:null,buttonPrevCallback:null, itemFallbackDimension:null},r=false;i(window).bind("load.jcarousel",function(){r=true});i.jcarousel=function(a,c){this.options=i.extend({},q,c||{});this.autoStopped=this.locked=false;this.buttonPrevState=this.buttonNextState=this.buttonPrev=this.buttonNext=this.list=this.clip=this.container=null;if(!c||c.rtl===undefined)this.options.rtl=(i(a).attr("dir")||i("html").attr("dir")||"").toLowerCase()=="rtl";this.wh=!this.options.vertical?"width":"height";this.lt=!this.options.vertical?this.options.rtl? "right":"left":"top";for(var b="",d=a.className.split(" "),f=0;f<d.length;f++)if(d[f].indexOf("jcarousel-skin")!=-1){i(a).removeClass(d[f]);b=d[f];break}if(a.nodeName.toUpperCase()=="UL"||a.nodeName.toUpperCase()=="OL"){this.list=i(a);this.container=this.list.parent();if(this.container.hasClass("jcarousel-clip")){if(!this.container.parent().hasClass("jcarousel-container"))this.container=this.container.wrap("<div></div>");this.container=this.container.parent()}else if(!this.container.hasClass("jcarousel-container"))this.container= this.list.wrap("<div></div>").parent()}else{this.container=i(a);this.list=this.container.find("ul,ol").eq(0)}b!==""&&this.container.parent()[0].className.indexOf("jcarousel-skin")==-1&&this.container.wrap('<div class=" '+b+'"></div>');this.clip=this.list.parent();if(!this.clip.length||!this.clip.hasClass("jcarousel-clip"))this.clip=this.list.wrap("<div></div>").parent();this.buttonNext=i(".jcarousel-next",this.container);if(this.buttonNext.size()===0&&this.options.buttonNextHTML!==null)this.buttonNext= this.clip.after(this.options.buttonNextHTML).next();this.buttonNext.addClass(this.className("jcarousel-next"));this.buttonPrev=i(".jcarousel-prev",this.container);if(this.buttonPrev.size()===0&&this.options.buttonPrevHTML!==null)this.buttonPrev=this.clip.after(this.options.buttonPrevHTML).next();this.buttonPrev.addClass(this.className("jcarousel-prev"));this.clip.addClass(this.className("jcarousel-clip")).css({overflow:"hidden",position:"relative"});this.list.addClass(this.className("jcarousel-list")).css({overflow:"hidden", position:"relative",top:0,margin:0,padding:0}).css(this.options.rtl?"right":"left",0);this.container.addClass(this.className("jcarousel-container")).css({position:"relative"});!this.options.vertical&&this.options.rtl&&this.container.addClass("jcarousel-direction-rtl").attr("dir","rtl");var j=this.options.visible!==null?Math.ceil(this.clipping()/this.options.visible):null;b=this.list.children("li");var e=this;if(b.size()>0){var g=0,k=this.options.offset;b.each(function(){e.format(this,k++);g+=e.dimension(this, j)});this.list.css(this.wh,g+100+"px");if(!c||c.size===undefined)this.options.size=b.size()}this.container.css("display","block");this.buttonNext.css("display","block");this.buttonPrev.css("display","block");this.funcNext=function(){e.next()};this.funcPrev=function(){e.prev()};this.funcResize=function(){e.reload()};this.options.initCallback!==null&&this.options.initCallback(this,"init");if(!r&&i.browser.safari){this.buttons(false,false);i(window).bind("load.jcarousel",function(){e.setup()})}else this.setup()}; var h=i.jcarousel;h.fn=h.prototype={jcarousel:"0.2.7"};h.fn.extend=h.extend=i.extend;h.fn.extend({setup:function(){this.prevLast=this.prevFirst=this.last=this.first=null;this.animating=false;this.tail=this.timer=null;this.inTail=false;if(!this.locked){this.list.css(this.lt,this.pos(this.options.offset)+"px");var a=this.pos(this.options.start,true);this.prevFirst=this.prevLast=null;this.animate(a,false);i(window).unbind("resize.jcarousel",this.funcResize).bind("resize.jcarousel",this.funcResize)}}, reset:function(){this.list.empty();this.list.css(this.lt,"0px");this.list.css(this.wh,"10px");this.options.initCallback!==null&&this.options.initCallback(this,"reset");this.setup()},reload:function(){this.tail!==null&&this.inTail&&this.list.css(this.lt,h.intval(this.list.css(this.lt))+this.tail);this.tail=null;this.inTail=false;this.options.reloadCallback!==null&&this.options.reloadCallback(this);if(this.options.visible!==null){var a=this,c=Math.ceil(this.clipping()/this.options.visible),b=0,d=0; this.list.children("li").each(function(f){b+=a.dimension(this,c);if(f+1<a.first)d=b});this.list.css(this.wh,b+"px");this.list.css(this.lt,-d+"px")}this.scroll(this.first,false)},lock:function(){this.locked=true;this.buttons()},unlock:function(){this.locked=false;this.buttons()},size:function(a){if(a!==undefined){this.options.size=a;this.locked||this.buttons()}return this.options.size},has:function(a,c){if(c===undefined||!c)c=a;if(this.options.size!==null&&c>this.options.size)c=this.options.size;for(var b= a;b<=c;b++){var d=this.get(b);if(!d.length||d.hasClass("jcarousel-item-placeholder"))return false}return true},get:function(a){return i(".jcarousel-item-"+a,this.list)},add:function(a,c){var b=this.get(a),d=0,f=i(c);if(b.length===0){var j,e=h.intval(a);for(b=this.create(a);;){j=this.get(--e);if(e<=0||j.length){e<=0?this.list.prepend(b):j.after(b);break}}}else d=this.dimension(b);if(f.get(0).nodeName.toUpperCase()=="LI"){b.replaceWith(f);b=f}else b.empty().append(c);this.format(b.removeClass(this.className("jcarousel-item-placeholder")), a);f=this.options.visible!==null?Math.ceil(this.clipping()/this.options.visible):null;d=this.dimension(b,f)-d;a>0&&a<this.first&&this.list.css(this.lt,h.intval(this.list.css(this.lt))-d+"px");this.list.css(this.wh,h.intval(this.list.css(this.wh))+d+"px");return b},remove:function(a){var c=this.get(a);if(!(!c.length||a>=this.first&&a<=this.last)){var b=this.dimension(c);a<this.first&&this.list.css(this.lt,h.intval(this.list.css(this.lt))+b+"px");c.remove();this.list.css(this.wh,h.intval(this.list.css(this.wh))- b+"px")}},next:function(){this.tail!==null&&!this.inTail?this.scrollTail(false):this.scroll((this.options.wrap=="both"||this.options.wrap=="last")&&this.options.size!==null&&this.last==this.options.size?1:this.first+this.options.scroll)},prev:function(){this.tail!==null&&this.inTail?this.scrollTail(true):this.scroll((this.options.wrap=="both"||this.options.wrap=="first")&&this.options.size!==null&&this.first==1?this.options.size:this.first-this.options.scroll)},scrollTail:function(a){if(!(this.locked|| this.animating||!this.tail)){this.pauseAuto();var c=h.intval(this.list.css(this.lt));c=!a?c-this.tail:c+this.tail;this.inTail=!a;this.prevFirst=this.first;this.prevLast=this.last;this.animate(c)}},scroll:function(a,c){if(!(this.locked||this.animating)){this.pauseAuto();this.animate(this.pos(a),c)}},pos:function(a,c){var b=h.intval(this.list.css(this.lt));if(this.locked||this.animating)return b;if(this.options.wrap!="circular")a=a<1?1:this.options.size&&a>this.options.size?this.options.size:a;for(var d= this.first>a,f=this.options.wrap!="circular"&&this.first<=1?1:this.first,j=d?this.get(f):this.get(this.last),e=d?f:f-1,g=null,k=0,l=false,m=0;d?--e>=a:++e<a;){g=this.get(e);l=!g.length;if(g.length===0){g=this.create(e).addClass(this.className("jcarousel-item-placeholder"));j[d?"before":"after"](g);if(this.first!==null&&this.options.wrap=="circular"&&this.options.size!==null&&(e<=0||e>this.options.size)){j=this.get(this.index(e));if(j.length)g=this.add(e,j.clone(true))}}j=g;m=this.dimension(g);if(l)k+= m;if(this.first!==null&&(this.options.wrap=="circular"||e>=1&&(this.options.size===null||e<=this.options.size)))b=d?b+m:b-m}f=this.clipping();var p=[],o=0,n=0;j=this.get(a-1);for(e=a;++o;){g=this.get(e);l=!g.length;if(g.length===0){g=this.create(e).addClass(this.className("jcarousel-item-placeholder"));j.length===0?this.list.prepend(g):j[d?"before":"after"](g);if(this.first!==null&&this.options.wrap=="circular"&&this.options.size!==null&&(e<=0||e>this.options.size)){j=this.get(this.index(e));if(j.length)g= this.add(e,j.clone(true))}}j=g;m=this.dimension(g);if(m===0)throw Error("jCarousel: No width/height set for items. This will cause an infinite loop. Aborting...");if(this.options.wrap!="circular"&&this.options.size!==null&&e>this.options.size)p.push(g);else if(l)k+=m;n+=m;if(n>=f)break;e++}for(g=0;g<p.length;g++)p[g].remove();if(k>0){this.list.css(this.wh,this.dimension(this.list)+k+"px");if(d){b-=k;this.list.css(this.lt,h.intval(this.list.css(this.lt))-k+"px")}}k=a+o-1;if(this.options.wrap!="circular"&& this.options.size&&k>this.options.size)k=this.options.size;if(e>k){o=0;e=k;for(n=0;++o;){g=this.get(e--);if(!g.length)break;n+=this.dimension(g);if(n>=f)break}}e=k-o+1;if(this.options.wrap!="circular"&&e<1)e=1;if(this.inTail&&d){b+=this.tail;this.inTail=false}this.tail=null;if(this.options.wrap!="circular"&&k==this.options.size&&k-o+1>=1){d=h.margin(this.get(k),!this.options.vertical?"marginRight":"marginBottom");if(n-d>f)this.tail=n-f-d}if(c&&a===this.options.size&&this.tail){b-=this.tail;this.inTail= true}for(;a-- >e;)b+=this.dimension(this.get(a));this.prevFirst=this.first;this.prevLast=this.last;this.first=e;this.last=k;return b},animate:function(a,c){if(!(this.locked||this.animating)){this.animating=true;var b=this,d=function(){b.animating=false;a===0&&b.list.css(b.lt,0);if(!b.autoStopped&&(b.options.wrap=="circular"||b.options.wrap=="both"||b.options.wrap=="last"||b.options.size===null||b.last<b.options.size||b.last==b.options.size&&b.tail!==null&&!b.inTail))b.startAuto();b.buttons();b.notify("onAfterAnimation"); if(b.options.wrap=="circular"&&b.options.size!==null)for(var f=b.prevFirst;f<=b.prevLast;f++)if(f!==null&&!(f>=b.first&&f<=b.last)&&(f<1||f>b.options.size))b.remove(f)};this.notify("onBeforeAnimation");if(!this.options.animation||c===false){this.list.css(this.lt,a+"px");d()}else this.list.animate(!this.options.vertical?this.options.rtl?{right:a}:{left:a}:{top:a},this.options.animation,this.options.easing,d)}},startAuto:function(a){if(a!==undefined)this.options.auto=a;if(this.options.auto===0)return this.stopAuto(); if(this.timer===null){this.autoStopped=false;var c=this;this.timer=window.setTimeout(function(){c.next()},this.options.auto*1E3)}},stopAuto:function(){this.pauseAuto();this.autoStopped=true},pauseAuto:function(){if(this.timer!==null){window.clearTimeout(this.timer);this.timer=null}},buttons:function(a,c){if(a==null){a=!this.locked&&this.options.size!==0&&(this.options.wrap&&this.options.wrap!="first"||this.options.size===null||this.last<this.options.size);if(!this.locked&&(!this.options.wrap||this.options.wrap== "first")&&this.options.size!==null&&this.last>=this.options.size)a=this.tail!==null&&!this.inTail}if(c==null){c=!this.locked&&this.options.size!==0&&(this.options.wrap&&this.options.wrap!="last"||this.first>1);if(!this.locked&&(!this.options.wrap||this.options.wrap=="last")&&this.options.size!==null&&this.first==1)c=this.tail!==null&&this.inTail}var b=this;if(this.buttonNext.size()>0){this.buttonNext.unbind(this.options.buttonNextEvent+".jcarousel",this.funcNext);a&&this.buttonNext.bind(this.options.buttonNextEvent+ ".jcarousel",this.funcNext);this.buttonNext[a?"removeClass":"addClass"](this.className("jcarousel-next-disabled")).attr("disabled",a?false:true);this.options.buttonNextCallback!==null&&this.buttonNext.data("jcarouselstate")!=a&&this.buttonNext.each(function(){b.options.buttonNextCallback(b,this,a)}).data("jcarouselstate",a)}else this.options.buttonNextCallback!==null&&this.buttonNextState!=a&&this.options.buttonNextCallback(b,null,a);if(this.buttonPrev.size()>0){this.buttonPrev.unbind(this.options.buttonPrevEvent+ ".jcarousel",this.funcPrev);c&&this.buttonPrev.bind(this.options.buttonPrevEvent+".jcarousel",this.funcPrev);this.buttonPrev[c?"removeClass":"addClass"](this.className("jcarousel-prev-disabled")).attr("disabled",c?false:true);this.options.buttonPrevCallback!==null&&this.buttonPrev.data("jcarouselstate")!=c&&this.buttonPrev.each(function(){b.options.buttonPrevCallback(b,this,c)}).data("jcarouselstate",c)}else this.options.buttonPrevCallback!==null&&this.buttonPrevState!=c&&this.options.buttonPrevCallback(b, null,c);this.buttonNextState=a;this.buttonPrevState=c},notify:function(a){var c=this.prevFirst===null?"init":this.prevFirst<this.first?"next":"prev";this.callback("itemLoadCallback",a,c);if(this.prevFirst!==this.first){this.callback("itemFirstInCallback",a,c,this.first);this.callback("itemFirstOutCallback",a,c,this.prevFirst)}if(this.prevLast!==this.last){this.callback("itemLastInCallback",a,c,this.last);this.callback("itemLastOutCallback",a,c,this.prevLast)}this.callback("itemVisibleInCallback", a,c,this.first,this.last,this.prevFirst,this.prevLast);this.callback("itemVisibleOutCallback",a,c,this.prevFirst,this.prevLast,this.first,this.last)},callback:function(a,c,b,d,f,j,e){if(!(this.options[a]==null||typeof this.options[a]!="object"&&c!="onAfterAnimation")){var g=typeof this.options[a]=="object"?this.options[a][c]:this.options[a];if(i.isFunction(g)){var k=this;if(d===undefined)g(k,b,c);else if(f===undefined)this.get(d).each(function(){g(k,this,d,b,c)});else{a=function(m){k.get(m).each(function(){g(k, this,m,b,c)})};for(var l=d;l<=f;l++)l!==null&&!(l>=j&&l<=e)&&a(l)}}}},create:function(a){return this.format("<li></li>",a)},format:function(a,c){a=i(a);for(var b=a.get(0).className.split(" "),d=0;d<b.length;d++)b[d].indexOf("jcarousel-")!=-1&&a.removeClass(b[d]);a.addClass(this.className("jcarousel-item")).addClass(this.className("jcarousel-item-"+c)).css({"float":this.options.rtl?"right":"left","list-style":"none"}).attr("jcarouselindex",c);return a},className:function(a){return a+" "+a+(!this.options.vertical? "-horizontal":"-vertical")},dimension:function(a,c){var b=a.jquery!==undefined?a[0]:a,d=!this.options.vertical?(b.offsetWidth||h.intval(this.options.itemFallbackDimension))+h.margin(b,"marginLeft")+h.margin(b,"marginRight"):(b.offsetHeight||h.intval(this.options.itemFallbackDimension))+h.margin(b,"marginTop")+h.margin(b,"marginBottom");if(c==null||d==c)return d;d=!this.options.vertical?c-h.margin(b,"marginLeft")-h.margin(b,"marginRight"):c-h.margin(b,"marginTop")-h.margin(b,"marginBottom");i(b).css(this.wh, d+"px");return this.dimension(b)},clipping:function(){return!this.options.vertical?this.clip[0].offsetWidth-h.intval(this.clip.css("borderLeftWidth"))-h.intval(this.clip.css("borderRightWidth")):this.clip[0].offsetHeight-h.intval(this.clip.css("borderTopWidth"))-h.intval(this.clip.css("borderBottomWidth"))},index:function(a,c){if(c==null)c=this.options.size;return Math.round(((a-1)/c-Math.floor((a-1)/c))*c)+1}});h.extend({defaults:function(a){return i.extend(q,a||{})},margin:function(a,c){if(!a)return 0; var b=a.jquery!==undefined?a[0]:a;if(c=="marginRight"&&i.browser.safari){var d={display:"block","float":"none",width:"auto"},f,j;i.swap(b,d,function(){f=b.offsetWidth});d.marginRight=0;i.swap(b,d,function(){j=b.offsetWidth});return j-f}return h.intval(i.css(b,c))},intval:function(a){a=parseInt(a,10);return isNaN(a)?0:a}});i.fn.jcarousel=function(a){if(typeof a=="string"){var c=i(this).data("jcarousel"),b=Array.prototype.slice.call(arguments,1);return c[a].apply(c,b)}else return this.each(function(){i(this).data("jcarousel", new h(this,a))})}})(jQuery);

;
/**
 * @file
 * Add jCarousel behaviors to the page and provide Views-support.
 */

(function($) {

Drupal.behaviors.jcarousel = function(context, settings) {
  var settings = settings || Drupal.settings;
  for (var key in settings.jcarousel.carousels) {
    var options = settings.jcarousel.carousels[key];
    var $carousel = $(options.selector + ':not(.jcarousel-processed)', context);

    // If this carousel has already been processed or doesn't exist, move on.
    if (!$carousel.length) {
      continue;
    }

    // Callbacks need to be converted from a string to an actual function.
    for (var optionKey in options) {
      if (optionKey.match(/Callback$/) && typeof options[optionKey] == 'string') {
        var callbackFunction = window;
        var callbackParents = options[optionKey].split('.');
        for (var objectParent in callbackParents) {
          callbackFunction = callbackFunction[callbackParents[objectParent]];
        }
        options[optionKey] = callbackFunction;
      }
    }

    // Add standard options required for AJAX functionality.
    if (options.ajax && !options.itemLoadCallback) {
      options.itemLoadCallback = Drupal.jcarousel.ajaxLoadCallback;
    }

    // If auto-scrolling, pause animation when hoving over the carousel.
    if (options.auto && options.autoPause && !options.initCallback) {
      options.initCallback = function(carousel, state) {
        Drupal.jcarousel.autoPauseCallback(carousel, state);
      }
    }

    // Change next and previous buttons to links for accessibility.
    if (!options.hasOwnProperty('buttonNextHTML') && !options.hasOwnProperty('buttonPrevHTML')) {
      options.buttonNextHTML = '<a href="javascript:void(0)"></a>';
      options.buttonPrevHTML = '<a href="javascript:void(0)"></a>';
    }

    // Initialize the jcarousel.
    $carousel.addClass('jcarousel-processed').jcarousel(options);
  }
};

Drupal.jcarousel = {};
Drupal.jcarousel.ajaxLoadCallback = function(jcarousel, state) {
  // Check if the requested items already exist.
  if (state == 'init' || jcarousel.has(jcarousel.first, jcarousel.last)) {
    return;
  }

  var $list = jcarousel.list;
  var $view = $list.parents('.view:first');
  var ajaxPath = Drupal.settings.jcarousel.ajaxPath;
  var target = $view.get(0);

  // Find this view's settings in the Views AJAX settings.
  var settings;
  $.each(Drupal.settings.views.ajaxViews, function(i, viewSettings) {
    if ($view.is('.view-dom-id-' + viewSettings['view_dom_id'])) {
      settings = viewSettings;
    }
  });

  // Copied from ajax_view.js:
  var viewData = { 'js': 1, 'first': jcarousel.first - 1, 'last': jcarousel.last };
  // Construct an object using the settings defaults and then overriding
  // with data specific to the link.
  $.extend(
    viewData,
    settings
  );

  $.ajax({
    url: ajaxPath,
    type: 'GET',
    data: viewData,
    success: function(response) {
      Drupal.jcarousel.ajaxResponseCallback(jcarousel, target, response)
    },
    error: function(xhr) { Drupal.jcarousel.ajaxErrorCallback(xhr, ajaxPath); },
    dataType: 'json'
  });

};

/**
 * Init callback for jCarousel. Pauses the carousel when hovering over.
 */
Drupal.jcarousel.autoPauseCallback = function(carousel, state) {
  function pauseAuto() {
    carousel.stopAuto();
  }
  function resumeAuto() {
    carousel.startAuto();
  }
  carousel.clip.hover(pauseAuto, resumeAuto);
  carousel.buttonNext.hover(pauseAuto, resumeAuto);
  carousel.buttonPrev.hover(pauseAuto, resumeAuto);
};

/**
 * AJAX callback for all jCarousel-style views.
 */
Drupal.jcarousel.ajaxResponseCallback = function(jcarousel, target, response) {
  if (response.debug) {
    alert(response.debug);
  }

  var $view = $(target);
  var jcarousel = $view.find('ul.jcarousel').data('jcarousel');

  // Add items to the jCarousel.
  $('ul.jcarousel li', response.display).each(function(i) {
    var itemNumber = this.className.replace(/.*?jcarousel-item-(\d+).*?/, '$1');
    jcarousel.add(itemNumber, this.innerHTML);
  });

  // Treat messages the same way that Views typically handles messages.
  if (response.messages) {
    // Show any messages (but first remove old ones, if there are any).
    $view.find('.views-messages').remove().end().prepend(response.messages);
  }
};

/**
 * Display error messages using the same mechanism as Views module.
 */
Drupal.jcarousel.ajaxErrorCallback = function (xhr, path) {
  var error_text = '';

  if ((xhr.status == 500 && xhr.responseText) || xhr.status == 200) {
    error_text = xhr.responseText;

    // Replace all &lt; and &gt; by < and >
    error_text = error_text.replace("/&(lt|gt);/g", function (m, p) {
      return (p == "lt")? "<" : ">";
    });

    // Now, replace all html tags by empty spaces
    error_text = error_text.replace(/<("[^"]*"|'[^']*'|[^'">])*>/gi,"");

    // Fix end lines
    error_text = error_text.replace(/[\n]+\s+/g,"\n");
  }
  else if (xhr.status == 500) {
    error_text = xhr.status + ': ' + Drupal.t("Internal server error. Please see server or PHP logs for error information.");
  }
  else {
    error_text = xhr.status + ': ' + xhr.statusText;
  }

  alert(Drupal.t("An error occurred at @path.\n\nError Description: @error", {'@path': path, '@error': error_text}));
};

})(jQuery);
;
// $Id: captcha.js,v 1.2 2010/02/20 10:07:39 soxofaan Exp $

// TODO: change this to Drupal.behaviors.captchaadmin = function (context) {}
$(document).ready(function(){

	// Add onclick handler to checkbox for adding a CAPTCHA description
	// so that the textfields for the CAPTCHA description are hidden
	// when no description should be added.
	$("#edit-captcha-add-captcha-description").click(function() {
		if ($("#edit-captcha-add-captcha-description").is(":checked")) {
			// Show the CAPTCHA description textfield(s).
			$("#edit-captcha-description-wrapper").show("slow");
		}
		else {
			// Hide the CAPTCHA description textfield(s).
			$("#edit-captcha-description-wrapper").hide("slow");
		}
	});
	// Hide the CAPTCHA description textfields if option is disabled on page load.
	if (!$("#edit-captcha-add-captcha-description").is(":checked")) {
		$("#edit-captcha-description-wrapper").hide();
	}

});
;

/**
 * JavaScript behaviors for the front-end display of webforms.
 */

(function ($) {

Drupal.behaviors.webform = function(context) {
  // Calendar datepicker behavior.
  Drupal.webform.datepicker(context);
};

Drupal.webform = Drupal.webform || {};

Drupal.webform.datepicker = function(context) {
  $('div.webform-datepicker').each(function() {
    var $webformDatepicker = $(this);
    var $calendar = $webformDatepicker.find('input.webform-calendar');
    var startDate = $calendar[0].className.replace(/.*webform-calendar-start-(\d{4}-\d{2}-\d{2}).*/, '$1').split('-');
    var endDate = $calendar[0].className.replace(/.*webform-calendar-end-(\d{4}-\d{2}-\d{2}).*/, '$1').split('-');
    var firstDay = $calendar[0].className.replace(/.*webform-calendar-day-(\d).*/, '$1');

    // Convert date strings into actual Date objects.
    startDate = new Date(startDate[0], startDate[1] - 1, startDate[2]);
    endDate = new Date(endDate[0], endDate[1] - 1, endDate[2]);

    // Ensure that start comes before end for datepicker.
    if (startDate > endDate) {
      var laterDate = startDate;
      startDate = endDate;
      endDate = laterDate;
    }

    var startYear = startDate.getFullYear();
    var endYear = endDate.getFullYear();

    // Set up the jQuery datepicker element.
    $calendar.datepicker({
      dateFormat: 'yy-mm-dd',
      yearRange: startYear + ':' + endYear,
      firstDay: parseInt(firstDay),
      minDate: startDate,
      maxDate: endDate,
      onSelect: function(dateText, inst) {
        var date = dateText.split('-');
        $webformDatepicker.find('select.year, input.year').val(+date[0]);
        $webformDatepicker.find('select.month').val(+date[1]);
        $webformDatepicker.find('select.day').val(+date[2]);
      },
      beforeShow: function(input, inst) {
        // Get the select list values.
        var year = $webformDatepicker.find('select.year, input.year').val();
        var month = $webformDatepicker.find('select.month').val();
        var day = $webformDatepicker.find('select.day').val();

        // If empty, default to the current year/month/day in the popup.
        var today = new Date();
        year = year ? year : today.getFullYear();
        month = month ? month : today.getMonth() + 1;
        day = day ? day : today.getDate();

        // Make sure that the default year fits in the available options.
        year = (year < startYear || year > endYear) ? startYear : year;

        // jQuery UI Datepicker will read the input field and base its date off
        // of that, even though in our case the input field is a button.
        $(input).val(year + '-' + month + '-' + day);
      }
    });

    // Prevent the calendar button from submitting the form.
    $calendar.click(function(event) {
      $(this).focus();
      event.preventDefault();
    });
  });
}

})(jQuery);;
/*
 * jQuery Form Plugin
 * version: 2.25 (08-APR-2009)
 * @requires jQuery v1.2.2 or later
 * @note This has been modified for ajax.module
 * Examples and documentation at: http://malsup.com/jquery/form/
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}(';(5($){$.B.1s=5(u){2(!4.G){R(\'1b: 2M 9 2N - 2O 2P 1t\');6 4}2(S u==\'5\')u={T:u};3 v=4.14(\'1c\')||1d.2Q.2R;v=(v.2S(/^([^#]+)/)||[])[1];v=v||\'\';u=$.1n({1e:v,H:4.14(\'1u\')||\'1Q\'},u||{});3 w={};4.L(\'C-1R-1S\',[4,u,w]);2(w.1T){R(\'1b: 9 1U 1o C-1R-1S L\');6 4}2(u.1v&&u.1v(4,u)===I){R(\'1b: 9 1f 1o 1v 1V\');6 4}3 a=4.1w(u.2T);2(u.J){u.O=u.J;K(3 n 1x u.J){2(u.J[n]2U 15){K(3 k 1x u.J[n])a.D({7:n,8:u.J[n][k]})}E a.D({7:n,8:u.J[n]})}}2(u.1y&&u.1y(a,4,u)===I){R(\'1b: 9 1f 1o 1y 1V\');6 4}4.L(\'C-9-1W\',[a,4,u,w]);2(w.1T){R(\'1b: 9 1U 1o C-9-1W L\');6 4}3 q=$.1z(a);2(u.H.2V()==\'1Q\'){u.1e+=(u.1e.2W(\'?\')>=0?\'&\':\'?\')+q;u.J=F}E u.J=q;3 x=4,V=[];2(u.2X)V.D(5(){x.1X()});2(u.2Y)V.D(5(){x.1Y()});2(!u.16&&u.17){3 y=u.T||5(){};V.D(5(a){$(u.17).2Z(a).P(y,1Z)})}E 2(u.T)V.D(u.T);u.T=5(a,b){K(3 i=0,M=V.G;i<M;i++)V[i].30(u,[a,b,x])};3 z=$(\'W:31\',4).18();3 A=I;K(3 j=0;j<z.G;j++)2(z[j])A=Q;2(u.20||A){2(u.21)$.32(u.21,1A);E 1A()}E $.33(u);4.L(\'C-9-34\',[4,u]);6 4;5 1A(){3 h=x[0];2($(\':W[7=9]\',h).G){35(\'36: 37 22 38 39 3a 3b "9".\');6}3 i=$.1n({},$.23,u);3 s=$.1n(Q,{},$.1n(Q,{},$.23),i);3 j=\'3c\'+(1B 3d().3e());3 k=$(\'<20 3f="\'+j+\'" 7="\'+j+\'" 24="25:26" />\');3 l=k[0];k.3g({3h:\'3i\',27:\'-28\',29:\'-28\'});3 m={1f:0,19:F,1g:F,3j:0,3k:\'n/a\',3l:5(){},2a:5(){},3m:5(){},3n:5(){4.1f=1;k.14(\'24\',\'25:26\')}};3 g=i.2b;2(g&&!$.1C++)$.1h.L("3o");2(g)$.1h.L("3p",[m,i]);2(s.2c&&s.2c(m,s)===I){s.2b&&$.1C--;6}2(m.1f)6;3 o=0;3 p=0;3 q=h.U;2(q){3 n=q.7;2(n&&!q.1i){u.O=u.O||{};u.O[n]=q.8;2(q.H=="X"){u.O[7+\'.x\']=h.Y;u.O[7+\'.y\']=h.Z}}}1j(5(){3 t=x.14(\'17\'),a=x.14(\'1c\');h.1k(\'17\',j);2(h.2d(\'1u\')!=\'2e\')h.1k(\'1u\',\'2e\');2(h.2d(\'1c\')!=i.1e)h.1k(\'1c\',i.1e);2(!u.3q){x.14({3r:\'2f/C-J\',3s:\'2f/C-J\'})}2(i.1D)1j(5(){p=Q;11()},i.1D);3 b=[];2g{2(u.O)K(3 n 1x u.O)b.D($(\'<W H="3t" 7="\'+n+\'" 8="\'+u.O[n]+\'" />\').2h(h)[0]);k.2h(\'1l\');l.2i?l.2i(\'2j\',11):l.3u(\'2k\',11,I);h.9()}3v{h.1k(\'1c\',a);t?h.1k(\'17\',t):x.3w(\'17\');$(b).2l()}},10);3 r=0;5 11(){2(o++)6;l.2m?l.2m(\'2j\',11):l.3x(\'2k\',11,I);3 c=Q;2g{2(p)3y\'1D\';3 d,N;N=l.2n?l.2n.2o:l.2p?l.2p:l.2o;2((N.1l==F||N.1l.2q==\'\')&&!r){r=1;o--;1j(11,2r);6}m.19=N.1l?N.1l.2q:F;m.1g=N.2s?N.2s:N;m.2a=5(a){3 b={\'3z-H\':i.16};6 b[a]};2(i.16==\'3A\'||i.16==\'3B\'){3 f=N.1E(\'1F\')[0];m.19=f?f.8:m.19}E 2(i.16==\'2t\'&&!m.1g&&m.19!=F){m.1g=2u(m.19)}d=$.3C(m,i.16)}3D(e){c=I;$.3E(i,m,\'2v\',e)}2(c){i.T(d,\'T\');2(g)$.1h.L("3F",[m,i])}2(g)$.1h.L("3G",[m,i]);2(g&&!--$.1C)$.1h.L("3H");2(i.2w)i.2w(m,c?\'T\':\'2v\');1j(5(){k.2l();m.1g=F},2r)};5 2u(s,a){2(1d.2x){a=1B 2x(\'3I.3J\');a.3K=\'I\';a.3L(s)}E a=(1B 3M()).3N(s,\'1G/2t\');6(a&&a.2y&&a.2y.1p!=\'3O\')?a:F}}};$.B.3P=5(c){6 4.2z().2A(\'9.C-1q\',5(){$(4).1s(c);6 I}).P(5(){$(":9,W:X",4).2A(\'2B.C-1q\',5(e){3 a=4.C;a.U=4;2(4.H==\'X\'){2(e.2C!=12){a.Y=e.2C;a.Z=e.3Q}E 2(S $.B.2D==\'5\'){3 b=$(4).2D();a.Y=e.2E-b.29;a.Z=e.2F-b.27}E{a.Y=e.2E-4.3R;a.Z=e.2F-4.3S}}1j(5(){a.U=a.Y=a.Z=F},10)})})};$.B.2z=5(){4.2G(\'9.C-1q\');6 4.P(5(){$(":9,W:X",4).2G(\'2B.C-1q\')})};$.B.1w=5(b){3 a=[];2(4.G==0)6 a;3 c=4[0];3 d=b?c.1E(\'*\'):c.22;2(!d)6 a;K(3 i=0,M=d.G;i<M;i++){3 e=d[i];3 n=e.7;2(!n)1H;2(b&&c.U&&e.H=="X"){2(!e.1i&&c.U==e)a.D({7:n+\'.x\',8:c.Y},{7:n+\'.y\',8:c.Z});1H}3 v=$.18(e,Q);2(v&&v.1r==15){K(3 j=0,2H=v.G;j<2H;j++)a.D({7:n,8:v[j]})}E 2(v!==F&&S v!=\'12\')a.D({7:n,8:v})}2(!b&&c.U){3 f=c.1E("W");K(3 i=0,M=f.G;i<M;i++){3 g=f[i];3 n=g.7;2(n&&!g.1i&&g.H=="X"&&c.U==g)a.D({7:n+\'.x\',8:c.Y},{7:n+\'.y\',8:c.Z})}}6 a};$.B.3T=5(a){6 $.1z(4.1w(a))};$.B.3U=5(b){3 a=[];4.P(5(){3 n=4.7;2(!n)6;3 v=$.18(4,b);2(v&&v.1r==15){K(3 i=0,M=v.G;i<M;i++)a.D({7:n,8:v[i]})}E 2(v!==F&&S v!=\'12\')a.D({7:4.7,8:v})});6 $.1z(a)};$.B.18=5(a){K(3 b=[],i=0,M=4.G;i<M;i++){3 c=4[i];3 v=$.18(c,a);2(v===F||S v==\'12\'||(v.1r==15&&!v.G))1H;v.1r==15?$.3V(b,v):b.D(v)}6 b};$.18=5(b,c){3 n=b.7,t=b.H,1a=b.1p.1I();2(S c==\'12\')c=Q;2(c&&(!n||b.1i||t==\'1m\'||t==\'3W\'||(t==\'1J\'||t==\'1K\')&&!b.1L||(t==\'9\'||t==\'X\')&&b.C&&b.C.U!=b||1a==\'13\'&&b.1M==-1))6 F;2(1a==\'13\'){3 d=b.1M;2(d<0)6 F;3 a=[],1N=b.3X;3 e=(t==\'13-2I\');3 f=(e?d+1:1N.G);K(3 i=(e?d:0);i<f;i++){3 g=1N[i];2(g.1t){3 v=g.8;2(!v)v=(g.1O&&g.1O[\'8\']&&!(g.1O[\'8\'].3Y))?g.1G:g.8;2(e)6 v;a.D(v)}}6 a}6 b.8};$.B.1Y=5(){6 4.P(5(){$(\'W,13,1F\',4).2J()})};$.B.2J=$.B.3Z=5(){6 4.P(5(){3 t=4.H,1a=4.1p.1I();2(t==\'1G\'||t==\'40\'||1a==\'1F\')4.8=\'\';E 2(t==\'1J\'||t==\'1K\')4.1L=I;E 2(1a==\'13\')4.1M=-1})};$.B.1X=5(){6 4.P(5(){2(S 4.1m==\'5\'||(S 4.1m==\'41\'&&!4.1m.42))4.1m()})};$.B.43=5(b){2(b==12)b=Q;6 4.P(5(){4.1i=!b})};$.B.2K=5(b){2(b==12)b=Q;6 4.P(5(){3 t=4.H;2(t==\'1J\'||t==\'1K\')4.1L=b;E 2(4.1p.1I()==\'2L\'){3 a=$(4).44(\'13\');2(b&&a[0]&&a[0].H==\'13-2I\'){a.45(\'2L\').2K(I)}4.1t=b}})};5 R(){2($.B.1s.46&&1d.1P&&1d.1P.R)1d.1P.R(\'[47.C] \'+15.48.49.4a(1Z,\'\'))}})(4b);',62,260,'||if|var|this|function|return|name|value|submit||||||||||||||||||||||||||||fn|form|push|else|null|length|type|false|data|for|trigger|max|doc|extraData|each|true|log|typeof|success|clk|callbacks|input|image|clk_x|clk_y||cb|undefined|select|attr|Array|dataType|target|a_fieldValue|responseText|tag|ajaxSubmit|action|window|url|aborted|responseXML|event|disabled|setTimeout|setAttribute|body|reset|extend|via|tagName|plugin|constructor|a_ajaxSubmit|selected|method|beforeSerialize|a_formToArray|in|beforeSubmit|param|fileUpload|new|active|timeout|getElementsByTagName|textarea|text|continue|toLowerCase|checkbox|radio|checked|selectedIndex|ops|attributes|console|GET|pre|serialize|veto|vetoed|callback|validate|a_resetForm|a_clearForm|arguments|iframe|closeKeepAlive|elements|ajaxSettings|src|about|blank|top|1000px|left|getResponseHeader|global|beforeSend|getAttribute|POST|multipart|try|appendTo|attachEvent|onload|load|remove|detachEvent|contentWindow|document|contentDocument|innerHTML|100|XMLDocument|xml|toXml|error|complete|ActiveXObject|documentElement|a_ajaxFormUnbind|bind|click|offsetX|offset|pageX|pageY|unbind|jmax|one|a_clearFields|a_selected|option|skipping|process|no|element|location|href|match|semantic|instanceof|toUpperCase|indexOf|resetForm|clearForm|html|apply|file|get|ajax|notify|alert|Error|Form|must|not|be|named|jqFormIO|Date|getTime|id|css|position|absolute|status|statusText|getAllResponseHeaders|setRequestHeader|abort|ajaxStart|ajaxSend|skipEncodingOverride|encoding|enctype|hidden|addEventListener|finally|removeAttr|removeEventListener|throw|content|json|script|httpData|catch|handleError|ajaxSuccess|ajaxComplete|ajaxStop|Microsoft|XMLDOM|async|loadXML|DOMParser|parseFromString|parsererror|a_ajaxForm|offsetY|offsetLeft|offsetTop|a_formSerialize|a_fieldSerialize|merge|button|options|specified|a_clearInputs|password|object|nodeType|a_enable|parent|find|debug|jquery|prototype|join|call|jQuery'.split('|'),0,{}));
/**
 * Automatic ajax validation
 *
 * @see http://drupal.org/project/ajax
 * @see irc://freenode.net/#drupy
 * @depends Drupal 6
 * @author brendoncrawford
 * @note This file uses a 79 character width limit.
 * 
 *
 */

Drupal.Ajax = new Object;

Drupal.Ajax.plugins = {};

Drupal.Ajax.firstRun = false;

/**
 * Init function.
 * This is being executed by Drupal behaviours.
 * See bottom of script.
 * 
 * @param {HTMLElement} context
 * @return {Bool}
 */
Drupal.Ajax.init = function(context) {
  var f, s;
  if (f = $('.ajax-form', context)) {
    if (!Drupal.Ajax.firstRun) {
      Drupal.Ajax.invoke('init');
      Drupal.Ajax.firstRun = true;
    }
    s = $('input[type="submit"]', f);
    s.click(function(){
      this.form.ajax_activator = $(this);
      return true;
    });
    f.each(function(){
      this.ajax_activator = null;
      $(this).submit(function(){
        if (this.ajax_activator === null) {
          this.ajax_activator = $('#edit-submit', this);
        }
        if (this.ajax_activator.hasClass('ajax-trigger')) {
          Drupal.Ajax.go($(this), this.ajax_activator);
          return false;
        }
        else {
          return true;
        }
      });
      return true;
    });
  }
  return true;
};

/**
 * Invokes plugins
 * 
 * @param {Object} formObj
 * @param {Object} submitter
 */
Drupal.Ajax.invoke = function(hook, args) {
  var plugin, r, ret;
  ret = true;
  for (plugin in Drupal.Ajax.plugins) {
    r = Drupal.Ajax.plugins[plugin](hook, args);
    if (r === false) {
      ret = false;
    }
  }
  return ret;
};

/**
 * Handles submission
 * 
 * @param {Object} submitter_
 * @return {Bool}
 */
Drupal.Ajax.go = function(formObj, submitter) {
  var submitterVal, submitterName, extraData;
  Drupal.Ajax.invoke('submit', {submitter:submitter});
  submitterVal = submitter.val();
  submitterName = submitter.attr('name');
  submitter.val(Drupal.t('Loading...'));
  extraData = {};
  extraData[submitterName] = submitterVal;
  extraData['drupal_ajax'] = '1';
  formObj.a_ajaxSubmit({
    extraData : extraData,
    beforeSubmit : function(data) {
      data[data.length] = {
        name : submitterName,
        value : submitterVal
      };
      data[data.length] = {
        name : 'drupal_ajax',
        value : '1'
      };
      return true;
    },
    dataType : 'json',
    error: function (XMLHttpRequest, textStatus, errorThrown) {
      window.alert(Drupal.t('ajax.module: An unknown error has occurred.'));
      if (window.console) {
        console.log('error', arguments);
      }
      return true;
    },
    success: function(data){
      submitter.val(submitterVal);
      Drupal.Ajax.response(submitter, formObj, data);
      return true;
    }
  });
  return false;
};

/**
 * Handles messaging
 * 
 * @param {Object} formObj
 * @param {Object} submitter
 * @param {Object} data
 * @param {Object} options
 * @return {Bool}
 */
Drupal.Ajax.message = function(formObj, submitter, data, options) {
  var args;
  data.local = {
    submitter : submitter,
    form : formObj
  };
  if (Drupal.Ajax.invoke('message', data)) {
    Drupal.Ajax.writeMessage(data.local.form, data.local.submitter, options);
    Drupal.Ajax.invoke('afterMessage', data);
  }
  return true;
};

/**
 * Writes message
 * 
 * @param {Object} formObj
 * @param {Object} submitter
 * @param {Object} options
 * @return {Bool}
 */
Drupal.Ajax.writeMessage = function(formObj, submitter, options) {
  var i, _i, thisItem, log, errBox, h, data;
  if (options.action === 'notify') {
    // Cleanups
    $('.messages, .ajax-preview', formObj).remove();
    $('input, textarea').removeClass('error status warning required');
    // Preview
    if (options.type === 'preview') {
      log = $('<div>').addClass('ajax-preview');
      log.html(options.messages);
      formObj.prepend(log);
    }
    // Status, Error, Message
    else {
      log = $('<ul>');
      errBox = $(".messages." + options.type, formObj[0])
      for (i = 0, _i = options.messages.length; i < _i; i++) {
        thisItem = $('#' + options.messages[i].id, formObj[0])
        thisItem.addClass(options.type);
        if (options.messages[i].required) {
          thisItem.addClass('required');
        }
        log.append('<li>' + options.messages[i].value + '</li>');
      }
      if (errBox.length === 0) {
        errBox = $("<div class='messages " + options.type + "'>");
        formObj.prepend(errBox);
      }
      errBox.html(log);
    }
  }
  else if (options.action === 'clear') {
    $('.messages, .ajax-preview', formObj).remove();
  }
  return true;
};

/**
 * Updates message containers
 * 
 * @param {Object} updaters
 * @return {Bool}
 */
Drupal.Ajax.updater = function(updaters) {
  var i, _i, elm;
  for (i = 0, _i = updaters.length; i < _i; i++) {
    elm = $(updaters[i].selector);
    // HTML:IN
    if (updaters[i].type === 'html_in') {
      elm.html(updaters[i].value);
    }
    // HTML:OUT
    else if (updaters[i].type === 'html_out') {
      elm.replaceWith(updaters[i].value);
    }
    // FIELD
    else if (updaters[i].type === 'field') {
      elm.val(updaters[i].value);
    }
    // REMOVE
    else if(updaters[i].type === 'remove') {
      elm.remove();
    }
  }
  return true;
};

/**
 * Handles data response
 * 
 * @param {Object} submitter
 * @param {Object} formObj
 * @param {Object} data
 * @return {Bool}
 */
Drupal.Ajax.response = function(submitter, formObj, data){
  var newSubmitter;
  data.local = {
    submitter : submitter,
    form : formObj
  };
  /**
   * Failure
   */
  if (data.status === false) {
    Drupal.Ajax.updater(data.updaters);
    Drupal.Ajax.message(formObj, submitter, data, {
      action : 'notify',
      messages : data.messages_error,
      type : 'error'
    });
  }
  /**
   * Success
   */
  else {
    // Display preview
    if (data.preview !== null) {
      Drupal.Ajax.updater(data.updaters);
      Drupal.Ajax.message(formObj, submitter, data, {
        action : 'notify',
        messages : decodeURIComponent(data.preview),
        type : 'preview'
      });
    }
    // If no redirect, then simply show messages
    else if (data.redirect === null) {
      if (data.messages_status.length > 0) {
        Drupal.Ajax.message(formObj, submitter, data, {
          action : 'notify',
          messages : data.messages_status,
          type : 'status'
        });
      }
      if (data.messages_warning.length > 0) {
        Drupal.Ajax.message(formObj, submitter, data, {
          action : 'notify',
          messages : data.messages_warning,
          type : 'warning'
        });
      }
      if (data.messages_status.length === 0 &&
          data.messages_warning.length === 0) {
        Drupal.Ajax.message(formObj, submitter, data, {action:'clear'});
      }
    }
    // Redirect
    else {
      if (Drupal.Ajax.invoke('redirect', data)) {
        Drupal.Ajax.redirect( data.redirect );
      }
      else {
        Drupal.Ajax.updater(data.updaters);
        if (data.messages_status.length === 0 &&
            data.messages_warning.length === 0) {
          Drupal.Ajax.message(formObj, submitter, data, {action:'clear'});
        }
        else {
          Drupal.Ajax.message(formObj, submitter, data, {
            action : 'notify',
            messages : data.messages_status,
            type : 'status'
          });
        }
      }
    }
  }
  return true;
};


/**
 * Redirects to appropriate page
 * 
 * @todo
 *   Some of this functionality should possibly hapen on
 *   the server instead of client.
 * @param {String} url
 */
Drupal.Ajax.redirect = function(url) {
  window.location.href = url;
};

Drupal.behaviors.Ajax = Drupal.Ajax.init;


;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * eurofurence © 1995..2000 tobias b köhler unci@tigerden.com
 */
Cufon.registerFont({"w":1114,"face":{"font-family":"eurofurence","font-weight":500,"font-stretch":"normal","units-per-em":"2325","panose-1":"2 15 4 2 2 2 3 8 2 4","ascent":"1860","descent":"-465","bbox":"-277 -1890 2158 438","underline-thickness":"145","underline-position":"-146","unicode-range":"U+0020-U+0491"},"glyphs":{" ":{"w":484},"!":{"d":"291,-436v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-944v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,944xm328,-110v0,30,-10,56,-32,78v-22,22,-48,32,-78,32v-30,0,-56,-10,-78,-32v-22,-22,-32,-48,-32,-78v0,-31,10,-56,32,-77v22,-21,48,-31,78,-31v30,0,56,10,78,31v22,21,32,46,32,77","w":436},"\"":{"d":"704,-1383v0,9,-2,19,-6,30r-145,363v-13,31,-34,46,-65,46v-20,0,-38,-6,-53,-20v-15,-14,-23,-31,-23,-51v0,-9,2,-19,6,-29r145,-363v13,-31,34,-47,65,-47v20,0,38,6,53,20v15,14,23,31,23,51xm341,-1383v0,9,-2,19,-6,30r-146,363v-12,31,-34,46,-65,46v-20,0,-38,-6,-53,-20v-15,-14,-23,-31,-23,-51v0,-9,2,-19,6,-29r146,-363v12,-31,34,-47,65,-47v20,0,38,6,53,20v15,14,23,31,23,51","w":752},"#":{"d":"1502,-509v0,49,-24,73,-73,73r-363,0r0,363v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-363r-273,0r0,363v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-363r-381,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r381,0r0,-291r-381,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r381,0r0,-363v0,-49,24,-73,72,-73v49,0,73,24,73,73r0,363r273,0r0,-363v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,363r363,0v49,0,73,24,73,72v0,49,-24,73,-73,73r-363,0r0,291r363,0v49,0,73,24,73,72xm920,-581r0,-291r-273,0r0,291r273,0","w":1550},"$":{"d":"873,-436v0,106,-34,200,-103,282v-69,82,-156,131,-260,148r0,224v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-224v-62,-11,-121,-35,-177,-72v-59,-40,-102,-87,-129,-140v-7,-15,-11,-27,-11,-38v0,-20,8,-37,24,-51v16,-14,33,-21,53,-21v21,0,41,12,60,37v58,75,118,121,180,137r0,-580v-85,-17,-154,-59,-209,-126v-55,-67,-82,-144,-82,-230v0,-86,27,-163,82,-230v55,-67,124,-109,209,-126r0,-225v0,-49,24,-73,72,-73v49,0,73,24,73,73r0,225v113,23,194,81,241,173v7,15,11,28,11,39v0,19,-8,36,-23,50v-15,14,-33,21,-53,21v-16,0,-42,-19,-79,-56v-41,-42,-73,-67,-97,-76r0,429v105,18,191,68,260,149v69,81,103,175,103,281xm365,-884r0,-411v-43,15,-78,42,-105,80v-27,38,-41,80,-41,125v0,46,14,88,41,126v27,38,62,65,105,80xm728,-436v0,-66,-20,-125,-61,-178v-41,-53,-93,-87,-157,-103r0,563v64,-17,116,-51,157,-104v41,-53,61,-112,61,-178","w":922},"%":{"d":"776,-1090v0,100,-35,185,-106,256v-71,71,-157,107,-257,107v-100,0,-186,-36,-257,-107v-71,-71,-106,-156,-106,-256v0,-100,35,-185,106,-256v71,-71,157,-107,257,-107v100,0,186,36,257,107v71,71,106,156,106,256xm1503,-363v0,100,-36,186,-107,257v-71,71,-157,106,-256,106v-100,0,-186,-35,-257,-106v-71,-71,-107,-157,-107,-257v0,-100,36,-186,107,-257v71,-71,157,-107,257,-107v99,0,185,36,256,107v71,71,107,157,107,257xm1504,-1380v0,19,-7,36,-22,51r-1308,1308v-15,15,-32,22,-51,22v-19,0,-37,-8,-52,-23v-15,-15,-23,-32,-23,-51v0,-19,8,-36,23,-51r1308,-1308v15,-15,32,-22,51,-22v19,0,37,7,52,22v15,15,22,33,22,52xm631,-1090v0,-60,-21,-111,-64,-154v-43,-43,-94,-64,-154,-64v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154v0,60,21,111,64,154v43,43,94,64,154,64v60,0,111,-21,154,-64v43,-43,64,-94,64,-154xm1358,-363v0,-60,-21,-111,-64,-154v-43,-43,-95,-64,-154,-64v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154v0,60,21,111,64,154v43,43,94,64,154,64v59,0,111,-21,154,-64v43,-43,64,-94,64,-154","w":1553},"&":{"d":"1164,-73v0,19,-7,36,-22,51v-15,15,-33,23,-53,23v-19,0,-36,-7,-51,-22r-184,-184v-85,137,-209,205,-370,205v-120,0,-223,-43,-308,-128v-85,-85,-128,-188,-128,-308v0,-161,69,-285,206,-370v-89,-88,-133,-183,-133,-284v0,-100,36,-185,107,-256v71,-71,157,-107,256,-107v100,0,186,36,257,107v71,71,107,156,107,256v0,90,-30,169,-90,238v-60,69,-133,109,-222,122r605,606v15,15,23,32,23,51xm702,-1090v0,-60,-21,-111,-64,-154v-43,-43,-94,-64,-154,-64v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154v0,47,14,89,42,127v11,16,43,49,94,99v27,-5,55,-8,82,-8v60,0,111,-21,154,-64v43,-43,64,-94,64,-154xm748,-312r-387,-387v-111,52,-167,140,-167,263v0,80,29,149,86,206v57,57,125,85,204,85v123,0,211,-56,264,-167","w":1212},"'":{"d":"341,-1383v0,9,-2,19,-6,30r-146,363v-12,31,-34,46,-65,46v-20,0,-38,-6,-53,-20v-15,-14,-23,-31,-23,-51v0,-9,2,-19,6,-29r146,-363v12,-31,34,-47,65,-47v20,0,38,6,53,20v15,14,23,31,23,51","w":389,"k":{"s":43}},"(":{"d":"428,-1381v0,11,-4,23,-11,38v-79,161,-134,295,-165,402v-39,134,-58,278,-58,432v0,155,19,299,58,432v31,107,86,242,165,403v7,15,11,27,11,38v0,19,-8,36,-24,50v-16,14,-33,22,-53,22v-35,0,-79,-57,-130,-170v-115,-254,-173,-512,-173,-775v0,-262,58,-520,174,-774v51,-113,95,-170,130,-170v19,0,36,7,52,21v16,14,24,31,24,51","w":476},")":{"d":"428,-509v0,263,-58,521,-173,775v-51,113,-95,170,-130,170v-20,0,-38,-8,-53,-22v-15,-14,-23,-31,-23,-50v0,-11,3,-23,10,-38v79,-161,134,-296,165,-403v39,-133,58,-277,58,-432v0,-154,-19,-298,-58,-432v-31,-107,-86,-241,-165,-402v-7,-15,-11,-27,-11,-38v0,-20,8,-37,24,-51v16,-14,33,-21,53,-21v35,0,79,57,130,170v115,254,173,512,173,774","w":476},"*":{"d":"1066,-945v0,49,-22,73,-66,73v-5,0,-108,-6,-311,-18r228,202v15,13,22,30,22,51v0,19,-8,37,-23,52v-15,15,-32,23,-51,23v-21,0,-38,-8,-51,-23r-202,-228v12,203,18,307,18,311v0,44,-24,66,-73,66v-49,0,-73,-22,-73,-66v0,-4,6,-108,19,-311r-203,228v-13,15,-30,23,-51,23v-19,0,-36,-8,-51,-23v-15,-15,-23,-33,-23,-52v0,-21,7,-38,22,-51r228,-202v-203,12,-306,18,-310,18v-45,0,-67,-24,-67,-73v0,-48,22,-72,66,-72v3,0,107,6,311,18r-228,-202v-15,-13,-22,-30,-22,-51v0,-20,8,-37,23,-52v15,-15,32,-23,51,-23v21,0,38,8,51,23r203,228v-13,-203,-19,-307,-19,-311v0,-44,24,-66,73,-66v49,0,73,22,73,66v0,3,-6,107,-18,311r202,-228v13,-15,30,-23,51,-23v19,0,36,8,51,23v15,15,23,32,23,52v0,21,-7,38,-22,51r-228,202v203,-12,307,-18,311,-18v44,0,66,24,66,72","k":{"_":1114}},"+":{"d":"1066,-618v0,49,-24,73,-73,73r-363,0r0,363v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-363r-363,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r363,0r0,-364v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,364r363,0v49,0,73,24,73,72"},",":{"d":"324,-73v0,65,-13,131,-40,196v-27,69,-64,124,-110,165v-17,15,-34,22,-51,22v-19,0,-37,-7,-52,-22v-15,-15,-23,-33,-23,-52v0,-8,22,-43,65,-106v43,-63,65,-131,65,-203v0,-48,24,-72,73,-72v49,0,73,24,73,72","w":372,"k":{"\"":372}},"-":{"d":"630,-509v0,49,-24,73,-73,73r-436,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r436,0v49,0,73,24,73,72","w":678,"k":{"7":237,"2":348}},"\u2010":{"d":"630,-509v0,49,-24,73,-73,73r-436,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r436,0v49,0,73,24,73,72","w":678},".":{"d":"269,-110v0,30,-11,56,-33,78v-22,22,-47,32,-77,32v-30,0,-56,-10,-78,-32v-22,-22,-33,-48,-33,-78v0,-31,10,-56,32,-77v22,-21,48,-31,79,-31v30,0,55,10,77,31v22,21,33,46,33,77","w":318,"k":{"'":318,"\"":318}},"\/":{"d":"1068,-1383v0,12,-3,24,-9,35r-872,1745v-13,27,-34,41,-62,41v-20,0,-37,-7,-53,-21v-16,-14,-24,-31,-24,-51v0,-11,3,-23,9,-34r872,-1745v13,-27,34,-41,63,-41v19,0,36,7,52,21v16,14,24,31,24,50","w":1116},"0":{"d":"1066,-618v0,157,-45,297,-134,418v-99,133,-224,200,-375,200v-151,0,-276,-67,-375,-200v-89,-121,-134,-261,-134,-418v0,-157,45,-296,134,-417v99,-133,224,-200,375,-200v151,0,276,67,375,200v89,121,134,260,134,417xm920,-618v0,-115,-31,-220,-92,-313v-71,-106,-161,-159,-271,-159v-110,0,-200,53,-271,159v-61,93,-92,198,-92,313v0,116,31,221,92,314v71,106,161,159,271,159v110,0,200,-53,271,-159v61,-93,92,-198,92,-314xm630,-617v0,20,-8,37,-22,51v-14,14,-31,22,-51,22v-20,0,-37,-8,-51,-22v-14,-14,-22,-31,-22,-51v0,-47,24,-71,73,-71v49,0,73,24,73,71","k":{",":78}},"1":{"d":"945,-73v0,49,-24,73,-72,73r-533,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r193,0r0,-842r-239,239v-15,15,-32,23,-51,23v-19,0,-36,-8,-51,-23v-15,-15,-23,-32,-23,-52v0,-19,7,-36,22,-51r354,-353v21,-21,41,-32,60,-32v49,0,74,29,74,87r0,1004r194,0v48,0,72,24,72,72"},"2":{"d":"998,-73v0,49,-24,73,-72,73r-727,0v-55,0,-83,-21,-83,-64v0,-21,13,-43,39,-67v22,-19,52,-39,89,-59r95,-51v343,-200,514,-386,514,-558v0,-80,-28,-148,-85,-205v-57,-57,-126,-86,-206,-86v-79,0,-147,29,-204,86v-57,57,-86,125,-86,205v0,48,-24,72,-73,72v-49,0,-73,-24,-73,-72v0,-121,43,-224,128,-309v85,-85,188,-127,308,-127v121,0,223,43,308,128v85,85,128,188,128,308v0,100,-33,193,-100,279v-50,63,-127,131,-231,203r-252,172r511,0v48,0,72,24,72,72"},"3":{"d":"1008,-1173v0,23,-11,44,-33,64r-418,383v124,8,228,57,313,148v85,91,128,199,128,324v0,130,-46,242,-138,334v-92,92,-204,138,-334,138v-82,0,-161,-21,-236,-64v-79,-44,-136,-101,-173,-172v-7,-14,-11,-27,-11,-38v0,-19,8,-36,24,-50v16,-14,33,-22,52,-22v21,0,42,12,61,37v45,57,85,97,120,120v45,29,99,44,163,44v90,0,167,-32,231,-96v64,-64,96,-141,96,-231v0,-90,-32,-167,-96,-231v-64,-64,-141,-96,-231,-96v-59,0,-118,19,-180,59v-62,40,-97,60,-105,60v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51v0,-21,9,-40,27,-56r544,-499r-559,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r746,0v55,0,82,21,82,62"},"4":{"d":"1068,-291v0,49,-24,73,-72,73r-218,0r0,363v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-363r-508,0v-52,0,-78,-20,-78,-61v0,-17,6,-34,17,-52r582,-872v19,-29,42,-43,68,-43v43,0,65,28,65,83r0,800r218,0v48,0,72,24,72,72xm632,-363r0,-560r-372,560r372,0"},"5":{"d":"1037,-291v0,141,-50,261,-149,360v-99,99,-219,149,-360,149v-88,0,-173,-23,-254,-69v-85,-47,-147,-109,-186,-185v-7,-15,-11,-27,-11,-38v0,-20,7,-37,23,-51v16,-14,34,-21,53,-21v22,0,42,12,61,37v9,14,23,34,44,61v70,81,160,121,270,121v100,0,186,-36,257,-107v71,-71,107,-157,107,-257v0,-99,-36,-185,-107,-256v-71,-71,-157,-107,-257,-107v-119,0,-224,61,-314,182v-23,31,-47,46,-70,46v-44,0,-66,-25,-66,-75v0,-6,0,-12,1,-19r102,-654v2,-15,10,-29,25,-42v15,-13,31,-19,46,-19r712,0v49,0,73,24,73,72v0,49,-24,73,-73,73r-649,0r-58,369v83,-52,173,-78,271,-78v141,0,261,50,360,149v99,99,149,219,149,359"},"6":{"d":"1066,-1380v0,48,-24,72,-73,72v-130,0,-253,30,-369,90v-116,60,-210,144,-285,250v69,-33,141,-49,218,-49v140,0,259,50,359,149v100,99,150,219,150,359v0,141,-50,261,-150,360v-100,99,-219,149,-359,149v-140,0,-259,-50,-359,-149v-100,-99,-150,-219,-150,-360v0,-260,92,-482,277,-667v185,-185,407,-277,668,-277v49,0,73,24,73,73xm920,-509v0,-99,-35,-185,-106,-256v-71,-71,-157,-107,-257,-107v-100,0,-186,36,-257,107v-71,71,-106,157,-106,256v0,100,35,186,106,257v71,71,157,107,257,107v100,0,186,-36,257,-107v71,-71,106,-157,106,-257"},"7":{"d":"1068,-1173v0,15,-4,30,-13,45r-702,1308v-14,26,-35,39,-62,39v-20,0,-38,-7,-53,-21v-15,-14,-23,-31,-23,-51v0,-12,3,-24,10,-36r645,-1201r-751,0v-48,0,-72,-24,-72,-73v0,-48,24,-72,72,-72r872,0v51,0,77,21,77,62"},"8":{"d":"993,-436v0,120,-43,223,-128,308v-85,85,-188,128,-308,128v-120,0,-223,-43,-308,-128v-85,-85,-128,-188,-128,-308v0,-162,69,-286,208,-371v-90,-73,-135,-168,-135,-283v0,-100,35,-185,106,-256v71,-71,157,-107,257,-107v100,0,186,36,257,107v71,71,106,156,106,256v0,115,-45,210,-135,283v139,85,208,209,208,371xm775,-1090v0,-60,-21,-111,-64,-154v-43,-43,-94,-64,-154,-64v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154v0,60,21,111,64,154v43,43,94,64,154,64v60,0,111,-21,154,-64v43,-43,64,-94,64,-154xm848,-436v0,-80,-29,-149,-86,-206v-57,-57,-125,-85,-205,-85v-80,0,-148,28,-205,85v-57,57,-86,126,-86,206v0,80,29,149,86,206v57,57,125,85,205,85v80,0,148,-28,205,-85v57,-57,86,-126,86,-206"},"9":{"d":"1066,-727v0,261,-92,483,-277,668v-185,185,-407,277,-668,277v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72v130,0,253,-31,369,-91v116,-60,210,-143,285,-249v-69,33,-141,49,-218,49v-140,0,-259,-50,-359,-149v-100,-99,-150,-219,-150,-360v0,-140,50,-260,150,-359v100,-99,219,-149,359,-149v140,0,259,50,359,149v100,99,150,219,150,359xm920,-727v0,-99,-35,-185,-106,-256v-71,-71,-157,-107,-257,-107v-100,0,-186,36,-257,107v-71,71,-106,157,-106,256v0,100,35,186,106,257v71,71,157,107,257,107v100,0,186,-36,257,-107v71,-71,106,-157,106,-257"},":":{"d":"269,-910v0,30,-11,56,-33,78v-22,22,-47,33,-77,33v-30,0,-56,-11,-78,-33v-22,-22,-33,-48,-33,-78v0,-30,10,-55,32,-76v22,-21,48,-31,79,-31v30,0,55,10,77,31v22,21,33,46,33,76xm269,-110v0,30,-11,56,-33,78v-22,22,-47,32,-77,32v-30,0,-56,-10,-78,-32v-22,-22,-33,-48,-33,-78v0,-31,10,-56,32,-77v22,-21,48,-31,79,-31v30,0,55,10,77,31v22,21,33,46,33,77","w":318},";":{"d":"361,-910v0,30,-11,56,-33,78v-22,22,-47,33,-77,33v-30,0,-56,-11,-78,-33v-22,-22,-33,-48,-33,-78v0,-30,10,-55,32,-76v22,-21,48,-31,79,-31v30,0,55,10,77,31v22,21,33,46,33,76xm324,-73v0,65,-13,131,-40,196v-27,69,-64,124,-110,165v-17,15,-34,22,-51,22v-19,0,-37,-7,-52,-22v-15,-15,-23,-33,-23,-52v0,-8,22,-43,65,-106v43,-63,65,-131,65,-203v0,-48,24,-72,73,-72v49,0,73,24,73,72","w":410},"<":{"d":"1066,-184v0,20,-6,38,-20,53v-14,15,-31,23,-51,23v-11,0,-23,-3,-35,-9r-859,-429v-35,-18,-53,-42,-53,-72v0,-29,18,-53,53,-71r859,-430v12,-5,24,-8,35,-8v20,0,37,8,51,23v14,15,20,33,20,53v0,28,-14,49,-41,62r-741,371r741,371v27,14,41,35,41,63"},"=":{"d":"1066,-763v0,49,-24,73,-73,73r-872,0v-49,0,-73,-24,-73,-73v0,-49,24,-73,73,-73r872,0v49,0,73,24,73,73xm1066,-472v0,48,-24,72,-73,72r-872,0v-49,0,-73,-24,-73,-72v0,-49,24,-73,73,-73r872,0v49,0,73,24,73,73","k":{"_":1114}},">":{"d":"1066,-618v0,30,-18,54,-53,72r-859,429v-12,6,-24,9,-35,9v-20,0,-37,-8,-51,-23v-14,-15,-20,-33,-20,-53v0,-28,14,-49,41,-63r742,-371r-742,-371v-27,-13,-41,-34,-41,-62v0,-20,6,-38,20,-53v14,-15,31,-23,51,-23v11,0,23,3,35,8r859,430v35,18,53,42,53,71"},"?":{"d":"775,-1090v0,100,-36,185,-107,256v-71,71,-156,107,-256,107v-30,0,-56,11,-77,33v-21,22,-32,47,-32,76v0,30,11,56,32,77v21,21,47,32,77,32v13,0,29,-5,48,-13v19,-8,34,-12,44,-12v20,0,37,8,51,23v14,15,21,33,21,53v0,31,-20,56,-61,74v-33,14,-67,21,-103,21v-70,0,-130,-25,-180,-75v-50,-50,-75,-110,-75,-180v0,-69,25,-129,75,-179v50,-50,110,-75,180,-75v60,0,111,-21,154,-64v43,-43,64,-94,64,-154v0,-60,-21,-111,-64,-154v-43,-43,-94,-64,-154,-64v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73v0,-100,36,-185,107,-256v71,-71,157,-107,257,-107v100,0,185,36,256,107v71,71,107,156,107,256xm522,-110v0,30,-10,56,-32,78v-22,22,-48,32,-78,32v-30,0,-56,-10,-78,-32v-22,-22,-33,-48,-33,-78v0,-31,11,-56,33,-77v22,-21,47,-31,78,-31v30,0,56,10,78,31v22,21,32,46,32,77","w":823},"@":{"d":"1332,-896v0,153,-54,285,-163,394v-109,109,-240,163,-394,163v-107,0,-198,-38,-274,-114v-76,-76,-114,-167,-114,-274v0,-107,38,-197,114,-273v76,-76,167,-114,274,-114v101,0,189,35,264,104v75,69,116,155,123,256v17,-46,25,-93,25,-142v0,-113,-40,-210,-121,-291v-81,-81,-178,-121,-291,-121v-160,0,-297,56,-411,170v-114,114,-170,251,-170,411v0,161,56,297,170,411v114,114,251,171,411,171v131,0,249,-41,356,-122r56,-49v17,-15,34,-23,50,-23v20,0,38,8,53,23v15,15,22,32,22,52v0,17,-7,34,-22,50v-61,67,-139,120,-236,159v-92,37,-185,55,-279,55v-200,0,-371,-71,-513,-213v-142,-142,-214,-313,-214,-514v0,-200,71,-371,213,-513v142,-142,313,-213,514,-213v153,0,284,54,393,163v109,109,164,241,164,394xm1017,-727v0,-66,-24,-123,-71,-171v-47,-48,-104,-71,-171,-71v-67,0,-124,23,-171,71v-47,48,-71,105,-71,171v0,67,24,125,71,172v47,47,105,71,172,71v66,0,123,-24,170,-72v47,-48,71,-104,71,-171","w":1380},"A":{"d":"1504,-70v0,19,-8,36,-24,50v-16,14,-33,21,-52,21v-29,0,-50,-14,-63,-41r-200,-400v-8,3,-17,4,-26,4r-726,0v-9,0,-18,-1,-26,-4r-200,400v-13,27,-34,41,-62,41v-20,0,-37,-7,-53,-21v-16,-14,-24,-31,-24,-50v0,-12,3,-24,9,-35r648,-1295v17,-36,41,-54,71,-54v30,0,54,18,71,54r648,1295v6,11,9,23,9,35xm1094,-581r-318,-637r-318,637r636,0","w":1504,"k":{"w":106,"v":106,"Y":242,"W":323,"V":323,"T":190}},"B":{"d":"1017,-436v0,121,-43,223,-128,308v-85,85,-188,128,-308,128r-363,0v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-1307v0,-19,7,-36,22,-51v15,-15,32,-22,51,-22r363,0v100,0,186,36,257,107v71,71,107,156,107,256v0,115,-45,210,-136,283v139,85,208,209,208,371xm799,-1090v0,-60,-21,-111,-64,-154v-43,-43,-94,-64,-154,-64r-290,0r0,436r290,0v60,0,111,-21,154,-64v43,-43,64,-94,64,-154xm872,-436v0,-80,-29,-149,-86,-206v-57,-57,-125,-85,-205,-85r-290,0r0,582r290,0v80,0,148,-28,205,-85v57,-57,86,-126,86,-206","w":1066},"C":{"d":"1311,-263v0,16,-8,33,-23,50v-56,65,-134,118,-234,158v-94,37,-187,55,-279,55v-201,0,-372,-71,-514,-213v-142,-142,-213,-313,-213,-514v0,-200,72,-371,214,-513v142,-142,313,-213,513,-213v92,0,185,18,279,55v100,40,178,92,234,157v15,18,23,35,23,51v0,20,-8,37,-23,52v-15,15,-32,23,-52,23v-15,0,-32,-8,-50,-23v-15,-13,-37,-33,-68,-58v-98,-75,-212,-112,-343,-112v-160,0,-297,56,-411,170v-114,114,-170,251,-170,411v0,161,56,297,170,411v114,114,251,171,411,171v131,0,245,-37,343,-112v15,-13,37,-33,68,-58v18,-15,35,-23,50,-23v20,0,37,7,52,22v15,15,23,33,23,53","w":1360},"D":{"d":"1380,-727v0,201,-71,372,-213,514v-142,142,-313,213,-513,213r-436,0v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-1307v0,-19,7,-36,22,-51v15,-15,32,-22,51,-22r436,0v200,0,371,71,513,213v142,142,213,313,213,513xm1235,-727v0,-160,-57,-297,-171,-411v-114,-114,-250,-170,-410,-170r-363,0r0,1163r363,0v160,0,296,-57,410,-171v114,-114,171,-250,171,-411","w":1429,"k":{",":193}},"E":{"d":"1017,-73v0,49,-24,73,-72,73r-727,0v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-1307v0,-19,7,-36,22,-51v15,-15,32,-22,51,-22r727,0v48,0,72,24,72,73v0,48,-24,72,-72,72r-654,0r0,509r508,0v49,0,73,24,73,72v0,49,-24,73,-73,73r-508,0r0,509r654,0v48,0,72,24,72,72","w":1066},"F":{"d":"1017,-1380v0,48,-24,72,-72,72r-654,0r0,509r508,0v49,0,73,24,73,72v0,49,-24,73,-73,73r-508,0r0,581v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1307v0,-19,7,-36,22,-51v15,-15,32,-22,51,-22r727,0v48,0,72,24,72,73","w":1017,"k":{"a":62,".":145,",":558}},"G":{"d":"1311,-1190v0,20,-8,37,-23,52v-15,15,-32,23,-52,23v-15,0,-31,-8,-50,-23v-78,-62,-141,-104,-189,-126v-64,-29,-138,-44,-222,-44v-160,0,-297,56,-411,170v-114,114,-170,251,-170,411v0,161,56,297,170,411v114,114,251,171,411,171v149,0,279,-50,389,-150r0,-432v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,463v0,71,-73,135,-220,192v-123,48,-228,72,-315,72v-201,0,-372,-71,-514,-213v-142,-142,-213,-313,-213,-514v0,-200,72,-371,214,-513v142,-142,313,-213,513,-213v93,0,186,18,279,55v98,39,176,92,234,157v15,17,23,34,23,51","w":1408},"H":{"d":"1163,-73v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-581r-726,0r0,581v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1307v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,581r726,0r0,-581v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,1307","w":1308},"I":{"d":"291,-73v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1307v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,1307","w":436},"J":{"d":"412,-1380r0,1453v0,100,-36,186,-107,257v-71,71,-157,106,-257,106v-63,0,-123,-16,-182,-49v-61,-35,-105,-79,-132,-134v-7,-14,-11,-27,-11,-38v0,-19,8,-37,23,-51v15,-14,33,-21,53,-21v17,0,47,25,91,74v44,49,96,74,158,74v60,0,111,-21,154,-64v43,-43,64,-94,64,-154r0,-1453v0,-49,24,-73,73,-73v49,0,73,24,73,73","w":557},"K":{"d":"1091,-73v0,19,-8,36,-23,51v-15,15,-32,23,-51,23v-19,0,-36,-7,-51,-22r-654,-654v-11,-11,-18,-24,-21,-38r0,640v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1307v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,640v3,-14,10,-27,21,-38r654,-654v15,-15,32,-22,51,-22v19,0,36,7,51,22v15,15,23,33,23,52v0,19,-7,36,-22,51r-603,602r603,603v15,15,22,32,22,51","w":1140,"k":{"w":127,"v":127}},"L":{"d":"1017,-73v0,49,-24,73,-72,73r-727,0v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-1307v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,1235r654,0v48,0,72,24,72,72","w":1066,"k":{"Y":355,"V":434,"O":144}},"M":{"d":"1648,-70v0,47,-25,70,-75,70v-38,0,-61,-19,-69,-57r-242,-1088r-342,798v-16,38,-40,57,-72,57v-32,0,-56,-19,-72,-57r-342,-798r-242,1088v-8,38,-31,57,-69,57v-50,0,-75,-23,-75,-70v0,-6,1,-12,3,-18r288,-1296v10,-47,35,-70,74,-70v31,0,55,19,71,56r364,850r364,-850v16,-37,40,-56,71,-56v39,0,64,23,75,70r288,1296v1,6,2,12,2,18","w":1696},"N":{"d":"1308,-73v0,49,-25,74,-74,74v-23,0,-44,-13,-64,-39r-879,-1131r0,1096v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1307v0,-49,25,-74,74,-74v23,0,44,13,64,39r880,1131r0,-1096v0,-49,24,-73,72,-73v49,0,73,24,73,73r0,1307","w":1453},"O":{"d":"1502,-727v0,201,-72,372,-214,514v-142,142,-313,213,-513,213v-200,0,-371,-71,-513,-213v-142,-142,-214,-313,-214,-514v0,-200,72,-371,214,-513v142,-142,313,-213,513,-213v200,0,371,71,513,213v142,142,214,313,214,513xm1356,-727v0,-160,-56,-297,-170,-411v-114,-114,-251,-170,-411,-170v-160,0,-297,56,-411,170v-114,114,-170,251,-170,411v0,161,56,297,170,411v114,114,251,171,411,171v160,0,297,-57,411,-171v114,-114,170,-250,170,-411","w":1550,"k":{",":193}},"P":{"d":"291,-654v0,-49,24,-73,72,-73r218,0v80,0,148,-28,205,-85v57,-57,86,-125,86,-205v0,-80,-29,-148,-86,-205v-57,-57,-125,-86,-205,-86r-290,0r0,654xm145,-73r0,-1307v0,-19,7,-36,22,-51v15,-15,32,-22,51,-22r363,0v121,0,224,42,309,127v85,85,127,188,127,309v0,120,-42,223,-127,308v-85,85,-188,128,-309,128r-218,0v-48,0,-72,-24,-72,-73r0,581v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73","w":1066,"k":{"A":195,".":480,",":607}},"Q":{"d":"1502,363v0,49,-24,73,-73,73v-144,0,-276,-40,-397,-119v-121,-79,-211,-185,-269,-317v-198,-3,-367,-76,-506,-218v-139,-142,-209,-311,-209,-509v0,-200,72,-371,214,-513v142,-142,313,-213,513,-213v200,0,371,71,513,213v142,142,214,313,214,513v0,173,-55,327,-165,461v-110,134,-250,218,-419,252v51,93,122,167,214,222v92,55,190,83,297,83v49,0,73,24,73,72xm1356,-727v0,-160,-56,-297,-170,-411v-114,-114,-251,-170,-411,-170v-160,0,-297,56,-411,170v-114,114,-170,251,-170,411v0,149,50,279,150,390v100,111,224,174,372,189v-9,-47,-14,-94,-14,-143v0,-48,24,-72,73,-72v49,0,73,23,73,71v0,48,5,95,16,140v141,-22,259,-87,352,-196v93,-109,140,-236,140,-379","w":1550},"R":{"d":"1018,-73v0,19,-7,36,-22,51v-15,15,-33,23,-52,23v-19,0,-36,-7,-51,-22r-571,-572v-18,-17,-28,-33,-31,-47r0,567v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1308v0,-48,24,-72,72,-72r364,0v121,0,224,43,309,128v85,85,127,188,127,308v0,120,-42,223,-127,308v-85,85,-188,128,-309,128r-42,0r457,457v15,15,22,32,22,51xm872,-1017v0,-80,-29,-148,-86,-205v-57,-57,-125,-86,-205,-86r-290,0r0,642v7,-41,35,-61,86,-61r204,0v80,0,148,-28,205,-85v57,-57,86,-125,86,-205","w":1067},"S":{"d":"873,-436v0,120,-43,223,-128,308v-85,85,-188,128,-308,128v-76,0,-149,-20,-218,-59v-71,-40,-125,-93,-160,-159v-7,-14,-11,-27,-11,-38v0,-20,8,-37,24,-51v16,-14,33,-21,53,-21v21,0,41,12,60,37v7,11,19,28,35,49v56,65,128,97,217,97v80,0,148,-28,205,-85v57,-57,86,-126,86,-206v0,-80,-29,-149,-86,-206v-57,-57,-125,-85,-205,-85v-100,0,-186,-36,-257,-107v-71,-71,-106,-156,-106,-256v0,-100,35,-185,106,-256v71,-71,157,-107,257,-107v63,0,125,16,183,49v58,33,102,76,131,131v7,14,11,27,11,39v0,19,-8,36,-23,50v-15,14,-33,21,-53,21v-16,0,-46,-25,-91,-73v-45,-48,-97,-72,-158,-72v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154v0,60,21,111,64,154v43,43,94,64,154,64v120,0,223,43,308,128v85,85,128,188,128,308","w":922},"T":{"d":"1066,-1380v0,48,-24,72,-73,72r-363,0r0,1235v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1235r-363,0v-49,0,-73,-24,-73,-72v0,-49,24,-73,73,-73r872,0v49,0,73,24,73,73","w":1066,"k":{"y":189,"w":176,"u":189,"s":164,"r":235,"o":157,"e":157,"a":155,"A":190,";":257,":":161,".":141,"-":139,",":267}},"U":{"d":"1114,-509v0,141,-50,261,-149,360v-99,99,-219,149,-360,149v-140,0,-260,-50,-359,-149v-99,-99,-149,-219,-149,-360r0,-871v0,-49,24,-73,73,-73v48,0,72,24,72,73r0,871v0,100,36,186,107,257v71,71,157,107,256,107v100,0,186,-36,257,-107v71,-71,107,-157,107,-257r0,-871v0,-49,24,-73,72,-73v49,0,73,24,73,73r0,871","w":1211,"k":{",":101}},"V":{"d":"1504,-1383v0,12,-3,24,-9,35r-648,1295v-17,36,-41,54,-71,54v-29,0,-53,-18,-71,-54r-648,-1295v-6,-11,-9,-23,-9,-35v0,-19,8,-36,24,-50v16,-14,33,-21,53,-21v28,0,49,14,62,41r589,1178r589,-1178v13,-27,34,-41,63,-41v19,0,36,7,52,21v16,14,24,31,24,50","w":1504,"k":{"r":27,"o":84,"e":84,"a":52,"A":323,";":63,".":306,"-":106,",":455}},"W":{"d":"2158,-1383v0,12,-3,24,-9,35r-648,1295v-17,36,-41,54,-71,54v-30,0,-54,-18,-71,-54r-256,-511r-256,511v-17,36,-41,54,-71,54v-29,0,-53,-18,-71,-54r-648,-1295v-6,-11,-9,-23,-9,-35v0,-19,8,-36,24,-50v16,-14,33,-21,53,-21v28,0,49,14,62,41r589,1178r246,-492r-311,-621v-6,-11,-9,-23,-9,-35v0,-19,8,-36,24,-50v16,-14,33,-21,52,-21v29,0,50,14,63,41r262,524r262,-524v13,-27,34,-41,63,-41v19,0,36,7,52,21v16,14,24,31,24,50v0,12,-3,24,-9,35r-311,621r246,492r589,-1178v13,-27,34,-41,62,-41v20,0,37,7,53,21v16,14,24,31,24,50","w":2158,"k":{"r":27,"o":84,"e":84,"a":52,"A":323,";":63,".":306,"-":106,",":455}},"X":{"d":"1214,-72v0,19,-8,36,-24,51v-16,15,-33,22,-52,22v-22,0,-41,-10,-56,-29r-451,-580r-451,580v-15,19,-34,29,-56,29v-19,0,-36,-7,-52,-22v-16,-15,-24,-32,-24,-51v0,-16,6,-31,17,-45r474,-610r-474,-609v-11,-14,-17,-29,-17,-45v0,-19,8,-36,24,-51v16,-15,33,-22,52,-22v22,0,41,10,56,29r451,580r451,-580v15,-19,34,-29,56,-29v19,0,36,7,52,22v16,15,24,32,24,51v0,16,-6,31,-17,45r-474,609r474,610v11,14,17,29,17,45","w":1262},"Y":{"d":"1214,-1381v0,16,-6,31,-17,45r-493,634r0,629v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-629r-493,-634v-11,-14,-17,-29,-17,-45v0,-19,8,-36,24,-51v16,-15,33,-22,52,-22v22,0,41,10,56,29r451,580r451,-580v15,-19,34,-29,56,-29v19,0,36,7,52,22v16,15,24,32,24,51","w":1214,"k":{"u":65,"o":211,"e":211,"a":151,"A":242,";":147,":":51,".":215,"-":213,",":342}},"Z":{"d":"1213,-1381v0,16,-8,35,-25,56r-917,1180r868,0v49,0,73,24,73,72v0,49,-24,73,-73,73r-1014,0v-51,0,-77,-24,-77,-72v0,-16,8,-35,25,-56r918,-1180r-869,0v-49,0,-73,-24,-73,-72v0,-49,24,-73,73,-73r1015,-1v51,0,76,24,76,73","w":1261},"[":{"d":"727,363v0,49,-24,73,-73,73r-436,0v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-1743v0,-19,7,-36,22,-51v15,-15,32,-22,51,-22r436,0v49,0,73,24,73,73v0,48,-24,72,-73,72r-363,0r0,1599r363,0v49,0,73,24,73,72","w":775},"\\":{"d":"1068,366v0,20,-8,37,-24,51v-16,14,-33,21,-52,21v-29,0,-50,-14,-63,-41r-872,-1745v-6,-11,-9,-23,-9,-35v0,-19,8,-36,24,-50v16,-14,33,-21,53,-21v28,0,49,14,62,41r872,1745v6,11,9,23,9,34","w":1116},"]":{"d":"630,-1380r0,1743v0,19,-7,36,-22,51v-15,15,-32,22,-51,22r-436,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r363,0r0,-1599r-363,0v-49,0,-73,-24,-73,-72v0,-49,24,-73,73,-73r436,0v19,0,36,7,51,22v15,15,22,32,22,51","w":775},"^":{"d":"778,-1090v0,19,-8,37,-23,52v-15,15,-33,22,-52,22v-19,0,-36,-7,-51,-22r-239,-240r-239,240v-15,15,-32,22,-51,22v-19,0,-37,-7,-52,-22v-15,-15,-23,-33,-23,-52v0,-19,8,-36,23,-51r291,-291v15,-15,31,-22,50,-22v20,0,37,7,52,22r291,291v15,15,23,32,23,51","w":826},"_":{"d":"1066,-73v0,49,-24,73,-73,73r-872,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r872,0v49,0,73,24,73,72","k":{"=":1114,"*":1114}},"`":{"d":"341,-1015v0,20,-8,37,-23,51v-15,14,-33,20,-53,20v-31,0,-53,-15,-65,-46r-146,-363v-4,-11,-6,-21,-6,-30v0,-20,8,-37,23,-51v15,-14,33,-20,53,-20v31,0,53,16,65,47r146,363v4,10,6,20,6,29","w":389},"a":{"d":"775,-73v0,49,-24,73,-73,73v-49,0,-73,-24,-72,-73v-65,49,-137,73,-218,73v-100,0,-186,-35,-257,-106v-71,-71,-107,-157,-107,-257v0,-100,36,-186,107,-257v71,-71,157,-107,257,-107v81,0,153,24,218,73v0,-60,-21,-111,-64,-154v-43,-43,-94,-64,-154,-64v-42,0,-84,15,-126,44v-42,29,-69,43,-79,43v-20,0,-38,-8,-53,-23v-15,-15,-22,-32,-22,-52v0,-16,8,-33,23,-51v59,-71,145,-106,257,-106v100,0,185,36,256,107v71,71,107,156,107,256r0,581xm630,-363v0,-60,-21,-111,-64,-154v-43,-43,-94,-64,-154,-64v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154v0,60,21,111,64,154v43,43,94,64,154,64v60,0,111,-21,154,-64v43,-43,64,-94,64,-154","w":872},"b":{"d":"1114,-509v0,141,-50,261,-149,360v-99,99,-219,149,-360,149v-140,0,-260,-50,-359,-149v-99,-99,-149,-219,-149,-360r0,-871v0,-49,24,-73,73,-73v48,0,72,24,72,73r0,515v100,-101,221,-152,363,-152v141,0,261,50,360,149v99,99,149,219,149,359xm969,-509v0,-99,-36,-185,-107,-256v-71,-71,-157,-107,-257,-107v-99,0,-185,36,-256,107v-71,71,-107,157,-107,256v0,100,36,186,107,257v71,71,157,107,256,107v100,0,186,-36,257,-107v71,-71,107,-157,107,-257","w":1163},"c":{"d":"939,-818v0,20,-8,37,-23,52v-15,15,-32,23,-52,23v-6,0,-42,-22,-108,-65v-66,-43,-132,-64,-199,-64v-100,0,-186,36,-257,107v-71,71,-106,157,-106,256v0,100,35,186,106,257v71,71,157,107,257,107v67,0,133,-22,199,-65v66,-43,101,-64,108,-64v19,0,37,8,52,23v15,15,22,33,22,52v0,16,-7,33,-22,51v-39,45,-93,82,-164,109v-66,26,-131,39,-195,39v-140,0,-259,-50,-359,-149v-100,-99,-150,-219,-150,-360v0,-140,50,-260,150,-359v100,-99,219,-149,359,-149v64,0,129,13,195,39v71,28,125,65,164,110v15,17,23,34,23,50","w":988},"d":{"d":"1066,-73v0,49,-24,73,-73,73v-37,0,-60,-18,-69,-54v-3,-14,-5,-47,-4,-99v-99,102,-220,153,-363,153v-140,0,-259,-50,-359,-149v-100,-99,-150,-219,-150,-360v0,-140,50,-260,150,-359v100,-99,219,-149,359,-149v143,0,264,51,363,152r0,-515v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,1307xm920,-509v0,-99,-35,-185,-106,-256v-71,-71,-157,-107,-257,-107v-100,0,-186,36,-257,107v-71,71,-106,157,-106,256v0,100,35,186,106,257v71,71,157,107,257,107v100,0,186,-36,257,-107v71,-71,106,-157,106,-257","w":1211},"e":{"d":"1008,-292v0,11,-3,24,-10,38v-41,77,-102,138,-184,184v-82,46,-168,70,-257,70v-140,0,-259,-50,-359,-149v-100,-99,-150,-219,-150,-360v0,-140,50,-260,150,-359v100,-99,219,-149,359,-149v50,0,102,9,157,28v62,21,123,55,182,102v74,58,111,113,111,164v0,26,-12,46,-36,59r-686,396v72,82,163,123,272,123v115,0,206,-42,274,-125v9,-13,22,-31,41,-56v19,-25,39,-38,60,-38v20,0,38,7,53,21v15,14,23,31,23,51xm829,-749v-73,-82,-163,-123,-272,-123v-100,0,-186,36,-257,107v-71,71,-106,157,-106,256v0,40,6,79,18,116","w":1057},"f":{"d":"775,-1311v0,49,-19,74,-58,74v-14,0,-36,-11,-66,-35v-30,-24,-61,-36,-94,-36v-40,0,-75,14,-103,43v-28,29,-42,63,-42,102r0,146r145,0v49,0,73,24,73,72v0,49,-24,73,-73,73r-145,0r0,799v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-799r-145,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r145,0r0,-146v0,-79,29,-148,86,-205v57,-57,125,-85,205,-85v55,0,102,10,142,30v51,25,76,63,76,112","w":823},"g":{"d":"920,-945v0,37,-17,60,-50,69v-14,3,-46,5,-95,4v49,65,73,137,73,218v0,115,-45,210,-135,283v138,85,207,209,207,371v0,120,-43,223,-128,308v-85,85,-187,128,-308,128v-120,0,-223,-43,-308,-128v-85,-85,-128,-188,-128,-308v0,-49,24,-73,73,-73v49,0,73,24,73,73v0,80,29,149,86,206v57,57,125,85,204,85v80,0,149,-28,206,-85v57,-57,85,-126,85,-206v0,-80,-28,-149,-85,-206v-57,-57,-126,-85,-206,-85v-99,0,-185,-36,-256,-107v-71,-71,-107,-156,-107,-256v0,-100,36,-185,107,-256v71,-71,157,-107,256,-107r364,0v48,0,72,24,72,72xm702,-654v0,-60,-21,-111,-64,-154v-43,-43,-94,-64,-154,-64v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154v0,60,21,111,64,154v43,43,94,64,154,64v60,0,111,-21,154,-64v43,-43,64,-94,64,-154","w":969},"h":{"d":"872,-73v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-581v0,-60,-22,-111,-65,-154v-43,-43,-94,-64,-153,-64v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154r0,581v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1307v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,435v64,-48,137,-72,218,-72v99,0,185,36,256,107v71,71,107,156,107,256r0,581","w":969},"i":{"d":"328,-1343v0,30,-10,56,-32,77v-22,21,-48,31,-78,31v-30,0,-56,-10,-78,-31v-22,-21,-32,-47,-32,-77v0,-30,10,-55,32,-77v22,-22,48,-33,78,-33v30,0,56,11,78,33v22,22,32,47,32,77xm291,-945r0,872v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-872v0,-48,24,-72,73,-72v49,0,73,24,73,72","w":436},"j":{"d":"328,-1343v0,30,-10,56,-32,77v-22,21,-48,31,-78,31v-30,0,-56,-10,-78,-31v-22,-21,-32,-47,-32,-77v0,-30,10,-55,32,-77v22,-22,48,-33,78,-33v30,0,56,11,78,33v22,22,32,47,32,77xm291,145v0,80,-28,148,-85,205v-57,57,-126,86,-206,86v-55,0,-102,-10,-142,-30v-51,-25,-76,-63,-76,-112v0,-50,19,-75,58,-75v14,0,36,12,66,36v30,24,61,36,94,36v40,0,74,-14,102,-43v28,-29,43,-63,43,-103r0,-1090v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,1090","w":436},"k":{"d":"873,-73v0,19,-8,36,-23,51v-15,15,-32,23,-51,23v-19,0,-36,-7,-51,-22r-436,-436v-11,-11,-18,-24,-21,-38r0,422v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1307v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,858v3,-14,10,-27,21,-38r436,-436v15,-15,32,-22,51,-22v19,0,36,7,51,22v15,15,23,33,23,52v0,19,-7,36,-22,51r-385,384r385,385v15,15,22,32,22,51","w":922},"l":{"d":"460,-73v0,49,-24,73,-73,73v-79,0,-148,-29,-205,-86v-57,-57,-85,-125,-85,-205r0,-1089v0,-49,24,-73,73,-73v48,0,72,24,72,73r0,1089v0,40,14,74,43,103v29,29,63,43,102,43v49,0,73,24,73,72","w":509},"m":{"d":"1453,-73v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-581v0,-60,-21,-111,-64,-154v-43,-43,-94,-64,-154,-64v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154r0,581v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-581v0,-60,-22,-111,-65,-154v-43,-43,-94,-64,-153,-64v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154r0,581v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-872v0,-48,24,-72,73,-72v49,0,73,24,73,72v64,-48,137,-72,218,-72v121,0,217,48,290,145v73,-97,170,-145,291,-145v100,0,185,36,256,107v71,71,107,156,107,256r0,581","w":1550},"n":{"d":"872,-73v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-581v0,-60,-22,-111,-65,-154v-43,-43,-94,-64,-153,-64v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154r0,581v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-872v0,-48,24,-72,73,-72v49,0,73,24,73,72v64,-48,137,-72,218,-72v99,0,185,36,256,107v71,71,107,156,107,256r0,581","w":969},"o":{"d":"1066,-509v0,141,-50,261,-150,360v-100,99,-219,149,-359,149v-140,0,-259,-50,-359,-149v-100,-99,-150,-219,-150,-360v0,-140,50,-260,150,-359v100,-99,219,-149,359,-149v140,0,259,50,359,149v100,99,150,219,150,359xm920,-509v0,-99,-35,-185,-106,-256v-71,-71,-157,-107,-257,-107v-100,0,-186,36,-257,107v-71,71,-106,157,-106,256v0,100,35,186,106,257v71,71,157,107,257,107v100,0,186,-36,257,-107v71,-71,106,-157,106,-257"},"p":{"d":"1163,-509v0,141,-49,261,-149,360v-100,99,-220,149,-360,149v-143,0,-264,-51,-363,-153r0,516v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1308v0,-48,24,-72,73,-72v37,0,60,18,69,54v3,13,5,46,4,98v99,-101,220,-152,363,-152v140,0,260,50,360,149v100,99,149,219,149,359xm1017,-509v0,-99,-36,-185,-107,-256v-71,-71,-156,-107,-256,-107v-100,0,-185,36,-256,107v-71,71,-107,157,-107,256v0,100,36,186,107,257v71,71,156,107,256,107v100,0,185,-36,256,-107v71,-71,107,-157,107,-257","w":1211},"q":{"d":"1066,363v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-516v-99,102,-220,153,-363,153v-140,0,-259,-50,-359,-149v-100,-99,-150,-219,-150,-360v0,-140,50,-260,150,-359v100,-99,219,-149,359,-149v143,0,264,51,363,152v-1,-40,-1,-57,-1,-50v0,-68,25,-102,74,-102v49,0,73,24,73,72r0,1308xm920,-509v0,-99,-35,-185,-106,-256v-71,-71,-157,-107,-257,-107v-100,0,-186,36,-257,107v-71,71,-106,157,-106,256v0,100,35,186,106,257v71,71,157,107,257,107v100,0,186,-36,257,-107v71,-71,106,-157,106,-257","w":1211},"r":{"d":"699,-833v0,19,-7,36,-23,50v-16,14,-34,21,-53,21v-19,0,-45,-18,-76,-55v-31,-37,-68,-55,-111,-55v-40,0,-74,14,-102,43v-28,29,-43,63,-43,102r0,654v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-872v0,-48,24,-72,73,-72v33,0,55,14,67,42v46,-28,96,-42,151,-42v50,0,98,13,146,40v48,27,83,62,106,105v7,15,11,28,11,39","w":747,"k":{".":162,"-":160,",":288}},"s":{"d":"687,-327v0,90,-33,167,-97,231v-64,64,-141,96,-230,96v-67,0,-129,-19,-186,-58v-57,-39,-97,-90,-120,-152v-4,-11,-6,-20,-6,-29v0,-20,8,-37,23,-51v15,-14,33,-20,53,-20v23,0,44,14,63,43v30,45,49,72,56,79v29,29,68,43,117,43v50,0,93,-17,128,-53v35,-36,53,-79,53,-129v0,-111,-62,-171,-186,-182v-75,-6,-135,-31,-181,-74v-49,-46,-74,-106,-74,-180v0,-70,25,-129,75,-179v50,-50,110,-75,180,-75v101,0,174,42,219,126v7,14,11,27,11,38v0,20,-8,37,-23,51v-15,14,-33,21,-53,21v-20,0,-42,-15,-67,-45v-25,-30,-54,-46,-87,-46v-30,0,-56,10,-77,32v-21,22,-32,48,-32,77v0,65,38,102,114,109v97,9,174,41,233,96v63,59,94,136,94,231","w":735},"t":{"d":"775,-142v0,49,-25,87,-76,112v-40,20,-87,30,-142,30v-80,0,-148,-29,-205,-86v-57,-57,-86,-125,-86,-205r0,-581r-145,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r145,0r0,-363v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,363r145,0v49,0,73,24,73,72v0,49,-24,73,-73,73r-145,0r0,581v0,40,14,74,42,103v28,29,63,43,103,43v33,0,64,-12,94,-36v30,-24,52,-36,66,-36v39,0,58,25,58,75","w":823},"u":{"d":"823,-363v0,100,-36,186,-107,257v-71,71,-156,106,-256,106v-100,0,-185,-35,-256,-106v-71,-71,-107,-157,-107,-257r0,-582v0,-48,24,-72,73,-72v48,0,72,24,72,72r0,582v0,60,21,111,64,154v43,43,94,64,154,64v60,0,111,-21,154,-64v43,-43,64,-94,64,-154r0,-582v0,-48,24,-72,73,-72v48,0,72,24,72,72r0,582","w":920},"v":{"d":"1068,-947v0,12,-3,24,-9,35r-430,859v-17,36,-41,54,-71,54v-29,0,-53,-18,-71,-54r-430,-859v-6,-11,-9,-23,-9,-35v0,-19,8,-36,24,-50v16,-14,33,-21,53,-21v28,0,49,14,62,41r371,742r371,-742v13,-27,34,-41,63,-41v19,0,36,7,52,21v16,14,24,31,24,50","w":1116,"k":{".":136,",":286}},"w":{"d":"1649,-947v0,12,-3,24,-9,35r-429,859v-18,36,-42,54,-72,54v-29,0,-53,-18,-71,-54r-219,-438r-220,438v-17,36,-41,54,-71,54v-29,0,-53,-18,-71,-54r-430,-859v-6,-11,-9,-23,-9,-35v0,-19,8,-36,24,-50v16,-14,33,-21,53,-21v28,0,49,14,62,41r371,742r210,-418r-130,-259v-5,-11,-8,-23,-8,-35v0,-19,8,-36,23,-50v15,-14,33,-21,53,-21v28,0,49,14,62,41r371,742r371,-742v14,-27,35,-41,63,-41v20,0,38,7,53,21v15,14,23,31,23,50","w":1697,"k":{".":136,",":286}},"x":{"d":"923,-72v0,19,-8,36,-23,51v-15,15,-33,22,-52,22v-21,0,-40,-9,-55,-27r-307,-369r-307,369v-15,18,-33,27,-54,27v-20,0,-38,-7,-53,-22v-15,-15,-23,-32,-23,-51v0,-17,6,-32,19,-47r323,-390r-324,-389v-13,-15,-19,-30,-19,-47v0,-19,8,-36,23,-51v15,-15,33,-22,53,-22v21,0,39,9,54,27r308,369r306,-369v15,-18,34,-27,55,-27v19,0,37,7,52,22v15,15,23,32,23,51v0,17,-6,32,-18,47r-324,389r325,390v12,15,18,30,18,47","w":971},"y":{"d":"823,73v0,99,-36,185,-107,256v-71,71,-156,107,-256,107v-63,0,-123,-16,-181,-49v-60,-33,-104,-77,-133,-131v-7,-15,-11,-28,-11,-39v0,-19,7,-37,23,-51v16,-14,34,-21,53,-21v17,0,47,24,91,73v44,49,96,73,158,73v60,0,111,-21,154,-64v43,-43,64,-94,64,-154r0,-146v-65,49,-137,73,-218,73v-100,0,-185,-35,-256,-106v-71,-71,-107,-157,-107,-257r0,-582v0,-48,24,-72,73,-72v48,0,72,24,72,72r0,582v0,60,21,111,64,154v43,43,94,64,154,64v60,0,111,-21,154,-64v43,-43,64,-94,64,-154r0,-582v0,-48,24,-72,73,-72v48,0,72,24,72,72r0,1018","w":969},"z":{"d":"922,-944v0,17,-9,36,-27,57r-618,742r572,0v48,0,72,24,72,72v0,49,-24,73,-72,73r-725,0v-51,0,-76,-24,-76,-73v0,-17,9,-36,27,-57r618,-742r-571,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r724,0v51,0,76,24,76,73","w":971},"{":{"d":"630,363v0,49,-24,73,-73,73v-80,0,-148,-29,-205,-86v-57,-57,-86,-125,-86,-205r0,-436v0,-40,-14,-75,-42,-103v-28,-28,-63,-42,-103,-42v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72v40,0,75,-14,103,-43v28,-29,42,-63,42,-103r0,-436v0,-79,29,-148,86,-205v57,-57,125,-85,205,-85v49,0,73,24,73,73v0,48,-24,72,-73,72v-40,0,-75,14,-103,43v-28,29,-42,63,-42,102r0,436v0,87,-33,160,-99,218v66,58,99,131,99,218r0,436v0,40,14,74,42,103v28,29,63,43,103,43v49,0,73,24,73,72","w":678},"|":{"d":"291,363v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1743v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,1743","w":436},"}":{"d":"630,-509v0,49,-24,73,-73,73v-40,0,-75,14,-103,42v-28,28,-42,63,-42,103r0,436v0,80,-29,148,-86,205v-57,57,-125,86,-205,86v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72v40,0,75,-14,103,-43v28,-29,42,-63,42,-103r0,-436v0,-87,33,-160,99,-218v-66,-57,-99,-130,-99,-218r0,-436v0,-39,-14,-73,-42,-102v-28,-29,-63,-43,-103,-43v-49,0,-73,-24,-73,-72v0,-49,24,-73,73,-73v80,0,148,28,205,85v57,57,86,126,86,205r0,436v0,40,14,74,42,103v28,29,63,43,103,43v49,0,73,24,73,72","w":678},"~":{"d":"776,-511v0,15,-6,33,-17,52v-38,64,-105,96,-201,96v-55,0,-112,-24,-171,-73v-59,-49,-99,-73,-120,-73v-33,0,-58,8,-76,23v-11,33,-34,50,-67,50v-51,0,-76,-23,-76,-70v0,-15,6,-33,17,-52v39,-64,106,-96,202,-96v55,0,112,24,171,72v59,48,99,73,120,73v39,0,66,-13,83,-37v17,-24,37,-36,60,-36v20,0,38,6,53,20v15,14,22,31,22,51","w":825},"\u0472":{"d":"1502,-727v0,201,-72,372,-214,514v-142,142,-313,213,-513,213v-200,0,-371,-71,-513,-213v-142,-142,-214,-313,-214,-514v0,-200,72,-371,214,-513v142,-142,313,-213,513,-213v200,0,371,71,513,213v142,142,214,313,214,513xm1356,-727v0,-160,-56,-297,-170,-411v-114,-114,-251,-170,-411,-170v-160,0,-297,56,-411,170v-114,114,-170,251,-170,411v0,161,56,297,170,411v114,114,251,171,411,171v160,0,297,-57,411,-171v114,-114,170,-250,170,-411xm1211,-727v0,49,-24,73,-73,73r-726,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r726,0v49,0,73,24,73,72","w":1550},"\u0398":{"d":"1502,-727v0,201,-72,372,-214,514v-142,142,-313,213,-513,213v-200,0,-371,-71,-513,-213v-142,-142,-214,-313,-214,-514v0,-200,72,-371,214,-513v142,-142,313,-213,513,-213v200,0,371,71,513,213v142,142,214,313,214,513xm1356,-727v0,-160,-56,-297,-170,-411v-114,-114,-251,-170,-411,-170v-160,0,-297,56,-411,170v-114,114,-170,251,-170,411v0,161,56,297,170,411v114,114,251,171,411,171v160,0,297,-57,411,-171v114,-114,170,-250,170,-411xm1211,-727v0,49,-24,73,-73,73r-726,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r726,0v49,0,73,24,73,72","w":1550},"\u0470":{"d":"1502,-1380v0,599,-218,913,-654,942r0,365v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-365v-436,-29,-654,-343,-654,-942v0,-49,24,-73,73,-73v49,0,73,24,73,73v0,227,29,401,87,522v80,166,220,257,421,274r0,-796v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,796v201,-17,341,-108,421,-274v58,-121,87,-295,87,-522v0,-49,24,-73,73,-73v49,0,73,24,73,73","w":1550},"\u03a8":{"d":"1502,-1380v0,599,-218,913,-654,942r0,365v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-365v-436,-29,-654,-343,-654,-942v0,-49,24,-73,73,-73v49,0,73,24,73,73v0,227,29,401,87,522v80,166,220,257,421,274r0,-796v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,796v201,-17,341,-108,421,-274v58,-121,87,-295,87,-522v0,-49,24,-73,73,-73v49,0,73,24,73,73","w":1550},"\u0473":{"d":"1066,-727v0,173,-41,331,-123,474v-97,169,-225,253,-386,253v-161,0,-290,-84,-387,-253v-81,-142,-122,-300,-122,-474v0,-173,41,-331,122,-473v97,-169,226,-253,387,-253v161,0,289,84,386,253v82,142,123,300,123,473xm918,-799v-6,-79,-22,-154,-48,-223v-29,-75,-68,-139,-117,-191v-61,-63,-126,-95,-196,-95v-72,0,-139,33,-200,99v-50,55,-89,121,-117,200v-23,65,-38,135,-44,210r722,0xm918,-654r-722,0v6,75,21,145,44,210v28,79,67,145,117,199v61,67,128,100,200,100v70,0,135,-32,196,-95v49,-52,88,-116,117,-192v26,-69,42,-143,48,-222"},"\u03b8":{"d":"1066,-727v0,173,-41,331,-123,474v-97,169,-225,253,-386,253v-161,0,-290,-84,-387,-253v-81,-142,-122,-300,-122,-474v0,-173,41,-331,122,-473v97,-169,226,-253,387,-253v161,0,289,84,386,253v82,142,123,300,123,473xm918,-799v-6,-79,-22,-154,-48,-223v-29,-75,-68,-139,-117,-191v-61,-63,-126,-95,-196,-95v-72,0,-139,33,-200,99v-50,55,-89,121,-117,200v-23,65,-38,135,-44,210r722,0xm918,-654r-722,0v6,75,21,145,44,210v28,79,67,145,117,199v61,67,128,100,200,100v70,0,135,-32,196,-95v49,-52,88,-116,117,-192v26,-69,42,-143,48,-222"},"\u0471":{"d":"1356,-945v0,273,-31,478,-93,617v-89,200,-252,308,-488,325r0,366v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-366v-236,-17,-399,-125,-489,-325v-62,-139,-93,-344,-93,-617v0,-48,24,-72,73,-72v49,0,73,24,73,72v0,232,19,401,58,508v64,174,190,270,378,288r0,-1231v0,-49,24,-73,72,-73v49,0,73,24,73,73r0,1231v187,-18,313,-114,377,-288v39,-107,59,-276,59,-508v0,-48,24,-72,73,-72v48,0,72,24,72,72","w":1405},"\u03c8":{"d":"1356,-945v0,273,-31,478,-93,617v-89,200,-252,308,-488,325r0,366v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-366v-236,-17,-399,-125,-489,-325v-62,-139,-93,-344,-93,-617v0,-48,24,-72,73,-72v49,0,73,24,73,72v0,232,19,401,58,508v64,174,190,270,378,288r0,-1231v0,-49,24,-73,72,-73v49,0,73,24,73,73r0,1231v187,-18,313,-114,377,-288v39,-107,59,-276,59,-508v0,-48,24,-72,73,-72v48,0,72,24,72,72","w":1405},"\u0401":{"d":"909,-1708v0,30,-11,56,-33,78v-22,22,-47,32,-77,32v-30,0,-56,-10,-77,-32v-21,-22,-31,-48,-31,-78v0,-30,10,-55,31,-76v21,-21,47,-32,77,-32v30,0,55,11,77,32v22,21,33,46,33,76xm473,-1708v0,30,-11,56,-33,78v-22,22,-47,32,-77,32v-30,0,-56,-10,-77,-32v-21,-22,-31,-48,-31,-78v0,-30,10,-55,31,-76v21,-21,47,-32,77,-32v30,0,55,11,77,32v22,21,33,46,33,76xm1017,-73v0,49,-24,73,-72,73r-727,0v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-1307v0,-19,7,-36,22,-51v15,-15,32,-22,51,-22r727,0v48,0,72,24,72,73v0,48,-24,72,-72,72r-654,0r0,509r508,0v49,0,73,24,73,72v0,49,-24,73,-73,73r-508,0r0,509r654,0v48,0,72,24,72,72","w":1066},"\u0402":{"d":"1502,-509v0,141,-50,261,-150,360v-100,99,-219,149,-359,149v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72v100,0,186,-36,257,-107v71,-71,106,-157,106,-257v0,-99,-35,-185,-106,-256v-71,-71,-157,-107,-257,-107v-100,0,-186,36,-257,107v-71,71,-106,157,-106,256r0,436v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1235r-363,0v-49,0,-73,-24,-73,-72v0,-49,24,-73,73,-73r872,0v49,0,73,24,73,73v0,48,-24,72,-73,72r-363,0r0,443v99,-101,220,-152,363,-152v140,0,259,50,359,149v100,99,150,219,150,359","w":1550},"\u0403":{"d":"800,-1814v0,28,-14,49,-41,63r-291,145v-11,6,-23,9,-34,9v-20,0,-36,-7,-50,-23v-14,-16,-21,-34,-21,-54v0,-28,13,-49,40,-62r291,-145v12,-6,24,-9,35,-9v19,0,36,8,50,23v14,15,21,33,21,53xm1017,-1380v0,48,-24,72,-72,72r-654,0r0,1235v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1308v0,-48,24,-72,72,-72r728,0v48,0,72,24,72,73","w":1017},"\u0404":{"d":"1311,-263v0,16,-8,33,-23,50v-55,65,-133,118,-234,157v-95,37,-188,56,-279,56v-201,0,-372,-71,-514,-213v-142,-142,-213,-313,-213,-514v0,-200,72,-371,214,-513v142,-142,313,-213,513,-213v91,0,184,18,279,55v101,40,179,92,234,157v15,18,23,35,23,51v0,20,-8,37,-23,52v-15,15,-32,23,-52,23v-15,0,-32,-8,-50,-23r-60,-52v-100,-79,-217,-118,-351,-118v-146,0,-275,49,-385,146v-110,97,-174,218,-192,363r1039,0v49,0,73,24,73,72v0,49,-24,73,-73,73r-1039,0v18,145,82,267,192,364v110,97,239,145,385,145v134,0,251,-40,351,-119r60,-51v18,-15,35,-23,50,-23v20,0,37,7,52,22v15,15,23,33,23,53","w":1360},"\u0405":{"d":"873,-436v0,120,-43,223,-128,308v-85,85,-188,128,-308,128v-76,0,-149,-20,-218,-59v-71,-40,-125,-93,-160,-159v-7,-14,-11,-27,-11,-38v0,-20,8,-37,24,-51v16,-14,33,-21,53,-21v21,0,41,12,60,37v7,11,19,28,35,49v56,65,128,97,217,97v80,0,148,-28,205,-85v57,-57,86,-126,86,-206v0,-80,-29,-149,-86,-206v-57,-57,-125,-85,-205,-85v-100,0,-186,-36,-257,-107v-71,-71,-106,-156,-106,-256v0,-100,35,-185,106,-256v71,-71,157,-107,257,-107v63,0,125,16,183,49v58,33,102,76,131,131v7,14,11,27,11,39v0,19,-8,36,-23,50v-15,14,-33,21,-53,21v-16,0,-46,-25,-91,-73v-45,-48,-97,-72,-158,-72v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154v0,60,21,111,64,154v43,43,94,64,154,64v120,0,223,43,308,128v85,85,128,188,128,308","w":922},"\u0406":{"d":"291,-73v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1307v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,1307","w":436},"\u0407":{"d":"545,-1708v0,30,-11,56,-33,78v-22,22,-47,32,-77,32v-30,0,-56,-10,-77,-32v-21,-22,-31,-48,-31,-78v0,-30,10,-55,31,-76v21,-21,47,-32,77,-32v31,0,57,11,78,32v21,21,32,46,32,76xm109,-1708v0,30,-11,56,-33,78v-22,22,-47,32,-76,32v-31,0,-57,-10,-78,-32v-21,-22,-31,-48,-31,-78v0,-30,10,-55,31,-76v21,-21,47,-32,78,-32v30,0,56,11,77,32v21,21,32,46,32,76xm290,-73v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-1307v0,-49,24,-73,72,-73v49,0,73,24,73,73r0,1307","w":436},"\u0408":{"d":"412,-1380r0,1453v0,100,-36,186,-107,257v-71,71,-157,106,-257,106v-63,0,-123,-16,-182,-49v-61,-35,-105,-79,-132,-134v-7,-14,-11,-27,-11,-38v0,-19,8,-37,23,-51v15,-14,33,-21,53,-21v17,0,47,25,91,74v44,49,96,74,158,74v60,0,111,-21,154,-64v43,-43,64,-94,64,-154r0,-1453v0,-49,24,-73,73,-73v49,0,73,24,73,73","w":557},"\u0409":{"d":"1793,-436v0,121,-42,223,-127,308v-85,85,-188,128,-309,128r-363,0v-19,0,-36,-7,-50,-22v-14,-15,-22,-32,-22,-51r0,-1068r-739,1109v-15,22,-34,33,-59,33v-19,0,-36,-7,-52,-21v-16,-14,-24,-32,-24,-51v0,-15,5,-29,14,-42r865,-1298v19,-29,41,-43,66,-43v49,0,74,28,74,85r0,497r291,0v120,0,223,43,308,128v85,85,127,188,127,308xm1648,-436v0,-80,-29,-149,-86,-206v-57,-57,-125,-85,-204,-85r-291,0r0,582r290,0v80,0,148,-28,205,-85v57,-57,86,-126,86,-206","w":1842},"\u040a":{"d":"1889,-436v0,121,-43,223,-128,308v-85,85,-188,128,-308,128r-363,0v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-654r-726,0r0,654v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1307v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,508r726,0r0,-508v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,508r290,0v120,0,223,43,308,128v85,85,128,188,128,308xm1744,-436v0,-80,-29,-149,-86,-206v-57,-57,-125,-85,-205,-85r-290,0r0,582r290,0v80,0,148,-28,205,-85v57,-57,86,-126,86,-206","w":1938},"\u040b":{"d":"1211,-73v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-581v0,-60,-21,-111,-64,-154v-43,-43,-94,-64,-154,-64v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154r0,581v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1235r-363,0v-49,0,-73,-24,-73,-72v0,-49,24,-73,73,-73r872,0v49,0,73,24,73,73v0,48,-24,72,-73,72r-363,0r0,363v64,-48,137,-72,218,-72v99,0,185,36,256,107v71,71,107,156,107,256r0,581","w":1308},"\u040c":{"d":"857,-1814v0,28,-13,49,-40,63r-291,145v-11,6,-23,9,-35,9v-19,0,-36,-7,-50,-23v-14,-16,-21,-34,-21,-54v0,-28,14,-49,41,-62r291,-145v11,-6,23,-9,34,-9v20,0,36,8,50,23v14,15,21,33,21,53xm1091,-73v0,19,-8,36,-23,51v-15,15,-32,23,-51,23v-19,0,-36,-7,-51,-22r-654,-654v-11,-11,-18,-24,-21,-38r0,640v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1307v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,640v3,-14,10,-27,21,-38r654,-654v15,-15,32,-22,51,-22v19,0,36,7,51,22v15,15,23,33,23,52v0,19,-7,36,-22,51r-603,602r603,603v15,15,22,32,22,51","w":1140},"\u040e":{"d":"924,-1817v0,19,-14,43,-41,72v-89,96,-175,144,-257,144v-49,0,-100,-18,-153,-54v-47,-32,-86,-71,-117,-116v-11,-17,-17,-32,-17,-46v0,-19,8,-36,23,-51v15,-15,33,-22,53,-22v20,0,52,24,95,72v43,48,83,72,120,72v38,0,79,-24,122,-72v43,-48,75,-72,95,-72v20,0,37,7,53,22v16,15,24,32,24,51xm1214,-1381v0,16,-6,31,-17,45r-1017,1308v-15,19,-34,29,-56,29v-19,0,-36,-7,-52,-22v-16,-15,-24,-32,-24,-51v0,-16,6,-31,17,-45r474,-610r-474,-609v-11,-14,-17,-29,-17,-45v0,-19,8,-36,24,-51v16,-15,33,-22,52,-22v22,0,41,10,56,29r451,580r451,-580v15,-19,34,-29,56,-29v19,0,36,7,52,22v16,15,24,32,24,51","w":1262},"\u040f":{"d":"1017,-73v0,49,-24,73,-72,73r-291,0r0,363v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-363r-291,0v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-1307v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,1235r581,0r0,-1235v0,-49,24,-73,73,-73v48,0,72,24,72,73r0,1307","w":1163},"\u0410":{"d":"1504,-70v0,19,-8,36,-24,50v-16,14,-33,21,-52,21v-29,0,-50,-14,-63,-41r-200,-400v-8,3,-17,4,-26,4r-726,0v-9,0,-18,-1,-26,-4r-200,400v-13,27,-34,41,-62,41v-20,0,-37,-7,-53,-21v-16,-14,-24,-31,-24,-50v0,-12,3,-24,9,-35r648,-1295v17,-36,41,-54,71,-54v30,0,54,18,71,54r648,1295v6,11,9,23,9,35xm1094,-581r-318,-637r-318,637r636,0","w":1552},"\u0411":{"d":"1017,-436v0,121,-43,223,-128,308v-85,85,-188,128,-308,128r-363,0v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-1307v0,-19,7,-36,22,-51v15,-15,32,-22,51,-22r727,0v48,0,72,24,72,73v0,48,-24,72,-72,72r-654,0r0,436r290,0v121,0,224,43,309,128v85,85,127,188,127,308xm872,-436v0,-80,-29,-149,-86,-206v-57,-57,-125,-85,-205,-85r-290,0r0,582r290,0v80,0,148,-28,205,-85v57,-57,86,-126,86,-206","w":1066},"\u0412":{"d":"1017,-436v0,121,-43,223,-128,308v-85,85,-188,128,-308,128r-363,0v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-1307v0,-19,7,-36,22,-51v15,-15,32,-22,51,-22r363,0v100,0,186,36,257,107v71,71,107,156,107,256v0,115,-45,210,-136,283v139,85,208,209,208,371xm799,-1090v0,-60,-21,-111,-64,-154v-43,-43,-94,-64,-154,-64r-290,0r0,436r290,0v60,0,111,-21,154,-64v43,-43,64,-94,64,-154xm872,-436v0,-80,-29,-149,-86,-206v-57,-57,-125,-85,-205,-85r-290,0r0,582r290,0v80,0,148,-28,205,-85v57,-57,86,-126,86,-206","w":1066},"\u0413":{"d":"1017,-1380v0,48,-24,72,-72,72r-654,0r0,1235v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1307v0,-19,7,-36,22,-51v15,-15,32,-22,51,-22r727,0v48,0,72,24,72,73","w":1017},"\u0414":{"d":"1503,-71v0,48,-25,72,-74,72r-1306,0v-50,0,-75,-24,-75,-72v0,-11,5,-27,15,-46r642,-1283v17,-36,41,-54,71,-54v29,0,53,18,71,54r642,1283v9,19,14,35,14,46xm1312,-145r-536,-1073r-537,1073r1073,0","w":1552},"\u0415":{"d":"1017,-73v0,49,-24,73,-72,73r-727,0v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-1307v0,-19,7,-36,22,-51v15,-15,32,-22,51,-22r727,0v48,0,72,24,72,73v0,48,-24,72,-72,72r-654,0r0,509r508,0v49,0,73,24,73,72v0,49,-24,73,-73,73r-508,0r0,509r654,0v48,0,72,24,72,72","w":1066},"\u0416":{"d":"1795,-73v0,19,-8,36,-23,51v-15,15,-32,23,-52,23v-19,0,-36,-7,-51,-22r-653,-654v-11,-11,-19,-24,-22,-38r0,640v0,49,-24,73,-72,73v-49,0,-73,-24,-73,-73r0,-640v-3,14,-10,27,-21,38r-654,654v-15,15,-32,22,-51,22v-19,0,-37,-8,-52,-23v-15,-15,-23,-32,-23,-51v0,-19,8,-36,23,-51r603,-603r-603,-602v-15,-15,-23,-32,-23,-51v0,-19,8,-37,23,-52v15,-15,33,-22,52,-22v19,0,36,7,51,22r654,654v11,11,18,24,21,38r0,-640v0,-49,24,-73,73,-73v48,0,72,24,72,73r0,640v3,-14,11,-27,22,-38r653,-654v15,-15,32,-22,51,-22v20,0,37,7,52,22v15,15,23,33,23,52v0,19,-8,36,-23,51r-602,602r602,603v15,15,23,32,23,51","w":1843},"\u0417":{"d":"921,-435v0,120,-43,223,-128,308v-85,85,-188,128,-308,128v-121,0,-224,-43,-309,-128v-85,-85,-128,-188,-128,-308v0,-49,24,-73,73,-73v49,0,73,24,73,73v0,80,29,148,86,205v57,57,125,86,205,86v80,0,148,-29,205,-86v57,-57,86,-125,86,-205v0,-81,-29,-150,-86,-207v-57,-57,-125,-85,-205,-85v-48,0,-72,-24,-72,-72v0,-49,24,-73,72,-73v60,0,111,-21,154,-64v43,-43,64,-94,64,-154v0,-60,-21,-111,-64,-154v-43,-43,-94,-64,-155,-64v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154v0,49,-24,73,-72,73v-49,0,-73,-24,-73,-73v0,-100,36,-185,107,-256v71,-71,157,-107,257,-107v100,0,186,36,257,107v71,71,107,156,107,256v0,116,-45,210,-135,283v138,85,207,209,207,372","w":970},"\u0418":{"d":"1310,-1380r-1,1307v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-1096r-880,1131v-20,26,-41,39,-63,39v-51,0,-76,-25,-76,-74r2,-1307v0,-49,24,-73,72,-73v49,0,73,24,73,73r0,1096r879,-1131v20,-26,41,-39,64,-39v50,0,75,25,75,74","w":1456},"\u0419":{"d":"1021,-1817v0,19,-14,43,-41,72v-91,98,-175,147,-252,147v-45,0,-97,-19,-154,-58v-51,-35,-92,-73,-121,-115v-11,-17,-17,-32,-17,-46v0,-19,8,-36,23,-51v15,-15,33,-22,52,-22v19,0,52,24,99,73v47,49,86,73,117,73v31,0,70,-24,117,-73v47,-49,81,-73,100,-73v20,0,38,7,54,22v16,15,23,32,23,51xm1310,-1380r-1,1307v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-1096r-880,1131v-20,26,-41,39,-63,39v-51,0,-76,-25,-76,-74r2,-1307v0,-49,24,-73,72,-73v49,0,73,24,73,73r0,1096r879,-1131v20,-26,41,-39,64,-39v50,0,75,25,75,74","w":1456},"\u041a":{"d":"1091,-73v0,19,-8,36,-23,51v-15,15,-32,23,-51,23v-19,0,-36,-7,-51,-22r-654,-654v-11,-11,-18,-24,-21,-38r0,640v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1307v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,640v3,-14,10,-27,21,-38r654,-654v15,-15,32,-22,51,-22v19,0,36,7,51,22v15,15,23,33,23,52v0,19,-7,36,-22,51r-603,602r603,603v15,15,22,32,22,51","w":1140},"\u041b":{"d":"1504,-70v0,19,-8,36,-24,50v-16,14,-33,21,-52,21v-29,0,-50,-14,-63,-41r-589,-1178r-589,1178v-13,27,-34,41,-62,41v-20,0,-37,-7,-53,-21v-16,-14,-24,-31,-24,-50v0,-12,3,-24,9,-35r648,-1295v17,-36,41,-54,71,-54v30,0,54,18,71,54r648,1295v6,11,9,23,9,35","w":1552},"\u041c":{"d":"1648,-70v0,47,-25,70,-75,70v-38,0,-61,-19,-69,-57r-242,-1088r-342,798v-16,38,-40,57,-72,57v-32,0,-56,-19,-72,-57r-342,-798r-242,1088v-8,38,-31,57,-69,57v-50,0,-75,-23,-75,-70v0,-6,1,-12,3,-18r288,-1296v10,-47,35,-70,74,-70v31,0,55,19,71,56r364,850r364,-850v16,-37,40,-56,71,-56v39,0,64,23,75,70r288,1296v1,6,2,12,2,18","w":1696},"\u041d":{"d":"1163,-73v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-581r-726,0r0,581v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1307v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,581r726,0r0,-581v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,1307","w":1308},"\u041e":{"d":"1502,-727v0,201,-72,372,-214,514v-142,142,-313,213,-513,213v-200,0,-371,-71,-513,-213v-142,-142,-214,-313,-214,-514v0,-200,72,-371,214,-513v142,-142,313,-213,513,-213v200,0,371,71,513,213v142,142,214,313,214,513xm1356,-727v0,-160,-56,-297,-170,-411v-114,-114,-251,-170,-411,-170v-160,0,-297,56,-411,170v-114,114,-170,251,-170,411v0,161,56,297,170,411v114,114,251,171,411,171v160,0,297,-57,411,-171v114,-114,170,-250,170,-411","w":1550},"\u041f":{"d":"1017,-73v0,49,-24,73,-72,73v-49,0,-73,-24,-73,-73r0,-1235r-581,0r0,1235v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1307v0,-19,7,-36,22,-51v15,-15,32,-22,51,-22r727,0v48,0,72,24,72,72r0,1308","w":1163},"\u0420":{"d":"291,-654v0,-49,24,-73,72,-73r218,0v80,0,148,-28,205,-85v57,-57,86,-125,86,-205v0,-80,-29,-148,-86,-205v-57,-57,-125,-86,-205,-86r-290,0r0,654xm145,-73r0,-1307v0,-19,7,-36,22,-51v15,-15,32,-22,51,-22r363,0v121,0,224,42,309,127v85,85,127,188,127,309v0,120,-42,223,-127,308v-85,85,-188,128,-309,128r-218,0v-48,0,-72,-24,-72,-73r0,581v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73","w":1066},"\u0421":{"d":"1311,-263v0,16,-8,33,-23,50v-56,65,-134,118,-234,158v-94,37,-187,55,-279,55v-201,0,-372,-71,-514,-213v-142,-142,-213,-313,-213,-514v0,-200,72,-371,214,-513v142,-142,313,-213,513,-213v92,0,185,18,279,55v100,40,178,92,234,157v15,18,23,35,23,51v0,20,-8,37,-23,52v-15,15,-32,23,-52,23v-15,0,-32,-8,-50,-23v-15,-13,-37,-33,-68,-58v-98,-75,-212,-112,-343,-112v-160,0,-297,56,-411,170v-114,114,-170,251,-170,411v0,161,56,297,170,411v114,114,251,171,411,171v131,0,245,-37,343,-112v15,-13,37,-33,68,-58v18,-15,35,-23,50,-23v20,0,37,7,52,22v15,15,23,33,23,53","w":1360},"\u0422":{"d":"1066,-1380v0,48,-24,72,-73,72r-363,0r0,1235v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1235r-363,0v-49,0,-73,-24,-73,-72v0,-49,24,-73,73,-73r872,0v49,0,73,24,73,73","w":1066},"\u0423":{"d":"1214,-1381v0,16,-6,31,-17,45r-1017,1308v-15,19,-34,29,-56,29v-19,0,-36,-7,-52,-22v-16,-15,-24,-32,-24,-51v0,-16,6,-31,17,-45r474,-610r-474,-609v-11,-14,-17,-29,-17,-45v0,-19,8,-36,24,-51v16,-15,33,-22,52,-22v22,0,41,10,56,29r451,580r451,-580v15,-19,34,-29,56,-29v19,0,36,7,52,22v16,15,24,32,24,51","w":1214},"\u0424":{"d":"1502,-727v0,149,-74,272,-223,368v-125,81,-268,127,-431,138r0,148v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-148v-163,-11,-306,-57,-431,-138v-149,-96,-223,-219,-223,-368v0,-149,74,-272,223,-368v125,-80,268,-126,431,-138r0,-147v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,147v163,12,306,58,431,138v149,97,223,219,223,368xm1356,-727v0,-72,-33,-139,-99,-200v-54,-50,-120,-89,-199,-117v-65,-23,-135,-37,-210,-43r0,721v79,-6,153,-22,222,-48v76,-28,140,-67,192,-117v63,-60,94,-125,94,-196xm702,-366r0,-721v-75,5,-145,20,-210,43v-79,28,-145,67,-199,117v-66,61,-99,128,-99,200v0,71,31,136,94,196v52,50,116,89,192,117v69,26,143,42,222,48","w":1550},"\u0425":{"d":"1214,-72v0,19,-8,36,-24,51v-16,15,-33,22,-52,22v-22,0,-41,-10,-56,-29r-451,-580r-451,580v-15,19,-34,29,-56,29v-19,0,-36,-7,-52,-22v-16,-15,-24,-32,-24,-51v0,-16,6,-31,17,-45r474,-610r-474,-609v-11,-14,-17,-29,-17,-45v0,-19,8,-36,24,-51v16,-15,33,-22,52,-22v22,0,41,10,56,29r451,580r451,-580v15,-19,34,-29,56,-29v19,0,36,7,52,22v16,15,24,32,24,51v0,16,-6,31,-17,45r-474,609r474,610v11,14,17,29,17,45","w":1262},"\u0426":{"d":"1017,363v0,49,-24,73,-72,73v-49,0,-73,-24,-73,-73r0,-363r-654,0v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-1307v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,1235r581,0r0,-1235v0,-49,24,-73,73,-73v48,0,72,24,72,73r0,1743","w":1162},"\u0427":{"d":"1066,-73v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-581r-472,0v-110,0,-204,-39,-282,-117v-78,-78,-118,-172,-118,-283r0,-326v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,326v0,70,24,130,74,180v50,50,110,75,180,75r472,0r0,-581v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,1307","w":1211},"\u0428":{"d":"1744,-73v0,49,-24,73,-72,73r-1454,0v-49,0,-73,-24,-73,-72r0,-1308v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,1235r581,0r0,-1235v0,-49,24,-73,73,-73v48,0,72,24,72,73r0,1235r581,0r0,-1235v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,1307","w":1889},"\u0429":{"d":"1744,364v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-363r-1380,0v-49,0,-73,-24,-73,-72r0,-1309v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,1235r581,0r0,-1235v0,-48,24,-72,73,-72v48,0,72,24,72,72r0,1235r581,0r0,-1235v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,1744","w":1889},"\u042a":{"d":"1598,-435v0,120,-43,223,-128,308v-85,85,-187,128,-308,128r-363,-1v-19,0,-37,-7,-51,-22v-14,-15,-21,-32,-21,-51r0,-1235r-654,0v-49,0,-73,-24,-73,-72v0,-49,24,-73,73,-73r726,0v19,0,36,7,51,22v15,15,22,32,22,51r0,508r291,0v120,0,222,43,307,128v85,85,128,188,128,309xm1453,-435v0,-80,-28,-149,-85,-206v-57,-57,-126,-86,-205,-86r-291,0r0,582r290,1v80,0,149,-29,206,-86v57,-57,85,-125,85,-205","w":1647},"\u042b":{"d":"1259,-73v0,49,-24,73,-72,73v-15,0,-31,-8,-48,-25v-17,-17,-25,-33,-25,-48r0,-1307v0,-49,24,-73,73,-73v48,0,72,24,72,73r0,1307xm1017,-435v0,120,-43,223,-128,308v-85,85,-188,128,-308,128r-363,-1v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-1307v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,508r290,0v121,0,224,43,309,128v85,85,127,188,127,309xm872,-435v0,-80,-29,-149,-86,-206v-57,-57,-125,-86,-205,-86r-290,0r0,582r290,1v80,0,148,-29,205,-86v57,-57,86,-125,86,-205","w":1405},"\u042c":{"d":"1017,-435v0,120,-43,223,-128,308v-85,85,-188,128,-308,128r-363,-1v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-1307v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,508r290,0v121,0,224,43,309,128v85,85,127,188,127,309xm872,-435v0,-80,-29,-149,-86,-206v-57,-57,-125,-86,-205,-86r-290,0r0,582r290,1v80,0,148,-29,205,-86v57,-57,86,-125,86,-205","w":1066},"\u042d":{"d":"1311,-727v0,201,-71,372,-213,514v-142,142,-313,213,-513,213v-92,0,-185,-19,-279,-56v-101,-39,-180,-92,-235,-157v-15,-17,-23,-34,-23,-50v0,-20,8,-38,23,-53v15,-15,33,-22,52,-22v16,0,33,8,51,23r59,51v100,79,217,119,352,119v146,0,274,-48,384,-145v110,-97,174,-219,192,-364r-1039,0v-48,0,-72,-24,-72,-73v0,-48,24,-72,72,-72r1039,0v-18,-145,-82,-266,-192,-363v-110,-97,-238,-146,-384,-146v-135,0,-252,39,-352,118r-59,52v-18,15,-35,23,-51,23v-19,0,-37,-8,-52,-23v-15,-15,-23,-32,-23,-52v0,-16,8,-33,23,-51v55,-65,133,-117,235,-157v94,-37,187,-55,279,-55v199,0,371,71,513,213v142,142,213,314,213,513","w":1360},"\u042e":{"d":"2034,-727v0,201,-71,372,-213,514v-142,142,-313,213,-513,213v-187,0,-350,-63,-488,-188v-138,-125,-216,-281,-235,-466r-294,0r0,581v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1307v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,581r294,0v19,-185,97,-341,236,-466v139,-125,301,-188,487,-188v200,0,371,71,513,213v142,142,213,313,213,513xm1889,-727v0,-160,-57,-297,-171,-411v-114,-114,-250,-170,-410,-170v-161,0,-298,56,-411,170v-113,114,-170,251,-170,411v0,161,57,297,170,411v113,114,250,171,411,171v160,0,296,-57,410,-171v114,-114,171,-250,171,-411","w":2083},"\u042f":{"d":"922,-73v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-567v-3,14,-14,30,-31,47r-571,572v-15,15,-32,22,-51,22v-19,0,-37,-8,-52,-23v-15,-15,-23,-32,-23,-51v0,-19,8,-36,23,-51r457,-457r-42,0v-121,0,-223,-43,-308,-128v-85,-85,-128,-188,-128,-308v0,-120,43,-223,128,-308v85,-85,187,-128,308,-128r364,0v48,0,72,24,72,72r0,1308xm776,-666r0,-642r-290,0v-80,0,-149,29,-206,86v-57,57,-85,125,-85,205v0,80,28,148,85,205v57,57,126,85,206,85r108,0v48,-1,84,-1,108,-1v41,0,66,21,74,62","w":1067},"\u0430":{"d":"775,-73v0,49,-24,73,-73,73v-49,0,-73,-24,-72,-73v-65,49,-137,73,-218,73v-100,0,-186,-35,-257,-106v-71,-71,-107,-157,-107,-257v0,-100,36,-186,107,-257v71,-71,157,-107,257,-107v81,0,153,24,218,73v0,-60,-21,-111,-64,-154v-43,-43,-94,-64,-154,-64v-42,0,-84,15,-126,44v-42,29,-69,43,-79,43v-20,0,-38,-8,-53,-23v-15,-15,-22,-32,-22,-52v0,-16,8,-33,23,-51v59,-71,145,-106,257,-106v100,0,185,36,256,107v71,71,107,156,107,256r0,581xm630,-363v0,-60,-21,-111,-64,-154v-43,-43,-94,-64,-154,-64v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154v0,60,21,111,64,154v43,43,94,64,154,64v60,0,111,-21,154,-64v43,-43,64,-94,64,-154","w":872},"\u0431":{"d":"1066,-1380v0,48,-24,72,-73,72v-130,0,-253,30,-369,90v-116,60,-210,144,-285,250v69,-33,141,-49,218,-49v140,0,259,50,359,149v100,99,150,219,150,359v0,141,-50,261,-150,360v-100,99,-219,149,-359,149v-140,0,-259,-50,-359,-149v-100,-99,-150,-219,-150,-360v0,-260,92,-482,277,-667v185,-185,407,-277,668,-277v49,0,73,24,73,73xm920,-509v0,-99,-35,-185,-106,-256v-71,-71,-157,-107,-257,-107v-100,0,-186,36,-257,107v-71,71,-106,157,-106,256v0,100,35,186,106,257v71,71,157,107,257,107v100,0,186,-36,257,-107v71,-71,106,-157,106,-257"},"\u0432":{"d":"836,-315v0,91,-36,167,-107,228v-67,59,-147,88,-239,88r-272,-1v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-872v0,-19,7,-35,22,-50v15,-15,32,-22,51,-22r272,0v77,0,145,25,202,74v59,52,89,116,89,192v0,73,-27,135,-82,186v91,63,137,146,137,250xm636,-751v0,-35,-16,-65,-47,-88v-29,-22,-62,-33,-99,-33r-199,0r0,242r199,0v37,0,70,-11,99,-32v31,-23,47,-53,47,-89xm690,-315v0,-49,-21,-90,-64,-123v-39,-31,-85,-46,-136,-46r-199,0r0,339r199,0v51,0,97,-15,136,-45v43,-33,64,-75,64,-125","w":884},"\u0433":{"d":"836,-945v0,49,-24,73,-73,73r-472,0r0,799v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-872v0,-19,7,-35,22,-50v15,-15,32,-22,51,-22r545,0v49,0,73,24,73,72","w":884},"\u0434":{"d":"1176,-71v0,48,-25,72,-74,72r-979,0v-50,0,-75,-24,-75,-72v0,-13,6,-29,17,-49r477,-848v19,-33,42,-50,70,-50v28,0,51,17,70,50r478,848v11,20,16,36,16,49xm979,-145r-367,-651r-366,651r733,0","w":1225},"\u0435":{"d":"1008,-292v0,11,-3,24,-10,38v-41,77,-102,138,-184,184v-82,46,-168,70,-257,70v-140,0,-259,-50,-359,-149v-100,-99,-150,-219,-150,-360v0,-140,50,-260,150,-359v100,-99,219,-149,359,-149v50,0,102,9,157,28v62,21,123,55,182,102v74,58,111,113,111,164v0,26,-12,46,-36,59r-686,396v72,82,163,123,272,123v115,0,206,-42,274,-125v9,-13,22,-31,41,-56v19,-25,39,-38,60,-38v20,0,38,7,53,21v15,14,23,31,23,51xm829,-749v-73,-82,-163,-123,-272,-123v-100,0,-186,36,-257,107v-71,71,-106,157,-106,256v0,40,6,79,18,116","w":1057},"\u0436":{"d":"1359,-73v0,19,-8,36,-23,51v-15,15,-32,23,-52,23v-19,0,-35,-7,-50,-22r-436,-436v-11,-11,-19,-24,-22,-38r0,422v0,49,-24,73,-72,73v-49,0,-73,-24,-73,-73r0,-422v-3,14,-10,27,-21,38r-436,436v-15,15,-32,22,-51,22v-19,0,-37,-8,-52,-23v-15,-15,-23,-32,-23,-51v0,-19,8,-36,23,-51r385,-385r-385,-384v-15,-15,-23,-32,-23,-51v0,-19,8,-37,23,-52v15,-15,33,-22,52,-22v19,0,36,7,51,22r436,436v11,11,18,24,21,38r0,-423v0,-48,24,-72,73,-72v48,0,72,24,72,72r0,423v3,-14,11,-27,22,-38r436,-436v15,-15,31,-22,50,-22v20,0,37,7,52,22v15,15,23,33,23,52v0,19,-8,36,-23,51r-384,384r384,385v15,15,23,32,23,51","w":1407},"\u0437":{"d":"739,-314v0,90,-35,166,-106,227v-68,59,-148,88,-239,88v-91,0,-171,-29,-239,-88v-71,-61,-107,-137,-107,-227v0,-49,24,-73,73,-73v49,0,73,24,73,73v0,49,21,91,64,124v39,31,85,46,136,46v51,0,97,-15,136,-46v43,-33,64,-75,64,-124v0,-50,-21,-91,-64,-124v-39,-31,-85,-46,-136,-46v-48,0,-72,-24,-72,-73v0,-48,24,-72,72,-72v37,0,70,-11,100,-34v30,-23,46,-52,46,-87v0,-36,-16,-66,-48,-89v-29,-22,-61,-33,-98,-33v-37,0,-70,11,-99,33v-31,23,-47,53,-47,89v0,48,-24,72,-72,72v-49,0,-73,-24,-73,-72v0,-77,30,-141,89,-193v57,-49,125,-74,202,-74v77,0,145,25,202,75v59,52,89,116,89,192v0,72,-27,134,-82,185v91,63,136,146,136,251","w":788},"\u0438":{"d":"1056,-944r-1,871v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-678r-626,716v-21,24,-42,36,-63,36v-50,0,-75,-25,-75,-75r2,-871v0,-48,24,-72,72,-72v49,0,73,24,73,72r0,679r627,-716v21,-24,41,-36,62,-36v50,0,75,25,75,74","w":1201},"\u0439":{"d":"894,-1381v0,19,-14,43,-42,72v-89,96,-174,144,-256,144v-49,0,-100,-18,-153,-54v-47,-32,-86,-71,-117,-116v-11,-17,-17,-32,-17,-46v0,-19,8,-36,23,-51v15,-15,33,-22,52,-22v21,0,53,24,96,72v43,48,83,72,120,72v38,0,79,-24,122,-72v43,-48,74,-72,95,-72v20,0,37,7,53,22v16,15,24,32,24,51xm1056,-944r-1,871v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-678r-626,716v-21,24,-42,36,-63,36v-50,0,-75,-25,-75,-75r2,-871v0,-48,24,-72,72,-72v49,0,73,24,73,72r0,679r627,-716v21,-24,41,-36,62,-36v50,0,75,25,75,74","w":1201},"\u043a":{"d":"873,-73v0,19,-8,36,-23,51v-15,15,-32,23,-51,23v-19,0,-36,-7,-51,-22r-436,-436v-11,-11,-18,-24,-21,-38r0,422v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-872v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,423v3,-14,10,-27,21,-38r436,-436v15,-15,32,-22,51,-22v19,0,36,7,51,22v15,15,23,33,23,52v0,19,-7,36,-22,51r-385,384r385,385v15,15,22,32,22,51","w":922},"\u043b":{"d":"1177,-71v0,19,-7,37,-23,51v-16,14,-34,21,-53,21v-27,0,-47,-13,-61,-38r-427,-759r-427,759v-15,25,-35,38,-61,38v-20,0,-37,-7,-53,-21v-16,-14,-24,-32,-24,-51v0,-13,4,-25,11,-37r484,-860v19,-33,42,-50,70,-50v28,0,51,17,70,50r483,860v7,12,11,24,11,37","w":1225},"\u043c":{"d":"1285,-70v0,47,-25,70,-76,70v-36,0,-59,-18,-68,-55r-169,-677r-234,485v-17,36,-41,54,-72,54v-30,0,-54,-18,-71,-54r-234,-485r-169,677v-9,37,-32,55,-69,55v-50,0,-75,-23,-75,-70v0,-7,1,-13,3,-20r215,-860v11,-45,36,-68,74,-68v30,0,54,18,71,54r255,530r256,-530v17,-36,41,-54,70,-54v39,0,64,23,75,68r215,860v2,7,3,13,3,20","w":1333},"\u043d":{"d":"945,-73v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-363r-508,0r0,363v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-872v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,364r508,0r0,-364v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,872","w":1090},"\u043e":{"d":"1066,-509v0,141,-50,261,-150,360v-100,99,-219,149,-359,149v-140,0,-259,-50,-359,-149v-100,-99,-150,-219,-150,-360v0,-140,50,-260,150,-359v100,-99,219,-149,359,-149v140,0,259,50,359,149v100,99,150,219,150,359xm920,-509v0,-99,-35,-185,-106,-256v-71,-71,-157,-107,-257,-107v-100,0,-186,36,-257,107v-71,71,-106,157,-106,256v0,100,35,186,106,257v71,71,157,107,257,107v100,0,186,-36,257,-107v71,-71,106,-157,106,-257"},"\u043f":{"d":"836,-73v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-799r-399,0r0,799v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-872v0,-19,7,-35,22,-50v15,-15,32,-22,51,-22r546,0v48,0,72,24,72,72r0,872","w":981},"\u0440":{"d":"1163,-509v0,141,-49,261,-149,360v-100,99,-220,149,-360,149v-143,0,-264,-51,-363,-153r0,516v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1308v0,-48,24,-72,73,-72v37,0,60,18,69,54v3,13,5,46,4,98v99,-101,220,-152,363,-152v140,0,260,50,360,149v100,99,149,219,149,359xm1017,-509v0,-99,-36,-185,-107,-256v-71,-71,-156,-107,-256,-107v-100,0,-185,36,-256,107v-71,71,-107,157,-107,256v0,100,36,186,107,257v71,71,156,107,256,107v100,0,185,-36,256,-107v71,-71,107,-157,107,-257","w":1211},"\u0441":{"d":"939,-818v0,20,-8,37,-23,52v-15,15,-32,23,-52,23v-6,0,-42,-22,-108,-65v-66,-43,-132,-64,-199,-64v-100,0,-186,36,-257,107v-71,71,-106,157,-106,256v0,100,35,186,106,257v71,71,157,107,257,107v67,0,133,-22,199,-65v66,-43,101,-64,108,-64v19,0,37,8,52,23v15,15,22,33,22,52v0,16,-7,33,-22,51v-39,45,-93,82,-164,109v-66,26,-131,39,-195,39v-140,0,-259,-50,-359,-149v-100,-99,-150,-219,-150,-360v0,-140,50,-260,150,-359v100,-99,219,-149,359,-149v64,0,129,13,195,39v71,28,125,65,164,110v15,17,23,34,23,50","w":988},"\u0442":{"d":"848,-945v0,49,-24,73,-73,73r-254,0r0,799v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-799r-254,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r654,0v49,0,73,24,73,72","w":896},"\u0443":{"d":"775,73v0,99,-36,185,-107,256v-71,71,-156,107,-256,107v-63,0,-124,-16,-182,-49v-60,-33,-104,-77,-132,-131v-7,-15,-11,-28,-11,-39v0,-19,8,-37,23,-51v15,-14,33,-21,53,-21v17,0,47,24,91,73v44,49,96,73,158,73v60,0,111,-21,154,-64v43,-43,64,-94,64,-154r0,-146v-65,49,-137,73,-218,73v-100,0,-186,-35,-257,-106v-71,-71,-107,-157,-107,-257r0,-582v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,582v0,60,21,111,64,154v43,43,94,64,154,64v60,0,111,-21,154,-64v43,-43,64,-94,64,-154r0,-582v0,-48,24,-72,72,-72v49,0,73,24,73,72r0,1018","w":920},"\u0444":{"d":"1356,-509v0,123,-29,235,-88,334v-69,117,-160,175,-275,175v-83,0,-155,-33,-218,-99r0,462v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-462v-63,66,-135,99,-218,99v-115,0,-207,-58,-276,-175v-59,-99,-88,-211,-88,-334v0,-123,29,-234,88,-333v69,-117,161,-175,276,-175v83,0,155,33,218,99r0,-462v0,-49,24,-73,72,-73v49,0,73,24,73,73r0,462v63,-66,135,-99,218,-99v115,0,206,58,275,175v59,99,88,210,88,333xm1211,-509v0,-55,-7,-106,-21,-153v-15,-52,-38,-98,-69,-137v-39,-49,-82,-73,-128,-73v-25,0,-52,9,-80,28v-92,61,-138,173,-138,335v0,163,46,275,138,336v28,19,55,28,80,28v46,0,89,-24,128,-73v31,-39,54,-85,69,-137v14,-47,21,-99,21,-154xm630,-509v0,-55,-7,-106,-21,-153v-15,-52,-38,-98,-70,-137v-39,-49,-81,-73,-127,-73v-25,0,-52,9,-80,28v-92,61,-138,173,-138,335v0,163,46,275,138,336v28,19,55,28,80,28v46,0,88,-24,127,-73v32,-39,55,-85,70,-137v14,-47,21,-99,21,-154","w":1405},"\u0445":{"d":"923,-72v0,19,-8,36,-23,51v-15,15,-33,22,-52,22v-21,0,-40,-9,-55,-27r-307,-369r-307,369v-15,18,-33,27,-54,27v-20,0,-38,-7,-53,-22v-15,-15,-23,-32,-23,-51v0,-17,6,-32,19,-47r323,-390r-324,-389v-13,-15,-19,-30,-19,-47v0,-19,8,-36,23,-51v15,-15,33,-22,53,-22v21,0,39,9,54,27r308,369r306,-369v15,-18,34,-27,55,-27v19,0,37,7,52,22v15,15,23,32,23,51v0,17,-6,32,-18,47r-324,389r325,390v12,15,18,30,18,47","w":971},"\u0446":{"d":"836,218v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-218r-472,0v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-872v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,800r399,0r0,-800v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,1163","w":981},"\u0447":{"d":"848,-73v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-363r-336,0v-84,0,-157,-27,-220,-81v-65,-57,-98,-126,-98,-209r0,-219v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,218v0,43,18,78,55,107v34,26,73,39,117,39r336,0r0,-364v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,872","w":993},"\u0448":{"d":"1380,-73v0,49,-24,73,-71,73r-1091,0v-49,0,-73,-24,-73,-72r0,-873v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,800r399,0r0,-800v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,800r399,0r0,-800v0,-48,24,-72,73,-72v48,0,72,24,72,72r0,872","w":1526},"\u0449":{"d":"1380,218v0,49,-24,73,-72,73v-49,0,-73,-24,-73,-73r0,-218r-1017,0v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-872v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,800r399,0r0,-800v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,800r399,0r0,-800v0,-48,24,-72,73,-72v48,0,72,24,72,72r0,1163","w":1526},"\u044a":{"d":"1284,-315v0,91,-36,167,-107,228v-67,59,-147,88,-239,88r-272,-1v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-799r-472,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r545,0v19,0,36,7,51,22v15,15,22,31,22,50r0,315r199,0v92,0,172,29,239,88v71,61,107,137,107,227xm1138,-315v0,-49,-21,-90,-64,-123v-39,-31,-85,-46,-136,-46r-199,0r0,339r199,0v51,0,97,-15,136,-45v43,-33,64,-75,64,-125","w":1332},"\u044b":{"d":"1042,-73v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-872v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,872xm836,-315v0,91,-35,167,-106,228v-67,59,-147,88,-240,88r-272,-1v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-872v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,315r200,0v91,0,171,29,239,88v71,61,106,137,106,227xm690,-315v0,-49,-21,-91,-64,-124v-39,-30,-84,-45,-135,-45r-200,0r0,339r199,0v51,0,97,-15,136,-45v43,-33,64,-75,64,-125","w":1187},"\u044c":{"d":"836,-315v0,91,-36,167,-107,228v-67,59,-147,88,-239,88r-272,-1v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-872v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,315r199,0v92,0,172,29,239,88v71,61,107,137,107,227xm690,-315v0,-49,-21,-90,-64,-123v-39,-31,-85,-46,-136,-46r-199,0r0,339r199,0v51,0,97,-15,136,-45v43,-33,64,-75,64,-125","w":884},"\u044d":{"d":"1008,-509v0,141,-50,261,-149,360v-99,99,-219,149,-359,149v-89,0,-174,-23,-255,-69v-83,-47,-145,-108,-186,-185v-7,-14,-11,-27,-11,-38v0,-20,8,-37,24,-51v16,-14,33,-21,53,-21v21,0,41,12,60,37v9,13,22,32,41,57v68,83,159,125,274,125v109,0,199,-41,272,-123r-686,-396v-24,-13,-36,-33,-36,-59v0,-51,37,-106,110,-164v60,-47,121,-81,183,-102v55,-19,107,-28,157,-28v140,0,260,50,359,149v99,99,149,219,149,359xm863,-509v0,-99,-36,-185,-107,-256v-71,-71,-156,-107,-256,-107v-109,0,-199,41,-272,123r617,356v12,-37,18,-76,18,-116","w":1057},"\u044e":{"d":"1502,-509v0,147,-49,269,-147,365v-98,96,-221,144,-368,144v-132,0,-245,-40,-338,-120v-93,-80,-150,-185,-171,-316r-187,0r0,363v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-872v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,364r187,0v20,-131,76,-236,170,-316v94,-80,207,-120,339,-120v147,0,270,48,368,144v98,96,147,217,147,364xm1356,-509v0,-106,-34,-193,-104,-261v-70,-68,-158,-102,-265,-102v-107,0,-195,34,-265,102v-70,68,-104,155,-104,261v0,107,34,194,104,262v70,68,158,102,265,102v107,0,195,-34,265,-102v70,-68,104,-155,104,-262","w":1550},"\u044f":{"d":"740,-73v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-322r-424,377v-15,13,-32,19,-49,19v-19,0,-37,-8,-52,-23v-15,-15,-22,-32,-22,-52v0,-20,9,-38,26,-53r294,-261v-87,-7,-161,-39,-222,-96v-64,-61,-96,-133,-96,-218v0,-90,35,-166,106,-227v68,-59,148,-88,239,-88r273,0v48,0,72,24,72,72r0,872xm595,-524r0,-348r-200,0v-51,0,-97,15,-136,46v-43,33,-64,74,-64,124v0,49,21,90,64,123v39,31,85,46,136,46r81,0v37,-1,64,-1,82,-1v12,0,24,3,37,10","w":885},"\u0451":{"d":"884,-1272v0,30,-11,56,-32,77v-21,21,-47,32,-77,32v-30,0,-56,-11,-77,-32v-21,-21,-32,-47,-32,-77v0,-30,11,-55,32,-76v21,-21,47,-32,77,-32v30,0,56,11,77,32v21,21,32,46,32,76xm449,-1272v0,30,-11,56,-33,77v-22,21,-47,32,-77,32v-30,0,-56,-11,-77,-32v-21,-21,-31,-47,-31,-77v0,-30,10,-55,31,-76v21,-21,47,-32,77,-32v30,0,55,11,77,32v22,21,33,46,33,76xm1008,-292v0,11,-3,24,-10,38v-41,77,-102,138,-184,184v-82,46,-168,70,-257,70v-140,0,-259,-50,-359,-149v-100,-99,-150,-219,-150,-360v0,-140,50,-260,150,-359v100,-99,219,-149,359,-149v50,0,102,9,157,28v62,21,123,55,182,102v74,58,111,113,111,164v0,26,-12,46,-36,59r-686,396v72,82,163,123,272,123v115,0,206,-42,274,-125v9,-13,22,-31,41,-56v19,-25,39,-38,60,-38v20,0,38,7,53,21v15,14,23,31,23,51xm829,-749v-73,-82,-163,-123,-272,-123v-100,0,-186,36,-257,107v-71,71,-106,157,-106,256v0,40,6,79,18,116","w":1057},"\u0452":{"d":"945,145v0,80,-28,148,-85,205v-57,57,-126,86,-206,86v-55,0,-102,-10,-142,-30v-51,-25,-76,-63,-76,-112v0,-50,19,-75,58,-75v14,0,36,12,66,36v30,24,61,36,94,36v40,0,74,-14,102,-43v28,-29,43,-63,43,-103r0,-799v0,-60,-21,-111,-64,-154v-43,-43,-94,-64,-154,-64v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154r0,581v0,49,-24,73,-72,73v-49,0,-73,-24,-73,-73r0,-1017r-145,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r145,0r0,-145v0,-49,24,-73,73,-73v48,0,72,24,72,73r0,145r146,0v48,0,72,24,72,72v0,49,-24,73,-72,73r-146,0r0,145v65,-48,137,-72,218,-72v100,0,186,36,257,107v71,71,107,156,107,256r0,799","w":1041},"\u0453":{"d":"709,-1378v0,28,-14,49,-41,63r-290,145v-12,6,-24,9,-35,9v-20,0,-37,-7,-51,-23v-14,-16,-20,-34,-20,-54v0,-28,14,-49,41,-62r290,-145v12,-6,24,-9,35,-9v19,0,36,8,50,23v14,15,21,33,21,53xm836,-945v0,49,-24,73,-73,73r-472,0r0,799v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-872v0,-19,7,-35,22,-50v15,-15,32,-22,51,-22r545,0v49,0,73,24,73,72","w":884},"\u0454":{"d":"939,-818v0,20,-8,37,-23,52v-15,15,-32,23,-52,23v-6,0,-42,-22,-107,-65v-65,-43,-132,-64,-200,-64v-86,0,-162,27,-229,82v-67,55,-110,125,-127,209r664,0v48,0,72,24,72,72v0,49,-24,73,-72,73r-664,0v17,84,60,153,127,208v67,55,143,83,229,83v67,0,134,-22,199,-65v65,-43,101,-64,108,-64v19,0,37,8,52,23v15,15,22,33,22,52v0,16,-7,33,-22,51v-38,45,-93,82,-164,109v-66,26,-131,39,-195,39v-140,0,-259,-50,-359,-149v-100,-99,-150,-219,-150,-360v0,-140,50,-260,150,-359v100,-99,219,-149,359,-149v64,0,129,13,195,39v71,28,126,65,164,110v15,17,23,34,23,50","w":988},"\u0455":{"d":"687,-327v0,90,-33,167,-97,231v-64,64,-141,96,-230,96v-67,0,-129,-19,-186,-58v-57,-39,-97,-90,-120,-152v-4,-11,-6,-20,-6,-29v0,-20,8,-37,23,-51v15,-14,33,-20,53,-20v23,0,44,14,63,43v30,45,49,72,56,79v29,29,68,43,117,43v49,0,92,-17,128,-53v36,-36,53,-79,53,-129v0,-111,-62,-171,-186,-182v-75,-6,-135,-31,-181,-74v-49,-46,-74,-106,-74,-180v0,-70,25,-129,75,-179v50,-50,110,-75,180,-75v101,0,174,42,219,126v7,14,11,27,11,38v0,20,-8,37,-23,51v-15,14,-33,21,-53,21v-20,0,-42,-15,-67,-45v-25,-30,-54,-46,-87,-46v-30,0,-56,10,-77,32v-21,22,-32,48,-32,77v0,65,38,102,114,109v97,9,174,41,233,96v63,59,94,136,94,231","w":735},"\u0456":{"d":"328,-1343v0,30,-10,56,-32,77v-22,21,-48,31,-78,31v-30,0,-56,-10,-78,-31v-22,-21,-32,-47,-32,-77v0,-30,10,-55,32,-77v22,-22,48,-33,78,-33v30,0,56,11,78,33v22,22,32,47,32,77xm291,-945r0,872v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-872v0,-48,24,-72,73,-72v49,0,73,24,73,72","w":436},"\u0457":{"d":"545,-1272v0,30,-11,56,-33,77v-22,21,-47,32,-77,32v-30,0,-56,-11,-77,-32v-21,-21,-31,-47,-31,-77v0,-30,10,-55,31,-76v21,-21,47,-32,77,-32v31,0,57,11,78,32v21,21,32,46,32,76xm109,-1272v0,30,-11,56,-33,77v-22,21,-47,32,-76,32v-31,0,-57,-11,-78,-32v-21,-21,-31,-47,-31,-77v0,-30,10,-55,31,-76v21,-21,47,-32,78,-32v30,0,56,11,77,32v21,21,32,46,32,76xm290,-945r0,872v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-872v0,-48,24,-72,72,-72v49,0,73,24,73,72","w":436},"\u0458":{"d":"328,-1343v0,30,-10,56,-32,77v-22,21,-48,31,-78,31v-30,0,-56,-10,-78,-31v-22,-21,-32,-47,-32,-77v0,-30,10,-55,32,-77v22,-22,48,-33,78,-33v30,0,56,11,78,33v22,22,32,47,32,77xm291,145v0,80,-28,148,-85,205v-57,57,-126,86,-206,86v-55,0,-102,-10,-142,-30v-51,-25,-76,-63,-76,-112v0,-50,19,-75,58,-75v14,0,36,12,66,36v30,24,61,36,94,36v40,0,74,-14,102,-43v28,-29,43,-63,43,-103r0,-1090v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,1090","w":436},"\u0459":{"d":"1394,-316v0,91,-35,167,-106,228v-67,58,-147,87,-240,87r-272,0v-19,0,-36,-7,-50,-22v-14,-15,-22,-32,-22,-51r0,-654r-523,698v-15,20,-34,30,-57,30v-19,0,-36,-7,-52,-22v-16,-15,-24,-32,-24,-51v0,-16,5,-31,16,-45r647,-862v20,-26,41,-39,64,-39v49,0,74,28,74,85r0,303r200,0v91,0,171,29,239,88v71,61,106,137,106,227xm1249,-316v0,-49,-22,-91,-65,-124v-39,-31,-84,-46,-135,-46r-200,0r0,339r199,1v52,0,97,-15,136,-46v43,-33,65,-74,65,-124","w":1442},"\u045a":{"d":"1489,-315v0,91,-35,167,-106,228v-67,59,-147,88,-239,88r-272,-1v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-411r-508,0r0,411v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-872v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,315r508,0r0,-315v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,315r199,0v92,0,172,29,239,88v71,61,106,137,106,227xm1344,-315v0,-49,-21,-90,-64,-123v-39,-31,-85,-46,-136,-46r-199,0r0,339r199,0v51,0,97,-15,136,-45v43,-33,64,-75,64,-125","w":1538},"\u045b":{"d":"945,-73v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-581v0,-60,-21,-111,-64,-154v-43,-43,-94,-64,-154,-64v-60,0,-111,21,-154,64v-43,43,-64,94,-64,154r0,581v0,49,-24,73,-72,73v-49,0,-73,-24,-73,-73r0,-1017r-145,0v-49,0,-73,-24,-73,-73v0,-48,24,-72,73,-72r145,0r0,-145v0,-49,24,-73,73,-73v48,0,72,24,72,73r0,145r146,0v48,0,72,24,72,72v0,49,-24,73,-72,73r-146,0r0,145v65,-48,137,-72,218,-72v100,0,186,36,257,107v71,71,107,156,107,256r0,581","w":1041},"\u045c":{"d":"764,-1378v0,28,-14,49,-41,63r-291,145v-11,6,-23,9,-35,9v-19,0,-36,-7,-50,-23v-14,-16,-21,-34,-21,-54v0,-28,14,-49,41,-62r291,-145v11,-6,23,-9,34,-9v20,0,37,8,51,23v14,15,21,33,21,53xm891,-74v0,20,-7,37,-22,52v-15,15,-32,23,-52,23v-17,0,-33,-6,-48,-19r-478,-426r0,371v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-872v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,371r478,-425v15,-13,31,-20,48,-20v20,0,37,8,52,23v15,15,22,33,22,53v0,20,-8,38,-25,53r-430,381r430,382v17,15,25,33,25,53","w":940},"\u045e":{"d":"753,-1381v0,19,-14,43,-41,72v-89,96,-175,144,-257,144v-49,0,-100,-18,-153,-54v-47,-32,-86,-71,-117,-116v-11,-17,-17,-32,-17,-46v0,-19,8,-36,23,-51v15,-15,33,-22,53,-22v20,0,51,24,94,72v43,48,84,72,122,72v37,0,78,-24,121,-72v43,-48,75,-72,95,-72v20,0,38,7,54,22v16,15,23,32,23,51xm823,73v0,99,-36,185,-107,256v-71,71,-156,107,-256,107v-63,0,-123,-16,-181,-49v-60,-33,-104,-77,-133,-131v-7,-15,-11,-28,-11,-39v0,-19,7,-37,23,-51v16,-14,34,-21,53,-21v17,0,47,24,91,73v44,49,96,73,158,73v60,0,111,-21,154,-64v43,-43,64,-94,64,-154r0,-146v-65,49,-137,73,-218,73v-100,0,-185,-35,-256,-106v-71,-71,-107,-157,-107,-257r0,-582v0,-48,24,-72,73,-72v48,0,72,24,72,72r0,582v0,60,21,111,64,154v43,43,94,64,154,64v60,0,111,-21,154,-64v43,-43,64,-94,64,-154r0,-582v0,-48,24,-72,73,-72v48,0,72,24,72,72r0,1018","w":969},"\u045f":{"d":"836,-73v0,49,-24,73,-73,73r-200,0r0,218v0,49,-24,73,-73,73v-48,0,-72,-24,-72,-73r0,-218r-200,0v-19,0,-36,-7,-51,-22v-15,-15,-22,-32,-22,-51r0,-872v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,800r399,0r0,-800v0,-48,24,-72,73,-72v49,0,73,24,73,72r0,872","w":981},"\u0490":{"d":"1017,-1380v0,48,-24,72,-72,72r-654,0r0,1235v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-1307v0,-19,7,-36,22,-51v15,-15,32,-22,51,-22r654,0r0,-218v0,-49,24,-73,73,-73v48,0,72,24,72,73r0,291","w":1017},"\u0491":{"d":"836,-945v0,19,-7,36,-22,51v-15,15,-32,22,-51,22r-472,0r0,799v0,49,-24,73,-73,73v-49,0,-73,-24,-73,-73r0,-872v0,-19,7,-35,22,-50v15,-15,32,-22,51,-22r472,0r0,-218v0,-49,24,-73,73,-73v49,0,73,24,73,73r0,290","w":884},"\u00a0":{"w":484}}});
;
// $Id: aria-roles.js,v 1.1.2.10 2009/05/22 20:25:23 jmburnz Exp $

/**
 * Insert WAI-ARIA Landmark Roles (Roles for Accessible Rich Internet Applications)
 *
 * http://www.w3.org/TR/2006/WD-aria-role-20060926/
 * 
 * Due to validation errors with WAI-ARIA roles we use JavaScript to 
 * insert the roles. This is a stop-gap measure while the W3C sort 
 * out the validator.
 *
 * To unset comment out aria-roles.js in genesis.info
 */
if (Drupal.jsEnabled) {
  $(document).ready(function() {

    // Set role=banner on #branding wrapper div.
    $("#branding").attr("role","banner");

    // Set role=complementary on #main-content blocks, sidebars and regions.
    $(".block").attr("role","complementary");

    // Remove role=complementary from system blocks.
    $(".block-system, td.block, tr.region, td.region").removeAttr("role","complementary");

    // Set role=main on #main-content div.
    $("#main-content").attr("role","main");

    // Set role=search on search block and box.
    $("#search-theme-form, #search-block-form, #search-form").attr("role","search");

    // Set role=contentinfo on the footer message.
    $("#footer-message").attr("role","contentinfo");

    // Set role=article on nodes.
    $(".node").attr("role","article");

    // Set role=nav on navigation-like blocks.
    $("#nav, ul.links, ul.tags, .admin-panel, #breadcrumb, .block-menu, #block-user-1, #block-user-3, .block-book, .block-forum, .block-blog, .block-comment, .block-statistics-0, .block-aggregator, ul.pager, .local-tasks").attr("role","navigation");
  
  });
};
;jQuery.preloadCssImages=function(settings){settings=jQuery.extend({statusTextEl:null,statusBarEl:null,errorDelay:999,simultaneousCacheLoading:2},settings);var allImgs=[],loaded=0,imgUrls=[],thisSheetRules,errorTimer;function onImgComplete(){clearTimeout(errorTimer);if(imgUrls&&imgUrls.length&&imgUrls[loaded]){loaded++;if(settings.statusTextEl){var nowloading=(imgUrls[loaded])?'Now Loading: <span>'+imgUrls[loaded].split('/')[imgUrls[loaded].split('/').length-1]:'Loading complete';jQuery(settings.statusTextEl).html('<span class="numLoaded">'+loaded+'</span> of <span class="numTotal">'+imgUrls.length+'</span> loaded (<span class="percentLoaded">'+(loaded/imgUrls.length*100).toFixed(0)+'%</span>) <span class="currentImg">'+nowloading+'</span></span>');}
if(settings.statusBarEl){var barWidth=jQuery(settings.statusBarEl).width();jQuery(settings.statusBarEl).css('background-position',-(barWidth-(barWidth*loaded/imgUrls.length).toFixed(0))+'px 50%');}
loadImgs();}}
function loadImgs(){if(imgUrls&&imgUrls.length&&imgUrls[loaded]){var img=new Image();img.src=imgUrls[loaded];if(!img.complete){jQuery(img).bind('error load onreadystatechange',onImgComplete);}else{onImgComplete();}
errorTimer=setTimeout(onImgComplete,settings.errorDelay);}}
function parseCSS(sheets,urls){var w3cImport=false,imported=[],importedSrc=[],baseURL;var sheetIndex=sheets.length;while(sheetIndex--){var cssPile='';if(urls&&urls[sheetIndex]){baseURL=urls[sheetIndex];}else{var csshref=(sheets[sheetIndex].href)?sheets[sheetIndex].href:'window.location.href';var baseURLarr=csshref.split('/');baseURLarr.pop();baseURL=baseURLarr.join('/');if(baseURL){baseURL+='/';}}
if(sheets[sheetIndex].cssRules||sheets[sheetIndex].rules){thisSheetRules=(sheets[sheetIndex].cssRules)?sheets[sheetIndex].cssRules:sheets[sheetIndex].rules;var ruleIndex=thisSheetRules.length;while(ruleIndex--){if(thisSheetRules[ruleIndex].style&&thisSheetRules[ruleIndex].style.cssText){var text=thisSheetRules[ruleIndex].style.cssText;if(text.toLowerCase().indexOf('url')!=-1){cssPile+=text;}}else if(thisSheetRules[ruleIndex].styleSheet){imported.push(thisSheetRules[ruleIndex].styleSheet);w3cImport=true;}}}
var tmpImage=cssPile.match(/[^\("]+\.(gif|jpg|jpeg|png)/g);if(tmpImage){var i=tmpImage.length;while(i--){var imgSrc=(tmpImage[i].charAt(0)=='/'||tmpImage[i].match('://'))?tmpImage[i]:baseURL+tmpImage[i];if(jQuery.inArray(imgSrc,imgUrls)==-1){imgUrls.push(imgSrc);}}}
if(!w3cImport&&sheets[sheetIndex].imports&&sheets[sheetIndex].imports.length){for(var iImport=0,importLen=sheets[sheetIndex].imports.length;iImport<importLen;iImport++){var iHref=sheets[sheetIndex].imports[iImport].href;iHref=iHref.split('/');iHref.pop();iHref=iHref.join('/');if(iHref){iHref+='/';}
var iSrc=(iHref.charAt(0)=='/'||iHref.match('://'))?iHref:baseURL+iHref;importedSrc.push(iSrc);imported.push(sheets[sheetIndex].imports[iImport]);}}}
if(imported.length){parseCSS(imported,importedSrc);return false;}
var downloads=settings.simultaneousCacheLoading;while(downloads--){setTimeout(loadImgs,downloads);}}
parseCSS(document.styleSheets);return imgUrls;};
;
/**
 * Automatic ajax validation
 *
 * @see http://drupal.org/project/ajax
 * @see irc://freenode.net/#drupy
 * @depends Drupal 6
 * @author brendoncrawford
 * @note This file uses a 79 character width limit.
 */

/**
 * Ajax Forms plugin for scroller
 * 
 * @param {String} hook
 * @param {Object} args
 * @return {Bool}
 */
Drupal.Ajax.plugins.scroller = function(hook, args) {
  var scroll_weight, box, found, timer;
  if (hook === 'afterMessage') {
    if (args.options.scroller === true) {
      scroll_weight = 100;
      timer = window.setInterval(function(){
        box = args.local.submitter[0];
        found = false;
        // Watch for thickbox
        while (box.parentNode !== null &&
        Drupal.Ajax.invoke('scrollFind', {
          container: box
        })) {
          box = box.parentNode;
          // Document
          if (box === document) {
            if (box.documentElement.scrollTop &&
            box.documentElement.scrollTop > 0) {
              box.documentElement.scrollTop -= scroll_weight;
              found = true;
            }
          }
          // Body
          else 
            if (box === document.body) {
              if (box.scrollTop &&
              box.scrollTop > 0) {
                box.scrollTop -= scroll_weight;
                found = true;
              }
            }
            // Window
            else 
              if (box === window) {
                if ((window.pageYOffset && window.pageYOffset > 0) ||
                (window.scrollY && window.scrollY > 0)) {
                  window.scrollBy(0, -scroll_weight);
                  found = true;
                }
              }
              // Any other element
              else {
                if (box.scrollTop && box.scrollTop > 0) {
                  box.scrollTop -= scroll_weight;
                  found = true;
                }
              }
        }
        // Check if completed
        if (!found) {
          window.clearInterval(timer);
        }
        return true;
      }, 100);
      return true;
    }
  }
}


;

