

/*
 * 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")}})})();

sfHover = function() {
	if (!document.getElementsByTagName) return false;
	var sfEls = document.getElementById("nav").getElementsByTagName("li");
	for (var i=0; i<sfEls.length; i++) {
		sfEls[i].onmouseover=function() {
			this.className+=" sfhover";
		}
		sfEls[i].onmouseout=function() {
			this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
		}
	}
}
if (window.attachEvent) window.attachEvent("onload", sfHover);



$(document).ready(function(){
	
	$(".accordion h3:first").addClass("active");
	$(".accordion div:not(:first)").hide();

	$(".accordion h3").click(function(){
		$(this).next("div").slideToggle("fast")
		.siblings("div:visible").slideUp("fast");
		$(this).toggleClass("active");
		$(this).siblings("h3").removeClass("active");
	});
   //Back to top slider

	jQuery('#toTop').click(function() {  
		jQuery('body,html').animate({scrollTop:0},800);  
	}); 
	
	$(".testMenuItem").click(function(event){
		  window.location.hash=this.hash;
	 });
});

/*
 * jQuery UI 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI
 */
jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7.2",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return}for(var m=0;m<n.length;m++){if(j.options[n[m][0]]){n[m][1].apply(j.element,k)}}}},contains:function(k,j){return document.compareDocumentPosition?k.compareDocumentPosition(j)&16:k!==j&&k.contains(j)},hasScroll:function(m,k){if(c(m).css("overflow")=="hidden"){return false}var j=(k&&k=="left")?"scrollLeft":"scrollTop",l=false;if(m[j]>0){return true}m[j]=1;l=(m[j]>0);m[j]=0;return l},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l))},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)))};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""))}):e.call(this,j))}}c.fn.extend({remove:function(){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")});return i.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return !!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return !(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return !this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;/*
 * jQuery UI Effects 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/
 */
jQuery.effects||(function(d){d.effects={version:"1.7.2",save:function(g,h){for(var f=0;f<h.length;f++){if(h[f]!==null){g.data("ec.storage."+h[f],g[0].style[h[f]])}}},restore:function(g,h){for(var f=0;f<h.length;f++){if(h[f]!==null){g.css(h[f],g.data("ec.storage."+h[f]))}}},setMode:function(f,g){if(g=="toggle"){g=f.is(":hidden")?"show":"hide"}return g},getBaseline:function(g,h){var i,f;switch(g[0]){case"top":i=0;break;case"middle":i=0.5;break;case"bottom":i=1;break;default:i=g[0]/h.height}switch(g[1]){case"left":f=0;break;case"center":f=0.5;break;case"right":f=1;break;default:f=g[1]/h.width}return{x:f,y:i}},createWrapper:function(f){if(f.parent().is(".ui-effects-wrapper")){return f.parent()}var g={width:f.outerWidth(true),height:f.outerHeight(true),"float":f.css("float")};f.wrap('<div class="ui-effects-wrapper" style="font-size:100%;background:transparent;border:none;margin:0;padding:0"></div>');var j=f.parent();if(f.css("position")=="static"){j.css({position:"relative"});f.css({position:"relative"})}else{var i=f.css("top");if(isNaN(parseInt(i,10))){i="auto"}var h=f.css("left");if(isNaN(parseInt(h,10))){h="auto"}j.css({position:f.css("position"),top:i,left:h,zIndex:f.css("z-index")}).show();f.css({position:"relative",top:0,left:0})}j.css(g);return j},removeWrapper:function(f){if(f.parent().is(".ui-effects-wrapper")){return f.parent().replaceWith(f)}return f},setTransition:function(g,i,f,h){h=h||{};d.each(i,function(k,j){unit=g.cssUnit(j);if(unit[0]>0){h[j]=unit[0]*f+unit[1]}});return h},animateClass:function(h,i,k,j){var f=(typeof k=="function"?k:(j?j:null));var g=(typeof k=="string"?k:null);return this.each(function(){var q={};var o=d(this);var p=o.attr("style")||"";if(typeof p=="object"){p=p.cssText}if(h.toggle){o.hasClass(h.toggle)?h.remove=h.toggle:h.add=h.toggle}var l=d.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(h.add){o.addClass(h.add)}if(h.remove){o.removeClass(h.remove)}var m=d.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(h.add){o.removeClass(h.add)}if(h.remove){o.addClass(h.remove)}for(var r in m){if(typeof m[r]!="function"&&m[r]&&r.indexOf("Moz")==-1&&r.indexOf("length")==-1&&m[r]!=l[r]&&(r.match(/color/i)||(!r.match(/color/i)&&!isNaN(parseInt(m[r],10))))&&(l.position!="static"||(l.position=="static"&&!r.match(/left|top|bottom|right/)))){q[r]=m[r]}}o.animate(q,i,g,function(){if(typeof d(this).attr("style")=="object"){d(this).attr("style")["cssText"]="";d(this).attr("style")["cssText"]=p}else{d(this).attr("style",p)}if(h.add){d(this).addClass(h.add)}if(h.remove){d(this).removeClass(h.remove)}if(f){f.apply(this,arguments)}})})}};function c(g,f){var i=g[1]&&g[1].constructor==Object?g[1]:{};if(f){i.mode=f}var h=g[1]&&g[1].constructor!=Object?g[1]:(i.duration?i.duration:g[2]);h=d.fx.off?0:typeof h==="number"?h:d.fx.speeds[h]||d.fx.speeds._default;var j=i.callback||(d.isFunction(g[1])&&g[1])||(d.isFunction(g[2])&&g[2])||(d.isFunction(g[3])&&g[3]);return[g[0],i,h,j]}d.fn.extend({_show:d.fn.show,_hide:d.fn.hide,__toggle:d.fn.toggle,_addClass:d.fn.addClass,_removeClass:d.fn.removeClass,_toggleClass:d.fn.toggleClass,effect:function(g,f,h,i){return d.effects[g]?d.effects[g].call(this,{method:g,options:f||{},duration:h,callback:i}):null},show:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))){return this._show.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"show"))}},hide:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))){return this._hide.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"hide"))}},toggle:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))||(d.isFunction(arguments[0])||typeof arguments[0]=="boolean")){return this.__toggle.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"toggle"))}},addClass:function(g,f,i,h){return f?d.effects.animateClass.apply(this,[{add:g},f,i,h]):this._addClass(g)},removeClass:function(g,f,i,h){return f?d.effects.animateClass.apply(this,[{remove:g},f,i,h]):this._removeClass(g)},toggleClass:function(g,f,i,h){return((typeof f!=="boolean")&&f)?d.effects.animateClass.apply(this,[{toggle:g},f,i,h]):this._toggleClass(g,f)},morph:function(f,h,g,j,i){return d.effects.animateClass.apply(this,[{add:h,remove:f},g,j,i])},switchClass:function(){return this.morph.apply(this,arguments)},cssUnit:function(f){var g=this.css(f),h=[];d.each(["em","px","%","pt"],function(j,k){if(g.indexOf(k)>0){h=[parseFloat(g),k]}});return h}});d.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(g,f){d.fx.step[f]=function(h){if(h.state==0){h.start=e(h.elem,f);h.end=b(h.end)}h.elem.style[f]="rgb("+[Math.max(Math.min(parseInt((h.pos*(h.end[0]-h.start[0]))+h.start[0],10),255),0),Math.max(Math.min(parseInt((h.pos*(h.end[1]-h.start[1]))+h.start[1],10),255),0),Math.max(Math.min(parseInt((h.pos*(h.end[2]-h.start[2]))+h.start[2],10),255),0)].join(",")+")"}});function b(g){var f;if(g&&g.constructor==Array&&g.length==3){return g}if(f=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(g)){return[parseInt(f[1],10),parseInt(f[2],10),parseInt(f[3],10)]}if(f=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(g)){return[parseFloat(f[1])*2.55,parseFloat(f[2])*2.55,parseFloat(f[3])*2.55]}if(f=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(g)){return[parseInt(f[1],16),parseInt(f[2],16),parseInt(f[3],16)]}if(f=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(g)){return[parseInt(f[1]+f[1],16),parseInt(f[2]+f[2],16),parseInt(f[3]+f[3],16)]}if(f=/rgba\(0, 0, 0, 0\)/.exec(g)){return a.transparent}return a[d.trim(g).toLowerCase()]}function e(h,f){var g;do{g=d.curCSS(h,f);if(g!=""&&g!="transparent"||d.nodeName(h,"body")){break}f="backgroundColor"}while(h=h.parentNode);return b(g)}var a={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]};d.easing.jswing=d.easing.swing;d.extend(d.easing,{def:"easeOutQuad",swing:function(g,h,f,j,i){return d.easing[d.easing.def](g,h,f,j,i)},easeInQuad:function(g,h,f,j,i){return j*(h/=i)*h+f},easeOutQuad:function(g,h,f,j,i){return -j*(h/=i)*(h-2)+f},easeInOutQuad:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h+f}return -j/2*((--h)*(h-2)-1)+f},easeInCubic:function(g,h,f,j,i){return j*(h/=i)*h*h+f},easeOutCubic:function(g,h,f,j,i){return j*((h=h/i-1)*h*h+1)+f},easeInOutCubic:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h+f}return j/2*((h-=2)*h*h+2)+f},easeInQuart:function(g,h,f,j,i){return j*(h/=i)*h*h*h+f},easeOutQuart:function(g,h,f,j,i){return -j*((h=h/i-1)*h*h*h-1)+f},easeInOutQuart:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h*h+f}return -j/2*((h-=2)*h*h*h-2)+f},easeInQuint:function(g,h,f,j,i){return j*(h/=i)*h*h*h*h+f},easeOutQuint:function(g,h,f,j,i){return j*((h=h/i-1)*h*h*h*h+1)+f},easeInOutQuint:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h*h*h+f}return j/2*((h-=2)*h*h*h*h+2)+f},easeInSine:function(g,h,f,j,i){return -j*Math.cos(h/i*(Math.PI/2))+j+f},easeOutSine:function(g,h,f,j,i){return j*Math.sin(h/i*(Math.PI/2))+f},easeInOutSine:function(g,h,f,j,i){return -j/2*(Math.cos(Math.PI*h/i)-1)+f},easeInExpo:function(g,h,f,j,i){return(h==0)?f:j*Math.pow(2,10*(h/i-1))+f},easeOutExpo:function(g,h,f,j,i){return(h==i)?f+j:j*(-Math.pow(2,-10*h/i)+1)+f},easeInOutExpo:function(g,h,f,j,i){if(h==0){return f}if(h==i){return f+j}if((h/=i/2)<1){return j/2*Math.pow(2,10*(h-1))+f}return j/2*(-Math.pow(2,-10*--h)+2)+f},easeInCirc:function(g,h,f,j,i){return -j*(Math.sqrt(1-(h/=i)*h)-1)+f},easeOutCirc:function(g,h,f,j,i){return j*Math.sqrt(1-(h=h/i-1)*h)+f},easeInOutCirc:function(g,h,f,j,i){if((h/=i/2)<1){return -j/2*(Math.sqrt(1-h*h)-1)+f}return j/2*(Math.sqrt(1-(h-=2)*h)+1)+f},easeInElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l)==1){return f+m}if(!k){k=l*0.3}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}return -(h*Math.pow(2,10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k))+f},easeOutElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l)==1){return f+m}if(!k){k=l*0.3}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}return h*Math.pow(2,-10*i)*Math.sin((i*l-j)*(2*Math.PI)/k)+m+f},easeInOutElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l/2)==2){return f+m}if(!k){k=l*(0.3*1.5)}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}if(i<1){return -0.5*(h*Math.pow(2,10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k))+f}return h*Math.pow(2,-10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k)*0.5+m+f},easeInBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}return k*(h/=j)*h*((i+1)*h-i)+f},easeOutBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}return k*((h=h/j-1)*h*((i+1)*h+i)+1)+f},easeInOutBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}if((h/=j/2)<1){return k/2*(h*h*(((i*=(1.525))+1)*h-i))+f}return k/2*((h-=2)*h*(((i*=(1.525))+1)*h+i)+2)+f},easeInBounce:function(g,h,f,j,i){return j-d.easing.easeOutBounce(g,i-h,0,j,i)+f},easeOutBounce:function(g,h,f,j,i){if((h/=i)<(1/2.75)){return j*(7.5625*h*h)+f}else{if(h<(2/2.75)){return j*(7.5625*(h-=(1.5/2.75))*h+0.75)+f}else{if(h<(2.5/2.75)){return j*(7.5625*(h-=(2.25/2.75))*h+0.9375)+f}else{return j*(7.5625*(h-=(2.625/2.75))*h+0.984375)+f}}}},easeInOutBounce:function(g,h,f,j,i){if(h<i/2){return d.easing.easeInBounce(g,h*2,0,j,i)*0.5+f}return d.easing.easeOutBounce(g,h*2-i,0,j,i)*0.5+j*0.5+f}})})(jQuery);;/*
 * jQuery UI Effects Blind 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/Blind
 *
 * Depends:
 *	effects.core.js
 */
(function(a){a.effects.blind=function(b){return this.queue(function(){var d=a(this),c=["position","top","left"];var h=a.effects.setMode(d,b.options.mode||"hide");var g=b.options.direction||"vertical";a.effects.save(d,c);d.show();var j=a.effects.createWrapper(d).css({overflow:"hidden"});var e=(g=="vertical")?"height":"width";var i=(g=="vertical")?j.height():j.width();if(h=="show"){j.css(e,0)}var f={};f[e]=h=="show"?i:0;j.animate(f,b.duration,b.options.easing,function(){if(h=="hide"){d.hide()}a.effects.restore(d,c);a.effects.removeWrapper(d);if(b.callback){b.callback.apply(d[0],arguments)}d.dequeue()})})}})(jQuery);;/*
 * jQuery UI Effects Bounce 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/Bounce
 *
 * Depends:
 *	effects.core.js
 */
(function(a){a.effects.bounce=function(b){return this.queue(function(){var e=a(this),l=["position","top","left"];var k=a.effects.setMode(e,b.options.mode||"effect");var n=b.options.direction||"up";var c=b.options.distance||20;var d=b.options.times||5;var g=b.duration||250;if(/show|hide/.test(k)){l.push("opacity")}a.effects.save(e,l);e.show();a.effects.createWrapper(e);var f=(n=="up"||n=="down")?"top":"left";var p=(n=="up"||n=="left")?"pos":"neg";var c=b.options.distance||(f=="top"?e.outerHeight({margin:true})/3:e.outerWidth({margin:true})/3);if(k=="show"){e.css("opacity",0).css(f,p=="pos"?-c:c)}if(k=="hide"){c=c/(d*2)}if(k!="hide"){d--}if(k=="show"){var h={opacity:1};h[f]=(p=="pos"?"+=":"-=")+c;e.animate(h,g/2,b.options.easing);c=c/2;d--}for(var j=0;j<d;j++){var o={},m={};o[f]=(p=="pos"?"-=":"+=")+c;m[f]=(p=="pos"?"+=":"-=")+c;e.animate(o,g/2,b.options.easing).animate(m,g/2,b.options.easing);c=(k=="hide")?c*2:c/2}if(k=="hide"){var h={opacity:0};h[f]=(p=="pos"?"-=":"+=")+c;e.animate(h,g/2,b.options.easing,function(){e.hide();a.effects.restore(e,l);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}})}else{var o={},m={};o[f]=(p=="pos"?"-=":"+=")+c;m[f]=(p=="pos"?"+=":"-=")+c;e.animate(o,g/2,b.options.easing).animate(m,g/2,b.options.easing,function(){a.effects.restore(e,l);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}})}e.queue("fx",function(){e.dequeue()});e.dequeue()})}})(jQuery);;/*
 * jQuery UI Effects Clip 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/Clip
 *
 * Depends:
 *	effects.core.js
 */
(function(a){a.effects.clip=function(b){return this.queue(function(){var f=a(this),j=["position","top","left","height","width"];var i=a.effects.setMode(f,b.options.mode||"hide");var k=b.options.direction||"vertical";a.effects.save(f,j);f.show();var c=a.effects.createWrapper(f).css({overflow:"hidden"});var e=f[0].tagName=="IMG"?c:f;var g={size:(k=="vertical")?"height":"width",position:(k=="vertical")?"top":"left"};var d=(k=="vertical")?e.height():e.width();if(i=="show"){e.css(g.size,0);e.css(g.position,d/2)}var h={};h[g.size]=i=="show"?d:0;h[g.position]=i=="show"?0:d/2;e.animate(h,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(i=="hide"){f.hide()}a.effects.restore(f,j);a.effects.removeWrapper(f);if(b.callback){b.callback.apply(f[0],arguments)}f.dequeue()}})})}})(jQuery);;/*
 * jQuery UI Effects Drop 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/Drop
 *
 * Depends:
 *	effects.core.js
 */
(function(a){a.effects.drop=function(b){return this.queue(function(){var e=a(this),d=["position","top","left","opacity"];var i=a.effects.setMode(e,b.options.mode||"hide");var h=b.options.direction||"left";a.effects.save(e,d);e.show();a.effects.createWrapper(e);var f=(h=="up"||h=="down")?"top":"left";var c=(h=="up"||h=="left")?"pos":"neg";var j=b.options.distance||(f=="top"?e.outerHeight({margin:true})/2:e.outerWidth({margin:true})/2);if(i=="show"){e.css("opacity",0).css(f,c=="pos"?-j:j)}var g={opacity:i=="show"?1:0};g[f]=(i=="show"?(c=="pos"?"+=":"-="):(c=="pos"?"-=":"+="))+j;e.animate(g,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(i=="hide"){e.hide()}a.effects.restore(e,d);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}e.dequeue()}})})}})(jQuery);;/*
 * jQuery UI Effects Explode 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/Explode
 *
 * Depends:
 *	effects.core.js
 */
(function(a){a.effects.explode=function(b){return this.queue(function(){var k=b.options.pieces?Math.round(Math.sqrt(b.options.pieces)):3;var e=b.options.pieces?Math.round(Math.sqrt(b.options.pieces)):3;b.options.mode=b.options.mode=="toggle"?(a(this).is(":visible")?"hide":"show"):b.options.mode;var h=a(this).show().css("visibility","hidden");var l=h.offset();l.top-=parseInt(h.css("marginTop"),10)||0;l.left-=parseInt(h.css("marginLeft"),10)||0;var g=h.outerWidth(true);var c=h.outerHeight(true);for(var f=0;f<k;f++){for(var d=0;d<e;d++){h.clone().appendTo("body").wrap("<div></div>").css({position:"absolute",visibility:"visible",left:-d*(g/e),top:-f*(c/k)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:g/e,height:c/k,left:l.left+d*(g/e)+(b.options.mode=="show"?(d-Math.floor(e/2))*(g/e):0),top:l.top+f*(c/k)+(b.options.mode=="show"?(f-Math.floor(k/2))*(c/k):0),opacity:b.options.mode=="show"?0:1}).animate({left:l.left+d*(g/e)+(b.options.mode=="show"?0:(d-Math.floor(e/2))*(g/e)),top:l.top+f*(c/k)+(b.options.mode=="show"?0:(f-Math.floor(k/2))*(c/k)),opacity:b.options.mode=="show"?1:0},b.duration||500)}}setTimeout(function(){b.options.mode=="show"?h.css({visibility:"visible"}):h.css({visibility:"visible"}).hide();if(b.callback){b.callback.apply(h[0])}h.dequeue();a("div.ui-effects-explode").remove()},b.duration||500)})}})(jQuery);;/*
 * jQuery UI Effects Fold 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/Fold
 *
 * Depends:
 *	effects.core.js
 */
