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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Wrapper to address the mod_rewrite url encoding bug
 * (equivalent of drupal_urlencode() in PHP).
 */
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: googleanalytics.js,v 1.9.2.8 2011/02/05 19:53:32 hass Exp $

$(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, '')]);
          setTimeout('document.location = "' + this.href + '"', 100);
        }
      }
      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('--')]);
            setTimeout('document.location = "' + this.href + '"', 100);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
  
            // First, delay the outbound click by a fraction of a second.
            // This delay will hardly be noticeable by the user, but it will provide the
            // browser more time load the tracking code. Without this method, it's possible
            // that a user can click on the outbound link before the tracking code loads,
            // in which case the event will not be recorded.
            // See http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=55527
            setTimeout('document.location = "' + this.href + '"', 100);
          }
        }
      }
    });
  });
});
;// $Id: panels.js,v 1.2 2008/07/16 00:09:04 merlinofchaos Exp $

Drupal.Panels = {};

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

$(Drupal.Panels.autoAttach);
;// $Id: poormanscron.js,v 1.1.2.3 2010/01/17 00:27:52 davereid Exp $
(function ($) {

/**
 * Checks to see if the cron should be automatically run.
 */
Drupal.behaviors.cronCheck = function(context) {
  if (Drupal.settings.cron.runNext || false) {
    $('body:not(.cron-check-processed)', context).addClass('cron-check-processed').each(function() {
      // Only execute the cron check if its the right time.
      if (Math.round(new Date().getTime() / 1000.0) >= Drupal.settings.cron.runNext) {
        $.get(Drupal.settings.cron.basePath + '/run-cron-check');
      }
    });
  }
};

})(jQuery);
;/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.07
 */
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-1]-=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.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.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}})());;Drupal.behaviors.mapOverlay = function() {
  
  // Set up overlay markup to be added just inside the <body> so we don't run into any positioning problems.
  overlays = $('.overlay');

  // Append markup.
  $('body').append(overlays);
  
  var clickText = $('.overlay-map .map-click');

  // Set up overlay. 
  $('.service a.map').overlay({
    //expose: '#656259',
    onBeforeLoad: function(){
      clickText.hide();
      
      var mapLink = $('.overlay-map a');
      mapLink.hover(function(){
        clickText.children('span').fadeIn(200);
        clickText.animate({
          padding:'10',
          height: '20'
        }, 300);
      }, function(){
        clickText.children('span').fadeOut(200);
        clickText.animate({
          padding:'0',
          height: '0'
        }, 300);
      });
    }
  });

} ;/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1998 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":180,"face":{"font-family":"AvantGarde","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 4 2 2 2 2 2 2 4","ascent":"274","descent":"-86","x-height":"5","bbox":"-60 -347 458 85","underline-thickness":"19.8633","underline-position":"-21.4453","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":101},"!":{"d":"64,-67r-25,0r0,-189r25,0r0,189xm64,0r-25,0r0,-47r25,0r0,47","w":103},"\"":{"d":"83,-252r0,97r-18,0r0,-97r18,0xm35,-252r0,97r-18,0r0,-97r18,0","w":100},"#":{"d":"171,-152r-46,0r-17,49r47,0xm161,-256r-29,85r46,0r30,-85r23,0r-30,85r55,0r-6,19r-56,0r-17,49r60,0r-7,19r-60,0r-30,84r-22,0r30,-84r-47,0r-31,84r-22,0r30,-84r-57,0r6,-19r58,0r17,-49r-62,0r6,-19r63,0r30,-85r22,0","w":276},"$":{"d":"177,-74v0,41,-26,70,-63,73r0,44r-25,0r0,-44v-38,-3,-62,-34,-62,-75r24,0v0,34,16,53,50,53v31,1,50,-18,51,-47v3,-59,-119,-43,-119,-118v0,-34,26,-62,56,-66r0,-37r25,0r0,37v34,4,56,27,57,64r-25,0v0,-25,-18,-43,-43,-43v-27,-1,-45,18,-45,44v2,55,119,40,119,115","w":203},"%":{"d":"78,-237v-21,0,-40,18,-40,39v0,21,18,40,40,40v22,0,40,-18,40,-40v0,-22,-18,-39,-40,-39xm79,-135v-35,0,-63,-28,-63,-63v0,-35,28,-63,63,-63v34,0,63,29,63,63v0,35,-28,63,-63,63xm216,-261r21,0r-137,266r-21,0xm236,-98v-21,0,-40,18,-40,40v0,21,19,40,40,40v21,0,40,-19,40,-40v0,-21,-19,-40,-40,-40xm237,5v-35,0,-64,-28,-64,-63v0,-34,29,-63,64,-63v34,0,63,30,63,63v0,34,-28,63,-63,63","w":315},"&":{"d":"103,-237v-28,-2,-45,34,-29,58v4,7,13,15,24,24v42,-7,55,-79,5,-82xm88,-128v-52,13,-52,111,11,108v30,-1,42,-21,57,-45xm163,-201v-1,32,-22,51,-49,62r52,48r31,-79r27,0r-39,97r58,53r-16,19r-52,-48v-14,30,-38,53,-78,54v-41,2,-75,-37,-74,-77v0,-34,22,-61,48,-73v-49,-29,-30,-116,33,-116v31,0,61,29,59,60","w":249},"'":{"d":"35,-252r0,97r-18,0r0,-97r18,0","w":51},"(":{"d":"76,78v-69,-27,-53,-137,-54,-232v0,-54,18,-88,54,-107r0,28v-46,29,-29,127,-29,199v0,45,5,64,29,83r0,29","w":95},")":{"d":"48,-34v0,-72,17,-170,-29,-199r0,-28v69,27,53,137,54,231v0,54,-18,89,-54,108r0,-29v24,-19,29,-38,29,-83","w":95},"*":{"d":"90,-172r-32,46r-19,-13r35,-44r-52,-15r6,-21r52,17r0,-54r20,0r0,54r50,-17r8,21r-53,15r36,44r-19,13"},"+":{"d":"159,-215r0,99r96,0r0,17r-96,0r0,99r-17,0r0,-99r-97,0r0,-17r97,0r0,-99r17,0","w":299},",":{"d":"44,28r-26,0r28,-75r25,0","w":101},"-":{"d":"99,-108r0,23r-82,0r0,-23r82,0","w":115,"k":{"\u00c5":6,"x":13,"w":13,"v":13,"t":6,"j":-7,"Y":20,"X":13,"W":20,"V":20,"T":20,"S":13,"J":20,"A":6}},".":{"d":"63,0r-25,0r0,-47r25,0r0,47","w":101},"\/":{"d":"13,33r-22,0r88,-289r21,0","w":100},"0":{"d":"102,-239v-39,0,-62,27,-62,68v0,72,-11,154,62,154v72,0,61,-83,61,-155v0,-40,-22,-67,-61,-67xm102,5v-56,0,-88,-33,-87,-95r0,-76v-1,-64,31,-92,87,-95v85,-4,86,83,86,172v0,62,-31,94,-86,94","w":203},"1":{"d":"119,0r-27,0r0,-234r-45,0r0,-22r72,0r0,256","w":203},"2":{"d":"105,-261v57,-1,98,66,68,119v-26,45,-79,80,-116,117r125,0r0,25r-159,0r0,-25v39,-39,98,-83,127,-126v25,-37,-3,-87,-47,-87v-37,0,-58,28,-55,68r-25,0v-2,-53,32,-90,82,-91","w":203},"3":{"d":"182,-78v0,72,-93,110,-141,61v-15,-15,-22,-35,-22,-61v8,1,22,-3,26,2v-1,33,23,59,54,59v34,0,58,-25,58,-59v0,-45,-33,-64,-79,-59r0,-22v35,4,62,-7,61,-41v0,-22,-16,-41,-38,-41v-27,-1,-40,18,-41,43r-23,0v1,-38,27,-65,65,-65v57,0,87,83,38,111v26,13,42,35,42,72","w":203},"4":{"d":"136,-72r1,-154r-95,154r94,0xm160,0r-25,0r0,-49r-120,0r0,-23r116,-184r29,0r0,184r28,0r0,23r-28,0r0,49","w":203},"5":{"d":"189,-85v0,73,-94,121,-147,67v-16,-16,-25,-36,-27,-60r25,0v1,31,29,60,62,60v35,0,61,-31,61,-67v0,-67,-91,-86,-117,-35r-19,-9r22,-127r116,0r0,25r-94,0r-13,72v53,-42,131,5,131,74","w":203},"6":{"d":"162,-81v0,-37,-24,-64,-59,-64v-35,0,-62,28,-62,63v0,35,28,65,62,65v35,0,59,-28,59,-64xm101,5v-49,0,-88,-36,-86,-84v3,-58,66,-128,94,-177r31,0r-59,93v59,-18,108,25,108,81v0,49,-40,87,-88,87","w":203},"7":{"d":"75,0r-28,0r101,-231r-112,0r0,-25r141,0r0,23","w":203},"8":{"d":"102,-238v-25,0,-45,17,-45,41v0,25,17,42,43,42v30,0,47,-13,48,-42v0,-24,-20,-41,-46,-41xm102,-131v-35,0,-56,23,-57,58v-1,31,25,56,55,56v33,0,58,-25,58,-58v0,-33,-22,-56,-56,-56xm20,-76v1,-36,15,-50,39,-67v-54,-29,-20,-124,42,-118v64,-8,98,88,43,118v70,30,40,148,-44,148v-42,0,-82,-37,-80,-81","w":203},"9":{"d":"41,-175v0,36,24,64,59,64v35,0,62,-28,62,-64v0,-35,-29,-64,-62,-64v-35,0,-60,28,-59,64xm102,-261v49,0,89,37,87,84v-3,58,-68,127,-95,177r-31,0r60,-93v-59,18,-108,-25,-108,-81v0,-50,37,-87,87,-87","w":203},":":{"d":"64,-147r-25,0r0,-46r25,0r0,46xm64,0r-25,0r0,-47r25,0r0,47","w":103},";":{"d":"44,28r-26,0r28,-75r25,0xm64,-193r0,46r-25,0r0,-46r25,0","w":103},"<":{"d":"253,-180r-179,73r179,72r0,20r-207,-85r0,-14r207,-86r0,20","w":299},"=":{"d":"255,-83r0,17r-210,0r0,-17r210,0xm255,-149r0,18r-210,0r0,-18r210,0","w":299},">":{"d":"253,-114r0,14r-207,85r0,-20r180,-72r-180,-73r0,-20","w":299},"?":{"d":"156,-185v0,50,-61,64,-60,115r-25,0v-3,-53,59,-71,59,-116v0,-29,-18,-50,-47,-49v-33,0,-47,24,-49,57r-26,0v-1,-48,30,-83,77,-83v43,-1,71,33,71,76xm71,0r0,-47r25,0r0,47r-25,0","w":166},"@":{"d":"102,-80v-7,-70,90,-134,126,-67r11,-22r16,0r-27,115v0,10,7,17,19,16v50,-4,72,-48,73,-100v2,-63,-59,-104,-125,-102v-94,3,-149,58,-154,150v-7,128,167,153,250,91r7,10v-31,22,-67,39,-115,39v-97,0,-162,-49,-162,-144v0,-100,71,-162,175,-162v81,0,143,40,143,119v0,66,-33,115,-97,115v-22,0,-37,-10,-33,-32v-10,18,-26,31,-52,32v-37,0,-52,-21,-55,-58xm123,-78v0,41,44,51,70,29v20,-17,23,-49,31,-77v-4,-19,-17,-35,-38,-35v-38,0,-63,41,-63,83","w":360},"A":{"d":"18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm153,-103r-48,-129r-48,129r96,0","w":214,"k":{"\u201e":-27,"\u201a":-27,"\u2039":13,"\u2019":28,"\u2018":53,"\u201d":28,"\u201c":53,"\u00ab":13,"y":6,"w":10,"v":11,"Y":13,"V":10,"T":13,"S":-10,";":6,":":6,".":6,"-":6,",":6}},"B":{"d":"144,-72v0,-48,-45,-51,-96,-49r0,97v50,2,96,0,96,-48xm130,-189v0,-40,-38,-44,-82,-43r0,87v47,0,82,-2,82,-44xm170,-76v3,77,-67,79,-146,76r0,-256v70,-3,132,0,132,68v0,26,-11,40,-28,50v26,11,41,29,42,62","w":183,"k":{"\u201e":6,"\u201a":6,"\u2018":13,"\u201c":13,";":13,":":13,".":13,",":13}},"C":{"d":"143,5v-116,8,-173,-149,-92,-229v36,-35,110,-50,159,-18v20,12,36,29,48,52r-30,0v-20,-27,-44,-46,-87,-46v-55,-1,-104,51,-104,107v0,59,46,111,104,110v41,-1,66,-17,85,-44r30,0v-20,39,-59,64,-113,68","w":270,"k":{"\u201e":10,"\u201a":10,"\u2019":-20,"\u2018":6,"\u201d":-20,"\u201c":6,";":6,":":6,".":6,",":6}},"D":{"d":"202,-129v-3,-65,-33,-105,-107,-103r-46,0r0,208v92,8,157,-18,153,-105xm229,-128v0,85,-47,132,-144,128r-61,0r0,-256r73,0v87,-2,132,49,132,128","w":240,"k":{"\u201e":20,"\u201a":20,"\u2019":-10,"\u2018":6,"\u201d":-10,"\u201c":6,";":6,":":6,".":20,"-":-7,",":20}},"E":{"d":"49,-141r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-256r133,0r0,25r-108,0r0,90","k":{"\u203a":6,"\u2039":6,"\u00bb":6,"\u00ab":6,";":13,":":13,".":6,"-":6,",":6}},"F":{"d":"24,0r0,-256r126,0r0,25r-101,0r0,90r101,0r0,25r-101,0r0,116r-25,0","w":174,"k":{"\u201e":43,"\u201a":43,"\u203a":13,"\u2039":13,"\u0153":8,"\u00bb":13,"\u00ab":13,"\u00f8":8,"\u00e6":8,"\u00c5":16,"y":8,"u":6,"r":6,"o":8,"i":6,"e":8,"a":8,"S":13,"A":16,";":20,":":20,".":46,"-":10,",":46}},"G":{"d":"37,-129v0,85,101,145,169,87v19,-15,30,-34,36,-58r-129,0r0,-23r159,0v-2,71,-59,128,-131,128v-73,0,-130,-61,-130,-135v0,-102,109,-163,200,-113v20,11,35,29,47,51r-31,0v-20,-26,-43,-44,-84,-45v-57,-1,-106,50,-106,108","w":283,"k":{"\u201e":20,"\u201a":20,"\u2019":-8,"\u2018":6,"\u201d":-8,"\u201c":6,";":6,":":6,".":13,",":13}},"H":{"d":"49,0r-25,0r0,-256r25,0r0,115r122,0r0,-115r25,0r0,256r-25,0r0,-117r-122,0r0,117","w":219,"k":{"\u2019":-7,"\u201d":-7,";":6,":":6,".":6,",":6}},"I":{"d":"49,0r-26,0r0,-256r26,0r0,256","w":72,"k":{"\u2019":-7,"\u201d":-7,";":6,":":6,".":6,",":6}},"J":{"d":"70,-20v40,0,43,-25,43,-74r0,-162r25,0r0,173v12,76,-68,112,-116,70v-13,-11,-17,-29,-17,-49r25,0v1,24,17,42,40,42","w":160,"k":{"\u201e":10,"\u201a":10,"\u2019":-7,"\u201d":-7,";":6,":":6,".":13,",":13}},"K":{"d":"48,-79r0,79r-25,0r0,-256r25,0r0,142r119,-142r30,0r-104,124r102,132r-31,0r-87,-113","w":193,"k":{"\u201e":-13,"\u201a":-13,"\u203a":20,"\u2039":33,"\u2019":-7,"\u2018":-7,"\u201d":-7,"\u201c":-7,"\u0153":13,"\u0152":16,"\u00bb":20,"\u00ab":33,"\u00f8":13,"\u00e6":13,"\u00d8":16,"y":13,"u":10,"o":13,"e":13,"a":13,"Y":6,"W":6,"O":16,"C":16,";":6,":":6,".":6,"-":20,",":6}},"L":{"d":"139,0r-115,0r0,-256r25,0r0,231r90,0r0,25","w":148,"k":{"\u201e":-7,"\u201a":-7,"\u203a":20,"\u2039":33,"\u2019":40,"\u2018":40,"\u201d":40,"\u201c":40,"\u0153":11,"\u0152":13,"\u00bb":20,"\u00ab":33,"\u00f8":11,"\u00e6":11,"\u00d8":13,"y":20,"u":11,"o":11,"e":11,"a":11,"Y":20,"W":21,"V":33,"U":6,"T":15,"O":13,";":6,":":6,".":13,"-":26,",":13}},"M":{"d":"25,0r0,-256r37,0r89,223r88,-223r37,0r0,256r-24,0r0,-226r-90,226r-23,0r-90,-226r0,226r-24,0","w":297,"k":{"\u2019":-7,"\u201d":-7,";":6,":":6,".":6,",":6}},"N":{"d":"194,-31r-3,-225r25,0r0,256r-31,0r-140,-226r3,226r-25,0r0,-256r30,0","w":240,"k":{"\u2019":-7,"\u201d":-7,";":6,":":6,".":6,",":6}},"O":{"d":"141,-237v-64,3,-101,47,-104,108v-3,59,47,110,106,110v58,0,103,-52,103,-111v0,-56,-49,-108,-105,-107xm141,5v-73,3,-133,-61,-130,-135v4,-78,51,-131,130,-131v80,0,131,53,131,131v0,82,-52,132,-131,135","w":283,"k":{"\u201e":20,"\u201a":20,"\u2019":-10,"\u2018":6,"\u201d":-10,"\u201c":6,"X":10,"T":13,";":6,":":6,".":20,",":20}},"P":{"d":"144,-181v0,-51,-46,-52,-98,-50r0,98v51,2,98,1,98,-48xm171,-182v-2,64,-52,80,-125,74r0,108r-25,0r0,-256v79,-3,151,0,150,74","w":181,"k":{"\u201e":53,"\u201a":53,"\u203a":20,"\u2039":26,"\u2019":-10,"\u201d":-10,"\u0153":16,"\u00bb":20,"\u00ab":26,"\u00f8":16,"\u00e6":16,"\u00c5":23,"u":6,"s":10,"r":6,"o":16,"n":6,"i":6,"e":16,"a":16,"A":23,";":13,":":13,".":79,"-":26,",":79}},"Q":{"d":"272,-125v0,43,-17,71,-41,94v10,8,25,11,44,10v-1,11,6,28,-13,23v-20,0,-38,-7,-51,-17v-85,56,-207,-15,-200,-115v5,-77,51,-128,130,-131v75,-3,133,60,131,136xm96,-110v59,2,77,26,115,64v20,-20,35,-47,35,-84v2,-56,-49,-108,-105,-107v-64,1,-121,66,-100,139v17,-7,33,-12,55,-12xm50,-75v20,44,86,73,141,44v-40,-43,-78,-69,-141,-44","w":283,"k":{"\u201e":-7,"\u201a":-7,"\u2019":-10,"\u2018":6,"\u201d":-10,"\u201c":6,".":6,",":6}},"R":{"d":"157,-174v0,-56,-48,-61,-112,-57r0,231r-25,0r0,-256r69,0v61,-2,92,28,95,81v2,38,-26,73,-62,75r62,100r-30,0r-76,-123v45,4,79,-12,79,-51","w":200,"k":{"\u203a":13,"\u2039":20,"\u2019":-8,"\u2018":13,"\u201d":-8,"\u201c":13,"\u0153":6,"\u00bb":13,"\u00ab":20,"\u00f8":6,"\u00e6":6,"o":6,"e":6,"a":6,";":6,":":6,".":20,"-":13,",":20}},"S":{"d":"108,-142v78,21,51,147,-27,147v-43,0,-72,-34,-71,-78r24,0v1,30,18,51,47,52v30,0,49,-20,49,-52v0,-59,-121,-44,-113,-118v-6,-59,74,-93,114,-52v11,12,18,29,19,50r-24,0v-2,-26,-15,-43,-41,-44v-38,-2,-58,52,-28,75v7,5,39,17,51,20","w":167,"k":{"\u201e":6,"\u201a":6,"\u2019":-10,"\u2018":6,"\u201d":-10,"\u201c":6,";":6,":":6,".":13,"-":-7,",":13}},"T":{"d":"78,0r-25,0r0,-231r-51,0r0,-25r128,0r0,25r-52,0r0,231","w":131,"k":{"\u201e":13,"\u201a":13,"\u203a":20,"\u2039":26,"\u2019":-7,"\u2018":-13,"\u201d":-7,"\u201c":-13,"\u0153":15,"\u0152":13,"\u00bb":20,"\u00ab":26,"\u00f8":15,"\u00e6":15,"\u00d8":13,"\u00c5":13,"y":6,"w":8,"u":8,"s":11,"r":8,"o":15,"e":15,"c":15,"a":15,"O":13,"C":13,"A":13,";":13,":":13,".":26,"-":20,",":26}},"U":{"d":"103,5v-120,0,-74,-155,-83,-261r25,0r0,162v-3,49,18,76,57,76v90,0,46,-152,56,-238r25,0v-8,105,34,261,-80,261","w":203,"k":{"\u201e":6,"\u201a":6,"\u203a":10,"\u2039":6,"\u2019":-7,"\u201d":-7,"\u00bb":10,"\u00ab":6,".":13,",":13}},"V":{"d":"-7,-256r25,0r81,218r81,-218r25,0r-96,256r-20,0","w":200,"k":{"\u201e":33,"\u201a":33,"\u203a":26,"\u2039":33,"\u2019":-20,"\u2018":-20,"\u201d":-20,"\u201c":-20,"\u0153":20,"\u00bb":26,"\u00ab":33,"\u00f8":20,"\u00e6":20,"\u00c5":10,"y":6,"u":11,"o":20,"e":20,"a":20,"A":10,";":13,":":13,".":40,"-":20,",":40}},"W":{"d":"158,-256r52,210r64,-210r24,0r-79,256r-21,0r-51,-209r-52,209r-21,0r-79,-256r25,0r63,210r52,-210r23,0","w":292,"k":{"\u201e":26,"\u201a":26,"\u203a":20,"\u2039":26,"\u2019":-20,"\u2018":-20,"\u201d":-20,"\u201c":-20,"\u0153":13,"\u00bb":20,"\u00ab":26,"\u00f8":13,"\u00e6":13,"u":10,"r":6,"o":13,"e":13,"a":13,";":6,":":6,".":26,"-":20,",":26}},"X":{"d":"30,0r-31,0r89,-129r-87,-127r31,0r71,106r70,-106r31,0r-87,127r89,129r-32,0r-71,-109","w":204,"k":{"\u201e":-17,"\u201a":-17,"\u203a":13,"\u2039":33,"\u2019":-7,"\u2018":-7,"\u201d":-7,"\u201c":-7,"\u0152":10,"\u00bb":13,"\u00ab":33,"\u00d8":10,"e":6,"O":10,"C":10,";":6,":":6,".":6,"-":13,",":6}},"Y":{"d":"98,-94r0,94r-25,0r0,-94r-82,-162r29,0r66,133r66,-133r28,0","w":172,"k":{"\u201e":26,"\u201a":26,"\u203a":26,"\u2039":40,"\u2019":-17,"\u2018":-20,"\u201d":-17,"\u201c":-20,"\u0153":24,"\u00bb":26,"\u00ab":40,"\u00f8":24,"\u00e6":24,"\u00c5":13,"u":18,"o":24,"e":24,"a":24,"A":13,";":13,":":13,".":40,"-":20,",":40}},"Z":{"d":"126,-231r-112,0r0,-25r142,0r0,24r-120,207r122,0r0,25r-151,0r0,-24","w":164,"k":{"\u201e":-13,"\u201a":-13,"\u203a":13,"\u2039":33,"\u2019":-10,"\u201d":-10,"\u00bb":13,"\u00ab":33,".":13,"-":26,",":13}},"[":{"d":"82,52r0,20r-59,0r0,-328r59,0r0,21r-34,0r0,287r34,0","w":95},"\\":{"d":"88,33r-88,-289r21,0r88,289r-21,0","w":100},"]":{"d":"13,52r34,0r0,-287r-34,0r0,-21r59,0r0,328r-59,0r0,-20","w":95},"^":{"d":"192,-256r93,98r-25,0r-80,-80r-81,80r-25,0r94,-98r24,0","w":360},"_":{"d":"180,67r0,18r-180,0r0,-18r180,0"},"`":{"d":"96,-219r-47,-62r26,0r37,62r-16,0"},"a":{"d":"110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77xm10,-96v0,-91,127,-138,173,-66r0,-31r24,0r0,193r-24,0r0,-31v-14,21,-41,36,-74,36v-55,0,-99,-45,-99,-101","w":226,"k":{"\u2039":6,"\u2019":-7,"\u2018":6,"\u201d":-7,"\u201c":6,"\u00ab":6,".":6,",":6}},"b":{"d":"115,5v-33,0,-54,-15,-71,-34r0,29r-25,0r0,-256r25,0r0,95v18,-23,40,-36,76,-37v53,-1,97,47,97,101v0,56,-44,102,-102,102xm117,-175v-40,0,-73,38,-73,80v0,40,35,78,72,77v41,0,75,-36,75,-80v0,-40,-35,-78,-74,-77","w":226,"k":{"\u203a":6,"\u2018":26,"\u201c":26,"\u00bb":6,";":6,":":6,".":13,",":13}},"c":{"d":"10,-96v0,-77,90,-133,156,-86v16,11,28,27,36,48r-27,0v-14,-25,-32,-41,-67,-41v-41,-1,-72,36,-72,78v0,42,31,80,73,79v33,-1,54,-18,66,-42r27,0v-14,39,-44,64,-92,65v-55,2,-100,-47,-100,-101","w":218,"k":{"\u203a":6,"\u2039":6,"\u2018":26,"\u201c":26,"\u00bb":6,"\u00ab":6,";":6,":":6,".":13,",":13}},"d":{"d":"111,-18v37,1,72,-38,72,-77v0,-41,-34,-80,-73,-80v-39,0,-74,36,-74,77v0,44,34,80,75,80xm109,-198v34,0,57,14,73,35r0,-93r25,0r0,256r-25,0r0,-29v-15,20,-41,34,-73,34v-55,2,-99,-47,-99,-102v0,-56,45,-101,99,-101","w":226,"k":{"\u2039":6,"\u2019":-13,"\u201d":-13,"\u00ab":6,".":6,",":6}},"e":{"d":"111,-199v60,0,100,48,99,110r-175,0v3,40,32,71,74,71v32,0,55,-20,66,-43r28,0v-15,38,-45,65,-93,66v-55,2,-101,-47,-101,-102v0,-57,44,-102,102,-102xm182,-110v-4,-58,-77,-85,-122,-48v-13,12,-21,28,-24,48r146,0","w":218,"k":{"\u203a":6,"\u2018":26,"\u201c":26,"\u00bb":6,";":6,":":6,".":13,",":13}},"f":{"d":"95,-237v-32,0,-42,12,-41,44r41,0r0,21r-41,0r0,172r-24,0r0,-172r-26,0r0,-21r25,0v-1,-46,20,-67,66,-66r0,22","w":98,"k":{"\u203a":13,"\u2039":20,"\u2019":-27,"\u2018":-13,"\u201d":-27,"\u201c":-13,"\u00bb":13,"\u00ab":20,".":26,"-":6,",":26}},"g":{"d":"206,-32v18,114,-151,147,-182,48r29,0v7,22,28,35,56,36v47,0,75,-36,73,-86v-44,74,-173,29,-173,-63v0,-55,44,-102,99,-101v36,0,58,14,74,36r0,-31r24,0r0,161xm109,-175v-41,0,-73,35,-73,77v0,43,31,79,73,79v37,0,73,-37,73,-76v0,-41,-32,-80,-73,-80","w":225,"k":{"\u2039":6,"\u2019":-7,"\u2018":6,"\u201d":-7,"\u201c":6,"\u00ab":6,".":6,",":6}},"h":{"d":"102,-173v-79,0,-54,99,-58,173r-24,0r0,-256r24,0r0,85v13,-17,32,-24,59,-26v96,-5,76,107,78,197r-24,0v-5,-71,23,-173,-55,-173","w":200,"k":{"\u2039":6,"\u2018":20,"\u201c":20,"\u00ab":6,".":6,",":6}},"i":{"d":"45,-216r-25,0r0,-40r25,0r0,40xm20,0r0,-193r25,0r0,193r-25,0","w":65,"k":{"\u2039":6,"\u2019":-13,"\u201d":-13,"\u00ab":6,".":6,",":6}},"j":{"d":"45,-216r-25,0r0,-40r25,0r0,40xm-4,39v24,-1,24,-7,24,-35r0,-197r25,0r0,194v0,43,-8,62,-49,61r0,-23","w":65,"k":{"\u2039":6,"\u2019":-13,"\u201d":-13,"\u00ab":6,".":6,",":6}},"k":{"d":"45,0r-25,0r0,-256r25,0r0,152r70,-89r28,0r-70,89r85,104r-31,0r-82,-101r0,101","w":149,"k":{"\u203a":6,"\u2039":20,"\u2019":-13,"\u2018":6,"\u201d":-13,"\u201c":6,"\u0153":6,"\u00bb":6,"\u00ab":20,"\u00f8":6,"\u00e6":6,"o":6,"e":6,"a":6,".":6,"-":13,",":6}},"l":{"d":"20,0r0,-256r25,0r0,256r-25,0","w":65,"k":{"\u2039":6,"\u2019":-13,"\u201d":-13,"\u00ab":6,".":6,",":6}},"m":{"d":"44,-171v24,-39,110,-31,128,8v13,-20,36,-34,68,-34v93,0,73,108,75,197r-23,0v-5,-70,23,-173,-54,-173v-78,0,-54,98,-58,173r-23,0v-5,-71,23,-173,-55,-173v-79,0,-54,99,-58,173r-24,0r0,-193r24,0r0,22","w":335,"k":{"\u2039":6,"\u2018":20,"\u201c":20,"\u00ab":6,".":6,",":6}},"n":{"d":"102,-173v-79,0,-54,99,-58,173r-24,0r0,-193r24,0r0,22v14,-17,32,-26,61,-26v55,0,76,31,76,96r0,101r-24,0v-5,-70,24,-173,-55,-173","w":200,"k":{"\u2039":6,"\u2018":20,"\u201c":20,"\u00ab":6,".":6,",":6}},"o":{"d":"107,-176v-40,0,-72,38,-72,79v0,42,33,79,75,79v42,0,73,-37,73,-79v0,-44,-32,-79,-76,-79xm110,5v-55,0,-101,-47,-101,-102v0,-54,46,-103,99,-103v54,0,101,48,101,101v0,56,-44,104,-99,104","w":218,"k":{"\u203a":6,"\u2018":26,"\u201c":26,"\u00bb":6,";":6,":":6,".":13,",":13}},"p":{"d":"117,5v-34,0,-59,-14,-73,-36r0,94r-25,0r0,-256r25,0r0,31v45,-70,173,-26,173,66v0,55,-45,102,-100,101xm116,-175v-37,0,-72,38,-72,77v0,42,33,80,73,80v40,0,74,-36,74,-77v0,-44,-34,-80,-75,-80","w":226,"k":{"\u203a":6,"\u2018":26,"\u201c":26,"\u00bb":6,";":6,":":6,".":13,",":13}},"q":{"d":"10,-96v0,-91,127,-138,172,-66r0,-31r25,0r0,256r-25,0r0,-92v-14,20,-41,34,-73,34v-55,1,-99,-45,-99,-101xm110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77","w":226,"k":{"\u2039":6,"\u2019":-13,"\u2018":6,"\u201d":-13,"\u201c":6,"\u00ab":6,".":6,",":6}},"r":{"d":"88,-169v-69,2,-35,106,-43,169r-25,0r0,-193r23,0r0,22v11,-15,22,-24,45,-25r0,27","w":90,"k":{"\uf002":-13,"\uf001":-13,"\u203a":6,"\u2039":20,"\u2019":-27,"\u201d":-27,"\u00bb":6,"\u00ab":20,"z":-7,"y":-20,"x":-13,"w":-13,"v":-13,"f":-13,".":26,"-":6,",":26}},"s":{"d":"95,-106v59,19,37,111,-26,111v-37,0,-61,-28,-61,-66v8,1,19,-2,25,1v-6,47,70,57,70,10v0,-54,-95,-33,-87,-94v-3,-46,63,-72,95,-40v10,9,15,22,16,39r-26,0v-2,-18,-12,-28,-31,-29v-29,-1,-37,42,-13,54v9,5,26,10,38,14","w":140,"k":{"\u2019":-7,"\u2018":20,"\u201d":-7,"\u201c":20,".":13,",":13}},"t":{"d":"37,0r0,-168r-37,0r0,-25r37,0r0,-63r25,0r0,63r36,0r0,25r-36,0r0,168r-25,0","w":98,"k":{"\u203a":10,"\u2039":13,"\u2019":-20,"\u2018":-7,"\u201d":-20,"\u201c":-7,"\u00bb":10,"\u00ab":13,".":20,"-":6,",":20}},"u":{"d":"98,5v-98,6,-77,-107,-79,-198r25,0v5,71,-24,175,55,175v77,0,55,-99,58,-175r24,0r0,193r-24,0r0,-21v-15,17,-30,24,-59,26","w":200,"k":{"\u2039":6,"\u2019":-13,"\u2018":13,"\u201d":-13,"\u201c":13,"\u00ab":6,".":6,",":6}},"v":{"d":"95,0r-22,0r-76,-193r26,0r62,156r63,-156r27,0","w":171,"k":{"\u203a":13,"\u2039":20,"\u2019":-20,"\u201d":-20,"\u00bb":13,"\u00ab":20,";":6,":":6,".":40,"-":13,",":40}},"w":{"d":"179,-49r46,-144r27,0r-65,193r-17,0r-45,-147r-45,147r-16,0r-65,-193r26,0r47,144r44,-144r18,0","w":249,"k":{"\u203a":13,"\u2039":20,"\u2019":-20,"\u201d":-20,"\u00bb":13,"\u00ab":20,";":6,":":6,".":26,"-":13,",":26}},"x":{"d":"30,-193r45,73r48,-73r29,0r-63,92r63,101r-29,0r-49,-81r-52,81r-27,0r65,-100r-58,-93r28,0","w":149,"k":{"\u203a":13,"\u2039":20,"\u2019":-20,"\u201d":-20,"\u00bb":13,"\u00ab":20,";":6,":":6,".":6,"-":13,",":6}},"y":{"d":"-6,-193r29,0r59,157r63,-157r29,0r-105,256r-26,0r26,-63","w":165,"k":{"\u203a":6,"\u2039":13,"\u2019":-27,"\u2018":-7,"\u201d":-27,"\u201c":-7,"\u00bb":6,"\u00ab":13,".":33,"-":6,",":33}},"z":{"d":"137,0r-133,0r0,-23r100,-147r-89,0r0,-23r117,0r0,26r-99,142r104,0r0,25","w":145,"k":{"\u203a":6,"\u2039":26,"\u2019":-13,"\u2018":6,"\u201d":-13,"\u201c":6,"\u00bb":6,"\u00ab":26,";":6,":":6,".":13,"-":6,",":13}},"{":{"d":"83,-152v-1,-64,-6,-118,67,-108r0,19v-90,-19,-7,137,-80,148v41,6,34,55,34,103v0,37,9,45,46,44r0,19v-71,9,-69,-42,-67,-108v1,-38,-15,-50,-52,-49r0,-19v37,1,53,-10,52,-49"},"|":{"d":"100,-275r0,360r-19,0r0,-360r19,0"},"}":{"d":"30,-260v71,-9,70,42,68,108v-1,38,14,50,52,49r0,19v-56,-8,-52,40,-52,92v0,54,-15,66,-68,65r0,-19v90,19,6,-138,81,-147v-42,-6,-34,-54,-35,-103v0,-38,-10,-46,-46,-45r0,-19"},"~":{"d":"147,-117v47,20,88,15,122,-15r0,20v-20,14,-39,24,-68,25v-26,1,-78,-26,-102,-24v-28,3,-45,13,-68,28r0,-20v34,-24,69,-34,116,-14","w":299},"\u00c4":{"d":"18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm153,-103r-48,-129r-48,129r96,0xm125,-293r0,-29r25,0r0,29r-25,0xm60,-293r0,-29r25,0r0,29r-25,0","w":214},"\u00c5":{"d":"106,-332v-13,0,-25,12,-25,26v0,13,12,24,25,24v13,0,26,-11,25,-24v0,-13,-12,-26,-25,-26xm105,-266v-21,0,-40,-19,-40,-40v0,-21,19,-41,40,-41v22,0,41,19,41,41v0,21,-20,40,-41,40xm153,-103r-48,-129r-48,129r96,0xm18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0","w":214,"k":{"\u201e":-27,"\u201a":-27,"\u2039":13,"\u2019":28,"\u2018":53,"\u201d":28,"\u201c":53,"\u00ab":13,"y":6,"w":10,"v":11,"Y":13,"V":10,"T":13,"S":-10,";":6,":":6,".":6,"-":6,",":6}},"\u00c7":{"d":"143,5v-116,8,-173,-149,-92,-229v36,-35,110,-50,159,-18v20,12,36,29,48,52r-30,0v-20,-27,-44,-46,-87,-46v-55,-1,-104,51,-104,107v0,59,46,111,104,110v41,-1,66,-17,85,-44r30,0v-20,39,-59,64,-113,68xm163,50v1,-17,-14,-19,-33,-18r0,-32r11,0r0,20v25,-1,42,7,42,30v1,39,-54,33,-84,24r0,-14v23,4,62,16,64,-10","w":270},"\u00c9":{"d":"49,-141r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-256r133,0r0,25r-108,0r0,90xm87,-281r-16,0r37,-62r26,0"},"\u00d1":{"d":"194,-31r-3,-225r25,0r0,256r-31,0r-140,-226r3,226r-25,0r0,-256r30,0xm103,-321v21,0,44,20,53,-4r15,0v-5,36,-42,34,-72,23v-8,1,-13,6,-16,13r-14,0v4,-18,14,-32,34,-32","w":240},"\u00d6":{"d":"141,-237v-64,3,-101,47,-104,108v-3,59,47,110,106,110v58,0,103,-52,103,-111v0,-56,-49,-108,-105,-107xm141,5v-73,3,-133,-61,-130,-135v4,-78,51,-131,130,-131v80,0,131,53,131,131v0,82,-52,132,-131,135xm162,-293r0,-29r25,0r0,29r-25,0xm97,-293r0,-29r25,0r0,29r-25,0","w":283},"\u00dc":{"d":"103,5v-120,0,-74,-155,-83,-261r25,0r0,162v-3,49,18,76,57,76v90,0,46,-152,56,-238r25,0v-8,105,34,261,-80,261xm122,-293r0,-29r25,0r0,29r-25,0xm57,-293r0,-29r25,0r0,29r-25,0","w":203},"\u00e1":{"d":"110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77xm10,-96v0,-91,127,-138,173,-66r0,-31r24,0r0,193r-24,0r0,-31v-14,21,-41,36,-74,36v-55,0,-99,-45,-99,-101xm106,-219r-16,0r37,-62r26,0","w":226},"\u00e0":{"d":"110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77xm10,-96v0,-91,127,-138,173,-66r0,-31r24,0r0,193r-24,0r0,-31v-14,21,-41,36,-74,36v-55,0,-99,-45,-99,-101xm118,-219r-47,-62r26,0r37,62r-16,0","w":226},"\u00e2":{"d":"110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77xm10,-96v0,-91,127,-138,173,-66r0,-31r24,0r0,193r-24,0r0,-31v-14,21,-41,36,-74,36v-55,0,-99,-45,-99,-101xm63,-219r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":226},"\u00e4":{"d":"110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77xm10,-96v0,-91,127,-138,173,-66r0,-31r24,0r0,193r-24,0r0,-31v-14,21,-41,36,-74,36v-55,0,-99,-45,-99,-101xm132,-231r0,-29r25,0r0,29r-25,0xm67,-231r0,-29r25,0r0,29r-25,0","w":226},"\u00e3":{"d":"110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77xm10,-96v0,-91,127,-138,173,-66r0,-31r24,0r0,193r-24,0r0,-31v-14,21,-41,36,-74,36v-55,0,-99,-45,-99,-101xm95,-259v21,0,44,20,53,-4r15,0v-5,36,-42,34,-72,23v-8,1,-13,6,-16,13r-14,0v4,-18,14,-32,34,-32","w":226},"\u00e5":{"d":"114,-274v-13,0,-25,12,-25,26v0,14,12,25,25,25v13,0,25,-11,25,-25v0,-14,-12,-26,-25,-26xm113,-208v-22,0,-40,-19,-40,-40v0,-21,18,-40,40,-40v22,0,41,18,41,40v0,21,-20,40,-41,40xm10,-96v0,-91,127,-138,173,-66r0,-31r24,0r0,193r-24,0r0,-31v-14,21,-41,36,-74,36v-55,0,-99,-45,-99,-101xm110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,36,-75,80v0,42,34,77,74,77","w":226,"k":{"\u2039":6,"\u2019":-7,"\u2018":6,"\u201d":-7,"\u201c":6,"\u00ab":6,".":6,",":6}},"\u00e7":{"d":"10,-96v0,-77,90,-133,156,-86v16,11,28,27,36,48r-27,0v-14,-25,-32,-41,-67,-41v-41,-1,-72,36,-72,78v0,42,31,80,73,79v33,-1,54,-18,66,-42r27,0v-14,39,-44,64,-92,65v-55,2,-100,-47,-100,-101xm131,50v1,-17,-14,-19,-33,-18r0,-32r11,0r0,20v25,-1,42,7,42,30v1,39,-54,33,-84,24r0,-14v23,4,62,16,64,-10","w":218},"\u00e9":{"d":"111,-199v60,0,100,48,99,110r-175,0v3,40,32,71,74,71v32,0,55,-20,66,-43r28,0v-15,38,-45,65,-93,66v-55,2,-101,-47,-101,-102v0,-57,44,-102,102,-102xm182,-110v-4,-58,-77,-85,-122,-48v-13,12,-21,28,-24,48r146,0xm105,-219r-16,0r37,-62r26,0","w":218},"\u00e8":{"d":"111,-199v60,0,100,48,99,110r-175,0v3,40,32,71,74,71v32,0,55,-20,66,-43r28,0v-15,38,-45,65,-93,66v-55,2,-101,-47,-101,-102v0,-57,44,-102,102,-102xm182,-110v-4,-58,-77,-85,-122,-48v-13,12,-21,28,-24,48r146,0xm117,-219r-47,-62r26,0r37,62r-16,0","w":218},"\u00ea":{"d":"111,-199v60,0,100,48,99,110r-175,0v3,40,32,71,74,71v32,0,55,-20,66,-43r28,0v-15,38,-45,65,-93,66v-55,2,-101,-47,-101,-102v0,-57,44,-102,102,-102xm182,-110v-4,-58,-77,-85,-122,-48v-13,12,-21,28,-24,48r146,0xm62,-219r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":218},"\u00eb":{"d":"111,-199v60,0,100,48,99,110r-175,0v3,40,32,71,74,71v32,0,55,-20,66,-43r28,0v-15,38,-45,65,-93,66v-55,2,-101,-47,-101,-102v0,-57,44,-102,102,-102xm182,-110v-4,-58,-77,-85,-122,-48v-13,12,-21,28,-24,48r146,0xm131,-231r0,-29r25,0r0,29r-25,0xm66,-231r0,-29r25,0r0,29r-25,0","w":218},"\u00ed":{"d":"20,0r0,-193r25,0r0,193r-25,0xm27,-219r-16,0r37,-62r26,0","w":65},"\u00ec":{"d":"20,0r0,-193r25,0r0,193r-25,0xm39,-219r-47,-62r26,0r37,62r-16,0","w":65},"\u00ee":{"d":"20,0r0,-193r25,0r0,193r-25,0xm-16,-219r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":65},"\u00ef":{"d":"20,0r0,-193r25,0r0,193r-25,0xm53,-231r0,-29r25,0r0,29r-25,0xm-12,-231r0,-29r25,0r0,29r-25,0","w":65},"\u00f1":{"d":"102,-173v-79,0,-54,99,-58,173r-24,0r0,-193r24,0r0,22v14,-17,32,-26,61,-26v55,0,76,31,76,96r0,101r-24,0v-5,-70,24,-173,-55,-173xm86,-259v21,0,44,20,53,-4r15,0v-5,36,-42,34,-72,23v-8,1,-13,6,-16,13r-14,0v4,-18,14,-32,34,-32","w":200},"\u00f3":{"d":"107,-176v-40,0,-72,38,-72,79v0,42,33,79,75,79v42,0,73,-37,73,-79v0,-44,-32,-79,-76,-79xm110,5v-55,0,-101,-47,-101,-102v0,-54,46,-103,99,-103v54,0,101,48,101,101v0,56,-44,104,-99,104xm105,-219r-16,0r37,-62r26,0","w":218},"\u00f2":{"d":"107,-176v-40,0,-72,38,-72,79v0,42,33,79,75,79v42,0,73,-37,73,-79v0,-44,-32,-79,-76,-79xm110,5v-55,0,-101,-47,-101,-102v0,-54,46,-103,99,-103v54,0,101,48,101,101v0,56,-44,104,-99,104xm117,-219r-47,-62r26,0r37,62r-16,0","w":218},"\u00f4":{"d":"107,-176v-40,0,-72,38,-72,79v0,42,33,79,75,79v42,0,73,-37,73,-79v0,-44,-32,-79,-76,-79xm110,5v-55,0,-101,-47,-101,-102v0,-54,46,-103,99,-103v54,0,101,48,101,101v0,56,-44,104,-99,104xm62,-219r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":218},"\u00f6":{"d":"107,-176v-40,0,-72,38,-72,79v0,42,33,79,75,79v42,0,73,-37,73,-79v0,-44,-32,-79,-76,-79xm110,5v-55,0,-101,-47,-101,-102v0,-54,46,-103,99,-103v54,0,101,48,101,101v0,56,-44,104,-99,104xm131,-231r0,-29r25,0r0,29r-25,0xm66,-231r0,-29r25,0r0,29r-25,0","w":218},"\u00f5":{"d":"107,-176v-40,0,-72,38,-72,79v0,42,33,79,75,79v42,0,73,-37,73,-79v0,-44,-32,-79,-76,-79xm110,5v-55,0,-101,-47,-101,-102v0,-54,46,-103,99,-103v54,0,101,48,101,101v0,56,-44,104,-99,104xm94,-259v21,0,44,20,53,-4r15,0v-5,36,-42,34,-72,23v-8,1,-13,6,-16,13r-14,0v4,-18,14,-32,34,-32","w":218},"\u00fa":{"d":"98,5v-98,6,-77,-107,-79,-198r25,0v5,71,-24,175,55,175v77,0,55,-99,58,-175r24,0r0,193r-24,0r0,-21v-15,17,-30,24,-59,26xm93,-219r-16,0r37,-62r26,0","w":200},"\u00f9":{"d":"98,5v-98,6,-77,-107,-79,-198r25,0v5,71,-24,175,55,175v77,0,55,-99,58,-175r24,0r0,193r-24,0r0,-21v-15,17,-30,24,-59,26xm105,-219r-47,-62r26,0r37,62r-16,0","w":200},"\u00fb":{"d":"98,5v-98,6,-77,-107,-79,-198r25,0v5,71,-24,175,55,175v77,0,55,-99,58,-175r24,0r0,193r-24,0r0,-21v-15,17,-30,24,-59,26xm50,-219r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":200},"\u00fc":{"d":"98,5v-98,6,-77,-107,-79,-198r25,0v5,71,-24,175,55,175v77,0,55,-99,58,-175r24,0r0,193r-24,0r0,-21v-15,17,-30,24,-59,26xm119,-231r0,-29r25,0r0,29r-25,0xm54,-231r0,-29r25,0r0,29r-25,0","w":200},"\u2020":{"d":"77,41r0,-201r-64,0r0,-22r64,0r0,-74r26,0r0,74r64,0r0,22r-64,0r0,201r-26,0"},"\u00b0":{"d":"59,-170v19,0,37,-17,37,-36v0,-20,-17,-37,-37,-37v-20,0,-36,17,-36,37v0,20,17,36,36,36xm10,-206v-1,-27,23,-49,49,-49v27,0,49,23,49,49v0,26,-24,50,-49,49v-27,-1,-49,-21,-49,-49","w":118},"\u00a2":{"d":"12,-127v0,-52,36,-95,82,-101r0,-37r24,0r0,36v43,4,68,32,79,69r-26,0v-9,-29,-29,-46,-64,-47v-40,0,-69,37,-69,80v0,44,30,80,71,80v32,-1,55,-23,62,-50r26,0v-13,39,-36,66,-79,71r0,40r-24,0r0,-40v-45,-5,-82,-51,-82,-101","w":203},"\u00a3":{"d":"83,-118v17,25,21,71,2,96v55,8,98,-14,82,-71r25,0v9,58,-19,93,-80,93r-91,0r0,-22r39,0v23,-25,16,-71,-4,-96r-44,0r0,-25r25,0v-36,-79,59,-155,125,-100v14,11,23,28,27,49r-23,0v-6,-26,-23,-44,-54,-44v-49,0,-71,57,-47,95r86,0r0,25r-68,0","w":203},"\u00a7":{"d":"68,-160v-33,8,-28,57,1,68r43,27v31,-15,25,-53,-5,-71xm88,38v-37,0,-60,-22,-58,-60v7,1,20,-3,24,2v0,23,12,35,34,37v27,2,41,-27,26,-48v-24,-32,-95,-39,-95,-91v0,-28,15,-40,35,-52v-37,-24,-13,-91,37,-87v34,3,57,23,55,59r-23,0v0,-23,-12,-38,-34,-38v-25,0,-38,29,-23,47v26,33,93,37,94,93v0,25,-15,39,-34,49v37,27,15,89,-38,89"},"\u2022":{"d":"106,-82v-28,0,-52,-24,-52,-52v0,-28,24,-52,52,-52v28,0,52,24,52,52v0,28,-24,52,-52,52","w":212},"\u00b6":{"d":"15,-199v-1,-68,80,-63,150,-61r0,12r-22,0r0,248r-15,0r0,-248r-32,0r0,248r-15,0r0,-137v-38,-1,-66,-24,-66,-62"},"\u00df":{"d":"92,-235v-71,1,-41,104,-47,172r24,0v7,60,104,56,105,-5v-1,-42,-37,-56,-85,-53v1,-6,-2,-16,1,-20v31,0,50,-16,50,-47v0,-28,-20,-48,-48,-47xm120,5v-42,-1,-62,-22,-75,-56r0,51r-25,0r0,-170v0,-56,19,-88,73,-88v66,0,102,90,47,116v35,7,60,29,60,69v1,43,-35,80,-80,78","w":210,"k":{"\u203a":6,"\u2019":6,"\u2018":26,"\u201d":6,"\u201c":26,"\u00bb":6,";":6,":":6,".":13,"-":-7,",":13}},"\u00ae":{"d":"192,-161v0,-32,-38,-26,-70,-27r0,53v32,-1,70,5,70,-26xm215,-162v-1,21,-15,36,-35,39r33,68r-25,0r-32,-65r-34,0r0,65r-23,0r0,-148v51,1,117,-10,116,41xm150,-13v69,0,115,-46,115,-114v0,-69,-46,-115,-115,-115v-68,0,-115,47,-115,115v0,67,46,114,115,114xm21,-127v0,-76,52,-129,129,-129v78,0,129,52,129,129v0,77,-53,129,-129,129v-77,0,-129,-53,-129,-129","w":299},"\u00a9":{"d":"82,-128v0,-62,61,-100,109,-66v11,8,17,19,18,33r-20,0v-4,-17,-18,-30,-39,-29v-32,0,-45,28,-45,63v0,34,13,62,45,62v23,0,38,-14,41,-33r20,0v-2,30,-29,51,-62,51v-44,0,-67,-34,-67,-81xm150,-13v69,0,115,-46,115,-114v0,-68,-46,-115,-115,-115v-68,0,-115,47,-115,115v0,67,46,114,115,114xm21,-127v0,-76,52,-129,129,-129v77,0,129,52,129,129v0,77,-53,129,-129,129v-77,0,-129,-53,-129,-129","w":299},"\u2122":{"d":"165,-256r29,75r27,-75r21,0r0,94r-13,0r0,-83r-31,83r-8,0r-33,-83r0,83r-13,0r0,-94r21,0xm122,-256r0,10r-30,0r0,84r-15,0r0,-84r-31,0r0,-10r76,0","w":299},"\u00b4":{"d":"84,-219r-16,0r37,-62r26,0"},"\u00a8":{"d":"110,-231r0,-29r25,0r0,29r-25,0xm45,-231r0,-29r25,0r0,29r-25,0"},"\u2260":{"d":"226,-195r-36,46r65,0r0,17r-76,0r-37,49r113,0r0,17r-124,0r-45,57r-13,-11r36,-46r-64,0r0,-17r75,0r38,-49r-113,0r0,-17r124,0r44,-56","w":299},"\u00c6":{"d":"82,-110r83,0r1,-121r-3,0xm65,-85r-58,85r-31,0r176,-256r145,0r0,25r-108,0r0,90r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-85r-99,0","w":318,"k":{"\u203a":6,"\u2039":6,"\u00bb":6,"\u00ab":6,";":13,":":13,".":6,"-":6,",":6}},"\u00d8":{"d":"202,-216v-76,-61,-199,24,-157,129v5,13,12,25,21,34xm82,-39v80,58,197,-25,157,-129v-5,-12,-12,-24,-22,-34xm272,-130v6,103,-123,175,-206,110r-36,44r-17,-14r37,-43v-23,-25,-39,-55,-39,-97v0,-78,52,-131,132,-131v32,0,55,9,75,25r30,-36r17,13r-31,37v24,23,36,50,38,92","w":283,"k":{"\u201e":20,"\u201a":20,"\u2019":-10,"\u2018":6,"\u201d":-10,"\u201c":6,"X":10,"T":13,";":6,":":6,".":20,",":20}},"\u221e":{"d":"249,-110v0,-37,-40,-63,-65,-33v-8,9,-17,24,-26,45v13,46,91,47,91,-12xm51,-105v0,37,42,63,66,32v8,-9,17,-23,26,-44v-11,-20,-24,-34,-50,-35v-25,-1,-42,22,-42,47xm92,-174v31,0,43,21,55,47v14,-28,26,-45,58,-47v31,-1,54,32,54,66v0,36,-19,66,-51,66v-31,0,-41,-19,-55,-46v-14,26,-26,46,-57,46v-31,0,-55,-31,-55,-66v0,-36,19,-66,51,-66","w":299},"\u00b1":{"d":"255,-26r0,17r-210,0r0,-17r210,0xm159,-205r0,61r96,0r0,17r-96,0r0,61r-17,0r0,-61r-97,0r0,-17r97,0r0,-61r17,0","w":299},"\u2264":{"d":"253,-24r0,17r-207,0r0,-17r207,0xm253,-189r-177,59r177,60r0,18r-207,-70r0,-15r207,-71r0,19","w":299},"\u2265":{"d":"253,-24r0,17r-207,0r0,-17r207,0xm253,-137r0,15r-207,70r0,-18r178,-60r-178,-59r0,-19","w":299},"\u00a5":{"d":"150,-166r32,0r0,19r-43,0r-15,30r58,0r0,19r-68,0r0,98r-25,0r0,-98r-69,0r0,-19r59,0r-15,-30r-44,0r0,-19r33,0r-45,-88r28,0r66,131r65,-131r28,0","w":203},"\u00b5":{"d":"125,-24v-14,35,-86,38,-100,1r-20,98r-25,0r56,-262r24,0v-7,43,-20,81,-24,128v-4,47,54,55,77,24v26,-35,31,-103,45,-152r24,0r-33,159v0,10,8,12,19,11v-3,11,0,21,-19,21v-18,0,-25,-9,-24,-28","w":195},"\u2202":{"d":"22,-63v0,-64,90,-109,110,-41v4,-38,14,-107,-23,-112v-15,-2,-39,44,-50,13v1,-17,20,-29,39,-27v103,9,72,235,-19,235v-35,0,-57,-31,-57,-68xm79,-4v30,0,47,-41,46,-77v0,-26,-8,-46,-31,-46v-31,0,-47,41,-46,79v1,27,7,44,31,44","w":181},"\u2211":{"d":"9,-259r215,0r0,25r-179,0r124,135r-130,143r186,0r0,25r-223,0r0,-23r131,-145r-124,-135r0,-25","w":231},"\u220f":{"d":"28,-259r209,0r0,328r-30,0r0,-302r-149,0r0,302r-30,0r0,-328","w":265},"\u03c0":{"d":"-1,-143v7,-33,15,-43,54,-44r149,0r-5,21r-32,0r-26,128v-2,21,19,21,36,17v-2,13,-4,26,-22,24v-75,-8,-16,-116,-13,-169r-64,0r-35,166r-24,0r35,-166v-18,-1,-28,7,-30,23r-23,0","w":205},"\u222b":{"d":"8,43v-2,-22,32,-27,38,-8v1,3,1,14,6,13v12,0,17,-42,20,-126v4,-91,-4,-183,65,-194v29,-5,40,42,9,42v-14,3,-20,-20,-24,-25v-12,0,-16,37,-20,110v-5,95,8,201,-66,210v-15,2,-27,-9,-28,-22","w":173},"\u00aa":{"d":"82,-133v29,1,55,-27,55,-56v0,-27,-26,-54,-54,-54v-30,0,-56,25,-56,56v0,30,26,54,55,54xm8,-188v-6,-64,95,-96,129,-46r0,-22r19,0r0,135r-19,0r0,-21v-35,49,-136,20,-129,-46","w":170},"\u00ba":{"d":"81,-244v-29,-1,-54,26,-54,56v0,31,24,54,55,54v31,0,55,-24,55,-55v0,-32,-26,-55,-56,-55xm82,-117v-40,0,-75,-32,-75,-71v0,-39,36,-72,74,-72v40,0,77,33,76,70v0,40,-34,73,-75,73","w":163},"\u03a9":{"d":"257,-138v-2,54,-25,86,-60,114r60,0r0,24r-102,0r0,-22v42,-25,72,-60,74,-118v2,-57,-36,-102,-90,-102v-55,0,-91,45,-90,102v2,57,32,94,74,118r0,22r-102,0r0,-24r60,0v-34,-28,-59,-60,-60,-114v-2,-72,49,-128,118,-128v69,0,119,57,118,128","w":277},"\u00e6":{"d":"376,-60v-16,66,-127,88,-169,33r0,27r-25,0r0,-27v-18,20,-38,32,-73,32v-55,0,-99,-46,-99,-101v0,-90,119,-136,172,-70r0,-27r25,0r0,28v19,-20,42,-32,77,-33v60,0,100,47,98,110r-173,0v-2,75,117,94,139,28r28,0xm356,-110v-5,-56,-77,-86,-122,-48v-13,12,-20,28,-24,48r146,0xm110,-18v40,0,73,-39,73,-80v0,-39,-35,-77,-72,-77v-41,0,-75,37,-75,80v0,42,34,77,74,77","w":391,"k":{"\u203a":6,"\u2018":26,"\u201c":26,"\u00bb":6,";":6,":":6,".":13,",":13}},"\u00f8":{"d":"209,-98v0,76,-94,134,-157,85r-32,37r-15,-14r31,-37v-58,-56,-13,-172,73,-172v24,0,42,7,56,18r30,-36r16,13r-30,36v16,16,28,40,28,70xm67,-32v65,51,156,-45,99,-117xm150,-163v-65,-48,-155,46,-98,117","w":218,"k":{"\u203a":6,"\u2018":26,"\u201c":26,"\u00bb":6,";":6,":":6,".":13,",":13}},"\u00bf":{"d":"80,5v-74,0,-96,-102,-39,-138v17,-16,26,-27,27,-53r25,0v3,53,-56,71,-58,116v-1,29,17,50,46,49v33,0,47,-24,49,-57r26,0v1,48,-30,83,-76,83xm93,-256r0,47r-25,0r0,-47r25,0","w":166},"\u00a1":{"d":"39,-256r25,0r0,47r-25,0r0,-47xm39,-189r25,0r0,189r-25,0r0,-189","w":103},"\u00ac":{"d":"255,-151r0,88r-17,0r0,-70r-193,0r0,-18r210,0","w":299},"\u221a":{"d":"224,-288r0,13r-22,0r-104,282r-7,0r-58,-158r-20,7r-3,-10r43,-15r48,131r92,-250r31,0","w":224},"\u0192":{"d":"115,-132v-10,62,0,152,-32,191v-10,12,-31,16,-56,15r2,-24v33,1,45,-5,48,-36r13,-146r-45,0r2,-24r45,0v5,-61,5,-113,79,-104r-2,23v-53,-13,-47,39,-52,81r45,0r-2,24r-45,0","w":203},"\u2248":{"d":"201,-74v30,-1,45,-12,68,-28r0,20v-20,15,-39,23,-68,25v-21,1,-82,-25,-102,-24v-30,2,-44,12,-68,28r0,-20v22,-14,39,-23,68,-25v22,-2,81,26,102,24xm201,-134v30,-2,43,-12,68,-27r0,19v-21,15,-40,24,-68,26v-20,1,-81,-27,-102,-25v-29,3,-43,13,-68,28r0,-20v21,-14,40,-23,68,-25v22,-2,81,26,102,24","w":299},"\u2206":{"d":"200,-24r-82,-209r-82,209r164,0xm135,-259r103,259r-240,0r104,-259r33,0","w":236},"\u00ab":{"d":"117,-40r-44,-57r44,-56r24,0r-43,56r43,57r-24,0xm63,-40r-43,-57r43,-56r25,0r-44,56r44,57r-25,0","w":164,"k":{"\u0111":6,"\uf002":6,"\uf001":6,"\u0153":6,"\u00f8":6,"\u00e6":6,"x":13,"w":13,"v":13,"t":10,"o":6,"j":-7,"g":6,"f":6,"e":6,"d":6,"c":6,"a":6,"Z":6,"Y":26,"X":13,"W":20,"V":26,"U":10,"T":20,"J":6}},"\u00bb":{"d":"101,-40r-24,0r43,-57r-43,-56r24,0r43,56xm47,-40r-24,0r44,-57r-44,-56r24,0r44,56","w":164,"k":{"\u0142":6,"\uf002":6,"\uf001":6,"\u00c5":13,"z":13,"y":10,"x":20,"w":20,"v":20,"u":6,"t":13,"r":6,"p":6,"n":6,"m":6,"l":6,"k":6,"i":6,"h":6,"f":6,"b":6,"Z":13,"Y":40,"X":33,"W":26,"V":33,"U":6,"T":26,"S":13,"J":13,"A":13}},"\u2026":{"d":"72,0r-25,0r0,-47r25,0r0,47xm192,0r-25,0r0,-47r25,0r0,47xm312,0r-25,0r0,-47r25,0r0,47","w":360},"\u00a0":{"w":203},"\u00c0":{"d":"18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm153,-103r-48,-129r-48,129r96,0xm111,-281r-47,-62r26,0r37,62r-16,0","w":214},"\u00c3":{"d":"18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm153,-103r-48,-129r-48,129r96,0xm88,-321v21,0,44,20,53,-4r15,0v-5,36,-42,34,-72,23v-8,1,-13,6,-16,13r-14,0v4,-18,14,-32,34,-32","w":214},"\u00d5":{"d":"141,-237v-64,3,-101,47,-104,108v-3,59,47,110,106,110v58,0,103,-52,103,-111v0,-56,-49,-108,-105,-107xm141,5v-73,3,-133,-61,-130,-135v4,-78,51,-131,130,-131v80,0,131,53,131,131v0,82,-52,132,-131,135xm125,-321v21,0,44,20,53,-4r15,0v-5,36,-42,34,-72,23v-8,1,-13,6,-16,13r-14,0v4,-18,14,-32,34,-32","w":283},"\u0152":{"d":"141,-261v48,0,83,21,104,51r0,-46r133,0r0,25r-108,0r0,90r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-46v-26,31,-54,50,-104,51v-73,2,-133,-61,-130,-135v4,-78,51,-131,130,-131xm141,-237v-64,3,-101,47,-104,108v-3,59,47,110,106,110v58,0,103,-52,103,-111v0,-56,-49,-108,-105,-107","w":392,"k":{"\u203a":6,"\u2039":6,"\u00bb":6,"\u00ab":6,";":13,":":13,".":6,"-":6,",":6}},"\u0153":{"d":"284,-199v60,-1,100,48,98,111r-173,0v-2,75,117,94,139,28r28,0v-16,38,-45,65,-94,65v-44,0,-68,-22,-86,-52v-17,30,-43,51,-86,52v-56,2,-101,-47,-101,-102v0,-55,47,-103,101,-102v40,1,71,22,86,52v17,-30,46,-51,88,-52xm356,-110v-5,-57,-78,-87,-122,-47v-14,12,-22,27,-24,47r146,0xm107,-176v-40,0,-72,38,-72,79v0,42,33,79,75,79v42,0,73,-37,73,-79v0,-44,-32,-79,-76,-79","w":391,"k":{"\u203a":6,"\u2018":26,"\u201c":26,"\u00bb":6,";":6,":":6,".":13,",":13}},"\u2013":{"d":"180,-106r0,20r-180,0r0,-20r180,0"},"\u2014":{"d":"0,-86r0,-20r360,0r0,20r-360,0","w":360},"\u201c":{"d":"92,-181r-27,-75r25,0r27,75r-25,0xm41,-181r-27,-75r24,0r28,75r-25,0","w":121,"k":{"\u00d0":-7,"\u0142":-13,"\u0141":-7,"\uf002":-20,"\uf001":-20,"\u0152":-10,"\u00d8":-10,"\u00c6":33,"\u00df":-13,"\u00c5":20,"z":-13,"y":-27,"x":-13,"w":-20,"v":-20,"u":-13,"t":-20,"s":-7,"r":-13,"p":-13,"n":-13,"m":-13,"l":-13,"k":-13,"j":-13,"i":-13,"h":-13,"f":-20,"b":-13,"Z":-7,"Y":-17,"X":-7,"W":-20,"V":-20,"U":-7,"T":-7,"S":-10,"R":-7,"Q":-17,"P":-7,"O":-10,"N":-7,"M":-7,"L":-7,"K":-7,"J":46,"I":-7,"H":-7,"G":-10,"F":-7,"E":-7,"D":-7,"C":-10,"B":-7,"A":20}},"\u201d":{"d":"81,-181r-25,0r27,-75r25,0xm29,-181r-25,0r27,-75r26,0","w":121},"\u2018":{"d":"66,-181r-25,0r-27,-75r24,0","w":69,"k":{"\u00d0":-7,"\u0142":-13,"\u0141":-7,"\uf002":-20,"\uf001":-20,"\u0152":-10,"\u00d8":-10,"\u00c6":33,"\u00df":-13,"\u00c5":20,"z":-13,"y":-27,"x":-13,"w":-20,"v":-20,"u":-13,"t":-20,"s":-7,"r":-13,"p":-13,"n":-13,"m":-13,"l":-13,"k":-13,"j":-13,"i":-13,"h":-13,"f":-20,"b":-13,"Z":-7,"Y":-17,"X":-7,"W":-20,"V":-20,"U":-7,"T":-7,"S":-10,"R":-7,"Q":-17,"P":-7,"O":-10,"N":-7,"M":-7,"L":-7,"K":-7,"J":46,"I":-7,"H":-7,"G":-10,"F":-7,"E":-7,"D":-7,"C":-10,"B":-7,"A":20}},"\u2019":{"d":"29,-181r-25,0r27,-75r26,0","w":69},"\u00f7":{"d":"131,-45v0,-9,9,-20,19,-19v10,-1,19,10,19,19v0,9,-9,19,-19,18v-10,1,-19,-9,-19,-18xm255,-116r0,17r-210,0r0,-17r210,0xm131,-169v0,-9,9,-20,19,-19v10,-1,19,10,19,19v0,9,-10,19,-19,19v-9,0,-19,-10,-19,-19","w":299},"\u25ca":{"d":"89,-248r-68,144r68,145r68,-145xm89,-291r88,187r-88,188r-88,-188","w":177},"\u00ff":{"d":"-6,-193r29,0r59,157r63,-157r29,0r-105,256r-26,0r26,-63xm103,-231r0,-29r25,0r0,29r-25,0xm38,-231r0,-29r25,0r0,29r-25,0","w":165},"\u0178":{"d":"98,-94r0,94r-25,0r0,-94r-82,-162r29,0r66,133r66,-133r28,0xm106,-293r0,-29r25,0r0,29r-25,0xm41,-293r0,-29r25,0r0,29r-25,0","w":172},"\u2215":{"d":"-39,5r-21,0r159,-266r21,0","w":60},"\u00a4":{"d":"111,5v-57,0,-89,-34,-87,-99r-25,0r5,-19r20,0r0,-30r-24,0r5,-19r19,0v-12,-91,90,-125,147,-77v17,14,25,32,26,50r-26,0v-5,-30,-27,-50,-60,-50v-42,0,-65,31,-62,77r113,0r-5,19r-108,0r0,30r104,0r-4,19r-100,0v-3,46,20,77,62,77v34,0,53,-18,59,-47r26,0v-6,44,-39,69,-85,69","w":203},"\u2039":{"d":"63,-40r-43,-57r43,-56r25,0r-44,56r44,57r-25,0","w":110,"k":{"\u0111":6,"\uf002":6,"\uf001":6,"\u0153":6,"\u00f8":6,"\u00e6":6,"x":13,"w":13,"v":13,"t":10,"o":6,"j":-7,"g":6,"f":6,"e":6,"d":6,"c":6,"a":6,"Z":6,"Y":26,"X":13,"W":20,"V":26,"U":10,"T":20,"J":6}},"\u203a":{"d":"47,-40r-24,0r44,-57r-44,-56r24,0r44,56","w":110,"k":{"\u0142":6,"\uf002":6,"\uf001":6,"\u00c5":13,"z":13,"y":10,"x":20,"w":20,"v":20,"u":6,"t":13,"r":6,"p":6,"n":6,"m":6,"l":6,"k":6,"i":6,"h":6,"f":6,"b":6,"Z":13,"Y":40,"X":33,"W":26,"V":33,"U":6,"T":26,"S":13,"J":13,"A":13}},"\uf001":{"d":"118,0r0,-193r25,0r0,193r-25,0xm94,-237v-31,0,-41,12,-40,44r40,0r0,21r-40,0r0,172r-24,0r0,-172r-26,0r0,-21r25,0v-1,-46,20,-66,65,-66r0,22xm143,-216r-25,0r0,-40r25,0r0,40","w":167,"k":{"\u2039":6,"\u2019":-13,"\u201d":-13,"\u00ab":6,".":6,",":6}},"\uf002":{"d":"118,0r0,-256r25,0r0,256r-25,0xm94,-237v-31,0,-41,12,-40,44r40,0r0,21r-40,0r0,172r-24,0r0,-172r-26,0r0,-21r25,0v-1,-46,20,-66,65,-66r0,22","w":167,"k":{"\u2039":6,"\u2019":-13,"\u201d":-13,"\u00ab":6,".":6,",":6}},"\u2021":{"d":"76,41r0,-74r-64,0r0,-22r64,0r0,-105r-64,0r0,-22r64,0r0,-74r26,0r0,74r66,0r0,22r-66,0r0,105r66,0r0,22r-66,0r0,74r-26,0"},"\u00b7":{"d":"51,-112v-9,0,-16,-7,-16,-16v0,-10,7,-17,16,-17v21,0,20,33,0,33","w":101},"\u201a":{"d":"29,28r-25,0r27,-75r26,0","w":69,"k":{"\u00c6":-20,"\u00df":-7,"\u00c5":-13,"z":-10,"y":6,"x":-7,"w":13,"v":20,"t":6,"s":-10,"r":-7,"p":-13,"j":-20,"g":-7,"e":-7,"b":-7,"Y":33,"W":26,"V":26,"T":13,"J":-13,"A":-13}},"\u201e":{"d":"81,28r-25,0r27,-75r25,0xm29,28r-25,0r27,-75r26,0","w":121,"k":{"\u00c6":-20,"\u00df":-7,"\u00c5":-13,"z":-10,"y":6,"x":-7,"w":13,"v":20,"t":6,"s":-10,"r":-7,"p":-13,"j":-20,"g":-7,"e":-7,"b":-7,"Y":33,"W":26,"V":26,"T":13,"J":-13,"A":-13}},"\u2030":{"d":"78,-237v-22,0,-40,19,-40,40v0,21,19,40,40,40v21,0,40,-19,40,-40v0,-21,-18,-40,-40,-40xm79,-135v-35,0,-63,-28,-63,-63v0,-35,28,-63,63,-63v34,0,63,29,63,63v0,35,-28,63,-63,63xm394,-98v-21,0,-40,19,-40,40v0,21,19,40,40,40v22,0,40,-19,40,-40v0,-21,-19,-40,-40,-40xm395,5v-35,0,-63,-28,-63,-63v0,-34,28,-63,63,-63v34,0,63,29,63,63v0,35,-28,63,-63,63xm216,-261r21,0r-137,266r-20,0xm236,-98v-21,0,-40,19,-40,40v0,21,19,40,40,40v21,0,40,-19,40,-40v0,-22,-19,-40,-40,-40xm237,5v-35,0,-64,-28,-64,-63v0,-34,29,-63,64,-63v34,0,63,30,63,63v0,34,-28,63,-63,63","w":473},"\u00c2":{"d":"18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm153,-103r-48,-129r-48,129r96,0xm56,-281r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":214},"\u00ca":{"d":"49,-141r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-256r133,0r0,25r-108,0r0,90xm44,-281r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0"},"\u00c1":{"d":"18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm153,-103r-48,-129r-48,129r96,0xm99,-281r-16,0r37,-62r26,0","w":214},"\u00cb":{"d":"49,-141r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-256r133,0r0,25r-108,0r0,90xm113,-293r0,-29r25,0r0,29r-25,0xm48,-293r0,-29r25,0r0,29r-25,0"},"\u00c8":{"d":"49,-141r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-256r133,0r0,25r-108,0r0,90xm99,-281r-47,-62r26,0r37,62r-16,0"},"\u00cd":{"d":"49,0r-26,0r0,-256r26,0r0,256xm30,-281r-16,0r37,-62r26,0","w":72},"\u00ce":{"d":"49,0r-26,0r0,-256r26,0r0,256xm-13,-281r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":72},"\u00cf":{"d":"49,0r-26,0r0,-256r26,0r0,256xm56,-293r0,-29r25,0r0,29r-25,0xm-9,-293r0,-29r25,0r0,29r-25,0","w":72},"\u00cc":{"d":"49,0r-26,0r0,-256r26,0r0,256xm42,-281r-47,-62r26,0r37,62r-16,0","w":72},"\u00d3":{"d":"141,-237v-64,3,-101,47,-104,108v-3,59,47,110,106,110v58,0,103,-52,103,-111v0,-56,-49,-108,-105,-107xm141,5v-73,3,-133,-61,-130,-135v4,-78,51,-131,130,-131v80,0,131,53,131,131v0,82,-52,132,-131,135xm136,-281r-16,0r37,-62r26,0","w":283},"\u00d4":{"d":"141,-237v-64,3,-101,47,-104,108v-3,59,47,110,106,110v58,0,103,-52,103,-111v0,-56,-49,-108,-105,-107xm141,5v-73,3,-133,-61,-130,-135v4,-78,51,-131,130,-131v80,0,131,53,131,131v0,82,-52,132,-131,135xm93,-281r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":283},"\uf000":{"d":"205,-284v6,37,-31,78,-58,68v-2,-36,27,-63,58,-68xm224,-130v0,31,18,49,41,59v-21,43,-30,70,-72,77v-9,1,-35,-13,-45,-11v-9,-2,-37,13,-45,11v-54,-12,-79,-76,-83,-136v-3,-49,32,-86,79,-86v13,0,39,12,49,12v34,-14,91,-17,111,16v-20,14,-35,28,-35,58","w":284},"\u00d2":{"d":"141,-237v-64,3,-101,47,-104,108v-3,59,47,110,106,110v58,0,103,-52,103,-111v0,-56,-49,-108,-105,-107xm141,5v-73,3,-133,-61,-130,-135v4,-78,51,-131,130,-131v80,0,131,53,131,131v0,82,-52,132,-131,135xm148,-281r-47,-62r26,0r37,62r-16,0","w":283},"\u00da":{"d":"103,5v-120,0,-74,-155,-83,-261r25,0r0,162v-3,49,18,76,57,76v90,0,46,-152,56,-238r25,0v-8,105,34,261,-80,261xm96,-281r-16,0r37,-62r26,0","w":203},"\u00db":{"d":"103,5v-120,0,-74,-155,-83,-261r25,0r0,162v-3,49,18,76,57,76v90,0,46,-152,56,-238r25,0v-8,105,34,261,-80,261xm53,-281r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0","w":203},"\u00d9":{"d":"103,5v-120,0,-74,-155,-83,-261r25,0r0,162v-3,49,18,76,57,76v90,0,46,-152,56,-238r25,0v-8,105,34,261,-80,261xm108,-281r-47,-62r26,0r37,62r-16,0","w":203},"\u0131":{"d":"20,0r0,-193r25,0r0,193r-25,0","w":65},"\u02c6":{"d":"41,-219r36,-62r26,0r36,62r-17,0r-32,-47r-32,47r-17,0"},"\u02dc":{"d":"73,-259v21,0,44,20,53,-4r15,0v-5,36,-42,34,-72,23v-8,1,-13,6,-16,13r-14,0v4,-18,14,-32,34,-32"},"\u00af":{"d":"45,-237r0,-20r90,0r0,20r-90,0"},"\u02d8":{"d":"138,-273v5,46,-55,57,-83,35v-8,-7,-12,-19,-13,-35r14,0v1,19,14,25,34,25v22,0,32,-6,34,-25r14,0"},"\u02d9":{"d":"77,-232r0,-31r26,0r0,31r-26,0"},"\u02da":{"d":"90,-285v-14,0,-26,11,-26,27v0,14,11,26,26,26v14,0,26,-12,26,-26v0,-15,-12,-27,-26,-27xm90,-216v-23,1,-43,-19,-42,-42v0,-24,19,-43,42,-43v23,0,43,20,43,43v0,23,-20,42,-43,42"},"\u00b8":{"d":"112,50v1,-17,-14,-19,-33,-18r0,-32r11,0r0,20v25,-1,42,7,42,30v1,39,-54,33,-84,24r0,-14v23,4,62,16,64,-10"},"\u02dd":{"d":"100,-219r30,-62r23,0r-40,62r-13,0xm59,-219r26,-62r24,0r-37,62r-13,0"},"\u02db":{"d":"109,75v-64,11,-57,-58,-18,-75r11,0v-14,11,-24,24,-26,41v-2,16,16,17,33,16r0,18"},"\u02c7":{"d":"41,-281r17,0r32,46r32,-46r17,0r-36,61r-26,0"},"\u0141":{"d":"142,0r-116,0r0,-101r-26,19r0,-26r26,-18r0,-130r26,0r0,113r45,-32r0,26r-45,31r0,93r90,0r0,25","w":150,"k":{"\u201e":-7,"\u201a":-7,"\u203a":20,"\u2039":33,"\u2019":40,"\u2018":40,"\u201d":40,"\u201c":40,"\u00bb":20,"\u00ab":33,"y":20,"u":11,"o":11,"e":11,"a":11,"Y":20,"W":21,"V":33,"U":6,"T":15,"O":13,";":6,":":6,".":13,"-":26,",":13}},"\u0142":{"d":"23,0r0,-113r-23,16r0,-25r23,-16r0,-118r25,0r0,101r24,-16r0,25r-24,16r0,130r-25,0","w":68,"k":{"\u2039":6,"\u2019":-13,"\u201d":-13,"\u00ab":6,".":6,",":6}},"\u0160":{"d":"108,-142v78,21,51,147,-27,147v-43,0,-72,-34,-71,-78r24,0v1,30,18,51,47,52v30,0,49,-20,49,-52v0,-59,-121,-44,-113,-118v-6,-59,74,-93,114,-52v11,12,18,29,19,50r-24,0v-2,-26,-15,-43,-41,-44v-38,-2,-58,52,-28,75v7,5,39,17,51,20xm35,-343r17,0r32,46r32,-46r17,0r-36,61r-26,0","w":167},"\u0161":{"d":"95,-106v59,19,37,111,-26,111v-37,0,-61,-28,-61,-66v8,1,19,-2,25,1v-6,47,70,57,70,10v0,-54,-95,-33,-87,-94v-3,-46,63,-72,95,-40v10,9,15,22,16,39r-26,0v-2,-18,-12,-28,-31,-29v-29,-1,-37,42,-13,54v9,5,26,10,38,14xm21,-281r17,0r32,46r32,-46r17,0r-36,61r-26,0","w":140},"\u017d":{"d":"126,-231r-112,0r0,-25r142,0r0,24r-120,207r122,0r0,25r-151,0r0,-24xm33,-343r17,0r32,46r32,-46r17,0r-36,61r-26,0","w":164},"\u017e":{"d":"137,0r-133,0r0,-23r100,-147r-89,0r0,-23r117,0r0,26r-99,142r104,0r0,25xm24,-281r17,0r32,46r32,-46r17,0r-36,61r-26,0","w":145},"\u00a6":{"d":"100,-72r0,134r-19,0r0,-134r19,0xm100,-252r0,134r-19,0r0,-134r19,0"},"\u00d0":{"d":"205,-129v0,-82,-62,-113,-154,-103r0,92r63,0r0,23r-63,0r0,93r59,0v59,0,95,-44,95,-105xm232,-127v-5,80,-46,130,-139,127r-67,0r0,-117r-27,0r0,-23r27,0r0,-116r77,0v75,-1,133,55,129,129","w":242,"k":{"\u201e":20,"\u201a":20,"\u2019":-10,"\u2018":6,"\u201d":-10,"\u201c":6,";":6,":":6,".":20,"-":-7,",":20}},"\u00f0":{"d":"183,-93v0,-39,-33,-72,-75,-72v-39,0,-72,34,-72,74v0,41,33,74,74,73v41,0,74,-33,73,-75xm9,-90v0,-77,104,-126,164,-71v-8,-23,-23,-40,-40,-54r-47,17r-7,-14r39,-15r-28,-15r8,-16v17,7,30,14,43,23r51,-18r6,14r-42,15v30,29,52,67,53,120v2,62,-41,109,-100,109v-54,0,-100,-44,-100,-95","w":218},"\u00dd":{"d":"98,-94r0,94r-25,0r0,-94r-82,-162r29,0r66,133r66,-133r28,0xm80,-281r-16,0r37,-62r26,0","w":172},"\u00fd":{"d":"-6,-193r29,0r59,157r63,-157r29,0r-105,256r-26,0r26,-63xm77,-219r-16,0r37,-62r26,0","w":165},"\u00de":{"d":"143,-133v0,-48,-44,-51,-97,-48r0,97v51,2,97,0,97,-49xm171,-134v0,61,-55,83,-125,76r0,58r-25,0r0,-256r25,0r0,50v73,-6,125,11,125,72","w":181},"\u00fe":{"d":"191,-95v0,-44,-34,-80,-75,-80v-39,0,-72,37,-72,78v0,39,35,79,73,79v40,0,74,-36,74,-77xm117,5v-34,0,-59,-15,-73,-36r0,94r-25,0r0,-319r25,0r0,94v13,-20,40,-36,71,-36v57,-1,102,44,102,100v0,58,-43,103,-100,103","w":226},"\u2212":{"d":"255,-116r0,17r-210,0r0,-17r210,0","w":299},"\u00d7":{"d":"150,-120r85,-84r12,12r-84,85r84,84r-12,13r-85,-85r-84,85r-12,-13r84,-84r-84,-85r12,-12","w":299},"\u00b9":{"d":"78,-102r-17,0r0,-141r-30,0r0,-13r47,0r0,154","w":134},"\u00b2":{"d":"69,-259v36,0,67,39,45,72v-18,27,-53,48,-77,70r83,0r0,15r-105,0r0,-15v28,-31,77,-49,89,-94v1,-20,-15,-35,-36,-34v-23,0,-39,15,-36,41r-17,0v-2,-33,22,-55,54,-55","w":134},"\u00b3":{"d":"92,-193v48,16,29,94,-25,94v-33,0,-55,-18,-54,-50v5,1,14,-2,17,1v-1,20,16,36,36,36v22,0,38,-16,38,-36v-1,-28,-22,-37,-53,-36v1,-6,-4,-15,7,-12v41,7,44,-50,9,-50v-16,-1,-28,10,-27,26r-16,0v2,-23,18,-37,43,-39v37,-3,58,50,25,66","w":134},"\u00bc":{"d":"274,-40r1,-87r-60,87r59,0xm289,0r-15,0r0,-28r-76,0r0,-12r73,-103r18,0r0,103r18,0r0,12r-18,0r0,28xm89,5r-21,0r159,-266r21,0xm75,-113r-17,0r0,-131r-28,0r0,-12r45,0r0,143","w":316},"\u00bd":{"d":"254,-147v49,-2,61,59,24,89r-54,44r79,0r0,14r-100,0r0,-14v27,-29,75,-46,85,-88v0,-18,-17,-32,-35,-32v-22,1,-36,16,-35,39r-15,0v-2,-32,22,-51,51,-52xm89,5r-21,0r159,-266r21,0xm75,-113r-17,0r0,-131r-28,0r0,-12r45,0r0,143","w":316},"\u00be":{"d":"274,-40r1,-87r-60,87r59,0xm289,0r-15,0r0,-28r-76,0r0,-12r73,-103r18,0r0,103r18,0r0,12r-18,0r0,28xm89,5r-21,0r159,-266r21,0xm89,-197v45,17,26,87,-26,87v-31,0,-51,-16,-51,-46v5,1,13,-2,16,1v-1,19,16,33,35,33v21,0,36,-13,36,-33v-1,-26,-21,-36,-50,-34r0,-12v20,4,39,-3,39,-23v0,-14,-12,-23,-24,-23v-15,0,-26,8,-26,24r-15,0v0,-46,81,-47,81,-1v-1,14,-6,20,-15,27","w":316},"\u20a3":{"d":"24,0r0,-256r126,0r0,25r-101,0r0,90r101,0r0,25r-101,0r0,116r-25,0xm262,-169v-69,2,-35,106,-43,169r-25,0r0,-193r23,0r0,22v11,-15,22,-24,45,-25r0,27","w":264},"\u011e":{"d":"37,-129v0,85,101,145,169,87v19,-15,30,-34,36,-58r-129,0r0,-23r159,0v-2,71,-59,128,-131,128v-73,0,-130,-61,-130,-135v0,-102,109,-163,200,-113v20,11,35,29,47,51r-31,0v-20,-26,-43,-44,-84,-45v-57,-1,-106,50,-106,108xm190,-335v5,46,-55,57,-83,35v-8,-7,-12,-19,-13,-35r14,0v1,19,14,25,34,25v22,0,32,-6,34,-25r14,0","w":283},"\u011f":{"d":"206,-32v18,114,-151,147,-182,48r29,0v7,22,28,35,56,36v47,0,75,-36,73,-86v-44,74,-173,29,-173,-63v0,-55,44,-102,99,-101v36,0,58,14,74,36r0,-31r24,0r0,161xm109,-175v-41,0,-73,35,-73,77v0,43,31,79,73,79v37,0,73,-37,73,-76v0,-41,-32,-80,-73,-80xm161,-273v5,46,-55,57,-83,35v-8,-7,-12,-19,-13,-35r14,0v1,19,14,25,34,25v22,0,32,-6,34,-25r14,0","w":225},"\u0130":{"d":"49,0r-26,0r0,-256r26,0r0,256xm23,-294r0,-31r26,0r0,31r-26,0","w":72},"\u015e":{"d":"108,-142v78,21,51,147,-27,147v-43,0,-72,-34,-71,-78r24,0v1,30,18,51,47,52v30,0,49,-20,49,-52v0,-59,-121,-44,-113,-118v-6,-59,74,-93,114,-52v11,12,18,29,19,50r-24,0v-2,-26,-15,-43,-41,-44v-38,-2,-58,52,-28,75v7,5,39,17,51,20xm106,50v1,-17,-14,-19,-33,-18r0,-32r11,0r0,20v25,-1,42,7,42,30v1,39,-54,33,-84,24r0,-14v23,4,62,16,64,-10","w":167},"\u015f":{"d":"95,-106v59,19,37,111,-26,111v-37,0,-61,-28,-61,-66v8,1,19,-2,25,1v-6,47,70,57,70,10v0,-54,-95,-33,-87,-94v-3,-46,63,-72,95,-40v10,9,15,22,16,39r-26,0v-2,-18,-12,-28,-31,-29v-29,-1,-37,42,-13,54v9,5,26,10,38,14xm92,50v1,-17,-14,-19,-33,-18r0,-32r11,0r0,20v25,-1,42,7,42,30v1,39,-54,33,-84,24r0,-14v23,4,62,16,64,-10","w":140},"\u0106":{"d":"143,5v-116,8,-173,-149,-92,-229v36,-35,110,-50,159,-18v20,12,36,29,48,52r-30,0v-20,-27,-44,-46,-87,-46v-55,-1,-104,51,-104,107v0,59,46,111,104,110v41,-1,66,-17,85,-44r30,0v-20,39,-59,64,-113,68xm135,-281r-16,0r37,-62r26,0","w":270},"\u0107":{"d":"10,-96v0,-77,90,-133,156,-86v16,11,28,27,36,48r-27,0v-14,-25,-32,-41,-67,-41v-41,-1,-72,36,-72,78v0,42,31,80,73,79v33,-1,54,-18,66,-42r27,0v-14,39,-44,64,-92,65v-55,2,-100,-47,-100,-101xm103,-219r-16,0r37,-62r26,0","w":218},"\u010c":{"d":"143,5v-116,8,-173,-149,-92,-229v36,-35,110,-50,159,-18v20,12,36,29,48,52r-30,0v-20,-27,-44,-46,-87,-46v-55,-1,-104,51,-104,107v0,59,46,111,104,110v41,-1,66,-17,85,-44r30,0v-20,39,-59,64,-113,68xm92,-343r17,0r32,46r32,-46r17,0r-36,61r-26,0","w":270},"\u010d":{"d":"10,-96v0,-77,90,-133,156,-86v16,11,28,27,36,48r-27,0v-14,-25,-32,-41,-67,-41v-41,-1,-72,36,-72,78v0,42,31,80,73,79v33,-1,54,-18,66,-42r27,0v-14,39,-44,64,-92,65v-55,2,-100,-47,-100,-101xm60,-281r17,0r32,46r32,-46r17,0r-36,61r-26,0","w":218},"\u0111":{"d":"111,-18v37,1,72,-38,72,-77v0,-41,-34,-80,-73,-80v-39,0,-74,36,-74,77v0,44,34,80,75,80xm109,-198v33,0,59,15,75,35r-2,-47r-51,0r0,-19r51,0r0,-27r25,0r0,27r27,0r0,19r-27,0r0,210r-24,0r0,-29v-16,19,-42,33,-74,34v-55,2,-99,-47,-99,-102v0,-56,45,-101,99,-101","w":229,"k":{"\u2039":6,"\u2019":-13,"\u201d":-13,"\u00ab":6,".":6,",":6}},"\u00ad":{"d":"99,-108r0,23r-82,0r0,-23r82,0","w":115},"\u2219":{"d":"51,-112v-9,0,-16,-7,-16,-16v0,-10,7,-17,16,-17v21,0,20,33,0,33","w":101},"\u20ac":{"d":"111,5v-57,0,-89,-34,-87,-99r-25,0r5,-19r20,0r0,-30r-24,0r5,-19r19,0v-12,-91,90,-125,147,-77v17,14,25,32,26,50r-26,0v-5,-30,-27,-50,-60,-50v-42,0,-65,31,-62,77r113,0r-5,19r-108,0r0,30r104,0r-4,19r-100,0v-3,46,20,77,62,77v34,0,53,-18,59,-47r26,0v-6,44,-39,69,-85,69","w":203}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1998 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":180,"face":{"font-family":"AvantGarde","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 2 2 2 2 2 2 4","ascent":"274","descent":"-86","x-height":"5","bbox":"-60 -344 451 85","underline-thickness":"34.2773","underline-position":"-17.2266","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":104},"!":{"d":"77,-70r-45,0r0,-186r45,0r0,186xm77,0r-45,0r0,-48r45,0r0,48","w":110},"\"":{"d":"69,-252r29,0r0,97r-29,0r0,-97xm15,-252r29,0r0,97r-29,0r0,-97","w":113},"#":{"d":"125,-150r-16,45r45,0r16,-45r-45,0xm129,-257r34,0r-27,77r44,0r27,-77r33,0r-27,77r52,0r-11,30r-51,0r-16,45r54,0r-11,30r-54,0r-27,76r-34,0r28,-76r-44,0r-28,76r-34,0r28,-76r-53,0r11,-30r52,0r16,-45r-55,0r10,-30r56,0","w":276},"$":{"d":"133,-151v69,18,63,135,-5,147r0,46r-42,0r0,-44v-37,-9,-59,-35,-60,-78r47,1v1,20,10,33,31,33v27,0,39,-35,23,-53v-31,-20,-98,-26,-94,-83v3,-37,22,-61,53,-71r0,-38r42,0r0,39v31,7,48,30,50,65r-44,0v0,-13,-12,-24,-27,-24v-24,0,-39,26,-24,42v6,7,37,15,50,18","w":209},"%":{"d":"79,-135v-37,0,-63,-26,-63,-63v0,-37,26,-63,63,-63v37,0,63,26,63,63v0,37,-26,63,-63,63xm79,-227v-16,0,-30,14,-30,29v0,15,14,29,30,29v16,0,29,-13,29,-29v0,-16,-13,-29,-29,-29xm212,-261r29,0r-137,266r-28,0xm237,-88v-15,-1,-30,15,-30,30v0,15,15,31,30,30v15,0,29,-15,29,-30v0,-15,-14,-30,-29,-30xm237,5v-38,0,-64,-25,-64,-63v0,-37,26,-63,64,-63v37,0,63,26,63,63v0,38,-26,63,-63,63","w":315},"&":{"d":"150,-201v-1,28,-18,46,-39,59r37,34r23,-62r46,0r-37,89r59,51r-31,34r-51,-47v-14,27,-36,47,-72,48v-41,1,-78,-35,-76,-77v2,-36,19,-55,45,-73v-48,-32,-26,-116,37,-116v31,0,60,30,59,60xm81,-112v-34,10,-39,73,3,73v20,0,32,-16,40,-33xm89,-220v-28,2,-26,42,-2,51v25,-6,33,-48,2,-51","w":234},"'":{"d":"15,-252r29,0r0,97r-29,0r0,-97","w":58},"(":{"d":"92,78v-46,-16,-75,-49,-75,-108v0,-68,-12,-149,19,-191v13,-18,31,-31,56,-40r0,49v-44,23,-29,108,-29,171v0,39,6,54,29,70r0,49","w":106},")":{"d":"43,-41v0,-63,16,-150,-29,-171r0,-49v46,16,76,48,76,107v0,68,12,150,-19,192v-13,18,-32,31,-57,40r0,-49v24,-15,29,-30,29,-70","w":106},"*":{"d":"90,-159r-32,44r-25,-18r34,-43r-50,-14r9,-30r49,16r0,-52r30,0r0,52r48,-16r10,30r-50,13r33,44r-25,19"},"+":{"d":"135,-215r30,0r0,93r90,0r0,29r-90,0r0,93r-30,0r0,-93r-90,0r0,-29r90,0r0,-93","w":299},",":{"d":"30,20v11,-2,15,-7,15,-20r-15,0r0,-48r45,0v0,46,7,97,-45,94r0,-26","w":104},"-":{"d":"107,-117r0,41r-91,0r0,-41r91,0","w":122,"k":{"\u0153":-7,"\u0152":-13,"\u00f8":-7,"\u00d8":-13,"\u00c6":-10,"\u00c5":-10,"o":-7,"Y":24,"X":13,"W":20,"V":21,"T":20,"O":-13,"J":-20,"G":-13,"C":-7,"A":-10}},".":{"d":"75,0r-45,0r0,-48r45,0r0,48","w":104},"\/":{"d":"17,33r-25,0r84,-289r24,0","w":100},"0":{"d":"105,-215v-55,-3,-40,73,-40,125v0,31,10,48,39,49v57,2,36,-77,40,-129v2,-31,-13,-44,-39,-45xm104,5v-56,0,-89,-32,-89,-95r0,-76v0,-64,31,-95,90,-95v56,0,89,32,89,95r0,76v0,64,-31,95,-90,95","w":209},"1":{"d":"137,0r-48,0r0,-218r-45,0r0,-38r93,0r0,256","w":209},"2":{"d":"107,-261v57,0,104,61,73,115v-22,39,-69,68,-101,100r109,0r0,46r-169,0r0,-48v37,-37,83,-69,113,-111v17,-23,3,-57,-27,-56v-22,0,-33,18,-32,43v-16,-1,-36,2,-50,-1v-1,-51,33,-88,84,-88","w":209},"3":{"d":"104,5v-52,-3,-85,-34,-84,-87v15,2,37,-4,48,2v0,22,14,39,35,39v24,0,39,-19,39,-44v1,-30,-23,-43,-55,-39r0,-43v22,3,39,-4,38,-26v0,-15,-8,-23,-22,-23v-14,0,-19,10,-20,24r-45,0v0,-40,28,-69,68,-69v57,0,88,83,39,112v74,26,46,160,-41,154","w":209},"4":{"d":"128,-81r0,-107r-68,107r68,0xm172,0r-44,0r0,-39r-113,0r0,-42r111,-175r46,0r0,175r21,0r0,42r-21,0r0,39","w":209},"5":{"d":"143,-87v0,-43,-60,-60,-77,-26r-42,-10r24,-133r121,0r0,44r-88,0r-8,44v55,-31,120,22,120,81v0,78,-95,120,-152,69v-17,-16,-27,-37,-29,-62r48,0v2,21,20,39,42,39v24,1,41,-22,41,-46","w":209},"6":{"d":"105,-130v-23,0,-42,19,-42,43v0,24,18,46,41,46v24,0,42,-19,42,-44v0,-26,-17,-45,-41,-45xm104,5v-64,0,-108,-61,-82,-125v17,-43,59,-95,84,-136r52,0r-58,88v53,-16,98,33,95,83v-3,53,-35,90,-91,90","w":209},"7":{"d":"91,0r-51,0r95,-211r-100,0r0,-45r147,0r0,48","w":209},"8":{"d":"105,-218v-13,0,-24,11,-24,26v0,14,9,25,23,25v17,0,24,-10,24,-25v0,-15,-8,-26,-23,-26xm103,-113v-21,0,-34,16,-34,37v0,20,16,37,35,37v20,0,36,-16,36,-37v0,-22,-15,-37,-37,-37xm19,-78v0,-34,17,-50,41,-65v-56,-29,-21,-125,44,-118v65,-8,103,90,44,118v25,12,42,31,42,65v1,48,-37,83,-87,83v-47,0,-85,-36,-84,-83","w":209},"9":{"d":"104,-126v23,0,43,-20,43,-43v1,-25,-19,-47,-42,-46v-24,0,-43,20,-42,45v0,25,18,43,41,44xm105,-261v65,0,108,61,83,126v-16,43,-59,94,-85,135r-52,0r58,-87v-55,13,-98,-34,-95,-84v3,-53,36,-90,91,-90","w":209},":":{"d":"77,-137r-45,0r0,-48r45,0r0,48xm77,0r-45,0r0,-48r45,0r0,48","w":110},";":{"d":"32,20v13,-1,15,-7,15,-20r-15,0r0,-48r45,0v0,46,8,97,-44,94xm77,-137r-45,0r0,-48r45,0r0,48","w":110},"<":{"d":"253,-207r0,33r-164,67r164,67r0,32r-207,-85r0,-28","w":299},"=":{"d":"45,-86r210,0r0,29r-210,0r0,-29xm45,-158r210,0r0,29r-210,0r0,-29","w":299},">":{"d":"46,-207r207,86r0,28r-207,85r0,-32r165,-67r-165,-67r0,-33","w":299},"?":{"d":"173,-182v0,47,-62,62,-60,112r-45,0v-2,-48,36,-65,53,-97v5,-27,-6,-50,-32,-49v-18,0,-31,18,-31,38r-47,0v-1,-47,34,-83,81,-83v47,0,81,34,81,79xm68,0r0,-48r45,0r0,48r-45,0","w":183},"@":{"d":"243,-20v-23,1,-37,-8,-37,-30v-11,18,-26,30,-53,30v-37,0,-54,-22,-55,-59v-1,-50,35,-99,83,-98v23,0,34,9,43,25r10,-19r27,0r-27,112v0,8,7,15,16,14v42,-6,63,-44,64,-89v2,-62,-54,-102,-119,-100v-92,2,-143,56,-149,143v-8,121,164,150,243,87r12,17v-31,23,-69,40,-119,40v-97,0,-165,-50,-165,-145v0,-105,72,-167,179,-167v85,0,147,42,147,125v0,63,-36,110,-100,114xm130,-78v0,36,39,46,60,24v22,-23,46,-99,-6,-101v-33,-1,-54,41,-54,77","w":360},"A":{"d":"137,-101r-30,-83r-31,83r61,0xm58,-54r-20,54r-51,0r99,-256r43,0r98,256r-54,0r-20,-54r-95,0","w":216,"k":{"\u201e":-27,"\u201a":-27,"\u2039":13,"\u2019":33,"\u2018":36,"\u201d":33,"\u201c":36,"\u0152":6,"\u00ab":13,"\u00d8":6,"Y":13,"W":6,"V":6,"T":15,"S":-10,"Q":6,"O":6,"G":6,"C":6,"A":-20,";":-7,":":-7,".":-7,",":-7}},"B":{"d":"117,-183v0,-25,-19,-29,-47,-28r0,58v28,1,47,-5,47,-30xm130,-76v1,-31,-26,-38,-60,-36r0,67v32,1,60,-2,60,-31xm179,-78v2,79,-73,82,-157,78r0,-256v74,-4,143,1,143,68v0,25,-9,41,-26,50v24,7,39,30,40,60","w":185,"k":{"\u2039":-7,"\u2019":6,"\u201d":6,"\u00ab":-7,"-":-10}},"C":{"d":"11,-130v-2,-103,113,-164,202,-111v20,12,36,34,49,61r-61,0v-13,-18,-32,-30,-61,-30v-47,0,-75,34,-77,81v-1,44,33,84,77,83v27,0,47,-11,59,-27r61,0v-22,47,-57,78,-119,78v-79,0,-127,-53,-130,-135","w":270,"k":{"\u2019":-10,"\u201d":-10,"-":-8}},"D":{"d":"186,-128v0,-65,-43,-91,-114,-84r0,168v73,6,114,-14,114,-84xm237,-127v0,79,-40,130,-129,127r-87,0r0,-256r86,0v89,-2,130,46,130,129","w":246,"k":{"\u201e":20,"\u201a":20,"\u00c5":6,"Y":6,"W":6,"V":6,"A":6,"-":-11}},"E":{"d":"159,0r-138,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45"},"F":{"d":"21,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,108r-50,0","w":173,"k":{"\u201e":66,"\u201a":66,"\u2039":6,"\u2019":-7,"\u201d":-7,"\u00ab":6,"\u00c5":10,"u":6,"r":6,"i":6,"A":10,";":15,":":15,".":58,",":58}},"G":{"d":"63,-128v0,83,123,113,151,35r-101,0r0,-43r160,0v4,86,-53,136,-131,141v-119,8,-169,-151,-91,-229v36,-36,118,-50,165,-17v20,13,35,33,46,59r-60,0v-13,-16,-33,-28,-60,-28v-44,-1,-79,38,-79,82","w":283,"k":{"\u201e":6,"\u201a":6,"Y":13,"T":6,"-":-8}},"H":{"d":"71,-104r0,104r-50,0r0,-256r50,0r0,104r83,0r0,-104r50,0r0,256r-50,0r0,-104r-83,0","w":225,"k":{".":6,",":6}},"I":{"d":"22,0r0,-256r50,0r0,256r-50,0","w":93},"J":{"d":"69,-45v21,-2,22,-19,22,-46r0,-165r51,0v-9,102,37,261,-72,261v-46,0,-70,-27,-70,-74v16,1,36,-2,50,1v0,13,6,24,19,23","w":162,"k":{"\u201e":13,"\u201a":13,"-":6}},"K":{"d":"72,-127r77,-129r56,0r-82,127r82,129r-56,0xm71,0r-50,0r0,-256r50,0r0,256","w":200,"k":{"\u201e":-11,"\u201a":-11,"\u2039":16,"\u0153":6,"\u0152":13,"\u00ab":16,"\u00f8":6,"\u00e6":6,"\u00d8":13,"y":6,"u":6,"o":6,"e":6,"a":6,"W":6,"T":-7,"O":13,"C":13,"-":18}},"L":{"d":"151,0r-130,0r0,-256r50,0r0,211r80,0r0,45","w":158,"k":{"\u2039":6,"\u2019":48,"\u2018":46,"\u201d":48,"\u201c":46,"\u0153":6,"\u0152":13,"\u00ab":6,"\u00f8":6,"\u00e6":6,"\u00d8":13,"\u00c5":-13,"y":13,"u":6,"o":6,"e":6,"a":6,"Y":20,"W":20,"V":23,"U":6,"T":13,"O":13,"A":-13,"-":6}},"M":{"d":"71,0r-50,0r0,-256r67,0r65,186r64,-186r67,0r0,256r-50,0r2,-186r-65,186r-37,0r-65,-186","w":304},"N":{"d":"70,0r-49,0r0,-256r48,0r106,164r0,-164r49,0r0,256r-47,0r-107,-168r0,168","w":245},"O":{"d":"143,-209v-42,0,-81,35,-80,79v2,50,32,81,79,83v44,2,79,-38,79,-83v0,-43,-36,-79,-78,-79xm142,5v-81,0,-132,-53,-132,-133v0,-81,53,-133,133,-133v77,0,130,53,130,131v0,81,-51,135,-131,135","w":283,"k":{"\u201e":20,"\u201a":20,"\u2019":6,"\u201d":6,"\u00c5":6,"Y":6,"X":13,"V":6,"A":6,";":-7,":":-7,".":15,"-":-10,",":15}},"P":{"d":"128,-176v0,-30,-24,-37,-57,-35r0,69v32,2,57,-5,57,-34xm180,-179v0,55,-45,87,-109,81r0,98r-50,0r0,-256r64,0v62,-3,95,24,95,77","w":185,"k":{"\u201e":79,"\u201a":79,"\u203a":6,"\u2039":13,"\u2019":-8,"\u2018":-13,"\u201d":-8,"\u201c":-13,"\u0153":11,"\u00bb":6,"\u00ab":13,"\u00f8":11,"\u00e6":11,"\u00c5":15,"s":6,"r":6,"o":11,"n":6,"i":6,"e":11,"a":11,"A":15,";":6,":":6,".":79,"-":15,",":79}},"Q":{"d":"65,-115v53,-17,105,8,138,37v43,-45,4,-133,-61,-133v-47,0,-91,47,-77,96xm174,-54v-27,-18,-56,-33,-97,-28v17,27,59,45,97,28xm278,4v-29,1,-48,-7,-68,-18v-18,12,-41,19,-70,19v-119,0,-169,-154,-89,-229v23,-21,50,-37,91,-37v81,0,133,53,133,134v0,37,-12,64,-32,84v10,5,20,7,35,6r0,41","w":283},"R":{"d":"144,-175v0,-38,-33,-40,-73,-39r0,83v41,1,73,-7,73,-44xm194,-176v0,41,-26,70,-61,77r64,99r-60,0r-66,-119r0,119r-50,0r0,-256v89,-3,173,-4,173,80","w":204,"k":{"\u203a":6,"\u2039":6,"\u0153":6,"\u00bb":6,"\u00ab":6,"\u00f8":6,"\u00e6":6,"u":6,"o":6,"e":6,"a":6,"-":10}},"S":{"d":"112,-151v85,20,55,156,-29,156v-47,0,-78,-35,-77,-84r46,-1v-2,23,10,40,30,40v20,0,33,-14,33,-34v0,-38,-70,-39,-87,-64v-33,-48,-2,-123,59,-123v44,0,67,31,70,74v-14,-2,-35,4,-45,-2v0,-16,-11,-27,-27,-28v-24,-1,-35,30,-20,47v4,7,34,15,47,19","w":172,"k":{"\u00c5":-7,"A":-7}},"T":{"d":"149,-256r0,45r-49,0r0,211r-50,0r0,-211r-48,0r0,-45r147,0","w":150,"k":{"\u201e":20,"\u201a":20,"\u203a":20,"\u2039":33,"\u0153":16,"\u00bb":20,"\u00ab":33,"\u00f8":16,"\u00e6":16,"\u00c5":15,"y":16,"w":16,"u":16,"s":15,"r":10,"o":16,"e":16,"c":16,"a":16,"C":6,"A":15,";":23,":":23,".":33,"-":20,",":33}},"U":{"d":"104,5v-59,-3,-83,-32,-83,-99r0,-162r50,0r0,148v1,37,2,61,33,61v31,0,31,-23,32,-61r0,-148r50,0v-7,108,35,266,-82,261","w":207},"V":{"d":"120,0r-36,0r-92,-256r54,0r56,171r56,-171r53,0","w":204,"k":{"\u201e":40,"\u201a":40,"\u203a":20,"\u2039":40,"\u2019":-10,"\u201d":-10,"\u0153":20,"\u0152":6,"\u00bb":20,"\u00ab":40,"\u00f8":20,"\u00e6":20,"\u00d8":6,"\u00c5":6,"y":6,"u":16,"o":20,"e":20,"a":20,"O":6,"A":6,";":18,":":18,".":46,"-":23,",":46}},"W":{"d":"-5,-256r51,0r42,166r46,-166r35,0r46,166r42,-166r51,0r-74,256r-40,0r-42,-160r-44,160r-39,0","w":303,"k":{"\u201e":26,"\u201a":26,"\u203a":20,"\u2039":20,"\u2019":-7,"\u201d":-7,"\u0153":11,"\u00bb":20,"\u00ab":20,"\u00f8":11,"\u00e6":11,"\u00c5":6,"u":6,"r":6,"o":11,"i":-7,"e":11,"a":11,"A":6,";":15,":":15,".":31,"-":21,",":31}},"X":{"d":"105,-90r-51,90r-57,0r82,-129r-80,-127r57,0r49,89r50,-89r56,0r-79,127r81,129r-56,0","w":210,"k":{"\u201e":-13,"\u201a":-13,"\u203a":13,"\u2039":20,"\u2018":13,"\u201c":13,"\u0152":13,"\u00bb":13,"\u00ab":20,"\u00d8":13,"e":6,"O":13,"C":13,"-":18}},"Y":{"d":"113,-92r0,92r-50,0r0,-92r-73,-164r55,0r44,110r44,-110r55,0","w":177,"k":{"\u201e":33,"\u201a":33,"\u203a":26,"\u2039":40,"\u2019":-13,"\u201d":-13,"\u0153":20,"\u0152":6,"\u00bb":26,"\u00ab":40,"\u00f8":20,"\u00e6":20,"\u00d8":6,"\u00c5":13,"u":20,"o":20,"e":20,"a":20,"O":6,"C":6,"A":13,";":18,":":18,".":41,"-":29,",":41}},"Z":{"d":"166,0r-161,0r0,-44r101,-164r-94,0r0,-48r151,0r0,41r-103,168r106,0r0,47","w":171,"k":{"\u201e":-13,"\u201a":-13,"\u2018":6,"\u201c":6,"-":6}},"[":{"d":"65,-216r0,248r33,0r0,40r-78,0r0,-328r78,0r0,40r-33,0","w":106},"\\":{"d":"83,33r-83,-289r24,0r84,289r-25,0","w":100},"]":{"d":"42,-216r-34,0r0,-40r79,0r0,328r-79,0r0,-40r34,0r0,-248","w":106},"^":{"d":"161,-257r38,0r87,99r-36,0r-70,-70r-70,70r-37,0","w":360},"_":{"d":"0,55r180,0r0,30r-180,0r0,-30"},"`":{"d":"116,-218r-23,0r-52,-62r39,0"},"a":{"d":"110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58xm108,-198v29,0,48,11,60,28r0,-23r44,0r0,193r-43,0r0,-24v-10,19,-30,28,-60,28v-57,0,-103,-46,-101,-102v2,-60,38,-98,100,-100","w":231},"b":{"d":"118,-154v-31,0,-56,27,-55,58v0,30,23,56,53,56v33,0,59,-25,59,-57v0,-31,-27,-57,-57,-57xm221,-97v6,84,-98,131,-160,81r0,16r-44,0r0,-256r44,0r0,78v15,-13,34,-20,61,-20v60,0,95,42,99,101","w":231},"c":{"d":"9,-97v-4,-86,98,-129,164,-82v17,13,28,31,34,54r-48,0v-20,-48,-110,-33,-104,28v-7,58,89,79,104,26r48,0v-11,44,-45,76,-96,76v-61,0,-100,-40,-102,-102","w":218},"d":{"d":"115,-40v30,0,53,-26,53,-56v0,-33,-23,-58,-55,-58v-29,0,-57,27,-56,57v0,31,25,57,58,57xm10,-97v-4,-81,98,-129,160,-81r0,-78r45,0r0,256r-45,0r0,-16v-16,13,-34,21,-60,21v-61,0,-96,-43,-100,-102","w":231},"e":{"d":"162,-118v-8,-51,-96,-52,-105,0r105,0xm55,-82v0,49,81,59,100,20r48,0v-14,38,-45,68,-93,67v-61,-2,-101,-40,-101,-102v0,-60,40,-102,99,-102v65,0,105,43,102,117r-155,0","w":218,"k":{"x":6}},"f":{"d":"105,-218v-21,0,-33,4,-32,25r32,0r0,40r-33,0r0,153r-43,0r0,-153r-23,0r0,-40r21,0v-2,-50,26,-68,78,-66r0,41","w":106,"k":{"\u201e":6,"\u201a":6,"\u2019":-15,"\u2018":-25,"\u201d":-15,"\u201c":-25,"y":-7,"w":-7,"t":-7,".":13,",":13}},"g":{"d":"8,-97v-8,-87,110,-134,165,-73r0,-23r40,0r0,161v17,118,-164,148,-193,42r43,0v23,50,120,28,110,-37v-16,16,-37,27,-66,27v-59,0,-94,-40,-99,-97xm111,-158v-31,0,-59,27,-58,58v0,33,26,59,59,59v29,1,57,-27,57,-57v0,-32,-27,-60,-58,-60","w":231},"h":{"d":"106,-153v-62,0,-37,94,-42,153r-44,0r0,-256r44,0r0,85v13,-16,26,-26,52,-26v92,-4,74,108,75,197r-45,0v-6,-58,21,-153,-40,-153","w":209},"i":{"d":"64,-213r-44,0r0,-43r44,0r0,43xm20,0r0,-193r44,0r0,193r-44,0","w":84},"j":{"d":"-3,19v23,-1,24,-8,24,-35r0,-177r44,0r0,186v2,57,-16,72,-68,69r0,-43xm65,-213r-44,0r0,-43r44,0r0,43","w":88},"k":{"d":"63,0r-43,0r0,-256r43,0r0,152r63,-89r51,0r-67,91r80,102r-56,0r-71,-98r0,98","w":178,"k":{"\u0153":6,"\u00f8":6,"\u00e6":6,"o":6,"e":6,"a":6}},"l":{"d":"20,0r0,-256r44,0r0,256r-44,0","w":84},"m":{"d":"64,-171v23,-39,103,-31,120,8v14,-19,29,-34,58,-34v91,0,72,109,73,197r-44,0v-6,-57,21,-153,-39,-153v-61,0,-37,94,-42,153r-44,0v-6,-58,21,-153,-40,-153v-62,0,-37,94,-42,153r-44,0r0,-193r44,0r0,22","w":334},"n":{"d":"106,-153v-62,0,-37,94,-42,153r-44,0r0,-193r44,0r0,22v13,-16,26,-26,52,-26v92,-3,74,106,75,197r-45,0v-6,-58,21,-153,-40,-153","w":209,"k":{"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6}},"o":{"d":"110,-155v-32,-1,-55,24,-55,57v0,36,20,58,55,58v34,0,54,-25,54,-59v1,-32,-23,-56,-54,-56xm109,5v-62,0,-101,-42,-101,-103v0,-60,41,-101,100,-101v61,0,103,40,103,100v0,64,-40,104,-102,104","w":219,"k":{"\u2018":6,"\u201c":6,"x":6,".":6,"-":-7,",":6}},"p":{"d":"116,-154v-29,0,-53,27,-53,56v-1,32,24,58,55,58v31,0,57,-26,57,-57v0,-32,-27,-57,-59,-57xm221,-96v4,82,-97,129,-160,81r0,78r-44,0r0,-256r44,0r0,16v16,-13,34,-20,60,-21v63,1,97,42,100,102","w":231},"q":{"d":"113,-40v33,0,55,-25,55,-58v0,-30,-24,-56,-53,-56v-32,0,-58,26,-58,57v-1,30,26,57,56,57xm110,-198v26,0,44,8,60,21r0,-16r45,0r0,256r-45,0r0,-78v-62,48,-165,0,-160,-81v4,-58,37,-101,100,-102","w":231},"r":{"d":"110,-154v-69,-2,-41,92,-47,154r-45,0r0,-193r42,0r0,22v13,-15,26,-24,50,-25r0,42","w":108,"k":{"\u201e":15,"\u201a":15,"\uf002":-13,"\uf001":-13,"\u2019":-25,"\u2018":-20,"\u201d":-25,"\u201c":-20,"z":-7,"y":-13,"x":-13,"w":-13,"v":-13,"u":-7,"t":-13,"r":-7,"n":-7,"m":-7,"h":-7,"f":-13,".":23,",":23}},"s":{"d":"136,-57v5,55,-75,83,-109,43v-11,-12,-18,-29,-19,-50v13,2,32,-4,41,2v-4,32,46,40,46,8v0,-44,-78,-25,-78,-86v0,-49,65,-77,99,-43v10,10,16,23,17,41v-13,-1,-30,2,-41,-1v0,-12,-6,-20,-18,-19v-10,0,-17,8,-17,18v13,33,88,31,79,87","w":146},"t":{"d":"34,0r0,-153r-30,0r0,-40r30,0r0,-63r45,0r0,63r30,0r0,40r-30,0r0,153r-45,0","w":110},"u":{"d":"104,-38v60,0,37,-95,42,-155r44,0r0,193r-44,0r0,-21v-13,16,-26,26,-52,26v-50,0,-76,-33,-75,-86r0,-112r45,0v6,59,-21,155,40,155","w":209},"v":{"d":"104,0r-35,0r-74,-193r48,0r45,128r47,-128r46,0","w":174,"k":{".":28,",":28}},"w":{"d":"126,-117r-32,117r-30,0r-67,-193r49,0r31,111r34,-111r33,0r33,111r31,-111r49,0r-68,193r-29,0","w":253,"k":{"\u201e":21,"\u201a":21,"\u2019":-7,"\u2018":-17,"\u201d":-7,"\u201c":-17,".":26,",":26}},"x":{"d":"81,-62r-40,62r-50,0r66,-100r-58,-93r50,0r34,55r34,-55r53,0r-62,91r62,102r-51,0","w":164,"k":{"\u0153":6,"\u00f8":6,"o":6,"e":6,"c":6}},"y":{"d":"-4,-193r48,0r47,135r52,-135r47,0r-105,256r-46,0r27,-68","w":184,"k":{"\u201e":33,"\u201a":33,"\u2019":-7,"\u2018":-13,"\u201d":-7,"\u201c":-13,".":31,"-":6,",":31}},"z":{"d":"6,0r0,-41r86,-111r-79,0r0,-41r128,0r0,48r-81,102r86,0r0,43r-140,0","w":151},"{":{"d":"77,-198v-2,-56,24,-63,77,-62r0,32v-81,-21,-4,130,-77,135v42,4,36,51,36,97v0,32,9,39,41,38r0,31v-52,1,-77,-6,-77,-61v0,-48,7,-98,-49,-90r0,-31v54,8,51,-40,49,-89"},"|":{"d":"75,-275r31,0r0,360r-31,0r0,-360"},"}":{"d":"103,-93v-76,-6,8,-151,-76,-135r0,-32v52,-1,76,7,76,62v0,48,-8,97,49,89r0,31v-55,-8,-51,40,-49,90v2,55,-24,62,-76,61r0,-31v82,18,1,-129,76,-135"},"~":{"d":"99,-134v35,-2,75,23,103,23v28,-1,46,-12,67,-27r0,33v-20,13,-40,23,-67,24v-34,1,-78,-25,-103,-23v-29,2,-46,12,-68,28r0,-33v20,-13,40,-24,68,-25","w":299},"\u00c4":{"d":"137,-101r-30,-83r-31,83r61,0xm58,-54r-20,54r-51,0r99,-256r43,0r98,256r-54,0r-20,-54r-95,0xm121,-289r0,-41r36,0r0,41r-36,0xm59,-289r0,-41r36,0r0,41r-36,0","w":216},"\u00c5":{"d":"108,-264v-21,0,-41,-19,-41,-40v0,-21,20,-40,41,-40v21,0,40,19,40,40v0,21,-19,40,-40,40xm108,-323v-9,0,-20,9,-19,19v-1,10,10,19,19,19v9,0,19,-9,18,-19v1,-10,-9,-19,-18,-19xm137,-101r-30,-83r-31,83r61,0xm58,-54r-20,54r-51,0r99,-254r43,0r98,254r-54,0r-20,-54r-95,0","w":216,"k":{"\u201e":-27,"\u201a":-27,"\u2039":13,"\u2019":33,"\u2018":36,"\u201d":33,"\u201c":36,"\u0152":6,"\u00ab":13,"\u00d8":6,"Y":13,"W":6,"V":6,"T":15,"S":-10,"Q":6,"O":6,"G":6,"C":6,";":-7,":":-7,".":-7,",":-7}},"\u00c7":{"d":"11,-130v-2,-103,113,-164,202,-111v20,12,36,34,49,61r-61,0v-13,-18,-32,-30,-61,-30v-47,0,-75,34,-77,81v-1,44,33,84,77,83v27,0,47,-11,59,-27r61,0v-22,47,-57,78,-119,78v-79,0,-127,-53,-130,-135xm186,50v1,42,-58,37,-91,26r0,-21v21,5,58,19,64,-5v0,-15,-16,-14,-33,-14r0,-36r16,0r0,17v27,-1,44,8,44,33","w":270},"\u00c9":{"d":"159,0r-138,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45xm64,-280r36,-62r39,0r-52,62r-23,0"},"\u00d1":{"d":"70,0r-49,0r0,-256r48,0r106,164r0,-164r49,0r0,256r-47,0r-107,-168r0,168xm104,-327v18,0,49,19,54,-5r18,0v-4,41,-37,45,-73,32v-9,0,-13,4,-15,12r-18,0v3,-22,13,-39,34,-39","w":245},"\u00d6":{"d":"143,-209v-42,0,-81,35,-80,79v2,50,32,81,79,83v44,2,79,-38,79,-83v0,-43,-36,-79,-78,-79xm142,5v-81,0,-132,-53,-132,-133v0,-81,53,-133,133,-133v77,0,130,53,130,131v0,81,-51,135,-131,135xm155,-289r0,-41r36,0r0,41r-36,0xm93,-289r0,-41r36,0r0,41r-36,0","w":283},"\u00dc":{"d":"104,5v-59,-3,-83,-32,-83,-99r0,-162r50,0r0,148v1,37,2,61,33,61v31,0,31,-23,32,-61r0,-148r50,0v-7,108,35,266,-82,261xm117,-289r0,-41r36,0r0,41r-36,0xm55,-289r0,-41r36,0r0,41r-36,0","w":207},"\u00e1":{"d":"110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58xm108,-198v29,0,48,11,60,28r0,-23r44,0r0,193r-43,0r0,-24v-10,19,-30,28,-60,28v-57,0,-103,-46,-101,-102v2,-60,38,-98,100,-100xm90,-218r36,-62r39,0r-52,62r-23,0","w":231},"\u00e0":{"d":"110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58xm108,-198v29,0,48,11,60,28r0,-23r44,0r0,193r-43,0r0,-24v-10,19,-30,28,-60,28v-57,0,-103,-46,-101,-102v2,-60,38,-98,100,-100xm142,-218r-23,0r-52,-62r39,0","w":231},"\u00e2":{"d":"110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58xm108,-198v29,0,48,11,60,28r0,-23r44,0r0,193r-43,0r0,-24v-10,19,-30,28,-60,28v-57,0,-103,-46,-101,-102v2,-60,38,-98,100,-100xm64,-218r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":231},"\u00e4":{"d":"110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58xm108,-198v29,0,48,11,60,28r0,-23r44,0r0,193r-43,0r0,-24v-10,19,-30,28,-60,28v-57,0,-103,-46,-101,-102v2,-60,38,-98,100,-100xm129,-227r0,-41r36,0r0,41r-36,0xm67,-227r0,-41r36,0r0,41r-36,0","w":231},"\u00e3":{"d":"110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58xm108,-198v29,0,48,11,60,28r0,-23r44,0r0,193r-43,0r0,-24v-10,19,-30,28,-60,28v-57,0,-103,-46,-101,-102v2,-60,38,-98,100,-100xm97,-265v18,0,49,19,54,-5r18,0v-4,41,-37,45,-73,32v-9,0,-13,4,-15,12r-18,0v3,-22,13,-39,34,-39","w":231},"\u00e5":{"d":"109,-268v-9,0,-19,10,-19,19v0,9,9,20,19,19v10,1,19,-10,19,-19v0,-9,-10,-19,-19,-19xm109,-208v-21,0,-40,-20,-40,-41v0,-21,19,-40,40,-40v21,0,40,18,40,40v0,22,-18,41,-40,41xm108,-198v29,0,48,11,60,28r0,-23r44,0r0,193r-43,0r0,-24v-10,19,-30,28,-60,28v-57,0,-103,-46,-101,-102v2,-60,38,-98,100,-100xm110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58","w":231},"\u00e7":{"d":"9,-97v-4,-86,98,-129,164,-82v17,13,28,31,34,54r-48,0v-20,-48,-110,-33,-104,28v-7,58,89,79,104,26r48,0v-11,44,-45,76,-96,76v-61,0,-100,-40,-102,-102xm156,50v1,42,-58,37,-91,26r0,-21v21,5,58,19,64,-5v0,-15,-16,-14,-33,-14r0,-36r16,0r0,17v27,-1,44,8,44,33","w":218},"\u00e9":{"d":"162,-118v-8,-51,-96,-52,-105,0r105,0xm55,-82v0,49,81,59,100,20r48,0v-14,38,-45,68,-93,67v-61,-2,-101,-40,-101,-102v0,-60,40,-102,99,-102v65,0,105,43,102,117r-155,0xm83,-218r36,-62r39,0r-52,62r-23,0","w":218},"\u00e8":{"d":"162,-118v-8,-51,-96,-52,-105,0r105,0xm55,-82v0,49,81,59,100,20r48,0v-14,38,-45,68,-93,67v-61,-2,-101,-40,-101,-102v0,-60,40,-102,99,-102v65,0,105,43,102,117r-155,0xm135,-218r-23,0r-52,-62r39,0","w":218},"\u00ea":{"d":"162,-118v-8,-51,-96,-52,-105,0r105,0xm55,-82v0,49,81,59,100,20r48,0v-14,38,-45,68,-93,67v-61,-2,-101,-40,-101,-102v0,-60,40,-102,99,-102v65,0,105,43,102,117r-155,0xm57,-218r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":218},"\u00eb":{"d":"162,-118v-8,-51,-96,-52,-105,0r105,0xm55,-82v0,49,81,59,100,20r48,0v-14,38,-45,68,-93,67v-61,-2,-101,-40,-101,-102v0,-60,40,-102,99,-102v65,0,105,43,102,117r-155,0xm122,-227r0,-41r36,0r0,41r-36,0xm60,-227r0,-41r36,0r0,41r-36,0","w":218},"\u00ed":{"d":"20,0r0,-193r44,0r0,193r-44,0xm16,-218r36,-62r39,0r-52,62r-23,0","w":84},"\u00ec":{"d":"20,0r0,-193r44,0r0,193r-44,0xm68,-218r-23,0r-52,-62r39,0","w":84},"\u00ee":{"d":"20,0r0,-193r44,0r0,193r-44,0xm-10,-218r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":84},"\u00ef":{"d":"20,0r0,-193r44,0r0,193r-44,0xm55,-227r0,-41r36,0r0,41r-36,0xm-7,-227r0,-41r36,0r0,41r-36,0","w":84},"\u00f1":{"d":"106,-153v-62,0,-37,94,-42,153r-44,0r0,-193r44,0r0,22v13,-16,26,-26,52,-26v92,-3,74,106,75,197r-45,0v-6,-58,21,-153,-40,-153xm86,-265v18,0,49,19,54,-5r18,0v-4,41,-37,45,-73,32v-9,0,-13,4,-15,12r-18,0v3,-22,13,-39,34,-39","w":209},"\u00f3":{"d":"110,-155v-32,-1,-55,24,-55,57v0,36,20,58,55,58v34,0,54,-25,54,-59v1,-32,-23,-56,-54,-56xm109,5v-62,0,-101,-42,-101,-103v0,-60,41,-101,100,-101v61,0,103,40,103,100v0,64,-40,104,-102,104xm84,-218r36,-62r39,0r-52,62r-23,0","w":219},"\u00f2":{"d":"110,-155v-32,-1,-55,24,-55,57v0,36,20,58,55,58v34,0,54,-25,54,-59v1,-32,-23,-56,-54,-56xm109,5v-62,0,-101,-42,-101,-103v0,-60,41,-101,100,-101v61,0,103,40,103,100v0,64,-40,104,-102,104xm136,-218r-23,0r-52,-62r39,0","w":219},"\u00f4":{"d":"110,-155v-32,-1,-55,24,-55,57v0,36,20,58,55,58v34,0,54,-25,54,-59v1,-32,-23,-56,-54,-56xm109,5v-62,0,-101,-42,-101,-103v0,-60,41,-101,100,-101v61,0,103,40,103,100v0,64,-40,104,-102,104xm58,-218r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":219},"\u00f6":{"d":"110,-155v-32,-1,-55,24,-55,57v0,36,20,58,55,58v34,0,54,-25,54,-59v1,-32,-23,-56,-54,-56xm109,5v-62,0,-101,-42,-101,-103v0,-60,41,-101,100,-101v61,0,103,40,103,100v0,64,-40,104,-102,104xm123,-227r0,-41r36,0r0,41r-36,0xm61,-227r0,-41r36,0r0,41r-36,0","w":219},"\u00f5":{"d":"110,-155v-32,-1,-55,24,-55,57v0,36,20,58,55,58v34,0,54,-25,54,-59v1,-32,-23,-56,-54,-56xm109,5v-62,0,-101,-42,-101,-103v0,-60,41,-101,100,-101v61,0,103,40,103,100v0,64,-40,104,-102,104xm91,-265v18,0,49,19,54,-5r18,0v-4,41,-37,45,-73,32v-9,0,-13,4,-15,12r-18,0v3,-22,13,-39,34,-39","w":219},"\u00fa":{"d":"104,-38v60,0,37,-95,42,-155r44,0r0,193r-44,0r0,-21v-13,16,-26,26,-52,26v-50,0,-76,-33,-75,-86r0,-112r45,0v6,59,-21,155,40,155xm79,-218r36,-62r39,0r-52,62r-23,0","w":209},"\u00f9":{"d":"104,-38v60,0,37,-95,42,-155r44,0r0,193r-44,0r0,-21v-13,16,-26,26,-52,26v-50,0,-76,-33,-75,-86r0,-112r45,0v6,59,-21,155,40,155xm131,-218r-23,0r-52,-62r39,0","w":209},"\u00fb":{"d":"104,-38v60,0,37,-95,42,-155r44,0r0,193r-44,0r0,-21v-13,16,-26,26,-52,26v-50,0,-76,-33,-75,-86r0,-112r45,0v6,59,-21,155,40,155xm53,-218r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":209},"\u00fc":{"d":"104,-38v60,0,37,-95,42,-155r44,0r0,193r-44,0r0,-21v-13,16,-26,26,-52,26v-50,0,-76,-33,-75,-86r0,-112r45,0v6,59,-21,155,40,155xm118,-227r0,-41r36,0r0,41r-36,0xm56,-227r0,-41r36,0r0,41r-36,0","w":209},"\u2020":{"d":"69,41r0,-188r-59,0r0,-33r59,0r0,-76r42,0r0,76r59,0r0,33r-59,0r0,188r-42,0"},"\u00b0":{"d":"92,-205v0,-18,-15,-32,-33,-32v-18,-1,-33,14,-32,32v0,18,14,33,32,33v18,0,33,-15,33,-33xm8,-204v0,-29,23,-54,51,-53v28,0,52,25,52,53v0,28,-24,51,-52,51v-27,0,-51,-22,-51,-51","w":118},"\u00a2":{"d":"12,-127v0,-51,31,-90,75,-100r0,-38r39,0r0,37v39,8,63,35,71,74r-47,0v-19,-61,-92,-29,-92,27v0,32,19,60,49,60v22,-1,37,-15,43,-34r47,0v-8,39,-33,66,-71,75r0,40r-39,0r0,-40v-41,-11,-75,-51,-75,-101","w":209},"\u00a3":{"d":"101,-113v12,19,19,50,7,71v32,7,53,-23,44,-56r45,0v11,69,-34,110,-108,100r-73,-2r0,-43r41,0v19,-16,7,-55,-8,-70r-38,0r0,-41r18,0v-27,-78,71,-139,135,-89v15,12,24,28,28,49r-52,0v-7,-33,-68,-26,-65,10v1,11,4,20,9,30r70,0r0,41r-53,0","w":209},"\u00a7":{"d":"63,-148v-23,13,-14,40,14,47r39,20v20,-10,16,-37,-7,-43xm140,-66v43,35,10,111,-49,107v-43,-3,-70,-22,-71,-64r44,0v-3,32,52,37,52,6v-13,-41,-108,-41,-107,-100v1,-23,13,-38,31,-47v-39,-32,-8,-97,49,-97v40,0,66,22,66,60r-41,0v-1,-16,-10,-23,-26,-24v-19,-1,-31,19,-16,31v31,23,99,30,99,82v0,24,-12,39,-31,46"},"\u2022":{"d":"106,-82v-28,0,-52,-24,-52,-52v0,-28,24,-52,52,-52v28,0,52,24,52,52v0,28,-24,52,-52,52","w":212},"\u00b6":{"d":"10,-199v0,-73,87,-61,160,-61r0,17r-20,0r0,243r-23,0r0,-243r-29,0r0,243r-23,0r0,-138v-37,-1,-65,-23,-65,-61"},"\u00df":{"d":"134,5v-36,0,-59,-19,-70,-46r0,41r-44,0v9,-103,-37,-260,77,-260v65,0,102,78,56,117v33,9,56,31,56,70v1,42,-32,79,-75,78xm165,-72v0,-35,-31,-41,-70,-40r0,-38v23,1,36,-15,36,-37v0,-20,-14,-37,-33,-36v-58,3,-26,101,-34,155r24,0v3,48,78,41,77,-4","w":216,"k":{"\u2019":23,"\u2018":20,"\u201d":23,"\u201c":20,"-":-10}},"\u00ae":{"d":"182,-160v0,-25,-28,-24,-54,-24r0,46v26,0,54,2,54,-22xm215,-164v0,22,-14,36,-33,40r33,66r-35,0r-29,-61r-23,0r0,61r-31,0r0,-146v51,1,117,-9,118,40xm261,-127v0,-67,-44,-112,-111,-112v-67,0,-111,46,-111,111v0,65,44,110,109,110v67,0,113,-42,113,-109xm20,-128v0,-77,51,-130,130,-130v79,0,130,52,130,130v0,78,-53,130,-130,130v-77,0,-130,-53,-130,-130","w":299},"\u00a9":{"d":"112,-128v-12,54,65,77,72,26r29,0v-1,32,-29,52,-63,52v-43,0,-70,-32,-70,-77v0,-64,64,-102,114,-67v12,8,17,21,18,35r-29,0v-2,-17,-16,-27,-34,-27v-27,1,-37,27,-37,58xm261,-128v0,-67,-44,-111,-111,-111v-68,0,-111,46,-111,111v0,65,45,110,111,110v66,0,111,-44,111,-110xm20,-128v0,-77,51,-130,130,-130v79,0,130,52,130,130v0,78,-53,130,-130,130v-77,0,-130,-53,-130,-130","w":299},"\u2122":{"d":"142,-257r30,0r25,64r23,-64r30,0r0,96r-20,0r0,-76r-28,76r-10,0r-30,-76r0,76r-20,0r0,-96xm40,-257r82,0r0,17r-30,0r0,79r-23,0r0,-79r-29,0r0,-17","w":299},"\u00b4":{"d":"64,-218r36,-62r39,0r-52,62r-23,0"},"\u00a8":{"d":"103,-227r0,-41r36,0r0,41r-36,0xm41,-227r0,-41r36,0r0,41r-36,0"},"\u2260":{"d":"212,-213r21,18r-30,37r52,0r0,29r-71,0r-34,44r105,0r0,28r-124,0r-44,55r-21,-17r29,-38r-50,0r0,-28r69,0r35,-44r-104,0r0,-29r123,0","w":299},"\u00c6":{"d":"142,0r0,-68r-74,0r-33,68r-57,0r137,-256r164,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45r-137,0xm142,-116r0,-91r-7,0r-44,91r51,0","w":299,"k":{"\u2019":16,"\u2018":6,"\u201d":16,"\u201c":6,"-":-7}},"\u00d8":{"d":"177,-201v-70,-35,-148,46,-101,116xm103,-57v68,42,155,-46,103,-119xm273,-130v6,108,-119,169,-204,113r-40,45r-29,-26r40,-46v-18,-23,-30,-48,-30,-87v0,-102,115,-162,200,-110r37,-42r30,26r-36,42v20,22,30,48,32,85","w":283,"k":{"\u201e":20,"\u201a":20,"\u2019":6,"\u201d":6,"\u00c5":6,"Y":6,"X":13,"V":6,"A":6,";":-7,":":-7,".":15,"-":-10,",":15}},"\u221e":{"d":"247,-108v0,-33,-37,-52,-60,-28v-7,8,-16,20,-24,38v12,37,84,40,84,-10xm53,-107v0,33,37,52,60,28v7,-8,16,-19,24,-37v-11,-37,-84,-40,-84,9xm209,-37v-31,0,-41,-20,-57,-46v-14,25,-27,46,-57,46v-34,0,-58,-33,-58,-70v0,-38,20,-71,54,-71v31,0,41,21,57,46v14,-26,27,-45,59,-46v32,-1,56,35,56,70v0,38,-20,71,-54,71","w":299},"\u00b1":{"d":"45,-32r210,0r0,30r-210,0r0,-30xm135,-212r30,0r0,59r90,0r0,29r-90,0r0,58r-30,0r0,-58r-90,0r0,-29r90,0r0,-59","w":299},"\u2264":{"d":"46,-31r208,0r0,29r-208,0r0,-29xm254,-215r0,31r-156,50r156,51r0,31r-208,-69r0,-25","w":299},"\u2265":{"d":"46,-31r209,0r0,29r-209,0r0,-29xm46,-215r208,69r0,25r-208,69r0,-31r156,-51r-156,-50r0,-31","w":299},"\u00a5":{"d":"203,-255r-32,70r26,0r0,30r-40,0r-14,30r54,0r0,31r-69,0r0,94r-48,0r0,-94r-69,0r0,-31r54,0r-13,-30r-41,0r0,-30r27,0r-31,-70r51,0r47,112r46,-112r52,0","w":209},"\u00b5":{"d":"127,-19v-13,28,-68,34,-86,6r-17,89r-40,0r52,-266r40,0r-24,130v-4,40,48,44,66,19v22,-31,28,-102,39,-149r40,0r-29,153v-1,11,7,13,18,12r-6,27v-21,7,-57,6,-53,-21","w":212},"\u2202":{"d":"16,-66v0,-69,92,-111,117,-46v4,-31,20,-94,-15,-99v-19,-3,-55,41,-63,5v1,-18,26,-30,49,-29v47,1,70,49,70,102v0,68,-34,136,-93,137v-39,1,-65,-32,-65,-70xm81,-7v30,0,43,-44,43,-82v0,-25,-7,-42,-28,-42v-30,0,-43,43,-43,82v0,24,7,42,28,42","w":188},"\u2211":{"d":"11,-259r225,0r0,40r-162,0r114,120r-117,128r172,0r0,40r-237,0r0,-28r125,-138r-120,-127r0,-35","w":249},"\u220f":{"d":"27,-259r223,0r0,328r-50,0r0,-285r-123,0r0,285r-50,0r0,-328","w":277},"\u03c0":{"d":"200,0v-33,7,-73,3,-71,-33v1,-22,15,-92,21,-123r-47,0r-30,156r-40,0r30,-156v-20,-2,-27,6,-29,23r-31,0v8,-41,15,-57,60,-57r168,0r-7,34r-34,0r-20,110v-3,20,19,20,35,16","w":240},"\u222b":{"d":"32,15v20,-1,17,19,25,30v12,0,17,-40,21,-121v4,-99,0,-187,76,-197v34,-5,51,49,12,50v-15,1,-20,-9,-21,-23v0,-5,-2,-7,-5,-7v-12,0,-18,36,-21,108v-4,98,7,197,-76,210v-35,6,-49,-48,-11,-50","w":196},"\u00aa":{"d":"82,-228v-22,0,-41,18,-41,39v0,22,19,40,42,40v21,0,40,-19,40,-39v0,-21,-20,-40,-41,-40xm6,-189v-5,-61,85,-95,120,-50r0,-17r33,0r0,135r-32,0r0,-16v-35,45,-129,6,-121,-52","w":173},"\u00ba":{"d":"82,-229v-23,0,-42,16,-41,40v1,25,15,41,41,41v25,0,41,-17,41,-42v0,-22,-18,-39,-41,-39xm82,-117v-46,0,-76,-29,-76,-72v0,-42,31,-71,75,-71v44,0,77,27,77,70v0,46,-30,73,-76,73","w":164},"\u03a9":{"d":"259,-145v-1,52,-19,80,-49,108r53,0r0,37r-105,0r0,-40v34,-20,56,-54,57,-105v0,-47,-31,-83,-77,-83v-47,-1,-78,36,-77,85v0,48,24,84,57,103r0,40r-106,0r0,-37r54,0v-29,-27,-48,-56,-49,-105v-1,-72,49,-124,121,-124v70,0,122,52,121,121","w":275},"\u00e6":{"d":"211,-82v-2,49,80,60,99,21r49,0v-16,39,-46,66,-96,67v-31,0,-49,-14,-59,-36r0,30r-34,0r0,-30v-10,22,-28,34,-59,34v-59,1,-105,-44,-103,-102v2,-60,38,-100,100,-100v32,0,50,11,62,34r0,-29r34,0r0,29v12,-20,33,-35,64,-34v61,0,101,49,97,116r-154,0xm317,-118v-8,-49,-97,-52,-105,0r105,0xm110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58","w":373,"k":{"x":6}},"\u00f8":{"d":"133,-150v-49,-23,-98,31,-71,83xm8,-97v-1,-79,84,-126,153,-88r28,-33r27,21r-29,35v53,59,9,173,-78,167v-22,-1,-36,-5,-51,-14r-28,34r-26,-22r29,-34v-14,-18,-25,-37,-25,-66xm87,-44v52,20,95,-31,70,-83","w":219,"k":{"\u2018":6,"\u201c":6,"x":6,".":6,"-":-7,",":6}},"\u00bf":{"d":"17,-78v0,-46,61,-64,60,-113r45,0v4,55,-49,63,-54,110v-3,22,13,35,34,36v19,0,32,-17,31,-38r47,0v0,48,-33,83,-81,83v-47,0,-82,-33,-82,-78xm122,-261r0,49r-45,0r0,-49r45,0","w":183},"\u00a1":{"d":"32,-186r45,0r0,186r-45,0r0,-186xm32,-256r45,0r0,49r-45,0r0,-49","w":110},"\u00ac":{"d":"45,-152r210,0r0,89r-29,0r0,-59r-181,0r0,-30","w":299},"\u221a":{"d":"198,-294r35,0r0,19r-19,0r-104,282r-15,0r-55,-153r-23,9r-5,-17r53,-19r44,121","w":232},"\u0192":{"d":"126,-116v-15,83,19,209,-104,189r4,-45v32,0,42,-3,45,-36r9,-108r-43,0r4,-41r43,0v1,-70,17,-113,96,-104r-3,45v-43,-6,-46,21,-47,59r46,0r-4,41r-46,0","w":209},"\u2248":{"d":"202,-77v30,-1,44,-11,67,-27r0,33v-22,14,-39,22,-68,24v-20,2,-81,-25,-102,-23v-30,2,-45,11,-68,27r0,-32v21,-14,40,-22,68,-25v24,-2,83,24,103,23xm201,-145v31,-1,45,-11,68,-27r0,32v-21,15,-39,24,-68,25v-20,2,-81,-27,-102,-24v-29,3,-43,13,-68,28r0,-32v21,-15,39,-24,68,-26v23,-2,83,25,102,24","w":299},"\u2206":{"d":"123,-210r-67,173r133,0xm100,-259r45,0r101,259r-247,0","w":245},"\u00ab":{"d":"169,-153r-43,56r43,57r-35,0r-43,-57r43,-56r35,0xm101,-153r-43,56r43,57r-35,0r-44,-57r44,-56r35,0","w":195,"k":{"\u00c6":-7,"Y":26,"X":13,"W":20,"V":20,"T":20,"J":-7}},"\u00bb":{"d":"95,-153r35,0r43,56r-43,57r-35,0r43,-57xm27,-153r35,0r43,56r-43,57r-35,0r43,-57","w":195,"k":{"\u00c5":13,"Y":40,"X":20,"W":20,"V":40,"T":33,"J":-13,"A":13}},"\u2026":{"d":"83,0r-45,0r0,-48r45,0r0,48xm202,0r-45,0r0,-48r45,0r0,48xm323,0r-45,0r0,-48r45,0r0,48","w":360},"\u00a0":{"w":209},"\u00c0":{"d":"137,-101r-30,-83r-31,83r61,0xm58,-54r-20,54r-51,0r99,-256r43,0r98,256r-54,0r-20,-54r-95,0xm134,-280r-23,0r-52,-62r39,0","w":216},"\u00c3":{"d":"137,-101r-30,-83r-31,83r61,0xm58,-54r-20,54r-51,0r99,-256r43,0r98,256r-54,0r-20,-54r-95,0xm89,-327v18,0,49,19,54,-5r18,0v-4,41,-37,45,-73,32v-9,0,-13,4,-15,12r-18,0v3,-22,13,-39,34,-39","w":216},"\u00d5":{"d":"143,-209v-42,0,-81,35,-80,79v2,50,32,81,79,83v44,2,79,-38,79,-83v0,-43,-36,-79,-78,-79xm142,5v-81,0,-132,-53,-132,-133v0,-81,53,-133,133,-133v77,0,130,53,130,131v0,81,-51,135,-131,135xm123,-327v18,0,49,19,54,-5r18,0v-4,41,-37,45,-73,32v-9,0,-13,4,-15,12r-18,0v3,-22,13,-39,34,-39","w":283},"\u0152":{"d":"142,-260v36,-1,60,14,79,34r0,-30r137,0r0,45r-89,0r0,58r89,0r0,45r-89,0r0,63r89,0r0,45r-137,0r0,-29v-20,19,-44,34,-81,33v-83,-2,-130,-55,-130,-135v0,-78,53,-126,132,-129xm221,-130v0,-43,-36,-79,-78,-79v-44,0,-83,36,-81,80v2,47,33,80,80,82v44,2,79,-38,79,-83","w":377},"\u0153":{"d":"211,-82v-2,49,80,60,99,21r49,0v-14,37,-47,67,-94,67v-36,0,-61,-15,-78,-37v-18,21,-42,36,-78,36v-61,0,-97,-42,-100,-103v-6,-96,129,-133,179,-64v53,-71,193,-31,177,80r-154,0xm317,-118v-8,-49,-97,-52,-105,0r105,0xm110,-155v-32,-1,-55,24,-55,57v0,35,21,57,55,58v34,1,54,-25,54,-59v0,-31,-23,-56,-54,-56","w":373,"k":{"x":6}},"\u2013":{"d":"180,-114r0,34r-180,0r0,-34r180,0"},"\u2014":{"d":"0,-80r0,-34r360,0r0,34r-360,0","w":360},"\u201c":{"d":"134,-235v-11,1,-16,6,-15,20r15,0r0,49r-45,0v0,-46,-8,-99,45,-95r0,26xm67,-235v-11,2,-15,7,-15,20r15,0r0,49r-45,0v0,-47,-7,-98,45,-95r0,26","w":152,"k":{"\uf002":-7,"\uf001":-7,"\u00c6":50,"\u00c5":28,"y":-13,"w":-13,"f":-7,"Y":-18,"W":-10,"V":-13,"T":-7,"J":48,"A":28}},"\u201d":{"d":"22,-187v12,-1,16,-7,15,-20r-15,0r0,-49r45,0v0,47,7,98,-45,95r0,-26xm89,-187v11,-2,15,-7,15,-20r-15,0r0,-49r45,0v0,47,7,98,-45,95r0,-26","w":152},"\u2018":{"d":"67,-235v-11,2,-15,7,-15,20r15,0r0,49r-45,0v0,-47,-7,-98,45,-95r0,26","w":85,"k":{"\uf002":-7,"\uf001":-7,"\u00c6":50,"\u00c5":28,"y":-13,"w":-13,"f":-7,"Y":-18,"W":-10,"V":-13,"T":-7,"J":48,"A":28}},"\u2019":{"d":"22,-187v12,-1,15,-6,15,-20r-15,0r0,-49r45,0v0,47,7,98,-45,95r0,-26","w":85},"\u00f7":{"d":"126,-40v0,-13,12,-25,24,-25v13,0,24,12,24,25v0,13,-11,23,-24,23v-13,0,-24,-10,-24,-23xm45,-122r210,0r0,29r-210,0r0,-29xm126,-174v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24","w":299},"\u25ca":{"d":"89,-248r-68,144r68,145r68,-145xm89,-291r88,187r-88,188r-88,-188","w":177},"\u00ff":{"d":"-4,-193r48,0r47,135r52,-135r47,0r-105,256r-46,0r27,-68xm105,-227r0,-41r36,0r0,41r-36,0xm43,-227r0,-41r36,0r0,41r-36,0","w":184},"\u0178":{"d":"113,-92r0,92r-50,0r0,-92r-73,-164r55,0r44,110r44,-110r55,0xm102,-289r0,-41r36,0r0,41r-36,0xm40,-289r0,-41r36,0r0,41r-36,0","w":177},"\u2215":{"d":"94,-261r26,0r-154,266r-26,0","w":60},"\u00a4":{"d":"115,5v-52,0,-87,-34,-88,-85r-25,0r5,-31r19,0r0,-29r-23,0r5,-31r18,0v-7,-80,93,-115,150,-70v16,13,25,31,28,54r-49,0v-11,-43,-85,-35,-78,16r66,0r-5,31r-62,0r0,29r58,0r-5,31r-52,0v2,27,11,39,38,39v24,-1,35,-10,39,-32v16,1,36,-2,50,1v1,45,-42,77,-89,77","w":209},"\u2039":{"d":"101,-153r-43,56r43,57r-35,0r-44,-57r44,-56r35,0","w":127,"k":{"\u00c6":-7,"Y":26,"X":13,"W":20,"V":20,"T":20,"J":-7}},"\u203a":{"d":"27,-153r35,0r43,56r-43,57r-35,0r43,-57","w":127,"k":{"\u00c5":13,"Y":40,"X":20,"W":20,"V":40,"T":33,"J":-13,"A":13}},"\uf001":{"d":"122,0r0,-193r44,0r0,193r-44,0xm166,-213r-44,0r0,-43r44,0r0,43xm105,-218v-21,0,-33,4,-32,25r32,0r0,40r-33,0r0,153r-43,0r0,-153r-23,0r0,-40r21,0v-2,-50,26,-68,78,-66r0,41","w":185},"\uf002":{"d":"166,0r-44,0r0,-256r44,0r0,256xm105,-218v-21,0,-33,4,-32,25r32,0r0,40r-33,0r0,153r-43,0r0,-153r-23,0r0,-40r21,0v-2,-50,26,-68,78,-66r0,41","w":185},"\u2021":{"d":"69,41r0,-66r-59,0r0,-33r59,0r0,-98r-59,0r0,-33r59,0r0,-67r42,0r0,67r59,0r0,33r-59,0r0,98r59,0r0,33r-59,0r0,66r-42,0"},"\u00b7":{"d":"52,-104v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,24,-24,24","w":104},"\u201a":{"d":"22,20v12,-1,16,-7,15,-20r-15,0r0,-48r45,0v0,46,7,97,-45,94r0,-26","w":85,"k":{"\uf002":6,"\uf001":6,"\u0152":20,"\u00d8":20,"\u00c6":-20,"\u00c5":-13,"y":13,"w":21,"f":6,"Y":40,"W":44,"V":60,"T":36,"O":20,"J":-7,"G":13,"C":20,"A":-13}},"\u201e":{"d":"15,20v11,-2,15,-7,15,-20r-15,0r0,-48r45,0v0,46,7,97,-45,94r0,-26xm82,20v11,-2,15,-7,15,-20r-15,0r0,-48r45,0v0,46,7,97,-45,94r0,-26","w":152,"k":{"\uf002":6,"\uf001":6,"\u0152":20,"\u00d8":20,"\u00c6":-20,"\u00c5":-13,"y":13,"w":21,"f":6,"Y":40,"W":44,"V":60,"T":36,"O":20,"J":-7,"G":13,"C":20,"A":-13}},"\u2030":{"d":"237,5v-38,0,-64,-25,-64,-63v0,-37,26,-63,64,-63v37,0,63,26,63,63v0,38,-26,63,-63,63xm237,-88v-15,-1,-30,15,-30,30v0,15,15,31,30,30v15,0,29,-15,29,-30v0,-15,-14,-30,-29,-30xm79,-227v-16,0,-30,14,-30,29v0,15,14,29,30,29v16,0,29,-13,29,-29v0,-16,-13,-29,-29,-29xm79,-135v-37,0,-63,-26,-63,-63v0,-37,26,-63,63,-63v37,0,63,26,63,63v0,37,-26,63,-63,63xm388,5v-37,0,-63,-26,-63,-63v0,-37,26,-63,63,-63v37,0,63,24,63,63v0,39,-26,63,-63,63xm388,-88v-15,0,-29,14,-29,30v0,16,14,30,29,30v15,0,30,-15,30,-30v0,-15,-15,-30,-30,-30xm212,-261r29,0r-137,266r-28,0","w":465},"\u00c2":{"d":"137,-101r-30,-83r-31,83r61,0xm58,-54r-20,54r-51,0r99,-256r43,0r98,256r-54,0r-20,-54r-95,0xm56,-280r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":216},"\u00ca":{"d":"159,0r-138,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45xm38,-280r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0"},"\u00c1":{"d":"137,-101r-30,-83r-31,83r61,0xm58,-54r-20,54r-51,0r99,-256r43,0r98,256r-54,0r-20,-54r-95,0xm82,-280r36,-62r39,0r-52,62r-23,0","w":216},"\u00cb":{"d":"159,0r-138,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45xm103,-289r0,-41r36,0r0,41r-36,0xm41,-289r0,-41r36,0r0,41r-36,0"},"\u00c8":{"d":"159,0r-138,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45xm116,-280r-23,0r-52,-62r39,0"},"\u00cd":{"d":"22,0r0,-256r50,0r0,256r-50,0xm21,-280r36,-62r39,0r-52,62r-23,0","w":93},"\u00ce":{"d":"22,0r0,-256r50,0r0,256r-50,0xm-5,-280r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":93},"\u00cf":{"d":"22,0r0,-256r50,0r0,256r-50,0xm60,-289r0,-41r36,0r0,41r-36,0xm-2,-289r0,-41r36,0r0,41r-36,0","w":93},"\u00cc":{"d":"22,0r0,-256r50,0r0,256r-50,0xm73,-280r-23,0r-52,-62r39,0","w":93},"\u00d3":{"d":"143,-209v-42,0,-81,35,-80,79v2,50,32,81,79,83v44,2,79,-38,79,-83v0,-43,-36,-79,-78,-79xm142,5v-81,0,-132,-53,-132,-133v0,-81,53,-133,133,-133v77,0,130,53,130,131v0,81,-51,135,-131,135xm116,-280r36,-62r39,0r-52,62r-23,0","w":283},"\u00d4":{"d":"143,-209v-42,0,-81,35,-80,79v2,50,32,81,79,83v44,2,79,-38,79,-83v0,-43,-36,-79,-78,-79xm142,5v-81,0,-132,-53,-132,-133v0,-81,53,-133,133,-133v77,0,130,53,130,131v0,81,-51,135,-131,135xm90,-280r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":283},"\uf000":{"d":"205,-284v6,37,-31,78,-58,68v-2,-36,27,-63,58,-68xm224,-130v0,31,18,49,41,59v-21,43,-30,70,-72,77v-9,1,-35,-13,-45,-11v-9,-2,-37,13,-45,11v-54,-12,-79,-76,-83,-136v-3,-49,32,-86,79,-86v13,0,39,12,49,12v20,-7,58,-21,83,-6v10,6,19,12,28,22v-20,14,-35,28,-35,58","w":284},"\u00d2":{"d":"143,-209v-42,0,-81,35,-80,79v2,50,32,81,79,83v44,2,79,-38,79,-83v0,-43,-36,-79,-78,-79xm142,5v-81,0,-132,-53,-132,-133v0,-81,53,-133,133,-133v77,0,130,53,130,131v0,81,-51,135,-131,135xm168,-280r-23,0r-52,-62r39,0","w":283},"\u00da":{"d":"104,5v-59,-3,-83,-32,-83,-99r0,-162r50,0r0,148v1,37,2,61,33,61v31,0,31,-23,32,-61r0,-148r50,0v-7,108,35,266,-82,261xm78,-280r36,-62r39,0r-52,62r-23,0","w":207},"\u00db":{"d":"104,5v-59,-3,-83,-32,-83,-99r0,-162r50,0r0,148v1,37,2,61,33,61v31,0,31,-23,32,-61r0,-148r50,0v-7,108,35,266,-82,261xm52,-280r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0","w":207},"\u00d9":{"d":"104,5v-59,-3,-83,-32,-83,-99r0,-162r50,0r0,148v1,37,2,61,33,61v31,0,31,-23,32,-61r0,-148r50,0v-7,108,35,266,-82,261xm130,-280r-23,0r-52,-62r39,0","w":207},"\u0131":{"d":"20,0r0,-193r44,0r0,193r-44,0","w":84},"\u02c6":{"d":"38,-218r33,-62r38,0r33,62r-23,0r-29,-38r-30,38r-22,0"},"\u02dc":{"d":"71,-265v18,0,49,19,54,-5r18,0v-4,41,-37,45,-73,32v-9,0,-13,4,-15,12r-18,0v3,-22,13,-39,34,-39"},"\u00af":{"d":"41,-236r0,-26r98,0r0,26r-98,0"},"\u02d8":{"d":"142,-275v5,50,-59,64,-90,38v-9,-8,-14,-21,-15,-38r22,0v0,18,12,25,31,25v20,0,30,-6,31,-25r21,0"},"\u02d9":{"d":"71,-226r0,-42r38,0r0,42r-38,0"},"\u02da":{"d":"90,-283v-12,0,-22,10,-22,23v0,12,9,23,22,22v13,0,23,-10,23,-22v0,-12,-11,-23,-23,-23xm90,-215v-25,0,-45,-21,-45,-46v0,-25,20,-45,45,-45v25,0,45,20,45,45v0,25,-20,46,-45,46"},"\u00b8":{"d":"135,50v1,42,-58,37,-91,26r0,-21v21,5,58,19,64,-5v0,-15,-16,-14,-33,-14r0,-36r16,0r0,17v27,-1,44,8,44,33"},"\u02dd":{"d":"99,-218r29,-62r34,0r-44,62r-19,0xm72,-218r-19,0r24,-62r33,0"},"\u02db":{"d":"61,47v1,-23,16,-33,33,-47r16,0v-12,11,-22,19,-23,37v-1,18,16,15,32,15r0,27v-32,1,-60,-2,-58,-32"},"\u02c7":{"d":"38,-280r22,0r30,37r29,-37r23,0r-33,62r-38,0"},"\u0141":{"d":"156,0r-130,0r0,-92r-26,19r0,-44r26,-19r0,-120r50,0r0,99r37,-26r0,45r-37,26r0,67r80,0r0,45","w":163,"k":{"\u2039":6,"\u2019":48,"\u2018":46,"\u201d":48,"\u201c":46,"\u0153":6,"\u0152":13,"\u00ab":6,"\u00f8":6,"\u00e6":6,"\u00d8":13,"\u00c5":-13,"y":13,"u":6,"o":6,"e":6,"a":6,"Y":20,"W":20,"V":23,"U":6,"T":13,"O":13,"A":-13,"-":6}},"\u0142":{"d":"25,0r0,-100r-25,17r0,-39r25,-18r0,-116r44,0r0,100r25,-17r0,38r-25,18r0,117r-44,0","w":94},"\u0160":{"d":"112,-151v85,20,55,156,-29,156v-47,0,-78,-35,-77,-84r46,-1v-2,23,10,40,30,40v20,0,33,-14,33,-34v0,-38,-70,-39,-87,-64v-33,-48,-2,-123,59,-123v44,0,67,31,70,74v-14,-2,-35,4,-45,-2v0,-16,-11,-27,-27,-28v-24,-1,-35,30,-20,47v4,7,34,15,47,19xm34,-342r22,0r30,37r29,-37r23,0r-33,62r-38,0","w":172},"\u0161":{"d":"136,-57v5,55,-75,83,-109,43v-11,-12,-18,-29,-19,-50v13,2,32,-4,41,2v-4,32,46,40,46,8v0,-44,-78,-25,-78,-86v0,-49,65,-77,99,-43v10,10,16,23,17,41v-13,-1,-30,2,-41,-1v0,-12,-6,-20,-18,-19v-10,0,-17,8,-17,18v13,33,88,31,79,87xm21,-280r22,0r30,37r29,-37r23,0r-33,62r-38,0","w":146},"\u017d":{"d":"166,0r-161,0r0,-44r101,-164r-94,0r0,-48r151,0r0,41r-103,168r106,0r0,47xm34,-342r22,0r30,37r29,-37r23,0r-33,62r-38,0","w":171},"\u017e":{"d":"6,0r0,-41r86,-111r-79,0r0,-41r128,0r0,48r-81,102r86,0r0,43r-140,0xm24,-280r22,0r30,37r29,-37r23,0r-33,62r-38,0","w":151},"\u00a6":{"d":"75,-72r31,0r0,134r-31,0r0,-134xm75,-252r31,0r0,134r-31,0r0,-134"},"\u00d0":{"d":"191,-128v0,-65,-43,-91,-114,-84r0,63r53,0r0,42r-53,0r0,63v73,6,114,-14,114,-84xm242,-127v0,79,-40,130,-129,127r-87,0r0,-107r-26,0r0,-42r26,0r0,-107r86,0v89,-2,130,46,130,129","w":251,"k":{"\u201e":20,"\u201a":20,"\u00c5":6,"Y":6,"W":6,"V":6,"A":6,"-":-11}},"\u00f0":{"d":"159,-87v0,-28,-21,-48,-51,-48v-27,0,-48,22,-48,49v0,30,20,51,50,51v30,0,50,-20,49,-52xm97,-220r-21,-10r14,-28r45,25r50,-18r12,27r-36,14v25,29,41,65,41,115v0,58,-37,100,-93,100v-55,0,-89,-36,-91,-90v-3,-67,77,-110,134,-74v-8,-16,-15,-28,-27,-39r-52,18r-11,-27","w":218},"\u00dd":{"d":"113,-92r0,92r-50,0r0,-92r-73,-164r55,0r44,110r44,-110r55,0xm63,-280r36,-62r39,0r-52,62r-23,0","w":177},"\u00fd":{"d":"-4,-193r48,0r47,135r52,-135r47,0r-105,256r-46,0r27,-68xm66,-218r36,-62r39,0r-52,62r-23,0","w":184},"\u00de":{"d":"128,-131v0,-30,-24,-37,-57,-35r0,69v33,2,57,-5,57,-34xm180,-134v0,55,-45,87,-109,81r0,53r-50,0r0,-256r50,0r0,45v69,-5,109,19,109,77","w":185},"\u00fe":{"d":"221,-96v4,82,-98,129,-160,81r0,78r-44,0r0,-319r44,0r0,79v16,-13,34,-20,60,-21v63,1,97,42,100,102xm116,-154v-29,0,-53,27,-53,56v-1,32,24,58,55,58v32,0,57,-26,57,-57v0,-32,-27,-57,-59,-57","w":231},"\u2212":{"d":"45,-122r210,0r0,30r-210,0r0,-30","w":299},"\u00d7":{"d":"71,-209r81,81r81,-81r20,21r-81,81r81,80r-20,21r-81,-81r-81,81r-21,-21r81,-80r-81,-81","w":299},"\u00b9":{"d":"90,-102r-31,0r0,-131r-30,0r0,-23r61,0r0,154","w":137},"\u00b2":{"d":"70,-258v51,0,71,56,30,89r-48,39r72,0r0,28r-111,0r0,-29v24,-22,54,-40,74,-66v12,-15,0,-35,-18,-34v-15,1,-22,11,-21,26v-10,-1,-25,2,-33,-1v0,-31,22,-52,55,-52","w":137},"\u00b3":{"d":"69,-99v-33,-2,-57,-19,-56,-53v10,2,26,-3,32,2v0,14,9,23,23,23v15,0,26,-11,26,-26v0,-19,-15,-25,-36,-24r0,-25v27,7,32,-30,10,-30v-9,0,-13,6,-13,15r-30,0v0,-24,19,-42,45,-42v37,0,58,50,26,67v50,15,28,97,-27,93","w":137},"\u00bc":{"d":"272,-46r0,-59r-42,59r42,0xm300,0r-28,0r0,-22r-70,0r0,-24r69,-97r29,0r0,97r14,0r0,24r-14,0r0,22xm226,-261r26,0r-154,266r-26,0xm86,-113r-30,0r0,-122r-28,0r0,-21r58,0r0,143","w":323},"\u00bd":{"d":"259,-146v49,-3,66,53,28,84r-45,36r68,0r0,26r-106,0r0,-27v23,-20,52,-38,71,-62v11,-14,0,-31,-17,-31v-13,0,-22,8,-20,23r-32,0v0,-30,23,-47,53,-49xm226,-261r26,0r-154,266r-26,0xm86,-113r-30,0r0,-122r-28,0r0,-21r58,0r0,143","w":323},"\u00be":{"d":"272,-46r0,-59r-42,59r42,0xm300,0r-28,0r0,-22r-70,0r0,-24r69,-97r29,0r0,97r14,0r0,24r-14,0r0,22xm226,-261r26,0r-154,266r-26,0xm66,-110v-33,0,-53,-18,-53,-49v9,1,23,-2,30,1v0,14,9,22,22,23v13,1,24,-11,24,-25v0,-18,-14,-23,-34,-22r0,-24v26,7,32,-28,10,-28v-8,0,-12,6,-13,14r-28,0v0,-24,19,-38,43,-39v34,-2,56,47,24,63v47,14,29,86,-25,86","w":323},"\u20a3":{"d":"21,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,108r-50,0xm283,-154v-69,-2,-41,92,-47,154r-45,0r0,-193r42,0r0,22v13,-15,26,-24,50,-25r0,42","w":281},"\u011e":{"d":"63,-128v0,83,123,113,151,35r-101,0r0,-43r160,0v4,86,-53,136,-131,141v-119,8,-169,-151,-91,-229v36,-36,118,-50,165,-17v20,13,35,33,46,59r-60,0v-13,-16,-33,-28,-60,-28v-44,-1,-79,38,-79,82xm194,-337v5,50,-59,64,-90,38v-9,-8,-14,-21,-15,-38r22,0v0,18,12,25,31,25v20,0,30,-6,31,-25r21,0","w":283},"\u011f":{"d":"8,-97v-8,-87,110,-134,165,-73r0,-23r40,0r0,161v17,118,-164,148,-193,42r43,0v23,50,120,28,110,-37v-16,16,-37,27,-66,27v-59,0,-94,-40,-99,-97xm111,-158v-31,0,-59,27,-58,58v0,33,26,59,59,59v29,1,57,-27,57,-57v0,-32,-27,-60,-58,-60xm168,-275v5,50,-59,64,-90,38v-9,-8,-14,-21,-15,-38r22,0v0,18,12,25,31,25v20,0,30,-6,31,-25r21,0","w":231},"\u0130":{"d":"22,0r0,-256r50,0r0,256r-50,0xm28,-288r0,-42r38,0r0,42r-38,0","w":93},"\u015e":{"d":"112,-151v85,20,55,156,-29,156v-47,0,-78,-35,-77,-84r46,-1v-2,23,10,40,30,40v20,0,33,-14,33,-34v0,-38,-70,-39,-87,-64v-33,-48,-2,-123,59,-123v44,0,67,31,70,74v-14,-2,-35,4,-45,-2v0,-16,-11,-27,-27,-28v-24,-1,-35,30,-20,47v4,7,34,15,47,19xm131,50v1,42,-58,37,-91,26r0,-21v21,5,58,19,64,-5v0,-15,-16,-14,-33,-14r0,-36r16,0r0,17v27,-1,44,8,44,33","w":172},"\u015f":{"d":"136,-57v5,55,-75,83,-109,43v-11,-12,-18,-29,-19,-50v13,2,32,-4,41,2v-4,32,46,40,46,8v0,-44,-78,-25,-78,-86v0,-49,65,-77,99,-43v10,10,16,23,17,41v-13,-1,-30,2,-41,-1v0,-12,-6,-20,-18,-19v-10,0,-17,8,-17,18v13,33,88,31,79,87xm118,50v1,42,-58,37,-91,26r0,-21v21,5,58,19,64,-5v0,-15,-16,-14,-33,-14r0,-36r16,0r0,17v27,-1,44,8,44,33","w":146},"\u0106":{"d":"11,-130v-2,-103,113,-164,202,-111v20,12,36,34,49,61r-61,0v-13,-18,-32,-30,-61,-30v-47,0,-75,34,-77,81v-1,44,33,84,77,83v27,0,47,-11,59,-27r61,0v-22,47,-57,78,-119,78v-79,0,-127,-53,-130,-135xm115,-280r36,-62r39,0r-52,62r-23,0","w":270},"\u0107":{"d":"9,-97v-4,-86,98,-129,164,-82v17,13,28,31,34,54r-48,0v-20,-48,-110,-33,-104,28v-7,58,89,79,104,26r48,0v-11,44,-45,76,-96,76v-61,0,-100,-40,-102,-102xm85,-218r36,-62r39,0r-52,62r-23,0","w":218},"\u010c":{"d":"11,-130v-2,-103,113,-164,202,-111v20,12,36,34,49,61r-61,0v-13,-18,-32,-30,-61,-30v-47,0,-75,34,-77,81v-1,44,33,84,77,83v27,0,47,-11,59,-27r61,0v-22,47,-57,78,-119,78v-79,0,-127,-53,-130,-135xm89,-342r22,0r30,37r29,-37r23,0r-33,62r-38,0","w":270},"\u010d":{"d":"9,-97v-4,-86,98,-129,164,-82v17,13,28,31,34,54r-48,0v-20,-48,-110,-33,-104,28v-7,58,89,79,104,26r48,0v-11,44,-45,76,-96,76v-61,0,-100,-40,-102,-102xm59,-280r22,0r30,37r29,-37r23,0r-33,62r-38,0","w":218},"\u0111":{"d":"115,-38v30,0,53,-26,53,-56v0,-31,-23,-56,-54,-56v-30,0,-55,26,-55,56v0,31,27,56,56,56xm14,-95v0,-77,97,-130,156,-79r0,-34r-51,0r0,-26r51,0r0,-22r45,0r0,22r29,0r0,26r-29,0r0,208r-45,0r0,-15v-60,49,-156,-1,-156,-80","w":236},"\u00ad":{"d":"107,-117r0,41r-91,0r0,-41r91,0","w":122},"\u2219":{"d":"52,-104v-13,0,-24,-11,-24,-24v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,24,-24,24","w":104},"\u20ac":{"d":"115,5v-52,0,-87,-34,-88,-85r-25,0r5,-31r19,0r0,-29r-23,0r5,-31r18,0v-7,-80,93,-115,150,-70v16,13,25,31,28,54r-49,0v-11,-43,-85,-35,-78,16r66,0r-5,31r-62,0r0,29r58,0r-5,31r-52,0v2,27,11,39,38,39v24,-1,35,-10,39,-32v16,1,36,-2,50,1v1,45,-42,77,-89,77","w":209}}});
;/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1998 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":209,"face":{"font-family":"AvantGarde","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 2 2 2 2 2 2 4","ascent":"274","descent":"-86","x-height":"5","bbox":"-13 -291 343 85","underline-thickness":"34.2773","underline-position":"-17.2266","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":104},"!":{"d":"77,-70r-45,0r0,-186r45,0r0,186xm77,0r-45,0r0,-48r45,0r0,48","w":110},"\"":{"d":"69,-252r29,0r0,97r-29,0r0,-97xm15,-252r29,0r0,97r-29,0r0,-97","w":113},"#":{"d":"125,-150r-16,45r45,0r16,-45r-45,0xm129,-257r34,0r-27,77r44,0r27,-77r33,0r-27,77r52,0r-11,30r-51,0r-16,45r54,0r-11,30r-54,0r-27,76r-34,0r28,-76r-44,0r-28,76r-34,0r28,-76r-53,0r11,-30r52,0r16,-45r-55,0r10,-30r56,0","w":276},"$":{"d":"133,-151v69,18,63,135,-5,147r0,46r-42,0r0,-44v-37,-9,-59,-35,-60,-78r47,1v1,20,10,33,31,33v27,0,39,-35,23,-53v-31,-20,-98,-26,-94,-83v3,-37,22,-61,53,-71r0,-38r42,0r0,39v31,7,48,30,50,65r-44,0v0,-13,-12,-24,-27,-24v-24,0,-39,26,-24,42v6,7,37,15,50,18"},"%":{"d":"79,-135v-37,0,-63,-26,-63,-63v0,-37,26,-63,63,-63v37,0,63,26,63,63v0,37,-26,63,-63,63xm79,-227v-16,0,-30,14,-30,29v0,15,14,29,30,29v16,0,29,-13,29,-29v0,-16,-13,-29,-29,-29xm212,-261r29,0r-137,266r-28,0xm237,-88v-15,-1,-30,15,-30,30v0,15,15,31,30,30v15,0,29,-15,29,-30v0,-15,-14,-30,-29,-30xm237,5v-38,0,-64,-25,-64,-63v0,-37,26,-63,64,-63v37,0,63,26,63,63v0,38,-26,63,-63,63","w":315},"&":{"d":"150,-201v-1,28,-18,46,-39,59r37,34r23,-62r46,0r-37,89r59,51r-31,34r-51,-47v-14,27,-36,47,-72,48v-41,1,-78,-35,-76,-77v2,-36,19,-55,45,-73v-48,-32,-26,-116,37,-116v31,0,60,30,59,60xm81,-112v-34,10,-39,73,3,73v20,0,32,-16,40,-33xm89,-220v-28,2,-26,42,-2,51v25,-6,33,-48,2,-51","w":234},"'":{"d":"15,-252r29,0r0,97r-29,0r0,-97","w":58},"(":{"d":"92,78v-46,-16,-75,-49,-75,-108v0,-68,-12,-149,19,-191v13,-18,31,-31,56,-40r0,49v-44,23,-29,108,-29,171v0,39,6,54,29,70r0,49","w":106},")":{"d":"43,-41v0,-63,16,-150,-29,-171r0,-49v46,16,76,48,76,107v0,68,12,150,-19,192v-13,18,-32,31,-57,40r0,-49v24,-15,29,-30,29,-70","w":106},"*":{"d":"90,-159r-32,44r-25,-18r34,-43r-50,-14r9,-30r49,16r0,-52r30,0r0,52r48,-16r10,30r-50,13r33,44r-25,19","w":180},"+":{"d":"135,-215r30,0r0,93r90,0r0,29r-90,0r0,93r-30,0r0,-93r-90,0r0,-29r90,0r0,-93","w":299},",":{"d":"30,20v11,-2,15,-7,15,-20r-15,0r0,-48r45,0v0,46,7,97,-45,94r0,-26","w":104},"-":{"d":"107,-117r0,41r-91,0r0,-41r91,0","w":122,"k":{"o":-7,"Y":24,"X":13,"W":20,"V":21,"T":20,"O":-13,"J":-20,"G":-13,"C":-7,"A":-10}},".":{"d":"75,0r-45,0r0,-48r45,0r0,48","w":104},"\/":{"d":"17,33r-25,0r84,-289r24,0","w":100},"0":{"d":"105,-215v-55,-3,-40,73,-40,125v0,31,10,48,39,49v57,2,36,-77,40,-129v2,-31,-13,-44,-39,-45xm104,5v-56,0,-89,-32,-89,-95r0,-76v0,-64,31,-95,90,-95v56,0,89,32,89,95r0,76v0,64,-31,95,-90,95"},"1":{"d":"137,0r-48,0r0,-218r-45,0r0,-38r93,0r0,256"},"2":{"d":"107,-261v57,0,104,61,73,115v-22,39,-69,68,-101,100r109,0r0,46r-169,0r0,-48v37,-37,83,-69,113,-111v17,-23,3,-57,-27,-56v-22,0,-33,18,-32,43v-16,-1,-36,2,-50,-1v-1,-51,33,-88,84,-88"},"3":{"d":"104,5v-52,-3,-85,-34,-84,-87v15,2,37,-4,48,2v0,22,14,39,35,39v24,0,39,-19,39,-44v1,-30,-23,-43,-55,-39r0,-43v22,3,39,-4,38,-26v0,-15,-8,-23,-22,-23v-14,0,-19,10,-20,24r-45,0v0,-40,28,-69,68,-69v57,0,88,83,39,112v74,26,46,160,-41,154"},"4":{"d":"128,-81r0,-107r-68,107r68,0xm172,0r-44,0r0,-39r-113,0r0,-42r111,-175r46,0r0,175r21,0r0,42r-21,0r0,39"},"5":{"d":"143,-87v0,-43,-60,-60,-77,-26r-42,-10r24,-133r121,0r0,44r-88,0r-8,44v55,-31,120,22,120,81v0,78,-95,120,-152,69v-17,-16,-27,-37,-29,-62r48,0v2,21,20,39,42,39v24,1,41,-22,41,-46"},"6":{"d":"105,-130v-23,0,-42,19,-42,43v0,24,18,46,41,46v24,0,42,-19,42,-44v0,-26,-17,-45,-41,-45xm104,5v-64,0,-108,-61,-82,-125v17,-43,59,-95,84,-136r52,0r-58,88v53,-16,98,33,95,83v-3,53,-35,90,-91,90"},"7":{"d":"91,0r-51,0r95,-211r-100,0r0,-45r147,0r0,48"},"8":{"d":"105,-218v-13,0,-24,11,-24,26v0,14,9,25,23,25v17,0,24,-10,24,-25v0,-15,-8,-26,-23,-26xm103,-113v-21,0,-34,16,-34,37v0,20,16,37,35,37v20,0,36,-16,36,-37v0,-22,-15,-37,-37,-37xm19,-78v0,-34,17,-50,41,-65v-56,-29,-21,-125,44,-118v65,-8,103,90,44,118v25,12,42,31,42,65v1,48,-37,83,-87,83v-47,0,-85,-36,-84,-83"},"9":{"d":"104,-126v23,0,43,-20,43,-43v1,-25,-19,-47,-42,-46v-24,0,-43,20,-42,45v0,25,18,43,41,44xm105,-261v65,0,108,61,83,126v-16,43,-59,94,-85,135r-52,0r58,-87v-55,13,-98,-34,-95,-84v3,-53,36,-90,91,-90"},":":{"d":"77,-137r-45,0r0,-48r45,0r0,48xm77,0r-45,0r0,-48r45,0r0,48","w":110},";":{"d":"32,20v13,-1,15,-7,15,-20r-15,0r0,-48r45,0v0,46,8,97,-44,94xm77,-137r-45,0r0,-48r45,0r0,48","w":110},"<":{"d":"253,-207r0,33r-164,67r164,67r0,32r-207,-85r0,-28","w":299},"=":{"d":"45,-86r210,0r0,29r-210,0r0,-29xm45,-158r210,0r0,29r-210,0r0,-29","w":299},">":{"d":"46,-207r207,86r0,28r-207,85r0,-32r165,-67r-165,-67r0,-33","w":299},"?":{"d":"173,-182v0,47,-62,62,-60,112r-45,0v-2,-48,36,-65,53,-97v5,-27,-6,-50,-32,-49v-18,0,-31,18,-31,38r-47,0v-1,-47,34,-83,81,-83v47,0,81,34,81,79xm68,0r0,-48r45,0r0,48r-45,0","w":183},"@":{"d":"243,-20v-23,1,-37,-8,-37,-30v-11,18,-26,30,-53,30v-37,0,-54,-22,-55,-59v-1,-50,35,-99,83,-98v23,0,34,9,43,25r10,-19r27,0r-27,112v0,8,7,15,16,14v42,-6,63,-44,64,-89v2,-62,-54,-102,-119,-100v-92,2,-143,56,-149,143v-8,121,164,150,243,87r12,17v-31,23,-69,40,-119,40v-97,0,-165,-50,-165,-145v0,-105,72,-167,179,-167v85,0,147,42,147,125v0,63,-36,110,-100,114xm130,-78v0,36,39,46,60,24v22,-23,46,-99,-6,-101v-33,-1,-54,41,-54,77","w":360},"A":{"d":"137,-101r-30,-83r-31,83r61,0xm58,-54r-20,54r-51,0r99,-256r43,0r98,256r-54,0r-20,-54r-95,0","w":216,"k":{"Y":13,"W":6,"V":6,"T":15,"S":-10,"Q":6,"O":6,"G":6,"C":6,"A":-20,";":-7,":":-7,".":-7,",":-7}},"B":{"d":"117,-183v0,-25,-19,-29,-47,-28r0,58v28,1,47,-5,47,-30xm130,-76v1,-31,-26,-38,-60,-36r0,67v32,1,60,-2,60,-31xm179,-78v2,79,-73,82,-157,78r0,-256v74,-4,143,1,143,68v0,25,-9,41,-26,50v24,7,39,30,40,60","w":185,"k":{"-":-10}},"C":{"d":"11,-130v-2,-103,113,-164,202,-111v20,12,36,34,49,61r-61,0v-13,-18,-32,-30,-61,-30v-47,0,-75,34,-77,81v-1,44,33,84,77,83v27,0,47,-11,59,-27r61,0v-22,47,-57,78,-119,78v-79,0,-127,-53,-130,-135","w":270,"k":{"-":-8}},"D":{"d":"186,-128v0,-65,-43,-91,-114,-84r0,168v73,6,114,-14,114,-84xm237,-127v0,79,-40,130,-129,127r-87,0r0,-256r86,0v89,-2,130,46,130,129","w":246,"k":{"Y":6,"W":6,"V":6,"A":6,"-":-11}},"E":{"d":"159,0r-138,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45","w":180},"F":{"d":"21,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,108r-50,0","w":173,"k":{"u":6,"r":6,"i":6,"A":10,";":15,":":15,".":58,",":58}},"G":{"d":"63,-128v0,83,123,113,151,35r-101,0r0,-43r160,0v4,86,-53,136,-131,141v-119,8,-169,-151,-91,-229v36,-36,118,-50,165,-17v20,13,35,33,46,59r-60,0v-13,-16,-33,-28,-60,-28v-44,-1,-79,38,-79,82","w":283,"k":{"Y":13,"T":6,"-":-8}},"H":{"d":"71,-104r0,104r-50,0r0,-256r50,0r0,104r83,0r0,-104r50,0r0,256r-50,0r0,-104r-83,0","w":225,"k":{".":6,",":6}},"I":{"d":"22,0r0,-256r50,0r0,256r-50,0","w":93},"J":{"d":"69,-45v21,-2,22,-19,22,-46r0,-165r51,0v-9,102,37,261,-72,261v-46,0,-70,-27,-70,-74v16,1,36,-2,50,1v0,13,6,24,19,23","w":162,"k":{"-":6}},"K":{"d":"72,-127r77,-129r56,0r-82,127r82,129r-56,0xm71,0r-50,0r0,-256r50,0r0,256","w":200,"k":{"y":6,"u":6,"o":6,"e":6,"a":6,"W":6,"T":-7,"O":13,"C":13,"-":18}},"L":{"d":"151,0r-130,0r0,-256r50,0r0,211r80,0r0,45","w":158,"k":{"y":13,"u":6,"o":6,"e":6,"a":6,"Y":20,"W":20,"V":23,"U":6,"T":13,"O":13,"A":-13,"-":6}},"M":{"d":"71,0r-50,0r0,-256r67,0r65,186r64,-186r67,0r0,256r-50,0r2,-186r-65,186r-37,0r-65,-186","w":304},"N":{"d":"70,0r-49,0r0,-256r48,0r106,164r0,-164r49,0r0,256r-47,0r-107,-168r0,168","w":245},"O":{"d":"143,-209v-42,0,-81,35,-80,79v2,50,32,81,79,83v44,2,79,-38,79,-83v0,-43,-36,-79,-78,-79xm142,5v-81,0,-132,-53,-132,-133v0,-81,53,-133,133,-133v77,0,130,53,130,131v0,81,-51,135,-131,135","w":283,"k":{"Y":6,"X":13,"V":6,"A":6,";":-7,":":-7,".":15,"-":-10,",":15}},"P":{"d":"128,-176v0,-30,-24,-37,-57,-35r0,69v32,2,57,-5,57,-34xm180,-179v0,55,-45,87,-109,81r0,98r-50,0r0,-256r64,0v62,-3,95,24,95,77","w":185,"k":{"s":6,"r":6,"o":11,"n":6,"i":6,"e":11,"a":11,"A":15,";":6,":":6,".":79,"-":15,",":79}},"Q":{"d":"65,-115v53,-17,105,8,138,37v43,-45,4,-133,-61,-133v-47,0,-91,47,-77,96xm174,-54v-27,-18,-56,-33,-97,-28v17,27,59,45,97,28xm278,4v-29,1,-48,-7,-68,-18v-18,12,-41,19,-70,19v-119,0,-169,-154,-89,-229v23,-21,50,-37,91,-37v81,0,133,53,133,134v0,37,-12,64,-32,84v10,5,20,7,35,6r0,41","w":283},"R":{"d":"144,-175v0,-38,-33,-40,-73,-39r0,83v41,1,73,-7,73,-44xm194,-176v0,41,-26,70,-61,77r64,99r-60,0r-66,-119r0,119r-50,0r0,-256v89,-3,173,-4,173,80","w":204,"k":{"u":6,"o":6,"e":6,"a":6,"-":10}},"S":{"d":"112,-151v85,20,55,156,-29,156v-47,0,-78,-35,-77,-84r46,-1v-2,23,10,40,30,40v20,0,33,-14,33,-34v0,-38,-70,-39,-87,-64v-33,-48,-2,-123,59,-123v44,0,67,31,70,74v-14,-2,-35,4,-45,-2v0,-16,-11,-27,-27,-28v-24,-1,-35,30,-20,47v4,7,34,15,47,19","w":172,"k":{"A":-7}},"T":{"d":"149,-256r0,45r-49,0r0,211r-50,0r0,-211r-48,0r0,-45r147,0","w":150,"k":{"y":16,"w":16,"u":16,"s":15,"r":10,"o":16,"e":16,"c":16,"a":16,"C":6,"A":15,";":23,":":23,".":33,"-":20,",":33}},"U":{"d":"104,5v-59,-3,-83,-32,-83,-99r0,-162r50,0r0,148v1,37,2,61,33,61v31,0,31,-23,32,-61r0,-148r50,0v-7,108,35,266,-82,261","w":207},"V":{"d":"120,0r-36,0r-92,-256r54,0r56,171r56,-171r53,0","w":204,"k":{"y":6,"u":16,"o":20,"e":20,"a":20,"O":6,"A":6,";":18,":":18,".":46,"-":23,",":46}},"W":{"d":"-5,-256r51,0r42,166r46,-166r35,0r46,166r42,-166r51,0r-74,256r-40,0r-42,-160r-44,160r-39,0","w":303,"k":{"u":6,"r":6,"o":11,"i":-7,"e":11,"a":11,"A":6,";":15,":":15,".":31,"-":21,",":31}},"X":{"d":"105,-90r-51,90r-57,0r82,-129r-80,-127r57,0r49,89r50,-89r56,0r-79,127r81,129r-56,0","w":210,"k":{"e":6,"O":13,"C":13,"-":18}},"Y":{"d":"113,-92r0,92r-50,0r0,-92r-73,-164r55,0r44,110r44,-110r55,0","w":177,"k":{"u":20,"o":20,"e":20,"a":20,"O":6,"C":6,"A":13,";":18,":":18,".":41,"-":29,",":41}},"Z":{"d":"166,0r-161,0r0,-44r101,-164r-94,0r0,-48r151,0r0,41r-103,168r106,0r0,47","w":171,"k":{"-":6}},"[":{"d":"65,-216r0,248r33,0r0,40r-78,0r0,-328r78,0r0,40r-33,0","w":106},"\\":{"d":"83,33r-83,-289r24,0r84,289r-25,0","w":100},"]":{"d":"42,-216r-34,0r0,-40r79,0r0,328r-79,0r0,-40r34,0r0,-248","w":106},"^":{"d":"161,-257r38,0r87,99r-36,0r-70,-70r-70,70r-37,0","w":360},"_":{"d":"0,55r180,0r0,30r-180,0r0,-30","w":180},"`":{"d":"116,-218r-23,0r-52,-62r39,0","w":180},"a":{"d":"110,-154v-30,0,-56,26,-56,56v0,30,25,57,56,57v28,0,54,-26,54,-55v0,-31,-25,-58,-54,-58xm108,-198v29,0,48,11,60,28r0,-23r44,0r0,193r-43,0r0,-24v-10,19,-30,28,-60,28v-57,0,-103,-46,-101,-102v2,-60,38,-98,100,-100","w":231},"b":{"d":"118,-154v-31,0,-56,27,-55,58v0,30,23,56,53,56v33,0,59,-25,59,-57v0,-31,-27,-57,-57,-57xm221,-97v6,84,-98,131,-160,81r0,16r-44,0r0,-256r44,0r0,78v15,-13,34,-20,61,-20v60,0,95,42,99,101","w":231},"c":{"d":"9,-97v-4,-86,98,-129,164,-82v17,13,28,31,34,54r-48,0v-20,-48,-110,-33,-104,28v-7,58,89,79,104,26r48,0v-11,44,-45,76,-96,76v-61,0,-100,-40,-102,-102","w":218},"d":{"d":"115,-40v30,0,53,-26,53,-56v0,-33,-23,-58,-55,-58v-29,0,-57,27,-56,57v0,31,25,57,58,57xm10,-97v-4,-81,98,-129,160,-81r0,-78r45,0r0,256r-45,0r0,-16v-16,13,-34,21,-60,21v-61,0,-96,-43,-100,-102","w":231},"e":{"d":"162,-118v-8,-51,-96,-52,-105,0r105,0xm55,-82v0,49,81,59,100,20r48,0v-14,38,-45,68,-93,67v-61,-2,-101,-40,-101,-102v0,-60,40,-102,99,-102v65,0,105,43,102,117r-155,0","w":218,"k":{"x":6}},"f":{"d":"105,-218v-21,0,-33,4,-32,25r32,0r0,40r-33,0r0,153r-43,0r0,-153r-23,0r0,-40r21,0v-2,-50,26,-68,78,-66r0,41","w":106,"k":{"y":-7,"w":-7,"t":-7,".":13,",":13}},"g":{"d":"8,-97v-8,-87,110,-134,165,-73r0,-23r40,0r0,161v17,118,-164,148,-193,42r43,0v23,50,120,28,110,-37v-16,16,-37,27,-66,27v-59,0,-94,-40,-99,-97xm111,-158v-31,0,-59,27,-58,58v0,33,26,59,59,59v29,1,57,-27,57,-57v0,-32,-27,-60,-58,-60","w":231},"h":{"d":"106,-153v-62,0,-37,94,-42,153r-44,0r0,-256r44,0r0,85v13,-16,26,-26,52,-26v92,-4,74,108,75,197r-45,0v-6,-58,21,-153,-40,-153"},"i":{"d":"64,-213r-44,0r0,-43r44,0r0,43xm20,0r0,-193r44,0r0,193r-44,0","w":84},"j":{"d":"-3,19v23,-1,24,-8,24,-35r0,-177r44,0r0,186v2,57,-16,72,-68,69r0,-43xm65,-213r-44,0r0,-43r44,0r0,43","w":88},"k":{"d":"63,0r-43,0r0,-256r43,0r0,152r63,-89r51,0r-67,91r80,102r-56,0r-71,-98r0,98","w":178,"k":{"o":6,"e":6,"a":6}},"l":{"d":"20,0r0,-256r44,0r0,256r-44,0","w":84},"m":{"d":"64,-171v23,-39,103,-31,120,8v14,-19,29,-34,58,-34v91,0,72,109,73,197r-44,0v-6,-57,21,-153,-39,-153v-61,0,-37,94,-42,153r-44,0v-6,-58,21,-153,-40,-153v-62,0,-37,94,-42,153r-44,0r0,-193r44,0r0,22","w":334},"n":{"d":"106,-153v-62,0,-37,94,-42,153r-44,0r0,-193r44,0r0,22v13,-16,26,-26,52,-26v92,-3,74,106,75,197r-45,0v-6,-58,21,-153,-40,-153"},"o":{"d":"110,-155v-32,-1,-55,24,-55,57v0,36,20,58,55,58v34,0,54,-25,54,-59v1,-32,-23,-56,-54,-56xm109,5v-62,0,-101,-42,-101,-103v0,-60,41,-101,100,-101v61,0,103,40,103,100v0,64,-40,104,-102,104","w":219,"k":{"x":6,".":6,"-":-7,",":6}},"p":{"d":"116,-154v-29,0,-53,27,-53,56v-1,32,24,58,55,58v31,0,57,-26,57,-57v0,-32,-27,-57,-59,-57xm221,-96v4,82,-97,129,-160,81r0,78r-44,0r0,-256r44,0r0,16v16,-13,34,-20,60,-21v63,1,97,42,100,102","w":231},"q":{"d":"113,-40v33,0,55,-25,55,-58v0,-30,-24,-56,-53,-56v-32,0,-58,26,-58,57v-1,30,26,57,56,57xm110,-198v26,0,44,8,60,21r0,-16r45,0r0,256r-45,0r0,-78v-62,48,-165,0,-160,-81v4,-58,37,-101,100,-102","w":231},"r":{"d":"110,-154v-69,-2,-41,92,-47,154r-45,0r0,-193r42,0r0,22v13,-15,26,-24,50,-25r0,42","w":108,"k":{"z":-7,"y":-13,"x":-13,"w":-13,"v":-13,"u":-7,"t":-13,"r":-7,"n":-7,"m":-7,"h":-7,"f":-13,".":23,",":23}},"s":{"d":"136,-57v5,55,-75,83,-109,43v-11,-12,-18,-29,-19,-50v13,2,32,-4,41,2v-4,32,46,40,46,8v0,-44,-78,-25,-78,-86v0,-49,65,-77,99,-43v10,10,16,23,17,41v-13,-1,-30,2,-41,-1v0,-12,-6,-20,-18,-19v-10,0,-17,8,-17,18v13,33,88,31,79,87","w":146},"t":{"d":"34,0r0,-153r-30,0r0,-40r30,0r0,-63r45,0r0,63r30,0r0,40r-30,0r0,153r-45,0","w":110},"u":{"d":"104,-38v60,0,37,-95,42,-155r44,0r0,193r-44,0r0,-21v-13,16,-26,26,-52,26v-50,0,-76,-33,-75,-86r0,-112r45,0v6,59,-21,155,40,155"},"v":{"d":"104,0r-35,0r-74,-193r48,0r45,128r47,-128r46,0","w":174,"k":{".":28,",":28}},"w":{"d":"126,-117r-32,117r-30,0r-67,-193r49,0r31,111r34,-111r33,0r33,111r31,-111r49,0r-68,193r-29,0","w":253,"k":{".":26,",":26}},"x":{"d":"81,-62r-40,62r-50,0r66,-100r-58,-93r50,0r34,55r34,-55r53,0r-62,91r62,102r-51,0","w":164,"k":{"o":6,"e":6,"c":6}},"y":{"d":"-4,-193r48,0r47,135r52,-135r47,0r-105,256r-46,0r27,-68","w":184,"k":{".":31,"-":6,",":31}},"z":{"d":"6,0r0,-41r86,-111r-79,0r0,-41r128,0r0,48r-81,102r86,0r0,43r-140,0","w":151},"{":{"d":"77,-198v-2,-56,24,-63,77,-62r0,32v-81,-21,-4,130,-77,135v42,4,36,51,36,97v0,32,9,39,41,38r0,31v-52,1,-77,-6,-77,-61v0,-48,7,-98,-49,-90r0,-31v54,8,51,-40,49,-89","w":180},"|":{"d":"75,-275r31,0r0,360r-31,0r0,-360","w":180},"}":{"d":"103,-93v-76,-6,8,-151,-76,-135r0,-32v52,-1,76,7,76,62v0,48,-8,97,49,89r0,31v-55,-8,-51,40,-49,90v2,55,-24,62,-76,61r0,-31v82,18,1,-129,76,-135","w":180},"~":{"d":"99,-134v35,-2,75,23,103,23v28,-1,46,-12,67,-27r0,33v-20,13,-40,23,-67,24v-34,1,-78,-25,-103,-23v-29,2,-46,12,-68,28r0,-33v20,-13,40,-24,68,-25","w":299},"\u00a0":{"w":104}}});
;/* 
 * flowplayer.js 3.1.4. The Flowplayer API
 * 
 * Copyright 2009 Flowplayer Oy
 * 
 * This file is part of Flowplayer.
 * 
 * Flowplayer is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 * 
 * Flowplayer is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License
 * along with Flowplayer.  If not, see <http://www.gnu.org/licenses/>.
 * 
 * Date: 2009-02-25 21:24:29 +0000 (Wed, 25 Feb 2009)
 * Revision: 166 
 */
