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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
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": "Неопределенная ошибка", "Drag to re-order": "Переместите для изменения порядка", "Changes made in this table will not be saved until the form is submitted.": "Сделанные в списке изменения не вступят в силу, пока вы не сохраните их.", "Split summary at cursor": "Отделить анонс от основного материала", "Join summary": "Объединить анонс", "Restore this item": "Восстановить этот пункт", "Remove this item": "Удалить этот элемент", "Removed": "Удалено", "Select all rows in this table": "Отметить все строки таблицы", "Deselect all rows in this table": "Снять отметку со всех колонок таблицы", "This action cannot be undone.": "Это действие нельзя будет отменить..", "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страницы документации о Clean URLs\x3c/a\x3e.", "Testing clean URLs...": "Тестирование чистых URL-ов...", "Only files with the following extensions are allowed: %files-allowed.": "Прикреплять можно только файлы с расширениями: %files-allowed.", "Delete": "Удалить", "Upload": "Загрузить", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "Изменения, сделанные в блоках не вступят в силу пока вы не нажмете кнопку \x3cem\x3eСохранить блоки\x3c/em\x3e.", "The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.": "Выбранный файл %filename не может быть загружен. Возможно загрузка файлов только со следующими расширениями: %extensions.", "Next": "Далее", "Close": "Закрыть", "Previous": "Предыдущий" } };;
/* $Id: lightbox.js,v 1.5.2.6.2.136 2010/09/24 08:39:40 snpower Exp $ */

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

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

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

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

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


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

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

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

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

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

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

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

  },

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

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

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

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

    Lightbox.isPaused = !Lightbox.autoStart;

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

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


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

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

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

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

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

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

      // Handle grouped items.
      else {

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    var s = Drupal.settings.lightbox2;

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

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

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

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

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

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

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

    // All other types of content.
    else {

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

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

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

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


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

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

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

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

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

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

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

  preloadNeighborImages: function() {

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

  },

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


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

    var xScroll, yScroll;

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

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

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

  getPageSize : function() {

    var xScroll, yScroll;

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

    var windowWidth, windowHeight;

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


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


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


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

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

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

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


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

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

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

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

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

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

};

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

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

;
// $Id: panels.js,v 1.2.4.1 2009/10/05 22:40:35 merlinofchaos Exp $

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

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

  $(Drupal.Panels.autoAttach);
})(jQuery);
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
Drupal.behaviors.bs_ssBehavior = function (context) {
  
  var nav = Drupal.settings.bs_ss.nav;
  var nav_id = Drupal.settings.bs_ss.nav_id || 0;
  var nav_auto = Drupal.settings.bs_ss.nav_auto;
  var chapter_id = nav[nav_id].cid;
  
  var positions = new Array();
  var chapter_ids = new Array();
  chapter_ids[chapter_id] = nav_id;
  
  var frames = {};
  frames[build_id(nav_id)] = {}; 
  frames[build_id(nav_id)].id = nav_id;
  frames[build_id(nav_id)].next = Drupal.settings.bs_ss.nav_id_next;
  frames[build_id(nav_id)].prev = Drupal.settings.bs_ss.nav_id_prev;
  
  nav_step(frames[build_id(nav_id)]);
  
  var slide_width = $('#bs-ss .slide').width();

  // расставляем правильные #id для табов
  $('#bs-ss .tabs a').each(function(cid) {
    this.id = build_cid(cid);
  });

  $('#bs-ss .slides').get(0).id = 'cid-' + (Drupal.settings.bs_ss.nav_id ? chapter_id : 'none');
  
  init_slides(nav_id, (Drupal.settings.bs_ss.nav_id ? chapter_id : -1));
  
  init_navigation();
  preload_frames(nav_id);
  preload_chapters((Drupal.settings.bs_ss.nav_id ? chapter_id : -1));

  var nav_auto_id = 0;
  var nav_auto_id_next = 0;
  var nav_auto_timeout = 5;
  var nav_auto_idle = true;
  
  var navAuto = function() {
    if (!nav_auto_idle) {
      return;
    }
    // Текущее положение навигации
    nav_id = nav_auto[nav_auto_id].nav_id;
    if (chapter_id != nav[nav_id].cid) {
      // Смена раздела
      $('#bs-ss .slides').hide();
      chapter_id = nav[nav_id].cid;
      preload_frames(nav_id);
      $('#bs-ss #cid-' + chapter_id + '.slides').css({marginLeft: positions[build_id(nav_id)] * -1});
      $('#bs-ss #cid-' + chapter_id + '.slides').show();
      //nav_step(frames[build_id(nav_id)]);
      // убираем флаги актвности со всех табов
      $('#bs-ss .tabs a').removeClass('active-tab');
      $('#bs-ss .tabs a#cid-' + chapter_id).addClass('active-tab');
    }
    
    // Следующиее положение навигации
    if (!nav_auto[nav_auto_id + 1]) {
      // массив авто навигации кончился, переходим на начало
      nav_auto_id_next = 0;
    } else {
      nav_auto_id_next = nav_auto_id + 1;
    }
    nav_id_next = nav_auto[nav_auto_id_next].nav_id;
    chapter_id_next = nav[nav_id_next].cid;
    
    // Существует ли следующий фрейм
    if (!is_obj(frames[build_id(nav_id_next)])) {
      // не существует, подгружаем
      load_frame(nav_id_next, function () {
        // когда подгрузится, вызовем себя
        nav_step(frames[build_id(nav_id)]);
        nav_auto_id = nav_auto_id_next;
        setTimeout(navAuto, nav_auto_timeout * 1000);
      });
    } else {
      nav_step(frames[build_id(nav_id)]);
      nav_auto_id = nav_auto_id_next;
      setTimeout(navAuto, nav_auto_timeout * 1000);
    }
  }
  
  if (Drupal.settings.bs_ss.nav_id) {
    setTimeout(navAuto, nav_auto_timeout/3 * 1000);
  }
  
  function init_slides(new_nav_id, new_chapter_id) {
    var nav_ids = new Array; // вспомогательный массив для переиндексации слайдов
    // создаем пустые слайды внутри нужной группы
    i = 0;
    for (_nav_id in nav) {
      if (nav[_nav_id].cid == new_chapter_id) { // создаем только для текущего раздела
        nav_ids[i++] = _nav_id;
        if (_nav_id < new_nav_id) {
          
          $('#bs-ss #cid-' + new_chapter_id + '.slides').prepend("<div class='slide'></div>");
        } else if (_nav_id > new_nav_id) {
          $('#bs-ss #cid-' + new_chapter_id + '.slides').append("<div class='slide'></div>");
        }
      }
    }
    // расставляем правильные #id для слайдов
    i = 0;
    $('#bs-ss #cid-' + new_chapter_id + '.slides .slide').each(function() {
      this.id = build_id(nav_ids[i]);
      positions[this.id] = i * slide_width;
      i++;
    });
  
    $('#bs-ss #cid-' + new_chapter_id + '.slides').width(i * slide_width);
    $('#bs-ss #cid-' + new_chapter_id + '.slides').css('margin-left', -1 * positions[build_id(new_nav_id)]);
  }
  
  function preload_chapters(chapter_id) {
    cid = -1;
    for (_nav_id in nav) {
      if (nav[_nav_id].cid != cid) {
        if (nav[_nav_id].cid != chapter_id) {
          // смена чаптера, грузим фрейм с сервера
          $.get('bs_ss_ajax' + '?c=' + nav[_nav_id].cid, null, function(response) {            
            res = Drupal.parseJson(response);
            // создаем группу для слайдов
            $('#bs-ss .slides-wrapper').append('<div class="slides" id="cid-' + nav[res.nav_id].cid + '"></div>');
            $('#bs-ss #cid-' + nav[res.nav_id].cid + '.slides').html("<div class='slide' id='" + build_id(res.nav_id) + "'>" + res.show + "</div>");
            chapter_ids[nav[res.nav_id].cid] = res.nav_id; 
            frames[build_id(res.nav_id)] = {};
            frames[build_id(res.nav_id)].id = res.nav_id;
            frames[build_id(res.nav_id)].next = res.nav_id_next; 
            frames[build_id(res.nav_id)].prev = res.nav_id_prev;
            init_slides(res.nav_id, nav[res.nav_id].cid);
            cufon_run();
            $('.studio, h4.studio, .show-title, h1').widont();
          });
        }
        cid = nav[_nav_id].cid;
      }
    }
  }
  

  function preload_frames(current_nav_id, callback) {
    if (frames[build_id(current_nav_id)].next > 0) {
      load_frame(frames[build_id(current_nav_id)].next);
    }
    if (frames[build_id(current_nav_id)].prev > 0) {
      load_frame(frames[build_id(current_nav_id)].prev);
    }
  }
  
  function load_frame(new_nav_id, callback) {
    $.get('bs_ss_ajax' + build_search(new_nav_id), null, function(response) {
      res = Drupal.parseJson(response);
      $('#bs-ss #cid-' + nav[new_nav_id].cid + '.slides #' + build_id(new_nav_id)).append(res.show);
      frames[build_id(new_nav_id)] = {};
      frames[build_id(new_nav_id)].id = res.nav_id;
      frames[build_id(new_nav_id)].next = res.nav_id_next; 
      frames[build_id(new_nav_id)].prev = res.nav_id_prev;
      if (callback !== undefined) callback();
      cufon_run();
      $('.studio, h4.studio, .show-title, h1').widont();
    })
  }
  
  function is_obj(obj) {
    return !(obj === null) && !(obj === undefined);
  }

  function init_navigation() {
    $('#bs-ss .nav-next a', context).bind('click', function() {
      nav_auto_idle = false;
      _current_bid = build_id(nav_id);
      new_frame = frames[build_id(frames[_current_bid].next)]; // точно должен быть
      //_prev_frame = _next_frame.prev < 0 ? {next: _next_frame.prev, prev: -1} : frames[build_id(_next_frame.prev)];
      nav_step(new_frame);
      return false;
    });
    $('#bs-ss .nav-prev a', context).bind('click', function() {
      nav_auto_idle = false;
      _current_bid = build_id(nav_id);
      new_frame = frames[build_id(frames[_current_bid].prev)]; // точно должен быть
      nav_step(new_frame);
      return false;
    });
    $('#bs-ss .tabs a', context).bind('click', function() {
      nav_auto_idle = false;
      // достаем cid
      cid = this.id.split('-')[1];
      // инициализируем раздел
      //init_chapter(cid);      
      // Скрываем текущую группу слайдов 
      $('#bs-ss .slides').hide();
      nav_id = chapter_ids[cid];
      chapter_id = cid;
      preload_frames(nav_id);
      // Показываем новую
      $('#bs-ss #cid-' + cid + '.slides').css({marginLeft: positions[build_id(nav_id)] * -1});
      $('#bs-ss #cid-' + cid + '.slides').show();
      nav_step(frames[build_id(nav_id)]);
      // убираем флаги актвности со всех табов
      $('#bs-ss .tabs a').removeClass('active-tab');
      $(this).addClass('active-tab');
      return false;
    });
  }  
  
  function nav_step(new_frame, callback) {
    button_next = $('#bs-ss .nav-next a', context);
    button_prev = $('#bs-ss .nav-prev a', context);
    // обновляем глобальный nav_id
    nav_id = new_frame.id;
    if (new_frame.next < 0 ) {
      // кадров дальше нет, хайдим кнопку
      button_next.fadeOut();
    } else { // еще есть кадры, проверяем загружены ли они
      // ставим ей правильный search
      button_next.get(0).search = build_search(new_frame.next);
      button_next.get(0).rel = 'nofollow';
      if (!is_obj(frames[build_id(new_frame.next)])) {
        // фрейм не загружен, прячем кнопку
        button_next.fadeOut();
        // грузим фрейм
        load_frame(new_frame.next, function () {
          // и показываем кнопку после загрузки
          //button_next.show('slide', { direction: "left"});
          button_next.fadeIn();
          if (callback !== undefined) callback();
        });
      } else {
        if (button_next.css('display') == 'none') {
          //button_next.show('slide', { direction: "left"});
          button_next.fadeIn()
        }
      }
    }
    if (new_frame.prev < 0 ) {
      // кадров дальше нет, хайдим кнопку
      button_prev.fadeOut();
    } else { // еще есть кадры, проверяем загружены ли они
      // ставим ей правильный search
      button_prev.get(0).search = build_search(new_frame.prev);
      button_prev.get(0).rel = 'nofollow';
      if (!is_obj(frames[build_id(new_frame.prev)])) {
        // фрейм не загружен, прячем кнопку
        button_prev.fadeOut();
        // грузим фрейм
        load_frame(new_frame.prev, function () {
          // и показываем кнопку после загрузки
          button_prev.fadeIn();
          if (callback !== undefined) callback();
        });
      } else {
        if (button_prev.css('display') == 'none') {
          //button_prev.show('slide', { direction: "right"});
          button_prev.fadeIn();
        }
      }
    }
    
    if ($('#bs-ss #cid-' + chapter_id + '.slides').css("margin-left") == undefined) { 
      margin = 0;
    } else {
      margin = $('#bs-ss #cid-' + chapter_id + '.slides').css("margin-left").replace("px", "");
    }
    new_margin = positions[build_id(new_frame.id)];
    if (Math.abs(Math.abs(new_margin) - Math.abs(margin)) > slide_width) {
      $('#bs-ss #cid-' + chapter_id + '.slides').animate({opacity: 0}, 400, function() {
        $(this).css("margin-left",  new_margin * -1);
        $(this).animate({opacity: 1}, 400);
      });
    } else {
      $('#bs-ss #cid-' + chapter_id + '.slides').animate({marginLeft: new_margin * -1}, 800, 'easeOutQuint');
    }
  }

  // Utility functions
  
  function build_search(target_nav_id) {
    return is_obj(nav[target_nav_id]) ? '?s=' + nav[target_nav_id].nid + '&t=' + nav[target_nav_id].time : '';  
  }
  
  function build_id(target_nav_id) {
    return is_obj(nav[target_nav_id]) ? nav[target_nav_id].nid + '_' + nav[target_nav_id].time : -1;  
  }
  
  function build_cid(target_cid) {
    return 'cid-' + target_cid;
  }
  
  function bid_to_search(bid) {
    parts = new Array();
    parts = bid.split('_');
    return '?s=' + parts[0] + '&t=' + parts[1];  
  }
  
  function cufon_run() {
    for (o in Drupal.settings.cufonSelectors) { 
      s = Drupal.settings.cufonSelectors[o];
      Cufon.replace(s.selector, s.options)
    }
  }

  var loadFrame = function(response) {
    var result = Drupal.parseJson(response);
    $('#bs-ss .show>.inner').html(result.show);
    $('#bs-ss .show>.inner').hide("slide", { direction: "left" }, 1000, function () { alert('works!') });
    
    //$('#bs-ss .show>.inner').html(result.show);
    //$('#bs-ss .show>.inner').show("slide", { direction: "left" }, 1000);
    $('#bs-ss .tabs').html(result.tabs);
    $('#bs-ss .nav-prev').html(result.nav_prev);
    $('#bs-ss .nav-next').html(result.nav_next);
    initNav();
    // reinit Cufon
    
  }
  
};