(function(a){a.effects.fold=function(b){return this.queue(function(){var e=a(this),k=["position","top","left"];var h=a.effects.setMode(e,b.options.mode||"hide");var o=b.options.size||15;var n=!(!b.options.horizFirst);var g=b.duration?b.duration/2:a.fx.speeds._default/2;a.effects.save(e,k);e.show();var d=a.effects.createWrapper(e).css({overflow:"hidden"});var i=((h=="show")!=n);var f=i?["width","height"]:["height","width"];var c=i?[d.width(),d.height()]:[d.height(),d.width()];var j=/([0-9]+)%/.exec(o);if(j){o=parseInt(j[1],10)/100*c[h=="hide"?0:1]}if(h=="show"){d.css(n?{height:0,width:o}:{height:o,width:0})}var m={},l={};m[f[0]]=h=="show"?c[0]:o;l[f[1]]=h=="show"?c[1]:0;d.animate(m,g,b.options.easing).animate(l,g,b.options.easing,function(){if(h=="hide"){e.hide()}a.effects.restore(e,k);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(e[0],arguments)}e.dequeue()})})}})(jQuery);;/*
 * jQuery UI Effects Highlight 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/Highlight
 *
 * Depends:
 *	effects.core.js
 */
(function(a){a.effects.highlight=function(b){return this.queue(function(){var e=a(this),d=["backgroundImage","backgroundColor","opacity"];var h=a.effects.setMode(e,b.options.mode||"show");var c=b.options.color||"#ffff99";var g=e.css("backgroundColor");a.effects.save(e,d);e.show();e.css({backgroundImage:"none",backgroundColor:c});var f={backgroundColor:g};if(h=="hide"){f.opacity=0}e.animate(f,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(h=="hide"){e.hide()}a.effects.restore(e,d);if(h=="show"&&a.browser.msie){this.style.removeAttribute("filter")}if(b.callback){b.callback.apply(this,arguments)}e.dequeue()}})})}})(jQuery);;/*
 * jQuery UI Effects Pulsate 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/Pulsate
 *
 * Depends:
 *	effects.core.js
 */
(function(a){a.effects.pulsate=function(b){return this.queue(function(){var d=a(this);var g=a.effects.setMode(d,b.options.mode||"show");var f=b.options.times||5;var e=b.duration?b.duration/2:a.fx.speeds._default/2;if(g=="hide"){f--}if(d.is(":hidden")){d.css("opacity",0);d.show();d.animate({opacity:1},e,b.options.easing);f=f-2}for(var c=0;c<f;c++){d.animate({opacity:0},e,b.options.easing).animate({opacity:1},e,b.options.easing)}if(g=="hide"){d.animate({opacity:0},e,b.options.easing,function(){d.hide();if(b.callback){b.callback.apply(this,arguments)}})}else{d.animate({opacity:0},e,b.options.easing).animate({opacity:1},e,b.options.easing,function(){if(b.callback){b.callback.apply(this,arguments)}})}d.queue("fx",function(){d.dequeue()});d.dequeue()})}})(jQuery);;/*
 * jQuery UI Effects Scale 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/Scale
 *
 * Depends:
 *	effects.core.js
 */
(function(a){a.effects.puff=function(b){return this.queue(function(){var f=a(this);var c=a.extend(true,{},b.options);var h=a.effects.setMode(f,b.options.mode||"hide");var g=parseInt(b.options.percent,10)||150;c.fade=true;var e={height:f.height(),width:f.width()};var d=g/100;f.from=(h=="hide")?e:{height:e.height*d,width:e.width*d};c.from=f.from;c.percent=(h=="hide")?g:100;c.mode=h;f.effect("scale",c,b.duration,b.callback);f.dequeue()})};a.effects.scale=function(b){return this.queue(function(){var g=a(this);var d=a.extend(true,{},b.options);var j=a.effects.setMode(g,b.options.mode||"effect");var h=parseInt(b.options.percent,10)||(parseInt(b.options.percent,10)==0?0:(j=="hide"?0:100));var i=b.options.direction||"both";var c=b.options.origin;if(j!="effect"){d.origin=c||["middle","center"];d.restore=true}var f={height:g.height(),width:g.width()};g.from=b.options.from||(j=="show"?{height:0,width:0}:f);var e={y:i!="horizontal"?(h/100):1,x:i!="vertical"?(h/100):1};g.to={height:f.height*e.y,width:f.width*e.x};if(b.options.fade){if(j=="show"){g.from.opacity=0;g.to.opacity=1}if(j=="hide"){g.from.opacity=1;g.to.opacity=0}}d.from=g.from;d.to=g.to;d.mode=j;g.effect("size",d,b.duration,b.callback);g.dequeue()})};a.effects.size=function(b){return this.queue(function(){var c=a(this),n=["position","top","left","width","height","overflow","opacity"];var m=["position","top","left","overflow","opacity"];var j=["width","height","overflow"];var p=["fontSize"];var k=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"];var f=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"];var g=a.effects.setMode(c,b.options.mode||"effect");var i=b.options.restore||false;var e=b.options.scale||"both";var o=b.options.origin;var d={height:c.height(),width:c.width()};c.from=b.options.from||d;c.to=b.options.to||d;if(o){var h=a.effects.getBaseline(o,d);c.from.top=(d.height-c.from.height)*h.y;c.from.left=(d.width-c.from.width)*h.x;c.to.top=(d.height-c.to.height)*h.y;c.to.left=(d.width-c.to.width)*h.x}var l={from:{y:c.from.height/d.height,x:c.from.width/d.width},to:{y:c.to.height/d.height,x:c.to.width/d.width}};if(e=="box"||e=="both"){if(l.from.y!=l.to.y){n=n.concat(k);c.from=a.effects.setTransition(c,k,l.from.y,c.from);c.to=a.effects.setTransition(c,k,l.to.y,c.to)}if(l.from.x!=l.to.x){n=n.concat(f);c.from=a.effects.setTransition(c,f,l.from.x,c.from);c.to=a.effects.setTransition(c,f,l.to.x,c.to)}}if(e=="content"||e=="both"){if(l.from.y!=l.to.y){n=n.concat(p);c.from=a.effects.setTransition(c,p,l.from.y,c.from);c.to=a.effects.setTransition(c,p,l.to.y,c.to)}}a.effects.save(c,i?n:m);c.show();a.effects.createWrapper(c);c.css("overflow","hidden").css(c.from);if(e=="content"||e=="both"){k=k.concat(["marginTop","marginBottom"]).concat(p);f=f.concat(["marginLeft","marginRight"]);j=n.concat(k).concat(f);c.find("*[width]").each(function(){child=a(this);if(i){a.effects.save(child,j)}var q={height:child.height(),width:child.width()};child.from={height:q.height*l.from.y,width:q.width*l.from.x};child.to={height:q.height*l.to.y,width:q.width*l.to.x};if(l.from.y!=l.to.y){child.from=a.effects.setTransition(child,k,l.from.y,child.from);child.to=a.effects.setTransition(child,k,l.to.y,child.to)}if(l.from.x!=l.to.x){child.from=a.effects.setTransition(child,f,l.from.x,child.from);child.to=a.effects.setTransition(child,f,l.to.x,child.to)}child.css(child.from);child.animate(child.to,b.duration,b.options.easing,function(){if(i){a.effects.restore(child,j)}})})}c.animate(c.to,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(g=="hide"){c.hide()}a.effects.restore(c,i?n:m);a.effects.removeWrapper(c);if(b.callback){b.callback.apply(this,arguments)}c.dequeue()}})})}})(jQuery);;/*
 * jQuery UI Effects Shake 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/Shake
 *
 * Depends:
 *	effects.core.js
 */
(function(a){a.effects.shake=function(b){return this.queue(function(){var e=a(this),l=["position","top","left"];var k=a.effects.setMode(e,b.options.mode||"effect");var n=b.options.direction||"left";var c=b.options.distance||20;var d=b.options.times||3;var g=b.duration||b.options.duration||140;a.effects.save(e,l);e.show();a.effects.createWrapper(e);var f=(n=="up"||n=="down")?"top":"left";var p=(n=="up"||n=="left")?"pos":"neg";var h={},o={},m={};h[f]=(p=="pos"?"-=":"+=")+c;o[f]=(p=="pos"?"+=":"-=")+c*2;m[f]=(p=="pos"?"-=":"+=")+c*2;e.animate(h,g,b.options.easing);for(var j=1;j<d;j++){e.animate(o,g,b.options.easing).animate(m,g,b.options.easing)}e.animate(o,g,b.options.easing).animate(h,g/2,b.options.easing,function(){a.effects.restore(e,l);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}});e.queue("fx",function(){e.dequeue()});e.dequeue()})}})(jQuery);;/*
 * jQuery UI Effects Slide 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/Slide
 *
 * Depends:
 *	effects.core.js
 */
(function(a){a.effects.slide=function(b){return this.queue(function(){var e=a(this),d=["position","top","left"];var i=a.effects.setMode(e,b.options.mode||"show");var h=b.options.direction||"left";a.effects.save(e,d);e.show();a.effects.createWrapper(e).css({overflow:"hidden"});var f=(h=="up"||h=="down")?"top":"left";var c=(h=="up"||h=="left")?"pos":"neg";var j=b.options.distance||(f=="top"?e.outerHeight({margin:true}):e.outerWidth({margin:true}));if(i=="show"){e.css(f,c=="pos"?-j:j)}var g={};g[f]=(i=="show"?(c=="pos"?"+=":"-="):(c=="pos"?"-=":"+="))+j;e.animate(g,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(i=="hide"){e.hide()}a.effects.restore(e,d);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}e.dequeue()}})})}})(jQuery);;/*
 * jQuery UI Effects Transfer 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/Transfer
 *
 * Depends:
 *	effects.core.js
 */
(function(a){a.effects.transfer=function(b){return this.queue(function(){var f=a(this),h=a(b.options.to),e=h.offset(),g={top:e.top,left:e.left,height:h.innerHeight(),width:h.innerWidth()},d=f.offset(),c=a('<div class="ui-effects-transfer"></div>').appendTo(document.body).addClass(b.options.className).css({top:d.top,left:d.left,height:f.innerHeight(),width:f.innerWidth(),position:"absolute"}).animate(g,b.duration,b.options.easing,function(){c.remove();(b.callback&&b.callback.apply(f[0],arguments));f.dequeue()})})}})(jQuery);;

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.03
 */
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}),hasClass:function(C,B){return RegExp("(?:^|\\s)"+B+"(?=\\s|$)").test(C.className)},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},textDecoration:function(G,F){if(!F){F=this.getStyle(G)}var C={underline:null,overline:null,"line-through":null};for(var B=G;B.parentNode&&B.parentNode.nodeType==1;){var E=true;for(var D in C){if(!k(C,D)||C[D]){continue}if(F.get("textDecoration").indexOf(D)!=-1){C[D]=F.get("color")}E=false}if(E){break}F=this.getStyle(B=B.parentNode)}return C},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 B={inline:1,"inline-block":1,"run-in":1};return function(E,C,D){if(B[C.get("display")]){return E}if(!D.previousSibling){E=E.replace(/^\s+/,"")}if(!D.nextSibling){E=E.replace(/\s+$/,"")}return E}})()};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(C){var B=this.face=C.face;this.glyphs=C.glyphs;this.w=C.w;this.baseSize=parseInt(B["units-per-em"],10);this.family=B["font-family"].toLowerCase();this.weight=B["font-weight"];this.style=B["font-style"]||"normal";this.viewBox=(function(){var E=B.bbox.split(/\s+/);var D={minX:parseInt(E[0],10),minY:parseInt(E[1],10),maxX:parseInt(E[2],10),maxY:parseInt(E[3],10)};D.width=D.maxX-D.minX;D.height=D.maxY-D.minY;D.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return D})();this.ascent=-parseInt(B.ascent,10);this.descent=-parseInt(B.descent,10);this.height=-this.ascent+this.descent}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)}function E(F){C(this)}function C(F){setTimeout(function(){m.replace(F,d.get(F).options,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 B={},D,F;for(var E=0,C=arguments.length;D=arguments[E],E<C;++E){for(F in D){if(k(D,F)){B[F]=D[F]}}}return B}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(C,J){var B=n.getStyle(v(C,J)).extend(J);var D=c(C,B),E,H,G,F,I;for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E)}else{F=E}if(G){continue}}if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,F),B,J,E,C),F);F=null}if(H==1&&E.firstChild){if(n.hasClass(E,"cufon")){z[J.engine](D,null,B,J,E,C)}else{arguments.callee(E,J)}}}}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={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textShadow:"none"};var p={words:/[^\S\u00a0]+/,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){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(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}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-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").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(ah,H,Z,D,L,ai){var n=(H===null);if(n){H=L.alt}var J=ah.viewBox;var p=Z.getSize("fontSize",ah.baseSize);var X=Z.get("letterSpacing");X=(X=="normal")?0:p.convertFrom(parseInt(X,10));var K=0,Y=0,W=0,F=0;var I=D.textShadow,U=[];if(I){for(var ag=I.length;ag--;){var O=I[ag];var T=p.convertFrom(parseFloat(O.offX));var R=p.convertFrom(parseFloat(O.offY));U[ag]=[T,R];if(R<K){K=R}if(T>Y){Y=T}if(R>W){W=R}if(T<F){F=T}}}var al=Cufon.CSS.textTransform(H,Z).split(""),B;var o=ah.glyphs,E,r,ac;var h=0,v,N=[];for(var ag=0,ae=0,ab=al.length;ag<ab;++ag){E=o[B=al[ag]]||ah.missingGlyph;if(!E){continue}if(r){h-=ac=r[B]||0;N[ae-1]-=ac}h+=v=N[ae++]=~~(E.w||ah.w)+X;r=E.k}if(v===undefined){return null}Y+=J.width-v;F+=J.minX;var C,q;if(n){C=L;q=L.firstChild}else{C=document.createElement("span");C.className="cufon cufon-canvas";C.alt=H;q=document.createElement("canvas");C.appendChild(q);if(D.printable){var ad=document.createElement("span");ad.className="cufon-alt";ad.appendChild(document.createTextNode(H));C.appendChild(ad)}}var am=C.style;var Q=q.style;var m=p.convert(J.height);var ak=Math.ceil(m);var V=ak/m;var P=V*Cufon.CSS.fontStretch(Z.get("fontStretch"));var S=h*P;var aa=Math.ceil(p.convert(S+Y-F));var t=Math.ceil(p.convert(J.height-K+W));q.width=aa;q.height=t;Q.width=aa+"px";Q.height=t+"px";K+=J.minY;Q.top=Math.round(p.convert(K-ah.ascent))+"px";Q.left=Math.round(p.convert(F))+"px";var A=Math.ceil(p.convert(S))+"px";if(a){am.width=A;am.height=p.convert(ah.height)+"px"}else{am.paddingLeft=A;am.paddingBottom=(p.convert(ah.height)-1)+"px"}var aj=q.getContext("2d"),M=m/J.height;aj.scale(M,M*V);aj.translate(-F,-K);aj.lineWidth=ah.face["underline-thickness"];aj.save();function s(i,g){aj.strokeStyle=g;aj.beginPath();aj.moveTo(0,i);aj.lineTo(h,i);aj.stroke()}var u=D.enableTextDecoration?Cufon.CSS.textDecoration(ai,Z):{};if(u.underline){s(-ah.face["underline-position"],u.underline)}if(u.overline){s(ah.ascent,u.overline)}function af(){aj.scale(P,1);for(var x=0,k=0,g=al.length;x<g;++x){var y=o[al[x]]||ah.missingGlyph;if(!y){continue}if(y.d){aj.beginPath();if(y.code){c(y.code,aj)}else{y.code=d("m"+y.d,aj)}aj.fill()}aj.translate(N[k++],0)}aj.restore()}if(I){for(var ag=I.length;ag--;){var O=I[ag];aj.save();aj.fillStyle=O.color;aj.translate.apply(aj,U[ag]);af()}}var z=D.textGradient;if(z){var G=z.stops,w=aj.createLinearGradient(0,J.minY,0,J.maxY);for(var ag=0,ab=G.length;ag<ab;++ag){w.addColorStop.apply(w,G[ag])}aj.fillStyle=w}else{aj.fillStyle=Z.get("color")}af();if(u["line-through"]){s(-ah.descent,u["line-through"])}return C}})());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 g=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(g?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"));function c(h,i){return a(h,/(?:em|ex|%)$|^[a-z-]+$/i.test(i)?"1em":i)}function a(k,l){if(/px$/i.test(l)){return parseFloat(l)}var j=k.style.left,i=k.runtimeStyle.left;k.runtimeStyle.left=k.currentStyle.left;k.style.left=l.replace("%","em");var h=k.style.pixelLeft;k.style.left=j;k.runtimeStyle.left=i;return h}var f={};function d(o){var p=o.id;if(!f[p]){var m=o.stops,n=document.createElement("cvml:fill"),h=[];n.type="gradient";n.angle=180;n.focus="0";n.method="sigma";n.color=m[0][1];for(var l=1,i=m.length-1;l<i;++l){h.push(m[l][0]*100+"% "+m[l][1])}n.colors=h.join(",");n.color2=m[i][1];f[p]=n}return f[p]}return function(aj,K,ad,G,O,ak,ab){var o=(K===null);if(o){K=O.alt}var M=aj.viewBox;var q=ad.computedFontSize||(ad.computedFontSize=new Cufon.CSS.Size(c(ak,ad.get("fontSize"))+"px",aj.baseSize));var aa=ad.computedLSpacing;if(aa==undefined){aa=ad.get("letterSpacing");ad.computedLSpacing=aa=(aa=="normal")?0:~~q.convertFrom(a(ak,aa))}var C,r;if(o){C=O;r=O.firstChild}else{C=document.createElement("span");C.className="cufon cufon-vml";C.alt=K;r=document.createElement("span");r.className="cufon-vml-canvas";C.appendChild(r);if(G.printable){var ag=document.createElement("span");ag.className="cufon-alt";ag.appendChild(document.createTextNode(K));C.appendChild(ag)}if(!ab){C.appendChild(document.createElement("cvml:shape"))}}var ap=C.style;var V=r.style;var m=q.convert(M.height),am=Math.ceil(m);var Z=am/m;var T=Z*Cufon.CSS.fontStretch(ad.get("fontStretch"));var Y=M.minX,X=M.minY;V.height=am;V.top=Math.round(q.convert(X-aj.ascent));V.left=Math.round(q.convert(Y));ap.height=q.convert(aj.height)+"px";var v=G.enableTextDecoration?Cufon.CSS.textDecoration(ak,ad):{};var J=ad.get("color");var ao=Cufon.CSS.textTransform(K,ad).split(""),B;var p=aj.glyphs,H,s,af;var h=0,P=[],W=0,x;var z,L=G.textShadow;for(var ai=0,ah=0,ae=ao.length;ai<ae;++ai){H=p[B=ao[ai]]||aj.missingGlyph;if(!H){continue}if(s){h-=af=s[B]||0;P[ah-1]-=af}h+=x=P[ah++]=~~(H.w||aj.w)+aa;s=H.k}if(x===undefined){return null}var A=-Y+h+(M.width-x);var an=q.convert(A*T),ac=Math.round(an);var S=A+","+M.height,n;var N="r"+S+"ns";var y=G.textGradient&&d(G.textGradient);for(ai=0,ah=0;ai<ae;++ai){H=p[ao[ai]]||aj.missingGlyph;if(!H){continue}if(o){z=r.childNodes[ah];while(z.firstChild){z.removeChild(z.firstChild)}}else{z=document.createElement("cvml:shape");r.appendChild(z)}z.stroked="f";z.coordsize=S;z.coordorigin=n=(Y-W)+","+X;z.path=(H.d?"m"+H.d+"xe":"")+"m"+n+N;z.fillcolor=J;if(y){z.appendChild(y.cloneNode(false))}var al=z.style;al.width=ac;al.height=am;if(L){var u=L[0],t=L[1];var F=Cufon.CSS.color(u.color),D;var R=document.createElement("cvml:shadow");R.on="t";R.color=F.color;R.offset=u.offX+","+u.offY;if(t){D=Cufon.CSS.color(t.color);R.type="double";R.color2=D.color;R.offset2=t.offX+","+t.offY}R.opacity=F.opacity||(D&&D.opacity)||1;z.appendChild(R)}W+=P[ah++]}var Q=z.nextSibling,w,E;if(G.forceHitArea){if(!Q){Q=document.createElement("cvml:rect");Q.stroked="f";Q.className="cufon-vml-cover";w=document.createElement("cvml:fill");w.opacity=0;Q.appendChild(w);r.appendChild(Q)}E=Q.style;E.width=ac;E.height=am}else{if(Q){r.removeChild(Q)}}ap.width=Math.max(Math.ceil(q.convert(h*T)),0);if(g){var U=ad.computedYAdjust;if(U===undefined){var I=ad.get("lineHeight");if(I=="normal"){I="1em"}else{if(!isNaN(I)){I+="em"}}ad.computedYAdjust=U=0.5*(a(ak,I)-parseFloat(ap.height))}if(U){ap.marginTop=Math.ceil(U)+"px";ap.marginBottom=U+"px"}}return C}})());