(function(){function g(o){console.log("$f.fireEvent",[].slice.call(o))}function k(q){if(!q||typeof q!="object"){return q}var o=new q.constructor();for(var p in q){if(q.hasOwnProperty(p)){o[p]=k(q[p])}}return o}function m(t,q){if(!t){return}var o,p=0,r=t.length;if(r===undefined){for(o in t){if(q.call(t[o],o,t[o])===false){break}}}else{for(var s=t[0];p<r&&q.call(s,p,s)!==false;s=t[++p]){}}return t}function c(o){return document.getElementById(o)}function i(q,p,o){if(typeof p!="object"){return q}if(q&&p){m(p,function(r,s){if(!o||typeof s!="function"){q[r]=s}})}return q}function n(s){var q=s.indexOf(".");if(q!=-1){var p=s.substring(0,q)||"*";var o=s.substring(q+1,s.length);var r=[];m(document.getElementsByTagName(p),function(){if(this.className&&this.className.indexOf(o)!=-1){r.push(this)}});return r}}function f(o){o=o||window.event;if(o.preventDefault){o.stopPropagation();o.preventDefault()}else{o.returnValue=false;o.cancelBubble=true}return false}function j(q,o,p){q[o]=q[o]||[];q[o].push(p)}function e(){return"_"+(""+Math.random()).substring(2,10)}var h=function(t,r,s){var q=this;var p={};var u={};q.index=r;if(typeof t=="string"){t={url:t}}i(this,t,true);m(("Begin*,Start,Pause*,Resume*,Seek*,Stop*,Finish*,LastSecond,Update,BufferFull,BufferEmpty,BufferStop").split(","),function(){var v="on"+this;if(v.indexOf("*")!=-1){v=v.substring(0,v.length-1);var w="onBefore"+v.substring(2);q[w]=function(x){j(u,w,x);return q}}q[v]=function(x){j(u,v,x);return q};if(r==-1){if(q[w]){s[w]=q[w]}if(q[v]){s[v]=q[v]}}});i(this,{onCuepoint:function(x,w){if(arguments.length==1){p.embedded=[null,x];return q}if(typeof x=="number"){x=[x]}var v=e();p[v]=[x,w];if(s.isLoaded()){s._api().fp_addCuepoints(x,r,v)}return q},update:function(w){i(q,w);if(s.isLoaded()){s._api().fp_updateClip(w,r)}var v=s.getConfig();var x=(r==-1)?v.clip:v.playlist[r];i(x,w,true)},_fireEvent:function(v,y,w,A){if(v=="onLoad"){m(p,function(B,C){if(C[0]){s._api().fp_addCuepoints(C[0],r,B)}});return false}A=A||q;if(v=="onCuepoint"){var z=p[y];if(z){return z[1].call(s,A,w)}}if(y&&"onBeforeBegin,onMetaData,onStart,onUpdate,onResume".indexOf(v)!=-1){i(A,y);if(y.metaData){if(!A.duration){A.duration=y.metaData.duration}else{A.fullDuration=y.metaData.duration}}}var x=true;m(u[v],function(){x=this.call(s,A,y,w)});return x}});if(t.onCuepoint){var o=t.onCuepoint;q.onCuepoint.apply(q,typeof o=="function"?[o]:o);delete t.onCuepoint}m(t,function(v,w){if(typeof w=="function"){j(u,v,w);delete t[v]}});if(r==-1){s.onCuepoint=this.onCuepoint}};var l=function(p,r,q,t){var s={};var o=this;var u=false;if(t){i(s,t)}m(r,function(v,w){if(typeof w=="function"){s[v]=w;delete r[v]}});i(this,{animate:function(y,z,x){if(!y){return o}if(typeof z=="function"){x=z;z=500}if(typeof y=="string"){var w=y;y={};y[w]=z;z=500}if(x){var v=e();s[v]=x}if(z===undefined){z=500}r=q._api().fp_animate(p,y,z,v);return o},css:function(w,x){if(x!==undefined){var v={};v[w]=x;w=v}r=q._api().fp_css(p,w);i(o,r);return o},show:function(){this.display="block";q._api().fp_showPlugin(p);return o},hide:function(){this.display="none";q._api().fp_hidePlugin(p);return o},toggle:function(){this.display=q._api().fp_togglePlugin(p);return o},fadeTo:function(y,x,w){if(typeof x=="function"){w=x;x=500}if(w){var v=e();s[v]=w}this.display=q._api().fp_fadeTo(p,y,x,v);this.opacity=y;return o},fadeIn:function(w,v){return o.fadeTo(1,w,v)},fadeOut:function(w,v){return o.fadeTo(0,w,v)},getName:function(){return p},getPlayer:function(){return q},_fireEvent:function(w,v,x){if(w=="onUpdate"){var y=q._api().fp_getPlugin(p);if(!y){return}i(o,y);delete o.methods;if(!u){m(y.methods,function(){var A=""+this;o[A]=function(){var B=[].slice.call(arguments);var C=q._api().fp_invoke(p,A,B);return C==="undefined"||C===undefined?o:C}});u=true}}var z=s[w];if(z){z.apply(o,v);if(w.substring(0,1)=="_"){delete s[w]}}}})};function b(o,t,z){var E=this,y=null,x,u,p=[],s={},B={},r,v,w,D,A,q;i(E,{id:function(){return r},isLoaded:function(){return(y!==null)},getParent:function(){return o},hide:function(F){if(F){o.style.height="0px"}if(y){y.style.height="0px"}return E},show:function(){o.style.height=q+"px";if(y){y.style.height=A+"px"}return E},isHidden:function(){return y&&parseInt(y.style.height,10)===0},load:function(F){if(!y&&E._fireEvent("onBeforeLoad")!==false){m(a,function(){this.unload()});x=o.innerHTML;if(x&&!flashembed.isSupported(t.version)){o.innerHTML=""}flashembed(o,t,{config:z});if(F){F.cached=true;j(B,"onLoad",F)}}return E},unload:function(){if(x.replace(/\s/g,"")!==""){if(E._fireEvent("onBeforeUnload")===false){return E}try{if(y){y.fp_close();E._fireEvent("onUnload")}}catch(F){}y=null;o.innerHTML=x}return E},getClip:function(F){if(F===undefined){F=D}return p[F]},getCommonClip:function(){return u},getPlaylist:function(){return p},getPlugin:function(F){var H=s[F];if(!H&&E.isLoaded()){var G=E._api().fp_getPlugin(F);if(G){H=new l(F,G,E);s[F]=H}}return H},getScreen:function(){return E.getPlugin("screen")},getControls:function(){return E.getPlugin("controls")},getConfig:function(F){return F?k(z):z},getFlashParams:function(){return t},loadPlugin:function(I,H,K,J){if(typeof K=="function"){J=K;K={}}var G=J?e():"_";E._api().fp_loadPlugin(I,H,K,G);var F={};F[G]=J;var L=new l(I,null,E,F);s[I]=L;return L},getState:function(){return y?y.fp_getState():-1},play:function(G,F){function H(){if(G!==undefined){E._api().fp_play(G,F)}else{E._api().fp_play()}}if(y){H()}else{E.load(function(){H()})}return E},getVersion:function(){var G="flowplayer.js 3.1.4";if(y){var F=y.fp_getVersion();F.push(G);return F}return G},_api:function(){if(!y){throw"Flowplayer "+E.id()+" not loaded when calling an API method"}return y},setClip:function(F){E.setPlaylist([F]);return E},getIndex:function(){return w}});m(("Click*,Load*,Unload*,Keypress*,Volume*,Mute*,Unmute*,PlaylistReplace,ClipAdd,Fullscreen*,FullscreenExit,Error,MouseOver,MouseOut").split(","),function(){var F="on"+this;if(F.indexOf("*")!=-1){F=F.substring(0,F.length-1);var G="onBefore"+F.substring(2);E[G]=function(H){j(B,G,H);return E}}E[F]=function(H){j(B,F,H);return E}});m(("pause,resume,mute,unmute,stop,toggle,seek,getStatus,getVolume,setVolume,getTime,isPaused,isPlaying,startBuffering,stopBuffering,isFullscreen,toggleFullscreen,reset,close,setPlaylist,addClip,playFeed").split(","),function(){var F=this;E[F]=function(H,G){if(!y){return E}var I=null;if(H!==undefined&&G!==undefined){I=y["fp_"+F](H,G)}else{I=(H===undefined)?y["fp_"+F]():y["fp_"+F](H)}return I==="undefined"||I===undefined?E:I}});E._fireEvent=function(O){if(typeof O=="string"){O=[O]}var P=O[0],M=O[1],K=O[2],J=O[3],I=0;if(z.debug){g(O)}if(!y&&P=="onLoad"&&M=="player"){y=y||c(v);A=y.clientHeight;m(p,function(){this._fireEvent("onLoad")});m(s,function(Q,R){R._fireEvent("onUpdate")});u._fireEvent("onLoad")}if(P=="onLoad"&&M!="player"){return}if(P=="onError"){if(typeof M=="string"||(typeof M=="number"&&typeof K=="number")){M=K;K=J}}if(P=="onContextMenu"){m(z.contextMenu[M],function(Q,R){R.call(E)});return}if(P=="onPluginEvent"){var F=M.name||M;var G=s[F];if(G){G._fireEvent("onUpdate",M);G._fireEvent(K,O.slice(3))}return}if(P=="onPlaylistReplace"){p=[];var L=0;m(M,function(){p.push(new h(this,L++,E))})}if(P=="onClipAdd"){if(M.isInStream){return}M=new h(M,K,E);p.splice(K,0,M);for(I=K+1;I<p.length;I++){p[I].index++}}var N=true;if(typeof M=="number"&&M<p.length){D=M;var H=p[M];if(H){N=H._fireEvent(P,K,J)}if(!H||N!==false){N=u._fireEvent(P,K,J,H)}}m(B[P],function(){N=this.call(E,M,K);if(this.cached){B[P].splice(I,1)}if(N===false){return false}I++});return N};function C(){if($f(o)){$f(o).getParent().innerHTML="";w=$f(o).getIndex();a[w]=E}else{a.push(E);w=a.length-1}q=parseInt(o.style.height,10)||o.clientHeight;if(typeof t=="string"){t={src:t}}r=o.id||"fp"+e();v=t.id||r+"_api";t.id=v;z.playerId=r;if(typeof z=="string"){z={clip:{url:z}}}if(typeof z.clip=="string"){z.clip={url:z.clip}}z.clip=z.clip||{};if(o.getAttribute("href",2)&&!z.clip.url){z.clip.url=o.getAttribute("href",2)}u=new h(z.clip,-1,E);z.playlist=z.playlist||[z.clip];var F=0;m(z.playlist,function(){var H=this;if(typeof H=="object"&&H.length){H={url:""+H}}m(z.clip,function(I,J){if(J!==undefined&&H[I]===undefined&&typeof J!="function"){H[I]=J}});z.playlist[F]=H;H=new h(H,F,E);p.push(H);F++});m(z,function(H,I){if(typeof I=="function"){if(u[H]){u[H](I)}else{j(B,H,I)}delete z[H]}});m(z.plugins,function(H,I){if(I){s[H]=new l(H,I,E)}});if(!z.plugins||z.plugins.controls===undefined){s.controls=new l("controls",null,E)}s.canvas=new l("canvas",null,E);t.bgcolor=t.bgcolor||"#000000";t.version=t.version||[9,0];t.expressInstall="http://www.flowplayer.org/swf/expressinstall.swf";function G(H){if(!E.isLoaded()&&E._fireEvent("onBeforeClick")!==false){E.load()}return f(H)}x=o.innerHTML;if(x.replace(/\s/g,"")!==""){if(o.addEventListener){o.addEventListener("click",G,false)}else{if(o.attachEvent){o.attachEvent("onclick",G)}}}else{if(o.addEventListener){o.addEventListener("click",f,false)}E.load()}}if(typeof o=="string"){flashembed.domReady(function(){var F=c(o);if(!F){throw"Flowplayer cannot access element: "+o}else{o=F;C()}})}else{C()}}var a=[];function d(o){this.length=o.length;this.each=function(p){m(o,p)};this.size=function(){return o.length}}window.flowplayer=window.$f=function(){var p=null;var o=arguments[0];if(!arguments.length){m(a,function(){if(this.isLoaded()){p=this;return false}});return p||a[0]}if(arguments.length==1){if(typeof o=="number"){return a[o]}else{if(o=="*"){return new d(a)}m(a,function(){if(this.id()==o.id||this.id()==o||this.getParent()==o){p=this;return false}});return p}}if(arguments.length>1){var r=arguments[1];var q=(arguments.length==3)?arguments[2]:{};if(typeof o=="string"){if(o.indexOf(".")!=-1){var t=[];m(n(o),function(){t.push(new b(this,k(r),k(q)))});return new d(t)}else{var s=c(o);return new b(s!==null?s:o,r,q)}}else{if(o){return new b(o,r,q)}}}return null};i(window.$f,{fireEvent:function(){var o=[].slice.call(arguments);var q=$f(o[0]);return q?q._fireEvent(o.slice(1)):null},addPlugin:function(o,p){b.prototype[o]=p;return $f},each:m,extend:i});if(typeof jQuery=="function"){jQuery.prototype.flowplayer=function(q,p){if(!arguments.length||typeof arguments[0]=="number"){var o=[];this.each(function(){var r=$f(this);if(r){o.push(r)}});return arguments.length?o[arguments[0]]:new d(o)}return this.each(function(){$f(this,k(q),p?k(p):{})})}}})();(function(){var e=typeof jQuery=="function";var i={width:"100%",height:"100%",allowfullscreen:true,allowscriptaccess:"always",quality:"high",version:null,onFail:null,expressInstall:null,w3c:false,cachebusting:false};if(e){jQuery.tools=jQuery.tools||{};jQuery.tools.flashembed={version:"1.0.4",conf:i}}function j(){if(c.done){return false}var l=document;if(l&&l.getElementsByTagName&&l.getElementById&&l.body){clearInterval(c.timer);c.timer=null;for(var k=0;k<c.ready.length;k++){c.ready[k].call()}c.ready=null;c.done=true}}var c=e?jQuery:function(k){if(c.done){return k()}if(c.timer){c.ready.push(k)}else{c.ready=[k];c.timer=setInterval(j,13)}};function f(l,k){if(k){for(key in k){if(k.hasOwnProperty(key)){l[key]=k[key]}}}return l}function g(k){switch(h(k)){case"string":k=k.replace(new RegExp('(["\\\\])',"g"),"\\$1");k=k.replace(/^\s?(\d+)%/,"$1pct");return'"'+k+'"';case"array":return"["+b(k,function(n){return g(n)}).join(",")+"]";case"function":return'"function()"';case"object":var l=[];for(var m in k){if(k.hasOwnProperty(m)){l.push('"'+m+'":'+g(k[m]))}}return"{"+l.join(",")+"}"}return String(k).replace(/\s/g," ").replace(/\'/g,'"')}function h(l){if(l===null||l===undefined){return false}var k=typeof l;return(k=="object"&&l.push)?"array":k}if(window.attachEvent){window.attachEvent("onbeforeunload",function(){__flash_unloadHandler=function(){};__flash_savedUnloadHandler=function(){}})}function b(k,n){var m=[];for(var l in k){if(k.hasOwnProperty(l)){m[l]=n(k[l])}}return m}function a(r,t){var q=f({},r);var s=document.all;var n='<object width="'+q.width+'" height="'+q.height+'"';if(s&&!q.id){q.id="_"+(""+Math.random()).substring(9)}if(q.id){n+=' id="'+q.id+'"'}if(q.cachebusting){q.src+=((q.src.indexOf("?")!=-1?"&":"?")+Math.random())}if(q.w3c||!s){n+=' data="'+q.src+'" type="application/x-shockwave-flash"'}else{n+=' classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'}n+=">";if(q.w3c||s){n+='<param name="movie" value="'+q.src+'" />'}q.width=q.height=q.id=q.w3c=q.src=null;for(var l in q){if(q[l]!==null){n+='<param name="'+l+'" value="'+q[l]+'" />'}}var o="";if(t){for(var m in t){if(t[m]!==null){o+=m+"="+(typeof t[m]=="object"?g(t[m]):t[m])+"&"}}o=o.substring(0,o.length-1);n+='<param name="flashvars" value=\''+o+"' />"}n+="</object>";return n}function d(m,p,l){var k=flashembed.getVersion();f(this,{getContainer:function(){return m},getConf:function(){return p},getVersion:function(){return k},getFlashvars:function(){return l},getApi:function(){return m.firstChild},getHTML:function(){return a(p,l)}});var q=p.version;var r=p.expressInstall;var o=!q||flashembed.isSupported(q);if(o){p.onFail=p.version=p.expressInstall=null;m.innerHTML=a(p,l)}else{if(q&&r&&flashembed.isSupported([6,65])){f(p,{src:r});l={MMredirectURL:location.href,MMplayerType:"PlugIn",MMdoctitle:document.title};m.innerHTML=a(p,l)}else{if(m.innerHTML.replace(/\s/g,"")!==""){}else{m.innerHTML="<h2>Flash version "+q+" or greater is required</h2><h3>"+(k[0]>0?"Your version is "+k:"You have no flash plugin installed")+"</h3>"+(m.tagName=="A"?"<p>Click here to download latest version</p>":"<p>Download latest version from <a href='http://www.adobe.com/go/getflashplayer'>here</a></p>");if(m.tagName=="A"){m.onclick=function(){location.href="http://www.adobe.com/go/getflashplayer"}}}}}if(!o&&p.onFail){var n=p.onFail.call(this);if(typeof n=="string"){m.innerHTML=n}}if(document.all){window[p.id]=document.getElementById(p.id)}}window.flashembed=function(l,m,k){if(typeof l=="string"){var n=document.getElementById(l);if(n){l=n}else{c(function(){flashembed(l,m,k)});return}}if(!l){return}if(typeof m=="string"){m={src:m}}var o=f({},i);f(o,m);return new d(l,o,k)};f(window.flashembed,{getVersion:function(){var m=[0,0];if(navigator.plugins&&typeof navigator.plugins["Shockwave Flash"]=="object"){var l=navigator.plugins["Shockwave Flash"].description;if(typeof l!="undefined"){l=l.replace(/^.*\s+(\S+\s+\S+$)/,"$1");var n=parseInt(l.replace(/^(.*)\..*$/,"$1"),10);var r=/r/.test(l)?parseInt(l.replace(/^.*r(.*)$/,"$1"),10):0;m=[n,r]}}else{if(window.ActiveXObject){try{var p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7")}catch(q){try{p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");m=[6,0];p.AllowScriptAccess="always"}catch(k){if(m[0]==6){return m}}try{p=new ActiveXObject("ShockwaveFlash.ShockwaveFlash")}catch(o){}}if(typeof p=="object"){l=p.GetVariable("$version");if(typeof l!="undefined"){l=l.replace(/^\S+\s+(.*)$/,"$1").split(",");m=[parseInt(l[0],10),parseInt(l[2],10)]}}}}return m},isSupported:function(k){var m=flashembed.getVersion();var l=(m[0]>k[0])||(m[0]==k[0]&&m[1]>=k[1]);return l},domReady:c,asString:g,getHTML:a});if(e){jQuery.fn.flashembed=function(l,k){var m=null;this.each(function(){m=flashembed(this,l,k)});return l.api===false?this:m}}})();;/*
 * flowplayer.playlist 3.0.7. Flowplayer JavaScript plugin.
 * 
 * This file is part of Flowplayer, http://flowplayer.org
 *
 * Author: Tero Piirainen, <info@flowplayer.org>
 * Copyright (c) 2008 Flowplayer Ltd
 *
 * Dual licensed under MIT and GPL 2+ licenses
 * SEE: http://www.opensource.org/licenses
 * 
 * Date: 2009-09-03 09:44:40 +0000 (Thu, 03 Sep 2009)
 * Revision: 2090 
 */
(function(a){$f.addPlugin("playlist",function(d,o){var n=this;var b={playingClass:"playing",pausedClass:"paused",progressClass:"progress",template:'<a href="${url}">${title}</a>',loop:false,playOnClick:true,manual:false};a.extend(b,o);d=a(d);var j=n.getPlaylist().length<=1||b.manual;var k=null;function e(q){var p=m;a.each(q,function(r,s){if(!a.isFunction(s)){p=p.replace("${"+r+"}",s).replace("$%7B"+r+"%7D",s)}});return p}function i(){k=d.children().unbind("click.playlist").bind("click.playlist",function(){return h(a(this),k.index(this))})}function c(){d.empty();a.each(n.getPlaylist(),function(){d.append(e(this))});i()}function h(p,q){if(p.hasClass(b.playingClass)||p.hasClass(b.pausedClass)){n.toggle()}else{p.addClass(b.progressClass);n.play(q)}return false}function l(){if(j){k=d.children()}k.removeClass(b.playingClass);k.removeClass(b.pausedClass);k.removeClass(b.progressClass)}function f(p){return(j)?k.filter("[href="+p.originalUrl+"]"):k.eq(p.index)}if(!j){var m=d.is(":empty")?b.template:d.html();c()}else{k=d.children();if(a.isFunction(k.live)){a(d.selector+"> *").live("click",function(){var p=a(this);return h(p,p.attr("href"))})}else{k.click(function(){var p=a(this);return h(p,p.attr("href"))})}var g=n.getClip(0);if(!g.url&&b.playOnClick){g.update({url:k.eq(0).attr("href")})}}n.onBegin(function(p){l();f(p).addClass(b.playingClass)});n.onPause(function(p){f(p).removeClass(b.playingClass).addClass(b.pausedClass)});n.onResume(function(p){f(p).removeClass(b.pausedClass).addClass(b.playingClass)});if(!b.loop&&!j){n.onBeforeFinish(function(p){if(!p.isInStream&&p.index<k.length-1){return false}})}if(j&&b.loop){n.onBeforeFinish(function(q){var p=f(q);if(p.next().length){p.next().click()}else{k.eq(0).click()}return false})}n.onUnload(function(){l()});if(!j){n.onPlaylistReplace(function(){c()})}n.onClipAdd(function(q,p){k.eq(p).before(e(q));i()});return n})})(jQuery);;/*
 * jquery.tools 1.1.2 - The missing UI library for the Web
 * 
 * [tools.tabs-1.0.4, tools.tooltip-1.1.3, tools.scrollable-1.1.2, tools.overlay-1.1.2, tools.overlay.apple-1.0.1, tools.expose-1.0.5]
 * 
 * Copyright (c) 2009 Tero Piirainen
 * http://flowplayer.org/tools/
 *
 * Dual licensed under MIT and GPL 2+ licenses
 * http://www.opensource.org/licenses
 * 
 * -----
 * 
 * File generated: Thu Jan 14 19:44:32 GMT 2010
 */
(function(d){d.tools=d.tools||{};d.tools.tabs={version:"1.0.4",conf:{tabs:"a",current:"current",onBeforeClick:null,onClick:null,effect:"default",initialIndex:0,event:"click",api:false,rotate:false},addEffect:function(e,f){c[e]=f}};var c={"default":function(f,e){this.getPanes().hide().eq(f).show();e.call()},fade:function(g,e){var f=this.getConf(),j=f.fadeOutSpeed,h=this.getPanes();if(j){h.fadeOut(j)}else{h.hide()}h.eq(g).fadeIn(f.fadeInSpeed,e)},slide:function(f,e){this.getPanes().slideUp(200);this.getPanes().eq(f).slideDown(400,e)},ajax:function(f,e){this.getPanes().eq(0).load(this.getTabs().eq(f).attr("href"),e)}};var b;d.tools.tabs.addEffect("horizontal",function(f,e){if(!b){b=this.getPanes().eq(0).width()}this.getCurrentPane().animate({width:0},function(){d(this).hide()});this.getPanes().eq(f).animate({width:b},function(){d(this).show();e.call()})});function a(g,h,f){var e=this,j=d(this),i;d.each(f,function(k,l){if(d.isFunction(l)){j.bind(k,l)}});d.extend(this,{click:function(k,n){var o=e.getCurrentPane();var l=g.eq(k);if(typeof k=="string"&&k.replace("#","")){l=g.filter("[href*="+k.replace("#","")+"]");k=Math.max(g.index(l),0)}if(f.rotate){var m=g.length-1;if(k<0){return e.click(m,n)}if(k>m){return e.click(0,n)}}if(!l.length){if(i>=0){return e}k=f.initialIndex;l=g.eq(k)}if(k===i){return e}n=n||d.Event();n.type="onBeforeClick";j.trigger(n,[k]);if(n.isDefaultPrevented()){return}c[f.effect].call(e,k,function(){n.type="onClick";j.trigger(n,[k])});n.type="onStart";j.trigger(n,[k]);if(n.isDefaultPrevented()){return}i=k;g.removeClass(f.current);l.addClass(f.current);return e},getConf:function(){return f},getTabs:function(){return g},getPanes:function(){return h},getCurrentPane:function(){return h.eq(i)},getCurrentTab:function(){return g.eq(i)},getIndex:function(){return i},next:function(){return e.click(i+1)},prev:function(){return e.click(i-1)},bind:function(k,l){j.bind(k,l);return e},onBeforeClick:function(k){return this.bind("onBeforeClick",k)},onClick:function(k){return this.bind("onClick",k)},unbind:function(k){j.unbind(k);return e}});g.each(function(k){d(this).bind(f.event,function(l){e.click(k,l);return false})});if(location.hash){e.click(location.hash)}else{if(f.initialIndex===0||f.initialIndex>0){e.click(f.initialIndex)}}h.find("a[href^=#]").click(function(k){e.click(d(this).attr("href"),k)})}d.fn.tabs=function(i,f){var g=this.eq(typeof f=="number"?f:0).data("tabs");if(g){return g}if(d.isFunction(f)){f={onBeforeClick:f}}var h=d.extend({},d.tools.tabs.conf),e=this.length;f=d.extend(h,f);this.each(function(l){var j=d(this);var k=j.find(f.tabs);if(!k.length){k=j.children()}var m=i.jquery?i:j.children(i);if(!m.length){m=e==1?d(i):j.parent().find(i)}g=new a(k,m,f);j.data("tabs",g)});return f.api?g:this}})(jQuery);
(function(c){var d=[];c.tools=c.tools||{};c.tools.tooltip={version:"1.1.3",conf:{effect:"toggle",fadeOutSpeed:"fast",tip:null,predelay:0,delay:30,opacity:1,lazy:undefined,position:["top","center"],offset:[0,0],cancelDefault:true,relative:false,oneInstance:true,events:{def:"mouseover,mouseout",input:"focus,blur",widget:"focus mouseover,blur mouseout",tooltip:"mouseover,mouseout"},api:false},addEffect:function(e,g,f){b[e]=[g,f]}};var b={toggle:[function(e){var f=this.getConf(),g=this.getTip(),h=f.opacity;if(h<1){g.css({opacity:h})}g.show();e.call()},function(e){this.getTip().hide();e.call()}],fade:[function(e){this.getTip().fadeIn(this.getConf().fadeInSpeed,e)},function(e){this.getTip().fadeOut(this.getConf().fadeOutSpeed,e)}]};function a(f,g){var p=this,k=c(this);f.data("tooltip",p);var l=f.next();if(g.tip){l=c(g.tip);if(l.length>1){l=f.nextAll(g.tip).eq(0);if(!l.length){l=f.parent().nextAll(g.tip).eq(0)}}}function o(u){var t=g.relative?f.position().top:f.offset().top,s=g.relative?f.position().left:f.offset().left,v=g.position[0];t-=l.outerHeight()-g.offset[0];s+=f.outerWidth()+g.offset[1];var q=l.outerHeight()+f.outerHeight();if(v=="center"){t+=q/2}if(v=="bottom"){t+=q}v=g.position[1];var r=l.outerWidth()+f.outerWidth();if(v=="center"){s-=r/2}if(v=="left"){s-=r}return{top:t,left:s}}var i=f.is(":input"),e=i&&f.is(":checkbox, :radio, select, :button"),h=f.attr("type"),n=g.events[h]||g.events[i?(e?"widget":"input"):"def"];n=n.split(/,\s*/);if(n.length!=2){throw"Tooltip: bad events configuration for "+h}f.bind(n[0],function(r){if(g.oneInstance){c.each(d,function(){this.hide()})}var q=l.data("trigger");if(q&&q[0]!=this){l.hide().stop(true,true)}r.target=this;p.show(r);n=g.events.tooltip.split(/,\s*/);l.bind(n[0],function(){p.show(r)});if(n[1]){l.bind(n[1],function(){p.hide(r)})}});f.bind(n[1],function(q){p.hide(q)});if(!c.browser.msie&&!i&&!g.predelay){f.mousemove(function(){if(!p.isShown()){f.triggerHandler("mouseover")}})}if(g.opacity<1){l.css("opacity",g.opacity)}var m=0,j=f.attr("title");if(j&&g.cancelDefault){f.removeAttr("title");f.data("title",j)}c.extend(p,{show:function(r){if(r){f=c(r.target)}clearTimeout(l.data("timer"));if(l.is(":animated")||l.is(":visible")){return p}function q(){l.data("trigger",f);var t=o(r);if(g.tip&&j){l.html(f.data("title"))}r=r||c.Event();r.type="onBeforeShow";k.trigger(r,[t]);if(r.isDefaultPrevented()){return p}t=o(r);l.css({position:"absolute",top:t.top,left:t.left});var s=b[g.effect];if(!s){throw'Nonexistent effect "'+g.effect+'"'}s[0].call(p,function(){r.type="onShow";k.trigger(r)})}if(g.predelay){clearTimeout(m);m=setTimeout(q,g.predelay)}else{q()}return p},hide:function(r){clearTimeout(l.data("timer"));clearTimeout(m);if(!l.is(":visible")){return}function q(){r=r||c.Event();r.type="onBeforeHide";k.trigger(r);if(r.isDefaultPrevented()){return}b[g.effect][1].call(p,function(){r.type="onHide";k.trigger(r)})}if(g.delay&&r){l.data("timer",setTimeout(q,g.delay))}else{q()}return p},isShown:function(){return l.is(":visible, :animated")},getConf:function(){return g},getTip:function(){return l},getTrigger:function(){return f},bind:function(q,r){k.bind(q,r);return p},onHide:function(q){return this.bind("onHide",q)},onBeforeShow:function(q){return this.bind("onBeforeShow",q)},onShow:function(q){return this.bind("onShow",q)},onBeforeHide:function(q){return this.bind("onBeforeHide",q)},unbind:function(q){k.unbind(q);return p}});c.each(g,function(q,r){if(c.isFunction(r)){p.bind(q,r)}})}c.prototype.tooltip=function(e){var f=this.eq(typeof e=="number"?e:0).data("tooltip");if(f){return f}var g=c.extend(true,{},c.tools.tooltip.conf);if(c.isFunction(e)){e={onBeforeShow:e}}else{if(typeof e=="string"){e={tip:e}}}e=c.extend(true,g,e);if(typeof e.position=="string"){e.position=e.position.split(/,?\s/)}if(e.lazy!==false&&(e.lazy===true||this.length>20)){this.one("mouseover",function(h){f=new a(c(this),e);f.show(h);d.push(f)})}else{this.each(function(){f=new a(c(this),e);d.push(f)})}return e.api?f:this}})(jQuery);
(function(b){b.tools=b.tools||{};b.tools.scrollable={version:"1.1.2",conf:{size:5,vertical:false,speed:400,keyboard:true,keyboardSteps:null,disabledClass:"disabled",hoverClass:null,clickable:true,activeClass:"active",easing:"swing",loop:false,items:".items",item:null,prev:".prev",next:".next",prevPage:".prevPage",nextPage:".nextPage",api:false}};var c;function a(o,m){var r=this,p=b(this),d=!m.vertical,e=o.children(),k=0,i;if(!c){c=r}b.each(m,function(s,t){if(b.isFunction(t)){p.bind(s,t)}});if(e.length>1){e=b(m.items,o)}function l(t){var s=b(t);return m.globalNav?s:o.parent().find(t)}o.data("finder",l);var f=l(m.prev),h=l(m.next),g=l(m.prevPage),n=l(m.nextPage);b.extend(r,{getIndex:function(){return k},getClickIndex:function(){var s=r.getItems();return s.index(s.filter("."+m.activeClass))},getConf:function(){return m},getSize:function(){return r.getItems().size()},getPageAmount:function(){return Math.ceil(this.getSize()/m.size)},getPageIndex:function(){return Math.ceil(k/m.size)},getNaviButtons:function(){return f.add(h).add(g).add(n)},getRoot:function(){return o},getItemWrap:function(){return e},getItems:function(){return e.children(m.item)},getVisibleItems:function(){return r.getItems().slice(k,k+m.size)},seekTo:function(s,w,t){if(s<0){s=0}if(k===s){return r}if(b.isFunction(w)){t=w}if(s>r.getSize()-m.size){return m.loop?r.begin():this.end()}var u=r.getItems().eq(s);if(!u.length){return r}var v=b.Event("onBeforeSeek");p.trigger(v,[s]);if(v.isDefaultPrevented()){return r}if(w===undefined||b.isFunction(w)){w=m.speed}function x(){if(t){t.call(r,s)}p.trigger("onSeek",[s])}if(d){e.animate({left:-u.position().left},w,m.easing,x)}else{e.animate({top:-u.position().top},w,m.easing,x)}c=r;k=s;v=b.Event("onStart");p.trigger(v,[s]);if(v.isDefaultPrevented()){return r}f.add(g).toggleClass(m.disabledClass,s===0);h.add(n).toggleClass(m.disabledClass,s>=r.getSize()-m.size);return r},move:function(u,t,s){i=u>0;return this.seekTo(k+u,t,s)},next:function(t,s){return this.move(1,t,s)},prev:function(t,s){return this.move(-1,t,s)},movePage:function(w,v,u){i=w>0;var s=m.size*w;var t=k%m.size;if(t>0){s+=(w>0?-t:m.size-t)}return this.move(s,v,u)},prevPage:function(t,s){return this.movePage(-1,t,s)},nextPage:function(t,s){return this.movePage(1,t,s)},setPage:function(t,u,s){return this.seekTo(t*m.size,u,s)},begin:function(t,s){i=false;return this.seekTo(0,t,s)},end:function(t,s){i=true;var u=this.getSize()-m.size;return u>0?this.seekTo(u,t,s):r},reload:function(){p.trigger("onReload");return r},focus:function(){c=r;return r},click:function(u){var v=r.getItems().eq(u),s=m.activeClass,t=m.size;if(u<0||u>=r.getSize()){return r}if(t==1){if(m.loop){return r.next()}if(u===0||u==r.getSize()-1){i=(i===undefined)?true:!i}return i===false?r.prev():r.next()}if(t==2){if(u==k){u--}r.getItems().removeClass(s);v.addClass(s);return r.seekTo(u,time,fn)}if(!v.hasClass(s)){r.getItems().removeClass(s);v.addClass(s);var x=Math.floor(t/2);var w=u-x;if(w>r.getSize()-t){w=r.getSize()-t}if(w!==u){return r.seekTo(w)}}return r},bind:function(s,t){p.bind(s,t);return r},unbind:function(s){p.unbind(s);return r}});b.each("onBeforeSeek,onStart,onSeek,onReload".split(","),function(s,t){r[t]=function(u){return r.bind(t,u)}});f.addClass(m.disabledClass).click(function(){r.prev()});h.click(function(){r.next()});n.click(function(){r.nextPage()});if(r.getSize()<m.size){h.add(n).addClass(m.disabledClass)}g.addClass(m.disabledClass).click(function(){r.prevPage()});var j=m.hoverClass,q="keydown."+Math.random().toString().substring(10);r.onReload(function(){if(j){r.getItems().hover(function(){b(this).addClass(j)},function(){b(this).removeClass(j)})}if(m.clickable){r.getItems().each(function(s){b(this).unbind("click.scrollable").bind("click.scrollable",function(t){if(b(t.target).is("a")){return}return r.click(s)})})}if(m.keyboard){b(document).unbind(q).bind(q,function(t){if(t.altKey||t.ctrlKey){return}if(m.keyboard!="static"&&c!=r){return}var u=m.keyboardSteps;if(d&&(t.keyCode==37||t.keyCode==39)){r.move(t.keyCode==37?-u:u);return t.preventDefault()}if(!d&&(t.keyCode==38||t.keyCode==40)){r.move(t.keyCode==38?-u:u);return t.preventDefault()}return true})}else{b(document).unbind(q)}});r.reload()}b.fn.scrollable=function(d){var e=this.eq(typeof d=="number"?d:0).data("scrollable");if(e){return e}var f=b.extend({},b.tools.scrollable.conf);d=b.extend(f,d);d.keyboardSteps=d.keyboardSteps||d.size;this.each(function(){e=new a(b(this),d);b(this).data("scrollable",e)});return d.api?e:this}})(jQuery);
(function(c){c.tools=c.tools||{};c.tools.overlay={version:"1.1.2",addEffect:function(e,f,g){b[e]=[f,g]},conf:{top:"10%",left:"center",absolute:false,speed:"normal",closeSpeed:"fast",effect:"default",close:null,oneInstance:true,closeOnClick:true,closeOnEsc:true,api:false,expose:null,target:null}};var b={};c.tools.overlay.addEffect("default",function(e){this.getOverlay().fadeIn(this.getConf().speed,e)},function(e){this.getOverlay().fadeOut(this.getConf().closeSpeed,e)});var d=[];function a(g,k){var o=this,m=c(this),n=c(window),j,i,h,e=k.expose&&c.tools.expose.version;var f=k.target||g.attr("rel");i=f?c(f):null||g;if(!i.length){throw"Could not find Overlay: "+f}if(g&&g.index(i)==-1){g.click(function(p){o.load(p);return p.preventDefault()})}c.each(k,function(p,q){if(c.isFunction(q)){m.bind(p,q)}});c.extend(o,{load:function(u){if(o.isOpened()){return o}var r=b[k.effect];if(!r){throw'Overlay: cannot find effect : "'+k.effect+'"'}if(k.oneInstance){c.each(d,function(){this.close(u)})}u=u||c.Event();u.type="onBeforeLoad";m.trigger(u);if(u.isDefaultPrevented()){return o}h=true;if(e){i.expose().load(u)}var t=k.top;var s=k.left;var p=i.outerWidth({margin:true});var q=i.outerHeight({margin:true});if(typeof t=="string"){t=t=="center"?Math.max((n.height()-q)/2,0):parseInt(t,10)/100*n.height()}if(s=="center"){s=Math.max((n.width()-p)/2,0)}if(!k.absolute){t+=n.scrollTop();s+=n.scrollLeft()}i.css({top:t,left:s,position:"absolute"});u.type="onStart";m.trigger(u);r[0].call(o,function(){if(h){u.type="onLoad";m.trigger(u)}});if(k.closeOnClick){c(document).bind("click.overlay",function(w){if(!o.isOpened()){return}var v=c(w.target);if(v.parents(i).length>1){return}c.each(d,function(){this.close(w)})})}if(k.closeOnEsc){c(document).unbind("keydown.overlay").bind("keydown.overlay",function(v){if(v.keyCode==27){c.each(d,function(){this.close(v)})}})}return o},close:function(q){if(!o.isOpened()){return o}q=q||c.Event();q.type="onBeforeClose";m.trigger(q);if(q.isDefaultPrevented()){return}h=false;b[k.effect][1].call(o,function(){q.type="onClose";m.trigger(q)});var p=true;c.each(d,function(){if(this.isOpened()){p=false}});if(p){c(document).unbind("click.overlay").unbind("keydown.overlay")}return o},getContent:function(){return i},getOverlay:function(){return i},getTrigger:function(){return g},getClosers:function(){return j},isOpened:function(){return h},getConf:function(){return k},bind:function(p,q){m.bind(p,q);return o},unbind:function(p){m.unbind(p);return o}});c.each("onBeforeLoad,onStart,onLoad,onBeforeClose,onClose".split(","),function(p,q){o[q]=function(r){return o.bind(q,r)}});if(e){if(typeof k.expose=="string"){k.expose={color:k.expose}}c.extend(k.expose,{api:true,closeOnClick:k.closeOnClick,closeOnEsc:false});var l=i.expose(k.expose);l.onBeforeClose(function(p){o.close(p)});o.onClose(function(p){l.close(p)})}j=i.find(k.close||".close");if(!j.length&&!k.close){j=c('<div class="close"></div>');i.prepend(j)}j.click(function(p){o.close(p)})}c.fn.overlay=function(e){var f=this.eq(typeof e=="number"?e:0).data("overlay");if(f){return f}if(c.isFunction(e)){e={onBeforeLoad:e}}var g=c.extend({},c.tools.overlay.conf);e=c.extend(true,g,e);this.each(function(){f=new a(c(this),e);d.push(f);c(this).data("overlay",f)});return e.api?f:this}})(jQuery);
(function(d){var b=d.tools.overlay;b.effects=b.effects||{};b.effects.apple={version:"1.0.1"};d.extend(b.conf,{start:{absolute:true,top:null,left:null},fadeInSpeed:"fast",zIndex:9999});function c(f){var g=f.offset();return[g.top+f.height()/2,g.left+f.width()/2]}var e=function(n){var k=this.getOverlay(),f=this.getConf(),i=this.getTrigger(),q=this,r=k.outerWidth({margin:true}),m=k.data("img");if(!m){var l=k.css("backgroundImage");if(!l){throw"background-image CSS property not set for overlay"}l=l.substring(l.indexOf("(")+1,l.indexOf(")")).replace(/\"/g,"");k.css("backgroundImage","none");m=d('<img src="'+l+'"/>');m.css({border:0,position:"absolute",display:"none"}).width(r);d("body").append(m);k.data("img",m)}var o=d(window),j=f.start.top||Math.round(o.height()/2),h=f.start.left||Math.round(o.width()/2);if(i){var g=c(i);j=g[0];h=g[1]}if(!f.start.absolute){j+=o.scrollTop();h+=o.scrollLeft()}m.css({top:j,left:h,width:0,zIndex:f.zIndex}).show();m.animate({top:k.css("top"),left:k.css("left"),width:r},f.speed,function(){k.css("zIndex",f.zIndex+1).fadeIn(f.fadeInSpeed,function(){if(q.isOpened()&&!d(this).index(k)){n.call()}else{k.hide()}})})};var a=function(f){var h=this.getOverlay(),i=this.getConf(),g=this.getTrigger(),l=i.start.top,k=i.start.left;h.hide();if(g){var j=c(g);l=j[0];k=j[1]}h.data("img").animate({top:l,left:k,width:0},i.closeSpeed,f)};b.addEffect("apple",e,a)})(jQuery);
(function(b){b.tools=b.tools||{};b.tools.expose={version:"1.0.5",conf:{maskId:null,loadSpeed:"slow",closeSpeed:"fast",closeOnClick:true,closeOnEsc:true,zIndex:9998,opacity:0.8,color:"#456",api:false}};function a(){if(b.browser.msie){var f=b(document).height(),e=b(window).height();return[window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth,f-e<20?e:f]}return[b(window).width(),b(document).height()]}function c(h,g){var e=this,j=b(this),d=null,f=false,i=0;b.each(g,function(k,l){if(b.isFunction(l)){j.bind(k,l)}});b(window).resize(function(){e.fit()});b.extend(this,{getMask:function(){return d},getExposed:function(){return h},getConf:function(){return g},isLoaded:function(){return f},load:function(n){if(f){return e}i=h.eq(0).css("zIndex");if(g.maskId){d=b("#"+g.maskId)}if(!d||!d.length){var l=a();d=b("<div/>").css({position:"absolute",top:0,left:0,width:l[0],height:l[1],display:"none",opacity:0,zIndex:g.zIndex});if(g.maskId){d.attr("id",g.maskId)}b("body").append(d);var k=d.css("backgroundColor");if(!k||k=="transparent"||k=="rgba(0, 0, 0, 0)"){d.css("backgroundColor",g.color)}if(g.closeOnEsc){b(document).bind("keydown.unexpose",function(o){if(o.keyCode==27){e.close()}})}if(g.closeOnClick){d.bind("click.unexpose",function(o){e.close(o)})}}n=n||b.Event();n.type="onBeforeLoad";j.trigger(n);if(n.isDefaultPrevented()){return e}b.each(h,function(){var o=b(this);if(!/relative|absolute|fixed/i.test(o.css("position"))){o.css("position","relative")}});h.css({zIndex:Math.max(g.zIndex+1,i=="auto"?0:i)});var m=d.height();if(!this.isLoaded()){d.css({opacity:0,display:"block"}).fadeTo(g.loadSpeed,g.opacity,function(){if(d.height()!=m){d.css("height",m)}n.type="onLoad";j.trigger(n)})}f=true;return e},close:function(k){if(!f){return e}k=k||b.Event();k.type="onBeforeClose";j.trigger(k);if(k.isDefaultPrevented()){return e}d.fadeOut(g.closeSpeed,function(){k.type="onClose";j.trigger(k);h.css({zIndex:b.browser.msie?i:null})});f=false;return e},fit:function(){if(d){var k=a();d.css({width:k[0],height:k[1]})}},bind:function(k,l){j.bind(k,l);return e},unbind:function(k){j.unbind(k);return e}});b.each("onBeforeLoad,onLoad,onBeforeClose,onClose".split(","),function(k,l){e[l]=function(m){return e.bind(l,m)}})}b.fn.expose=function(d){var e=this.eq(typeof d=="number"?d:0).data("expose");if(e){return e}if(typeof d=="string"){d={color:d}}var f=b.extend({},b.tools.expose.conf);d=b.extend(f,d);this.each(function(){e=new c(b(this),d);b(this).data("expose",e)});return d.api?e:this}})(jQuery);
;
