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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
// $Id: ajax_load.js,v 1.11 2009/09/20 14:22:29 markuspetrux Exp $

(function ($) {

Drupal.AjaxLoad = Drupal.AjaxLoad || { externalScripts: [], loadPending: [] };

/**
 * Load JavaScript and CSS files and data. 
 */
Drupal.AjaxLoad.loadFiles = function (target, response) {
  // Handle scripts.

  // Initialize the list of currently loaded external scripts.
  if (Drupal.AjaxLoad.externalScripts.length < 1) {
    $('script[src]').each(function() {
      Drupal.AjaxLoad.externalScripts.push($(this).attr('src'));
    });
  }
  // See if we have any settings to extend. Do this first so that behaviors
  // can access the new settings easily.
  if (response.scripts) {
    // Each Ajax operation needs its own counter.
    var index = Drupal.AjaxLoad.loadPending.length;
    Drupal.AjaxLoad.loadPending[index] = 0;
    if (!response.__customSettings && response.scripts.setting) {
      $.extend(Drupal.settings, response.scripts.setting);
    }
    // Inline scripts will be handled separately.
    var types = ['core', 'module', 'theme'];
    $.each(types, function (i, type) {
      if (response.scripts[type]) {
        $.each(response.scripts[type], function (src, data) {
          // Load scripts.
          src = Drupal.settings.basePath + src;
          // Test if the script already exists.
          var found = false;
          for (var j = 0; j < Drupal.AjaxLoad.externalScripts.length; j++) {
            if (Drupal.AjaxLoad.externalScripts[j].indexOf(src) == 0) {
              found = true;
              break;
            }
          }
          if (!found) {
            Drupal.AjaxLoad.loadPending[index]++;
            $.getScript(src, function () {
              Drupal.AjaxLoad.externalScripts.push(src);
              Drupal.AjaxLoad.loadComplete(index, target, response);
            });
          }
        });
      }
    });
    // Ensure Drupal behaviors are attached to new content, even when no
    // new external scripts have been loaded.
    if (Drupal.AjaxLoad.loadPending[index] == 0) {
      Drupal.attachBehaviors(target);
      // Ensure inline scripts are parsed after all external scripts have loaded.
      Drupal.AjaxLoad.loadInline(response);
    }
  }
  if (response.css) {
    // Handle stylesheets.
    var types = ['module', 'theme'];
    $.each(response.css, function (media, files) {
      $.each(types, function (i, type) {
        if (files[type]) {
          $.each(files[type], function (src, data) {
            src = Drupal.settings.basePath + src;
            // Test if the stylesheet already exists.
            if (!$('link[href*=' + src + ']').size()) {
              $('<link type="text/css" rel="stylesheet" media="' + media + '" href="' + src + '" />').appendTo('head');
            }
          });
        }
      });
    });
  }
};

/**
 * When all scripts have loaded, attach behaviors. 
 */
Drupal.AjaxLoad.loadInline = function(response) {
  // Handle inline scripts.
  if (response.scripts.inline) {
    $.each(response.scripts.inline, function (i, script) {
      // document.write calls would mess things up.
      if (script.code.indexOf('document.write') == -1) {
        eval(script.code);
      }
    });
  }
};

/**
 * When all scripts have loaded, attach behaviors. 
 */
Drupal.AjaxLoad.loadComplete = function(index, target, response) {
  Drupal.AjaxLoad.loadPending[index]--;
  if (Drupal.AjaxLoad.loadPending[index] == 0) {
    Drupal.attachBehaviors(target);
    // Ensure inline scripts are parsed after all external scripts have loaded.
    Drupal.AjaxLoad.loadInline(response);
  }
};

})(jQuery);
;

jQuery(document).ready(function($) {

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

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

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

/**
 * Open Mollom privacy policy link in a new window.
 *
 * Required for valid XHTML Strict markup.
 */
Drupal.behaviors.mollomPrivacy = function (context) {
  $('.mollom-privacy a', context).click(function () {
    this.target = '_blank';
  });
};

/**
 * Attach click event handlers for CAPTCHA links.
 */
Drupal.behaviors.mollomCaptcha = function (context) {
  $('a.mollom-switch-captcha', context).click(getMollomCaptcha);
};

/**
 * Fetch a Mollom CAPTCHA and output the image or audio into the form.
 */
function getMollomCaptcha() {
  // Get the current requested CAPTCHA type from the clicked link.
  var newCaptchaType = $(this).hasClass('mollom-audio-captcha') ? 'audio' : 'image';

  var context = $(this).parents('form');

  // Extract the Mollom session id from the form.
  var mollomSessionId = $('input.mollom-session-id', context).val();

  // Retrieve a CAPTCHA:
  $.getJSON(Drupal.settings.basePath + 'mollom/captcha/' + newCaptchaType + '/' + mollomSessionId,
    function (data) {
      if (!(data && data.content)) {
        return;
      }
      // Inject new CAPTCHA.
      $('.mollom-captcha-content', context).parent().html(data.content);
      // Update session id.
      $('input.mollom-session-id', context).val(data.session_id);
      // Add an onclick-event handler for the new link.
      Drupal.attachBehaviors(context);
      // Focus on the CATPCHA input.
      $('input[name="mollom[captcha]"]', context).focus();
    }
  );
  return false;
}

})(jQuery);
;
/*	SWFObject v2.2 <http://code.google.com/p/swfobject/> 
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/
var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return !a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
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("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}})());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}})());;
(function ($) {
// $Id: captcha.js,v 1.2.2.3 2011/02/06 20:45:12 soxofaan Exp $

// Javascript behaviors for general CAPTCHA functionality.
Drupal.behaviors.captcha = function (context) {

  // Turn off autocompletion for the CAPTCHA response field.
  // We do it here with Javascript (instead of directly in the markup)
  // because this autocomplete attribute is not standard and
  // it would break (X)HTML compliance.
  $("#edit-captcha-response").attr("autocomplete", "off");

};


// JavaScript behaviors for the CAPTCHA admin page
Drupal.behaviors.captchaAdmin = function (context) {

	// Add onclick handler to checkbox for adding a CAPTCHA description
	// so that the textfields for the CAPTCHA description are hidden
	// when no description should be added.
	$("#edit-captcha-add-captcha-description").click(function() {
		if ($("#edit-captcha-add-captcha-description").is(":checked")) {
			// Show the CAPTCHA description textfield(s).
			$("#edit-captcha-description-wrapper").show("slow");
		}
		else {
			// Hide the CAPTCHA description textfield(s).
			$("#edit-captcha-description-wrapper").hide("slow");
		}
	});
	// Hide the CAPTCHA description textfields if option is disabled on page load.
	if (!$("#edit-captcha-add-captcha-description").is(":checked")) {
		$("#edit-captcha-description-wrapper").hide();
	}

}
})(jQuery);;;

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

(function ($) {

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

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

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

    // Ensure that start comes before end for datepicker.
    if (startYear > endYear) {
      var greaterYear = startYear;
      startYear = endYear;
      endYear = greaterYear;
    }

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

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

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

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

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

})(jQuery);;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * (c) 2008 Typodermic. This font is freeware. Read attached text file for
 * details. Check out the rest of the Negotiate family and the OpenType version at
 * Typodermic: http://www.typodermic.com
 * 
 * Trademark:
 * Negotiate is a trademark of Typodermic Fonts
 * 
 * Manufacturer:
 * Ray Larabie
 * 
 * Designer:
 * Ray Larabie
 * 
 * Vendor URL:
 * http://www.typodermic.com
 */
Cufon.registerFont({"w":185,"face":{"font-family":"Negotiate Free","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 3 0 0 2 0 4","ascent":"269","descent":"-91","x-height":"3","bbox":"-41 -333 339 92","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+F739"},"glyphs":{" ":{"w":70},"!":{"d":"43,-258v18,0,22,13,21,29r-11,160r-21,0r-10,-171v1,-12,7,-18,21,-18xm43,-40v18,0,21,4,21,21v0,19,-4,20,-21,20v-17,0,-21,-2,-21,-20v0,-17,3,-21,21,-21","w":85},"\"":{"d":"96,-178r-13,0v-3,-22,-9,-40,-10,-64v0,-12,5,-17,16,-17v33,0,7,67,7,81xm42,-178r-12,0v-3,-22,-9,-40,-10,-64v0,-12,5,-17,16,-17v33,0,7,56,6,81","w":126,"k":{"\uf730":7,"\u0219":7,"\u01ff":7,"\u01fe":7,"\u01fa":41,"\u0161":7,"\u015f":7,"\u015d":7,"\u015b":7,"\u0153":7,"\u0151":7,"\u0150":7,"\u014f":7,"\u014e":7,"\u014d":7,"\u014c":7,"\u0134":26,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010b":7,"\u0109":7,"\u0107":7,"\u0104":41,"\u0102":41,"\u0100":41,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c5":41,"\u00c4":41,"\u00c3":41,"\u00c2":41,"\u00c1":41,"\u00c0":41,"s":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"Q":7,"O":7,"J":26,"A":41}},"#":{"d":"140,-190r28,0r0,23r-32,0r-6,50r30,0r0,23r-33,0r-8,69r-25,0r9,-69r-39,0r-8,69r-25,0r9,-69r-28,0r0,-23r31,0r7,-50r-31,0r0,-23r34,0r7,-61r25,0r-8,61r38,0r8,-61r24,0xm74,-167r-7,50r38,0r7,-50r-38,0","w":179},"$":{"d":"68,-118v-56,-16,-46,-111,19,-106r0,-33r24,0r0,33v27,2,54,10,55,34v-10,40,-40,-4,-68,-4v-28,0,-41,31,-14,41v37,14,89,15,87,69v-2,36,-26,52,-60,57r0,34r-24,0r0,-34v-31,-3,-57,-21,-64,-48r28,-7v6,28,80,39,80,1v0,-29,-38,-30,-63,-37","w":199},"%":{"d":"73,0r-28,0r158,-251r29,0xm10,-188v0,-39,11,-65,52,-65v40,0,52,25,51,65v-1,45,-10,67,-51,68v-42,2,-52,-28,-52,-68xm84,-188v0,-22,-2,-41,-22,-42v-22,0,-23,21,-23,42v0,28,3,43,23,46v21,-2,22,-18,22,-46xm159,-65v0,-44,12,-66,52,-66v40,0,51,23,51,66v0,46,-10,68,-51,68v-41,0,-52,-23,-52,-68xm233,-66v0,-23,-1,-42,-22,-42v-21,0,-23,19,-23,42v1,29,2,43,23,46v21,-3,22,-17,22,-46","w":272},"&":{"d":"82,-147v-17,-43,-16,-115,42,-111v31,2,49,19,54,49r-26,6v-1,-14,-8,-23,-22,-23v-37,2,-17,60,-9,85v8,24,18,49,31,68v11,-15,22,-34,27,-52r27,8v-8,25,-19,50,-34,70v9,22,49,10,52,34v1,10,-7,16,-18,16v-24,0,-41,-13,-55,-26v-16,14,-37,26,-65,26v-53,-1,-76,-30,-76,-85v0,-47,31,-81,72,-65xm47,-85v-6,53,52,70,82,37v-18,-21,-27,-52,-43,-75v-23,-11,-42,12,-39,38","w":226},"'":{"d":"42,-178r-12,0v-3,-22,-9,-40,-10,-64v0,-12,5,-17,16,-17v33,0,7,56,6,81","w":72,"k":{"\uf730":7,"\u0219":7,"\u01ff":7,"\u01fe":7,"\u01fa":41,"\u0161":7,"\u015f":7,"\u015d":7,"\u015b":7,"\u0153":7,"\u0151":7,"\u0150":7,"\u014f":7,"\u014e":7,"\u014d":7,"\u014c":7,"\u0134":26,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010b":7,"\u0109":7,"\u0107":7,"\u0104":41,"\u0102":41,"\u0100":41,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c5":41,"\u00c4":41,"\u00c3":41,"\u00c2":41,"\u00c1":41,"\u00c0":41,"s":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"Q":7,"O":7,"J":26,"A":41}},"(":{"d":"76,61v-71,-71,-72,-260,0,-332r13,10v-52,72,-52,240,0,312","w":93},")":{"d":"4,51v52,-71,52,-241,0,-312r13,-10v71,72,72,260,0,332","w":93},"*":{"d":"83,-236v-2,-19,23,-19,24,-4v-4,18,-12,34,-18,51v16,-10,31,-22,49,-30v14,1,12,25,-2,25r-42,14v18,9,47,8,56,26v-11,31,-44,-10,-60,-17r18,53v0,6,-5,10,-12,10v-19,-5,-10,-40,-16,-60v-12,15,-17,40,-35,49v-10,0,-17,-13,-8,-21r35,-34v-20,-1,-56,19,-61,-5v3,-23,41,-4,60,-5v-13,-15,-31,-25,-40,-43v1,-12,16,-16,23,-5r25,40","w":159},"+":{"d":"134,-100r-48,0r0,48r-24,0r0,-48r-49,0r0,-24r49,0r0,-48r24,0r0,48r48,0r0,24","w":146},",":{"d":"32,-40v41,0,13,52,0,67v-6,8,-6,7,-11,14r-9,-7v5,-9,13,-18,14,-29v-2,-11,-15,-10,-14,-24v0,-18,3,-21,20,-21","w":63,"k":{"\uf730":7,"\u201d":26,"\u201c":26,"\u2019":26,"\u2018":26,"\u1ef3":11,"\u1ef2":30,"\u1e85":11,"\u1e84":19,"\u1e83":11,"\u1e82":19,"\u1e81":11,"\u1e80":19,"\u0219":7,"\u0218":4,"\u01ff":7,"\u01fe":11,"\u0178":30,"\u0177":11,"\u0176":30,"\u0175":11,"\u0174":19,"\u0172":7,"\u0170":7,"\u016e":7,"\u016c":7,"\u016a":7,"\u0168":7,"\u0166":19,"\u0164":19,"\u0162":19,"\u0161":7,"\u0160":4,"\u015f":7,"\u015e":4,"\u015d":7,"\u015c":4,"\u015b":7,"\u015a":4,"\u0153":7,"\u0152":11,"\u0151":7,"\u0150":11,"\u014f":7,"\u014e":11,"\u014d":7,"\u014c":11,"\u0122":11,"\u0120":11,"\u011e":11,"\u011c":11,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010c":11,"\u010b":7,"\u010a":11,"\u0109":7,"\u0108":11,"\u0107":7,"\u0106":11,"\u00ff":11,"\u00fd":11,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00dd":30,"\u00dc":7,"\u00db":7,"\u00da":7,"\u00d9":7,"\u00d8":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":11,"y":11,"w":11,"v":11,"s":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"Y":30,"W":19,"V":19,"U":7,"T":19,"S":4,"Q":11,"O":11,"G":11,"C":11,"9":4,"8":11,"7":7,"6":7,"4":22,"1":23,"0":15,"'":26,"\"":26}},"-":{"d":"98,-102r-88,0r0,-23r88,0r0,23","w":108,"k":{"\u1ef2":37,"\u1e84":19,"\u1e82":19,"\u1e80":19,"\u0218":15,"\u017d":19,"\u017b":19,"\u0179":19,"\u0178":37,"\u0176":37,"\u0174":19,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":15,"\u015e":15,"\u015c":15,"\u015a":15,"\u0134":30,"\u00dd":37,"Z":19,"Y":37,"X":22,"W":19,"V":19,"T":30,"S":15,"J":30}},".":{"d":"38,-40v18,0,21,4,21,21v0,19,-4,20,-21,20v-17,0,-21,-2,-21,-20v0,-17,3,-21,21,-21","w":71,"k":{"\uf730":7,"\u201d":26,"\u201c":26,"\u2019":26,"\u2018":26,"\u1ef3":11,"\u1ef2":30,"\u1e85":11,"\u1e84":19,"\u1e83":11,"\u1e82":19,"\u1e81":11,"\u1e80":19,"\u0219":7,"\u0218":4,"\u01ff":7,"\u01fe":11,"\u0178":30,"\u0177":11,"\u0176":30,"\u0175":11,"\u0174":19,"\u0172":7,"\u0170":7,"\u016e":7,"\u016c":7,"\u016a":7,"\u0168":7,"\u0166":19,"\u0164":19,"\u0162":19,"\u0161":7,"\u0160":4,"\u015f":7,"\u015e":4,"\u015d":7,"\u015c":4,"\u015b":7,"\u015a":4,"\u0153":7,"\u0152":11,"\u0151":7,"\u0150":11,"\u014f":7,"\u014e":11,"\u014d":7,"\u014c":11,"\u0122":11,"\u0120":11,"\u011e":11,"\u011c":11,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010c":11,"\u010b":7,"\u010a":11,"\u0109":7,"\u0108":11,"\u0107":7,"\u0106":11,"\u00ff":11,"\u00fd":11,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00dd":30,"\u00dc":7,"\u00db":7,"\u00da":7,"\u00d9":7,"\u00d8":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":11,"y":11,"w":11,"v":11,"s":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"Y":30,"W":19,"V":19,"U":7,"T":19,"S":4,"Q":11,"O":11,"G":11,"C":11,"9":4,"8":11,"7":7,"6":7,"4":22,"1":23,"0":15,"'":26,"\"":26}},"\/":{"d":"21,22r-25,0r86,-290r25,0","w":105,"k":{"\uf730":23,"\u0219":23,"\u0218":11,"\u01ff":23,"\u01fe":15,"\u01fb":11,"\u01fa":33,"\u017e":8,"\u017c":8,"\u017a":8,"\u0173":11,"\u0171":11,"\u016f":11,"\u016d":11,"\u016b":11,"\u0169":11,"\u0166":-15,"\u0164":-15,"\u0162":-15,"\u0161":23,"\u0160":11,"\u015f":23,"\u015e":11,"\u015d":23,"\u015c":11,"\u015b":23,"\u015a":11,"\u0159":11,"\u0157":11,"\u0155":11,"\u0153":23,"\u0152":11,"\u0151":23,"\u0150":15,"\u014f":23,"\u014e":15,"\u014d":23,"\u014c":15,"\u014b":11,"\u0149":11,"\u0148":11,"\u0146":11,"\u0144":11,"\u0134":30,"\u0122":11,"\u0120":11,"\u011e":11,"\u011c":11,"\u0119":23,"\u0117":23,"\u0115":23,"\u0113":23,"\u010d":23,"\u010c":11,"\u010b":23,"\u010a":11,"\u0109":23,"\u0108":11,"\u0107":23,"\u0106":11,"\u0105":11,"\u0104":33,"\u0103":11,"\u0102":33,"\u0101":11,"\u0100":33,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":23,"\u00f6":23,"\u00f5":23,"\u00f4":23,"\u00f3":23,"\u00f2":23,"\u00f1":11,"\u00eb":23,"\u00ea":23,"\u00e9":23,"\u00e8":23,"\u00e7":23,"\u00e6":23,"\u00e5":11,"\u00e4":11,"\u00e3":11,"\u00e2":11,"\u00e1":11,"\u00e0":11,"\u00d8":15,"\u00d5":15,"\u00d4":15,"\u00d3":15,"\u00d2":15,"\u00c7":11,"\u00c5":33,"\u00c4":33,"\u00c3":33,"\u00c2":33,"\u00c1":33,"\u00c0":33,"z":8,"x":8,"u":11,"s":23,"r":11,"q":23,"o":23,"n":11,"m":11,"g":23,"e":23,"d":23,"c":23,"a":11,"T":-15,"S":11,"Q":15,"O":15,"M":12,"J":30,"G":11,"C":11,"A":33}},"0":{"d":"12,-125v0,-74,9,-128,83,-128v73,0,81,55,81,128v0,74,-10,129,-82,128v-71,0,-82,-54,-82,-128xm135,-125v0,-47,3,-97,-40,-97v-44,0,-42,50,-42,97v0,48,-1,97,42,97v42,0,40,-50,40,-97","w":188,"k":{"\u2026":11,"\u201e":11,"\u201a":11,".":11,",":11}},"1":{"d":"9,-206v24,-10,43,-25,57,-46r30,3r0,249r-39,0r0,-198v-9,8,-21,16,-36,21","w":127},"2":{"d":"152,-183v0,85,-97,81,-117,148r121,0r0,35r-145,0r-10,-21v9,-60,70,-91,103,-129v19,-22,15,-70,-22,-67v-31,-4,-32,26,-55,29v-11,1,-21,-7,-19,-18v5,-30,35,-46,69,-46v47,0,75,24,75,69","w":165},"3":{"d":"119,-74v0,-41,-27,-50,-70,-47r0,-28v36,4,63,-5,62,-38v0,-22,-13,-36,-35,-37v-28,-2,-27,34,-50,34v-9,0,-20,-7,-18,-17v6,-32,35,-42,70,-46v76,-9,95,97,35,116v28,9,44,27,44,66v0,87,-125,96,-149,30v-3,-7,-5,-14,-6,-20r24,-7v5,23,22,40,49,40v28,0,44,-15,44,-46","w":170,"k":{"\u2026":15,"\u201e":15,"\u201a":15,"7":11,".":15,",":15}},"4":{"d":"154,-104r19,0r0,32r-19,0r0,72r-39,0r0,-72r-105,0r-8,-26r117,-156r35,8r0,142xm42,-104r73,0r0,-97","w":177},"5":{"d":"22,-252v41,2,87,7,124,-1r4,21v-22,17,-65,19,-102,15r-6,55v10,-10,23,-13,43,-13v52,0,76,32,76,85v0,59,-25,94,-84,93v-35,-1,-68,-13,-72,-46v-1,-18,27,-23,32,-6v4,13,21,22,39,22v33,0,45,-23,45,-63v0,-57,-61,-69,-85,-33r-25,-9","w":175,"k":{"\u2026":15,"\u201e":15,"\u201a":15,".":15,",":15}},"6":{"d":"95,-224v-43,3,-46,49,-47,95v8,-19,31,-32,57,-32v43,0,65,32,64,77v0,54,-25,87,-78,87v-65,-1,-78,-52,-78,-120v0,-76,11,-136,84,-136v37,0,59,12,65,42v2,9,-10,17,-18,17v-20,-4,-22,-33,-49,-30xm94,-134v-52,-1,-53,106,-3,106v27,0,40,-23,39,-54v0,-29,-10,-51,-36,-52","w":181,"k":{"\u2026":11,"\u201e":11,"\u201a":11,".":11,",":11}},"7":{"d":"30,-18v9,-84,41,-145,86,-198r-116,0r0,-35r142,0r7,27v-39,56,-62,125,-75,207v-3,13,-6,20,-22,20v-13,0,-23,-7,-22,-21","w":149,"k":{"\u2026":41,"\u201e":41,"\u201a":41,"9":7,"4":30,".":41,",":41}},"8":{"d":"163,-187v0,26,-12,44,-34,51v27,8,43,27,43,62v0,53,-25,77,-79,77v-54,0,-80,-23,-80,-77v0,-35,18,-53,44,-62v-22,-8,-34,-25,-35,-51v0,-48,24,-65,71,-66v48,-1,70,20,70,66xm134,-74v0,-32,-10,-49,-41,-49v-30,0,-40,18,-40,49v0,33,13,49,40,49v28,0,41,-17,41,-49xm129,-189v0,-25,-11,-37,-35,-37v-24,0,-35,12,-35,37v0,27,12,40,35,40v23,0,34,-16,35,-40","k":{"\u2026":11,"\u201e":11,"\u201a":11,"7":4,".":11,",":11}},"9":{"d":"40,-57v18,5,22,32,48,30v43,-3,46,-48,47,-93v-11,17,-29,28,-55,29v-42,0,-65,-33,-65,-76v0,-56,25,-86,78,-86v66,-1,78,49,78,114v0,77,-10,141,-85,142v-36,0,-58,-13,-64,-43v-2,-9,10,-17,18,-17xm91,-119v26,0,35,-20,39,-43v-1,-32,-6,-60,-37,-60v-27,0,-38,22,-38,54v0,30,10,48,36,49","w":184,"k":{"\u2026":19,"\u201e":19,"\u201a":19,".":19,",":19}},":":{"d":"38,-40v18,0,21,4,21,21v0,19,-4,20,-21,20v-17,0,-21,-2,-21,-20v0,-17,3,-21,21,-21xm38,-171v18,0,21,3,21,21v0,18,-3,19,-21,19v-18,0,-21,-1,-21,-19v0,-18,3,-21,21,-21","w":71},";":{"d":"33,-171v18,0,21,3,21,21v0,18,-3,19,-21,19v-18,0,-21,-1,-21,-19v0,-18,3,-21,21,-21xm33,-40v31,-4,19,36,10,51v-6,11,-14,22,-21,30r-10,-7v6,-9,15,-17,15,-29v-2,-11,-15,-10,-14,-24v0,-18,4,-20,20,-21","w":66,"k":{"\u0166":11,"\u0164":11,"\u0162":11,"T":11}},"<":{"d":"147,-156r-93,49r93,50r0,29r-124,-69r0,-20r124,-69r0,30","w":169},"=":{"d":"133,-134r-120,0r0,-24r120,0r0,24xm133,-66r-120,0r0,-24r120,0r0,24","w":146},">":{"d":"147,-97r-124,69r0,-29r93,-50r-93,-49r0,-30r124,69r0,20","w":169},"?":{"d":"157,-198v2,63,-77,59,-58,129r-22,2v-8,-6,-14,-18,-14,-30v0,-50,51,-52,54,-98v1,-22,-12,-29,-33,-31v-31,-2,-27,31,-50,38v-8,0,-18,-9,-17,-18v3,-35,33,-51,70,-52v43,-1,69,18,70,60xm85,-40v18,0,21,4,21,21v0,19,-4,20,-21,20v-17,0,-21,-2,-21,-20v0,-17,3,-21,21,-21","w":172},"@":{"d":"91,-78v-6,-49,55,-84,80,-43r1,-13r20,0r-4,67v0,10,3,17,14,16v24,0,32,-25,32,-52v-1,-58,-32,-88,-92,-87v-68,1,-101,40,-101,110v0,66,32,104,98,106v27,0,48,-4,66,-15r10,20v-17,15,-45,21,-77,21v-84,-1,-126,-49,-126,-132v0,-87,44,-137,130,-137v74,0,115,38,115,112v0,40,-17,71,-56,74v-17,0,-29,-6,-34,-19v-17,36,-83,22,-76,-28xm146,-119v-34,0,-45,70,-10,70v13,0,24,-8,29,-17r3,-41v-6,-8,-13,-12,-22,-12","w":268},"A":{"d":"211,0r-45,0r-16,-51r-88,0r-16,51r-40,0r81,-256r41,0xm70,-81r71,0r-36,-113","w":217,"k":{"\u201d":37,"\u201c":37,"\u2019":37,"\u2018":37,"\u1ef3":11,"\u1ef2":30,"\u1e85":11,"\u1e84":22,"\u1e83":11,"\u1e82":22,"\u1e81":11,"\u1e80":22,"\u0218":7,"\u01fe":7,"\u0178":30,"\u0177":11,"\u0176":30,"\u0175":11,"\u0174":22,"\u0173":11,"\u0172":11,"\u0171":11,"\u0170":11,"\u016f":11,"\u016e":11,"\u016d":11,"\u016c":11,"\u016b":11,"\u016a":11,"\u0169":11,"\u0168":11,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":7,"\u015e":7,"\u015c":7,"\u015a":7,"\u0152":7,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u010c":7,"\u010a":7,"\u0108":7,"\u0106":7,"\u00ff":11,"\u00fd":11,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00dd":30,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"y":11,"w":11,"v":11,"u":11,"Y":30,"W":22,"V":22,"U":11,"T":30,"S":7,"Q":7,"O":7,"G":7,"C":7,"'":37,"\"":37}},"B":{"d":"151,-76v0,-47,-36,-49,-82,-47r0,92v44,4,82,2,82,-45xm194,-75v4,88,-86,78,-168,74r0,-254v70,-2,161,-14,158,59v-1,32,-13,48,-38,56v32,8,46,26,48,65xm141,-192v0,-39,-36,-35,-72,-33r0,73v40,1,72,3,72,-40","w":208,"k":{"\u2026":11,"\u201e":11,"\u201a":11,"\u1ef2":15,"\u01fa":7,"\u0178":15,"\u0176":15,"\u0104":7,"\u0102":7,"\u0100":7,"\u00dd":15,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"Y":15,"A":7,".":11,",":11}},"C":{"d":"127,-28v31,0,52,-18,63,-40r23,7v-13,38,-41,64,-90,64v-79,0,-111,-45,-111,-130v0,-82,31,-131,110,-131v45,1,80,17,87,54v3,16,-24,23,-31,8v-9,-20,-29,-32,-56,-32v-50,0,-63,42,-63,100v0,61,14,100,68,100","w":223,"k":{"\u01fa":7,"\u0104":7,"\u0102":7,"\u0100":7,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"A":7,"\/":4}},"D":{"d":"215,-128v0,119,-68,141,-189,128r0,-254r78,-3v86,-2,111,42,111,129xm172,-128v3,-75,-25,-109,-103,-97r0,194r36,1v57,1,64,-41,67,-98","w":227,"k":{"\u2026":15,"\u201e":15,"\u201a":15,"\u1ef2":19,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u0218":4,"\u01fa":7,"\u0178":19,"\u0176":19,"\u0174":7,"\u0166":11,"\u0164":11,"\u0162":11,"\u0160":4,"\u015e":4,"\u015c":4,"\u015a":4,"\u0104":7,"\u0102":7,"\u0100":7,"\u00dd":19,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"Y":19,"W":7,"V":7,"T":11,"S":4,"A":7,"\/":15,".":15,",":15}},"E":{"d":"166,-221r-97,0r0,71r81,0r0,29r-81,0r0,86r99,0r0,35r-142,0r0,-256r140,0r0,35","w":180},"F":{"d":"168,-221r-99,0r0,70r80,0r0,29r-80,0r0,122r-43,0r0,-256r142,0r0,35","w":181,"k":{"\uf730":12,"\u2026":37,"\u201e":37,"\u201a":37,"\u0219":11,"\u01ff":12,"\u01fe":7,"\u01fc":19,"\u01fb":11,"\u01fa":30,"\u0173":8,"\u0171":8,"\u016f":8,"\u016d":8,"\u016b":8,"\u0169":8,"\u0161":11,"\u015f":11,"\u015d":11,"\u015b":11,"\u0159":8,"\u0157":8,"\u0155":8,"\u0153":12,"\u0151":12,"\u0150":7,"\u014f":12,"\u014e":7,"\u014d":12,"\u014c":7,"\u014b":8,"\u0149":8,"\u0148":8,"\u0146":8,"\u0144":8,"\u0134":41,"\u0119":12,"\u0117":12,"\u0115":12,"\u0113":12,"\u010d":12,"\u010b":12,"\u0109":12,"\u0107":12,"\u0105":11,"\u0104":30,"\u0103":11,"\u0102":30,"\u0101":11,"\u0100":30,"\u00fc":8,"\u00fb":8,"\u00fa":8,"\u00f9":8,"\u00f8":12,"\u00f6":12,"\u00f5":12,"\u00f4":12,"\u00f3":12,"\u00f2":12,"\u00f1":8,"\u00eb":12,"\u00ea":12,"\u00e9":12,"\u00e8":12,"\u00e7":12,"\u00e6":12,"\u00e5":11,"\u00e4":11,"\u00e3":11,"\u00e2":11,"\u00e1":11,"\u00e0":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c6":19,"\u00c5":30,"\u00c4":30,"\u00c3":30,"\u00c2":30,"\u00c1":30,"\u00c0":30,"u":8,"s":11,"r":8,"o":12,"n":8,"m":8,"e":12,"c":12,"a":11,"Q":7,"O":7,"J":41,"A":30,"\/":26,".":37,",":37}},"G":{"d":"125,-28v20,1,33,-6,44,-14r0,-62r-49,0r2,-30r88,0r0,104v-18,20,-52,33,-89,33v-78,-1,-109,-47,-109,-130v0,-82,30,-130,109,-131v45,1,81,16,88,54v3,17,-25,23,-32,8v-10,-20,-29,-32,-56,-32v-48,0,-63,42,-62,101v0,59,14,97,66,99","w":228,"k":{"\u1ef2":7,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":4,"\u0178":7,"\u0176":7,"\u0174":7,"\u0104":4,"\u0102":4,"\u0100":4,"\u00dd":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Y":7,"W":7,"V":7,"A":4,"\/":7}},"H":{"d":"206,0r-43,0r0,-124r-94,0r0,124r-43,0r0,-256r43,0r0,102r94,0r0,-102r43,0r0,256","w":232},"I":{"d":"71,0r-44,0r0,-256r44,0r0,256","w":98},"J":{"d":"24,9v11,35,62,26,62,-18r0,-247r43,0r0,242v12,81,-107,102,-128,31","w":152},"K":{"d":"118,-162r87,162r-49,0r-63,-131r-24,29r0,102r-43,0r0,-256r43,0r0,108r83,-108r46,0","w":201,"k":{"\uf730":4,"\u203a":30,"\u2039":30,"\u2014":30,"\u2013":30,"\u01ff":4,"\u01fe":11,"\u0173":4,"\u0171":4,"\u016f":4,"\u016d":4,"\u016b":4,"\u0169":4,"\u0153":4,"\u0151":4,"\u0150":11,"\u014f":4,"\u014e":11,"\u014d":4,"\u014c":11,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00d8":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00bb":30,"\u00ab":30,"u":4,"q":4,"o":4,"g":4,"e":4,"c":4,"Q":11,"O":11,"-":30}},"L":{"d":"69,-35r91,0r0,35r-134,0r0,-256r43,0r0,221","w":166,"k":{"\u203a":34,"\u2039":34,"\u201d":41,"\u201c":41,"\u2019":41,"\u2018":41,"\u2014":34,"\u2013":34,"\u1ef3":15,"\u1ef2":37,"\u1e85":15,"\u1e84":26,"\u1e83":15,"\u1e82":26,"\u1e81":15,"\u1e80":26,"\u01fe":7,"\u0178":37,"\u0177":15,"\u0176":37,"\u0175":15,"\u0174":26,"\u0172":11,"\u0170":11,"\u016e":11,"\u016c":11,"\u016a":11,"\u0168":11,"\u0166":37,"\u0164":37,"\u0162":37,"\u0152":11,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":11,"\u0120":11,"\u011e":11,"\u011c":11,"\u00ff":15,"\u00fd":15,"\u00dd":37,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00bb":34,"\u00ab":34,"y":15,"w":15,"v":15,"Y":37,"W":26,"V":26,"U":11,"T":37,"Q":7,"O":7,"G":11,"-":34,"'":41,"\"":41}},"M":{"d":"281,0r-40,0r-10,-176r-60,165r-40,0r-61,-165r-10,176r-40,0r18,-256r44,0r70,191r69,-191r43,0","w":300,"k":{"\u1ef2":7,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u0218":4,"\u01fe":4,"\u0178":7,"\u0176":7,"\u0174":7,"\u0172":4,"\u0170":4,"\u016e":4,"\u016c":4,"\u016a":4,"\u0168":4,"\u0166":7,"\u0164":7,"\u0162":7,"\u0160":4,"\u015e":4,"\u015c":4,"\u015a":4,"\u0152":4,"\u0150":4,"\u014e":4,"\u014c":4,"\u0122":4,"\u0120":4,"\u011e":4,"\u011c":4,"\u010c":4,"\u010a":4,"\u0108":4,"\u0106":4,"\u00dd":7,"\u00dc":4,"\u00db":4,"\u00da":4,"\u00d9":4,"\u00d8":4,"\u00d5":4,"\u00d4":4,"\u00d3":4,"\u00d2":4,"\u00c7":4,"q":4,"g":4,"Y":7,"W":7,"V":7,"U":4,"T":7,"S":4,"Q":4,"O":4,"G":4,"C":4}},"N":{"d":"216,0r-38,0r-112,-171r0,171r-39,0r0,-256r37,0r112,172r0,-172r40,0r0,256","w":242},"O":{"d":"12,-126v0,-83,29,-132,110,-132v82,-1,111,50,111,132v0,82,-30,130,-111,129v-79,-1,-110,-46,-110,-129xm186,-123v0,-59,-10,-105,-65,-105v-51,0,-63,38,-63,97v0,61,14,103,65,103v52,0,63,-41,63,-95","w":244,"k":{"\u2026":11,"\u201e":11,"\u201a":11,"\u1ef2":19,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":7,"\u0178":19,"\u0176":19,"\u0174":7,"\u0166":15,"\u0164":15,"\u0162":15,"\u0134":26,"\u0104":7,"\u0102":7,"\u0100":7,"\u00dd":19,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"Y":19,"X":11,"W":7,"V":7,"T":15,"M":4,"J":26,"A":7,"\/":15,".":11,",":11}},"P":{"d":"183,-179v0,65,-47,88,-114,77r0,102r-43,0r0,-255v79,-5,157,-10,157,76xm140,-178v0,-44,-27,-53,-71,-47r0,93v39,7,71,-1,71,-46","w":195,"k":{"\uf730":11,"\u2026":41,"\u201e":41,"\u201a":41,"\u1ef2":11,"\u01ff":11,"\u01fc":30,"\u01fb":8,"\u01fa":30,"\u0178":11,"\u0176":11,"\u0153":11,"\u0151":11,"\u014f":11,"\u014d":11,"\u0134":41,"\u0119":11,"\u0117":11,"\u0115":11,"\u0113":11,"\u010d":11,"\u010b":11,"\u0109":11,"\u0107":11,"\u0105":8,"\u0104":30,"\u0103":8,"\u0102":30,"\u0101":8,"\u0100":30,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00e5":8,"\u00e4":8,"\u00e3":8,"\u00e2":8,"\u00e1":8,"\u00e0":8,"\u00dd":11,"\u00c6":30,"\u00c5":30,"\u00c4":30,"\u00c3":30,"\u00c2":30,"\u00c1":30,"\u00c0":30,"o":11,"e":11,"c":11,"a":8,"Y":11,"J":41,"A":30,"\/":30,".":41,",":41}},"Q":{"d":"139,49v28,2,52,-1,75,-6r7,24v-49,18,-160,27,-164,-38v0,-14,5,-25,15,-34v-42,-18,-60,-56,-60,-121v0,-83,29,-132,110,-132v82,-1,110,50,111,132v1,89,-39,138,-132,128v-7,5,-11,13,-11,23v0,20,28,22,49,24xm186,-123v0,-59,-10,-105,-65,-105v-51,0,-63,38,-63,97v0,61,14,103,65,103v52,0,63,-41,63,-95","w":242,"k":{"\u2026":11,"\u201e":11,"\u201a":11,"\u1ef2":19,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":7,"\u0178":19,"\u0176":19,"\u0174":7,"\u0166":15,"\u0164":15,"\u0162":15,"\u0134":26,"\u0104":7,"\u0102":7,"\u0100":7,"\u00dd":19,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"Y":19,"X":11,"W":7,"V":7,"T":15,"M":4,"J":26,"A":7,"\/":15,".":11,",":11}},"R":{"d":"186,-187v0,35,-15,56,-40,65r53,122r-46,0r-47,-113v-14,0,-25,0,-37,-2r0,115r-43,0r0,-255v75,-2,160,-16,160,68xm143,-184v0,-43,-34,-44,-74,-41r0,83v40,4,74,1,74,-42","w":205,"k":{"\u203a":19,"\u2039":19,"\u2014":19,"\u2013":19,"\u1ef2":7,"\u1e84":4,"\u1e82":4,"\u1e80":4,"\u0218":4,"\u0178":7,"\u0176":7,"\u0174":4,"\u0172":7,"\u0170":7,"\u016e":7,"\u016c":7,"\u016a":7,"\u0168":7,"\u0160":4,"\u015e":4,"\u015c":4,"\u015a":4,"\u0152":7,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u00dd":7,"\u00dc":7,"\u00db":7,"\u00da":7,"\u00d9":7,"\u00bb":19,"\u00ab":19,"Y":7,"W":4,"V":4,"U":7,"S":4,"G":7,"-":19}},"S":{"d":"138,-142v71,32,45,145,-44,145v-45,0,-73,-24,-80,-62r23,-8v7,42,100,54,103,2v-13,-67,-122,-29,-122,-124v0,-86,149,-92,156,-18v2,19,-28,25,-34,7v-13,-38,-105,-26,-78,20v14,23,50,26,76,38","w":195,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u1ef2":11,"\u0178":11,"\u0176":11,"\u0166":4,"\u0164":4,"\u0162":4,"\u00dd":11,"Y":11,"T":4,"M":4,".":7,",":7}},"T":{"d":"175,-221r-67,0r0,221r-42,0r0,-221r-65,0r0,-35r174,0r0,35","w":175,"k":{"\uf730":11,"\u203a":30,"\u2039":30,"\u2026":30,"\u201e":30,"\u201a":30,"\u2014":30,"\u2013":30,"\u1ef3":15,"\u1ef2":-8,"\u1e85":15,"\u1e83":15,"\u1e81":15,"\u0219":11,"\u0218":4,"\u01ff":11,"\u01fe":15,"\u01fc":30,"\u01fb":11,"\u01fa":26,"\u017e":8,"\u017c":8,"\u017a":8,"\u0178":-8,"\u0177":15,"\u0176":-8,"\u0175":15,"\u0173":11,"\u0171":11,"\u016f":11,"\u016d":11,"\u016b":11,"\u0169":11,"\u0166":-15,"\u0164":-15,"\u0162":-15,"\u0161":11,"\u0160":4,"\u015f":11,"\u015e":4,"\u015d":11,"\u015c":4,"\u015b":11,"\u015a":4,"\u0159":11,"\u0157":11,"\u0155":11,"\u0153":11,"\u0151":11,"\u0150":15,"\u014f":11,"\u014e":15,"\u014d":11,"\u014c":15,"\u0134":34,"\u0119":11,"\u0117":11,"\u0115":11,"\u0113":11,"\u010d":11,"\u010b":11,"\u0109":11,"\u0107":11,"\u0105":11,"\u0104":26,"\u0103":11,"\u0102":26,"\u0101":11,"\u0100":26,"\u00ff":15,"\u00fd":15,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00e5":11,"\u00e4":11,"\u00e3":11,"\u00e2":11,"\u00e1":11,"\u00e0":11,"\u00dd":-8,"\u00d8":15,"\u00d5":15,"\u00d4":15,"\u00d3":15,"\u00d2":15,"\u00c6":30,"\u00c5":26,"\u00c4":26,"\u00c3":26,"\u00c2":26,"\u00c1":26,"\u00c0":26,"\u00bb":30,"\u00ab":30,"z":8,"y":15,"w":15,"v":15,"u":11,"s":11,"r":11,"o":11,"e":11,"d":12,"c":11,"a":11,"Y":-8,"T":-15,"S":4,"Q":15,"O":15,"M":7,"J":34,"A":26,"\/":19,".":30,"-":30,",":30}},"U":{"d":"118,-30v38,0,49,-22,49,-61r0,-165r41,0r0,167v2,64,-27,92,-91,92v-129,0,-83,-148,-91,-259r45,0r0,165v-1,38,9,61,47,61","w":234,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u01fa":11,"\u0104":11,"\u0102":11,"\u0100":11,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"M":4,"A":11,"\/":19,".":7,",":7}},"V":{"d":"124,0r-41,0r-83,-256r46,0r60,195r59,-195r40,0","w":201,"k":{"\uf730":11,"\u203a":19,"\u2039":19,"\u2026":19,"\u201e":19,"\u201a":19,"\u2014":19,"\u2013":19,"\u1ef2":-15,"\u1e84":-19,"\u1e82":-19,"\u1e80":-19,"\u0219":12,"\u01ff":11,"\u01fe":7,"\u01fc":19,"\u01fb":8,"\u01fa":19,"\u0178":-15,"\u0176":-15,"\u0174":-19,"\u0173":11,"\u0171":11,"\u016f":11,"\u016d":11,"\u016b":11,"\u0169":11,"\u0166":-15,"\u0164":-15,"\u0162":-15,"\u0161":12,"\u015f":12,"\u015d":12,"\u015b":12,"\u0153":11,"\u0152":7,"\u0151":11,"\u0150":7,"\u014f":11,"\u014e":7,"\u014d":11,"\u014c":7,"\u0134":41,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u0119":11,"\u0117":11,"\u0115":11,"\u0113":11,"\u010d":11,"\u010b":11,"\u0109":11,"\u0107":11,"\u0105":8,"\u0104":19,"\u0103":8,"\u0102":19,"\u0101":8,"\u0100":19,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00e5":8,"\u00e4":8,"\u00e3":8,"\u00e2":8,"\u00e1":8,"\u00e0":8,"\u00dd":-15,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c6":19,"\u00c5":19,"\u00c4":19,"\u00c3":19,"\u00c2":19,"\u00c1":19,"\u00c0":19,"\u00bb":19,"\u00ab":19,"u":11,"s":12,"o":11,"e":11,"d":8,"c":11,"a":8,"Y":-15,"W":-19,"V":-19,"T":-15,"Q":7,"O":7,"M":7,"J":41,"G":7,"A":19,"\/":30,".":19,"-":19,",":19}},"W":{"d":"270,0r-38,0r-60,-186r-58,186r-39,0r-70,-256r42,0r50,194r58,-194r39,0r59,194r49,-194r37,0","w":340,"k":{"\uf730":11,"\u203a":19,"\u2039":19,"\u2026":19,"\u201e":19,"\u201a":19,"\u2014":19,"\u2013":19,"\u1ef2":-15,"\u1e84":-19,"\u1e82":-19,"\u1e80":-19,"\u0219":12,"\u01ff":11,"\u01fe":7,"\u01fc":19,"\u01fb":8,"\u01fa":19,"\u0178":-15,"\u0176":-15,"\u0174":-19,"\u0173":11,"\u0171":11,"\u016f":11,"\u016d":11,"\u016b":11,"\u0169":11,"\u0166":-15,"\u0164":-15,"\u0162":-15,"\u0161":12,"\u015f":12,"\u015d":12,"\u015b":12,"\u0153":11,"\u0152":7,"\u0151":11,"\u0150":7,"\u014f":11,"\u014e":7,"\u014d":11,"\u014c":7,"\u0134":41,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u0119":11,"\u0117":11,"\u0115":11,"\u0113":11,"\u010d":11,"\u010b":11,"\u0109":11,"\u0107":11,"\u0105":8,"\u0104":19,"\u0103":8,"\u0102":19,"\u0101":8,"\u0100":19,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00e5":8,"\u00e4":8,"\u00e3":8,"\u00e2":8,"\u00e1":8,"\u00e0":8,"\u00dd":-15,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c6":19,"\u00c5":19,"\u00c4":19,"\u00c3":19,"\u00c2":19,"\u00c1":19,"\u00c0":19,"\u00bb":19,"\u00ab":19,"u":11,"s":12,"o":11,"e":11,"d":8,"c":11,"a":8,"Y":-15,"W":-19,"V":-19,"T":-15,"Q":7,"O":7,"M":7,"J":41,"G":7,"A":19,"\/":30,".":19,"-":19,",":19}},"X":{"d":"135,-136r79,136r-49,0r-57,-102r-56,102r-42,0r79,-134r-72,-122r50,0r49,88r48,-88r43,0","w":224,"k":{"\u203a":23,"\u2039":23,"\u2014":23,"\u2013":23,"\u01fe":11,"\u01fb":7,"\u0150":11,"\u014e":11,"\u014c":11,"\u0105":7,"\u0103":7,"\u0101":7,"\u00e5":7,"\u00e4":7,"\u00e3":7,"\u00e2":7,"\u00e1":7,"\u00e0":7,"\u00d8":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00bb":23,"\u00ab":23,"a":7,"Q":11,"O":11,"-":23}},"Y":{"d":"123,-112r0,112r-43,0r0,-112r-75,-144r49,0r53,107r56,-107r39,0","w":202,"k":{"\uf730":19,"\u203a":30,"\u2039":30,"\u2026":30,"\u201e":30,"\u201a":30,"\u2014":30,"\u2013":30,"\u1ef3":12,"\u1e85":12,"\u1e84":-15,"\u1e83":12,"\u1e82":-15,"\u1e81":12,"\u1e80":-15,"\u0219":15,"\u0218":11,"\u01ff":19,"\u01fe":11,"\u01fc":26,"\u01fb":15,"\u01fa":30,"\u0177":12,"\u0175":12,"\u0174":-15,"\u0173":12,"\u0171":12,"\u016f":12,"\u016d":12,"\u016b":12,"\u0169":12,"\u0166":-11,"\u0164":-11,"\u0162":-11,"\u0161":15,"\u0160":11,"\u015f":15,"\u015e":11,"\u015d":15,"\u015c":11,"\u015b":15,"\u015a":11,"\u0153":19,"\u0152":15,"\u0151":19,"\u0150":11,"\u014f":19,"\u014e":11,"\u014d":19,"\u014c":11,"\u0134":30,"\u0122":15,"\u0120":15,"\u011e":15,"\u011c":15,"\u0119":19,"\u0117":19,"\u0115":19,"\u0113":19,"\u010d":19,"\u010c":19,"\u010b":19,"\u010a":19,"\u0109":19,"\u0108":19,"\u0107":19,"\u0106":19,"\u0105":15,"\u0104":30,"\u0103":15,"\u0102":30,"\u0101":15,"\u0100":30,"\u00ff":12,"\u00fd":12,"\u00fc":12,"\u00fb":12,"\u00fa":12,"\u00f9":12,"\u00f8":19,"\u00f6":19,"\u00f5":19,"\u00f4":19,"\u00f3":19,"\u00f2":19,"\u00eb":19,"\u00ea":19,"\u00e9":19,"\u00e8":19,"\u00e7":19,"\u00e6":19,"\u00e5":15,"\u00e4":15,"\u00e3":15,"\u00e2":15,"\u00e1":15,"\u00e0":15,"\u00d8":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":19,"\u00c6":26,"\u00c5":30,"\u00c4":30,"\u00c3":30,"\u00c2":30,"\u00c1":30,"\u00c0":30,"\u00bb":30,"\u00ab":30,"y":12,"w":12,"v":12,"u":12,"s":15,"o":19,"e":19,"c":19,"a":15,"W":-15,"V":-15,"T":-11,"S":11,"Q":11,"O":11,"M":7,"J":30,"G":15,"C":19,"A":30,"\/":19,".":30,"-":30,",":30}},"Z":{"d":"178,-238r-114,200r114,0r0,38r-161,0r-7,-17r114,-200r-109,0r0,-39r156,0","w":188,"k":{"\uf730":8,"\u203a":23,"\u2039":23,"\u2014":23,"\u2013":23,"\u01ff":8,"\u0153":8,"\u0151":8,"\u014f":8,"\u014d":8,"\u0119":8,"\u0117":8,"\u0115":8,"\u0113":8,"\u010d":8,"\u010b":8,"\u0109":8,"\u0107":8,"\u00f8":8,"\u00f6":8,"\u00f5":8,"\u00f4":8,"\u00f3":8,"\u00f2":8,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":8,"\u00e6":8,"\u00bb":23,"\u00ab":23,"o":8,"e":8,"c":8,"-":23}},"[":{"d":"93,-251r-35,0r0,271r35,0r0,23r-64,0r0,-317r64,0r0,23","w":94},"\\":{"d":"109,22r-24,0r-87,-290r25,0","w":105},"]":{"d":"67,43r-65,0r0,-23r35,0r0,-271r-35,0r0,-23r65,0r0,317","w":95},"^":{"d":"162,-139r-32,0r-37,-80r-39,80r-31,0r57,-116r27,0"},"_":{"d":"175,46r-175,0r0,-21r175,0r0,21","w":175},"`":{"d":"80,-201r-63,-23r11,-23r59,33","w":99},"a":{"d":"89,-182v75,-4,60,75,60,142v0,14,7,22,16,14v10,17,-4,28,-24,28v-12,0,-21,-7,-26,-20v-25,35,-102,27,-102,-34v0,-51,45,-63,98,-56v1,-25,-1,-45,-26,-45v-28,0,-30,22,-50,26v-9,0,-17,-7,-17,-16v6,-28,37,-37,71,-39xm51,-55v-4,35,47,35,60,16r0,-47v-27,-5,-63,-1,-60,31","w":176,"k":{"\u201d":4,"\u201c":4,"\u2019":4,"\u2018":4,"\u1ef3":8,"\u1e85":8,"\u1e84":8,"\u1e83":8,"\u1e82":8,"\u1e81":8,"\u1e80":8,"\u021b":4,"\u0219":4,"\u0177":8,"\u0175":8,"\u0174":8,"\u0167":4,"\u0165":4,"\u0163":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"t":4,"s":4,"W":8,"V":8,"'":4,"\"":4}},"b":{"d":"111,3v-22,0,-42,-9,-51,-22r0,19r-36,0r0,-268r39,0r0,106v10,-14,25,-20,47,-20v51,1,65,37,65,91v0,52,-15,94,-64,94xm95,-152v-13,0,-25,5,-32,12r0,99v32,31,78,5,72,-51v-3,-34,-8,-59,-40,-60","w":187,"k":{"\u2026":7,"\u201e":7,"\u201d":8,"\u201c":8,"\u201a":7,"\u2019":8,"\u2018":8,"\u1ef3":4,"\u1e85":4,"\u1e83":4,"\u1e81":4,"\u017e":4,"\u017c":4,"\u017a":4,"\u0177":4,"\u0175":4,"\u00ff":4,"\u00fd":4,"z":4,"y":4,"x":7,"w":4,"v":4,"\/":7,".":7,",":7,"'":8,"\"":8}},"c":{"d":"97,-27v22,0,33,-12,40,-30r24,7v-8,29,-29,54,-66,53v-59,-1,-82,-32,-82,-94v-1,-61,25,-91,82,-91v31,0,61,13,65,42v1,10,-9,17,-17,16v-20,-3,-22,-30,-48,-28v-30,2,-42,26,-42,61v0,37,12,64,44,64","w":172,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"d":{"d":"52,-92v-7,55,39,83,72,51r0,-99v-34,-28,-80,-3,-72,48xm77,-182v23,0,36,6,47,20r0,-106r39,0r0,268r-36,0r-1,-19v-9,13,-28,22,-50,22v-49,-2,-63,-42,-63,-94v0,-53,13,-91,64,-91","w":187},"e":{"d":"91,-182v54,0,79,41,72,97r-112,0v-9,58,70,78,86,31r24,6v-8,31,-31,51,-66,51v-57,-1,-82,-33,-82,-94v0,-60,26,-91,78,-91xm127,-108v4,-39,-41,-61,-64,-33v-7,8,-11,19,-11,33r75,0","w":177,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"f":{"d":"82,-240v-24,0,-14,37,-16,60r43,0r0,27r-43,0r0,153r-39,0r0,-153r-24,0r0,-27r24,0v-4,-51,5,-91,54,-89v21,1,44,7,46,28v0,9,-7,16,-16,16v-13,-1,-13,-15,-29,-15","w":112,"k":{"\uf730":7,"\u2026":11,"\u201e":11,"\u201d":-15,"\u201c":-15,"\u201a":11,"\u2019":-15,"\u2018":-15,"\u021b":-4,"\u0219":7,"\u01ff":7,"\u017f":-8,"\u0167":-4,"\u0165":-4,"\u0163":-4,"\u0161":7,"\u015f":7,"\u015d":7,"\u015b":7,"\u0153":7,"\u0151":7,"\u014f":7,"\u014d":7,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010b":7,"\u0109":7,"\u0107":7,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"t":-4,"s":7,"q":7,"o":7,"i":-8,"g":7,"f":-8,"e":7,"d":7,"c":7,"\/":7,".":11,",":11,"'":-15,"\"":-15}},"g":{"d":"77,-182v21,0,37,7,48,17r1,-15r36,0r0,198v14,87,-118,97,-141,31r25,-8v7,12,22,21,42,21v39,0,36,-41,35,-80v-9,10,-26,18,-46,17v-51,1,-64,-38,-64,-89v0,-52,15,-92,64,-92xm52,-90v-8,54,39,76,71,48r0,-99v-34,-30,-78,-4,-71,51"},"h":{"d":"133,-111v7,-48,-47,-49,-68,-26r0,137r-39,0r0,-268r39,0r0,109v12,-15,26,-23,52,-23v79,0,49,109,55,182r-39,0r0,-111","w":196,"k":{"\u201d":8,"\u201c":8,"\u2019":8,"\u2018":8,"\u1ef3":8,"\u1e85":8,"\u1e83":8,"\u1e81":8,"\u0177":8,"\u0175":8,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"'":8,"\"":8}},"i":{"d":"62,0r-39,0r0,-180r39,0r0,180xm42,-248v15,0,21,2,21,18v0,21,-13,18,-31,18v-9,0,-12,-7,-11,-18v0,-16,5,-18,21,-18","w":84},"j":{"d":"-11,49v9,19,41,18,41,-13r0,-216r39,0r0,209v12,71,-86,83,-104,28xm49,-248v15,0,21,2,21,18v0,21,-13,18,-31,18v-9,0,-12,-7,-11,-18v0,-16,5,-18,21,-18","w":91},"k":{"d":"115,-119r60,119r-44,0r-43,-90r-24,24r0,66r-38,0r0,-268r38,0r0,162r66,-74r44,0","w":173,"k":{"\uf730":4,"\u0219":4,"\u01ff":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"\/":-11}},"l":{"d":"65,0r-39,0r0,-268r39,0r0,268","w":91},"m":{"d":"211,-182v77,-1,47,110,53,182r-39,0r0,-107v6,-49,-41,-57,-64,-27v5,39,0,90,2,134r-37,0r0,-107v7,-47,-41,-56,-62,-30r0,137r-39,0r0,-180r35,0r2,20v16,-27,83,-33,94,3v14,-17,32,-25,55,-25","w":288,"k":{"\u201d":11,"\u201c":11,"\u2019":11,"\u2018":11,"\u1ef3":8,"\u1e85":8,"\u1e83":8,"\u1e81":8,"\u0177":8,"\u0175":8,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"'":11,"\"":11}},"n":{"d":"116,-182v78,-1,49,109,55,182r-39,0r0,-107v6,-48,-43,-56,-68,-30r0,137r-39,0r0,-180r35,0r1,21v12,-15,31,-23,55,-23","w":195,"k":{"\u201d":11,"\u201c":11,"\u2019":11,"\u2018":11,"\u1ef3":8,"\u1e85":8,"\u1e83":8,"\u1e81":8,"\u0177":8,"\u0175":8,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"'":11,"\"":11}},"o":{"d":"13,-92v0,-61,22,-90,80,-90v58,0,79,30,79,91v0,62,-21,93,-79,94v-60,0,-80,-33,-80,-95xm134,-89v-1,-38,-9,-63,-41,-63v-30,0,-40,23,-40,58v0,38,7,66,41,67v27,0,40,-21,40,-62","k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"p":{"d":"110,3v-23,0,-36,-6,-47,-20r0,108r-39,0r0,-271r36,0r1,19v9,-13,28,-21,50,-21v49,0,63,41,64,94v0,53,-15,90,-65,91xm135,-88v5,-55,-38,-81,-72,-51r0,99v8,8,19,13,32,13v33,0,37,-28,40,-61","w":187,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,".":8,",":8,"'":8,"\"":8}},"q":{"d":"77,-182v21,0,41,8,50,21r0,-19r36,0r0,271r-39,0r0,-109v-10,14,-24,21,-46,21v-52,0,-65,-38,-65,-91v0,-53,15,-94,64,-94xm53,-88v-9,52,39,77,71,48r0,-99v-33,-30,-79,-3,-71,51","w":187},"r":{"d":"120,-139v-13,-23,-57,-15,-57,10r0,129r-39,0r0,-180r36,0r1,23v12,-30,79,-35,84,3v2,13,-14,23,-25,15","w":149,"k":{"\uf730":4,"\u2026":23,"\u201e":23,"\u201a":23,"\u1ef3":-4,"\u1e85":-4,"\u1e83":-4,"\u1e81":-4,"\u021b":-4,"\u0219":4,"\u01ff":4,"\u0177":-4,"\u0175":-4,"\u0167":-4,"\u0165":-4,"\u0163":-4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00ff":-4,"\u00fd":-4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"y":-4,"w":-4,"v":-4,"t":-4,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"\/":8,".":23,",":23}},"s":{"d":"110,-102v59,19,36,112,-30,105v-36,-4,-57,-19,-66,-48r25,-6v5,28,69,38,72,2v-13,-43,-91,-17,-91,-84v0,-58,109,-67,121,-17v0,9,-8,17,-16,17v-17,-3,-21,-23,-44,-21v-19,-3,-38,21,-20,35v8,6,36,12,49,17","w":159,"k":{"\u201d":11,"\u201c":11,"\u2019":11,"\u2018":11,"\u021b":4,"\u0167":4,"\u0165":4,"\u0163":4,"t":4,"'":11,"\"":11}},"t":{"d":"69,-49v-3,26,34,26,40,10r12,11v-6,18,-19,31,-44,31v-68,1,-42,-94,-47,-156r-24,0r0,-27r24,0r0,-45r39,-5r0,50r42,0r0,27r-42,0r0,104","w":129,"k":{"\uf730":7,"\u0219":7,"\u01ff":7,"\u0161":7,"\u015f":7,"\u015d":7,"\u015b":7,"\u0153":7,"\u0151":7,"\u014f":7,"\u014d":7,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010b":7,"\u0109":7,"\u0107":7,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"s":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7}},"u":{"d":"96,-27v23,0,34,-11,33,-35r0,-118r38,0v-3,83,24,183,-72,183v-95,0,-66,-102,-70,-183r40,0r0,118v-1,23,8,35,31,35","w":192,"k":{"\/":8}},"v":{"d":"105,0r-42,0r-58,-180r40,0r41,138r41,-138r35,0","w":166,"k":{"\uf730":4,"\u2026":11,"\u201e":11,"\u201a":11,"\u0219":4,"\u01ff":4,"\u01fb":4,"\u01fa":12,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u0105":4,"\u0104":12,"\u0103":4,"\u0102":12,"\u0101":4,"\u0100":12,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c5":12,"\u00c4":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u00c0":12,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"A":12,"\/":11,".":11,",":11}},"w":{"d":"215,0r-40,0r-39,-134r-38,134r-40,0r-51,-180r39,0r36,136r38,-136r37,0r38,136r36,-136r33,0","w":270,"k":{"\uf730":4,"\u2026":11,"\u201e":11,"\u201a":11,"\u0219":4,"\u01ff":4,"\u01fb":4,"\u01fa":12,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u0105":4,"\u0104":12,"\u0103":4,"\u0102":12,"\u0101":4,"\u0100":12,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c5":12,"\u00c4":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u00c0":12,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"A":12,"\/":11,".":11,",":11}},"x":{"d":"105,-95r62,95r-42,0r-43,-70r-41,70r-37,0r61,-94r-55,-86r42,0r36,60r34,-60r38,0","w":172,"k":{"\uf730":8,"\u0219":7,"\u01ff":8,"\u0161":7,"\u015f":7,"\u015d":7,"\u015b":7,"\u0153":8,"\u0151":8,"\u014f":8,"\u014d":8,"\u0119":8,"\u0117":8,"\u0115":8,"\u0113":8,"\u010d":8,"\u010b":8,"\u0109":8,"\u0107":8,"\u00f8":8,"\u00f6":8,"\u00f5":8,"\u00f4":8,"\u00f3":8,"\u00f2":8,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":8,"\u00e6":8,"s":7,"q":7,"o":8,"g":7,"e":8,"d":7,"c":8,"\/":-8}},"y":{"d":"14,77v0,-23,37,-10,44,-33v6,-10,11,-23,14,-36r-68,-188r40,0r43,140r43,-140r36,0r-80,235v-10,20,-25,36,-54,37v-10,0,-18,-5,-18,-15","w":168,"k":{"\uf730":4,"\u2026":11,"\u201e":11,"\u201a":11,"\u0219":4,"\u01ff":4,"\u01fb":4,"\u01fa":12,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u0105":4,"\u0104":12,"\u0103":4,"\u0102":12,"\u0101":4,"\u0100":12,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c5":12,"\u00c4":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u00c0":12,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"A":12,"\/":11,".":11,",":11}},"z":{"d":"141,-157r-86,126r89,0r0,31r-130,0r-8,-22r87,-127r-81,0r0,-31r124,0","w":149,"k":{"\uf730":4,"\u0219":4,"\u01ff":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"{":{"d":"37,-167v-3,-57,-13,-121,61,-107r0,23v-76,-13,4,111,-54,136v33,13,21,67,19,107v-1,27,11,30,35,28r0,23v-41,4,-64,-7,-64,-46v0,-39,21,-102,-26,-102r0,-20v24,-2,30,-16,29,-42","w":105},"|":{"d":"52,66r-25,0r0,-349r25,0r0,349","w":79},"}":{"d":"42,-222v1,-25,-11,-32,-36,-29r0,-23v70,-12,62,43,62,107v0,25,4,40,28,42r0,20v-76,5,38,167,-90,148r0,-23v24,1,37,-1,36,-28v-2,-40,-14,-95,19,-107v-32,-13,-21,-68,-19,-107","w":105},"~":{"d":"114,-115v12,1,21,-13,22,-24r15,10v-4,23,-16,35,-38,36v-27,1,-35,-20,-60,-21v-12,0,-20,15,-22,25r-14,-11v4,-23,15,-35,37,-36v27,-1,36,20,60,21","w":167},"\u00a0":{"w":145},"\u00a1":{"d":"42,32v-18,-0,-22,-13,-21,-29r11,-160r21,-0r10,171v-1,12,-7,18,-21,18xm42,-186v-18,-0,-21,-4,-21,-21v0,-19,4,-20,21,-20v17,0,21,2,21,20v0,17,-3,21,-21,21","w":85},"\u00a2":{"d":"20,-127v-1,-61,23,-91,74,-97r0,-33r24,0r0,33v26,4,55,17,58,45v2,17,-24,23,-33,8v-24,-41,-82,-17,-82,44v0,42,12,68,49,69v23,1,35,-13,41,-31r25,7v-7,28,-27,52,-58,55r0,34r-24,0r0,-33v-49,-4,-74,-38,-74,-101","w":199},"\u00a3":{"d":"131,-228v-47,3,-36,69,-33,112r56,0r0,20r-56,0v0,25,-12,41,-26,52v32,4,75,35,101,5r8,20v-32,54,-119,-22,-157,23r-12,-7v9,-37,52,-45,49,-93r-25,0r0,-20r24,0v-8,-66,-5,-143,69,-137v27,2,50,11,52,37v1,8,-6,12,-12,13v-15,-4,-17,-26,-38,-25","w":194},"\u00a5":{"d":"113,-129r44,0r0,25r-47,0r0,29r47,0r0,24r-47,0r0,51r-39,0r0,-51r-47,0r0,-24r47,0r0,-29r-47,0r0,-25r43,0r-59,-122r38,0r47,100r49,-100r34,0","w":183},"\u00a6":{"d":"53,-132r-26,0r0,-136r26,0r0,136xm53,71r-26,0r0,-136r26,0r0,136","w":79},"\u00a7":{"d":"116,-93v42,21,26,101,-33,95v-33,-3,-55,-16,-60,-46r22,-5v3,27,60,34,64,4v-11,-41,-81,-23,-81,-80v0,-20,13,-37,27,-44v-50,-14,-35,-95,24,-89v26,3,50,7,53,31v1,9,-7,16,-15,16v-16,-3,-17,-20,-39,-20v-23,0,-30,30,-7,36v30,16,67,19,67,60v0,20,-9,34,-22,42xm96,-100v24,-18,8,-56,-18,-59v-38,12,-13,58,18,59","w":163},"\u00a8":{"d":"96,-237v15,0,18,2,18,17v0,15,-3,17,-18,17v-16,0,-18,-2,-18,-17v0,-15,2,-17,18,-17xm35,-237v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":126},"\u00a9":{"d":"141,-253v78,0,129,49,129,129v0,78,-50,128,-129,128v-78,0,-128,-50,-128,-128v0,-79,51,-129,128,-129xm141,-12v67,0,112,-43,112,-112v0,-69,-43,-112,-112,-112v-68,0,-112,44,-112,112v0,68,44,112,112,112xm91,-125v-10,59,74,82,96,38r11,2v-7,23,-28,37,-56,37v-48,0,-65,-31,-70,-77v-7,-74,98,-98,128,-45v1,7,-3,12,-8,12v-14,-9,-23,-27,-48,-26v-32,2,-54,24,-53,59","w":282},"\u00aa":{"d":"120,-119v-7,13,-35,14,-39,-3v-19,25,-71,15,-71,-25v0,-35,34,-46,67,-38v1,-17,0,-30,-16,-30v-21,0,-35,35,-47,6v3,-22,26,-26,49,-28v54,-4,43,51,44,99v-2,8,3,13,9,8xm65,-170v-31,-5,-35,39,-6,39v22,0,18,-18,18,-37v-5,-1,-8,-2,-12,-2","w":121},"\u00ab":{"d":"110,-94r39,54r-20,16r-48,-70r48,-70r20,16xm38,-94r39,54r-19,16r-48,-70r48,-70r19,16","w":156,"k":{"\u1ef2":37,"\u1e84":19,"\u1e82":19,"\u1e80":19,"\u0218":15,"\u017d":19,"\u017b":19,"\u0179":19,"\u0178":37,"\u0176":37,"\u0174":19,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":15,"\u015e":15,"\u015c":15,"\u015a":15,"\u0134":30,"\u00dd":37,"Z":19,"Y":37,"X":22,"W":19,"V":19,"T":30,"S":15,"J":30}},"\u00ae":{"d":"97,-261v53,0,86,33,86,85v0,52,-33,86,-86,86v-53,0,-86,-34,-86,-86v0,-51,33,-85,86,-85xm97,-104v42,0,71,-27,71,-72v0,-44,-29,-71,-71,-71v-42,0,-71,29,-71,71v0,45,29,72,71,72xm67,-225v49,-17,80,33,41,52r26,43r-16,0r-24,-41r-13,0r0,41r-14,0r0,-95xm112,-198v0,-17,-17,-16,-31,-14r0,29v16,0,31,2,31,-15","w":194},"\u00af":{"d":"106,-211r-89,0r0,-23r89,0r0,23","w":118},"\u00b0":{"d":"55,-165v-30,0,-46,-17,-45,-47v0,-31,15,-46,45,-46v30,0,46,15,46,46v0,30,-16,47,-46,47xm55,-240v-16,0,-24,9,-24,28v0,19,8,29,24,29v17,0,25,-10,25,-29v0,-19,-8,-28,-25,-28","w":108},"\u00b1":{"d":"134,-8r-121,0r0,-24r121,0r0,24xm134,-100r-48,0r0,48r-24,0r0,-48r-49,0r0,-24r49,0r0,-48r24,0r0,48r48,0r0,24","w":146},"\u00b2":{"d":"93,-242v0,46,-51,48,-65,85r67,0r0,16r-82,0r-5,-8v7,-46,56,-52,67,-94v0,-12,-10,-22,-23,-22v-22,0,-21,17,-35,21v-4,-1,-8,-3,-8,-8v3,-18,21,-30,41,-30v26,0,43,15,43,40","w":104},"\u00b3":{"d":"78,-183v-1,-22,-20,-27,-44,-25r0,-15v21,2,39,-2,39,-21v0,-15,-9,-19,-23,-21v-20,-3,-26,34,-39,10v6,-37,84,-36,80,9v0,14,-7,26,-19,29v39,12,24,83,-21,78v-24,-3,-39,-15,-43,-36r12,-3v3,30,60,29,58,-5","w":103},"\u00b4":{"d":"87,-224r-63,23r-7,-13r59,-33","w":99},"\u00b7":{"d":"35,-136v19,0,22,4,22,20v0,18,-4,20,-22,20v-16,0,-21,-2,-21,-20v0,-15,4,-20,21,-20","w":71},"\u00b8":{"d":"52,41v0,-16,-20,-10,-25,-20r5,-22r13,0r-4,16v14,-1,27,11,26,26v4,29,-37,40,-50,18r10,-9v5,10,28,8,25,-9","w":80},"\u00b9":{"d":"36,-251r-21,10r-8,-15v13,-5,24,-12,33,-24r13,0r0,139r-17,0r0,-110","w":75},"\u00ba":{"d":"4,-174v0,-42,16,-63,56,-63v40,0,56,20,56,63v0,44,-14,66,-56,66v-42,1,-56,-23,-56,-66xm87,-172v-1,-26,-5,-42,-27,-42v-22,0,-26,15,-27,39v0,28,6,44,28,44v18,0,26,-14,26,-41","w":120},"\u00bb":{"d":"146,-94r-48,70r-19,-16r39,-54r-39,-54r19,-16xm75,-94r-48,70r-20,-16r39,-54r-39,-54r20,-16","w":156,"k":{"\u1ef2":37,"\u1e84":19,"\u1e82":19,"\u1e80":19,"\u0218":15,"\u017d":19,"\u017b":19,"\u0179":19,"\u0178":37,"\u0176":37,"\u0174":19,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":15,"\u015e":15,"\u015c":15,"\u015a":15,"\u0134":30,"\u00dd":37,"Z":19,"Y":37,"X":22,"W":19,"V":19,"T":30,"S":15,"J":30}},"\u00bc":{"d":"53,8r-15,-8r156,-261r16,9xm15,-238v16,-7,25,-14,38,-25r9,1r0,139r-18,0r0,-111v-6,5,-13,9,-21,11xm234,-51r12,0r0,17r-12,0r0,43r-17,0r0,-43r-61,0r-5,-10r68,-88r15,3r0,78xm177,-51r40,0r0,-51","w":256},"\u00bd":{"d":"245,-93v0,46,-50,49,-64,85r66,0r0,16r-82,0r-4,-8v6,-47,56,-51,67,-93v-1,-11,-10,-23,-23,-23v-20,0,-22,16,-35,21v-4,-1,-9,-2,-8,-8v2,-19,21,-29,41,-29v26,0,42,14,42,39xm204,-252r-156,260r-15,-8r156,-261xm57,-123r-18,0r0,-111v-6,4,-13,8,-21,11r-8,-15v13,-5,25,-12,34,-24r13,0r0,139","w":265},"\u00be":{"d":"64,8r-15,-8r156,-261r16,9xm246,-51r11,0r0,17r-11,0r0,43r-17,0r0,-43r-62,0r-5,-10r68,-88r16,3r0,78xm188,-51r41,0r0,-51xm80,-165v0,-23,-20,-27,-44,-25r0,-15v39,12,56,-39,17,-42v-16,-1,-21,14,-31,18v-5,1,-9,-4,-9,-9v8,-35,80,-36,80,10v0,14,-7,25,-18,29v37,12,25,83,-21,78v-24,-3,-40,-15,-44,-36r12,-4v3,30,58,31,58,-4","w":263},"\u00bf":{"d":"20,-28v-2,-63,77,-59,58,-129r22,-2v8,6,14,18,14,30v0,50,-51,52,-54,98v-1,22,12,29,33,31v31,2,27,-31,50,-38v8,-0,18,9,17,18v-3,35,-33,51,-70,52v-43,1,-69,-18,-70,-60xm92,-186v-18,-0,-21,-4,-21,-21v0,-19,4,-20,21,-20v17,0,21,2,21,20v0,17,-3,21,-21,21","w":172},"\u00c0":{"d":"211,0r-45,0r-16,-51r-88,0r-16,51r-40,0r81,-256r41,0xm70,-81r71,0r-36,-113xm126,-277r-63,-23r11,-23r59,33","w":217,"k":{"\u201d":37,"\u201c":37,"\u2019":37,"\u2018":37,"\u1ef3":11,"\u1ef2":30,"\u1e85":11,"\u1e84":22,"\u1e83":11,"\u1e82":22,"\u1e81":11,"\u1e80":22,"\u0218":7,"\u01fe":7,"\u0178":30,"\u0177":11,"\u0176":30,"\u0175":11,"\u0174":22,"\u0173":11,"\u0172":11,"\u0171":11,"\u0170":11,"\u016f":11,"\u016e":11,"\u016d":11,"\u016c":11,"\u016b":11,"\u016a":11,"\u0169":11,"\u0168":11,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":7,"\u015e":7,"\u015c":7,"\u015a":7,"\u0152":7,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u010c":7,"\u010a":7,"\u0108":7,"\u0106":7,"\u00ff":11,"\u00fd":11,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00dd":30,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"y":11,"w":11,"v":11,"u":11,"Y":30,"W":22,"V":22,"U":11,"T":30,"S":7,"Q":7,"O":7,"G":7,"C":7,"'":37,"\"":37}},"\u00c1":{"d":"211,0r-45,0r-16,-51r-88,0r-16,51r-40,0r81,-256r41,0xm70,-81r71,0r-36,-113xm154,-300r-63,23r-7,-13r59,-33","w":217,"k":{"\u201d":37,"\u201c":37,"\u2019":37,"\u2018":37,"\u1ef3":11,"\u1ef2":30,"\u1e85":11,"\u1e84":22,"\u1e83":11,"\u1e82":22,"\u1e81":11,"\u1e80":22,"\u0218":7,"\u01fe":7,"\u0178":30,"\u0177":11,"\u0176":30,"\u0175":11,"\u0174":22,"\u0173":11,"\u0172":11,"\u0171":11,"\u0170":11,"\u016f":11,"\u016e":11,"\u016d":11,"\u016c":11,"\u016b":11,"\u016a":11,"\u0169":11,"\u0168":11,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":7,"\u015e":7,"\u015c":7,"\u015a":7,"\u0152":7,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u010c":7,"\u010a":7,"\u0108":7,"\u0106":7,"\u00ff":11,"\u00fd":11,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00dd":30,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"y":11,"w":11,"v":11,"u":11,"Y":30,"W":22,"V":22,"U":11,"T":30,"S":7,"Q":7,"O":7,"G":7,"C":7,"'":37,"\"":37}},"\u00c2":{"d":"211,0r-45,0r-16,-51r-88,0r-16,51r-40,0r81,-256r41,0xm70,-81r71,0r-36,-113xm152,-284r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":217,"k":{"\u201d":37,"\u201c":37,"\u2019":37,"\u2018":37,"\u1ef3":11,"\u1ef2":30,"\u1e85":11,"\u1e84":22,"\u1e83":11,"\u1e82":22,"\u1e81":11,"\u1e80":22,"\u0218":7,"\u01fe":7,"\u0178":30,"\u0177":11,"\u0176":30,"\u0175":11,"\u0174":22,"\u0173":11,"\u0172":11,"\u0171":11,"\u0170":11,"\u016f":11,"\u016e":11,"\u016d":11,"\u016c":11,"\u016b":11,"\u016a":11,"\u0169":11,"\u0168":11,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":7,"\u015e":7,"\u015c":7,"\u015a":7,"\u0152":7,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u010c":7,"\u010a":7,"\u0108":7,"\u0106":7,"\u00ff":11,"\u00fd":11,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00dd":30,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"y":11,"w":11,"v":11,"u":11,"Y":30,"W":22,"V":22,"U":11,"T":30,"S":7,"Q":7,"O":7,"G":7,"C":7,"'":37,"\"":37}},"\u00c3":{"d":"211,0r-45,0r-16,-51r-88,0r-16,51r-40,0r81,-256r41,0xm70,-81r71,0r-36,-113xm86,-313v23,0,49,23,63,0r10,13v-8,12,-15,18,-29,20v-22,-3,-49,-25,-63,-1r-10,-12v8,-12,14,-20,29,-20","w":217,"k":{"\u201d":37,"\u201c":37,"\u2019":37,"\u2018":37,"\u1ef3":11,"\u1ef2":30,"\u1e85":11,"\u1e84":22,"\u1e83":11,"\u1e82":22,"\u1e81":11,"\u1e80":22,"\u0218":7,"\u01fe":7,"\u0178":30,"\u0177":11,"\u0176":30,"\u0175":11,"\u0174":22,"\u0173":11,"\u0172":11,"\u0171":11,"\u0170":11,"\u016f":11,"\u016e":11,"\u016d":11,"\u016c":11,"\u016b":11,"\u016a":11,"\u0169":11,"\u0168":11,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":7,"\u015e":7,"\u015c":7,"\u015a":7,"\u0152":7,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u010c":7,"\u010a":7,"\u0108":7,"\u0106":7,"\u00ff":11,"\u00fd":11,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00dd":30,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"y":11,"w":11,"v":11,"u":11,"Y":30,"W":22,"V":22,"U":11,"T":30,"S":7,"Q":7,"O":7,"G":7,"C":7,"'":37,"\"":37}},"\u00c4":{"d":"211,0r-45,0r-16,-51r-88,0r-16,51r-40,0r81,-256r41,0xm70,-81r71,0r-36,-113xm139,-313v15,0,18,2,18,17v0,15,-3,17,-18,17v-16,0,-18,-2,-18,-17v0,-15,2,-17,18,-17xm78,-313v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":217,"k":{"\u201d":37,"\u201c":37,"\u2019":37,"\u2018":37,"\u1ef3":11,"\u1ef2":30,"\u1e85":11,"\u1e84":22,"\u1e83":11,"\u1e82":22,"\u1e81":11,"\u1e80":22,"\u0218":7,"\u01fe":7,"\u0178":30,"\u0177":11,"\u0176":30,"\u0175":11,"\u0174":22,"\u0173":11,"\u0172":11,"\u0171":11,"\u0170":11,"\u016f":11,"\u016e":11,"\u016d":11,"\u016c":11,"\u016b":11,"\u016a":11,"\u0169":11,"\u0168":11,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":7,"\u015e":7,"\u015c":7,"\u015a":7,"\u0152":7,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u010c":7,"\u010a":7,"\u0108":7,"\u0106":7,"\u00ff":11,"\u00fd":11,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00dd":30,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"y":11,"w":11,"v":11,"u":11,"Y":30,"W":22,"V":22,"U":11,"T":30,"S":7,"Q":7,"O":7,"G":7,"C":7,"'":37,"\"":37}},"\u00c5":{"d":"211,0r-45,0r-16,-51r-88,0r-16,51r-40,0r81,-256r41,0xm70,-81r71,0r-36,-113xm109,-333v23,0,34,10,34,30v0,21,-11,31,-34,30v-23,0,-34,-10,-34,-30v0,-20,11,-30,34,-30xm126,-303v0,-10,-5,-15,-17,-15v-12,0,-18,5,-18,15v0,11,6,16,18,16v12,0,17,-5,17,-16","w":217,"k":{"\u201d":37,"\u201c":37,"\u2019":37,"\u2018":37,"\u1ef3":11,"\u1ef2":30,"\u1e85":11,"\u1e84":22,"\u1e83":11,"\u1e82":22,"\u1e81":11,"\u1e80":22,"\u0218":7,"\u01fe":7,"\u0178":30,"\u0177":11,"\u0176":30,"\u0175":11,"\u0174":22,"\u0173":11,"\u0172":11,"\u0171":11,"\u0170":11,"\u016f":11,"\u016e":11,"\u016d":11,"\u016c":11,"\u016b":11,"\u016a":11,"\u0169":11,"\u0168":11,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":7,"\u015e":7,"\u015c":7,"\u015a":7,"\u0152":7,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u010c":7,"\u010a":7,"\u0108":7,"\u0106":7,"\u00ff":11,"\u00fd":11,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00dd":30,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"y":11,"w":11,"v":11,"u":11,"Y":30,"W":22,"V":22,"U":11,"T":30,"S":7,"Q":7,"O":7,"G":7,"C":7,"'":37,"\"":37}},"\u00c6":{"d":"254,-221r-93,0r0,71r78,0r0,29r-78,0r0,86r96,0r0,35r-139,0r0,-54r-65,0r-13,54r-41,0r64,-256r191,0r0,35xm94,-224r-35,138r59,0r0,-138r-24,0","w":267},"\u00c7":{"d":"127,-28v31,0,52,-18,63,-40r23,7v-11,37,-41,59,-84,64r-3,12v15,0,27,11,27,26v0,29,-38,41,-50,18r9,-9v6,10,28,8,26,-9v-2,-15,-20,-10,-26,-20r5,-18v-75,-4,-105,-48,-105,-130v-1,-82,31,-131,110,-131v45,1,80,17,87,54v3,16,-24,23,-31,8v-9,-20,-29,-32,-56,-32v-50,0,-63,42,-63,100v0,61,14,100,68,100","w":223,"k":{"\u01fa":7,"\u0104":7,"\u0102":7,"\u0100":7,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"A":7,"\/":4}},"\u00c8":{"d":"166,-221r-97,0r0,71r81,0r0,29r-81,0r0,86r99,0r0,35r-142,0r0,-256r140,0r0,35xm112,-277r-63,-23r11,-23r59,33","w":180},"\u00c9":{"d":"166,-221r-97,0r0,71r81,0r0,29r-81,0r0,86r99,0r0,35r-142,0r0,-256r140,0r0,35xm141,-300r-63,23r-7,-13r59,-33","w":180},"\u00ca":{"d":"166,-221r-97,0r0,71r81,0r0,29r-81,0r0,86r99,0r0,35r-142,0r0,-256r140,0r0,35xm139,-284r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":180},"\u00cb":{"d":"166,-221r-97,0r0,71r81,0r0,29r-81,0r0,86r99,0r0,35r-142,0r0,-256r140,0r0,35xm126,-313v15,0,18,2,18,17v0,15,-3,17,-18,17v-16,0,-18,-2,-18,-17v0,-15,2,-17,18,-17xm65,-313v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":180},"\u00cc":{"d":"71,0r-44,0r0,-256r44,0r0,256xm67,-277r-63,-23r11,-23r59,33","w":98},"\u00cd":{"d":"71,0r-44,0r0,-256r44,0r0,256xm95,-300r-63,23r-7,-13r59,-33","w":98},"\u00ce":{"d":"71,0r-44,0r0,-256r44,0r0,256xm93,-284r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":98},"\u00cf":{"d":"71,0r-44,0r0,-256r44,0r0,256xm80,-313v15,0,18,2,18,17v0,15,-3,17,-18,17v-16,0,-18,-2,-18,-17v0,-15,2,-17,18,-17xm19,-313v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":98},"\u00d0":{"d":"217,-128v0,119,-68,141,-189,128r0,-121r-20,0r0,-29r20,0r0,-104r78,-3v86,-2,111,42,111,129xm174,-128v4,-75,-25,-109,-103,-97r0,75r46,0r0,29r-46,0r0,90r36,1v58,2,64,-41,67,-98","w":229,"k":{"\u2026":15,"\u201e":15,"\u201a":15,"\u1ef2":19,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u0218":4,"\u01fa":7,"\u0178":19,"\u0176":19,"\u0174":7,"\u0166":11,"\u0164":11,"\u0162":11,"\u0160":4,"\u015e":4,"\u015c":4,"\u015a":4,"\u0104":7,"\u0102":7,"\u0100":7,"\u00dd":19,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"Y":19,"W":7,"V":7,"T":11,"S":4,"A":7,"\/":15,".":15,",":15}},"\u00d1":{"d":"216,0r-38,0r-112,-171r0,171r-39,0r0,-256r37,0r112,172r0,-172r40,0r0,256xm99,-313v23,0,49,23,63,0r10,13v-8,12,-15,18,-29,20v-22,-3,-49,-25,-63,-1r-10,-12v8,-12,14,-20,29,-20","w":242},"\u00d2":{"d":"12,-126v0,-83,29,-132,110,-132v82,-1,111,50,111,132v0,82,-30,130,-111,129v-79,-1,-110,-46,-110,-129xm186,-123v0,-59,-10,-105,-65,-105v-51,0,-63,38,-63,97v0,61,14,103,65,103v52,0,63,-41,63,-95xm139,-277r-63,-23r11,-23r59,33","w":244,"k":{"\u2026":11,"\u201e":11,"\u201a":11,"\u1ef2":19,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":7,"\u0178":19,"\u0176":19,"\u0174":7,"\u0166":15,"\u0164":15,"\u0162":15,"\u0134":26,"\u0104":7,"\u0102":7,"\u0100":7,"\u00dd":19,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"Y":19,"X":11,"W":7,"V":7,"T":15,"M":4,"J":26,"A":7,"\/":15,".":11,",":11}},"\u00d3":{"d":"12,-126v0,-83,29,-132,110,-132v82,-1,111,50,111,132v0,82,-30,130,-111,129v-79,-1,-110,-46,-110,-129xm186,-123v0,-59,-10,-105,-65,-105v-51,0,-63,38,-63,97v0,61,14,103,65,103v52,0,63,-41,63,-95xm168,-300r-63,23r-7,-13r59,-33","w":244,"k":{"\u2026":11,"\u201e":11,"\u201a":11,"\u1ef2":19,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":7,"\u0178":19,"\u0176":19,"\u0174":7,"\u0166":15,"\u0164":15,"\u0162":15,"\u0134":26,"\u0104":7,"\u0102":7,"\u0100":7,"\u00dd":19,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"Y":19,"X":11,"W":7,"V":7,"T":15,"M":4,"J":26,"A":7,"\/":15,".":11,",":11}},"\u00d4":{"d":"12,-126v0,-83,29,-132,110,-132v82,-1,111,50,111,132v0,82,-30,130,-111,129v-79,-1,-110,-46,-110,-129xm186,-123v0,-59,-10,-105,-65,-105v-51,0,-63,38,-63,97v0,61,14,103,65,103v52,0,63,-41,63,-95xm166,-284r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":244,"k":{"\u2026":11,"\u201e":11,"\u201a":11,"\u1ef2":19,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":7,"\u0178":19,"\u0176":19,"\u0174":7,"\u0166":15,"\u0164":15,"\u0162":15,"\u0134":26,"\u0104":7,"\u0102":7,"\u0100":7,"\u00dd":19,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"Y":19,"X":11,"W":7,"V":7,"T":15,"M":4,"J":26,"A":7,"\/":15,".":11,",":11}},"\u00d5":{"d":"12,-126v0,-83,29,-132,110,-132v82,-1,111,50,111,132v0,82,-30,130,-111,129v-79,-1,-110,-46,-110,-129xm186,-123v0,-59,-10,-105,-65,-105v-51,0,-63,38,-63,97v0,61,14,103,65,103v52,0,63,-41,63,-95xm100,-313v23,0,49,23,63,0r10,13v-8,12,-15,18,-29,20v-22,-3,-49,-25,-63,-1r-10,-12v8,-12,14,-20,29,-20","w":244,"k":{"\u2026":11,"\u201e":11,"\u201a":11,"\u1ef2":19,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":7,"\u0178":19,"\u0176":19,"\u0174":7,"\u0166":15,"\u0164":15,"\u0162":15,"\u0134":26,"\u0104":7,"\u0102":7,"\u0100":7,"\u00dd":19,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"Y":19,"X":11,"W":7,"V":7,"T":15,"M":4,"J":26,"A":7,"\/":15,".":11,",":11}},"\u00d6":{"d":"12,-126v0,-83,29,-132,110,-132v82,-1,111,50,111,132v0,82,-30,130,-111,129v-79,-1,-110,-46,-110,-129xm186,-123v0,-59,-10,-105,-65,-105v-51,0,-63,38,-63,97v0,61,14,103,65,103v52,0,63,-41,63,-95xm153,-313v15,0,18,2,18,17v0,15,-3,17,-18,17v-16,0,-18,-2,-18,-17v0,-15,2,-17,18,-17xm92,-313v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":244},"\u00d7":{"d":"81,-112r34,34r-17,17r-34,-34r-34,34r-17,-17r34,-34r-34,-34r17,-17r34,34r34,-34r17,17","w":128},"\u00d8":{"d":"122,-258v34,-1,57,7,75,23r20,-25r12,10r-21,27v17,24,24,55,25,97v-1,81,-30,130,-111,129v-33,-1,-56,-6,-74,-22r-21,27r-13,-11r22,-28v-17,-23,-24,-53,-24,-95v-1,-83,29,-132,110,-132xm121,-228v-71,-5,-70,102,-54,159r104,-133v-11,-16,-26,-25,-50,-26xm123,-28v73,0,69,-101,55,-157r-104,132v11,17,27,25,49,25","w":246,"k":{"\u2026":11,"\u201e":11,"\u201a":11,"\u1ef2":19,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":7,"\u0178":19,"\u0176":19,"\u0174":7,"\u0166":15,"\u0164":15,"\u0162":15,"\u0134":26,"\u0104":7,"\u0102":7,"\u0100":7,"\u00dd":19,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"Y":19,"X":11,"W":7,"V":7,"T":15,"M":4,"J":26,"A":7,"\/":15,".":11,",":11}},"\u00d9":{"d":"118,-30v38,0,49,-22,49,-61r0,-165r41,0r0,167v2,64,-27,92,-91,92v-129,0,-83,-148,-91,-259r45,0r0,165v-1,38,9,61,47,61xm134,-277r-63,-23r11,-23r59,33","w":234,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u01fa":11,"\u0104":11,"\u0102":11,"\u0100":11,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"M":4,"A":11,"\/":19,".":7,",":7}},"\u00da":{"d":"118,-30v38,0,49,-22,49,-61r0,-165r41,0r0,167v2,64,-27,92,-91,92v-129,0,-83,-148,-91,-259r45,0r0,165v-1,38,9,61,47,61xm163,-300r-63,23r-7,-13r59,-33","w":234,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u01fa":11,"\u0104":11,"\u0102":11,"\u0100":11,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"M":4,"A":11,"\/":19,".":7,",":7}},"\u00db":{"d":"118,-30v38,0,49,-22,49,-61r0,-165r41,0r0,167v2,64,-27,92,-91,92v-129,0,-83,-148,-91,-259r45,0r0,165v-1,38,9,61,47,61xm161,-284r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":234,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u01fa":11,"\u0104":11,"\u0102":11,"\u0100":11,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"M":4,"A":11,"\/":19,".":7,",":7}},"\u00dc":{"d":"118,-30v38,0,49,-22,49,-61r0,-165r41,0r0,167v2,64,-27,92,-91,92v-129,0,-83,-148,-91,-259r45,0r0,165v-1,38,9,61,47,61xm147,-313v15,0,18,2,18,17v0,15,-3,17,-18,17v-16,0,-18,-2,-18,-17v0,-15,2,-17,18,-17xm86,-313v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":234,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u01fa":11,"\u0104":11,"\u0102":11,"\u0100":11,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"M":4,"A":11,"\/":19,".":7,",":7}},"\u00dd":{"d":"123,-112r0,112r-43,0r0,-112r-75,-144r49,0r53,107r56,-107r39,0xm147,-300r-63,23r-7,-13r59,-33","w":202,"k":{"\uf730":19,"\u203a":30,"\u2039":30,"\u2026":30,"\u201e":30,"\u201a":30,"\u2014":30,"\u2013":30,"\u1ef3":12,"\u1e85":12,"\u1e84":-15,"\u1e83":12,"\u1e82":-15,"\u1e81":12,"\u1e80":-15,"\u0219":15,"\u0218":11,"\u01ff":19,"\u01fe":11,"\u01fc":26,"\u01fb":15,"\u01fa":30,"\u0177":12,"\u0175":12,"\u0174":-15,"\u0173":12,"\u0171":12,"\u016f":12,"\u016d":12,"\u016b":12,"\u0169":12,"\u0166":-11,"\u0164":-11,"\u0162":-11,"\u0161":15,"\u0160":11,"\u015f":15,"\u015e":11,"\u015d":15,"\u015c":11,"\u015b":15,"\u015a":11,"\u0153":19,"\u0152":15,"\u0151":19,"\u0150":11,"\u014f":19,"\u014e":11,"\u014d":19,"\u014c":11,"\u0134":30,"\u0122":15,"\u0120":15,"\u011e":15,"\u011c":15,"\u0119":19,"\u0117":19,"\u0115":19,"\u0113":19,"\u010d":19,"\u010c":19,"\u010b":19,"\u010a":19,"\u0109":19,"\u0108":19,"\u0107":19,"\u0106":19,"\u0105":15,"\u0104":30,"\u0103":15,"\u0102":30,"\u0101":15,"\u0100":30,"\u00ff":12,"\u00fd":12,"\u00fc":12,"\u00fb":12,"\u00fa":12,"\u00f9":12,"\u00f8":19,"\u00f6":19,"\u00f5":19,"\u00f4":19,"\u00f3":19,"\u00f2":19,"\u00eb":19,"\u00ea":19,"\u00e9":19,"\u00e8":19,"\u00e7":19,"\u00e6":19,"\u00e5":15,"\u00e4":15,"\u00e3":15,"\u00e2":15,"\u00e1":15,"\u00e0":15,"\u00d8":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":19,"\u00c6":26,"\u00c5":30,"\u00c4":30,"\u00c3":30,"\u00c2":30,"\u00c1":30,"\u00c0":30,"\u00bb":30,"\u00ab":30,"y":12,"w":12,"v":12,"u":12,"s":15,"o":19,"e":19,"c":19,"a":15,"W":-15,"V":-15,"T":-11,"S":11,"Q":11,"O":11,"M":7,"J":30,"G":15,"C":19,"A":30,"\/":19,".":30,"-":30,",":30}},"\u00de":{"d":"183,-130v0,65,-48,86,-114,76r0,54r-43,0r0,-256r43,0r0,48v68,-2,114,7,114,78xm140,-130v0,-45,-27,-52,-71,-47r0,93v39,7,71,-1,71,-46","w":196},"\u00df":{"d":"89,-240v-21,0,-24,17,-24,38r0,202r-39,0r0,-203v1,-41,18,-64,62,-64v41,0,62,16,62,48v1,25,-17,33,-19,55v9,45,64,44,60,103v8,59,-75,84,-110,45r8,-19v21,21,66,14,64,-25v-3,-56,-87,-69,-50,-131v9,-16,15,-49,-14,-49","w":205},"\u00e0":{"d":"89,-182v75,-4,60,75,60,142v0,14,7,22,16,14v10,17,-4,28,-24,28v-12,0,-21,-7,-26,-20v-25,35,-102,27,-102,-34v0,-51,45,-63,98,-56v1,-25,-1,-45,-26,-45v-28,0,-30,22,-50,26v-9,0,-17,-7,-17,-16v6,-28,37,-37,71,-39xm51,-55v-4,35,47,35,60,16r0,-47v-27,-5,-63,-1,-60,31xm105,-201r-63,-23r11,-23r59,33","w":176,"k":{"\u201d":4,"\u201c":4,"\u2019":4,"\u2018":4,"\u1ef3":8,"\u1e85":8,"\u1e84":8,"\u1e83":8,"\u1e82":8,"\u1e81":8,"\u1e80":8,"\u021b":4,"\u0219":4,"\u0177":8,"\u0175":8,"\u0174":8,"\u0167":4,"\u0165":4,"\u0163":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"t":4,"s":4,"W":8,"V":8,"'":4,"\"":4}},"\u00e1":{"d":"89,-182v75,-4,60,75,60,142v0,14,7,22,16,14v10,17,-4,28,-24,28v-12,0,-21,-7,-26,-20v-25,35,-102,27,-102,-34v0,-51,45,-63,98,-56v1,-25,-1,-45,-26,-45v-28,0,-30,22,-50,26v-9,0,-17,-7,-17,-16v6,-28,37,-37,71,-39xm51,-55v-4,35,47,35,60,16r0,-47v-27,-5,-63,-1,-60,31xm134,-224r-63,23r-7,-13r59,-33","w":176,"k":{"\u201d":4,"\u201c":4,"\u2019":4,"\u2018":4,"\u1ef3":8,"\u1e85":8,"\u1e84":8,"\u1e83":8,"\u1e82":8,"\u1e81":8,"\u1e80":8,"\u021b":4,"\u0219":4,"\u0177":8,"\u0175":8,"\u0174":8,"\u0167":4,"\u0165":4,"\u0163":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"t":4,"s":4,"W":8,"V":8,"'":4,"\"":4}},"\u00e2":{"d":"89,-182v75,-4,60,75,60,142v0,14,7,22,16,14v10,17,-4,28,-24,28v-12,0,-21,-7,-26,-20v-25,35,-102,27,-102,-34v0,-51,45,-63,98,-56v1,-25,-1,-45,-26,-45v-28,0,-30,22,-50,26v-9,0,-17,-7,-17,-16v6,-28,37,-37,71,-39xm51,-55v-4,35,47,35,60,16r0,-47v-27,-5,-63,-1,-60,31xm132,-208r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":176,"k":{"\u201d":4,"\u201c":4,"\u2019":4,"\u2018":4,"\u1ef3":8,"\u1e85":8,"\u1e84":8,"\u1e83":8,"\u1e82":8,"\u1e81":8,"\u1e80":8,"\u021b":4,"\u0219":4,"\u0177":8,"\u0175":8,"\u0174":8,"\u0167":4,"\u0165":4,"\u0163":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"t":4,"s":4,"W":8,"V":8,"'":4,"\"":4}},"\u00e3":{"d":"89,-182v75,-4,60,75,60,142v0,14,7,22,16,14v10,17,-4,28,-24,28v-12,0,-21,-7,-26,-20v-25,35,-102,27,-102,-34v0,-51,45,-63,98,-56v1,-25,-1,-45,-26,-45v-28,0,-30,22,-50,26v-9,0,-17,-7,-17,-16v6,-28,37,-37,71,-39xm51,-55v-4,35,47,35,60,16r0,-47v-27,-5,-63,-1,-60,31xm66,-237v23,0,49,23,63,0r10,13v-8,12,-15,18,-29,20v-22,-3,-49,-25,-63,-1r-10,-12v8,-12,14,-20,29,-20","w":176,"k":{"\u201d":4,"\u201c":4,"\u2019":4,"\u2018":4,"\u1ef3":8,"\u1e85":8,"\u1e84":8,"\u1e83":8,"\u1e82":8,"\u1e81":8,"\u1e80":8,"\u021b":4,"\u0219":4,"\u0177":8,"\u0175":8,"\u0174":8,"\u0167":4,"\u0165":4,"\u0163":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"t":4,"s":4,"W":8,"V":8,"'":4,"\"":4}},"\u00e4":{"d":"89,-182v75,-4,60,75,60,142v0,14,7,22,16,14v10,17,-4,28,-24,28v-12,0,-21,-7,-26,-20v-25,35,-102,27,-102,-34v0,-51,45,-63,98,-56v1,-25,-1,-45,-26,-45v-28,0,-30,22,-50,26v-9,0,-17,-7,-17,-16v6,-28,37,-37,71,-39xm51,-55v-4,35,47,35,60,16r0,-47v-27,-5,-63,-1,-60,31xm118,-237v15,0,18,2,18,17v0,15,-3,17,-18,17v-16,0,-18,-2,-18,-17v0,-15,2,-17,18,-17xm57,-237v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":176,"k":{"\u201d":4,"\u201c":4,"\u2019":4,"\u2018":4,"\u1ef3":8,"\u1e85":8,"\u1e84":8,"\u1e83":8,"\u1e82":8,"\u1e81":8,"\u1e80":8,"\u021b":4,"\u0219":4,"\u0177":8,"\u0175":8,"\u0174":8,"\u0167":4,"\u0165":4,"\u0163":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"t":4,"s":4,"W":8,"V":8,"'":4,"\"":4}},"\u00e5":{"d":"89,-182v75,-4,60,75,60,142v0,14,7,22,16,14v10,17,-4,28,-24,28v-12,0,-21,-7,-26,-20v-25,35,-102,27,-102,-34v0,-51,45,-63,98,-56v1,-25,-1,-45,-26,-45v-28,0,-30,22,-50,26v-9,0,-17,-7,-17,-16v6,-28,37,-37,71,-39xm51,-55v-4,35,47,35,60,16r0,-47v-27,-5,-63,-1,-60,31xm88,-257v23,0,34,10,34,30v0,21,-11,31,-34,30v-23,0,-34,-10,-34,-30v0,-20,11,-30,34,-30xm105,-227v0,-10,-5,-15,-17,-15v-12,0,-18,5,-18,15v0,11,6,16,18,16v12,0,17,-5,17,-16","w":176,"k":{"\u201d":4,"\u201c":4,"\u2019":4,"\u2018":4,"\u1ef3":8,"\u1e85":8,"\u1e84":8,"\u1e83":8,"\u1e82":8,"\u1e81":8,"\u1e80":8,"\u021b":4,"\u0219":4,"\u0177":8,"\u0175":8,"\u0174":8,"\u0167":4,"\u0165":4,"\u0163":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"t":4,"s":4,"W":8,"V":8,"'":4,"\"":4}},"\u00e6":{"d":"188,-182v54,-1,77,41,71,97r-112,0v-10,59,70,77,86,31r24,6v-6,59,-106,66,-130,19v-14,16,-30,32,-59,32v-34,-1,-55,-19,-55,-55v0,-47,44,-64,98,-56v-1,-22,-3,-45,-26,-45v-28,0,-30,22,-50,26v-9,0,-17,-7,-17,-16v7,-42,96,-56,115,-15v12,-15,29,-24,55,-24xm51,-56v0,40,55,35,68,10v-4,-12,-7,-25,-7,-41v-31,-3,-61,-2,-61,31xm222,-108v5,-40,-40,-61,-63,-33v-7,8,-10,19,-11,33r74,0","w":273,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u00e7":{"d":"97,-27v22,0,33,-12,40,-30r24,7v-8,29,-28,50,-61,53r-2,12v14,0,26,11,26,26v0,29,-37,40,-50,18r10,-9v5,10,28,8,25,-9v0,-16,-20,-10,-25,-20r4,-18v-53,-3,-74,-35,-75,-94v-1,-61,25,-91,82,-91v31,0,61,13,65,42v1,10,-9,17,-17,16v-20,-3,-22,-30,-48,-28v-30,2,-42,26,-42,61v0,37,12,64,44,64","w":172,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u00e8":{"d":"91,-182v54,0,79,41,72,97r-112,0v-9,58,70,78,86,31r24,6v-8,31,-31,51,-66,51v-57,-1,-82,-33,-82,-94v0,-60,26,-91,78,-91xm127,-108v4,-39,-41,-61,-64,-33v-7,8,-11,19,-11,33r75,0xm106,-201r-63,-23r11,-23r59,33","w":177,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u00e9":{"d":"91,-182v54,0,79,41,72,97r-112,0v-9,58,70,78,86,31r24,6v-8,31,-31,51,-66,51v-57,-1,-82,-33,-82,-94v0,-60,26,-91,78,-91xm127,-108v4,-39,-41,-61,-64,-33v-7,8,-11,19,-11,33r75,0xm135,-224r-63,23r-7,-13r59,-33","w":177,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u00ea":{"d":"91,-182v54,0,79,41,72,97r-112,0v-9,58,70,78,86,31r24,6v-8,31,-31,51,-66,51v-57,-1,-82,-33,-82,-94v0,-60,26,-91,78,-91xm127,-108v4,-39,-41,-61,-64,-33v-7,8,-11,19,-11,33r75,0xm132,-208r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":177,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u00eb":{"d":"91,-182v54,0,79,41,72,97r-112,0v-9,58,70,78,86,31r24,6v-8,31,-31,51,-66,51v-57,-1,-82,-33,-82,-94v0,-60,26,-91,78,-91xm127,-108v4,-39,-41,-61,-64,-33v-7,8,-11,19,-11,33r75,0xm119,-237v15,0,18,2,18,17v0,15,-3,17,-18,17v-16,0,-18,-2,-18,-17v0,-15,2,-17,18,-17xm58,-237v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":177,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u00ec":{"d":"63,-201r-63,-23r11,-23r59,33xm65,0r-39,0r0,-180r39,0r0,180","w":90},"\u00ed":{"d":"91,-224r-63,23r-7,-13r59,-33xm65,0r-39,0r0,-180r39,0r0,180","w":90},"\u00ee":{"d":"65,0r-39,0r0,-180r39,0r0,180xm90,-208r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":90},"\u00ef":{"d":"76,-237v15,0,18,2,18,17v0,15,-3,17,-18,17v-16,0,-18,-2,-18,-17v0,-15,2,-17,18,-17xm15,-237v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17xm65,0r-39,0r0,-180r39,0r0,180","w":90},"\u00f0":{"d":"116,-271r20,25r26,-18r8,13r-27,17v39,65,61,238,-49,237v-56,0,-81,-39,-81,-95v0,-51,23,-82,71,-82v28,1,44,12,56,30v-2,-26,-13,-54,-22,-74r-34,22r-8,-12r36,-23r-19,-26xm53,-93v0,56,48,88,75,48v20,-29,14,-105,-35,-101v-29,2,-40,21,-40,53","w":188},"\u00f1":{"d":"116,-182v78,-1,49,109,55,182r-39,0r0,-107v6,-48,-43,-56,-68,-30r0,137r-39,0r0,-180r35,0r1,21v12,-15,31,-23,55,-23xm76,-237v23,0,49,23,63,0r10,13v-8,12,-15,18,-29,20v-22,-3,-49,-25,-63,-1r-10,-12v8,-12,14,-20,29,-20","w":195,"k":{"\u201d":11,"\u201c":11,"\u2019":11,"\u2018":11,"\u1ef3":8,"\u1e85":8,"\u1e83":8,"\u1e81":8,"\u0177":8,"\u0175":8,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"'":11,"\"":11}},"\u00f2":{"d":"13,-92v0,-61,22,-90,80,-90v58,0,79,30,79,91v0,62,-21,93,-79,94v-60,0,-80,-33,-80,-95xm134,-89v-1,-38,-9,-63,-41,-63v-30,0,-40,23,-40,58v0,38,7,66,41,67v27,0,40,-21,40,-62xm110,-201r-63,-23r11,-23r59,33","k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u00f3":{"d":"13,-92v0,-61,22,-90,80,-90v58,0,79,30,79,91v0,62,-21,93,-79,94v-60,0,-80,-33,-80,-95xm134,-89v-1,-38,-9,-63,-41,-63v-30,0,-40,23,-40,58v0,38,7,66,41,67v27,0,40,-21,40,-62xm138,-224r-63,23r-7,-13r59,-33","k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u00f4":{"d":"13,-92v0,-61,22,-90,80,-90v58,0,79,30,79,91v0,62,-21,93,-79,94v-60,0,-80,-33,-80,-95xm134,-89v-1,-38,-9,-63,-41,-63v-30,0,-40,23,-40,58v0,38,7,66,41,67v27,0,40,-21,40,-62xm136,-208r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u00f5":{"d":"13,-92v0,-61,22,-90,80,-90v58,0,79,30,79,91v0,62,-21,93,-79,94v-60,0,-80,-33,-80,-95xm134,-89v-1,-38,-9,-63,-41,-63v-30,0,-40,23,-40,58v0,38,7,66,41,67v27,0,40,-21,40,-62xm71,-237v23,0,49,23,63,0r10,13v-8,12,-15,18,-29,20v-22,-3,-49,-25,-63,-1r-10,-12v8,-12,14,-20,29,-20","k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u00f6":{"d":"13,-92v0,-61,22,-90,80,-90v58,0,79,30,79,91v0,62,-21,93,-79,94v-60,0,-80,-33,-80,-95xm134,-89v-1,-38,-9,-63,-41,-63v-30,0,-40,23,-40,58v0,38,7,66,41,67v27,0,40,-21,40,-62xm123,-237v15,0,18,2,18,17v0,15,-3,17,-18,17v-16,0,-18,-2,-18,-17v0,-15,2,-17,18,-17xm62,-237v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u00f7":{"d":"133,-100r-120,0r0,-24r120,0r0,24xm57,-54v0,-14,2,-17,16,-17v15,0,17,2,17,17v0,15,-2,17,-17,17v-15,0,-16,-3,-16,-17xm57,-173v0,-14,2,-17,16,-17v15,0,17,2,17,17v0,15,-2,17,-17,17v-15,0,-16,-3,-16,-17","w":146},"\u00f8":{"d":"13,-92v0,-83,69,-107,130,-78r13,-17r12,10r-14,18v12,15,18,37,18,68v0,62,-21,93,-79,94v-22,0,-39,-5,-51,-14r-14,19r-12,-10r15,-20v-12,-15,-18,-39,-18,-70xm64,-40v29,29,70,9,70,-49v0,-16,-2,-27,-5,-36xm121,-140v-29,-28,-68,-4,-68,46v0,16,1,28,4,38","k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u00f9":{"d":"96,-27v23,0,34,-11,33,-35r0,-118r38,0v-3,83,24,183,-72,183v-95,0,-66,-102,-70,-183r40,0r0,118v-1,23,8,35,31,35xm113,-201r-63,-23r11,-23r59,33","w":192,"k":{"\/":8}},"\u00fa":{"d":"96,-27v23,0,34,-11,33,-35r0,-118r38,0v-3,83,24,183,-72,183v-95,0,-66,-102,-70,-183r40,0r0,118v-1,23,8,35,31,35xm142,-224r-63,23r-7,-13r59,-33","w":192,"k":{"\/":8}},"\u00fb":{"d":"96,-27v23,0,34,-11,33,-35r0,-118r38,0v-3,83,24,183,-72,183v-95,0,-66,-102,-70,-183r40,0r0,118v-1,23,8,35,31,35xm140,-208r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":192,"k":{"\/":8}},"\u00fc":{"d":"96,-27v23,0,34,-11,33,-35r0,-118r38,0v-3,83,24,183,-72,183v-95,0,-66,-102,-70,-183r40,0r0,118v-1,23,8,35,31,35xm126,-237v15,0,18,2,18,17v0,15,-3,17,-18,17v-16,0,-18,-2,-18,-17v0,-15,2,-17,18,-17xm65,-237v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":192,"k":{"\/":8}},"\u00fd":{"d":"14,77v0,-23,37,-10,44,-33v6,-10,11,-23,14,-36r-68,-188r40,0r43,140r43,-140r36,0r-80,235v-10,20,-25,36,-54,37v-10,0,-18,-5,-18,-15xm130,-224r-63,23r-7,-13r59,-33","w":168,"k":{"\uf730":4,"\u2026":11,"\u201e":11,"\u201a":11,"\u0219":4,"\u01ff":4,"\u01fb":4,"\u01fa":12,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u0105":4,"\u0104":12,"\u0103":4,"\u0102":12,"\u0101":4,"\u0100":12,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c5":12,"\u00c4":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u00c0":12,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"A":12,"\/":11,".":11,",":11}},"\u00fe":{"d":"111,3v-21,0,-36,-6,-46,-20r0,108r-39,0r0,-359r39,0r0,106v10,-14,25,-20,47,-20v51,1,64,38,64,91v-1,54,-13,93,-65,94xm136,-92v6,-52,-39,-75,-71,-48r0,100v8,8,18,13,32,13v32,0,35,-29,39,-65","w":189,"k":{"\u2026":7,"\u201e":7,"\u201d":8,"\u201c":8,"\u201a":7,"\u2019":8,"\u2018":8,"\u1ef3":4,"\u1e85":4,"\u1e83":4,"\u1e81":4,"\u017e":4,"\u017c":4,"\u017a":4,"\u0177":4,"\u0175":4,"\u00ff":4,"\u00fd":4,"z":4,"y":4,"x":7,"w":4,"v":4,"\/":7,".":7,",":7,"'":8,"\"":8}},"\u00ff":{"d":"14,77v0,-23,37,-10,44,-33v6,-10,11,-23,14,-36r-68,-188r40,0r43,140r43,-140r36,0r-80,235v-10,20,-25,36,-54,37v-10,0,-18,-5,-18,-15xm115,-237v15,0,18,2,18,17v0,15,-3,17,-18,17v-16,0,-18,-2,-18,-17v0,-15,2,-17,18,-17xm54,-237v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":168,"k":{"\uf730":4,"\u2026":11,"\u201e":11,"\u201a":11,"\u0219":4,"\u01ff":4,"\u01fb":4,"\u01fa":12,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u0105":4,"\u0104":12,"\u0103":4,"\u0102":12,"\u0101":4,"\u0100":12,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c5":12,"\u00c4":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u00c0":12,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"A":12,"\/":11,".":11,",":11}},"\u0100":{"d":"211,0r-45,0r-16,-51r-88,0r-16,51r-40,0r81,-256r41,0xm70,-81r71,0r-36,-113xm153,-287r-89,0r0,-23r89,0r0,23","w":217,"k":{"\u201d":37,"\u201c":37,"\u2019":37,"\u2018":37,"\u1ef3":11,"\u1ef2":30,"\u1e85":11,"\u1e84":22,"\u1e83":11,"\u1e82":22,"\u1e81":11,"\u1e80":22,"\u0218":7,"\u01fe":7,"\u0178":30,"\u0177":11,"\u0176":30,"\u0175":11,"\u0174":22,"\u0173":11,"\u0172":11,"\u0171":11,"\u0170":11,"\u016f":11,"\u016e":11,"\u016d":11,"\u016c":11,"\u016b":11,"\u016a":11,"\u0169":11,"\u0168":11,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":7,"\u015e":7,"\u015c":7,"\u015a":7,"\u0152":7,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u010c":7,"\u010a":7,"\u0108":7,"\u0106":7,"\u00ff":11,"\u00fd":11,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00dd":30,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"y":11,"w":11,"v":11,"u":11,"Y":30,"W":22,"V":22,"U":11,"T":30,"S":7,"Q":7,"O":7,"G":7,"C":7,"'":37,"\"":37}},"\u0101":{"d":"89,-182v75,-4,60,75,60,142v0,14,7,22,16,14v10,17,-4,28,-24,28v-12,0,-21,-7,-26,-20v-25,35,-102,27,-102,-34v0,-51,45,-63,98,-56v1,-25,-1,-45,-26,-45v-28,0,-30,22,-50,26v-9,0,-17,-7,-17,-16v6,-28,37,-37,71,-39xm51,-55v-4,35,47,35,60,16r0,-47v-27,-5,-63,-1,-60,31xm132,-211r-89,0r0,-23r89,0r0,23","w":176,"k":{"\u201d":4,"\u201c":4,"\u2019":4,"\u2018":4,"\u1ef3":8,"\u1e85":8,"\u1e84":8,"\u1e83":8,"\u1e82":8,"\u1e81":8,"\u1e80":8,"\u021b":4,"\u0219":4,"\u0177":8,"\u0175":8,"\u0174":8,"\u0167":4,"\u0165":4,"\u0163":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"t":4,"s":4,"W":8,"V":8,"'":4,"\"":4}},"\u0102":{"d":"211,0r-45,0r-16,-51r-88,0r-16,51r-40,0r81,-256r41,0xm70,-81r71,0r-36,-113xm108,-297v16,0,23,-13,27,-28r24,0v-2,41,-55,64,-85,34v-9,-9,-14,-20,-16,-34r24,0v4,13,10,28,26,28","w":217,"k":{"\u201d":37,"\u201c":37,"\u2019":37,"\u2018":37,"\u1ef3":11,"\u1ef2":30,"\u1e85":11,"\u1e84":22,"\u1e83":11,"\u1e82":22,"\u1e81":11,"\u1e80":22,"\u0218":7,"\u01fe":7,"\u0178":30,"\u0177":11,"\u0176":30,"\u0175":11,"\u0174":22,"\u0173":11,"\u0172":11,"\u0171":11,"\u0170":11,"\u016f":11,"\u016e":11,"\u016d":11,"\u016c":11,"\u016b":11,"\u016a":11,"\u0169":11,"\u0168":11,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":7,"\u015e":7,"\u015c":7,"\u015a":7,"\u0152":7,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u010c":7,"\u010a":7,"\u0108":7,"\u0106":7,"\u00ff":11,"\u00fd":11,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00dd":30,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"y":11,"w":11,"v":11,"u":11,"Y":30,"W":22,"V":22,"U":11,"T":30,"S":7,"Q":7,"O":7,"G":7,"C":7,"'":37,"\"":37}},"\u0103":{"d":"89,-182v75,-4,60,75,60,142v0,14,7,22,16,14v10,17,-4,28,-24,28v-12,0,-21,-7,-26,-20v-25,35,-102,27,-102,-34v0,-51,45,-63,98,-56v1,-25,-1,-45,-26,-45v-28,0,-30,22,-50,26v-9,0,-17,-7,-17,-16v6,-28,37,-37,71,-39xm51,-55v-4,35,47,35,60,16r0,-47v-27,-5,-63,-1,-60,31xm88,-221v16,0,23,-13,27,-28r24,0v-2,41,-55,64,-85,34v-9,-9,-14,-20,-16,-34r24,0v4,13,10,28,26,28","w":176,"k":{"\u201d":4,"\u201c":4,"\u2019":4,"\u2018":4,"\u1ef3":8,"\u1e85":8,"\u1e84":8,"\u1e83":8,"\u1e82":8,"\u1e81":8,"\u1e80":8,"\u021b":4,"\u0219":4,"\u0177":8,"\u0175":8,"\u0174":8,"\u0167":4,"\u0165":4,"\u0163":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"t":4,"s":4,"W":8,"V":8,"'":4,"\"":4}},"\u0104":{"d":"163,79v-53,-4,-23,-68,3,-79r-16,-51r-88,0r-16,51r-40,0r81,-256r41,0r83,256r-28,0v-11,10,-27,23,-27,42v0,19,25,16,36,9r5,18v-11,6,-22,10,-34,10xm70,-81r71,0r-36,-113","w":217,"k":{"\u201d":37,"\u201c":37,"\u2019":37,"\u2018":37,"\u1ef3":11,"\u1ef2":30,"\u1e85":11,"\u1e84":22,"\u1e83":11,"\u1e82":22,"\u1e81":11,"\u1e80":22,"\u0218":7,"\u01fe":7,"\u0178":30,"\u0177":11,"\u0176":30,"\u0175":11,"\u0174":22,"\u0173":11,"\u0172":11,"\u0171":11,"\u0170":11,"\u016f":11,"\u016e":11,"\u016d":11,"\u016c":11,"\u016b":11,"\u016a":11,"\u0169":11,"\u0168":11,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":7,"\u015e":7,"\u015c":7,"\u015a":7,"\u0152":7,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u010c":7,"\u010a":7,"\u0108":7,"\u0106":7,"\u00ff":11,"\u00fd":11,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00dd":30,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"y":11,"w":11,"v":11,"u":11,"Y":30,"W":22,"V":22,"U":11,"T":30,"S":7,"Q":7,"O":7,"G":7,"C":7,"'":37,"\"":37}},"\u0105":{"d":"89,-182v75,-4,60,75,60,142v0,14,7,22,16,14r5,14v-15,16,-42,25,-43,54v-1,18,25,16,36,9r6,18v-22,14,-67,17,-65,-17v1,-25,17,-39,32,-51v-10,-1,-17,-8,-21,-19v-25,35,-102,27,-102,-34v0,-51,45,-63,98,-56v1,-25,-1,-45,-26,-45v-28,0,-30,22,-50,26v-9,0,-17,-7,-17,-16v6,-28,37,-37,71,-39xm51,-55v-4,35,47,35,60,16r0,-47v-27,-5,-63,-1,-60,31","w":176,"k":{"\u201d":4,"\u201c":4,"\u2019":4,"\u2018":4,"\u1ef3":8,"\u1e85":8,"\u1e84":8,"\u1e83":8,"\u1e82":8,"\u1e81":8,"\u1e80":8,"\u021b":4,"\u0219":4,"\u0177":8,"\u0175":8,"\u0174":8,"\u0167":4,"\u0165":4,"\u0163":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"t":4,"s":4,"W":8,"V":8,"'":4,"\"":4}},"\u0106":{"d":"127,-28v31,0,52,-18,63,-40r23,7v-13,38,-41,64,-90,64v-79,0,-111,-45,-111,-130v0,-82,31,-131,110,-131v45,1,80,17,87,54v3,16,-24,23,-31,8v-9,-20,-29,-32,-56,-32v-50,0,-63,42,-63,100v0,61,14,100,68,100xm165,-300r-63,23r-7,-13r59,-33","w":223,"k":{"\u01fa":7,"\u0104":7,"\u0102":7,"\u0100":7,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"A":7,"\/":4}},"\u0107":{"d":"97,-27v22,0,33,-12,40,-30r24,7v-8,29,-29,54,-66,53v-59,-1,-82,-32,-82,-94v-1,-61,25,-91,82,-91v31,0,61,13,65,42v1,10,-9,17,-17,16v-20,-3,-22,-30,-48,-28v-30,2,-42,26,-42,61v0,37,12,64,44,64xm137,-224r-63,23r-7,-13r59,-33","w":172,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u0108":{"d":"127,-28v31,0,52,-18,63,-40r23,7v-13,38,-41,64,-90,64v-79,0,-111,-45,-111,-130v0,-82,31,-131,110,-131v45,1,80,17,87,54v3,16,-24,23,-31,8v-9,-20,-29,-32,-56,-32v-50,0,-63,42,-63,100v0,61,14,100,68,100xm163,-284r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":223,"k":{"\u01fa":7,"\u0104":7,"\u0102":7,"\u0100":7,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"A":7,"\/":4}},"\u0109":{"d":"97,-27v22,0,33,-12,40,-30r24,7v-8,29,-29,54,-66,53v-59,-1,-82,-32,-82,-94v-1,-61,25,-91,82,-91v31,0,61,13,65,42v1,10,-9,17,-17,16v-20,-3,-22,-30,-48,-28v-30,2,-42,26,-42,61v0,37,12,64,44,64xm135,-208r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":172,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u010a":{"d":"127,-28v31,0,52,-18,63,-40r23,7v-13,38,-41,64,-90,64v-79,0,-111,-45,-111,-130v0,-82,31,-131,110,-131v45,1,80,17,87,54v3,16,-24,23,-31,8v-9,-20,-29,-32,-56,-32v-50,0,-63,42,-63,100v0,61,14,100,68,100xm119,-313v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":223,"k":{"\u01fa":7,"\u0104":7,"\u0102":7,"\u0100":7,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"A":7,"\/":4}},"\u010b":{"d":"97,-27v22,0,33,-12,40,-30r24,7v-8,29,-29,54,-66,53v-59,-1,-82,-32,-82,-94v-1,-61,25,-91,82,-91v31,0,61,13,65,42v1,10,-9,17,-17,16v-20,-3,-22,-30,-48,-28v-30,2,-42,26,-42,61v0,37,12,64,44,64xm92,-237v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":172,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u010c":{"d":"127,-28v31,0,52,-18,63,-40r23,7v-13,38,-41,64,-90,64v-79,0,-111,-45,-111,-130v0,-82,31,-131,110,-131v45,1,80,17,87,54v3,16,-24,23,-31,8v-9,-20,-29,-32,-56,-32v-50,0,-63,42,-63,100v0,61,14,100,68,100xm163,-307r-33,36r-21,0r-34,-36r12,-13r32,28r33,-28","w":223,"k":{"\u01fa":7,"\u0104":7,"\u0102":7,"\u0100":7,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"A":7,"\/":4}},"\u010d":{"d":"97,-27v22,0,33,-12,40,-30r24,7v-8,29,-29,54,-66,53v-59,-1,-82,-32,-82,-94v-1,-61,25,-91,82,-91v31,0,61,13,65,42v1,10,-9,17,-17,16v-20,-3,-22,-30,-48,-28v-30,2,-42,26,-42,61v0,37,12,64,44,64xm135,-231r-33,36r-21,0r-34,-36r12,-13r32,28r33,-28","w":172,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u010e":{"d":"215,-128v0,119,-68,141,-189,128r0,-254r78,-3v86,-2,111,42,111,129xm172,-128v3,-75,-25,-109,-103,-97r0,194r36,1v57,1,64,-41,67,-98xm152,-307r-33,36r-21,0r-34,-36r12,-13r32,28r33,-28","w":227,"k":{"\u2026":15,"\u201e":15,"\u201a":15,"\u1ef2":19,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u0218":4,"\u01fa":7,"\u0178":19,"\u0176":19,"\u0174":7,"\u0166":11,"\u0164":11,"\u0162":11,"\u0160":4,"\u015e":4,"\u015c":4,"\u015a":4,"\u0104":7,"\u0102":7,"\u0100":7,"\u00dd":19,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"Y":19,"W":7,"V":7,"T":11,"S":4,"A":7,"\/":15,".":15,",":15}},"\u010f":{"d":"199,-268v23,-2,20,22,11,33v-5,7,-12,25,-23,15v14,-13,-1,-20,-5,-33v0,-13,3,-14,17,-15xm52,-92v-7,55,39,83,72,51r0,-99v-34,-28,-80,-3,-72,48xm77,-182v23,0,36,6,47,20r0,-106r39,0r0,268r-36,0r-1,-19v-9,13,-28,22,-50,22v-49,-2,-63,-42,-63,-94v0,-53,13,-91,64,-91","w":212},"\u0110":{"d":"217,-128v0,119,-68,141,-189,128r0,-121r-20,0r0,-29r20,0r0,-104r78,-3v86,-2,111,42,111,129xm174,-128v4,-75,-25,-109,-103,-97r0,75r46,0r0,29r-46,0r0,90r36,1v58,2,64,-41,67,-98","w":229,"k":{"\u2026":15,"\u201e":15,"\u201a":15,"\u1ef2":19,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u0218":4,"\u01fa":7,"\u0178":19,"\u0176":19,"\u0174":7,"\u0166":11,"\u0164":11,"\u0162":11,"\u0160":4,"\u015e":4,"\u015c":4,"\u015a":4,"\u0104":7,"\u0102":7,"\u0100":7,"\u00dd":19,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"Y":19,"W":7,"V":7,"T":11,"S":4,"A":7,"\/":15,".":15,",":15}},"\u0111":{"d":"77,-182v23,0,36,6,47,20r0,-49r-40,0r0,-23r40,0r0,-34r39,0r0,34r19,0r0,23r-19,0r0,211r-36,0r-1,-19v-9,13,-28,22,-50,22v-49,-2,-63,-42,-63,-94v0,-53,13,-91,64,-91xm52,-92v-7,55,39,83,72,51r0,-99v-34,-28,-80,-3,-72,48","w":187},"\u0112":{"d":"166,-221r-97,0r0,71r81,0r0,29r-81,0r0,86r99,0r0,35r-142,0r0,-256r140,0r0,35xm140,-287r-89,0r0,-23r89,0r0,23","w":180},"\u0113":{"d":"91,-182v54,0,79,41,72,97r-112,0v-9,58,70,78,86,31r24,6v-8,31,-31,51,-66,51v-57,-1,-82,-33,-82,-94v0,-60,26,-91,78,-91xm127,-108v4,-39,-41,-61,-64,-33v-7,8,-11,19,-11,33r75,0xm133,-211r-89,0r0,-23r89,0r0,23","w":177,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u0114":{"d":"166,-221r-97,0r0,71r81,0r0,29r-81,0r0,86r99,0r0,35r-142,0r0,-256r140,0r0,35xm95,-297v16,0,23,-13,27,-28r24,0v-2,41,-55,64,-85,34v-9,-9,-14,-20,-16,-34r24,0v4,13,10,28,26,28","w":180},"\u0115":{"d":"91,-182v54,0,79,41,72,97r-112,0v-9,58,70,78,86,31r24,6v-8,31,-31,51,-66,51v-57,-1,-82,-33,-82,-94v0,-60,26,-91,78,-91xm127,-108v4,-39,-41,-61,-64,-33v-7,8,-11,19,-11,33r75,0xm88,-221v16,0,23,-13,27,-28r24,0v-2,41,-55,64,-85,34v-9,-9,-14,-20,-16,-34r24,0v4,13,10,28,26,28","w":177,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u0116":{"d":"166,-221r-97,0r0,71r81,0r0,29r-81,0r0,86r99,0r0,35r-142,0r0,-256r140,0r0,35xm95,-313v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":180},"\u0117":{"d":"91,-182v54,0,79,41,72,97r-112,0v-9,58,70,78,86,31r24,6v-8,31,-31,51,-66,51v-57,-1,-82,-33,-82,-94v0,-60,26,-91,78,-91xm127,-108v4,-39,-41,-61,-64,-33v-7,8,-11,19,-11,33r75,0xm88,-237v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":177,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u0118":{"d":"149,79v-54,-3,-24,-68,3,-79r-126,0r0,-256r140,0r0,35r-97,0r0,71r81,0r0,29r-81,0r0,86r99,0r0,35v-11,10,-27,23,-27,42v0,18,25,16,37,9r5,18v-11,6,-22,10,-34,10","w":180},"\u0119":{"d":"91,-182v54,0,79,41,72,97r-112,0v-9,58,70,78,86,31r24,6v-7,47,-70,42,-73,90v-1,18,25,16,37,9r5,18v-22,14,-64,16,-64,-17v0,-25,16,-37,28,-49v-56,-2,-81,-34,-81,-94v0,-60,26,-91,78,-91xm127,-108v4,-39,-41,-61,-64,-33v-7,8,-11,19,-11,33r75,0","w":177,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u011a":{"d":"166,-221r-97,0r0,71r81,0r0,29r-81,0r0,86r99,0r0,35r-142,0r0,-256r140,0r0,35xm139,-307r-33,36r-21,0r-34,-36r12,-13r32,28r33,-28","w":180},"\u011b":{"d":"91,-182v54,0,79,41,72,97r-112,0v-9,58,70,78,86,31r24,6v-8,31,-31,51,-66,51v-57,-1,-82,-33,-82,-94v0,-60,26,-91,78,-91xm127,-108v4,-39,-41,-61,-64,-33v-7,8,-11,19,-11,33r75,0xm132,-231r-33,36r-21,0r-34,-36r12,-13r32,28r33,-28","w":177},"\u011c":{"d":"125,-28v20,1,33,-6,44,-14r0,-62r-49,0r2,-30r88,0r0,104v-18,20,-52,33,-89,33v-78,-1,-109,-47,-109,-130v0,-82,30,-130,109,-131v45,1,81,16,88,54v3,17,-25,23,-32,8v-10,-20,-29,-32,-56,-32v-48,0,-63,42,-62,101v0,59,14,97,66,99xm162,-284r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":228,"k":{"\u1ef2":7,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":4,"\u0178":7,"\u0176":7,"\u0174":7,"\u0104":4,"\u0102":4,"\u0100":4,"\u00dd":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Y":7,"W":7,"V":7,"A":4,"\/":7}},"\u011d":{"d":"77,-182v21,0,37,7,48,17r1,-15r36,0r0,198v14,87,-118,97,-141,31r25,-8v7,12,22,21,42,21v39,0,36,-41,35,-80v-9,10,-26,18,-46,17v-51,1,-64,-38,-64,-89v0,-52,15,-92,64,-92xm52,-90v-8,54,39,76,71,48r0,-99v-34,-30,-78,-4,-71,51xm136,-208r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0"},"\u011e":{"d":"125,-28v20,1,33,-6,44,-14r0,-62r-49,0r2,-30r88,0r0,104v-18,20,-52,33,-89,33v-78,-1,-109,-47,-109,-130v0,-82,30,-130,109,-131v45,1,81,16,88,54v3,17,-25,23,-32,8v-10,-20,-29,-32,-56,-32v-48,0,-63,42,-62,101v0,59,14,97,66,99xm117,-297v16,0,23,-13,27,-28r24,0v-2,41,-55,64,-85,34v-9,-9,-14,-20,-16,-34r24,0v4,13,10,28,26,28","w":228,"k":{"\u1ef2":7,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":4,"\u0178":7,"\u0176":7,"\u0174":7,"\u0104":4,"\u0102":4,"\u0100":4,"\u00dd":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Y":7,"W":7,"V":7,"A":4,"\/":7}},"\u011f":{"d":"77,-182v21,0,37,7,48,17r1,-15r36,0r0,198v14,87,-118,97,-141,31r25,-8v7,12,22,21,42,21v39,0,36,-41,35,-80v-9,10,-26,18,-46,17v-51,1,-64,-38,-64,-89v0,-52,15,-92,64,-92xm52,-90v-8,54,39,76,71,48r0,-99v-34,-30,-78,-4,-71,51xm92,-221v16,0,23,-13,27,-28r24,0v-2,41,-55,64,-85,34v-9,-9,-14,-20,-16,-34r24,0v4,13,10,28,26,28"},"\u0120":{"d":"125,-28v20,1,33,-6,44,-14r0,-62r-49,0r2,-30r88,0r0,104v-18,20,-52,33,-89,33v-78,-1,-109,-47,-109,-130v0,-82,30,-130,109,-131v45,1,81,16,88,54v3,17,-25,23,-32,8v-10,-20,-29,-32,-56,-32v-48,0,-63,42,-62,101v0,59,14,97,66,99xm118,-313v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":228,"k":{"\u1ef2":7,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":4,"\u0178":7,"\u0176":7,"\u0174":7,"\u0104":4,"\u0102":4,"\u0100":4,"\u00dd":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Y":7,"W":7,"V":7,"A":4,"\/":7}},"\u0121":{"d":"77,-182v21,0,37,7,48,17r1,-15r36,0r0,198v14,87,-118,97,-141,31r25,-8v7,12,22,21,42,21v39,0,36,-41,35,-80v-9,10,-26,18,-46,17v-51,1,-64,-38,-64,-89v0,-52,15,-92,64,-92xm52,-90v-8,54,39,76,71,48r0,-99v-34,-30,-78,-4,-71,51xm93,-237v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17"},"\u0122":{"d":"118,27v23,-2,20,22,11,33v-5,7,-12,25,-23,15v14,-13,-1,-20,-5,-33v0,-13,3,-14,17,-15xm125,-28v20,1,33,-6,44,-14r0,-62r-49,0r2,-30r88,0r0,104v-18,20,-52,33,-89,33v-78,-1,-109,-47,-109,-130v0,-82,30,-130,109,-131v45,1,81,16,88,54v3,17,-25,23,-32,8v-10,-20,-29,-32,-56,-32v-48,0,-63,42,-62,101v0,59,14,97,66,99","w":228,"k":{"\u1ef2":7,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":4,"\u0178":7,"\u0176":7,"\u0174":7,"\u0104":4,"\u0102":4,"\u0100":4,"\u00dd":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Y":7,"W":7,"V":7,"A":4,"\/":7}},"\u0123":{"d":"96,-252v23,-2,20,22,11,33v-5,7,-11,23,-22,14v3,-5,6,-7,6,-14v0,-9,-12,-7,-11,-18v1,-13,3,-14,16,-15xm77,-182v21,0,37,7,48,17r1,-15r36,0r0,198v14,87,-118,97,-141,31r25,-8v7,12,22,21,42,21v39,0,36,-41,35,-80v-9,10,-26,18,-46,17v-51,1,-64,-38,-64,-89v0,-52,15,-92,64,-92xm52,-90v-8,54,39,76,71,48r0,-99v-34,-30,-78,-4,-71,51"},"\u0124":{"d":"206,0r-43,0r0,-124r-94,0r0,124r-43,0r0,-256r43,0r0,102r94,0r0,-102r43,0r0,256xm160,-284r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":232},"\u0125":{"d":"133,-111v7,-48,-47,-49,-68,-26r0,137r-39,0r0,-268r39,0r0,109v12,-15,26,-23,52,-23v79,0,49,109,55,182r-39,0r0,-111xm91,-284r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":196,"k":{"\u201d":8,"\u201c":8,"\u2019":8,"\u2018":8,"\u1ef3":8,"\u1e85":8,"\u1e83":8,"\u1e81":8,"\u0177":8,"\u0175":8,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"'":8,"\"":8}},"\u0126":{"d":"206,0r-43,0r0,-124r-94,0r0,124r-43,0r0,-256r43,0r0,38r94,0r0,-38r43,0r0,256xm69,-193r0,39r94,0r0,-39r-94,0","w":232},"\u0127":{"d":"133,-111v7,-48,-47,-49,-68,-26r0,137r-39,0r0,-211r-20,0r0,-23r20,0r0,-34r39,0r0,34r39,0r0,23r-39,0r0,52v12,-15,26,-23,52,-23v79,0,49,109,55,182r-39,0r0,-111","w":196,"k":{"\u201d":8,"\u201c":8,"\u2019":8,"\u2018":8,"\u1ef3":8,"\u1e85":8,"\u1e83":8,"\u1e81":8,"\u0177":8,"\u0175":8,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"'":8,"\"":8}},"\u0128":{"d":"71,0r-44,0r0,-256r44,0r0,256xm28,-313v23,0,49,23,63,0r10,13v-8,12,-15,18,-29,20v-22,-3,-49,-25,-63,-1r-10,-12v8,-12,14,-20,29,-20","w":98},"\u0129":{"d":"24,-237v23,0,49,23,63,0r10,13v-8,12,-15,18,-29,20v-22,-3,-49,-25,-63,-1r-10,-12v8,-12,14,-20,29,-20xm65,0r-39,0r0,-180r39,0r0,180","w":90},"\u012a":{"d":"71,0r-44,0r0,-256r44,0r0,256xm94,-287r-89,0r0,-23r89,0r0,23","w":98},"\u012b":{"d":"91,-211r-89,0r0,-23r89,0r0,23xm65,0r-39,0r0,-180r39,0r0,180","w":90},"\u012c":{"d":"71,0r-44,0r0,-256r44,0r0,256xm49,-297v16,0,23,-13,27,-28r24,0v-2,41,-55,64,-85,34v-9,-9,-14,-20,-16,-34r24,0v4,13,10,28,26,28","w":98},"\u012d":{"d":"45,-221v16,0,23,-13,27,-28r24,0v-2,41,-55,64,-85,34v-9,-9,-14,-20,-16,-34r24,0v4,13,10,28,26,28xm65,0r-39,0r0,-180r39,0r0,180","w":90},"\u012e":{"d":"25,79v-53,-3,-24,-68,2,-79r0,-256r44,0r0,256r-27,0v-11,10,-27,22,-27,41v0,19,23,15,37,10r5,18v-11,7,-22,10,-34,10","w":98},"\u012f":{"d":"21,79v-54,-3,-24,-68,2,-79r0,-180r39,0r0,180r-22,0v-11,10,-27,23,-27,42v0,19,25,16,36,9r6,18v-11,6,-22,10,-34,10xm42,-248v15,0,21,2,21,18v0,21,-13,18,-31,18v-9,0,-12,-7,-11,-18v0,-16,5,-18,21,-18","w":84},"\u0130":{"d":"71,0r-44,0r0,-256r44,0r0,256xm49,-313v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":98},"\u0131":{"d":"65,0r-39,0r0,-180r39,0r0,180","w":90},"\u0132":{"d":"71,0r-44,0r0,-256r44,0r0,256xm101,9v11,35,62,26,62,-18r0,-247r43,0r0,242v12,81,-107,102,-128,31","w":229},"\u0133":{"d":"62,0r-39,0r0,-180r39,0r0,180xm42,-248v15,0,21,2,21,18v0,21,-13,18,-31,18v-9,0,-12,-7,-11,-18v0,-16,5,-18,21,-18xm64,49v9,19,41,18,41,-13r0,-216r39,0r0,209v12,71,-86,83,-104,28xm124,-248v15,0,21,2,21,18v0,21,-13,18,-31,18v-9,0,-12,-7,-11,-18v0,-16,5,-18,21,-18","w":166},"\u0134":{"d":"24,9v11,35,62,26,62,-18r0,-247r43,0r0,242v12,81,-107,102,-128,31xm150,-284r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":152},"\u0135":{"d":"-11,49v9,19,41,18,41,-13r0,-216r39,0r0,209v13,71,-87,84,-104,28xm94,-208r-12,13r-32,-29r-32,29r-13,-13r34,-36r21,0","w":91},"\u0136":{"d":"100,27v23,-2,20,22,11,33v-5,7,-11,25,-22,15v3,-5,6,-7,6,-14v0,-9,-12,-7,-11,-19v1,-13,3,-14,16,-15xm118,-162r87,162r-49,0r-63,-131r-24,29r0,102r-43,0r0,-256r43,0r0,108r83,-108r46,0","w":201,"k":{"\uf730":4,"\u203a":30,"\u2039":30,"\u2014":30,"\u2013":30,"\u01ff":4,"\u01fe":11,"\u0173":4,"\u0171":4,"\u016f":4,"\u016d":4,"\u016b":4,"\u0169":4,"\u0153":4,"\u0151":4,"\u0150":11,"\u014f":4,"\u014e":11,"\u014d":4,"\u014c":11,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00fc":4,"\u00fb":4,"\u00fa":4,"\u00f9":4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00d8":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00bb":30,"\u00ab":30,"u":4,"q":4,"o":4,"g":4,"e":4,"c":4,"Q":11,"O":11,"-":30}},"\u0137":{"d":"87,27v23,-2,19,22,10,33v-6,6,-11,25,-22,15v14,-13,-1,-20,-5,-33v0,-13,3,-14,17,-15xm115,-119r60,119r-44,0r-43,-90r-24,24r0,66r-38,0r0,-268r38,0r0,162r66,-74r44,0","w":173,"k":{"\uf730":4,"\u0219":4,"\u01ff":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"\/":-11}},"\u0138":{"d":"115,-119r60,119r-44,0r-43,-90r-24,24r0,66r-38,0r0,-180r38,0r0,74r66,-74r44,0","w":173,"k":{"\uf730":4,"\u0219":4,"\u01ff":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"\/":-11}},"\u0139":{"d":"69,-35r91,0r0,35r-134,0r0,-256r43,0r0,221xm94,-300r-63,23r-7,-13r59,-33","w":166,"k":{"\u203a":34,"\u2039":34,"\u201d":41,"\u201c":41,"\u2019":41,"\u2018":41,"\u2014":34,"\u2013":34,"\u1ef3":15,"\u1ef2":37,"\u1e85":15,"\u1e84":26,"\u1e83":15,"\u1e82":26,"\u1e81":15,"\u1e80":26,"\u01fe":7,"\u0178":37,"\u0177":15,"\u0176":37,"\u0175":15,"\u0174":26,"\u0172":11,"\u0170":11,"\u016e":11,"\u016c":11,"\u016a":11,"\u0168":11,"\u0166":37,"\u0164":37,"\u0162":37,"\u0152":11,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":11,"\u0120":11,"\u011e":11,"\u011c":11,"\u00ff":15,"\u00fd":15,"\u00dd":37,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00bb":34,"\u00ab":34,"y":15,"w":15,"v":15,"Y":37,"W":26,"V":26,"U":11,"T":37,"Q":7,"O":7,"G":11,"-":34,"'":41,"\"":41}},"\u013a":{"d":"65,0r-39,0r0,-268r39,0r0,268xm92,-300r-63,23r-7,-13r59,-33","w":91},"\u013b":{"d":"83,27v23,-2,20,21,11,33v-5,7,-11,25,-23,15v14,-13,-1,-20,-5,-33v0,-13,3,-14,17,-15xm69,-35r91,0r0,35r-134,0r0,-256r43,0r0,221","w":166,"k":{"\u203a":34,"\u2039":34,"\u201d":41,"\u201c":41,"\u2019":41,"\u2018":41,"\u2014":34,"\u2013":34,"\u1ef3":15,"\u1ef2":37,"\u1e85":15,"\u1e84":26,"\u1e83":15,"\u1e82":26,"\u1e81":15,"\u1e80":26,"\u01fe":7,"\u0178":37,"\u0177":15,"\u0176":37,"\u0175":15,"\u0174":26,"\u0172":11,"\u0170":11,"\u016e":11,"\u016c":11,"\u016a":11,"\u0168":11,"\u0166":37,"\u0164":37,"\u0162":37,"\u0152":11,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":11,"\u0120":11,"\u011e":11,"\u011c":11,"\u00ff":15,"\u00fd":15,"\u00dd":37,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00bb":34,"\u00ab":34,"y":15,"w":15,"v":15,"Y":37,"W":26,"V":26,"U":11,"T":37,"Q":7,"O":7,"G":11,"-":34,"'":41,"\"":41}},"\u013c":{"d":"46,27v23,-2,19,22,10,33v-6,6,-11,25,-22,15v14,-13,-1,-20,-5,-33v0,-13,3,-14,17,-15xm65,0r-39,0r0,-268r39,0r0,268","w":91},"\u013d":{"d":"83,27v23,-2,20,21,11,33v-5,7,-11,25,-23,15v14,-13,-1,-20,-5,-33v0,-13,3,-14,17,-15xm69,-35r91,0r0,35r-134,0r0,-256r43,0r0,221","w":166,"k":{"\u203a":34,"\u2039":34,"\u201d":41,"\u201c":41,"\u2019":41,"\u2018":41,"\u2014":34,"\u2013":34,"\u1ef3":15,"\u1ef2":37,"\u1e85":15,"\u1e84":26,"\u1e83":15,"\u1e82":26,"\u1e81":15,"\u1e80":26,"\u01fe":7,"\u0178":37,"\u0177":15,"\u0176":37,"\u0175":15,"\u0174":26,"\u0172":11,"\u0170":11,"\u016e":11,"\u016c":11,"\u016a":11,"\u0168":11,"\u0166":37,"\u0164":37,"\u0162":37,"\u0152":11,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":11,"\u0120":11,"\u011e":11,"\u011c":11,"\u00ff":15,"\u00fd":15,"\u00dd":37,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00bb":34,"\u00ab":34,"y":15,"w":15,"v":15,"Y":37,"W":26,"V":26,"U":11,"T":37,"Q":7,"O":7,"G":11,"-":34,"'":41,"\"":41}},"\u013e":{"d":"106,-268v23,-2,19,22,10,33v-6,6,-11,25,-22,15v14,-13,-1,-20,-5,-33v0,-13,3,-14,17,-15xm65,0r-39,0r0,-268r39,0r0,268","w":119},"\u013f":{"d":"69,-35r91,0r0,35r-134,0r0,-256r43,0r0,221xm119,-151v19,0,22,4,22,20v0,18,-4,20,-22,20v-16,0,-21,-2,-21,-20v0,-15,4,-20,21,-20","w":166,"k":{"\u203a":34,"\u2039":34,"\u201d":41,"\u201c":41,"\u2019":41,"\u2018":41,"\u2014":34,"\u2013":34,"\u1ef3":15,"\u1ef2":37,"\u1e85":15,"\u1e84":26,"\u1e83":15,"\u1e82":26,"\u1e81":15,"\u1e80":26,"\u01fe":7,"\u0178":37,"\u0177":15,"\u0176":37,"\u0175":15,"\u0174":26,"\u0172":11,"\u0170":11,"\u016e":11,"\u016c":11,"\u016a":11,"\u0168":11,"\u0166":37,"\u0164":37,"\u0162":37,"\u0152":11,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":11,"\u0120":11,"\u011e":11,"\u011c":11,"\u00ff":15,"\u00fd":15,"\u00dd":37,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00bb":34,"\u00ab":34,"y":15,"w":15,"v":15,"Y":37,"W":26,"V":26,"U":11,"T":37,"Q":7,"O":7,"G":11,"-":34,"'":41,"\"":41}},"\u0140":{"d":"65,0r-39,0r0,-268r39,0r0,268xm106,-157v19,0,22,4,22,20v0,18,-4,20,-22,20v-16,0,-21,-2,-21,-20v0,-15,4,-20,21,-20","w":124},"\u0141":{"d":"71,-154r41,-17r0,30r-41,18r0,88r91,0r0,35r-134,0r0,-105r-17,6r0,-29r17,-7r0,-121r43,0r0,102","w":168,"k":{"\u203a":34,"\u2039":34,"\u201d":41,"\u201c":41,"\u2019":41,"\u2018":41,"\u2014":34,"\u2013":34,"\u1ef3":15,"\u1ef2":37,"\u1e85":15,"\u1e84":26,"\u1e83":15,"\u1e82":26,"\u1e81":15,"\u1e80":26,"\u01fe":7,"\u0178":37,"\u0177":15,"\u0176":37,"\u0175":15,"\u0174":26,"\u0172":11,"\u0170":11,"\u016e":11,"\u016c":11,"\u016a":11,"\u0168":11,"\u0166":37,"\u0164":37,"\u0162":37,"\u0152":11,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":11,"\u0120":11,"\u011e":11,"\u011c":11,"\u00ff":15,"\u00fd":15,"\u00dd":37,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00bb":34,"\u00ab":34,"y":15,"w":15,"v":15,"Y":37,"W":26,"V":26,"U":11,"T":37,"Q":7,"O":7,"G":11,"-":34,"'":41,"\"":41}},"\u0142":{"d":"66,-172r28,-11r0,30r-28,11r0,142r-39,0r0,-125r-27,11r0,-30r27,-11r0,-113r39,0r0,96","w":93},"\u0143":{"d":"216,0r-38,0r-112,-171r0,171r-39,0r0,-256r37,0r112,172r0,-172r40,0r0,256xm167,-300r-63,23r-7,-13r59,-33","w":242},"\u0144":{"d":"116,-182v78,-1,49,109,55,182r-39,0r0,-107v6,-48,-43,-56,-68,-30r0,137r-39,0r0,-180r35,0r1,21v12,-15,31,-23,55,-23xm143,-224r-63,23r-7,-13r59,-33","w":195,"k":{"\u201d":11,"\u201c":11,"\u2019":11,"\u2018":11,"\u1ef3":8,"\u1e85":8,"\u1e83":8,"\u1e81":8,"\u0177":8,"\u0175":8,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"'":11,"\"":11}},"\u0145":{"d":"117,27v23,-2,19,22,10,33v-6,6,-11,25,-22,15v14,-13,-1,-20,-5,-33v0,-13,3,-14,17,-15xm216,0r-38,0r-112,-171r0,171r-39,0r0,-256r37,0r112,172r0,-172r40,0r0,256","w":242},"\u0146":{"d":"100,27v23,-2,20,22,11,33v-5,7,-11,25,-22,15v3,-5,6,-7,6,-14v0,-9,-12,-7,-11,-19v1,-13,3,-14,16,-15xm116,-182v78,-1,49,109,55,182r-39,0r0,-107v6,-48,-43,-56,-68,-30r0,137r-39,0r0,-180r35,0r1,21v12,-15,31,-23,55,-23","w":195,"k":{"\u201d":11,"\u201c":11,"\u2019":11,"\u2018":11,"\u1ef3":8,"\u1e85":8,"\u1e83":8,"\u1e81":8,"\u0177":8,"\u0175":8,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"'":11,"\"":11}},"\u0147":{"d":"216,0r-38,0r-112,-171r0,171r-39,0r0,-256r37,0r112,172r0,-172r40,0r0,256xm164,-307r-33,36r-21,0r-34,-36r12,-13r32,28r33,-28","w":242},"\u0148":{"d":"116,-182v78,-1,49,109,55,182r-39,0r0,-107v6,-48,-43,-56,-68,-30r0,137r-39,0r0,-180r35,0r1,21v12,-15,31,-23,55,-23xm141,-231r-33,36r-21,0r-34,-36r12,-13r32,28r33,-28","w":195,"k":{"\u201d":11,"\u201c":11,"\u2019":11,"\u2018":11,"\u1ef3":8,"\u1e85":8,"\u1e83":8,"\u1e81":8,"\u0177":8,"\u0175":8,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"'":11,"\"":11}},"\u0149":{"d":"43,-268v23,-2,20,21,11,33v-5,7,-11,25,-23,15v15,-12,-1,-20,-5,-33v1,-12,3,-14,17,-15xm116,-182v78,-1,49,109,55,182r-39,0r0,-107v6,-48,-43,-56,-68,-30r0,137r-39,0r0,-180r35,0r1,21v12,-15,31,-23,55,-23","w":195,"k":{"\u201d":11,"\u201c":11,"\u2019":11,"\u2018":11,"\u1ef3":8,"\u1e85":8,"\u1e83":8,"\u1e81":8,"\u0177":8,"\u0175":8,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"'":11,"\"":11}},"\u014a":{"d":"106,39v11,32,73,26,67,-18r0,-30r-107,-162r0,171r-39,0r0,-256r37,0r112,172r0,-172r40,0r0,266v12,85,-107,108,-134,36","w":242},"\u014b":{"d":"116,-182v82,1,45,122,55,199v11,78,-78,99,-104,40r24,-8v9,20,41,17,41,-14r0,-142v7,-49,-43,-54,-68,-30r0,137r-39,0r0,-180r35,0r1,21v12,-15,31,-23,55,-23","w":195,"k":{"\u201d":11,"\u201c":11,"\u2019":11,"\u2018":11,"\u1ef3":8,"\u1e85":8,"\u1e83":8,"\u1e81":8,"\u0177":8,"\u0175":8,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"'":11,"\"":11}},"\u014c":{"d":"12,-126v0,-83,29,-132,110,-132v82,-1,111,50,111,132v0,82,-30,130,-111,129v-79,-1,-110,-46,-110,-129xm186,-123v0,-59,-10,-105,-65,-105v-51,0,-63,38,-63,97v0,61,14,103,65,103v52,0,63,-41,63,-95xm166,-287r-89,0r0,-23r89,0r0,23","w":244,"k":{"\u2026":11,"\u201e":11,"\u201a":11,"\u1ef2":19,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":7,"\u0178":19,"\u0176":19,"\u0174":7,"\u0166":15,"\u0164":15,"\u0162":15,"\u0134":26,"\u0104":7,"\u0102":7,"\u0100":7,"\u00dd":19,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"Y":19,"X":11,"W":7,"V":7,"T":15,"M":4,"J":26,"A":7,"\/":15,".":11,",":11}},"\u014d":{"d":"13,-92v0,-61,22,-90,80,-90v58,0,79,30,79,91v0,62,-21,93,-79,94v-60,0,-80,-33,-80,-95xm134,-89v-1,-38,-9,-63,-41,-63v-30,0,-40,23,-40,58v0,38,7,66,41,67v27,0,40,-21,40,-62xm137,-211r-89,0r0,-23r89,0r0,23","k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u014e":{"d":"12,-126v0,-83,29,-132,110,-132v82,-1,111,50,111,132v0,82,-30,130,-111,129v-79,-1,-110,-46,-110,-129xm186,-123v0,-59,-10,-105,-65,-105v-51,0,-63,38,-63,97v0,61,14,103,65,103v52,0,63,-41,63,-95xm121,-297v16,0,23,-13,27,-28r24,0v-2,41,-55,64,-85,34v-9,-9,-14,-20,-16,-34r24,0v4,13,10,28,26,28","w":244,"k":{"\u2026":11,"\u201e":11,"\u201a":11,"\u1ef2":19,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":7,"\u0178":19,"\u0176":19,"\u0174":7,"\u0166":15,"\u0164":15,"\u0162":15,"\u0134":26,"\u0104":7,"\u0102":7,"\u0100":7,"\u00dd":19,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"Y":19,"X":11,"W":7,"V":7,"T":15,"M":4,"J":26,"A":7,"\/":15,".":11,",":11}},"\u014f":{"d":"13,-92v0,-61,22,-90,80,-90v58,0,79,30,79,91v0,62,-21,93,-79,94v-60,0,-80,-33,-80,-95xm134,-89v-1,-38,-9,-63,-41,-63v-30,0,-40,23,-40,58v0,38,7,66,41,67v27,0,40,-21,40,-62xm92,-221v16,0,23,-13,27,-28r24,0v-2,41,-55,64,-85,34v-9,-9,-14,-20,-16,-34r24,0v4,13,10,28,26,28","k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u0150":{"d":"12,-126v0,-83,29,-132,110,-132v82,-1,111,50,111,132v0,82,-30,130,-111,129v-79,-1,-110,-46,-110,-129xm186,-123v0,-59,-10,-105,-65,-105v-51,0,-63,38,-63,97v0,61,14,103,65,103v52,0,63,-41,63,-95xm156,-278r-22,0r37,-49r31,0xm102,-278r-22,0r36,-49r31,0","w":244,"k":{"\u2026":11,"\u201e":11,"\u201a":11,"\u1ef2":19,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":7,"\u0178":19,"\u0176":19,"\u0174":7,"\u0166":15,"\u0164":15,"\u0162":15,"\u0134":26,"\u0104":7,"\u0102":7,"\u0100":7,"\u00dd":19,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"Y":19,"X":11,"W":7,"V":7,"T":15,"M":4,"J":26,"A":7,"\/":15,".":11,",":11}},"\u0151":{"d":"13,-92v0,-61,22,-90,80,-90v58,0,79,30,79,91v0,62,-21,93,-79,94v-60,0,-80,-33,-80,-95xm134,-89v-1,-38,-9,-63,-41,-63v-30,0,-40,23,-40,58v0,38,7,66,41,67v27,0,40,-21,40,-62xm126,-202r-22,0r37,-49r31,0xm72,-202r-22,0r36,-49r31,0","k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u0152":{"d":"12,-126v0,-100,61,-154,151,-123r0,-7r140,0r0,35r-97,0r0,71r81,0r0,29r-81,0r0,86r99,0r0,35r-142,0r0,-6v-86,30,-151,-22,-151,-120xm58,-131v-5,79,48,126,105,90r0,-171v-10,-10,-24,-16,-42,-16v-51,3,-59,39,-63,97","w":317,"k":{"\u1ef2":7,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":4,"\u0178":7,"\u0176":7,"\u0174":7,"\u0104":4,"\u0102":4,"\u0100":4,"\u00dd":7,"\u00c5":4,"\u00c4":4,"\u00c3":4,"\u00c2":4,"\u00c1":4,"\u00c0":4,"Y":7,"W":7,"V":7,"A":4,"\/":7}},"\u0153":{"d":"281,-48v-7,58,-105,67,-128,19v-12,19,-31,33,-62,32v-56,-1,-78,-34,-78,-95v0,-60,22,-89,78,-90v31,-1,50,13,62,30v11,-20,30,-30,59,-30v54,-1,77,41,70,97r-111,0v-10,59,69,77,85,31xm134,-89v-1,-38,-9,-63,-41,-63v-30,0,-41,23,-40,58v0,41,8,67,41,67v27,0,40,-21,40,-62xm246,-108v4,-40,-41,-61,-64,-33v-7,8,-10,19,-11,33r75,0","w":296,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u0154":{"d":"186,-187v0,35,-15,56,-40,65r53,122r-46,0r-47,-113v-14,0,-25,0,-37,-2r0,115r-43,0r0,-255v75,-2,160,-16,160,68xm143,-184v0,-43,-34,-44,-74,-41r0,83v40,4,74,1,74,-42xm149,-300r-63,23r-7,-13r59,-33","w":205,"k":{"\u203a":19,"\u2039":19,"\u2014":19,"\u2013":19,"\u1ef2":7,"\u1e84":4,"\u1e82":4,"\u1e80":4,"\u0218":4,"\u0178":7,"\u0176":7,"\u0174":4,"\u0172":7,"\u0170":7,"\u016e":7,"\u016c":7,"\u016a":7,"\u0168":7,"\u0160":4,"\u015e":4,"\u015c":4,"\u015a":4,"\u0152":7,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u00dd":7,"\u00dc":7,"\u00db":7,"\u00da":7,"\u00d9":7,"\u00bb":19,"\u00ab":19,"Y":7,"W":4,"V":4,"U":7,"S":4,"G":7,"-":19}},"\u0155":{"d":"120,-139v-13,-23,-57,-15,-57,10r0,129r-39,0r0,-180r36,0r1,23v12,-30,79,-35,84,3v2,13,-14,23,-25,15xm125,-224r-63,23r-7,-13r59,-33","w":149,"k":{"\uf730":4,"\u2026":23,"\u201e":23,"\u201a":23,"\u1ef3":-4,"\u1e85":-4,"\u1e83":-4,"\u1e81":-4,"\u021b":-4,"\u0219":4,"\u01ff":4,"\u0177":-4,"\u0175":-4,"\u0167":-4,"\u0165":-4,"\u0163":-4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00ff":-4,"\u00fd":-4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"y":-4,"w":-4,"v":-4,"t":-4,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"\/":8,".":23,",":23}},"\u0156":{"d":"103,27v23,-2,19,22,10,33v-6,6,-11,25,-22,15v3,-5,6,-8,7,-14v-1,-9,-13,-7,-12,-19v1,-13,3,-14,17,-15xm186,-187v0,35,-15,56,-40,65r53,122r-46,0r-47,-113v-14,0,-25,0,-37,-2r0,115r-43,0r0,-255v75,-2,160,-16,160,68xm143,-184v0,-43,-34,-44,-74,-41r0,83v40,4,74,1,74,-42","w":205,"k":{"\u203a":19,"\u2039":19,"\u2014":19,"\u2013":19,"\u1ef2":7,"\u1e84":4,"\u1e82":4,"\u1e80":4,"\u0218":4,"\u0178":7,"\u0176":7,"\u0174":4,"\u0172":7,"\u0170":7,"\u016e":7,"\u016c":7,"\u016a":7,"\u0168":7,"\u0160":4,"\u015e":4,"\u015c":4,"\u015a":4,"\u0152":7,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u00dd":7,"\u00dc":7,"\u00db":7,"\u00da":7,"\u00d9":7,"\u00bb":19,"\u00ab":19,"Y":7,"W":4,"V":4,"U":7,"S":4,"G":7,"-":19}},"\u0157":{"d":"43,27v23,-2,19,22,10,33v-6,6,-11,25,-22,15v14,-13,-1,-20,-5,-33v0,-13,3,-14,17,-15xm120,-139v-13,-23,-57,-15,-57,10r0,129r-39,0r0,-180r36,0r1,23v12,-30,79,-35,84,3v2,13,-14,23,-25,15","w":149,"k":{"\uf730":4,"\u2026":23,"\u201e":23,"\u201a":23,"\u1ef3":-4,"\u1e85":-4,"\u1e83":-4,"\u1e81":-4,"\u021b":-4,"\u0219":4,"\u01ff":4,"\u0177":-4,"\u0175":-4,"\u0167":-4,"\u0165":-4,"\u0163":-4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00ff":-4,"\u00fd":-4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"y":-4,"w":-4,"v":-4,"t":-4,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"\/":8,".":23,",":23}},"\u0158":{"d":"186,-187v0,35,-15,56,-40,65r53,122r-46,0r-47,-113v-14,0,-25,0,-37,-2r0,115r-43,0r0,-255v75,-2,160,-16,160,68xm143,-184v0,-43,-34,-44,-74,-41r0,83v40,4,74,1,74,-42xm143,-307r-33,36r-21,0r-34,-36r12,-13r32,28r33,-28","w":205,"k":{"\u203a":19,"\u2039":19,"\u2014":19,"\u2013":19,"\u1ef2":7,"\u1e84":4,"\u1e82":4,"\u1e80":4,"\u0218":4,"\u0178":7,"\u0176":7,"\u0174":4,"\u0172":7,"\u0170":7,"\u016e":7,"\u016c":7,"\u016a":7,"\u0168":7,"\u0160":4,"\u015e":4,"\u015c":4,"\u015a":4,"\u0152":7,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u00dd":7,"\u00dc":7,"\u00db":7,"\u00da":7,"\u00d9":7,"\u00bb":19,"\u00ab":19,"Y":7,"W":4,"V":4,"U":7,"S":4,"G":7,"-":19}},"\u0159":{"d":"120,-139v-13,-23,-57,-15,-57,10r0,129r-39,0r0,-180r36,0r1,23v12,-30,79,-35,84,3v2,13,-14,23,-25,15xm118,-231r-33,36r-21,0r-34,-36r12,-13r32,28r33,-28","w":149,"k":{"\uf730":4,"\u2026":23,"\u201e":23,"\u201a":23,"\u1ef3":-4,"\u1e85":-4,"\u1e83":-4,"\u1e81":-4,"\u021b":-4,"\u0219":4,"\u01ff":4,"\u0177":-4,"\u0175":-4,"\u0167":-4,"\u0165":-4,"\u0163":-4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00ff":-4,"\u00fd":-4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"y":-4,"w":-4,"v":-4,"t":-4,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"\/":8,".":23,",":23}},"\u015a":{"d":"138,-142v71,32,45,145,-44,145v-45,0,-73,-24,-80,-62r23,-8v7,42,100,54,103,2v-13,-67,-122,-29,-122,-124v0,-86,149,-92,156,-18v2,19,-28,25,-34,7v-13,-38,-105,-26,-78,20v14,23,50,26,76,38xm144,-300r-63,23r-7,-13r59,-33","w":195,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u1ef2":11,"\u0178":11,"\u0176":11,"\u0166":4,"\u0164":4,"\u0162":4,"\u00dd":11,"Y":11,"T":4,"M":4,".":7,",":7}},"\u015b":{"d":"110,-102v59,19,36,112,-30,105v-36,-4,-57,-19,-66,-48r25,-6v5,28,69,38,72,2v-13,-43,-91,-17,-91,-84v0,-58,109,-67,121,-17v0,9,-8,17,-16,17v-17,-3,-21,-23,-44,-21v-19,-3,-38,21,-20,35v8,6,36,12,49,17xm126,-224r-63,23r-7,-13r59,-33","w":159,"k":{"\u201d":11,"\u201c":11,"\u2019":11,"\u2018":11,"\u021b":4,"\u0167":4,"\u0165":4,"\u0163":4,"t":4,"'":11,"\"":11}},"\u015c":{"d":"138,-142v71,32,45,145,-44,145v-45,0,-73,-24,-80,-62r23,-8v7,42,100,54,103,2v-13,-67,-122,-29,-122,-124v0,-86,149,-92,156,-18v2,19,-28,25,-34,7v-13,-38,-105,-26,-78,20v14,23,50,26,76,38xm141,-284r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":195,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u1ef2":11,"\u0178":11,"\u0176":11,"\u0166":4,"\u0164":4,"\u0162":4,"\u00dd":11,"Y":11,"T":4,"M":4,".":7,",":7}},"\u015d":{"d":"110,-102v59,19,36,112,-30,105v-36,-4,-57,-19,-66,-48r25,-6v5,28,69,38,72,2v-13,-43,-91,-17,-91,-84v0,-58,109,-67,121,-17v0,9,-8,17,-16,17v-17,-3,-21,-23,-44,-21v-19,-3,-38,21,-20,35v8,6,36,12,49,17xm123,-208r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":159,"k":{"\u201d":11,"\u201c":11,"\u2019":11,"\u2018":11,"\u021b":4,"\u0167":4,"\u0165":4,"\u0163":4,"t":4,"'":11,"\"":11}},"\u015e":{"d":"138,-142v69,30,46,156,-38,145r-3,12v15,0,27,11,27,26v0,28,-38,41,-51,18r10,-9v5,10,26,8,25,-9v-1,-16,-19,-10,-25,-20r4,-18v-40,-3,-66,-25,-73,-62r23,-8v7,42,100,54,103,2v-13,-67,-122,-29,-122,-124v0,-86,149,-92,156,-18v2,19,-28,25,-34,7v-13,-38,-105,-26,-78,20v14,23,50,27,76,38","w":195,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u1ef2":11,"\u0178":11,"\u0176":11,"\u0166":4,"\u0164":4,"\u0162":4,"\u00dd":11,"Y":11,"T":4,"M":4,".":7,",":7}},"\u015f":{"d":"81,-154v-19,-3,-38,21,-20,35v36,14,103,25,80,87v-7,21,-27,32,-54,35r-3,12v15,0,27,11,27,26v0,28,-38,41,-51,18r9,-9v6,10,28,8,26,-9v-1,-16,-19,-10,-25,-20r4,-18v-31,-4,-52,-21,-60,-48r25,-6v5,28,69,38,72,2v-13,-43,-91,-17,-91,-84v0,-58,109,-67,121,-17v0,9,-8,17,-16,17v-17,-3,-21,-23,-44,-21","w":159,"k":{"\u201d":11,"\u201c":11,"\u2019":11,"\u2018":11,"\u021b":4,"\u0167":4,"\u0165":4,"\u0163":4,"t":4,"'":11,"\"":11}},"\u0160":{"d":"138,-142v71,32,45,145,-44,145v-45,0,-73,-24,-80,-62r23,-8v7,42,100,54,103,2v-13,-67,-122,-29,-122,-124v0,-86,149,-92,156,-18v2,19,-28,25,-34,7v-13,-38,-105,-26,-78,20v14,23,50,26,76,38xm141,-307r-33,36r-21,0r-34,-36r12,-13r32,28r33,-28","w":195,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u1ef2":11,"\u0178":11,"\u0176":11,"\u0166":4,"\u0164":4,"\u0162":4,"\u00dd":11,"Y":11,"T":4,"M":4,".":7,",":7}},"\u0161":{"d":"110,-102v59,19,36,112,-30,105v-36,-4,-57,-19,-66,-48r25,-6v5,28,69,38,72,2v-13,-43,-91,-17,-91,-84v0,-58,109,-67,121,-17v0,9,-8,17,-16,17v-17,-3,-21,-23,-44,-21v-19,-3,-38,21,-20,35v8,6,36,12,49,17xm123,-231r-33,36r-21,0r-34,-36r12,-13r32,28r33,-28","w":159,"k":{"\u201d":11,"\u201c":11,"\u2019":11,"\u2018":11,"\u021b":4,"\u0167":4,"\u0165":4,"\u0163":4,"t":4,"'":11,"\"":11}},"\u0162":{"d":"87,27v23,-2,20,22,11,33v-5,7,-11,25,-22,15v3,-5,6,-7,6,-14v0,-9,-12,-7,-11,-19v1,-13,3,-14,16,-15xm175,-221r-67,0r0,221r-42,0r0,-221r-65,0r0,-35r174,0r0,35","w":175,"k":{"\uf730":11,"\u203a":30,"\u2039":30,"\u2026":30,"\u201e":30,"\u201a":30,"\u2014":30,"\u2013":30,"\u1ef3":15,"\u1ef2":-8,"\u1e85":15,"\u1e83":15,"\u1e81":15,"\u0219":11,"\u0218":4,"\u01ff":11,"\u01fe":15,"\u01fc":30,"\u01fb":11,"\u01fa":26,"\u017e":8,"\u017c":8,"\u017a":8,"\u0178":-8,"\u0177":15,"\u0176":-8,"\u0175":15,"\u0173":11,"\u0171":11,"\u016f":11,"\u016d":11,"\u016b":11,"\u0169":11,"\u0166":-15,"\u0164":-15,"\u0162":-15,"\u0161":11,"\u0160":4,"\u015f":11,"\u015e":4,"\u015d":11,"\u015c":4,"\u015b":11,"\u015a":4,"\u0159":11,"\u0157":11,"\u0155":11,"\u0153":11,"\u0151":11,"\u0150":15,"\u014f":11,"\u014e":15,"\u014d":11,"\u014c":15,"\u0134":34,"\u0119":11,"\u0117":11,"\u0115":11,"\u0113":11,"\u010d":11,"\u010b":11,"\u0109":11,"\u0107":11,"\u0105":11,"\u0104":26,"\u0103":11,"\u0102":26,"\u0101":11,"\u0100":26,"\u00ff":15,"\u00fd":15,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00e5":11,"\u00e4":11,"\u00e3":11,"\u00e2":11,"\u00e1":11,"\u00e0":11,"\u00dd":-8,"\u00d8":15,"\u00d5":15,"\u00d4":15,"\u00d3":15,"\u00d2":15,"\u00c6":30,"\u00c5":26,"\u00c4":26,"\u00c3":26,"\u00c2":26,"\u00c1":26,"\u00c0":26,"\u00bb":30,"\u00ab":30,"z":8,"y":15,"w":15,"v":15,"u":11,"s":11,"r":11,"o":11,"e":11,"d":12,"c":11,"a":11,"Y":-8,"T":-15,"S":4,"Q":15,"O":15,"M":7,"J":34,"A":26,"\/":19,".":30,"-":30,",":30}},"\u0163":{"d":"68,27v23,-2,20,22,11,33v-5,7,-12,25,-23,15v14,-13,-1,-20,-5,-33v0,-13,3,-14,17,-15xm69,-49v-3,26,34,26,40,10r12,11v-6,18,-19,31,-44,31v-68,1,-42,-94,-47,-156r-24,0r0,-27r24,0r0,-45r39,-5r0,50r42,0r0,27r-42,0r0,104","w":129,"k":{"\uf730":7,"\u0219":7,"\u01ff":7,"\u0161":7,"\u015f":7,"\u015d":7,"\u015b":7,"\u0153":7,"\u0151":7,"\u014f":7,"\u014d":7,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010b":7,"\u0109":7,"\u0107":7,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"s":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7}},"\u0164":{"d":"175,-221r-67,0r0,221r-42,0r0,-221r-65,0r0,-35r174,0r0,35xm131,-307r-33,36r-21,0r-34,-36r12,-13r32,28r33,-28","w":175,"k":{"\uf730":11,"\u203a":30,"\u2039":30,"\u2026":30,"\u201e":30,"\u201a":30,"\u2014":30,"\u2013":30,"\u1ef3":15,"\u1ef2":-8,"\u1e85":15,"\u1e83":15,"\u1e81":15,"\u0219":11,"\u0218":4,"\u01ff":11,"\u01fe":15,"\u01fc":30,"\u01fb":11,"\u01fa":26,"\u017e":8,"\u017c":8,"\u017a":8,"\u0178":-8,"\u0177":15,"\u0176":-8,"\u0175":15,"\u0173":11,"\u0171":11,"\u016f":11,"\u016d":11,"\u016b":11,"\u0169":11,"\u0166":-15,"\u0164":-15,"\u0162":-15,"\u0161":11,"\u0160":4,"\u015f":11,"\u015e":4,"\u015d":11,"\u015c":4,"\u015b":11,"\u015a":4,"\u0159":11,"\u0157":11,"\u0155":11,"\u0153":11,"\u0151":11,"\u0150":15,"\u014f":11,"\u014e":15,"\u014d":11,"\u014c":15,"\u0134":34,"\u0119":11,"\u0117":11,"\u0115":11,"\u0113":11,"\u010d":11,"\u010b":11,"\u0109":11,"\u0107":11,"\u0105":11,"\u0104":26,"\u0103":11,"\u0102":26,"\u0101":11,"\u0100":26,"\u00ff":15,"\u00fd":15,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00e5":11,"\u00e4":11,"\u00e3":11,"\u00e2":11,"\u00e1":11,"\u00e0":11,"\u00dd":-8,"\u00d8":15,"\u00d5":15,"\u00d4":15,"\u00d3":15,"\u00d2":15,"\u00c6":30,"\u00c5":26,"\u00c4":26,"\u00c3":26,"\u00c2":26,"\u00c1":26,"\u00c0":26,"\u00bb":30,"\u00ab":30,"z":8,"y":15,"w":15,"v":15,"u":11,"s":11,"r":11,"o":11,"e":11,"d":12,"c":11,"a":11,"Y":-8,"T":-15,"S":4,"Q":15,"O":15,"M":7,"J":34,"A":26,"\/":19,".":30,"-":30,",":30}},"\u0165":{"d":"120,-268v22,-2,18,22,10,33v-5,7,-11,25,-22,15v3,-5,6,-7,6,-14v0,-10,-12,-7,-11,-19v1,-13,3,-14,17,-15xm69,-49v-3,26,34,26,40,10r12,11v-6,18,-19,31,-44,31v-68,1,-42,-94,-47,-156r-24,0r0,-27r24,0r0,-45r39,-5r0,50r42,0r0,27r-42,0r0,104","w":133,"k":{"\uf730":7,"\u0219":7,"\u01ff":7,"\u0161":7,"\u015f":7,"\u015d":7,"\u015b":7,"\u0153":7,"\u0151":7,"\u014f":7,"\u014d":7,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010b":7,"\u0109":7,"\u0107":7,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"s":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7}},"\u0166":{"d":"175,-221r-67,0r0,55r39,0r0,23r-39,0r0,143r-42,0r0,-143r-37,0r0,-23r37,0r0,-55r-65,0r0,-35r174,0r0,35","w":175,"k":{"\uf730":11,"\u203a":30,"\u2039":30,"\u2026":30,"\u201e":30,"\u201a":30,"\u2014":30,"\u2013":30,"\u1ef3":15,"\u1ef2":-8,"\u1e85":15,"\u1e83":15,"\u1e81":15,"\u0219":11,"\u0218":4,"\u01ff":11,"\u01fe":15,"\u01fc":30,"\u01fb":11,"\u01fa":26,"\u017e":8,"\u017c":8,"\u017a":8,"\u0178":-8,"\u0177":15,"\u0176":-8,"\u0175":15,"\u0173":11,"\u0171":11,"\u016f":11,"\u016d":11,"\u016b":11,"\u0169":11,"\u0166":-15,"\u0164":-15,"\u0162":-15,"\u0161":11,"\u0160":4,"\u015f":11,"\u015e":4,"\u015d":11,"\u015c":4,"\u015b":11,"\u015a":4,"\u0159":11,"\u0157":11,"\u0155":11,"\u0153":11,"\u0151":11,"\u0150":15,"\u014f":11,"\u014e":15,"\u014d":11,"\u014c":15,"\u0134":34,"\u0119":11,"\u0117":11,"\u0115":11,"\u0113":11,"\u010d":11,"\u010b":11,"\u0109":11,"\u0107":11,"\u0105":11,"\u0104":26,"\u0103":11,"\u0102":26,"\u0101":11,"\u0100":26,"\u00ff":15,"\u00fd":15,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00e5":11,"\u00e4":11,"\u00e3":11,"\u00e2":11,"\u00e1":11,"\u00e0":11,"\u00dd":-8,"\u00d8":15,"\u00d5":15,"\u00d4":15,"\u00d3":15,"\u00d2":15,"\u00c6":30,"\u00c5":26,"\u00c4":26,"\u00c3":26,"\u00c2":26,"\u00c1":26,"\u00c0":26,"\u00bb":30,"\u00ab":30,"z":8,"y":15,"w":15,"v":15,"u":11,"s":11,"r":11,"o":11,"e":11,"d":12,"c":11,"a":11,"Y":-8,"T":-15,"S":4,"Q":15,"O":15,"M":7,"J":34,"A":26,"\/":19,".":30,"-":30,",":30}},"\u0167":{"d":"69,-49v-3,26,34,26,40,10r12,11v-6,18,-19,31,-44,31v-51,0,-49,-52,-47,-103r-20,0r0,-25r20,0r0,-28r-24,0r0,-27r24,0r0,-45r39,-5r0,50r42,0r0,27r-42,0r0,28r35,0r0,25r-35,0r0,51","w":129,"k":{"\uf730":7,"\u0219":7,"\u01ff":7,"\u0161":7,"\u015f":7,"\u015d":7,"\u015b":7,"\u0153":7,"\u0151":7,"\u014f":7,"\u014d":7,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010b":7,"\u0109":7,"\u0107":7,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"s":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7}},"\u0168":{"d":"118,-30v38,0,49,-22,49,-61r0,-165r41,0r0,167v2,64,-27,92,-91,92v-129,0,-83,-148,-91,-259r45,0r0,165v-1,38,9,61,47,61xm95,-313v23,0,49,23,63,0r10,13v-8,12,-15,18,-29,20v-22,-3,-49,-25,-63,-1r-10,-12v8,-12,14,-20,29,-20","w":234,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u01fa":11,"\u0104":11,"\u0102":11,"\u0100":11,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"M":4,"A":11,"\/":19,".":7,",":7}},"\u0169":{"d":"96,-27v23,0,34,-11,33,-35r0,-118r38,0v-3,83,24,183,-72,183v-95,0,-66,-102,-70,-183r40,0r0,118v-1,23,8,35,31,35xm74,-237v23,0,49,23,63,0r10,13v-8,12,-15,18,-29,20v-22,-3,-49,-25,-63,-1r-10,-12v8,-12,14,-20,29,-20","w":192,"k":{"\/":8}},"\u016a":{"d":"118,-30v38,0,49,-22,49,-61r0,-165r41,0r0,167v2,64,-27,92,-91,92v-129,0,-83,-148,-91,-259r45,0r0,165v-1,38,9,61,47,61xm161,-287r-89,0r0,-23r89,0r0,23","w":234,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u01fa":11,"\u0104":11,"\u0102":11,"\u0100":11,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"M":4,"A":11,"\/":19,".":7,",":7}},"\u016b":{"d":"96,-27v23,0,34,-11,33,-35r0,-118r38,0v-3,83,24,183,-72,183v-95,0,-66,-102,-70,-183r40,0r0,118v-1,23,8,35,31,35xm141,-211r-89,0r0,-23r89,0r0,23","w":192,"k":{"\/":8}},"\u016c":{"d":"118,-30v38,0,49,-22,49,-61r0,-165r41,0r0,167v2,64,-27,92,-91,92v-129,0,-83,-148,-91,-259r45,0r0,165v-1,38,9,61,47,61xm117,-297v16,0,23,-13,27,-28r24,0v-2,41,-55,64,-85,34v-9,-9,-14,-20,-16,-34r24,0v4,13,10,28,26,28","w":234,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u01fa":11,"\u0104":11,"\u0102":11,"\u0100":11,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"M":4,"A":11,"\/":19,".":7,",":7}},"\u016d":{"d":"96,-27v23,0,34,-11,33,-35r0,-118r38,0v-3,83,24,183,-72,183v-95,0,-66,-102,-70,-183r40,0r0,118v-1,23,8,35,31,35xm95,-221v16,0,23,-13,27,-28r24,0v-2,41,-55,64,-85,34v-9,-9,-14,-20,-16,-34r24,0v4,13,10,28,26,28","w":192,"k":{"\/":8}},"\u016e":{"d":"118,-30v38,0,49,-22,49,-61r0,-165r41,0r0,167v2,64,-27,92,-91,92v-129,0,-83,-148,-91,-259r45,0r0,165v-1,38,9,61,47,61xm117,-333v23,0,34,10,34,30v0,21,-11,31,-34,30v-23,0,-34,-10,-34,-30v0,-20,11,-30,34,-30xm134,-303v0,-10,-5,-15,-17,-15v-12,0,-18,5,-18,15v0,11,6,16,18,16v12,0,17,-5,17,-16","w":234,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u01fa":11,"\u0104":11,"\u0102":11,"\u0100":11,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"M":4,"A":11,"\/":19,".":7,",":7}},"\u016f":{"d":"96,-27v23,0,34,-11,33,-35r0,-118r38,0v-3,83,24,183,-72,183v-95,0,-66,-102,-70,-183r40,0r0,118v-1,23,8,35,31,35xm96,-257v23,0,34,10,34,30v0,21,-11,31,-34,30v-23,0,-34,-10,-34,-30v0,-20,11,-30,34,-30xm113,-227v0,-10,-5,-15,-17,-15v-12,0,-18,5,-18,15v0,11,6,16,18,16v12,0,17,-5,17,-16","w":192,"k":{"\/":8}},"\u0170":{"d":"118,-30v38,0,49,-22,49,-61r0,-165r41,0r0,167v2,64,-27,92,-91,92v-129,0,-83,-148,-91,-259r45,0r0,165v-1,38,9,61,47,61xm150,-278r-22,0r37,-49r31,0xm96,-278r-22,0r36,-49r31,0","w":234,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u01fa":11,"\u0104":11,"\u0102":11,"\u0100":11,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"M":4,"A":11,"\/":19,".":7,",":7}},"\u0171":{"d":"96,-27v23,0,34,-11,33,-35r0,-118r38,0v-3,83,24,183,-72,183v-95,0,-66,-102,-70,-183r40,0r0,118v-1,23,8,35,31,35xm129,-202r-22,0r37,-49r31,0xm75,-202r-22,0r36,-49r31,0","w":192,"k":{"\/":8}},"\u0172":{"d":"118,-30v38,0,49,-22,49,-61r0,-165r41,0r0,167v1,51,-16,82,-59,89v-12,10,-26,23,-27,42v-1,18,25,16,36,9r6,18v-22,14,-67,17,-65,-17v2,-23,15,-40,30,-49v-71,4,-103,-25,-103,-92r0,-167r45,0r0,165v-1,38,9,61,47,61","w":234,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u01fa":11,"\u0104":11,"\u0102":11,"\u0100":11,"\u00c5":11,"\u00c4":11,"\u00c3":11,"\u00c2":11,"\u00c1":11,"\u00c0":11,"M":4,"A":11,"\/":19,".":7,",":7}},"\u0173":{"d":"96,-27v23,0,34,-11,33,-35r0,-118r38,0v-6,69,24,167,-45,180v-11,10,-27,23,-27,42v0,19,25,15,37,9r5,18v-22,15,-66,16,-65,-17v1,-24,15,-38,29,-49v-50,1,-76,-18,-76,-65r0,-118r40,0r0,118v-1,23,8,35,31,35","w":192,"k":{"\/":8}},"\u0174":{"d":"270,0r-38,0r-60,-186r-58,186r-39,0r-70,-256r42,0r50,194r58,-194r39,0r59,194r49,-194r37,0xm214,-284r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":340,"k":{"\uf730":11,"\u203a":19,"\u2039":19,"\u2026":19,"\u201e":19,"\u201a":19,"\u2014":19,"\u2013":19,"\u1ef2":-15,"\u1e84":-19,"\u1e82":-19,"\u1e80":-19,"\u0219":12,"\u01ff":11,"\u01fe":7,"\u01fc":19,"\u01fb":8,"\u01fa":19,"\u0178":-15,"\u0176":-15,"\u0174":-19,"\u0173":11,"\u0171":11,"\u016f":11,"\u016d":11,"\u016b":11,"\u0169":11,"\u0166":-15,"\u0164":-15,"\u0162":-15,"\u0161":12,"\u015f":12,"\u015d":12,"\u015b":12,"\u0153":11,"\u0152":7,"\u0151":11,"\u0150":7,"\u014f":11,"\u014e":7,"\u014d":11,"\u014c":7,"\u0134":41,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u0119":11,"\u0117":11,"\u0115":11,"\u0113":11,"\u010d":11,"\u010b":11,"\u0109":11,"\u0107":11,"\u0105":8,"\u0104":19,"\u0103":8,"\u0102":19,"\u0101":8,"\u0100":19,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00e5":8,"\u00e4":8,"\u00e3":8,"\u00e2":8,"\u00e1":8,"\u00e0":8,"\u00dd":-15,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c6":19,"\u00c5":19,"\u00c4":19,"\u00c3":19,"\u00c2":19,"\u00c1":19,"\u00c0":19,"\u00bb":19,"\u00ab":19,"u":11,"s":12,"o":11,"e":11,"d":8,"c":11,"a":8,"Y":-15,"W":-19,"V":-19,"T":-15,"Q":7,"O":7,"M":7,"J":41,"G":7,"A":19,"\/":30,".":19,"-":19,",":19}},"\u0175":{"d":"215,0r-40,0r-39,-134r-38,134r-40,0r-51,-180r39,0r36,136r38,-136r37,0r38,136r36,-136r33,0xm178,-208r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":270,"k":{"\uf730":4,"\u2026":11,"\u201e":11,"\u201a":11,"\u0219":4,"\u01ff":4,"\u01fb":4,"\u01fa":12,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u0105":4,"\u0104":12,"\u0103":4,"\u0102":12,"\u0101":4,"\u0100":12,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c5":12,"\u00c4":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u00c0":12,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"A":12,"\/":11,".":11,",":11}},"\u0176":{"d":"123,-112r0,112r-43,0r0,-112r-75,-144r49,0r53,107r56,-107r39,0xm145,-284r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":202,"k":{"\uf730":19,"\u203a":30,"\u2039":30,"\u2026":30,"\u201e":30,"\u201a":30,"\u2014":30,"\u2013":30,"\u1ef3":12,"\u1e85":12,"\u1e84":-15,"\u1e83":12,"\u1e82":-15,"\u1e81":12,"\u1e80":-15,"\u0219":15,"\u0218":11,"\u01ff":19,"\u01fe":11,"\u01fc":26,"\u01fb":15,"\u01fa":30,"\u0177":12,"\u0175":12,"\u0174":-15,"\u0173":12,"\u0171":12,"\u016f":12,"\u016d":12,"\u016b":12,"\u0169":12,"\u0166":-11,"\u0164":-11,"\u0162":-11,"\u0161":15,"\u0160":11,"\u015f":15,"\u015e":11,"\u015d":15,"\u015c":11,"\u015b":15,"\u015a":11,"\u0153":19,"\u0152":15,"\u0151":19,"\u0150":11,"\u014f":19,"\u014e":11,"\u014d":19,"\u014c":11,"\u0134":30,"\u0122":15,"\u0120":15,"\u011e":15,"\u011c":15,"\u0119":19,"\u0117":19,"\u0115":19,"\u0113":19,"\u010d":19,"\u010c":19,"\u010b":19,"\u010a":19,"\u0109":19,"\u0108":19,"\u0107":19,"\u0106":19,"\u0105":15,"\u0104":30,"\u0103":15,"\u0102":30,"\u0101":15,"\u0100":30,"\u00ff":12,"\u00fd":12,"\u00fc":12,"\u00fb":12,"\u00fa":12,"\u00f9":12,"\u00f8":19,"\u00f6":19,"\u00f5":19,"\u00f4":19,"\u00f3":19,"\u00f2":19,"\u00eb":19,"\u00ea":19,"\u00e9":19,"\u00e8":19,"\u00e7":19,"\u00e6":19,"\u00e5":15,"\u00e4":15,"\u00e3":15,"\u00e2":15,"\u00e1":15,"\u00e0":15,"\u00d8":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":19,"\u00c6":26,"\u00c5":30,"\u00c4":30,"\u00c3":30,"\u00c2":30,"\u00c1":30,"\u00c0":30,"\u00bb":30,"\u00ab":30,"y":12,"w":12,"v":12,"u":12,"s":15,"o":19,"e":19,"c":19,"a":15,"W":-15,"V":-15,"T":-11,"S":11,"Q":11,"O":11,"M":7,"J":30,"G":15,"C":19,"A":30,"\/":19,".":30,"-":30,",":30}},"\u0177":{"d":"14,77v0,-23,37,-10,44,-33v6,-10,11,-23,14,-36r-68,-188r40,0r43,140r43,-140r36,0r-80,235v-10,20,-25,36,-54,37v-10,0,-18,-5,-18,-15xm128,-208r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":168,"k":{"\uf730":4,"\u2026":11,"\u201e":11,"\u201a":11,"\u0219":4,"\u01ff":4,"\u01fb":4,"\u01fa":12,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u0105":4,"\u0104":12,"\u0103":4,"\u0102":12,"\u0101":4,"\u0100":12,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c5":12,"\u00c4":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u00c0":12,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"A":12,"\/":11,".":11,",":11}},"\u0178":{"d":"123,-112r0,112r-43,0r0,-112r-75,-144r49,0r53,107r56,-107r39,0xm132,-313v15,0,18,2,18,17v0,15,-3,17,-18,17v-16,0,-18,-2,-18,-17v0,-15,2,-17,18,-17xm71,-313v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":202,"k":{"\uf730":19,"\u203a":30,"\u2039":30,"\u2026":30,"\u201e":30,"\u201a":30,"\u2014":30,"\u2013":30,"\u1ef3":12,"\u1e85":12,"\u1e84":-15,"\u1e83":12,"\u1e82":-15,"\u1e81":12,"\u1e80":-15,"\u0219":15,"\u0218":11,"\u01ff":19,"\u01fe":11,"\u01fc":26,"\u01fb":15,"\u01fa":30,"\u0177":12,"\u0175":12,"\u0174":-15,"\u0173":12,"\u0171":12,"\u016f":12,"\u016d":12,"\u016b":12,"\u0169":12,"\u0166":-11,"\u0164":-11,"\u0162":-11,"\u0161":15,"\u0160":11,"\u015f":15,"\u015e":11,"\u015d":15,"\u015c":11,"\u015b":15,"\u015a":11,"\u0153":19,"\u0152":15,"\u0151":19,"\u0150":11,"\u014f":19,"\u014e":11,"\u014d":19,"\u014c":11,"\u0134":30,"\u0122":15,"\u0120":15,"\u011e":15,"\u011c":15,"\u0119":19,"\u0117":19,"\u0115":19,"\u0113":19,"\u010d":19,"\u010c":19,"\u010b":19,"\u010a":19,"\u0109":19,"\u0108":19,"\u0107":19,"\u0106":19,"\u0105":15,"\u0104":30,"\u0103":15,"\u0102":30,"\u0101":15,"\u0100":30,"\u00ff":12,"\u00fd":12,"\u00fc":12,"\u00fb":12,"\u00fa":12,"\u00f9":12,"\u00f8":19,"\u00f6":19,"\u00f5":19,"\u00f4":19,"\u00f3":19,"\u00f2":19,"\u00eb":19,"\u00ea":19,"\u00e9":19,"\u00e8":19,"\u00e7":19,"\u00e6":19,"\u00e5":15,"\u00e4":15,"\u00e3":15,"\u00e2":15,"\u00e1":15,"\u00e0":15,"\u00d8":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":19,"\u00c6":26,"\u00c5":30,"\u00c4":30,"\u00c3":30,"\u00c2":30,"\u00c1":30,"\u00c0":30,"\u00bb":30,"\u00ab":30,"y":12,"w":12,"v":12,"u":12,"s":15,"o":19,"e":19,"c":19,"a":15,"W":-15,"V":-15,"T":-11,"S":11,"Q":11,"O":11,"M":7,"J":30,"G":15,"C":19,"A":30,"\/":19,".":30,"-":30,",":30}},"\u0179":{"d":"178,-238r-114,200r114,0r0,38r-161,0r-7,-17r114,-200r-109,0r0,-39r156,0xm140,-300r-63,23r-7,-13r59,-33","w":188,"k":{"\uf730":8,"\u203a":23,"\u2039":23,"\u2014":23,"\u2013":23,"\u01ff":8,"\u0153":8,"\u0151":8,"\u014f":8,"\u014d":8,"\u0119":8,"\u0117":8,"\u0115":8,"\u0113":8,"\u010d":8,"\u010b":8,"\u0109":8,"\u0107":8,"\u00f8":8,"\u00f6":8,"\u00f5":8,"\u00f4":8,"\u00f3":8,"\u00f2":8,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":8,"\u00e6":8,"\u00bb":23,"\u00ab":23,"o":8,"e":8,"c":8,"-":23}},"\u017a":{"d":"140,-157r-86,126r89,0r0,31r-130,0r-8,-22r87,-127r-81,0r0,-31r124,0xm119,-224r-63,23r-7,-13r59,-33","w":146,"k":{"\uf730":4,"\u0219":4,"\u01ff":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u017b":{"d":"178,-238r-114,200r114,0r0,38r-161,0r-7,-17r114,-200r-109,0r0,-39r156,0xm94,-313v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":188,"k":{"\uf730":8,"\u203a":23,"\u2039":23,"\u2014":23,"\u2013":23,"\u01ff":8,"\u0153":8,"\u0151":8,"\u014f":8,"\u014d":8,"\u0119":8,"\u0117":8,"\u0115":8,"\u0113":8,"\u010d":8,"\u010b":8,"\u0109":8,"\u0107":8,"\u00f8":8,"\u00f6":8,"\u00f5":8,"\u00f4":8,"\u00f3":8,"\u00f2":8,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":8,"\u00e6":8,"\u00bb":23,"\u00ab":23,"o":8,"e":8,"c":8,"-":23}},"\u017c":{"d":"140,-157r-86,126r89,0r0,31r-130,0r-8,-22r87,-127r-81,0r0,-31r124,0xm73,-237v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":146,"k":{"\uf730":4,"\u0219":4,"\u01ff":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u017d":{"d":"178,-238r-114,200r114,0r0,38r-161,0r-7,-17r114,-200r-109,0r0,-39r156,0xm138,-307r-33,36r-21,0r-34,-36r12,-13r32,28r33,-28","w":188,"k":{"\uf730":8,"\u203a":23,"\u2039":23,"\u2014":23,"\u2013":23,"\u01ff":8,"\u0153":8,"\u0151":8,"\u014f":8,"\u014d":8,"\u0119":8,"\u0117":8,"\u0115":8,"\u0113":8,"\u010d":8,"\u010b":8,"\u0109":8,"\u0107":8,"\u00f8":8,"\u00f6":8,"\u00f5":8,"\u00f4":8,"\u00f3":8,"\u00f2":8,"\u00eb":8,"\u00ea":8,"\u00e9":8,"\u00e8":8,"\u00e7":8,"\u00e6":8,"\u00bb":23,"\u00ab":23,"o":8,"e":8,"c":8,"-":23}},"\u017e":{"d":"140,-157r-86,126r89,0r0,31r-130,0r-8,-22r87,-127r-81,0r0,-31r124,0xm117,-231r-33,36r-21,0r-34,-36r12,-13r32,28r33,-28","w":146,"k":{"\uf730":4,"\u0219":4,"\u01ff":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4}},"\u017f":{"d":"82,-240v-13,1,-16,8,-16,24r0,216r-39,0r0,-217v0,-35,20,-52,54,-52v21,0,44,7,46,28v0,9,-7,16,-16,16v-13,-1,-14,-16,-29,-15","w":112,"k":{"\uf730":7,"\u2026":11,"\u201e":11,"\u201d":-15,"\u201c":-15,"\u201a":11,"\u2019":-15,"\u2018":-15,"\u021b":-4,"\u0219":7,"\u01ff":7,"\u017f":-8,"\u0167":-4,"\u0165":-4,"\u0163":-4,"\u0161":7,"\u015f":7,"\u015d":7,"\u015b":7,"\u0153":7,"\u0151":7,"\u014f":7,"\u014d":7,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010b":7,"\u0109":7,"\u0107":7,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"t":-4,"s":7,"q":7,"o":7,"i":-8,"g":7,"f":-8,"e":7,"d":7,"c":7,"\/":7,".":11,",":11,"'":-15,"\"":-15}},"\u01fa":{"d":"211,0r-45,0r-16,-51r-88,0r-16,51r-40,0r81,-256r41,0xm70,-81r71,0r-36,-113xm109,-333v23,0,34,10,34,30v0,21,-11,31,-34,30v-23,0,-34,-10,-34,-30v0,-20,11,-30,34,-30xm126,-303v0,-10,-5,-15,-17,-15v-12,0,-18,5,-18,15v0,11,6,16,18,16v12,0,17,-5,17,-16xm216,-312r-51,18r-6,-10r48,-27","w":217,"k":{"\u201d":37,"\u201c":37,"\u2019":37,"\u2018":37,"\u1ef3":11,"\u1ef2":30,"\u1e85":11,"\u1e84":22,"\u1e83":11,"\u1e82":22,"\u1e81":11,"\u1e80":22,"\u0218":7,"\u01fe":7,"\u0178":30,"\u0177":11,"\u0176":30,"\u0175":11,"\u0174":22,"\u0173":11,"\u0172":11,"\u0171":11,"\u0170":11,"\u016f":11,"\u016e":11,"\u016d":11,"\u016c":11,"\u016b":11,"\u016a":11,"\u0169":11,"\u0168":11,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":7,"\u015e":7,"\u015c":7,"\u015a":7,"\u0152":7,"\u0150":7,"\u014e":7,"\u014c":7,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u010c":7,"\u010a":7,"\u0108":7,"\u0106":7,"\u00ff":11,"\u00fd":11,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00dd":30,"\u00dc":11,"\u00db":11,"\u00da":11,"\u00d9":11,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c7":7,"y":11,"w":11,"v":11,"u":11,"Y":30,"W":22,"V":22,"U":11,"T":30,"S":7,"Q":7,"O":7,"G":7,"C":7,"'":37,"\"":37}},"\u01fb":{"d":"89,-182v75,-4,60,75,60,142v0,14,7,22,16,14v10,17,-4,28,-24,28v-12,0,-21,-7,-26,-20v-25,35,-102,27,-102,-34v0,-51,45,-63,98,-56v1,-25,-1,-45,-26,-45v-28,0,-30,22,-50,26v-9,0,-17,-7,-17,-16v6,-28,37,-37,71,-39xm51,-55v-4,35,47,35,60,16r0,-47v-27,-5,-63,-1,-60,31xm88,-257v23,0,34,10,34,30v0,21,-11,31,-34,30v-23,0,-34,-10,-34,-30v0,-20,11,-30,34,-30xm105,-227v0,-10,-5,-15,-17,-15v-12,0,-18,5,-18,15v0,11,6,16,18,16v12,0,17,-5,17,-16xm196,-238r-51,18r-6,-10r48,-27","w":176,"k":{"\u201d":4,"\u201c":4,"\u2019":4,"\u2018":4,"\u1ef3":8,"\u1e85":8,"\u1e84":8,"\u1e83":8,"\u1e82":8,"\u1e81":8,"\u1e80":8,"\u021b":4,"\u0219":4,"\u0177":8,"\u0175":8,"\u0174":8,"\u0167":4,"\u0165":4,"\u0163":4,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u00ff":8,"\u00fd":8,"y":8,"w":8,"v":8,"t":4,"s":4,"W":8,"V":8,"'":4,"\"":4}},"\u01fc":{"d":"254,-221r-93,0r0,71r78,0r0,29r-78,0r0,86r96,0r0,35r-139,0r0,-54r-65,0r-13,54r-41,0r64,-256r191,0r0,35xm94,-224r-35,138r59,0r0,-138r-24,0xm183,-300r-63,23r-7,-13r59,-33","w":267},"\u01fd":{"d":"188,-182v54,-1,77,41,71,97r-112,0v-10,59,70,77,86,31r24,6v-6,59,-106,66,-130,19v-14,16,-30,32,-59,32v-34,-1,-55,-19,-55,-55v0,-47,44,-64,98,-56v-1,-22,-3,-45,-26,-45v-28,0,-30,22,-50,26v-9,0,-17,-7,-17,-16v7,-42,96,-56,115,-15v12,-15,29,-24,55,-24xm51,-56v0,40,55,35,68,10v-4,-12,-7,-25,-7,-41v-31,-3,-61,-2,-61,31xm222,-108v5,-40,-40,-61,-63,-33v-7,8,-10,19,-11,33r74,0xm182,-224r-63,23r-7,-13r59,-33","w":273},"\u01fe":{"d":"169,-300r-63,23r-7,-13r59,-33xm122,-258v34,-1,57,7,75,23r20,-25r12,10r-21,27v17,24,24,55,25,97v-1,81,-30,130,-111,129v-33,-1,-56,-6,-74,-22r-21,27r-13,-11r22,-28v-17,-23,-24,-53,-24,-95v-1,-83,29,-132,110,-132xm121,-228v-71,-5,-70,102,-54,159r104,-133v-11,-16,-26,-25,-50,-26xm123,-28v73,0,69,-101,55,-157r-104,132v11,17,27,25,49,25","w":246,"k":{"\u2026":11,"\u201e":11,"\u201a":11,"\u1ef2":19,"\u1e84":7,"\u1e82":7,"\u1e80":7,"\u01fa":7,"\u0178":19,"\u0176":19,"\u0174":7,"\u0166":15,"\u0164":15,"\u0162":15,"\u0134":26,"\u0104":7,"\u0102":7,"\u0100":7,"\u00dd":19,"\u00c5":7,"\u00c4":7,"\u00c3":7,"\u00c2":7,"\u00c1":7,"\u00c0":7,"Y":19,"X":11,"W":7,"V":7,"T":15,"M":4,"J":26,"A":7,"\/":15,".":11,",":11}},"\u01ff":{"d":"138,-224r-63,23r-7,-13r59,-33xm13,-92v0,-83,69,-107,130,-78r13,-17r12,10r-14,18v12,15,18,37,18,68v0,62,-21,93,-79,94v-22,0,-39,-5,-51,-14r-14,19r-12,-10r15,-20v-12,-15,-18,-39,-18,-70xm64,-40v29,29,70,9,70,-49v0,-16,-2,-27,-5,-36xm121,-140v-29,-28,-68,-4,-68,46v0,16,1,28,4,38","k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\u0218":{"d":"98,27v22,-2,18,22,10,33v-5,7,-11,25,-22,15v3,-5,6,-8,7,-14v-1,-9,-13,-7,-12,-19v1,-13,3,-14,17,-15xm138,-142v71,32,45,145,-44,145v-45,0,-73,-24,-80,-62r23,-8v7,42,100,54,103,2v-13,-67,-122,-29,-122,-124v0,-86,149,-92,156,-18v2,19,-28,25,-34,7v-13,-38,-105,-26,-78,20v14,23,50,26,76,38","w":195,"k":{"\u2026":7,"\u201e":7,"\u201a":7,"\u1ef2":11,"\u0178":11,"\u0176":11,"\u0166":4,"\u0164":4,"\u0162":4,"\u00dd":11,"Y":11,"T":4,"M":4,".":7,",":7}},"\u0219":{"d":"80,27v22,-2,18,22,10,33v-5,7,-11,25,-22,15v3,-5,6,-8,7,-14v-1,-9,-13,-7,-12,-19v1,-13,3,-14,17,-15xm110,-102v59,19,36,112,-30,105v-36,-4,-57,-19,-66,-48r25,-6v5,28,69,38,72,2v-13,-43,-91,-17,-91,-84v0,-58,109,-67,121,-17v0,9,-8,17,-16,17v-17,-3,-21,-23,-44,-21v-19,-3,-38,21,-20,35v8,6,36,12,49,17","w":159,"k":{"\u201d":11,"\u201c":11,"\u2019":11,"\u2018":11,"\u021b":4,"\u0167":4,"\u0165":4,"\u0163":4,"t":4,"'":11,"\"":11}},"\u021a":{"d":"87,27v23,-2,20,22,11,33v-5,7,-11,25,-22,15v3,-5,6,-7,6,-14v0,-9,-12,-7,-11,-19v1,-13,3,-14,16,-15xm175,-221r-67,0r0,221r-42,0r0,-221r-65,0r0,-35r174,0r0,35","w":175},"\u021b":{"d":"67,27v23,-2,19,22,10,33v-6,6,-11,25,-22,15v3,-5,6,-8,7,-14v-1,-9,-13,-7,-12,-19v1,-13,3,-14,17,-15xm69,-49v-3,26,34,26,40,10r12,11v-6,18,-19,31,-44,31v-68,1,-42,-94,-47,-156r-24,0r0,-27r24,0r0,-45r39,-5r0,50r42,0r0,27r-42,0r0,104","w":129,"k":{"\uf730":7,"\u0219":7,"\u01ff":7,"\u0161":7,"\u015f":7,"\u015d":7,"\u015b":7,"\u0153":7,"\u0151":7,"\u014f":7,"\u014d":7,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010b":7,"\u0109":7,"\u0107":7,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"s":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7}},"\u02c6":{"d":"105,-208r-11,13r-32,-29r-33,29r-12,-13r34,-36r21,0","w":118},"\u02c7":{"d":"105,-231r-33,36r-21,0r-34,-36r12,-13r32,28r33,-28","w":118},"\u02d8":{"d":"67,-221v16,0,23,-13,27,-28r24,0v-2,41,-55,64,-85,34v-9,-9,-14,-20,-16,-34r24,0v4,13,10,28,26,28","w":130},"\u02d9":{"d":"35,-237v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":65},"\u02da":{"d":"51,-257v23,0,34,10,34,30v0,21,-11,31,-34,30v-23,0,-34,-10,-34,-30v0,-20,11,-30,34,-30xm68,-227v0,-10,-5,-15,-17,-15v-12,0,-18,5,-18,15v0,11,6,16,18,16v12,0,17,-5,17,-16","w":97},"\u02db":{"d":"48,79v-54,-3,-24,-68,2,-79r17,0v-11,10,-27,23,-27,42v0,19,25,16,36,9r6,18v-11,6,-22,10,-34,10","w":94},"\u02dc":{"d":"46,-237v23,0,49,23,63,0r10,13v-8,12,-15,18,-29,20v-22,-3,-49,-25,-63,-1r-10,-12v8,-12,14,-20,29,-20","w":131},"\u02dd":{"d":"90,-202r-22,0r37,-49r31,0xm36,-202r-22,0r36,-49r31,0","w":131},"\u0394":{"d":"81,-256r41,0r83,256r-46,0r-60,-194r-59,194r-40,0","w":201},"\u2206":{"d":"81,-256r41,0r83,256r-46,0r-60,-194r-59,194r-40,0","w":201},"\u1e80":{"d":"270,0r-38,0r-60,-186r-58,186r-39,0r-70,-256r42,0r50,194r58,-194r39,0r59,194r49,-194r37,0xm187,-277r-63,-23r11,-23r59,33","w":340,"k":{"\uf730":11,"\u203a":19,"\u2039":19,"\u2026":19,"\u201e":19,"\u201a":19,"\u2014":19,"\u2013":19,"\u1ef2":-15,"\u1e84":-19,"\u1e82":-19,"\u1e80":-19,"\u0219":12,"\u01ff":11,"\u01fe":7,"\u01fc":19,"\u01fb":8,"\u01fa":19,"\u0178":-15,"\u0176":-15,"\u0174":-19,"\u0173":11,"\u0171":11,"\u016f":11,"\u016d":11,"\u016b":11,"\u0169":11,"\u0166":-15,"\u0164":-15,"\u0162":-15,"\u0161":12,"\u015f":12,"\u015d":12,"\u015b":12,"\u0153":11,"\u0152":7,"\u0151":11,"\u0150":7,"\u014f":11,"\u014e":7,"\u014d":11,"\u014c":7,"\u0134":41,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u0119":11,"\u0117":11,"\u0115":11,"\u0113":11,"\u010d":11,"\u010b":11,"\u0109":11,"\u0107":11,"\u0105":8,"\u0104":19,"\u0103":8,"\u0102":19,"\u0101":8,"\u0100":19,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00e5":8,"\u00e4":8,"\u00e3":8,"\u00e2":8,"\u00e1":8,"\u00e0":8,"\u00dd":-15,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c6":19,"\u00c5":19,"\u00c4":19,"\u00c3":19,"\u00c2":19,"\u00c1":19,"\u00c0":19,"\u00bb":19,"\u00ab":19,"u":11,"s":12,"o":11,"e":11,"d":8,"c":11,"a":8,"Y":-15,"W":-19,"V":-19,"T":-15,"Q":7,"O":7,"M":7,"J":41,"G":7,"A":19,"\/":30,".":19,"-":19,",":19}},"\u1e81":{"d":"215,0r-40,0r-39,-134r-38,134r-40,0r-51,-180r39,0r36,136r38,-136r37,0r38,136r36,-136r33,0xm152,-201r-63,-23r11,-23r59,33","w":270,"k":{"\uf730":4,"\u2026":11,"\u201e":11,"\u201a":11,"\u0219":4,"\u01ff":4,"\u01fb":4,"\u01fa":12,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u0105":4,"\u0104":12,"\u0103":4,"\u0102":12,"\u0101":4,"\u0100":12,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c5":12,"\u00c4":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u00c0":12,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"A":12,"\/":11,".":11,",":11}},"\u1e82":{"d":"270,0r-38,0r-60,-186r-58,186r-39,0r-70,-256r42,0r50,194r58,-194r39,0r59,194r49,-194r37,0xm216,-300r-63,23r-7,-13r59,-33","w":340,"k":{"\uf730":11,"\u203a":19,"\u2039":19,"\u2026":19,"\u201e":19,"\u201a":19,"\u2014":19,"\u2013":19,"\u1ef2":-15,"\u1e84":-19,"\u1e82":-19,"\u1e80":-19,"\u0219":12,"\u01ff":11,"\u01fe":7,"\u01fc":19,"\u01fb":8,"\u01fa":19,"\u0178":-15,"\u0176":-15,"\u0174":-19,"\u0173":11,"\u0171":11,"\u016f":11,"\u016d":11,"\u016b":11,"\u0169":11,"\u0166":-15,"\u0164":-15,"\u0162":-15,"\u0161":12,"\u015f":12,"\u015d":12,"\u015b":12,"\u0153":11,"\u0152":7,"\u0151":11,"\u0150":7,"\u014f":11,"\u014e":7,"\u014d":11,"\u014c":7,"\u0134":41,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u0119":11,"\u0117":11,"\u0115":11,"\u0113":11,"\u010d":11,"\u010b":11,"\u0109":11,"\u0107":11,"\u0105":8,"\u0104":19,"\u0103":8,"\u0102":19,"\u0101":8,"\u0100":19,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00e5":8,"\u00e4":8,"\u00e3":8,"\u00e2":8,"\u00e1":8,"\u00e0":8,"\u00dd":-15,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c6":19,"\u00c5":19,"\u00c4":19,"\u00c3":19,"\u00c2":19,"\u00c1":19,"\u00c0":19,"\u00bb":19,"\u00ab":19,"u":11,"s":12,"o":11,"e":11,"d":8,"c":11,"a":8,"Y":-15,"W":-19,"V":-19,"T":-15,"Q":7,"O":7,"M":7,"J":41,"G":7,"A":19,"\/":30,".":19,"-":19,",":19}},"\u1e83":{"d":"215,0r-40,0r-39,-134r-38,134r-40,0r-51,-180r39,0r36,136r38,-136r37,0r38,136r36,-136r33,0xm181,-224r-63,23r-7,-13r59,-33","w":270,"k":{"\uf730":4,"\u2026":11,"\u201e":11,"\u201a":11,"\u0219":4,"\u01ff":4,"\u01fb":4,"\u01fa":12,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u0105":4,"\u0104":12,"\u0103":4,"\u0102":12,"\u0101":4,"\u0100":12,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c5":12,"\u00c4":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u00c0":12,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"A":12,"\/":11,".":11,",":11}},"\u1e84":{"d":"270,0r-38,0r-60,-186r-58,186r-39,0r-70,-256r42,0r50,194r58,-194r39,0r59,194r49,-194r37,0xm200,-313v15,0,18,2,18,17v0,15,-3,17,-18,17v-16,0,-18,-2,-18,-17v0,-15,2,-17,18,-17xm139,-313v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":340,"k":{"\uf730":11,"\u203a":19,"\u2039":19,"\u2026":19,"\u201e":19,"\u201a":19,"\u2014":19,"\u2013":19,"\u1ef2":-15,"\u1e84":-19,"\u1e82":-19,"\u1e80":-19,"\u0219":12,"\u01ff":11,"\u01fe":7,"\u01fc":19,"\u01fb":8,"\u01fa":19,"\u0178":-15,"\u0176":-15,"\u0174":-19,"\u0173":11,"\u0171":11,"\u016f":11,"\u016d":11,"\u016b":11,"\u0169":11,"\u0166":-15,"\u0164":-15,"\u0162":-15,"\u0161":12,"\u015f":12,"\u015d":12,"\u015b":12,"\u0153":11,"\u0152":7,"\u0151":11,"\u0150":7,"\u014f":11,"\u014e":7,"\u014d":11,"\u014c":7,"\u0134":41,"\u0122":7,"\u0120":7,"\u011e":7,"\u011c":7,"\u0119":11,"\u0117":11,"\u0115":11,"\u0113":11,"\u010d":11,"\u010b":11,"\u0109":11,"\u0107":11,"\u0105":8,"\u0104":19,"\u0103":8,"\u0102":19,"\u0101":8,"\u0100":19,"\u00fc":11,"\u00fb":11,"\u00fa":11,"\u00f9":11,"\u00f8":11,"\u00f6":11,"\u00f5":11,"\u00f4":11,"\u00f3":11,"\u00f2":11,"\u00eb":11,"\u00ea":11,"\u00e9":11,"\u00e8":11,"\u00e7":11,"\u00e6":11,"\u00e5":8,"\u00e4":8,"\u00e3":8,"\u00e2":8,"\u00e1":8,"\u00e0":8,"\u00dd":-15,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c6":19,"\u00c5":19,"\u00c4":19,"\u00c3":19,"\u00c2":19,"\u00c1":19,"\u00c0":19,"\u00bb":19,"\u00ab":19,"u":11,"s":12,"o":11,"e":11,"d":8,"c":11,"a":8,"Y":-15,"W":-19,"V":-19,"T":-15,"Q":7,"O":7,"M":7,"J":41,"G":7,"A":19,"\/":30,".":19,"-":19,",":19}},"\u1e85":{"d":"215,0r-40,0r-39,-134r-38,134r-40,0r-51,-180r39,0r36,136r38,-136r37,0r38,136r36,-136r33,0xm165,-237v15,0,18,2,18,17v0,15,-3,17,-18,17v-16,0,-18,-2,-18,-17v0,-15,2,-17,18,-17xm104,-237v16,0,18,2,18,17v0,15,-2,17,-18,17v-15,0,-18,-2,-18,-17v0,-15,3,-17,18,-17","w":270,"k":{"\uf730":4,"\u2026":11,"\u201e":11,"\u201a":11,"\u0219":4,"\u01ff":4,"\u01fb":4,"\u01fa":12,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u0105":4,"\u0104":12,"\u0103":4,"\u0102":12,"\u0101":4,"\u0100":12,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c5":12,"\u00c4":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u00c0":12,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"A":12,"\/":11,".":11,",":11}},"\u1ef2":{"d":"123,-112r0,112r-43,0r0,-112r-75,-144r49,0r53,107r56,-107r39,0xm119,-277r-63,-23r11,-23r59,33","w":202,"k":{"\uf730":19,"\u203a":30,"\u2039":30,"\u2026":30,"\u201e":30,"\u201a":30,"\u2014":30,"\u2013":30,"\u1ef3":12,"\u1e85":12,"\u1e84":-15,"\u1e83":12,"\u1e82":-15,"\u1e81":12,"\u1e80":-15,"\u0219":15,"\u0218":11,"\u01ff":19,"\u01fe":11,"\u01fc":26,"\u01fb":15,"\u01fa":30,"\u0177":12,"\u0175":12,"\u0174":-15,"\u0173":12,"\u0171":12,"\u016f":12,"\u016d":12,"\u016b":12,"\u0169":12,"\u0166":-11,"\u0164":-11,"\u0162":-11,"\u0161":15,"\u0160":11,"\u015f":15,"\u015e":11,"\u015d":15,"\u015c":11,"\u015b":15,"\u015a":11,"\u0153":19,"\u0152":15,"\u0151":19,"\u0150":11,"\u014f":19,"\u014e":11,"\u014d":19,"\u014c":11,"\u0134":30,"\u0122":15,"\u0120":15,"\u011e":15,"\u011c":15,"\u0119":19,"\u0117":19,"\u0115":19,"\u0113":19,"\u010d":19,"\u010c":19,"\u010b":19,"\u010a":19,"\u0109":19,"\u0108":19,"\u0107":19,"\u0106":19,"\u0105":15,"\u0104":30,"\u0103":15,"\u0102":30,"\u0101":15,"\u0100":30,"\u00ff":12,"\u00fd":12,"\u00fc":12,"\u00fb":12,"\u00fa":12,"\u00f9":12,"\u00f8":19,"\u00f6":19,"\u00f5":19,"\u00f4":19,"\u00f3":19,"\u00f2":19,"\u00eb":19,"\u00ea":19,"\u00e9":19,"\u00e8":19,"\u00e7":19,"\u00e6":19,"\u00e5":15,"\u00e4":15,"\u00e3":15,"\u00e2":15,"\u00e1":15,"\u00e0":15,"\u00d8":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":19,"\u00c6":26,"\u00c5":30,"\u00c4":30,"\u00c3":30,"\u00c2":30,"\u00c1":30,"\u00c0":30,"\u00bb":30,"\u00ab":30,"y":12,"w":12,"v":12,"u":12,"s":15,"o":19,"e":19,"c":19,"a":15,"W":-15,"V":-15,"T":-11,"S":11,"Q":11,"O":11,"M":7,"J":30,"G":15,"C":19,"A":30,"\/":19,".":30,"-":30,",":30}},"\u1ef3":{"d":"14,77v0,-23,37,-10,44,-33v6,-10,11,-23,14,-36r-68,-188r40,0r43,140r43,-140r36,0r-80,235v-10,20,-25,36,-54,37v-10,0,-18,-5,-18,-15xm102,-201r-63,-23r11,-23r59,33","w":168,"k":{"\uf730":4,"\u2026":11,"\u201e":11,"\u201a":11,"\u0219":4,"\u01ff":4,"\u01fb":4,"\u01fa":12,"\u0161":4,"\u015f":4,"\u015d":4,"\u015b":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u0105":4,"\u0104":12,"\u0103":4,"\u0102":12,"\u0101":4,"\u0100":12,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"\u00e5":4,"\u00e4":4,"\u00e3":4,"\u00e2":4,"\u00e1":4,"\u00e0":4,"\u00c5":12,"\u00c4":12,"\u00c3":12,"\u00c2":12,"\u00c1":12,"\u00c0":12,"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"A":12,"\/":11,".":11,",":11}},"\u2013":{"d":"162,-102r-152,0r0,-23r152,0r0,23","w":171,"k":{"\u1ef2":37,"\u1e84":19,"\u1e82":19,"\u1e80":19,"\u0218":15,"\u017d":19,"\u017b":19,"\u0179":19,"\u0178":37,"\u0176":37,"\u0174":19,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":15,"\u015e":15,"\u015c":15,"\u015a":15,"\u0134":30,"\u00dd":37,"Z":19,"Y":37,"X":22,"W":19,"V":19,"T":30,"S":15,"J":30}},"\u2014":{"d":"292,-102r-282,0r0,-23r282,0r0,23","w":301,"k":{"\u1ef2":37,"\u1e84":19,"\u1e82":19,"\u1e80":19,"\u0218":15,"\u017d":19,"\u017b":19,"\u0179":19,"\u0178":37,"\u0176":37,"\u0174":19,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":15,"\u015e":15,"\u015c":15,"\u015a":15,"\u0134":30,"\u00dd":37,"Z":19,"Y":37,"X":22,"W":19,"V":19,"T":30,"S":15,"J":30}},"\u2018":{"d":"33,-195v-46,0,-1,-69,11,-81r10,7v-6,9,-14,18,-15,29v2,11,15,10,14,24v0,17,-4,21,-20,21","w":64,"k":{"\uf730":7,"\u0219":7,"\u01ff":7,"\u01fe":7,"\u01fa":41,"\u0161":7,"\u015f":7,"\u015d":7,"\u015b":7,"\u0153":7,"\u0151":7,"\u0150":7,"\u014f":7,"\u014e":7,"\u014d":7,"\u014c":7,"\u0134":26,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010b":7,"\u0109":7,"\u0107":7,"\u0104":41,"\u0102":41,"\u0100":41,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c5":41,"\u00c4":41,"\u00c3":41,"\u00c2":41,"\u00c1":41,"\u00c0":41,"s":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"Q":7,"O":7,"J":26,"A":41}},"\u2019":{"d":"37,-266v39,3,12,52,0,67r-11,14r-10,-7v11,-14,21,-32,3,-44v-5,-14,-3,-32,18,-30","w":64,"k":{"\uf730":7,"\u0219":7,"\u01ff":7,"\u01fe":7,"\u01fa":41,"\u0161":7,"\u015f":7,"\u015d":7,"\u015b":7,"\u0153":7,"\u0151":7,"\u0150":7,"\u014f":7,"\u014e":7,"\u014d":7,"\u014c":7,"\u0134":26,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010b":7,"\u0109":7,"\u0107":7,"\u0104":41,"\u0102":41,"\u0100":41,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c5":41,"\u00c4":41,"\u00c3":41,"\u00c2":41,"\u00c1":41,"\u00c0":41,"s":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"Q":7,"O":7,"J":26,"A":41}},"\u201a":{"d":"31,-40v31,-4,21,37,10,51v-6,11,-14,22,-21,30r-10,-7v6,-9,15,-17,15,-29v-2,-11,-15,-10,-14,-24v0,-18,4,-19,20,-21","w":64,"k":{"\uf730":7,"\u201d":26,"\u201c":26,"\u2019":26,"\u2018":26,"\u1ef3":11,"\u1ef2":30,"\u1e85":11,"\u1e84":19,"\u1e83":11,"\u1e82":19,"\u1e81":11,"\u1e80":19,"\u0219":7,"\u0218":4,"\u01ff":7,"\u01fe":11,"\u0178":30,"\u0177":11,"\u0176":30,"\u0175":11,"\u0174":19,"\u0172":7,"\u0170":7,"\u016e":7,"\u016c":7,"\u016a":7,"\u0168":7,"\u0166":19,"\u0164":19,"\u0162":19,"\u0161":7,"\u0160":4,"\u015f":7,"\u015e":4,"\u015d":7,"\u015c":4,"\u015b":7,"\u015a":4,"\u0153":7,"\u0152":11,"\u0151":7,"\u0150":11,"\u014f":7,"\u014e":11,"\u014d":7,"\u014c":11,"\u0122":11,"\u0120":11,"\u011e":11,"\u011c":11,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010c":11,"\u010b":7,"\u010a":11,"\u0109":7,"\u0108":11,"\u0107":7,"\u0106":11,"\u00ff":11,"\u00fd":11,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00dd":30,"\u00dc":7,"\u00db":7,"\u00da":7,"\u00d9":7,"\u00d8":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":11,"y":11,"w":11,"v":11,"s":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"Y":30,"W":19,"V":19,"U":7,"T":19,"S":4,"Q":11,"O":11,"G":11,"C":11,"9":4,"8":11,"7":7,"6":7,"4":22,"1":23,"0":15,"'":26,"\"":26}},"\u201c":{"d":"95,-195v-47,-6,0,-68,12,-81r9,7v-6,9,-14,17,-14,29v11,10,26,49,-7,45xm33,-195v-46,0,-1,-69,11,-81r10,7v-6,9,-14,18,-15,29v2,11,15,10,14,24v0,17,-4,21,-20,21","w":126,"k":{"\uf730":7,"\u0219":7,"\u01ff":7,"\u01fe":7,"\u01fa":41,"\u0161":7,"\u015f":7,"\u015d":7,"\u015b":7,"\u0153":7,"\u0151":7,"\u0150":7,"\u014f":7,"\u014e":7,"\u014d":7,"\u014c":7,"\u0134":26,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010b":7,"\u0109":7,"\u0107":7,"\u0104":41,"\u0102":41,"\u0100":41,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c5":41,"\u00c4":41,"\u00c3":41,"\u00c2":41,"\u00c1":41,"\u00c0":41,"s":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"Q":7,"O":7,"J":26,"A":41}},"\u201d":{"d":"37,-266v39,3,12,52,0,67r-11,14r-10,-7v11,-14,21,-32,3,-44v-5,-14,-3,-32,18,-30xm99,-266v41,0,12,52,0,67r-11,14r-10,-7v6,-9,15,-17,15,-29v-2,-10,-15,-10,-14,-25v1,-16,4,-20,20,-20","w":126,"k":{"\uf730":7,"\u0219":7,"\u01ff":7,"\u01fe":7,"\u01fa":41,"\u0161":7,"\u015f":7,"\u015d":7,"\u015b":7,"\u0153":7,"\u0151":7,"\u0150":7,"\u014f":7,"\u014e":7,"\u014d":7,"\u014c":7,"\u0134":26,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010b":7,"\u0109":7,"\u0107":7,"\u0104":41,"\u0102":41,"\u0100":41,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00d8":7,"\u00d5":7,"\u00d4":7,"\u00d3":7,"\u00d2":7,"\u00c5":41,"\u00c4":41,"\u00c3":41,"\u00c2":41,"\u00c1":41,"\u00c0":41,"s":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"Q":7,"O":7,"J":26,"A":41}},"\u201e":{"d":"31,-40v31,-4,21,37,10,51v-6,11,-14,22,-21,30r-10,-7v6,-9,15,-17,15,-29v-2,-11,-15,-10,-14,-24v0,-18,4,-19,20,-21xm94,-40v39,0,12,53,-1,67v-7,7,-6,7,-11,14r-9,-7v5,-9,13,-18,14,-29v-3,-10,-14,-11,-14,-24v0,-19,4,-21,21,-21","w":126,"k":{"\uf730":7,"\u201d":26,"\u201c":26,"\u2019":26,"\u2018":26,"\u1ef3":11,"\u1ef2":30,"\u1e85":11,"\u1e84":19,"\u1e83":11,"\u1e82":19,"\u1e81":11,"\u1e80":19,"\u0219":7,"\u0218":4,"\u01ff":7,"\u01fe":11,"\u0178":30,"\u0177":11,"\u0176":30,"\u0175":11,"\u0174":19,"\u0172":7,"\u0170":7,"\u016e":7,"\u016c":7,"\u016a":7,"\u0168":7,"\u0166":19,"\u0164":19,"\u0162":19,"\u0161":7,"\u0160":4,"\u015f":7,"\u015e":4,"\u015d":7,"\u015c":4,"\u015b":7,"\u015a":4,"\u0153":7,"\u0152":11,"\u0151":7,"\u0150":11,"\u014f":7,"\u014e":11,"\u014d":7,"\u014c":11,"\u0122":11,"\u0120":11,"\u011e":11,"\u011c":11,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010c":11,"\u010b":7,"\u010a":11,"\u0109":7,"\u0108":11,"\u0107":7,"\u0106":11,"\u00ff":11,"\u00fd":11,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00dd":30,"\u00dc":7,"\u00db":7,"\u00da":7,"\u00d9":7,"\u00d8":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":11,"y":11,"w":11,"v":11,"s":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"Y":30,"W":19,"V":19,"U":7,"T":19,"S":4,"Q":11,"O":11,"G":11,"C":11,"9":4,"8":11,"7":7,"6":7,"4":22,"1":23,"0":15,"'":26,"\"":26}},"\u2020":{"d":"77,-201r43,-1r0,19r-43,-1r-5,152r-9,0r-5,-152r-43,1r0,-19r43,1r-2,-60r23,0","w":135},"\u2021":{"d":"77,-201r43,-1r0,19r-43,-1v-2,36,-2,71,0,107r43,-1r0,19r-43,-1r2,60r-22,0r2,-60r-43,1r0,-19r43,1v2,-36,2,-71,0,-107r-43,1r0,-19r43,1r-2,-60r22,0","w":136},"\u2022":{"d":"67,-183v34,0,56,21,56,55v0,34,-23,55,-56,55v-33,0,-56,-21,-56,-55v0,-34,22,-55,56,-55","w":133},"\u2026":{"d":"62,-40v17,0,21,4,21,21v0,19,-5,20,-21,20v-17,0,-21,-2,-21,-20v0,-17,3,-21,21,-21xm150,-40v18,0,21,4,21,21v0,19,-4,20,-21,20v-17,0,-21,-2,-21,-20v0,-17,3,-21,21,-21xm238,-40v18,-1,21,4,21,21v0,19,-4,20,-21,20v-17,0,-21,-2,-21,-20v0,-19,3,-20,21,-21","w":299,"k":{"\uf730":7,"\u201d":26,"\u201c":26,"\u2019":26,"\u2018":26,"\u1ef3":11,"\u1ef2":30,"\u1e85":11,"\u1e84":19,"\u1e83":11,"\u1e82":19,"\u1e81":11,"\u1e80":19,"\u0219":7,"\u0218":4,"\u01ff":7,"\u01fe":11,"\u0178":30,"\u0177":11,"\u0176":30,"\u0175":11,"\u0174":19,"\u0172":7,"\u0170":7,"\u016e":7,"\u016c":7,"\u016a":7,"\u0168":7,"\u0166":19,"\u0164":19,"\u0162":19,"\u0161":7,"\u0160":4,"\u015f":7,"\u015e":4,"\u015d":7,"\u015c":4,"\u015b":7,"\u015a":4,"\u0153":7,"\u0152":11,"\u0151":7,"\u0150":11,"\u014f":7,"\u014e":11,"\u014d":7,"\u014c":11,"\u0122":11,"\u0120":11,"\u011e":11,"\u011c":11,"\u0119":7,"\u0117":7,"\u0115":7,"\u0113":7,"\u010d":7,"\u010c":11,"\u010b":7,"\u010a":11,"\u0109":7,"\u0108":11,"\u0107":7,"\u0106":11,"\u00ff":11,"\u00fd":11,"\u00f8":7,"\u00f6":7,"\u00f5":7,"\u00f4":7,"\u00f3":7,"\u00f2":7,"\u00eb":7,"\u00ea":7,"\u00e9":7,"\u00e8":7,"\u00e7":7,"\u00e6":7,"\u00dd":30,"\u00dc":7,"\u00db":7,"\u00da":7,"\u00d9":7,"\u00d8":11,"\u00d5":11,"\u00d4":11,"\u00d3":11,"\u00d2":11,"\u00c7":11,"y":11,"w":11,"v":11,"s":7,"q":7,"o":7,"g":7,"e":7,"d":7,"c":7,"Y":30,"W":19,"V":19,"U":7,"T":19,"S":4,"Q":11,"O":11,"G":11,"C":11,"9":4,"8":11,"7":7,"6":7,"4":22,"1":23,"0":15,"'":26,"\"":26}},"\u2030":{"d":"204,-65v0,-40,5,-66,37,-66v31,0,37,26,37,66v0,41,-5,68,-37,68v-33,0,-37,-27,-37,-68xm241,-20v21,-4,15,-68,5,-86v-19,-8,-18,21,-18,41v0,26,-1,41,13,45xm10,-188v0,-34,3,-65,37,-65v34,0,36,30,37,65v0,41,-5,68,-37,68v-33,0,-37,-27,-37,-68xm47,-142v20,-5,16,-67,6,-86v-20,-9,-19,19,-19,40v0,25,-1,41,13,46xm54,0r-24,0r113,-251r24,0xm116,-65v0,-36,4,-66,37,-66v33,0,37,30,37,66v0,41,-5,68,-37,68v-33,0,-36,-27,-37,-68xm153,-20v20,-4,15,-67,6,-86v-20,-8,-19,21,-19,41v0,26,-1,41,13,45","w":288},"\u2039":{"d":"38,-94r39,54r-19,16r-48,-70r48,-70r19,16","w":84,"k":{"\u1ef2":37,"\u1e84":19,"\u1e82":19,"\u1e80":19,"\u0218":15,"\u017d":19,"\u017b":19,"\u0179":19,"\u0178":37,"\u0176":37,"\u0174":19,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":15,"\u015e":15,"\u015c":15,"\u015a":15,"\u0134":30,"\u00dd":37,"Z":19,"Y":37,"X":22,"W":19,"V":19,"T":30,"S":15,"J":30}},"\u203a":{"d":"75,-94r-48,70r-20,-16r39,-54r-39,-54r20,-16","w":84,"k":{"\u1ef2":37,"\u1e84":19,"\u1e82":19,"\u1e80":19,"\u0218":15,"\u017d":19,"\u017b":19,"\u0179":19,"\u0178":37,"\u0176":37,"\u0174":19,"\u0166":30,"\u0164":30,"\u0162":30,"\u0160":15,"\u015e":15,"\u015c":15,"\u015a":15,"\u0134":30,"\u00dd":37,"Z":19,"Y":37,"X":22,"W":19,"V":19,"T":30,"S":15,"J":30}},"\u2044":{"d":"-26,8r-15,-8r156,-261r15,9","w":92},"\u2074":{"d":"88,-201r11,0r0,17r-11,0r0,43r-17,0r0,-43r-62,0r-5,-9r68,-89r16,4r0,77xm31,-201r40,0r0,-51","w":104},"\u20ac":{"d":"165,-222v-9,31,-32,-7,-54,-7v-28,0,-43,21,-48,63r80,0r-7,25r-74,0r0,30r67,0r-6,25r-60,0v4,36,15,65,48,65v20,0,33,-9,39,-28r18,9v-6,25,-27,43,-59,43v-56,-1,-76,-35,-82,-89r-23,0r6,-25r15,0r0,-30r-21,0r6,-25r17,0v6,-54,27,-87,83,-87v25,0,51,9,55,31","w":171},"\u2117":{"d":"141,-253v78,0,129,49,129,129v0,78,-50,128,-129,128v-78,0,-128,-50,-128,-128v0,-79,51,-129,128,-129xm141,-12v67,0,112,-43,112,-112v0,-69,-43,-112,-112,-112v-68,0,-112,44,-112,112v0,68,44,112,112,112xm190,-149v0,38,-32,49,-70,43r0,59r-17,0r0,-144v42,-6,87,-2,87,42xm120,-122v27,5,53,-1,53,-27v0,-27,-26,-31,-53,-26r0,53","w":282},"\u2122":{"d":"86,-243r-28,0r0,88r-18,0r0,-88r-30,0r0,-18r76,0r0,18xm201,-155r-17,0r0,-70r-24,70r-14,0r-27,-70r0,70r-16,0r0,-106r21,0r29,78r26,-78r22,0r0,106","w":213},"\u2153":{"d":"233,-33v0,-23,-19,-28,-44,-26r0,-15v21,2,40,-2,40,-21v-1,-13,-11,-19,-24,-21v-19,-3,-27,34,-39,10v4,-17,19,-26,39,-26v41,0,55,52,22,65v38,11,26,81,-21,77v-24,-2,-39,-15,-43,-36r12,-3v3,30,58,30,58,-4xm48,8r-15,-8r156,-261r15,9xm10,-238v16,-7,25,-14,38,-25r9,1r0,139r-18,0r0,-111v-6,4,-13,8,-21,11","w":268},"\u2154":{"d":"66,8r-15,-8r156,-261r15,9xm251,-33v0,-22,-19,-28,-44,-26r0,-15v21,2,39,-2,39,-21v0,-14,-10,-20,-23,-21v-17,-2,-19,15,-30,19v-4,0,-10,-3,-9,-9v2,-18,21,-24,39,-26v41,-6,55,52,22,65v37,12,25,81,-21,77v-24,-2,-41,-13,-43,-36r12,-3v3,30,60,30,58,-4xm52,-264v52,-4,52,65,17,84v-14,12,-31,22,-38,41r66,0r0,16r-82,0r-5,-8v7,-47,57,-52,67,-94v0,-12,-10,-22,-23,-22v-22,0,-21,17,-35,21v-4,-1,-8,-3,-8,-8v3,-18,22,-29,41,-30","w":286},"\u215b":{"d":"48,8r-15,-8r156,-261r15,9xm10,-238v16,-7,25,-14,38,-25r9,1r0,139r-18,0r0,-111v-6,4,-13,8,-21,11xm204,-132v36,-5,55,47,25,65v36,16,20,83,-25,77v-44,6,-62,-62,-25,-77v-30,-19,-12,-69,25,-65xm204,-6v16,0,28,-10,27,-26v0,-16,-9,-26,-27,-26v-17,0,-27,11,-27,26v-1,16,11,26,27,26xm204,-74v12,0,23,-9,23,-21v0,-15,-9,-21,-23,-21v-14,0,-23,6,-23,21v1,12,10,21,23,21","w":267},"\u215c":{"d":"66,8r-15,-8r156,-261r15,9xm221,-132v39,-6,55,50,24,65v37,14,21,84,-24,77v-46,6,-61,-64,-22,-77v-34,-15,-15,-70,22,-65xm221,-6v16,0,28,-11,28,-27v0,-16,-11,-26,-28,-26v-17,0,-27,10,-27,26v0,15,12,27,27,27xm221,-73v13,0,24,-8,23,-22v0,-14,-8,-21,-23,-21v-13,0,-22,7,-22,21v0,13,9,22,22,22xm80,-165v0,-23,-20,-27,-44,-25r0,-15v39,12,56,-39,17,-42v-16,-1,-21,14,-31,18v-5,1,-9,-4,-9,-9v8,-35,80,-36,80,10v0,14,-7,25,-18,29v37,12,25,83,-21,78v-24,-3,-40,-15,-44,-36r12,-4v3,30,58,31,58,-4","w":284},"\u215d":{"d":"67,8r-16,-8r157,-261r15,9xm222,-132v39,-6,55,50,24,65v37,14,21,84,-24,77v-45,6,-61,-63,-23,-77v-33,-16,-14,-70,23,-65xm222,-6v16,0,28,-11,28,-27v-1,-16,-10,-26,-28,-26v-17,0,-27,10,-27,26v0,15,12,27,27,27xm222,-73v13,0,24,-8,23,-22v0,-14,-8,-21,-23,-21v-13,0,-22,7,-22,21v0,13,9,22,22,22xm81,-173v0,-33,-36,-41,-53,-21r-14,-4r8,-64v23,0,48,3,69,-1r2,11v-15,8,-37,9,-57,6r-3,31v30,-17,70,4,66,42v9,56,-77,70,-89,24v0,-5,3,-8,8,-8v12,5,14,21,35,19v19,-2,28,-13,28,-35","w":285},"\u215e":{"d":"61,8r-15,-8r156,-261r15,9xm217,-132v40,-5,55,50,23,65v38,14,23,83,-23,77v-45,6,-62,-64,-23,-77v-33,-16,-14,-70,23,-65xm217,-6v15,0,28,-11,27,-27v0,-17,-9,-26,-27,-26v-17,0,-27,10,-27,26v-1,16,12,27,27,27xm217,-73v13,0,23,-9,23,-22v0,-14,-8,-21,-23,-21v-13,0,-23,6,-23,21v1,13,9,22,23,22xm31,-130v5,-47,22,-78,44,-115r-65,0r0,-17r83,0r3,12v-22,34,-40,73,-46,120v-1,6,-3,9,-9,9v-5,0,-10,-4,-10,-9","w":280},"\u2212":{"d":"133,-100r-120,0r0,-24r120,0r0,24","w":146},"\u2264":{"d":"19,-128r40,-128r23,0r-40,128r40,128r-23,0","w":102},"\u2265":{"d":"42,0r-23,0r40,-128r-40,-128r23,0r40,128","w":102},"\uf730":{"d":"15,-96v0,-63,21,-98,84,-98v63,0,84,35,84,98v0,65,-20,99,-84,99v-64,0,-84,-35,-84,-99xm144,-95v0,-44,-7,-72,-45,-72v-37,0,-45,29,-45,72v0,43,8,71,45,71v38,0,45,-27,45,-71","w":198,"k":{"\u2026":8,"\u201e":8,"\u201d":8,"\u201c":8,"\u201a":8,"\u2019":8,"\u2018":8,"\u1ef2":26,"\u1e84":12,"\u1e82":12,"\u1e80":12,"\u0178":26,"\u0176":26,"\u0174":12,"\u00dd":26,"x":8,"Y":26,"W":12,"V":12,".":8,",":8,"'":8,"\"":8}},"\uf731":{"d":"8,-145v22,-10,43,-28,56,-47r30,3r0,189r-38,0r0,-138v-10,8,-22,16,-36,21","w":127},"\uf732":{"d":"81,-192v65,-7,87,78,39,108v-25,17,-58,27,-75,52r104,0r0,32r-131,0v-23,-59,61,-79,89,-116v22,-29,-18,-58,-49,-40v-13,1,-19,34,-34,34v-8,0,-17,-8,-16,-17v4,-35,34,-49,73,-53","w":159},"\uf733":{"d":"116,-18v0,-39,-26,-48,-67,-45r0,-29v34,3,59,-4,59,-37v0,-42,-57,-44,-66,-12v-1,6,-7,12,-14,11v-9,1,-19,-8,-18,-17v6,-29,30,-45,66,-45v73,0,93,94,33,113v29,9,40,27,43,64v6,81,-113,94,-140,32v-4,-7,-6,-15,-7,-22r23,-7v6,22,19,38,45,39v26,1,43,-17,43,-45","w":165},"\uf734":{"d":"156,-32r18,0r0,32r-18,0r0,54r-39,0r0,-54r-104,0r-8,-26r116,-167r35,8r0,153xm44,-32r73,0r0,-107","w":180},"\uf735":{"d":"31,-192v39,3,83,7,120,0r4,20v-23,15,-65,16,-100,13r-6,58v49,-33,119,0,113,69v-5,55,-23,90,-80,89v-36,-1,-65,-12,-68,-44v-1,-18,25,-22,30,-5v4,13,21,21,38,21v32,0,41,-22,41,-61v0,-57,-57,-64,-80,-32r-24,-8","w":175},"\uf736":{"d":"98,-218v-42,4,-45,50,-46,95v7,-20,29,-34,56,-34v42,1,63,31,63,76v1,55,-26,84,-77,84v-63,0,-77,-45,-77,-117v0,-74,12,-133,83,-133v35,0,56,13,64,41v0,10,-8,17,-17,17v-20,-5,-21,-32,-49,-29xm97,-130v-50,-1,-52,103,-3,103v27,0,38,-23,38,-53v-1,-29,-9,-49,-35,-50","w":187},"\uf737":{"d":"33,46v9,-84,41,-147,84,-201r-112,0r0,-35r137,0r8,27v-42,58,-61,127,-74,211v-3,13,-6,19,-22,19v-13,0,-23,-7,-21,-21","w":156,"k":{"\uf730":4,"\u2026":34,"\u201e":34,"\u201a":34,"\u01ff":4,"\u0153":4,"\u0151":4,"\u014f":4,"\u014d":4,"\u0119":4,"\u0117":4,"\u0115":4,"\u0113":4,"\u010d":4,"\u010b":4,"\u0109":4,"\u0107":4,"\u00f8":4,"\u00f6":4,"\u00f5":4,"\u00f4":4,"\u00f3":4,"\u00f2":4,"\u00eb":4,"\u00ea":4,"\u00e9":4,"\u00e8":4,"\u00e7":4,"\u00e6":4,"o":4,"e":4,"c":4,".":34,",":34}},"\uf738":{"d":"156,-180v-1,24,-11,43,-33,49v25,8,41,27,41,60v2,52,-24,74,-74,74v-51,0,-75,-23,-75,-74v0,-32,16,-51,41,-59v-21,-7,-33,-25,-33,-50v0,-46,22,-64,67,-64v43,0,67,18,66,64xm130,-71v0,-30,-10,-47,-40,-47v-29,0,-39,18,-39,47v0,31,13,47,39,47v26,0,40,-16,40,-47xm125,-181v0,-25,-10,-36,-34,-36v-25,0,-33,10,-34,36v0,25,12,38,34,38v23,0,34,-13,34,-38","w":179},"\uf739":{"d":"40,0v18,5,21,30,46,28v43,-3,43,-48,46,-90v-8,19,-29,29,-54,29v-40,0,-62,-30,-62,-72v0,-52,25,-82,75,-83v62,0,75,46,75,109v-1,71,-10,136,-81,136v-36,0,-54,-13,-62,-41v0,-9,9,-16,17,-16xm89,-59v25,0,38,-20,38,-43v0,-29,-7,-56,-36,-56v-27,0,-36,22,-37,51v0,28,11,48,35,48","w":184}}});
;
// ColorBox v1.3.16 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+
// Copyright (c) 2011 Jack Moore - jack@colorpowered.com
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
(function ($, document, window) {
	var
	// ColorBox Default Settings.	
	// See http://colorpowered.com/colorbox for details.
	defaults = {
		transition: "elastic",
		speed: 300,
		width: false,
		initialWidth: "600",
		innerWidth: false,
		maxWidth: false,
		height: false,
		initialHeight: "450",
		innerHeight: false,
		maxHeight: false,
		scalePhotos: true,
		scrolling: true,
		inline: false,
		html: false,
		iframe: false,
		fastIframe: true,
		photo: false,
		href: false,
		title: false,
		rel: false,
		opacity: 0.9,
		preloading: true,
		current: "image {current} of {total}",
		previous: "previous",
		next: "next",
		close: "close",
		open: false,
		returnFocus: true,
		loop: true,
		slideshow: false,
		slideshowAuto: true,
		slideshowSpeed: 2500,
		slideshowStart: "start slideshow",
		slideshowStop: "stop slideshow",
		onOpen: false,
		onLoad: false,
		onComplete: false,
		onCleanup: false,
		onClosed: false,
		overlayClose: true,		
		escKey: true,
		arrowKey: true
	},
	
	// Abstracting the HTML and event identifiers for easy rebranding
	colorbox = 'colorbox',
	prefix = 'cbox',
	
	// Events	
	event_open = prefix + '_open',
	event_load = prefix + '_load',
	event_complete = prefix + '_complete',
	event_cleanup = prefix + '_cleanup',
	event_closed = prefix + '_closed',
	event_purge = prefix + '_purge',
	
	// Special Handling for IE
	isIE = $.browser.msie && !$.support.opacity, // feature detection alone gave a false positive on at least one phone browser and on some development versions of Chrome.
	isIE6 = isIE && $.browser.version < 7,
	event_ie6 = prefix + '_IE6',

	// Cached jQuery Object Variables
	$overlay,
	$box,
	$wrap,
	$content,
	$topBorder,
	$leftBorder,
	$rightBorder,
	$bottomBorder,
	$related,
	$window,
	$loaded,
	$loadingBay,
	$loadingOverlay,
	$title,
	$current,
	$slideshow,
	$next,
	$prev,
	$close,
	$groupControls,

	// Variables for cached values or use across multiple functions
	settings = {},
	interfaceHeight,
	interfaceWidth,
	loadedHeight,
	loadedWidth,
	element,
	index,
	photo,
	open,
	active,
	closing = false,
	
	publicMethod,
	boxElement = prefix + 'Element';
	
	// ****************
	// HELPER FUNCTIONS
	// ****************

	// jQuery object generator to reduce code size
	function $div(id, cssText) { 
		var div = document.createElement('div');
		div.id = id ? prefix + id : false;
		div.style.cssText = cssText || false;
		return $(div);
	}

	// Convert % values to pixels
	function setSize(size, dimension) {
		dimension = dimension === 'x' ? $window.width() : $window.height();
		return (typeof size === 'string') ? Math.round((/%/.test(size) ? (dimension / 100) * parseInt(size, 10) : parseInt(size, 10))) : size;
	}
	
	// Checks an href to see if it is a photo.
	// There is a force photo option (photo: true) for hrefs that cannot be matched by this regex.
	function isImage(url) {
		return settings.photo || /\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i.test(url);
	}
	
	// Assigns function results to their respective settings.  This allows functions to be used as values.
	function process(settings) {
		for (var i in settings) {
			if ($.isFunction(settings[i]) && i.substring(0, 2) !== 'on') { // checks to make sure the function isn't one of the callbacks, they will be handled at the appropriate time.
			    settings[i] = settings[i].call(element);
			}
		}
		settings.rel = settings.rel || element.rel || 'nofollow';
		settings.href = $.trim(settings.href || $(element).attr('href'));
		settings.title = settings.title || element.title;
	}

	function trigger(event, callback) {
		if (callback) {
			callback.call(element);
		}
		$.event.trigger(event);
	}

	// Slideshow functionality
	function slideshow() {
		var
		timeOut,
		className = prefix + "Slideshow_",
		click = "click." + prefix,
		start,
		stop,
		clear;
		
		if (settings.slideshow && $related[1]) {
			start = function () {
				$slideshow
					.text(settings.slideshowStop)
					.unbind(click)
					.bind(event_complete, function () {
						if (index < $related.length - 1 || settings.loop) {
							timeOut = setTimeout(publicMethod.next, settings.slideshowSpeed);
						}
					})
					.bind(event_load, function () {
						clearTimeout(timeOut);
					})
					.one(click + ' ' + event_cleanup, stop);
				$box.removeClass(className + "off").addClass(className + "on");
				timeOut = setTimeout(publicMethod.next, settings.slideshowSpeed);
			};
			
			stop = function () {
				clearTimeout(timeOut);
				$slideshow
					.text(settings.slideshowStart)
					.unbind([event_complete, event_load, event_cleanup, click].join(' '))
					.one(click, start);
				$box.removeClass(className + "on").addClass(className + "off");
			};
			
			if (settings.slideshowAuto) {
				start();
			} else {
				stop();
			}
		}
	}

	function launch(elem) {
		if (!closing) {
			
			element = elem;
			
			process($.extend(settings, $.data(element, colorbox)));
			
			$related = $(element);
			
			index = 0;
			
			if (settings.rel !== 'nofollow') {
				$related = $('.' + boxElement).filter(function () {
					var relRelated = $.data(this, colorbox).rel || this.rel;
					return (relRelated === settings.rel);
				});
				index = $related.index(element);
				
				// Check direct calls to ColorBox.
				if (index === -1) {
					$related = $related.add(element);
					index = $related.length - 1;
				}
			}
			
			if (!open) {
				open = active = true; // Prevents the page-change action from queuing up if the visitor holds down the left or right keys.
				
				$box.show();
				
				if (settings.returnFocus) {
					try {
						element.blur();
						$(element).one(event_closed, function () {
							try {
								this.focus();
							} catch (e) {
								// do nothing
							}
						});
					} catch (e) {
						// do nothing
					}
				}
				
				// +settings.opacity avoids a problem in IE when using non-zero-prefixed-string-values, like '.5'
				$overlay.css({"opacity": +settings.opacity, "cursor": settings.overlayClose ? "pointer" : "auto"}).show();
				
				// Opens inital empty ColorBox prior to content being loaded.
				settings.w = setSize(settings.initialWidth, 'x');
				settings.h = setSize(settings.initialHeight, 'y');
				publicMethod.position(0);
				
				if (isIE6) {
					$window.bind('resize.' + event_ie6 + ' scroll.' + event_ie6, function () {
						$overlay.css({width: $window.width(), height: $window.height(), top: $window.scrollTop(), left: $window.scrollLeft()});
					}).trigger('resize.' + event_ie6);
				}
				
				trigger(event_open, settings.onOpen);
				
				$groupControls.add($title).hide();
				
				$close.html(settings.close).show();
			}
			
			publicMethod.load(true);
		}
	}

	// ****************
	// PUBLIC FUNCTIONS
	// Usage format: $.fn.colorbox.close();
	// Usage from within an iframe: parent.$.fn.colorbox.close();
	// ****************
	
	publicMethod = $.fn[colorbox] = $[colorbox] = function (options, callback) {
		var $this = this, autoOpen;
		
		if (!$this[0] && $this.selector) { // if a selector was given and it didn't match any elements, go ahead and exit.
			return $this;
		}
		
		options = options || {};
		
		if (callback) {
			options.onComplete = callback;
		}
		
		if (!$this[0] || $this.selector === undefined) { // detects $.colorbox() and $.fn.colorbox()
			$this = $('<a/>');
			options.open = true; // assume an immediate open
		}
		
		$this.each(function () {
			$.data(this, colorbox, $.extend({}, $.data(this, colorbox) || defaults, options));
			$(this).addClass(boxElement);
		});
		
		autoOpen = options.open;
		
		if ($.isFunction(autoOpen)) {
			autoOpen = autoOpen.call($this);
		}
		
		if (autoOpen) {
			launch($this[0]);
		}
		
		return $this;
	};

	// Initialize ColorBox: store common calculations, preload the interface graphics, append the html.
	// This preps colorbox for a speedy open when clicked, and lightens the burdon on the browser by only
	// having to run once, instead of each time colorbox is opened.
	publicMethod.init = function () {
		// Create & Append jQuery Objects
		$window = $(window);
		$box = $div().attr({id: colorbox, 'class': isIE ? prefix + (isIE6 ? 'IE6' : 'IE') : ''});
		$overlay = $div("Overlay", isIE6 ? 'position:absolute' : '').hide();
		
		$wrap = $div("Wrapper");
		$content = $div("Content").append(
			$loaded = $div("LoadedContent", 'width:0; height:0; overflow:hidden'),
			$loadingOverlay = $div("LoadingOverlay").add($div("LoadingGraphic")),
			$title = $div("Title"),
			$current = $div("Current"),
			$next = $div("Next"),
			$prev = $div("Previous"),
			$slideshow = $div("Slideshow").bind(event_open, slideshow),
			$close = $div("Close")
		);
		$wrap.append( // The 3x3 Grid that makes up ColorBox
			$div().append(
				$div("TopLeft"),
				$topBorder = $div("TopCenter"),
				$div("TopRight")
			),
			$div(false, 'clear:left').append(
				$leftBorder = $div("MiddleLeft"),
				$content,
				$rightBorder = $div("MiddleRight")
			),
			$div(false, 'clear:left').append(
				$div("BottomLeft"),
				$bottomBorder = $div("BottomCenter"),
				$div("BottomRight")
			)
		).children().children().css({'float': 'left'});
		
		$loadingBay = $div(false, 'position:absolute; width:9999px; visibility:hidden; display:none');
		
		$('body').prepend($overlay, $box.append($wrap, $loadingBay));
		
		$content.children()
		.hover(function () {
			$(this).addClass('hover');
		}, function () {
			$(this).removeClass('hover');
		}).addClass('hover');
		
		// Cache values needed for size calculations
		interfaceHeight = $topBorder.height() + $bottomBorder.height() + $content.outerHeight(true) - $content.height();//Subtraction needed for IE6
		interfaceWidth = $leftBorder.width() + $rightBorder.width() + $content.outerWidth(true) - $content.width();
		loadedHeight = $loaded.outerHeight(true);
		loadedWidth = $loaded.outerWidth(true);
		
		// Setting padding to remove the need to do size conversions during the animation step.
		$box.css({"padding-bottom": interfaceHeight, "padding-right": interfaceWidth}).hide();
		
                // Setup button events.
                $next.click(function () {
                        publicMethod.next();
                });
                $prev.click(function () {
                        publicMethod.prev();
                });
                $close.click(function () {
                        publicMethod.close();
                });
		
		$groupControls = $next.add($prev).add($current).add($slideshow);
		
		// Adding the 'hover' class allowed the browser to load the hover-state
		// background graphics.  The class can now can be removed.
		$content.children().removeClass('hover');
		
		$('.' + boxElement).live('click', function (e) {
			// checks to see if it was a non-left mouse-click and for clicks modified with ctrl, shift, or alt.
			if (!((e.button !== 0 && typeof e.button !== 'undefined') || e.ctrlKey || e.shiftKey || e.altKey)) {
				e.preventDefault();
				launch(this);
			}
		});
		
		$overlay.click(function () {
			if (settings.overlayClose) {
				publicMethod.close();
			}
		});
		
		// Set Navigation Key Bindings
		$(document).bind("keydown", function (e) {
			if (open && settings.escKey && e.keyCode === 27) {
				e.preventDefault();
				publicMethod.close();
			}
			if (open && settings.arrowKey && !active && $related[1]) {
				if (e.keyCode === 37 && (index || settings.loop)) {
					e.preventDefault();
					$prev.click();
				} else if (e.keyCode === 39 && (index < $related.length - 1 || settings.loop)) {
					e.preventDefault();
					$next.click();
				}
			}
		});
	};
	
	publicMethod.remove = function () {
		$box.add($overlay).remove();
		$('.' + boxElement).die('click').removeData(colorbox).removeClass(boxElement);
	};

	publicMethod.position = function (speed, loadedCallback) {
		var
		animate_speed,
		// keeps the top and left positions within the browser's viewport.
		posTop = Math.max(document.documentElement.clientHeight - settings.h - loadedHeight - interfaceHeight, 0) / 2 + $window.scrollTop(),
		posLeft = Math.max($window.width() - settings.w - loadedWidth - interfaceWidth, 0) / 2 + $window.scrollLeft();
		
		// setting the speed to 0 to reduce the delay between same-sized content.
		animate_speed = ($box.width() === settings.w + loadedWidth && $box.height() === settings.h + loadedHeight) ? 0 : speed;
		
		// this gives the wrapper plenty of breathing room so it's floated contents can move around smoothly,
		// but it has to be shrank down around the size of div#colorbox when it's done.  If not,
		// it can invoke an obscure IE bug when using iframes.
		$wrap[0].style.width = $wrap[0].style.height = "9999px";
		
		function modalDimensions(that) {
			// loading overlay height has to be explicitly set for IE6.
			$topBorder[0].style.width = $bottomBorder[0].style.width = $content[0].style.width = that.style.width;
			$loadingOverlay[0].style.height = $loadingOverlay[1].style.height = $content[0].style.height = $leftBorder[0].style.height = $rightBorder[0].style.height = that.style.height;
		}
		
		$box.dequeue().animate({width: settings.w + loadedWidth, height: settings.h + loadedHeight, top: posTop, left: posLeft}, {
			duration: animate_speed,
			complete: function () {
				modalDimensions(this);
				
				active = false;
				
				// shrink the wrapper down to exactly the size of colorbox to avoid a bug in IE's iframe implementation.
				$wrap[0].style.width = (settings.w + loadedWidth + interfaceWidth) + "px";
				$wrap[0].style.height = (settings.h + loadedHeight + interfaceHeight) + "px";
				
				if (loadedCallback) {
					loadedCallback();
				}
			},
			step: function () {
				modalDimensions(this);
			}
		});
	};

	publicMethod.resize = function (options) {
		if (open) {
			options = options || {};
			
			if (options.width) {
				settings.w = setSize(options.width, 'x') - loadedWidth - interfaceWidth;
			}
			if (options.innerWidth) {
				settings.w = setSize(options.innerWidth, 'x');
			}
			$loaded.css({width: settings.w});
			
			if (options.height) {
				settings.h = setSize(options.height, 'y') - loadedHeight - interfaceHeight;
			}
			if (options.innerHeight) {
				settings.h = setSize(options.innerHeight, 'y');
			}
			if (!options.innerHeight && !options.height) {				
				var $child = $loaded.wrapInner("<div style='overflow:auto'></div>").children(); // temporary wrapper to get an accurate estimate of just how high the total content should be.
				settings.h = $child.height();
				$child.replaceWith($child.children()); // ditch the temporary wrapper div used in height calculation
			}
			$loaded.css({height: settings.h});
			
			publicMethod.position(settings.transition === "none" ? 0 : settings.speed);
		}
	};

	publicMethod.prep = function (object) {
		if (!open) {
			return;
		}
		
		var speed = settings.transition === "none" ? 0 : settings.speed;
		
		$window.unbind('resize.' + prefix);
		$loaded.remove();
		$loaded = $div('LoadedContent').html(object);
		
		function getWidth() {
			settings.w = settings.w || $loaded.width();
			settings.w = settings.mw && settings.mw < settings.w ? settings.mw : settings.w;
			return settings.w;
		}
		function getHeight() {
			settings.h = settings.h || $loaded.height();
			settings.h = settings.mh && settings.mh < settings.h ? settings.mh : settings.h;
			return settings.h;
		}
		
		$loaded.hide()
		.appendTo($loadingBay.show())// content has to be appended to the DOM for accurate size calculations.
		.css({width: getWidth(), overflow: settings.scrolling ? 'auto' : 'hidden'})
		.css({height: getHeight()})// sets the height independently from the width in case the new width influences the value of height.
		.prependTo($content);
		
		$loadingBay.hide();
		
		// floating the IMG removes the bottom line-height and fixed a problem where IE miscalculates the width of the parent element as 100% of the document width.
		//$(photo).css({'float': 'none', marginLeft: 'auto', marginRight: 'auto'});
		
                $(photo).css({'float': 'none'});
                
		// Hides SELECT elements in IE6 because they would otherwise sit on top of the overlay.
		if (isIE6) {
			$('select').not($box.find('select')).filter(function () {
				return this.style.visibility !== 'hidden';
			}).css({'visibility': 'hidden'}).one(event_cleanup, function () {
				this.style.visibility = 'inherit';
			});
		}
		
		function setPosition(s) {
			publicMethod.position(s, function () {
				var prev, prevSrc, next, nextSrc, total = $related.length, iframe, complete;
				
				if (!open) {
					return;
				}
				
				complete = function () {
					$loadingOverlay.hide();
					trigger(event_complete, settings.onComplete);
				};
				
				if (isIE) {
					//This fadeIn helps the bicubic resampling to kick-in.
					if (photo) {
						$loaded.fadeIn(100);
					}
				}
				
				$title.html(settings.title).add($loaded).show();
				
				if (total > 1) { // handle grouping
					if (typeof settings.current === "string") {
						$current.html(settings.current.replace(/\{current\}/, index + 1).replace(/\{total\}/, total)).show();
					}
					
					$next[(settings.loop || index < total - 1) ? "show" : "hide"]().html(settings.next);
					$prev[(settings.loop || index) ? "show" : "hide"]().html(settings.previous);
					
					prev = index ? $related[index - 1] : $related[total - 1];
					next = index < total - 1 ? $related[index + 1] : $related[0];
					
					if (settings.slideshow) {
						$slideshow.show();
					}
					
					// Preloads images within a rel group
					if (settings.preloading) {
						nextSrc = $.data(next, colorbox).href || next.href;
						prevSrc = $.data(prev, colorbox).href || prev.href;
						
						nextSrc = $.isFunction(nextSrc) ? nextSrc.call(next) : nextSrc;
						prevSrc = $.isFunction(prevSrc) ? prevSrc.call(prev) : prevSrc;
						
						if (isImage(nextSrc)) {
							$('<img/>')[0].src = nextSrc;
						}
						
						if (isImage(prevSrc)) {
							$('<img/>')[0].src = prevSrc;
						}
					}
				} else {
					$groupControls.hide();
				}
				
				if (settings.iframe) {
					iframe = $('<iframe frameborder=0/>').addClass(prefix + 'Iframe')[0];
					
					if (settings.fastIframe) {
						complete();
					} else {
						$(iframe).load(complete);
					}
					iframe.name = prefix + (+new Date());
					iframe.src = settings.href;
					
					if (!settings.scrolling) {
						iframe.scrolling = "no";
					}
					
					if (isIE) {
						iframe.allowTransparency = "true";
					}
					
					$(iframe).appendTo($loaded).one(event_purge, function () {
						iframe.src = "//about:blank";
					});
				} else {
					complete();
				}
				
				if (settings.transition === 'fade') {
					$box.fadeTo(speed, 1, function () {
						$box[0].style.filter = "";
					});
				} else {
                                        $box[0].style.filter = "";
				}
				
				$window.bind('resize.' + prefix, function () {
					publicMethod.position(0);
				});
			});
		}
		
		if (settings.transition === 'fade') {
			$box.fadeTo(speed, 0, function () {
				setPosition(0);
			});
		} else {
			setPosition(speed);
		}
	};

	publicMethod.load = function (launched) {
		var href, setResize, prep = publicMethod.prep;
		
		active = true;
		
		photo = false;
		
		element = $related[index];
		
		if (!launched) {
			process($.extend(settings, $.data(element, colorbox)));
		}
		
		trigger(event_purge);
		
		trigger(event_load, settings.onLoad);
		
		settings.h = settings.height ?
				setSize(settings.height, 'y') - loadedHeight - interfaceHeight :
				settings.innerHeight && setSize(settings.innerHeight, 'y');
		
		settings.w = settings.width ?
				setSize(settings.width, 'x') - loadedWidth - interfaceWidth :
				settings.innerWidth && setSize(settings.innerWidth, 'x');
		
		// Sets the minimum dimensions for use in image scaling
		settings.mw = settings.w;
		settings.mh = settings.h;
		
		// Re-evaluate the minimum width and height based on maxWidth and maxHeight values.
		// If the width or height exceed the maxWidth or maxHeight, use the maximum values instead.
		if (settings.maxWidth) {
			settings.mw = setSize(settings.maxWidth, 'x') - loadedWidth - interfaceWidth;
			settings.mw = settings.w && settings.w < settings.mw ? settings.w : settings.mw;
		}
		if (settings.maxHeight) {
			settings.mh = setSize(settings.maxHeight, 'y') - loadedHeight - interfaceHeight;
			settings.mh = settings.h && settings.h < settings.mh ? settings.h : settings.mh;
		}
		
		href = settings.href;
		
		$loadingOverlay.show();

		if (settings.inline) {
			// Inserts an empty placeholder where inline content is being pulled from.
			// An event is bound to put inline content back when ColorBox closes or loads new content.
			$div().hide().insertBefore($(href)[0]).one(event_purge, function () {
				$(this).replaceWith($loaded.children());
			});
			prep($(href));
		} else if (settings.iframe) {
			// IFrame element won't be added to the DOM until it is ready to be displayed,
			// to avoid problems with DOM-ready JS that might be trying to run in that iframe.
			prep(" ");
		} else if (settings.html) {
			prep(settings.html);
		} else if (isImage(href)) {
			$(photo = new Image())
			.addClass(prefix + 'Photo')
			.error(function () {
				settings.title = false;
				prep($div('Error').text('This image could not be loaded'));
			})
			.load(function () {
				var percent;
				photo.onload = null; //stops animated gifs from firing the onload repeatedly.
				
				if (settings.scalePhotos) {
					setResize = function () {
						photo.height -= photo.height * percent;
						photo.width -= photo.width * percent;	
					};
					if (settings.mw && photo.width > settings.mw) {
						percent = (photo.width - settings.mw) / photo.width;
						setResize();
					}
					if (settings.mh && photo.height > settings.mh) {
						percent = (photo.height - settings.mh) / photo.height;
						setResize();
					}
				}
				
				if (settings.h) {
					photo.style.marginTop = Math.max(settings.h - photo.height, 0) / 2 + 'px';
				}
				
				if ($related[1] && (index < $related.length - 1 || settings.loop)) {
					photo.style.cursor = 'pointer';
					photo.onclick = function () {
                                                publicMethod.next();
                                        };
				}
				
				if (isIE) {
					photo.style.msInterpolationMode = 'bicubic';
				}
				
				setTimeout(function () { // A pause because Chrome will sometimes report a 0 by 0 size otherwise.
					prep(photo);
				}, 1);
			});
			
			setTimeout(function () { // A pause because Opera 10.6+ will sometimes not run the onload function otherwise.
				photo.src = href;
			}, 1);
		} else if (href) {
			$loadingBay.load(href, function (data, status, xhr) {
				prep(status === 'error' ? $div('Error').text('Request unsuccessful: ' + xhr.statusText) : $(this).contents());
			});
		}
	};

	// Navigates to the next page/image in a set.
	publicMethod.next = function () {
		if (!active) {
			index = index < $related.length - 1 ? index + 1 : 0;
			publicMethod.load();
		}
	};
	
	publicMethod.prev = function () {
		if (!active) {
			index = index ? index - 1 : $related.length - 1;
			publicMethod.load();
		}
	};

	// Note: to use this within an iframe use the following format: parent.$.fn.colorbox.close();
	publicMethod.close = function () {
		if (open && !closing) {
			
			closing = true;
			
			open = false;
			
			trigger(event_cleanup, settings.onCleanup);
			
			$window.unbind('.' + prefix + ' .' + event_ie6);
			
			$overlay.fadeTo(200, 0);
			
			$box.stop().fadeTo(300, 0, function () {
                                
				$box.add($overlay).css({'opacity': 1, cursor: 'auto'}).hide();
				
				trigger(event_purge);
				
				$loaded.remove();
				
				setTimeout(function () {
					closing = false;
					trigger(event_closed, settings.onClosed);
				}, 1);
			});
		}
	};

	// A method for fetching the current element ColorBox is referencing.
	// returns a jQuery object.
	publicMethod.element = function () {
		return $(element);
	};

	publicMethod.settings = defaults;

	// Initializes ColorBox when the DOM has loaded
	$(publicMethod.init);

}(jQuery, document, this));;
/**
 * jQuery.timers - Timer abstractions for jQuery
 * Written by Blair Mitchelmore (blair DOT mitchelmore AT gmail DOT com)
 * Licensed under the WTFPL (http://sam.zoy.org/wtfpl/).
 * Date: 2009/02/08
 *
 * @author Blair Mitchelmore
 * @version 1.1.2
 *
 **/
;(function($) {

    jQuery.fn.extend({
        everyTime: function(interval, label, fn, times, belay) {
            return this.each(function() {
                jQuery.timer.add(this, interval, label, fn, times, belay);
            });
        },
        oneTime: function(interval, label, fn) {
            return this.each(function() {
                jQuery.timer.add(this, interval, label, fn, 1);
            });
        },
        stopTime: function(label, fn) {
            return this.each(function() {
                jQuery.timer.remove(this, label, fn);
            });
        }
    });

    jQuery.event.special

    jQuery.extend({
        timer: {
            global: [],
            guid: 1,
            dataKey: "jQuery.timer",
            regex: /^([0-9]+(?:\.[0-9]*)?)\s*(.*s)?$/,
            powers: {
                // Yeah this is major overkill...
                'ms': 1,
                'cs': 10,
                'ds': 100,
                's': 1000,
                'das': 10000,
                'hs': 100000,
                'ks': 1000000
            },
            timeParse: function(value) {
                if (value == undefined || value == null)
                    return null;
                var result = this.regex.exec(jQuery.trim(value.toString()));
                if (result[2]) {
                    var num = parseFloat(result[1]);
                    var mult = this.powers[result[2]] || 1;
                    return num * mult;
                } else {
                    return value;
                }
            },
            add: function(element, interval, label, fn, times, belay) {
                var counter = 0;

                if (jQuery.isFunction(label)) {
                    if (!times)
                        times = fn;
                    fn = label;
                    label = interval;
                }

                interval = jQuery.timer.timeParse(interval);

                if (typeof interval != 'number' || isNaN(interval) || interval <= 0)
                    return;

                if (times && times.constructor != Number) {
                    belay = !!times;
                    times = 0;
                }

                times = times || 0;
                belay = belay || false;

                var timers = jQuery.data(element, this.dataKey) || jQuery.data(element, this.dataKey, {});

                if (!timers[label])
                    timers[label] = {};

                fn.timerID = fn.timerID || this.guid++;

                var handler = function() {
                    if (belay && this.inProgress)
                        return;
                    this.inProgress = true;
                    if ((++counter > times && times !== 0) || fn.call(element, counter) === false)
                        jQuery.timer.remove(element, label, fn);
                    this.inProgress = false;
                };

                handler.timerID = fn.timerID;

                if (!timers[label][fn.timerID])
                    timers[label][fn.timerID] = window.setInterval(handler,interval);

                this.global.push( element );

            },
            remove: function(element, label, fn) {
                var timers = jQuery.data(element, this.dataKey), ret;

                if ( timers ) {

                    if (!label) {
                        for ( label in timers )
                            this.remove(element, label, fn);
                    } else if ( timers[label] ) {
                        if ( fn ) {
                            if ( fn.timerID ) {
                                window.clearInterval(timers[label][fn.timerID]);
                                delete timers[label][fn.timerID];
                            }
                        } else {
                            for ( var fn in timers[label] ) {
                                window.clearInterval(timers[label][fn]);
                                delete timers[label][fn];
                            }
                        }

                        for ( ret in timers[label] ) break;
                        if ( !ret ) {
                            ret = null;
                            delete timers[label];
                        }
                    }

                    for ( ret in timers ) break;
                    if ( !ret )
                        jQuery.removeData(element, this.dataKey);
                }
            }
        }

    });


    jQuery(window).bind("unload", function() {
        jQuery.each(jQuery.timer.global, function(index, item) {
            jQuery.timer.remove(item);
        });
    });
})(jQuery);
;
;(function($){$.effects=$.effects||{};$.extend($.effects,{version:"1.6rc5",save:function(element,set){for(var i=0;i<set.length;i++){if(set[i]!==null)element.data("ec.storage."+set[i],element[0].style[set[i]]);}},restore:function(element,set){for(var i=0;i<set.length;i++){if(set[i]!==null)element.css(set[i],element.data("ec.storage."+set[i]));}},setMode:function(el,mode){if(mode=='toggle')mode=el.is(':hidden')?'show':'hide';return mode;},getBaseline:function(origin,original){var y,x;switch(origin[0]){case'top':y=0;break;case'middle':y=0.5;break;case'bottom':y=1;break;default:y=origin[0]/original.height;};switch(origin[1]){case'left':x=0;break;case'center':x=0.5;break;case'right':x=1;break;default:x=origin[1]/original.width;};return{x:x,y:y};},createWrapper:function(element){if(element.parent().is('.ui-effects-wrapper'))
return element.parent();var props={width:element.outerWidth(true),height:element.outerHeight(true),'float':element.css('float')};element.wrap('<div class="ui-effects-wrapper" style="font-size:100%;background:transparent;border:none;margin:0;padding:0"></div>');var wrapper=element.parent();if(element.css('position')=='static'){wrapper.css({position:'relative'});element.css({position:'relative'});}else{var top=element.css('top');if(isNaN(parseInt(top,10)))top='auto';var left=element.css('left');if(isNaN(parseInt(left,10)))left='auto';wrapper.css({position:element.css('position'),top:top,left:left,zIndex:element.css('z-index')}).show();element.css({position:'relative',top:0,left:0});}
wrapper.css(props);return wrapper;},removeWrapper:function(element){if(element.parent().is('.ui-effects-wrapper'))
return element.parent().replaceWith(element);return element;},setTransition:function(element,list,factor,value){value=value||{};$.each(list,function(i,x){unit=element.cssUnit(x);if(unit[0]>0)value[x]=unit[0]*factor+unit[1];});return value;},animateClass:function(value,duration,easing,callback){var cb=(typeof easing=="function"?easing:(callback?callback:null));var ea=(typeof easing=="string"?easing:null);return this.each(function(){var offset={};var that=$(this);var oldStyleAttr=that.attr("style")||'';if(typeof oldStyleAttr=='object')oldStyleAttr=oldStyleAttr["cssText"];if(value.toggle){that.hasClass(value.toggle)?value.remove=value.toggle:value.add=value.toggle;}
var oldStyle=$.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(value.add)that.addClass(value.add);if(value.remove)that.removeClass(value.remove);var newStyle=$.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(value.add)that.removeClass(value.add);if(value.remove)that.addClass(value.remove);for(var n in newStyle){if(typeof newStyle[n]!="function"&&newStyle[n]&&n.indexOf("Moz")==-1&&n.indexOf("length")==-1&&newStyle[n]!=oldStyle[n]&&(n.match(/color/i)||(!n.match(/color/i)&&!isNaN(parseInt(newStyle[n],10))))&&(oldStyle.position!="static"||(oldStyle.position=="static"&&!n.match(/left|top|bottom|right/))))offset[n]=newStyle[n];}
that.animate(offset,duration,ea,function(){if(typeof $(this).attr("style")=='object'){$(this).attr("style")["cssText"]="";$(this).attr("style")["cssText"]=oldStyleAttr;}else $(this).attr("style",oldStyleAttr);if(value.add)$(this).addClass(value.add);if(value.remove)$(this).removeClass(value.remove);if(cb)cb.apply(this,arguments);});});}});$.fn.extend({_show:$.fn.show,_hide:$.fn.hide,__toggle:$.fn.toggle,_addClass:$.fn.addClass,_removeClass:$.fn.removeClass,_toggleClass:$.fn.toggleClass,effect:function(fx,options,speed,callback){return $.effects[fx]?$.effects[fx].call(this,{method:fx,options:options||{},duration:speed,callback:callback}):null;},show:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0])))
return this._show.apply(this,arguments);else{var o=arguments[1]||{};o['mode']='show';return this.effect.apply(this,[arguments[0],o,arguments[2]||o.duration,arguments[3]||o.callback]);}},hide:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0])))
return this._hide.apply(this,arguments);else{var o=arguments[1]||{};o['mode']='hide';return this.effect.apply(this,[arguments[0],o,arguments[2]||o.duration,arguments[3]||o.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 o=arguments[1]||{};o['mode']='toggle';return this.effect.apply(this,[arguments[0],o,arguments[2]||o.duration,arguments[3]||o.callback]);}},addClass:function(classNames,speed,easing,callback){return speed?$.effects.animateClass.apply(this,[{add:classNames},speed,easing,callback]):this._addClass(classNames);},removeClass:function(classNames,speed,easing,callback){return speed?$.effects.animateClass.apply(this,[{remove:classNames},speed,easing,callback]):this._removeClass(classNames);},toggleClass:function(classNames,speed,easing,callback){return speed?$.effects.animateClass.apply(this,[{toggle:classNames},speed,easing,callback]):this._toggleClass(classNames);},morph:function(remove,add,speed,easing,callback){return $.effects.animateClass.apply(this,[{add:add,remove:remove},speed,easing,callback]);},switchClass:function(){return this.morph.apply(this,arguments);},cssUnit:function(key){var style=this.css(key),val=[];$.each(['em','px','%','pt'],function(i,unit){if(style.indexOf(unit)>0)
val=[parseFloat(style),unit];});return val;}});$.each(['backgroundColor','borderBottomColor','borderLeftColor','borderRightColor','borderTopColor','color','outlineColor'],function(i,attr){$.fx.step[attr]=function(fx){if(fx.state==0){fx.start=getColor(fx.elem,attr);fx.end=getRGB(fx.end);}
fx.elem.style[attr]="rgb("+[Math.max(Math.min(parseInt((fx.pos*(fx.end[0]-fx.start[0]))+fx.start[0],10),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[1]-fx.start[1]))+fx.start[1],10),255),0),Math.max(Math.min(parseInt((fx.pos*(fx.end[2]-fx.start[2]))+fx.start[2],10),255),0)].join(",")+")";};});function getRGB(color){var result;if(color&&color.constructor==Array&&color.length==3)
return color;if(result=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color))
return[parseInt(result[1],10),parseInt(result[2],10),parseInt(result[3],10)];if(result=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color))
return[parseFloat(result[1])*2.55,parseFloat(result[2])*2.55,parseFloat(result[3])*2.55];if(result=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color))
return[parseInt(result[1],16),parseInt(result[2],16),parseInt(result[3],16)];if(result=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color))
return[parseInt(result[1]+result[1],16),parseInt(result[2]+result[2],16),parseInt(result[3]+result[3],16)];if(result=/rgba\(0, 0, 0, 0\)/.exec(color))
return colors['transparent'];return colors[$.trim(color).toLowerCase()];}
function getColor(elem,attr){var color;do{color=$.curCSS(elem,attr);if(color!=''&&color!='transparent'||$.nodeName(elem,"body"))
break;attr="backgroundColor";}while(elem=elem.parentNode);return getRGB(color);};var colors={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]};$.easing.jswing=$.easing.swing;$.extend($.easing,{def:'easeOutQuad',swing:function(x,t,b,c,d){return $.easing[$.easing.def](x,t,b,c,d);},easeInQuad:function(x,t,b,c,d){return c*(t/=d)*t+b;},easeOutQuad:function(x,t,b,c,d){return-c*(t/=d)*(t-2)+b;},easeInOutQuad:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t+b;return-c/2*((--t)*(t-2)-1)+b;},easeInCubic:function(x,t,b,c,d){return c*(t/=d)*t*t+b;},easeOutCubic:function(x,t,b,c,d){return c*((t=t/d-1)*t*t+1)+b;},easeInOutCubic:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t+b;return c/2*((t-=2)*t*t+2)+b;},easeInQuart:function(x,t,b,c,d){return c*(t/=d)*t*t*t+b;},easeOutQuart:function(x,t,b,c,d){return-c*((t=t/d-1)*t*t*t-1)+b;},easeInOutQuart:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t+b;return-c/2*((t-=2)*t*t*t-2)+b;},easeInQuint:function(x,t,b,c,d){return c*(t/=d)*t*t*t*t+b;},easeOutQuint:function(x,t,b,c,d){return c*((t=t/d-1)*t*t*t*t+1)+b;},easeInOutQuint:function(x,t,b,c,d){if((t/=d/2)<1)return c/2*t*t*t*t*t+b;return c/2*((t-=2)*t*t*t*t+2)+b;},easeInSine:function(x,t,b,c,d){return-c*Math.cos(t/d*(Math.PI/2))+c+b;},easeOutSine:function(x,t,b,c,d){return c*Math.sin(t/d*(Math.PI/2))+b;},easeInOutSine:function(x,t,b,c,d){return-c/2*(Math.cos(Math.PI*t/d)-1)+b;},easeInExpo:function(x,t,b,c,d){return(t==0)?b:c*Math.pow(2,10*(t/d-1))+b;},easeOutExpo:function(x,t,b,c,d){return(t==d)?b+c:c*(-Math.pow(2,-10*t/d)+1)+b;},easeInOutExpo:function(x,t,b,c,d){if(t==0)return b;if(t==d)return b+c;if((t/=d/2)<1)return c/2*Math.pow(2,10*(t-1))+b;return c/2*(-Math.pow(2,-10*--t)+2)+b;},easeInCirc:function(x,t,b,c,d){return-c*(Math.sqrt(1-(t/=d)*t)-1)+b;},easeOutCirc:function(x,t,b,c,d){return c*Math.sqrt(1-(t=t/d-1)*t)+b;},easeInOutCirc:function(x,t,b,c,d){if((t/=d/2)<1)return-c/2*(Math.sqrt(1-t*t)-1)+b;return c/2*(Math.sqrt(1-(t-=2)*t)+1)+b;},easeInElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return-(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;},easeOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d)==1)return b+c;if(!p)p=d*.3;if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);return a*Math.pow(2,-10*t)*Math.sin((t*d-s)*(2*Math.PI)/p)+c+b;},easeInOutElastic:function(x,t,b,c,d){var s=1.70158;var p=0;var a=c;if(t==0)return b;if((t/=d/2)==2)return b+c;if(!p)p=d*(.3*1.5);if(a<Math.abs(c)){a=c;var s=p/4;}
else var s=p/(2*Math.PI)*Math.asin(c/a);if(t<1)return-.5*(a*Math.pow(2,10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p))+b;return a*Math.pow(2,-10*(t-=1))*Math.sin((t*d-s)*(2*Math.PI)/p)*.5+c+b;},easeInBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*(t/=d)*t*((s+1)*t-s)+b;},easeOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;return c*((t=t/d-1)*t*((s+1)*t+s)+1)+b;},easeInOutBack:function(x,t,b,c,d,s){if(s==undefined)s=1.70158;if((t/=d/2)<1)return c/2*(t*t*(((s*=(1.525))+1)*t-s))+b;return c/2*((t-=2)*t*(((s*=(1.525))+1)*t+s)+2)+b;},easeInBounce:function(x,t,b,c,d){return c-$.easing.easeOutBounce(x,d-t,0,c,d)+b;},easeOutBounce:function(x,t,b,c,d){if((t/=d)<(1/2.75)){return c*(7.5625*t*t)+b;}else if(t<(2/2.75)){return c*(7.5625*(t-=(1.5/2.75))*t+.75)+b;}else if(t<(2.5/2.75)){return c*(7.5625*(t-=(2.25/2.75))*t+.9375)+b;}else{return c*(7.5625*(t-=(2.625/2.75))*t+.984375)+b;}},easeInOutBounce:function(x,t,b,c,d){if(t<d/2)return $.easing.easeInBounce(x,t*2,0,c,d)*.5+b;return $.easing.easeOutBounce(x,t*2-d,0,c,d)*.5+c*.5+b;}});})(jQuery);(function($){$.effects.blind=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'hide');var direction=o.options.direction||'vertical';$.effects.save(el,props);el.show();var wrapper=$.effects.createWrapper(el).css({overflow:'hidden'});var ref=(direction=='vertical')?'height':'width';var distance=(direction=='vertical')?wrapper.height():wrapper.width();if(mode=='show')wrapper.css(ref,0);var animation={};animation[ref]=mode=='show'?distance:0;wrapper.animate(animation,o.duration,o.options.easing,function(){if(mode=='hide')el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(el[0],arguments);el.dequeue();});});};})(jQuery);(function($){$.effects.bounce=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'effect');var direction=o.options.direction||'up';var distance=o.options.distance||20;var times=o.options.times||5;var speed=o.duration||250;if(/show|hide/.test(mode))props.push('opacity');$.effects.save(el,props);el.show();$.effects.createWrapper(el);var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var distance=o.options.distance||(ref=='top'?el.outerHeight({margin:true})/3:el.outerWidth({margin:true})/3);if(mode=='show')el.css('opacity',0).css(ref,motion=='pos'?-distance:distance);if(mode=='hide')distance=distance/(times*2);if(mode!='hide')times--;if(mode=='show'){var animation={opacity:1};animation[ref]=(motion=='pos'?'+=':'-=')+distance;el.animate(animation,speed/2,o.options.easing);distance=distance/2;times--;};for(var i=0;i<times;i++){var animation1={},animation2={};animation1[ref]=(motion=='pos'?'-=':'+=')+distance;animation2[ref]=(motion=='pos'?'+=':'-=')+distance;el.animate(animation1,speed/2,o.options.easing).animate(animation2,speed/2,o.options.easing);distance=(mode=='hide')?distance*2:distance/2;};if(mode=='hide'){var animation={opacity:0};animation[ref]=(motion=='pos'?'-=':'+=')+distance;el.animate(animation,speed/2,o.options.easing,function(){el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);});}else{var animation1={},animation2={};animation1[ref]=(motion=='pos'?'-=':'+=')+distance;animation2[ref]=(motion=='pos'?'+=':'-=')+distance;el.animate(animation1,speed/2,o.options.easing).animate(animation2,speed/2,o.options.easing,function(){$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);});};el.queue('fx',function(){el.dequeue();});el.dequeue();});};})(jQuery);(function($){$.effects.clip=function(o){return this.queue(function(){var el=$(this),props=['position','top','left','height','width'];var mode=$.effects.setMode(el,o.options.mode||'hide');var direction=o.options.direction||'vertical';$.effects.save(el,props);el.show();var wrapper=$.effects.createWrapper(el).css({overflow:'hidden'});var animate=el[0].tagName=='IMG'?wrapper:el;var ref={size:(direction=='vertical')?'height':'width',position:(direction=='vertical')?'top':'left'};var distance=(direction=='vertical')?animate.height():animate.width();if(mode=='show'){animate.css(ref.size,0);animate.css(ref.position,distance/2);}
var animation={};animation[ref.size]=mode=='show'?distance:0;animation[ref.position]=mode=='show'?0:distance/2;animate.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(el[0],arguments);el.dequeue();}});});};})(jQuery);(function($){$.effects.drop=function(o){return this.queue(function(){var el=$(this),props=['position','top','left','opacity'];var mode=$.effects.setMode(el,o.options.mode||'hide');var direction=o.options.direction||'left';$.effects.save(el,props);el.show();$.effects.createWrapper(el);var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var distance=o.options.distance||(ref=='top'?el.outerHeight({margin:true})/2:el.outerWidth({margin:true})/2);if(mode=='show')el.css('opacity',0).css(ref,motion=='pos'?-distance:distance);var animation={opacity:mode=='show'?1:0};animation[ref]=(mode=='show'?(motion=='pos'?'+=':'-='):(motion=='pos'?'-=':'+='))+distance;el.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.effects.explode=function(o){return this.queue(function(){var rows=o.options.pieces?Math.round(Math.sqrt(o.options.pieces)):3;var cells=o.options.pieces?Math.round(Math.sqrt(o.options.pieces)):3;o.options.mode=o.options.mode=='toggle'?($(this).is(':visible')?'hide':'show'):o.options.mode;var el=$(this).show().css('visibility','hidden');var offset=el.offset();offset.top-=parseInt(el.css("marginTop"))||0;offset.left-=parseInt(el.css("marginLeft"))||0;var width=el.outerWidth(true);var height=el.outerHeight(true);for(var i=0;i<rows;i++){for(var j=0;j<cells;j++){el.clone().appendTo('body').wrap('<div></div>').css({position:'absolute',visibility:'visible',left:-j*(width/cells),top:-i*(height/rows)}).parent().addClass('ui-effects-explode').css({position:'absolute',overflow:'hidden',width:width/cells,height:height/rows,left:offset.left+j*(width/cells)+(o.options.mode=='show'?(j-Math.floor(cells/2))*(width/cells):0),top:offset.top+i*(height/rows)+(o.options.mode=='show'?(i-Math.floor(rows/2))*(height/rows):0),opacity:o.options.mode=='show'?0:1}).animate({left:offset.left+j*(width/cells)+(o.options.mode=='show'?0:(j-Math.floor(cells/2))*(width/cells)),top:offset.top+i*(height/rows)+(o.options.mode=='show'?0:(i-Math.floor(rows/2))*(height/rows)),opacity:o.options.mode=='show'?1:0},o.duration||500);}}
setTimeout(function(){o.options.mode=='show'?el.css({visibility:'visible'}):el.css({visibility:'visible'}).hide();if(o.callback)o.callback.apply(el[0]);el.dequeue();$('div.ui-effects-explode').remove();},o.duration||500);});};})(jQuery);(function($){$.effects.fold=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'hide');var size=o.options.size||15;var horizFirst=!(!o.options.horizFirst);var duration=o.duration?o.duration/2:$.fx.speeds._default/2;$.effects.save(el,props);el.show();var wrapper=$.effects.createWrapper(el).css({overflow:'hidden'});var widthFirst=((mode=='show')!=horizFirst);var ref=widthFirst?['width','height']:['height','width'];var distance=widthFirst?[wrapper.width(),wrapper.height()]:[wrapper.height(),wrapper.width()];var percent=/([0-9]+)%/.exec(size);if(percent)size=parseInt(percent[1])/100*distance[mode=='hide'?0:1];if(mode=='show')wrapper.css(horizFirst?{height:0,width:size}:{height:size,width:0});var animation1={},animation2={};animation1[ref[0]]=mode=='show'?distance[0]:size;animation2[ref[1]]=mode=='show'?distance[1]:0;wrapper.animate(animation1,duration,o.options.easing).animate(animation2,duration,o.options.easing,function(){if(mode=='hide')el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(el[0],arguments);el.dequeue();});});};})(jQuery);(function($){$.effects.highlight=function(o){return this.queue(function(){var el=$(this),props=['backgroundImage','backgroundColor','opacity'];var mode=$.effects.setMode(el,o.options.mode||'show');var color=o.options.color||"#ffff99";var oldColor=el.css("backgroundColor");$.effects.save(el,props);el.show();el.css({backgroundImage:'none',backgroundColor:color});var animation={backgroundColor:oldColor};if(mode=="hide")animation['opacity']=0;el.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=="hide")el.hide();$.effects.restore(el,props);if(mode=="show"&&$.browser.msie)this.style.removeAttribute('filter');if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.effects.pulsate=function(o){return this.queue(function(){var el=$(this);var mode=$.effects.setMode(el,o.options.mode||'show');var times=o.options.times||5;var duration=o.duration?o.duration/2:$.fx.speeds._default/2;if(mode=='hide')times--;if(el.is(':hidden')){el.css('opacity',0);el.show();el.animate({opacity:1},duration,o.options.easing);times=times-2;}
for(var i=0;i<times;i++){el.animate({opacity:0},duration,o.options.easing).animate({opacity:1},duration,o.options.easing);};if(mode=='hide'){el.animate({opacity:0},duration,o.options.easing,function(){el.hide();if(o.callback)o.callback.apply(this,arguments);});}else{el.animate({opacity:0},duration,o.options.easing).animate({opacity:1},duration,o.options.easing,function(){if(o.callback)o.callback.apply(this,arguments);});};el.queue('fx',function(){el.dequeue();});el.dequeue();});};})(jQuery);(function($){$.effects.puff=function(o){return this.queue(function(){var el=$(this);var options=$.extend(true,{},o.options);var mode=$.effects.setMode(el,o.options.mode||'hide');var percent=parseInt(o.options.percent)||150;options.fade=true;var original={height:el.height(),width:el.width()};var factor=percent/100;el.from=(mode=='hide')?original:{height:original.height*factor,width:original.width*factor};options.from=el.from;options.percent=(mode=='hide')?percent:100;options.mode=mode;el.effect('scale',options,o.duration,o.callback);el.dequeue();});};$.effects.scale=function(o){return this.queue(function(){var el=$(this);var options=$.extend(true,{},o.options);var mode=$.effects.setMode(el,o.options.mode||'effect');var percent=parseInt(o.options.percent)||(parseInt(o.options.percent)==0?0:(mode=='hide'?0:100));var direction=o.options.direction||'both';var origin=o.options.origin;if(mode!='effect'){options.origin=origin||['middle','center'];options.restore=true;}
var original={height:el.height(),width:el.width()};el.from=o.options.from||(mode=='show'?{height:0,width:0}:original);var factor={y:direction!='horizontal'?(percent/100):1,x:direction!='vertical'?(percent/100):1};el.to={height:original.height*factor.y,width:original.width*factor.x};if(o.options.fade){if(mode=='show'){el.from.opacity=0;el.to.opacity=1;};if(mode=='hide'){el.from.opacity=1;el.to.opacity=0;};};options.from=el.from;options.to=el.to;options.mode=mode;el.effect('size',options,o.duration,o.callback);el.dequeue();});};$.effects.size=function(o){return this.queue(function(){var el=$(this),props=['position','top','left','width','height','overflow','opacity'];var props1=['position','top','left','overflow','opacity'];var props2=['width','height','overflow'];var cProps=['fontSize'];var vProps=['borderTopWidth','borderBottomWidth','paddingTop','paddingBottom'];var hProps=['borderLeftWidth','borderRightWidth','paddingLeft','paddingRight'];var mode=$.effects.setMode(el,o.options.mode||'effect');var restore=o.options.restore||false;var scale=o.options.scale||'both';var origin=o.options.origin;var original={height:el.height(),width:el.width()};el.from=o.options.from||original;el.to=o.options.to||original;if(origin){var baseline=$.effects.getBaseline(origin,original);el.from.top=(original.height-el.from.height)*baseline.y;el.from.left=(original.width-el.from.width)*baseline.x;el.to.top=(original.height-el.to.height)*baseline.y;el.to.left=(original.width-el.to.width)*baseline.x;};var factor={from:{y:el.from.height/original.height,x:el.from.width/original.width},to:{y:el.to.height/original.height,x:el.to.width/original.width}};if(scale=='box'||scale=='both'){if(factor.from.y!=factor.to.y){props=props.concat(vProps);el.from=$.effects.setTransition(el,vProps,factor.from.y,el.from);el.to=$.effects.setTransition(el,vProps,factor.to.y,el.to);};if(factor.from.x!=factor.to.x){props=props.concat(hProps);el.from=$.effects.setTransition(el,hProps,factor.from.x,el.from);el.to=$.effects.setTransition(el,hProps,factor.to.x,el.to);};};if(scale=='content'||scale=='both'){if(factor.from.y!=factor.to.y){props=props.concat(cProps);el.from=$.effects.setTransition(el,cProps,factor.from.y,el.from);el.to=$.effects.setTransition(el,cProps,factor.to.y,el.to);};};$.effects.save(el,restore?props:props1);el.show();$.effects.createWrapper(el);el.css('overflow','hidden').css(el.from);if(scale=='content'||scale=='both'){vProps=vProps.concat(['marginTop','marginBottom']).concat(cProps);hProps=hProps.concat(['marginLeft','marginRight']);props2=props.concat(vProps).concat(hProps);el.find("*[width]").each(function(){child=$(this);if(restore)$.effects.save(child,props2);var c_original={height:child.height(),width:child.width()};child.from={height:c_original.height*factor.from.y,width:c_original.width*factor.from.x};child.to={height:c_original.height*factor.to.y,width:c_original.width*factor.to.x};if(factor.from.y!=factor.to.y){child.from=$.effects.setTransition(child,vProps,factor.from.y,child.from);child.to=$.effects.setTransition(child,vProps,factor.to.y,child.to);};if(factor.from.x!=factor.to.x){child.from=$.effects.setTransition(child,hProps,factor.from.x,child.from);child.to=$.effects.setTransition(child,hProps,factor.to.x,child.to);};child.css(child.from);child.animate(child.to,o.duration,o.options.easing,function(){if(restore)$.effects.restore(child,props2);});});};el.animate(el.to,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.effects.restore(el,restore?props:props1);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.effects.shake=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'effect');var direction=o.options.direction||'left';var distance=o.options.distance||20;var times=o.options.times||3;var speed=o.duration||o.options.duration||140;$.effects.save(el,props);el.show();$.effects.createWrapper(el);var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var animation={},animation1={},animation2={};animation[ref]=(motion=='pos'?'-=':'+=')+distance;animation1[ref]=(motion=='pos'?'+=':'-=')+distance*2;animation2[ref]=(motion=='pos'?'-=':'+=')+distance*2;el.animate(animation,speed,o.options.easing);for(var i=1;i<times;i++){el.animate(animation1,speed,o.options.easing).animate(animation2,speed,o.options.easing);};el.animate(animation1,speed,o.options.easing).animate(animation,speed/2,o.options.easing,function(){$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);});el.queue('fx',function(){el.dequeue();});el.dequeue();});};})(jQuery);(function($){$.effects.slide=function(o){return this.queue(function(){var el=$(this),props=['position','top','left'];var mode=$.effects.setMode(el,o.options.mode||'show');var direction=o.options.direction||'left';$.effects.save(el,props);el.show();$.effects.createWrapper(el).css({overflow:'hidden'});var ref=(direction=='up'||direction=='down')?'top':'left';var motion=(direction=='up'||direction=='left')?'pos':'neg';var distance=o.options.distance||(ref=='top'?el.outerHeight({margin:true}):el.outerWidth({margin:true}));if(mode=='show')el.css(ref,motion=='pos'?-distance:distance);var animation={};animation[ref]=(mode=='show'?(motion=='pos'?'+=':'-='):(motion=='pos'?'-=':'+='))+distance;el.animate(animation,{queue:false,duration:o.duration,easing:o.options.easing,complete:function(){if(mode=='hide')el.hide();$.effects.restore(el,props);$.effects.removeWrapper(el);if(o.callback)o.callback.apply(this,arguments);el.dequeue();}});});};})(jQuery);(function($){$.effects.transfer=function(o){return this.queue(function(){var el=$(this);var mode=$.effects.setMode(el,o.options.mode||'effect');var target=$(o.options.to);var position=el.offset();var transfer=$('<div class="ui-effects-transfer"></div>').appendTo(document.body);if(o.options.className)transfer.addClass(o.options.className);transfer.addClass(o.options.className);transfer.css({top:position.top,left:position.left,height:el.outerHeight()-parseInt(transfer.css('borderTopWidth'))-parseInt(transfer.css('borderBottomWidth')),width:el.outerWidth()-parseInt(transfer.css('borderLeftWidth'))-parseInt(transfer.css('borderRightWidth')),position:'absolute'});position=target.offset();animation={top:position.top,left:position.left,height:target.outerHeight()-parseInt(transfer.css('borderTopWidth'))-parseInt(transfer.css('borderBottomWidth')),width:target.outerWidth()-parseInt(transfer.css('borderLeftWidth'))-parseInt(transfer.css('borderRightWidth'))};transfer.animate(animation,o.duration,o.options.easing,function(){transfer.remove();if(o.callback)o.callback.apply(el[0],arguments);el.dequeue();});});};})(jQuery);;
/*!
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.92 (15-AUG-2010)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.2.6 or later
 */
;(function($) {

var ver = '2.92';

// if $.support is not defined (pre jQuery 1.3) add what I need
if ($.support == undefined) {
	$.support = {
		opacity: !($.browser.msie)
	};
}

function debug(s) {
	if ($.fn.cycle.debug)
		log(s);
}		
function log() {
	if (window.console && window.console.log)
		window.console.log('[cycle] ' + Array.prototype.join.call(arguments,' '));
};

// the options arg can be...
//   a number  - indicates an immediate transition should occur to the given slide index
//   a string  - 'pause', 'resume', 'toggle', 'next', 'prev', 'stop', 'destroy' or the name of a transition effect (ie, 'fade', 'zoom', etc)
//   an object - properties to control the slideshow
//
// the arg2 arg can be...
//   the name of an fx (only used in conjunction with a numeric value for 'options')
//   the value true (only used in first arg == 'resume') and indicates
//	 that the resume should occur immediately (not wait for next timeout)

$.fn.cycle = function(options, arg2) {
	var o = { s: this.selector, c: this.context };

	// in 1.3+ we can fix mistakes with the ready state
	if (this.length === 0 && options != 'stop') {
		if (!$.isReady && o.s) {
			log('DOM not ready, queuing slideshow');
			$(function() {
				$(o.s,o.c).cycle(options,arg2);
			});
			return this;
		}
		// is your DOM ready?  http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
		log('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)'));
		return this;
	}

	// iterate the matched nodeset
	return this.each(function() {
		var opts = handleArguments(this, options, arg2);
		if (opts === false)
			return;

		opts.updateActivePagerLink = opts.updateActivePagerLink || $.fn.cycle.updateActivePagerLink;
		
		// stop existing slideshow for this container (if there is one)
		if (this.cycleTimeout)
			clearTimeout(this.cycleTimeout);
		this.cycleTimeout = this.cyclePause = 0;

		var $cont = $(this);
		var $slides = opts.slideExpr ? $(opts.slideExpr, this) : $cont.children();
		var els = $slides.get();
		if (els.length < 2) {
			log('terminating; too few slides: ' + els.length);
			return;
		}

		var opts2 = buildOptions($cont, $slides, els, opts, o);
		if (opts2 === false)
			return;

		var startTime = opts2.continuous ? 10 : getTimeout(els[opts2.currSlide], els[opts2.nextSlide], opts2, !opts2.backwards);

		// if it's an auto slideshow, kick it off
		if (startTime) {
			startTime += (opts2.delay || 0);
			if (startTime < 10)
				startTime = 10;
			debug('first timeout: ' + startTime);
			this.cycleTimeout = setTimeout(function(){go(els,opts2,0,!opts.backwards)}, startTime);
		}
	});
};

// process the args that were passed to the plugin fn
function handleArguments(cont, options, arg2) {
	if (cont.cycleStop == undefined)
		cont.cycleStop = 0;
	if (options === undefined || options === null)
		options = {};
	if (options.constructor == String) {
		switch(options) {
		case 'destroy':
		case 'stop':
			var opts = $(cont).data('cycle.opts');
			if (!opts)
				return false;
			cont.cycleStop++; // callbacks look for change
			if (cont.cycleTimeout)
				clearTimeout(cont.cycleTimeout);
			cont.cycleTimeout = 0;
			$(cont).removeData('cycle.opts');
			if (options == 'destroy')
				destroy(opts);
			return false;
		case 'toggle':
			cont.cyclePause = (cont.cyclePause === 1) ? 0 : 1;
			checkInstantResume(cont.cyclePause, arg2, cont);
			return false;
		case 'pause':
			cont.cyclePause = 1;
			return false;
		case 'resume':
			cont.cyclePause = 0;
			checkInstantResume(false, arg2, cont);
			return false;
		case 'prev':
		case 'next':
			var opts = $(cont).data('cycle.opts');
			if (!opts) {
				log('options not found, "prev/next" ignored');
				return false;
			}
			$.fn.cycle[options](opts);
			return false;
		default:
			options = { fx: options };
		};
		return options;
	}
	else if (options.constructor == Number) {
		// go to the requested slide
		var num = options;
		options = $(cont).data('cycle.opts');
		if (!options) {
			log('options not found, can not advance slide');
			return false;
		}
		if (num < 0 || num >= options.elements.length) {
			log('invalid slide index: ' + num);
			return false;
		}
		options.nextSlide = num;
		if (cont.cycleTimeout) {
			clearTimeout(cont.cycleTimeout);
			cont.cycleTimeout = 0;
		}
		if (typeof arg2 == 'string')
			options.oneTimeFx = arg2;
		go(options.elements, options, 1, num >= options.currSlide);
		return false;
	}
	return options;
	
	function checkInstantResume(isPaused, arg2, cont) {
		if (!isPaused && arg2 === true) { // resume now!
			var options = $(cont).data('cycle.opts');
			if (!options) {
				log('options not found, can not resume');
				return false;
			}
			if (cont.cycleTimeout) {
				clearTimeout(cont.cycleTimeout);
				cont.cycleTimeout = 0;
			}
			go(options.elements, options, 1, !options.backwards);
		}
	}
};

function removeFilter(el, opts) {
	if (!$.support.opacity && opts.cleartype && el.style.filter) {
		try { el.style.removeAttribute('filter'); }
		catch(smother) {} // handle old opera versions
	}
};

// unbind event handlers
function destroy(opts) {
	if (opts.next)
		$(opts.next).unbind(opts.prevNextEvent);
	if (opts.prev)
		$(opts.prev).unbind(opts.prevNextEvent);
	
	if (opts.pager || opts.pagerAnchorBuilder)
		$.each(opts.pagerAnchors || [], function() {
			this.unbind().remove();
		});
	opts.pagerAnchors = null;
	if (opts.destroy) // callback
		opts.destroy(opts);
};

// one-time initialization
function buildOptions($cont, $slides, els, options, o) {
	// support metadata plugin (v1.0 and v2.0)
	var opts = $.extend({}, $.fn.cycle.defaults, options || {}, $.metadata ? $cont.metadata() : $.meta ? $cont.data() : {});
	if (opts.autostop)
		opts.countdown = opts.autostopCount || els.length;

	var cont = $cont[0];
	$cont.data('cycle.opts', opts);
	opts.$cont = $cont;
	opts.stopCount = cont.cycleStop;
	opts.elements = els;
	opts.before = opts.before ? [opts.before] : [];
	opts.after = opts.after ? [opts.after] : [];
	opts.after.unshift(function(){ opts.busy=0; });

	// push some after callbacks
	if (!$.support.opacity && opts.cleartype)
		opts.after.push(function() { removeFilter(this, opts); });
	if (opts.continuous)
		opts.after.push(function() { go(els,opts,0,!opts.backwards); });

	saveOriginalOpts(opts);

	// clearType corrections
	if (!$.support.opacity && opts.cleartype && !opts.cleartypeNoBg)
		clearTypeFix($slides);

	// container requires non-static position so that slides can be position within
	if ($cont.css('position') == 'static')
		$cont.css('position', 'relative');
	if (opts.width)
		$cont.width(opts.width);
	if (opts.height && opts.height != 'auto')
		$cont.height(opts.height);

	if (opts.startingSlide)
		opts.startingSlide = parseInt(opts.startingSlide);
	else if (opts.backwards)
		opts.startingSlide = els.length - 1;

	// if random, mix up the slide array
	if (opts.random) {
		opts.randomMap = [];
		for (var i = 0; i < els.length; i++)
			opts.randomMap.push(i);
		opts.randomMap.sort(function(a,b) {return Math.random() - 0.5;});
		opts.randomIndex = 1;
		opts.startingSlide = opts.randomMap[1];
	}
	else if (opts.startingSlide >= els.length)
		opts.startingSlide = 0; // catch bogus input
	opts.currSlide = opts.startingSlide || 0;
	var first = opts.startingSlide;

	// set position and zIndex on all the slides
	$slides.css({position: 'absolute', top:0, left:0}).hide().each(function(i) {
		var z;
		if (opts.backwards)
			z = first ? i <= first ? els.length + (i-first) : first-i : els.length-i;
		else
			z = first ? i >= first ? els.length - (i-first) : first-i : els.length-i;
		$(this).css('z-index', z)
	});

	// make sure first slide is visible
	$(els[first]).css('opacity',1).show(); // opacity bit needed to handle restart use case
	removeFilter(els[first], opts);

	// stretch slides
	if (opts.fit && opts.width)
		$slides.width(opts.width);
	if (opts.fit && opts.height && opts.height != 'auto')
		$slides.height(opts.height);

	// stretch container
	var reshape = opts.containerResize && !$cont.innerHeight();
	if (reshape) { // do this only if container has no size http://tinyurl.com/da2oa9
		var maxw = 0, maxh = 0;
		for(var j=0; j < els.length; j++) {
			var $e = $(els[j]), e = $e[0], w = $e.outerWidth(), h = $e.outerHeight();
			if (!w) w = e.offsetWidth || e.width || $e.attr('width')
			if (!h) h = e.offsetHeight || e.height || $e.attr('height');
			maxw = w > maxw ? w : maxw;
			maxh = h > maxh ? h : maxh;
		}
		if (maxw > 0 && maxh > 0)
			$cont.css({width:maxw+'px',height:maxh+'px'});
	}

	if (opts.pause)
		$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});

	if (supportMultiTransitions(opts) === false)
		return false;

	// apparently a lot of people use image slideshows without height/width attributes on the images.
	// Cycle 2.50+ requires the sizing info for every slide; this block tries to deal with that.
	var requeue = false;
	options.requeueAttempts = options.requeueAttempts || 0;
	$slides.each(function() {
		// try to get height/width of each slide
		var $el = $(this);
		this.cycleH = (opts.fit && opts.height) ? opts.height : ($el.height() || this.offsetHeight || this.height || $el.attr('height') || 0);
		this.cycleW = (opts.fit && opts.width) ? opts.width : ($el.width() || this.offsetWidth || this.width || $el.attr('width') || 0);

		if ( $el.is('img') ) {
			// sigh..  sniffing, hacking, shrugging...  this crappy hack tries to account for what browsers do when
			// an image is being downloaded and the markup did not include sizing info (height/width attributes);
			// there seems to be some "default" sizes used in this situation
			var loadingIE	= ($.browser.msie  && this.cycleW == 28 && this.cycleH == 30 && !this.complete);
			var loadingFF	= ($.browser.mozilla && this.cycleW == 34 && this.cycleH == 19 && !this.complete);
			var loadingOp	= ($.browser.opera && ((this.cycleW == 42 && this.cycleH == 19) || (this.cycleW == 37 && this.cycleH == 17)) && !this.complete);
			var loadingOther = (this.cycleH == 0 && this.cycleW == 0 && !this.complete);
			// don't requeue for images that are still loading but have a valid size
			if (loadingIE || loadingFF || loadingOp || loadingOther) {
				if (o.s && opts.requeueOnImageNotLoaded && ++options.requeueAttempts < 100) { // track retry count so we don't loop forever
					log(options.requeueAttempts,' - img slide not loaded, requeuing slideshow: ', this.src, this.cycleW, this.cycleH);
					setTimeout(function() {$(o.s,o.c).cycle(options)}, opts.requeueTimeout);
					requeue = true;
					return false; // break each loop
				}
				else {
					log('could not determine size of image: '+this.src, this.cycleW, this.cycleH);
				}
			}
		}
		return true;
	});

	if (requeue)
		return false;

	opts.cssBefore = opts.cssBefore || {};
	opts.animIn = opts.animIn || {};
	opts.animOut = opts.animOut || {};

	$slides.not(':eq('+first+')').css(opts.cssBefore);
	if (opts.cssFirst)
		$($slides[first]).css(opts.cssFirst);

	if (opts.timeout) {
		opts.timeout = parseInt(opts.timeout);
		// ensure that timeout and speed settings are sane
		if (opts.speed.constructor == String)
			opts.speed = $.fx.speeds[opts.speed] || parseInt(opts.speed);
		if (!opts.sync)
			opts.speed = opts.speed / 2;
		
		var buffer = opts.fx == 'shuffle' ? 500 : 250;
		while((opts.timeout - opts.speed) < buffer) // sanitize timeout
			opts.timeout += opts.speed;
	}
	if (opts.easing)
		opts.easeIn = opts.easeOut = opts.easing;
	if (!opts.speedIn)
		opts.speedIn = opts.speed;
	if (!opts.speedOut)
		opts.speedOut = opts.speed;

	opts.slideCount = els.length;
	opts.currSlide = opts.lastSlide = first;
	if (opts.random) {
		if (++opts.randomIndex == els.length)
			opts.randomIndex = 0;
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else if (opts.backwards)
		opts.nextSlide = opts.startingSlide == 0 ? (els.length-1) : opts.startingSlide-1;
	else
		opts.nextSlide = opts.startingSlide >= (els.length-1) ? 0 : opts.startingSlide+1;

	// run transition init fn
	if (!opts.multiFx) {
		var init = $.fn.cycle.transitions[opts.fx];
		if ($.isFunction(init))
			init($cont, $slides, opts);
		else if (opts.fx != 'custom' && !opts.multiFx) {
			log('unknown transition: ' + opts.fx,'; slideshow terminating');
			return false;
		}
	}

	// fire artificial events
	var e0 = $slides[first];
	if (opts.before.length)
		opts.before[0].apply(e0, [e0, e0, opts, true]);
	if (opts.after.length > 1)
		opts.after[1].apply(e0, [e0, e0, opts, true]);

	if (opts.next)
		$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,1)});
	if (opts.prev)
		$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,0)});
	if (opts.pager || opts.pagerAnchorBuilder)
		buildPager(els,opts);

	exposeAddSlide(opts, els);

	return opts;
};

// save off original opts so we can restore after clearing state
function saveOriginalOpts(opts) {
	opts.original = { before: [], after: [] };
	opts.original.cssBefore = $.extend({}, opts.cssBefore);
	opts.original.cssAfter  = $.extend({}, opts.cssAfter);
	opts.original.animIn	= $.extend({}, opts.animIn);
	opts.original.animOut   = $.extend({}, opts.animOut);
	$.each(opts.before, function() { opts.original.before.push(this); });
	$.each(opts.after,  function() { opts.original.after.push(this); });
};

function supportMultiTransitions(opts) {
	var i, tx, txs = $.fn.cycle.transitions;
	// look for multiple effects
	if (opts.fx.indexOf(',') > 0) {
		opts.multiFx = true;
		opts.fxs = opts.fx.replace(/\s*/g,'').split(',');
		// discard any bogus effect names
		for (i=0; i < opts.fxs.length; i++) {
			var fx = opts.fxs[i];
			tx = txs[fx];
			if (!tx || !txs.hasOwnProperty(fx) || !$.isFunction(tx)) {
				log('discarding unknown transition: ',fx);
				opts.fxs.splice(i,1);
				i--;
			}
		}
		// if we have an empty list then we threw everything away!
		if (!opts.fxs.length) {
			log('No valid transitions named; slideshow terminating.');
			return false;
		}
	}
	else if (opts.fx == 'all') {  // auto-gen the list of transitions
		opts.multiFx = true;
		opts.fxs = [];
		for (p in txs) {
			tx = txs[p];
			if (txs.hasOwnProperty(p) && $.isFunction(tx))
				opts.fxs.push(p);
		}
	}
	if (opts.multiFx && opts.randomizeEffects) {
		// munge the fxs array to make effect selection random
		var r1 = Math.floor(Math.random() * 20) + 30;
		for (i = 0; i < r1; i++) {
			var r2 = Math.floor(Math.random() * opts.fxs.length);
			opts.fxs.push(opts.fxs.splice(r2,1)[0]);
		}
		debug('randomized fx sequence: ',opts.fxs);
	}
	return true;
};

// provide a mechanism for adding slides after the slideshow has started
function exposeAddSlide(opts, els) {
	opts.addSlide = function(newSlide, prepend) {
		var $s = $(newSlide), s = $s[0];
		if (!opts.autostopCount)
			opts.countdown++;
		els[prepend?'unshift':'push'](s);
		if (opts.els)
			opts.els[prepend?'unshift':'push'](s); // shuffle needs this
		opts.slideCount = els.length;

		$s.css('position','absolute');
		$s[prepend?'prependTo':'appendTo'](opts.$cont);

		if (prepend) {
			opts.currSlide++;
			opts.nextSlide++;
		}

		if (!$.support.opacity && opts.cleartype && !opts.cleartypeNoBg)
			clearTypeFix($s);

		if (opts.fit && opts.width)
			$s.width(opts.width);
		if (opts.fit && opts.height && opts.height != 'auto')
			$s.height(opts.height);
		s.cycleH = (opts.fit && opts.height) ? opts.height : $s.height();
		s.cycleW = (opts.fit && opts.width) ? opts.width : $s.width();

		$s.css(opts.cssBefore);

		if (opts.pager || opts.pagerAnchorBuilder)
			$.fn.cycle.createPagerAnchor(els.length-1, s, $(opts.pager), els, opts);

		if ($.isFunction(opts.onAddSlide))
			opts.onAddSlide($s);
		else
			$s.hide(); // default behavior
	};
}

// reset internal state; we do this on every pass in order to support multiple effects
$.fn.cycle.resetState = function(opts, fx) {
	fx = fx || opts.fx;
	opts.before = []; opts.after = [];
	opts.cssBefore = $.extend({}, opts.original.cssBefore);
	opts.cssAfter  = $.extend({}, opts.original.cssAfter);
	opts.animIn	= $.extend({}, opts.original.animIn);
	opts.animOut   = $.extend({}, opts.original.animOut);
	opts.fxFn = null;
	$.each(opts.original.before, function() { opts.before.push(this); });
	$.each(opts.original.after,  function() { opts.after.push(this); });

	// re-init
	var init = $.fn.cycle.transitions[fx];
	if ($.isFunction(init))
		init(opts.$cont, $(opts.elements), opts);
};

// this is the main engine fn, it handles the timeouts, callbacks and slide index mgmt
function go(els, opts, manual, fwd) {
	// opts.busy is true if we're in the middle of an animation
	if (manual && opts.busy && opts.manualTrump) {
		// let manual transitions requests trump active ones
		debug('manualTrump in go(), stopping active transition');
		$(els).stop(true,true);
		opts.busy = false;
	}
	// don't begin another timeout-based transition if there is one active
	if (opts.busy) {
		debug('transition active, ignoring new tx request');
		return;
	}

	var p = opts.$cont[0], curr = els[opts.currSlide], next = els[opts.nextSlide];

	// stop cycling if we have an outstanding stop request
	if (p.cycleStop != opts.stopCount || p.cycleTimeout === 0 && !manual)
		return;

	// check to see if we should stop cycling based on autostop options
	if (!manual && !p.cyclePause && !opts.bounce &&
		((opts.autostop && (--opts.countdown <= 0)) ||
		(opts.nowrap && !opts.random && opts.nextSlide < opts.currSlide))) {
		if (opts.end)
			opts.end(opts);
		return;
	}

	// if slideshow is paused, only transition on a manual trigger
	var changed = false;
	if ((manual || !p.cyclePause) && (opts.nextSlide != opts.currSlide)) {
		changed = true;
		var fx = opts.fx;
		// keep trying to get the slide size if we don't have it yet
		curr.cycleH = curr.cycleH || $(curr).height();
		curr.cycleW = curr.cycleW || $(curr).width();
		next.cycleH = next.cycleH || $(next).height();
		next.cycleW = next.cycleW || $(next).width();

		// support multiple transition types
		if (opts.multiFx) {
			if (opts.lastFx == undefined || ++opts.lastFx >= opts.fxs.length)
				opts.lastFx = 0;
			fx = opts.fxs[opts.lastFx];
			opts.currFx = fx;
		}

		// one-time fx overrides apply to:  $('div').cycle(3,'zoom');
		if (opts.oneTimeFx) {
			fx = opts.oneTimeFx;
			opts.oneTimeFx = null;
		}

		$.fn.cycle.resetState(opts, fx);

		// run the before callbacks
		if (opts.before.length)
			$.each(opts.before, function(i,o) {
				if (p.cycleStop != opts.stopCount) return;
				o.apply(next, [curr, next, opts, fwd]);
			});

		// stage the after callacks
		var after = function() {
			$.each(opts.after, function(i,o) {
				if (p.cycleStop != opts.stopCount) return;
				o.apply(next, [curr, next, opts, fwd]);
			});
		};

		debug('tx firing; currSlide: ' + opts.currSlide + '; nextSlide: ' + opts.nextSlide);
		
		// get ready to perform the transition
		opts.busy = 1;
		if (opts.fxFn) // fx function provided?
			opts.fxFn(curr, next, opts, after, fwd, manual && opts.fastOnEvent);
		else if ($.isFunction($.fn.cycle[opts.fx])) // fx plugin ?
			$.fn.cycle[opts.fx](curr, next, opts, after, fwd, manual && opts.fastOnEvent);
		else
			$.fn.cycle.custom(curr, next, opts, after, fwd, manual && opts.fastOnEvent);
	}

	if (changed || opts.nextSlide == opts.currSlide) {
		// calculate the next slide
		opts.lastSlide = opts.currSlide;
		if (opts.random) {
			opts.currSlide = opts.nextSlide;
			if (++opts.randomIndex == els.length)
				opts.randomIndex = 0;
			opts.nextSlide = opts.randomMap[opts.randomIndex];
			if (opts.nextSlide == opts.currSlide)
				opts.nextSlide = (opts.currSlide == opts.slideCount - 1) ? 0 : opts.currSlide + 1;
		}
		else if (opts.backwards) {
			var roll = (opts.nextSlide - 1) < 0;
			if (roll && opts.bounce) {
				opts.backwards = !opts.backwards;
				opts.nextSlide = 1;
				opts.currSlide = 0;
			}
			else {
				opts.nextSlide = roll ? (els.length-1) : opts.nextSlide-1;
				opts.currSlide = roll ? 0 : opts.nextSlide+1;
			}
		}
		else { // sequence
			var roll = (opts.nextSlide + 1) == els.length;
			if (roll && opts.bounce) {
				opts.backwards = !opts.backwards;
				opts.nextSlide = els.length-2;
				opts.currSlide = els.length-1;
			}
			else {
				opts.nextSlide = roll ? 0 : opts.nextSlide+1;
				opts.currSlide = roll ? els.length-1 : opts.nextSlide-1;
			}
		}
	}
	if (changed && opts.pager)
		opts.updateActivePagerLink(opts.pager, opts.currSlide, opts.activePagerClass);
	
	// stage the next transition
	var ms = 0;
	if (opts.timeout && !opts.continuous)
		ms = getTimeout(els[opts.currSlide], els[opts.nextSlide], opts, fwd);
	else if (opts.continuous && p.cyclePause) // continuous shows work off an after callback, not this timer logic
		ms = 10;
	if (ms > 0)
		p.cycleTimeout = setTimeout(function(){ go(els, opts, 0, !opts.backwards) }, ms);
};

// invoked after transition
$.fn.cycle.updateActivePagerLink = function(pager, currSlide, clsName) {
   $(pager).each(function() {
       $(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);
   });
};

// calculate timeout value for current transition
function getTimeout(curr, next, opts, fwd) {
	if (opts.timeoutFn) {
		// call user provided calc fn
		var t = opts.timeoutFn.call(curr,curr,next,opts,fwd);
		while ((t - opts.speed) < 250) // sanitize timeout
			t += opts.speed;
		debug('calculated timeout: ' + t + '; speed: ' + opts.speed);
		if (t !== false)
			return t;
	}
	return opts.timeout;
};

// expose next/prev function, caller must pass in state
$.fn.cycle.next = function(opts) { advance(opts,1); };
$.fn.cycle.prev = function(opts) { advance(opts,0);};

// advance slide forward or back
function advance(opts, moveForward) {
	var val = moveForward ? 1 : -1;
	var els = opts.elements;
	var p = opts.$cont[0], timeout = p.cycleTimeout;
	if (timeout) {
		clearTimeout(timeout);
		p.cycleTimeout = 0;
	}
	if (opts.random && val < 0) {
		// move back to the previously display slide
		opts.randomIndex--;
		if (--opts.randomIndex == -2)
			opts.randomIndex = els.length-2;
		else if (opts.randomIndex == -1)
			opts.randomIndex = els.length-1;
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else if (opts.random) {
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else {
		opts.nextSlide = opts.currSlide + val;
		if (opts.nextSlide < 0) {
			if (opts.nowrap) return false;
			opts.nextSlide = els.length - 1;
		}
		else if (opts.nextSlide >= els.length) {
			if (opts.nowrap) return false;
			opts.nextSlide = 0;
		}
	}

	var cb = opts.onPrevNextEvent || opts.prevNextClick; // prevNextClick is deprecated
	if ($.isFunction(cb))
		cb(val > 0, opts.nextSlide, els[opts.nextSlide]);
	go(els, opts, 1, moveForward);
	return false;
};

function buildPager(els, opts) {
	var $p = $(opts.pager);
	$.each(els, function(i,o) {
		$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);
	});
	opts.updateActivePagerLink(opts.pager, opts.startingSlide, opts.activePagerClass);
};

$.fn.cycle.createPagerAnchor = function(i, el, $p, els, opts) {
	var a;
	if ($.isFunction(opts.pagerAnchorBuilder)) {
		a = opts.pagerAnchorBuilder(i,el);
		debug('pagerAnchorBuilder('+i+', el) returned: ' + a);
	}
	else
		a = '<a href="#">'+(i+1)+'</a>';
		
	if (!a)
		return;
	var $a = $(a);
	// don't reparent if anchor is in the dom
	if ($a.parents('body').length === 0) {
		var arr = [];
		if ($p.length > 1) {
			$p.each(function() {
				var $clone = $a.clone(true);
				$(this).append($clone);
				arr.push($clone[0]);
			});
			$a = $(arr);
		}
		else {
			$a.appendTo($p);
		}
	}

	opts.pagerAnchors =  opts.pagerAnchors || [];
	opts.pagerAnchors.push($a);
	$a.bind(opts.pagerEvent, function(e) {
		e.preventDefault();
		opts.nextSlide = i;
		var p = opts.$cont[0], timeout = p.cycleTimeout;
		if (timeout) {
			clearTimeout(timeout);
			p.cycleTimeout = 0;
		}
		var cb = opts.onPagerEvent || opts.pagerClick; // pagerClick is deprecated
		if ($.isFunction(cb))
			cb(opts.nextSlide, els[opts.nextSlide]);
		go(els,opts,1,opts.currSlide < i); // trigger the trans
//		return false; // <== allow bubble
	});
	
	if ( ! /^click/.test(opts.pagerEvent) && !opts.allowPagerClickBubble)
		$a.bind('click.cycle', function(){return false;}); // suppress click
	
	if (opts.pauseOnPagerHover)
		$a.hover(function() { opts.$cont[0].cyclePause++; }, function() { opts.$cont[0].cyclePause--; } );
};

// helper fn to calculate the number of slides between the current and the next
$.fn.cycle.hopsFromLast = function(opts, fwd) {
	var hops, l = opts.lastSlide, c = opts.currSlide;
	if (fwd)
		hops = c > l ? c - l : opts.slideCount - l;
	else
		hops = c < l ? l - c : l + opts.slideCount - c;
	return hops;
};

// fix clearType problems in ie6 by setting an explicit bg color
// (otherwise text slides look horrible during a fade transition)
function clearTypeFix($slides) {
	debug('applying clearType background-color hack');
	function hex(s) {
		s = parseInt(s).toString(16);
		return s.length < 2 ? '0'+s : s;
	};
	function getBg(e) {
		for ( ; e && e.nodeName.toLowerCase() != 'html'; e = e.parentNode) {
			var v = $.css(e,'background-color');
			if (v.indexOf('rgb') >= 0 ) {
				var rgb = v.match(/\d+/g);
				return '#'+ hex(rgb[0]) + hex(rgb[1]) + hex(rgb[2]);
			}
			if (v && v != 'transparent')
				return v;
		}
		return '#ffffff';
	};
	$slides.each(function() { $(this).css('background-color', getBg(this)); });
};

// reset common props before the next transition
$.fn.cycle.commonReset = function(curr,next,opts,w,h,rev) {
	$(opts.elements).not(curr).hide();
	opts.cssBefore.opacity = 1;
	opts.cssBefore.display = 'block';
	if (w !== false && next.cycleW > 0)
		opts.cssBefore.width = next.cycleW;
	if (h !== false && next.cycleH > 0)
		opts.cssBefore.height = next.cycleH;
	opts.cssAfter = opts.cssAfter || {};
	opts.cssAfter.display = 'none';
	$(curr).css('zIndex',opts.slideCount + (rev === true ? 1 : 0));
	$(next).css('zIndex',opts.slideCount + (rev === true ? 0 : 1));
};

// the actual fn for effecting a transition
$.fn.cycle.custom = function(curr, next, opts, cb, fwd, speedOverride) {
	var $l = $(curr), $n = $(next);
	var speedIn = opts.speedIn, speedOut = opts.speedOut, easeIn = opts.easeIn, easeOut = opts.easeOut;
	$n.css(opts.cssBefore);
	if (speedOverride) {
		if (typeof speedOverride == 'number')
			speedIn = speedOut = speedOverride;
		else
			speedIn = speedOut = 1;
		easeIn = easeOut = null;
	}
	var fn = function() {$n.animate(opts.animIn, speedIn, easeIn, cb)};
	$l.animate(opts.animOut, speedOut, easeOut, function() {
		if (opts.cssAfter) $l.css(opts.cssAfter);
		if (!opts.sync) fn();
	});
	if (opts.sync) fn();
};

// transition definitions - only fade is defined here, transition pack defines the rest
$.fn.cycle.transitions = {
	fade: function($cont, $slides, opts) {
		$slides.not(':eq('+opts.currSlide+')').css('opacity',0);
		opts.before.push(function(curr,next,opts) {
			$.fn.cycle.commonReset(curr,next,opts);
			opts.cssBefore.opacity = 0;
		});
		opts.animIn	   = { opacity: 1 };
		opts.animOut   = { opacity: 0 };
		opts.cssBefore = { top: 0, left: 0 };
	}
};

$.fn.cycle.ver = function() { return ver; };

// override these globally if you like (they are all optional)
$.fn.cycle.defaults = {
	fx:			  'fade', // name of transition effect (or comma separated names, ex: 'fade,scrollUp,shuffle')
	timeout:	   4000,  // milliseconds between slide transitions (0 to disable auto advance)
	timeoutFn:     null,  // callback for determining per-slide timeout value:  function(currSlideElement, nextSlideElement, options, forwardFlag)
	continuous:	   0,	  // true to start next transition immediately after current one completes
	speed:		   1000,  // speed of the transition (any valid fx speed value)
	speedIn:	   null,  // speed of the 'in' transition
	speedOut:	   null,  // speed of the 'out' transition
	next:		   null,  // selector for element to use as event trigger for next slide
	prev:		   null,  // selector for element to use as event trigger for previous slide
//	prevNextClick: null,  // @deprecated; please use onPrevNextEvent instead
	onPrevNextEvent: null,  // callback fn for prev/next events: function(isNext, zeroBasedSlideIndex, slideElement)
	prevNextEvent:'click.cycle',// event which drives the manual transition to the previous or next slide
	pager:		   null,  // selector for element to use as pager container
	//pagerClick   null,  // @deprecated; please use onPagerEvent instead
	onPagerEvent:  null,  // callback fn for pager events: function(zeroBasedSlideIndex, slideElement)
	pagerEvent:	  'click.cycle', // name of event which drives the pager navigation
	allowPagerClickBubble: false, // allows or prevents click event on pager anchors from bubbling
	pagerAnchorBuilder: null, // callback fn for building anchor links:  function(index, DOMelement)
	before:		   null,  // transition callback (scope set to element to be shown):	 function(currSlideElement, nextSlideElement, options, forwardFlag)
	after:		   null,  // transition callback (scope set to element that was shown):  function(currSlideElement, nextSlideElement, options, forwardFlag)
	end:		   null,  // callback invoked when the slideshow terminates (use with autostop or nowrap options): function(options)
	easing:		   null,  // easing method for both in and out transitions
	easeIn:		   null,  // easing for "in" transition
	easeOut:	   null,  // easing for "out" transition
	shuffle:	   null,  // coords for shuffle animation, ex: { top:15, left: 200 }
	animIn:		   null,  // properties that define how the slide animates in
	animOut:	   null,  // properties that define how the slide animates out
	cssBefore:	   null,  // properties that define the initial state of the slide before transitioning in
	cssAfter:	   null,  // properties that defined the state of the slide after transitioning out
	fxFn:		   null,  // function used to control the transition: function(currSlideElement, nextSlideElement, options, afterCalback, forwardFlag)
	height:		  'auto', // container height
	startingSlide: 0,	  // zero-based index of the first slide to be displayed
	sync:		   1,	  // true if in/out transitions should occur simultaneously
	random:		   0,	  // true for random, false for sequence (not applicable to shuffle fx)
	fit:		   0,	  // force slides to fit container
	containerResize: 1,	  // resize container to fit largest slide
	pause:		   0,	  // true to enable "pause on hover"
	pauseOnPagerHover: 0, // true to pause when hovering over pager link
	autostop:	   0,	  // true to end slideshow after X transitions (where X == slide count)
	autostopCount: 0,	  // number of transitions (optionally used with autostop to define X)
	delay:		   0,	  // additional delay (in ms) for first transition (hint: can be negative)
	slideExpr:	   null,  // expression for selecting slides (if something other than all children is required)
	cleartype:	   !$.support.opacity,  // true if clearType corrections should be applied (for IE)
	cleartypeNoBg: false, // set to true to disable extra cleartype fixing (leave false to force background color setting on slides)
	nowrap:		   0,	  // true to prevent slideshow from wrapping
	fastOnEvent:   0,	  // force fast transitions when triggered manually (via pager or prev/next); value == time in ms
	randomizeEffects: 1,  // valid when multiple effects are used; true to make the effect sequence random
	rev:		   0,	  // causes animations to transition in reverse (for effects that support it such as scrollHorz/scrollVert/shuffle)
	manualTrump:   true,  // causes manual transition to stop an active transition instead of being ignored
	requeueOnImageNotLoaded: true, // requeue the slideshow if any image slides are not yet loaded
	requeueTimeout: 250,  // ms delay for requeue
	activePagerClass: 'activeSlide', // class name used for the active pager link
	updateActivePagerLink: null, // callback fn invoked to update the active pager link (adds/removes activePagerClass style)
	backwards:     false  // true to start slideshow at last slide and move backwards through the stack
};

})(jQuery);


/*!
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version:	 2.72
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($) {

//
// These functions define one-time slide initialization for the named
// transitions. To save file size feel free to remove any of these that you
// don't need.
//
$.fn.cycle.transitions.none = function($cont, $slides, opts) {
	opts.fxFn = function(curr,next,opts,after){
		$(next).show();
		$(curr).hide();
		after();
	};
}

// scrollUp/Down/Left/Right
$.fn.cycle.transitions.scrollUp = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var h = $cont.height();
	opts.cssBefore ={ top: h, left: 0 };
	opts.cssFirst = { top: 0 };
	opts.animIn	  = { top: 0 };
	opts.animOut  = { top: -h };
};
$.fn.cycle.transitions.scrollDown = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var h = $cont.height();
	opts.cssFirst = { top: 0 };
	opts.cssBefore= { top: -h, left: 0 };
	opts.animIn	  = { top: 0 };
	opts.animOut  = { top: h };
};
$.fn.cycle.transitions.scrollLeft = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var w = $cont.width();
	opts.cssFirst = { left: 0 };
	opts.cssBefore= { left: w, top: 0 };
	opts.animIn	  = { left: 0 };
	opts.animOut  = { left: 0-w };
};
$.fn.cycle.transitions.scrollRight = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);
	var w = $cont.width();
	opts.cssFirst = { left: 0 };
	opts.cssBefore= { left: -w, top: 0 };
	opts.animIn	  = { left: 0 };
	opts.animOut  = { left: w };
};
$.fn.cycle.transitions.scrollHorz = function($cont, $slides, opts) {
	$cont.css('overflow','hidden').width();
	opts.before.push(function(curr, next, opts, fwd) {
		if (opts.rev)
			fwd = !fwd;
		$.fn.cycle.commonReset(curr,next,opts);
		opts.cssBefore.left = fwd ? (next.cycleW-1) : (1-next.cycleW);
		opts.animOut.left = fwd ? -curr.cycleW : curr.cycleW;
	});
	opts.cssFirst = { left: 0 };
	opts.cssBefore= { top: 0 };
	opts.animIn   = { left: 0 };
	opts.animOut  = { top: 0 };
};
$.fn.cycle.transitions.scrollVert = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push(function(curr, next, opts, fwd) {
		if (opts.rev)
			fwd = !fwd;
		$.fn.cycle.commonReset(curr,next,opts);
		opts.cssBefore.top = fwd ? (1-next.cycleH) : (next.cycleH-1);
		opts.animOut.top = fwd ? curr.cycleH : -curr.cycleH;
	});
	opts.cssFirst = { top: 0 };
	opts.cssBefore= { left: 0 };
	opts.animIn   = { top: 0 };
	opts.animOut  = { left: 0 };
};

// slideX/slideY
$.fn.cycle.transitions.slideX = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$(opts.elements).not(curr).hide();
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.animIn.width = next.cycleW;
	});
	opts.cssBefore = { left: 0, top: 0, width: 0 };
	opts.animIn	 = { width: 'show' };
	opts.animOut = { width: 0 };
};
$.fn.cycle.transitions.slideY = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$(opts.elements).not(curr).hide();
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.animIn.height = next.cycleH;
	});
	opts.cssBefore = { left: 0, top: 0, height: 0 };
	opts.animIn	 = { height: 'show' };
	opts.animOut = { height: 0 };
};

// shuffle
$.fn.cycle.transitions.shuffle = function($cont, $slides, opts) {
	var i, w = $cont.css('overflow', 'visible').width();
	$slides.css({left: 0, top: 0});
	opts.before.push(function(curr,next,opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,true,true);
	});
	// only adjust speed once!
	if (!opts.speedAdjusted) {
		opts.speed = opts.speed / 2; // shuffle has 2 transitions
		opts.speedAdjusted = true;
	}
	opts.random = 0;
	opts.shuffle = opts.shuffle || {left:-w, top:15};
	opts.els = [];
	for (i=0; i < $slides.length; i++)
		opts.els.push($slides[i]);

	for (i=0; i < opts.currSlide; i++)
		opts.els.push(opts.els.shift());

	// custom transition fn (hat tip to Benjamin Sterling for this bit of sweetness!)
	opts.fxFn = function(curr, next, opts, cb, fwd) {
		if (opts.rev)
			fwd = !fwd;
		var $el = fwd ? $(curr) : $(next);
		$(next).css(opts.cssBefore);
		var count = opts.slideCount;
		$el.animate(opts.shuffle, opts.speedIn, opts.easeIn, function() {
			var hops = $.fn.cycle.hopsFromLast(opts, fwd);
			for (var k=0; k < hops; k++)
				fwd ? opts.els.push(opts.els.shift()) : opts.els.unshift(opts.els.pop());
			if (fwd) {
				for (var i=0, len=opts.els.length; i < len; i++)
					$(opts.els[i]).css('z-index', len-i+count);
			}
			else {
				var z = $(curr).css('z-index');
				$el.css('z-index', parseInt(z)+1+count);
			}
			$el.animate({left:0, top:0}, opts.speedOut, opts.easeOut, function() {
				$(fwd ? this : curr).hide();
				if (cb) cb();
			});
		});
	};
	opts.cssBefore = { display: 'block', opacity: 1, top: 0, left: 0 };
};

// turnUp/Down/Left/Right
$.fn.cycle.transitions.turnUp = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.cssBefore.top = next.cycleH;
		opts.animIn.height = next.cycleH;
		opts.animOut.width = next.cycleW;
	});
	opts.cssFirst  = { top: 0 };
	opts.cssBefore = { left: 0, height: 0 };
	opts.animIn	   = { top: 0 };
	opts.animOut   = { height: 0 };
};
$.fn.cycle.transitions.turnDown = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.animIn.height = next.cycleH;
		opts.animOut.top   = curr.cycleH;
	});
	opts.cssFirst  = { top: 0 };
	opts.cssBefore = { left: 0, top: 0, height: 0 };
	opts.animOut   = { height: 0 };
};
$.fn.cycle.transitions.turnLeft = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.cssBefore.left = next.cycleW;
		opts.animIn.width = next.cycleW;
	});
	opts.cssBefore = { top: 0, width: 0  };
	opts.animIn	   = { left: 0 };
	opts.animOut   = { width: 0 };
};
$.fn.cycle.transitions.turnRight = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.animIn.width = next.cycleW;
		opts.animOut.left = curr.cycleW;
	});
	opts.cssBefore = { top: 0, left: 0, width: 0 };
	opts.animIn	   = { left: 0 };
	opts.animOut   = { width: 0 };
};

// zoom
$.fn.cycle.transitions.zoom = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,false,true);
		opts.cssBefore.top = next.cycleH/2;
		opts.cssBefore.left = next.cycleW/2;
		opts.animIn	   = { top: 0, left: 0, width: next.cycleW, height: next.cycleH };
		opts.animOut   = { width: 0, height: 0, top: curr.cycleH/2, left: curr.cycleW/2 };
	});
	opts.cssFirst = { top:0, left: 0 };
	opts.cssBefore = { width: 0, height: 0 };
};

// fadeZoom
$.fn.cycle.transitions.fadeZoom = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,false);
		opts.cssBefore.left = next.cycleW/2;
		opts.cssBefore.top = next.cycleH/2;
		opts.animIn	= { top: 0, left: 0, width: next.cycleW, height: next.cycleH };
	});
	opts.cssBefore = { width: 0, height: 0 };
	opts.animOut  = { opacity: 0 };
};

// blindX
$.fn.cycle.transitions.blindX = function($cont, $slides, opts) {
	var w = $cont.css('overflow','hidden').width();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.animIn.width = next.cycleW;
		opts.animOut.left   = curr.cycleW;
	});
	opts.cssBefore = { left: w, top: 0 };
	opts.animIn = { left: 0 };
	opts.animOut  = { left: w };
};
// blindY
$.fn.cycle.transitions.blindY = function($cont, $slides, opts) {
	var h = $cont.css('overflow','hidden').height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.animIn.height = next.cycleH;
		opts.animOut.top   = curr.cycleH;
	});
	opts.cssBefore = { top: h, left: 0 };
	opts.animIn = { top: 0 };
	opts.animOut  = { top: h };
};
// blindZ
$.fn.cycle.transitions.blindZ = function($cont, $slides, opts) {
	var h = $cont.css('overflow','hidden').height();
	var w = $cont.width();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		opts.animIn.height = next.cycleH;
		opts.animOut.top   = curr.cycleH;
	});
	opts.cssBefore = { top: h, left: w };
	opts.animIn = { top: 0, left: 0 };
	opts.animOut  = { top: h, left: w };
};

// growX - grow horizontally from centered 0 width
$.fn.cycle.transitions.growX = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true);
		opts.cssBefore.left = this.cycleW/2;
		opts.animIn = { left: 0, width: this.cycleW };
		opts.animOut = { left: 0 };
	});
	opts.cssBefore = { width: 0, top: 0 };
};
// growY - grow vertically from centered 0 height
$.fn.cycle.transitions.growY = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false);
		opts.cssBefore.top = this.cycleH/2;
		opts.animIn = { top: 0, height: this.cycleH };
		opts.animOut = { top: 0 };
	});
	opts.cssBefore = { height: 0, left: 0 };
};

// curtainX - squeeze in both edges horizontally
$.fn.cycle.transitions.curtainX = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,false,true,true);
		opts.cssBefore.left = next.cycleW/2;
		opts.animIn = { left: 0, width: this.cycleW };
		opts.animOut = { left: curr.cycleW/2, width: 0 };
	});
	opts.cssBefore = { top: 0, width: 0 };
};
// curtainY - squeeze in both edges vertically
$.fn.cycle.transitions.curtainY = function($cont, $slides, opts) {
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,false,true);
		opts.cssBefore.top = next.cycleH/2;
		opts.animIn = { top: 0, height: next.cycleH };
		opts.animOut = { top: curr.cycleH/2, height: 0 };
	});
	opts.cssBefore = { left: 0, height: 0 };
};

// cover - curr slide covered by next slide
$.fn.cycle.transitions.cover = function($cont, $slides, opts) {
	var d = opts.direction || 'left';
	var w = $cont.css('overflow','hidden').width();
	var h = $cont.height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts);
		if (d == 'right')
			opts.cssBefore.left = -w;
		else if (d == 'up')
			opts.cssBefore.top = h;
		else if (d == 'down')
			opts.cssBefore.top = -h;
		else
			opts.cssBefore.left = w;
	});
	opts.animIn = { left: 0, top: 0};
	opts.animOut = { opacity: 1 };
	opts.cssBefore = { top: 0, left: 0 };
};

// uncover - curr slide moves off next slide
$.fn.cycle.transitions.uncover = function($cont, $slides, opts) {
	var d = opts.direction || 'left';
	var w = $cont.css('overflow','hidden').width();
	var h = $cont.height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,true,true);
		if (d == 'right')
			opts.animOut.left = w;
		else if (d == 'up')
			opts.animOut.top = -h;
		else if (d == 'down')
			opts.animOut.top = h;
		else
			opts.animOut.left = -w;
	});
	opts.animIn = { left: 0, top: 0 };
	opts.animOut = { opacity: 1 };
	opts.cssBefore = { top: 0, left: 0 };
};

// toss - move top slide and fade away
$.fn.cycle.transitions.toss = function($cont, $slides, opts) {
	var w = $cont.css('overflow','visible').width();
	var h = $cont.height();
	opts.before.push(function(curr, next, opts) {
		$.fn.cycle.commonReset(curr,next,opts,true,true,true);
		// provide default toss settings if animOut not provided
		if (!opts.animOut.left && !opts.animOut.top)
			opts.animOut = { left: w*2, top: -h/2, opacity: 0 };
		else
			opts.animOut.opacity = 0;
	});
	opts.cssBefore = { left: 0, top: 0 };
	opts.animIn = { left: 0 };
};

// wipe - clip animation
$.fn.cycle.transitions.wipe = function($cont, $slides, opts) {
	var w = $cont.css('overflow','hidden').width();
	var h = $cont.height();
	opts.cssBefore = opts.cssBefore || {};
	var clip;
	if (opts.clip) {
		if (/l2r/.test(opts.clip))
			clip = 'rect(0px 0px '+h+'px 0px)';
		else if (/r2l/.test(opts.clip))
			clip = 'rect(0px '+w+'px '+h+'px '+w+'px)';
		else if (/t2b/.test(opts.clip))
			clip = 'rect(0px '+w+'px 0px 0px)';
		else if (/b2t/.test(opts.clip))
			clip = 'rect('+h+'px '+w+'px '+h+'px 0px)';
		else if (/zoom/.test(opts.clip)) {
			var top = parseInt(h/2);
			var left = parseInt(w/2);
			clip = 'rect('+top+'px '+left+'px '+top+'px '+left+'px)';
		}
	}

	opts.cssBefore.clip = opts.cssBefore.clip || clip || 'rect(0px 0px 0px 0px)';

	var d = opts.cssBefore.clip.match(/(\d+)/g);
	var t = parseInt(d[0]), r = parseInt(d[1]), b = parseInt(d[2]), l = parseInt(d[3]);

	opts.before.push(function(curr, next, opts) {
		if (curr == next) return;
		var $curr = $(curr), $next = $(next);
		$.fn.cycle.commonReset(curr,next,opts,true,true,false);
		opts.cssAfter.display = 'block';

		var step = 1, count = parseInt((opts.speedIn / 13)) - 1;
		(function f() {
			var tt = t ? t - parseInt(step * (t/count)) : 0;
			var ll = l ? l - parseInt(step * (l/count)) : 0;
			var bb = b < h ? b + parseInt(step * ((h-b)/count || 1)) : h;
			var rr = r < w ? r + parseInt(step * ((w-r)/count || 1)) : w;
			$next.css({ clip: 'rect('+tt+'px '+rr+'px '+bb+'px '+ll+'px)' });
			(step++ <= count) ? setTimeout(f, 13) : $curr.css('display', 'none');
		})();
	});
	opts.cssBefore = { display: 'block', opacity: 1, top: 0, left: 0 };
	opts.animIn	   = { left: 0 };
	opts.animOut   = { left: 0 };
};

})(jQuery);
;
/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - jQuery Easing
 *
 * Open source under the BSD License.
 *
 * Copyright © 2008 George McGinley Smith
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this list of
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list
 * of conditions and the following disclaimer in the documentation and/or other materials
 * provided with the distribution.
 *
 * Neither the name of the author nor the names of contributors may be used to endorse
 * or promote products derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 *
*/

// t: current time, b: begInnIng value, c: change In value, d: duration
jQuery.easing['jswing'] = jQuery.easing['swing'];

jQuery.extend( jQuery.easing,
{
	def: 'easeOutQuad',
	swing: function (x, t, b, c, d) {
		//alert(jQuery.easing.default);
		return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
	},
	easeInQuad: function (x, t, b, c, d) {
		return c*(t/=d)*t + b;
	},
	easeOutQuad: function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	},
	easeInOutQuad: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t + b;
		return -c/2 * ((--t)*(t-2) - 1) + b;
	},
	easeInCubic: function (x, t, b, c, d) {
		return c*(t/=d)*t*t + b;
	},
	easeOutCubic: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t + 1) + b;
	},
	easeInOutCubic: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t + b;
		return c/2*((t-=2)*t*t + 2) + b;
	},
	easeInQuart: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t + b;
	},
	easeOutQuart: function (x, t, b, c, d) {
		return -c * ((t=t/d-1)*t*t*t - 1) + b;
	},
	easeInOutQuart: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
		return -c/2 * ((t-=2)*t*t*t - 2) + b;
	},
	easeInQuint: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t*t + b;
	},
	easeOutQuint: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t*t*t + 1) + b;
	},
	easeInOutQuint: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
		return c/2*((t-=2)*t*t*t*t + 2) + b;
	},
	easeInSine: function (x, t, b, c, d) {
		return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
	},
	easeOutSine: function (x, t, b, c, d) {
		return c * Math.sin(t/d * (Math.PI/2)) + b;
	},
	easeInOutSine: function (x, t, b, c, d) {
		return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
	},
	easeInExpo: function (x, t, b, c, d) {
		return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
	},
	easeOutExpo: function (x, t, b, c, d) {
		return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
	},
	easeInOutExpo: function (x, t, b, c, d) {
		if (t==0) return b;
		if (t==d) return b+c;
		if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
		return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
	},
	easeInCirc: function (x, t, b, c, d) {
		return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
	},
	easeOutCirc: function (x, t, b, c, d) {
		return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
	},
	easeInOutCirc: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
		return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
	},
	easeInElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	},
	easeOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
	},
	easeInOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
	},
	easeInBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*(t/=d)*t*((s+1)*t - s) + b;
	},
	easeOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	},
	easeInOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
	},
	easeInBounce: function (x, t, b, c, d) {
		return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
	},
	easeOutBounce: function (x, t, b, c, d) {
		if ((t/=d) < (1/2.75)) {
			return c*(7.5625*t*t) + b;
		} else if (t < (2/2.75)) {
			return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
		} else if (t < (2.5/2.75)) {
			return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
		} else {
			return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
		}
	},
	easeInOutBounce: function (x, t, b, c, d) {
		if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
		return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
	}
});

/*
 *
 * TERMS OF USE - EASING EQUATIONS
 *
 * Open source under the BSD License.
 *
 * Copyright © 2001 Robert Penner
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this list of
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list
 * of conditions and the following disclaimer in the documentation and/or other materials
 * provided with the distribution.
 *
 * Neither the name of the author nor the names of contributors may be used to endorse
 * or promote products derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */;
/*
 * jQuery Easing Compatibility v1 - http://gsgd.co.uk/sandbox/jquery.easing.php
 *
 * Adds compatibility for applications that use the pre 1.2 easing names
 *
 * Copyright (c) 2007 George Smith
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 */

jQuery.extend( jQuery.easing,
{
	easeIn: function (x, t, b, c, d) {
		return jQuery.easing.easeInQuad(x, t, b, c, d);
	},
	easeOut: function (x, t, b, c, d) {
		return jQuery.easing.easeOutQuad(x, t, b, c, d);
	},
	easeInOut: function (x, t, b, c, d) {
		return jQuery.easing.easeInOutQuad(x, t, b, c, d);
	},
	expoin: function(x, t, b, c, d) {
		return jQuery.easing.easeInExpo(x, t, b, c, d);
	},
	expoout: function(x, t, b, c, d) {
		return jQuery.easing.easeOutExpo(x, t, b, c, d);
	},
	expoinout: function(x, t, b, c, d) {
		return jQuery.easing.easeInOutExpo(x, t, b, c, d);
	},
	bouncein: function(x, t, b, c, d) {
		return jQuery.easing.easeInBounce(x, t, b, c, d);
	},
	bounceout: function(x, t, b, c, d) {
		return jQuery.easing.easeOutBounce(x, t, b, c, d);
	},
	bounceinout: function(x, t, b, c, d) {
		return jQuery.easing.easeInOutBounce(x, t, b, c, d);
	},
	elasin: function(x, t, b, c, d) {
		return jQuery.easing.easeInElastic(x, t, b, c, d);
	},
	elasout: function(x, t, b, c, d) {
		return jQuery.easing.easeOutElastic(x, t, b, c, d);
	},
	elasinout: function(x, t, b, c, d) {
		return jQuery.easing.easeInOutElastic(x, t, b, c, d);
	},
	backin: function(x, t, b, c, d) {
		return jQuery.easing.easeInBack(x, t, b, c, d);
	},
	backout: function(x, t, b, c, d) {
		return jQuery.easing.easeOutBack(x, t, b, c, d);
	},
	backinout: function(x, t, b, c, d) {
		return jQuery.easing.easeInOutBack(x, t, b, c, d);
	}
});;
(function($) {
  $.fn.cycle.transitions.bounceUp = function($cont, $slides, opts) {
      var $el = $($slides[0]);
      var w = $el.width();
      var h = $el.height();
      var startX = 0 - h - 10;

      opts.before.push(function(curr, next, opts, fwd) {
        if (fwd) {
          opts.backwards = false;
        } else {
          opts.backwards = true;
        }
      });

      opts.sync      = 0;
      opts.easeOut   = 'easeIn';
      opts.easeIn    = 'easeOut';
      opts.cssBefore = { top: startX, left: 0, display: 'block' };
      opts.animIn    = { top: 0 };
      opts.animOut   = { top: -h };
      opts.cssAfter  = { display: 'none' };
      opts.speedIn   = 500;
      opts.speedOut  = 500;
      opts.rev       = 0;
  };

  $.fn.cycle.transitions.scrollVertUp = function($cont, $slides, opts) {
          $cont.css('overflow','hidden');
          opts.before.push(function(curr, next, opts, fwd) {
            $.fn.cycle.commonReset(curr,next,opts);

            if (fwd) {
              opts.cssBefore.top = next.cycleH-1;
              opts.backwards = false;
            } else {
              opts.cssBefore.top = 1-next.cycleH;
              opts.backwards = true;
            }
        
            opts.animOut.top = fwd ? -curr.cycleH : curr.cycleH;
          });
          opts.cssFirst   = { top: 0 };
          opts.cssBefore  = { left: 0 };
          opts.animIn     = { top: 0 };
          opts.animOut    = { left: 0 };
  };
})(jQuery);;
/*	SWFObject v2.2 <http://code.google.com/p/swfobject/> 
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/
var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return !a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();;
/*
jQuery Clear-Input plugin
v1.0
Author: Aidan Feldman

USAGE
Add the class .clear-input to any text input element
whose value you want cleared when it gains focus.
The initial value will be replaced when the input
loses focus, and no new text has been entered.

If you prefer to not add classes to your elements,
you can alternatively call clearInput() on any jQuery
input object.
*/
(function( $ ){
  // define the initialValue() function
  $.fn.initialValue = function(value) {
    if (value) {
      return this.attr('initial-value', value);
    } else {
      var valueCheck = this.attr('initial-value');
      
      if (valueCheck) {
        return this.attr('initial-value');
      } else {
        return '';
      }
    }
  };
  
  $.fn.clearInput = function() {
    return this
      .focus(function(){
        if (this.value == $(this).initialValue()) {
          this.value = '';
        }
      })
      .blur(function(){
        if (this.value == '') {
          this.value = $(this).initialValue();
        }
      })
      .each(function(index, elt) {
        $(this).initialValue(this.value);
      });
  };

  // apply plugin to all inputs with class ".clear-input"
  $(function() {
    $('input.clear-input').clearInput();
  });
})( jQuery );;
/**
 * jQuery scripts used to enhance themes UI
 * Author: Zy (zydrunas@tyliai.lt)
 **/
jQuery(document).ready(function($) {
  
  // $("a[rel='galery1']").colorbox({transition:"elastic", maxWidth:'700px', maxHeight: '700px'});
  $("a[rel='galery1']").colorbox({transition:"elastic", maxWidth:'1000px', maxHeight:'80%'});
  
  $("#slider_controls a.btn_c").click(function(){
    var rel_main = $("#front_page #btn_play").attr('rel');
    $("#slider_controls a.btn_c").each(function() {
      $(this).attr('rel', 'off').removeClass('active');
    });
    
    $(this).attr('rel', 'on');
    if (rel_main == 'play') $(this).addClass('active');
    
    return false;
  });

  // autoplay button handling
  $("#front_page #btn_play").click(function(){
    var rel_ = $(this).attr('rel');
    
    $('#sc_media').cycle('toggle');
    $('#sc_info').cycle('toggle');
    
    if (rel_ == 'play') {
      $(this).attr('rel', 'pause').removeClass('active').addClass('pause').removeClass('play');
      $(this).html('<span>Auto Play: OFF</span>');
      $("#slider_controls a.btn_c").each(function() {
        $(this).removeClass('active');
      });
    }
    
    if (rel_ == 'pause') {
      $(this).attr('rel', 'play').addClass('active').removeClass('pause').addClass('play');
      $(this).html('<span>Auto Play: ON</span>');
      $("#slider_controls a.btn_c").each(function() {
        if ($(this).attr('rel') == 'on') $(this).addClass('active');
      });
    }
       
    return false;
  });
  
  // set mollom default input value
  // $("#edit-mollom-captcha").attr('value', 'Security code here*');
  
  // set clearinput
  $("#con-right .block .form-text, #con-right .block .form-textarea, #main_content .node .webform-client-form .form-text, #main_content .node .webform-client-form textarea").clearInput();
});;