Cufon.registerFont({"w":180,"face":{"font-family":"FrizQuaNo2D","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"269","descent":"-91","x-height":"8","bbox":"-18 -322 432.027 92.1826","underline-thickness":"15.293","underline-position":"-27.0703","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":90},"!":{"d":"66,-236r-10,179r-26,0r-6,-179r42,0xm26,-13v0,-11,9,-18,19,-18v11,0,18,8,18,18v1,10,-8,19,-18,19v-11,0,-18,-9,-19,-19","w":90},"\"":{"d":"36,-144r-14,0r-2,-96r19,0xm81,-144r-14,0r-2,-96r19,0","w":103},"#":{"d":"82,-99r-18,56r-15,0r19,-56r-54,0r5,-13r53,0r12,-34r-54,0r5,-14r53,0r19,-56r15,0r-19,56r36,0r19,-56r15,0r-19,56r55,0r-5,14r-55,0r-11,34r55,0r-4,13r-55,0r-19,56r-15,0r19,-56r-37,0xm87,-112r36,0r12,-34r-37,0","w":223},"$":{"d":"30,-139v-47,-36,-14,-103,48,-100r0,-16r19,0r0,16v15,-3,32,2,48,7r0,41v-14,-15,-30,-23,-48,-23r0,69v36,18,74,33,74,75v0,40,-35,64,-74,69r0,15r-19,0v-1,-6,3,-17,-6,-14v-20,0,-40,-1,-61,-4r0,-44v24,16,44,24,67,23r0,-88v-15,-7,-42,-21,-48,-26xm78,-214v-33,1,-50,35,-19,51v4,2,10,6,19,10r0,-61xm97,-26v35,-3,56,-48,21,-67v-2,-2,-9,-5,-21,-11r0,78","w":187},"%":{"d":"248,-256r-182,285r-20,-12r182,-286xm151,-44v1,-43,23,-76,67,-76v40,0,67,32,66,74v-1,43,-25,75,-67,75v-39,0,-67,-32,-66,-73xm219,12v57,-1,53,-115,-2,-116v-58,1,-55,117,2,116xm11,-193v0,-44,24,-76,67,-76v40,0,66,31,65,74v-1,44,-24,75,-67,75v-39,0,-65,-32,-65,-73xm79,-137v56,-1,53,-116,-2,-116v-58,1,-55,117,2,116","w":295},"&":{"d":"109,-249v46,-1,70,49,38,82r-20,21v52,52,119,120,182,146v-59,5,-95,-8,-122,-39v-31,62,-163,55,-163,-28v0,-41,21,-47,54,-78v-50,-39,-33,-102,31,-104xm131,-203v1,-31,-49,-32,-50,-2v-2,12,15,31,25,38v12,-8,25,-21,25,-36xm64,-70v-1,56,85,61,109,19r-72,-72v-18,14,-36,31,-37,53","w":310},"'":{"d":"37,-144r-15,0r-2,-96r19,0","w":58},"(":{"d":"67,49v-65,-94,-79,-236,1,-338r15,0v-24,42,-49,111,-47,169v3,69,18,119,47,169r-16,0","w":95},")":{"d":"12,49v62,-91,61,-249,0,-338r15,0v80,103,66,243,1,338r-16,0","w":95},"*":{"d":"52,-144r-24,-17v9,-3,22,-15,29,-27v-12,-3,-25,-9,-40,-4r10,-28v7,8,20,15,35,18v1,-16,-2,-27,-9,-38r30,0v-6,10,-7,23,-7,38v15,-4,28,-7,34,-20r10,28v-14,-1,-26,2,-38,6v9,13,17,21,28,27r-24,17v-1,-11,-10,-25,-17,-35v-8,9,-16,25,-17,35","w":137},"+":{"d":"120,-216r0,83r85,0r0,17r-85,0r0,87r-17,0r0,-87r-85,0r0,-17r85,0r0,-83r17,0","w":223},",":{"d":"46,-39v38,9,9,50,-12,63r-10,0v7,-6,18,-18,22,-28v-25,-1,-21,-35,0,-35","w":89,"k":{"\u2019":19,"\u201d":19,"1":5}},"-":{"d":"127,-97r0,26r-115,0r0,-26r115,0","w":138,"k":{"\u00c1":8,"\u00c6":9,"\u00c5":8,"\u00c4":8,"Y":33,"W":19,"V":17,"T":22,"A":8}},".":{"d":"24,-13v0,-11,9,-18,19,-18v11,0,18,8,18,18v1,10,-8,19,-18,19v-11,0,-19,-8,-19,-19","w":83,"k":{"\u2019":20,"\u201d":20,"1":5}},"\/":{"d":"176,-240r-156,289r-21,0r156,-289r21,0","w":178},"0":{"d":"14,-117v0,-71,39,-126,112,-126v68,0,111,52,110,123v-2,69,-41,124,-112,124v-69,0,-110,-51,-110,-121xm128,-23v94,-2,88,-194,-3,-194v-95,2,-95,193,3,194","w":249,"k":{"7":8,"4":6,"1":5}},"1":{"d":"19,0v32,-35,12,-130,17,-194v-10,-1,-23,2,-31,-1v28,-11,48,-32,69,-52r-1,188v0,32,2,42,14,59r-68,0","w":101,"k":{"9":5,"8":1,"7":5,"6":6,"5":-2,"4":5,"3":5,"2":-1,"1":3,"0":4,".":2,",":4}},"2":{"d":"107,-163v16,-26,1,-54,-30,-52v-17,0,-37,5,-59,15r17,-39v52,-9,125,-5,124,44v0,11,-5,24,-15,39r-81,126v42,9,87,6,120,-8r-17,38r-165,0r75,-112v15,-22,24,-40,31,-51","w":184,"k":{"7":4,"4":-5,"1":6}},"3":{"d":"157,-193v0,26,-21,45,-45,55v32,6,59,27,59,60v-2,70,-81,88,-156,78r-14,-38v46,28,128,17,130,-40v2,-40,-52,-49,-86,-37r0,-29v37,5,72,-10,72,-41v0,-43,-69,-37,-100,-18r13,-36v53,-15,126,-4,127,46","k":{"7":4,"4":-1,"1":3}},"4":{"d":"126,0v7,-12,10,-22,9,-47r-134,0r120,-192r51,0r0,166v31,0,48,-2,67,-12r-17,38r-50,0v-1,21,3,37,9,47r-55,0xm135,-209r-81,134v21,4,58,3,81,2r0,-136","w":239,"k":{"7":16,"4":-1,"1":9}},"5":{"d":"130,-77v0,-52,-72,-59,-118,-38r8,-124r127,0r0,40v-22,-17,-61,-19,-95,-13r-4,66v60,-19,120,7,119,66v-1,70,-74,94,-148,80r-18,-39v48,29,129,20,129,-38","w":181,"k":{"7":9,"4":1,"1":7}},"6":{"d":"111,6v-98,0,-124,-124,-66,-191v28,-33,70,-57,126,-63r-14,20v-62,20,-103,59,-107,133v-2,40,25,79,63,78v33,0,53,-27,53,-59v0,-51,-52,-77,-99,-51v15,-13,25,-33,55,-33v47,0,79,34,79,80v0,49,-39,86,-90,86","w":207,"k":{"7":14,"4":-3,"1":7}},"7":{"d":"171,-239r-90,217v-2,8,-3,16,1,22r-53,0r92,-207v-40,-13,-89,-10,-120,9r19,-41r151,0","w":171,"k":{":":13,"8":10,"6":18,"5":1,"4":27,"3":5,"2":7,"1":2,".":31,",":33}},"8":{"d":"196,-182v0,29,-20,44,-49,54v28,13,58,31,58,65v-1,92,-195,96,-195,-2v-1,-32,25,-52,55,-61v-24,-13,-44,-27,-44,-56v0,-82,175,-86,175,0xm58,-190v0,30,53,47,72,53v15,-5,33,-23,32,-39v-2,-28,-28,-46,-59,-46v-24,0,-45,11,-45,32xm47,-73v0,65,119,78,119,14v0,-35,-48,-42,-80,-57v-26,5,-39,19,-39,43","w":214,"k":{"7":1,"4":-4,"1":2}},"9":{"d":"201,-133v0,88,-78,148,-170,137r17,-23v63,-4,112,-43,112,-110v0,-45,-22,-89,-65,-90v-25,-1,-48,27,-48,54v0,52,60,78,98,51r-28,33v-60,13,-109,-20,-110,-78v-1,-48,42,-87,92,-86v63,0,102,47,102,112","w":215,"k":{"7":7,"4":13,"1":7}},":":{"d":"24,-120v0,-11,9,-18,19,-18v11,0,18,8,18,18v1,10,-8,19,-18,19v-12,1,-19,-8,-19,-19xm24,-13v0,-11,9,-18,19,-18v11,0,18,8,18,18v1,10,-8,19,-18,19v-11,0,-19,-8,-19,-19","w":83},";":{"d":"46,-39v39,8,9,52,-12,63r-10,0v7,-6,18,-18,22,-28v-26,-1,-21,-35,0,-35xm31,-126v0,-11,8,-18,18,-18v11,-1,19,8,19,18v1,10,-8,19,-18,19v-12,1,-19,-8,-19,-19","w":90},"<":{"d":"168,-202r0,22r-132,60r132,59r0,22r-156,-72r0,-19"},"=":{"d":"18,-159r187,0r0,17r-187,0r0,-17xm18,-108r187,0r0,17r-187,0r0,-17","w":223},">":{"d":"12,-39r0,-22r132,-59r-132,-60r0,-22r156,72r0,19"},"?":{"d":"115,-172v0,-48,-60,-60,-103,-35r26,-33v53,-14,114,3,115,56v1,58,-80,64,-75,128r-27,0v-7,-64,64,-62,64,-116xm66,6v-22,0,-22,-40,0,-39v25,0,23,40,0,39","w":177},"@":{"d":"138,-7v39,1,77,-24,92,-53r12,0v-15,35,-60,65,-104,63v-68,-2,-118,-49,-118,-119v0,-70,49,-120,120,-120v60,0,104,37,107,97v2,43,-36,85,-75,86v-12,0,-23,-7,-24,-20v-24,32,-77,24,-75,-22v2,-40,24,-86,67,-86v15,0,27,8,33,24r6,-18r14,0r-33,100v0,9,6,13,16,13v31,-1,60,-41,60,-76v0,-51,-45,-90,-96,-89v-62,1,-109,47,-109,112v0,61,45,108,107,108xm87,-92v-2,32,34,39,51,18v11,-15,25,-48,28,-72v1,-13,-11,-28,-23,-26v-35,5,-53,41,-56,80","w":266},"A":{"d":"109,-240r53,0r77,190v10,26,20,37,35,50v-24,-1,-52,2,-74,-1v12,-10,12,-14,6,-30r-24,-60r-93,0v-9,26,-22,49,-28,77v-1,6,3,9,6,14v-21,-1,-46,2,-65,-1v20,-10,28,-25,38,-47r73,-179v1,-5,-3,-7,-4,-13xm137,-206r-38,91r74,0","w":276,"k":{"\u00d9":18,"\u00db":18,"\u00da":18,"\u2039":11,"\u2019":37,"\u201d":37,"\u00ab":11,"\u00e7":14,"\u00dc":18,"\u00d6":21,"\u00c7":21,"y":23,"w":25,"v":25,"u":12,"t":10,"q":14,"o":14,"g":30,"e":14,"d":16,"c":14,"b":-2,"a":9,"Y":35,"W":38,"V":36,"U":18,"T":25,"Q":21,"O":21,"G":21,"C":21,".":4,"-":7,",":6}},"B":{"d":"29,-60v0,-59,14,-150,-15,-180v74,1,165,-11,165,54v0,24,-15,35,-39,45v34,5,61,25,61,63v0,80,-99,84,-187,77v14,-17,15,-26,15,-59xm134,-180v0,-28,-38,-51,-67,-37r0,74v33,8,67,-6,67,-37xm159,-75v0,-42,-48,-52,-92,-45r0,93v46,11,92,-5,92,-48","w":208,"k":{"\u00c1":17,"\u00c2":17,"\u00c3":17,"\u00c6":15,"\u00c5":17,"\u00c4":17,"Y":23,"W":20,"V":17,"A":17}},"C":{"d":"51,-125v0,94,106,128,179,82r-18,41v-103,25,-202,-22,-202,-119v0,-100,99,-141,200,-116r0,39v-64,-47,-159,-11,-159,73","w":235,"k":{"\u00d3":9,"\u00c1":3,"\u00d6":9,"\u00c5":3,"\u00c4":3,"O":9,"K":6,"H":7,"A":3}},"D":{"d":"29,-180v3,-41,-2,-42,-19,-60r79,0v93,-5,154,35,154,117v0,86,-56,125,-155,123v-25,-1,-54,2,-77,-1v34,-29,14,-120,18,-179xm204,-122v0,-69,-67,-109,-137,-89r0,183v75,15,137,-24,137,-94","w":252,"k":{"\u00c1":23,"\u00c2":23,"\u00c3":23,"\u00c0":23,"\u00c5":23,"\u00c4":23,"Y":27,"X":18,"W":19,"V":17,"T":9,"J":4,"A":23}},"E":{"d":"28,-180v2,-26,2,-51,-14,-60r135,0r0,40v-16,-20,-47,-14,-83,-15r0,72r61,0r0,36v-13,-12,-34,-11,-61,-11r0,88v39,12,89,6,114,-15r-16,45r-150,-1v27,-35,10,-120,14,-179","w":185},"F":{"d":"28,-179v3,-40,2,-43,-14,-61r135,0r0,44v-9,-25,-48,-20,-84,-20r0,73r63,0r0,34v-15,-14,-36,-11,-62,-11v2,44,-8,102,17,120v-22,-1,-48,2,-68,-1v28,-36,9,-118,13,-178","w":153,"k":{"\u00c1":27,"\u00c2":27,"\u0153":9,"\u00c3":27,"\u00c0":27,"\u00f8":10,"\u00e6":18,"\u00f6":9,"\u00f3":9,"\u00e9":9,"\u00e5":18,"\u00e4":10,"\u00e1":18,"\u00d6":8,"\u00c5":27,"\u00c4":27,"u":9,"r":10,"o":9,"j":2,"e":9,"a":18,"O":8,"J":1,"A":27,".":28,"-":4,",":28}},"G":{"d":"50,-124v0,77,78,123,152,94v-2,-34,7,-73,-11,-92r45,0r0,116v-107,31,-227,-1,-227,-111v0,-97,100,-147,201,-121r0,37v-61,-46,-160,-3,-160,77","w":250,"k":{"\u00c1":1,"\u00c2":1,"\u00c3":1,"\u00c0":1,"\u00c6":-3,"\u00c5":1,"\u00c4":1,"Y":15,"W":15,"V":14,"T":12,"A":1}},"H":{"d":"18,-240v18,2,44,-4,58,2v-12,17,-7,60,-8,93r124,0v-2,-35,7,-80,-11,-95v19,2,45,-4,60,2v-23,40,-11,125,-11,187v0,23,5,39,15,51v-21,-2,-50,4,-67,-2v24,-18,12,-74,15,-116r-125,0v2,44,-7,97,15,118v-22,-1,-49,2,-69,-1v17,-11,16,-30,16,-59v0,-59,11,-142,-12,-180","w":259},"I":{"d":"28,-179v0,-34,2,-47,-12,-61v19,2,47,-4,62,2v-26,33,-12,121,-12,178v0,35,0,38,12,60v-21,-1,-45,2,-64,-1v29,-34,14,-120,14,-178","w":92},"J":{"d":"-2,80v56,-54,29,-189,29,-296v0,-12,-6,-18,-12,-24v20,1,44,-2,62,1v-12,12,-12,34,-12,59r2,197v0,42,-33,52,-69,63","w":94,"k":{"\u00c6":2,"\u00c5":5,"\u00c4":5,"A":5}},"K":{"d":"200,-240r-89,108v54,72,69,91,125,132v-64,4,-81,-17,-111,-56r-54,-69r70,-93v6,-10,3,-16,-4,-22r63,0xm27,-181v2,-37,2,-44,-13,-59v20,1,44,-2,62,1v-13,9,-13,35,-11,59v4,59,-14,149,16,180v-22,-1,-47,2,-67,-1v25,-35,10,-122,13,-180","w":218,"k":{"\u00d3":16,"\u0152":16,"\u00fc":5,"\u00f6":8,"\u00f3":8,"\u00e5":1,"\u00e4":1,"\u00d6":16,"y":23,"u":5,"o":8,"e":11,"a":1,"T":6,"S":-13,"O":16,"G":16,"C":18,"-":15}},"L":{"d":"28,-179v2,-27,1,-49,-14,-61v21,2,49,-4,66,2v-17,9,-15,32,-15,58r0,152v44,10,82,4,111,-14r-17,42r-145,-1v28,-33,10,-120,14,-178","w":171,"k":{"\u00d2":7,"\u00d4":7,"\u00d3":7,"\u00c1":-2,"\u2019":39,"\u201d":39,"\u00d5":7,"\u00c6":-6,"\u00fc":-1,"\u00dc":3,"\u00d6":7,"\u00c7":9,"\u00c5":-2,"\u00c4":-2,"y":20,"u":-1,"Y":37,"W":34,"V":34,"U":3,"T":28,"S":-12,"O":7,"G":6,"C":9,"A":-2,"-":8}},"M":{"d":"259,-200r-78,200v-21,-5,-23,-20,-35,-44r-67,-156r-23,178v-1,9,5,15,11,22v-18,-1,-41,2,-57,-1v34,-55,28,-144,43,-219v1,-9,-5,-13,-10,-20r58,0r76,175r68,-175v18,1,39,-2,55,1v-9,13,-8,23,-6,41r20,149v4,30,6,34,22,49v-21,-1,-47,2,-66,-1v12,-15,11,-20,7,-49","w":346},"N":{"d":"190,-240v18,2,43,-4,57,2v-14,18,-12,23,-13,59r0,185v-17,-3,-32,-13,-45,-30r-129,-159r1,159v0,10,5,17,10,24v-16,-1,-36,2,-50,-1v22,-41,6,-118,10,-178v2,-39,-2,-42,-17,-61r48,0r144,179v-6,-58,15,-151,-16,-179","w":261,"k":{"\u00d3":2,"\u00c1":5,"\u00e6":4,"\u00c6":2,"\u00f6":1,"\u00f3":1,"\u00e9":2,"\u00e5":4,"\u00e4":4,"\u00e1":4,"\u00d6":2,"\u00c7":2,"\u00c5":5,"\u00c4":5,"o":1,"e":2,"a":4,"O":2,"G":2,"C":2,"A":5,".":3,",":5}},"O":{"d":"10,-122v1,-76,52,-122,129,-123v73,-2,129,54,128,128v-1,71,-54,121,-129,122v-70,2,-129,-56,-128,-127xm227,-112v0,-59,-32,-109,-91,-109v-51,0,-86,39,-86,93v0,57,36,109,92,109v51,0,85,-40,85,-93","w":276,"k":{"\u00c1":23,"\u00c6":22,"\u00c5":23,"\u00c4":23,"Y":26,"X":18,"W":19,"V":16,"T":11,"A":23}},"P":{"d":"27,-182v2,-30,0,-44,-13,-58v77,0,167,-10,167,60v0,48,-43,68,-101,64v30,-8,60,-21,60,-58v0,-36,-38,-53,-75,-43r0,158v0,35,0,41,12,59v-20,-1,-43,2,-61,-1v22,-39,8,-122,11,-181","w":185,"k":{"\u00c1":35,"\u0153":13,"\u00f8":14,"\u00e6":17,"\u00c6":38,"\u00f6":13,"\u00f3":13,"\u00e9":13,"\u00e5":17,"\u00e4":13,"\u00e1":17,"\u00c5":35,"\u00c4":35,"o":13,"e":13,"a":17,"J":7,"A":35,".":40,"-":15,",":42}},"Q":{"d":"202,-8v21,25,77,68,112,65v-61,41,-87,4,-157,-52v-89,8,-148,-45,-148,-126v0,-76,53,-123,131,-124v74,-1,126,51,128,127v1,49,-28,92,-66,110xm228,-112v-2,-59,-32,-108,-93,-109v-51,-1,-85,40,-85,94v0,58,36,108,92,109v51,0,88,-43,86,-94","w":275},"R":{"d":"14,0v33,-42,9,-148,15,-222v0,-8,-7,-11,-12,-18v75,-1,161,-10,162,60v0,29,-21,49,-62,60v25,35,77,97,115,120v-79,5,-83,-23,-128,-80v-15,-18,-24,-34,-30,-44v34,-6,62,-17,64,-53v2,-35,-36,-47,-71,-40r1,187v2,13,8,21,14,30r-68,0","w":234,"k":{"\u00d3":23,"\u0153":18,"\u0152":23,"\u00e6":9,"\u00fc":14,"\u00fa":14,"\u00f6":18,"\u00f3":18,"\u00e9":21,"\u00e5":10,"\u00e4":10,"\u00e1":10,"\u00dc":19,"\u00d6":23,"\u00c7":23,"y":14,"u":14,"o":18,"e":21,"a":10,"Y":36,"W":35,"V":32,"U":19,"T":21,"O":23,"G":23,"C":23,"-":24}},"S":{"d":"14,-142v-50,-67,48,-125,126,-95r-1,40v-25,-30,-92,-29,-97,12v4,55,123,44,120,113v-3,69,-85,90,-154,67r-13,-46v25,16,47,24,76,26v39,3,72,-39,36,-63v-28,-19,-73,-27,-93,-54","w":161,"k":{"\u00c1":12,"\u00c6":9,"\u00c5":12,"\u00c4":12,"t":-3,"Y":4,"W":4,"V":4,"T":3,"A":12}},"T":{"d":"66,0v29,-46,8,-143,14,-214v-33,-3,-61,-2,-79,13r13,-39r183,0r-13,41v-10,-18,-39,-17,-67,-15r0,162v0,34,2,34,16,52r-67,0","w":197,"k":{"\u00d2":15,"\u00d4":15,"\u00d3":15,"\u00c1":24,"\u00c2":24,"\u2039":27,"\u0152":15,"\u00d5":15,"\u00c3":24,"\u00c0":24,"\u00ab":25,"\u00f8":28,"\u00e6":30,"\u00d8":14,"\u00c6":21,"\u00d6":15,"\u00c5":24,"\u00c4":24,"y":26,"w":33,"v":33,"u":26,"s":30,"r":25,"o":28,"j":3,"i":1,"g":41,"e":29,"c":29,"a":32,"Y":-8,"W":-8,"V":-8,"S":-1,"O":15,"J":-1,"G":18,"C":15,"A":24,";":19,":":17,".":29,"-":22,",":29}},"U":{"d":"187,-111v-3,-44,7,-104,-12,-129v18,1,40,-2,56,1v-16,46,-4,120,-7,179v-2,40,2,39,15,60r-50,0r0,-24v-22,20,-47,29,-77,29v-67,0,-88,-29,-88,-112v0,-45,7,-109,-12,-133v20,1,43,-2,61,1v-20,31,-8,85,-11,132v-3,58,17,86,63,86v48,0,66,-26,62,-90","w":253,"k":{"\u00c6":-3,"n":2,"m":1,".":3,",":5}},"V":{"d":"237,-240r-100,246v-28,-9,-36,-19,-48,-49r-67,-164v-6,-16,-14,-25,-20,-33r56,0v15,69,49,132,70,197r59,-159v8,-19,3,-26,-7,-38r57,0","w":239,"k":{"\u00d2":13,"\u00d4":13,"\u00d3":13,"\u00c1":34,"\u00c2":34,"\u2039":19,"\u00d5":13,"\u00c3":34,"\u00c0":34,"\u00ab":19,"\u00f8":20,"\u00e6":23,"\u00d8":12,"\u00c6":37,"\u00d6":13,"\u00c5":34,"\u00c4":34,"y":1,"u":9,"r":10,"o":20,"i":2,"g":25,"e":21,"a":23,"T":-2,"S":2,"O":13,"G":15,"C":14,"A":34,";":14,":":12,".":32,"-":14,",":32}},"W":{"d":"389,-240r-91,246v-25,-7,-38,-18,-49,-48r-49,-129r-62,177v-27,-10,-36,-20,-47,-47r-71,-183v-4,-7,-13,-10,-18,-16r57,0v17,67,48,132,69,196r53,-155v7,-19,1,-30,-12,-41r51,0v0,13,0,20,5,31r61,170r55,-159v7,-17,5,-34,-9,-42r57,0","w":390,"k":{"\u00d2":11,"\u00d4":11,"\u00d3":11,"\u00c1":32,"\u00c2":32,"\u2039":16,"\u00d5":11,"\u00c3":32,"\u00c0":32,"\u00ab":16,"\u00f8":16,"\u00e6":20,"\u00d8":10,"\u00c6":33,"\u00d6":11,"\u00c5":32,"\u00c4":32,"u":7,"r":9,"o":18,"i":2,"g":23,"e":18,"a":22,"T":-2,"S":1,"O":11,"G":13,"C":11,"A":32,";":10,":":8,".":27,"-":11,",":28}},"X":{"d":"148,-131v32,43,62,102,105,131r-62,0r-72,-103v-19,29,-49,53,-60,88v-2,5,4,10,8,15r-67,0v27,-26,72,-89,101,-130v-27,-35,-53,-88,-89,-110r60,0r59,84v14,-22,39,-41,47,-68v1,-6,-5,-10,-9,-16r63,0","w":252,"k":{"\u00d6":20,"y":23,"u":13,"o":17,"e":20,"a":9,"Q":20,"O":20,"C":20,"-":18}},"Y":{"d":"86,0v24,-18,14,-66,16,-108r-69,-102v-7,-13,-20,-24,-31,-30r58,0r66,100v18,-29,43,-51,55,-85v1,-6,-6,-9,-10,-15r60,0r-91,132v1,45,-7,97,23,108r-77,0","w":233,"k":{"\u00d2":23,"\u00d4":23,"\u00d3":23,"\u00c1":27,"\u00c2":27,"\u2039":31,"\u00d5":23,"\u00c3":27,"\u00c0":27,"\u00ab":31,"\u00f8":30,"\u00e6":32,"\u00d8":19,"\u00c6":23,"\u00d6":23,"\u00c5":27,"\u00c4":27,"v":18,"u":19,"p":20,"o":30,"i":4,"g":39,"e":32,"a":32,"T":-2,"S":6,"O":23,"G":23,"C":23,"A":27,";":23,":":21,".":35,"-":27,",":35}},"Z":{"d":"209,-238r-139,211v57,7,118,6,155,-16r-20,43r-203,0r142,-208v-40,-9,-96,-9,-123,11r18,-41r170,0","w":226,"k":{"y":17,"v":22}},"[":{"d":"24,-247r68,0r0,18r-46,0r0,264r50,0r0,19r-72,0r0,-301","w":113},"\\":{"d":"24,-256r20,-13r183,286r-20,12","w":250},"]":{"d":"89,-247r0,301r-72,0r0,-19r50,0r0,-264r-46,0r0,-18r68,0","w":113},"^":{"d":"34,-137r-21,0r64,-103r26,0r64,103r-21,0r-56,-88"},"_":{"d":"0,27r180,0r0,15r-180,0r0,-15"},"`":{"d":"41,-249v0,17,8,43,17,54v-22,2,-23,-10,-35,-24v-9,-10,-14,-22,-16,-30r34,0","w":64},"a":{"d":"150,-119v0,45,-13,101,36,98v-8,7,-8,20,-21,22v-49,4,-51,-41,-48,-92v-28,9,-72,10,-73,42v-1,29,40,38,65,25v-17,48,-104,27,-104,-27v0,-49,66,-44,104,-60v20,-16,0,-38,-27,-38v-13,0,-39,7,-52,13r27,-36v49,-6,93,2,93,53","w":171,"k":{"\u2019":10,"y":9,"w":11,"v":13,"j":-4}},"b":{"d":"17,-204v1,-27,-1,-33,-13,-45v18,0,33,1,47,-5r0,231v48,20,98,-10,98,-60v0,-46,-46,-79,-90,-55v11,-11,15,-29,38,-29v49,0,87,34,87,83v0,79,-96,110,-175,82v8,-10,8,-11,8,-32r0,-170","w":191,"k":{"y":11,"w":13,"v":15}},"c":{"d":"7,-80v1,-69,67,-109,138,-89r0,34v-40,-33,-99,-8,-99,45v0,62,77,91,123,54v-7,15,-15,26,-24,35v-66,24,-140,-15,-138,-79","w":176,"k":{"k":6,"h":5}},"d":{"d":"160,-153v-2,-35,7,-82,-16,-95v18,1,40,0,50,-5r-1,206v0,31,2,28,14,47r-47,0v0,-68,10,-150,-55,-151v-32,0,-54,29,-54,62v0,49,51,85,99,60r-21,28v-63,13,-116,-22,-117,-82v-1,-75,86,-120,148,-70","w":210},"e":{"d":"47,-88v-6,68,83,90,129,50v-8,17,-15,29,-22,37v-70,22,-147,-11,-147,-84v0,-49,40,-89,89,-89v49,0,83,34,80,86r-129,0xm138,-112v-2,-47,-72,-56,-86,-12v-2,4,-3,8,-3,12r89,0","w":183,"k":{"\u2019":7,"y":9,"x":8,"w":12,"v":13,"t":-1}},"f":{"d":"97,-225v-32,-20,-50,15,-44,57r52,0r0,27v-14,-6,-32,-6,-52,-6v5,50,-14,121,15,147v-18,-1,-41,2,-57,-1v17,-32,4,-98,8,-146r-15,0v5,-10,15,-16,15,-30v0,-63,46,-83,107,-75","w":111,"k":{"\u2019":7,"\u0153":9,"\u00f8":9,"\u00e6":12,"\u00f6":8,"\u00f3":8,"\u00e9":8,"\u00e5":12,"\u00e4":12,"\u00e1":12,"t":-7,"s":2,"o":8,"l":-12,"j":-1,"i":-2,"f":-2,"e":8,"a":12}},"g":{"d":"18,-110v0,-75,107,-57,190,-59r-16,23r-36,0v16,12,24,26,24,43v1,29,-36,38,-50,56v-1,15,34,13,40,18v18,8,36,29,36,53v0,84,-181,92,-199,15v-1,-20,25,-29,51,-28v-9,6,-13,12,-13,19v10,51,123,52,123,-4v0,-26,-23,-47,-50,-46v-19,1,-25,-10,-30,-23v8,-19,55,-27,55,-59v0,-49,-87,-65,-88,-9v0,19,13,33,39,44r-16,15v-30,-6,-60,-26,-60,-58","w":204,"k":{"\u00e6":7,"\u00f6":7,"\u00f3":7,"\u00e9":8,"\u00e5":7,"\u00e4":7,"r":-5,"l":-4,"e":8,"a":7}},"h":{"d":"17,-204v0,-29,-1,-32,-12,-45v19,0,32,2,45,-5r0,103v35,-35,130,-27,120,40v5,37,-11,95,14,111v-18,-1,-40,2,-56,-1v17,-14,8,-58,10,-93v2,-36,-16,-52,-47,-53v-48,-2,-42,49,-41,98v1,31,0,31,12,49v-18,-1,-39,2,-55,-1v10,-14,10,-23,10,-47r0,-156","w":188,"k":{"\u2019":9,"y":9}},"i":{"d":"4,-167v14,-4,36,2,46,-6r0,125v0,33,1,34,13,48v-19,-1,-41,2,-58,-1v24,-19,12,-82,12,-123v0,-29,-1,-32,-13,-43xm11,-214v1,-26,36,-24,36,1v0,11,-7,19,-17,19v-10,1,-20,-9,-19,-20","w":67,"k":{"j":-1,"T":3}},"j":{"d":"20,3v-4,-59,15,-140,-15,-171v16,0,40,1,48,-5r0,183v4,55,-20,63,-63,74v21,-24,33,-39,30,-81xm16,-214v0,-11,7,-19,18,-19v9,0,18,9,18,19v0,10,-8,20,-18,20v-9,0,-18,-9,-18,-20","w":70},"k":{"d":"59,-94v29,-31,43,-35,50,-64v0,-3,-1,-6,-3,-10r53,0r-63,71v26,30,59,79,90,97v-41,2,-59,-4,-81,-33xm9,-249v16,0,32,1,43,-5r0,207v-1,27,1,36,11,47v-19,-1,-42,2,-59,-1v11,-12,14,-22,14,-47v0,-64,10,-154,-9,-201","w":187,"k":{"\u00e6":11,"\u00fc":9,"\u00f6":19,"\u00f3":19,"\u00e9":19,"\u00e5":11,"\u00e4":11,"\u00e1":11,"u":9,"s":1,"o":19,"g":30,"e":19,"a":11,".":6,"-":25,",":9}},"l":{"d":"21,-204v1,-30,-3,-32,-16,-45v18,0,38,2,49,-5r0,206v0,33,2,35,17,48v-22,-1,-47,2,-67,-1v15,-12,17,-17,17,-47r0,-156","w":72,"k":{"y":-4,"v":2}},"m":{"d":"20,-38v0,-47,10,-106,-12,-131v14,0,40,1,45,-4r0,29v30,-39,86,-38,110,5v29,-52,119,-40,119,29v0,41,-11,96,17,110v-19,-1,-41,2,-58,-1v16,-15,6,-58,8,-91v2,-36,-11,-52,-41,-53v-51,-2,-39,57,-40,108v0,22,4,25,13,37v-18,-1,-41,2,-57,-1v19,-12,8,-57,10,-90v2,-38,-10,-53,-40,-55v-47,-3,-42,50,-41,98v0,30,2,33,15,48v-18,-1,-41,2,-57,-1v10,-10,9,-16,9,-37","w":301,"k":{"y":10,"w":12,"v":14}},"n":{"d":"20,-21v0,-48,12,-124,-12,-147v17,0,36,0,46,-5r0,26v43,-44,119,-27,119,47v0,38,-10,83,15,100v-18,-1,-41,2,-57,-1v15,-15,7,-58,9,-90v3,-38,-14,-50,-45,-53v-57,-5,-39,72,-40,124v1,9,5,14,9,20v-17,-1,-39,2,-54,-1v5,-6,10,-13,10,-20","w":190,"k":{"\u2019":10,"y":10,"w":12,"v":14,"p":-1,"T":26}},"o":{"d":"7,-83v0,-56,40,-93,100,-93v56,0,96,39,96,94v0,51,-49,90,-103,90v-52,0,-93,-39,-93,-91xm166,-78v-1,-41,-24,-74,-65,-74v-34,0,-58,28,-57,64v1,39,24,73,63,73v33,0,60,-28,59,-63","w":209,"k":{"\u2019":10,"y":11,"x":13,"w":13,"v":14,"T":29}},"p":{"d":"17,-121v0,-23,0,-35,-10,-47v16,0,33,0,43,-5r0,24v49,-51,143,-14,143,62v0,60,-51,106,-114,87r-19,-25v46,21,95,-7,95,-57v0,-37,-22,-68,-58,-68v-79,0,-39,129,-48,211v-1,15,6,20,11,27v-17,-2,-42,4,-55,-2v12,-9,11,-27,11,-46","w":201,"k":{"y":11}},"q":{"d":"8,-79v-1,-80,89,-101,180,-87v-10,9,-10,26,-10,46r1,189v1,8,5,14,9,20v-17,-1,-39,2,-54,-1v11,-14,12,-19,12,-47r0,-180v-51,-21,-100,6,-100,58v0,42,41,76,88,62v-10,10,-12,27,-33,26v-54,-2,-92,-31,-93,-86","w":197,"k":{"u":-1,"c":1}},"r":{"d":"18,-48v0,-40,10,-104,-12,-120v17,0,35,1,46,-5r0,24v21,-19,33,-26,59,-22r0,32v-55,-23,-60,30,-60,90v0,28,2,37,15,49v-20,-1,-43,2,-61,-1v12,-13,13,-19,13,-47","w":113,"k":{"\u2019":5,"\u0153":6,"\u00f8":7,"\u00e6":10,"\u00f6":6,"\u00f4":6,"\u00f2":6,"\u00f3":6,"\u00ea":6,"\u00e8":6,"\u00e9":6,"\u00e7":8,"\u00e5":10,"\u00e4":10,"\u00e2":10,"\u00e0":10,"\u00e1":10,"z":2,"y":-11,"w":-5,"v":-5,"u":-4,"t":-9,"r":-3,"q":8,"p":-2,"o":6,"n":-2,"m":-2,"l":5,"k":3,"j":-3,"i":-4,"h":2,"g":6,"f":-4,"e":6,"d":10,"c":8,"a":10,";":10,":":12,".":22,"-":18,",":24}},"s":{"d":"26,-94v-42,-36,4,-82,57,-82v14,0,28,2,40,6r0,31v-28,-16,-65,-23,-76,6v4,36,104,29,98,82v-6,53,-78,73,-131,49r-14,-35v29,13,52,20,70,20v26,0,57,-25,31,-43v-10,-7,-66,-22,-75,-34","w":154,"k":{"\u2019":17,"t":3}},"t":{"d":"-7,-157v30,-1,45,-34,46,-67r12,0r0,56r49,0r0,33v-13,-11,-25,-13,-49,-12v4,54,-19,134,42,129v-8,7,-10,19,-21,23v-36,-2,-54,-23,-54,-68r0,-84r-25,0r0,-10","w":107,"k":{"\u2019":5,"\u00e6":10,"\u00f6":6,"\u00f3":6,"\u00e9":6,"\u00e5":10,"\u00e4":10,"\u00e1":10,"o":6,"h":5,"e":6,"a":10,"S":-4,";":5,":":5}},"u":{"d":"179,0r-43,0r0,-22v-39,48,-140,26,-122,-57v-1,-32,4,-74,-10,-89v16,0,34,2,43,-5v3,60,-18,151,44,151v54,0,45,-60,45,-116v0,-17,-3,-22,-11,-30v15,0,38,2,44,-5v4,56,-11,135,10,173","w":188,"k":{"\u2019":6}},"v":{"d":"1,-168v14,-2,40,-2,48,-5r51,134v15,-38,37,-73,48,-115v1,-6,-3,-9,-6,-14r48,0r-83,182v-55,-32,-58,-120,-93,-172v-4,-5,-9,-8,-13,-10","w":190,"k":{"\u00f8":9,"\u00e6":13,"\u00f6":10,"\u00f2":10,"\u00f3":10,"\u00ea":10,"\u00e8":10,"\u00e9":10,"\u00e5":13,"\u00e3":13,"\u00e4":13,"\u00e2":13,"\u00e0":13,"\u00e1":13,"s":5,"o":10,"l":4,"g":11,"e":10,"c":10,"a":13,";":5,":":5,".":26,"-":5,",":28}},"w":{"d":"305,-168r-76,182v-44,-22,-49,-90,-72,-135r-53,135v-59,-35,-57,-135,-103,-183v16,0,30,1,42,-4r54,133v13,-37,32,-73,41,-112v2,-8,-4,-11,-8,-16r46,0r47,131v14,-38,35,-75,45,-116v2,-7,-5,-10,-10,-15r47,0","w":306,"k":{"\u00f8":8,"\u00e6":12,"\u00f6":9,"\u00f2":9,"\u00f3":9,"\u00ea":9,"\u00e8":9,"\u00e9":9,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"s":5,"o":9,"l":4,"g":11,"e":9,"c":9,"a":12,";":4,":":2,".":23,"-":4,",":25}},"x":{"d":"182,-168r-66,77v22,29,46,68,72,91r-47,0r-48,-66v-12,21,-46,39,-42,66r-50,0r75,-89v-17,-24,-50,-68,-65,-79r48,0r42,56v10,-16,43,-35,28,-56r53,0","w":189,"k":{"\u00e9":12,"q":12,"o":12,"e":12,"c":12,"a":9}},"y":{"d":"184,-168r-99,224v-16,27,-59,38,-103,31r37,-28v40,17,48,-31,61,-59v-29,-39,-48,-112,-73,-152v-4,-8,-13,-10,-19,-16r54,0r55,130v14,-38,34,-73,44,-114v0,-5,-3,-10,-6,-16r49,0","w":185,"k":{"\u00f8":9,"\u00e6":13,"\u00f6":10,"\u00f2":10,"\u00f3":10,"\u00ea":10,"\u00e8":10,"\u00e9":10,"\u00e5":13,"\u00e3":13,"\u00e4":13,"\u00e2":13,"\u00e0":13,"\u00e1":13,"s":6,"o":10,"l":4,"g":12,"e":10,"c":10,"a":13,";":7,":":5,".":26,"-":7,",":26}},"z":{"d":"166,-168r-106,144v59,0,88,10,120,-12r-19,36r-160,0r106,-142v-30,-3,-76,-5,-96,10r21,-36r134,0","w":181},"{":{"d":"95,-227v-82,-9,-12,117,-61,131v47,13,-19,142,61,131r0,19v-44,3,-65,-10,-65,-54v0,-34,9,-82,-20,-88r0,-17v30,-5,19,-59,20,-94v1,-42,20,-49,65,-48r0,20","w":112},"|":{"d":"79,-240r22,0r0,300r-22,0r0,-300"},"}":{"d":"18,35v80,11,12,-117,61,-131v-29,-11,-20,-59,-20,-97v0,-30,-12,-33,-41,-34r0,-20v41,-1,64,4,64,48v0,36,-10,88,21,94r0,17v-29,6,-20,54,-21,88v-1,46,-14,56,-64,54r0,-19","w":112},"~":{"d":"81,-239v-18,1,-25,13,-34,28r-13,-10v13,-26,29,-38,48,-38v17,0,57,27,77,27v17,-1,27,-14,35,-28r12,10v-12,25,-28,38,-49,38v-22,0,-53,-27,-76,-27","w":239},"\u00c4":{"d":"109,-240r53,0r77,190v10,26,20,37,35,50v-24,-1,-52,2,-74,-1v12,-10,12,-14,6,-30r-24,-60r-93,0v-9,26,-22,49,-28,77v-1,6,3,9,6,14v-21,-1,-46,2,-65,-1v20,-10,28,-25,38,-47r73,-179v1,-5,-3,-7,-4,-13xm137,-206r-38,91r74,0xm85,-284v0,-9,7,-19,19,-19v10,0,17,9,17,19v1,10,-7,19,-18,19v-10,1,-18,-9,-18,-19xm155,-284v0,-10,6,-19,18,-19v10,0,18,8,18,19v1,10,-7,19,-18,19v-10,1,-18,-9,-18,-19","w":276,"k":{"\u2039":11,"\u2019":37,"\u201d":37,"\u00ab":11,"y":23,"w":25,"v":25,"u":12,"t":10,"q":14,"o":14,"g":30,"d":16,"c":14,"b":-2,"a":9,"Y":35,"W":38,"V":36,"U":18,"T":25,"Q":21,"O":21,"G":21,"C":21,".":4,"-":7,",":6}},"\u00c5":{"d":"152,-291v0,-17,-27,-18,-28,0v0,7,7,13,14,14v7,0,14,-6,14,-14xm107,-291v0,-17,15,-31,32,-31v17,0,30,15,30,31v1,17,-14,31,-31,31v-17,0,-31,-14,-31,-31xm109,-240r53,0r77,190v10,26,20,37,35,50v-24,-1,-52,2,-74,-1v12,-10,12,-14,6,-30r-24,-60r-93,0v-9,26,-22,49,-28,77v-1,6,3,9,6,14v-21,-1,-46,2,-65,-1v20,-10,28,-25,38,-47r73,-179v1,-5,-3,-7,-4,-13xm137,-206r-38,91r74,0","w":276,"k":{"\u2039":11,"\u2019":37,"\u201d":37,"\u00ab":11,"y":23,"w":25,"v":25,"u":12,"t":10,"q":14,"o":14,"g":30,"e":14,"d":16,"c":14,"b":-2,"a":9,"Y":35,"W":38,"V":36,"U":18,"T":25,"Q":21,"O":21,"G":21,"C":21,".":4,"-":7,",":6}},"\u00c7":{"d":"51,-125v0,94,106,128,179,82r-18,41v-15,4,-30,5,-46,6r-5,8v15,-4,29,7,29,22v0,35,-46,40,-75,26r-6,-16v24,11,56,14,61,-10v-2,-13,-22,-16,-35,-10r12,-20v-79,-5,-136,-45,-137,-125v-1,-100,98,-141,200,-116r0,39v-64,-47,-159,-11,-159,73","w":235,"k":{"A":3}},"\u00c9":{"d":"77,-263v8,-13,16,-37,17,-54r33,0v-8,18,-22,56,-50,54xm28,-180v2,-26,2,-51,-14,-60r135,0r0,40v-16,-20,-47,-14,-83,-15r0,72r61,0r0,36v-13,-12,-34,-11,-61,-11r0,88v39,12,89,6,114,-15r-16,45r-150,-1v27,-35,10,-120,14,-179","w":185},"\u00d1":{"d":"118,-301v0,0,48,32,51,-1r17,0v0,21,-14,39,-31,38v-19,3,-47,-32,-53,1r-17,0v0,-20,14,-38,33,-38xm190,-240v18,2,43,-4,57,2v-14,18,-12,23,-13,59r0,185v-17,-3,-32,-13,-45,-30r-129,-159r1,159v0,10,5,17,10,24v-16,-1,-36,2,-50,-1v22,-41,6,-118,10,-178v2,-39,-2,-42,-17,-61r48,0r144,179v-6,-58,15,-151,-16,-179","w":261},"\u00d6":{"d":"10,-122v1,-76,52,-122,129,-123v73,-2,129,54,128,128v-1,71,-54,121,-129,122v-70,2,-129,-56,-128,-127xm227,-112v0,-59,-32,-109,-91,-109v-51,0,-86,39,-86,93v0,57,36,109,92,109v51,0,85,-40,85,-93xm85,-284v0,-9,8,-19,19,-19v10,0,17,9,17,19v1,10,-7,19,-17,19v-10,1,-19,-9,-19,-19xm155,-284v0,-9,8,-19,19,-19v10,0,17,9,17,19v1,10,-7,19,-18,19v-10,0,-17,-10,-18,-19","w":276,"k":{"Y":26,"X":18,"W":19,"V":16,"T":11,"A":23}},"\u00dc":{"d":"74,-284v0,-10,6,-19,18,-19v10,0,18,8,18,19v0,9,-7,19,-18,19v-10,1,-18,-9,-18,-19xm144,-284v0,-10,6,-19,18,-19v10,0,18,8,18,19v0,9,-7,19,-18,19v-10,1,-18,-9,-18,-19xm187,-111v-3,-44,7,-104,-12,-129v18,1,40,-2,56,1v-16,46,-4,120,-7,179v-2,40,2,39,15,60r-50,0r0,-24v-22,20,-47,29,-77,29v-67,0,-88,-29,-88,-112v0,-45,7,-109,-12,-133v20,1,43,-2,61,1v-20,31,-8,85,-11,132v-3,58,17,86,63,86v48,0,66,-26,62,-90","w":253,"k":{"n":2,"m":1,"b":1,".":3,",":5}},"\u00e1":{"d":"150,-119v0,45,-13,101,36,98v-8,7,-8,20,-21,22v-49,4,-51,-41,-48,-92v-28,9,-72,10,-73,42v-1,29,40,38,65,25v-17,48,-104,27,-104,-27v0,-49,66,-44,104,-60v20,-16,0,-38,-27,-38v-13,0,-39,7,-52,13r27,-36v49,-6,93,2,93,53xm82,-195v9,-12,17,-35,17,-53r34,0v-9,17,-23,55,-51,53","w":171,"k":{"y":9,"w":11,"v":13}},"\u00e0":{"d":"150,-119v0,45,-13,101,36,98v-8,7,-8,20,-21,22v-49,4,-51,-41,-48,-92v-28,9,-72,10,-73,42v-1,29,40,38,65,25v-17,48,-104,27,-104,-27v0,-49,66,-44,104,-60v20,-16,0,-38,-27,-38v-13,0,-39,7,-52,13r27,-36v49,-6,93,2,93,53xm92,-249v0,17,8,43,17,54v-22,2,-23,-10,-35,-24v-9,-10,-14,-22,-16,-30r34,0","w":171,"k":{"y":9,"w":11,"v":13}},"\u00e2":{"d":"150,-119v0,45,-13,101,36,98v-8,7,-8,20,-21,22v-49,4,-51,-41,-48,-92v-28,9,-72,10,-73,42v-1,29,40,38,65,25v-17,48,-104,27,-104,-27v0,-49,66,-44,104,-60v20,-16,0,-38,-27,-38v-13,0,-39,7,-52,13r27,-36v49,-6,93,2,93,53xm96,-229v-8,12,-17,38,-42,34v13,-20,16,-29,22,-53r40,0v6,25,10,35,22,53v-26,1,-30,-19,-42,-34","w":171},"\u00e4":{"d":"150,-119v0,45,-13,101,36,98v-8,7,-8,20,-21,22v-49,4,-51,-41,-48,-92v-28,9,-72,10,-73,42v-1,29,40,38,65,25v-17,48,-104,27,-104,-27v0,-49,66,-44,104,-60v20,-16,0,-38,-27,-38v-13,0,-39,7,-52,13r27,-36v49,-6,93,2,93,53xm32,-214v0,-9,8,-19,19,-19v10,0,17,9,17,20v0,10,-7,19,-18,19v-11,1,-18,-9,-18,-20xm113,-214v0,-10,8,-19,18,-19v10,0,18,9,18,20v1,11,-7,19,-18,19v-10,1,-18,-9,-18,-20","w":171,"k":{"y":9,"w":11,"v":13}},"\u00e3":{"d":"150,-119v0,45,-13,101,36,98v-8,7,-8,20,-21,22v-49,4,-51,-41,-48,-92v-28,9,-72,10,-73,42v-1,29,40,38,65,25v-17,48,-104,27,-104,-27v0,-49,66,-44,104,-60v20,-16,0,-38,-27,-38v-13,0,-39,7,-52,13r27,-36v49,-6,93,2,93,53xm78,-233v0,0,48,32,51,-1r17,0v0,21,-14,39,-31,39v-19,0,-48,-33,-53,1r-17,0v0,-20,14,-39,33,-39","w":171},"\u00e5":{"d":"150,-119v0,45,-13,101,36,98v-8,7,-8,20,-21,22v-49,4,-51,-41,-48,-92v-28,9,-72,10,-73,42v-1,29,40,38,65,25v-17,48,-104,27,-104,-27v0,-49,66,-44,104,-60v20,-16,0,-38,-27,-38v-13,0,-39,7,-52,13r27,-36v49,-6,93,2,93,53xm111,-222v0,-9,-7,-16,-15,-16v-8,0,-16,8,-16,16v-1,9,7,16,15,16v9,0,16,-7,16,-16xm66,-222v0,-16,14,-29,30,-29v15,0,29,13,29,29v0,16,-13,30,-29,30v-16,1,-30,-13,-30,-30","w":171,"k":{"y":9,"w":11,"v":13}},"\u00e7":{"d":"46,-90v0,62,77,91,123,54v-11,21,-17,38,-45,40r-7,10v16,-1,28,7,28,22v1,33,-46,37,-71,24r-6,-17v22,9,51,15,58,-7v-1,-12,-21,-16,-33,-10r12,-20v-54,4,-98,-37,-98,-86v1,-69,67,-109,138,-89r0,34v-40,-33,-99,-8,-99,45","w":176},"\u00e9":{"d":"47,-88v-6,68,83,90,129,50v-8,17,-15,29,-22,37v-70,22,-147,-11,-147,-84v0,-49,40,-89,89,-89v49,0,83,34,80,86r-129,0xm138,-112v-2,-47,-72,-56,-86,-12v-2,4,-3,8,-3,12r89,0xm90,-195v9,-12,17,-35,17,-53r34,0v-9,17,-23,55,-51,53","w":183,"k":{"y":9,"w":12,"v":13}},"\u00e8":{"d":"47,-88v-6,68,83,90,129,50v-8,17,-15,29,-22,37v-70,22,-147,-11,-147,-84v0,-49,40,-89,89,-89v49,0,83,34,80,86r-129,0xm138,-112v-2,-47,-72,-56,-86,-12v-2,4,-3,8,-3,12r89,0xm92,-249v0,17,8,43,17,54v-22,2,-23,-10,-35,-24v-9,-10,-14,-22,-16,-30r34,0","w":183},"\u00ea":{"d":"47,-88v-6,68,83,90,129,50v-8,17,-15,29,-22,37v-70,22,-147,-11,-147,-84v0,-49,40,-89,89,-89v49,0,83,34,80,86r-129,0xm138,-112v-2,-47,-72,-56,-86,-12v-2,4,-3,8,-3,12r89,0xm97,-229v-8,12,-17,38,-42,34v13,-20,16,-29,22,-53r40,0v6,25,10,35,22,53v-26,1,-30,-19,-42,-34","w":183,"k":{"y":9,"w":12,"v":13}},"\u00eb":{"d":"47,-88v-6,68,83,90,129,50v-8,17,-15,29,-22,37v-70,22,-147,-11,-147,-84v0,-49,40,-89,89,-89v49,0,83,34,80,86r-129,0xm138,-112v-2,-47,-72,-56,-86,-12v-2,4,-3,8,-3,12r89,0xm40,-214v0,-9,8,-19,19,-19v10,0,17,9,17,20v0,10,-7,19,-18,19v-11,1,-18,-9,-18,-20xm121,-214v0,-10,8,-19,18,-19v10,0,18,9,18,20v1,11,-7,19,-18,19v-10,1,-18,-9,-18,-20","w":183},"\u00ed":{"d":"4,-167v14,-4,36,2,46,-6r0,125v0,33,1,34,13,48v-19,-1,-41,2,-58,-1v24,-19,12,-82,12,-123v0,-29,-1,-32,-13,-43xm28,-195v9,-12,17,-35,17,-53r34,0v-9,17,-23,55,-51,53","w":67},"\u00ec":{"d":"4,-167v14,-4,36,2,46,-6r0,125v0,33,1,34,13,48v-19,-1,-41,2,-58,-1v24,-19,12,-82,12,-123v0,-29,-1,-32,-13,-43xm32,-249v0,17,8,43,17,54v-22,2,-23,-10,-35,-24v-9,-10,-14,-22,-16,-30r34,0","w":67},"\u00ee":{"d":"4,-167v14,-4,36,2,46,-6r0,125v0,33,1,34,13,48v-19,-1,-41,2,-58,-1v24,-19,12,-82,12,-123v0,-29,-1,-32,-13,-43xm33,-229v-8,12,-17,38,-42,34v13,-20,16,-29,22,-53r40,0v6,25,10,35,22,53v-26,1,-30,-19,-42,-34","w":67},"\u00ef":{"d":"-11,-214v0,-10,7,-19,18,-19v11,0,17,10,18,20v1,10,-7,19,-18,19v-11,1,-18,-9,-18,-20xm41,-214v0,-9,9,-19,19,-19v12,0,17,10,18,20v1,10,-7,19,-18,19v-10,1,-19,-10,-19,-20xm4,-167v14,-4,36,2,46,-6r0,125v0,33,1,34,13,48v-19,-1,-41,2,-58,-1v24,-19,12,-82,12,-123v0,-29,-1,-32,-13,-43","w":67},"\u00f1":{"d":"20,-21v0,-48,12,-124,-12,-147v17,0,36,0,46,-5r0,26v43,-44,119,-27,119,47v0,38,-10,83,15,100v-18,-1,-41,2,-57,-1v15,-15,7,-58,9,-90v3,-38,-14,-50,-45,-53v-57,-5,-39,72,-40,124v1,9,5,14,9,20v-17,-1,-39,2,-54,-1v5,-6,10,-13,10,-20xm85,-233v0,0,48,32,51,-1r17,0v0,21,-14,39,-31,39v-19,0,-48,-33,-53,1r-17,0v0,-20,14,-39,33,-39","w":190},"\u00f3":{"d":"7,-83v0,-56,40,-93,100,-93v56,0,96,39,96,94v0,51,-49,90,-103,90v-52,0,-93,-39,-93,-91xm166,-78v-1,-41,-24,-74,-65,-74v-34,0,-58,28,-57,64v1,39,24,73,63,73v33,0,60,-28,59,-63xm97,-195v9,-12,17,-35,17,-53r34,0v-9,17,-23,55,-51,53","w":209,"k":{"y":11,"w":13,"v":14}},"\u00f2":{"d":"7,-83v0,-56,40,-93,100,-93v56,0,96,39,96,94v0,51,-49,90,-103,90v-52,0,-93,-39,-93,-91xm166,-78v-1,-41,-24,-74,-65,-74v-34,0,-58,28,-57,64v1,39,24,73,63,73v33,0,60,-28,59,-63xm108,-249v0,17,8,43,17,54v-22,2,-23,-10,-35,-24v-9,-10,-14,-22,-16,-30r34,0","w":209,"k":{"y":11,"w":13,"v":14}},"\u00f4":{"d":"7,-83v0,-56,40,-93,100,-93v56,0,96,39,96,94v0,51,-49,90,-103,90v-52,0,-93,-39,-93,-91xm166,-78v-1,-41,-24,-74,-65,-74v-34,0,-58,28,-57,64v1,39,24,73,63,73v33,0,60,-28,59,-63xm107,-229v-8,12,-17,38,-42,34v13,-20,16,-29,22,-53r40,0v6,25,10,35,22,53v-26,1,-30,-19,-42,-34","w":209},"\u00f6":{"d":"7,-83v0,-56,40,-93,100,-93v56,0,96,39,96,94v0,51,-49,90,-103,90v-52,0,-93,-39,-93,-91xm166,-78v-1,-41,-24,-74,-65,-74v-34,0,-58,28,-57,64v1,39,24,73,63,73v33,0,60,-28,59,-63xm46,-214v0,-9,8,-19,19,-19v10,0,17,9,17,20v0,10,-7,19,-18,19v-11,1,-18,-9,-18,-20xm127,-214v0,-10,8,-19,18,-19v10,0,18,9,18,20v1,11,-7,19,-18,19v-10,1,-18,-9,-18,-20","w":209,"k":{"y":11,"x":13,"w":13,"v":14}},"\u00f5":{"d":"7,-83v0,-56,40,-93,100,-93v56,0,96,39,96,94v0,51,-49,90,-103,90v-52,0,-93,-39,-93,-91xm166,-78v-1,-41,-24,-74,-65,-74v-34,0,-58,28,-57,64v1,39,24,73,63,73v33,0,60,-28,59,-63xm90,-233v0,0,48,32,51,-1r17,0v0,21,-14,39,-31,39v-19,0,-48,-33,-53,1r-17,0v0,-20,14,-39,33,-39","w":209},"\u00fa":{"d":"179,0r-43,0r0,-22v-39,48,-140,26,-122,-57v-1,-32,4,-74,-10,-89v16,0,34,2,43,-5v3,60,-18,151,44,151v54,0,45,-60,45,-116v0,-17,-3,-22,-11,-30v15,0,38,2,44,-5v4,56,-11,135,10,173xm86,-195v9,-12,17,-35,17,-53r34,0v-9,17,-23,55,-51,53","w":188},"\u00f9":{"d":"179,0r-43,0r0,-22v-39,48,-140,26,-122,-57v-1,-32,4,-74,-10,-89v16,0,34,2,43,-5v3,60,-18,151,44,151v54,0,45,-60,45,-116v0,-17,-3,-22,-11,-30v15,0,38,2,44,-5v4,56,-11,135,10,173xm98,-249v0,17,8,43,17,54v-22,2,-23,-10,-35,-24v-9,-10,-14,-22,-16,-30r34,0","w":188},"\u00fb":{"d":"179,0r-43,0r0,-22v-39,48,-140,26,-122,-57v-1,-32,4,-74,-10,-89v16,0,34,2,43,-5v3,60,-18,151,44,151v54,0,45,-60,45,-116v0,-17,-3,-22,-11,-30v15,0,38,2,44,-5v4,56,-11,135,10,173xm98,-229v-8,12,-17,38,-42,34v13,-20,16,-29,22,-53r40,0v6,25,10,35,22,53v-26,1,-30,-19,-42,-34","w":188},"\u00fc":{"d":"179,0r-43,0r0,-22v-39,48,-140,26,-122,-57v-1,-32,4,-74,-10,-89v16,0,34,2,43,-5v3,60,-18,151,44,151v54,0,45,-60,45,-116v0,-17,-3,-22,-11,-30v15,0,38,2,44,-5v4,56,-11,135,10,173xm38,-214v0,-9,8,-19,19,-19v10,0,17,9,17,20v0,10,-7,19,-18,19v-11,1,-18,-9,-18,-20xm119,-214v0,-10,8,-19,18,-19v10,0,18,9,18,20v1,11,-7,19,-18,19v-10,1,-18,-9,-18,-20","w":188},"\u2020":{"d":"196,-116v-19,-11,-42,-9,-70,-9v4,56,-10,136,9,175r-49,0v19,-39,5,-119,9,-175v-28,1,-54,-3,-70,9r0,-47v17,10,42,8,70,8v-1,-31,5,-67,-9,-85r49,0v-14,18,-8,54,-9,85v27,0,49,2,70,-8r0,47","w":220},"\u00b0":{"d":"100,-195v0,-16,-14,-33,-32,-33v-17,0,-33,14,-33,32v0,18,14,33,32,33v18,0,33,-15,33,-32xm20,-196v0,-26,21,-47,48,-47v24,0,47,23,47,48v0,25,-22,47,-48,47v-25,0,-47,-22,-47,-48","w":134},"\u00a2":{"d":"5,-115v0,-46,33,-82,73,-90r0,-29r18,0r0,26v17,-2,32,0,46,4r0,35v-16,-12,-28,-17,-46,-16r0,128v29,7,52,0,70,-14v-7,15,-15,27,-24,36v-13,4,-28,6,-46,6r0,22r-18,0r0,-24v-41,-8,-73,-38,-73,-84xm78,-181v-46,15,-44,102,0,117r0,-117","w":186},"\u00a3":{"d":"58,-134v-40,-41,-24,-107,45,-107v18,0,35,4,49,11r0,40v-13,-17,-29,-25,-47,-25v-16,0,-35,13,-34,27v2,20,15,35,29,54r43,0r0,18r-32,0v11,21,22,47,12,76v23,8,35,10,46,-9r0,43v-20,17,-49,-1,-63,-10v-18,23,-78,26,-78,-10v0,-26,36,-31,65,-25v7,-24,-10,-48,-22,-65r-40,0r0,-18r27,0xm49,-25v3,15,40,6,36,-4v-10,-6,-33,-9,-36,4","w":185},"\u00a7":{"d":"53,-160v-35,-38,3,-86,57,-86v15,0,31,2,47,8r0,38v-14,-34,-102,-25,-77,18v30,25,93,30,91,82v-1,25,-10,36,-27,53v36,44,-8,102,-66,102v-18,0,-36,-3,-56,-11r0,-39v25,13,29,17,56,20v44,4,58,-49,18,-62v-27,-21,-74,-29,-74,-73v0,-27,11,-34,31,-50xm72,-145v-28,26,-13,53,25,67v8,5,8,4,29,16v36,-47,-15,-63,-54,-83","w":191},"\u2022":{"d":"70,-122v0,-26,23,-50,51,-50v25,0,49,22,49,50v0,27,-23,50,-50,50v-26,0,-51,-23,-50,-50","w":239},"\u00b6":{"d":"22,-176v-2,-75,86,-65,163,-64r0,13r-21,0r0,277r-15,0r0,-277r-39,0r0,277r-16,0r0,-163v-43,1,-71,-22,-72,-63","w":223},"\u00df":{"d":"106,-263v50,0,90,62,46,96v32,12,53,36,53,76v-2,62,-54,97,-124,91r6,-11v50,-11,81,-26,84,-77v2,-37,-25,-63,-62,-64v35,-14,45,-90,-4,-90v-30,0,-34,29,-34,64r0,178v-13,-2,-34,4,-43,-2v10,-8,9,-21,9,-44v4,-90,-24,-217,69,-217","w":210},"\u00ae":{"d":"20,-121v-1,-65,56,-125,125,-123v70,2,122,53,122,124v0,71,-53,124,-124,124v-71,0,-122,-51,-123,-125xm251,-120v1,-59,-45,-105,-106,-108v-58,-2,-109,48,-109,107v0,59,49,111,107,109v61,-2,107,-45,108,-108xm128,-48v-13,-1,-29,2,-40,-1v20,-27,4,-85,9,-132v-1,-5,-5,-6,-8,-11v45,-1,99,-4,98,36v0,17,-12,29,-37,36v12,19,44,54,69,72v-54,11,-72,-46,-95,-74v47,-1,50,-58,6,-57v-4,0,-7,0,-10,1v3,42,-9,103,8,130","w":287},"\u00a9":{"d":"20,-121v-1,-65,56,-125,125,-123v70,2,122,53,122,124v0,71,-53,124,-124,124v-71,0,-122,-51,-123,-125xm251,-120v1,-59,-45,-105,-106,-108v-58,-2,-109,48,-109,107v0,59,49,111,107,109v61,-2,107,-45,108,-108xm91,-123v0,56,61,76,108,49r-11,25v-61,16,-121,-14,-122,-71v-1,-59,60,-87,121,-71r0,24v-40,-27,-96,-7,-96,44","w":287},"\u2122":{"d":"72,-224v4,42,-10,103,9,128v-13,-1,-29,2,-40,-1v17,-28,4,-85,8,-127v-18,-1,-35,-2,-47,7r8,-23r109,1r-7,24v-7,-10,-22,-11,-40,-9xm262,-216r-46,120v-13,-2,-16,-13,-22,-27r-40,-93r-14,107v-1,6,4,8,7,13v-11,-1,-25,2,-34,-1v21,-32,15,-88,26,-131v1,-6,-3,-8,-6,-12r35,0r45,105r41,-105v10,1,25,-2,33,1v-9,38,7,93,12,132v1,5,7,6,10,11v-13,-1,-29,2,-40,-1v8,-9,6,-12,4,-29","w":320},"\u00b4":{"d":"7,-195v9,-12,17,-35,17,-53r34,0v-9,17,-23,55,-51,53","w":64},"\u00a8":{"d":"24,-214v0,-9,8,-19,19,-19v10,0,17,9,17,20v0,10,-7,19,-18,19v-11,1,-18,-9,-18,-20xm105,-214v0,-10,8,-19,18,-19v10,0,18,9,18,20v1,11,-7,19,-18,19v-10,1,-18,-9,-18,-20","w":164},"\u2260":{"d":"99,-155r21,-43r16,5r-19,38r51,0r0,18r-59,0r-18,38r77,0r0,18r-84,0r-22,46r-15,-6r18,-40r-53,0r0,-18r61,0r18,-38r-79,0r0,-18r87,0"},"\u00c6":{"d":"140,0v18,-19,16,-52,16,-90r-64,0v-10,23,-29,49,-34,75v-1,6,5,9,10,15v-24,-1,-51,2,-73,-1v22,-10,27,-19,38,-41r88,-165v9,-17,12,-25,-2,-33r156,0r0,41v-13,-21,-49,-15,-82,-16r0,73r61,0r0,35v-9,-11,-37,-11,-61,-11r0,88v43,12,88,6,115,-15r-17,45r-151,0xm156,-214r-51,99r51,0r0,-99","w":312},"\u00d8":{"d":"10,-121v0,-106,134,-158,212,-96r28,-28r17,17r-28,28v67,79,10,207,-100,207v-32,0,-60,-9,-83,-28r-29,29r-17,-17r29,-28v-17,-20,-29,-52,-29,-84xm142,-18v76,0,106,-93,70,-156r-132,130v13,15,38,26,62,26xm198,-193v-47,-55,-148,-18,-148,65v0,26,5,48,16,65","w":277,"k":{"A":21}},"\u221e":{"d":"181,-69v-29,-1,-47,-19,-61,-42v-19,28,-38,42,-60,42v-31,-1,-53,-21,-53,-54v-1,-30,22,-53,53,-53v22,0,41,14,60,42v13,-22,35,-42,61,-42v30,0,52,22,52,54v0,31,-22,54,-52,53xm217,-123v0,-38,-48,-52,-71,-23v-3,5,-20,19,-16,26v10,17,30,38,50,37v21,-1,37,-17,37,-40xm24,-123v-2,39,47,53,70,24v3,-4,22,-22,16,-26v-14,-40,-83,-55,-86,2","w":240},"\u00b1":{"d":"120,-224r0,84r85,0r0,16r-85,0r0,88r-17,0r0,-88r-85,0r0,-16r85,0r0,-84r17,0xm205,-17r0,17r-187,0r0,-17r187,0","w":223},"\u2264":{"d":"168,-210r0,21r-132,53r132,54r0,21r-156,-65r0,-19xm168,-51r0,20r-156,0r0,-20r156,0"},"\u2265":{"d":"12,-61r0,-21r132,-54r-132,-53r0,-21r156,65r0,19xm12,-31r0,-20r156,0r0,20r-156,0"},"\u00a5":{"d":"95,0v20,-16,17,-41,17,-80r-51,0r11,-18r40,0v4,-26,-29,-16,-51,-18r11,-18r21,0v-27,-35,-45,-79,-81,-105r58,0r66,100v18,-28,42,-53,55,-85v1,-6,-6,-9,-10,-15r60,0r-73,105r27,0r0,23v-16,-7,-48,-14,-46,13r46,0r0,23v-14,-6,-27,-7,-46,-5v-1,43,0,68,24,80r-78,0","w":252},"\u00b5":{"d":"136,-22v-20,21,-57,35,-90,19v2,31,-6,74,10,91r-42,0r0,-209v0,-30,-1,-32,-10,-47v16,0,35,2,43,-5v3,60,-18,151,44,151v54,0,45,-60,45,-116v0,-17,-3,-22,-11,-30v15,0,38,2,44,-5r0,133v-1,26,2,24,10,40r-43,0r0,-22","w":188},"\u2202":{"d":"166,-78v-1,-41,-24,-74,-65,-74v-34,0,-58,28,-57,64v1,39,24,73,63,73v33,0,60,-28,59,-63xm152,-161v-21,-44,-56,-68,-111,-81r19,-12v84,11,141,72,143,165v1,58,-46,97,-103,97v-52,0,-91,-40,-93,-91v-3,-73,84,-118,145,-78","w":210},"\u2211":{"d":"202,-229v-33,-20,-74,-18,-125,-16r82,148r-97,147v57,6,136,8,172,-16r-28,56r-201,0r116,-173r-106,-187r187,0r0,41","w":233},"\u220f":{"d":"30,-211v0,-28,-1,-46,-12,-59r235,1v-11,11,-10,37,-10,58r-1,250v0,23,5,39,15,51v-21,-2,-50,4,-67,-2v15,-16,15,-24,15,-59r0,-272r-136,0r-1,272v-2,35,4,42,15,61v-22,-2,-51,4,-69,-2v17,-10,16,-29,16,-58r0,-241","w":271},"\u03c0":{"d":"57,-132v0,45,-8,108,9,132v-19,-1,-41,2,-58,-1v31,-19,10,-88,16,-138v1,-12,-8,-20,-16,-29r179,1v-32,18,-10,88,-16,138v-1,13,8,20,16,29v-19,-1,-41,2,-58,-1v17,-25,7,-91,8,-135v-7,-20,-41,-9,-64,-11v-9,-1,-16,6,-16,15","w":194},"\u222b":{"d":"101,24v6,52,-20,73,-61,62r5,-19v28,8,34,-3,34,-40r1,-264v3,-28,32,-40,60,-29r-5,19v-24,-8,-34,2,-34,34r0,237"},"\u00aa":{"d":"123,-115r0,15r-109,0r0,-15r109,0xm102,-210v0,26,-10,60,21,58v-4,5,-6,12,-12,14v-29,2,-31,-24,-29,-56v-17,5,-43,7,-44,25v-1,17,23,23,39,16v-11,29,-63,14,-63,-17v0,-29,42,-24,63,-36v14,-8,-2,-24,-16,-22v-8,0,-25,3,-31,7v9,-8,10,-23,30,-22v26,2,42,7,42,33","w":137},"\u00ba":{"d":"132,-115r0,15r-118,0r0,-15r118,0xm14,-189v1,-32,24,-56,60,-56v32,0,58,26,58,56v0,31,-29,55,-62,55v-31,0,-57,-24,-56,-55xm109,-185v0,-24,-15,-45,-38,-45v-21,0,-34,17,-34,38v0,24,13,43,37,44v20,0,35,-16,35,-37","w":146},"\u2126":{"d":"281,-126v0,46,-27,85,-63,102v32,1,53,-6,75,-21r-16,45r-93,0r-7,-26v39,-9,64,-42,65,-88v1,-53,-38,-110,-93,-107v-52,2,-85,36,-85,91v0,50,29,94,70,104r-8,26r-98,0r-16,-45v22,15,42,22,76,21v-35,-17,-64,-59,-64,-104v0,-69,58,-117,130,-117v70,0,127,49,127,119","w":305},"\u00e6":{"d":"157,-88v-5,68,81,88,129,51r-23,37v-72,20,-152,-13,-144,-92v-28,10,-76,11,-76,43v0,37,49,37,82,19v-15,59,-120,38,-120,-20v0,-48,77,-46,101,-60v25,-14,1,-38,-24,-38v-15,0,-33,5,-53,14r27,-37v36,-6,75,0,90,21v51,-50,151,-14,141,62r-130,0xm249,-111v-2,-39,-57,-58,-80,-24v-5,7,-8,15,-10,24r90,0","w":293,"k":{"y":10,"w":12,"v":13}},"\u00f8":{"d":"27,-27v-44,-63,-1,-149,81,-149v23,0,44,6,61,19r20,-18r15,15r-20,19v50,60,-1,149,-82,149v-23,0,-43,-6,-59,-19r-21,19r-15,-16xm67,-33v36,39,100,8,100,-46v0,-14,-3,-27,-9,-38xm145,-135v-35,-38,-99,-10,-99,46v0,15,3,28,8,38","w":211},"\u00bf":{"d":"62,18v0,49,64,59,104,35r-27,33v-68,24,-146,-31,-100,-94v19,-27,67,-40,61,-90r27,0v8,62,-65,63,-65,116xm94,-141v0,-12,7,-19,17,-19v24,0,23,39,0,39v-11,0,-17,-9,-17,-20","w":177},"\u00a1":{"d":"24,91r10,-180r26,0r6,180r-42,0xm28,-132v0,-10,9,-18,19,-18v12,-1,18,9,18,19v1,10,-8,17,-18,18v-12,1,-18,-9,-19,-19","w":90},"\u00ac":{"d":"146,0r0,-79r-134,0r0,-20r156,0r0,99r-22,0"},"\u221a":{"d":"240,-298r0,18r-72,0r-85,280r-22,0r-33,-109r-28,0r0,-18r41,0r30,102r82,-273r87,0","w":239},"\u0192":{"d":"176,-141v-11,-5,-21,-6,-35,-6r-20,128v3,62,-71,83,-121,57r27,-25v26,32,53,8,59,-26r22,-134r-33,0r15,-22r21,0v5,-54,17,-98,78,-95v12,0,23,1,33,4r-25,23v-39,-30,-47,32,-52,68r31,0r0,28","w":222},"\u2248":{"d":"50,-152v-17,1,-24,13,-33,27r-13,-9v13,-26,29,-38,48,-38v17,0,57,27,77,27v19,0,26,-12,35,-27r12,9v-12,25,-29,38,-50,38v-21,0,-53,-27,-76,-27xm50,-95v-17,1,-24,13,-33,27r-13,-8v13,-26,29,-39,48,-39v17,0,57,28,77,28v19,0,25,-13,35,-27r12,8v-12,25,-29,38,-50,38v-21,0,-53,-27,-76,-27"},"\u2206":{"d":"14,0r94,-227v1,-5,-3,-7,-4,-13r54,0r96,240r-240,0xm169,-29v25,3,29,-10,21,-29r-58,-148r-72,177r109,0","w":268},"\u00ab":{"d":"12,-85v0,-16,16,-42,25,-53r16,0v-5,9,-20,42,-19,53v2,20,10,31,19,55r-13,0v-8,-7,-28,-42,-28,-55xm51,-85v5,-15,15,-58,43,-53v-27,52,-25,61,0,108r-13,0v-12,-17,-29,-36,-30,-55","w":105},"\u00bb":{"d":"53,-30v24,-42,22,-67,0,-108r16,0v9,11,24,38,25,53v1,11,-20,47,-28,55r-13,0xm12,-30v25,-48,27,-55,0,-108v29,-5,37,35,42,53v0,16,-18,41,-29,55r-13,0","w":105,"k":{"\u00c1":13,"\u00c6":12,"\u00c5":13,"\u00c4":13,"Y":35,"W":22,"V":21,"T":25,"A":13}},"\u2026":{"d":"24,-13v0,-11,9,-18,19,-18v11,0,18,8,18,18v1,10,-8,19,-18,19v-11,0,-19,-8,-19,-19xm96,-13v0,-11,8,-18,18,-18v11,-1,19,8,19,18v1,10,-8,19,-18,19v-11,0,-19,-8,-19,-19xm168,-13v0,-11,9,-18,19,-18v11,0,18,8,18,18v1,10,-8,19,-18,19v-11,0,-19,-8,-19,-19","w":227},"\u00c0":{"d":"135,-317v0,17,8,43,17,54v-22,2,-23,-10,-35,-24v-9,-10,-14,-22,-16,-30r34,0xm109,-240r53,0r77,190v10,26,20,37,35,50v-24,-1,-52,2,-74,-1v12,-10,12,-14,6,-30r-24,-60r-93,0v-9,26,-22,49,-28,77v-1,6,3,9,6,14v-21,-1,-46,2,-65,-1v20,-10,28,-25,38,-47r73,-179v1,-5,-3,-7,-4,-13xm137,-206r-38,91r74,0","w":276,"k":{"Y":35,"W":38,"V":36,"U":18,"T":25,"Q":21,"O":21,"G":21,"C":21,".":4,",":6}},"\u00c3":{"d":"121,-301v15,-1,48,32,50,-1r18,0v0,22,-14,39,-32,38v-18,4,-39,-27,-51,-7v0,2,-1,4,-1,8r-18,0v0,-20,14,-38,34,-38xm109,-240r53,0r77,190v10,26,20,37,35,50v-24,-1,-52,2,-74,-1v12,-10,12,-14,6,-30r-24,-60r-93,0v-9,26,-22,49,-28,77v-1,6,3,9,6,14v-21,-1,-46,2,-65,-1v20,-10,28,-25,38,-47r73,-179v1,-5,-3,-7,-4,-13xm137,-206r-38,91r74,0","w":276,"k":{"Y":35,"W":38,"V":36,"U":18,"T":25,"Q":21,"O":21,"G":21,"C":21,".":4,",":6}},"\u00d5":{"d":"121,-301v15,-1,48,32,50,-1r18,0v0,22,-14,39,-32,38v-18,3,-38,-26,-51,-7v0,2,-1,4,-1,8r-17,0v0,-20,14,-38,33,-38xm10,-122v1,-76,52,-122,129,-123v73,-2,129,54,128,128v-1,71,-54,121,-129,122v-70,2,-129,-56,-128,-127xm227,-112v0,-59,-32,-109,-91,-109v-51,0,-86,39,-86,93v0,57,36,109,92,109v51,0,85,-40,85,-93","w":276,"k":{"Y":26,"V":16,"T":11}},"\u0152":{"d":"280,-107v-12,-13,-34,-11,-61,-11r0,88v39,11,89,6,115,-15r-17,45v-59,1,-121,1,-174,5v-75,6,-134,-54,-134,-127v0,-84,81,-141,172,-118r121,0r0,40v-15,-21,-48,-14,-83,-15r0,72r61,0r0,36xm50,-128v0,71,60,133,130,100r0,-181v-58,-35,-130,10,-130,81","w":338},"\u0153":{"d":"294,2v-39,14,-98,3,-119,-21v-15,17,-47,27,-77,27v-51,0,-91,-40,-91,-91v0,-86,116,-122,168,-66v13,-14,37,-23,62,-23v50,1,79,34,79,86r-129,0v-8,68,83,87,129,51v-8,17,-15,29,-22,37xm166,-77v-1,-42,-23,-75,-65,-75v-34,0,-58,28,-57,64v1,40,24,73,63,73v33,0,60,-27,59,-62xm278,-110v-3,-47,-74,-55,-87,-11v-2,4,-3,7,-3,11r90,0","w":323},"\u2013":{"d":"184,-97r0,26r-172,0r0,-26r172,0","w":196},"\u2014":{"d":"296,-97r0,26r-284,0r0,-26r284,0","w":308},"\u201c":{"d":"43,-182v-40,-7,-8,-51,12,-63r10,0v-7,6,-19,19,-22,29v26,1,22,38,0,34xm96,-182v-39,-7,-9,-51,12,-63r10,0v-8,6,-18,19,-22,29v26,1,21,38,0,34","w":142,"k":{"\u00c1":41,"\u00c6":47,"\u00c5":41,"\u00c4":41,"Y":4,"W":3,"V":1,"T":6,"A":41}},"\u201d":{"d":"46,-245v39,8,9,52,-12,63r-10,0v7,-6,19,-19,22,-29v-26,-1,-21,-34,0,-34xm99,-245v38,5,9,53,-12,63r-10,0v8,-6,18,-19,22,-29v-26,-1,-21,-37,0,-34","w":142,"k":{"\u00c1":39,"\u00c6":45,"\u00c5":39,"\u00c4":39,"Y":5,"W":3,"V":1,"T":5,"A":39}},"\u2018":{"d":"43,-182v-40,-7,-8,-51,12,-63r10,0v-7,6,-19,19,-22,29v26,1,22,38,0,34","w":89,"k":{"\u00c1":41,"\u00c6":47,"\u00c5":41,"\u00c4":41,"Y":4,"W":3,"V":1,"T":6,"A":41}},"\u2019":{"d":"46,-245v39,8,9,52,-12,63r-10,0v7,-6,19,-19,22,-29v-26,-1,-21,-34,0,-34","w":89,"k":{"\u00c1":39,"\u00c6":45,"\u00c5":39,"\u00c4":39,"y":2,"w":8,"v":9,"t":3,"s":8,"r":8,"o":13,"d":18,"A":39,".":24,",":24}},"\u00f7":{"d":"18,-130r187,0r0,17r-187,0r0,-17xm94,-76v0,-11,8,-18,18,-18v11,0,18,8,19,18v1,10,-8,19,-19,19v-11,0,-18,-9,-18,-19xm94,-166v0,-11,8,-18,18,-18v11,0,18,8,19,18v1,10,-8,19,-19,19v-12,1,-18,-9,-18,-19","w":223},"\u25ca":{"d":"120,-249r93,129r-93,129r-93,-129xm120,-218r-71,98r71,97r71,-97","w":239},"\u00ff":{"d":"184,-168r-99,224v-16,27,-59,38,-103,31r37,-28v40,17,48,-31,61,-59v-29,-39,-48,-112,-73,-152v-4,-8,-13,-10,-19,-16r54,0r55,130v14,-38,34,-73,44,-114v0,-5,-3,-10,-6,-16r49,0xm36,-214v0,-9,8,-19,19,-19v10,0,17,9,17,20v0,10,-7,19,-18,19v-11,1,-18,-9,-18,-20xm117,-214v0,-10,8,-19,18,-19v10,0,18,9,18,20v1,11,-7,19,-18,19v-10,1,-18,-9,-18,-20","w":185},"\u0178":{"d":"86,0v24,-18,14,-66,16,-108r-69,-102v-7,-13,-20,-24,-31,-30r58,0r66,100v18,-29,43,-51,55,-85v1,-6,-6,-9,-10,-15r60,0r-91,132v1,45,-7,97,23,108r-77,0xm74,-284v0,-9,7,-19,18,-19v11,0,17,8,18,19v0,9,-7,19,-18,19v-10,1,-18,-9,-18,-19xm144,-284v0,-9,7,-19,18,-19v11,0,17,8,18,19v0,9,-7,19,-18,19v-10,1,-18,-9,-18,-19","w":233},"\u2215":{"d":"227,-256r-183,285r-20,-12r183,-286","w":250},"\u20ac":{"d":"205,1v-87,17,-155,-17,-172,-83r-33,0r11,-22r18,0r-1,-22r-28,0r11,-23r20,0v16,-78,93,-110,188,-89r-14,31v-58,-30,-130,1,-134,58r107,0r-11,23r-98,0v0,8,0,15,1,22r88,0r-11,22r-72,0v12,55,80,74,130,50r0,33","w":231},"\u2039":{"d":"24,-55v-28,-30,0,-61,17,-83r13,0v-29,49,-22,62,0,108v-21,3,-21,-16,-30,-25","w":66},"\u203a":{"d":"12,-30v25,-48,27,-55,0,-108v29,-5,37,35,42,53v0,16,-18,41,-29,55r-13,0","w":66,"k":{"\u00c1":13,"\u00c6":14,"\u00c5":13,"\u00c4":13,"Y":35,"W":24,"V":22,"T":27,"A":13}},"\uf001":{"d":"97,-225v-32,-20,-50,15,-44,57r52,0r0,27v-14,-6,-32,-6,-52,-6v5,50,-14,121,15,147v-18,-1,-41,2,-57,-1v17,-32,4,-98,8,-146r-15,0v5,-10,15,-16,15,-30v0,-63,46,-83,107,-75xm113,-167v15,-4,37,3,47,-6r0,125v0,32,1,34,12,48v-18,-1,-41,2,-57,-1v24,-19,12,-82,12,-123v0,-30,-1,-33,-14,-43xm121,-214v0,-9,9,-19,19,-19v11,0,16,9,17,20v1,11,-7,19,-18,19v-10,1,-17,-10,-18,-20","w":177},"\uf002":{"d":"19,-171v-8,-75,53,-80,123,-80v8,0,14,-1,18,-3r0,206v-1,33,1,35,16,48v-22,-1,-48,2,-68,-1v16,-12,18,-17,18,-47r0,-156v0,-24,-1,-29,-9,-39r-20,18v-32,-20,-50,15,-44,57r52,0r0,27v-14,-6,-32,-6,-52,-6v5,50,-14,121,15,147v-18,-1,-41,2,-57,-1v17,-32,4,-98,8,-146r-15,0","w":177},"\u2021":{"d":"196,-129v-18,-12,-41,-10,-70,-10r0,74v27,0,54,2,70,-9r0,46v-15,-10,-44,-8,-70,-8v1,30,-4,71,9,86r-49,0v14,-17,8,-54,9,-86v-28,1,-53,-4,-70,8r0,-46v15,11,42,9,70,9r0,-74v-28,0,-53,-2,-70,10r0,-47v16,10,43,7,70,8v-1,-27,3,-57,-9,-72r49,0v-13,16,-8,44,-9,72v27,0,49,1,70,-8r0,47","w":220},"\u2219":{"d":"24,-76v0,-11,9,-18,19,-18v11,0,18,9,18,19v1,9,-7,18,-18,18v-12,0,-19,-8,-19,-19","w":83},"\u201a":{"d":"46,-39v38,9,9,50,-12,63r-10,0v7,-6,18,-18,22,-28v-25,-1,-21,-35,0,-35","w":89},"\u201e":{"d":"46,-39v38,9,9,50,-12,63r-10,0v7,-6,18,-18,22,-28v-25,-1,-21,-35,0,-35xm99,-39v39,6,9,50,-12,63r-10,0v8,-6,18,-18,22,-28v-25,-1,-21,-38,0,-35","w":142,"k":{"\u00c6":2,"Y":39,"W":35,"V":33,"T":28,"A":5}},"\u2030":{"d":"248,-256r-182,285r-20,-12r182,-286xm151,-44v1,-43,23,-76,67,-76v40,0,67,32,66,74v-1,43,-25,75,-67,75v-39,0,-67,-32,-66,-73xm219,12v57,-1,53,-115,-2,-116v-58,1,-55,117,2,116xm11,-193v0,-44,24,-76,67,-76v40,0,66,31,65,74v-1,44,-24,75,-67,75v-39,0,-65,-32,-65,-73xm79,-137v56,-1,53,-116,-2,-116v-58,1,-55,117,2,116xm299,-44v1,-43,23,-76,67,-76v40,0,67,32,66,74v-1,42,-24,74,-67,75v-39,0,-67,-32,-66,-73xm367,12v57,-1,54,-116,-2,-116v-58,1,-55,116,2,116","w":444},"\u00c2":{"d":"96,-263v13,-20,17,-30,22,-54r40,0v6,25,10,36,22,54v-26,1,-30,-19,-42,-34v-9,11,-16,37,-42,34xm109,-240r53,0r77,190v10,26,20,37,35,50v-24,-1,-52,2,-74,-1v12,-10,12,-14,6,-30r-24,-60r-93,0v-9,26,-22,49,-28,77v-1,6,3,9,6,14v-21,-1,-46,2,-65,-1v20,-10,28,-25,38,-47r73,-179v1,-5,-3,-7,-4,-13xm137,-206r-38,91r74,0","w":276,"k":{"Y":35,"W":38,"V":36,"U":18,"T":25,"Q":21,"O":21,"G":21,"C":21,".":4,",":6}},"\u00ca":{"d":"43,-263v13,-20,17,-30,23,-54r39,0v6,25,10,36,22,54v-26,1,-30,-19,-42,-34v-9,11,-16,37,-42,34xm28,-180v2,-26,2,-51,-14,-60r135,0r0,40v-16,-20,-47,-14,-83,-15r0,72r61,0r0,36v-13,-12,-34,-11,-61,-11r0,88v39,12,89,6,114,-15r-16,45r-150,-1v27,-35,10,-120,14,-179","w":185},"\u00c1":{"d":"131,-263v9,-12,17,-36,17,-54r34,0v-8,17,-23,56,-51,54xm109,-240r53,0r77,190v10,26,20,37,35,50v-24,-1,-52,2,-74,-1v12,-10,12,-14,6,-30r-24,-60r-93,0v-9,26,-22,49,-28,77v-1,6,3,9,6,14v-21,-1,-46,2,-65,-1v20,-10,28,-25,38,-47r73,-179v1,-5,-3,-7,-4,-13xm137,-206r-38,91r74,0","w":276,"k":{"\u2039":11,"\u2019":37,"\u00ab":11,"y":23,"w":25,"v":25,"u":12,"t":10,"q":14,"o":14,"g":30,"e":14,"d":16,"c":14,"b":-2,"a":9,"Y":35,"W":38,"V":36,"U":18,"T":25,"Q":21,"O":21,"G":21,"C":21,".":4,"-":7,",":6}},"\u00cb":{"d":"31,-284v0,-10,6,-19,18,-19v10,0,18,8,18,19v0,9,-7,19,-18,19v-10,1,-18,-9,-18,-19xm101,-284v0,-10,6,-19,18,-19v10,0,17,9,18,19v1,9,-7,19,-18,19v-10,1,-18,-9,-18,-19xm28,-180v2,-26,2,-51,-14,-60r135,0r0,40v-16,-20,-47,-14,-83,-15r0,72r61,0r0,36v-13,-12,-34,-11,-61,-11r0,88v39,12,89,6,114,-15r-16,45r-150,-1v27,-35,10,-120,14,-179","w":185},"\u00c8":{"d":"88,-317v0,16,8,42,17,54v-22,2,-23,-10,-35,-24v-9,-10,-14,-22,-16,-30r34,0xm28,-180v2,-26,2,-51,-14,-60r135,0r0,40v-16,-20,-47,-14,-83,-15r0,72r61,0r0,36v-13,-12,-34,-11,-61,-11r0,88v39,12,89,6,114,-15r-16,45r-150,-1v27,-35,10,-120,14,-179","w":185},"\u00cd":{"d":"43,-263v8,-13,16,-37,17,-54r33,0v-8,17,-22,56,-50,54xm28,-179v0,-34,2,-47,-12,-61v19,2,47,-4,62,2v-26,33,-12,121,-12,178v0,35,0,38,12,60v-21,-1,-45,2,-64,-1v29,-34,14,-120,14,-178","w":92},"\u00ce":{"d":"47,-297v-10,10,-17,37,-42,34v13,-20,17,-30,22,-54r39,0v6,25,10,36,22,54v-26,1,-29,-19,-41,-34xm28,-179v0,-34,2,-47,-12,-61v19,2,47,-4,62,2v-26,33,-12,121,-12,178v0,35,0,38,12,60v-21,-1,-45,2,-64,-1v29,-34,14,-120,14,-178","w":92},"\u00cf":{"d":"-1,-284v0,-10,6,-19,18,-19v10,0,17,9,17,19v1,10,-7,19,-17,19v-10,1,-18,-9,-18,-19xm58,-284v0,-9,8,-19,19,-19v10,0,17,9,17,19v1,10,-7,19,-18,19v-10,0,-17,-10,-18,-19xm28,-179v0,-34,2,-47,-12,-61v19,2,47,-4,62,2v-26,33,-12,121,-12,178v0,35,0,38,12,60v-21,-1,-45,2,-64,-1v29,-34,14,-120,14,-178","w":92},"\u00cc":{"d":"45,-317v0,16,8,42,17,54v-21,2,-23,-10,-35,-24v-9,-10,-13,-22,-15,-30r33,0xm28,-179v0,-34,2,-47,-12,-61v19,2,47,-4,62,2v-26,33,-12,121,-12,178v0,35,0,38,12,60v-21,-1,-45,2,-64,-1v29,-34,14,-120,14,-178","w":92},"\u00d3":{"d":"133,-263v8,-13,16,-37,17,-54r34,0v-8,17,-23,56,-51,54xm10,-122v1,-76,52,-122,129,-123v73,-2,129,54,128,128v-1,71,-54,121,-129,122v-70,2,-129,-56,-128,-127xm227,-112v0,-59,-32,-109,-91,-109v-51,0,-86,39,-86,93v0,57,36,109,92,109v51,0,85,-40,85,-93","w":276,"k":{"Y":26,"W":19,"V":16,"T":11,"A":23}},"\u00d4":{"d":"139,-297v-10,10,-17,37,-42,34v13,-20,17,-30,22,-54r39,0v6,25,10,36,22,54v-26,1,-29,-19,-41,-34xm10,-122v1,-76,52,-122,129,-123v73,-2,129,54,128,128v-1,71,-54,121,-129,122v-70,2,-129,-56,-128,-127xm227,-112v0,-59,-32,-109,-91,-109v-51,0,-86,39,-86,93v0,57,36,109,92,109v51,0,85,-40,85,-93","w":276,"k":{"Y":26,"V":16,"T":11}},"\u00d2":{"d":"128,-317v0,16,8,42,17,54v-21,2,-23,-10,-35,-24v-9,-10,-13,-22,-15,-30r33,0xm10,-122v1,-76,52,-122,129,-123v73,-2,129,54,128,128v-1,71,-54,121,-129,122v-70,2,-129,-56,-128,-127xm227,-112v0,-59,-32,-109,-91,-109v-51,0,-86,39,-86,93v0,57,36,109,92,109v51,0,85,-40,85,-93","w":276,"k":{"Y":26,"V":16,"T":11}},"\u00da":{"d":"118,-263v8,-13,16,-37,17,-54r33,0v-8,18,-22,56,-50,54xm187,-111v-3,-44,7,-104,-12,-129v18,1,40,-2,56,1v-16,46,-4,120,-7,179v-2,40,2,39,15,60r-50,0r0,-24v-22,20,-47,29,-77,29v-67,0,-88,-29,-88,-112v0,-45,7,-109,-12,-133v20,1,43,-2,61,1v-20,31,-8,85,-11,132v-3,58,17,86,63,86v48,0,66,-26,62,-90","w":253,"k":{"n":2,"m":1,".":3,",":5}},"\u00db":{"d":"126,-297v-10,10,-17,37,-42,34v13,-20,17,-30,22,-54r39,0v6,25,10,36,22,54v-26,1,-29,-19,-41,-34xm187,-111v-3,-44,7,-104,-12,-129v18,1,40,-2,56,1v-16,46,-4,120,-7,179v-2,40,2,39,15,60r-50,0r0,-24v-22,20,-47,29,-77,29v-67,0,-88,-29,-88,-112v0,-45,7,-109,-12,-133v20,1,43,-2,61,1v-20,31,-8,85,-11,132v-3,58,17,86,63,86v48,0,66,-26,62,-90","w":253},"\u00d9":{"d":"122,-317v0,16,8,42,17,54v-21,2,-23,-10,-35,-24v-9,-10,-14,-22,-16,-30r34,0xm187,-111v-3,-44,7,-104,-12,-129v18,1,40,-2,56,1v-16,46,-4,120,-7,179v-2,40,2,39,15,60r-50,0r0,-24v-22,20,-47,29,-77,29v-67,0,-88,-29,-88,-112v0,-45,7,-109,-12,-133v20,1,43,-2,61,1v-20,31,-8,85,-11,132v-3,58,17,86,63,86v48,0,66,-26,62,-90","w":253},"\u0131":{"d":"4,-167v14,-4,36,2,46,-6r0,125v0,33,1,34,13,48v-19,-1,-41,2,-58,-1v24,-19,12,-82,12,-123v0,-29,-1,-32,-13,-43","w":67},"\u02c6":{"d":"49,-229v-8,12,-17,38,-42,34v13,-20,16,-29,22,-53r40,0v6,25,10,35,22,53v-26,1,-30,-19,-42,-34","w":97},"\u02dc":{"d":"46,-233v0,0,48,32,51,-1r17,0v0,21,-14,39,-31,39v-19,0,-48,-33,-53,1r-17,0v0,-20,14,-39,33,-39","w":127},"\u02c9":{"d":"12,-219r113,0r0,22r-113,0r0,-22","w":136},"\u02d8":{"d":"67,-194v-26,1,-49,-18,-42,-45r16,-4v-5,18,8,27,26,27v18,0,32,-8,27,-27v6,2,17,1,17,11v0,24,-19,37,-44,38","w":134},"\u02d9":{"d":"24,-214v0,-9,8,-19,19,-19v10,0,17,9,17,20v0,10,-7,19,-18,19v-11,1,-18,-9,-18,-20","w":83},"\u02da":{"d":"52,-222v0,-9,-7,-16,-16,-16v-8,0,-16,8,-16,16v0,8,8,16,16,16v9,1,16,-7,16,-16xm7,-222v0,-17,13,-29,30,-29v15,0,29,14,29,29v0,16,-14,30,-30,30v-16,1,-29,-14,-29,-30","w":72},"\u00b8":{"d":"59,51v26,0,31,-28,4,-28v-4,0,-9,1,-14,3r16,-27r18,0r-9,15v16,-1,27,8,27,22v1,33,-46,37,-71,24r-6,-17v13,5,25,8,35,8","w":129},"\u02dd":{"d":"24,-195v8,-12,16,-36,17,-53r34,0v-9,17,-23,55,-51,53xm68,-195v8,-12,16,-36,17,-53r33,0v-8,17,-22,55,-50,53","w":142},"\u02db":{"d":"127,58v-35,16,-69,-24,-43,-53v5,-7,20,-14,30,-5v-22,8,-19,45,7,43v4,0,8,-1,14,-3","w":129},"\u02c7":{"d":"91,-248v-12,17,-16,28,-22,53r-40,0v-5,-23,-9,-33,-22,-53v25,-4,33,21,42,34v12,-15,16,-35,42,-34","w":97},"\u00a0":{"w":90},"\u00a4":{"d":"176,-174v25,30,23,74,0,102r33,33r-12,13r-34,-33v-33,25,-68,23,-103,0r-33,32r-12,-12r32,-33v-25,-31,-21,-73,0,-102r-33,-33r13,-13r33,33v26,-24,76,-23,102,0r34,-33r13,13xm173,-123v0,-32,-29,-62,-61,-62v-34,0,-62,28,-62,61v0,35,28,63,62,63v32,0,61,-29,61,-62","w":223},"\u00a6":{"d":"79,-240r22,0r0,119r-22,0r0,-119xm79,-55r22,0r0,115r-22,0r0,-115"},"\u00ad":{"d":"127,-97r0,26r-115,0r0,-26r115,0","w":138},"\u00af":{"d":"0,-305r180,0r0,14r-180,0r0,-14"},"\u00b2":{"d":"76,-194v14,-36,-26,-36,-54,-22r10,-24v31,-4,79,-4,74,27v-6,40,-40,67,-57,99v25,6,50,3,72,-5r-10,23r-99,0","w":132},"\u00b3":{"d":"30,-239v32,-9,75,-5,75,28v0,13,-8,24,-26,32v19,4,35,17,35,36v-1,41,-48,55,-93,47r-9,-23v28,17,76,10,78,-24v2,-25,-32,-29,-52,-22r0,-17v42,9,62,-45,15,-44v-11,0,-22,3,-32,8","w":125},"\u00b7":{"d":"24,-76v0,-11,9,-18,19,-18v11,0,18,9,18,19v1,9,-7,18,-18,18v-12,0,-19,-8,-19,-19","w":83},"\u00b9":{"d":"20,-96v19,-21,8,-78,11,-117r-19,0v16,-7,30,-18,41,-31v3,48,-9,113,8,148r-41,0","w":73},"\u00bc":{"d":"251,-256r-182,285r-20,-12r182,-286xm33,-96v17,-22,8,-78,10,-117r-19,0v17,-7,29,-19,42,-31v3,48,-10,113,7,148r-40,0xm277,-143r-1,99v18,0,30,-1,40,-7r-10,23r-30,0v0,12,1,23,6,28r-33,0v5,-6,5,-14,5,-28r-80,0r72,-115r31,0xm254,-126r-49,81v14,2,34,3,49,1r0,-82","w":323},"\u00bd":{"d":"251,-256r-182,285r-20,-12r182,-286xm33,-96v17,-22,8,-78,10,-117r-19,0v17,-7,29,-19,42,-31v3,48,-10,113,7,148r-40,0xm256,-98v14,-37,-26,-36,-54,-22r10,-24v31,-4,76,-4,75,27v-11,38,-41,67,-58,99v25,6,50,3,72,-5r-10,23r-99,0","w":325},"\u00be":{"d":"272,-256r-183,285r-20,-12r183,-286xm297,-143r0,99v18,0,30,-1,40,-7r-10,23r-30,0v0,12,0,23,5,28r-33,0v5,-6,6,-13,6,-28r-80,0r72,-115r30,0xm275,-126r-49,81v14,2,34,3,49,1r0,-82xm37,-239v33,-9,74,-5,75,28v0,13,-8,24,-26,32v19,4,35,17,35,36v-1,41,-48,55,-93,47r-9,-23v28,17,76,10,78,-24v1,-25,-32,-29,-52,-22v2,-6,-5,-18,6,-17v21,1,38,-8,38,-25v0,-25,-43,-21,-61,-11","w":344},"\u00d0":{"d":"11,0v24,-17,17,-67,18,-110r-25,0r0,-22r25,0v-3,-41,10,-96,-19,-106r0,-2r79,0v93,-5,154,35,154,117v0,86,-56,126,-155,123r-77,0xm204,-122v0,-69,-67,-109,-137,-89r0,79r49,0r0,22r-49,0r0,82v75,15,137,-25,137,-94","w":252},"\u00d7":{"d":"189,-188r-64,64r66,65r-12,12r-65,-65r-67,67r-12,-12r67,-67r-66,-65r12,-12r66,65r64,-64","w":223},"\u00dd":{"d":"116,-263v8,-13,16,-37,17,-54r34,0v-8,17,-23,56,-51,54xm86,0v24,-18,14,-66,16,-108r-69,-102v-7,-13,-20,-24,-31,-30r58,0r66,100v18,-29,43,-51,55,-85v1,-6,-6,-9,-10,-15r60,0r-91,132v1,45,-7,97,23,108r-77,0","w":233},"\u00de":{"d":"78,-240v-10,17,-14,24,-12,54v63,-2,116,6,116,60v0,48,-43,68,-100,64v31,-7,60,-22,60,-58v0,-35,-38,-53,-76,-43v3,56,-10,130,12,163v-21,-1,-45,2,-64,-1v29,-38,14,-126,14,-191v0,-34,0,-31,-12,-48r62,0","w":187},"\u00f0":{"d":"152,-161v-13,-28,-26,-39,-50,-56v-14,7,-29,18,-37,28r-11,-22r29,-16v-11,-5,-25,-10,-42,-15r19,-12v17,2,33,7,48,13r21,-12r21,9r-23,13v44,25,76,81,76,142v0,58,-46,97,-103,97v-52,0,-91,-40,-93,-91v-3,-73,84,-118,145,-78xm166,-78v-1,-41,-24,-74,-65,-74v-34,0,-58,28,-57,64v1,39,24,73,63,73v33,0,60,-28,59,-63","w":210},"\u00fd":{"d":"184,-168r-99,224v-16,27,-59,38,-103,31r37,-28v40,17,48,-31,61,-59v-29,-39,-48,-112,-73,-152v-4,-8,-13,-10,-19,-16r54,0r55,130v14,-38,34,-73,44,-114v0,-5,-3,-10,-6,-16r49,0xm87,-195v9,-12,17,-35,17,-53r34,0v-9,17,-23,55,-51,53","w":185},"\u00fe":{"d":"17,-201v0,-24,1,-36,-10,-48v16,0,33,0,43,-5r0,105v49,-51,143,-14,143,62v0,60,-51,106,-114,87r-19,-25v46,21,95,-7,95,-57v0,-37,-22,-68,-58,-68v-79,0,-39,129,-48,211v-1,15,6,20,11,27v-17,-2,-42,4,-55,-2v12,-9,11,-27,11,-46","w":201},"\u0106":{"d":"138,-263v8,-13,16,-37,17,-54r34,0v-8,17,-23,56,-51,54xm51,-125v0,94,106,128,179,82r-18,41v-103,25,-202,-22,-202,-119v0,-100,99,-141,200,-116r0,39v-64,-47,-159,-11,-159,73","w":235},"\u0107":{"d":"93,-195v9,-12,17,-35,17,-53r34,0v-9,17,-23,55,-51,53xm7,-80v1,-69,67,-109,138,-89r0,34v-40,-33,-99,-8,-99,45v0,62,77,91,123,54v-7,15,-15,26,-24,35v-66,24,-140,-15,-138,-79","w":176},"\u010c":{"d":"195,-317v-11,18,-15,29,-22,54r-39,0v-5,-24,-9,-34,-22,-54v25,-4,32,22,42,34v12,-15,15,-35,41,-34xm51,-125v0,94,106,128,179,82r-18,41v-103,25,-202,-22,-202,-119v0,-100,99,-141,200,-116r0,39v-64,-47,-159,-11,-159,73","w":235},"\u010d":{"d":"151,-248v-12,17,-16,28,-22,53r-40,0v-5,-23,-9,-33,-22,-53v25,-4,33,21,42,34v12,-15,16,-35,42,-34xm7,-80v1,-69,67,-109,138,-89r0,34v-40,-33,-99,-8,-99,45v0,62,77,91,123,54v-7,15,-15,26,-24,35v-66,24,-140,-15,-138,-79","w":176},"\u0111":{"d":"12,-83v-1,-75,86,-120,148,-70r0,-39r-58,0r-18,-23r76,0v-2,-17,-5,-25,-16,-33v18,1,40,0,50,-5r0,38r12,0r9,23r-21,0r-1,145v0,31,2,28,14,47r-47,0v0,-68,10,-150,-55,-151v-32,0,-54,29,-54,62v0,49,51,85,99,60r-21,28v-63,13,-116,-22,-117,-82","w":210},"\u011e":{"d":"156,-264v-26,1,-51,-19,-42,-45r16,-4v-7,17,8,27,26,27v18,0,31,-8,26,-27v6,2,18,1,17,11v-1,24,-18,38,-43,38xm50,-124v0,77,78,123,152,94v-2,-34,7,-73,-11,-92r45,0r0,116v-107,31,-227,-1,-227,-111v0,-97,100,-147,201,-121r0,37v-61,-46,-160,-3,-160,77","w":250},"\u011f":{"d":"107,-194v-26,1,-49,-18,-42,-45r16,-4v-5,18,8,27,26,27v18,0,32,-8,27,-27v6,2,17,1,17,11v0,24,-19,37,-44,38xm18,-110v0,-75,107,-57,190,-59r-16,23r-36,0v16,12,24,26,24,43v1,29,-36,38,-50,56v-1,15,34,13,40,18v18,8,36,29,36,53v0,84,-181,92,-199,15v-1,-20,25,-29,51,-28v-9,6,-13,12,-13,19v10,51,123,52,123,-4v0,-26,-23,-47,-50,-46v-19,1,-25,-10,-30,-23v8,-19,55,-27,55,-59v0,-49,-87,-65,-88,-9v0,19,13,33,39,44r-16,15v-30,-6,-60,-26,-60,-58","w":204},"\u0130":{"d":"31,-284v0,-9,7,-19,19,-19v10,0,17,9,17,19v1,10,-7,19,-18,19v-10,0,-18,-10,-18,-19xm28,-179v0,-34,2,-47,-12,-61v19,2,47,-4,62,2v-26,33,-12,121,-12,178v0,35,0,38,12,60v-21,-1,-45,2,-64,-1v29,-34,14,-120,14,-178","w":92},"\u0141":{"d":"83,-240v-21,15,-14,54,-15,90r32,-32r0,32r-32,32r0,90v44,10,82,4,111,-14r-17,42r-145,-1v18,-15,13,-45,14,-80r-26,25r0,-31r26,-26v-4,-42,12,-106,-14,-125r0,-2r66,0","w":174},"\u0142":{"d":"25,-121v-3,-44,11,-110,-17,-128v18,0,39,2,50,-5r0,100r26,-26r0,32r-26,26v4,42,-11,107,16,122v-22,-1,-47,2,-67,-1v24,-12,16,-53,18,-89r-25,24r0,-31","w":84},"\u015e":{"d":"42,-185v4,55,123,44,120,113v-2,45,-39,71,-83,75r-5,9v15,-4,29,7,29,22v0,34,-46,40,-75,26r-7,-16v23,10,58,15,61,-9v2,-14,-21,-17,-34,-11r12,-20v-15,0,-33,-3,-52,-9r-13,-46v25,16,47,24,76,26v40,3,72,-38,36,-63v-37,-26,-105,-31,-106,-90v-1,-60,82,-77,139,-59r-1,40v-25,-30,-92,-29,-97,12","w":161},"\u015f":{"d":"47,-133v4,36,105,29,98,82v-4,34,-30,52,-64,58v-1,2,-8,8,-2,7v14,0,25,9,25,22v0,32,-46,38,-72,24r-6,-17v21,8,52,16,58,-7v0,-13,-21,-16,-33,-10r11,-18v-15,0,-31,-4,-48,-10r-14,-35v29,13,52,20,70,20v26,0,58,-26,31,-43v-23,-14,-94,-25,-92,-66v3,-47,68,-58,114,-44r0,31v-28,-16,-65,-23,-76,6","w":154},"\u0160":{"d":"133,-317v-12,18,-17,29,-22,54r-40,0v-5,-24,-9,-34,-22,-54v25,-4,33,21,42,34v12,-15,16,-35,42,-34xm14,-142v-50,-67,48,-125,126,-95r-1,40v-25,-30,-92,-29,-97,12v4,55,123,44,120,113v-3,69,-85,90,-154,67r-13,-46v25,16,47,24,76,26v39,3,72,-39,36,-63v-28,-19,-73,-27,-93,-54","w":161},"\u0161":{"d":"26,-94v-42,-36,4,-82,57,-82v14,0,28,2,40,6r0,31v-28,-16,-65,-23,-76,6v4,36,104,29,98,82v-6,53,-78,73,-131,49r-14,-35v29,13,52,20,70,20v26,0,57,-25,31,-43v-10,-7,-66,-22,-75,-34xm123,-248v-12,17,-16,28,-22,53r-40,0v-5,-23,-9,-33,-22,-53v25,-4,33,21,42,34v12,-15,16,-35,42,-34","w":154},"\u017d":{"d":"162,-317v-12,18,-17,29,-22,54r-39,0v-5,-24,-9,-34,-22,-54v25,-4,32,22,42,34v12,-15,15,-35,41,-34xm209,-238r-139,211v57,7,118,6,155,-16r-20,43r-203,0r142,-208v-40,-9,-96,-9,-123,11r18,-41r170,0","w":226},"\u017e":{"d":"166,-168r-106,144v59,0,88,10,120,-12r-19,36r-160,0r106,-142v-30,-3,-76,-5,-96,10r21,-36r134,0xm141,-248v-12,17,-16,28,-22,53r-40,0v-5,-23,-9,-33,-22,-53v25,-4,33,21,42,34v12,-15,16,-35,42,-34","w":181},"\u20a3":{"d":"28,-179v3,-40,2,-43,-14,-61r135,0r0,44v-9,-25,-48,-20,-84,-20r0,73r63,0r0,34v-15,-14,-36,-11,-62,-11v2,44,-8,102,17,120v-22,-1,-48,2,-68,-1v28,-36,9,-118,13,-178xm152,-40v0,-35,7,-86,-10,-102v13,0,31,1,38,-4r0,20v18,-15,28,-22,50,-18r0,27v-47,-21,-54,26,-51,76v2,24,3,31,13,41v-17,-1,-37,2,-52,-1v11,-10,12,-16,12,-39","w":229},"\u2212":{"d":"205,-133r0,17r-187,0r0,-17r187,0","w":223}}});

