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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number((((($n%10)==1)&&(($n%100)!=11))?(0):((((($n%10)>=2)&&(($n%10)<=4))&&((($n%100)<10)||(($n%100)>=20)))?(1):2))); }, 'strings': { "Unspecified error": "ÐÐµÐ¸Ð·Ð²ÐµÑÑ‚Ð½Ð°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°", "Next": "Ð”Ð°Ð»ÐµÐµ", "Drag to re-order": "Ð˜Ð·Ð¼ÐµÐ½Ð¸Ñ‚ÑŒ Ð¿Ð¾Ñ€ÑÐ´Ð¾Ðº Ð¼Ð¾Ð¶Ð½Ð¾ Ð¿ÐµÑ€ÐµÑ‚Ð°Ñ‰Ð¸Ð² Ð¿ÑƒÐ½ÐºÑ‚ Ð¼Ñ‹ÑˆÐºÐ¾Ð¹.", "Changes made in this table will not be saved until the form is submitted.": "Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð²ÑÑ‚ÑƒÐ¿ÑÑ‚ Ð² ÑÐ¸Ð»Ñƒ Ð¿Ð¾ÑÐ»Ðµ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸ Ñ„Ð¾Ñ€Ð¼Ñ‹.", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð²ÑÑ‚ÑƒÐ¿ÑÑ‚ Ð² ÑÐ¸Ð»Ñƒ Ð¿Ð¾ÑÐ»Ðµ ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ñ„Ð¾Ñ€Ð¼Ñ‹.", "Upload": "Ð—Ð°ÐºÐ°Ñ‡Ð°Ñ‚ÑŒ", "Only files with the following extensions are allowed: %files-allowed.": "ÐŸÑ€Ð¸ÐºÑ€ÐµÐ¿Ð»ÑÑ‚ÑŒ Ð¼Ð¾Ð¶Ð½Ð¾ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ Ñ„Ð°Ð¹Ð»Ñ‹ Ñ Ñ€Ð°ÑÑˆÐ¸Ñ€ÐµÐ½Ð¸ÑÐ¼Ð¸: %files-allowed.", "Testing clean URLs...": "ÐŸÑ€Ð¾Ð²ÐµÑ€ÐºÐ° Ñ‡Ð¸ÑÑ‚Ñ‹Ñ… ÑÑÑ‹Ð»Ð¾Ðº...", "Your server has been successfully tested to support this feature.": "Ð’Ð°Ñˆ ÑÐµÑ€Ð²ÐµÑ€ Ð±Ñ‹Ð» ÑƒÑÐ¿ÐµÑˆÐ½Ð¾ Ð¿Ñ€Ð¾Ñ‚ÐµÑÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½ Ð¸ Ð¼Ð¾Ð¶ÐµÑ‚ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÑŒ ÑÑ‚Ñƒ Ñ„ÑƒÐ½ÐºÑ†Ð¸ÑŽ", "Your system configuration does not currently support this feature. The \x3ca href=\"http://drupal.org/node/15365\"\x3ehandbook page on Clean URLs\x3c/a\x3e has additional troubleshooting information.": "ÐšÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ñ Ð²Ð°ÑˆÐµÐ¹ ÑÐ¸ÑÑ‚ÐµÐ¼Ñ‹ ÑÐµÐ¹Ñ‡Ð°Ñ Ð½Ðµ Ð¿Ð¾Ð´Ð´ÐµÑ€Ð¶Ð¸Ð²Ð°ÐµÑ‚ ÑÑ‚Ð¾Ð¹ Ñ„ÑƒÐ½ÐºÑ†Ð¸Ð¸. Ð”Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð´Ð¾ÑÑ‚ÑƒÐ¿Ð½Ð° Ð² \x3ca href=\"http://drupal.org/node/15365\"\x3eÐ´Ð¾ÐºÑƒÐ¼ÐµÐ½Ñ‚Ð°Ñ†Ð¸Ð¸ Ð¾ Ñ‡Ð¸ÑÑ‚Ñ‹Ñ… ÑÑÑ‹Ð»ÐºÐ°Ñ…\x3c/a\x3e.", "Select all rows in this table": "ÐžÑ‚Ð¼ÐµÑ‚Ð¸Ñ‚ÑŒ Ð²ÑÐµ ÑÑ‚Ñ€Ð¾ÐºÐ¸ Ñ‚Ð°Ð±Ð»Ð¸Ñ†Ñ‹", "Deselect all rows in this table": "Ð¡Ð½ÑÑ‚ÑŒ Ð¾Ñ‚Ð¼ÐµÑ‚ÐºÑƒ ÑÐ¾ Ð²ÑÐµÑ… ÐºÐ¾Ð»Ð¾Ð½Ð¾Ðº Ñ‚Ð°Ð±Ð»Ð¸Ñ†Ñ‹", "jQuery UI Tabs: Mismatching fragment identifier.": "jQuery UI Tabs: ÐÐµ ÑÐ¾Ð²Ð¿Ð°Ð´Ð°ÐµÑ‚ Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ‚Ð¾Ñ€ Ñ„Ñ€Ð°Ð³Ð¼ÐµÐ½Ñ‚Ð°.", "jQuery UI Tabs: Not enough arguments to add tab.": "jQuery UI Tabs: ÐÐµÐ´Ð¾ÑÑ‚Ð°Ñ‚Ð¾Ñ‡Ð½Ð¾ Ð°Ñ€Ð³ÑƒÐ¼ÐµÐ½Ñ‚Ð¾Ð² Ð´Ð»Ñ Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð²ÐºÐ»Ð°Ð´ÐºÐ¸.", "Internal server error. Please see server or PHP logs for error information.": "Ð’Ð½ÑƒÑ‚Ñ€ÐµÐ½Ð½ÑÑ ÑÐµÑ€Ð²ÐµÑ€Ð½Ð°Ñ Ð¾ÑˆÐ¸Ð±ÐºÐ°. ÐŸÐ¾Ð¶Ð°Ð»ÑƒÐ¹ÑÑ‚Ð°, Ð¿Ð¾ÑÐ¼Ð¾Ñ‚Ñ€Ð¸Ñ‚Ðµ Ð»Ð¾Ð³ Ð¾ÑˆÐ¸Ð±Ð¾Ðº ÑÐµÑ€Ð²ÐµÑ€Ð° Ð¸Ð»Ð¸ PHP." } };;
// $Id: dhtml_menu.js,v 1.18.2.10 2009/01/12 10:13:30 arancaytar Exp $

/**
 * @file dhtml_menu.js
 * The Javascript code for DHTML Menu
 */
 
Drupal.dhtmlMenu = {};

/**
 * Initialize the module's JS functions
 */
Drupal.behaviors.dhtmlMenu = function() {
  // Do not run this function more than once.
  if (Drupal.dhtmlMenu.init) {
    return;
  }
  else {
    Drupal.dhtmlMenu.init = true;
  }

  // Get the settings.
  var effects = Drupal.settings.dhtmlMenu;

  $('.collapsed').removeClass('expanded');

  // Get cookie
  if (!effects.siblings) {
    var cookie = Drupal.dhtmlMenu.cookieGet();
    for (var i in cookie) {
      // If the cookie was not applied to the HTML code yet, do so now.
      var li = $('#dhtml_menu-' + cookie[i]).parents('li:first');
      if ($(li).hasClass('collapsed')) {
        Drupal.dhtmlMenu.toggleMenu(li);
      }
    }
  }

  /* Add jQuery effects and listeners to all menu items.
   * The ~ (sibling) selector is unidirectional and selects 
   * only the latter element, so we must use siblings() to get 
   * back to the link element.
   */
   $('ul.menu li.dhtml-menu:not(.leaf,.no-dhtml)').each(function() {
    var li = this;
    if (effects.clone) {
      var ul = $(li).find('ul:first');
      if (ul.length) {
        $(li).find('a:first').clone().prependTo(ul).wrap('<li class="leaf fake-leaf"></li>');
      }
    }

    if (effects.doubleclick) {
      $(li).find('a:first').dblclick(function(e) {
        window.location = this.href;
      });
    }

    $(li).find('a:first').click(function(e) {
      Drupal.dhtmlMenu.toggleMenu($(li));
      return false;
    });
  });
}

/**
 * Toggles the menu's state between open and closed.
 *
 * @param li
 *   Object. The <li> element that will be expanded or collapsed.
 */
Drupal.dhtmlMenu.toggleMenu = function(li) {
  var effects = Drupal.settings.dhtmlMenu;

  // If the menu is expanded, collapse it.
  if($(li).hasClass('expanded')) {
    if (effects.slide) {
      $(li).find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000');
    }
    else $(li).find('ul:first').css('display', 'none');

    // If children are closed automatically, find and close them now.
    if (effects.children) {
      if (effects.slide) {
        $(li).find('li.expanded').find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000');
      }
      else $(li).find('li.expanded').find('ul:first').css('display', 'none');

      $(li).find('li.expanded').removeClass('expanded').addClass('collapsed')
    }

    $(li).removeClass('expanded').addClass('collapsed');
  }

  // Otherwise, expand it.
  else {
    if (effects.slide) {
      $(li).find('ul:first').animate({height: 'show', opacity: 'show'}, '1000');
    }
    else $(li).find('ul:first').css('display', 'block');
    $(li).removeClass('collapsed').addClass('expanded');

    // If the siblings effect is on, close all sibling menus.
    if (effects.siblings) {
      var id = $(li).find('a:first').attr('id');

      // Siblings are all open menus that are neither parents nor children of this menu.
      $(li).find('li').addClass('own-children-temp');
	  
      // If the relativity option is on, select only the siblings that have the same parent
      if (effects.relativity) {
        var siblings = $(li).parent().find('li.expanded').not('.own-children-temp').not(':has(#' + id + ')');
      }
      // Otherwise, select all menus of the same level
      else {
        var siblings = $('ul.menu li.expanded').not('.own-children-temp').not(':has(#' + id + ')');
      }

      // If children should not get closed automatically...
      if (!effects.children) {
        // Remove items that are currently hidden from view (do not close these).
        $('li.collapsed li.expanded').addClass('sibling-children-temp');
        // Only close the top-most open sibling, not its children.
        $(siblings).find('li.expanded').addClass('sibling-children-temp');
        siblings = $(siblings).not('.sibling-children-temp');
      }

      $('.own-children-temp, .sibling-children-temp').removeClass('own-children-temp').removeClass('sibling-children-temp');

      if (effects.slide) {
        $(siblings).find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000');
      }
      else $(siblings).find('ul:first').css('display', 'none');

      $(siblings).removeClass('expanded').addClass('collapsed');
    }
  }

  // Save the current state of the menus in the cookie.
  Drupal.dhtmlMenu.cookieSet();
}

/**
 * Reads the dhtml_menu cookie.
 */
Drupal.dhtmlMenu.cookieGet = function() {
  var c = /dhtml_menu=(.*?)(;|$)/.exec(document.cookie);
  if (c) {
    return c[1];
  }
  else return '';
}

/**
 * Saves the dhtml_menu cooki.
 */
Drupal.dhtmlMenu.cookieSet = function() {
  var expanded = new Array();
  $('li.expanded').each(function() {
    expanded.push($(this).find('a:first').attr('id').substr(5));
  });
  document.cookie = 'dhtml_menu=' + expanded.join(',') + ';path=/';
}

;
/* $Id: auto_image_handling.js,v 1.1.4.33 2010/09/22 21:07:57 snpower Exp $ */

// Image Node Auto-Format with Auto Image Grouping.
// Original version by Steve McKenzie.
// Altered by Stella Power for jQuery version.

function parse_url(url, param) {
  param = param.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
  url = url.replace(/&amp;/, "&");
  var regexS = "[\\?&]"+param+"=([^&#]*)";
  var regex = new RegExp(regexS);
  var results = regex.exec(url);
  if (results === null) {
    return "";
  }
  else {
    return results[1];
  }
}


function lightbox2_init_triggers(classes, rel_type, custom_class) {
  if (classes == '' || rel_type == 0) {
    return;
  }
  var settings = Drupal.settings.lightbox2;

  var link_target  = "";
  if (settings.node_link_target !== 0) {
    link_target = 'target="'+ settings.node_link_target +'"';
  }

  $("a:has("+classes+")").each(function(i) {

    if ((!settings.disable_for_gallery_lists && !settings.disable_for_acidfree_gallery_lists) || (!$(this).parents("td.giAlbumCell").attr("class") && !$(this).parents(".galleries").length && !$(this).parents(".acidfree-folder").length && !$(this).parents(".acidfree-list").length) || ($(this).parents(".galleries").length && !settings.disable_for_gallery_lists) || (($(this).parents(".acidfree-folder").length || $(this).parents(".acidfree-list").length) && !settings.disable_for_acidfree_gallery_lists)) {

      var child = $(this).find(classes);

      // Ensure the child has a class attribute we can work with.
      if ($(child).attr("class") && !$(this).parents("div.acidfree-video").length) {

        // Set the alt text.
        var alt = $(child).attr("alt");
        if (!alt) {
          alt = "";
        }

        // Set the image node link text.
        var link_text = settings.node_link_text;
        var download_link_text = settings.download_link_text;
        var rewrite = 1;

        // Set the rel attribute.
        var rel = "lightbox";
        var lightframe = false;
        if (rel_type == "lightframe_ungrouped") {
          rel = "lightframe[]";
          lightframe = true;
        }
        else if (rel_type == "lightframe") {
          lightframe = true;
        }
        else if (rel_type == "lightbox_ungrouped") {
          rel = "lightbox[]";
        }
        if (rel_type != "lightbox_ungrouped" && rel_type != "lightframe_ungrouped") {
          rel = rel_type + "[" + $(child).attr("class") + "]";
        }

        // Set the basic href attribute - need to ensure there's no language
        // string (e.g. /en) prepended to the URL.
        var id = null;
        var href = $(child).attr("src");
        var download = null;
        var orig_href = $(this).attr("href");
        var pattern = new RegExp(settings.file_path);
        if (orig_href.match(pattern)) {
          var lang_pattern = new RegExp(Drupal.settings.basePath + "\\w\\w\\/");
          orig_href = orig_href.replace(lang_pattern, Drupal.settings.basePath);
        }
        var frame_href = orig_href;

        // Handle flickr images.
        if ($(child).attr("class").match("flickr-photo-img") ||
          $(child).attr("class").match("flickr-photoset-img")) {
          href = $(child).attr("src").replace("_s.", ".").replace("_t.", ".").replace("_m.", ".").replace("_b.", ".");
          if (rel_type != "lightbox_ungrouped" && rel_type != "lightframe_ungrouped") {
            rel = rel_type + "[flickr]";
            if ($(child).parents("div.block-flickr").attr("class")) {
              id = $(child).parents("div.block-flickr").attr("id");
              rel = rel_type + "["+ id +"]";
            }
          }
          download = href;
        }

        // Handle "image-img_assist_custom" images.
        else if ($(child).filter("img[class*=img_assist_custom]").size()) {
          // Image assist uses "+" signs for spaces which doesn't work for
          // normal links.
          if (settings.display_image_size != "original") {
            orig_href = orig_href.replace(/\+/, " ");
            href = $(child).attr("src").replace(new RegExp("\\.img_assist_custom-[0-9]+x[0-9]+"), ((settings.display_image_size === "")?settings.display_image_size:"."+ settings.display_image_size));
            if (rel_type != "lightbox_ungrouped" && rel_type != "lightframe_ungrouped") {
              rel = rel_type + "[node_images]";
            }
            if (lightframe) {
              frame_href = orig_href + "/lightbox2";
            }
          }
          else {
            rewrite = 0;
          }
        }

        // Handle "inline" images.
        else if ($(child).attr("class").match("inline")) {
          href = orig_href;
        }

        // Handle gallery2 block images.
        else if ($(child).attr("class").match("ImageFrame_image") || $(child).attr("class").match("ImageFrame_none")) {
          var thumb_id = parse_url(href, "g2_itemId");
          var new_id = parse_url(orig_href, "g2_itemId");
          if (new_id && thumb_id) {
            var g2pattern = new RegExp("g2_itemId="+thumb_id);
            var replacement = "g2_itemId="+ new_id;
            href = href.replace(g2pattern, replacement);
          }
          rel = rel_type + "[gallery2]";
          if ($(child).parents("div.block-gallery").attr("class")) {
            id = $(child).parents("div.block-gallery").attr("id");
            rel = rel_type + "["+ id +"]";
          }
          download = href;
        }


        // Set the href attribute.
        else if (settings.image_node_sizes != '()' && !custom_class) {
          if (settings.display_image_size != "original") {
            href = $(child).attr("src").replace(new RegExp(settings.image_node_sizes), ((settings.display_image_size === "")?settings.display_image_size:"."+ settings.display_image_size)).replace(/(image\/view\/\d+)(\/[\w\-]*)/, ((settings.display_image_size === "")?"$1/_original":"$1/"+ settings.display_image_size));
            if (rel_type != "lightbox_ungrouped" && rel_type != "lightframe_ungrouped") {
              rel = rel_type + "[node_images]";
              if ($(child).parents("div.block-multiblock,div.block-image").attr("class")) {
                id = $(child).parents("div.block-multiblock,div.block-image").attr("id");
                rel = rel_type + "["+ id +"]";
              }
            }
            download = $(child).attr("src").replace(new RegExp(settings.image_node_sizes), "").replace(/(image\/view\/\d+)(\/[\w\-]*)/, "$1/_original");
            if (lightframe) {
              frame_href = orig_href + "/lightbox2";
            }
          }
          else {
            rewrite = 0;
          }
        }

        // Modify the image url.
        var img_title = $(child).attr("title");
        if (!img_title) {
          img_title = $(this).attr("title");
          if (!img_title) {
            img_title = $(child).attr("alt");
          }
          $(child).attr({title: img_title});
        }
        if (lightframe) {
          href = frame_href;
        }
        if (rewrite) {
          if (!custom_class) {
            var title_link = "";
            if (link_text.length) {
              title_link = "<br /><br /><a href=\"" + orig_href + "\" id=\"lightbox2-node-link-text\" "+ link_target +" >"+ link_text + "</a>";
            }
            if (download_link_text.length && download) {
              title_link = title_link + " - <a href=\"" + download + "\" id=\"lightbox2-download-link-text\" target=\"_blank\">" + download_link_text + "</a>";
            }
            rel = rel + "[" + img_title + title_link + "]";
            $(this).attr({
              rel: rel,
              href: href
            });
          }
          else {
            if (rel_type != "lightbox_ungrouped" && rel_type != "lightframe_ungrouped") {
              rel = rel_type + "[" + $(child).attr("class") + "]";
              if ($(child).parents("div.block-image").attr("class")) {
                id = $(child).parents("div.block-image").attr("id");
                rel = rel_type + "["+ id +"]";
              }
            }
            rel = rel + "[" + img_title + "]";
            $(this).attr({
              rel: rel,
              href: orig_href
            });
          }
        }
      }
    }

  });
}

function lightbox2_init_acidfree_video() {
  var settings = Drupal.settings.lightbox2;

  var link_target  = "";
  if (settings.node_link_target !== 0) {
    link_target = 'target="'+ settings.node_link_target +'"';
  }

  var link_text = settings.node_link_text;
  var rel = "lightframe";

  $("div.acidfree-video a").each(function(i) {

    if (!settings.disable_for_acidfree_gallery_lists || (!$(this).parents(".acidfree-folder").length && !$(this).parents(".acidfree-list").length) || (($(this).parents(".acidfree-folder").length || $(this).parents(".acidfree-list").length) && !settings.disable_for_acidfree_gallery_lists)) {
      var orig_href = $(this).attr("href");
      var href = orig_href + "/lightframevideo";
      var title = $(this).attr("title");
      var title_link = "";
      if (link_text.length) {
        title_link = "<br /><a href=\"" + orig_href + "\" id=\"lightbox2-node-link-text\" "+ link_target +" >"+ link_text + "</a>";
      }

      $(this).attr({
        rel: rel,
        title: title + title_link,
        href: href
      });
    }
  });
}

function lightbox2_image_nodes() {

  var settings = Drupal.settings.lightbox2;

  // Don't do it on the image assist popup selection screen.
  var img_assist = document.getElementById("img_assist_thumbs");
  if (!img_assist) {

    // Select the enabled image types.
    lightbox2_init_triggers(settings.trigger_lightbox_classes, "lightbox_ungrouped");
    lightbox2_init_triggers(settings.custom_trigger_classes, settings.custom_class_handler, true);
    lightbox2_init_triggers(settings.trigger_lightbox_group_classes, "lightbox");
    lightbox2_init_triggers(settings.trigger_slideshow_classes, "lightshow");
    lightbox2_init_triggers(settings.trigger_lightframe_classes, "lightframe_ungrouped");
    lightbox2_init_triggers(settings.trigger_lightframe_group_classes, "lightframe");
    if (settings.enable_acidfree_videos) {
      lightbox2_init_acidfree_video();
    }

  }
}


Drupal.behaviors.initAutoLightbox = function (context) {
  lightbox2_image_nodes();
};

;
/* $Id: lightbox.js,v 1.5.2.6.2.136 2010/09/24 08:39:40 snpower Exp $ */

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

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

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

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

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


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

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

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

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

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

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

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

  },

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

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

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

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

    Lightbox.isPaused = !Lightbox.autoStart;

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

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


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

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

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

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

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

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

      // Handle grouped items.
      else {

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    var s = Drupal.settings.lightbox2;

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

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

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

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

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

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

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

    // All other types of content.
    else {

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

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

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

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


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

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

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

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

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

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

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

  preloadNeighborImages: function() {

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

  },

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


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

    var xScroll, yScroll;

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

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

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

  getPageSize : function() {

    var xScroll, yScroll;

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

    var windowWidth, windowHeight;

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


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


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


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

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

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

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


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

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

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

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

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

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

};

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

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

;
/*
 * jQuery Nivo Slider v2.5.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2011, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * March 2010
 */

(function($){var NivoSlider=function(element,options){var settings=$.extend({},$.fn.nivoSlider.defaults,options);var vars={currentSlide:0,currentImage:'',totalSlides:0,randAnim:'',running:false,paused:false,stop:false};var slider=$(element);slider.data('nivo:vars',vars);slider.css('position','relative');slider.addClass('nivoSlider');var kids=slider.children();kids.each(function(){var child=$(this);var link='';if(!child.is('img')){if(child.is('a')){child.addClass('nivo-imageLink');link=child;}
child=child.find('img:first');}
var childWidth=child.width();if(childWidth==0)childWidth=child.attr('width');var childHeight=child.height();if(childHeight==0)childHeight=child.attr('height');if(childWidth>slider.width()){slider.width(childWidth);}
if(childHeight>slider.height()){slider.height(childHeight);}
if(link!=''){link.css('display','none');}
child.css('display','none');vars.totalSlides++;});if(settings.startSlide>0){if(settings.startSlide>=vars.totalSlides)settings.startSlide=vars.totalSlides-1;vars.currentSlide=settings.startSlide;}
if($(kids[vars.currentSlide]).is('img')){vars.currentImage=$(kids[vars.currentSlide]);}else{vars.currentImage=$(kids[vars.currentSlide]).find('img:first');}
if($(kids[vars.currentSlide]).is('a')){$(kids[vars.currentSlide]).css('display','block');}
slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');slider.append($('<div class="nivo-caption"><p></p></div>').css({display:'none',opacity:settings.captionOpacity}));var processCaption=function(settings){var nivoCaption=$('.nivo-caption',slider);if(vars.currentImage.attr('title')!=''&&vars.currentImage.attr('title')!=undefined){var title=vars.currentImage.attr('title');if(title.substr(0,1)=='#')title=$(title).html();if(nivoCaption.css('display')=='block'){nivoCaption.find('p').fadeOut(settings.animSpeed,function(){$(this).html(title);$(this).fadeIn(settings.animSpeed);});}else{nivoCaption.find('p').html(title);}
nivoCaption.fadeIn(settings.animSpeed);}else{nivoCaption.fadeOut(settings.animSpeed);}}
processCaption(settings);var timer=0;if(!settings.manualAdvance&&kids.length>1){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);}
if(settings.directionNav){slider.append('<div class="nivo-directionNav"><a class="nivo-prevNav">'+settings.prevText+'</a><a class="nivo-nextNav">'+settings.nextText+'</a></div>');if(settings.directionNavHide){$('.nivo-directionNav',slider).hide();slider.hover(function(){$('.nivo-directionNav',slider).show();},function(){$('.nivo-directionNav',slider).hide();});}
$('a.nivo-prevNav',slider).live('click',function(){if(vars.running)return false;clearInterval(timer);timer='';vars.currentSlide-=2;nivoRun(slider,kids,settings,'prev');});$('a.nivo-nextNav',slider).live('click',function(){if(vars.running)return false;clearInterval(timer);timer='';nivoRun(slider,kids,settings,'next');});}
if(settings.controlNav){var nivoControl=$('<div class="nivo-controlNav"></div>');slider.append(nivoControl);for(var i=0;i<kids.length;i++){if(settings.controlNavThumbs){var child=kids.eq(i);if(!child.is('img')){child=child.find('img:first');}
if(settings.controlNavThumbsFromRel){nivoControl.append('<a class="nivo-control" rel="'+i+'"><img src="'+child.attr('rel')+'" alt="" /></a>');}else{nivoControl.append('<a class="nivo-control" rel="'+i+'"><img src="'+child.attr('src').replace(settings.controlNavThumbsSearch,settings.controlNavThumbsReplace)+'" alt="" /></a>');}}else{nivoControl.append('<a class="nivo-control" rel="'+i+'">'+(i+1)+'</a>');}}
$('.nivo-controlNav a:eq('+vars.currentSlide+')',slider).addClass('active');$('.nivo-controlNav a',slider).live('click',function(){if(vars.running)return false;if($(this).hasClass('active'))return false;clearInterval(timer);timer='';slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');vars.currentSlide=$(this).attr('rel')-1;nivoRun(slider,kids,settings,'control');});}
if(settings.keyboardNav){$(window).keypress(function(event){if(event.keyCode=='37'){if(vars.running)return false;clearInterval(timer);timer='';vars.currentSlide-=2;nivoRun(slider,kids,settings,'prev');}
if(event.keyCode=='39'){if(vars.running)return false;clearInterval(timer);timer='';nivoRun(slider,kids,settings,'next');}});}
if(settings.pauseOnHover){slider.hover(function(){vars.paused=true;clearInterval(timer);timer='';},function(){vars.paused=false;if(timer==''&&!settings.manualAdvance){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);}});}
slider.bind('nivo:animFinished',function(){vars.running=false;$(kids).each(function(){if($(this).is('a')){$(this).css('display','none');}});if($(kids[vars.currentSlide]).is('a')){$(kids[vars.currentSlide]).css('display','block');}
if(timer==''&&!vars.paused&&!settings.manualAdvance){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);}
settings.afterChange.call(this);});var createSlices=function(slider,settings,vars){for(var i=0;i<settings.slices;i++){var sliceWidth=Math.round(slider.width()/settings.slices);if(i==settings.slices-1){slider.append($('<div class="nivo-slice"></div>').css({left:(sliceWidth*i)+'px',width:(slider.width()-(sliceWidth*i))+'px',height:'0px',opacity:'0',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((sliceWidth+(i*sliceWidth))-sliceWidth)+'px 0%'}));}else{slider.append($('<div class="nivo-slice"></div>').css({left:(sliceWidth*i)+'px',width:sliceWidth+'px',height:'0px',opacity:'0',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((sliceWidth+(i*sliceWidth))-sliceWidth)+'px 0%'}));}}}
var createBoxes=function(slider,settings,vars){var boxWidth=Math.round(slider.width()/settings.boxCols);var boxHeight=Math.round(slider.height()/settings.boxRows);for(var rows=0;rows<settings.boxRows;rows++){for(var cols=0;cols<settings.boxCols;cols++){if(cols==settings.boxCols-1){slider.append($('<div class="nivo-box"></div>').css({opacity:0,left:(boxWidth*cols)+'px',top:(boxHeight*rows)+'px',width:(slider.width()-(boxWidth*cols))+'px',height:boxHeight+'px',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((boxWidth+(cols*boxWidth))-boxWidth)+'px -'+((boxHeight+(rows*boxHeight))-boxHeight)+'px'}));}else{slider.append($('<div class="nivo-box"></div>').css({opacity:0,left:(boxWidth*cols)+'px',top:(boxHeight*rows)+'px',width:boxWidth+'px',height:boxHeight+'px',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((boxWidth+(cols*boxWidth))-boxWidth)+'px -'+((boxHeight+(rows*boxHeight))-boxHeight)+'px'}));}}}}
var nivoRun=function(slider,kids,settings,nudge){var vars=slider.data('nivo:vars');if(vars&&(vars.currentSlide==vars.totalSlides-1)){settings.lastSlide.call(this);}
if((!vars||vars.stop)&&!nudge)return false;settings.beforeChange.call(this);if(!nudge){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}else{if(nudge=='prev'){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}
if(nudge=='next'){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}}
vars.currentSlide++;if(vars.currentSlide==vars.totalSlides){vars.currentSlide=0;settings.slideshowEnd.call(this);}
if(vars.currentSlide<0)vars.currentSlide=(vars.totalSlides-1);if($(kids[vars.currentSlide]).is('img')){vars.currentImage=$(kids[vars.currentSlide]);}else{vars.currentImage=$(kids[vars.currentSlide]).find('img:first');}
if(settings.controlNav){$('.nivo-controlNav a',slider).removeClass('active');$('.nivo-controlNav a:eq('+vars.currentSlide+')',slider).addClass('active');}
processCaption(settings);$('.nivo-slice',slider).remove();$('.nivo-box',slider).remove();if(settings.effect=='random'){var anims=new Array('sliceDownRight','sliceDownLeft','sliceUpRight','sliceUpLeft','sliceUpDown','sliceUpDownLeft','fold','fade','boxRandom','boxRain','boxRainReverse','boxRainGrow','boxRainGrowReverse');vars.randAnim=anims[Math.floor(Math.random()*(anims.length+1))];if(vars.randAnim==undefined)vars.randAnim='fade';}
if(settings.effect.indexOf(',')!=-1){var anims=settings.effect.split(',');vars.randAnim=anims[Math.floor(Math.random()*(anims.length))];if(vars.randAnim==undefined)vars.randAnim='fade';}
vars.running=true;if(settings.effect=='sliceDown'||settings.effect=='sliceDownRight'||vars.randAnim=='sliceDownRight'||settings.effect=='sliceDownLeft'||vars.randAnim=='sliceDownLeft'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;var slices=$('.nivo-slice',slider);if(settings.effect=='sliceDownLeft'||vars.randAnim=='sliceDownLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);slice.css({'top':'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=50;i++;});}
else if(settings.effect=='sliceUp'||settings.effect=='sliceUpRight'||vars.randAnim=='sliceUpRight'||settings.effect=='sliceUpLeft'||vars.randAnim=='sliceUpLeft'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;var slices=$('.nivo-slice',slider);if(settings.effect=='sliceUpLeft'||vars.randAnim=='sliceUpLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);slice.css({'bottom':'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=50;i++;});}
else if(settings.effect=='sliceUpDown'||settings.effect=='sliceUpDownRight'||vars.randAnim=='sliceUpDown'||settings.effect=='sliceUpDownLeft'||vars.randAnim=='sliceUpDownLeft'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;var v=0;var slices=$('.nivo-slice',slider);if(settings.effect=='sliceUpDownLeft'||vars.randAnim=='sliceUpDownLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);if(i==0){slice.css('top','0px');i++;}else{slice.css('bottom','0px');i=0;}
if(v==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=50;v++;});}
else if(settings.effect=='fold'||vars.randAnim=='fold'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;$('.nivo-slice',slider).each(function(){var slice=$(this);var origWidth=slice.width();slice.css({top:'0px',height:'100%',width:'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({width:origWidth,opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({width:origWidth,opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=50;i++;});}
else if(settings.effect=='fade'||vars.randAnim=='fade'){createSlices(slider,settings,vars);var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':slider.width()+'px'});firstSlice.animate({opacity:'1.0'},(settings.animSpeed*2),'',function(){slider.trigger('nivo:animFinished');});}
else if(settings.effect=='slideInRight'||vars.randAnim=='slideInRight'){createSlices(slider,settings,vars);var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':'0px','opacity':'1'});firstSlice.animate({width:slider.width()+'px'},(settings.animSpeed*2),'',function(){slider.trigger('nivo:animFinished');});}
else if(settings.effect=='slideInLeft'||vars.randAnim=='slideInLeft'){createSlices(slider,settings,vars);var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':'0px','opacity':'1','left':'','right':'0px'});firstSlice.animate({width:slider.width()+'px'},(settings.animSpeed*2),'',function(){firstSlice.css({'left':'0px','right':''});slider.trigger('nivo:animFinished');});}
else if(settings.effect=='boxRandom'||vars.randAnim=='boxRandom'){createBoxes(slider,settings,vars);var totalBoxes=settings.boxCols*settings.boxRows;var i=0;var timeBuff=0;var boxes=shuffle($('.nivo-box',slider));boxes.each(function(){var box=$(this);if(i==totalBoxes-1){setTimeout(function(){box.animate({opacity:'1'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){box.animate({opacity:'1'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=20;i++;});}
else if(settings.effect=='boxRain'||vars.randAnim=='boxRain'||settings.effect=='boxRainReverse'||vars.randAnim=='boxRainReverse'||settings.effect=='boxRainGrow'||vars.randAnim=='boxRainGrow'||settings.effect=='boxRainGrowReverse'||vars.randAnim=='boxRainGrowReverse'){createBoxes(slider,settings,vars);var totalBoxes=settings.boxCols*settings.boxRows;var i=0;var timeBuff=0;var rowIndex=0;var colIndex=0;var box2Darr=new Array();box2Darr[rowIndex]=new Array();var boxes=$('.nivo-box',slider);if(settings.effect=='boxRainReverse'||vars.randAnim=='boxRainReverse'||settings.effect=='boxRainGrowReverse'||vars.randAnim=='boxRainGrowReverse'){boxes=$('.nivo-box',slider)._reverse();}
boxes.each(function(){box2Darr[rowIndex][colIndex]=$(this);colIndex++;if(colIndex==settings.boxCols){rowIndex++;colIndex=0;box2Darr[rowIndex]=new Array();}});for(var cols=0;cols<(settings.boxCols*2);cols++){var prevCol=cols;for(var rows=0;rows<settings.boxRows;rows++){if(prevCol>=0&&prevCol<settings.boxCols){(function(row,col,time,i,totalBoxes){var box=$(box2Darr[row][col]);var w=box.width();var h=box.height();if(settings.effect=='boxRainGrow'||vars.randAnim=='boxRainGrow'||settings.effect=='boxRainGrowReverse'||vars.randAnim=='boxRainGrowReverse'){box.width(0).height(0);}
if(i==totalBoxes-1){setTimeout(function(){box.animate({opacity:'1',width:w,height:h},settings.animSpeed/1.3,'',function(){slider.trigger('nivo:animFinished');});},(100+time));}else{setTimeout(function(){box.animate({opacity:'1',width:w,height:h},settings.animSpeed/1.3);},(100+time));}})(rows,prevCol,timeBuff,i,totalBoxes);i++;}
prevCol--;}
timeBuff+=100;}}}
var shuffle=function(arr){for(var j,x,i=arr.length;i;j=parseInt(Math.random()*i),x=arr[--i],arr[i]=arr[j],arr[j]=x);return arr;}
var trace=function(msg){if(this.console&&typeof console.log!="undefined")
console.log(msg);}
this.stop=function(){if(!$(element).data('nivo:vars').stop){$(element).data('nivo:vars').stop=true;trace('Stop Slider');}}
this.start=function(){if($(element).data('nivo:vars').stop){$(element).data('nivo:vars').stop=false;trace('Start Slider');}}
settings.afterLoad.call(this);return this;};$.fn.nivoSlider=function(options){return this.each(function(key,value){var element=$(this);if(element.data('nivoslider'))return element.data('nivoslider');var nivoslider=new NivoSlider(this,options);element.data('nivoslider',nivoslider);});};$.fn.nivoSlider.defaults={effect:'random',slices:15,boxCols:8,boxRows:4,animSpeed:500,pauseTime:3000,startSlide:0,directionNav:true,directionNavHide:true,controlNav:true,controlNavThumbs:false,controlNavThumbsFromRel:false,controlNavThumbsSearch:'.jpg',controlNavThumbsReplace:'_thumb.jpg',keyboardNav:true,pauseOnHover:true,manualAdvance:false,captionOpacity:0.8,prevText:'Prev',nextText:'Next',beforeChange:function(){},afterChange:function(){},slideshowEnd:function(){},lastSlide:function(){},afterLoad:function(){}};$.fn._reverse=[].reverse;})(jQuery);;
// $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];

    // Callbacks need to be converted from a string to an actual function.
    for (var optionKey in options) {
      if (optionKey.match(/Callback$/)) {
        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.
    var $jcarousel = $(options.selector, context).jcarousel(options).parents('.jcarousel-container:first').parent();
  }
};

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);
};

/**
 * 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);
;
/*!
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version ${Version}
 */

var Cufon = (function() {

	var api = function() {
		return api.replace.apply(null, arguments);
	};

	var DOM = api.DOM = {

		ready: (function() {

			var complete = false, readyStatus = { loaded: 1, complete: 1 };

			var queue = [], perform = function() {
				if (complete) return;
				complete = true;
				for (var fn; fn = queue.shift(); fn());
			};

			// Gecko, Opera, WebKit r26101+

			if (document.addEventListener) {
				document.addEventListener('DOMContentLoaded', perform, false);
				window.addEventListener('pageshow', perform, false); // For cached Gecko pages
			}

			// Old WebKit, Internet Explorer

			if (!window.opera && document.readyState) (function() {
				readyStatus[document.readyState] ? perform() : setTimeout(arguments.callee, 10);
			})();

			// Internet Explorer

			if (document.readyState && document.createStyleSheet) (function() {
				try {
					document.body.doScroll('left');
					perform();
				}
				catch (e) {
					setTimeout(arguments.callee, 1);
				}
			})();

			addEvent(window, 'load', perform); // Fallback

			return function(listener) {
				if (!arguments.length) perform();
				else complete ? listener() : queue.push(listener);
			};

		})(),

		root: function() {
			return document.documentElement || document.body;
		}

	};

	var CSS = api.CSS = {

		Size: function(value, base) {

			this.value = parseFloat(value);
			this.unit = String(value).match(/[a-z%]*$/)[0] || 'px';

			this.convert = function(value) {
				return value / base * this.value;
			};

			this.convertFrom = function(value) {
				return value / this.value * base;
			};

			this.toString = function() {
				return this.value + this.unit;
			};

		},

		addClass: function(el, className) {
			var current = el.className;
			el.className = current + (current && ' ') + className;
			return el;
		},

		color: cached(function(value) {
			var parsed = {};
			parsed.color = value.replace(/^rgba\((.*?),\s*([\d.]+)\)/, function($0, $1, $2) {
				parsed.opacity = parseFloat($2);
				return 'rgb(' + $1 + ')';
			});
			return parsed;
		}),

		// has no direct CSS equivalent.
		// @see http://msdn.microsoft.com/en-us/library/system.windows.fontstretches.aspx
		fontStretch: cached(function(value) {
			if (typeof value == 'number') return value;
			if (/%$/.test(value)) return parseFloat(value) / 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
			}[value] || 1;
		}),

		getStyle: function(el) {
			var view = document.defaultView;
			if (view && view.getComputedStyle) return new Style(view.getComputedStyle(el, null));
			if (el.currentStyle) return new Style(el.currentStyle);
			return new Style(el.style);
		},

		gradient: cached(function(value) {
			var gradient = {
				id: value,
				type: value.match(/^-([a-z]+)-gradient\(/)[1],
				stops: []
			}, colors = value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);
			for (var i = 0, l = colors.length, stop; i < l; ++i) {
				stop = colors[i].split('=', 2).reverse();
				gradient.stops.push([ stop[1] || i / (l - 1), stop[0] ]);
			}
			return gradient;
		}),

		quotedList: cached(function(value) {
			// doesn't work properly with empty quoted strings (""), but
			// it's not worth the extra code.
			var list = [], re = /\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g, match;
			while (match = re.exec(value)) list.push(match[3] || match[1]);
			return list;
		}),

		recognizesMedia: cached(function(media) {
			var el = document.createElement('style'), sheet, container, supported;
			el.type = 'text/css';
			el.media = media;
			try { // this is cached anyway
				el.appendChild(document.createTextNode('/**/'));
			} catch (e) {}
			container = elementsByTagName('head')[0];
			container.insertBefore(el, container.firstChild);
			sheet = (el.sheet || el.styleSheet);
			supported = sheet && !sheet.disabled;
			container.removeChild(el);
			return supported;
		}),

		removeClass: function(el, className) {
			var re = RegExp('(?:^|\\s+)' + className +  '(?=\\s|$)', 'g');
			el.className = el.className.replace(re, '');
			return el;
		},

		supports: function(property, value) {
			var checker = document.createElement('span').style;
			if (checker[property] === undefined) return false;
			checker[property] = value;
			return checker[property] === value;
		},

		textAlign: function(word, style, position, wordCount) {
			if (style.get('textAlign') == 'right') {
				if (position > 0) word = ' ' + word;
			}
			else if (position < wordCount - 1) word += ' ';
			return word;
		},

		textShadow: cached(function(value) {
			if (value == 'none') return null;
			var shadows = [], currentShadow = {}, result, offCount = 0;
			var re = /(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;
			while (result = re.exec(value)) {
				if (result[0] == ',') {
					shadows.push(currentShadow);
					currentShadow = {};
					offCount = 0;
				}
				else if (result[1]) {
					currentShadow.color = result[1];
				}
				else {
					currentShadow[[ 'offX', 'offY', 'blur' ][offCount++]] = result[2];
				}
			}
			shadows.push(currentShadow);
			return shadows;
		}),

		textTransform: (function() {
			var map = {
				uppercase: function(s) {
					return s.toUpperCase();
				},
				lowercase: function(s) {
					return s.toLowerCase();
				},
				capitalize: function(s) {
					return s.replace(/\b./g, function($0) {
						return $0.toUpperCase();
					});
				}
			};
			return function(text, style) {
				var transform = map[style.get('textTransform')];
				return transform ? transform(text) : text;
			};
		})(),

		whiteSpace: (function() {
			var ignore = {
				inline: 1,
				'inline-block': 1,
				'run-in': 1
			};
			var wsStart = /^\s+/, wsEnd = /\s+$/;
			return function(text, style, node, previousElement) {
				if (previousElement) {
					if (previousElement.nodeName.toLowerCase() == 'br') {
						text = text.replace(wsStart, '');
					}
				}
				if (ignore[style.get('display')]) return text;
				if (!node.previousSibling) text = text.replace(wsStart, '');
				if (!node.nextSibling) text = text.replace(wsEnd, '');
				return text;
			};
		})()

	};

	CSS.ready = (function() {

		// don't do anything in Safari 2 (it doesn't recognize any media type)
		var complete = !CSS.recognizesMedia('all'), hasLayout = false;

		var queue = [], perform = function() {
			complete = true;
			for (var fn; fn = queue.shift(); fn());
		};

		var links = elementsByTagName('link'), styles = elementsByTagName('style');

		function isContainerReady(el) {
			return el.disabled || isSheetReady(el.sheet, el.media || 'screen');
		}

		function isSheetReady(sheet, media) {
			// in Opera sheet.disabled is true when it's still loading,
			// even though link.disabled is false. they stay in sync if
			// set manually.
			if (!CSS.recognizesMedia(media || 'all')) return true;
			if (!sheet || sheet.disabled) return false;
			try {
				var rules = sheet.cssRules, rule;
				if (rules) {
					// needed for Safari 3 and Chrome 1.0.
					// in standards-conforming browsers cssRules contains @-rules.
					// Chrome 1.0 weirdness: rules[<number larger than .length - 1>]
					// returns the last rule, so a for loop is the only option.
					search: for (var i = 0, l = rules.length; rule = rules[i], i < l; ++i) {
						switch (rule.type) {
							case 2: // @charset
								break;
							case 3: // @import
								if (!isSheetReady(rule.styleSheet, rule.media.mediaText)) return false;
								break;
							default:
								// only @charset can precede @import
								break search;
						}
					}
				}
			}
			catch (e) {} // probably a style sheet from another domain
			return true;
		}

		function allStylesLoaded() {
			// Internet Explorer's style sheet model, there's no need to do anything
			if (document.createStyleSheet) return true;
			// standards-compliant browsers
			var el, i;
			for (i = 0; el = links[i]; ++i) {
				if (el.rel.toLowerCase() == 'stylesheet' && !isContainerReady(el)) return false;
			}
			for (i = 0; el = styles[i]; ++i) {
				if (!isContainerReady(el)) return false;
			}
			return true;
		}

		DOM.ready(function() {
			// getComputedStyle returns null in Gecko if used in an iframe with display: none
			if (!hasLayout) hasLayout = CSS.getStyle(document.body).isUsable();
			if (complete || (hasLayout && allStylesLoaded())) perform();
			else setTimeout(arguments.callee, 10);
		});

		return function(listener) {
			if (complete) listener();
			else queue.push(listener);
		};

	})();

	function Font(data) {

		var face = this.face = data.face, wordSeparators = {
			'\u0020': 1,
			'\u00a0': 1,
			'\u3000': 1
		};

		this.glyphs = data.glyphs;
		this.w = data.w;
		this.baseSize = parseInt(face['units-per-em'], 10);

		this.family = face['font-family'].toLowerCase();
		this.weight = face['font-weight'];
		this.style = face['font-style'] || 'normal';

		this.viewBox = (function () {
			var parts = face.bbox.split(/\s+/);
			var box = {
				minX: parseInt(parts[0], 10),
				minY: parseInt(parts[1], 10),
				maxX: parseInt(parts[2], 10),
				maxY: parseInt(parts[3], 10)
			};
			box.width = box.maxX - box.minX;
			box.height = box.maxY - box.minY;
			box.toString = function() {
				return [ this.minX, this.minY, this.width, this.height ].join(' ');
			};
			return box;
		})();

		this.ascent = -parseInt(face.ascent, 10);
		this.descent = -parseInt(face.descent, 10);

		this.height = -this.ascent + this.descent;

		this.spacing = function(chars, letterSpacing, wordSpacing) {
			var glyphs = this.glyphs, glyph, kerning, k,
				jumps = [], width = 0,
				i = -1, j = -1, chr;
			while (chr = chars[++i]) {
				glyph = glyphs[chr] || this.missingGlyph;
				if (!glyph) continue;
				if (kerning) {
					width -= k = kerning[chr] || 0;
					jumps[j] -= k;
				}
				width += jumps[++j] = ~~(glyph.w || this.w) + letterSpacing + (wordSeparators[chr] ? wordSpacing : 0);
				kerning = glyph.k;
			}
			jumps.total = width;
			return jumps;
		};

	}

	function FontFamily() {

		var styles = {}, mapping = {
			oblique: 'italic',
			italic: 'oblique'
		};

		this.add = function(font) {
			(styles[font.style] || (styles[font.style] = {}))[font.weight] = font;
		};

		this.get = function(style, weight) {
			var weights = styles[style] || styles[mapping[style]]
				|| styles.normal || styles.italic || styles.oblique;
			if (!weights) return null;
			// we don't have to worry about "bolder" and "lighter"
			// because IE's currentStyle returns a numeric value for it,
			// and other browsers use the computed value anyway
			weight = {
				normal: 400,
				bold: 700
			}[weight] || parseInt(weight, 10);
			if (weights[weight]) return weights[weight];
			// http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight
			// Gecko uses x99/x01 for lighter/bolder
			var up = {
				1: 1,
				99: 0
			}[weight % 100], alts = [], min, max;
			if (up === undefined) up = weight > 400;
			if (weight == 500) weight = 400;
			for (var alt in weights) {
				if (!hasOwnProperty(weights, alt)) continue;
				alt = parseInt(alt, 10);
				if (!min || alt < min) min = alt;
				if (!max || alt > max) max = alt;
				alts.push(alt);
			}
			if (weight < min) weight = min;
			if (weight > max) weight = max;
			alts.sort(function(a, b) {
				return (up
					? (a >= weight && b >= weight) ? a < b : a > b
					: (a <= weight && b <= weight) ? a > b : a < b) ? -1 : 1;
			});
			return weights[alts[0]];
		};

	}

	function HoverHandler() {

		function contains(node, anotherNode) {
			if (node.contains) return node.contains(anotherNode);
			return node.compareDocumentPosition(anotherNode) & 16;
		}

		function onOverOut(e) {
			var related = e.relatedTarget;
			if (!related || contains(this, related)) return;
			trigger(this, e.type == 'mouseover');
		}

		function onEnterLeave(e) {
			trigger(this, e.type == 'mouseenter');
		}

		function trigger(el, hoverState) {
			// A timeout is needed so that the event can actually "happen"
			// before replace is triggered. This ensures that styles are up
			// to date.
			setTimeout(function() {
				var options = sharedStorage.get(el).options;
				api.replace(el, hoverState ? merge(options, options.hover) : options, true);
			}, 10);
		}

		this.attach = function(el) {
			if (el.onmouseenter === undefined) {
				addEvent(el, 'mouseover', onOverOut);
				addEvent(el, 'mouseout', onOverOut);
			}
			else {
				addEvent(el, 'mouseenter', onEnterLeave);
				addEvent(el, 'mouseleave', onEnterLeave);
			}
		};

	}

	function ReplaceHistory() {

		var list = [], map = {};

		function filter(keys) {
			var values = [], key;
			for (var i = 0; key = keys[i]; ++i) values[i] = list[map[key]];
			return values;
		}

		this.add = function(key, args) {
			map[key] = list.push(args) - 1;
		};

		this.repeat = function() {
			var snapshot = arguments.length ? filter(arguments) : list, args;
			for (var i = 0; args = snapshot[i++];) api.replace(args[0], args[1], true);
		};

	}

	function Storage() {

		var map = {}, at = 0;

		function identify(el) {
			return el.cufid || (el.cufid = ++at);
		}

		this.get = function(el) {
			var id = identify(el);
			return map[id] || (map[id] = {});
		};

	}

	function Style(style) {

		var custom = {}, sizes = {};

		this.extend = function(styles) {
			for (var property in styles) {
				if (hasOwnProperty(styles, property)) custom[property] = styles[property];
			}
			return this;
		};

		this.get = function(property) {
			return custom[property] != undefined ? custom[property] : style[property];
		};

		this.getSize = function(property, base) {
			return sizes[property] || (sizes[property] = new CSS.Size(this.get(property), base));
		};

		this.isUsable = function() {
			return !!style;
		};

	}

	function addEvent(el, type, listener) {
		if (el.addEventListener) {
			el.addEventListener(type, listener, false);
		}
		else if (el.attachEvent) {
			el.attachEvent('on' + type, function() {
				return listener.call(el, window.event);
			});
		}
	}

	function attach(el, options) {
		var storage = sharedStorage.get(el);
		if (storage.options) return el;
		if (options.hover && options.hoverables[el.nodeName.toLowerCase()]) {
			hoverHandler.attach(el);
		}
		storage.options = options;
		return el;
	}

	function cached(fun) {
		var cache = {};
		return function(key) {
			if (!hasOwnProperty(cache, key)) cache[key] = fun.apply(null, arguments);
			return cache[key];
		};
	}

	function getFont(el, style) {
		var families = CSS.quotedList(style.get('fontFamily').toLowerCase()), family;
		for (var i = 0; family = families[i]; ++i) {
			if (fonts[family]) return fonts[family].get(style.get('fontStyle'), style.get('fontWeight'));
		}
		return null;
	}

	function elementsByTagName(query) {
		return document.getElementsByTagName(query);
	}

	function hasOwnProperty(obj, property) {
		return obj.hasOwnProperty(property);
	}

	function merge() {
		var merged = {}, arg, key;
		for (var i = 0, l = arguments.length; arg = arguments[i], i < l; ++i) {
			for (key in arg) {
				if (hasOwnProperty(arg, key)) merged[key] = arg[key];
			}
		}
		return merged;
	}

	function process(font, text, style, options, node, el) {
		var fragment = document.createDocumentFragment(), processed;
		if (text === '') return fragment;
		var separate = options.separate;
		var parts = text.split(separators[separate]), needsAligning = (separate == 'words');
		if (needsAligning && HAS_BROKEN_REGEXP) {
			// @todo figure out a better way to do this
			if (/^\s/.test(text)) parts.unshift('');
			if (/\s$/.test(text)) parts.push('');
		}
		for (var i = 0, l = parts.length; i < l; ++i) {
			processed = engines[options.engine](font,
				needsAligning ? CSS.textAlign(parts[i], style, i, l) : parts[i],
				style, options, node, el, i < l - 1);
			if (processed) fragment.appendChild(processed);
		}
		return fragment;
	}

	function replaceElement(el, options) {
		var name = el.nodeName.toLowerCase();
		if (options.ignore[name]) return;
		var replace = !options.textless[name];
		var style = CSS.getStyle(attach(el, options)).extend(options);
		var font = getFont(el, style), node, type, next, anchor, text, lastElement;
		if (!font) return;
		for (node = el.firstChild; node; node = next) {
			type = node.nodeType;
			next = node.nextSibling;
			if (replace && type == 3) {
				// Node.normalize() is broken in IE 6, 7, 8
				if (anchor) {
					anchor.appendData(node.data);
					el.removeChild(node);
				}
				else anchor = node;
				if (next) continue;
			}
			if (anchor) {
				el.replaceChild(process(font,
					CSS.whiteSpace(anchor.data, style, anchor, lastElement),
					style, options, node, el), anchor);
				anchor = null;
			}
			if (type == 1) {
				if (node.firstChild) {
					if (node.nodeName.toLowerCase() == 'cufon') {
						engines[options.engine](font, null, style, options, node, el);
					}
					else arguments.callee(node, options);
				}
				lastElement = node;
			}
		}
	}

	var HAS_BROKEN_REGEXP = ' '.split(/\s+/).length == 0;

	var sharedStorage = new Storage();
	var hoverHandler = new HoverHandler();
	var replaceHistory = new ReplaceHistory();
	var initialized = false;

	var engines = {}, fonts = {}, defaultOptions = {
		autoDetect: false,
		engine: null,
		//fontScale: 1,
		//fontScaling: false,
		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,
		//rotation: 0,
		//selectable: false,
		selector: (
				window.Sizzle
			||	(window.jQuery && function(query) { return jQuery(query); }) // avoid noConflict issues
			||	(window.dojo && dojo.query)
			||	(window.Ext && Ext.query)
			||	(window.YAHOO && YAHOO.util && YAHOO.util.Selector && YAHOO.util.Selector.query)
			||	(window.$$ && function(query) { return $$(query); })
			||	(window.$ && function(query) { return $(query); })
			||	(document.querySelectorAll && function(query) { return document.querySelectorAll(query); })
			||	elementsByTagName
		),
		separate: 'words', // 'none' and 'characters' are also accepted
		textless: {
			dl: 1,
			html: 1,
			ol: 1,
			table: 1,
			tbody: 1,
			thead: 1,
			tfoot: 1,
			tr: 1,
			ul: 1
		},
		textShadow: 'none'
	};

	var separators = {
		// The first pattern may cause unicode characters above
		// code point 255 to be removed in Safari 3.0. Luckily enough
		// Safari 3.0 does not include non-breaking spaces in \s, so
		// we can just use a simple alternative pattern.
		words: /\s/.test('\u00a0') ? /[^\S\u00a0]+/ : /\s+/,
		characters: '',
		none: /^/
	};

	api.now = function() {
		DOM.ready();
		return api;
	};

	api.refresh = function() {
		replaceHistory.repeat.apply(replaceHistory, arguments);
		return api;
	};

	api.registerEngine = function(id, engine) {
		if (!engine) return api;
		engines[id] = engine;
		return api.set('engine', id);
	};

	api.registerFont = function(data) {
		if (!data) return api;
		var font = new Font(data), family = font.family;
		if (!fonts[family]) fonts[family] = new FontFamily();
		fonts[family].add(font);
		return api.set('fontFamily', '"' + family + '"');
	};

	api.replace = function(elements, options, ignoreHistory) {
		options = merge(defaultOptions, options);
		if (!options.engine) return api; // there's no browser support so we'll just stop here
		if (!initialized) {
			CSS.addClass(DOM.root(), 'cufon-active cufon-loading');
			CSS.ready(function() {
				// fires before any replace() calls, but it doesn't really matter
				CSS.addClass(CSS.removeClass(DOM.root(), 'cufon-loading'), 'cufon-ready');
			});
			initialized = true;
		}
		if (options.hover) options.forceHitArea = true;
		if (options.autoDetect) delete options.fontFamily;
		if (typeof options.textShadow == 'string') {
			options.textShadow = CSS.textShadow(options.textShadow);
		}
		if (typeof options.color == 'string' && /^-/.test(options.color)) {
			options.textGradient = CSS.gradient(options.color);
		}
		else delete options.textGradient;
		if (!ignoreHistory) replaceHistory.add(elements, arguments);
		if (elements.nodeType || typeof elements == 'string') elements = [ elements ];
		CSS.ready(function() {
			for (var i = 0, l = elements.length; i < l; ++i) {
				var el = elements[i];
				if (typeof el == 'string') api.replace(options.selector(el), options, true);
				else replaceElement(el, options);
			}
		});
		return api;
	};

	api.set = function(option, value) {
		defaultOptions[option] = value;
		return api;
	};

	return api;

})();

Cufon.registerEngine('vml', (function() {

	var ns = document.namespaces;
	if (!ns) return;
	ns.add('cvml', 'urn:schemas-microsoft-com:vml');
	ns = null;

	var check = document.createElement('cvml:shape');
	check.style.behavior = 'url(#default#VML)';
	if (!check.coordsize) return; // VML isn't supported
	check = null;

	var HAS_BROKEN_LINEHEIGHT = (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:' +
			(HAS_BROKEN_LINEHEIGHT
				? 'middle'
				: 'text-bottom') +
			';}' +
			'cufon cufontext{position:absolute;left:-10000in;font-size:1px;}' +
			'a cufon{cursor:pointer}' + // ignore !important here
		'}' +
		'@media print{' +
			'cufon cufoncanvas{display:none;}' +
		'}' +
	'</style>').replace(/;/g, '!important;'));

	function getFontSizeInPixels(el, value) {
		return getSizeInPixels(el, /(?:em|ex|%)$|^[a-z-]+$/i.test(value) ? '1em' : value);
	}

	// Original by Dead Edwards.
	// Combined with getFontSizeInPixels it also works with relative units.
	function getSizeInPixels(el, value) {
		if (value === '0') return 0;
		if (/px$/i.test(value)) return parseFloat(value);
		var style = el.style.left, runtimeStyle = el.runtimeStyle.left;
		el.runtimeStyle.left = el.currentStyle.left;
		el.style.left = value.replace('%', 'em');
		var result = el.style.pixelLeft;
		el.style.left = style;
		el.runtimeStyle.left = runtimeStyle;
		return result;
	}

	function getSpacingValue(el, style, size, property) {
		var key = 'computed' + property, value = style[key];
		if (isNaN(value)) {
			value = style.get(property);
			style[key] = value = (value == 'normal') ? 0 : ~~size.convertFrom(getSizeInPixels(el, value));
		}
		return value;
	}

	var fills = {};

	function gradientFill(gradient) {
		var id = gradient.id;
		if (!fills[id]) {
			var stops = gradient.stops, fill = document.createElement('cvml:fill'), colors = [];
			fill.type = 'gradient';
			fill.angle = 180;
			fill.focus = '0';
			fill.method = 'sigma';
			fill.color = stops[0][1];
			for (var j = 1, k = stops.length - 1; j < k; ++j) {
				colors.push(stops[j][0] * 100 + '% ' + stops[j][1]);
			}
			fill.colors = colors.join(',');
			fill.color2 = stops[k][1];
			fills[id] = fill;
		}
		return fills[id];
	}

	return function(font, text, style, options, node, el, hasNext) {

		var redraw = (text === null);

		if (redraw) text = node.alt;

		var viewBox = font.viewBox;

		var size = style.computedFontSize || (style.computedFontSize = new Cufon.CSS.Size(getFontSizeInPixels(el, style.get('fontSize')) + 'px', font.baseSize));

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-vml';
			wrapper.alt = text;

			canvas = document.createElement('cufoncanvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}

			// ie6, for some reason, has trouble rendering the last VML element in the document.
			// we can work around this by injecting a dummy element where needed.
			// @todo find a better solution
			if (!hasNext) wrapper.appendChild(document.createElement('cvml:shape'));
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height), roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var minX = viewBox.minX, minY = viewBox.minY;

		cStyle.height = roundedHeight;
		cStyle.top = Math.round(size.convert(minY - font.ascent));
		cStyle.left = Math.round(size.convert(minX));

		wStyle.height = size.convert(font.height) + 'px';

		var color = style.get('color');
		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			getSpacingValue(el, style, size, 'letterSpacing'),
			getSpacingValue(el, style, size, 'wordSpacing')
		);

		if (!jumps.length) return null;

		var width = jumps.total;
		var fullWidth = -minX + width + (viewBox.width - jumps[jumps.length - 1]);

		var shapeWidth = size.convert(fullWidth * stretchFactor), roundedShapeWidth = Math.round(shapeWidth);

		var coordSize = fullWidth + ',' + viewBox.height, coordOrigin;
		var stretch = 'r' + coordSize + 'ns';

		var fill = options.textGradient && gradientFill(options.textGradient);

		var glyphs = font.glyphs, offsetX = 0;
		var shadows = options.textShadow;
		var i = -1, j = 0, chr;

		while (chr = chars[++i]) {

			var glyph = glyphs[chars[i]] || font.missingGlyph, shape;
			if (!glyph) continue;

			if (redraw) {
				// some glyphs may be missing so we can't use i
				shape = canvas.childNodes[j];
				while (shape.firstChild) shape.removeChild(shape.firstChild); // shadow, fill
			}
			else {
				shape = document.createElement('cvml:shape');
				canvas.appendChild(shape);
			}

			shape.stroked = 'f';
			shape.coordsize = coordSize;
			shape.coordorigin = coordOrigin = (minX - offsetX) + ',' + minY;
			shape.path = (glyph.d ? 'm' + glyph.d + 'xe' : '') + 'm' + coordOrigin + stretch;
			shape.fillcolor = color;

			if (fill) shape.appendChild(fill.cloneNode(false));

			// it's important to not set top/left or IE8 will grind to a halt
			var sStyle = shape.style;
			sStyle.width = roundedShapeWidth;
			sStyle.height = roundedHeight;

			if (shadows) {
				// due to the limitations of the VML shadow element there
				// can only be two visible shadows. opacity is shared
				// for all shadows.
				var shadow1 = shadows[0], shadow2 = shadows[1];
				var color1 = Cufon.CSS.color(shadow1.color), color2;
				var shadow = document.createElement('cvml:shadow');
				shadow.on = 't';
				shadow.color = color1.color;
				shadow.offset = shadow1.offX + ',' + shadow1.offY;
				if (shadow2) {
					color2 = Cufon.CSS.color(shadow2.color);
					shadow.type = 'double';
					shadow.color2 = color2.color;
					shadow.offset2 = shadow2.offX + ',' + shadow2.offY;
				}
				shadow.opacity = color1.opacity || (color2 && color2.opacity) || 1;
				shape.appendChild(shadow);
			}

			offsetX += jumps[j++];
		}

		// addresses flickering issues on :hover

		var cover = shape.nextSibling, coverFill, vStyle;

		if (options.forceHitArea) {

			if (!cover) {
				cover = document.createElement('cvml:rect');
				cover.stroked = 'f';
				cover.className = 'cufon-vml-cover';
				coverFill = document.createElement('cvml:fill');
				coverFill.opacity = 0;
				cover.appendChild(coverFill);
				canvas.appendChild(cover);
			}

			vStyle = cover.style;

			vStyle.width = roundedShapeWidth;
			vStyle.height = roundedHeight;

		}
		else if (cover) canvas.removeChild(cover);

		wStyle.width = Math.max(Math.ceil(size.convert(width * stretchFactor)), 0);

		if (HAS_BROKEN_LINEHEIGHT) {

			var yAdjust = style.computedYAdjust;

			if (yAdjust === undefined) {
				var lineHeight = style.get('lineHeight');
				if (lineHeight == 'normal') lineHeight = '1em';
				else if (!isNaN(lineHeight)) lineHeight += 'em'; // no unit
				style.computedYAdjust = yAdjust = 0.5 * (getSizeInPixels(el, lineHeight) - parseFloat(wStyle.height));
			}

			if (yAdjust) {
				wStyle.marginTop = Math.ceil(yAdjust) + 'px';
				wStyle.marginBottom = yAdjust + 'px';
			}

		}

		return wrapper;

	};

})());

Cufon.registerEngine('canvas', (function() {

	// Safari 2 doesn't support .apply() on native methods

	var check = document.createElement('canvas');
	if (!check || !check.getContext || !check.getContext.apply) return;
	check = null;

	var HAS_INLINE_BLOCK = Cufon.CSS.supports('display', 'inline-block');

	// Firefox 2 w/ non-strict doctype (almost standards mode)
	var HAS_BROKEN_LINEHEIGHT = !HAS_INLINE_BLOCK && (document.compatMode == 'BackCompat' || /frameset|transitional/i.test(document.doctype.publicId));

	var styleSheet = document.createElement('style');
	styleSheet.type = 'text/css';
	styleSheet.appendChild(document.createTextNode((
		'cufon{text-indent:0;}' +
		'@media screen,projection{' +
			'cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;' +
			(HAS_BROKEN_LINEHEIGHT
				? ''
				: 'font-size:1px;line-height:1px;') +
			'}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}' +
			(HAS_INLINE_BLOCK
				? 'cufon canvas{position:relative;}'
				: 'cufon canvas{position:absolute;}') +
		'}' +
		'@media print{' +
			'cufon{padding:0;}' + // Firefox 2
			'cufon canvas{display:none;}' +
		'}'
	).replace(/;/g, '!important;')));
	document.getElementsByTagName('head')[0].appendChild(styleSheet);

	function generateFromVML(path, context) {
		var atX = 0, atY = 0;
		var code = [], re = /([mrvxe])([^a-z]*)/g, match;
		generate: for (var i = 0; match = re.exec(path); ++i) {
			var c = match[2].split(',');
			switch (match[1]) {
				case 'v':
					code[i] = { m: 'bezierCurveTo', a: [ atX + ~~c[0], atY + ~~c[1], atX + ~~c[2], atY + ~~c[3], atX += ~~c[4], atY += ~~c[5] ] };
					break;
				case 'r':
					code[i] = { m: 'lineTo', a: [ atX += ~~c[0], atY += ~~c[1] ] };
					break;
				case 'm':
					code[i] = { m: 'moveTo', a: [ atX = ~~c[0], atY = ~~c[1] ] };
					break;
				case 'x':
					code[i] = { m: 'closePath' };
					break;
				case 'e':
					break generate;
			}
			context[code[i].m].apply(context, code[i].a);
		}
		return code;
	}

	function interpret(code, context) {
		for (var i = 0, l = code.length; i < l; ++i) {
			var line = code[i];
			context[line.m].apply(context, line.a);
		}
	}

	return function(font, text, style, options, node, el) {

		var redraw = (text === null);

		if (redraw) text = node.getAttribute('alt');

		var viewBox = font.viewBox;

		var size = style.getSize('fontSize', font.baseSize);

		var expandTop = 0, expandRight = 0, expandBottom = 0, expandLeft = 0;
		var shadows = options.textShadow, shadowOffsets = [];
		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				var x = size.convertFrom(parseFloat(shadow.offX));
				var y = size.convertFrom(parseFloat(shadow.offY));
				shadowOffsets[i] = [ x, y ];
				if (y < expandTop) expandTop = y;
				if (x > expandRight) expandRight = x;
				if (y > expandBottom) expandBottom = y;
				if (x < expandLeft) expandLeft = x;
			}
		}

		var chars = Cufon.CSS.textTransform(text, style).split('');

		var jumps = font.spacing(chars,
			~~size.convertFrom(parseFloat(style.get('letterSpacing')) || 0),
			~~size.convertFrom(parseFloat(style.get('wordSpacing')) || 0)
		);

		if (!jumps.length) return null; // there's nothing to render

		var width = jumps.total;

		expandRight += viewBox.width - jumps[jumps.length - 1];
		expandLeft += viewBox.minX;

		var wrapper, canvas;

		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('cufon');
			wrapper.className = 'cufon cufon-canvas';
			wrapper.setAttribute('alt', text);

			canvas = document.createElement('canvas');
			wrapper.appendChild(canvas);

			if (options.printable) {
				var print = document.createElement('cufontext');
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}
		}

		var wStyle = wrapper.style;
		var cStyle = canvas.style;

		var height = size.convert(viewBox.height);
		var roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var stretchFactor = roundingFactor * Cufon.CSS.fontStretch(style.get('fontStretch'));
		var stretchedWidth = width * stretchFactor;

		var canvasWidth = Math.ceil(size.convert(stretchedWidth + expandRight - expandLeft));
		var canvasHeight = Math.ceil(size.convert(viewBox.height - expandTop + expandBottom));

		canvas.width = canvasWidth;
		canvas.height = canvasHeight;

		// needed for WebKit and full page zoom
		cStyle.width = canvasWidth + 'px';
		cStyle.height = canvasHeight + 'px';

		// minY has no part in canvas.height
		expandTop += viewBox.minY;

		cStyle.top = Math.round(size.convert(expandTop - font.ascent)) + 'px';
		cStyle.left = Math.round(size.convert(expandLeft)) + 'px';

		var wrapperWidth = Math.max(Math.ceil(size.convert(stretchedWidth)), 0) + 'px';

		if (HAS_INLINE_BLOCK) {
			wStyle.width = wrapperWidth;
			wStyle.height = size.convert(font.height) + 'px';
		}
		else {
			wStyle.paddingLeft = wrapperWidth;
			wStyle.paddingBottom = (size.convert(font.height) - 1) + 'px';
		}

		var g = canvas.getContext('2d'), scale = height / viewBox.height;

		// proper horizontal scaling is performed later
		g.scale(scale, scale * roundingFactor);
		g.translate(-expandLeft, -expandTop);
		g.save();

		function renderText() {
			var glyphs = font.glyphs, glyph, i = -1, j = -1, chr;
			g.scale(stretchFactor, 1);
			while (chr = chars[++i]) {
				var glyph = glyphs[chars[i]] || font.missingGlyph;
				if (!glyph) continue;
				if (glyph.d) {
					g.beginPath();
					if (glyph.code) interpret(glyph.code, g);
					else glyph.code = generateFromVML('m' + glyph.d, g);
					g.fill();
				}
				g.translate(jumps[++j], 0);
			}
			g.restore();
		}

		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				g.save();
				g.fillStyle = shadow.color;
				g.translate.apply(g, shadowOffsets[i]);
				renderText();
			}
		}

		var gradient = options.textGradient;
		if (gradient) {
			var stops = gradient.stops, fill = g.createLinearGradient(0, viewBox.minY, 0, viewBox.maxY);
			for (var i = 0, l = stops.length; i < l; ++i) {
				fill.addColorStop.apply(fill, stops[i]);
			}
			g.fillStyle = fill;
		}
		else g.fillStyle = style.get('color');

		renderText();

		return wrapper;

	};

})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1990-1996 ParaGraph
 * 
 * Trademark:
 * Pragmatica is a trade mark of ParaGraph
 */
Cufon.registerFont({"w":155,"face":{"font-family":"PragmaticaCondCTT","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 6 4 4 2 2 2 4","ascent":"288","descent":"-72","x-height":"7","bbox":"-15 -328 292 81","underline-thickness":"14.4","underline-position":"-21.6","unicode-range":"U+0020-U+0491"},"glyphs":{" ":{"w":83},"\u045d":{"w":83},"\u040d":{"w":83},"\u00a0":{"w":83},"!":{"d":"29,-252r33,0v1,63,-1,124,-7,180r-19,0v-6,-56,-8,-116,-7,-180xm29,0r0,-39r33,0r0,39r-33,0","w":91},"\"":{"d":"50,-252r-10,69r-16,0r-10,-69r36,0xm104,-252r-10,69r-16,0r-10,-69r36,0","w":118},"#":{"d":"118,-11r-22,0r6,-50r-32,0r-6,50r-22,0r7,-50r-37,0r3,-31r37,0r8,-68r-37,0r4,-31r37,0r5,-50r22,0r-6,50r32,0r6,-50r22,0r-6,50r37,0r-4,31r-37,0r-8,68r37,0r-3,31r-37,0xm106,-92r8,-68r-32,0r-8,68r32,0","w":187},"$":{"d":"154,-69v1,46,-22,68,-60,73r0,29r-21,0r0,-29v-45,-6,-60,-29,-63,-79r31,0v3,31,8,48,32,54r0,-96v-37,-11,-57,-27,-58,-71v0,-39,22,-67,58,-68r0,-24r21,0r0,24v36,4,54,26,55,65r-31,0v-1,-21,-9,-37,-24,-42r0,90v38,9,59,29,60,74xm94,-21v39,-5,40,-86,0,-91r0,91xm73,-233v-29,4,-34,45,-22,70v4,7,12,11,22,15r0,-85","w":164},"%":{"d":"58,-111v-33,0,-48,-32,-48,-72v0,-38,14,-72,48,-72v34,0,48,35,48,72v1,40,-15,72,-48,72xm58,-236v-34,6,-33,101,0,106v33,-5,33,-100,0,-106xm49,0r125,-252r25,0r-124,252r-26,0xm189,3v-34,0,-48,-31,-48,-72v0,-38,14,-72,48,-72v34,0,48,35,48,72v1,40,-15,72,-48,72xm189,-122v-34,6,-33,102,0,106v33,-6,32,-98,0,-106","w":246},"&":{"d":"138,-201v0,29,-18,50,-37,62r39,61r5,-32r28,0v-2,25,-8,41,-16,59r33,51r-34,0r-16,-25v-14,20,-32,32,-60,33v-40,1,-64,-34,-63,-75v1,-43,17,-59,48,-78v-29,-31,-29,-107,28,-107v28,0,45,24,45,51xm48,-68v-4,53,61,65,77,18r-47,-74v-20,16,-28,26,-30,56xm93,-228v-29,3,-20,53,-4,69v12,-9,21,-21,20,-43v0,-12,-5,-27,-16,-26","w":181},"'":{"d":"66,-252r-11,69r-21,0r-11,-69r43,0","w":89},"(":{"d":"80,-252v-42,93,-43,225,0,319r-23,0v-51,-91,-52,-228,0,-319r23,0","w":101},")":{"d":"21,67v42,-94,43,-226,0,-319r24,0v51,93,51,226,0,319r-24,0","w":101},"*":{"d":"63,-259r19,0r0,47r43,-14r6,17r-43,14r26,39r-14,11r-27,-38r-28,38r-14,-11r27,-39r-43,-14r5,-17r43,14r0,-47","w":145},"+":{"d":"14,-137r79,0r0,-79r23,0r0,79r78,0r0,22r-78,0r0,79r-23,0r0,-79r-79,0r0,-22","w":208},",":{"d":"29,34v13,-3,14,-17,14,-34r-14,0r0,-39r33,0v0,42,6,87,-33,94r0,-21","w":91},".":{"d":"29,0r0,-39r33,0r0,39r-33,0","w":91},"\/":{"d":"-9,67r98,-319r23,0r-98,319r-23,0","w":102},"0":{"d":"148,-126v0,75,-13,127,-70,134v-58,-5,-70,-59,-70,-134v0,-76,13,-127,70,-134v56,7,70,60,70,134xm78,-233v-52,6,-44,142,-29,187v6,18,17,27,29,27v34,-7,38,-55,38,-107v0,-53,-4,-99,-38,-107"},"1":{"d":"37,-207v31,4,49,-19,52,-45r24,0r0,252r-32,0r0,-189r-44,0r0,-18","w":174},"2":{"d":"149,-183v4,78,-88,88,-102,155r101,0r0,28r-136,0v-12,-92,110,-118,104,-183v-2,-25,-10,-48,-35,-48v-27,0,-40,27,-37,59r-31,0v-2,-52,21,-87,69,-88v45,-1,65,32,67,77","w":157},"3":{"d":"145,-70v0,71,-81,103,-121,56v-12,-15,-18,-36,-18,-63r31,0v2,31,10,58,37,58v28,0,40,-22,40,-54v0,-35,-17,-49,-54,-45r0,-27v32,2,49,-14,49,-44v0,-24,-12,-44,-34,-44v-28,0,-33,27,-34,58r-31,0v0,-48,18,-85,66,-85v70,0,86,108,27,125r0,3v26,4,42,29,42,62"},"4":{"d":"91,-58r-91,0r0,-28r91,-166r32,0r0,165r30,0r0,29r-30,0r0,58r-32,0r0,-58xm31,-87r60,0r0,-110","w":153},"5":{"d":"148,-82v10,77,-76,117,-122,70v-12,-12,-17,-29,-18,-52r32,0v0,24,12,46,36,45v31,-1,41,-29,41,-63v0,-54,-54,-79,-73,-37r-31,0r14,-133r109,0r0,28r-84,0r-7,68v50,-34,110,10,103,74"},"6":{"d":"7,-121v0,-74,11,-139,75,-139v37,0,58,26,63,63r-29,0v0,-38,-52,-49,-66,-13v-6,15,-11,36,-11,64v38,-46,109,-5,109,65v0,50,-23,89,-69,89v-62,0,-72,-56,-72,-129xm80,-139v-54,0,-53,120,0,120v48,-2,52,-118,0,-120"},"7":{"d":"150,-230v-42,62,-68,134,-74,230r-34,0v9,-88,36,-168,77,-224r-115,0r0,-28r146,0r0,22","w":153},"8":{"d":"79,8v-75,6,-91,-123,-31,-144v-50,-22,-34,-132,31,-124v65,-8,80,102,31,124v22,7,37,35,37,65v0,48,-25,75,-68,79xm49,-191v0,25,10,43,30,43v20,0,31,-18,30,-43v0,-22,-10,-42,-30,-42v-20,0,-30,20,-30,42xm42,-73v1,27,11,54,37,54v46,0,50,-104,0,-103v-25,0,-37,22,-37,49","w":157},"9":{"d":"148,-129v0,73,-14,135,-76,137v-36,1,-59,-29,-61,-63r29,0v-2,37,49,50,63,14v6,-15,12,-37,14,-66v-38,48,-110,7,-110,-63v0,-51,21,-90,69,-90v64,0,72,58,72,131xm75,-113v29,-1,40,-25,40,-58v0,-35,-11,-62,-40,-62v-48,0,-53,120,0,120"},":":{"d":"29,-144r0,-39r33,0r0,39r-33,0xm29,0r0,-39r33,0r0,39r-33,0","w":91},";":{"d":"29,-144r0,-39r33,0r0,39r-33,0xm29,34v13,-3,14,-17,14,-34r-14,0r0,-39r33,0v0,42,8,88,-33,94r0,-21","w":91},"<":{"d":"16,-135r178,-102r11,19r-161,92r161,92r-11,19r-178,-102r0,-18","w":226},"=":{"d":"14,-170r180,0r0,23r-180,0r0,-23xm14,-105r180,0r0,23r-180,0r0,-23","w":208},">":{"d":"211,-117r-179,102r-10,-19r161,-92r-161,-92r10,-19r179,102r0,18","w":226},"?":{"d":"56,0r0,-39r33,0r0,39r-33,0xm75,-232v-27,1,-37,25,-35,56r-30,0v-4,-51,19,-82,65,-82v37,0,63,27,63,65v0,53,-56,64,-52,120r-26,0v-11,-55,54,-89,47,-119v0,-20,-12,-40,-32,-40","w":147},"@":{"d":"39,-126v0,90,95,141,167,97r10,17v-85,53,-200,-7,-200,-114v0,-80,56,-134,133,-134v75,0,134,50,134,127v0,43,-25,79,-65,80v-18,0,-28,-7,-32,-20v-30,45,-117,15,-106,-48v-8,-60,68,-95,103,-51r0,-15r27,0r0,90v1,17,0,24,14,24v26,0,36,-27,36,-60v0,-64,-48,-106,-111,-106v-64,0,-110,48,-110,113xm145,-73v25,0,35,-21,35,-48v0,-29,-10,-49,-34,-49v-25,0,-36,22,-36,49v0,27,10,48,35,48","w":299},"A":{"d":"41,-65r-18,65r-33,0r72,-252r34,0r72,252r-33,0r-18,-65r-76,0xm48,-94r61,0r-30,-113","w":157},"B":{"d":"177,-70v0,79,-79,72,-155,70r0,-252r83,0v71,-10,85,102,27,118r0,2v28,6,45,27,45,62xm136,-184v0,-43,-40,-42,-82,-40r0,79v41,1,82,5,82,-39xm145,-73v0,-49,-44,-45,-91,-44r0,89v47,1,91,5,91,-45","w":189},"C":{"d":"102,-21v32,1,50,-32,51,-63r32,0v-4,55,-30,92,-84,92v-65,0,-95,-57,-94,-130v1,-75,23,-138,93,-138v51,0,80,32,83,86r-32,0v-3,-34,-18,-57,-51,-57v-82,0,-81,209,2,210","w":190},"D":{"d":"189,-127v-1,81,-30,126,-109,127r-58,0r0,-252r68,0v70,0,101,50,99,125xm156,-126v0,-70,-27,-108,-102,-98r0,196v73,5,102,-25,102,-98","w":196},"E":{"d":"54,-144r100,0r0,28r-100,0r0,88r113,0r0,28r-145,0r0,-252r142,0r0,28r-110,0r0,80","w":164},"F":{"d":"54,-141r89,0r0,28r-89,0r0,113r-32,0r0,-252r135,0r0,28r-103,0r0,83","w":152},"G":{"d":"103,-231v-86,1,-84,210,0,210v38,0,54,-37,55,-82r-55,0r0,-28r85,0r0,131r-27,0r0,-29v-10,22,-32,37,-61,37v-67,0,-88,-64,-93,-137v-7,-100,86,-170,154,-107v15,14,22,35,24,59r-32,0v0,-29,-21,-54,-50,-54","w":199},"H":{"d":"54,-118r0,118r-32,0r0,-252r32,0r0,105r90,0r0,-105r32,0r0,252r-32,0r0,-118r-90,0","w":197},"I":{"d":"22,-252r32,0r0,252r-32,0r0,-252","w":75},"J":{"d":"61,8v-49,0,-64,-39,-62,-92r32,0v-1,35,2,63,30,63v28,0,28,-25,29,-63r0,-168r32,0r0,165v0,61,-11,95,-61,95","w":138},"K":{"d":"54,-135r89,-117r39,0r-79,104r85,148r-40,0r-67,-122r-27,35r0,87r-32,0r0,-252r32,0r0,117","w":177},"L":{"d":"151,-28r0,28r-129,0r0,-252r32,0r0,224r97,0","w":139},"M":{"d":"110,0r-57,-197r1,197r-32,0r0,-252r44,0r57,201r57,-201r45,0r0,252r-32,0r0,-197r-57,197r-26,0","w":246},"N":{"d":"54,-189r0,189r-32,0r0,-252r34,0r96,188r0,-188r32,0r0,252r-34,0","w":205},"O":{"d":"102,8v-68,0,-95,-60,-95,-134v0,-75,29,-134,95,-134v64,0,94,59,94,134v0,74,-27,134,-94,134xm102,-231v-47,0,-61,52,-61,105v-1,57,15,105,61,105v45,0,61,-49,60,-105v-1,-53,-14,-105,-60,-105","w":203},"P":{"d":"171,-180v0,68,-45,86,-117,80r0,100r-32,0r0,-252v76,-2,149,-8,149,72xm138,-179v0,-46,-38,-47,-84,-45r0,95v48,2,84,1,84,-50","w":173},"Q":{"d":"102,-260v103,-3,116,170,66,238r21,31r-17,19r-23,-33v-13,7,-28,13,-47,13v-67,0,-95,-61,-95,-134v0,-71,28,-132,95,-134xm41,-126v0,68,33,128,90,95r-22,-33r18,-18r21,31v28,-52,22,-180,-46,-180v-48,0,-61,49,-61,105","w":203},"R":{"d":"138,-53v0,-60,-33,-55,-84,-54r0,107r-32,0r0,-252v76,0,154,-12,154,70v0,34,-19,51,-40,62v28,8,33,23,35,60v2,39,-1,41,7,60r-32,0v-8,-16,-8,-22,-8,-53xm143,-181v0,-46,-43,-45,-89,-43r0,89v47,3,89,2,89,-46","w":185},"S":{"d":"152,-118v36,47,9,132,-63,126v-51,-5,-83,-32,-82,-88r32,0v-2,34,17,59,52,59v40,0,58,-50,35,-75v-31,-34,-121,-19,-112,-91v-8,-69,88,-95,129,-52v13,14,19,32,20,53r-32,0v-2,-25,-15,-45,-42,-45v-37,0,-55,45,-33,68v16,17,86,25,96,45","w":175},"T":{"d":"58,-224r-62,0r0,-28r156,0r0,28r-62,0r0,224r-32,0r0,-224","w":147},"U":{"d":"96,8v-114,0,-70,-156,-79,-260r32,0r0,150v0,53,5,81,47,81v41,0,46,-31,46,-81r0,-150r32,0v-7,105,33,260,-78,260","w":191},"V":{"d":"75,-44r51,-208r34,0r-66,252r-37,0r-67,-252r34,0","w":149},"W":{"d":"116,-199r-36,199r-39,0r-51,-252r35,0r37,199r36,-199r36,0r37,199r37,-199r35,0r-51,252r-39,0","w":232},"X":{"d":"77,-159r46,-93r35,0r-63,122r68,130r-39,0r-47,-99r-47,99r-39,0r67,-129r-64,-123r38,0","w":153},"Y":{"d":"76,-138r50,-114r36,0r-70,147r0,105r-32,0r0,-105r-70,-147r36,0","w":151},"Z":{"d":"6,-252r143,0r0,26r-113,198r119,0r0,28r-155,0r0,-30r112,-194r-106,0r0,-28"},"[":{"d":"29,-252r64,0r0,22r-34,0r0,274r34,0r0,23r-64,0r0,-319","w":103},"\\":{"d":"119,67r-23,0r-96,-319r22,0","w":118},"]":{"d":"10,-252r64,0r0,319r-64,0r0,-23r34,0r0,-274r-34,0r0,-22","w":102},"^":{"d":"65,-237r-32,63r-22,0r39,-78r29,0r40,78r-23,0","w":129},"_":{"d":"0,67r0,-19r126,0r0,19r-126,0","w":126},"`":{"d":"40,-252r20,48r-27,0r-27,-48r34,0","w":84},"a":{"d":"71,-168v-22,-1,-34,15,-32,39r-30,0v0,-38,22,-61,62,-61v75,0,59,82,59,150v0,15,1,20,13,17r0,23v-18,2,-37,1,-39,-15v-25,36,-109,27,-100,-33v-6,-52,54,-54,92,-63v7,-20,3,-62,-25,-57xm60,-15v37,0,40,-31,39,-74v-50,20,-64,5,-63,42v0,20,6,32,24,32","w":145},"b":{"d":"46,-18r0,18r-29,0r0,-252r30,0r0,87v5,-14,22,-26,43,-25v48,1,67,43,67,98v0,79,-72,132,-111,74xm85,-168v-54,2,-55,149,-1,153v57,-2,56,-150,1,-153","w":163},"c":{"d":"78,-15v22,0,34,-23,34,-50r29,0v-1,41,-23,73,-64,72v-51,-1,-71,-39,-71,-100v0,-55,19,-96,70,-97v36,0,64,28,64,64r-29,0v0,-22,-14,-43,-35,-42v-54,3,-53,153,2,153","w":145},"d":{"d":"72,-190v20,-1,37,9,43,22r0,-84r30,0r0,252r-29,0r0,-17v-7,16,-21,24,-43,24v-49,-1,-67,-46,-67,-99v1,-57,16,-96,66,-98xm77,-168v-55,3,-55,151,1,153v53,-4,53,-150,-1,-153","w":162},"e":{"d":"79,-15v21,0,33,-18,35,-38r30,0v-3,35,-25,61,-64,60v-52,-1,-74,-40,-74,-98v0,-58,20,-99,72,-99v54,0,67,46,67,106r-107,0v-1,34,11,68,41,69xm113,-107v8,-51,-39,-81,-65,-44v-7,11,-10,26,-10,44r75,0","w":151},"f":{"d":"85,-228v-17,-5,-35,-2,-30,23r0,22r30,0r0,22r-30,0r0,161r-31,0r0,-161r-24,0r0,-22r24,0v-5,-49,9,-79,61,-69r0,24","w":84},"g":{"d":"145,-8v10,68,-64,97,-110,65v-11,-8,-16,-21,-17,-36r29,0v1,17,14,27,33,26v30,-1,36,-30,35,-64v-9,12,-22,21,-42,21v-47,-1,-65,-44,-65,-97v0,-53,16,-95,63,-97v24,0,37,10,46,25r0,-18r28,0r0,175xm78,-168v-55,2,-53,148,1,149v51,-4,52,-147,-1,-149","w":162},"h":{"d":"84,-168v-57,7,-32,107,-37,168r-30,0r0,-252r30,0r0,86v8,-15,24,-24,45,-24v75,2,40,120,48,190r-30,0r0,-116v-1,-32,-2,-49,-26,-52","w":156},"i":{"d":"17,-183r30,0r0,183r-30,0r0,-183xm17,-219r0,-33r30,0r0,33r-30,0","w":64},"j":{"d":"-7,43v20,3,24,-9,24,-30r0,-196r30,0r0,200v2,40,-15,56,-54,50r0,-24xm17,-219r0,-33r30,0r0,33r-30,0","w":64},"k":{"d":"47,-103r61,-80r33,0r-54,71r60,112r-33,0r-47,-89r-20,26r0,63r-30,0r0,-252r30,0r0,149","w":143},"l":{"d":"17,-252r30,0r0,252r-30,0r0,-252","w":64},"m":{"d":"81,-168v-55,9,-28,109,-34,168r-30,0r0,-183r29,0v1,6,-2,15,1,19v5,-15,21,-26,40,-26v24,0,36,14,40,34v5,-20,23,-34,48,-34v72,3,40,120,47,190r-30,0r0,-116v-1,-32,-2,-49,-24,-52v-55,8,-26,109,-33,168r-31,0r0,-116v0,-32,-1,-49,-23,-52","w":239},"n":{"d":"84,-168v-55,8,-31,108,-36,168r-31,0r0,-183r31,0r0,17v8,-15,23,-24,44,-24v76,1,40,120,48,190r-30,0r0,-116v-1,-33,-1,-49,-26,-52","w":157},"o":{"d":"78,7v-52,0,-72,-44,-72,-99v0,-55,21,-98,72,-98v50,0,71,44,71,98v0,54,-21,99,-71,99xm78,-168v-56,2,-56,151,0,153v55,-3,54,-149,0,-153"},"p":{"d":"90,7v-19,0,-37,-9,-43,-22r0,82r-30,0r0,-250r29,0r0,19v7,-14,22,-26,43,-26v46,1,66,44,66,99v0,52,-18,98,-65,98xm84,-168v-54,0,-53,153,1,153v32,0,38,-36,38,-76v0,-39,-8,-77,-39,-77","w":161},"q":{"d":"73,-190v24,1,28,8,43,24r0,-17r29,0r0,250r-31,0r0,-82v-7,14,-23,22,-42,22v-48,-2,-66,-44,-66,-98v0,-52,18,-99,67,-99xm78,-168v-56,3,-55,150,-1,153v53,-4,54,-148,1,-153","w":161},"r":{"d":"47,-159v7,-18,25,-35,54,-31r0,23v-73,-8,-51,97,-54,167r-30,0r0,-183r30,0r0,24","w":100},"s":{"d":"118,-85v28,35,4,96,-50,92v-43,-3,-63,-19,-64,-61r31,0v-1,23,10,38,32,39v28,2,39,-33,25,-53v-31,-26,-90,-16,-82,-70v-5,-51,68,-66,101,-38v10,9,15,23,15,41r-30,0v1,-20,-9,-33,-27,-33v-26,0,-34,31,-22,49v8,12,65,20,71,34","w":133},"t":{"d":"55,-44v-5,27,14,26,30,20r0,23v-33,10,-60,4,-60,-39r0,-121r-25,0r0,-22r25,0r0,-55r30,0r0,55r30,0r0,22r-30,0r0,117","w":87},"u":{"d":"73,-15v58,-6,31,-108,37,-168r30,0r0,183r-30,0v-1,-6,2,-15,-1,-19v-5,15,-23,26,-43,26v-76,-1,-41,-119,-49,-190r30,0r0,116v1,31,2,50,26,52","w":157},"v":{"d":"65,-39r37,-144r32,0r-52,183r-33,0r-53,-183r32,0","w":130},"w":{"d":"99,-135r-30,135r-32,0r-41,-183r32,0r27,136r30,-136r29,0r30,136r27,-136r31,0r-41,183r-31,0","w":198},"x":{"d":"66,-120r33,-63r32,0r-49,88r53,95r-33,0r-36,-70r-37,70r-33,0r53,-95r-49,-88r32,0","w":131},"y":{"d":"21,40v26,16,33,-15,37,-40r-60,-183r34,0r42,141r34,-141r30,0r-55,205v-9,37,-22,50,-62,44r0,-26","w":134},"z":{"d":"10,-183r110,0r0,22r-81,139r86,0r0,22r-121,0r0,-22r84,-139r-78,0r0,-22","w":128},"{":{"d":"45,6v0,-35,6,-84,-23,-88r0,-22v54,-13,-16,-150,72,-149r0,19v-46,13,4,128,-50,140r0,2v32,10,30,62,29,106v0,19,6,31,21,35r0,18v-33,-2,-49,-23,-49,-61","w":115},"|":{"d":"22,81r0,-379r22,0r0,379r-22,0","w":65},"}":{"d":"71,-192v0,35,-8,86,23,88r0,22v-54,12,16,149,-72,149r0,-18v42,-17,-1,-127,49,-143v-52,-9,-5,-121,-49,-140r0,-19v33,2,49,24,49,61","w":115},"~":{"d":"50,-145v26,1,54,34,61,1r22,0v0,20,-16,37,-36,37v-16,0,-39,-17,-45,-15v-8,-1,-16,7,-15,15r-23,0v2,-19,16,-38,36,-38","w":147},"\u0410":{"d":"41,-65r-18,65r-33,0r72,-252r34,0r72,252r-33,0r-18,-65r-76,0xm48,-94r61,0r-30,-113","w":157},"\u00c0":{"d":"41,-65r-18,65r-33,0r72,-252r34,0r72,252r-33,0r-18,-65r-76,0xm48,-94r61,0r-30,-113","w":157},"\u0411":{"d":"176,-73v0,46,-23,74,-70,73r-84,0r0,-252r142,0r0,28r-110,0r0,76v70,-5,122,5,122,75xm144,-73v0,-49,-42,-49,-90,-47r0,92v46,1,90,4,90,-45","w":181},"\u00c1":{"d":"176,-73v0,46,-23,74,-70,73r-84,0r0,-252r142,0r0,28r-110,0r0,76v70,-5,122,5,122,75xm144,-73v0,-49,-42,-49,-90,-47r0,92v46,1,90,4,90,-45","w":181},"\u0412":{"d":"177,-70v0,79,-79,72,-155,70r0,-252r83,0v71,-10,85,102,27,118r0,2v28,6,45,27,45,62xm136,-184v0,-43,-40,-42,-82,-40r0,79v41,1,82,5,82,-39xm145,-73v0,-49,-44,-45,-91,-44r0,89v47,1,91,5,91,-45","w":189},"\u00c2":{"d":"177,-70v0,79,-79,72,-155,70r0,-252r83,0v71,-10,85,102,27,118r0,2v28,6,45,27,45,62xm136,-184v0,-43,-40,-42,-82,-40r0,79v41,1,82,5,82,-39xm145,-73v0,-49,-44,-45,-91,-44r0,89v47,1,91,5,91,-45","w":189},"\u0413":{"d":"54,-224r0,224r-32,0r0,-252r128,0r0,28r-96,0","w":145},"\u00c3":{"d":"54,-224r0,224r-32,0r0,-252r128,0r0,28r-96,0","w":145},"\u0414":{"d":"9,-28v32,-55,38,-133,36,-224r123,0r0,224r28,0r-2,85r-29,0r0,-57r-143,0r0,57r-29,0r-2,-85r18,0xm77,-224v1,80,-5,147,-32,196r91,0r0,-196r-59,0","w":191},"\u00c4":{"d":"9,-28v32,-55,38,-133,36,-224r123,0r0,224r28,0r-2,85r-29,0r0,-57r-143,0r0,57r-29,0r-2,-85r18,0xm77,-224v1,80,-5,147,-32,196r91,0r0,-196r-59,0","w":191},"\u0415":{"d":"54,-144r100,0r0,28r-100,0r0,88r113,0r0,28r-145,0r0,-252r142,0r0,28r-110,0r0,80","w":164},"\u00c5":{"d":"54,-144r100,0r0,28r-100,0r0,88r113,0r0,28r-145,0r0,-252r142,0r0,28r-110,0r0,80","w":164},"\u0416":{"d":"101,0r0,-117r-75,117r-36,0r88,-135r-85,-117r36,0r72,103r0,-103r32,0r0,103r72,-103r36,0r-84,117r88,135r-36,0r-76,-117r0,117r-32,0","w":234},"\u00c6":{"d":"101,0r0,-117r-75,117r-36,0r88,-135r-85,-117r36,0r72,103r0,-103r32,0r0,103r72,-103r36,0r-84,117r88,135r-36,0r-76,-117r0,117r-32,0","w":234},"\u0417":{"d":"168,-68v0,74,-93,97,-137,55v-14,-14,-22,-35,-24,-64r32,0v0,34,17,56,51,56v29,0,45,-21,45,-50v0,-42,-27,-50,-69,-47r0,-29v37,3,61,-4,61,-40v0,-26,-14,-45,-41,-44v-30,0,-42,20,-44,49r-32,0v1,-48,30,-74,79,-78v75,-7,97,109,33,125r0,2v28,8,46,29,46,65","w":179},"\u00c7":{"d":"168,-68v0,74,-93,97,-137,55v-14,-14,-22,-35,-24,-64r32,0v0,34,17,56,51,56v29,0,45,-21,45,-50v0,-42,-27,-50,-69,-47r0,-29v37,3,61,-4,61,-40v0,-26,-14,-45,-41,-44v-30,0,-42,20,-44,49r-32,0v1,-48,30,-74,79,-78v75,-7,97,109,33,125r0,2v28,8,46,29,46,65","w":179},"\u0418":{"d":"54,-61r96,-191r31,0r0,252r-32,0r0,-192r-96,192r-31,0r0,-252r32,0r0,191","w":203},"\u00c8":{"d":"54,-61r96,-191r31,0r0,252r-32,0r0,-192r-96,192r-31,0r0,-252r32,0r0,191","w":203},"\u0419":{"d":"54,-61r96,-191r31,0r0,252r-32,0r0,-192r-96,192r-31,0r0,-252r32,0r0,191xm152,-309v0,43,-57,63,-86,34v-9,-9,-14,-21,-15,-34r27,0v1,17,7,29,24,29v14,1,23,-15,23,-29r27,0","w":203},"\u00c9":{"d":"54,-61r96,-191r31,0r0,252r-32,0r0,-192r-96,192r-31,0r0,-252r32,0r0,191xm152,-309v0,43,-57,63,-86,34v-9,-9,-14,-21,-15,-34r27,0v1,17,7,29,24,29v14,1,23,-15,23,-29r27,0","w":203},"\u041a":{"d":"54,-145r80,-107r36,0r-91,117r97,135r-38,0r-84,-123r0,123r-32,0r0,-252r32,0r0,107","w":165},"\u00ca":{"d":"54,-145r80,-107r36,0r-91,117r97,135r-38,0r-84,-123r0,123r-32,0r0,-252r32,0r0,107","w":165},"\u041b":{"d":"-4,0r0,-31v15,6,25,0,33,-20v17,-42,11,-137,12,-201r126,0r0,252r-32,0r0,-224r-62,0v-2,97,16,235,-77,224","w":189},"\u00cb":{"d":"-4,0r0,-31v15,6,25,0,33,-20v17,-42,11,-137,12,-201r126,0r0,252r-32,0r0,-224r-62,0v-2,97,16,235,-77,224","w":189},"\u041c":{"d":"110,0r-57,-197r1,197r-32,0r0,-252r44,0r57,201r57,-201r45,0r0,252r-32,0r0,-197r-57,197r-26,0","w":246},"\u00cc":{"d":"110,0r-57,-197r1,197r-32,0r0,-252r44,0r57,201r57,-201r45,0r0,252r-32,0r0,-197r-57,197r-26,0","w":246},"\u041d":{"d":"54,-118r0,118r-32,0r0,-252r32,0r0,105r90,0r0,-105r32,0r0,252r-32,0r0,-118r-90,0","w":197},"\u00cd":{"d":"54,-118r0,118r-32,0r0,-252r32,0r0,105r90,0r0,-105r32,0r0,252r-32,0r0,-118r-90,0","w":197},"\u041e":{"d":"102,8v-68,0,-95,-60,-95,-134v0,-75,29,-134,95,-134v64,0,94,59,94,134v0,74,-27,134,-94,134xm102,-231v-47,0,-61,52,-61,105v-1,57,15,105,61,105v45,0,61,-49,60,-105v-1,-53,-14,-105,-60,-105","w":203},"\u00ce":{"d":"102,8v-68,0,-95,-60,-95,-134v0,-75,29,-134,95,-134v64,0,94,59,94,134v0,74,-27,134,-94,134xm102,-231v-47,0,-61,52,-61,105v-1,57,15,105,61,105v45,0,61,-49,60,-105v-1,-53,-14,-105,-60,-105","w":203},"\u041f":{"d":"54,-224r0,224r-32,0r0,-252r154,0r0,252r-32,0r0,-224r-90,0","w":198},"\u00cf":{"d":"54,-224r0,224r-32,0r0,-252r154,0r0,252r-32,0r0,-224r-90,0","w":198},"\u0420":{"d":"171,-180v0,68,-45,86,-117,80r0,100r-32,0r0,-252v76,-2,149,-8,149,72xm138,-179v0,-46,-38,-47,-84,-45r0,95v48,2,84,1,84,-50","w":173},"\u00d0":{"d":"171,-180v0,68,-45,86,-117,80r0,100r-32,0r0,-252v76,-2,149,-8,149,72xm138,-179v0,-46,-38,-47,-84,-45r0,95v48,2,84,1,84,-50","w":173},"\u0421":{"d":"102,-21v32,1,50,-32,51,-63r32,0v-4,55,-30,92,-84,92v-65,0,-95,-57,-94,-130v1,-75,23,-138,93,-138v51,0,80,32,83,86r-32,0v-3,-34,-18,-57,-51,-57v-82,0,-81,209,2,210","w":190},"\u00d1":{"d":"102,-21v32,1,50,-32,51,-63r32,0v-4,55,-30,92,-84,92v-65,0,-95,-57,-94,-130v1,-75,23,-138,93,-138v51,0,80,32,83,86r-32,0v-3,-34,-18,-57,-51,-57v-82,0,-81,209,2,210","w":190},"\u0422":{"d":"58,-224r-62,0r0,-28r156,0r0,28r-62,0r0,224r-32,0r0,-224","w":147},"\u00d2":{"d":"58,-224r-62,0r0,-28r156,0r0,28r-62,0r0,224r-32,0r0,-224","w":147},"\u0423":{"d":"18,-32v25,15,47,-1,49,-31r-73,-189r37,0r53,146r43,-146r33,0r-65,207v-7,38,-38,59,-77,44r0,-31","w":149},"\u00d3":{"d":"18,-32v25,15,47,-1,49,-31r-73,-189r37,0r53,146r43,-146r33,0r-65,207v-7,38,-38,59,-77,44r0,-31","w":149},"\u0424":{"d":"237,-129v1,65,-34,103,-99,101r0,37r-33,0r0,-37v-65,2,-98,-37,-99,-101v0,-62,33,-102,99,-99r0,-38r33,0r0,38v66,-3,99,37,99,99xm40,-129v0,49,17,75,65,74r0,-147v-45,-1,-65,26,-65,73xm204,-129v1,-48,-21,-74,-66,-73r0,147v47,1,66,-26,66,-74","w":243},"\u00d4":{"d":"237,-129v1,65,-34,103,-99,101r0,37r-33,0r0,-37v-65,2,-98,-37,-99,-101v0,-62,33,-102,99,-99r0,-38r33,0r0,38v66,-3,99,37,99,99xm40,-129v0,49,17,75,65,74r0,-147v-45,-1,-65,26,-65,73xm204,-129v1,-48,-21,-74,-66,-73r0,147v47,1,66,-26,66,-74","w":243},"\u0425":{"d":"77,-159r46,-93r35,0r-63,122r68,130r-39,0r-47,-99r-47,99r-39,0r67,-129r-64,-123r38,0","w":153},"\u00d5":{"d":"77,-159r46,-93r35,0r-63,122r68,130r-39,0r-47,-99r-47,99r-39,0r67,-129r-64,-123r38,0","w":153},"\u0426":{"d":"54,-28r90,0r0,-224r32,0r0,224r27,0r-2,85r-28,0r0,-57r-151,0r0,-252r32,0r0,224","w":199},"\u00d6":{"d":"54,-28r90,0r0,-224r32,0r0,224r27,0r-2,85r-28,0r0,-57r-151,0r0,-252r32,0r0,224","w":199},"\u0427":{"d":"121,-110v-60,9,-109,3,-109,-63r0,-79r32,0v4,55,-22,134,57,116v5,0,12,-1,20,-2r0,-114r32,0r0,252r-32,0r0,-110","w":174},"\u00d7":{"d":"121,-110v-60,9,-109,3,-109,-63r0,-79r32,0v4,55,-22,134,57,116v5,0,12,-1,20,-2r0,-114r32,0r0,252r-32,0r0,-110","w":174},"\u0428":{"d":"54,-28r71,0r0,-224r32,0r0,224r71,0r0,-224r32,0r0,252r-238,0r0,-252r32,0r0,224","w":281},"\u00d8":{"d":"54,-28r71,0r0,-224r32,0r0,224r71,0r0,-224r32,0r0,252r-238,0r0,-252r32,0r0,224","w":281},"\u0429":{"d":"54,-252r0,224r71,0r0,-224r32,0r0,224r71,0r0,-224r32,0r0,224r29,0r-2,85r-29,0r0,-57r-236,0r0,-252r32,0","w":284},"\u00d9":{"d":"54,-252r0,224r71,0r0,-224r32,0r0,224r71,0r0,-224r32,0r0,224r29,0r-2,85r-29,0r0,-57r-236,0r0,-252r32,0","w":284},"\u042a":{"d":"212,-74v0,48,-23,74,-68,74r-81,0r0,-224r-41,0r0,-28r73,0r0,103v69,-6,117,9,117,75xm180,-75v0,-47,-39,-49,-85,-46r0,93v47,2,85,1,85,-47","w":223},"\u00da":{"d":"212,-74v0,48,-23,74,-68,74r-81,0r0,-224r-41,0r0,-28r73,0r0,103v69,-6,117,9,117,75xm180,-75v0,-47,-39,-49,-85,-46r0,93v47,2,85,1,85,-47","w":223},"\u042b":{"d":"170,-74v0,48,-23,74,-68,74r-80,0r0,-252r32,0r0,103v68,-6,116,9,116,75xm138,-75v0,-46,-38,-49,-84,-46r0,93v46,3,84,1,84,-47xm184,-252r32,0r0,252r-32,0r0,-252","w":237},"\u00db":{"d":"170,-74v0,48,-23,74,-68,74r-80,0r0,-252r32,0r0,103v68,-6,116,9,116,75xm138,-75v0,-46,-38,-49,-84,-46r0,93v46,3,84,1,84,-47xm184,-252r32,0r0,252r-32,0r0,-252","w":237},"\u042c":{"d":"170,-74v0,48,-23,74,-68,74r-80,0r0,-252r32,0r0,103v68,-6,116,9,116,75xm138,-75v0,-46,-38,-49,-84,-46r0,93v46,3,84,1,84,-47","w":172},"\u00dc":{"d":"170,-74v0,48,-23,74,-68,74r-80,0r0,-252r32,0r0,103v68,-6,116,9,116,75xm138,-75v0,-46,-38,-49,-84,-46r0,93v46,3,84,1,84,-47","w":172},"\u042d":{"d":"93,-21v45,-1,60,-43,59,-95r-90,0r0,-28r90,0v0,-42,-18,-87,-58,-87v-32,0,-49,22,-52,52r-32,0v1,-46,35,-82,81,-81v67,1,94,55,94,131v0,79,-24,137,-93,137v-53,0,-81,-43,-85,-95r32,0v0,34,22,66,54,66","w":192},"\u00dd":{"d":"93,-21v45,-1,60,-43,59,-95r-90,0r0,-28r90,0v0,-42,-18,-87,-58,-87v-32,0,-49,22,-52,52r-32,0v1,-46,35,-82,81,-81v67,1,94,55,94,131v0,79,-24,137,-93,137v-53,0,-81,-43,-85,-95r32,0v0,34,22,66,54,66","w":192},"\u042e":{"d":"173,8v-68,0,-90,-50,-95,-126r-24,0r0,118r-32,0r0,-252r32,0r0,105r26,0v3,-60,33,-113,93,-113v65,0,94,59,94,134v0,77,-27,134,-94,134xm173,-231v-84,0,-83,210,0,210v46,0,61,-49,61,-105v0,-56,-16,-105,-61,-105","w":274},"\u00de":{"d":"173,8v-68,0,-90,-50,-95,-126r-24,0r0,118r-32,0r0,-252r32,0r0,105r26,0v3,-60,33,-113,93,-113v65,0,94,59,94,134v0,77,-27,134,-94,134xm173,-231v-84,0,-83,210,0,210v46,0,61,-49,61,-105v0,-56,-16,-105,-61,-105","w":274},"\u042f":{"d":"22,-177v0,-49,23,-75,72,-75r82,0r0,252r-32,0r0,-100r-38,0r-47,100r-37,0r52,-104v-34,-4,-53,-34,-52,-73xm54,-176v0,50,42,49,90,47r0,-95v-49,-3,-90,-1,-90,48","w":187},"\u00df":{"d":"22,-177v0,-49,23,-75,72,-75r82,0r0,252r-32,0r0,-100r-38,0r-47,100r-37,0r52,-104v-34,-4,-53,-34,-52,-73xm54,-176v0,50,42,49,90,47r0,-95v-49,-3,-90,-1,-90,48","w":187},"\u0490":{"d":"54,-224r0,224r-32,0r0,-252r98,0r0,-57r29,0r2,85r-97,0","w":146},"\u00a5":{"d":"54,-224r0,224r-32,0r0,-252r98,0r0,-57r29,0r2,85r-97,0","w":146},"\u0406":{"d":"22,-252r32,0r0,252r-32,0r0,-252","w":75},"\u00b2":{"d":"22,-252r32,0r0,252r-32,0r0,-252","w":75},"\u0402":{"d":"184,-69v0,-48,-33,-52,-76,-45r0,114r-32,0r0,-224r-63,0r0,-28r157,0r0,28r-62,0r0,81v63,-9,108,8,108,71v0,54,-36,92,-85,73r0,-30v28,19,53,-5,53,-40","w":239},"\u0452":{"d":"80,-168v-58,5,-31,108,-37,168r-30,0r0,-207r-22,0r0,-22r22,0r0,-23r30,0r0,23r58,0r0,22r-58,0r0,42v6,-15,23,-27,43,-25v54,5,54,43,54,115v0,89,-3,135,-69,142r0,-24v19,2,23,-4,30,-24v5,-16,7,-47,7,-94v0,-56,4,-83,-28,-93","w":153},"\u0403":{"d":"84,-328r36,0r-27,50r-29,0xm54,-224r0,224r-32,0r0,-252r128,0r0,28r-96,0","w":145},"\u0433":{"d":"47,-161r0,161r-30,0r0,-183r101,0r0,22r-71,0","w":118},"\u00e3":{"d":"47,-161r0,161r-30,0r0,-183r101,0r0,22r-71,0","w":118},"\u0453":{"d":"66,-252r35,0r-26,48r-28,0xm47,-161r0,161r-30,0r0,-183r101,0r0,22r-71,0","w":118},"\u0192":{"d":"66,-252r35,0r-26,48r-28,0xm47,-161r0,161r-30,0r0,-183r101,0r0,22r-71,0","w":118},"\u0456":{"d":"17,-183r30,0r0,183r-30,0r0,-183xm17,-219r0,-33r30,0r0,33r-30,0","w":64},"\u00b3":{"d":"17,-183r30,0r0,183r-30,0r0,-183xm17,-219r0,-33r30,0r0,33r-30,0","w":64},"\u0491":{"d":"47,-161r0,161r-30,0r0,-183r73,0r0,-48r26,0r2,70r-71,0","w":113},"\u00b4":{"d":"47,-161r0,161r-30,0r0,-183r73,0r0,-48r26,0r2,70r-71,0","w":113},"\u0408":{"d":"61,8v-49,0,-64,-40,-62,-92r32,0v-1,35,2,63,30,63v28,0,28,-25,29,-63r0,-168r32,0r0,165v-2,60,-10,95,-61,95","w":138},"\u00a3":{"d":"61,8v-49,0,-64,-40,-62,-92r32,0v-1,35,2,63,30,63v28,0,28,-25,29,-63r0,-168r32,0r0,165v-2,60,-10,95,-61,95","w":138},"\u0404":{"d":"149,-179v2,-49,-67,-71,-92,-29v-9,15,-15,36,-16,64r94,0r0,28r-94,0v1,53,15,95,61,95v33,0,48,-32,51,-66r34,0v-6,54,-31,95,-85,95v-70,0,-95,-57,-95,-137v1,-71,25,-130,93,-131v49,-1,79,36,83,81r-34,0","w":194},"\u00aa":{"d":"149,-179v2,-49,-67,-71,-92,-29v-9,15,-15,36,-16,64r94,0r0,28r-94,0v1,53,15,95,61,95v33,0,48,-32,51,-66r34,0v-6,54,-31,95,-85,95v-70,0,-95,-57,-95,-137v1,-71,25,-130,93,-131v49,-1,79,36,83,81r-34,0","w":194},"\u0454":{"d":"112,-126v3,-35,-47,-59,-65,-26v-6,11,-9,27,-9,46r64,0r0,22r-64,0v0,36,9,69,38,69v24,0,37,-23,37,-49r29,0v0,40,-24,73,-66,71v-53,-2,-70,-37,-70,-97v0,-59,18,-99,69,-100v40,-1,66,26,66,64r-29,0","w":146},"\u00ba":{"d":"112,-126v3,-35,-47,-59,-65,-26v-6,11,-9,27,-9,46r64,0r0,22r-64,0v0,36,9,69,38,69v24,0,37,-23,37,-49r29,0v0,40,-24,73,-66,71v-53,-2,-70,-37,-70,-97v0,-59,18,-99,69,-100v40,-1,66,26,66,64r-29,0","w":146},"\u0407":{"d":"-8,-278r0,-28r32,0r0,28r-32,0xm51,-278r0,-28r32,0r0,28r-32,0xm22,-252r32,0r0,252r-32,0r0,-252","w":75},"\u00af":{"d":"-8,-278r0,-28r32,0r0,28r-32,0xm51,-278r0,-28r32,0r0,28r-32,0xm22,-252r32,0r0,252r-32,0r0,-252","w":75},"\u0457":{"d":"17,-183r30,0r0,183r-30,0r0,-183xm-15,-219r0,-33r30,0r0,33r-30,0xm49,-219r0,-33r30,0r0,33r-30,0","w":64},"\u00bf":{"d":"17,-183r30,0r0,183r-30,0r0,-183xm-15,-219r0,-33r30,0r0,33r-30,0xm49,-219r0,-33r30,0r0,33r-30,0","w":64},"\u0409":{"d":"73,-224v-4,96,21,233,-77,224r0,-31v45,7,45,-56,45,-113r0,-108r126,0r0,103v68,-6,119,10,118,75v-1,46,-24,74,-71,74r-79,0r0,-224r-62,0xm252,-75v0,-47,-39,-48,-85,-46r0,93v47,3,85,-1,85,-47","w":308},"\u0160":{"d":"73,-224v-4,96,21,233,-77,224r0,-31v45,7,45,-56,45,-113r0,-108r126,0r0,103v68,-6,119,10,118,75v-1,46,-24,74,-71,74r-79,0r0,-224r-62,0xm252,-75v0,-47,-39,-48,-85,-46r0,93v47,3,85,-1,85,-47","w":308},"\u0459":{"d":"58,-161v-4,79,16,171,-62,161r0,-24v52,3,26,-99,33,-159r103,0r0,72v52,-3,91,5,91,56v0,63,-61,56,-121,55r0,-161r-44,0xm192,-57v0,-32,-27,-33,-60,-32r0,67v34,2,60,-1,60,-35","w":222},"\u0161":{"d":"58,-161v-4,79,16,171,-62,161r0,-24v52,3,26,-99,33,-159r103,0r0,72v52,-3,91,5,91,56v0,63,-61,56,-121,55r0,-161r-44,0xm192,-57v0,-32,-27,-33,-60,-32r0,67v34,2,60,-1,60,-35","w":222},"\u040a":{"d":"292,-74v0,47,-25,74,-70,74r-78,0r0,-121r-90,0r0,121r-32,0r0,-252r32,0r0,103r90,0r0,-103r32,0r0,103v68,-7,116,12,116,75xm260,-75v0,-46,-38,-49,-84,-46r0,93v46,3,84,0,84,-47","w":294},"\u0152":{"d":"292,-74v0,47,-25,74,-70,74r-78,0r0,-121r-90,0r0,121r-32,0r0,-252r32,0r0,103r90,0r0,-103r32,0r0,103v68,-7,116,12,116,75xm260,-75v0,-46,-38,-49,-84,-46r0,93v46,3,84,0,84,-47","w":294},"\u045a":{"d":"231,-55v0,64,-61,56,-121,55r0,-88r-63,0r0,88r-30,0r0,-183r30,0r0,72r63,0r0,-72r30,0r0,72v53,-3,91,5,91,56xm200,-57v0,-32,-28,-32,-60,-31r0,66v34,2,60,-1,60,-35","w":230},"\u0153":{"d":"231,-55v0,64,-61,56,-121,55r0,-88r-63,0r0,88r-30,0r0,-183r30,0r0,72r63,0r0,-72r30,0r0,72v53,-3,91,5,91,56xm200,-57v0,-32,-28,-32,-60,-31r0,66v34,2,60,-1,60,-35","w":230},"\u0458":{"d":"-7,43v20,3,24,-9,24,-30r0,-196r30,0r0,200v2,40,-15,56,-54,50r0,-24xm17,-219r0,-33r30,0r0,33r-30,0","w":64},"\u00bc":{"d":"-7,43v20,3,24,-9,24,-30r0,-196r30,0r0,200v2,40,-15,56,-54,50r0,-24xm17,-219r0,-33r30,0r0,33r-30,0","w":64},"\u0405":{"d":"153,-118v33,49,8,133,-64,126v-51,-5,-83,-32,-82,-88r32,0v-2,34,17,59,52,59v40,0,58,-50,35,-75v-31,-34,-121,-19,-112,-91v-8,-69,88,-95,129,-52v13,14,19,32,20,53r-32,0v-2,-25,-15,-45,-42,-45v-37,0,-55,45,-33,68v17,18,85,27,97,45","w":175},"\u00bd":{"d":"153,-118v33,49,8,133,-64,126v-51,-5,-83,-32,-82,-88r32,0v-2,34,17,59,52,59v40,0,58,-50,35,-75v-31,-34,-121,-19,-112,-91v-8,-69,88,-95,129,-52v13,14,19,32,20,53r-32,0v-2,-25,-15,-45,-42,-45v-37,0,-55,45,-33,68v17,18,85,27,97,45","w":175},"\u040b":{"d":"108,-143v61,-6,108,-2,108,67r0,76r-32,0v-4,-55,21,-132,-55,-116v-4,0,-11,1,-21,2r0,114r-32,0r0,-224r-63,0r0,-28r157,0r0,28r-62,0r0,81","w":239},"\u045b":{"d":"80,-168v-57,6,-31,108,-37,168r-30,0r0,-207r-22,0r0,-22r22,0r0,-23r30,0r0,23r58,0r0,22r-58,0r0,42v7,-14,24,-25,43,-25v76,1,43,118,50,190r-30,0r0,-112v-1,-33,-2,-53,-26,-56","w":153},"\u040c":{"d":"98,-328r36,0r-27,50r-29,0xm54,-145r80,-107r36,0r-91,117r97,135r-38,0r-84,-123r0,123r-32,0r0,-252r32,0r0,107","w":165},"\u043a":{"d":"47,-111r54,-72r33,0r-65,85r69,98r-34,0r-57,-83r0,83r-30,0r0,-183r30,0r0,72","w":133},"\u00ea":{"d":"47,-111r54,-72r33,0r-65,85r69,98r-34,0r-57,-83r0,83r-30,0r0,-183r30,0r0,72","w":133},"\u045c":{"d":"74,-252r34,0r-26,48r-27,0xm47,-111r54,-72r33,0r-65,85r69,98r-34,0r-57,-83r0,83r-30,0r0,-183r30,0r0,72","w":133},"\u0455":{"d":"118,-85v28,35,4,96,-50,92v-43,-3,-63,-19,-64,-61r31,0v-1,23,10,38,32,39v28,2,39,-33,25,-53v-31,-26,-90,-16,-82,-70v-5,-51,68,-66,101,-38v10,9,15,23,15,41r-30,0v1,-20,-9,-33,-27,-33v-26,0,-34,31,-22,49v8,12,65,20,71,34","w":133},"\u00be":{"d":"118,-85v28,35,4,96,-50,92v-43,-3,-63,-19,-64,-61r31,0v-1,23,10,38,32,39v28,2,39,-33,25,-53v-31,-26,-90,-16,-82,-70v-5,-51,68,-66,101,-38v10,9,15,23,15,41r-30,0v1,-20,-9,-33,-27,-33v-26,0,-34,31,-22,49v8,12,65,20,71,34","w":133},"\u040e":{"d":"137,-328v0,45,-58,65,-91,37v-9,-9,-14,-21,-16,-37r28,0v-2,16,10,30,25,30v15,0,27,-14,26,-30r28,0xm18,-32v25,15,47,-1,49,-31r-73,-189r37,0r53,146r43,-146r33,0r-65,207v-7,38,-38,59,-77,44r0,-31","w":149},"\u00a1":{"d":"137,-328v0,45,-58,65,-91,37v-9,-9,-14,-21,-16,-37r28,0v-2,16,10,30,25,30v15,0,27,-14,26,-30r28,0xm18,-32v25,15,47,-1,49,-31r-73,-189r37,0r53,146r43,-146r33,0r-65,207v-7,38,-38,59,-77,44r0,-31","w":149},"\u0443":{"d":"21,40v26,16,33,-15,37,-40r-60,-183r34,0r42,141r34,-141r30,0r-55,205v-9,37,-22,50,-62,44r0,-26","w":134},"\u00f3":{"d":"21,40v26,16,33,-15,37,-40r-60,-183r34,0r42,141r34,-141r30,0r-55,205v-9,37,-22,50,-62,44r0,-26","w":134},"\u045e":{"d":"121,-252v-2,42,-51,63,-83,36v-9,-8,-15,-20,-17,-36r26,0v1,17,8,28,24,28v16,-1,22,-12,24,-28r26,0xm21,40v26,16,33,-15,37,-40r-60,-183r34,0r42,141r34,-141r30,0r-55,205v-9,37,-22,50,-62,44r0,-26","w":134},"\u00a2":{"d":"121,-252v-2,42,-51,63,-83,36v-9,-8,-15,-20,-17,-36r26,0v1,17,8,28,24,28v16,-1,22,-12,24,-28r26,0xm21,40v26,16,33,-15,37,-40r-60,-183r34,0r42,141r34,-141r30,0r-55,205v-9,37,-22,50,-62,44r0,-26","w":134},"\u040f":{"d":"146,-28r0,-224r32,0r0,252r-63,0r0,65r-29,0r0,-65r-63,0r0,-252r32,0r0,224r91,0","w":201},"\u045f":{"d":"112,-22r0,-161r30,0r0,183r-47,0r0,67r-31,0r0,-67r-47,0r0,-183r30,0r0,161r65,0","w":159},"\u0178":{"d":"112,-22r0,-161r30,0r0,183r-47,0r0,67r-31,0r0,-67r-47,0r0,-183r30,0r0,161r65,0","w":159},"\u0401":{"d":"54,-144r100,0r0,28r-100,0r0,88r114,0r0,28r-146,0r0,-252r143,0r0,28r-111,0r0,80xm50,-278r-1,-28r32,0r0,28r-31,0xm108,-278r0,-28r32,0r0,28r-32,0","w":164},"\u00a8":{"d":"54,-144r100,0r0,28r-100,0r0,88r114,0r0,28r-146,0r0,-252r143,0r0,28r-111,0r0,80xm50,-278r-1,-28r32,0r0,28r-31,0xm108,-278r0,-28r32,0r0,28r-32,0","w":164},"\u0451":{"d":"79,-15v21,0,33,-18,35,-38r30,0v-3,35,-25,61,-64,60v-52,-1,-74,-40,-74,-98v0,-58,20,-99,72,-99v52,0,68,43,67,106r-107,0v-1,34,11,68,41,69xm113,-107v8,-51,-39,-81,-65,-44v-7,11,-10,26,-10,44r75,0xm29,-219r0,-33r30,0r0,33r-30,0xm93,-219r0,-33r30,0r0,33r-30,0","w":151},"\u00b8":{"d":"79,-15v21,0,33,-18,35,-38r30,0v-3,35,-25,61,-64,60v-52,-1,-74,-40,-74,-98v0,-58,20,-99,72,-99v52,0,68,43,67,106r-107,0v-1,34,11,68,41,69xm113,-107v8,-51,-39,-81,-65,-44v-7,11,-10,26,-10,44r75,0xm29,-219r0,-33r30,0r0,33r-30,0xm93,-219r0,-33r30,0r0,33r-30,0","w":151},"\u044f":{"d":"6,-125v0,-66,61,-59,123,-58r0,183r-30,0r0,-72r-23,0r-37,72r-32,0r39,-73v-25,-4,-40,-23,-40,-52xm38,-126v0,32,28,34,61,32r0,-67v-34,-1,-61,-1,-61,35","w":145},"\u00ff":{"d":"6,-125v0,-66,61,-59,123,-58r0,183r-30,0r0,-72r-23,0r-37,72r-32,0r39,-73v-25,-4,-40,-23,-40,-52xm38,-126v0,32,28,34,61,32r0,-67v-34,-1,-61,-1,-61,35","w":145},"\u0430":{"d":"71,-168v-22,-1,-34,15,-32,39r-30,0v0,-38,22,-61,62,-61v75,0,59,82,59,150v0,15,1,20,13,17r0,23v-18,2,-37,1,-39,-15v-25,36,-109,27,-100,-33v-6,-52,54,-54,92,-63v7,-20,3,-62,-25,-57xm60,-15v37,0,40,-31,39,-74v-50,20,-64,5,-63,42v0,20,6,32,24,32","w":145},"\u00e0":{"d":"71,-168v-22,-1,-34,15,-32,39r-30,0v0,-38,22,-61,62,-61v75,0,59,82,59,150v0,15,1,20,13,17r0,23v-18,2,-37,1,-39,-15v-25,36,-109,27,-100,-33v-6,-52,54,-54,92,-63v7,-20,3,-62,-25,-57xm60,-15v37,0,40,-31,39,-74v-50,20,-64,5,-63,42v0,20,6,32,24,32","w":145},"\u0431":{"d":"84,7v-90,6,-80,-153,-59,-212v7,-21,24,-33,44,-39v57,-20,52,-7,52,-20r24,0v0,7,0,12,-2,16v-2,4,-25,14,-71,31v-23,9,-38,33,-36,65v6,-21,25,-34,51,-34v49,0,70,43,70,96v1,54,-24,94,-73,97xm85,-164v-32,0,-42,35,-41,73v0,43,8,76,41,76v56,0,55,-149,0,-149","w":164},"\u00e1":{"d":"84,7v-90,6,-80,-153,-59,-212v7,-21,24,-33,44,-39v57,-20,52,-7,52,-20r24,0v0,7,0,12,-2,16v-2,4,-25,14,-71,31v-23,9,-38,33,-36,65v6,-21,25,-34,51,-34v49,0,70,43,70,96v1,54,-24,94,-73,97xm85,-164v-32,0,-42,35,-41,73v0,43,8,76,41,76v56,0,55,-149,0,-149","w":164},"\u0432":{"d":"83,-183v56,-9,68,79,20,86r0,2v22,3,36,20,36,46v0,60,-66,48,-122,49r0,-183r66,0xm102,-135v0,-28,-27,-27,-55,-26r0,54v29,2,55,0,55,-28xm107,-53v0,-33,-28,-32,-60,-31r0,62v32,1,60,1,60,-31","w":146},"\u00e2":{"d":"83,-183v56,-9,68,79,20,86r0,2v22,3,36,20,36,46v0,60,-66,48,-122,49r0,-183r66,0xm102,-135v0,-28,-27,-27,-55,-26r0,54v29,2,55,0,55,-28xm107,-53v0,-33,-28,-32,-60,-31r0,62v32,1,60,1,60,-31","w":146},"\u0434":{"d":"14,-22v22,-44,24,-92,23,-161r105,0r0,161r24,0r-1,70r-28,0r0,-48r-112,0r0,48r-26,0r-3,-70r18,0xm65,-161v1,56,-2,105,-20,139r67,0r0,-139r-47,0","w":163},"\u00e4":{"d":"14,-22v22,-44,24,-92,23,-161r105,0r0,161r24,0r-1,70r-28,0r0,-48r-112,0r0,48r-26,0r-3,-70r18,0xm65,-161v1,56,-2,105,-20,139r67,0r0,-139r-47,0","w":163},"\u0435":{"d":"79,-15v21,0,33,-18,35,-38r30,0v-3,35,-25,61,-64,60v-52,-1,-74,-40,-74,-98v0,-58,20,-99,72,-99v54,0,67,46,67,106r-107,0v-1,34,11,68,41,69xm113,-107v8,-51,-39,-81,-65,-44v-7,11,-10,26,-10,44r75,0","w":151},"\u00e5":{"d":"79,-15v21,0,33,-18,35,-38r30,0v-3,35,-25,61,-64,60v-52,-1,-74,-40,-74,-98v0,-58,20,-99,72,-99v54,0,67,46,67,106r-107,0v-1,34,11,68,41,69xm113,-107v8,-51,-39,-81,-65,-44v-7,11,-10,26,-10,44r75,0","w":151},"\u0436":{"d":"81,0r0,-81r-50,81r-35,0r64,-96r-60,-87r33,0r48,74r0,-74r30,0r0,74r47,-74r34,0r-60,87r63,96r-34,0r-50,-81r0,81r-30,0","w":191},"\u00e6":{"d":"81,0r0,-81r-50,81r-35,0r64,-96r-60,-87r33,0r48,74r0,-74r30,0r0,74r47,-74r34,0r-60,87r63,96r-34,0r-50,-81r0,81r-30,0","w":191},"\u0437":{"d":"132,-49v0,57,-79,71,-113,40v-11,-11,-15,-27,-15,-47r29,0v0,22,10,42,34,41v21,0,33,-13,33,-36v0,-29,-20,-36,-51,-33r0,-22v27,2,45,-2,45,-29v0,-19,-9,-33,-27,-33v-20,0,-32,13,-30,36r-29,0v-1,-36,24,-59,60,-58v57,-12,82,82,28,93r0,2v22,2,36,20,36,46","w":138},"\u00e7":{"d":"132,-49v0,57,-79,71,-113,40v-11,-11,-15,-27,-15,-47r29,0v0,22,10,42,34,41v21,0,33,-13,33,-36v0,-29,-20,-36,-51,-33r0,-22v27,2,45,-2,45,-29v0,-19,-9,-33,-27,-33v-20,0,-32,13,-30,36r-29,0v-1,-36,24,-59,60,-58v57,-12,82,82,28,93r0,2v22,2,36,20,36,46","w":138},"\u0438":{"d":"47,-47r67,-136r33,0r0,183r-31,0r0,-136r-66,136r-33,0r0,-183r30,0r0,136","w":163},"\u00e8":{"d":"47,-47r67,-136r33,0r0,183r-31,0r0,-136r-66,136r-33,0r0,-183r30,0r0,136","w":163},"\u0439":{"d":"47,-47r67,-136r33,0r0,183r-31,0r0,-136r-66,136r-33,0r0,-183r30,0r0,136xm131,-252v3,46,-55,61,-85,36v-9,-8,-15,-19,-15,-36r26,0v0,17,7,28,24,28v17,0,24,-11,24,-28r26,0","w":163},"\u00e9":{"d":"47,-47r67,-136r33,0r0,183r-31,0r0,-136r-66,136r-33,0r0,-183r30,0r0,136xm131,-252v3,46,-55,61,-85,36v-9,-8,-15,-19,-15,-36r26,0v0,17,7,28,24,28v17,0,24,-11,24,-28r26,0","w":163},"\u043b":{"d":"0,-23v42,-4,33,-33,33,-91r0,-69r103,0r0,183r-30,0r0,-161r-44,0v-4,77,17,172,-62,161r0,-23","w":153},"\u00eb":{"d":"0,-23v42,-4,33,-33,33,-91r0,-69r103,0r0,183r-30,0r0,-161r-44,0v-4,77,17,172,-62,161r0,-23","w":153},"\u043c":{"d":"88,0r-42,-129r1,129r-30,0r0,-183r39,0r44,139r45,-139r39,0r0,183r-30,0r0,-129r-41,129r-25,0","w":200},"\u00ec":{"d":"88,0r-42,-129r1,129r-30,0r0,-183r39,0r44,139r45,-139r39,0r0,183r-30,0r0,-129r-41,129r-25,0","w":200},"\u043d":{"d":"47,-85r0,85r-30,0r0,-183r30,0r0,75r63,0r0,-75r30,0r0,183r-30,0r0,-85r-63,0","w":156},"\u00ed":{"d":"47,-85r0,85r-30,0r0,-183r30,0r0,75r63,0r0,-75r30,0r0,183r-30,0r0,-85r-63,0","w":156},"\u043e":{"d":"78,7v-52,0,-72,-44,-72,-99v0,-55,21,-98,72,-98v50,0,71,44,71,98v0,54,-21,99,-71,99xm78,-168v-56,2,-56,151,0,153v55,-3,54,-149,0,-153"},"\u00ee":{"d":"78,7v-52,0,-72,-44,-72,-99v0,-55,21,-98,72,-98v50,0,71,44,71,98v0,54,-21,99,-71,99xm78,-168v-56,2,-56,151,0,153v55,-3,54,-149,0,-153"},"\u043f":{"d":"47,-161r0,161r-30,0r0,-183r124,0r0,183r-30,0r0,-161r-64,0","w":158},"\u00ef":{"d":"47,-161r0,161r-30,0r0,-183r124,0r0,183r-30,0r0,-161r-64,0","w":158},"\u0440":{"d":"90,7v-19,0,-37,-9,-43,-22r0,82r-30,0r0,-250r29,0r0,19v7,-14,22,-26,43,-26v46,1,66,44,66,99v0,52,-18,98,-65,98xm84,-168v-54,0,-53,153,1,153v32,0,38,-36,38,-76v0,-39,-8,-77,-39,-77","w":161},"\u00f0":{"d":"90,7v-19,0,-37,-9,-43,-22r0,82r-30,0r0,-250r29,0r0,19v7,-14,22,-26,43,-26v46,1,66,44,66,99v0,52,-18,98,-65,98xm84,-168v-54,0,-53,153,1,153v32,0,38,-36,38,-76v0,-39,-8,-77,-39,-77","w":161},"\u0441":{"d":"78,-15v22,0,34,-23,34,-50r29,0v-1,41,-23,73,-64,72v-51,-1,-71,-39,-71,-100v0,-55,19,-96,70,-97v36,0,64,28,64,64r-29,0v0,-22,-14,-43,-35,-42v-54,3,-53,153,2,153","w":145},"\u00f1":{"d":"78,-15v22,0,34,-23,34,-50r29,0v-1,41,-23,73,-64,72v-51,-1,-71,-39,-71,-100v0,-55,19,-96,70,-97v36,0,64,28,64,64r-29,0v0,-22,-14,-43,-35,-42v-54,3,-53,153,2,153","w":145},"\u0442":{"d":"48,-161r-48,0r0,-22r127,0r0,22r-49,0r0,161r-30,0r0,-161","w":126},"\u00f2":{"d":"48,-161r-48,0r0,-22r127,0r0,22r-49,0r0,161r-30,0r0,-161","w":126},"\u0444":{"d":"207,-91v0,55,-31,91,-85,91r0,67r-31,0r0,-67v-55,0,-85,-36,-85,-91v0,-55,30,-93,85,-92r0,-69r31,0r0,69v54,-1,85,37,85,92xm91,-161v-56,-3,-65,83,-39,120v9,12,21,19,39,19r0,-139xm122,-22v55,4,65,-84,39,-120v-9,-12,-22,-18,-39,-19r0,139","w":213},"\u00f4":{"d":"207,-91v0,55,-31,91,-85,91r0,67r-31,0r0,-67v-55,0,-85,-36,-85,-91v0,-55,30,-93,85,-92r0,-69r31,0r0,69v54,-1,85,37,85,92xm91,-161v-56,-3,-65,83,-39,120v9,12,21,19,39,19r0,-139xm122,-22v55,4,65,-84,39,-120v-9,-12,-22,-18,-39,-19r0,139","w":213},"\u0445":{"d":"66,-120r33,-63r32,0r-49,88r53,95r-33,0r-36,-70r-37,70r-33,0r53,-95r-49,-88r32,0","w":131},"\u00f5":{"d":"66,-120r33,-63r32,0r-49,88r53,95r-33,0r-36,-70r-37,70r-33,0r53,-95r-49,-88r32,0","w":131},"\u0446":{"d":"47,-22r64,0r0,-161r30,0r0,161r24,0r-2,70r-26,0r0,-48r-120,0r0,-183r30,0r0,161","w":163},"\u00f6":{"d":"47,-22r64,0r0,-161r30,0r0,161r24,0r-2,70r-26,0r0,-48r-120,0r0,-183r30,0r0,161","w":163},"\u0447":{"d":"94,-76v-45,3,-83,4,-83,-46r0,-61r30,0v2,45,-17,103,53,85r0,-85r30,0r0,183r-30,0r0,-76","w":140},"\u00f7":{"d":"94,-76v-45,3,-83,4,-83,-46r0,-61r30,0v2,45,-17,103,53,85r0,-85r30,0r0,183r-30,0r0,-76","w":140},"\u0448":{"d":"47,-22r52,0r0,-161r30,0r0,161r52,0r0,-161r30,0r0,183r-194,0r0,-183r30,0r0,161","w":228},"\u00f8":{"d":"47,-22r52,0r0,-161r30,0r0,161r52,0r0,-161r30,0r0,183r-194,0r0,-183r30,0r0,161","w":228},"\u0449":{"d":"47,-22r52,0r0,-161r30,0r0,161r52,0r0,-161r30,0r0,161r24,0r-2,70r-26,0r0,-48r-190,0r0,-183r30,0r0,161","w":232},"\u00f9":{"d":"47,-22r52,0r0,-161r30,0r0,161r52,0r0,-161r30,0r0,161r24,0r-2,70r-26,0r0,-48r-190,0r0,-183r30,0r0,161","w":232},"\u044a":{"d":"157,-55v0,63,-61,56,-121,55r0,-161r-36,0r0,-22r66,0r0,72v53,-4,91,7,91,56xm125,-57v0,-32,-27,-33,-59,-31r0,66v34,2,59,-1,59,-35","w":161},"\u00fa":{"d":"157,-55v0,63,-61,56,-121,55r0,-161r-36,0r0,-22r66,0r0,72v53,-4,91,7,91,56xm125,-57v0,-32,-27,-33,-59,-31r0,66v34,2,59,-1,59,-35","w":161},"\u044b":{"d":"138,-55v0,62,-61,57,-121,55r0,-183r30,0r0,72v53,-4,91,7,91,56xm149,-183r30,0r0,183r-30,0r0,-183xm106,-57v0,-31,-27,-33,-59,-31r0,66v34,2,59,-1,59,-35","w":196},"\u00fb":{"d":"138,-55v0,62,-61,57,-121,55r0,-183r30,0r0,72v53,-4,91,7,91,56xm149,-183r30,0r0,183r-30,0r0,-183xm106,-57v0,-31,-27,-33,-59,-31r0,66v34,2,59,-1,59,-35","w":196},"\u044c":{"d":"138,-55v0,62,-61,57,-121,55r0,-183r30,0r0,72v53,-4,91,7,91,56xm106,-57v0,-31,-27,-33,-59,-31r0,66v34,2,59,-1,59,-35","w":142},"\u00fc":{"d":"138,-55v0,62,-61,57,-121,55r0,-183r30,0r0,72v53,-4,91,7,91,56xm106,-57v0,-31,-27,-33,-59,-31r0,66v34,2,59,-1,59,-35","w":142},"\u044d":{"d":"33,-63v-6,42,44,65,65,32v6,-10,10,-28,10,-53r-60,0r0,-22r60,0v0,-32,-9,-61,-38,-62v-23,0,-36,18,-35,42r-30,0v0,-38,25,-65,65,-64v57,0,70,40,70,100v0,60,-18,97,-70,97v-44,0,-65,-27,-66,-70r29,0","w":146},"\u00fd":{"d":"33,-63v-6,42,44,65,65,32v6,-10,10,-28,10,-53r-60,0r0,-22r60,0v0,-32,-9,-61,-38,-62v-23,0,-36,18,-35,42r-30,0v0,-38,25,-65,65,-64v57,0,70,40,70,100v0,60,-18,97,-70,97v-44,0,-65,-27,-66,-70r29,0","w":146},"\u044e":{"d":"138,7v-50,0,-70,-39,-71,-92r-20,0r0,85r-30,0r0,-183r30,0r0,75r20,0v0,-46,26,-82,70,-82v50,1,72,42,72,98v0,54,-21,99,-71,99xm138,-168v-57,1,-55,151,0,153v54,-3,55,-150,0,-153","w":215},"\u00fe":{"d":"138,7v-50,0,-70,-39,-71,-92r-20,0r0,85r-30,0r0,-183r30,0r0,75r20,0v0,-46,26,-82,70,-82v50,1,72,42,72,98v0,54,-21,99,-71,99xm138,-168v-57,1,-55,151,0,153v54,-3,55,-150,0,-153","w":215},"-":{"d":"19,-81r0,-31r79,0r0,31r-79,0","w":117}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1990-1996 ParaGraph
 * 
 * Trademark:
 * Pragmatica is a trade mark of ParaGraph
 */
Cufon.registerFont({"w":186,"face":{"font-family":"PragmaticaCondCTT","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 6 4 4 2 2 2 4","ascent":"288","descent":"-72","x-height":"7","bbox":"-23 -325 335.02 81","underline-thickness":"14.4","underline-position":"-21.6","unicode-range":"U+0020-U+0491"},"glyphs":{" ":{"w":83},"\u045d":{"w":83},"\u040d":{"w":83},"\u00a0":{"w":83},"!":{"d":"33,-252r54,0v2,63,-6,116,-12,171r-30,0v-6,-55,-15,-107,-12,-171xm34,0r0,-57r52,0r0,57r-52,0","w":122},"\"":{"d":"69,-252r-15,69r-24,0r-15,-69r54,0xm137,-252r-15,69r-24,0r-15,-69r54,0","w":153},"#":{"d":"187,21r-38,0r9,-56r-39,0r-8,56r-38,0r9,-56r-45,0r6,-41r44,0r9,-55r-45,0r6,-40r45,0r9,-55r37,0r-9,55r39,0r9,-55r37,0r-8,55r44,0r-5,40r-45,0r-9,55r45,0r-6,41r-45,0xm164,-76r8,-55r-38,0r-9,55r39,0","w":299},"$":{"d":"176,-72v1,46,-25,78,-68,79r0,27r-27,0r0,-27v-53,-5,-71,-31,-75,-88r48,0v1,22,10,40,27,44r0,-70v-43,-14,-67,-28,-68,-78v0,-45,23,-74,68,-74r0,-21r27,0r0,21v42,3,65,30,64,76r-48,0v1,-12,-6,-31,-16,-32r0,62v41,12,68,32,68,81xm108,-37v22,-6,28,-60,0,-65r0,65xm81,-215v-18,1,-24,31,-15,46v3,4,8,7,15,10r0,-56"},"%":{"d":"57,0r128,-252r35,0r-129,252r-34,0xm69,-113v-37,0,-55,-31,-55,-72v0,-41,19,-72,55,-72v36,0,55,32,55,72v0,40,-18,72,-55,72xm69,-228v-28,4,-28,83,0,87v27,-5,28,-83,0,-87xm207,5v-36,0,-55,-32,-55,-72v0,-40,18,-72,55,-72v37,0,55,32,55,72v0,40,-19,72,-55,72xm207,-111v-27,4,-28,83,0,87v27,-5,28,-83,0,-87","w":276},"&":{"d":"150,-195v0,31,-15,48,-35,61r26,38r5,-20r43,0v-2,22,-11,45,-22,60r37,56r-55,0r-13,-20v-14,17,-32,27,-60,27v-43,0,-67,-33,-67,-76v0,-42,18,-61,47,-77v-32,-33,-19,-117,40,-113v36,2,54,26,54,64xm78,-111v-33,16,-18,93,24,68v5,-3,9,-7,12,-12xm96,-221v-23,5,-17,41,-2,55v19,-8,29,-50,2,-55","w":198},"'":{"d":"69,-252r-15,69r-24,0r-15,-69r54,0","w":85},"(":{"d":"66,67v-55,-97,-56,-223,0,-319r38,0v-41,103,-41,216,0,319r-38,0","w":118},")":{"d":"14,67v40,-105,40,-214,0,-319r37,0v56,96,55,223,0,319r-37,0","w":119},"*":{"d":"72,-173r-21,33r-19,-19r19,-34r-31,-13r7,-27r31,14r0,-40r27,0r0,40r31,-14r7,27r-31,13r20,34r-20,19","w":144},"+":{"d":"14,-140r92,0r0,-93r29,0r0,93r93,0r0,28r-93,0r0,93r-29,0r0,-93r-92,0r0,-28","w":242},",":{"d":"33,35v18,0,25,-16,25,-35r-25,0r0,-57r52,0v1,57,7,122,-52,121r0,-29","w":120},".":{"d":"33,0r0,-57r52,0r0,57r-52,0","w":120},"\/":{"d":"-5,67r105,-319r29,0r-106,319r-28,0","w":123},"0":{"d":"9,-126v0,-78,20,-133,85,-133v63,0,84,56,84,133v0,78,-20,133,-84,133v-65,0,-85,-55,-85,-133xm94,-37v48,5,36,-125,25,-159v-4,-14,-14,-19,-25,-19v-34,0,-34,38,-34,89v0,53,-1,85,34,89","w":187},"1":{"d":"39,-207v32,3,55,-20,59,-45r41,0r0,252r-53,0r0,-177r-47,0r0,-30","w":207},"2":{"d":"174,-180v0,75,-76,88,-99,136r99,0r0,44r-160,0v-1,-56,19,-70,52,-102v44,-42,55,-31,58,-75v1,-23,-8,-38,-30,-38v-27,-1,-32,21,-31,50r-49,0v-2,-60,22,-94,82,-94v51,0,78,28,78,79","w":189},"3":{"d":"174,-70v-1,51,-27,77,-80,77v-63,1,-85,-32,-86,-94r50,0v0,31,7,49,35,50v24,0,32,-13,32,-38v1,-31,-20,-38,-52,-35r0,-41v29,2,49,-4,48,-32v0,-21,-11,-32,-30,-32v-26,0,-29,18,-30,46r-48,0v1,-61,21,-89,80,-90v45,-1,75,25,75,71v0,33,-18,47,-39,57v29,5,45,26,45,61","w":187},"4":{"d":"102,-57r-96,0r0,-44r96,-151r52,0r0,152r25,0r0,43r-25,0r0,57r-52,0r0,-57xm47,-100r55,0r0,-88"},"5":{"d":"175,-87v-4,59,-25,94,-83,94v-54,0,-78,-29,-80,-80r50,0v-1,21,9,38,31,37v27,-1,32,-20,32,-52v9,-46,-44,-62,-59,-29r-50,0r13,-135r134,0r0,44r-98,0r-6,50v50,-34,121,1,116,71","w":188},"6":{"d":"12,-125v0,-78,16,-132,87,-134v46,-1,70,26,75,66r-46,0v-1,-26,-48,-30,-59,-8v-6,10,-9,25,-9,45v45,-43,121,1,116,69v-5,58,-20,94,-78,94v-72,-1,-86,-54,-86,-132xm95,-134v-25,1,-35,19,-35,47v0,28,9,50,35,50v26,0,35,-22,34,-49v0,-26,-10,-48,-34,-48","w":188},"7":{"d":"46,0v6,-87,37,-153,81,-204r0,-4r-120,0r0,-44r172,0r0,41v-45,51,-75,120,-79,211r-54,0"},"8":{"d":"93,-259v76,0,104,96,47,125v24,11,37,28,37,62v0,51,-30,79,-84,79v-54,0,-84,-28,-84,-79v0,-34,13,-51,37,-62v-18,-7,-31,-29,-31,-54v0,-44,31,-71,78,-71xm58,-77v0,24,11,40,35,40v24,0,36,-16,36,-40v0,-23,-13,-40,-36,-40v-23,0,-35,16,-35,40xm62,-185v0,21,11,35,31,35v20,0,31,-14,31,-35v0,-18,-12,-30,-31,-30v-20,0,-31,12,-31,30","w":187},"9":{"d":"176,-127v0,78,-17,132,-87,134v-46,1,-71,-25,-75,-66r46,0v0,15,14,22,31,22v29,0,37,-29,36,-59v-10,11,-22,17,-42,17v-50,1,-73,-36,-73,-86v1,-59,20,-94,78,-94v71,1,86,54,86,132xm93,-118v25,0,34,-18,34,-47v1,-28,-9,-51,-35,-50v-27,0,-33,22,-34,49v0,27,11,48,35,48","w":189},":":{"d":"33,-126r0,-57r52,0r0,57r-52,0xm33,0r0,-57r52,0r0,57r-52,0","w":120},";":{"d":"33,-126r0,-57r52,0r0,57r-52,0xm33,35v18,0,25,-16,25,-35r-25,0r0,-57r52,0v1,57,7,122,-52,121r0,-29","w":120},"<":{"d":"40,-129r166,96r-14,25r-183,-105r0,-31r183,-105r14,25","w":222},"=":{"d":"14,-176r214,0r0,28r-214,0r0,-28xm14,-104r214,0r0,28r-214,0r0,-28","w":242},">":{"d":"175,-129r-166,-95r15,-25r182,105r0,31r-182,105r-15,-25","w":222},"?":{"d":"84,-215v-22,1,-26,16,-26,43r-49,0v0,-56,20,-84,75,-84v47,0,74,21,74,66v0,55,-57,54,-56,109r-42,0v-10,-58,47,-66,48,-106v0,-17,-7,-28,-24,-28xm55,0r0,-57r52,0r0,57r-52,0","w":168},"@":{"d":"48,-105v0,103,111,163,193,108r17,30v-26,15,-47,24,-85,24v-99,3,-160,-69,-161,-162v-1,-92,70,-161,161,-161v99,0,161,68,162,161v1,50,-35,91,-82,91v-21,0,-30,-8,-37,-16v-9,12,-29,19,-52,18v-53,1,-75,-35,-78,-87v-4,-66,69,-114,120,-73r0,-9r43,0r0,111v1,13,0,19,12,19v25,0,38,-25,38,-54v2,-75,-51,-128,-126,-128v-73,0,-125,58,-125,128xm168,-48v25,0,38,-22,37,-51v0,-29,-9,-51,-36,-51v-28,0,-38,23,-38,51v0,29,11,51,37,51","w":347},"A":{"d":"67,-252r53,0r76,252r-55,0r-13,-47r-69,0r-13,47r-55,0xm70,-90r47,0r-23,-94"},"B":{"d":"200,-71v0,88,-96,70,-178,71r0,-252v76,2,172,-19,168,64v-1,27,-16,45,-37,53v27,6,47,29,47,64xm136,-179v0,-30,-34,-23,-62,-24r0,50v30,0,62,7,62,-26xm145,-77v0,-36,-38,-28,-71,-29r0,57v33,0,71,7,71,-28","w":212},"C":{"d":"113,-42v30,1,36,-19,40,-47r52,0v-6,60,-31,96,-94,96v-74,0,-101,-46,-101,-128v0,-79,25,-137,99,-138v60,-1,92,37,94,93r-52,0v-3,-28,-11,-45,-39,-44v-37,1,-47,40,-46,87v0,45,9,80,47,81","w":209},"D":{"d":"211,-126v0,80,-30,125,-104,126r-85,0r0,-252r89,0v69,1,100,48,100,126xm155,-125v0,-58,-20,-86,-81,-78r0,154v58,5,81,-17,81,-76","w":222},"E":{"d":"74,-152r99,0r0,47r-99,0r0,56r115,0r0,49r-167,0r0,-252r164,0r0,49r-112,0r0,51","w":191},"F":{"d":"74,-145r84,0r0,49r-84,0r0,96r-52,0r0,-252r151,0r0,49r-99,0r0,58","w":172},"G":{"d":"66,-125v-6,67,40,104,83,70v7,-9,12,-21,12,-36r-41,0r0,-46r91,0r0,137r-40,0v-1,-8,2,-21,-1,-27v-12,22,-27,34,-58,34v-78,0,-102,-51,-102,-134v0,-77,33,-133,108,-132v59,1,86,31,92,89r-56,0v0,-26,-11,-40,-36,-40v-42,1,-48,38,-52,85","w":229},"H":{"d":"74,-108r0,108r-52,0r0,-252r52,0r0,95r68,0r0,-95r53,0r0,252r-53,0r0,-108r-68,0","w":217},"I":{"d":"22,-252r52,0r0,252r-52,0r0,-252","w":97},"J":{"d":"79,7v-59,0,-79,-35,-75,-100r53,0v1,27,-4,52,21,51v20,-1,19,-16,20,-41r0,-169r53,0v-10,100,37,259,-72,259","w":170},"K":{"d":"74,-148r73,-104r63,0r-81,104r87,148r-63,0r-59,-105r-20,24r0,81r-52,0r0,-252r52,0r0,104","w":207},"L":{"d":"168,-49r0,49r-146,0r0,-252r52,0r0,203r94,0","w":167},"M":{"d":"120,0r-46,-162r0,162r-52,0r0,-252r71,0r46,165r46,-165r71,0r0,252r-52,0r-1,-162r-45,162r-38,0","w":279},"N":{"d":"77,-150r-3,0r0,150r-52,0r0,-252r53,0r72,149r3,0r0,-149r53,0r0,252r-54,0","w":225},"O":{"d":"219,-126v0,76,-32,133,-105,133v-73,0,-104,-57,-104,-133v0,-76,32,-133,104,-133v72,0,105,57,105,133xm66,-126v1,48,6,84,48,84v41,0,47,-37,48,-84v0,-48,-8,-84,-48,-84v-40,0,-49,37,-48,84","w":229},"P":{"d":"197,-171v1,72,-47,91,-123,84r0,87r-52,0r0,-252r96,0v52,0,78,29,79,81xm140,-170v5,-38,-31,-34,-66,-33r0,67v35,0,70,5,66,-34","w":201},"Q":{"d":"114,-259v111,-6,128,160,78,231r23,28r-24,30r-26,-34v-14,8,-28,11,-51,11v-74,0,-104,-57,-104,-133v-1,-76,31,-129,104,-133xm66,-126v0,55,21,101,71,78r-26,-31r21,-25r23,30v14,-45,14,-139,-41,-136v-39,1,-48,38,-48,84","w":229},"R":{"d":"147,0v-12,-3,7,-105,-39,-93r-34,0r0,93r-52,0r0,-252r105,0v47,-1,69,28,71,72v1,32,-17,57,-39,64v45,-1,20,92,40,116r-52,0xm143,-171v4,-39,-35,-31,-69,-32r0,64v34,0,73,6,69,-32","w":209},"S":{"d":"186,-77v-3,58,-30,83,-88,84v-61,0,-91,-28,-91,-89r53,0v0,28,10,37,38,40v33,3,42,-29,26,-47v-13,-14,-87,-26,-96,-45v-10,-11,-14,-28,-14,-51v0,-76,101,-94,144,-54v14,13,20,32,20,56r-50,0v-1,-19,-11,-27,-32,-27v-29,0,-36,29,-20,43v45,24,114,21,110,90","w":193},"T":{"d":"60,-203r-61,0r0,-49r175,0r0,49r-61,0r0,203r-53,0r0,-203","w":173},"U":{"d":"108,7v-125,0,-83,-149,-90,-259r53,0r0,147v0,41,3,63,37,63v33,0,37,-23,38,-63r0,-147r52,0v-7,110,35,259,-90,259","w":218},"V":{"d":"89,-76r37,-176r58,0r-69,252r-55,0r-69,-252r60,0","w":174},"W":{"d":"133,-180r-32,180r-56,0r-54,-252r55,0r31,178r32,-178r48,0r33,178r30,-178r55,0r-53,252r-57,0","w":266},"X":{"d":"98,-89r-39,89r-64,0r71,-131r-65,-121r61,0r36,85r37,-85r61,0r-65,121r71,131r-64,0","w":196},"Y":{"d":"90,-142r41,-110r56,0r-70,157r0,95r-53,0r0,-95r-73,-157r59,0","w":178},"Z":{"d":"9,-252r162,0r0,45r-104,158r110,0r0,49r-173,0r0,-52r102,-151r-97,0r0,-49","w":182},"[":{"d":"33,-252r81,0r0,33r-38,0r0,252r38,0r0,34r-81,0r0,-319","w":128},"\\":{"d":"129,67r-29,0r-105,-319r28,0","w":123},"]":{"d":"14,-252r81,0r0,319r-81,0r0,-34r37,0r0,-252r-37,0r0,-33","w":129},"^":{"d":"71,-233r-33,32r-33,0r29,-51r73,0r29,51r-33,0","w":141},"_":{"d":"-5,67r0,-29r148,0r0,29r-148,0","w":137},"`":{"d":"41,-252r20,48r-40,0r-30,-48r50,0","w":81},"a":{"d":"90,-153v-17,0,-24,11,-24,29r-47,0v-1,-43,28,-66,71,-66v81,0,69,77,69,152v0,19,-3,30,8,35r0,3r-49,0v-1,-6,0,-14,-3,-18v-22,39,-111,33,-103,-28v-5,-54,54,-55,94,-65v11,-13,5,-42,-16,-42xm82,-30v22,-2,31,-27,29,-55v-17,10,-51,6,-49,34v0,13,6,22,20,21","w":175},"b":{"d":"107,7v-26,0,-34,-12,-45,-29r-2,22r-43,0r0,-252r49,0r0,84v8,-13,22,-22,41,-22v51,2,70,40,70,98v1,59,-19,99,-70,99xm95,-153v-45,1,-44,122,0,123v46,-1,43,-122,0,-123","w":185},"c":{"d":"89,-30v20,-1,24,-17,26,-39r48,0v-3,44,-26,77,-74,76v-54,-1,-82,-37,-81,-98v1,-60,24,-100,83,-99v45,1,67,27,71,72r-47,0v-2,-20,-7,-35,-26,-35v-45,0,-42,123,0,123","w":171},"d":{"d":"8,-92v0,-76,63,-128,112,-78r0,-82r48,0r0,252r-43,0v-2,-7,1,-19,-4,-22v-6,17,-23,29,-44,29v-48,0,-69,-43,-69,-99xm90,-30v46,-2,43,-122,0,-123v-45,2,-44,121,0,123"},"e":{"d":"58,-78v-10,47,51,66,60,25r49,0v-10,39,-30,60,-78,60v-59,0,-80,-37,-81,-99v-1,-58,30,-98,85,-98v60,0,79,48,78,112r-113,0xm120,-109v4,-40,-31,-57,-53,-32v-6,8,-9,18,-9,32r62,0","w":179},"f":{"d":"108,-215v-23,-8,-39,3,-33,32r33,0r0,37r-33,0r0,146r-49,0r0,-146r-27,0r0,-37r27,0v-8,-59,25,-79,82,-69r0,37","w":107},"g":{"d":"170,-183v-9,102,37,255,-77,255v-45,0,-71,-18,-73,-58r47,0v1,15,10,21,26,21v29,2,30,-34,27,-62v-9,13,-22,23,-42,23v-48,0,-69,-37,-69,-89v0,-56,20,-95,70,-97v25,-2,32,14,44,27r0,-20r47,0xm59,-96v0,31,6,55,32,55v25,0,31,-24,31,-54v0,-33,-5,-58,-32,-58v-25,0,-31,25,-31,57","w":187},"h":{"d":"92,-153v-24,0,-25,21,-26,50r0,103r-49,0r0,-252r49,0r0,84v8,-12,25,-23,46,-22v78,1,44,117,51,190r-49,0r0,-106v0,-30,-1,-47,-22,-47","w":180},"i":{"d":"16,-183r49,0r0,183r-49,0r0,-183xm15,-209r0,-43r51,0r0,43r-51,0","w":82},"j":{"d":"-16,29v17,5,26,-3,26,-25r0,-187r49,0r0,192v3,51,-27,68,-75,57r0,-37xm9,-209r0,-43r50,0r0,43r-50,0","w":76},"k":{"d":"66,-113r45,-70r57,0r-58,72r63,111r-56,0r-40,-73v-16,12,-10,46,-11,73r-49,0r0,-252r49,0r0,139","w":164},"l":{"d":"17,-252r49,0r0,252r-49,0r0,-252","w":83},"m":{"d":"89,-153v-20,2,-23,22,-23,48r0,105r-49,0r0,-183r46,0r0,20v7,-15,21,-27,42,-27v25,1,36,13,44,31v10,-18,24,-31,49,-31v77,0,47,116,53,190r-49,0r0,-108v-1,-28,0,-41,-19,-45v-21,2,-25,22,-25,48r0,105r-49,0r0,-108v-1,-30,1,-42,-20,-45","w":267},"n":{"d":"92,-153v-24,0,-25,21,-26,50r0,103r-49,0r0,-183r47,0r0,17v10,-14,25,-23,48,-24v78,-1,44,118,51,190r-49,0r0,-106v0,-30,-1,-47,-22,-47","w":180},"o":{"d":"173,-92v0,57,-27,99,-83,99v-56,0,-82,-41,-82,-99v0,-58,26,-98,82,-98v56,0,83,41,83,98xm58,-92v0,35,3,62,32,62v27,0,33,-27,32,-62v0,-34,-5,-61,-32,-61v-28,0,-32,27,-32,61","w":181},"p":{"d":"107,7v-19,0,-32,-7,-41,-18r0,78r-49,0r0,-250r46,0v1,7,-2,17,1,22v6,-18,20,-29,44,-29v47,0,69,44,69,99v0,54,-20,97,-70,98xm95,-153v-45,1,-44,122,0,123v46,-1,43,-122,0,-123","w":185},"q":{"d":"78,-190v23,0,38,14,46,29r0,-22r45,0r0,250r-49,0r0,-80v-9,12,-22,20,-42,20v-52,1,-71,-44,-70,-98v0,-56,19,-98,70,-99xm90,-30v46,-1,43,-122,0,-123v-45,1,-44,122,0,123"},"r":{"d":"66,-159v8,-23,25,-32,56,-31r0,38v-75,-14,-52,84,-56,152r-49,0r0,-183r49,0r0,24","w":121},"s":{"d":"142,-91v28,44,1,103,-61,98v-49,-4,-76,-20,-76,-65r50,0v-2,18,7,29,25,28v22,4,30,-26,16,-37v-32,-14,-94,-13,-87,-67v-7,-59,85,-68,121,-42v11,9,16,25,17,44r-45,0v0,-14,-6,-19,-20,-21v-23,-3,-29,22,-17,32v13,11,72,16,77,30","w":159},"t":{"d":"106,0v-43,8,-80,9,-80,-48r0,-98r-27,0r0,-37r27,0r0,-55r49,0r0,55r31,0r0,37r-31,0r0,88v-3,28,14,27,31,20r0,38","w":108},"u":{"d":"86,-30v24,-3,27,-19,27,-50r0,-103r49,0r0,183r-49,0r0,-16v-12,15,-22,23,-46,23v-77,-1,-45,-117,-52,-190r49,0r0,106v1,28,0,45,22,47","w":180},"v":{"d":"72,-58r27,-125r53,0r-54,183r-53,0r-54,-183r53,0","w":142},"w":{"d":"111,-113r-22,113r-50,0r-48,-183r53,0r22,114r22,-114r47,0r21,114r23,-114r52,0r-47,183r-51,0","w":222},"x":{"d":"77,-123r25,-60r55,0r-52,88r54,95r-54,0r-28,-62r-28,62r-54,0r54,-95r-52,-88r55,0","w":154},"y":{"d":"109,10v-9,51,-36,68,-87,56r0,-38v22,12,36,-6,38,-30r-64,-181r58,0r31,117r24,-117r52,0","w":155},"z":{"d":"10,-146r0,-37r128,0r0,36r-77,110r80,0r0,37r-137,0r0,-36r78,-110r-72,0","w":146},"{":{"d":"67,-5v0,-34,6,-80,-25,-85r0,-33v58,-13,-17,-153,82,-143r0,26v-27,4,-19,44,-19,75v0,30,-12,45,-33,56r0,5v33,13,36,52,32,99v-1,17,7,30,20,32r0,26v-39,3,-57,-19,-57,-58","w":156},"|":{"d":"63,81r0,-379r28,0r0,379r-28,0","w":157},"}":{"d":"87,-208v0,34,-6,81,25,85r0,33v-59,14,17,153,-82,143r0,-26v26,-5,19,-45,19,-75v1,-30,11,-45,33,-56r0,-5v-34,-13,-35,-52,-32,-99v0,-16,-8,-30,-20,-32r0,-26v39,-3,57,19,57,58","w":156},"~":{"d":"50,-148v19,-2,42,25,48,0r33,0v-2,24,-12,48,-37,49v-18,1,-44,-24,-48,-1r-33,0v2,-26,12,-46,37,-48","w":145},"\u0410":{"d":"67,-252r53,0r76,252r-55,0r-13,-47r-69,0r-13,47r-55,0xm70,-90r47,0r-23,-94"},"\u00c0":{"d":"67,-252r53,0r76,252r-55,0r-13,-47r-69,0r-13,47r-55,0xm70,-90r47,0r-23,-94"},"\u0411":{"d":"199,-76v0,50,-27,76,-79,76r-98,0r0,-252r161,0r0,49r-109,0r0,45v76,-7,125,11,125,82xm143,-77v4,-38,-34,-32,-69,-32r0,60v32,-1,72,7,69,-28","w":209},"\u00c1":{"d":"199,-76v0,50,-27,76,-79,76r-98,0r0,-252r161,0r0,49r-109,0r0,45v76,-7,125,11,125,82xm143,-77v4,-38,-34,-32,-69,-32r0,60v32,-1,72,7,69,-28","w":209},"\u0412":{"d":"200,-71v0,88,-96,70,-178,71r0,-252v76,2,172,-19,168,64v-1,27,-16,45,-37,53v27,6,47,29,47,64xm136,-179v0,-30,-34,-23,-62,-24r0,50v30,0,62,7,62,-26xm145,-77v0,-36,-38,-28,-71,-29r0,57v33,0,71,7,71,-28","w":212},"\u00c2":{"d":"200,-71v0,88,-96,70,-178,71r0,-252v76,2,172,-19,168,64v-1,27,-16,45,-37,53v27,6,47,29,47,64xm136,-179v0,-30,-34,-23,-62,-24r0,50v30,0,62,7,62,-26xm145,-77v0,-36,-38,-28,-71,-29r0,57v33,0,71,7,71,-28","w":212},"\u0413":{"d":"74,-203r0,203r-52,0r0,-252r139,0r0,49r-87,0","w":160},"\u00c3":{"d":"74,-203r0,203r-52,0r0,-252r139,0r0,49r-87,0","w":160},"\u0414":{"d":"15,-49v29,-51,30,-120,29,-203r152,0r0,203r29,0r-3,106r-47,0r0,-57r-131,0r0,57r-47,0r-2,-106r20,0xm94,-203v1,62,-2,116,-23,154r73,0r0,-154r-50,0","w":224},"\u00c4":{"d":"15,-49v29,-51,30,-120,29,-203r152,0r0,203r29,0r-3,106r-47,0r0,-57r-131,0r0,57r-47,0r-2,-106r20,0xm94,-203v1,62,-2,116,-23,154r73,0r0,-154r-50,0","w":224},"\u0415":{"d":"74,-152r99,0r0,47r-99,0r0,56r115,0r0,49r-167,0r0,-252r164,0r0,49r-112,0r0,51","w":191},"\u00c5":{"d":"74,-152r99,0r0,47r-99,0r0,56r115,0r0,49r-167,0r0,-252r164,0r0,49r-112,0r0,51","w":191},"\u0416":{"d":"112,0r-1,-114r-58,114r-62,0r82,-135r-79,-117r60,0r58,103r0,-103r53,0r1,103r56,-103r61,0r-79,117r81,135r-62,0r-58,-114r0,114r-53,0","w":276},"\u00c6":{"d":"112,0r-1,-114r-58,114r-62,0r82,-135r-79,-117r60,0r58,103r0,-103r53,0r1,103r56,-103r61,0r-79,117r81,135r-62,0r-58,-114r0,114r-53,0","w":276},"\u0417":{"d":"198,-68v8,85,-125,93,-169,51v-16,-15,-23,-40,-22,-70r51,0v2,33,12,45,45,45v23,1,39,-10,39,-33v0,-33,-31,-31,-64,-30r0,-47v30,1,57,2,57,-28v0,-21,-12,-31,-34,-30v-29,0,-35,12,-37,40r-51,0v5,-62,26,-89,91,-89v54,-1,87,21,88,71v0,33,-18,46,-42,56v34,9,44,25,48,64","w":210},"\u00c7":{"d":"198,-68v8,85,-125,93,-169,51v-16,-15,-23,-40,-22,-70r51,0v2,33,12,45,45,45v23,1,39,-10,39,-33v0,-33,-31,-31,-64,-30r0,-47v30,1,57,2,57,-28v0,-21,-12,-31,-34,-30v-29,0,-35,12,-37,40r-51,0v5,-62,26,-89,91,-89v54,-1,87,21,88,71v0,33,-18,46,-42,56v34,9,44,25,48,64","w":210},"\u0418":{"d":"74,-92r76,-160r52,0r0,252r-53,0r0,-162r-75,162r-52,0r0,-252r52,0r0,160","w":225},"\u00c8":{"d":"74,-92r76,-160r52,0r0,252r-53,0r0,-162r-75,162r-52,0r0,-252r52,0r0,160","w":225},"\u0419":{"d":"74,-92r76,-160r52,0r0,252r-53,0r0,-162r-75,162r-52,0r0,-252r52,0r0,160xm172,-314v2,48,-69,64,-103,37v-11,-9,-17,-21,-17,-37r37,0v0,13,8,24,23,24v14,0,23,-11,23,-24r37,0","w":225},"\u00c9":{"d":"74,-92r76,-160r52,0r0,252r-53,0r0,-162r-75,162r-52,0r0,-252r52,0r0,160xm172,-314v2,48,-69,64,-103,37v-11,-9,-17,-21,-17,-37r37,0v0,13,8,24,23,24v14,0,23,-11,23,-24r37,0","w":225},"\u041a":{"d":"76,-146r63,-106r60,0r-81,115r86,137r-63,0v-23,-40,-41,-86,-67,-123r0,123r-52,0r0,-252r52,0v2,34,-4,76,2,106","w":195},"\u00ca":{"d":"76,-146r63,-106r60,0r-81,115r86,137r-63,0v-23,-40,-41,-86,-67,-123r0,123r-52,0r0,-252r52,0v2,34,-4,76,2,106","w":195},"\u041b":{"d":"-1,-49v45,6,46,-34,47,-83r2,-120r154,0r0,252r-53,0r0,-203r-51,0v-5,96,16,220,-99,203r0,-49","w":225},"\u00cb":{"d":"-1,-49v45,6,46,-34,47,-83r2,-120r154,0r0,252r-53,0r0,-203r-51,0v-5,96,16,220,-99,203r0,-49","w":225},"\u041c":{"d":"120,0r-46,-162r0,162r-52,0r0,-252r71,0r46,165r46,-165r71,0r0,252r-52,0r-1,-162r-45,162r-38,0","w":279},"\u00cc":{"d":"120,0r-46,-162r0,162r-52,0r0,-252r71,0r46,165r46,-165r71,0r0,252r-52,0r-1,-162r-45,162r-38,0","w":279},"\u041d":{"d":"74,-108r0,108r-52,0r0,-252r52,0r0,95r68,0r0,-95r53,0r0,252r-53,0r0,-108r-68,0","w":217},"\u00cd":{"d":"74,-108r0,108r-52,0r0,-252r52,0r0,95r68,0r0,-95r53,0r0,252r-53,0r0,-108r-68,0","w":217},"\u041e":{"d":"219,-126v0,76,-32,133,-105,133v-73,0,-104,-57,-104,-133v0,-76,32,-133,104,-133v72,0,105,57,105,133xm66,-126v1,48,6,84,48,84v41,0,47,-37,48,-84v0,-48,-8,-84,-48,-84v-40,0,-49,37,-48,84","w":229},"\u00ce":{"d":"219,-126v0,76,-32,133,-105,133v-73,0,-104,-57,-104,-133v0,-76,32,-133,104,-133v72,0,105,57,105,133xm66,-126v1,48,6,84,48,84v41,0,47,-37,48,-84v0,-48,-8,-84,-48,-84v-40,0,-49,37,-48,84","w":229},"\u041f":{"d":"74,-203r0,203r-52,0r0,-252r176,0r0,252r-53,0r0,-203r-71,0","w":220},"\u00cf":{"d":"74,-203r0,203r-52,0r0,-252r176,0r0,252r-53,0r0,-203r-71,0","w":220},"\u0420":{"d":"197,-171v1,72,-47,91,-123,84r0,87r-52,0r0,-252r96,0v52,0,78,29,79,81xm140,-170v5,-38,-31,-34,-66,-33r0,67v35,0,70,5,66,-34","w":201},"\u00d0":{"d":"197,-171v1,72,-47,91,-123,84r0,87r-52,0r0,-252r96,0v52,0,78,29,79,81xm140,-170v5,-38,-31,-34,-66,-33r0,67v35,0,70,5,66,-34","w":201},"\u0421":{"d":"113,-42v30,1,36,-19,40,-47r52,0v-6,60,-31,96,-94,96v-74,0,-101,-46,-101,-128v0,-79,25,-137,99,-138v60,-1,92,37,94,93r-52,0v-3,-28,-11,-45,-39,-44v-37,1,-47,40,-46,87v0,45,9,80,47,81","w":209},"\u00d1":{"d":"113,-42v30,1,36,-19,40,-47r52,0v-6,60,-31,96,-94,96v-74,0,-101,-46,-101,-128v0,-79,25,-137,99,-138v60,-1,92,37,94,93r-52,0v-3,-28,-11,-45,-39,-44v-37,1,-47,40,-46,87v0,45,9,80,47,81","w":209},"\u0422":{"d":"60,-203r-61,0r0,-49r175,0r0,49r-61,0r0,203r-53,0r0,-203","w":173},"\u00d2":{"d":"60,-203r-61,0r0,-49r175,0r0,49r-61,0r0,203r-53,0r0,-203","w":173},"\u0423":{"d":"24,-50v20,10,45,3,47,-20r-75,-182r62,0r41,123r33,-123r56,0r-66,201v-11,45,-46,65,-98,51r0,-50","w":178},"\u00d3":{"d":"24,-50v20,10,45,3,47,-20r-75,-182r62,0r41,123r33,-123r56,0r-66,201v-11,45,-46,65,-98,51r0,-50","w":178},"\u0424":{"d":"5,-129v0,-61,39,-105,104,-102r0,-35r52,0r0,35v66,-4,104,43,104,102v0,62,-37,106,-104,103r0,35r-52,0r0,-35v-67,3,-104,-40,-104,-103xm61,-129v0,38,15,56,52,55r0,-109v-35,-2,-52,18,-52,54xm209,-129v0,-36,-17,-56,-52,-54v2,35,-4,78,2,109v34,0,51,-19,50,-55","w":270},"\u00d4":{"d":"5,-129v0,-61,39,-105,104,-102r0,-35r52,0r0,35v66,-4,104,43,104,102v0,62,-37,106,-104,103r0,35r-52,0r0,-35v-67,3,-104,-40,-104,-103xm61,-129v0,38,15,56,52,55r0,-109v-35,-2,-52,18,-52,54xm209,-129v0,-36,-17,-56,-52,-54v2,35,-4,78,2,109v34,0,51,-19,50,-55","w":270},"\u0425":{"d":"98,-89r-39,89r-64,0r71,-131r-65,-121r61,0r36,85r37,-85r61,0r-65,121r71,131r-64,0","w":196},"\u00d5":{"d":"98,-89r-39,89r-64,0r71,-131r-65,-121r61,0r36,85r37,-85r61,0r-65,121r71,131r-64,0","w":196},"\u0426":{"d":"74,-49r73,0r0,-203r53,0r0,203r28,0r-2,106r-47,0r0,-57r-157,0r0,-252r52,0r0,203","w":227},"\u00d6":{"d":"74,-49r73,0r0,-203r53,0r0,203r28,0r-2,106r-47,0r0,-57r-157,0r0,-252r52,0r0,203","w":227},"\u0427":{"d":"128,-102v-67,8,-116,-1,-116,-73r0,-77r52,0v0,55,-13,122,64,101r0,-101r52,0r0,252r-52,0r0,-102","w":203},"\u00d7":{"d":"128,-102v-67,8,-116,-1,-116,-73r0,-77r52,0v0,55,-13,122,64,101r0,-101r52,0r0,252r-52,0r0,-102","w":203},"\u0428":{"d":"74,-49r58,0r0,-203r52,0r0,203r58,0r0,-203r52,0r0,252r-272,0r0,-252r52,0r0,203","w":317},"\u00d8":{"d":"74,-49r58,0r0,-203r52,0r0,203r58,0r0,-203r52,0r0,252r-272,0r0,-252r52,0r0,203","w":317},"\u0429":{"d":"74,-49r58,0r0,-203r52,0r0,203r58,0r0,-203r52,0r0,203r29,0r-2,104r-47,0r0,-55r-252,0r0,-252r52,0r0,203","w":322},"\u00d9":{"d":"74,-49r58,0r0,-203r52,0r0,203r58,0r0,-203r52,0r0,203r29,0r-2,104r-47,0r0,-55r-252,0r0,-252r52,0r0,203","w":322},"\u042a":{"d":"235,-78v-1,53,-23,78,-78,78r-97,0r0,-203r-38,0r0,-49r90,0r0,91v75,-7,126,13,123,83xm179,-80v0,-37,-33,-32,-67,-32r0,63v33,0,67,5,67,-31","w":242},"\u00da":{"d":"235,-78v-1,53,-23,78,-78,78r-97,0r0,-203r-38,0r0,-49r90,0r0,91v75,-7,126,13,123,83xm179,-80v0,-37,-33,-32,-67,-32r0,63v33,0,67,5,67,-31","w":242},"\u042b":{"d":"197,-78v-1,54,-23,78,-79,78r-96,0r0,-252r52,0r0,91v75,-7,125,14,123,83xm140,-80v0,-37,-32,-32,-66,-32r0,63v33,0,66,5,66,-31xm207,-252r52,0r0,252r-52,0r0,-252","w":282},"\u00db":{"d":"197,-78v-1,54,-23,78,-79,78r-96,0r0,-252r52,0r0,91v75,-7,125,14,123,83xm140,-80v0,-37,-32,-32,-66,-32r0,63v33,0,66,5,66,-31xm207,-252r52,0r0,252r-52,0r0,-252","w":282},"\u042c":{"d":"197,-78v-1,54,-23,78,-79,78r-96,0r0,-252r52,0r0,91v75,-7,125,14,123,83xm140,-80v0,-37,-32,-32,-66,-32r0,63v33,0,66,5,66,-31","w":204},"\u00dc":{"d":"197,-78v-1,54,-23,78,-79,78r-96,0r0,-252r52,0r0,91v75,-7,125,14,123,83xm140,-80v0,-37,-32,-32,-66,-32r0,63v33,0,66,5,66,-31","w":204},"\u042d":{"d":"62,-91v-5,49,59,64,84,33v9,-11,12,-27,11,-46r-77,0r0,-46r77,0v-1,-36,-14,-60,-48,-60v-28,0,-41,15,-44,42r-54,0v2,-56,35,-91,95,-91v78,0,107,49,107,130v0,83,-27,134,-104,136v-62,1,-97,-40,-100,-98r53,0","w":223},"\u00dd":{"d":"62,-91v-5,49,59,64,84,33v9,-11,12,-27,11,-46r-77,0r0,-46r77,0v-1,-36,-14,-60,-48,-60v-28,0,-41,15,-44,42r-54,0v2,-56,35,-91,95,-91v78,0,107,49,107,130v0,83,-27,134,-104,136v-62,1,-97,-40,-100,-98r53,0","w":223},"\u042e":{"d":"204,7v-71,-1,-97,-45,-104,-115r-26,0r0,108r-52,0r0,-252r52,0r0,95r28,0v12,-65,34,-101,102,-102v74,-1,105,56,105,133v0,77,-30,134,-105,133xm204,-42v41,0,49,-37,49,-84v0,-47,-9,-84,-49,-84v-40,0,-48,37,-48,84v0,48,6,84,48,84","w":319},"\u00de":{"d":"204,7v-71,-1,-97,-45,-104,-115r-26,0r0,108r-52,0r0,-252r52,0r0,95r28,0v12,-65,34,-101,102,-102v74,-1,105,56,105,133v0,77,-30,134,-105,133xm204,-42v41,0,49,-37,49,-84v0,-47,-9,-84,-49,-84v-40,0,-48,37,-48,84v0,48,6,84,48,84","w":319},"\u042f":{"d":"7,-171v0,-53,26,-81,75,-81r104,0r0,252r-52,0r0,-87r-21,0r-39,87r-61,0r49,-92v-36,-5,-56,-36,-55,-79xm63,-170v0,38,35,35,71,34r0,-67v-36,-1,-71,-4,-71,33","w":209},"\u00df":{"d":"7,-171v0,-53,26,-81,75,-81r104,0r0,252r-52,0r0,-87r-21,0r-39,87r-61,0r49,-92v-36,-5,-56,-36,-55,-79xm63,-170v0,38,35,35,71,34r0,-67v-36,-1,-71,-4,-71,33","w":209},"\u0490":{"d":"74,-203r0,203r-52,0r0,-252r90,0r0,-57r47,0r2,106r-87,0","w":160},"\u00a5":{"d":"74,-203r0,203r-52,0r0,-252r90,0r0,-57r47,0r2,106r-87,0","w":160},"\u0406":{"d":"22,-252r52,0r0,252r-52,0r0,-252","w":97},"\u00b2":{"d":"22,-252r52,0r0,252r-52,0r0,-252","w":97},"\u0402":{"d":"177,-69v0,-35,-34,-38,-67,-32r0,101r-53,0r0,-203r-58,0r0,-49r179,0r0,49r-68,0r0,53v68,-10,119,9,119,79v0,58,-46,92,-102,73r0,-49v20,10,50,6,50,-22","w":241},"\u0452":{"d":"92,-139v-45,7,-20,92,-26,139r-49,0r0,-202r-27,0r0,-28r27,0r0,-22r49,0r0,22r50,0r0,28r-50,0r0,48v8,-12,25,-21,46,-21v77,-2,45,114,52,184v5,52,-30,68,-75,57r0,-37v16,5,25,-3,25,-25r0,-95v0,-31,-1,-45,-22,-48","w":180},"\u0403":{"d":"76,-323r51,0r-31,47r-40,0xm74,-203r0,203r-52,0r0,-252r139,0r0,49r-87,0","w":160},"\u0433":{"d":"66,-146r0,146r-49,0r0,-183r116,0r0,37r-67,0","w":132},"\u00e3":{"d":"66,-146r0,146r-49,0r0,-183r116,0r0,37r-67,0","w":132},"\u0453":{"d":"66,-252r50,0r-30,48r-40,0xm66,-146r0,146r-49,0r0,-183r116,0r0,37r-67,0","w":132},"\u0192":{"d":"66,-252r50,0r-30,48r-40,0xm66,-146r0,146r-49,0r0,-183r116,0r0,37r-67,0","w":132},"\u0456":{"d":"16,-183r49,0r0,183r-49,0r0,-183xm15,-209r0,-43r51,0r0,43r-51,0","w":82},"\u00b3":{"d":"16,-183r49,0r0,183r-49,0r0,-183xm15,-209r0,-43r51,0r0,43r-51,0","w":82},"\u0491":{"d":"66,-146r0,146r-49,0r0,-183r71,0r0,-47r42,0r3,84r-67,0","w":132},"\u00b4":{"d":"66,-146r0,146r-49,0r0,-183r71,0r0,-47r42,0r3,84r-67,0","w":132},"\u0408":{"d":"79,7v-59,0,-79,-35,-75,-100r53,0v1,27,-4,52,21,51v20,-1,19,-16,20,-41r0,-169r53,0v-10,100,37,259,-72,259","w":170},"\u00a3":{"d":"79,7v-59,0,-79,-35,-75,-100r53,0v1,27,-4,52,21,51v20,-1,19,-16,20,-41r0,-169r53,0v-10,100,37,259,-72,259","w":170},"\u0404":{"d":"159,-168v2,-42,-56,-55,-79,-27v-8,10,-13,25,-13,45r77,0r0,46r-77,0v-1,37,12,62,48,62v32,0,44,-18,46,-49r54,0v-3,59,-39,99,-101,98v-76,0,-103,-52,-103,-133v0,-84,29,-132,107,-133v59,-1,92,35,94,91r-53,0","w":223},"\u00aa":{"d":"159,-168v2,-42,-56,-55,-79,-27v-8,10,-13,25,-13,45r77,0r0,46r-77,0v-1,37,12,62,48,62v32,0,44,-18,46,-49r54,0v-3,59,-39,99,-101,98v-76,0,-103,-52,-103,-133v0,-84,29,-132,107,-133v59,-1,92,35,94,91r-53,0","w":223},"\u0454":{"d":"121,-117v4,-33,-39,-48,-55,-24v-5,8,-7,17,-7,30r51,0r0,37r-51,0v0,28,7,44,32,44v21,0,32,-15,32,-39r48,0v-2,48,-29,76,-80,76v-55,-1,-82,-35,-82,-96v0,-65,24,-99,82,-101v49,-1,78,29,79,73r-49,0","w":177},"\u00ba":{"d":"121,-117v4,-33,-39,-48,-55,-24v-5,8,-7,17,-7,30r51,0r0,37r-51,0v0,28,7,44,32,44v21,0,32,-15,32,-39r48,0v-2,48,-29,76,-80,76v-55,-1,-82,-35,-82,-96v0,-65,24,-99,82,-101v49,-1,78,29,79,73r-49,0","w":177},"\u0407":{"d":"-7,-276r0,-38r43,0r0,38r-43,0xm61,-276r0,-38r43,0r0,38r-43,0xm22,-252r52,0r0,252r-52,0r0,-252","w":97},"\u00af":{"d":"-7,-276r0,-38r43,0r0,38r-43,0xm61,-276r0,-38r43,0r0,38r-43,0xm22,-252r52,0r0,252r-52,0r0,-252","w":97},"\u0457":{"d":"-23,-204r0,-43r50,0r0,43r-50,0xm57,-204r0,-43r50,0r0,43r-50,0xm17,-183r49,0r0,183r-49,0r0,-183","w":83},"\u00bf":{"d":"-23,-204r0,-43r50,0r0,43r-50,0xm57,-204r0,-43r50,0r0,43r-50,0xm17,-183r49,0r0,183r-49,0r0,-183","w":83},"\u0409":{"d":"324,-78v-2,54,-22,78,-78,78r-97,0r0,-203r-51,0v-5,96,16,220,-99,203r0,-49v45,5,46,-33,47,-83r2,-120r154,0r0,91v75,-7,124,13,122,83xm268,-80v0,-37,-32,-32,-66,-32r0,63v33,0,66,5,66,-31","w":332},"\u0160":{"d":"324,-78v-2,54,-22,78,-78,78r-97,0r0,-203r-51,0v-5,96,16,220,-99,203r0,-49v45,5,46,-33,47,-83r2,-120r154,0r0,91v75,-7,124,13,122,83xm268,-80v0,-37,-32,-32,-66,-32r0,63v33,0,66,5,66,-31","w":332},"\u0459":{"d":"255,-56v0,73,-76,54,-140,56r0,-146r-34,0v-2,80,6,167,-82,146r0,-38v53,9,27,-92,35,-145r130,0r0,65v57,-3,91,8,91,62xm204,-58v2,-23,-17,-24,-40,-23r0,44v21,0,42,2,40,-21","w":259},"\u0161":{"d":"255,-56v0,73,-76,54,-140,56r0,-146r-34,0v-2,80,6,167,-82,146r0,-38v53,9,27,-92,35,-145r130,0r0,65v57,-3,91,8,91,62xm204,-58v2,-23,-17,-24,-40,-23r0,44v21,0,42,2,40,-21","w":259},"\u040a":{"d":"317,-78v-2,54,-22,78,-78,78r-97,0r0,-108r-68,0r0,108r-52,0r0,-252r52,0r0,95r68,0r0,-95r53,0r0,91v74,-7,124,13,122,83xm261,-80v0,-37,-32,-32,-66,-32r0,63v33,0,66,5,66,-31","w":325},"\u0152":{"d":"317,-78v-2,54,-22,78,-78,78r-97,0r0,-108r-68,0r0,108r-52,0r0,-252r52,0r0,95r68,0r0,-95r53,0r0,91v74,-7,124,13,122,83xm261,-80v0,-37,-32,-32,-66,-32r0,63v33,0,66,5,66,-31","w":325},"\u045a":{"d":"253,-56v0,72,-76,54,-140,56r0,-77r-47,0r0,77r-49,0r0,-183r49,0r0,69r47,0r0,-69r49,0r0,65v57,-3,91,8,91,62xm202,-58v2,-23,-17,-24,-40,-23r0,44v21,0,42,2,40,-21","w":257},"\u0153":{"d":"253,-56v0,72,-76,54,-140,56r0,-77r-47,0r0,77r-49,0r0,-183r49,0r0,69r47,0r0,-69r49,0r0,65v57,-3,91,8,91,62xm202,-58v2,-23,-17,-24,-40,-23r0,44v21,0,42,2,40,-21","w":257},"\u0458":{"d":"-16,29v17,5,26,-3,26,-25r0,-187r49,0r0,192v3,51,-27,68,-75,57r0,-37xm9,-209r0,-43r50,0r0,43r-50,0","w":76},"\u00bc":{"d":"-16,29v17,5,26,-3,26,-25r0,-187r49,0r0,192v3,51,-27,68,-75,57r0,-37xm9,-209r0,-43r50,0r0,43r-50,0","w":76},"\u0405":{"d":"186,-77v-3,58,-30,83,-88,84v-61,0,-91,-28,-91,-89r53,0v0,28,10,37,38,40v33,3,42,-29,26,-47v-13,-14,-87,-26,-96,-45v-10,-11,-14,-28,-14,-51v0,-76,101,-94,144,-54v14,13,20,32,20,56r-50,0v-1,-19,-11,-27,-32,-27v-29,0,-36,29,-20,43v45,24,114,21,110,90","w":193},"\u00bd":{"d":"186,-77v-3,58,-30,83,-88,84v-61,0,-91,-28,-91,-89r53,0v0,28,10,37,38,40v33,3,42,-29,26,-47v-13,-14,-87,-26,-96,-45v-10,-11,-14,-28,-14,-51v0,-76,101,-94,144,-54v14,13,20,32,20,56r-50,0v-1,-19,-11,-27,-32,-27v-29,0,-36,29,-20,43v45,24,114,21,110,90","w":193},"\u040b":{"d":"110,-150v68,-9,116,4,116,73r0,77r-53,0v-4,-42,15,-106,-33,-103r-30,2r0,101r-53,0r0,-203r-58,0r0,-49r179,0r0,49r-68,0r0,53","w":237},"\u045b":{"d":"92,-139v-45,7,-20,92,-26,139r-49,0r0,-202r-27,0r0,-28r27,0r0,-22r49,0r0,22r50,0r0,28r-50,0r0,48v8,-12,25,-21,46,-21v75,-2,45,106,51,175r-49,0r0,-91v0,-31,-1,-45,-22,-48","w":180},"\u040c":{"d":"101,-323r51,0r-31,47r-40,0xm76,-146r63,-106r60,0r-81,115r86,137r-63,0v-23,-40,-41,-86,-67,-123r0,123r-52,0r0,-252r52,0v2,34,-4,76,2,106","w":195},"\u043a":{"d":"66,-109v16,-23,28,-50,43,-74r52,0r-60,86r63,97r-55,0r-43,-80r0,80r-49,0r0,-183r49,0r0,74","w":155},"\u00ea":{"d":"66,-109v16,-23,28,-50,43,-74r52,0r-60,86r63,97r-55,0r-43,-80r0,80r-49,0r0,-183r49,0r0,74","w":155},"\u045c":{"d":"77,-252r50,0r-30,48r-40,0xm66,-109v16,-23,28,-50,43,-74r52,0r-60,86r63,97r-55,0r-43,-80r0,80r-49,0r0,-183r49,0r0,74","w":155},"\u0455":{"d":"153,-55v0,71,-93,75,-130,45v-13,-10,-19,-27,-18,-48r50,0v-2,18,7,29,25,28v22,4,30,-26,16,-37v-32,-14,-94,-13,-87,-67v-7,-59,85,-68,121,-42v11,9,16,25,17,44r-45,0v0,-14,-6,-19,-20,-21v-23,-3,-29,22,-17,32v12,10,73,16,77,30v7,9,11,21,11,36","w":159},"\u00be":{"d":"153,-55v0,71,-93,75,-130,45v-13,-10,-19,-27,-18,-48r50,0v-2,18,7,29,25,28v22,4,30,-26,16,-37v-32,-14,-94,-13,-87,-67v-7,-59,85,-68,121,-42v11,9,16,25,17,44r-45,0v0,-14,-6,-19,-20,-21v-23,-3,-29,22,-17,32v12,10,73,16,77,30v7,9,11,21,11,36","w":159},"\u040e":{"d":"158,-325v2,48,-69,62,-101,36v-10,-9,-16,-20,-17,-36r37,0v-1,15,8,24,22,24v13,-1,22,-10,22,-24r37,0xm24,-50v20,10,45,3,47,-20r-75,-182r62,0r41,123r33,-123r56,0r-66,201v-11,45,-46,65,-98,51r0,-50","w":178},"\u00a1":{"d":"158,-325v2,48,-69,62,-101,36v-10,-9,-16,-20,-17,-36r37,0v-1,15,8,24,22,24v13,-1,22,-10,22,-24r37,0xm24,-50v20,10,45,3,47,-20r-75,-182r62,0r41,123r33,-123r56,0r-66,201v-11,45,-46,65,-98,51r0,-50","w":178},"\u0443":{"d":"109,10v-9,51,-36,68,-87,56r0,-38v22,12,36,-6,38,-30r-64,-181r58,0r31,117r24,-117r52,0","w":155},"\u00f3":{"d":"109,10v-9,51,-36,68,-87,56r0,-38v22,12,36,-6,38,-30r-64,-181r58,0r31,117r24,-117r52,0","w":155},"\u045e":{"d":"140,-254v-1,66,-119,66,-119,0r37,0v0,14,9,24,23,24v13,-1,22,-10,22,-24r37,0xm109,10v-9,51,-36,68,-87,56r0,-38v22,12,36,-6,38,-30r-64,-181r58,0r31,117r24,-117r52,0","w":155},"\u00a2":{"d":"140,-254v-1,66,-119,66,-119,0r37,0v0,14,9,24,23,24v13,-1,22,-10,22,-24r37,0xm109,10v-9,51,-36,68,-87,56r0,-38v22,12,36,-6,38,-30r-64,-181r58,0r31,117r24,-117r52,0","w":155},"\u040f":{"d":"147,-49r0,-203r53,0r0,252r-66,0r0,72r-47,0r0,-72r-65,0r0,-252r52,0r0,203r73,0","w":222},"\u045f":{"d":"66,-37r49,0r0,-146r49,0r0,183r-52,0r0,58r-43,0r0,-58r-52,0r0,-183r49,0r0,146","w":180},"\u0178":{"d":"66,-37r49,0r0,-146r49,0r0,183r-52,0r0,58r-43,0r0,-58r-52,0r0,-183r49,0r0,146","w":180},"\u0401":{"d":"74,-152r99,0r0,47r-99,0r0,56r115,0r0,49r-167,0r0,-252r164,0r0,49r-112,0r0,51xm49,-314r43,0r0,38r-43,0r0,-38xm117,-314r44,0r0,38r-44,0r0,-38","w":191},"\u00a8":{"d":"74,-152r99,0r0,47r-99,0r0,56r115,0r0,49r-167,0r0,-252r164,0r0,49r-112,0r0,51xm49,-314r43,0r0,38r-43,0r0,-38xm117,-314r44,0r0,38r-44,0r0,-38","w":191},"\u0451":{"d":"58,-78v-10,47,51,66,60,25r49,0v-10,39,-30,60,-78,60v-59,0,-80,-37,-81,-99v-1,-58,30,-98,85,-98v60,0,79,48,78,112r-113,0xm120,-109v4,-40,-31,-57,-53,-32v-6,8,-9,18,-9,32r62,0xm30,-209r0,-43r51,0r0,43r-51,0xm104,-209r0,-43r50,0r0,43r-50,0","w":179},"\u00b8":{"d":"58,-78v-10,47,51,66,60,25r49,0v-10,39,-30,60,-78,60v-59,0,-80,-37,-81,-99v-1,-58,30,-98,85,-98v60,0,79,48,78,112r-113,0xm120,-109v4,-40,-31,-57,-53,-32v-6,8,-9,18,-9,32r62,0xm30,-209r0,-43r51,0r0,43r-51,0xm104,-209r0,-43r50,0r0,43r-50,0","w":179},"\u044f":{"d":"8,-123v1,-37,18,-61,56,-60r89,0r0,183r-49,0r0,-63r-10,0r-30,63r-54,0r39,-66v-27,-4,-41,-25,-41,-57xm58,-123v0,24,22,24,46,23r0,-46v-24,-1,-46,-1,-46,23","w":170},"\u00ff":{"d":"8,-123v1,-37,18,-61,56,-60r89,0r0,183r-49,0r0,-63r-10,0r-30,63r-54,0r39,-66v-27,-4,-41,-25,-41,-57xm58,-123v0,24,22,24,46,23r0,-46v-24,-1,-46,-1,-46,23","w":170},"\u0430":{"d":"90,-153v-17,0,-24,11,-24,29r-47,0v-1,-43,28,-66,71,-66v81,0,69,77,69,152v0,19,-3,30,8,35r0,3r-49,0v-1,-6,0,-14,-3,-18v-22,39,-111,33,-103,-28v-5,-54,54,-55,94,-65v11,-13,5,-42,-16,-42xm82,-30v22,-2,31,-27,29,-55v-17,10,-51,6,-49,34v0,13,6,22,20,21","w":175},"\u00e0":{"d":"90,-153v-17,0,-24,11,-24,29r-47,0v-1,-43,28,-66,71,-66v81,0,69,77,69,152v0,19,-3,30,8,35r0,3r-49,0v-1,-6,0,-14,-3,-18v-22,39,-111,33,-103,-28v-5,-54,54,-55,94,-65v11,-13,5,-42,-16,-42xm82,-30v22,-2,31,-27,29,-55v-17,10,-51,6,-49,34v0,13,6,22,20,21","w":175},"\u0431":{"d":"98,7v-96,5,-96,-140,-72,-215v14,-43,66,-44,105,-61r37,0v-5,46,-16,32,-82,58v-28,11,-47,44,-43,77v6,-32,25,-56,61,-56v49,0,73,46,73,99v0,59,-26,95,-79,98xm95,-30v27,-1,32,-25,32,-58v0,-34,-5,-65,-32,-65v-42,0,-45,125,0,123","w":185},"\u00e1":{"d":"98,7v-96,5,-96,-140,-72,-215v14,-43,66,-44,105,-61r37,0v-5,46,-16,32,-82,58v-28,11,-47,44,-43,77v6,-32,25,-56,61,-56v49,0,73,46,73,99v0,59,-26,95,-79,98xm95,-30v27,-1,32,-25,32,-58v0,-34,-5,-65,-32,-65v-42,0,-45,125,0,123","w":185},"\u0432":{"d":"161,-47v0,65,-84,43,-144,47r0,-183v57,4,139,-18,139,44v0,26,-16,36,-32,45v23,5,37,19,37,47xm107,-129v0,-21,-22,-17,-41,-17r0,35v20,0,41,2,41,-18xm112,-55v0,-25,-23,-22,-46,-22r0,40v21,-1,46,4,46,-18","w":168},"\u00e2":{"d":"161,-47v0,65,-84,43,-144,47r0,-183v57,4,139,-18,139,44v0,26,-16,36,-32,45v23,5,37,19,37,47xm107,-129v0,-21,-22,-17,-41,-17r0,35v20,0,41,2,41,-18xm112,-55v0,-25,-23,-22,-46,-22r0,40v21,-1,46,4,46,-18","w":168},"\u0434":{"d":"14,-37v19,-35,25,-89,23,-146r130,0r0,146r24,0r-2,85r-42,0r0,-48r-108,0r0,48r-42,0r-2,-85r19,0xm82,-146v1,43,-4,81,-18,109r54,0r0,-109r-36,0","w":189},"\u00e4":{"d":"14,-37v19,-35,25,-89,23,-146r130,0r0,146r24,0r-2,85r-42,0r0,-48r-108,0r0,48r-42,0r-2,-85r19,0xm82,-146v1,43,-4,81,-18,109r54,0r0,-109r-36,0","w":189},"\u0435":{"d":"58,-78v-10,47,51,66,60,25r49,0v-10,39,-30,60,-78,60v-59,0,-80,-37,-81,-99v-1,-58,30,-98,85,-98v60,0,79,48,78,112r-113,0xm120,-109v4,-40,-31,-57,-53,-32v-6,8,-9,18,-9,32r62,0","w":179},"\u00e5":{"d":"58,-78v-10,47,51,66,60,25r49,0v-10,39,-30,60,-78,60v-59,0,-80,-37,-81,-99v-1,-58,30,-98,85,-98v60,0,79,48,78,112r-113,0xm120,-109v4,-40,-31,-57,-53,-32v-6,8,-9,18,-9,32r62,0","w":179},"\u0436":{"d":"84,0v-1,-26,2,-56,-1,-80r-37,80r-55,0r59,-96r-55,-87r52,0r37,75r0,-75r49,0v1,24,-2,53,1,75r36,-75r52,0r-56,87r60,96r-55,0r-38,-80r0,80r-49,0","w":216},"\u00e6":{"d":"84,0v-1,-26,2,-56,-1,-80r-37,80r-55,0r59,-96r-55,-87r52,0r37,75r0,-75r49,0v1,24,-2,53,1,75r36,-75r52,0r-56,87r60,96r-55,0r-38,-80r0,80r-49,0","w":216},"\u0437":{"d":"154,-51v6,64,-97,72,-133,40v-13,-11,-18,-28,-18,-50r46,0v-1,21,10,30,28,31v17,1,28,-7,28,-23v1,-24,-19,-25,-43,-24r0,-34v21,1,41,1,40,-20v0,-15,-9,-22,-26,-22v-16,0,-23,12,-23,29r-46,0v-2,-44,27,-67,73,-66v42,0,71,15,71,53v0,21,-12,36,-31,39r0,3v21,4,32,20,34,44","w":161},"\u00e7":{"d":"154,-51v6,64,-97,72,-133,40v-13,-11,-18,-28,-18,-50r46,0v-1,21,10,30,28,31v17,1,28,-7,28,-23v1,-24,-19,-25,-43,-24r0,-34v21,1,41,1,40,-20v0,-15,-9,-22,-26,-22v-16,0,-23,12,-23,29r-46,0v-2,-44,27,-67,73,-66v42,0,71,15,71,53v0,21,-12,36,-31,39r0,3v21,4,32,20,34,44","w":161},"\u0438":{"d":"66,-73r55,-110r51,0r0,183r-49,0r0,-109r-55,109r-51,0r0,-183r49,0r0,110","w":189},"\u00e8":{"d":"66,-73r55,-110r51,0r0,183r-49,0r0,-109r-55,109r-51,0r0,-183r49,0r0,110","w":189},"\u0439":{"d":"66,-73r55,-110r51,0r0,183r-49,0r0,-109r-55,109r-51,0r0,-183r49,0r0,110xm154,-252v2,49,-69,63,-102,37v-11,-8,-16,-21,-17,-37r37,0v0,14,7,24,22,24v14,0,23,-11,23,-24r37,0","w":189},"\u00e9":{"d":"66,-73r55,-110r51,0r0,183r-49,0r0,-109r-55,109r-51,0r0,-183r49,0r0,110xm154,-252v2,49,-69,63,-102,37v-11,-8,-16,-21,-17,-37r37,0v0,14,7,24,22,24v14,0,23,-11,23,-24r37,0","w":189},"\u043b":{"d":"-1,-38v53,9,28,-92,35,-145r130,0r0,183r-49,0r0,-146r-34,0v-2,80,6,167,-82,146r0,-38","w":182},"\u00eb":{"d":"-1,-38v53,9,28,-92,35,-145r130,0r0,183r-49,0r0,-146r-34,0v-2,80,6,167,-82,146r0,-38","w":182},"\u043c":{"d":"100,0v-13,-36,-20,-79,-36,-112v5,33,1,75,2,112r-49,0r0,-183r63,0r38,125r37,-125r63,0r0,183r-49,0r0,-112r-35,112r-34,0","w":235},"\u00ec":{"d":"100,0v-13,-36,-20,-79,-36,-112v5,33,1,75,2,112r-49,0r0,-183r63,0r38,125r37,-125r63,0r0,183r-49,0r0,-112r-35,112r-34,0","w":235},"\u043d":{"d":"66,-77r0,77r-49,0r0,-183r49,0r0,69r47,0r0,-69r49,0r0,183r-49,0r0,-77r-47,0","w":180},"\u00ed":{"d":"66,-77r0,77r-49,0r0,-183r49,0r0,69r47,0r0,-69r49,0r0,183r-49,0r0,-77r-47,0","w":180},"\u043e":{"d":"173,-92v0,57,-27,99,-83,99v-56,0,-82,-41,-82,-99v0,-58,26,-98,82,-98v56,0,83,41,83,98xm58,-92v0,35,3,62,32,62v27,0,33,-27,32,-62v0,-34,-5,-61,-32,-61v-28,0,-32,27,-32,61","w":181},"\u00ee":{"d":"173,-92v0,57,-27,99,-83,99v-56,0,-82,-41,-82,-99v0,-58,26,-98,82,-98v56,0,83,41,83,98xm58,-92v0,35,3,62,32,62v27,0,33,-27,32,-62v0,-34,-5,-61,-32,-61v-28,0,-32,27,-32,61","w":181},"\u043f":{"d":"66,-146r0,146r-49,0r0,-183r149,0r0,183r-49,0r0,-146r-51,0","w":183},"\u00ef":{"d":"66,-146r0,146r-49,0r0,-183r149,0r0,183r-49,0r0,-146r-51,0","w":183},"\u0440":{"d":"107,7v-19,0,-32,-7,-41,-18r0,78r-49,0r0,-250r46,0v1,7,-2,17,1,22v6,-18,20,-29,44,-29v47,0,69,44,69,99v0,54,-20,97,-70,98xm95,-153v-44,1,-45,122,0,123v44,-2,44,-121,0,-123","w":185},"\u00f0":{"d":"107,7v-19,0,-32,-7,-41,-18r0,78r-49,0r0,-250r46,0v1,7,-2,17,1,22v6,-18,20,-29,44,-29v47,0,69,44,69,99v0,54,-20,97,-70,98xm95,-153v-44,1,-45,122,0,123v44,-2,44,-121,0,-123","w":185},"\u0441":{"d":"89,-30v20,-1,24,-17,26,-39r48,0v-3,44,-26,77,-74,76v-54,-1,-82,-37,-81,-98v1,-60,24,-100,83,-99v45,1,67,27,71,72r-47,0v-2,-20,-7,-35,-26,-35v-45,0,-42,123,0,123","w":171},"\u00f1":{"d":"89,-30v20,-1,24,-17,26,-39r48,0v-3,44,-26,77,-74,76v-54,-1,-82,-37,-81,-98v1,-60,24,-100,83,-99v45,1,67,27,71,72r-47,0v-2,-20,-7,-35,-26,-35v-45,0,-42,123,0,123","w":171},"\u0442":{"d":"48,-146r-49,0r0,-37r146,0r0,37r-49,0r0,146r-48,0r0,-146","w":144},"\u00f2":{"d":"48,-146r-49,0r0,-37r146,0r0,37r-49,0r0,146r-48,0r0,-146","w":144},"\u0444":{"d":"240,-93v0,63,-32,94,-92,98r0,62r-49,0r0,-62v-60,-4,-91,-35,-91,-98v0,-58,31,-95,91,-94r0,-65r49,0r0,65v60,-1,92,37,92,94xm101,-150v-47,-5,-52,70,-32,101v7,11,19,17,32,17r0,-118xm189,-94v0,-33,-12,-57,-42,-56r0,118v29,-1,42,-29,42,-62","w":248},"\u00f4":{"d":"240,-93v0,63,-32,94,-92,98r0,62r-49,0r0,-62v-60,-4,-91,-35,-91,-98v0,-58,31,-95,91,-94r0,-65r49,0r0,65v60,-1,92,37,92,94xm101,-150v-47,-5,-52,70,-32,101v7,11,19,17,32,17r0,-118xm189,-94v0,-33,-12,-57,-42,-56r0,118v29,-1,42,-29,42,-62","w":248},"\u0445":{"d":"77,-123r25,-60r55,0r-52,88r54,95r-54,0r-28,-62r-28,62r-54,0r54,-95r-52,-88r55,0","w":154},"\u00f5":{"d":"77,-123r25,-60r55,0r-52,88r54,95r-54,0r-28,-62r-28,62r-54,0r54,-95r-52,-88r55,0","w":154},"\u0446":{"d":"66,-37r49,0r0,-146r49,0r0,146r24,0r-3,85r-42,0r0,-48r-126,0r0,-183r49,0r0,146"},"\u00f6":{"d":"66,-37r49,0r0,-146r49,0r0,146r24,0r-3,85r-42,0r0,-48r-126,0r0,-183r49,0r0,146"},"\u0447":{"d":"99,-68v-55,4,-93,-1,-90,-59r0,-56r49,0v4,36,-18,93,41,78r0,-78r49,0r0,183r-49,0r0,-68","w":165},"\u00f7":{"d":"99,-68v-55,4,-93,-1,-90,-59r0,-56r49,0v4,36,-18,93,41,78r0,-78r49,0r0,183r-49,0r0,-68","w":165},"\u0448":{"d":"66,-37r42,0r0,-146r49,0r0,146r42,0r0,-146r49,0r0,183r-231,0r0,-183r49,0r0,146","w":266},"\u00f8":{"d":"66,-37r42,0r0,-146r49,0r0,146r42,0r0,-146r49,0r0,183r-231,0r0,-183r49,0r0,146","w":266},"\u0449":{"d":"66,-37r42,0r0,-146r49,0r0,146r42,0r0,-146r49,0r0,146r24,0r-2,85r-42,0r0,-48r-211,0r0,-183r49,0r0,146","w":270},"\u00f9":{"d":"66,-37r42,0r0,-146r49,0r0,146r42,0r0,-146r49,0r0,146r24,0r-2,85r-42,0r0,-48r-211,0r0,-183r49,0r0,146","w":270},"\u044a":{"d":"194,-56v0,72,-75,54,-139,56r0,-146r-38,0r0,-37r87,0r0,65v56,-3,90,8,90,62xm144,-58v0,-24,-17,-24,-40,-23r0,44v21,0,40,1,40,-21","w":199},"\u00fa":{"d":"194,-56v0,72,-75,54,-139,56r0,-146r-38,0r0,-37r87,0r0,65v56,-3,90,8,90,62xm144,-58v0,-24,-17,-24,-40,-23r0,44v21,0,40,1,40,-21","w":199},"\u044b":{"d":"156,-56v0,72,-75,54,-139,56r0,-183r49,0r0,65v56,-3,90,8,90,62xm106,-58v0,-22,-17,-25,-40,-23r0,44v21,0,40,1,40,-21xm167,-183r49,0r0,183r-49,0r0,-183","w":234},"\u00fb":{"d":"156,-56v0,72,-75,54,-139,56r0,-183r49,0r0,65v56,-3,90,8,90,62xm106,-58v0,-22,-17,-25,-40,-23r0,44v21,0,40,1,40,-21xm167,-183r49,0r0,183r-49,0r0,-183","w":234},"\u044c":{"d":"156,-56v0,72,-75,54,-139,56r0,-183r49,0r0,65v56,-3,90,8,90,62xm106,-58v0,-22,-17,-25,-40,-23r0,44v21,0,40,1,40,-21","w":160},"\u00fc":{"d":"156,-56v0,72,-75,54,-139,56r0,-183r49,0r0,65v56,-3,90,8,90,62xm106,-58v0,-22,-17,-25,-40,-23r0,44v21,0,40,1,40,-21","w":160},"\u044d":{"d":"55,-69v-5,35,38,51,56,28v5,-7,8,-18,8,-33r-51,0r0,-37r51,0v0,-23,-9,-42,-30,-42v-22,0,-31,14,-32,36r-49,0v1,-44,30,-74,78,-73v58,2,83,36,83,101v0,89,-88,121,-141,75v-14,-12,-21,-31,-21,-55r48,0","w":177},"\u00fd":{"d":"55,-69v-5,35,38,51,56,28v5,-7,8,-18,8,-33r-51,0r0,-37r51,0v0,-23,-9,-42,-30,-42v-22,0,-31,14,-32,36r-49,0v1,-44,30,-74,78,-73v58,2,83,36,83,101v0,89,-88,121,-141,75v-14,-12,-21,-31,-21,-55r48,0","w":177},"\u044e":{"d":"163,7v-51,0,-79,-36,-81,-84r-16,0r0,77r-49,0r0,-183r49,0r0,69r16,0v5,-46,34,-75,81,-76v56,0,83,41,83,98v0,57,-27,99,-83,99xm163,-153v-45,0,-45,123,0,123v27,0,32,-27,32,-62v0,-34,-6,-61,-32,-61","w":254},"\u00fe":{"d":"163,7v-51,0,-79,-36,-81,-84r-16,0r0,77r-49,0r0,-183r49,0r0,69r16,0v5,-46,34,-75,81,-76v56,0,83,41,83,98v0,57,-27,99,-83,99xm163,-153v-45,0,-45,123,0,123v27,0,32,-27,32,-62v0,-34,-6,-61,-32,-61","w":254},"-":{"d":"23,-74r0,-45r88,0r0,45r-88,0","w":136}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 2004 Microsoft Corporation. All rights reserved.
 * 
 * Trademark:
 * Tahoma is a trademark of Microsoft Corporation.
 * 
 * Description:
 * Tahoma is one of Microsoft's new sans serif typeface families. It consists of
 * two Windows TrueType fonts (regular and bold), and was created to address the
 * challenges of on-screen display, particularly at small sizes in dialog boxes and
 * menus.
 * 
 * Since the Tahomas are TrueType fonts, they can be rotated and scaled to any
 * size, and anti-aliased by the rasterizer built into Microsoft Windows 95 and
 * Microsoft Windows NT 4.0. These features give the fonts significant advantages
 * over bitmap system fonts such as MS Sans Serif.
 * 
 * The Latin, Greek and Cyrillic characters were designed by world renowned type
 * designer Matthew Carter, and hand-instructed by leading hinting expert,
 * Monotype's Tom Rickner. The Arabic, Hebrew and Thai characters were designed by
 * the Monotype Drawing Office to complement Carter's initial designs. Tahoma sets
 * new standards in system font design. It is ideal for use in User Interface
 * Scenarios and other situations requiring the presentation of information on the
 * screen.
 * 
 * Manufacturer:
 * Microsoft Corp.
 * 
 * Designer:
 * Matthew Carter
 * 
 * Vendor URL:
 * http://www.microsoft.com/typography
 */
Cufon.registerFont({"w":196,"face":{"font-family":"Tahoma","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 4 3 5 4 4 2 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-16 -361 354.011 74.5539","underline-thickness":"22.8516","underline-position":"-18.457","unicode-range":"U+0020-U+04E9"},"glyphs":{" ":{"w":112},"\u00a0":{"w":112},"!":{"d":"79,-262r-4,190r-30,0r-5,-190r39,0xm78,0r-36,0r0,-37r36,0r0,37","w":119},"\"":{"d":"124,-274r-7,102r-23,0r-8,-102r38,0xm58,-274r-7,102r-23,0r-8,-102r38,0","w":144},"#":{"d":"237,-164r-52,0r-16,66r47,0r0,24r-53,0r-18,74r-23,0r18,-74r-47,0r-18,74r-23,0r18,-74r-45,0r0,-24r51,0r17,-66r-47,0r0,-24r53,0r18,-74r23,0r-19,74r48,0r18,-74r23,0r-18,74r45,0r0,24xm163,-164r-48,0r-16,67r48,0","w":261},"$":{"d":"110,-128v38,6,70,19,70,61v0,37,-34,64,-70,67r0,63r-20,0r0,-62v-25,0,-54,-7,-71,-16v2,-11,-3,-28,2,-35v18,13,42,22,69,25r0,-76v-36,-9,-70,-20,-70,-63v0,-38,33,-63,70,-65r0,-48r20,0r0,47v21,0,47,8,62,14r0,34v-19,-8,-37,-20,-62,-22r0,76xm90,-204v-31,-1,-48,36,-29,59v5,6,15,11,29,14r0,-73xm110,-26v34,3,48,-40,28,-61v-5,-6,-15,-9,-28,-12r0,73"},"%":{"d":"80,-267v44,0,62,30,62,78v1,48,-19,78,-62,78v-44,0,-62,-30,-62,-78v-1,-48,18,-78,62,-78xm259,-262r-137,262r-29,0r137,-262r29,0xm272,-150v44,0,61,29,61,77v0,48,-17,78,-61,78v-45,0,-62,-29,-62,-77v0,-48,18,-78,62,-78xm80,-135v28,0,31,-23,31,-54v0,-31,-3,-54,-31,-54v-28,0,-31,23,-31,54v0,32,2,54,31,54xm272,-18v28,0,30,-24,30,-55v0,-31,-2,-54,-30,-54v-28,0,-31,23,-31,55v0,32,2,54,31,54","w":351},"&":{"d":"210,-160v1,37,-5,69,-19,95r63,65r-45,0r-36,-37v-21,25,-40,41,-79,42v-47,1,-82,-31,-82,-77v0,-41,23,-61,48,-76v-21,-14,-35,-28,-35,-59v0,-38,29,-59,69,-60v36,-1,66,20,66,54v-1,37,-21,54,-50,65r62,64v5,-22,3,-50,3,-76r35,0xm77,-136v-43,21,-38,117,26,113v27,-2,43,-13,55,-30xm93,-245v-37,0,-45,56,-16,72v4,4,10,9,17,13v38,-6,46,-85,-1,-85","w":242},"'":{"d":"57,-274r-7,102r-24,0r-8,-102r39,0","w":75,"k":{"A":17}},"(":{"d":"50,-101v-1,81,36,132,75,173r-40,0v-37,-46,-66,-92,-66,-173v0,-80,28,-127,66,-173v12,2,32,-4,40,2v-41,39,-74,93,-75,171","w":137,"k":{"j":-9,"T":-4}},")":{"d":"53,-274v36,46,66,94,66,173v0,79,-28,127,-66,173v-13,-1,-29,2,-40,-1v41,-39,75,-94,75,-172v0,-79,-37,-131,-75,-173r40,0","w":137},"*":{"d":"177,-156r-11,19r-58,-38r1,64r-22,0r1,-64r-57,39r-11,-20r62,-36r-62,-37r11,-19r58,39r-2,-65r22,0r-1,65r58,-39r11,20r-62,36"},"+":{"d":"234,-101r-88,0r0,89r-30,0r0,-89r-88,0r0,-28r88,0r0,-88r30,0r0,88r88,0r0,28","w":261},",":{"d":"88,-50r-49,115r-26,0r31,-115r44,0","w":108,"k":{"}":16,"]":16,"7":9,")":16}},"-":{"d":"115,-99r-99,0r0,-31r99,0r0,31","w":130,"k":{"z":7,"y":7,"x":8,"w":3,"v":7,"a":3,"Z":5,"Y":23,"X":13,"W":8,"V":8,"T":25,"S":3,"J":17,"I":5,"A":8}},"\u00ad":{"d":"115,-99r-99,0r0,-31r99,0r0,31","w":130},".":{"d":"75,0r-42,0r0,-50r42,0r0,50","w":108,"k":{"}":18,"]":18,"7":9,"-":28,",":23,")":18}},"\/":{"d":"128,-274r-103,331r-29,0r102,-331r30,0","w":137},"0":{"d":"98,-267v68,0,84,59,84,136v0,80,-17,136,-84,136v-69,0,-82,-57,-83,-136v0,-80,16,-136,83,-136xm98,-24v50,0,48,-55,48,-107v0,-53,1,-107,-48,-107v-49,0,-48,56,-48,107v0,53,-1,107,48,107"},"1":{"d":"40,-226v35,-1,50,-7,54,-37r27,0r0,236r46,0r0,27r-127,0r0,-27r47,0r0,-175r-47,0r0,-24"},"2":{"d":"25,-251v61,-37,172,-8,141,84v-20,59,-78,97,-114,137r129,0r0,30r-162,0r0,-37v17,-17,19,-15,33,-31v33,-37,80,-69,82,-125v2,-62,-80,-44,-109,-21r0,-37"},"3":{"d":"136,-200v0,-57,-85,-34,-112,-14r0,-37v48,-25,147,-26,147,47v0,31,-27,52,-48,61v31,7,53,26,53,65v0,83,-99,100,-159,67r0,-37v18,7,42,24,69,23v34,-2,54,-19,54,-55v0,-41,-28,-49,-70,-47r0,-29v37,3,66,-11,66,-44"},"4":{"d":"188,-90r-32,0r0,90r-33,0r0,-90r-116,0r0,-37r117,-135r32,0r0,144r32,0r0,28xm123,-118r0,-102r-89,102r89,0","k":{".":4,",":4}},"5":{"d":"66,-161v64,-8,112,13,112,78v0,83,-90,106,-156,74v2,-12,-3,-30,2,-38v36,29,118,35,118,-36v0,-57,-63,-55,-109,-44r0,-135r143,0r0,31r-110,0r0,70"},"6":{"d":"51,-149v50,-38,141,-12,134,64v-5,52,-30,90,-83,90v-66,0,-86,-51,-87,-120v-2,-98,48,-166,147,-148v-2,10,3,27,-2,34v-58,-24,-110,18,-109,80xm102,-23v31,0,47,-24,47,-60v0,-59,-62,-67,-98,-41v-3,51,6,101,51,101"},"7":{"d":"184,-223r-114,223r-37,0r120,-231r-136,0r0,-31r167,0r0,39","k":{".":26,",":26}},"8":{"d":"116,-148v37,-19,38,-94,-18,-94v-46,0,-59,61,-19,77v8,4,26,15,37,17xm99,-20v40,0,60,-43,42,-75v-9,-16,-40,-28,-63,-36v-44,21,-37,111,21,111xm184,-73v0,44,-40,80,-86,79v-51,-1,-82,-29,-85,-78v-1,-34,22,-55,44,-69v-23,-14,-38,-27,-38,-58v0,-40,37,-69,79,-69v45,0,78,26,79,67v0,30,-20,51,-40,63v27,13,46,28,47,65"},"9":{"d":"47,-178v0,59,65,67,99,40v1,-52,-4,-100,-51,-100v-31,0,-48,24,-48,60xm145,-113v-50,40,-139,13,-133,-64v4,-54,30,-90,83,-90v66,0,86,51,87,120v1,96,-46,169,-148,148v2,-10,-3,-27,2,-33v58,24,111,-18,109,-81"},":":{"d":"85,-146r-42,0r0,-50r42,0r0,50xm85,0r-42,0r0,-50r42,0r0,50","w":127},";":{"d":"85,-146r-42,0r0,-50r42,0r0,50xm96,-50r-49,115r-26,0r31,-115r44,0","w":127},"\u037e":{"d":"85,-146r-42,0r0,-50r42,0r0,50xm96,-50r-49,115r-26,0r31,-115r44,0","w":127},"<":{"d":"224,-14r-189,-90r0,-21r189,-90r0,31r-146,69r146,70r0,31","w":261},"=":{"d":"228,-137r-194,0r0,-29r194,0r0,29xm228,-64r-194,0r0,-28r194,0r0,28","w":261},">":{"d":"227,-104r-189,90r0,-31r146,-70r-146,-69r0,-31r189,90r0,21","w":261},"?":{"d":"19,-255v54,-23,145,-15,141,55v-3,51,-36,69,-68,90r0,40r-31,0r0,-54v28,-19,62,-31,63,-74v1,-55,-77,-40,-105,-21r0,-36xm95,0r-36,0r0,-37r36,0r0,37","w":170},"@":{"d":"168,-267v122,0,172,148,112,239r-74,0r-5,-20v-41,46,-120,11,-110,-63v-5,-65,57,-108,110,-76r0,-8r28,0r0,148r40,0v34,-84,-1,-196,-101,-196v-69,0,-120,61,-120,130v0,97,84,154,179,121r0,25v-112,31,-204,-38,-204,-147v0,-82,65,-153,145,-153xm160,-53v16,0,30,-10,41,-19r0,-91v-39,-22,-80,-2,-80,52v0,34,9,58,39,58","w":327},"A":{"d":"-2,0r88,-262r43,0r89,262r-37,0r-24,-73r-100,0r-24,73r-35,0xm147,-103r-40,-123r-40,123r80,0","w":215,"k":{"y":5,"w":2,"v":5,"u":2,"t":2,"Y":13,"W":8,"V":10,"U":2,"T":20,"S":1,"-":8}},"B":{"d":"155,-145v29,8,49,29,49,65v-1,85,-89,82,-177,80r0,-262v75,1,163,-14,165,59v1,29,-21,44,-37,58xm61,-155v48,1,97,5,95,-43v-1,-42,-51,-33,-95,-34r0,77xm61,-30v54,1,107,3,107,-49v0,-55,-54,-47,-107,-47r0,96","w":212,"k":{"w":-2,"u":-2,"r":-2,"o":-2,"l":-2,"j":-2,"i":-2,"h":-2,"e":-2,"a":-2,"T":10,"Q":-2,"O":-2,"G":-2,"C":-2,".":3,"-":-2,",":3}},"C":{"d":"210,-18v-23,11,-45,23,-81,23v-79,0,-117,-53,-117,-136v1,-82,38,-132,117,-135v36,-1,59,10,81,22r0,42v-22,-14,-43,-36,-81,-35v-57,2,-80,46,-81,106v0,62,25,103,81,106v37,2,60,-19,81,-34r0,41","w":216,"k":{"-":8}},"D":{"d":"27,-262v123,-8,209,18,206,131v-2,85,-51,135,-146,131r-60,0r0,-262xm61,-30v84,5,136,-20,136,-101v0,-79,-51,-107,-136,-101r0,202","w":244,"k":{"Z":3,"Y":3,"X":2,"W":3,"T":8,"J":4,".":8,",":8}},"E":{"d":"27,0r0,-262r163,0r0,31r-129,0r0,72r120,0r0,31r-120,0r0,97r129,0r0,31r-163,0","w":201},"F":{"d":"183,-231r-122,0r0,74r117,0r0,31r-117,0r0,126r-34,0r0,-262r156,0r0,31","w":187,"k":{"o":8,"e":8,"a":17,"T":-5,"J":10,"A":17,"?":-10,";":10,":":10,".":50,",":50}},"G":{"d":"223,-17v-26,9,-52,22,-87,22v-84,-1,-124,-51,-124,-136v0,-84,42,-133,124,-135v36,-2,62,11,86,22r0,42v-25,-15,-47,-34,-90,-34v-53,0,-84,46,-84,104v0,86,63,125,141,99r0,-68r-61,0r0,-31r95,0r0,115","w":240},"H":{"d":"217,0r-35,0r0,-128r-121,0r0,128r-34,0r0,-262r34,0r0,103r121,0r0,-103r35,0r0,262","w":243},"I":{"d":"118,0r-102,0r0,-27r34,0r0,-208r-34,0r0,-27r102,0r0,27r-33,0r0,208r33,0r0,27","w":134,"k":{"v":5,"s":4,"r":2,"p":2,"o":4,"n":2,"m":2,"g":4,"e":4,"d":4,"c":4,"a":4,"-":5}},"J":{"d":"2,-35v40,16,88,14,88,-46r0,-153r-55,0r0,-28r90,0r0,194v2,65,-61,81,-123,67r0,-34","w":149,"k":{"A":2,".":3,",":3}},"K":{"d":"217,0r-45,0r-95,-122r-16,17r0,105r-34,0r0,-262r34,0r0,121r108,-121r42,0r-108,117","w":211,"k":{"y":10,"w":10,"v":10,"u":7,"o":10,"e":10,"a":8,"O":3,"-":18}},"L":{"d":"178,0r-151,0r0,-262r34,0r0,231r117,0r0,31","w":179,"k":{"y":18,"v":18,"Y":27,"W":17,"V":18,"T":28,"Q":3,"O":3,"J":-17,"G":3,"C":3,"A":7,"-":27,"'":20}},"M":{"d":"251,0r-35,0r0,-226r-68,154r-21,0r-68,-154r0,226r-32,0r0,-262r47,0r65,146r63,-146r49,0r0,262","w":277},"N":{"d":"214,0r-39,0r-116,-226r0,226r-32,0r0,-262r49,0r105,208r0,-208r33,0r0,262","w":240},"O":{"d":"127,-267v80,0,116,54,116,136v0,81,-36,136,-116,136v-80,0,-115,-55,-115,-136v0,-82,35,-136,115,-136xm127,-25v55,0,80,-45,80,-106v-1,-60,-22,-106,-80,-106v-59,0,-78,45,-79,106v-1,61,24,106,79,106","w":254,"k":{"Z":3,"Y":3,"X":2,"T":8,"J":1,".":5,",":5}},"P":{"d":"27,-262v84,-3,167,-2,165,79v-2,68,-53,91,-131,85r0,98r-34,0r0,-262xm61,-127v53,3,95,-5,95,-55v0,-48,-43,-53,-95,-50r0,105","w":198,"k":{"o":8,"e":8,"a":8,"Y":-3,"J":12,"A":8,".":50,",":50}},"Q":{"d":"244,64v-52,16,-110,-4,-109,-59v-86,2,-123,-52,-123,-136v0,-82,35,-136,115,-136v80,0,115,54,116,136v0,65,-27,112,-74,129v-3,43,40,45,75,34r0,32xm127,-24v54,0,80,-46,80,-107v-1,-60,-22,-106,-80,-106v-59,0,-78,45,-79,106v-1,62,25,107,79,107","w":254,"k":{".":5,",":5}},"R":{"d":"190,-191v1,41,-23,66,-54,77r93,114r-45,0r-83,-104r-40,0r0,104r-34,0r0,-262v80,-1,164,-8,163,71xm61,-133v53,3,93,-4,93,-55v0,-46,-46,-46,-93,-44r0,99","w":223,"k":{"y":8,"u":2,"o":7,"e":7,"a":3,"Y":3,"T":10,"-":17}},"S":{"d":"140,-141v89,27,51,146,-41,146v-38,0,-60,-9,-85,-21v2,-13,-4,-34,2,-43v27,35,139,57,139,-10v0,-78,-140,-19,-140,-123v0,-75,108,-90,166,-58v-2,13,4,33,-2,42v-25,-31,-124,-46,-127,13v-2,46,54,44,88,54","w":200,"k":{"y":5,"w":3,"v":5,"q":-1,"o":-1,"e":-1,"c":-1,"S":4,"A":2,".":3,",":3}},"T":{"d":"88,0r0,-231r-88,0r0,-31r210,0r0,31r-87,0r0,231r-35,0","w":210,"k":{"}":-4,"z":28,"y":33,"w":33,"v":33,"u":33,"s":30,"r":33,"o":37,"g":35,"e":37,"c":37,"a":40,"]":-4,"Y":12,"T":18,"S":2,"O":8,"J":10,"G":7,"C":7,"A":20,"?":-10,";":33,":":33,".":49,"-":25,",":49,")":-4}},"U":{"d":"213,-262v-6,115,33,273,-95,267v-65,-3,-96,-35,-95,-103r0,-164r35,0r0,164v-2,47,16,74,60,74v43,0,60,-27,60,-74r0,-164r35,0","w":236,"k":{"A":2,".":3,",":3}},"V":{"d":"216,-262r-90,262r-37,0r-90,-262r37,0r72,218r73,-218r35,0","w":214,"k":{"y":11,"u":10,"o":17,"e":17,"a":17,"A":10,";":13,":":13,".":49,"-":8,",":49}},"W":{"d":"320,-262r-66,262r-39,0r-53,-217r-52,217r-38,0r-67,-262r35,0r53,218r52,-218r36,0r53,220r52,-220r34,0","w":324,"k":{"y":9,"u":7,"r":7,"o":13,"e":13,"a":13,"A":8,";":13,":":13,".":37,"-":8,",":49}},"X":{"d":"208,0r-40,0r-64,-105r-65,105r-38,0r84,-131r-81,-131r40,0r62,103r64,-103r37,0r-81,129","w":209,"k":{"y":12,"u":5,"o":8,"e":8,"a":7,"O":2,"G":2,"C":2,"-":13}},"Y":{"d":"210,-262r-89,146r0,116r-35,0r0,-112r-88,-150r39,0r67,116r69,-116r37,0","w":207,"k":{"v":17,"u":18,"s":18,"r":17,"q":22,"p":17,"o":22,"n":17,"m":17,"g":22,"e":22,"d":20,"a":23,"O":3,"J":10,"A":13,";":33,":":33,".":49,"-":23,",":49}},"Z":{"d":"193,0r-182,0r0,-32r140,-199r-134,0r0,-31r173,0r0,32r-142,199r145,0r0,31","w":201,"k":{"y":11,"w":7,"o":10,"e":10,"a":8,"Z":2,"O":3,"G":3,"C":3,"-":10}},"[":{"d":"121,69r-92,0r0,-343r92,0r0,26r-61,0r0,292r61,0r0,25","w":137,"k":{"j":-9,"T":-4}},"\\":{"d":"141,57r-29,0r-103,-331r30,0","w":137},"]":{"d":"109,69r-92,0r0,-25r61,0r0,-292r-61,0r0,-26r92,0r0,343","w":137},"^":{"d":"239,-120r-35,0r-73,-110r-73,110r-35,0r97,-142r22,0","w":261},"_":{"d":"199,53r-202,0r0,-23r202,0r0,23"},"`":{"d":"118,-229r-26,0r-48,-66r42,0"},"a":{"d":"44,-59v0,49,71,36,90,11r0,-55v-38,5,-89,3,-90,44xm26,-192v56,-17,140,-17,140,58r0,134r-32,0r0,-21v-19,12,-31,27,-64,26v-37,-1,-60,-25,-60,-62v0,-63,62,-69,124,-72v5,-60,-69,-43,-108,-30r0,-33","w":188,"k":{"y":2,"w":2,"v":2}},"b":{"d":"57,-36v47,28,103,3,98,-63v-3,-41,-9,-70,-46,-71v-21,0,-39,11,-52,22r0,112xm117,-202v49,0,72,47,72,101v0,78,-69,133,-132,92r-2,9r-31,0r0,-274r33,0r0,98v15,-14,34,-26,60,-26","w":198,"k":{"y":1,".":3,",":5}},"c":{"d":"101,-24v26,0,42,-14,59,-24r0,37v-19,6,-33,16,-58,15v-62,-1,-89,-39,-92,-102v-5,-87,81,-125,150,-88v-2,11,3,29,-2,37v-14,-11,-32,-23,-57,-23v-38,0,-56,31,-56,74v0,42,18,73,56,74","w":166,"k":{"c":1,"T":17,"-":3}},"d":{"d":"10,-97v-4,-78,67,-131,132,-91r0,-86r33,0r0,274r-33,0r0,-20v-16,13,-30,26,-59,25v-54,-2,-70,-46,-73,-102xm91,-26v21,0,38,-11,51,-22r0,-113v-48,-27,-103,1,-98,64v3,40,10,71,47,71","w":198},"e":{"d":"176,-12v-18,8,-40,17,-67,17v-63,0,-99,-39,-99,-102v0,-59,35,-104,91,-105v61,0,82,42,79,107r-136,0v-8,80,90,83,132,47r0,36xm148,-120v9,-63,-82,-72,-99,-22v-3,6,-4,14,-5,22r104,0","w":189,"k":{"T":23}},"f":{"d":"27,-196v-5,-65,40,-89,100,-76v-1,9,2,23,-1,30v-35,-10,-76,-3,-67,46r55,0r0,27r-54,0r0,169r-33,0r0,-169r-22,0r0,-27r22,0","w":114,"k":{"}":-18,"y":4,"u":4,"s":4,"r":2,"q":2,"p":2,"o":4,"n":2,"m":2,"j":4,"g":2,"f":2,"e":4,"c":4,"a":4,"]":-18,"\\":-17,"?":-20,".":26,"-":12,",":26,"*":-12,")":-18,"'":-15,"\"":-15}},"g":{"d":"91,-34v20,0,39,-8,51,-19r0,-108v-45,-27,-103,-2,-98,60v3,40,10,67,47,67xm175,-22v8,88,-71,111,-146,88v2,-11,-3,-28,2,-35v38,20,121,25,111,-40r0,-17v-17,14,-30,22,-58,23v-50,0,-74,-42,-74,-97v0,-77,68,-126,132,-88r2,-8r31,0r0,174","w":198,"k":{"j":-2}},"h":{"d":"117,-202v85,-1,56,120,61,202r-33,0r0,-112v0,-33,-2,-61,-37,-58v-20,1,-38,12,-51,23r0,147r-33,0r0,-274r33,0r0,99v17,-15,33,-26,60,-27","w":200,"k":{"y":3,"w":2,"v":3}},"i":{"d":"58,0r-33,0r0,-196r33,0r0,196xm60,-229r-38,0r0,-34r38,0r0,34","w":82,"k":{"t":-1,"f":-1}},"j":{"d":"-16,43v41,8,60,-7,60,-51r0,-161r-35,0r0,-27r69,0r0,202v2,52,-39,77,-94,66r0,-29xm78,-229r-38,0r0,-34r38,0r0,34","w":101},"k":{"d":"187,0r-44,0r-73,-95r-13,13r0,82r-33,0r0,-274r33,0r0,161r78,-83r41,0r-81,82","w":179,"k":{"o":3,"e":3,"-":17}},"l":{"d":"58,0r-33,0r0,-274r33,0r0,274","w":82,"k":{"t":-1,"l":-1}},"m":{"d":"222,-202v85,0,52,122,58,202r-33,0r0,-114v0,-31,-1,-58,-33,-56v-19,1,-33,12,-46,24r0,146r-33,0r0,-114v0,-31,0,-59,-33,-56v-18,1,-34,12,-45,23r0,147r-33,0r0,-196r33,0r0,21v23,-33,92,-39,105,7v18,-18,31,-34,60,-34","w":302,"k":{"y":3,"w":2,"v":3}},"n":{"d":"117,-202v85,-1,56,120,61,202r-33,0r0,-112v0,-33,-2,-61,-37,-58v-20,1,-38,12,-51,23r0,147r-33,0r0,-196r33,0r0,21v17,-15,33,-26,60,-27","w":200,"k":{"y":3,"w":2,"v":3}},"o":{"d":"98,-202v56,0,87,42,87,104v0,62,-31,103,-87,103v-57,1,-88,-43,-88,-103v0,-61,32,-104,88,-104xm98,-23v39,0,53,-31,53,-75v0,-44,-13,-75,-53,-75v-40,0,-54,30,-54,75v0,44,15,75,54,75","w":195,"k":{"y":2,"x":3,"v":2,".":3,",":5}},"p":{"d":"117,-202v48,0,72,45,72,99v0,79,-68,134,-132,93r0,82r-33,0r0,-268r33,0r0,20v15,-13,34,-26,60,-26xm57,-37v47,28,102,0,98,-63v-3,-39,-9,-69,-46,-70v-21,0,-39,10,-52,22r0,111","w":198,"k":{"y":1,".":3,",":5}},"q":{"d":"10,-98v0,-78,67,-128,132,-90r2,-8r31,0r0,268r-33,0r0,-93v-17,15,-31,25,-59,25v-50,0,-73,-46,-73,-102xm91,-28v20,0,39,-11,51,-21r0,-112v-46,-28,-102,-1,-98,62v3,40,11,70,47,71","w":198},"r":{"d":"57,-167v21,-19,37,-32,71,-28v-2,17,10,41,-20,33v-23,0,-38,10,-51,23r0,139r-33,0r0,-196r33,0r0,29","w":129,"k":{"q":2,"o":2,"g":2,"e":2,"d":2,"c":2,"a":6,".":49,"-":4,",":49}},"s":{"d":"143,-91v30,44,-8,96,-66,96v-25,0,-48,-10,-65,-17r0,-37v18,11,37,24,66,26v30,2,54,-22,36,-47v-33,-20,-101,-12,-101,-71v0,-62,88,-72,134,-46v-2,11,3,28,-2,35v-24,-30,-124,-28,-92,25v21,16,75,14,90,36","w":160},"t":{"d":"120,-2v-48,16,-94,-1,-94,-58r0,-109r-22,0r0,-27r22,0r0,-57r33,0r0,57r61,0r0,27r-61,0r1,116v-2,32,36,31,60,22r0,29","w":120,"k":{"y":4,"v":4,"t":3,"-":7}},"u":{"d":"93,-26v20,0,38,-13,51,-24r0,-146r33,0r0,196r-33,0r0,-22v-36,46,-122,32,-122,-47r0,-127r34,0r0,111v-1,35,3,59,37,59","w":200},"v":{"d":"178,-196r-74,196r-29,0r-74,-196r36,0r54,151r53,-151r34,0","w":179,"k":{"o":3,"e":3,"a":7,".":30,"-":7,",":30}},"w":{"d":"262,-196r-50,196r-30,0r-48,-151r-48,151r-30,0r-51,-196r35,0r34,152r47,-152r27,0r48,152r33,-152r33,0","w":267,"k":{"a":3,".":12,"-":3,",":12}},"x":{"d":"176,0r-40,0r-48,-74r-49,74r-37,0r68,-97r-68,-99r41,0r47,73r49,-73r37,0r-67,96","w":178,"k":{"o":4,"g":2,"e":4,"d":2,"c":3,"-":8}},"y":{"d":"178,-196r-105,268r-36,0r35,-81r-71,-187r36,0r53,145r54,-145r34,0","w":179,"k":{"q":2,"o":3,"g":2,"e":3,"d":2,"c":3,"a":7,".":32,"-":7,",":32}},"z":{"d":"153,0r-144,0r0,-24r102,-145r-98,0r0,-27r138,0r0,23r-103,145r105,0r0,28","w":159,"k":{"q":2,"o":2,"g":2,"e":2,"d":2,"c":2,"-":3}},"{":{"d":"100,-33v0,49,2,86,56,78r0,24v-66,6,-93,-26,-88,-94v3,-40,-16,-65,-57,-64r0,-27v52,3,59,-37,57,-89v-2,-51,33,-74,88,-69r0,25v-52,-7,-56,25,-56,77v0,38,-22,55,-48,68r0,4v27,12,48,30,48,67","w":172,"k":{"j":-9,"T":-4}},"|":{"d":"83,69r-29,0r0,-343r29,0r0,343","w":137},"}":{"d":"105,-205v-2,52,4,93,57,89r0,27v-51,-2,-59,37,-57,90v2,51,-33,73,-88,68r0,-24v52,7,56,-25,56,-78v0,-38,20,-56,48,-67r0,-4v-35,-14,-53,-44,-48,-98v3,-38,-18,-50,-56,-47r0,-25v55,-5,89,18,88,69","w":172},"~":{"d":"177,-98v29,-2,30,-34,32,-65r29,0v-1,49,-13,91,-60,93v-54,2,-51,-55,-93,-65v-29,2,-30,35,-32,66r-29,0v1,-49,13,-93,60,-94v52,-2,51,55,93,65","w":261},"\u0401":{"d":"170,-295r-36,0r0,-34r36,0r0,34xm97,-295r-35,0r0,-34r35,0r0,34xm27,0r0,-262r163,0r0,31r-129,0r0,72r120,0r0,31r-120,0r0,97r129,0r0,31r-163,0","w":201},"\u0402":{"d":"108,-159v80,-4,144,4,144,78v0,59,-43,84,-108,81r0,-31v43,2,71,-10,72,-49v1,-53,-52,-50,-108,-49r0,129r-34,0r0,-231r-74,0r0,-31r196,0r0,31r-88,0r0,72","w":258},"\u0403":{"d":"163,-360r-48,66r-26,0r32,-66r42,0xm182,-231r-121,0r0,231r-34,0r0,-262r155,0r0,31","w":182},"\u0404":{"d":"132,-25v33,2,56,-13,76,-25r0,39v-22,9,-46,16,-77,16v-75,0,-119,-55,-119,-136v0,-80,44,-135,119,-135v31,0,57,7,77,16r0,39v-30,-24,-97,-41,-132,-6v-15,14,-24,34,-27,61r125,0r0,31r-127,0v2,59,27,98,85,100","w":215},"\u0405":{"d":"140,-141v89,27,51,146,-41,146v-38,0,-60,-9,-85,-21v2,-13,-4,-34,2,-43v27,35,139,57,139,-10v0,-78,-140,-19,-140,-123v0,-75,108,-90,166,-58v-2,13,4,33,-2,42v-25,-31,-124,-46,-127,13v-2,46,54,44,88,54","w":200},"\u0406":{"d":"118,0r-102,0r0,-27r34,0r0,-208r-34,0r0,-27r102,0r0,27r-33,0r0,208r33,0r0,27","w":134},"\u0407":{"d":"121,-295r-35,0r0,-34r35,0r0,34xm49,-295r-36,0r0,-34r36,0r0,34xm118,0r-102,0r0,-27r34,0r0,-208r-34,0r0,-27r102,0r0,27r-33,0r0,208r33,0r0,27","w":134},"\u0408":{"d":"2,-35v40,16,88,14,88,-46r0,-153r-55,0r0,-28r90,0r0,194v2,65,-61,81,-123,67r0,-34","w":149},"\u0409":{"d":"212,-159v78,-4,143,3,142,78v-2,84,-87,84,-177,81r0,-231r-83,0v-13,93,21,232,-91,231r0,-34v70,0,48,-98,57,-176v3,-28,1,-28,2,-52r150,0r0,103xm212,-30v55,1,105,3,105,-50v0,-54,-50,-50,-105,-49r0,99","w":360},"\u040a":{"d":"208,-159v79,-5,140,5,140,78v0,83,-86,85,-175,81r0,-129r-112,0r0,129r-34,0r0,-262r34,0r0,103r112,0r0,-103r35,0r0,103xm208,-30v54,1,103,2,103,-50v0,-53,-48,-51,-103,-49r0,99","w":354},"\u040b":{"d":"108,-154v60,-18,134,-11,134,64r0,90r-35,0v-5,-58,21,-131,-46,-131v-18,0,-38,2,-53,6r0,125r-34,0r0,-231r-74,0r0,-31r196,0r0,31r-88,0r0,77","w":258},"\u040c":{"d":"164,-357r-48,66r-26,0r31,-66r43,0xm220,0r-44,0r-93,-120r-22,0r0,120r-34,0r0,-262r34,0r0,118v85,-2,36,-133,145,-118r0,31v-54,-10,-49,49,-70,74v-6,7,-14,13,-22,19","w":216},"\u040e":{"d":"209,-262r-95,221v-12,33,-42,47,-89,41r0,-33v36,8,61,-6,67,-35r-92,-194r38,0r71,154r64,-154r36,0xm107,-303v23,0,34,-12,33,-37r32,0v6,58,-79,76,-114,42v-11,-11,-16,-24,-16,-42r31,0v0,24,11,37,34,37","w":207},"\u040f":{"d":"217,0r-79,0r0,59r-33,0r0,-59r-78,0r0,-262r34,0r0,232r121,0r0,-232r35,0r0,262","w":243},"\u0410":{"d":"-2,0r88,-262r43,0r89,262r-37,0r-24,-73r-100,0r-24,73r-35,0xm147,-103r-40,-123r-40,123r80,0","w":215},"\u0411":{"d":"61,-159v80,-4,145,4,144,78v-1,85,-88,84,-178,81r0,-262r159,0r0,31r-125,0r0,72xm61,-30v55,1,107,4,107,-50v0,-55,-51,-50,-107,-49r0,99","w":212},"\u0412":{"d":"155,-145v29,8,49,29,49,65v-1,85,-89,82,-177,80r0,-262v75,1,163,-14,165,59v1,29,-21,44,-37,58xm61,-155v48,1,97,5,95,-43v-1,-42,-51,-33,-95,-34r0,77xm61,-30v54,1,107,3,107,-49v0,-55,-54,-47,-107,-47r0,96","w":212},"\u0413":{"d":"182,-231r-121,0r0,231r-34,0r0,-262r155,0r0,31","w":182},"\u0414":{"d":"17,-31v32,-53,52,-141,51,-231r146,0r0,231r25,0r0,90r-33,0r0,-60r-170,0r0,60r-33,0r0,-90r14,0xm101,-232v-3,79,-20,153,-50,201r128,0r0,-201r-78,0","w":246},"\u0415":{"d":"27,0r0,-262r163,0r0,31r-129,0r0,72r120,0r0,31r-120,0r0,97r129,0r0,31r-163,0","w":201},"\u0416":{"d":"7,-262v100,-15,63,107,136,118r0,-118r34,0r0,119v73,-10,36,-132,137,-119r0,31v-55,-9,-47,51,-69,75v-7,7,-14,14,-21,19r100,137r-43,0r-87,-120r-17,0r0,120r-34,0r0,-120r-17,0r-88,120r-40,0r98,-135v-44,-16,-20,-104,-89,-96r0,-31","w":321},"\u0417":{"d":"139,-200v0,-58,-97,-33,-125,-13r0,-38v50,-24,163,-27,161,47v0,30,-24,53,-51,58r0,3v33,6,57,25,58,65v3,86,-111,97,-177,68r0,-39v39,25,142,44,141,-31v0,-46,-44,-49,-92,-47r0,-30v44,2,85,-4,85,-43","w":191},"\u0418":{"d":"215,0r-35,0r0,-208r-118,208r-35,0r0,-262r34,0r0,205r117,-205r37,0r0,262","w":241},"\u0419":{"d":"215,0r-35,0r0,-208r-118,208r-35,0r0,-262r34,0r0,205r117,-205r37,0r0,262xm124,-303v23,0,34,-13,34,-37r31,0v6,57,-79,76,-113,42v-11,-11,-17,-24,-17,-42r31,0v0,24,11,37,34,37","w":241},"\u041a":{"d":"220,0r-44,0r-93,-120r-22,0r0,120r-34,0r0,-262r34,0r0,118v85,-2,36,-133,145,-118r0,31v-54,-10,-49,49,-70,74v-6,7,-14,13,-22,19","w":216},"\u041b":{"d":"94,-231v-13,93,21,232,-91,231r0,-34v70,0,48,-98,57,-176v3,-28,1,-28,2,-52r155,0r0,262r-34,0r0,-231r-89,0","w":243},"\u041c":{"d":"251,0r-35,0r0,-226r-68,154r-21,0r-68,-154r0,226r-32,0r0,-262r47,0r65,146r63,-146r49,0r0,262","w":277},"\u041d":{"d":"217,0r-35,0r0,-128r-121,0r0,128r-34,0r0,-262r34,0r0,103r121,0r0,-103r35,0r0,262","w":243},"\u041e":{"d":"127,-267v80,0,116,54,116,136v0,81,-36,136,-116,136v-80,0,-115,-55,-115,-136v0,-82,35,-136,115,-136xm127,-25v55,0,80,-45,80,-106v-1,-60,-22,-106,-80,-106v-59,0,-78,45,-79,106v-1,61,24,106,79,106","w":254},"\u041f":{"d":"217,0r-35,0r0,-231r-121,0r0,231r-34,0r0,-262r190,0r0,262","w":243},"\u0420":{"d":"27,-262v84,-3,167,-2,165,79v-2,68,-53,91,-131,85r0,98r-34,0r0,-262xm61,-127v53,3,95,-5,95,-55v0,-48,-43,-53,-95,-50r0,105","w":198},"\u0421":{"d":"210,-18v-23,11,-45,23,-81,23v-79,0,-117,-53,-117,-136v1,-82,38,-132,117,-135v36,-1,59,10,81,22r0,42v-22,-14,-43,-36,-81,-35v-57,2,-80,46,-81,106v0,62,25,103,81,106v37,2,60,-19,81,-34r0,41","w":216},"\u0422":{"d":"88,0r0,-231r-88,0r0,-31r210,0r0,31r-87,0r0,231r-35,0","w":210},"\u0423":{"d":"209,-262r-95,221v-12,33,-42,47,-89,41r0,-33v36,8,61,-6,67,-35r-92,-194r38,0r71,154r64,-154r36,0","w":207},"\u0424":{"d":"152,-237v64,4,106,36,106,103v0,67,-41,102,-106,105r0,32r-35,0r0,-32v-63,-3,-105,-37,-105,-105v1,-66,41,-99,105,-103r0,-29r35,0r0,29xm152,-55v81,7,92,-126,29,-150v-8,-3,-18,-5,-29,-5r0,155xm117,-210v-81,-9,-91,127,-28,149v8,3,17,6,28,6r0,-155","w":269},"\u0425":{"d":"208,0r-40,0r-64,-105r-65,105r-38,0r84,-131r-81,-131r40,0r62,103r64,-103r37,0r-81,129","w":209},"\u0426":{"d":"240,59r-33,0r0,-59r-180,0r0,-262r34,0r0,231r119,0r0,-231r35,0r0,231r25,0r0,90","w":246},"\u0427":{"d":"51,-189v-14,73,71,65,117,48r0,-121r34,0r0,262r-34,0r0,-111v-61,26,-152,21,-152,-61r0,-90r35,0r0,73","w":228},"\u0428":{"d":"313,0r-286,0r0,-262r34,0r0,232r91,0r0,-232r35,0r0,232r91,0r0,-232r35,0r0,262","w":339},"\u0429":{"d":"338,59r-33,0r0,-59r-278,0r0,-262r34,0r0,232r91,0r0,-232r35,0r0,232r91,0r0,-232r35,0r0,232r25,0r0,89","w":344},"\u042a":{"d":"103,-159v79,-5,139,6,139,78v0,83,-85,85,-174,81r0,-231r-68,0r0,-31r103,0r0,103xm103,-30v54,1,102,1,102,-50v0,-53,-47,-51,-102,-49r0,99","w":248},"\u042b":{"d":"61,-159v78,-4,139,5,138,78v-1,84,-84,84,-172,81r0,-262r34,0r0,103xm61,-30v55,2,102,0,102,-50v1,-52,-46,-51,-102,-49r0,99xm257,0r-34,0r0,-262r34,0r0,262","w":283},"\u042c":{"d":"61,-159v78,-4,143,3,142,78v-1,85,-87,84,-176,81r0,-262r34,0r0,103xm61,-30v56,1,105,2,106,-50v1,-53,-50,-51,-106,-49r0,99","w":209},"\u042d":{"d":"85,-266v78,0,119,52,119,134v0,78,-45,137,-119,137v-29,0,-56,-7,-77,-16r0,-39v33,26,106,39,138,-2v15,-19,23,-43,23,-73r-127,0r0,-31r126,0v-5,-47,-35,-80,-84,-81v-31,0,-55,13,-76,25r0,-38v18,-9,48,-17,77,-16","w":215},"\u042e":{"d":"216,-267v75,-1,115,56,115,136v0,80,-40,136,-115,136v-75,0,-113,-55,-114,-132r-41,0r0,127r-34,0r0,-262r34,0r0,105r43,0v7,-64,46,-109,112,-110xm216,-25v54,0,79,-46,79,-106v0,-61,-25,-106,-79,-106v-54,0,-78,44,-78,106v0,61,24,106,78,106","w":342},"\u042f":{"d":"28,-187v0,-79,84,-77,166,-75r0,262r-35,0r0,-104r-40,0r-78,104r-42,0r84,-109v-33,-12,-56,-33,-55,-78xm64,-186v0,51,42,56,95,53r0,-99v-50,-2,-95,-1,-95,46","w":220},"\u0430":{"d":"44,-59v0,49,71,36,90,11r0,-55v-38,5,-89,3,-90,44xm26,-192v56,-17,140,-17,140,58r0,134r-32,0r0,-21v-19,12,-31,27,-64,26v-37,-1,-60,-25,-60,-62v0,-63,62,-69,124,-72v5,-60,-69,-43,-108,-30r0,-33","w":188},"\u0431":{"d":"107,-189v54,1,80,36,80,92v0,58,-30,100,-88,102v-100,2,-100,-141,-72,-221v18,-50,81,-57,148,-59r0,30v-65,3,-130,7,-128,78v16,-11,35,-22,60,-22xm100,-23v38,1,54,-32,54,-72v0,-66,-69,-79,-107,-47v-3,57,1,117,53,119","w":197},"\u0432":{"d":"139,-109v69,25,37,109,-38,109r-77,0r0,-196v61,3,144,-17,144,45v-1,21,-13,35,-29,42xm57,-116v36,0,77,7,77,-30v0,-33,-45,-22,-77,-24r0,54xm57,-26v40,-1,86,6,87,-33v2,-40,-48,-31,-87,-32r0,65","w":188},"\u0433":{"d":"149,-167r-92,0r0,167r-33,0r0,-196r125,0r0,29","w":149},"\u0434":{"d":"14,-28v23,-38,39,-102,38,-168r121,0r0,168r19,0r0,75r-30,0r0,-48r-130,0r0,48r-31,0r0,-75r13,0xm83,-169v-3,55,-15,107,-36,141r93,0r0,-141r-57,0","w":200},"\u0435":{"d":"176,-12v-18,8,-40,17,-67,17v-63,0,-99,-39,-99,-102v0,-59,35,-104,91,-105v61,0,82,42,79,107r-136,0v-8,80,90,83,132,47r0,36xm148,-120v9,-63,-82,-72,-99,-22v-3,6,-4,14,-5,22r104,0","w":189},"\u0436":{"d":"148,-110v54,-9,29,-99,107,-86r0,28v-49,-7,-34,51,-67,64r74,104r-40,0r-61,-90r-13,0r0,90r-33,0r0,-90r-13,0r-62,90r-39,0r74,-103v-32,-10,-15,-72,-67,-65r0,-28v63,-10,62,47,88,79v5,4,11,7,19,7r0,-86r33,0r0,86","w":262},"\u0437":{"d":"117,-104v18,10,37,21,37,50v0,69,-101,68,-148,43v2,-11,-3,-29,2,-37v14,14,40,25,66,24v23,-1,46,-6,46,-33v0,-35,-37,-31,-71,-31r0,-29v32,0,70,5,67,-28v-4,-45,-78,-26,-101,-9r0,-36v47,-19,134,-18,135,42v0,23,-14,39,-33,44","w":164},"\u0438":{"d":"179,0r-33,0r0,-146r-92,146r-30,0r0,-196r33,0r0,144r91,-144r31,0r0,196","w":202},"\u0439":{"d":"106,-243v23,0,30,-18,30,-45r28,0v12,71,-94,92,-112,28v-2,-8,-4,-18,-4,-28r29,0v0,28,5,45,29,45xm179,0r-33,0r0,-146r-92,146r-30,0r0,-196r33,0r0,144r91,-144r31,0r0,196","w":202},"\u043a":{"d":"182,0r-41,0r-68,-91r-16,0r0,91r-33,0r0,-196r33,0r0,85v62,-1,27,-97,111,-85r0,28v-48,-7,-35,50,-66,64","w":179},"\u043b":{"d":"3,-29v60,-1,33,-104,44,-167r129,0r0,196r-33,0r0,-169r-68,0v-8,75,14,173,-72,169r0,-29","w":199},"\u043c":{"d":"206,0r-33,0r0,-154r-47,100r-24,0r-47,-100r0,154r-31,0r0,-196r40,0r51,109r50,-109r41,0r0,196","w":229},"\u043d":{"d":"179,0r-33,0r0,-88r-89,0r0,88r-33,0r0,-196r33,0r0,79r89,0r0,-79r33,0r0,196","w":202},"\u043e":{"d":"98,-202v56,0,87,42,87,104v0,62,-31,103,-87,103v-57,1,-88,-43,-88,-103v0,-61,32,-104,88,-104xm98,-23v39,0,53,-31,53,-75v0,-44,-13,-75,-53,-75v-40,0,-54,30,-54,75v0,44,15,75,54,75","w":195},"\u043f":{"d":"179,0r-33,0r0,-168r-89,0r0,168r-33,0r0,-196r155,0r0,196","w":202},"\u0440":{"d":"117,-202v48,0,72,45,72,99v0,79,-68,134,-132,93r0,82r-33,0r0,-268r33,0r0,20v15,-13,34,-26,60,-26xm57,-37v47,28,102,0,98,-63v-3,-39,-9,-69,-46,-70v-21,0,-39,10,-52,22r0,111","w":198},"\u0441":{"d":"101,-24v26,0,42,-14,59,-24r0,37v-19,6,-33,16,-58,15v-62,-1,-89,-39,-92,-102v-5,-87,81,-125,150,-88v-2,11,3,29,-2,37v-14,-11,-32,-23,-57,-23v-38,0,-56,31,-56,74v0,42,18,73,56,74","w":166},"\u0442":{"d":"167,-167r-66,0r0,167r-33,0r0,-167r-67,0r0,-29r166,0r0,29","w":168},"\u0443":{"d":"178,-196r-105,268r-36,0r35,-81r-71,-187r36,0r53,145r54,-145r34,0","w":179},"\u0444":{"d":"153,-189v56,-35,110,15,110,86v0,70,-51,130,-110,94r0,81r-33,0r0,-81v-55,37,-109,-19,-109,-89v0,-68,51,-126,109,-91r0,-85r33,0r0,85xm153,-34v42,27,76,-13,76,-66v0,-52,-31,-88,-76,-65r0,131xm45,-99v-5,53,33,91,75,65r0,-131v-42,-22,-81,12,-75,66","w":273},"\u0445":{"d":"176,0r-40,0r-48,-74r-49,74r-37,0r68,-97r-68,-99r41,0r47,73r49,-73r37,0r-67,96","w":178},"\u0446":{"d":"197,47r-31,0r0,-47r-142,0r0,-196r33,0r0,168r88,0r0,-168r33,0r0,168r19,0r0,75","w":205},"\u0447":{"d":"50,-143v-10,56,51,52,89,41r0,-94r33,0r0,196r-33,0r0,-77v-49,19,-122,17,-122,-49r0,-70r33,0r0,53","w":195},"\u0448":{"d":"256,0r-232,0r0,-196r33,0r0,168r67,0r0,-168r33,0r0,168r66,0r0,-168r33,0r0,196","w":280},"\u0449":{"d":"276,47r-31,0r0,-47r-221,0r0,-196r33,0r0,168r67,0r0,-168r33,0r0,168r66,0r0,-168r33,0r0,168r20,0r0,75","w":284},"\u044a":{"d":"84,-120v62,-3,113,1,113,59v0,68,-76,62,-146,61r0,-167r-50,0r0,-29r83,0r0,76xm84,-26v39,0,79,3,79,-34v1,-38,-40,-33,-79,-33r0,67","w":204},"\u044b":{"d":"57,-120v62,-3,113,2,113,59v0,67,-76,63,-146,61r0,-196r33,0r0,76xm57,-26v39,0,79,2,79,-34v0,-37,-39,-34,-79,-33r0,67xm226,0r-34,0r0,-196r34,0r0,196","w":249},"\u044c":{"d":"57,-120v63,-3,116,1,116,59v0,68,-78,62,-149,61r0,-196r33,0r0,76xm57,-26v40,0,82,3,82,-34v0,-38,-41,-33,-82,-33r0,67","w":180},"\u044d":{"d":"159,-102v5,88,-80,129,-152,93v2,-11,-3,-29,2,-36v21,20,76,32,99,4v9,-11,16,-27,18,-49r-89,0r0,-27r89,0v0,-64,-82,-66,-116,-33r0,-36v12,-5,40,-16,59,-15v61,1,86,37,90,99","w":169},"\u044e":{"d":"177,-202v58,-1,87,44,87,104v0,61,-31,102,-87,103v-54,1,-84,-40,-85,-94r-35,0r0,89r-33,0r0,-196r33,0r0,80r35,0v5,-50,34,-85,85,-86xm177,-23v39,0,53,-31,53,-75v0,-43,-13,-75,-53,-75v-39,1,-53,32,-53,75v0,43,14,75,53,75","w":274},"\u044f":{"d":"20,-140v0,-67,80,-56,146,-56r0,196r-33,0r0,-78r-33,0r-58,78r-38,0r63,-81v-29,-10,-47,-23,-47,-59xm54,-139v0,41,40,35,79,35r0,-66v-37,0,-79,-6,-79,31","w":190},"\u0451":{"d":"155,-229r-36,0r0,-34r36,0r0,34xm82,-229r-35,0r0,-34r35,0r0,34xm176,-12v-18,8,-40,17,-67,17v-63,0,-99,-39,-99,-102v0,-59,35,-104,91,-105v61,0,82,42,79,107r-136,0v-8,80,90,83,132,47r0,36xm148,-120v9,-63,-82,-72,-99,-22v-3,6,-4,14,-5,22r104,0","w":189},"\u0452":{"d":"124,-202v71,-1,63,84,61,155v-2,72,-28,123,-101,117v2,-10,-8,-31,10,-27v69,0,59,-79,59,-155v0,-32,-3,-61,-38,-58v-20,1,-38,12,-51,23r0,147r-33,0r0,-223r-29,0r0,-23r29,0r0,-28r33,0r0,28r66,0r0,23r-66,0r0,48v16,-13,35,-26,60,-27","w":208},"\u0453":{"d":"137,-295r-48,66r-26,0r32,-66r42,0xm149,-167r-92,0r0,167r-33,0r0,-196r125,0r0,29","w":149},"\u0454":{"d":"44,-90v-5,70,78,80,116,45r0,37v-71,32,-159,-2,-149,-90v-8,-86,81,-126,149,-88v-2,11,3,29,-2,36v-20,-20,-69,-34,-94,-8v-9,10,-17,23,-20,41r90,0r0,27r-90,0","w":169},"\u0455":{"d":"143,-91v30,44,-8,96,-66,96v-25,0,-48,-10,-65,-17r0,-37v18,11,37,24,66,26v30,2,54,-22,36,-47v-33,-20,-101,-12,-101,-71v0,-62,88,-72,134,-46v-2,11,3,28,-2,35v-24,-30,-124,-28,-92,25v21,16,75,14,90,36","w":160},"\u0456":{"d":"58,0r-33,0r0,-196r33,0r0,196xm60,-229r-38,0r0,-34r38,0r0,34","w":82},"\u0457":{"d":"58,0r-33,0r0,-196r33,0r0,196xm89,-229r-33,0r0,-34r33,0r0,34xm27,-229r-34,0r0,-34r34,0r0,34","w":82},"\u0458":{"d":"-16,43v41,8,60,-7,60,-51r0,-161r-35,0r0,-27r69,0r0,202v2,52,-39,77,-94,66r0,-29xm78,-229r-38,0r0,-34r38,0r0,34","w":101},"\u0459":{"d":"176,-120v62,-3,114,2,114,59v0,68,-76,63,-147,61r0,-169r-67,0v-9,77,13,171,-73,169r0,-29v60,-1,33,-104,44,-167r129,0r0,76xm176,-26v39,-1,80,4,80,-34v1,-39,-41,-33,-80,-33r0,67","w":297},"\u045a":{"d":"173,-120v62,-3,114,1,114,59v0,69,-77,62,-147,61r0,-93r-83,0r0,93r-33,0r0,-196r33,0r0,76r83,0r0,-76r33,0r0,76xm173,-26v39,0,80,4,80,-34v1,-39,-41,-33,-80,-33r0,67","w":296},"\u045b":{"d":"124,-202v87,0,57,120,62,202r-33,0r0,-112v-1,-31,-3,-61,-38,-58v-20,1,-38,12,-51,23r0,147r-33,0r0,-223r-29,0r0,-23r29,0r0,-28r33,0r0,28r66,0r0,23r-66,0r0,48v17,-14,33,-26,60,-27","w":208},"\u045c":{"d":"150,-295r-48,66r-26,0r31,-66r43,0xm182,0r-41,0r-68,-91r-16,0r0,91r-33,0r0,-196r33,0r0,85v62,-1,27,-97,111,-85r0,28v-48,-7,-35,50,-66,64","w":179},"\u045e":{"d":"91,-243v23,0,29,-18,29,-45r28,0v13,72,-94,92,-112,28v-2,-8,-3,-18,-3,-28r28,0v0,28,6,45,30,45xm178,-196r-105,268r-36,0r35,-81r-71,-187r36,0r53,145r54,-145r34,0","w":179},"\u045f":{"d":"179,0r-62,0r0,47r-31,0r0,-47r-62,0r0,-196r33,0r0,168r89,0r0,-168r33,0r0,196","w":202},"\u0490":{"d":"182,-231r-121,0r0,231r-34,0r0,-262r122,0r0,-72r33,0r0,103","w":182},"\u0491":{"d":"149,-167r-92,0r0,167r-33,0r0,-196r94,0r0,-65r31,0r0,94","w":149},"\u0450":{"d":"176,-12v-18,8,-40,17,-67,17v-63,0,-99,-39,-99,-102v0,-59,35,-104,91,-105v61,0,82,42,79,107r-136,0v-8,80,90,83,132,47r0,36xm148,-120v9,-63,-82,-72,-99,-22v-3,6,-4,14,-5,22r104,0xm121,-229r-26,0r-48,-66r42,0","w":189},"\u0400":{"d":"27,0r0,-262r163,0r0,31r-129,0r0,72r120,0r0,31r-120,0r0,97r129,0r0,31r-163,0xm133,-295r-26,0r-48,-66r42,0","w":201},"\u045d":{"d":"179,0r-33,0r0,-146r-92,146r-30,0r0,-196r33,0r0,144r91,-144r31,0r0,196xm126,-229r-26,0r-48,-66r42,0","w":202},"\u040d":{"d":"215,0r-35,0r0,-208r-118,208r-35,0r0,-262r34,0r0,205r117,-205r37,0r0,262xm140,-295r-26,0r-48,-66r42,0","w":241},"\u0492":{"d":"182,-231r-121,0r0,83r92,0r0,31r-92,0r0,117r-34,0r0,-117r-21,0r0,-31r21,0r0,-114r155,0r0,31","w":182},"\u0493":{"d":"149,-167r-92,0r0,57r69,0r0,29r-69,0r0,81r-33,0r0,-81r-16,0r0,-29r16,0r0,-86r125,0r0,29","w":149},"\u0496":{"d":"177,-143v69,-7,39,-135,137,-119r0,31v-36,0,-43,9,-52,40v-8,25,-21,43,-38,54r78,106r25,0r0,90r-33,0r0,-59r-13,0r-87,-120r-17,0r0,120r-34,0r0,-120r-17,0r-88,120r-40,0r98,-135v-40,-14,-21,-105,-89,-96r0,-31v63,-6,74,34,91,80v9,24,25,36,45,38r0,-118r34,0r0,119","w":333},"\u0497":{"d":"75,-103v-30,-8,-17,-73,-67,-65r0,-28v46,-5,63,24,75,60v6,17,17,25,32,26r0,-86r33,0r0,86v23,1,35,-27,41,-47v10,-29,31,-41,66,-39r0,28v-48,-8,-37,54,-67,64r54,76r20,0r0,75r-31,0r0,-47r-9,0r-61,-90r-13,0r0,90r-33,0r0,-90r-13,0r-62,90r-39,0","w":270},"\u049a":{"d":"61,-144v80,-1,42,-135,145,-118r0,31v-36,0,-45,8,-54,40v-7,24,-20,41,-38,53r82,107r25,0r0,90r-33,0r0,-59r-12,0r-93,-120r-22,0r0,120r-34,0r0,-262r34,0r0,118","w":228},"\u049b":{"d":"180,47r-31,0r0,-47r-8,0r-68,-91r-16,0r0,91r-33,0r0,-196r33,0r0,85v27,1,38,-23,45,-46v9,-29,31,-41,66,-39r0,28v-48,-8,-37,54,-66,64r58,76r20,0r0,75","w":188},"\u049c":{"d":"107,-169v20,-42,27,-103,99,-93r0,31v-36,0,-45,8,-54,40v-7,24,-20,41,-38,53r106,138r-44,0r-69,-89r0,36r-24,0r0,-67r-22,0r0,120r-34,0r0,-262r34,0r0,118v8,0,16,-1,22,-4r0,-62r24,0r0,41","w":216},"\u049d":{"d":"97,-143v9,-32,29,-58,71,-53r0,28v-48,-8,-37,54,-66,64r80,104r-41,0r-44,-59r0,34r-24,0r0,-66r-16,0r0,91r-33,0r0,-196r33,0r0,85v6,0,11,-1,16,-3r0,-61r24,0r0,32","w":179},"\u04a2":{"d":"241,59r-33,0r0,-59r-26,0r0,-128r-121,0r0,128r-34,0r0,-262r34,0r0,103r121,0r0,-103r35,0r0,232r24,0r0,89","w":248},"\u04a3":{"d":"198,47r-30,0r0,-47r-22,0r0,-88r-89,0r0,88r-33,0r0,-196r33,0r0,79r89,0r0,-79r33,0r0,168r19,0r0,75","w":207},"\u04ae":{"d":"210,-262r-89,146r0,116r-35,0r0,-112r-88,-150r39,0r67,116r69,-116r37,0","w":207},"\u04af":{"d":"178,-196r-73,187r0,81r-33,0r0,-81r-71,-187r36,0r53,145r54,-145r34,0","w":179},"\u04b0":{"d":"210,-262r-89,145r69,0r0,25r-69,0r0,92r-35,0r0,-92r-68,0r0,-25r68,0r-88,-145r39,0r67,116r69,-116r37,0","w":207},"\u04b1":{"d":"178,-196r-73,185r57,0r0,25r-57,0r0,58r-33,0r0,-58r-54,0r0,-25r54,0r-71,-185r36,0r53,145r54,-145r34,0","w":179},"\u04b2":{"d":"214,59r-33,0r0,-59r-13,0r-64,-105r-65,105r-38,0r84,-131r-81,-131r40,0r62,103r64,-103r37,0r-81,129r63,103r25,0r0,89","w":220},"\u04b3":{"d":"177,47r-31,0r0,-47r-10,0r-48,-74r-49,74r-37,0r68,-97r-68,-99r41,0r47,73r49,-73r37,0r-67,96r48,72r20,0r0,75","w":185},"\u04b8":{"d":"119,-130v16,-1,38,-7,49,-11r0,-121r34,0r0,262r-34,0r0,-111v-19,7,-32,10,-49,13r0,52r-23,0v-2,-16,4,-39,-2,-51v-50,1,-78,-27,-78,-75r0,-90r35,0v5,55,-20,135,45,133r0,-66r23,0r0,65","w":228},"\u04b9":{"d":"106,-96v11,-1,24,-4,33,-6r0,-94r33,0r0,196r-33,0r0,-77r-33,9r0,36r-24,0v-2,-10,3,-27,-2,-34v-39,0,-63,-20,-63,-60r0,-70r33,0v3,42,-13,100,32,101r0,-52r24,0r0,51","w":195},"\u04ba":{"d":"61,-151v71,-27,152,-19,152,61r0,90r-35,0v-4,-59,18,-133,-50,-133v-23,0,-46,4,-67,12r0,121r-34,0r0,-262r34,0r0,111","w":228},"\u04bb":{"d":"117,-202v85,-1,56,120,61,202r-33,0r0,-112v0,-33,-2,-61,-37,-58v-20,1,-38,12,-51,23r0,147r-33,0r0,-274r33,0r0,99v17,-15,33,-26,60,-27","w":200},"\u04d8":{"d":"127,-267v76,0,116,56,116,136v0,80,-41,139,-116,136v-86,-3,-119,-57,-115,-162r193,0v-7,-47,-28,-78,-78,-80v-30,-1,-52,10,-75,25r0,-38v18,-8,50,-17,75,-17xm48,-125v0,56,26,100,79,100v53,0,79,-45,80,-100r-159,0","w":254},"\u018f":{"d":"127,-267v76,0,116,56,116,136v0,80,-41,139,-116,136v-86,-3,-119,-57,-115,-162r193,0v-7,-47,-28,-78,-78,-80v-30,-1,-52,10,-75,25r0,-38v18,-8,50,-17,75,-17xm48,-125v0,56,26,100,79,100v53,0,79,-45,80,-100r-159,0","w":254},"\u04d9":{"d":"146,-102v8,-80,-91,-84,-133,-47r0,-36v14,-5,45,-17,67,-17v64,0,100,38,99,102v0,59,-34,105,-91,105v-58,0,-84,-43,-79,-107r137,0xm42,-77v-7,53,56,69,87,39v9,-10,16,-23,17,-39r-104,0","w":189},"\u0259":{"d":"146,-102v8,-80,-91,-84,-133,-47r0,-36v14,-5,45,-17,67,-17v64,0,100,38,99,102v0,59,-34,105,-91,105v-58,0,-84,-43,-79,-107r137,0xm42,-77v-7,53,56,69,87,39v9,-10,16,-23,17,-39r-104,0","w":189},"\u04e8":{"d":"127,-267v76,0,116,56,116,136v0,80,-41,136,-116,136v-76,0,-115,-56,-115,-136v0,-80,38,-136,115,-136xm205,-157v1,-73,-93,-108,-136,-53v-10,13,-17,31,-20,53r156,0xm48,-125v0,56,26,100,79,100v53,0,79,-45,80,-100r-159,0","w":254},"\u04e9":{"d":"98,-202v57,0,87,43,87,104v0,60,-29,103,-87,103v-57,0,-88,-44,-88,-103v0,-59,31,-104,88,-104xm150,-120v-5,-36,-22,-53,-52,-53v-30,0,-47,17,-52,53r104,0xm151,-95r-107,0v1,48,19,72,54,72v35,0,52,-24,53,-72","w":195}}});
;
/*!
 * Copyright (C) 2004-2008 dot colon. All rights reserved.
 */
Cufon.registerFont({"w":209,"face":{"font-family":"Vegur","font-weight":200,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-11 -274 322 94","underline-thickness":"18","underline-position":"-36","unicode-range":"U+0020-U+00F3"},"glyphs":{" ":{"w":83},"B":{"d":"50,-18v11,1,23,2,39,2v40,0,69,-20,69,-51v0,-28,-26,-45,-65,-45v-14,0,-32,1,-43,1r0,93xm83,-220v-12,0,-23,1,-33,2r0,87r41,0v36,0,58,-23,58,-45v0,-26,-14,-44,-66,-44xm136,-125v28,11,45,30,45,55v0,47,-41,74,-96,74v-20,0,-36,-2,-53,-4r-3,0r0,-235r3,0v20,-3,36,-4,59,-4v53,0,81,25,81,58v0,26,-15,44,-36,56","w":196},"b":{"d":"50,-69v0,27,26,53,58,53v38,0,63,-27,63,-71v0,-45,-23,-71,-63,-71v-32,0,-58,26,-58,53r0,36xm112,-178v52,0,82,36,82,89v0,51,-33,93,-82,93v-27,0,-49,-13,-62,-31r-1,27r-20,0r0,-252r21,0r0,104v13,-18,35,-30,62,-30"},"a":{"d":"78,-16v27,0,52,-26,52,-59r0,-16v-12,-2,-25,-3,-43,-3v-32,0,-49,19,-49,41v0,24,16,37,40,37xm92,-178v39,0,60,25,60,63r0,115r-20,0r-1,-27v-13,19,-30,31,-58,31v-31,0,-58,-24,-58,-55v0,-37,31,-63,74,-63v15,0,29,2,41,4r0,-2v0,-34,-16,-46,-44,-46v-16,0,-30,3,-44,11r-5,3r-2,-20r2,-1v15,-9,33,-13,55,-13","w":177},"c":{"d":"110,4v-60,0,-94,-39,-94,-90v0,-51,35,-92,94,-92v18,0,32,4,45,8r3,1r-3,19r-4,-1v-12,-5,-25,-7,-39,-7v-50,0,-73,33,-73,71v0,40,23,71,73,71v13,0,24,-1,38,-6r4,-1r2,19r-3,1v-14,4,-27,7,-43,7","w":173},"d":{"d":"101,-16v32,0,58,-26,58,-53r0,-36v0,-27,-26,-53,-58,-53v-38,0,-62,27,-62,71v0,45,22,71,62,71xm159,-148r0,-104r22,0r0,252r-20,0r-1,-27v-13,18,-35,31,-62,31v-52,0,-82,-36,-82,-89v0,-51,33,-93,82,-93v27,0,48,12,61,30"},"e":{"d":"168,-104v0,6,0,11,-1,16r-1,2r-127,0v1,44,26,70,67,70v16,0,27,-2,39,-8r5,-3r2,20r-3,1v-13,6,-28,10,-46,10v-50,0,-87,-33,-87,-91v0,-48,30,-91,85,-91v43,0,67,31,67,74xm101,-158v-38,0,-57,24,-61,53r106,0v-1,-32,-15,-53,-45,-53","w":183},"f":{"d":"38,-190v0,-39,16,-66,51,-66v7,0,13,2,19,3r3,1r-3,19r-4,-1v-6,-1,-11,-2,-17,-2v-19,0,-28,15,-28,43r0,19r42,0r0,19r-42,0r0,155r-21,0r0,-155r-30,0r0,-19r30,0r0,-16","w":107},"g":{"d":"100,-16v31,0,59,-26,59,-53r0,-36v0,-27,-28,-53,-59,-53v-37,0,-61,27,-61,71v0,45,22,71,61,71xm160,-147r1,-27r20,0r0,162v0,61,-32,93,-87,93v-19,0,-40,-4,-56,-13r-2,-1r2,-19r5,2v17,8,38,12,53,12v39,0,63,-24,63,-75r0,-14v-14,18,-35,31,-62,31v-51,0,-81,-36,-81,-89v0,-51,33,-93,81,-93v27,0,49,13,63,31"},"h":{"d":"50,-252r0,104v14,-18,38,-30,64,-30v41,0,62,28,62,67r0,111r-22,0r0,-107v0,-37,-17,-51,-43,-51v-31,0,-61,25,-61,53r0,105r-21,0r0,-252r21,0","w":201},"i":{"d":"29,0r0,-174r21,0r0,174r-21,0xm40,-210v-8,0,-15,-6,-15,-14v0,-8,7,-14,15,-14v8,0,14,6,14,14v0,8,-6,14,-14,14","w":79},"j":{"d":"40,-210v-8,0,-14,-6,-14,-14v0,-8,6,-14,14,-14v8,0,15,6,15,14v0,8,-7,14,-15,14xm30,11r0,-185r21,0r0,182v0,46,-22,73,-57,73r-3,0r-2,-19r4,0v29,0,37,-26,37,-51","w":79},"k":{"d":"165,-174r-78,79r88,95r-29,0r-75,-83r-21,21r0,62r-21,0r0,-252r21,0r0,169r87,-91r28,0","w":176},"l":{"d":"50,0r-21,0r0,-252r21,0r0,252","w":79},"m":{"d":"217,-178v40,0,61,30,61,67r0,111r-21,0r0,-108v0,-24,-9,-50,-42,-50v-28,0,-51,24,-51,63r0,95r-22,0r0,-104v0,-32,-14,-54,-42,-54v-27,0,-50,25,-50,63r0,95r-21,0r0,-174r20,0r1,25v12,-18,31,-29,53,-29v25,0,45,15,54,38v10,-21,31,-38,60,-38","w":303},"n":{"d":"49,-174r1,27v14,-18,38,-31,64,-31v41,0,62,28,62,67r0,111r-22,0r0,-107v0,-37,-17,-51,-43,-51v-31,0,-61,25,-61,53r0,105r-21,0r0,-174r20,0","w":201},"o":{"d":"186,-87v0,51,-33,91,-85,91v-52,0,-85,-40,-85,-91v0,-51,33,-91,85,-91v52,0,85,40,85,91xm101,-16v44,0,62,-36,62,-71v0,-35,-18,-71,-62,-71v-44,0,-62,36,-62,71v0,35,18,71,62,71","w":202},"u":{"d":"152,0r-1,-27v-14,18,-38,31,-64,31v-41,0,-62,-28,-62,-67r0,-111r22,0r0,107v0,37,17,51,43,51v31,0,61,-26,61,-54r0,-104r21,0r0,174r-20,0","w":201},"t":{"d":"98,-174r0,19r-40,0r0,119v0,16,6,20,16,20v6,0,12,-1,19,-3r4,-1r2,20r-3,1v-9,2,-17,3,-25,3v-21,0,-35,-11,-35,-35r0,-124r-28,0r0,-19r28,0r0,-43r22,0r0,43r40,0","w":111},"s":{"d":"65,-79v-25,-12,-46,-27,-46,-51v0,-26,22,-48,55,-48v11,0,23,2,35,9r2,1r-2,20r-5,-2v-12,-6,-19,-8,-34,-8v-16,0,-29,10,-29,25v0,18,11,26,33,36v30,14,45,29,45,52v0,28,-27,49,-55,49v-18,0,-31,-4,-45,-11r-3,-1r3,-20r4,2v15,7,25,10,41,10v19,0,33,-11,33,-27v0,-18,-8,-25,-32,-36","w":137},"r":{"d":"93,-178r4,0r0,22r-4,0v-27,1,-43,28,-43,62r0,94r-21,0r0,-174r20,0r1,25v9,-16,23,-29,43,-29","w":104},"q":{"d":"159,-105v0,-27,-28,-53,-59,-53v-37,0,-61,27,-61,71v0,45,22,71,61,71v31,0,59,-26,59,-53r0,-36xm97,4v-51,0,-81,-36,-81,-89v0,-51,33,-93,81,-93v27,0,49,13,63,31r1,-27r20,0r0,252r-22,0r0,-105v-14,18,-35,31,-62,31"},"p":{"d":"109,-158v-31,0,-58,26,-58,53r0,36v0,27,27,53,58,53v37,0,62,-27,62,-71v0,-45,-23,-71,-62,-71xm51,-26r0,104r-22,0r0,-252r20,0r1,27v14,-18,36,-31,63,-31v51,0,81,36,81,89v0,51,-33,93,-81,93v-26,0,-48,-12,-62,-30"},"C":{"d":"133,4v-69,0,-117,-50,-117,-121v0,-71,48,-122,117,-122v22,0,40,2,58,8r3,1r-2,20r-4,-1v-17,-5,-34,-9,-51,-9v-56,0,-98,40,-98,102v0,62,42,102,98,102v17,0,34,-3,51,-8r4,-1r2,19r-3,1v-18,6,-36,9,-58,9","w":202},"D":{"d":"32,-235v16,-2,29,-4,47,-4v89,0,138,47,138,116v0,76,-58,127,-138,127v-17,0,-32,-1,-47,-4r-3,-1r0,-234r3,0xm80,-220v-11,0,-21,1,-30,2r0,201v9,1,20,1,29,1v68,0,115,-43,115,-105v0,-61,-41,-99,-114,-99","w":233},"E":{"d":"50,-112r0,93r107,0r0,19r-128,0r0,-235r124,0r0,19r-103,0r0,85r91,0r0,19r-91,0","w":167},"F":{"d":"50,0r-21,0r0,-235r127,0r0,19r-106,0r0,87r91,0r0,20r-91,0r0,109","w":159},"U":{"d":"195,-85v0,56,-33,89,-85,89v-52,0,-85,-34,-85,-82r0,-157r21,0r0,153v0,42,24,66,64,66v42,0,65,-26,65,-66r0,-153r20,0r0,150","w":219},"T":{"d":"189,-235r0,19r-79,0r2,216r-21,0r-5,-216r-79,0r0,-19r182,0","w":195},"S":{"d":"18,-182v0,-36,30,-57,73,-57v18,0,30,3,42,9r2,1r-2,20r-4,-2v-14,-7,-25,-9,-41,-9v-35,0,-48,19,-48,35v0,24,11,35,51,56v39,22,57,40,57,69v0,37,-30,64,-82,64v-17,0,-31,-3,-45,-9r-3,-1r2,-20r4,2v15,6,27,8,43,8v39,0,58,-17,58,-41v0,-25,-11,-36,-47,-55v-44,-24,-60,-44,-60,-70","w":164},"R":{"d":"50,0r-21,0r0,-235r3,0v24,-2,35,-4,56,-4v56,0,86,25,86,61v0,29,-19,50,-42,61v15,8,22,17,30,46v7,25,13,44,21,66r2,5r-25,0r-1,-3v-7,-20,-15,-45,-21,-66v-8,-28,-14,-35,-48,-35r-40,0r0,104xm86,-220v-13,0,-25,1,-36,2r0,94v10,0,24,1,34,1v39,0,65,-22,65,-51v0,-27,-16,-46,-63,-46","w":190},"Q":{"d":"243,-117v0,43,-18,82,-51,104r23,51r-23,0r-20,-42v-13,5,-27,8,-42,8v-72,0,-114,-58,-114,-122v0,-64,42,-121,114,-121v72,0,113,58,113,122xm130,-16v58,0,90,-49,90,-102v0,-53,-32,-102,-90,-102v-58,0,-91,49,-91,102v0,53,33,102,91,102","w":259},"P":{"d":"50,0r-21,0r0,-235r3,0v25,-3,34,-4,56,-4v52,0,84,28,84,66v0,43,-35,74,-86,74v-13,0,-26,-1,-36,-3r0,102xm88,-220v-12,0,-28,1,-38,2r0,96v12,2,23,3,36,3v36,0,63,-20,63,-53v0,-31,-20,-48,-61,-48","w":176},"O":{"d":"130,-239v72,0,113,57,113,121v0,64,-41,122,-113,122v-72,0,-114,-58,-114,-122v0,-64,42,-121,114,-121xm130,-16v58,0,90,-49,90,-102v0,-53,-32,-102,-90,-102v-58,0,-91,49,-91,102v0,53,33,102,91,102","w":259},"L":{"d":"50,-235r0,216r122,0r0,19r-143,0r0,-235r21,0","w":180},"J":{"d":"118,-79v0,52,-30,83,-72,83v-13,0,-21,-2,-32,-4r-4,-1r3,-19r4,1v10,3,16,3,27,3v31,0,52,-17,52,-62r0,-157r22,0r0,156","w":140},"I":{"d":"50,0r-21,0r0,-235r21,0r0,235","w":79},"H":{"d":"188,-235r22,0r0,235r-22,0r0,-113r-138,0r0,113r-21,0r0,-235r21,0r0,103r138,0r0,-103","w":238},"G":{"d":"185,-23r0,-78r-51,0r0,-19r73,0r0,111r-3,1v-24,8,-43,12,-70,12v-66,0,-118,-46,-118,-121v0,-71,45,-122,123,-122v22,0,41,2,57,8r3,1r-3,20r-4,-1v-18,-6,-34,-9,-55,-9v-63,0,-98,46,-98,102v0,63,42,102,97,102v21,0,36,-3,49,-7","w":229},"0":{"d":"102,-230v52,0,83,50,83,117v0,67,-31,117,-83,117v-52,0,-84,-50,-84,-117v0,-67,32,-117,84,-117xm102,-16v39,0,60,-40,60,-97v0,-57,-21,-97,-60,-97v-39,0,-61,40,-61,97v0,57,22,97,61,97","w":203},"1":{"d":"99,-226r12,0r0,226r-22,0r0,-198r-36,16r-2,-19","w":159},"2":{"d":"42,-19r114,0r0,19r-143,0r0,-15r51,-60v59,-65,65,-77,65,-97v0,-25,-16,-38,-46,-38v-18,0,-34,4,-48,12r-4,3r-3,-21r2,-1v17,-9,37,-13,59,-13v39,0,63,26,63,56v0,30,-19,53,-79,120","w":174},"3":{"d":"61,4v-16,0,-32,-4,-45,-11r-2,-1r2,-20r5,2v15,7,28,10,44,10v34,0,59,-18,59,-45v0,-20,-8,-42,-64,-49r-4,0r0,-18r4,-1v34,-2,57,-20,57,-44v0,-23,-14,-37,-48,-37v-15,0,-28,4,-41,11r-5,3r-2,-20r2,-1v13,-7,30,-13,52,-13v40,0,65,25,65,53v0,24,-16,45,-40,56v24,9,48,26,48,59v0,41,-37,66,-87,66","w":166},"4":{"d":"147,-226r0,147r28,0r0,20r-28,0r0,59r-21,0r0,-59r-115,0r0,-16r115,-151r21,0xm125,-151r0,-45r-34,47r-53,70r88,0","w":189},"6":{"d":"145,-66v0,-30,-19,-51,-51,-51v-34,0,-53,14,-53,32v0,42,21,69,55,69v29,0,49,-22,49,-50xm93,4v-45,0,-75,-37,-75,-101v0,-76,47,-129,119,-133r3,0r2,19r-4,0v-64,4,-91,46,-96,93v14,-13,33,-19,56,-19v43,0,70,33,70,69v0,42,-32,72,-75,72","w":183},"5":{"d":"78,-142v51,0,76,33,76,69v0,48,-36,77,-90,77v-18,0,-33,-4,-47,-11r-3,-1r3,-20r4,2v18,7,29,10,47,10v35,0,63,-19,63,-54v0,-31,-17,-52,-57,-52v-13,0,-26,1,-36,4r-1,1r-14,-1r6,-108r108,0r0,19r-89,0r-3,68v9,-2,21,-3,33,-3","w":172},"7":{"d":"11,-226r141,0r0,17r-97,209r-23,0r98,-207r-119,0r0,-19","w":164},"8":{"d":"41,-62v0,27,18,46,51,46v30,0,52,-18,52,-44v0,-27,-17,-43,-53,-55v-37,13,-50,32,-50,53xm93,-210v-30,0,-43,16,-43,36v0,21,16,37,44,47v28,-10,43,-23,43,-45v0,-21,-14,-38,-44,-38xm119,-122v32,16,48,34,48,61v0,41,-35,65,-75,65v-41,0,-74,-20,-74,-60v0,-29,18,-50,48,-64v-24,-12,-39,-30,-39,-55v0,-29,24,-55,66,-55v37,0,67,24,67,53v0,25,-16,41,-41,55","w":184},"9":{"d":"38,-160v0,30,20,51,52,51v34,0,52,-14,52,-32v0,-42,-21,-69,-55,-69v-29,0,-49,22,-49,50xm90,-230v45,0,75,37,75,101v0,76,-46,129,-118,133r-4,0r-2,-19r4,0v64,-4,91,-46,96,-93v-14,13,-33,19,-56,19v-43,0,-70,-33,-70,-69v0,-42,32,-72,75,-72","w":183},"\/":{"d":"105,-248r21,0r-113,265r-20,0","w":118},".":{"d":"48,-8v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15v8,0,15,7,15,15","w":61},"-":{"d":"90,-101r0,17r-77,0r0,-17r77,0","w":103},",":{"d":"38,-19r16,0r-2,4v-8,25,-17,49,-26,71r-1,2r-23,7r2,-7v8,-22,19,-53,24,-69v1,-3,0,-2,0,-2v2,-4,5,-6,10,-6","w":64},"+":{"d":"116,-101r80,0r0,17r-80,0r0,88r-20,0r0,-88r-79,0r0,-17r79,0r0,-87r20,0r0,87","w":212},"*":{"d":"58,-239r22,0r-3,50r46,-18r7,20r-49,12r32,39r-17,13r-27,-43r-27,43r-17,-13r32,-39r-49,-12r7,-20r46,18","w":138},"(":{"d":"83,32r3,5r-19,0r-1,-1v-24,-41,-42,-83,-42,-143v0,-60,18,-102,42,-142r1,-2r19,0r-3,5v-22,40,-39,86,-39,139v0,53,17,99,39,139","w":90},"'":{"d":"39,-170r-19,0r-2,-69r0,-1v0,-8,5,-10,11,-10r14,0","w":59},"%":{"d":"208,-122v34,0,54,28,54,63v0,35,-20,63,-54,63v-35,0,-56,-28,-56,-63v0,-35,21,-63,56,-63xm208,-14v20,0,34,-16,34,-45v0,-29,-14,-46,-34,-46v-20,0,-35,17,-35,46v0,29,15,45,35,45xm69,-230v35,0,56,29,56,65v0,36,-21,65,-56,65v-34,0,-54,-29,-54,-65v0,-36,20,-65,54,-65xm69,-117v20,0,35,-18,35,-48v0,-30,-15,-47,-35,-47v-20,0,-33,17,-33,47v0,30,13,48,33,48xm212,-233r23,0r-170,240r-23,0","w":277},"!":{"d":"33,7v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15v8,0,16,7,16,15v0,8,-8,15,-16,15xm44,-46r-21,0r-2,-193r25,0","w":66},"\"":{"d":"39,-170r-19,0r-2,-69r0,-1v0,-8,5,-10,11,-10r14,0xm76,-170r-19,0r-1,-69r0,-1v0,-8,5,-10,11,-10r13,0","w":97},"#":{"d":"124,-131r-7,36r34,0r0,17r-38,0r-15,74r-19,0r15,-74r-29,0r-15,74r-19,0r15,-74r-31,0r0,-17r34,0r8,-36r-34,0r0,-18r37,0r16,-73r18,0r-15,73r30,0r15,-73r19,0r-15,73r31,0r0,18r-35,0xm98,-95r7,-36r-29,0r-8,36r30,0","w":173},"$":{"d":"141,-64v0,33,-23,53,-54,57r0,34r-17,0r0,-33v-15,0,-28,-3,-41,-9r-2,-2r2,-19r5,2v17,7,26,9,41,9v28,0,43,-14,43,-36v0,-17,-7,-27,-41,-48v-36,-22,-49,-37,-49,-62v0,-25,19,-43,45,-48r0,-34r17,0r0,33v14,1,27,5,36,10r2,1r-2,19r-5,-2v-11,-6,-23,-9,-35,-9v-23,0,-35,11,-35,28v0,17,7,27,38,46v41,25,52,41,52,63","w":168},"&":{"d":"92,-223v-16,0,-28,8,-28,26v0,16,7,28,23,48v24,-20,34,-30,34,-48v0,-14,-10,-26,-29,-26xm213,4r-29,0r-19,-25v-21,20,-45,28,-74,28v-41,0,-77,-22,-77,-64v0,-32,25,-55,56,-79v-18,-21,-29,-40,-29,-59v0,-29,20,-48,51,-48v31,0,51,20,51,45v0,25,-16,43,-44,64r66,80v10,-17,12,-38,12,-65r0,-3r22,0r0,3v0,17,-3,56,-21,82xm83,-121v-35,29,-46,43,-46,63v0,30,24,46,57,46v26,0,41,-5,58,-23","w":211},")":{"d":"7,-246r-3,-5r19,0r1,2v24,40,42,82,42,142v0,60,-18,102,-42,143r-1,1r-19,0r3,-5v22,-40,39,-86,39,-139v0,-53,-17,-99,-39,-139","w":90},"?":{"d":"80,-129v-18,24,-22,43,-22,66r0,17r-22,0r0,-14v0,-35,12,-59,32,-87v14,-19,20,-31,20,-46v0,-24,-17,-30,-35,-30v-14,0,-26,5,-38,14r-5,3r-3,-20r2,-1v19,-14,36,-16,47,-16v35,0,55,21,55,49v0,20,-9,36,-31,65xm55,-8v0,-5,-3,-8,-8,-8v-5,0,-8,3,-8,8v0,5,3,8,8,8v5,0,8,-3,8,-8","w":124},":":{"d":"18,-166v0,-8,7,-15,15,-15v8,0,15,7,15,15v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15xm48,-8v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15v0,-8,7,-15,15,-15v8,0,15,7,15,15","w":61},";":{"d":"22,-166v0,-8,7,-15,15,-15v8,0,15,7,15,15v0,8,-7,15,-15,15v-8,0,-15,-7,-15,-15xm38,-19r16,0r-2,4v-8,25,-17,49,-26,71r-1,2r-23,7r2,-7v8,-22,19,-53,24,-69v1,-3,0,-2,0,-2v2,-4,5,-6,10,-6","w":64},"<":{"d":"38,-91r118,63r0,22r-141,-76r0,-18r141,-77r0,21","w":170},"=":{"d":"189,-120r-170,0r0,-18r170,0r0,18xm189,-47r-170,0r0,-17r170,0r0,17","w":207},"[":{"d":"48,-231r0,249r32,0r0,17r-51,0r0,-283r51,0r0,17r-32,0","w":88},"\\":{"d":"14,-248r112,265r-21,0r-112,-265r21,0","w":118},"]":{"d":"9,-231r0,-17r51,0r0,283r-51,0r0,-17r31,0r0,-249r-31,0","w":88},"^":{"d":"101,-231r69,147r-21,0r-57,-123r-57,123r-21,0r69,-147r18,0","w":184},"_":{"d":"166,32r-170,0r0,-17r170,0r0,17","w":162},">":{"d":"133,-91r-119,-64r0,-22r141,77r0,18r-141,76r0,-21","w":170},"{":{"d":"57,-79v0,2,-1,4,-1,6r-6,50v-1,4,-1,8,-1,12v0,19,7,32,36,32r4,0r0,17r-4,0v-33,0,-55,-16,-55,-49v0,-4,0,-8,1,-13r7,-50r0,-5v0,-8,-2,-17,-24,-19r-4,-1r0,-16r4,-1v17,-2,24,-8,24,-20v0,-2,-1,-4,-1,-6r-6,-48v-1,-4,-1,-9,-1,-13v0,-33,22,-49,55,-49r4,0r0,17r-4,0v-29,0,-36,12,-36,31v0,4,0,9,1,13r7,50r0,5v0,11,-5,21,-17,28v11,7,17,16,17,29","w":97},"|":{"d":"48,94r-19,0r0,-368r19,0r0,368","w":77},"}":{"d":"40,-135v0,-2,1,-4,1,-6r7,-50v1,-4,1,-8,1,-12v0,-19,-8,-32,-37,-32r-3,0r0,-17r3,0v33,0,56,16,56,49v0,4,0,9,-1,13r-7,50v0,2,-1,4,-1,5v0,8,3,17,25,19r3,1r0,16r-3,1v-18,2,-25,8,-25,21v0,2,1,3,1,5r7,48v1,5,1,9,1,13v0,33,-23,49,-56,49r-3,0r0,-17r3,0v29,0,36,-12,36,-31v0,-4,1,-9,0,-13r-8,-50r0,-4v0,-11,6,-22,18,-29v-12,-7,-18,-16,-18,-29","w":97},"~":{"d":"98,-83v-31,-11,-43,-13,-50,-13v-14,0,-20,4,-20,19r0,4r-17,0r0,-4v0,-19,8,-37,40,-37v13,0,25,3,53,13v31,11,43,12,50,12v14,0,20,-3,20,-18r0,-4r17,0r0,4v0,18,-9,37,-41,37v-13,0,-24,-3,-52,-13","w":201},"`":{"d":"25,-250v6,0,9,4,11,7v7,12,15,28,23,41r3,5r-22,2r-2,-1v-8,-12,-20,-33,-28,-49r-3,-5r18,0","w":67},"@":{"d":"181,-97r10,-42v-5,-1,-12,-2,-21,-2v-40,0,-67,36,-67,78v0,25,14,34,25,34v32,0,47,-38,53,-68xm280,-112v0,56,-28,98,-68,98v-18,0,-32,-9,-36,-27v-13,20,-32,29,-52,29v-22,0,-42,-22,-42,-48v0,-57,39,-99,93,-99v14,0,23,2,35,7r3,2r-18,78v-2,7,-2,13,-2,18v0,15,6,22,20,22v24,0,47,-27,47,-75v0,-51,-30,-89,-90,-89v-74,0,-133,56,-133,127v0,60,39,97,94,97v26,0,46,-5,70,-19r4,-2r3,18r-2,1v-27,15,-51,19,-78,19v-63,0,-111,-46,-111,-111v0,-92,75,-147,159,-147v58,0,104,42,104,101","w":293},"K":{"d":"189,-235r-99,107r109,128r-28,0r-97,-116r-24,27r0,89r-21,0r0,-235r21,0r0,124r111,-124r28,0","w":200},"M":{"d":"144,-31r89,-204r28,0r1,235r-21,0r-1,-207r-86,198r-21,0r-84,-198r-1,207r-21,0r1,-235r28,0","w":290},"v":{"d":"92,-22r62,-152r22,0r-74,174r-21,0r-75,-174r24,0","w":178},"w":{"d":"203,-25r53,-149r22,0r-65,174r-20,0r-51,-150r-57,150r-20,0r-58,-174r23,0r46,149r57,-149r20,0","w":281},"x":{"d":"167,-174r-65,84r70,90r-27,0r-57,-78r-57,78r-26,0r69,-89r-66,-85r27,0r53,72r54,-72r25,0","w":171},"y":{"d":"15,62v29,-5,44,-15,65,-65r-74,-171r24,0r62,152r62,-152r22,0r-73,172v-27,64,-51,78,-86,83r-3,1r-3,-19","w":178},"z":{"d":"13,-17r98,-138r-91,0r0,-19r116,0r0,17r-98,138r104,0r0,19r-129,0r0,-17","w":154},"Z":{"d":"14,-18r127,-198r-115,0r0,-19r139,0r0,17r-127,199r136,0r0,19r-160,0r0,-18","w":183},"Y":{"d":"98,-122r65,-113r24,0r-78,129r0,106r-23,0r0,-105r-80,-130r26,0","w":187},"X":{"d":"107,-121r77,121r-26,0r-64,-103r-64,103r-25,0r76,-120r-73,-115r26,0r60,97r61,-97r24,0","w":184},"W":{"d":"234,-30r67,-205r21,0r-78,235r-20,0r-59,-205r-66,205r-21,0r-71,-235r23,0r59,205r66,-205r20,0","w":326},"V":{"d":"107,-24r78,-211r22,0r-90,235r-21,0r-90,-235r24,0"},"A":{"d":"105,-208r-41,113r82,0xm182,0r-29,-76r-96,0r-30,76r-22,0r90,-235r21,0r90,235r-24,0"},"N":{"d":"195,-61r0,-174r21,0r0,235r-25,0r-143,-209v0,12,1,24,1,35r0,174r-21,0r0,-235r24,0r143,209r0,-35","w":243},"\u00f3":{"d":"117,-250v-6,0,-9,4,-11,7v-7,12,-15,28,-23,41r-3,5r22,2r1,-1v8,-12,21,-33,29,-49r3,-5r-18,0xm186,-87v0,51,-33,91,-85,91v-52,0,-85,-40,-85,-91v0,-51,33,-91,85,-91v52,0,85,40,85,91xm101,-16v44,0,62,-36,62,-71v0,-35,-18,-71,-62,-71v-44,0,-62,36,-62,71v0,35,18,71,62,71","w":202},"\u00a0":{"w":83}}});
/*!
 * Copyright (C) 2004-2008 dot colon. All rights reserved.
 */
Cufon.registerFont({"w":189,"face":{"font-family":"Vegur","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-13 -270 325 90","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":79},"~":{"d":"116,-109v30,15,36,16,44,16v9,0,14,-7,14,-19r31,0v0,30,-14,57,-45,57v-19,0,-32,-6,-61,-20v-30,-15,-36,-17,-44,-17v-9,0,-14,8,-14,20r-31,0v0,-30,14,-57,45,-57v19,0,32,6,61,20","w":215},"_":{"d":"189,50r-189,0r0,-31r189,0r0,31"},"^":{"d":"79,-228r41,0r65,141r-42,0r-44,-99r0,0r-45,99r-40,0","w":198},"]":{"d":"8,-214r0,-31r80,0r0,276r-80,0r0,-31r41,0r0,-214r-41,0","w":115},"\\":{"d":"40,-245r109,258r-41,0r-110,-258r42,0","w":147},"[":{"d":"107,-214r-41,0r0,214r41,0r0,31r-80,0r0,-276r80,0r0,31","w":115},"Z":{"d":"184,-40r0,40r-175,0r0,-39r111,-156r0,-1r-97,0r0,-39r152,0r0,38r-111,157r0,0r120,0"},"Y":{"d":"146,-235r51,0r-72,132r0,103r-48,0r0,-100r-74,-135r55,0r44,94r0,0","w":198},"X":{"d":"188,-235r-65,112r70,123r-55,0r-42,-87r-1,0r-42,87r-51,0r68,-119r-67,-116r56,0r38,80r1,0r38,-80r52,0","w":196},"9":{"d":"96,-229v45,0,83,35,83,96v0,83,-64,133,-141,137r-5,-39v47,-5,84,-29,92,-61r-1,0v-10,9,-26,14,-40,14v-42,0,-74,-28,-74,-68v0,-48,40,-79,86,-79xm97,-119v16,0,28,-11,28,-28v0,-26,-12,-43,-31,-43v-17,0,-31,10,-31,33v0,26,12,38,34,38","w":192},":":{"d":"45,-53v16,0,28,12,28,28v0,16,-12,29,-28,29v-16,0,-29,-13,-29,-29v0,-16,13,-28,29,-28xm45,-121v-16,0,-29,-12,-29,-28v0,-16,13,-29,29,-29v16,0,28,13,28,29v0,16,-12,28,-28,28","w":84},";":{"d":"31,-32v2,-8,9,-13,22,-13r28,0v-10,29,-23,67,-37,100r-41,4v12,-34,23,-72,28,-91xm56,-121v-16,0,-29,-12,-29,-28v0,-16,13,-29,29,-29v16,0,28,13,28,29v0,16,-12,28,-28,28","w":95},"<":{"d":"54,-92r99,50r0,42r-139,-70r0,-42r139,-71r0,42r-99,48r0,1","w":168},"=":{"d":"206,-116r-189,0r0,-31r189,0r0,31xm206,-37r-189,0r0,-31r189,0r0,31","w":222},">":{"d":"114,-90r-99,-50r0,-43r139,71r0,42r-139,70r0,-41r99,-49r0,0","w":168},"?":{"d":"90,-25v0,-16,-12,-28,-28,-28v-16,0,-29,12,-29,28v0,16,13,29,29,29v16,0,28,-13,28,-29xm139,-188v0,21,-9,39,-39,75v-14,17,-17,24,-17,36r0,6r-44,0r0,-6v0,-22,6,-35,25,-59v21,-27,23,-36,23,-45v0,-11,-10,-18,-28,-18v-16,0,-32,5,-46,14r-4,-39v21,-10,38,-15,65,-15v37,0,65,20,65,51","w":154},"`":{"d":"9,-246r35,0v4,0,7,3,10,7v8,13,26,40,38,57r-38,2v-13,-17,-34,-47,-45,-66","w":100},"@":{"d":"176,-212v62,0,107,46,107,99v0,60,-32,95,-74,95v-19,0,-34,-7,-39,-24r-1,0v-10,18,-24,27,-45,27v-26,0,-47,-22,-47,-50v0,-53,37,-90,94,-90v16,0,39,5,49,11r-17,71v-4,18,1,28,12,28v20,0,36,-26,36,-61v0,-49,-28,-80,-81,-80v-69,0,-123,50,-123,115v0,58,33,89,84,89v24,0,47,-7,70,-19r3,25v-22,12,-47,19,-76,19v-68,0,-113,-42,-113,-110v0,-87,72,-145,161,-145xm169,-89r8,-33v-3,-1,-9,-2,-15,-2v-24,0,-43,21,-43,57v0,12,6,21,16,21v17,0,26,-10,34,-43","w":294},"A":{"d":"165,0r-22,-66r-72,0v-10,32,-22,66,-22,66r-47,0r83,-235r49,0r82,235r-51,0xm84,-105r46,0r-4,-13v-8,-24,-13,-45,-18,-69r-1,0v-4,24,-10,45,-18,69","w":218},"a":{"d":"95,-178v41,0,67,23,67,62r0,116r-48,0r-1,-22r0,0v-13,17,-26,26,-48,26v-22,0,-53,-19,-53,-58v0,-38,32,-59,72,-59v10,0,21,1,29,2r0,0r0,-4v0,-14,-10,-23,-31,-23v-17,0,-30,5,-45,12r-6,-40v20,-8,39,-12,64,-12xm113,-73r0,-8v-9,-1,-15,-2,-25,-2v-14,0,-24,8,-24,24v0,15,8,23,20,23v18,0,29,-18,29,-37","w":182},"b":{"d":"74,-22r-1,0r0,22r-48,0r0,-252r48,0r0,99r1,0v13,-15,33,-25,55,-25v48,0,79,38,79,89v0,55,-34,93,-79,93v-22,0,-42,-11,-55,-26xm73,-95r0,16v0,25,17,43,42,43v23,0,41,-19,41,-51v0,-31,-15,-51,-41,-51v-25,0,-42,18,-42,43","w":221},"d":{"d":"148,-252r48,0r0,252r-48,0r0,-22r-1,0v-13,15,-32,26,-54,26v-48,0,-80,-38,-80,-89v0,-55,35,-93,80,-93v22,0,41,10,54,25r1,0r0,-99xm148,-79r0,-16v0,-25,-17,-43,-42,-43v-23,0,-41,19,-41,51v0,31,15,51,41,51v25,0,42,-18,42,-43","w":221},"e":{"d":"177,-100v0,8,-1,17,-2,24r-113,0v0,27,18,40,47,40v13,0,33,-3,47,-9r5,40v-15,5,-36,9,-53,9v-59,0,-95,-36,-95,-91v0,-49,35,-91,90,-91v46,0,74,34,74,78xm99,-138v-18,0,-31,10,-35,30r65,0v0,-18,-9,-30,-30,-30","w":190},"c":{"d":"109,4v-57,0,-96,-35,-96,-90v0,-56,38,-92,96,-92v20,0,37,2,52,7r-5,40v-15,-5,-25,-7,-42,-7v-36,0,-49,27,-49,51v0,24,13,51,49,51v14,0,26,-2,40,-6r6,39v-17,4,-32,7,-51,7","w":173},"f":{"d":"38,-186v0,-44,28,-70,71,-70v13,0,23,2,29,3r-6,40v-5,-1,-10,-3,-17,-3v-19,0,-29,11,-29,28r0,14r42,0r0,39r-42,0r0,135r-48,0r0,-135r-30,0r0,-39r30,0r0,-12","w":137},"F":{"d":"72,0r-49,0r0,-235r145,0r0,39r-96,0r0,57r81,0r0,40r-81,0r0,99","w":171},"G":{"d":"169,-40r0,-53r-44,0r0,-39r92,0r0,124v-25,7,-54,12,-85,12v-66,0,-120,-41,-120,-122v0,-76,56,-121,134,-121v25,0,46,3,64,8r-6,40v-19,-5,-39,-8,-62,-8v-51,0,-78,30,-78,81v0,54,29,82,70,82v15,0,22,-1,35,-4","w":237},"H":{"d":"176,-235r48,0r0,235r-48,0r0,-103r-104,0r0,103r-49,0r0,-235r49,0r0,92r104,0r0,-92","w":247},"I":{"d":"72,0r-49,0r0,-235r49,0r0,235","w":95},"J":{"d":"138,-87v0,63,-40,91,-94,91v-13,0,-24,-1,-36,-4r5,-40v10,3,18,4,28,4v35,0,49,-18,49,-51r0,-148r48,0r0,148","w":156},"K":{"d":"204,-235r-90,103r97,132r-59,0r-70,-100r-1,0r-9,11r0,89r-49,0r0,-235r49,0r0,61v0,13,0,21,-1,34r0,0v5,-10,15,-23,24,-34r50,-61r59,0","w":210},"l":{"d":"73,0r-48,0r0,-252r48,0r0,252","w":98},"m":{"d":"230,-178v36,0,54,30,54,66r0,112r-48,0r0,-109v0,-18,-8,-29,-26,-29v-18,0,-32,16,-32,47r0,91r-48,0r0,-109v0,-19,-8,-29,-26,-29v-20,0,-31,19,-31,47r0,91r-48,0r0,-174r48,0r0,24r1,0v11,-18,26,-28,49,-28v25,0,40,11,49,32r1,0v13,-22,29,-32,57,-32","w":304},"N":{"d":"176,-235r46,0r0,235r-68,0r-58,-124v-8,-18,-15,-32,-28,-69r-1,0v1,19,1,51,1,69r0,124r-46,0r0,-235r68,0r57,120v9,18,16,36,30,73r0,0v-1,-37,-1,-55,-1,-73r0,-120","w":244},"o":{"d":"106,-178v55,0,93,40,93,91v0,51,-38,91,-93,91v-55,0,-93,-40,-93,-91v0,-51,38,-91,93,-91xm106,-36v24,0,41,-19,41,-51v0,-32,-17,-51,-41,-51v-24,0,-41,19,-41,51v0,32,17,51,41,51","w":212},"P":{"d":"72,-198r0,68v8,1,18,1,28,1v20,0,32,-15,32,-36v0,-22,-13,-34,-33,-34v-10,0,-17,0,-27,1xm23,0r0,-235v27,-2,48,-4,76,-4v53,0,85,28,85,70v0,48,-41,80,-85,80v-9,0,-19,-1,-27,-2r0,0r0,91r-49,0","w":187},"p":{"d":"73,78r-48,0r0,-252r48,0r0,21r1,0v13,-15,33,-25,55,-25v48,0,79,38,79,89v0,55,-34,93,-79,93v-22,0,-42,-11,-55,-26r-1,0r0,100xm73,-95r0,16v0,25,17,43,42,43v23,0,41,-19,41,-51v0,-31,-15,-51,-41,-51v-25,0,-42,18,-42,43","w":221},"Q":{"d":"203,-17r25,55r-52,0r-16,-37v-8,2,-18,3,-27,3v-73,0,-121,-55,-121,-122v0,-67,48,-121,121,-121v73,0,122,54,122,121v0,41,-20,79,-52,101xm133,-36v39,0,70,-31,70,-82v0,-51,-31,-81,-70,-81v-39,0,-69,30,-69,81v0,51,30,82,69,82","w":266},"q":{"d":"147,-153r1,0r0,-21r48,0r0,252r-48,0r0,-100r-1,0v-13,15,-32,26,-54,26v-48,0,-80,-38,-80,-89v0,-55,35,-93,80,-93v22,0,41,10,54,25xm148,-79r0,-16v0,-25,-17,-43,-42,-43v-23,0,-41,19,-41,51v0,31,15,51,41,51v25,0,42,-18,42,-43","w":221},"r":{"d":"126,-178r0,43v-36,2,-53,17,-53,57r0,78r-48,0r0,-174r48,0r0,28r1,0v10,-18,28,-32,52,-32","w":132},"R":{"d":"72,-198r0,64v10,1,15,2,25,2v23,0,37,-14,37,-35v0,-21,-12,-32,-35,-32v-9,0,-16,0,-27,1xm23,0r0,-235v24,-2,49,-4,80,-4v51,0,83,29,83,62v0,28,-19,47,-43,57r0,0v17,9,24,18,33,51v6,26,14,47,22,69r-52,0v-6,-21,-14,-46,-19,-69v-4,-17,-14,-26,-29,-26v-9,0,-13,0,-26,1r0,94r-49,0","w":200},"S":{"d":"14,-175v0,-38,30,-64,82,-64v18,0,38,3,52,9r-5,39v-15,-6,-34,-8,-50,-8v-17,0,-27,9,-27,20v0,15,5,21,35,36v44,22,63,45,63,76v0,44,-40,71,-89,71v-19,0,-43,-4,-61,-9r5,-39v19,6,35,8,58,8v22,0,35,-11,35,-27v0,-13,-6,-23,-32,-36v-44,-22,-66,-42,-66,-76","w":174},"s":{"d":"72,-65v-40,-14,-57,-29,-57,-60v0,-28,22,-53,69,-53v16,0,33,3,46,8r-5,40v-12,-5,-26,-8,-40,-8v-11,0,-18,4,-18,11v0,8,4,11,11,14v48,18,61,33,61,61v0,33,-30,56,-67,56v-20,0,-42,-4,-58,-10r5,-40v14,6,30,10,46,10v15,0,23,-5,23,-12v0,-8,-4,-12,-16,-17","w":149},"M":{"d":"273,-235r1,235r-48,0r-1,-141v0,-14,1,-34,2,-49r-1,0v-3,15,-7,35,-12,49r-44,132r-50,0r-44,-132v-5,-14,-9,-34,-11,-48r-1,0v1,14,2,34,2,48r-1,141r-44,0r1,-235r70,0r38,117v5,16,12,37,17,64r0,0v5,-27,11,-48,17,-64r39,-117r70,0","w":295},"O":{"d":"133,-239v73,0,122,54,122,121v0,67,-49,122,-122,122v-73,0,-121,-55,-121,-122v0,-67,48,-121,121,-121xm133,-36v39,0,70,-31,70,-82v0,-51,-31,-81,-70,-81v-39,0,-69,30,-69,81v0,51,30,82,69,82","w":266},"T":{"d":"203,-235r0,39r-76,0r0,196r-48,0r0,-196r-75,0r0,-39r199,0","w":206},"U":{"d":"204,-84v0,57,-40,88,-92,88v-52,0,-93,-32,-93,-81r0,-158r48,0r0,154v0,31,20,45,44,45v25,0,47,-12,47,-45r0,-154r46,0r0,151","w":222},"V":{"d":"169,-235r47,0r-82,235r-49,0r-82,-235r51,0r39,117v8,23,13,46,18,69r1,0v4,-23,10,-46,18,-69","w":218},"W":{"d":"279,-235r46,0r-66,235r-48,0r-33,-118v-5,-16,-8,-33,-13,-75r-1,0v-5,42,-10,59,-14,75r-32,118r-49,0r-65,-235r50,0r30,117v5,18,9,37,12,73r0,0v4,-36,8,-55,13,-73r33,-117r48,0r33,117v5,18,10,37,13,73r1,0v3,-36,6,-55,11,-73","w":327},"z":{"d":"15,-174r133,0r0,36r-79,98r0,0r86,0r0,40r-146,0r0,-36r80,-98r0,-1r-74,0r0,-39","w":165},"y":{"d":"72,2r-68,-176r51,0r28,80v6,17,10,33,13,49r1,0v3,-16,8,-32,14,-49r28,-80r47,0r-66,174v-23,58,-46,77,-98,81r-5,-39v28,-2,43,-10,55,-40"},"x":{"d":"177,-174r-57,83r63,91r-59,0r-33,-60r-1,0r-33,60r-54,0r60,-88r-59,-86r58,0r30,54r1,0r30,-54r54,0","w":186},"w":{"d":"158,-70v-5,-17,-10,-34,-14,-62r0,0v-4,29,-9,45,-14,62r-22,70r-49,0r-55,-174r51,0r20,71v4,16,8,32,11,58r1,0v4,-26,7,-42,12,-58r22,-71r50,0r22,71v5,16,8,32,12,58r1,0v3,-26,6,-42,11,-58r20,-71r47,0r-55,174r-49,0","w":287},"v":{"d":"139,-174r47,0r-66,174r-50,0r-66,-174r51,0r28,80v6,17,10,33,13,49r1,0v3,-16,8,-32,14,-49"},"u":{"d":"138,-79r0,-95r48,0r0,174r-48,0r0,-22r-1,0v-13,16,-32,26,-56,26v-36,0,-60,-25,-60,-67r0,-111r48,0r0,104v0,23,10,34,29,34v26,0,40,-15,40,-43","w":209},"t":{"d":"128,-174r0,39r-43,0r0,70v0,20,7,29,20,29v6,0,13,-1,20,-3r5,40v-13,2,-29,3,-43,3v-32,0,-51,-23,-51,-61r0,-78r-28,0r0,-39r28,0r0,-43r49,0r0,43r43,0","w":140},"{":{"d":"44,-108v24,8,37,23,33,49r-5,36v-3,21,9,27,31,27r0,31v-45,0,-74,-18,-68,-58r4,-34v3,-24,-7,-31,-29,-34r0,-31v22,-3,32,-11,29,-35r-4,-34v-6,-40,23,-57,68,-57r0,31v-22,0,-33,5,-30,26r5,36v4,26,-10,41,-34,47r0,0","w":112},"|":{"d":"66,90r-39,0r0,-360r39,0r0,360","w":92},"}":{"d":"69,-106v-24,-8,-37,-23,-33,-49r5,-36v3,-21,-9,-26,-31,-26r0,-31v45,0,74,17,68,57r-5,34v-3,24,8,32,30,35r0,31v-22,3,-33,10,-30,34r5,34v6,40,-23,58,-68,58r0,-31v22,0,33,-6,30,-27r-5,-36v-4,-26,10,-40,34,-46r0,-1","w":112},"g":{"d":"148,-174r48,0r0,163v0,57,-39,92,-97,92v-24,0,-50,-4,-68,-12r6,-40v20,9,39,13,60,13v32,0,51,-19,51,-51r0,-13r-1,0v-13,15,-32,26,-54,26v-48,0,-80,-38,-80,-89v0,-55,35,-93,80,-93v22,0,41,10,54,25r1,0r0,-21xm148,-79r0,-16v0,-25,-17,-43,-42,-43v-23,0,-41,19,-41,51v0,31,15,51,41,51v25,0,42,-18,42,-43","w":220},"h":{"d":"73,-153r1,0v13,-16,32,-25,56,-25v36,0,60,25,60,67r0,111r-48,0r0,-104v0,-23,-10,-34,-29,-34v-26,0,-40,15,-40,43r0,95r-48,0r0,-252r48,0r0,99","w":215},"i":{"d":"25,0r0,-174r48,0r0,174r-48,0xm49,-185v-15,0,-27,-13,-27,-28v0,-15,12,-28,27,-28v15,0,28,13,28,28v0,15,-13,28,-28,28","w":98},"k":{"d":"179,-174r-69,78r79,96r-62,0r-49,-66r0,0r-5,6r0,60r-48,0r0,-252r48,0r0,113v0,9,0,18,-1,30r1,0v5,-10,13,-23,18,-30r28,-35r60,0","w":188},"j":{"d":"52,-186v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28v15,0,28,13,28,28v0,15,-13,28,-28,28xm28,4r0,-178r48,0r0,174v0,50,-33,81,-83,81r-6,-39v24,0,41,-13,41,-38","w":101},"n":{"d":"73,-95r0,95r-48,0r0,-174r48,0r0,21r1,0v13,-16,32,-25,56,-25v36,0,60,25,60,67r0,111r-48,0r0,-104v0,-23,-10,-34,-29,-34v-26,0,-40,15,-40,43","w":215},"E":{"d":"72,-40r97,0r0,40r-146,0r0,-235r143,0r0,39r-94,0r0,55r81,0r0,39r-81,0r0,62","w":177},"D":{"d":"23,-235v26,-2,56,-4,81,-4v84,0,127,48,127,115v0,76,-54,128,-127,128v-29,0,-57,-2,-81,-4r0,-235xm72,-198r0,161v10,1,21,1,32,1v48,0,76,-31,76,-85v0,-47,-21,-78,-76,-78v-9,0,-20,0,-32,1","w":243},"C":{"d":"12,-117v0,-78,57,-122,125,-122v20,0,44,2,62,8r-5,40v-17,-5,-37,-8,-54,-8v-54,0,-76,35,-76,81v0,46,22,82,76,82v17,0,37,-3,54,-8r5,39v-18,6,-42,9,-62,9v-68,0,-125,-43,-125,-121","w":205},"B":{"d":"143,-126v32,10,48,29,48,56v0,45,-39,74,-92,74v-21,0,-56,-2,-76,-4r0,-235v23,-2,56,-4,77,-4v50,0,83,22,83,58v0,25,-16,43,-40,55r0,0xm72,-198r0,58v9,1,18,1,30,1v19,0,29,-14,29,-31v0,-18,-8,-29,-34,-29v-14,0,-15,0,-25,1xm102,-36v24,0,37,-12,37,-32v0,-21,-12,-34,-37,-34v-12,0,-20,1,-30,2r0,63v11,1,18,1,30,1","w":203},"8":{"d":"133,-122v35,18,46,36,46,57v0,43,-41,69,-84,69v-43,0,-83,-21,-83,-63v0,-29,17,-45,47,-59r0,0v-26,-14,-38,-27,-38,-53v0,-28,27,-59,75,-59v48,0,76,27,76,55v0,23,-14,40,-39,52r0,1xm71,-170v0,14,9,22,28,32v16,-8,23,-18,23,-30v0,-13,-9,-22,-26,-22v-17,0,-25,11,-25,20xm95,-36v21,0,34,-13,34,-28v0,-18,-12,-30,-36,-40v-21,8,-31,19,-31,37v0,15,12,31,33,31","w":190},"7":{"d":"163,-226r0,38r-91,188r-49,0r90,-186r0,0r-107,0r0,-40r157,0","w":169},"6":{"d":"97,4v-45,0,-83,-35,-83,-96v0,-83,64,-133,141,-137r5,40v-47,5,-84,28,-92,60r1,0v10,-9,26,-13,40,-13v42,0,74,27,74,67v0,48,-40,79,-86,79xm96,-106v-16,0,-28,12,-28,29v0,26,12,42,31,42v17,0,31,-10,31,-33v0,-26,-12,-38,-34,-38","w":192},"5":{"d":"94,-150v45,0,76,28,76,69v0,49,-37,85,-102,85v-21,0,-43,-5,-57,-11r5,-39v18,8,37,10,59,10v26,0,43,-15,43,-38v0,-23,-12,-38,-36,-38v-6,0,-13,1,-19,4r-44,-3r5,-115r126,0r0,40r-83,0r-2,41r1,0v8,-3,18,-5,28,-5","w":185},"4":{"d":"162,-226r0,138r28,0r0,39r-28,0r0,49r-48,0r0,-49r-107,0r0,-40r89,-137r66,0xm114,-140v0,-13,0,-28,1,-42r-1,0v-6,16,-13,29,-21,42r-34,51r0,1r55,0r0,-52","w":200},"3":{"d":"65,4v-19,0,-40,-4,-55,-10r5,-40v19,7,35,10,55,10v24,0,41,-12,41,-29v0,-23,-15,-32,-59,-35r0,-39v31,-2,48,-10,48,-29v0,-13,-7,-22,-32,-22v-16,0,-31,5,-46,12r-6,-40v19,-9,43,-12,65,-12v46,0,73,22,73,49v0,27,-17,44,-49,55r0,1v35,10,56,27,56,57v0,47,-42,72,-96,72","w":175},"2":{"d":"166,-40r0,40r-158,0r0,-32r36,-40v60,-65,68,-79,68,-93v0,-15,-10,-25,-34,-25v-17,0,-34,5,-50,13r-5,-40v23,-8,47,-13,71,-13v43,0,70,21,70,55v0,31,-16,58,-56,100v-5,6,-21,21,-36,35r0,0r94,0","w":180},"0":{"d":"107,-230v54,0,93,48,93,117v0,69,-39,117,-93,117v-54,0,-93,-48,-93,-117v0,-69,39,-117,93,-117xm107,-36v26,0,43,-24,43,-77v0,-53,-17,-77,-43,-77v-26,0,-43,24,-43,77v0,53,17,77,43,77","w":213},"1":{"d":"115,-226r24,0r0,226r-48,0r0,-167r-40,15r-5,-40","w":190},"\/":{"d":"108,-245r40,0r-110,258r-40,0","w":145},".":{"d":"45,-53v16,0,28,12,28,28v0,16,-12,29,-28,29v-16,0,-29,-13,-29,-29v0,-16,13,-28,29,-28","w":84},"-":{"d":"111,-108r0,31r-100,0r0,-31r100,0","w":121},",":{"d":"31,-32v2,-8,9,-13,22,-13r28,0v-10,29,-23,67,-37,100r-41,4v12,-34,23,-72,28,-91","w":92},"+":{"d":"127,-108r73,0r0,31r-73,0r0,77r-39,0r0,-77r-73,0r0,-31r73,0r0,-76r39,0r0,76","w":214},"*":{"d":"69,-235r39,0r-8,56r2,0r50,-24r13,37r-56,10r0,1r39,41r-32,23r-27,-49r-1,0r-27,49r-31,-23r38,-41r0,-1r-55,-10r12,-37r50,24r2,0","w":177},")":{"d":"32,-107v0,-54,-9,-99,-24,-141r31,0v17,33,34,83,34,141v0,58,-17,108,-34,141r-31,0v15,-42,24,-87,24,-141","w":93},"(":{"d":"62,-107v0,54,9,99,24,141r-31,0v-17,-33,-35,-83,-35,-141v0,-58,18,-108,35,-141r31,0v-15,42,-24,87,-24,141","w":93},"'":{"d":"53,-145r-33,0r-3,-94v0,-6,6,-7,15,-7r30,0","w":77},"&":{"d":"248,0r-64,0r-15,-17r-1,0v-19,17,-42,21,-73,21v-43,0,-83,-31,-83,-73v0,-36,13,-50,48,-70r0,0v-13,-13,-21,-26,-21,-44v0,-34,30,-56,65,-56v40,0,66,28,66,53v0,26,-12,40,-39,58r0,1r46,49r1,0v8,-14,10,-20,11,-43r45,0v-1,31,-9,55,-27,76xm104,-199v-8,0,-14,5,-14,14v0,10,7,20,13,27r1,0v10,-6,14,-14,14,-27v0,-9,-5,-14,-14,-14xm102,-36v16,0,27,-2,39,-10r0,-1r-52,-63r-1,0v-16,10,-25,19,-25,39v0,19,20,35,39,35","w":249},"%":{"d":"215,-233r33,0r-159,240r-32,0xm230,-119v34,0,61,25,61,61v0,36,-27,62,-61,62v-34,0,-61,-26,-61,-62v0,-36,27,-61,61,-61xm230,-27v11,0,19,-12,19,-31v0,-19,-8,-30,-19,-30v-11,0,-20,11,-20,30v0,19,9,31,20,31xm75,-230v34,0,61,26,61,62v0,36,-27,61,-61,61v-34,0,-61,-25,-61,-61v0,-36,27,-62,61,-62xm75,-138v11,0,19,-11,19,-30v0,-19,-8,-31,-19,-31v-11,0,-20,12,-20,31v0,19,9,30,20,30","w":304},"$":{"d":"159,-70v0,33,-25,55,-58,61r0,36r-31,0r0,-35v-16,-1,-35,-3,-48,-8r5,-40v20,6,35,9,54,9v18,0,27,-7,27,-18v0,-13,-3,-19,-26,-30v-44,-22,-59,-37,-59,-67v0,-28,19,-49,50,-55r0,-36r31,0r0,34v15,1,33,4,43,9r-6,40v-15,-6,-30,-9,-48,-9v-11,0,-18,4,-18,13v0,12,5,16,28,28v48,24,56,40,56,68","w":182},"#":{"d":"187,-129r-37,0r-6,32r33,0r0,22r-38,0r-14,68r-28,0r14,-68r-38,0r-13,68r-28,0r13,-68r-32,0r0,-22r37,0r7,-32r-34,0r0,-23r38,0r14,-67r28,0r-14,67r38,0r13,-67r28,0r-13,67r32,0r0,23xm116,-97r6,-32r-37,0r-7,32r38,0","w":200},"\"":{"d":"53,-145r-33,0r-3,-94v0,-6,6,-7,15,-7r30,0xm122,-145r-32,0r-4,-94v0,-6,7,-7,16,-7r30,0","w":147},"!":{"d":"73,-25v0,16,-12,29,-28,29v-16,0,-28,-13,-28,-29v0,-16,12,-28,28,-28v16,0,28,12,28,28xm65,-71r-40,0r-3,-164r46,0","w":90},"L":{"d":"72,-40r113,0r0,40r-162,0r0,-235r49,0r0,195"},"\u00a0":{"w":79}}});
;
/*Cufon.replace("h1, h2, h3, h4, h5, h6", {
	color: "-linear-gradient(#6D6E71, 0.3=#ccc, 0.3=#fff, #6D6E71)"}
);*/
Cufon.replace('h1, h2, h3, h4, h5, h6', { fontFamily: 'PragmaticaCondCTT',   textShadow: '#BCBEC0 1px 1px' });
Cufon.replace('.content table.history h2', { fontFamily: 'PragmaticaCondCTT', color:'#FF7B00',   textShadow: '#BCBEC0 1px 1px' });
Cufon.replace('.name h1', { fontFamily: 'PragmaticaCondCTT',color:'#172322', textShadow: '#fff 1px 1px' });	
Cufon.replace('.name h3', { fontFamily: 'PragmaticaCondCTT',color:'#fff',    textShadow: '#172322 1px 1px' });
Cufon.replace('.view-NewsCarusele h3', { fontFamily: 'PragmaticaCondCTT', color:'#333'});
Cufon.replace('.top-region h2', { fontFamily: 'Tahoma',   textShadow: '#000 1px 1px'  });


	;
/**
 * @author Alexander Farkas
 * v. 1.22
 */


(function($) {
	if(!document.defaultView || !document.defaultView.getComputedStyle){ // IE6-IE8
		var oldCurCSS = $.curCSS;
		$.curCSS = function(elem, name, force){
			if(name === 'background-position'){
				name = 'backgroundPosition';
			}
			if(name !== 'backgroundPosition' || !elem.currentStyle || elem.currentStyle[ name ]){
				return oldCurCSS.apply(this, arguments);
			}
			var style = elem.style;
			if ( !force && style && style[ name ] ){
				return style[ name ];
			}
			return oldCurCSS(elem, 'backgroundPositionX', force) +' '+ oldCurCSS(elem, 'backgroundPositionY', force);
		};
	}
	
	var oldAnim = $.fn.animate;
	$.fn.animate = function(prop){
		if('background-position' in prop){
			prop.backgroundPosition = prop['background-position'];
			delete prop['background-position'];
		}
		if('backgroundPosition' in prop){
			prop.backgroundPosition = '('+ prop.backgroundPosition;
		}
		return oldAnim.apply(this, arguments);
	};
	
	function toArray(strg){
		strg = strg.replace(/left|top/g,'0px');
		strg = strg.replace(/right|bottom/g,'100%');
		strg = strg.replace(/([0-9\.]+)(\s|\)|$)/g,"$1px$2");
		var res = strg.match(/(-?[0-9\.]+)(px|\%|em|pt)\s(-?[0-9\.]+)(px|\%|em|pt)/);
		return [parseFloat(res[1],10),res[2],parseFloat(res[3],10),res[4]];
	}
	
	$.fx.step. backgroundPosition = function(fx) {
		if (!fx.bgPosReady) {
			var start = $.curCSS(fx.elem,'backgroundPosition');
			if(!start){//FF2 no inline-style fallback
				start = '0px 0px';
			}
			
			start = toArray(start);
			fx.start = [start[0],start[2]];
			var end = toArray(fx.end);
			fx.end = [end[0],end[2]];
			
			fx.unit = [end[1],end[3]];
			fx.bgPosReady = true;
		}
		//return;
		var nowPosX = [];
		nowPosX[0] = ((fx.end[0] - fx.start[0]) * fx.pos) + fx.start[0] + fx.unit[0];
		nowPosX[1] = ((fx.end[1] - fx.start[1]) * fx.pos) + fx.start[1] + fx.unit[1];           
		fx.elem.style.backgroundPosition = nowPosX[0]+' '+nowPosX[1];

	};
})(jQuery);;
$(document).ready(function(){
   jQuery.easing.def = 'easeInOutBack';                
   $(".flash_fake").hover(
        function(){         
          $(this).stop().animate({backgroundPosition: '0px -75px'});
        },
        function() {
          $(this).stop().animate({backgroundPosition: '0px 0px'});
        }
   ); 
   
   $(".flash_fake").hover(
        function(){         
          $(this).stop().animate({backgroundPosition: '0px -75px'});
        },
        function() {
          $(this).stop().animate({backgroundPosition: '0px 0px'});
        }
   );     
       
  $("#block-menu-primary-links ul.menu li.expanded").hover(    
    function () {        
        $(this).addClass("hover");
        $(this).find("a:first").attr("href","#");                      
        $(this).parent().find("li.hover ul.menu").css({height:0}).stop().show().animate({                
                height: 205}, "slow");   
      },
      
      function () {
        $(this).parent().find("li.hover ul.menu").stop().slideUp('fast'); 
        $(this).removeClass("hover");                                     
      }
    );
   
});;