;
/*
 * jQuery UI 1.6
 *
 * Copyright (c) 2008 AUTHORS.txt (http://ui.jquery.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI
 */(function(C){var I=C.fn.remove,D=C.browser.mozilla&&(parseFloat(C.browser.version)<1.9);C.ui={version:"1.6",plugin:{add:function(K,L,N){var M=C.ui[K].prototype;for(var J in N){M.plugins[J]=M.plugins[J]||[];M.plugins[J].push([L,N[J]])}},call:function(J,L,K){var N=J.plugins[L];if(!N){return }for(var M=0;M<N.length;M++){if(J.options[N[M][0]]){N[M][1].apply(J.element,K)}}}},contains:function(L,K){var J=C.browser.safari&&C.browser.version<522;if(L.contains&&!J){return L.contains(K)}if(L.compareDocumentPosition){return !!(L.compareDocumentPosition(K)&16)}while(K=K.parentNode){if(K==L){return true}}return false},cssCache:{},css:function(J){if(C.ui.cssCache[J]){return C.ui.cssCache[J]}var K=C('<div class="ui-gen">').addClass(J).css({position:"absolute",top:"-5000px",left:"-5000px",display:"block"}).appendTo("body");C.ui.cssCache[J]=!!((!(/auto|default/).test(K.css("cursor"))||(/^[1-9]/).test(K.css("height"))||(/^[1-9]/).test(K.css("width"))||!(/none/).test(K.css("backgroundImage"))||!(/transparent|rgba\(0, 0, 0, 0\)/).test(K.css("backgroundColor"))));try{C("body").get(0).removeChild(K.get(0))}catch(L){}return C.ui.cssCache[J]},hasScroll:function(M,K){if(C(M).css("overflow")=="hidden"){return false}var J=(K&&K=="left")?"scrollLeft":"scrollTop",L=false;if(M[J]>0){return true}M[J]=1;L=(M[J]>0);M[J]=0;return L},isOverAxis:function(K,J,L){return(K>J)&&(K<(J+L))},isOver:function(O,K,N,M,J,L){return C.ui.isOverAxis(O,N,J)&&C.ui.isOverAxis(K,M,L)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(D){var F=C.attr,E=C.fn.removeAttr,H="http://www.w3.org/2005/07/aaa",A=/^aria-/,B=/^wairole:/;C.attr=function(K,J,L){var M=L!==undefined;return(J=="role"?(M?F.call(this,K,J,"wairole:"+L):(F.apply(this,arguments)||"").replace(B,"")):(A.test(J)?(M?K.setAttributeNS(H,J.replace(A,"aaa:"),L):F.call(this,K,J.replace(A,"aaa:"))):F.apply(this,arguments)))};C.fn.removeAttr=function(J){return(A.test(J)?this.each(function(){this.removeAttributeNS(H,J.replace(A,""))}):E.call(this,J))}}C.fn.extend({remove:function(){C("*",this).add(this).each(function(){C(this).triggerHandler("remove")});return I.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var J;if((C.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){J=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(C.curCSS(this,"position",1))&&(/(auto|scroll)/).test(C.curCSS(this,"overflow",1)+C.curCSS(this,"overflow-y",1)+C.curCSS(this,"overflow-x",1))}).eq(0)}else{J=this.parents().filter(function(){return(/(auto|scroll)/).test(C.curCSS(this,"overflow",1)+C.curCSS(this,"overflow-y",1)+C.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!J.length?C(document):J}});C.extend(C.expr[":"],{data:function(K,L,J){return C.data(K,J[3])},tabbable:function(L,M,K){var N=L.nodeName.toLowerCase();function J(O){return !(C(O).is(":hidden")||C(O).parents(":hidden").length)}return(L.tabIndex>=0&&(("a"==N&&L.href)||(/input|select|textarea|button/.test(N)&&"hidden"!=L.type&&!L.disabled))&&J(L))}});function G(M,N,O,L){function K(Q){var P=C[M][N][Q]||[];return(typeof P=="string"?P.split(/,?\s+/):P)}var J=K("getter");if(L.length==1&&typeof L[0]=="string"){J=J.concat(K("getterSetter"))}return(C.inArray(O,J)!=-1)}C.widget=function(K,J){var L=K.split(".")[0];K=K.split(".")[1];C.fn[K]=function(P){var N=(typeof P=="string"),O=Array.prototype.slice.call(arguments,1);if(N&&P.substring(0,1)=="_"){return this}if(N&&G(L,K,P,O)){var M=C.data(this[0],K);return(M?M[P].apply(M,O):undefined)}return this.each(function(){var Q=C.data(this,K);(!Q&&!N&&C.data(this,K,new C[L][K](this,P)));(Q&&N&&C.isFunction(Q[P])&&Q[P].apply(Q,O))})};C[L]=C[L]||{};C[L][K]=function(O,N){var M=this;this.widgetName=K;this.widgetEventPrefix=C[L][K].eventPrefix||K;this.widgetBaseClass=L+"-"+K;this.options=C.extend({},C.widget.defaults,C[L][K].defaults,C.metadata&&C.metadata.get(O)[K],N);this.element=C(O).bind("setData."+K,function(Q,P,R){return M._setData(P,R)}).bind("getData."+K,function(Q,P){return M._getData(P)}).bind("remove",function(){return M.destroy()});this._init()};C[L][K].prototype=C.extend({},C.widget.prototype,J);C[L][K].getterSetter="option"};C.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName)},option:function(L,M){var K=L,J=this;if(typeof L=="string"){if(M===undefined){return this._getData(L)}K={};K[L]=M}C.each(K,function(N,O){J._setData(N,O)})},_getData:function(J){return this.options[J]},_setData:function(J,K){this.options[J]=K;if(J=="disabled"){this.element[K?"addClass":"removeClass"](this.widgetBaseClass+"-disabled")}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(K,L,M){var J=(K==this.widgetEventPrefix?K:this.widgetEventPrefix+K);L=L||C.event.fix({type:J,target:this.element[0]});return this.element.triggerHandler(J,[L,M],this.options[K])}};C.widget.defaults={disabled:false};C.ui.mouse={_mouseInit:function(){var J=this;this.element.bind("mousedown."+this.widgetName,function(K){return J._mouseDown(K)}).bind("click."+this.widgetName,function(K){if(J._preventClickEvent){J._preventClickEvent=false;return false}});if(C.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(C.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(L){(this._mouseStarted&&this._mouseUp(L));this._mouseDownEvent=L;var K=this,M=(L.which==1),J=(typeof this.options.cancel=="string"?C(L.target).parents().add(L.target).filter(this.options.cancel).length:false);if(!M||J||!this._mouseCapture(L)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){K.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(L)&&this._mouseDelayMet(L)){this._mouseStarted=(this._mouseStart(L)!==false);if(!this._mouseStarted){L.preventDefault();return true}}this._mouseMoveDelegate=function(N){return K._mouseMove(N)};this._mouseUpDelegate=function(N){return K._mouseUp(N)};C(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);if(!C.browser.safari){L.preventDefault()}return true},_mouseMove:function(J){if(C.browser.msie&&!J.button){return this._mouseUp(J)}if(this._mouseStarted){this._mouseDrag(J);return J.preventDefault()}if(this._mouseDistanceMet(J)&&this._mouseDelayMet(J)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,J)!==false);(this._mouseStarted?this._mouseDrag(J):this._mouseUp(J))}return !this._mouseStarted},_mouseUp:function(J){C(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=true;this._mouseStop(J)}return false},_mouseDistanceMet:function(J){return(Math.max(Math.abs(this._mouseDownEvent.pageX-J.pageX),Math.abs(this._mouseDownEvent.pageY-J.pageY))>=this.options.distance)},_mouseDelayMet:function(J){return this.mouseDelayMet},_mouseStart:function(J){},_mouseDrag:function(J){},_mouseStop:function(J){},_mouseCapture:function(J){return true}};C.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);
/*
 * jQuery UI Effects 1.6
 *
 * Copyright (c) 2008 AUTHORS.txt (http://ui.jquery.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/
 */(function(C){C.effects=C.effects||{};C.extend(C.effects,{version:"1.6",save:function(F,G){for(var E=0;E<G.length;E++){if(G[E]!==null){C.data(F[0],"ec.storage."+G[E],F[0].style[G[E]])}}},restore:function(F,G){for(var E=0;E<G.length;E++){if(G[E]!==null){F.css(G[E],C.data(F[0],"ec.storage."+G[E]))}}},setMode:function(E,F){if(F=="toggle"){F=E.is(":hidden")?"show":"hide"}return F},getBaseline:function(F,G){var H,E;switch(F[0]){case"top":H=0;break;case"middle":H=0.5;break;case"bottom":H=1;break;default:H=F[0]/G.height}switch(F[1]){case"left":E=0;break;case"center":E=0.5;break;case"right":E=1;break;default:E=F[1]/G.width}return{x:E,y:H}},createWrapper:function(F){if(F.parent().attr("id")=="fxWrapper"){return F}var E={width:F.outerWidth({margin:true}),height:F.outerHeight({margin:true}),"float":F.css("float")};F.wrap('<div id="fxWrapper" style="font-size:100%;background:transparent;border:none;margin:0;padding:0"></div>');var I=F.parent();if(F.css("position")=="static"){I.css({position:"relative"});F.css({position:"relative"})}else{var H=F.css("top");if(isNaN(parseInt(H))){H="auto"}var G=F.css("left");if(isNaN(parseInt(G))){G="auto"}I.css({position:F.css("position"),top:H,left:G,zIndex:F.css("z-index")}).show();F.css({position:"relative",top:0,left:0})}I.css(E);return I},removeWrapper:function(E){if(E.parent().attr("id")=="fxWrapper"){return E.parent().replaceWith(E)}return E},setTransition:function(F,G,E,H){H=H||{};C.each(G,function(J,I){unit=F.cssUnit(I);if(unit[0]>0){H[I]=unit[0]*E+unit[1]}});return H},animateClass:function(G,H,J,I){var E=(typeof J=="function"?J:(I?I:null));var F=(typeof J=="object"?J:null);return this.each(function(){var O={};var M=C(this);var N=M.attr("style")||"";if(typeof N=="object"){N=N["cssText"]}if(G.toggle){M.hasClass(G.toggle)?G.remove=G.toggle:G.add=G.toggle}var K=C.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(G.add){M.addClass(G.add)}if(G.remove){M.removeClass(G.remove)}var L=C.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(G.add){M.removeClass(G.add)}if(G.remove){M.addClass(G.remove)}for(var P in L){if(typeof L[P]!="function"&&L[P]&&P.indexOf("Moz")==-1&&P.indexOf("length")==-1&&L[P]!=K[P]&&(P.match(/color/i)||(!P.match(/color/i)&&!isNaN(parseInt(L[P],10))))&&(K.position!="static"||(K.position=="static"&&!P.match(/left|top|bottom|right/)))){O[P]=L[P]}}M.animate(O,H,F,function(){if(typeof C(this).attr("style")=="object"){C(this).attr("style")["cssText"]="";C(this).attr("style")["cssText"]=N}else{C(this).attr("style",N)}if(G.add){C(this).addClass(G.add)}if(G.remove){C(this).removeClass(G.remove)}if(E){E.apply(this,arguments)}})})}});C.fn.extend({_show:C.fn.show,_hide:C.fn.hide,__toggle:C.fn.toggle,_addClass:C.fn.addClass,_removeClass:C.fn.removeClass,_toggleClass:C.fn.toggleClass,effect:function(E,G,F,H){return C.effects[E]?C.effects[E].call(this,{method:E,options:G||{},duration:F,callback:H}):null},show:function(){if(!arguments[0]||(arguments[0].constructor==Number||/(slow|normal|fast)/.test(arguments[0]))){return this._show.apply(this,arguments)}else{var E=arguments[1]||{};E["mode"]="show";return this.effect.apply(this,[arguments[0],E,arguments[2]||E.duration,arguments[3]||E.callback])}},hide:function(){if(!arguments[0]||(arguments[0].constructor==Number||/(slow|normal|fast)/.test(arguments[0]))){return this._hide.apply(this,arguments)}else{var E=arguments[1]||{};E["mode"]="hide";return this.effect.apply(this,[arguments[0],E,arguments[2]||E.duration,arguments[3]||E.callback])}},toggle:function(){if(!arguments[0]||(arguments[0].constructor==Number||/(slow|normal|fast)/.test(arguments[0]))||(arguments[0].constructor==Function)){return this.__toggle.apply(this,arguments)}else{var E=arguments[1]||{};E["mode"]="toggle";return this.effect.apply(this,[arguments[0],E,arguments[2]||E.duration,arguments[3]||E.callback])}},addClass:function(F,E,H,G){return E?C.effects.animateClass.apply(this,[{add:F},E,H,G]):this._addClass(F)},removeClass:function(F,E,H,G){return E?C.effects.animateClass.apply(this,[{remove:F},E,H,G]):this._removeClass(F)},toggleClass:function(F,E,H,G){return E?C.effects.animateClass.apply(this,[{toggle:F},E,H,G]):this._toggleClass(F)},morph:function(E,G,F,I,H){return C.effects.animateClass.apply(this,[{add:G,remove:E},F,I,H])},switchClass:function(){return this.morph.apply(this,arguments)},cssUnit:function(E){var F=this.css(E),G=[];C.each(["em","px","%","pt"],function(H,I){if(F.indexOf(I)>0){G=[parseFloat(F),I]}});return G}});C.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(F,E){C.fx.step[E]=function(G){if(G.state==0){G.start=D(G.elem,E);G.end=B(G.end)}G.elem.style[E]="rgb("+[Math.max(Math.min(parseInt((G.pos*(G.end[0]-G.start[0]))+G.start[0]),255),0),Math.max(Math.min(parseInt((G.pos*(G.end[1]-G.start[1]))+G.start[1]),255),0),Math.max(Math.min(parseInt((G.pos*(G.end[2]-G.start[2]))+G.start[2]),255),0)].join(",")+")"}});function B(F){var E;if(F&&F.constructor==Array&&F.length==3){return F}if(E=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(F)){return[parseInt(E[1]),parseInt(E[2]),parseInt(E[3])]}if(E=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(F)){return[parseFloat(E[1])*2.55,parseFloat(E[2])*2.55,parseFloat(E[3])*2.55]}if(E=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(F)){return[parseInt(E[1],16),parseInt(E[2],16),parseInt(E[3],16)]}if(E=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(F)){return[parseInt(E[1]+E[1],16),parseInt(E[2]+E[2],16),parseInt(E[3]+E[3],16)]}if(E=/rgba\(0, 0, 0, 0\)/.exec(F)){return A["transparent"]}return A[C.trim(F).toLowerCase()]}function D(G,E){var F;do{F=C.curCSS(G,E);if(F!=""&&F!="transparent"||C.nodeName(G,"body")){break}E="backgroundColor"}while(G=G.parentNode);return B(F)}var A={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]};C.easing.jswing=C.easing.swing;C.extend(C.easing,{def:"easeOutQuad",swing:function(F,G,E,I,H){return C.easing[C.easing.def](F,G,E,I,H)},easeInQuad:function(F,G,E,I,H){return I*(G/=H)*G+E},easeOutQuad:function(F,G,E,I,H){return -I*(G/=H)*(G-2)+E},easeInOutQuad:function(F,G,E,I,H){if((G/=H/2)<1){return I/2*G*G+E}return -I/2*((--G)*(G-2)-1)+E},easeInCubic:function(F,G,E,I,H){return I*(G/=H)*G*G+E},easeOutCubic:function(F,G,E,I,H){return I*((G=G/H-1)*G*G+1)+E},easeInOutCubic:function(F,G,E,I,H){if((G/=H/2)<1){return I/2*G*G*G+E}return I/2*((G-=2)*G*G+2)+E},easeInQuart:function(F,G,E,I,H){return I*(G/=H)*G*G*G+E},easeOutQuart:function(F,G,E,I,H){return -I*((G=G/H-1)*G*G*G-1)+E},easeInOutQuart:function(F,G,E,I,H){if((G/=H/2)<1){return I/2*G*G*G*G+E}return -I/2*((G-=2)*G*G*G-2)+E},easeInQuint:function(F,G,E,I,H){return I*(G/=H)*G*G*G*G+E},easeOutQuint:function(F,G,E,I,H){return I*((G=G/H-1)*G*G*G*G+1)+E},easeInOutQuint:function(F,G,E,I,H){if((G/=H/2)<1){return I/2*G*G*G*G*G+E}return I/2*((G-=2)*G*G*G*G+2)+E},easeInSine:function(F,G,E,I,H){return -I*Math.cos(G/H*(Math.PI/2))+I+E},easeOutSine:function(F,G,E,I,H){return I*Math.sin(G/H*(Math.PI/2))+E},easeInOutSine:function(F,G,E,I,H){return -I/2*(Math.cos(Math.PI*G/H)-1)+E},easeInExpo:function(F,G,E,I,H){return(G==0)?E:I*Math.pow(2,10*(G/H-1))+E},easeOutExpo:function(F,G,E,I,H){return(G==H)?E+I:I*(-Math.pow(2,-10*G/H)+1)+E},easeInOutExpo:function(F,G,E,I,H){if(G==0){return E}if(G==H){return E+I}if((G/=H/2)<1){return I/2*Math.pow(2,10*(G-1))+E}return I/2*(-Math.pow(2,-10*--G)+2)+E},easeInCirc:function(F,G,E,I,H){return -I*(Math.sqrt(1-(G/=H)*G)-1)+E},easeOutCirc:function(F,G,E,I,H){return I*Math.sqrt(1-(G=G/H-1)*G)+E},easeInOutCirc:function(F,G,E,I,H){if((G/=H/2)<1){return -I/2*(Math.sqrt(1-G*G)-1)+E}return I/2*(Math.sqrt(1-(G-=2)*G)+1)+E},easeInElastic:function(F,H,E,L,K){var I=1.70158;var J=0;var G=L;if(H==0){return E}if((H/=K)==1){return E+L}if(!J){J=K*0.3}if(G<Math.abs(L)){G=L;var I=J/4}else{var I=J/(2*Math.PI)*Math.asin(L/G)}return -(G*Math.pow(2,10*(H-=1))*Math.sin((H*K-I)*(2*Math.PI)/J))+E},easeOutElastic:function(F,H,E,L,K){var I=1.70158;var J=0;var G=L;if(H==0){return E}if((H/=K)==1){return E+L}if(!J){J=K*0.3}if(G<Math.abs(L)){G=L;var I=J/4}else{var I=J/(2*Math.PI)*Math.asin(L/G)}return G*Math.pow(2,-10*H)*Math.sin((H*K-I)*(2*Math.PI)/J)+L+E},easeInOutElastic:function(F,H,E,L,K){var I=1.70158;var J=0;var G=L;if(H==0){return E}if((H/=K/2)==2){return E+L}if(!J){J=K*(0.3*1.5)}if(G<Math.abs(L)){G=L;var I=J/4}else{var I=J/(2*Math.PI)*Math.asin(L/G)}if(H<1){return -0.5*(G*Math.pow(2,10*(H-=1))*Math.sin((H*K-I)*(2*Math.PI)/J))+E}return G*Math.pow(2,-10*(H-=1))*Math.sin((H*K-I)*(2*Math.PI)/J)*0.5+L+E},easeInBack:function(F,G,E,J,I,H){if(H==undefined){H=1.70158}return J*(G/=I)*G*((H+1)*G-H)+E},easeOutBack:function(F,G,E,J,I,H){if(H==undefined){H=1.70158}return J*((G=G/I-1)*G*((H+1)*G+H)+1)+E},easeInOutBack:function(F,G,E,J,I,H){if(H==undefined){H=1.70158}if((G/=I/2)<1){return J/2*(G*G*(((H*=(1.525))+1)*G-H))+E}return J/2*((G-=2)*G*(((H*=(1.525))+1)*G+H)+2)+E},easeInBounce:function(F,G,E,I,H){return I-C.easing.easeOutBounce(F,H-G,0,I,H)+E},easeOutBounce:function(F,G,E,I,H){if((G/=H)<(1/2.75)){return I*(7.5625*G*G)+E}else{if(G<(2/2.75)){return I*(7.5625*(G-=(1.5/2.75))*G+0.75)+E}else{if(G<(2.5/2.75)){return I*(7.5625*(G-=(2.25/2.75))*G+0.9375)+E}else{return I*(7.5625*(G-=(2.625/2.75))*G+0.984375)+E}}}},easeInOutBounce:function(F,G,E,I,H){if(G<H/2){return C.easing.easeInBounce(F,G*2,0,I,H)*0.5+E}return C.easing.easeOutBounce(F,G*2-H,0,I,H)*0.5+I*0.5+E}})})(jQuery);
/*
 * jQuery UI Effects Slide 1.6
 *
 * Copyright (c) 2008 AUTHORS.txt (http://ui.jquery.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/Slide
 *
 * Depends:
 *	effects.core.js
 */(function(A){A.effects.slide=function(B){return this.queue(function(){var E=A(this),D=["position","top","left"];var I=A.effects.setMode(E,B.options.mode||"show");var H=B.options.direction||"left";A.effects.save(E,D);E.show();A.effects.createWrapper(E).css({overflow:"hidden"});var F=(H=="up"||H=="down")?"top":"left";var C=(H=="up"||H=="left")?"pos":"neg";var J=B.options.distance||(F=="top"?E.outerHeight({margin:true}):E.outerWidth({margin:true}));if(I=="show"){E.css(F,C=="pos"?-J:J)}var G={};G[F]=(I=="show"?(C=="pos"?"+=":"-="):(C=="pos"?"-=":"+="))+J;E.animate(G,{queue:false,duration:B.duration,easing:B.options.easing,complete:function(){if(I=="hide"){E.hide()}A.effects.restore(E,D);A.effects.removeWrapper(E);if(B.callback){B.callback.apply(this,arguments)}E.dequeue()}})})}})(jQuery);
/*
 * jQuery UI Effects Highlight 1.6
 *
 * Copyright (c) 2008 AUTHORS.txt (http://ui.jquery.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/Highlight
 *
 * Depends:
 *	effects.core.js
 */(function(A){A.effects.highlight=function(B){return this.queue(function(){var E=A(this),D=["backgroundImage","backgroundColor","opacity"];var H=A.effects.setMode(E,B.options.mode||"show");var C=B.options.color||"#ffff99";var G=E.css("backgroundColor");A.effects.save(E,D);E.show();E.css({backgroundImage:"none",backgroundColor:C});var F={backgroundColor:G};if(H=="hide"){F["opacity"]=0}E.animate(F,{queue:false,duration:B.duration,easing:B.options.easing,complete:function(){if(H=="hide"){E.hide()}A.effects.restore(E,D);if(H=="show"&&A.browser.msie){this.style.removeAttribute("filter")}if(B.callback){B.callback.apply(this,arguments)}E.dequeue()}})})}})(jQuery);
Cufon.registerFont({"w":204,"face":{"font-family":"FuturaDemiC","font-weight":600,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 7 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-9 -331 410 286","underline-thickness":"18","underline-position":"-36","stemh":"37","stemv":"44","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":83},"!":{"d":"68,-73r-45,0r0,-167r45,0r0,167xm17,-23v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28","w":90},"\"":{"d":"64,-240r-8,96r-33,0r-8,-96r49,0xm129,-240r-8,96r-33,0r-8,-96r49,0","w":144},"#":{"d":"151,0r-44,0r11,-67r-34,0r-11,67r-43,0r10,-67r-36,0r6,-37r36,0r6,-37r-37,0r7,-37r36,0r10,-62r44,0r-10,62r34,0r10,-62r44,0r-10,62r37,0r-6,37r-37,0r-6,37r37,0r-6,37r-37,0xm124,-104r6,-37r-34,0r-6,37r34,0","w":216},"$":{"d":"95,-274r22,0r0,35v21,1,41,11,56,27r-24,30v-5,-6,-18,-20,-38,-20v-21,0,-31,13,-31,26v0,18,21,24,39,32v12,5,30,12,43,24v10,9,19,24,19,45v0,37,-25,67,-64,74r0,37r-22,0r0,-36v-26,-1,-44,-12,-56,-21v-10,-8,-17,-15,-22,-22r27,-28v9,14,28,32,54,32v21,0,36,-11,36,-32v0,-12,-5,-21,-33,-33v-20,-9,-37,-15,-51,-30v-5,-5,-15,-18,-15,-42v0,-8,3,-39,36,-56v7,-4,14,-6,24,-7r0,-35"},"%":{"d":"71,-243v37,0,61,24,61,57v0,33,-24,57,-61,57v-37,0,-60,-24,-60,-57v0,-33,23,-57,60,-57xm71,-155v18,0,31,-13,31,-31v0,-18,-13,-31,-31,-31v-18,0,-30,13,-30,31v0,18,12,31,30,31xm58,-1r143,-247r19,11r-143,247xm207,-110v37,0,61,24,61,57v0,33,-24,57,-61,57v-37,0,-60,-24,-60,-57v0,-33,23,-57,60,-57xm207,-22v18,0,31,-13,31,-31v0,-18,-13,-31,-31,-31v-18,0,-30,13,-30,31v0,18,12,31,30,31","w":278},"&":{"d":"208,-117r27,27v-14,18,-18,23,-25,30r-6,5r49,55r-58,0r-24,-27v-11,10,-39,32,-77,32v-49,0,-75,-33,-75,-68v0,-36,27,-55,38,-61r19,-11v-8,-8,-24,-28,-24,-51v0,-30,21,-60,66,-60v42,0,65,28,65,58v0,17,-8,38,-34,53r-10,6r39,45v16,-16,25,-26,30,-33xm145,-57r-45,-52v-18,10,-34,24,-34,42v0,18,15,31,35,31v19,0,36,-13,44,-21xm106,-167r10,13r11,-7v13,-9,17,-19,17,-27v0,-12,-8,-24,-24,-24v-17,0,-24,12,-24,23v0,9,5,16,10,22","w":255},"'":{"d":"64,-240r-8,96r-33,0r-8,-96r49,0","w":79},"(":{"d":"95,42r-35,19v-7,-13,-15,-30,-23,-60v-6,-25,-13,-60,-13,-108v0,-48,7,-83,13,-108v8,-30,16,-48,23,-61r35,19v-9,19,-14,37,-18,52v-6,25,-11,67,-11,98v0,31,5,73,11,98v4,15,9,32,18,51","w":115},")":{"d":"20,-257r35,-19v7,13,15,31,23,61v6,25,13,60,13,108v0,48,-7,83,-13,108v-8,30,-16,47,-23,60r-35,-19v9,-19,14,-36,18,-51v6,-25,11,-67,11,-98v0,-31,-5,-73,-11,-98v-4,-15,-9,-33,-18,-52","w":115},"*":{"d":"52,-245r41,21r-7,-46r33,0r-7,46r41,-22r10,32r-46,7r33,33r-27,19r-21,-41r-20,42r-27,-20r32,-33r-45,-6"},"+":{"d":"12,-102r0,-40r56,0r0,-56r44,0r0,56r56,0r0,40r-56,0r0,56r-44,0r0,-56r-56,0","w":180},",":{"d":"1,47r39,-97r40,5r-51,95","w":118},"-":{"d":"14,-63r0,-40r94,0r0,40r-94,0","w":122},".":{"d":"17,-23v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28","w":90},"\/":{"d":"0,51r138,-318r31,15r-137,318","w":198},"0":{"d":"102,5v-48,0,-93,-42,-93,-125v0,-82,45,-126,93,-126v48,0,93,43,93,126v0,82,-45,125,-93,125xm102,-205v-20,0,-46,23,-46,85v0,63,25,85,46,85v21,0,46,-22,46,-85v0,-62,-26,-85,-46,-85"},"1":{"d":"82,0r0,-200r-34,0r0,-40r81,0r0,240r-47,0"},"2":{"d":"6,0r71,-80v4,-5,32,-37,41,-50v6,-10,14,-25,14,-39v0,-22,-16,-36,-36,-36v-24,0,-37,19,-38,40r-48,0v2,-49,36,-81,84,-81v56,0,85,39,85,77v0,37,-25,64,-44,84r-41,45r87,0r0,40r-175,0"},"3":{"d":"62,-177r-44,0v4,-44,37,-69,78,-69v46,0,76,27,76,67v0,13,-3,36,-28,50v10,4,37,17,37,57v0,49,-38,77,-86,77v-46,0,-82,-28,-86,-74r46,0v3,20,17,34,40,34v27,0,39,-20,39,-38v0,-18,-11,-38,-40,-38r-6,0r0,-33r6,0v23,0,33,-16,33,-33v0,-19,-13,-32,-32,-32v-17,0,-32,11,-33,32"},"4":{"d":"169,-244r0,164r28,0r0,38r-28,0r0,42r-44,0r0,-42r-117,0r0,-21r119,-181r42,0xm63,-80r62,0r0,-95"},"5":{"d":"170,-240r0,40r-80,0r-9,38v5,-1,10,-1,16,-1v47,0,84,29,84,81v0,45,-28,87,-94,87v-19,0,-50,-3,-78,-30r16,-41v11,13,31,31,61,31v29,0,48,-19,48,-46v0,-25,-17,-49,-54,-49v-12,0,-30,3,-47,16r-2,0r28,-126r111,0"},"6":{"d":"114,-250r33,25r-57,73v8,-3,16,-6,27,-6v39,0,76,28,76,78v0,42,-27,85,-91,85v-61,0,-91,-38,-91,-82v0,-31,15,-54,30,-75xm102,-32v25,0,44,-18,44,-44v0,-26,-19,-45,-44,-45v-25,0,-44,19,-44,45v0,26,19,44,44,44"},"7":{"d":"20,-14r108,-186r-111,0r0,-40r185,0r-147,250"},"8":{"d":"143,-125v27,9,43,31,43,59v0,40,-32,71,-84,71v-52,0,-83,-31,-83,-71v0,-28,16,-50,43,-59v-18,-9,-35,-27,-35,-54v0,-35,25,-67,75,-67v50,0,75,32,75,67v0,27,-16,45,-34,54xm102,-145v20,0,34,-13,34,-33v0,-20,-14,-34,-34,-34v-20,0,-33,14,-33,34v0,20,13,33,33,33xm102,-31v21,0,37,-16,37,-38v0,-22,-16,-37,-37,-37v-21,0,-36,15,-36,37v0,22,15,38,36,38"},"9":{"d":"90,10r-33,-25r57,-73v-8,3,-16,6,-27,6v-39,0,-75,-28,-75,-78v0,-42,27,-86,91,-86v61,0,91,39,91,83v0,31,-16,54,-31,75xm103,-208v-25,0,-45,18,-45,44v0,26,20,44,45,44v25,0,44,-18,44,-44v0,-26,-19,-44,-44,-44"},":":{"d":"17,-133v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28xm17,-23v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28","w":90},";":{"d":"30,-133v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28xm1,47r39,-97r40,5r-51,95","w":118},"<":{"d":"58,-120r110,54r0,43r-156,-79r0,-37r156,-78r0,43","w":180},"=":{"d":"12,-134r0,-38r156,0r0,38r-156,0xm12,-72r0,-38r156,0r0,38r-156,0","w":180},">":{"d":"122,-120r-110,-54r0,-43r156,78r0,37r-156,79r0,-43","w":180},"?":{"d":"102,-73r-45,0r0,-71v5,1,9,2,13,2v34,0,44,-21,44,-36v0,-16,-10,-29,-27,-29v-25,0,-25,25,-25,28r0,2r-47,0r0,-2v0,-43,33,-67,73,-67v43,0,73,27,73,68v0,33,-21,61,-59,67r0,38xm51,-23v0,-16,13,-28,29,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-29,-12,-29,-28","w":176},"@":{"d":"168,-162r3,-15r31,0r-15,73v-1,4,-1,8,-1,12v0,10,5,12,9,12v6,0,13,-6,17,-11v8,-11,14,-28,14,-45v0,-39,-26,-81,-86,-81v-66,0,-99,53,-99,99v0,39,22,76,58,89v15,5,31,6,40,6v20,0,43,-3,68,-12r6,28v-27,9,-51,11,-72,11v-28,0,-62,-4,-91,-31v-27,-24,-38,-60,-38,-91v0,-75,56,-126,128,-126v75,0,112,51,112,105v0,50,-29,84,-59,84v-13,0,-25,-7,-28,-20v-11,15,-26,23,-44,23v-27,0,-51,-20,-51,-57v0,-48,34,-72,63,-72v13,0,27,5,35,19xm129,-83v15,0,32,-16,32,-40v0,-14,-8,-26,-24,-26v-18,0,-33,17,-33,39v0,19,13,27,25,27","w":264},"A":{"d":"191,0r-21,-50r-97,0r-22,50r-50,0r104,-245r35,0r101,245r-50,0xm87,-89r69,0r-34,-86","w":241},"B":{"d":"27,-240r60,0v13,0,39,0,58,15v14,11,23,30,23,50v0,31,-21,43,-27,47v16,3,25,9,31,15v14,14,17,32,17,45v0,14,-3,34,-20,49v-18,16,-40,19,-61,19r-81,0r0,-240xm74,-202r0,62r13,0v7,0,37,-1,37,-32v0,-22,-17,-30,-36,-30r-14,0xm74,-104r0,66r20,0v9,0,22,-1,32,-7v12,-7,15,-18,15,-27v0,-8,-3,-21,-18,-28v-10,-5,-22,-4,-32,-4r-17,0","w":205},"C":{"d":"202,-63r0,54v-14,8,-34,14,-60,14v-42,0,-68,-14,-88,-33v-28,-27,-38,-57,-38,-92v0,-44,17,-75,38,-94v24,-23,55,-32,89,-32v17,0,37,3,59,15r0,55v-22,-25,-49,-27,-58,-27v-48,0,-80,40,-80,84v0,53,41,82,81,82v22,0,43,-9,57,-26","w":217},"D":{"d":"27,-240r63,0v33,0,62,3,89,23v29,22,46,57,46,97v0,40,-16,75,-48,97v-28,20,-55,23,-88,23r-62,0r0,-240xm74,-200r0,160r15,0v12,0,37,-1,58,-16v19,-14,30,-38,30,-64v0,-25,-10,-50,-29,-64v-19,-14,-43,-16,-59,-16r-15,0","w":241},"E":{"d":"161,-240r0,40r-87,0r0,54r83,0r0,40r-83,0r0,66r87,0r0,40r-134,0r0,-240r134,0","w":178},"F":{"d":"155,-240r0,40r-81,0r0,54r76,0r0,40r-76,0r0,106r-47,0r0,-240r128,0","w":167},"G":{"d":"149,-88r0,-41r110,0r0,7v0,27,-4,55,-22,81v-28,41,-69,46,-95,46v-74,0,-126,-50,-126,-125v0,-75,53,-126,127,-126v68,0,95,44,103,57r-40,22v-5,-9,-23,-36,-63,-36v-48,0,-79,38,-79,84v0,37,22,82,79,82v33,0,63,-14,68,-51r-62,0","w":275},"H":{"d":"74,-240r0,93r102,0r0,-93r46,0r0,240r-46,0r0,-107r-102,0r0,107r-47,0r0,-240r47,0","w":249},"I":{"d":"27,-240r47,0r0,240r-47,0r0,-240","w":101},"J":{"d":"66,-240r47,0r0,162v0,21,-1,55,-28,73v-10,7,-25,10,-39,10v-17,0,-38,-5,-55,-22r28,-34v5,7,12,13,23,13v10,0,16,-4,19,-8v6,-8,5,-24,5,-39r0,-155","w":140},"K":{"d":"74,-240r0,101r88,-101r59,0r-101,111r107,129r-62,0r-85,-108r-6,6r0,102r-47,0r0,-240r47,0","w":228},"L":{"d":"27,-240r47,0r0,200r74,0r0,40r-121,0r0,-240","w":153},"M":{"d":"15,0r45,-244r32,0r65,157r68,-157r33,0r40,244r-47,0r-22,-148r-66,151r-13,0r-63,-151r-24,148r-48,0","w":313},"N":{"d":"74,0r-47,0r0,-246r33,0r146,168r0,-162r47,0r0,245r-33,0r-146,-167r0,162","w":280},"O":{"d":"144,-246v76,0,128,53,128,126v0,73,-52,125,-128,125v-76,0,-128,-52,-128,-125v0,-73,52,-126,128,-126xm144,-37v47,0,80,-34,80,-83v0,-49,-33,-83,-80,-83v-47,0,-80,34,-80,83v0,49,33,83,80,83","w":288},"P":{"d":"27,-240r70,0v27,0,46,3,64,18v19,17,24,41,24,58v0,9,-2,36,-20,54v-13,13,-33,21,-61,21r-30,0r0,89r-47,0r0,-240xm74,-200r0,71r19,0v9,0,21,0,31,-8v9,-7,13,-18,13,-28v0,-13,-7,-22,-14,-27v-10,-7,-22,-8,-33,-8r-16,0","w":192},"Q":{"d":"232,9r-20,-21v-21,13,-41,17,-68,17v-76,0,-128,-52,-128,-125v0,-73,52,-126,128,-126v76,0,128,53,128,126v0,45,-19,71,-32,85r39,40xm180,-96r28,28v8,-10,16,-25,16,-52v0,-49,-33,-83,-80,-83v-47,0,-80,34,-80,83v0,48,33,83,81,83v16,0,27,-4,36,-8r-49,-48","w":288},"R":{"d":"27,-240r70,0v33,0,50,9,61,18v18,15,24,36,24,54v0,23,-9,43,-28,56v-6,4,-15,9,-27,11r75,101r-58,0r-64,-96r-6,0r0,96r-47,0r0,-240xm74,-202r0,72r13,0v9,0,47,-1,47,-36v0,-36,-37,-36,-46,-36r-14,0","w":206},"S":{"d":"170,-217r-25,32v-14,-19,-30,-21,-39,-21v-25,0,-33,16,-33,28v0,6,2,11,8,16v6,5,13,9,28,14v19,6,37,13,49,24v11,10,21,27,21,51v0,47,-34,78,-84,78v-44,0,-70,-27,-83,-45r31,-29v12,23,33,32,50,32v21,0,37,-13,37,-33v0,-9,-3,-16,-9,-22v-9,-8,-23,-12,-37,-17v-13,-4,-28,-10,-40,-21v-8,-7,-19,-21,-19,-45v0,-35,24,-71,77,-71v15,0,44,4,68,29","w":192},"T":{"d":"157,-200r-54,0r0,200r-47,0r0,-200r-54,0r0,-40r155,0r0,40","w":159},"U":{"d":"27,-240r47,0r0,151v0,18,7,29,12,35v7,8,19,17,38,17v19,0,31,-9,38,-17v5,-6,12,-17,12,-35r0,-151r46,0r0,147v0,23,-4,46,-18,64v-17,23,-47,34,-78,34v-31,0,-62,-11,-79,-34v-14,-18,-18,-41,-18,-64r0,-147","w":247},"V":{"d":"1,-240r51,0r64,161r64,-161r51,0r-103,245r-25,0","w":231},"W":{"d":"175,-152r-56,157r-33,0r-85,-245r49,0r54,163r59,-165r26,0r55,165r58,-163r49,0r-90,245r-33,0","w":352},"X":{"d":"3,0r85,-127r-72,-113r56,0r42,74r45,-74r56,0r-74,113r82,127r-56,0r-53,-88r-55,88r-56,0","w":230},"Y":{"d":"82,0r0,-110r-83,-130r56,0r51,83r52,-83r55,0r-84,130r0,110r-47,0","w":212},"Z":{"d":"202,-240r-116,200r111,0r0,40r-189,0r117,-200r-99,0r0,-40r176,0","w":210},"[":{"d":"108,-232r-34,0r0,252r34,0r0,38r-76,0r0,-328r76,0r0,38","w":126},"\\":{"d":"198,51r-32,15r-137,-318r31,-15","w":198},"]":{"d":"18,20r34,0r0,-252r-34,0r0,-38r76,0r0,328r-76,0r0,-38","w":126},"^":{"d":"90,-209r-41,87r-46,0r58,-119r58,0r58,119r-46,0","w":180},"_":{"d":"0,57r0,-38r180,0r0,38r-180,0","w":180},"`":{"d":"88,-184r-54,-48r32,-20r42,54","w":180},"a":{"d":"140,-136r0,-20r44,0r0,156r-44,0r0,-20v-16,23,-36,25,-47,25v-48,0,-80,-37,-80,-83v0,-46,31,-83,77,-83v12,0,35,2,50,25xm102,-122v-25,0,-44,19,-44,44v0,25,19,44,44,44v25,0,43,-19,43,-44v0,-25,-18,-44,-43,-44","w":205},"b":{"d":"65,-270r0,134v15,-22,38,-25,51,-25v46,0,76,36,76,83v0,48,-32,83,-78,83v-10,0,-32,-2,-49,-25r0,20r-44,0r0,-270r44,0xm104,-122v-25,0,-44,19,-44,44v0,25,19,44,44,44v25,0,43,-19,43,-44v0,-25,-18,-44,-43,-44","w":205},"c":{"d":"138,-152r0,44v-9,-9,-21,-14,-36,-14v-29,0,-44,21,-44,44v0,26,20,44,46,44v10,0,22,-3,34,-14r0,43v-9,4,-22,10,-40,10v-24,0,-46,-10,-60,-23v-12,-11,-25,-30,-25,-59v0,-27,11,-50,27,-64v19,-17,41,-20,56,-20v16,0,29,3,42,9","w":150},"d":{"d":"140,-136r0,-134r44,0r0,270r-44,0r0,-20v-16,23,-36,25,-47,25v-48,0,-80,-37,-80,-83v0,-46,31,-83,77,-83v12,0,35,2,50,25xm102,-122v-25,0,-44,19,-44,44v0,25,19,44,44,44v25,0,43,-19,43,-44v0,-25,-18,-44,-43,-44","w":205},"e":{"d":"134,-50r40,6v-5,12,-23,49,-77,49v-25,0,-45,-7,-60,-22v-17,-16,-24,-37,-24,-61v0,-31,13,-50,24,-61v18,-18,39,-22,58,-22v32,0,50,13,61,26v17,20,19,44,19,61r0,3r-117,0v0,9,3,20,8,27v5,6,14,14,31,14v17,0,30,-7,37,-20xm60,-99r74,0v-4,-21,-22,-31,-38,-31v-16,0,-32,10,-36,31","w":187},"f":{"d":"106,-118r-40,0r0,118r-44,0r0,-118r-17,0r0,-38r17,0r0,-50v0,-14,1,-39,20,-55v9,-8,23,-13,39,-13v10,0,17,1,25,5r0,40v-6,-5,-12,-6,-20,-6v-6,0,-12,2,-16,8v-4,6,-4,14,-4,27r0,44r40,0r0,38","w":105},"g":{"d":"140,-136r0,-20r44,0r0,150v0,19,0,42,-18,63v-15,18,-38,27,-65,27v-44,0,-79,-25,-84,-66r47,0v3,18,18,28,37,28v38,0,39,-34,39,-43r0,-24v-15,23,-36,26,-48,26v-48,0,-79,-37,-79,-83v0,-44,29,-83,78,-83v29,0,43,16,49,25xm102,-122v-25,0,-44,19,-44,44v0,25,19,44,44,44v25,0,43,-19,43,-44v0,-25,-18,-44,-43,-44"},"h":{"d":"21,0r0,-270r44,0r0,134v8,-12,23,-25,48,-25v14,0,34,4,46,19v11,13,12,29,12,44r0,98r-44,0r0,-85v0,-9,0,-23,-8,-31v-7,-7,-16,-7,-20,-7v-12,0,-21,3,-27,13v-6,10,-7,21,-7,30r0,80r-44,0","w":192},"i":{"d":"21,-156r44,0r0,156r-44,0r0,-156xm17,-222v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,27,-26,27v-14,0,-26,-13,-26,-27","w":85},"j":{"d":"21,-156r44,0r0,240r-44,0r0,-240xm17,-222v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,27,-26,27v-14,0,-26,-13,-26,-27","w":85},"k":{"d":"21,-270r44,0r0,171r58,-57r57,0r-73,69r79,87r-59,0r-58,-67r-4,5r0,62r-44,0r0,-270","w":184},"l":{"d":"21,-270r44,0r0,270r-44,0r0,-270","w":85},"m":{"d":"21,0r0,-156r44,0r0,18v17,-21,37,-23,46,-23v33,0,46,21,50,29v8,-12,23,-29,50,-29v24,0,36,11,42,19v10,13,11,27,11,44r0,98r-44,0r0,-85v0,-18,-5,-27,-8,-31v-6,-7,-14,-7,-18,-7v-12,0,-19,5,-24,13v-6,9,-6,22,-6,30r0,80r-44,0r0,-85v0,-18,-4,-27,-7,-31v-6,-7,-14,-7,-18,-7v-12,0,-19,5,-24,13v-6,9,-6,22,-6,30r0,80r-44,0","w":284},"n":{"d":"21,0r0,-156r44,0r0,20v8,-12,23,-25,48,-25v14,0,34,4,46,19v11,13,12,29,12,44r0,98r-44,0r0,-85v0,-9,0,-23,-8,-31v-7,-7,-16,-7,-20,-7v-12,0,-21,3,-27,13v-6,10,-7,21,-7,30r0,80r-44,0","w":192},"o":{"d":"102,-161v30,0,50,10,63,22v15,14,27,35,27,61v0,25,-12,47,-27,61v-13,12,-33,22,-63,22v-30,0,-50,-10,-63,-22v-15,-14,-26,-36,-26,-61v0,-26,11,-47,26,-61v13,-12,33,-22,63,-22xm102,-34v26,0,44,-20,44,-44v0,-24,-19,-44,-44,-44v-25,0,-44,20,-44,44v0,24,18,44,44,44"},"p":{"d":"65,-20r0,104r-44,0r0,-240r44,0r0,20v15,-22,38,-25,51,-25v46,0,76,36,76,83v0,48,-32,83,-78,83v-10,0,-32,-2,-49,-25xm104,-122v-25,0,-44,19,-44,44v0,25,19,44,44,44v25,0,43,-19,43,-44v0,-25,-18,-44,-43,-44","w":205},"q":{"d":"140,-136r0,-20r44,0r0,240r-44,0r0,-104v-16,23,-36,25,-47,25v-48,0,-80,-37,-80,-83v0,-46,31,-83,77,-83v12,0,35,2,50,25xm102,-122v-25,0,-44,19,-44,44v0,25,19,44,44,44v25,0,43,-19,43,-44v0,-25,-18,-44,-43,-44","w":205},"r":{"d":"21,0r0,-156r44,0r0,24v7,-13,16,-20,19,-22v7,-4,16,-7,26,-7v8,0,14,2,19,4r-6,41v-6,-4,-11,-6,-20,-6v-8,0,-21,2,-30,13v-8,10,-8,23,-8,34r0,75r-44,0","w":129},"s":{"d":"127,-144r-21,25v-10,-10,-21,-10,-26,-10v-10,0,-17,4,-17,12v0,4,2,10,14,14r11,4v12,4,30,10,39,22v5,6,8,16,8,26v0,14,-4,27,-17,39v-13,12,-28,17,-47,17v-32,0,-50,-16,-60,-26r23,-27v9,10,21,18,34,18v12,0,22,-5,22,-16v0,-10,-8,-14,-14,-16r-10,-4v-11,-4,-24,-9,-33,-19v-7,-8,-12,-16,-12,-29v0,-15,7,-28,16,-36v12,-10,28,-11,41,-11v12,0,29,2,49,17","w":145},"t":{"d":"95,-118r-30,0r0,118r-44,0r0,-118r-17,0r0,-38r17,0r0,-53r44,0r0,53r30,0r0,38","w":97},"u":{"d":"21,-156r44,0r0,88v0,8,0,20,9,28v5,5,14,8,22,8v8,0,18,-3,23,-8v9,-8,9,-20,9,-28r0,-88r44,0r0,96v0,14,-2,32,-19,47v-14,13,-38,18,-57,18v-19,0,-42,-5,-56,-18v-17,-15,-19,-33,-19,-47r0,-96","w":192},"v":{"d":"1,-156r49,0r41,88r41,-88r49,0r-80,159r-20,0","w":181},"w":{"d":"143,-92r-42,95r-20,0r-80,-159r49,0r41,90r42,-94r19,0r42,94r41,-90r49,0r-80,159r-20,0","w":285},"x":{"d":"1,0r74,-85r-60,-71r56,0r31,40r33,-40r55,0r-61,71r74,85r-56,0r-45,-54r-45,54r-56,0","w":203},"y":{"d":"18,84r57,-107r-74,-133r51,0r48,89r43,-89r50,0r-126,240r-49,0","w":193},"z":{"d":"170,-156r-89,119r83,0r0,37r-160,0r89,-118r-75,0r0,-38r152,0","w":174},"{":{"d":"85,-86v17,11,21,21,21,45r0,51v0,5,0,12,5,17v6,6,19,5,27,5r6,0r0,37v-6,0,-15,1,-23,1v-15,0,-32,-1,-43,-10v-14,-11,-14,-27,-14,-41r0,-59v0,-8,-2,-16,-6,-21v-3,-4,-8,-6,-13,-7r0,-37v5,-1,10,-3,13,-7v4,-5,6,-13,6,-21r0,-59v0,-14,0,-30,14,-41v11,-9,28,-10,43,-10v8,0,17,1,23,1r0,37r-6,0v-8,0,-21,0,-27,6v-5,5,-5,11,-5,16r0,52v0,24,-4,34,-21,45","w":180},"|":{"d":"68,90r0,-360r44,0r0,360r-44,0","w":180},"}":{"d":"95,-86v-17,-11,-21,-21,-21,-45r0,-52v0,-5,0,-11,-5,-16v-6,-6,-19,-6,-27,-6r-6,0r0,-37v6,0,15,-1,23,-1v15,0,32,1,43,10v14,11,14,27,14,41r0,59v0,8,2,16,6,21v3,4,8,6,13,7r0,37v-5,1,-10,3,-13,7v-4,5,-6,13,-6,21r0,59v0,14,0,30,-14,41v-11,9,-28,10,-43,10v-8,0,-17,-1,-23,-1r0,-37r6,0v8,0,21,1,27,-5v5,-5,5,-12,5,-17r0,-51v0,-24,4,-34,21,-45","w":180},"~":{"d":"183,-268r25,14v-7,17,-18,34,-33,42v-9,5,-16,5,-21,5v-14,0,-22,-3,-38,-9v-17,-6,-25,-9,-33,-9v-16,0,-23,17,-25,22r-26,-14v4,-12,15,-34,28,-43v8,-6,18,-7,26,-7v10,0,20,2,39,9v12,4,22,9,31,9v12,0,20,-6,27,-19","w":240},"\u0402":{"d":"179,-200r-80,0r0,56v14,-1,31,-3,46,-3v19,0,55,1,77,29v9,11,16,28,16,50v0,45,-31,72,-72,72v-19,0,-34,-5,-46,-11r12,-37v12,7,22,8,27,8v18,0,30,-13,30,-32v0,-11,-2,-21,-8,-27v-10,-11,-25,-12,-37,-12v-15,0,-31,2,-45,3r0,104r-46,0r0,-200r-51,0r0,-40r177,0r0,40","w":244},"\u201a":{"d":"15,47r38,-97r41,5r-51,95","w":133},"\u201e":{"d":"15,47r38,-97r41,5r-51,95xm83,47r38,-97r40,5r-50,95","w":205},"\u2026":{"d":"23,-23v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28xm124,-23v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28xm226,-23v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28","w":304},"\u2020":{"d":"81,-212r0,-58r42,0r0,58r57,0r0,37r-57,0r0,233r-42,0r0,-233r-57,0r0,-37r57,0"},"\u2021":{"d":"81,-212r0,-58r42,0r0,58r57,0r0,37r-57,0r0,77r57,0r0,38r-57,0r0,118r-42,0r0,-118r-57,0r0,-38r57,0r0,-77r-57,0r0,-37r57,0"},"\u02c6":{"d":"90,-217r-40,33r-21,-21r61,-50r61,50r-21,21","w":180},"\u2030":{"d":"71,-243v37,0,61,24,61,57v0,33,-24,57,-61,57v-37,0,-60,-24,-60,-57v0,-33,23,-57,60,-57xm71,-155v18,0,31,-13,31,-31v0,-18,-13,-31,-31,-31v-18,0,-30,13,-30,31v0,18,12,31,30,31xm58,-1r143,-247r19,11r-143,247xm207,-110v37,0,61,24,61,57v0,33,-24,57,-61,57v-37,0,-60,-24,-60,-57v0,-33,23,-57,60,-57xm207,-22v18,0,31,-13,31,-31v0,-18,-13,-31,-31,-31v-18,0,-30,13,-30,31v0,18,12,31,30,31xm350,-110v37,0,60,24,60,57v0,33,-23,57,-60,57v-37,0,-61,-24,-61,-57v0,-33,24,-57,61,-57xm350,-22v18,0,30,-13,30,-31v0,-18,-12,-31,-30,-31v-18,0,-30,13,-30,31v0,18,12,31,30,31","w":421},"\u0409":{"d":"50,-240r164,0r0,94r37,0v18,0,40,3,59,20v13,12,23,30,23,53v0,16,-5,31,-13,43v-18,26,-48,30,-68,30r-85,0r0,-200r-70,0r0,107v0,25,1,57,-26,79v-9,8,-25,16,-48,16v-7,0,-13,-1,-19,-2r0,-40v4,1,8,2,13,2v11,0,18,-5,22,-9v12,-12,11,-33,11,-56r0,-137xm214,-106r0,66r27,0v8,0,43,-1,43,-33v0,-15,-7,-33,-42,-33r-28,0","w":339},"\u040a":{"d":"74,-240r0,93r102,0r0,-93r46,0r0,94r38,0v18,0,40,3,59,20v13,12,22,30,22,53v0,16,-5,31,-13,43v-18,26,-48,30,-68,30r-84,0r0,-107r-102,0r0,107r-47,0r0,-240r47,0xm222,-106r0,66r28,0v8,0,43,-1,43,-33v0,-15,-7,-33,-42,-33r-29,0","w":348},"\u040b":{"d":"171,-200r-72,0r0,56v10,-1,31,-3,43,-3v39,0,57,11,64,16v21,16,24,38,24,57r0,74r-46,0r0,-66v0,-11,0,-24,-12,-33v-6,-5,-16,-8,-34,-8v-12,0,-26,1,-39,3r0,104r-46,0r0,-200r-51,0r0,-40r169,0r0,40","w":248},"\u040f":{"d":"27,0r0,-240r47,0r0,200r95,0r0,-200r47,0r0,240r-73,0r0,65r-43,0r0,-65r-73,0","w":243},"\u0452":{"d":"24,0r0,-205r-28,0r0,-28r28,0r0,-37r44,0r0,37r72,0r0,28r-72,0r0,69v8,-12,24,-25,49,-25v14,0,34,4,46,19v11,13,12,29,12,44r0,133v0,14,-3,31,-18,42v-9,6,-21,10,-35,10v-5,0,-17,0,-28,-3r0,-39v5,2,12,3,17,3v6,0,13,-2,17,-8v3,-5,3,-14,3,-22r0,-103v0,-9,0,-23,-8,-31v-7,-7,-17,-7,-21,-7v-12,0,-21,3,-27,13v-6,10,-7,21,-7,30r0,80r-44,0","w":195},"\u2018":{"d":"94,-241r-39,97r-40,-5r51,-95","w":109},"\u2019":{"d":"15,-148r38,-97r41,5r-51,95","w":133},"\u201c":{"d":"161,-241r-38,97r-40,-5r51,-95xm94,-241r-39,97r-40,-5r51,-95","w":177},"\u201d":{"d":"15,-148r38,-97r41,5r-51,95xm83,-148r38,-97r40,5r-50,95","w":205},"\u2022":{"d":"70,-122v0,-28,22,-51,50,-51v28,0,51,23,51,51v0,28,-23,50,-51,50v-28,0,-50,-22,-50,-50","w":240},"\u2013":{"d":"18,-64r0,-38r180,0r0,38r-180,0","w":216},"\u2014":{"d":"18,-64r0,-38r252,0r0,38r-252,0","w":288},"\u02dc":{"d":"130,-233r26,0v-1,6,-6,21,-14,31v-9,12,-20,15,-29,15v-9,0,-17,-4,-25,-7v-12,-4,-18,-8,-24,-8v-9,0,-13,8,-14,14r-26,0v1,-8,5,-17,9,-25v9,-16,21,-21,30,-21v9,0,20,5,29,8v13,5,18,6,23,6v8,0,12,-5,15,-13","w":180},"\u2122":{"d":"89,-213r-30,0r0,110r-30,0r0,-110r-30,0r0,-27r90,0r0,27xm124,-103r-30,0r24,-140r22,0r34,84r35,-84r22,0r22,140r-30,0r-11,-76r-32,77r-12,0r-32,-77","w":259},"\u0459":{"d":"159,-156r0,56r34,0v22,0,35,7,42,15v7,7,12,19,12,34v0,21,-9,33,-17,39v-12,10,-25,12,-35,12r-80,0r0,-118r-42,0r0,57v0,13,-2,32,-15,46v-3,4,-16,16,-42,16v-4,0,-9,0,-13,-1r0,-37r7,0v10,0,15,-3,18,-7v5,-6,5,-14,5,-20r0,-92r126,0xm159,-35r21,0v5,0,11,0,16,-4v3,-2,6,-6,6,-12v0,-6,-3,-9,-6,-11v-5,-3,-11,-4,-15,-4r-22,0r0,31","w":256},"\u045a":{"d":"21,0r0,-156r44,0r0,55r61,0r0,-55r44,0r0,56r34,0v22,0,35,7,42,15v7,7,12,19,12,34v0,21,-9,33,-17,39v-12,10,-25,12,-35,12r-80,0r0,-63r-61,0r0,63r-44,0xm170,-35r20,0v5,0,12,0,17,-4v3,-2,5,-6,5,-12v0,-6,-2,-9,-5,-11v-5,-3,-11,-4,-15,-4r-22,0r0,31","w":267},"\u045b":{"d":"24,0r0,-205r-28,0r0,-28r28,0r0,-37r44,0r0,37r72,0r0,28r-72,0r0,69v8,-12,24,-25,49,-25v14,0,34,4,46,19v11,13,12,29,12,44r0,98r-44,0r0,-85v0,-9,0,-23,-8,-31v-7,-7,-17,-7,-21,-7v-12,0,-21,3,-27,13v-6,10,-7,21,-7,30r0,80r-44,0","w":195},"\u045f":{"d":"21,0r0,-156r44,0r0,119r58,0r0,-119r44,0r0,156r-53,0r0,58r-40,0r0,-58r-53,0","w":187},"\u0408":{"d":"66,-240r47,0r0,162v0,21,-1,55,-28,73v-10,7,-25,10,-39,10v-17,0,-38,-5,-55,-22r28,-34v5,7,12,13,23,13v10,0,16,-4,19,-8v6,-8,5,-24,5,-39r0,-155","w":140},"\u00a4":{"d":"32,-246r37,38v18,-14,36,-17,51,-17v15,0,33,3,51,17r37,-38r24,24r-37,37v14,18,16,36,16,50v0,14,-2,32,-16,50r37,37r-24,24r-37,-37v-18,14,-36,16,-51,16v-15,0,-33,-2,-51,-16r-37,37r-23,-24r37,-37v-14,-18,-16,-36,-16,-50v0,-14,2,-32,16,-50r-37,-37xm120,-84v30,0,51,-22,51,-51v0,-29,-21,-51,-51,-51v-30,0,-50,22,-50,51v0,29,20,51,50,51","w":240},"\u0490":{"d":"27,0r0,-240r99,0r0,-54r43,0r0,94r-95,0r0,200r-47,0","w":171},"\u00a6":{"d":"68,-140r0,-130r44,0r0,130r-44,0xm68,90r0,-130r44,0r0,130r-44,0","w":180},"\u00a7":{"d":"68,-165v-21,-9,-32,-28,-32,-50v0,-35,27,-58,68,-58v27,0,47,11,58,30v5,10,9,21,9,35r-44,0v2,-17,-9,-29,-24,-29v-13,0,-25,8,-25,24v0,13,4,18,38,32v15,6,34,14,46,27v12,13,16,29,16,43v0,5,0,44,-42,61v8,3,33,16,33,48v0,32,-24,63,-69,63v-40,0,-68,-26,-68,-68r44,0v0,17,10,31,26,31v14,0,24,-11,24,-26v0,-20,-16,-27,-36,-34v-16,-6,-32,-10,-46,-24v-14,-15,-18,-33,-18,-46v0,-24,11,-51,42,-59xm102,-76v14,0,30,-11,30,-32v0,-21,-16,-31,-30,-31v-14,0,-30,10,-30,31v0,21,16,32,30,32"},"\u0401":{"d":"161,-240r0,40r-87,0r0,54r83,0r0,40r-83,0r0,66r87,0r0,40r-134,0r0,-240r134,0xm27,-292v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26xm108,-292v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26","w":178},"\u00a9":{"d":"137,-246v70,0,125,54,125,126v0,72,-56,125,-125,125v-69,0,-125,-53,-125,-125v0,-72,55,-126,125,-126xm137,-223v-56,0,-100,46,-100,103v0,57,44,103,100,103v56,0,100,-46,100,-103v0,-57,-44,-103,-100,-103xm184,-186r0,39r-4,-3v-7,-7,-18,-16,-34,-16v-27,0,-46,20,-46,46v0,27,19,46,47,46v8,0,20,-2,33,-15r4,-4r0,39v-7,4,-20,9,-39,9v-45,0,-79,-32,-79,-74v0,-36,26,-76,78,-76v19,0,33,5,40,9","w":273},"\u0404":{"d":"204,-63r0,54v-11,5,-32,14,-63,14v-41,0,-71,-14,-90,-33v-12,-12,-35,-41,-35,-92v0,-36,13,-72,36,-94v15,-15,43,-32,89,-32v18,0,40,3,63,15r0,55v-6,-7,-27,-27,-63,-27v-41,0,-70,28,-77,62r115,0r0,41r-115,0v8,42,45,63,80,63v33,0,51,-17,60,-26","w":219},"\u00ab":{"d":"53,-79r43,59r-25,18r-57,-77r57,-77r25,18xm123,-79r44,59r-25,18r-57,-77r57,-77r25,18","w":185},"\u00ac":{"d":"168,0r-44,0r0,-57r-112,0r0,-40r156,0r0,97","w":180},"\u00ae":{"d":"137,-246v70,0,125,54,125,126v0,72,-56,125,-125,125v-69,0,-125,-53,-125,-125v0,-72,55,-126,125,-126xm137,-223v-56,0,-100,46,-100,103v0,57,44,103,100,103v56,0,100,-46,100,-103v0,-57,-44,-103,-100,-103xm95,-183r40,0v30,0,44,20,44,38v0,17,-12,30,-29,34r38,49r-32,0r-34,-45r0,45r-27,0r0,-121xm122,-159r0,30r5,0v7,0,22,0,22,-15v0,-14,-13,-15,-22,-15r-5,0","w":273},"\u0407":{"d":"27,-240r47,0r0,240r-47,0r0,-240xm0,-294v0,-12,10,-21,22,-21v12,0,21,9,21,21v0,12,-9,22,-21,22v-12,0,-22,-10,-22,-22xm58,-294v0,-12,10,-21,22,-21v12,0,22,9,22,21v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":101},"\u00b0":{"d":"90,-238v31,0,55,22,55,54v0,32,-24,54,-55,54v-31,0,-55,-22,-55,-54v0,-32,24,-54,55,-54xm90,-212v-17,0,-28,11,-28,28v0,17,11,28,28,28v17,0,28,-11,28,-28v0,-17,-11,-28,-28,-28","w":180},"\u00b1":{"d":"12,-128r0,-40r56,0r0,-56r44,0r0,56r56,0r0,40r-56,0r0,56r-44,0r0,-56r-56,0xm12,-19r0,-40r156,0r0,40r-156,0","w":180},"\u0406":{"d":"27,-240r47,0r0,240r-47,0r0,-240","w":101},"\u0456":{"d":"21,-156r44,0r0,156r-44,0r0,-156xm17,-222v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,27,-26,27v-14,0,-26,-13,-26,-27","w":85},"\u0491":{"d":"21,0r0,-156r74,0r0,-45r40,0r0,83r-70,0r0,118r-44,0","w":136},"\u03bc":{"d":"65,62r-44,0r0,-218r44,0r0,75v0,12,2,51,37,51v34,0,35,-38,35,-52r0,-74r44,0r0,156r-44,0r0,-22v-5,14,-19,27,-37,27v-17,0,-29,-11,-35,-24r0,81","w":201},"\u00b6":{"d":"116,33r-38,0r0,-148r-4,0v-38,0,-65,-24,-65,-61v0,-18,7,-43,34,-56v17,-8,33,-8,49,-8r118,0r0,34r-26,0r0,239r-37,0r0,-239r-31,0r0,239","w":235},"\u00b7":{"d":"3,-103v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,33,-33,33v-18,0,-33,-15,-33,-33","w":72},"\u0451":{"d":"134,-50r40,6v-5,12,-23,49,-77,49v-25,0,-45,-7,-60,-22v-17,-16,-24,-37,-24,-61v0,-31,13,-50,24,-61v18,-18,39,-22,58,-22v32,0,50,13,61,26v17,20,19,44,19,61r0,3r-117,0v0,9,3,20,8,27v5,6,14,14,31,14v17,0,30,-7,37,-20xm60,-99r74,0v-4,-21,-22,-31,-38,-31v-16,0,-32,10,-36,31xm32,-211v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26xm107,-211v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26","w":187},"\u2116":{"d":"74,0r-47,0r0,-240r47,0r110,162r0,-162r47,0r0,240r-47,0r-110,-162r0,162xm313,-240v37,0,61,24,61,57v0,33,-24,57,-61,57v-37,0,-60,-24,-60,-57v0,-33,23,-57,60,-57xm313,-214v-18,0,-30,13,-30,31v0,18,12,31,30,31v18,0,30,-13,30,-31v0,-18,-12,-31,-30,-31xm260,-71r0,-31r106,0r0,31r-106,0","w":388},"\u0454":{"d":"144,-45r0,43v-15,6,-35,7,-42,7v-22,0,-47,-6,-64,-21v-17,-15,-25,-39,-25,-61v0,-27,11,-46,24,-59v12,-12,33,-25,64,-25v23,0,36,7,42,11r0,38v-13,-10,-27,-14,-40,-14v-13,0,-23,4,-30,10v-6,5,-12,12,-15,22r69,0r0,32r-69,0v1,11,8,20,15,24v11,7,26,7,33,7v17,0,29,-5,38,-14","w":156},"\u00bb":{"d":"62,-79r-44,-59r25,-18r57,77r-57,77r-25,-18xm132,-79r-43,-59r25,-18r57,77r-57,77r-25,-18","w":185},"\u0458":{"d":"21,-156r44,0r0,240r-44,0r0,-240xm17,-222v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,27,-26,27v-14,0,-26,-13,-26,-27","w":85},"\u0405":{"d":"170,-217r-25,32v-14,-19,-30,-21,-39,-21v-25,0,-33,16,-33,28v0,6,2,11,8,16v6,5,13,9,28,14v19,6,37,13,49,24v11,10,21,27,21,51v0,47,-34,78,-84,78v-44,0,-70,-27,-83,-45r31,-29v12,23,33,32,50,32v21,0,37,-13,37,-33v0,-9,-3,-16,-9,-22v-9,-8,-23,-12,-37,-17v-13,-4,-28,-10,-40,-21v-8,-7,-19,-21,-19,-45v0,-35,24,-71,77,-71v15,0,44,4,68,29","w":192},"\u0455":{"d":"127,-144r-21,25v-10,-10,-21,-10,-26,-10v-10,0,-17,4,-17,12v0,4,2,10,14,14r11,4v12,4,30,10,39,22v5,6,8,16,8,26v0,14,-4,27,-17,39v-13,12,-28,17,-47,17v-32,0,-50,-16,-60,-26r23,-27v9,10,21,18,34,18v12,0,22,-5,22,-16v0,-10,-8,-14,-14,-16r-10,-4v-11,-4,-24,-9,-33,-19v-7,-8,-12,-16,-12,-29v0,-15,7,-28,16,-36v12,-10,28,-11,41,-11v12,0,29,2,49,17","w":145},"\u0457":{"d":"21,-156r44,0r0,156r-44,0r0,-156xm0,-211v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,19,-20,19v-11,0,-19,-8,-19,-19xm47,-211v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,19,-19,19v-11,0,-20,-8,-20,-19","w":85},"\u0410":{"d":"191,0r-21,-50r-97,0r-22,50r-50,0r104,-245r35,0r101,245r-50,0xm87,-89r69,0r-34,-86","w":241},"\u0411":{"d":"27,0r0,-240r139,0r0,40r-92,0r0,55r33,0v18,0,41,3,60,20v14,12,22,30,22,53v0,16,-5,31,-13,43v-18,26,-48,29,-69,29r-80,0xm74,-104r0,64r22,0v37,0,45,-18,45,-32v0,-15,-8,-32,-44,-32r-23,0","w":205},"\u0412":{"d":"27,-240r60,0v13,0,39,0,58,15v14,11,23,30,23,50v0,31,-21,43,-27,47v16,3,25,9,31,15v14,14,17,32,17,45v0,14,-3,34,-20,49v-18,16,-40,19,-61,19r-81,0r0,-240xm74,-202r0,62r13,0v7,0,37,-1,37,-32v0,-22,-17,-30,-36,-30r-14,0xm74,-104r0,66r20,0v9,0,22,-1,32,-7v12,-7,15,-18,15,-27v0,-8,-3,-21,-18,-28v-10,-5,-22,-4,-32,-4r-17,0","w":205},"\u0413":{"d":"155,-240r0,40r-81,0r0,200r-47,0r0,-240r128,0","w":156},"\u0414":{"d":"50,-240r162,0r0,200r26,0r0,94r-44,0r0,-54r-147,0r0,54r-43,0r0,-94v17,1,31,-15,38,-33v5,-12,8,-30,8,-63r0,-104xm96,-200r0,64v0,37,-5,55,-9,67v-5,13,-11,23,-18,29r97,0r0,-160r-70,0","w":241},"\u0415":{"d":"161,-240r0,40r-87,0r0,54r83,0r0,40r-83,0r0,66r87,0r0,40r-134,0r0,-240r134,0","w":178},"\u0416":{"d":"139,-240r44,0r0,101r80,-101r53,0r-91,111r95,129r-54,0r-77,-108r-6,6r0,102r-44,0r0,-102r-6,-6r-77,108r-54,0r95,-129r-92,-111r54,0r80,101r0,-101","w":321},"\u0417":{"d":"57,-185r-25,-32v21,-19,44,-29,74,-29v49,0,79,25,79,63v0,21,-10,40,-29,51v30,8,44,33,44,62v0,46,-40,75,-95,75v-42,0,-74,-17,-91,-45r31,-29v12,26,38,36,61,36v32,0,46,-18,46,-36v0,-33,-34,-37,-53,-37r-21,0r0,-40r21,0v24,0,40,-12,40,-31v0,-17,-11,-27,-34,-27v-12,0,-33,2,-48,19","w":216},"\u0418":{"d":"27,-240r47,0r0,161r133,-167r32,0r0,246r-47,0r0,-162r-132,167r-33,0r0,-245","w":266},"\u0419":{"d":"27,-240r47,0r0,161r133,-167r32,0r0,246r-47,0r0,-162r-132,167r-33,0r0,-245xm68,-304r33,-13v8,20,27,21,32,21v5,0,25,-1,33,-21r32,13v-9,24,-32,40,-65,40v-33,0,-56,-16,-65,-40","w":266},"\u041a":{"d":"74,-240r0,101r88,-101r59,0r-101,111r107,129r-62,0r-85,-108r-6,6r0,102r-47,0r0,-240r47,0","w":228},"\u041b":{"d":"50,-240r164,0r0,240r-47,0r0,-200r-70,0r0,107v0,25,1,57,-26,79v-9,8,-25,16,-48,16v-7,0,-13,-1,-19,-2r0,-40v4,1,8,2,13,2v11,0,18,-5,22,-9v12,-12,11,-33,11,-56r0,-137","w":241},"\u041c":{"d":"15,0r45,-244r32,0r65,157r68,-157r33,0r40,244r-47,0r-22,-148r-66,151r-13,0r-63,-151r-24,148r-48,0","w":313},"\u041d":{"d":"74,-240r0,93r102,0r0,-93r46,0r0,240r-46,0r0,-107r-102,0r0,107r-47,0r0,-240r47,0","w":249},"\u041e":{"d":"144,-246v76,0,128,53,128,126v0,73,-52,125,-128,125v-76,0,-128,-52,-128,-125v0,-73,52,-126,128,-126xm144,-37v47,0,80,-34,80,-83v0,-49,-33,-83,-80,-83v-47,0,-80,34,-80,83v0,49,33,83,80,83","w":288},"\u041f":{"d":"27,-240r190,0r0,240r-46,0r0,-200r-97,0r0,200r-47,0r0,-240","w":244},"\u0420":{"d":"27,-240r70,0v27,0,46,3,64,18v19,17,24,41,24,58v0,9,-2,36,-20,54v-13,13,-33,21,-61,21r-30,0r0,89r-47,0r0,-240xm74,-200r0,71r19,0v9,0,21,0,31,-8v9,-7,13,-18,13,-28v0,-13,-7,-22,-14,-27v-10,-7,-22,-8,-33,-8r-16,0","w":192},"\u0421":{"d":"202,-63r0,54v-14,8,-34,14,-60,14v-42,0,-68,-14,-88,-33v-28,-27,-38,-57,-38,-92v0,-44,17,-75,38,-94v24,-23,55,-32,89,-32v17,0,37,3,59,15r0,55v-22,-25,-49,-27,-58,-27v-48,0,-80,40,-80,84v0,53,41,82,81,82v22,0,43,-9,57,-26","w":217},"\u0422":{"d":"157,-200r-54,0r0,200r-47,0r0,-200r-54,0r0,-40r155,0r0,40","w":159},"\u0423":{"d":"1,-240r54,0r61,121r52,-121r51,0r-111,240r-51,0r33,-67","w":219},"\u0424":{"d":"126,0r0,-33r-6,0v-17,0,-45,-2,-68,-18v-17,-12,-36,-35,-36,-76v0,-41,19,-65,36,-77v23,-16,51,-18,68,-18r6,0r0,-28r47,0r0,28r6,0v17,0,45,2,68,18v17,12,36,36,36,77v0,41,-19,64,-36,76v-23,16,-51,18,-68,18r-6,0r0,33r-47,0xm126,-73r0,-108r-7,0v-7,0,-22,1,-35,10v-9,6,-20,20,-20,44v0,24,11,36,20,43v12,9,23,11,35,11r7,0xm173,-181r0,108r7,0v11,0,24,-2,36,-11v8,-6,19,-19,19,-43v0,-21,-8,-36,-19,-44v-8,-6,-21,-10,-36,-10r-7,0","w":298},"\u0425":{"d":"3,0r85,-127r-72,-113r56,0r42,74r45,-74r56,0r-74,113r82,127r-56,0r-53,-88r-55,88r-56,0","w":230},"\u0426":{"d":"27,0r0,-240r47,0r0,200r95,0r0,-200r47,0r0,200r29,0r0,94r-43,0r0,-54r-175,0","w":248},"\u0427":{"d":"149,0r0,-96v-10,1,-31,3,-43,3v-39,0,-57,-11,-64,-16v-21,-16,-24,-38,-24,-57r0,-74r47,0r0,65v0,11,0,25,12,34v6,5,16,7,34,7v12,0,25,0,38,-2r0,-104r47,0r0,240r-47,0","w":223},"\u0428":{"d":"27,0r0,-240r47,0r0,200r77,0r0,-200r47,0r0,200r77,0r0,-200r47,0r0,240r-295,0","w":349},"\u0429":{"d":"27,0r0,-240r47,0r0,200r77,0r0,-200r47,0r0,200r77,0r0,-200r47,0r0,200r29,0r0,94r-44,0r0,-54r-280,0","w":354},"\u042a":{"d":"53,0r0,-200r-51,0r0,-40r97,0r0,94r38,0v18,0,40,3,59,20v13,12,22,30,22,53v0,16,-5,31,-13,43v-18,26,-48,30,-68,30r-84,0xm99,-106r0,66r28,0v8,0,43,-1,43,-33v0,-15,-8,-33,-43,-33r-28,0","w":225},"\u042b":{"d":"27,0r0,-240r47,0r0,94r38,0v18,0,40,3,59,20v13,12,22,30,22,53v0,16,-5,31,-13,43v-18,26,-48,30,-68,30r-85,0xm74,-106r0,66r28,0v8,0,43,-1,43,-33v0,-15,-8,-33,-43,-33r-28,0xm214,-240r47,0r0,240r-47,0r0,-240","w":288},"\u042c":{"d":"27,0r0,-240r47,0r0,94r38,0v18,0,40,3,59,20v13,12,22,30,22,53v0,16,-5,31,-13,43v-18,26,-48,30,-68,30r-85,0xm74,-106r0,66r28,0v8,0,43,-1,43,-33v0,-15,-8,-33,-43,-33r-28,0","w":200},"\u042d":{"d":"16,-9r0,-54v19,19,42,26,63,26v35,0,70,-21,77,-63r-108,0r0,-41r107,0v-7,-41,-41,-62,-74,-62v-17,0,-43,5,-65,27r0,-55v23,-12,44,-15,62,-15v46,0,75,17,90,32v23,22,36,58,36,94v0,51,-24,80,-36,92v-19,19,-48,33,-89,33v-31,0,-52,-9,-63,-14","w":219},"\u042e":{"d":"74,-147r33,0v5,-32,22,-52,31,-62v22,-24,52,-37,92,-37v74,0,124,53,124,126v0,73,-50,125,-124,125v-39,0,-68,-13,-88,-32v-12,-12,-33,-38,-36,-80r-32,0r0,107r-47,0r0,-240r47,0r0,93xm230,-37v45,0,75,-34,75,-83v0,-58,-39,-83,-75,-83v-36,0,-76,25,-76,83v0,49,31,83,76,83","w":369},"\u042f":{"d":"177,-240r0,240r-47,0r0,-93r-8,0r-62,93r-56,0r72,-97v-9,-1,-19,-6,-27,-11v-14,-10,-27,-30,-27,-58v0,-26,11,-45,24,-56v19,-17,42,-18,62,-18r69,0xm130,-202r-14,0v-9,0,-45,0,-45,36v0,36,37,36,46,36r13,0r0,-72"},"\u0430":{"d":"140,-136r0,-20r44,0r0,156r-44,0r0,-20v-16,23,-36,25,-47,25v-48,0,-80,-37,-80,-83v0,-46,31,-83,77,-83v12,0,35,2,50,25xm102,-122v-25,0,-44,19,-44,44v0,25,19,44,44,44v25,0,43,-19,43,-44v0,-25,-18,-44,-43,-44","w":205},"\u0431":{"d":"145,-259r41,0v-6,39,-33,51,-51,56v-31,9,-49,8,-65,28v-7,9,-12,21,-13,35r0,0v12,-15,36,-21,55,-21v23,0,43,7,58,22v9,8,24,28,24,61v0,30,-13,49,-26,61v-17,16,-37,22,-62,22v-17,0,-42,-2,-62,-20v-26,-23,-28,-57,-28,-79v0,-60,12,-89,24,-105v20,-28,49,-35,70,-39v23,-5,31,-10,35,-21xm105,-34v26,0,44,-20,44,-44v0,-25,-18,-44,-44,-44v-26,0,-44,19,-44,44v0,24,18,44,44,44","w":207},"\u0432":{"d":"21,-156r69,0v10,0,25,0,37,9v9,7,15,18,15,31v0,13,-8,26,-22,32v7,1,15,5,21,10v7,6,12,15,12,29v0,18,-9,29,-17,35v-13,9,-28,10,-35,10r-80,0r0,-156xm65,-94r20,0v1,0,6,0,11,-3v4,-3,6,-6,6,-11v0,-6,-2,-9,-5,-11v-4,-3,-9,-2,-13,-2r-19,0r0,27xm65,-35r20,0v5,0,12,0,17,-4v3,-2,5,-6,5,-12v0,-6,-2,-9,-5,-11v-5,-3,-12,-4,-16,-4r-21,0r0,31","w":164},"\u0433":{"d":"21,0r0,-156r99,0r0,38r-55,0r0,118r-44,0","w":122},"\u0434":{"d":"35,-156r130,0r0,119r23,0r0,82r-40,0r0,-45r-107,0r0,45r-40,0r0,-82v14,-1,23,-11,28,-20v4,-9,6,-22,6,-40r0,-59xm121,-37r0,-81r-46,0r0,34v0,20,-4,36,-17,47r63,0","w":190},"\u0435":{"d":"134,-50r40,6v-5,12,-23,49,-77,49v-25,0,-45,-7,-60,-22v-17,-16,-24,-37,-24,-61v0,-31,13,-50,24,-61v18,-18,39,-22,58,-22v32,0,50,13,61,26v17,20,19,44,19,61r0,3r-117,0v0,9,3,20,8,27v5,6,14,14,31,14v17,0,30,-7,37,-20xm60,-99r74,0v-4,-21,-22,-31,-38,-31v-16,0,-32,10,-36,31","w":187},"\u0436":{"d":"100,-156r40,0r0,61r47,-61r51,0r-59,71r62,85r-53,0r-42,-61r-6,6r0,55r-40,0r0,-55r-5,-6r-42,61r-54,0r63,-85r-59,-71r51,0r46,61r0,-61","w":240},"\u0437":{"d":"37,-114r-20,-27v18,-14,37,-20,59,-20v13,0,29,3,41,11v8,5,18,16,18,33v0,20,-15,29,-22,33v8,2,16,6,21,11v7,6,11,15,11,28v0,18,-10,30,-18,36v-13,10,-34,14,-51,14v-19,0,-46,-4,-67,-26r22,-27v13,12,30,17,42,17v22,0,27,-11,27,-18v0,-5,-2,-10,-8,-13v-5,-3,-12,-2,-19,-2r-18,0r0,-32r17,0v6,0,14,-1,18,-4v5,-3,5,-8,5,-11v0,-8,-6,-15,-24,-15v-14,0,-25,4,-34,12","w":158},"\u0438":{"d":"21,-156r44,0r0,96r72,-96r44,0r0,156r-44,0r0,-96r-72,96r-44,0r0,-156","w":201},"\u0439":{"d":"21,-156r44,0r0,96r72,-96r44,0r0,156r-44,0r0,-96r-72,96r-44,0r0,-156xm131,-234r29,14v-10,30,-40,37,-59,37v-19,0,-49,-7,-59,-37r29,-14v3,13,15,23,30,23v13,0,26,-8,30,-23","w":201},"\u043a":{"d":"21,-156r44,0r0,61r58,-61r55,0r-71,70r74,86r-56,0r-54,-64r-6,6r0,58r-44,0r0,-156","w":180},"\u043b":{"d":"159,-156r0,156r-44,0r0,-118r-42,0r0,57v0,13,-2,32,-15,46v-3,4,-16,16,-42,16v-4,0,-9,0,-13,-1r0,-37r7,0v10,0,15,-3,18,-7v5,-6,5,-14,5,-20r0,-92r126,0","w":180},"\u043c":{"d":"4,0r29,-160r32,0r43,94r43,-94r32,0r29,160r-44,0r-13,-85r-41,88r-12,0r-41,-88r-13,85r-44,0","w":216},"\u043d":{"d":"21,0r0,-156r44,0r0,55r61,0r0,-55r44,0r0,156r-44,0r0,-63r-61,0r0,63r-44,0","w":190},"\u043e":{"d":"102,-161v30,0,50,10,63,22v15,14,27,35,27,61v0,25,-12,47,-27,61v-13,12,-33,22,-63,22v-30,0,-50,-10,-63,-22v-15,-14,-26,-36,-26,-61v0,-26,11,-47,26,-61v13,-12,33,-22,63,-22xm102,-34v26,0,44,-20,44,-44v0,-24,-19,-44,-44,-44v-25,0,-44,20,-44,44v0,24,18,44,44,44"},"\u043f":{"d":"21,-156r147,0r0,156r-43,0r0,-118r-60,0r0,118r-44,0r0,-156","w":189},"\u0440":{"d":"65,-20r0,104r-44,0r0,-240r44,0r0,20v15,-22,38,-25,51,-25v46,0,76,36,76,83v0,48,-32,83,-78,83v-10,0,-32,-2,-49,-25xm104,-122v-25,0,-44,19,-44,44v0,25,19,44,44,44v25,0,43,-19,43,-44v0,-25,-18,-44,-43,-44","w":205},"\u0441":{"d":"138,-152r0,44v-9,-9,-21,-14,-36,-14v-29,0,-44,21,-44,44v0,26,20,44,46,44v10,0,22,-3,34,-14r0,43v-9,4,-22,10,-40,10v-24,0,-46,-10,-60,-23v-12,-11,-25,-30,-25,-59v0,-27,11,-50,27,-64v19,-17,41,-20,56,-20v16,0,29,3,42,9","w":150},"\u0442":{"d":"132,-118r-43,0r0,118r-44,0r0,-118r-43,0r0,-38r130,0r0,38","w":134},"\u0443":{"d":"18,84r57,-107r-74,-133r51,0r48,89r43,-89r50,0r-126,240r-49,0","w":193},"\u0444":{"d":"102,84r0,-82r-3,0v-18,0,-40,-4,-55,-15v-14,-10,-31,-30,-31,-65v0,-35,17,-55,31,-65v18,-13,40,-15,55,-15r3,0r0,-82r44,0r0,82r4,0v15,0,36,2,54,15v14,10,31,30,31,65v0,35,-17,55,-31,65v-15,11,-36,15,-54,15r-4,0r0,82r-44,0xm102,-37r0,-82v-9,0,-19,2,-27,7v-13,9,-17,22,-17,34v0,10,2,25,16,34v7,5,18,7,28,7xm146,-119r0,82v10,0,21,-2,28,-7v14,-9,16,-24,16,-34v0,-12,-3,-25,-16,-34v-8,-5,-19,-7,-28,-7","w":248},"\u0445":{"d":"1,0r74,-85r-60,-71r56,0r31,40r33,-40r55,0r-61,71r74,85r-56,0r-45,-54r-45,54r-56,0","w":203},"\u0446":{"d":"21,0r0,-156r44,0r0,119r58,0r0,-119r44,0r0,119r25,0r0,82r-39,0r0,-45r-132,0","w":195},"\u0447":{"d":"109,0r0,-53v-11,2,-23,3,-36,3v-12,0,-30,-1,-44,-14v-13,-12,-14,-25,-14,-37r0,-55r44,0r0,46v0,5,0,12,5,17v6,6,17,6,23,6v8,0,14,-1,22,-2r0,-67r44,0r0,156r-44,0","w":174},"\u0448":{"d":"21,0r0,-156r44,0r0,119r50,0r0,-119r44,0r0,119r51,0r0,-119r43,0r0,156r-232,0","w":274},"\u0449":{"d":"21,0r0,-156r44,0r0,119r50,0r0,-119r44,0r0,119r51,0r0,-119r43,0r0,119r26,0r0,82r-40,0r0,-45r-218,0","w":281},"\u044a":{"d":"2,-156r82,0r0,56r34,0v14,0,31,3,42,15v7,7,12,19,12,34v0,21,-8,33,-16,39v-12,10,-25,12,-35,12r-81,0r0,-118r-38,0r0,-38xm84,-35r21,0v5,0,11,0,16,-4v3,-2,6,-6,6,-12v0,-6,-3,-9,-6,-11v-5,-3,-11,-4,-15,-4r-22,0r0,31","w":181},"\u044b":{"d":"21,-156r44,0r0,56r34,0v14,0,31,3,42,15v7,7,12,19,12,34v0,21,-9,33,-17,39v-12,10,-25,12,-35,12r-80,0r0,-156xm65,-35r20,0v5,0,12,0,17,-4v3,-2,5,-6,5,-12v0,-6,-2,-9,-5,-11v-5,-3,-12,-4,-16,-4r-21,0r0,31xm169,-156r44,0r0,156r-44,0r0,-156","w":234},"\u044c":{"d":"21,-156r44,0r0,56r34,0v14,0,31,3,42,15v7,7,12,19,12,34v0,21,-9,33,-17,39v-12,10,-25,12,-35,12r-80,0r0,-156xm65,-35r20,0v5,0,12,0,17,-4v3,-2,5,-6,5,-12v0,-6,-2,-9,-5,-11v-5,-3,-12,-4,-16,-4r-21,0r0,31","w":162},"\u044d":{"d":"12,-3r0,-43v17,14,34,15,46,15v9,0,20,-1,28,-8v6,-6,11,-15,11,-24r-65,0r0,-32r65,0v-2,-12,-8,-19,-12,-22v-8,-7,-18,-9,-28,-9v-9,0,-27,1,-44,13r0,-38v19,-8,35,-10,47,-10v23,0,44,5,61,23v9,10,22,29,22,60v0,27,-10,48,-23,61v-13,13,-35,22,-60,22v-12,0,-33,-2,-48,-8","w":156},"\u044e":{"d":"65,-97r21,0v3,-19,13,-33,22,-42v16,-15,37,-22,61,-22v29,0,49,10,62,22v15,14,26,36,26,61v0,25,-11,47,-26,61v-10,9,-29,22,-62,22v-28,0,-48,-10,-61,-22v-8,-8,-19,-22,-22,-43r-21,0r0,60r-44,0r0,-156r44,0r0,59xm169,-34v25,0,43,-20,43,-44v0,-25,-18,-44,-43,-44v-25,0,-42,19,-42,44v0,24,17,44,42,44","w":270},"\u044f":{"d":"7,0r46,-58v-3,0,-15,-3,-25,-13v-6,-6,-12,-17,-12,-33v0,-19,10,-32,19,-39v15,-12,33,-13,48,-13r62,0r0,156r-44,0r0,-55r-5,0r-38,55r-51,0xm101,-86r0,-35r-19,0v-5,0,-10,0,-15,4v-4,4,-6,9,-6,14v0,5,1,9,6,13v5,4,10,4,15,4r19,0","w":165},"\u0403":{"d":"155,-240r0,40r-81,0r0,200r-47,0r0,-240r128,0xm92,-262r-20,-18r50,-51r33,25","w":156},"\u0453":{"d":"21,0r0,-156r99,0r0,38r-55,0r0,118r-44,0xm93,-252r32,20r-54,48r-21,-14","w":122},"\u040c":{"d":"74,-240r0,101r88,-101r59,0r-101,111r107,129r-62,0r-85,-108r-6,6r0,102r-47,0r0,-240r47,0xm106,-262r-20,-18r50,-51r32,25","w":228},"\u045c":{"d":"21,-156r44,0r0,61r58,-61r55,0r-71,70r74,86r-56,0r-54,-64r-6,6r0,58r-44,0r0,-156xm114,-252r32,20r-54,48r-20,-14","w":180},"\u040e":{"d":"1,-240r54,0r61,121r52,-121r51,0r-111,240r-51,0r33,-67xm47,-304r32,-13v8,20,28,21,33,21v5,0,24,-1,32,-21r32,13v-9,24,-31,40,-64,40v-33,0,-56,-16,-65,-40","w":219},"\u045e":{"d":"18,84r57,-107r-74,-133r51,0r48,89r43,-89r50,0r-126,240r-49,0xm129,-234r29,14v-10,30,-40,37,-59,37v-19,0,-49,-7,-59,-37r28,-14v3,13,16,23,31,23v13,0,26,-8,30,-23","w":193},"\u00a0":{"w":83}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1990 Neufville SL, Copyright (c) 1990-2000 ParaType, Inc. All
 * Rights Reserved. Futura is a registered trade mark of Neufville SL.
 */
Cufon.registerFont({"w":204,"face":{"font-family":"FuturaBookC","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-17 -318 370 250","underline-thickness":"18","underline-position":"-36","stemh":"23","stemv":"26","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":83},"!":{"d":"63,-49r-26,0r0,-191r26,0r0,191xm32,-14v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":100},"\"":{"d":"48,-240r-4,96r-20,0r-5,-96r29,0xm99,-240r-4,96r-20,0r-4,-96r28,0","w":118},"#":{"d":"142,0r-26,0r11,-75r-49,0r-11,75r-27,0r12,-75r-40,0r4,-23r39,0r8,-48r-40,0r4,-24r39,0r11,-70r26,0r-10,70r48,0r11,-70r27,0r-11,70r39,0r-3,24r-40,0r-7,48r40,0r-4,23r-40,0xm131,-98r7,-48r-49,0r-7,48r49,0","w":216},"$":{"d":"96,-120v-20,-6,-56,-31,-56,-62v0,-34,25,-58,56,-61r0,-32r22,0r0,32v18,1,43,19,50,36r-21,14v-5,-10,-17,-24,-29,-25r0,80v32,12,59,31,59,69v0,32,-20,66,-59,72r0,33r-22,0r0,-32v-40,-2,-61,-30,-68,-62r26,-7v1,23,23,44,42,44r0,-99xm118,-109r0,87v31,-6,40,-56,20,-75v-5,-5,-15,-10,-20,-12xm96,-148r0,-70v-27,4,-39,37,-20,57v5,5,13,10,20,13"},"%":{"d":"64,-242v29,0,52,23,52,52v0,29,-23,52,-52,52v-29,0,-52,-23,-52,-52v0,-29,23,-52,52,-52xm64,-158v18,0,31,-14,31,-32v0,-18,-13,-32,-31,-32v-17,0,-31,14,-31,32v0,18,14,32,31,32xm51,-4r140,-241r14,8r-140,242xm192,-102v29,0,52,23,52,52v0,29,-23,53,-52,53v-29,0,-53,-24,-53,-53v0,-29,24,-52,53,-52xm192,-17v18,0,30,-15,30,-33v0,-18,-12,-32,-30,-32v-17,0,-31,14,-31,32v0,18,14,33,31,33","w":255},"&":{"d":"161,-196v0,20,-21,46,-42,59r50,65v13,-14,20,-23,27,-32r20,16v-6,9,-16,21,-31,36r40,52r-33,0r-26,-33v-40,53,-146,49,-147,-29v-1,-48,43,-65,62,-80v-16,-21,-23,-35,-23,-51v0,-25,17,-51,52,-51v33,0,51,24,51,48xm97,-122v-30,24,-51,18,-51,59v0,24,18,43,43,43v26,0,52,-24,61,-33xm109,-221v-39,2,-24,50,-6,65v12,-8,36,-27,32,-40v0,-17,-13,-25,-26,-25","w":228},"'":{"d":"48,-240r-4,96r-20,0r-5,-96r29,0","w":67},"(":{"d":"60,65v-19,-56,-31,-67,-31,-165v0,-98,12,-107,31,-164r23,10v-37,84,-37,223,0,308","w":105},")":{"d":"46,-264v17,57,31,67,31,164v0,98,-13,108,-31,165r-23,-11v37,-83,36,-224,0,-308","w":105},"*":{"d":"50,-233r42,15r-2,-44r24,0r-1,44r41,-15r8,22r-43,13r28,35r-20,14r-25,-37r-25,37r-19,-14r28,-35r-44,-13"},"+":{"d":"12,-108r0,-24r65,0r0,-62r26,0r0,62r65,0r0,24r-65,0r0,62r-26,0r0,-62r-65,0","w":180},",":{"d":"9,48r29,-83r24,8r-36,82","w":98},"-":{"d":"14,-63r0,-27r80,0r0,27r-80,0","w":108},".":{"d":"23,-14v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":82},"\/":{"d":"0,55r181,-325r21,11r-181,324","w":208},"0":{"d":"188,-120v0,60,-38,124,-86,124v-47,0,-85,-64,-85,-124v0,-60,37,-124,85,-124v48,0,86,64,86,124xm161,-120v5,-41,-24,-100,-59,-100v-34,0,-64,60,-59,100v-4,41,25,100,59,100v34,0,65,-59,59,-100"},"1":{"d":"96,0r0,-215r-41,0r14,-25r53,0r0,240r-26,0"},"2":{"d":"24,-170v7,-50,21,-74,75,-74v64,0,98,70,55,123r-82,97r101,0r0,24r-155,0r116,-136v29,-37,9,-84,-35,-84v-26,0,-48,20,-48,50r-27,0"},"3":{"d":"98,-220v-19,0,-40,16,-40,39r-27,0v-2,-37,43,-69,67,-63v71,1,93,84,37,118v8,3,34,17,34,58v2,78,-110,100,-141,31v-4,-9,-5,-16,-5,-25r27,0v1,25,21,42,45,42v27,0,48,-22,48,-49v0,-23,-22,-49,-52,-45r0,-24v27,0,48,-7,48,-41v0,-21,-11,-41,-41,-41"},"4":{"d":"157,-253r0,189r29,0r0,25r-29,0r0,39r-27,0r0,-39r-123,0xm54,-64r76,0r0,-108"},"5":{"d":"33,-54v11,18,29,34,56,34v34,0,59,-28,59,-62v0,-55,-57,-79,-106,-42r35,-116r95,0r0,24r-77,0r-15,52v57,-8,92,30,94,82v3,93,-126,114,-162,43"},"6":{"d":"121,-246r20,15r-55,77v55,-14,100,25,99,76v0,48,-34,82,-82,82v-81,0,-109,-73,-64,-136xm102,-20v33,0,56,-25,56,-57v0,-32,-23,-56,-56,-56v-33,0,-56,25,-56,56v0,32,23,57,56,57"},"7":{"d":"19,-8r136,-208r-131,0r0,-24r176,0r-160,246"},"8":{"d":"139,-125v61,28,44,129,-37,129v-81,0,-97,-101,-37,-129v-51,-29,-32,-119,37,-119v69,0,88,90,37,119xm102,-136v23,0,41,-17,41,-41v0,-26,-19,-43,-41,-43v-22,0,-41,17,-41,43v0,24,18,41,41,41xm102,-20v28,0,47,-20,47,-47v0,-27,-20,-46,-47,-46v-27,0,-47,19,-47,46v0,27,19,47,47,47"},"9":{"d":"84,6r-21,-15r55,-77v-53,17,-99,-25,-99,-76v0,-48,35,-82,83,-82v81,0,108,74,63,137xm102,-220v-33,0,-56,26,-56,58v0,32,24,55,57,55v33,0,55,-24,55,-55v0,-32,-23,-58,-56,-58"},":":{"d":"23,-135v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18xm23,-14v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":82},";":{"d":"28,-135v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18xm9,48r29,-83r24,8r-36,82","w":98},"<":{"d":"40,-119r128,59r0,25r-156,-73r0,-22r156,-73r0,26","w":180},"=":{"d":"12,-138r0,-24r156,0r0,24r-156,0xm12,-83r0,-24r156,0r0,24r-156,0","w":180},">":{"d":"140,-119r-128,-58r0,-26r156,73r0,22r-156,73r0,-25","w":180},"?":{"d":"78,-72v16,0,27,-16,26,-31r26,0v2,32,-22,55,-52,55v-31,0,-52,-22,-52,-52v0,-66,84,-27,84,-85v0,-21,-12,-34,-32,-34v-3,0,-32,2,-32,34v0,4,2,8,3,13r-27,0v-7,-43,18,-71,56,-71v41,0,58,29,58,57v0,14,-5,40,-40,54v-19,7,-43,7,-43,34v0,15,11,26,25,26xm60,-14v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":156},"@":{"d":"173,-154r4,-23r19,0r-17,93v0,5,2,16,14,16v17,0,40,-25,40,-68v0,-54,-43,-90,-96,-90v-60,0,-107,47,-107,107v0,45,27,106,110,106v17,0,44,-1,76,-16r5,16v-98,48,-209,-2,-209,-106v0,-69,55,-124,125,-124v61,0,114,42,114,106v0,50,-31,85,-59,85v-15,0,-25,-10,-26,-24v-3,5,-18,26,-45,26v-31,0,-51,-26,-51,-58v0,-61,80,-102,103,-46xm125,-70v26,0,41,-28,41,-57v0,-25,-16,-35,-31,-35v-48,0,-61,94,-10,92","w":263},"A":{"d":"192,0r-29,-68r-102,0r-29,68r-29,0r110,-252r108,252r-29,0xm72,-93r81,0r-40,-96","w":223},"B":{"d":"173,-68v-3,68,-69,72,-142,68r0,-240v62,0,116,-5,120,65v0,12,-3,33,-24,47v33,8,46,37,46,60xm58,-215r0,80v33,0,60,6,67,-40v-9,-49,-37,-39,-67,-40xm146,-68v0,-46,-40,-43,-88,-43r0,86v45,3,88,-1,88,-43","w":190},"C":{"d":"45,-119v0,102,121,121,170,67r0,33v-89,61,-197,-4,-197,-100v0,-98,107,-164,197,-101r0,33v-15,-16,-43,-33,-73,-32v-55,0,-97,45,-97,100","w":232},"D":{"d":"31,-240v98,-10,179,24,179,120v0,50,-27,76,-43,92v-27,28,-78,29,-136,28r0,-240xm58,-25v67,7,124,-25,124,-95v0,-66,-49,-101,-124,-95r0,190","w":227},"E":{"d":"156,-240r0,25r-98,0r0,71r95,0r0,26r-95,0r0,93r98,0r0,25r-125,0r0,-240r125,0","w":173},"F":{"d":"140,-240r0,25r-82,0r0,71r80,0r0,25r-80,0r0,119r-27,0r0,-240r109,0","w":156},"G":{"d":"225,-174v-20,-26,-34,-45,-81,-45v-58,0,-99,43,-99,99v-2,120,171,132,181,25r-71,0r0,-26r100,0v1,32,-7,59,-23,82v-7,10,-34,43,-89,43v-71,0,-125,-54,-125,-124v0,-119,165,-168,226,-72","w":272},"H":{"d":"58,-240r0,97r123,0r0,-97r26,0r0,240r-26,0r0,-117r-123,0r0,117r-27,0r0,-240r27,0","w":238},"I":{"d":"31,-240r27,0r0,240r-27,0r0,-240","w":88},"J":{"d":"-2,-14v22,26,55,12,55,-32r0,-194r26,0r0,194v8,55,-49,97,-96,53","w":110},"K":{"d":"58,-240r0,103r102,-103r36,0r-112,112r115,128r-36,0r-99,-110r-6,7r0,103r-27,0r0,-240r27,0"},"L":{"d":"31,-240r27,0r0,215r66,0r0,25r-93,0r0,-240","w":128},"M":{"d":"50,0r-27,0r40,-253r92,202r94,-203r37,254r-27,0r-23,-167r-82,177r-80,-177","w":310},"N":{"d":"58,0r-27,0r0,-250r187,196r0,-186r27,0r0,251r-187,-196r0,185","w":275},"O":{"d":"143,4v-69,0,-125,-53,-125,-124v0,-72,56,-124,125,-124v69,0,125,52,125,124v0,71,-56,124,-125,124xm143,-219v-54,0,-98,44,-98,99v0,55,44,99,98,99v54,0,97,-44,97,-99v0,-55,-43,-99,-97,-99","w":285},"P":{"d":"75,-240v45,-7,82,31,82,68v0,41,-36,75,-99,68r0,104r-27,0r0,-240r44,0xm58,-215r0,85v41,3,75,-7,72,-43v-4,-46,-39,-42,-72,-42","w":164},"Q":{"d":"235,3r-20,-21v-10,7,-34,22,-72,22v-69,0,-125,-53,-125,-124v0,-72,56,-124,125,-124v69,0,125,52,125,124v0,44,-20,71,-34,86r35,37r-34,0xm173,-96r42,43v9,-10,25,-32,25,-67v0,-55,-43,-99,-97,-99v-54,0,-98,44,-98,99v0,75,83,127,151,83r-58,-59r35,0","w":285},"R":{"d":"31,-240v63,-3,122,2,123,66v0,37,-24,64,-60,67r76,107r-32,0r-74,-105r-6,0r0,105r-27,0r0,-240xm127,-173v0,-29,-31,-48,-69,-42r0,86v40,3,69,-10,69,-44","w":180},"S":{"d":"44,-65v2,26,24,44,49,44v45,0,63,-49,36,-75v-29,-28,-95,-29,-99,-86v-4,-68,106,-83,129,-25r-21,14v-9,-15,-15,-25,-41,-26v-33,-2,-54,38,-31,58v33,30,102,30,102,92v0,65,-79,97,-128,54v-13,-11,-19,-29,-22,-43","w":186},"T":{"d":"148,-215r-58,0r0,215r-27,0r0,-215r-58,0r0,-25r143,0r0,25","w":153},"U":{"d":"116,4v-53,0,-85,-38,-85,-90r0,-154r27,0v7,90,-30,215,58,219v37,2,59,-36,59,-72r0,-147r27,0r0,154v2,50,-32,90,-86,90","w":232},"V":{"d":"3,-240r29,0r68,183r68,-183r29,0r-97,254","w":200},"W":{"d":"3,-240r29,0r64,180r75,-192r71,192r70,-180r30,0r-101,253r-70,-193r-76,193","w":344},"X":{"d":"5,0r71,-124r-64,-116r30,0r49,90r52,-90r30,0r-66,116r69,124r-30,0r-55,-99r-56,99r-30,0","w":181},"Y":{"d":"82,0r0,-103r-79,-137r31,0r61,107r62,-107r31,0r-80,137r0,103r-26,0","w":190},"Z":{"d":"184,-240r-131,215r128,0r0,25r-172,0r131,-215r-114,0r0,-25r158,0","w":192},"[":{"d":"89,-239r-34,0r0,279r34,0r0,23r-60,0r0,-325r60,0r0,23","w":104},"\\":{"d":"209,55r-21,10r-181,-324r21,-11","w":208},"]":{"d":"15,40r35,0r0,-279r-35,0r0,-23r61,0r0,325r-61,0r0,-23","w":104},"^":{"d":"90,-220r-53,89r-28,0r64,-109r34,0r64,109r-28,0","w":180},"_":{"d":"0,48r0,-24r180,0r0,24r-180,0","w":180},"`":{"d":"90,-179r-49,-49r27,-12r37,52","w":180},"a":{"d":"139,-128r0,-21r26,0r0,149r-26,0r0,-21v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56","w":189},"b":{"d":"50,-21r0,21r-26,0r0,-262r26,0r0,133v51,-57,124,-6,124,55v0,41,-26,78,-71,78v-24,0,-42,-11,-53,-25xm99,-19v30,0,49,-25,49,-55v-1,-75,-98,-73,-99,0v0,31,19,55,50,55","w":189},"c":{"d":"141,-139r0,31v-35,-41,-99,-24,-99,34v0,60,67,72,101,32r0,31v-55,38,-128,0,-128,-63v0,-65,80,-99,126,-65","w":157},"d":{"d":"139,-128r0,-134r26,0r0,262r-26,0r0,-21v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56","w":189},"e":{"d":"42,-69v-3,60,79,63,93,19r22,12v-26,61,-144,60,-142,-36v0,-45,27,-79,72,-79v54,0,70,35,71,84r-116,0xm44,-91r87,0v-6,-50,-82,-50,-87,0","w":173},"f":{"d":"88,-237v-51,-22,-34,45,-37,88r37,0r0,23r-37,0r0,126r-26,0r0,-126r-14,0r0,-23r14,0v-3,-62,-6,-134,63,-113r0,25","w":86},"g":{"d":"91,60v39,0,53,-36,48,-81v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53r0,-21r26,0v-5,100,29,232,-74,232v-49,0,-69,-22,-73,-68r26,0v-1,28,24,45,47,45xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56","w":189},"h":{"d":"87,-130v-49,0,-36,74,-37,130r-26,0r0,-262r26,0r0,130v5,-6,18,-21,43,-21v32,1,52,23,52,60r0,93r-26,0v-6,-50,20,-130,-32,-130","w":169},"i":{"d":"24,-149r26,0r0,149r-26,0r0,-149xm19,-206v0,-10,8,-18,18,-18v10,0,19,8,19,18v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18","w":74},"j":{"d":"24,-149r26,0r0,233r-26,0r0,-233xm19,-206v0,-10,8,-18,18,-18v10,0,19,8,19,18v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18","w":74},"k":{"d":"24,-262r26,0r0,168r55,-55r34,0r-64,64r75,85r-33,0r-60,-68r-7,6r0,62r-26,0r0,-262","w":151},"l":{"d":"24,-262r26,0r0,262r-26,0r0,-262","w":74},"m":{"d":"24,0r0,-149r26,0r0,15v8,-12,21,-19,37,-19v27,0,39,19,42,24v14,-23,35,-24,45,-24v78,0,38,87,48,153r-26,0r0,-91v0,-17,-2,-39,-26,-39v-57,0,-27,78,-34,130r-25,0r0,-89v0,-10,-1,-41,-28,-41v-56,0,-26,79,-33,130r-26,0","w":246},"n":{"d":"87,-130v-49,0,-36,74,-37,130r-26,0r0,-149r26,0r0,17v5,-6,18,-21,43,-21v32,1,52,23,52,60r0,93r-26,0v-6,-50,20,-130,-32,-130","w":169},"o":{"d":"94,4v-45,0,-79,-33,-79,-78v0,-45,33,-79,79,-79v46,0,80,34,80,79v0,45,-35,78,-80,78xm94,-130v-27,0,-52,20,-52,56v0,37,25,55,52,55v27,0,53,-19,53,-55v0,-37,-26,-56,-53,-56","w":188},"p":{"d":"50,-21r0,105r-26,0r0,-233r26,0r0,20v51,-57,124,-6,124,55v0,41,-26,78,-71,78v-24,0,-42,-11,-53,-25xm99,-19v30,0,49,-25,49,-55v-1,-75,-98,-73,-99,0v0,31,19,55,50,55","w":189},"q":{"d":"139,-128r0,-21r26,0r0,233r-26,0r0,-105v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56","w":189},"r":{"d":"95,-123v-29,-14,-46,2,-45,44r0,79r-26,0r0,-149r26,0r0,16v1,-10,39,-29,57,-14","w":106},"s":{"d":"90,-42v0,-36,-71,-27,-67,-69v4,-45,58,-63,84,-15r-21,11v-5,-18,-38,-22,-39,2v8,30,70,27,70,68v0,31,-23,49,-52,49v-6,0,-39,-1,-52,-38r22,-9v3,8,12,24,31,24v17,0,24,-12,24,-23","w":126},"t":{"d":"77,-126r-26,0r0,126r-26,0r0,-126r-16,0r0,-23r16,0r0,-54r26,0r0,54r26,0r0,23","w":77},"u":{"d":"84,4v-31,0,-60,-26,-60,-63r0,-90r26,0v6,51,-21,130,34,130v55,0,26,-80,33,-130r26,0r0,90v6,37,-28,63,-59,63","w":167},"v":{"d":"3,-149r29,0r44,100r45,-100r29,0r-74,159","w":152},"w":{"d":"3,-149r29,0r44,101r47,-113r46,113r45,-101r29,0r-75,159r-46,-111r-46,111","w":245},"x":{"d":"3,0r64,-80r-55,-69r32,0r38,50r40,-50r31,0r-54,69r62,80r-32,0r-47,-61r-47,61r-32,0","w":163},"y":{"d":"23,84r49,-98r-69,-135r29,0r53,107r49,-107r29,0r-111,233r-29,0","w":165},"z":{"d":"163,-149r-108,125r103,0r0,24r-155,0r108,-126r-87,0r0,-23r139,0","w":165},"{":{"d":"134,-222v-68,-13,-6,113,-57,133v52,13,-15,141,57,133r0,22v-17,0,-31,2,-44,-7v-30,-21,-17,-63,-17,-105v0,-16,-9,-32,-20,-32r0,-21v54,-14,-30,-157,81,-145r0,22","w":180},"|":{"d":"77,90r0,-360r26,0r0,360r-26,0","w":180},"}":{"d":"47,44v20,4,39,-11,34,-31v2,-40,-9,-92,22,-102v-52,-13,15,-142,-56,-133r0,-22v17,0,30,-2,43,7v31,21,17,64,17,106v0,17,9,33,21,32r0,21v-56,12,29,156,-81,144r0,-22","w":180},"~":{"d":"157,-237v16,1,28,-14,34,-25r16,10v-9,19,-25,42,-53,40v-38,-2,-89,-50,-104,2r-16,-9v9,-19,23,-42,48,-42v24,0,52,22,75,24","w":240},"\u0402":{"d":"202,-67v-6,-65,-57,-55,-113,-52r0,119r-26,0r0,-215r-58,0r0,-25r157,0r0,25r-73,0r0,71v38,-2,72,-9,104,9v66,39,37,142,-35,139v-19,0,-34,-5,-46,-11r8,-25v25,19,86,12,82,-35","w":244},"\u201a":{"d":"21,48r29,-83r24,8r-36,82","w":110},"\u201e":{"d":"21,48r29,-83r24,8r-36,82xm73,48r30,-83r24,8r-37,82","w":163},"\u2026":{"d":"27,-14v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18xm116,-14v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18xm206,-14v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":268},"\u2020":{"d":"89,-203r0,-59r26,0r0,59r53,0r0,24r-53,0r0,242r-26,0r0,-242r-53,0r0,-24r53,0"},"\u2021":{"d":"89,-203r0,-59r26,0r0,59r53,0r0,24r-53,0r0,109r53,0r0,25r-53,0r0,108r-26,0r0,-108r-53,0r0,-25r53,0r0,-109r-53,0r0,-24r53,0"},"\u2030":{"d":"64,-242v29,0,52,23,52,52v0,29,-23,52,-52,52v-29,0,-52,-23,-52,-52v0,-29,23,-52,52,-52xm64,-158v18,0,31,-14,31,-32v0,-18,-13,-32,-31,-32v-17,0,-31,14,-31,32v0,18,14,32,31,32xm51,-4r140,-241r14,8r-140,242xm192,-102v29,0,52,23,52,52v0,29,-23,53,-52,53v-29,0,-53,-24,-53,-53v0,-29,24,-52,53,-52xm192,-17v18,0,30,-15,30,-33v0,-18,-12,-32,-30,-32v-17,0,-31,14,-31,32v0,18,14,33,31,33xm318,-102v29,0,52,23,52,52v0,29,-23,53,-52,53v-29,0,-53,-24,-53,-53v0,-29,24,-52,53,-52xm318,-17v18,0,30,-15,30,-33v0,-18,-12,-32,-30,-32v-17,0,-31,14,-31,32v0,18,14,33,31,33","w":381},"\u0409":{"d":"5,-25v44,12,50,-33,50,-72r0,-143r147,0r0,100v57,1,110,-8,115,67v5,71,-67,78,-142,73r0,-215r-93,0v-6,97,31,226,-77,215r0,-25xm289,-73v2,-36,-41,-48,-87,-42r0,90v45,2,84,1,87,-48","w":331},"\u2039":{"d":"40,-76r44,52r-17,13r-54,-65r54,-68r17,13","w":101},"\u040a":{"d":"58,-240r0,100r123,0r0,-100r26,0r0,100v57,1,111,-9,116,67v5,71,-67,78,-142,73r0,-115r-123,0r0,115r-27,0r0,-240r27,0xm295,-73v2,-36,-41,-48,-88,-42r0,90v45,2,85,1,88,-48","w":337},"\u040b":{"d":"139,-147v92,-7,82,65,81,147r-26,0v-4,-55,22,-122,-56,-122v-21,0,-37,2,-49,3r0,119r-26,0r0,-215r-58,0r0,-25r157,0r0,25r-73,0r0,71v14,-1,37,-3,50,-3","w":244},"\u040f":{"d":"31,0r0,-240r27,0r0,215r121,0r0,-215r27,0r0,240r-75,0r0,58r-25,0r0,-58r-75,0","w":236},"\u0452":{"d":"87,-130v-49,3,-36,74,-37,130r-26,0r0,-199r-24,0r0,-22r24,0r0,-41r26,0r0,41r72,0r0,22r-72,0r0,67v5,-6,18,-21,43,-21v32,1,55,23,52,60v-7,75,30,194,-63,174r0,-25v21,9,37,0,37,-26r0,-122v1,-20,-9,-39,-32,-38","w":169},"\u2018":{"d":"74,-245r-30,83r-23,-9r36,-81","w":95},"\u2019":{"d":"21,-169r29,-83r24,9r-36,81","w":110},"\u201c":{"d":"74,-245r-30,83r-23,-9r36,-81xm127,-245r-29,83r-25,-9r37,-81","w":147},"\u201d":{"d":"21,-169r29,-83r24,9r-36,81xm73,-169r30,-83r24,9r-37,81","w":163},"\u2022":{"d":"70,-122v0,-28,22,-51,50,-51v28,0,51,23,51,51v0,28,-23,50,-51,50v-28,0,-50,-22,-50,-50","w":240},"\u2013":{"d":"18,-65r0,-23r158,0r0,23r-158,0","w":194},"\u2014":{"d":"18,-65r0,-23r238,0r0,23r-238,0","w":273},"\u2122":{"d":"84,-224r-32,0r0,121r-18,0r0,-121r-33,0r0,-16r83,0r0,16xm114,-103r-17,0r24,-146r51,114r53,-114r22,146r-17,0r-12,-93r-46,100r-45,-100","w":259},"\u0459":{"d":"3,-24v50,5,22,-79,29,-125r106,0r0,57v43,-2,83,1,83,46v0,55,-56,46,-109,46r0,-126r-54,0v-2,60,16,131,-55,126r0,-24xm194,-46v1,-23,-28,-25,-56,-23r0,46v27,-2,54,8,56,-23","w":231},"\u203a":{"d":"61,-78r-43,-53r17,-13r54,66r-54,67r-17,-13","w":101},"\u045a":{"d":"230,-46v0,55,-56,46,-109,46r0,-69r-71,0r0,69r-26,0r0,-149r26,0r0,56r71,0r0,-56r26,0r0,57v43,-2,83,1,83,46xm204,-46v2,-23,-29,-25,-57,-23r0,46v27,-2,55,7,57,-23","w":240},"\u045b":{"d":"87,-130v-49,0,-36,74,-37,130r-26,0r0,-199r-24,0r0,-22r24,0r0,-41r26,0r0,41r72,0r0,22r-72,0r0,67v5,-6,18,-21,43,-21v32,1,52,23,52,60r0,93r-26,0v-6,-50,20,-130,-32,-130","w":169},"\u045f":{"d":"24,0r0,-149r26,0r0,125r67,0r0,-125r26,0r0,149r-47,0r0,50r-24,0r0,-50r-48,0","w":167},"\u0408":{"d":"-2,-14v22,26,55,12,55,-32r0,-194r26,0r0,194v8,55,-49,97,-96,53","w":110},"\u00a4":{"d":"34,-229r34,34v39,-26,65,-25,104,0r35,-34r14,14r-34,35v26,40,25,62,0,102r34,34r-15,14r-34,-33v-39,26,-65,25,-104,0r-34,33r-14,-14r34,-34v-27,-40,-26,-62,0,-102r-35,-35xm120,-68v34,0,61,-25,61,-61v0,-36,-27,-61,-61,-61v-34,0,-60,25,-60,61v0,36,26,61,60,61","w":240},"\u0490":{"d":"31,0r0,-240r84,0r0,-51r25,0r0,76r-82,0r0,215r-27,0","w":145},"\u00a6":{"d":"77,-140r0,-130r26,0r0,130r-26,0xm77,90r0,-130r26,0r0,130r-26,0","w":180},"\u00a7":{"d":"63,-1v2,24,7,42,37,43v23,0,36,-14,36,-37v0,-48,-55,-34,-82,-62v-14,-13,-18,-28,-18,-43v0,-40,28,-53,37,-57v-30,-15,-31,-40,-31,-49v0,-31,21,-59,63,-59v49,0,59,26,62,68r-26,0v0,-24,-11,-46,-35,-45v-23,0,-38,17,-38,37v1,42,62,40,81,59v33,33,20,85,-17,101v43,16,41,115,-33,111v-43,-2,-62,-26,-62,-67r26,0xm102,-140v-22,0,-39,17,-39,39v0,22,17,39,39,39v22,0,39,-17,39,-39v0,-22,-17,-39,-39,-39"},"\u0401":{"d":"156,-240r0,25r-98,0r0,71r95,0r0,26r-95,0r0,93r98,0r0,25r-125,0r0,-240r125,0xm40,-282v0,-10,9,-19,19,-19v10,0,18,9,18,19v0,10,-8,18,-18,18v-10,0,-19,-8,-19,-18xm109,-282v0,-10,8,-19,18,-19v10,0,18,9,18,19v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":173},"\u00a9":{"d":"9,-120v0,-69,56,-124,124,-124v68,0,124,55,124,124v0,68,-56,124,-124,124v-68,0,-124,-56,-124,-124xm237,-120v0,-58,-46,-104,-104,-104v-58,0,-104,46,-104,104v0,57,46,104,104,104v58,0,104,-47,104,-104xm185,-179r0,29v-33,-38,-94,-24,-94,32v0,58,68,64,95,29r0,30v-53,37,-119,0,-119,-59v0,-59,67,-97,118,-61","w":266},"\u0404":{"d":"45,-112v-3,92,117,115,169,60r0,33v-92,59,-196,2,-196,-100v0,-104,107,-161,196,-101r0,33v-51,-59,-166,-31,-168,50r139,0r0,25r-140,0","w":232},"\u00ab":{"d":"40,-76r44,52r-17,13r-54,-65r54,-68r17,13xm94,-76r43,52r-17,13r-54,-65r54,-68r17,13","w":154},"\u00ac":{"d":"168,0r-25,0r0,-73r-131,0r0,-23r156,0r0,96","w":180},"\u00ae":{"d":"12,-120v0,-71,52,-123,123,-123v71,0,124,52,124,123v0,71,-53,124,-124,124v-71,0,-123,-53,-123,-124xm239,-120v0,-59,-45,-103,-104,-103v-59,0,-103,44,-103,103v0,59,44,104,103,104v59,0,104,-45,104,-104xm185,-52r-24,0r-44,-57r0,57r-19,0r0,-135v34,1,76,-10,76,39v0,21,-14,35,-35,37xm117,-170r0,44v18,0,37,0,37,-22v0,-24,-20,-22,-37,-22","w":270},"\u0407":{"d":"31,-240r27,0r0,240r-27,0r0,-240xm0,-282v0,-10,8,-19,18,-19v10,0,19,9,19,19v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18xm52,-282v0,-10,8,-19,18,-19v10,0,19,9,19,19v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18","w":88},"\u00b0":{"d":"39,-191v0,-28,22,-50,50,-50v28,0,49,22,49,50v0,28,-21,50,-49,50v-28,0,-50,-22,-50,-50xm57,-191v2,44,61,44,63,0v-2,-44,-61,-44,-63,0","w":177},"\u00b1":{"d":"12,-124r0,-24r65,0r0,-62r26,0r0,62r65,0r0,24r-65,0r0,61r-26,0r0,-61r-65,0xm12,-24r0,-24r156,0r0,24r-156,0","w":180},"\u0406":{"d":"31,-240r27,0r0,240r-27,0r0,-240","w":88},"\u0456":{"d":"24,-149r26,0r0,149r-26,0r0,-149xm19,-206v0,-10,8,-18,18,-18v10,0,19,8,19,18v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18","w":74},"\u0491":{"d":"24,0r0,-149r65,0r0,-40r24,0r0,63r-63,0r0,126r-26,0","w":118},"\u03bc":{"d":"61,-32v35,37,77,-7,77,-46r0,-71r26,0r0,149r-26,0r0,-31v-7,20,-23,35,-46,35v-27,0,-39,-21,-42,-26r0,83r-26,0r0,-210r26,0v3,45,-9,83,11,117","w":188},"\u00b6":{"d":"8,-176v0,-33,25,-64,79,-64r97,0r0,21r-22,0r0,255r-22,0r0,-255r-38,0r0,255r-23,0r0,-149v-42,2,-70,-25,-71,-63","w":208},"\u00b7":{"d":"13,-122v0,-12,11,-23,23,-23v12,0,23,11,23,23v0,12,-11,23,-23,23v-12,0,-23,-11,-23,-23","w":72},"\u0451":{"d":"42,-69v-2,60,80,62,94,19r21,12v-28,61,-143,60,-142,-36v0,-45,28,-79,73,-79v54,0,69,35,70,84r-116,0xm44,-91r88,0v-6,-51,-82,-50,-88,0xm40,-198v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18xm102,-198v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":173},"\u2116":{"d":"58,0r-27,0r0,-250r168,190r0,-180r26,0r0,251r-167,-191r0,180xm304,-240v29,0,52,23,52,52v0,29,-23,52,-52,52v-29,0,-52,-23,-52,-52v0,-29,23,-52,52,-52xm304,-156v18,0,31,-14,31,-32v0,-18,-13,-32,-31,-32v-17,0,-30,14,-30,32v0,18,13,32,30,32xm259,-82r0,-25r90,0r0,25r-90,0","w":367},"\u0454":{"d":"141,-139r0,31v-31,-37,-87,-27,-98,20r78,0r0,23r-79,0v7,50,69,62,101,23r0,31v-55,38,-128,0,-128,-63v0,-65,80,-99,126,-65","w":157},"\u00bb":{"d":"61,-78r-43,-53r17,-13r54,66r-54,67r-17,-13xm114,-78r-43,-53r17,-13r54,66r-54,67r-17,-13","w":154},"\u0458":{"d":"24,-149r26,0r0,233r-26,0r0,-233xm19,-206v0,-10,8,-18,18,-18v10,0,19,8,19,18v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18","w":74},"\u0405":{"d":"44,-65v2,26,24,44,49,44v45,0,63,-49,36,-75v-29,-28,-95,-29,-99,-86v-4,-68,106,-83,129,-25r-21,14v-9,-15,-15,-25,-41,-26v-33,-2,-54,38,-31,58v33,30,102,30,102,92v0,65,-79,97,-128,54v-13,-11,-19,-29,-22,-43","w":186},"\u0455":{"d":"90,-42v0,-36,-71,-27,-67,-69v4,-45,58,-63,84,-15r-21,11v-5,-18,-38,-22,-39,2v8,30,70,27,70,68v0,31,-23,49,-52,49v-6,0,-39,-1,-52,-38r22,-9v3,8,12,24,31,24v17,0,24,-12,24,-23","w":126},"\u0457":{"d":"24,-149r26,0r0,149r-26,0r0,-149xm-4,-198v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18xm43,-198v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":74},"\u0410":{"d":"192,0r-29,-68r-102,0r-29,68r-29,0r110,-252r108,252r-29,0xm72,-93r81,0r-40,-96","w":223},"\u0411":{"d":"31,0r0,-240r119,0r0,25r-92,0r0,75v57,1,110,-8,115,67v5,71,-67,78,-142,73xm145,-73v2,-36,-41,-48,-87,-42r0,90v45,2,84,1,87,-48","w":190},"\u0412":{"d":"173,-68v-3,68,-69,72,-142,68r0,-240v62,0,116,-5,120,65v0,12,-3,33,-24,47v33,8,46,37,46,60xm58,-215r0,80v33,0,60,6,67,-40v-9,-49,-37,-39,-67,-40xm146,-68v0,-46,-40,-43,-88,-43r0,86v45,3,88,-1,88,-43","w":190},"\u0413":{"d":"31,0r0,-240r109,0r0,25r-82,0r0,215r-27,0","w":145},"\u0414":{"d":"5,-25v67,-9,42,-136,47,-215r146,0r0,215r27,0r0,75r-25,0r0,-50r-170,0r0,50r-25,0r0,-75xm78,-215v-3,69,12,161,-27,190r120,0r0,-190r-93,0","w":230},"\u0415":{"d":"156,-240r0,25r-98,0r0,71r95,0r0,26r-95,0r0,93r98,0r0,25r-125,0r0,-240r125,0","w":173},"\u0416":{"d":"132,-240r27,0r0,103r92,-103r33,0r-101,112r104,128r-34,0r-88,-110r-6,7r0,103r-27,0r0,-103r-5,-7r-88,110r-34,0r104,-128r-101,-112r33,0r91,103r0,-103","w":291},"\u0417":{"d":"98,-142v67,4,59,-77,7,-77v-17,0,-34,5,-48,26r-21,-16v19,-29,46,-35,69,-35v28,0,69,20,69,61v0,24,-14,42,-33,51v32,7,48,33,48,62v-2,52,-38,74,-84,74v-48,0,-75,-29,-87,-57r26,-12v10,27,33,44,62,44v30,0,59,-23,56,-48v-6,-53,-46,-48,-86,-48r0,-25r22,0","w":207},"\u0418":{"d":"198,0r0,-183r-167,194r0,-251r27,0r0,184r167,-194r0,250r-27,0","w":255},"\u0419":{"d":"198,0r0,-183r-167,194r0,-251r27,0r0,184r167,-194r0,250r-27,0xm72,-294r25,-9v6,20,28,20,31,20v3,0,24,0,30,-20r26,9v-2,6,-15,34,-56,34v-41,0,-54,-28,-56,-34","w":255},"\u041a":{"d":"58,-240r0,103r102,-103r36,0r-112,112r115,128r-36,0r-99,-110r-6,7r0,103r-27,0r0,-240r27,0"},"\u041b":{"d":"5,-25v44,12,50,-33,50,-72r0,-143r147,0r0,240r-27,0r0,-215r-93,0v-6,97,31,226,-77,215r0,-25","w":232},"\u041c":{"d":"50,0r-27,0r40,-253r92,202r94,-203r37,254r-27,0r-23,-167r-82,177r-80,-177","w":310},"\u041d":{"d":"58,-240r0,97r123,0r0,-97r26,0r0,240r-26,0r0,-117r-123,0r0,117r-27,0r0,-240r27,0","w":238},"\u041e":{"d":"143,4v-69,0,-125,-53,-125,-124v0,-72,56,-124,125,-124v69,0,125,52,125,124v0,71,-56,124,-125,124xm143,-219v-54,0,-98,44,-98,99v0,55,44,99,98,99v54,0,97,-44,97,-99v0,-55,-43,-99,-97,-99","w":285},"\u041f":{"d":"31,-240r176,0r0,240r-26,0r0,-215r-123,0r0,215r-27,0r0,-240","w":238},"\u0420":{"d":"75,-240v45,-7,82,31,82,68v0,41,-36,75,-99,68r0,104r-27,0r0,-240r44,0xm58,-215r0,85v41,3,75,-7,72,-43v-4,-46,-39,-42,-72,-42","w":164},"\u0421":{"d":"45,-119v0,102,121,121,170,67r0,33v-89,61,-197,-4,-197,-100v0,-98,107,-164,197,-101r0,33v-15,-16,-43,-33,-73,-32v-55,0,-97,45,-97,100","w":232},"\u0422":{"d":"148,-215r-58,0r0,215r-27,0r0,-215r-58,0r0,-25r143,0r0,25","w":153},"\u0423":{"d":"3,-240r32,0r75,141r63,-141r29,0r-109,240r-29,0r31,-67"},"\u0424":{"d":"135,0r0,-34v-89,3,-117,-52,-117,-93v0,-41,27,-97,117,-94r0,-29r26,0r0,29v89,-3,117,53,117,94v0,41,-27,96,-117,93r0,34r-26,0xm135,-59r0,-137v-67,-3,-90,36,-90,69v0,33,23,71,90,68xm161,-196r0,137v66,3,90,-35,90,-68v0,-33,-23,-72,-90,-69","w":295},"\u0425":{"d":"5,0r71,-124r-64,-116r30,0r49,90r52,-90r30,0r-66,116r69,124r-30,0r-55,-99r-56,99r-30,0","w":181},"\u0426":{"d":"31,0r0,-240r27,0r0,215r121,0r0,-215r27,0r0,215r27,0r0,75r-25,0r0,-50r-177,0","w":238},"\u0427":{"d":"105,-100v-89,6,-84,-60,-81,-140r26,0v3,53,-20,114,57,114v21,0,36,-1,48,-2r0,-112r26,0r0,240r-26,0r0,-103v-14,1,-37,3,-50,3","w":212},"\u0428":{"d":"31,0r0,-240r27,0r0,215r95,0r0,-215r26,0r0,215r95,0r0,-215r27,0r0,240r-270,0","w":331},"\u0429":{"d":"31,0r0,-240r27,0r0,215r95,0r0,-215r26,0r0,215r95,0r0,-215r27,0r0,215r27,0r0,75r-25,0r0,-50r-272,0","w":333},"\u042a":{"d":"63,0r0,-215r-58,0r0,-25r84,0r0,100v57,1,110,-9,115,67v5,71,-67,78,-141,73xm177,-73v2,-36,-41,-48,-88,-42r0,90v45,2,85,1,88,-48","w":219},"\u042b":{"d":"31,0r0,-240r27,0r0,100v57,1,110,-8,115,67v5,71,-67,78,-142,73xm145,-73v2,-36,-41,-48,-87,-42r0,90v45,2,84,1,87,-48xm198,-240r27,0r0,240r-27,0r0,-240","w":255},"\u042c":{"d":"31,0r0,-240r27,0r0,100v57,1,110,-8,115,67v5,71,-67,78,-142,73xm145,-73v2,-36,-41,-48,-87,-42r0,90v45,2,84,1,87,-48","w":187},"\u042d":{"d":"98,-219v-36,0,-55,8,-80,32r0,-33v89,-60,196,-3,196,101v0,103,-104,158,-196,100r0,-33v52,54,173,34,169,-60r-140,0r0,-25r139,0v-4,-45,-39,-82,-88,-82","w":232},"\u042e":{"d":"58,-140r36,0v9,-59,58,-104,122,-104v71,0,122,51,122,124v0,71,-51,124,-122,124v-72,0,-120,-55,-123,-119r-35,0r0,115r-27,0r0,-240r27,0r0,100xm216,-219v-53,0,-95,42,-95,99v0,57,42,99,95,99v53,0,95,-42,95,-99v0,-57,-42,-99,-95,-99","w":356},"\u042f":{"d":"20,-171v6,-69,62,-74,133,-69r0,240r-27,0r0,-105r-14,0r-69,105r-32,0r70,-107v-29,2,-63,-34,-61,-64xm48,-171v-1,42,37,43,78,42r0,-86v-42,-3,-77,3,-78,44","w":183},"\u0430":{"d":"139,-128r0,-21r26,0r0,149r-26,0r0,-21v-33,45,-124,27,-124,-54v0,-79,94,-97,124,-53xm140,-75v-1,-76,-99,-71,-98,0v0,32,18,56,49,56v32,0,49,-26,49,-56","w":189},"\u0431":{"d":"92,4v-59,0,-77,-49,-77,-95v0,-27,3,-95,43,-124v23,-17,73,-14,82,-37r28,0v-19,51,-59,33,-96,58v-20,13,-30,41,-31,68v34,-54,133,-19,133,52v0,45,-33,78,-82,78xm94,-130v-27,0,-52,20,-52,56v0,37,25,55,52,55v27,0,53,-19,53,-55v0,-37,-26,-56,-53,-56","w":188},"\u0432":{"d":"140,-44v-3,54,-63,43,-116,44r0,-149v45,2,98,-13,101,36v0,15,-7,24,-16,30v13,2,32,20,31,39xm102,-108v0,-23,-28,-18,-52,-18r0,37v24,-1,52,6,52,-19xm114,-45v1,-28,-35,-21,-64,-22r0,44v29,0,64,6,64,-22","w":154},"\u0433":{"d":"24,0r0,-149r89,0r0,23r-63,0r0,126r-26,0","w":114},"\u0434":{"d":"1,-24v47,-4,31,-75,34,-125r105,0r0,125r23,0r0,64r-24,0r0,-40r-114,0r0,40r-24,0r0,-64xm114,-24r0,-102r-53,0v-2,41,8,81,-18,102r71,0","w":165},"\u0435":{"d":"42,-69v-3,60,79,63,93,19r22,12v-26,61,-144,60,-142,-36v0,-45,27,-79,72,-79v54,0,70,35,71,84r-116,0xm44,-91r87,0v-6,-50,-82,-50,-87,0","w":173},"\u0436":{"d":"94,-149r26,0r0,61r56,-61r31,0r-65,69r71,80r-32,0r-56,-63v-11,12,-2,43,-5,63r-26,0v-2,-20,6,-51,-5,-63r-55,63r-33,0r72,-80r-65,-69r30,0r56,61r0,-61","w":214},"\u0437":{"d":"102,-109v0,-31,-48,-25,-58,-2r-18,-15v18,-38,101,-37,100,12v0,18,-9,26,-17,31v55,22,20,94,-34,87v-25,2,-54,-17,-60,-38r22,-9v1,9,23,27,38,24v16,1,37,-5,36,-26v0,-23,-25,-24,-49,-23r0,-23v23,0,40,0,40,-18","w":151},"\u0438":{"d":"24,-149r26,0r0,98r103,-110r0,161r-26,0r0,-100r-103,110r0,-159","w":177},"\u0439":{"d":"24,-149r26,0r0,98r103,-110r0,161r-26,0r0,-100r-103,110r0,-159xm37,-214r22,-8v4,27,57,28,61,0r22,8v-13,46,-92,45,-105,0","w":177},"\u043a":{"d":"24,-149r26,0r0,61r61,-61r32,0r-65,66r72,83r-33,0r-59,-66v-15,10,-5,44,-8,66r-26,0r0,-149","w":151},"\u043b":{"d":"3,-24v50,5,22,-79,29,-125r106,0r0,149r-26,0r0,-126r-54,0v-2,60,16,131,-55,126r0,-24","w":162},"\u043c":{"d":"7,0r36,-161r62,122r61,-122r36,161r-27,0r-20,-93r-51,103r-51,-103r-19,93r-27,0","w":208},"\u043d":{"d":"24,0r0,-149r26,0r0,61r71,0r0,-61r26,0r0,149r-26,0r0,-64r-71,0r0,64r-26,0","w":171},"\u043e":{"d":"94,4v-45,0,-79,-33,-79,-78v0,-45,33,-79,79,-79v46,0,80,34,80,79v0,45,-35,78,-80,78xm94,-130v-27,0,-52,20,-52,56v0,37,25,55,52,55v27,0,53,-19,53,-55v0,-37,-26,-56,-53,-56","w":188},"\u043f":{"d":"24,-149r121,0r0,149r-26,0r0,-126r-69,0r0,126r-26,0r0,-149","w":169},"\u0440":{"d":"50,-21r0,105r-26,0r0,-233r26,0r0,20v51,-57,124,-6,124,55v0,41,-26,78,-71,78v-24,0,-42,-11,-53,-25xm99,-19v30,0,49,-25,49,-55v-1,-75,-98,-73,-99,0v0,31,19,55,50,55","w":189},"\u0441":{"d":"141,-139r0,31v-35,-41,-99,-24,-99,34v0,60,67,72,101,32r0,31v-55,38,-128,0,-128,-63v0,-65,80,-99,126,-65","w":157},"\u0442":{"d":"122,-126r-46,0r0,126r-26,0r0,-126r-47,0r0,-23r119,0r0,23","w":125},"\u0443":{"d":"23,84r49,-98r-69,-135r29,0r53,107r49,-107r29,0r-111,233r-29,0","w":165},"\u0444":{"d":"219,-75v4,48,-53,81,-89,78r0,81r-26,0r0,-81v-35,3,-94,-29,-89,-78v5,-53,39,-75,89,-77r0,-88r26,0r0,88v50,2,84,24,89,77xm104,-129v-37,1,-62,11,-62,54v0,40,27,55,62,54r0,-108xm130,-21v35,1,62,-15,62,-54v0,-43,-25,-53,-62,-54r0,108","w":234},"\u0445":{"d":"3,0r64,-80r-55,-69r32,0r38,50r40,-50r31,0r-54,69r62,80r-32,0r-47,-61r-47,61r-32,0","w":163},"\u0446":{"d":"24,0r0,-149r26,0r0,125r67,0r0,-125r26,0r0,125r25,0r0,64r-24,0r0,-40r-120,0","w":170},"\u0447":{"d":"46,-149v-1,33,-6,70,26,70v10,0,21,-1,32,-3r0,-67r26,0r0,149r-26,0r0,-59v-42,12,-84,0,-84,-44r0,-46r26,0","w":154},"\u0448":{"d":"24,0r0,-149r26,0r0,125r58,0r0,-125r26,0r0,125r58,0r0,-125r25,0r0,149r-193,0","w":241},"\u0449":{"d":"24,0r0,-149r26,0r0,125r58,0r0,-125r26,0r0,125r58,0r0,-125r25,0r0,125r25,0r0,64r-24,0r0,-40r-194,0","w":244},"\u044a":{"d":"145,-46v0,54,-57,46,-110,46r0,-126r-32,0r0,-23r58,0r0,57v43,-2,84,2,84,46xm118,-46v2,-23,-29,-25,-57,-23r0,46v27,-2,55,7,57,-23","w":154},"\u044b":{"d":"134,-46v0,55,-57,46,-110,46r0,-149r26,0r0,57v43,-2,84,2,84,46xm107,-46v1,-23,-29,-25,-57,-23r0,46v27,-2,55,8,57,-23xm152,0r0,-149r26,0r0,149r-26,0","w":202},"\u044c":{"d":"134,-46v0,55,-57,46,-110,46r0,-149r26,0r0,57v43,-2,84,2,84,46xm107,-46v1,-23,-29,-25,-57,-23r0,46v27,-2,55,8,57,-23","w":144},"\u044d":{"d":"15,-120r0,-25v61,-25,122,10,122,71v0,62,-70,94,-122,70r0,-25v40,21,90,8,96,-36r-79,0r0,-23r79,0v-10,-43,-56,-51,-96,-32","w":152},"\u044e":{"d":"154,4v-51,0,-68,-25,-78,-68r-26,0r0,64r-26,0r0,-149r26,0r0,61r27,0v8,-39,33,-64,77,-65v46,0,79,34,79,79v0,45,-33,78,-79,78xm154,-130v-28,0,-51,20,-51,56v0,37,25,55,51,55v27,0,53,-19,53,-55v0,-36,-26,-56,-53,-56","w":248},"\u044f":{"d":"13,-103v0,-52,55,-48,109,-46r0,149r-26,0r0,-60r-15,0r-43,60r-31,0r47,-62v-12,1,-46,-15,-41,-41xm40,-104v0,26,29,23,56,22r0,-44v-26,1,-56,-6,-56,22","w":146},"\u0403":{"d":"31,0r0,-240r109,0r0,25r-82,0r0,215r-27,0xm116,-318r25,17r-55,42r-15,-12","w":145},"\u0453":{"d":"24,0r0,-149r89,0r0,23r-63,0r0,126r-26,0xm91,-240r26,12r-48,49r-16,-9","w":114},"\u040c":{"d":"58,-240r0,103r102,-103r36,0r-112,112r115,128r-36,0r-99,-110r-6,7r0,103r-27,0r0,-240r27,0xm132,-318r25,17r-55,42r-16,-12"},"\u045c":{"d":"24,-149r26,0r0,61r61,-61r32,0r-65,66r72,83r-33,0r-59,-66v-15,10,-5,44,-8,66r-26,0r0,-149xm98,-240r27,12r-48,49r-17,-9","w":151},"\u040e":{"d":"3,-240r32,0r75,141r63,-141r29,0r-109,240r-29,0r31,-67xm49,-294r25,-9v6,20,27,20,30,20v3,0,25,0,31,-20r25,9v-2,6,-15,34,-56,34v-41,0,-53,-28,-55,-34"},"\u045e":{"d":"23,84r49,-98r-69,-135r29,0r53,107r49,-107r29,0r-111,233r-29,0xm34,-214r22,-8v4,27,57,27,61,0r22,8v-13,45,-92,46,-105,0","w":165},"\u00a0":{"w":83}}});
Cufon.registerFont({"w":204,"face":{"font-family":"FuturaDemiC","font-weight":600,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 7 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-9 -331 410 286","underline-thickness":"18","underline-position":"-36","stemh":"37","stemv":"44","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":83},"!":{"d":"68,-73r-45,0r0,-167r45,0r0,167xm17,-23v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28","w":90},"\"":{"d":"64,-240r-8,96r-33,0r-8,-96r49,0xm129,-240r-8,96r-33,0r-8,-96r49,0","w":144},"#":{"d":"151,0r-44,0r11,-67r-34,0r-11,67r-43,0r10,-67r-36,0r6,-37r36,0r6,-37r-37,0r7,-37r36,0r10,-62r44,0r-10,62r34,0r10,-62r44,0r-10,62r37,0r-6,37r-37,0r-6,37r37,0r-6,37r-37,0xm124,-104r6,-37r-34,0r-6,37r34,0","w":216},"$":{"d":"35,-176v-6,-10,23,-65,60,-63r0,-35r22,0r0,35v21,1,41,11,56,27r-24,30v-5,-6,-18,-20,-38,-20v-21,0,-31,13,-31,26v14,46,101,30,101,101v0,37,-25,67,-64,74r0,37r-22,0r0,-36v-40,-3,-61,-23,-78,-43r27,-28v9,29,90,53,90,0v0,-47,-106,-33,-99,-105"},"%":{"d":"71,-243v37,0,61,24,61,57v0,33,-24,57,-61,57v-37,0,-60,-24,-60,-57v0,-33,23,-57,60,-57xm71,-155v18,0,31,-13,31,-31v0,-18,-13,-31,-31,-31v-18,0,-30,13,-30,31v0,18,12,31,30,31xm58,-1r143,-247r19,11r-143,247xm207,-110v37,0,61,24,61,57v0,33,-24,57,-61,57v-37,0,-60,-24,-60,-57v0,-33,23,-57,60,-57xm207,-22v18,0,31,-13,31,-31v0,-18,-13,-31,-31,-31v-18,0,-30,13,-30,31v0,18,12,31,30,31","w":278},"&":{"d":"208,-117r27,27v-17,22,-18,24,-31,35r49,55r-58,0r-24,-27v-11,10,-39,32,-77,32v-49,0,-75,-33,-75,-68v0,-50,32,-57,57,-72v-36,-29,-33,-114,42,-111v80,3,83,92,21,117r39,45v16,-16,25,-26,30,-33xm145,-57r-45,-52v-38,13,-50,73,1,73v19,0,36,-13,44,-21xm120,-212v-40,0,-20,45,-4,58v12,-6,31,-23,28,-34v0,-12,-8,-24,-24,-24","w":255},"'":{"d":"64,-240r-8,96r-33,0r-8,-96r49,0","w":79},"(":{"d":"95,-257v-38,81,-39,219,0,299r-35,19v-46,-67,-47,-270,0,-337","w":115},")":{"d":"20,42v39,-81,38,-218,0,-299r35,-19v45,67,47,270,0,337","w":115},"*":{"d":"52,-245r41,21r-7,-46r33,0r-7,46r41,-22r10,32r-46,7r33,33r-27,19r-21,-41r-20,42r-27,-20r32,-33r-45,-6"},"+":{"d":"12,-102r0,-40r56,0r0,-56r44,0r0,56r56,0r0,40r-56,0r0,56r-44,0r0,-56r-56,0","w":180},",":{"d":"1,47r39,-97r40,5r-51,95","w":118},"-":{"d":"14,-63r0,-40r94,0r0,40r-94,0","w":122},".":{"d":"17,-23v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28","w":90},"\/":{"d":"0,51r138,-318r31,15r-137,318","w":198},"0":{"d":"102,5v-48,0,-93,-42,-93,-125v0,-82,45,-126,93,-126v48,0,93,43,93,126v0,82,-45,125,-93,125xm102,-205v-20,0,-46,23,-46,85v0,63,25,85,46,85v21,0,46,-22,46,-85v0,-62,-26,-85,-46,-85"},"1":{"d":"82,0r0,-200r-34,0r0,-40r81,0r0,240r-47,0"},"2":{"d":"6,0r71,-80v12,-17,55,-53,55,-89v0,-22,-16,-36,-36,-36v-24,0,-37,19,-38,40r-48,0v2,-49,36,-81,84,-81v56,0,85,39,85,77v0,63,-55,90,-85,129r87,0r0,40r-175,0"},"3":{"d":"62,-177r-44,0v4,-44,37,-69,78,-69v69,0,107,76,48,117v10,4,37,17,37,57v0,49,-38,77,-86,77v-46,0,-82,-28,-86,-74r46,0v3,20,17,34,40,34v52,-1,54,-75,-1,-76r-6,0r0,-33v26,2,40,-14,39,-33v0,-19,-13,-32,-32,-32v-17,0,-32,11,-33,32"},"4":{"d":"169,-244r0,164r28,0r0,38r-28,0r0,42r-44,0r0,-42r-117,0r0,-21r119,-181r42,0xm63,-80r62,0r0,-95"},"5":{"d":"170,-240r0,40r-80,0r-9,38v57,-7,99,23,100,80v0,45,-28,87,-94,87v-19,0,-50,-3,-78,-30r16,-41v11,13,31,31,61,31v29,0,48,-19,48,-46v0,-46,-62,-65,-103,-33r28,-126r111,0"},"6":{"d":"114,-250r33,25r-57,73v49,-19,103,12,103,72v0,42,-27,85,-91,85v-101,0,-104,-99,-61,-157xm102,-32v25,0,44,-18,44,-44v0,-26,-19,-45,-44,-45v-25,0,-44,19,-44,45v0,26,19,44,44,44"},"7":{"d":"20,-14r108,-186r-111,0r0,-40r185,0r-147,250"},"8":{"d":"143,-125v27,9,43,31,43,59v0,40,-32,71,-84,71v-88,0,-112,-105,-40,-130v-56,-24,-43,-121,40,-121v82,0,97,96,41,121xm102,-145v20,0,34,-13,34,-33v0,-20,-14,-34,-34,-34v-20,0,-33,14,-33,34v0,20,13,33,33,33xm102,-31v21,0,37,-16,37,-38v0,-22,-16,-37,-37,-37v-21,0,-36,15,-36,37v0,22,15,38,36,38"},"9":{"d":"90,10r-33,-25r57,-73v-49,19,-102,-12,-102,-72v0,-42,27,-86,91,-86v101,0,103,100,60,158xm103,-208v-25,0,-45,18,-45,44v0,26,20,44,45,44v25,0,44,-18,44,-44v0,-26,-19,-44,-44,-44"},":":{"d":"17,-133v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28xm17,-23v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28","w":90},";":{"d":"30,-133v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28xm1,47r39,-97r40,5r-51,95","w":118},"<":{"d":"58,-120r110,54r0,43r-156,-79r0,-37r156,-78r0,43","w":180},"=":{"d":"12,-134r0,-38r156,0r0,38r-156,0xm12,-72r0,-38r156,0r0,38r-156,0","w":180},">":{"d":"122,-120r-110,-54r0,-43r156,78r0,37r-156,79r0,-43","w":180},"?":{"d":"102,-73r-45,0r0,-71v32,9,61,-16,57,-34v0,-16,-10,-29,-27,-29v-26,0,-25,24,-25,30v-15,-2,-36,4,-47,-2v0,-43,33,-67,73,-67v87,0,99,126,14,135r0,38xm51,-23v0,-16,13,-28,29,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-29,-12,-29,-28","w":176},"@":{"d":"140,-217v-135,2,-126,200,-1,194v20,0,43,-3,68,-12r6,28v-67,17,-112,24,-163,-20v-84,-72,-22,-217,90,-217v75,0,112,51,112,105v0,50,-29,84,-59,84v-13,0,-25,-7,-28,-20v-28,40,-96,26,-95,-34v1,-64,64,-95,98,-53r3,-15r31,0v-5,29,-13,54,-16,85v0,10,5,12,9,12v21,-5,30,-32,31,-56v0,-39,-26,-81,-86,-81xm129,-83v15,0,32,-16,32,-40v0,-14,-8,-26,-24,-26v-18,0,-33,17,-33,39v0,19,13,27,25,27","w":264},"A":{"d":"191,0r-21,-50r-97,0r-22,50r-50,0r104,-245r35,0r101,245r-50,0xm87,-89r69,0r-34,-86","w":241},"B":{"d":"141,-128v52,11,66,73,28,109v-34,32,-86,15,-142,19r0,-240v72,-4,139,-1,141,65v0,31,-21,43,-27,47xm74,-202r0,62v22,-1,50,5,50,-32v0,-27,-23,-31,-50,-30xm141,-72v0,-24,-33,-38,-67,-32r0,66v34,4,67,-7,67,-34","w":205},"C":{"d":"16,-120v-1,-103,96,-153,186,-111r0,55v-59,-63,-137,-10,-138,57v-1,79,94,107,138,56r0,54v-14,8,-34,14,-60,14v-81,1,-125,-58,-126,-125","w":217},"D":{"d":"225,-120v0,71,-62,126,-136,120r-62,0r0,-240r63,0v76,-6,135,48,135,120xm177,-120v0,-52,-47,-88,-103,-80r0,160v49,8,103,-26,103,-80","w":241},"E":{"d":"161,-240r0,40r-87,0r0,54r83,0r0,40r-83,0r0,66r87,0r0,40r-134,0r0,-240r134,0","w":178},"F":{"d":"155,-240r0,40r-81,0r0,54r76,0r0,40r-76,0r0,106r-47,0r0,-240r128,0","w":167},"G":{"d":"149,-88r0,-41r110,0v0,33,-3,59,-22,88v-28,41,-69,46,-95,46v-74,0,-126,-50,-126,-125v0,-75,53,-126,127,-126v68,0,95,44,103,57r-40,22v-5,-9,-23,-36,-63,-36v-48,0,-79,38,-79,84v0,37,22,82,79,82v33,0,63,-14,68,-51r-62,0","w":275},"H":{"d":"74,-240r0,93r102,0r0,-93r46,0r0,240r-46,0r0,-107r-102,0r0,107r-47,0r0,-240r47,0","w":249},"I":{"d":"27,-240r47,0r0,240r-47,0r0,-240","w":101},"J":{"d":"42,-38v26,0,24,-22,24,-47r0,-155r47,0r0,162v5,32,-18,83,-67,83v-17,0,-38,-5,-55,-22r28,-34v5,7,12,13,23,13","w":140},"K":{"d":"74,-240r0,101r88,-101r59,0r-101,111r107,129r-62,0r-85,-108r-6,6r0,102r-47,0r0,-240r47,0","w":228},"L":{"d":"27,-240r47,0r0,200r74,0r0,40r-121,0r0,-240","w":153},"M":{"d":"15,0r45,-244r32,0r65,157r68,-157r33,0r40,244r-47,0r-22,-148r-66,151r-13,0r-63,-151r-24,148r-48,0","w":313},"N":{"d":"74,0r-47,0r0,-246r33,0r146,168r0,-162r47,0r0,245r-33,0r-146,-167r0,162","w":280},"O":{"d":"144,-246v76,0,128,53,128,126v0,73,-52,125,-128,125v-76,0,-128,-52,-128,-125v0,-73,52,-126,128,-126xm144,-37v47,0,80,-34,80,-83v0,-49,-33,-83,-80,-83v-47,0,-80,34,-80,83v0,49,33,83,80,83","w":288},"P":{"d":"97,-240v73,-5,118,68,68,130v-16,19,-52,23,-91,21r0,89r-47,0r0,-240r70,0xm137,-165v-1,-31,-31,-37,-63,-35r0,71v34,4,63,-7,63,-36","w":192},"Q":{"d":"232,9r-20,-21v-86,48,-196,-10,-196,-108v0,-73,52,-126,128,-126v76,0,128,53,128,126v0,45,-19,71,-32,85r39,40xm180,-96r28,28v8,-10,16,-25,16,-52v0,-49,-33,-83,-80,-83v-47,0,-80,34,-80,83v0,61,61,100,117,75r-49,-48","w":288},"R":{"d":"97,-240v101,-10,112,123,30,139r75,101r-58,0r-64,-96r-6,0r0,96r-47,0r0,-240r70,0xm74,-202r0,72v24,0,53,4,60,-36v-6,-42,-36,-35,-60,-36","w":206},"S":{"d":"170,-217r-25,32v-26,-45,-94,-9,-64,23v36,24,98,25,98,89v0,47,-34,78,-84,78v-44,0,-70,-27,-83,-45r31,-29v12,23,33,32,50,32v31,0,51,-36,28,-55v-33,-27,-94,-18,-96,-83v-2,-63,92,-101,145,-42","w":192},"T":{"d":"157,-200r-54,0r0,200r-47,0r0,-200r-54,0r0,-40r155,0r0,40","w":159},"U":{"d":"124,5v-55,0,-97,-39,-97,-98r0,-147r47,0r0,151v4,37,15,52,50,52v82,0,40,-128,50,-203r46,0r0,147v4,58,-41,98,-96,98","w":247},"V":{"d":"1,-240r51,0r64,161r64,-161r51,0r-103,245r-25,0","w":231},"W":{"d":"175,-152r-56,157r-33,0r-85,-245r49,0r54,163r59,-165r26,0r55,165r58,-163r49,0r-90,245r-33,0","w":352},"X":{"d":"3,0r85,-127r-72,-113r56,0r42,74r45,-74r56,0r-74,113r82,127r-56,0r-53,-88r-55,88r-56,0","w":230},"Y":{"d":"82,0r0,-110r-83,-130r56,0r51,83r52,-83r55,0r-84,130r0,110r-47,0","w":212},"Z":{"d":"202,-240r-116,200r111,0r0,40r-189,0r117,-200r-99,0r0,-40r176,0","w":210},"[":{"d":"108,-232r-34,0r0,252r34,0r0,38r-76,0r0,-328r76,0r0,38","w":126},"\\":{"d":"198,51r-32,15r-137,-318r31,-15","w":198},"]":{"d":"18,20r34,0r0,-252r-34,0r0,-38r76,0r0,328r-76,0r0,-38","w":126},"^":{"d":"90,-209r-41,87r-46,0r58,-119r58,0r58,119r-46,0","w":180},"_":{"d":"0,57r0,-38r180,0r0,38r-180,0","w":180},"`":{"d":"88,-184r-54,-48r32,-20r42,54","w":180},"a":{"d":"140,-136r0,-20r44,0r0,156r-44,0r0,-20v-48,61,-127,6,-127,-58v0,-67,78,-117,127,-58xm102,-122v-25,0,-44,19,-44,44v0,25,19,44,44,44v25,0,43,-19,43,-44v0,-25,-18,-44,-43,-44","w":205},"b":{"d":"65,-270r0,134v48,-58,127,-10,127,58v0,68,-77,116,-127,58r0,20r-44,0r0,-270r44,0xm104,-122v-25,0,-44,19,-44,44v0,25,19,44,44,44v25,0,43,-19,43,-44v0,-25,-18,-44,-43,-44","w":205},"c":{"d":"13,-77v0,-65,67,-103,125,-75r0,44v-25,-28,-80,-10,-80,30v0,40,50,59,80,30r0,43v-54,24,-125,-3,-125,-72","w":150},"d":{"d":"140,-136r0,-134r44,0r0,270r-44,0r0,-20v-48,61,-127,6,-127,-58v0,-67,78,-117,127,-58xm102,-122v-25,0,-44,19,-44,44v0,25,19,44,44,44v25,0,43,-19,43,-44v0,-25,-18,-44,-43,-44","w":205},"e":{"d":"58,-71v-6,42,60,55,76,21r40,6v-5,12,-23,49,-77,49v-50,0,-84,-36,-84,-83v0,-56,39,-82,82,-83v58,-2,81,45,80,90r-117,0xm60,-99r74,0v-9,-41,-66,-42,-74,0","w":187},"f":{"d":"106,-229v-21,-15,-40,-3,-40,29r0,44r40,0r0,38r-40,0r0,118r-44,0r0,-118r-17,0r0,-38r17,0v-10,-71,13,-136,84,-113r0,40","w":105},"g":{"d":"184,-6v6,45,-32,90,-83,90v-44,0,-79,-25,-84,-66r47,0v3,18,18,28,37,28v49,0,37,-34,39,-67v-47,62,-127,8,-127,-57v0,-44,29,-83,78,-83v29,0,43,16,49,25r0,-20r44,0r0,150xm102,-122v-25,0,-44,19,-44,44v0,25,19,44,44,44v25,0,43,-19,43,-44v0,-25,-18,-44,-43,-44"},"h":{"d":"99,-123v-49,0,-31,73,-34,123r-44,0r0,-270r44,0r0,134v8,-12,23,-25,48,-25v29,0,58,28,58,63r0,98r-44,0v-4,-50,15,-122,-28,-123","w":192},"i":{"d":"21,-156r44,0r0,156r-44,0r0,-156xm17,-222v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,27,-26,27v-14,0,-26,-13,-26,-27","w":85},"j":{"d":"21,-156r44,0r0,240r-44,0r0,-240xm17,-222v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,27,-26,27v-14,0,-26,-13,-26,-27","w":85},"k":{"d":"21,-270r44,0r0,171r58,-57r57,0r-73,69r79,87r-59,0r-58,-67v-9,14,-2,46,-4,67r-44,0r0,-270","w":184},"l":{"d":"21,-270r44,0r0,270r-44,0r0,-270","w":85},"m":{"d":"95,-123v-47,0,-25,75,-30,123r-44,0r0,-156r44,0r0,18v30,-44,88,-16,96,6v8,-12,23,-29,50,-29v78,1,46,92,53,161r-44,0v-4,-42,15,-123,-26,-123v-47,0,-25,75,-30,123r-44,0v-4,-41,15,-123,-25,-123","w":284},"n":{"d":"99,-123v-49,0,-31,73,-34,123r-44,0r0,-156r44,0r0,20v8,-12,23,-25,48,-25v29,0,58,28,58,63r0,98r-44,0v-4,-50,15,-122,-28,-123","w":192},"o":{"d":"13,-78v0,-52,31,-83,89,-83v59,0,90,31,90,83v0,51,-32,83,-90,83v-58,0,-89,-32,-89,-83xm102,-34v26,0,44,-20,44,-44v0,-24,-19,-44,-44,-44v-25,0,-44,20,-44,44v0,24,18,44,44,44"},"p":{"d":"65,-20r0,104r-44,0r0,-240r44,0r0,20v48,-58,127,-10,127,58v0,68,-77,116,-127,58xm104,-122v-25,0,-44,19,-44,44v0,25,19,44,44,44v25,0,43,-19,43,-44v0,-25,-18,-44,-43,-44","w":205},"q":{"d":"140,-136r0,-20r44,0r0,240r-44,0r0,-104v-48,61,-127,6,-127,-58v0,-67,78,-117,127,-58xm102,-122v-25,0,-44,19,-44,44v0,25,19,44,44,44v25,0,43,-19,43,-44v0,-25,-18,-44,-43,-44","w":205},"r":{"d":"123,-116v-28,-20,-58,8,-58,41r0,75r-44,0r0,-156r44,0r0,24v14,-27,35,-33,64,-25","w":129},"s":{"d":"33,-85v-31,-31,3,-84,45,-76v12,0,29,2,49,17r-21,25v-10,-10,-21,-10,-26,-10v-20,0,-25,19,-3,26v25,8,58,16,58,52v0,30,-31,56,-64,56v-32,0,-50,-16,-60,-26r23,-27v9,10,21,18,34,18v25,0,28,-29,8,-32v-15,-7,-31,-10,-43,-23","w":145},"t":{"d":"95,-118r-30,0r0,118r-44,0r0,-118r-17,0r0,-38r17,0r0,-53r44,0r0,53r30,0r0,38","w":97},"u":{"d":"96,5v-37,5,-75,-30,-75,-65r0,-96r44,0v5,50,-18,124,31,124v50,0,27,-74,32,-124r44,0r0,96v6,34,-38,70,-76,65","w":192},"v":{"d":"1,-156r49,0r41,88r41,-88r49,0r-80,159r-20,0","w":181},"w":{"d":"143,-92r-42,95r-20,0r-80,-159r49,0r41,90r42,-94r19,0r42,94r41,-90r49,0r-80,159r-20,0","w":285},"x":{"d":"1,0r74,-85r-60,-71r56,0r31,40r33,-40r55,0r-61,71r74,85r-56,0r-45,-54r-45,54r-56,0","w":203},"y":{"d":"18,84r57,-107r-74,-133r51,0r48,89r43,-89r50,0r-126,240r-49,0","w":193},"z":{"d":"170,-156r-89,119r83,0r0,37r-160,0r89,-118r-75,0r0,-38r152,0","w":174},"{":{"d":"144,-205v-19,-2,-38,3,-38,22v0,40,9,83,-21,97v30,14,19,56,21,96v-3,19,19,25,38,22r0,37v-45,8,-87,-9,-80,-50v-3,-32,11,-82,-19,-87r0,-37v30,-5,16,-55,19,-87v-6,-40,34,-59,80,-50r0,37","w":180},"|":{"d":"68,90r0,-360r44,0r0,360r-44,0","w":180},"}":{"d":"36,32v19,3,41,-2,38,-22v2,-39,-9,-83,21,-96v-30,-14,-19,-57,-21,-97v3,-18,-19,-25,-38,-22r0,-37v45,-8,87,9,80,50v3,32,-11,82,19,87r0,37v-30,5,-16,55,-19,87v6,40,-34,59,-80,50r0,-37","w":180},"~":{"d":"86,-267v28,-3,81,42,97,-1r25,14v-9,22,-26,46,-54,47v-20,1,-55,-19,-71,-18v-16,0,-23,17,-25,22r-26,-14v6,-19,24,-53,54,-50","w":240},"\u0402":{"d":"189,-68v2,-46,-49,-41,-90,-36r0,104r-46,0r0,-200r-51,0r0,-40r177,0r0,40r-80,0r0,56v68,-12,136,1,139,76v3,64,-69,88,-118,61r12,-37v29,17,55,7,57,-24","w":244},"\u201a":{"d":"15,47r38,-97r41,5r-51,95","w":133},"\u201e":{"d":"15,47r38,-97r41,5r-51,95xm83,47r38,-97r40,5r-50,95","w":205},"\u2026":{"d":"23,-23v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28xm124,-23v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28xm226,-23v0,-16,12,-28,28,-28v16,0,28,12,28,28v0,16,-12,28,-28,28v-16,0,-28,-12,-28,-28","w":304},"\u2020":{"d":"81,-212r0,-58r42,0r0,58r57,0r0,37r-57,0r0,233r-42,0r0,-233r-57,0r0,-37r57,0"},"\u2021":{"d":"81,-212r0,-58r42,0r0,58r57,0r0,37r-57,0r0,77r57,0r0,38r-57,0r0,118r-42,0r0,-118r-57,0r0,-38r57,0r0,-77r-57,0r0,-37r57,0"},"\u02c6":{"d":"90,-217r-40,33r-21,-21r61,-50r61,50r-21,21","w":180},"\u2030":{"d":"71,-243v37,0,61,24,61,57v0,33,-24,57,-61,57v-37,0,-60,-24,-60,-57v0,-33,23,-57,60,-57xm71,-155v18,0,31,-13,31,-31v0,-18,-13,-31,-31,-31v-18,0,-30,13,-30,31v0,18,12,31,30,31xm58,-1r143,-247r19,11r-143,247xm207,-110v37,0,61,24,61,57v0,33,-24,57,-61,57v-37,0,-60,-24,-60,-57v0,-33,23,-57,60,-57xm207,-22v18,0,31,-13,31,-31v0,-18,-13,-31,-31,-31v-18,0,-30,13,-30,31v0,18,12,31,30,31xm350,-110v37,0,60,24,60,57v0,33,-23,57,-60,57v-37,0,-61,-24,-61,-57v0,-33,24,-57,61,-57xm350,-22v18,0,30,-13,30,-31v0,-18,-12,-31,-30,-31v-18,0,-30,13,-30,31v0,18,12,31,30,31","w":421},"\u0409":{"d":"4,-40v39,10,46,-25,46,-63r0,-137r164,0r0,94v65,-6,115,13,119,73v3,46,-47,73,-81,73r-85,0r0,-200r-70,0v-2,99,23,214,-93,200r0,-40xm214,-106r0,66v33,-2,59,10,70,-33v6,-24,-33,-38,-70,-33","w":339},"\u040a":{"d":"341,-73v2,46,-47,73,-81,73r-84,0r0,-107r-102,0r0,107r-47,0r0,-240r47,0r0,93r102,0r0,-93r46,0r0,94v65,-6,116,12,119,73xm222,-106r0,66v33,-2,60,10,71,-33v6,-25,-35,-38,-71,-33","w":348},"\u040b":{"d":"184,0v-3,-53,16,-112,-46,-107v-12,0,-26,1,-39,3r0,104r-46,0r0,-200r-51,0r0,-40r169,0r0,40r-72,0r0,56v10,-1,31,-3,43,-3v103,-2,86,62,88,147r-46,0","w":248},"\u040f":{"d":"27,0r0,-240r47,0r0,200r95,0r0,-200r47,0r0,240r-73,0r0,65r-43,0r0,-65r-73,0","w":243},"\u0452":{"d":"102,-123v-49,-1,-31,73,-34,123r-44,0r0,-205r-28,0r0,-28r28,0r0,-37r44,0r0,37r72,0r0,28r-72,0r0,69v8,-12,24,-25,49,-25v29,0,62,28,58,63v-9,85,31,209,-81,182r0,-39v22,9,40,-1,37,-27v-6,-54,19,-140,-29,-141","w":195},"\u2018":{"d":"94,-241r-39,97r-40,-5r51,-95","w":109},"\u2019":{"d":"15,-148r38,-97r41,5r-51,95","w":133},"\u201c":{"d":"161,-241r-38,97r-40,-5r51,-95xm94,-241r-39,97r-40,-5r51,-95","w":177},"\u201d":{"d":"15,-148r38,-97r41,5r-51,95xm83,-148r38,-97r40,5r-50,95","w":205},"\u2022":{"d":"70,-122v0,-28,22,-51,50,-51v28,0,51,23,51,51v0,28,-23,50,-51,50v-28,0,-50,-22,-50,-50","w":240},"\u2013":{"d":"18,-64r0,-38r180,0r0,38r-180,0","w":216},"\u2014":{"d":"18,-64r0,-38r252,0r0,38r-252,0","w":288},"\u02dc":{"d":"63,-234v22,0,58,31,67,1r26,0v0,14,-24,51,-43,46v-23,0,-56,-31,-63,-1r-26,0v1,-19,23,-49,39,-46","w":180},"\u2122":{"d":"89,-213r-30,0r0,110r-30,0r0,-110r-30,0r0,-27r90,0r0,27xm124,-103r-30,0r24,-140r22,0r34,84r35,-84r22,0r22,140r-30,0r-11,-76r-32,77r-12,0r-32,-77","w":259},"\u0459":{"d":"3,-37v53,4,22,-74,30,-119r126,0r0,56v50,-2,89,2,88,49v-1,67,-71,49,-132,51r0,-118r-42,0v0,0,10,125,-70,118r0,-37xm202,-51v0,-19,-24,-14,-43,-15r0,31v20,0,43,4,43,-16","w":256},"\u045a":{"d":"258,-51v-1,67,-71,49,-132,51r0,-63r-61,0r0,63r-44,0r0,-156r44,0r0,55r61,0r0,-55r44,0r0,56v50,-2,89,2,88,49xm212,-51v0,-19,-23,-14,-42,-15r0,31v19,-1,42,4,42,-16","w":267},"\u045b":{"d":"102,-123v-49,0,-31,73,-34,123r-44,0r0,-205r-28,0r0,-28r28,0r0,-37r44,0r0,37r72,0r0,28r-72,0r0,69v8,-12,24,-25,49,-25v29,0,58,28,58,63r0,98r-44,0v-4,-50,15,-123,-29,-123","w":195},"\u045f":{"d":"21,0r0,-156r44,0r0,119r58,0r0,-119r44,0r0,156r-53,0r0,58r-40,0r0,-58r-53,0","w":187},"\u0408":{"d":"42,-38v26,0,24,-22,24,-47r0,-155r47,0r0,162v5,32,-18,83,-67,83v-17,0,-38,-5,-55,-22r28,-34v5,7,12,13,23,13","w":140},"\u00a4":{"d":"32,-246r37,38v38,-24,64,-24,102,0r37,-38r24,24r-37,37v23,38,23,62,0,100r37,37r-24,24r-37,-37v-38,23,-64,23,-102,0r-37,37r-23,-24r37,-37v-23,-38,-23,-62,0,-100r-37,-37xm120,-84v30,0,51,-22,51,-51v0,-29,-21,-51,-51,-51v-30,0,-50,22,-50,51v0,29,20,51,50,51","w":240},"\u0490":{"d":"27,0r0,-240r99,0r0,-54r43,0r0,94r-95,0r0,200r-47,0","w":171},"\u00a6":{"d":"68,-140r0,-130r44,0r0,130r-44,0xm68,90r0,-130r44,0r0,130r-44,0","w":180},"\u00a7":{"d":"68,-165v-56,-24,-34,-112,36,-108v40,3,66,24,67,65r-44,0v2,-17,-9,-29,-24,-29v-13,0,-25,8,-25,24v-6,25,67,37,84,59v11,14,16,29,16,43v0,5,0,44,-42,61v54,21,37,111,-36,111v-40,0,-68,-26,-68,-68r44,0v0,17,10,31,26,31v14,0,24,-11,24,-26v0,-40,-60,-31,-82,-58v-31,-38,-24,-88,24,-105xm72,-108v1,42,59,43,60,0v-1,-42,-59,-41,-60,0"},"\u0401":{"d":"161,-240r0,40r-87,0r0,54r83,0r0,40r-83,0r0,66r87,0r0,40r-134,0r0,-240r134,0xm27,-292v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26xm108,-292v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26","w":178},"\u00a9":{"d":"137,-246v70,0,125,54,125,126v0,72,-56,125,-125,125v-69,0,-125,-53,-125,-125v0,-72,55,-126,125,-126xm137,-223v-56,0,-100,46,-100,103v0,57,44,103,100,103v56,0,100,-46,100,-103v0,-57,-44,-103,-100,-103xm184,-186r0,39v-21,-31,-84,-20,-84,27v0,44,56,63,84,27r0,39v-47,25,-118,-8,-118,-65v0,-36,26,-76,78,-76v19,0,33,5,40,9","w":273},"\u0404":{"d":"16,-120v0,-75,35,-123,125,-126v18,0,40,3,63,15r0,55v-6,-7,-27,-27,-63,-27v-41,0,-70,28,-77,62r115,0r0,41r-115,0v7,70,110,77,140,37r0,54v-11,5,-32,14,-63,14v-41,0,-71,-14,-90,-33v-12,-12,-35,-41,-35,-92","w":219},"\u00ab":{"d":"53,-79r43,59r-25,18r-57,-77r57,-77r25,18xm123,-79r44,59r-25,18r-57,-77r57,-77r25,18","w":185},"\u00ac":{"d":"168,0r-44,0r0,-57r-112,0r0,-40r156,0r0,97","w":180},"\u00ae":{"d":"137,-246v70,0,125,54,125,126v0,72,-56,125,-125,125v-69,0,-125,-53,-125,-125v0,-72,55,-126,125,-126xm137,-223v-56,0,-100,46,-100,103v0,57,44,103,100,103v56,0,100,-46,100,-103v0,-57,-44,-103,-100,-103xm95,-183v41,-4,84,5,84,38v0,17,-12,30,-29,34r38,49r-32,0r-34,-45r0,45r-27,0r0,-121xm122,-159r0,30v11,0,27,2,27,-15v0,-16,-15,-15,-27,-15","w":273},"\u0407":{"d":"27,-240r47,0r0,240r-47,0r0,-240xm0,-294v0,-12,10,-21,22,-21v12,0,21,9,21,21v0,12,-9,22,-21,22v-12,0,-22,-10,-22,-22xm58,-294v0,-12,10,-21,22,-21v12,0,22,9,22,21v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22","w":101},"\u00b0":{"d":"90,-238v31,0,55,22,55,54v0,32,-24,54,-55,54v-31,0,-55,-22,-55,-54v0,-32,24,-54,55,-54xm90,-212v-17,0,-28,11,-28,28v0,17,11,28,28,28v17,0,28,-11,28,-28v0,-17,-11,-28,-28,-28","w":180},"\u00b1":{"d":"12,-128r0,-40r56,0r0,-56r44,0r0,56r56,0r0,40r-56,0r0,56r-44,0r0,-56r-56,0xm12,-19r0,-40r156,0r0,40r-156,0","w":180},"\u0406":{"d":"27,-240r47,0r0,240r-47,0r0,-240","w":101},"\u0456":{"d":"21,-156r44,0r0,156r-44,0r0,-156xm17,-222v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,27,-26,27v-14,0,-26,-13,-26,-27","w":85},"\u0491":{"d":"21,0r0,-156r74,0r0,-45r40,0r0,83r-70,0r0,118r-44,0","w":136},"\u03bc":{"d":"65,62r-44,0r0,-218r44,0r0,75v0,12,2,51,37,51v34,0,35,-38,35,-52r0,-74r44,0r0,156r-44,0r0,-22v-7,32,-62,36,-72,3r0,81","w":201},"\u00b6":{"d":"116,33r-38,0r0,-148v-70,6,-98,-88,-35,-117v46,-21,109,-4,167,-8r0,34r-26,0r0,239r-37,0r0,-239r-31,0r0,239","w":235},"\u00b7":{"d":"3,-103v0,-18,15,-33,33,-33v18,0,33,15,33,33v0,18,-15,33,-33,33v-18,0,-33,-15,-33,-33","w":72},"\u0451":{"d":"58,-71v-6,42,60,55,76,21r40,6v-5,12,-23,49,-77,49v-50,0,-84,-36,-84,-83v0,-56,39,-82,82,-83v58,-2,81,45,80,90r-117,0xm60,-99r74,0v-9,-41,-66,-42,-74,0xm32,-211v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26xm107,-211v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26","w":187},"\u2116":{"d":"74,0r-47,0r0,-240r47,0r110,162r0,-162r47,0r0,240r-47,0r-110,-162r0,162xm313,-240v37,0,61,24,61,57v0,33,-24,57,-61,57v-37,0,-60,-24,-60,-57v0,-33,23,-57,60,-57xm313,-214v-18,0,-30,13,-30,31v0,18,12,31,30,31v18,0,30,-13,30,-31v0,-18,-12,-31,-30,-31xm260,-71r0,-31r106,0r0,31r-106,0","w":388},"\u0454":{"d":"58,-62v4,37,66,39,86,17r0,43v-68,25,-134,-13,-131,-75v3,-55,30,-84,88,-84v23,0,36,7,42,11r0,38v-30,-25,-77,-14,-85,18r69,0r0,32r-69,0","w":156},"\u00bb":{"d":"62,-79r-44,-59r25,-18r57,77r-57,77r-25,-18xm132,-79r-43,-59r25,-18r57,77r-57,77r-25,-18","w":185},"\u0458":{"d":"21,-156r44,0r0,240r-44,0r0,-240xm17,-222v0,-14,12,-26,26,-26v14,0,26,12,26,26v0,14,-12,27,-26,27v-14,0,-26,-13,-26,-27","w":85},"\u0405":{"d":"170,-217r-25,32v-26,-45,-94,-9,-64,23v36,24,98,25,98,89v0,47,-34,78,-84,78v-44,0,-70,-27,-83,-45r31,-29v12,23,33,32,50,32v31,0,51,-36,28,-55v-33,-27,-94,-18,-96,-83v-2,-63,92,-101,145,-42","w":192},"\u0455":{"d":"33,-85v-31,-31,3,-84,45,-76v12,0,29,2,49,17r-21,25v-10,-10,-21,-10,-26,-10v-20,0,-25,19,-3,26v25,8,58,16,58,52v0,30,-31,56,-64,56v-32,0,-50,-16,-60,-26r23,-27v9,10,21,18,34,18v25,0,28,-29,8,-32v-15,-7,-31,-10,-43,-23","w":145},"\u0457":{"d":"21,-156r44,0r0,156r-44,0r0,-156xm0,-211v0,-11,8,-19,19,-19v11,0,20,8,20,19v0,11,-9,19,-20,19v-11,0,-19,-8,-19,-19xm47,-211v0,-11,9,-19,20,-19v11,0,19,8,19,19v0,11,-8,19,-19,19v-11,0,-20,-8,-20,-19","w":85},"\u0410":{"d":"191,0r-21,-50r-97,0r-22,50r-50,0r104,-245r35,0r101,245r-50,0xm87,-89r69,0r-34,-86","w":241},"\u0411":{"d":"189,-72v2,46,-47,72,-82,72r-80,0r0,-240r139,0r0,40r-92,0r0,55v62,-7,113,14,115,73xm74,-104r0,64v36,5,74,-11,67,-32v6,-22,-31,-37,-67,-32","w":205},"\u0412":{"d":"141,-128v52,11,66,73,28,109v-34,32,-86,15,-142,19r0,-240v72,-4,139,-1,141,65v0,31,-21,43,-27,47xm74,-202r0,62v22,-1,50,5,50,-32v0,-27,-23,-31,-50,-30xm141,-72v0,-24,-33,-38,-67,-32r0,66v34,4,67,-7,67,-34","w":205},"\u0413":{"d":"155,-240r0,40r-81,0r0,200r-47,0r0,-240r128,0","w":156},"\u0414":{"d":"4,-40v64,-7,42,-125,46,-200r162,0r0,200r26,0r0,94r-44,0r0,-54r-147,0r0,54r-43,0r0,-94xm96,-200v0,63,4,138,-27,160r97,0r0,-160r-70,0","w":241},"\u0415":{"d":"161,-240r0,40r-87,0r0,54r83,0r0,40r-83,0r0,66r87,0r0,40r-134,0r0,-240r134,0","w":178},"\u0416":{"d":"139,-240r44,0r0,101r80,-101r53,0r-91,111r95,129r-54,0r-77,-108r-6,6r0,102r-44,0r0,-102r-6,-6r-77,108r-54,0r95,-129r-92,-111r54,0r80,101r0,-101","w":321},"\u0417":{"d":"57,-185r-25,-32v39,-47,153,-35,153,34v0,21,-10,40,-29,51v30,8,44,33,44,62v0,87,-156,98,-186,30r31,-29v15,48,107,47,107,0v0,-41,-40,-37,-74,-37r0,-40v32,2,62,-5,61,-31v-2,-36,-57,-36,-82,-8","w":216},"\u0418":{"d":"27,-240r47,0r0,161r133,-167r32,0r0,246r-47,0r0,-162r-132,167r-33,0r0,-245","w":266},"\u0419":{"d":"27,-240r47,0r0,161r133,-167r32,0r0,246r-47,0r0,-162r-132,167r-33,0r0,-245xm68,-304r33,-13v8,20,27,21,32,21v5,0,25,-1,33,-21r32,13v-13,52,-117,52,-130,0","w":266},"\u041a":{"d":"74,-240r0,101r88,-101r59,0r-101,111r107,129r-62,0r-85,-108r-6,6r0,102r-47,0r0,-240r47,0","w":228},"\u041b":{"d":"4,-40v39,10,46,-25,46,-63r0,-137r164,0r0,240r-47,0r0,-200r-70,0v-2,99,23,214,-93,200r0,-40","w":241},"\u041c":{"d":"15,0r45,-244r32,0r65,157r68,-157r33,0r40,244r-47,0r-22,-148r-66,151r-13,0r-63,-151r-24,148r-48,0","w":313},"\u041d":{"d":"74,-240r0,93r102,0r0,-93r46,0r0,240r-46,0r0,-107r-102,0r0,107r-47,0r0,-240r47,0","w":249},"\u041e":{"d":"144,-246v76,0,128,53,128,126v0,73,-52,125,-128,125v-76,0,-128,-52,-128,-125v0,-73,52,-126,128,-126xm144,-37v47,0,80,-34,80,-83v0,-49,-33,-83,-80,-83v-47,0,-80,34,-80,83v0,49,33,83,80,83","w":288},"\u041f":{"d":"27,-240r190,0r0,240r-46,0r0,-200r-97,0r0,200r-47,0r0,-240","w":244},"\u0420":{"d":"97,-240v73,-5,118,68,68,130v-16,19,-52,23,-91,21r0,89r-47,0r0,-240r70,0xm137,-165v-1,-31,-31,-37,-63,-35r0,71v34,4,63,-7,63,-36","w":192},"\u0421":{"d":"16,-120v-1,-103,96,-153,186,-111r0,55v-59,-63,-137,-10,-138,57v-1,79,94,107,138,56r0,54v-14,8,-34,14,-60,14v-81,1,-125,-58,-126,-125","w":217},"\u0422":{"d":"157,-200r-54,0r0,200r-47,0r0,-200r-54,0r0,-40r155,0r0,40","w":159},"\u0423":{"d":"1,-240r54,0r61,121r52,-121r51,0r-111,240r-51,0r33,-67","w":219},"\u0424":{"d":"283,-127v0,72,-54,95,-110,94r0,33r-47,0r0,-33v-56,1,-110,-23,-110,-94v0,-72,53,-96,110,-95r0,-28r47,0r0,28v57,-1,110,23,110,95xm64,-127v1,41,26,54,62,54r0,-108v-33,-1,-63,12,-62,54xm235,-127v0,-39,-21,-55,-62,-54r0,108v35,0,62,-11,62,-54","w":298},"\u0425":{"d":"3,0r85,-127r-72,-113r56,0r42,74r45,-74r56,0r-74,113r82,127r-56,0r-53,-88r-55,88r-56,0","w":230},"\u0426":{"d":"27,0r0,-240r47,0r0,200r95,0r0,-200r47,0r0,200r29,0r0,94r-43,0r0,-54r-175,0","w":248},"\u0427":{"d":"65,-240v3,53,-17,106,46,106v12,0,25,0,38,-2r0,-104r47,0r0,240r-47,0r0,-96v-10,1,-31,3,-43,3v-103,2,-86,-62,-88,-147r47,0","w":223},"\u0428":{"d":"27,0r0,-240r47,0r0,200r77,0r0,-200r47,0r0,200r77,0r0,-200r47,0r0,240r-295,0","w":349},"\u0429":{"d":"27,0r0,-240r47,0r0,200r77,0r0,-200r47,0r0,200r77,0r0,-200r47,0r0,200r29,0r0,94r-44,0r0,-54r-280,0","w":354},"\u042a":{"d":"218,-73v2,46,-47,73,-81,73r-84,0r0,-200r-51,0r0,-40r97,0r0,94v65,-6,116,12,119,73xm99,-106r0,66v33,-2,61,10,71,-33v6,-24,-34,-38,-71,-33","w":225},"\u042b":{"d":"193,-73v2,46,-47,73,-81,73r-85,0r0,-240r47,0r0,94v65,-6,116,12,119,73xm74,-106r0,66v33,-2,61,10,71,-33v6,-24,-34,-38,-71,-33xm214,-240r47,0r0,240r-47,0r0,-240","w":288},"\u042c":{"d":"193,-73v2,46,-47,73,-81,73r-85,0r0,-240r47,0r0,94v65,-6,116,12,119,73xm74,-106r0,66v33,-2,61,10,71,-33v6,-24,-34,-38,-71,-33","w":200},"\u042d":{"d":"78,-246v91,3,126,51,126,126v0,51,-24,80,-36,92v-19,19,-48,33,-89,33v-31,0,-52,-9,-63,-14r0,-54v47,46,126,31,140,-37r-108,0r0,-41r107,0v-17,-68,-87,-83,-139,-35r0,-55v23,-12,44,-15,62,-15","w":219},"\u042e":{"d":"230,5v-79,0,-110,-30,-124,-112r-32,0r0,107r-47,0r0,-240r47,0r0,93r33,0v17,-69,53,-99,123,-99v74,0,124,53,124,126v0,73,-50,125,-124,125xm230,-37v45,0,75,-34,75,-83v-2,-113,-149,-111,-151,0v0,49,31,83,76,83","w":369},"\u042f":{"d":"22,-166v0,-78,75,-78,155,-74r0,240r-47,0r0,-93r-8,0r-62,93r-56,0r72,-97v-32,-7,-54,-28,-54,-69xm130,-202v-25,1,-52,-6,-59,36v6,42,36,35,59,36r0,-72"},"\u0430":{"d":"140,-136r0,-20r44,0r0,156r-44,0r0,-20v-48,61,-127,6,-127,-58v0,-67,78,-117,127,-58xm102,-122v-25,0,-44,19,-44,44v0,25,19,44,44,44v25,0,43,-19,43,-44v0,-25,-18,-44,-43,-44","w":205},"\u0431":{"d":"194,-78v-1,80,-90,108,-150,63v-52,-40,-22,-157,-4,-184v28,-44,85,-28,105,-60r41,0v-13,90,-118,29,-129,119v50,-42,139,-20,137,62xm105,-34v26,0,44,-20,44,-44v0,-25,-18,-44,-44,-44v-26,0,-44,19,-44,44v0,24,18,44,44,44","w":207},"\u0432":{"d":"153,-45v-3,61,-73,42,-132,45r0,-156v55,1,119,-11,121,40v0,13,-8,26,-22,32v18,4,33,15,33,39xm102,-108v0,-19,-20,-12,-37,-13r0,27v18,1,36,1,37,-14xm107,-51v0,-19,-23,-14,-42,-15r0,31v19,-1,42,4,42,-16","w":164},"\u0433":{"d":"21,0r0,-156r99,0r0,38r-55,0r0,118r-44,0","w":122},"\u0434":{"d":"1,-37v46,-5,32,-70,34,-119r130,0r0,119r23,0r0,82r-40,0r0,-45r-107,0r0,45r-40,0r0,-82xm121,-37r0,-81r-46,0v0,34,4,65,-17,81r63,0","w":190},"\u0435":{"d":"58,-71v-6,42,60,55,76,21r40,6v-5,12,-23,49,-77,49v-50,0,-84,-36,-84,-83v0,-56,39,-82,82,-83v58,-2,81,45,80,90r-117,0xm60,-99r74,0v-9,-41,-66,-42,-74,0","w":187},"\u0436":{"d":"100,-156r40,0r0,61r47,-61r51,0r-59,71r62,85r-53,0r-42,-61v-12,10,-3,41,-6,61r-40,0v-2,-20,5,-49,-5,-61r-42,61r-54,0r63,-85r-59,-71r51,0r46,61r0,-61","w":240},"\u0437":{"d":"55,-96v19,1,40,1,40,-15v0,-20,-48,-18,-58,-3r-20,-27v35,-29,118,-32,118,24v0,20,-15,29,-22,33v18,5,32,15,32,39v-1,39,-35,49,-69,50v-19,0,-46,-4,-67,-26r22,-27v17,22,67,23,69,-1v0,-18,-25,-15,-45,-15r0,-32","w":158},"\u0438":{"d":"21,-156r44,0r0,96r72,-96r44,0r0,156r-44,0r0,-96r-72,96r-44,0r0,-156","w":201},"\u0439":{"d":"21,-156r44,0r0,96r72,-96r44,0r0,156r-44,0r0,-96r-72,96r-44,0r0,-156xm131,-234r29,14v-10,30,-40,37,-59,37v-19,0,-49,-7,-59,-37r29,-14v5,28,53,32,60,0","w":201},"\u043a":{"d":"21,-156r44,0r0,61r58,-61r55,0r-71,70r74,86r-56,0r-54,-64v-13,11,-3,43,-6,64r-44,0r0,-156","w":180},"\u043b":{"d":"3,-37v53,4,22,-74,30,-119r126,0r0,156r-44,0r0,-118r-42,0v0,0,10,125,-70,118r0,-37","w":180},"\u043c":{"d":"4,0r29,-160r32,0r43,94r43,-94r32,0r29,160r-44,0r-13,-85r-41,88r-12,0r-41,-88r-13,85r-44,0","w":216},"\u043d":{"d":"21,0r0,-156r44,0r0,55r61,0r0,-55r44,0r0,156r-44,0r0,-63r-61,0r0,63r-44,0","w":190},"\u043e":{"d":"13,-78v0,-52,31,-83,89,-83v59,0,90,31,90,83v0,51,-32,83,-90,83v-58,0,-89,-32,-89,-83xm102,-34v26,0,44,-20,44,-44v0,-24,-19,-44,-44,-44v-25,0,-44,20,-44,44v0,24,18,44,44,44"},"\u043f":{"d":"21,-156r147,0r0,156r-43,0r0,-118r-60,0r0,118r-44,0r0,-156","w":189},"\u0440":{"d":"65,-20r0,104r-44,0r0,-240r44,0r0,20v48,-58,127,-10,127,58v0,68,-77,116,-127,58xm104,-122v-25,0,-44,19,-44,44v0,25,19,44,44,44v25,0,43,-19,43,-44v0,-25,-18,-44,-43,-44","w":205},"\u0441":{"d":"13,-77v0,-65,67,-103,125,-75r0,44v-25,-28,-80,-10,-80,30v0,40,50,59,80,30r0,43v-54,24,-125,-3,-125,-72","w":150},"\u0442":{"d":"132,-118r-43,0r0,118r-44,0r0,-118r-43,0r0,-38r130,0r0,38","w":134},"\u0443":{"d":"18,84r57,-107r-74,-133r51,0r48,89r43,-89r50,0r-126,240r-49,0","w":193},"\u0444":{"d":"235,-78v0,60,-37,78,-89,80r0,82r-44,0r0,-82v-52,-1,-89,-20,-89,-80v0,-59,42,-80,89,-80r0,-82r44,0r0,82v48,0,89,21,89,80xm102,-119v-40,-2,-62,48,-28,75v7,5,18,7,28,7r0,-82xm146,-37v42,3,62,-50,28,-75v-8,-6,-19,-7,-28,-7r0,82","w":248},"\u0445":{"d":"1,0r74,-85r-60,-71r56,0r31,40r33,-40r55,0r-61,71r74,85r-56,0r-45,-54r-45,54r-56,0","w":203},"\u0446":{"d":"21,0r0,-156r44,0r0,119r58,0r0,-119r44,0r0,119r25,0r0,82r-39,0r0,-45r-132,0","w":195},"\u0447":{"d":"59,-110v-2,23,26,27,50,21r0,-67r44,0r0,156r-44,0r0,-53v-46,13,-94,-6,-94,-48r0,-55r44,0r0,46","w":174},"\u0448":{"d":"21,0r0,-156r44,0r0,119r50,0r0,-119r44,0r0,119r51,0r0,-119r43,0r0,156r-232,0","w":274},"\u0449":{"d":"21,0r0,-156r44,0r0,119r50,0r0,-119r44,0r0,119r51,0r0,-119r43,0r0,119r26,0r0,82r-40,0r0,-45r-218,0","w":281},"\u044a":{"d":"172,-51v0,68,-71,48,-132,51r0,-118r-38,0r0,-38r82,0r0,56v48,-3,88,2,88,49xm127,-51v0,-19,-24,-14,-43,-15r0,31v20,0,43,4,43,-16","w":181},"\u044b":{"d":"153,-51v0,67,-71,49,-132,51r0,-156r44,0r0,56v48,-3,88,2,88,49xm107,-51v0,-19,-23,-14,-42,-15r0,31v19,-1,42,4,42,-16xm169,-156r44,0r0,156r-44,0r0,-156","w":234},"\u044c":{"d":"153,-51v0,67,-71,49,-132,51r0,-156r44,0r0,56v48,-3,88,2,88,49xm107,-51v0,-19,-23,-14,-42,-15r0,31v19,-1,42,4,42,-16","w":162},"\u044d":{"d":"143,-78v2,71,-63,98,-131,75r0,-43v33,26,80,21,85,-17r-65,0r0,-32r65,0v-11,-39,-48,-39,-84,-18r0,-38v66,-25,128,-4,130,73","w":156},"\u044e":{"d":"169,5v-51,0,-72,-20,-83,-65r-21,0r0,60r-44,0r0,-156r44,0r0,59r21,0v8,-42,40,-64,83,-64v57,0,84,32,88,83v-6,51,-25,83,-88,83xm169,-34v25,0,43,-20,43,-44v0,-25,-18,-44,-43,-44v-25,0,-42,19,-42,44v0,24,17,44,42,44","w":270},"\u044f":{"d":"16,-104v5,-61,68,-52,129,-52r0,156r-44,0r0,-55r-5,0r-38,55r-51,0r46,-58v-13,-1,-39,-19,-37,-46xm61,-103v-1,17,20,19,40,17r0,-35v-21,-2,-40,0,-40,18","w":165},"\u0403":{"d":"155,-240r0,40r-81,0r0,200r-47,0r0,-240r128,0xm92,-262r-20,-18r50,-51r33,25","w":156},"\u0453":{"d":"21,0r0,-156r99,0r0,38r-55,0r0,118r-44,0xm93,-252r32,20r-54,48r-21,-14","w":122},"\u040c":{"d":"74,-240r0,101r88,-101r59,0r-101,111r107,129r-62,0r-85,-108r-6,6r0,102r-47,0r0,-240r47,0xm106,-262r-20,-18r50,-51r32,25","w":228},"\u045c":{"d":"21,-156r44,0r0,61r58,-61r55,0r-71,70r74,86r-56,0r-54,-64v-13,11,-3,43,-6,64r-44,0r0,-156xm114,-252r32,20r-54,48r-20,-14","w":180},"\u040e":{"d":"1,-240r54,0r61,121r52,-121r51,0r-111,240r-51,0r33,-67xm47,-304r32,-13v8,20,28,21,33,21v5,0,24,-1,32,-21r32,13v-12,52,-116,52,-129,0","w":219},"\u045e":{"d":"18,84r57,-107r-74,-133r51,0r48,89r43,-89r50,0r-126,240r-49,0xm129,-234r29,14v-10,30,-40,37,-59,37v-19,0,-49,-7,-59,-37r28,-14v6,28,54,32,61,0","w":193},"\u00a0":{"w":83}}});
;
Drupal.behaviors.jqwidont_Behavior = function (context) {
  $('.studio, h4.studio, .show-title, h1').widont();
}

;
/**
 * jQWidon't v0.1 - Suppress typographic widows
 *   * http://davecardwell.co.uk/javascript/jquery/plugins/jquery-widont/0.1/
 *
 * Dave Cardwell <http://davecardwell.co.uk/>
 *
 * Built on the shoulders of giants:
 *   * John Resig <http://jquery.com/>
 *   * Shaun Inman <http://www.shauninman.com/plete/2006/08/...
 *                                             ...widont-wordpress-plugin.php>
 *
 *
 * Copyright (c) 2006 Dave Cardwell, dual licensed under the MIT and GPL
 * licenses:
 *   * http://www.opensource.org/licenses/mit-license.php
 *   * http://www.gnu.org/licenses/gpl.txt
 */


/**
 * For the latest version of this plugin, and a discussion of its usage and
 * implementation, visit:
 *   * http://davecardwell.co.uk/javascript/jquery/plugins/jquery-widont/
 */

new function() {
    /**
     * The following functions and attributes form the Public interface of the
     * jQWidon't plugin, accessed externally through the $.jqwidont object.
     * See the relevant function definition later in the source for further
     * information.
     *
     * $.jqwidont.auto()
     * $.jqwidont.auto( bool )
     * $.jqwidont.init()
     *
     * $.jqwidont.transform( string )
     */
    var Public = {
        // Given a boolean argument, auto() will turn initialisation at
        // $(document).ready() on or off accordingly.  Without, it simply
        // returns the current status.  init() performs the necessary steps to
        // start the jQWidon't plugin, including suppressing widows in all
        // <h*> elements in the page.
             'auto': function( bool ) {
                         return bool != undefined ? Private.auto = bool
                                                  : Private.auto;
                     },
             'init': function() {
                         return Private.init();
                     },

        // Perform the 'widont' transformation on a given string.
        'transform': function( string ) {
                         return Private.widont( string );
                     }
    };

    // Allow external access to the 'Public' interface through the $.jqwidont
    // object.
    $.jqwidont = Public;



    /**
     * The following functions and attributes form the internal methods and
     * state of the jQWidon't plugin.  See the relevant function definition
     * later in the source for further information.
     *
     * Private.auto
     * Private.init()
     *
     * Private.widont( string )
     *
     * Private.regexp
     */
    var Private = {
        // When auto is true (default), the init() function will be called at
        // $(document).ready().  init() itself performs the necessary steps to
        // start the jQWidon't plugin.
            'auto': false,
            'init': init,

        // Add a non-breaking space between the last two words of a given
        // string.
          'widont': widont,

        // Regular expression for use later in the plugin.
          'regexp': new RegExp(
                        '([\\n\\r\\s]+'            // whitespace/newlines
                      + '[^\\n\\r\\s(?:&#160;)]+)'  // a word
                      + '[\\n\\r\\s]+'            // whitespace/newlines
                      + '([^\\n\\r\\s(?:&#160;)]+' // non-whitespace/newlines
                      + '[\\n\\r\\s]*)$'            // trailing whitespace

                        , 'm' // match across newlines
                    ),
        // Single letter words
        'single': new RegExp(            
            '([\\n\\r\\s]+'
          + '[^\\n\\r\\s(?:&#160;)]{1})' // single-letter words
          + '[\\n\\r\\s]+'               // whitespaces
            , 'gm' 
        ),
        // Some prepositions
        'prepositions': new RegExp(            
              '([\\n\\r\\s]+'
            + '(an|as|at|by|for|from|in|of|off|on|onto|out|per|to|up|upon|via' // English  
            + 'в|без|до|из|к|на|по|о|от|перед|при|через|с|у|нет|за|над|для|об|под|про)' // Russian
            + ')[\\n\\r\\s]+'            // whitespaces
              , 'gm' 
        ),
        // Regular expression for later replacing initials with spaces
        'initials': new RegExp(
              '([\\n\\r\\s]+'
            + '[^\\n\\r\\s(?:&#160;)]{1}[.])' // single-letter word with dot
            + '[\\n\\r\\s]+'            // whitespaces
              , 'gm' 
          )
    };



    /**
     * Unless disabled before $(document).ready() is triggered, execute the
     * init() function.
     */
    $(document).ready(function() {
        if( Private.auto ) init();
    });


    /**
     * Perform the necessary initialisation to use the jQWidon't plugin.
     */
    function init() {
        // Use the plugin on all <h*> elements in the page..
        $( 'h1,h2,h3,h4,h5,h6' ).widont();
    };



    /**
     * Use the jQWidon't plugin on the given elements.
     */
    $.fn.widont = function() {
        return $(this).each(function() {
            var $obj = $(this);

            $obj.html( Private.widont( $obj.html() ) );
        });
    };



    /**
     * This function takes a string and uses the Private.regexp function to
     * attempt to replace the whitespace between the final two words with a
     * non-breaking space, so that line-wrapping cannot occur between them.
     */
    function widont( string ) {
        s = string;
        s = s.replace(Private.single, "$1&#160;");
        s = s.replace(Private.prepositions, "$1&#160;");
        s = s.replace( Private.initials, "$1&#160;" );
        return s.replace( Private.regexp, "$1&#160;$2" );
    };
}();
;