/*
Powerful Errors Template - Javascript file
Requires: jQuery 1.3+
          jQuery UI Core 
		  jQuery UI Effects Core
*/

/*** OPTIONS ***/
var search_message = 'Enter your search terms...'; // the default text in the search box, you will also need to change this on the form itself for
												   // non-javascript browsers
/*** END OPTIONS ***/


// start jQuery
$(document).ready(function(){

	// gets the # achor
	var tag = location.hash;
	
	// appends -link and checks that such a div exists, if so switch to it WITHOUT animation (i.e. make it look like it's static)
	if($(tag + '-link').length > 0)
	{
		switch_tab(tag + '-link', false);
	}

	// this handles the search box message when it's focused and unfocused (on blur)
	$('#searchterms').focus(function() {
		if($(this).attr("value") == search_message) {
			$(this).attr("value", '');
		}
	});
	
	$('#searchterms').blur(function() {
		if($(this).attr("value") == '') {
			$(this).attr("value", search_message);
		}
	});

	// adds switch tab to click event of the tabs
	$('.swtab').click(function(){
		switch_tab('#' + this.id);
	});
	
	// ajax error reporting
	$('#reporterrorform').submit(function(){
		$('#loadingimg').show();												// show loading image
		var datastream = $("#reporterrorform").serialize() + '&ajax=true';		// convert form data and add ajax boolean. This doesn't do anything
																				// by default but it's there for you to utilise
		jQuery.ajax({
			data: datastream,		
			url: this.action,	 // the ajax request will be sent to the ACTION value of the form
			timeout: 2000,
			error: function() {
			  console.log("Failed to submit");
			},
			success: function(r) { 
			  $('.ajaxresult').html(r); 	// put the result in the ajaxresult div
			  $('#loadingimg').hide();		// hide the image again
			}
	  });
	  return false;
	});
		

});

// handles tab switching
function switch_tab(ele, animation)
{
	$('#jquery-content .contentbox').hide();					// hides ALL content
	$('.swtab').parent().parent().removeClass("selected");		// removes ALL selected classes from tabs
	$(ele).parent().parent().addClass("selected");				// adds selected class to clicked tab
	var rel = $(ele).attr("rel");								// gets value of "rel" attribute of clicked link - the content ID is stored here
	if(animation == false)										
	{
		$('#' + rel).show(); // show without effects or animation
	}
	else 
	{
		$('#' + rel).show("slide", { direction: "up"  }); // show with animation
	}
}

