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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number(($n>1)); }, 'strings': { "Unspecified error": "Erreur non spécifiée", "Only files with the following extensions are allowed: %files-allowed.": "Seuls les fichiers se terminant par les extensions suivantes sont autorisés : %files-allowed.", "Your server has been successfully tested to support this feature.": "Le test a réussi. Votre serveur supporte cette fonctionnalité.", "Your system configuration does not currently support this feature. The \x3ca href=\"http://drupal.org/node/15365\"\x3ehandbook page on Clean URLs\x3c/a\x3e has additional troubleshooting information.": "La configuration de votre système ne supporte pas cette fonctionnalité. La \x3ca href=\"http://drupal.org/node/15365\"\x3epage du manuel sur les URLs simplifiées\x3c/a\x3e apporte une aide supplémentaire.", "Testing clean URLs...": "Test des URLs simplifiées...", "Anonymous": "Anonyme", "Published": "Publié", "Not published": "Non publié", "Promoted to front page": "Promu en page d\'accueil", "Upload": "Transfert de fichiers", "An error occurred. \n@uri\n@text": "Une erreur s\'est produite. \n@uri\n@text", "An error occurred. \n@uri\n(no information available).": "Une erreur s\'est produite. \n@uri\n(aucune information supplémentaire)", "An HTTP error @status occurred. \n@uri": "Une erreur HTTP @status s\'est produite. \n@uri", "Drag to re-order": "Cliquer-déposer pour ré-organiser", "Changes made in this table will not be saved until the form is submitted.": "Les modifications réalisées sur cette table ne seront enregistrés que lorsque le formulaire sera soumis.", "Select all rows in this table": "Sélectionner toutes les lignes du tableau", "Deselect all rows in this table": "Désélectionner toutes les lignes du tableau", "Split summary at cursor": "Créer un résumé à partir du curseur", "Join summary": "Fusionner le résumé et le corps du message", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "N\'oubliez pas de cliquer sur \x3cem\x3eEnregistrer les blocs\x3c/em\x3e pour confirmer les modifications apportées ici.", "None": "Aucun", "Remove this item": "Supprimer cet élément", "Close": "Fermer", "The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.": "Le fichier sélectionné %filename n\'a pas pu être transféré. Seuls les fichiers possédant les extensions suivantes sont autorisés : %extensions.", "Automatic alias": "Alias automatique", "Save and send": "Sauvegarder et envoyer", "Save and send test": "Sauvegarder et envoyer un test", "Content can be only inserted into CKEditor in WYSIWYG mode.": "Le contenu ne peut être inséré que dans CKEditor en mode WYSIWYG.", "Insert Teaser Break": "Insérer une séparation de résumé", "Insert Page Break": "Insérer un saut de page", "The document already contains a teaser break. Do you want to proceed by removing it first?": "Le document contient déjà une séparation de résumé. Voulez-vous continuer en la retirant d\'abord ?", "Error !msg": "Erreur !msg", "Error on retrieving data from module.": "Erreur pendant la récupération des données depuis le module.", "Embed Media Dialog": "Inclure le Dialogue Média", "Embed media code": "Inclure le code média", "Paste embed code here": "Coller le code inclus ici" } };;
// jQuery SWFObject v1.1.1 MIT/GPL @jon_neal
// http://jquery.thewikies.com/swfobject
(function(f,h,i){function k(a,c){var b=(a[0]||0)-(c[0]||0);return b>0||!b&&a.length>0&&k(a.slice(1),c.slice(1))}function l(a){if(typeof a!=g)return a;var c=[],b="";for(var d in a){b=typeof a[d]==g?l(a[d]):[d,m?encodeURI(a[d]):a[d]].join("=");c.push(b)}return c.join("&")}function n(a){var c=[];for(var b in a)a[b]&&c.push([b,'="',a[b],'"'].join(""));return c.join(" ")}function o(a){var c=[];for(var b in a)c.push(['<param name="',b,'" value="',l(a[b]),'" />'].join(""));return c.join("")}var g="object",m=true;try{var j=i.description||function(){return(new i("ShockwaveFlash.ShockwaveFlash")).GetVariable("$version")}()}catch(p){j="Unavailable"}var e=j.match(/\d+/g)||[0];f[h]={available:e[0]>0,activeX:i&&!i.name,version:{original:j,array:e,string:e.join("."),major:parseInt(e[0],10)||0,minor:parseInt(e[1],10)||0,release:parseInt(e[2],10)||0},hasVersion:function(a){a=/string|number/.test(typeof a)?a.toString().split("."):/object/.test(typeof a)?[a.major,a.minor]:a||[0,0];return k(e,a)},encodeParams:true,expressInstall:"expressInstall.swf",expressInstallIsActive:false,create:function(a){if(!a.swf||this.expressInstallIsActive||!this.available&&!a.hasVersionFail)return false;if(!this.hasVersion(a.hasVersion||1)){this.expressInstallIsActive=true;if(typeof a.hasVersionFail=="function")if(!a.hasVersionFail.apply(a))return false;a={swf:a.expressInstall||this.expressInstall,height:137,width:214,flashvars:{MMredirectURL:location.href,MMplayerType:this.activeX?"ActiveX":"PlugIn",MMdoctitle:document.title.slice(0,47)+" - Flash Player Installation"}}}attrs={data:a.swf,type:"application/x-shockwave-flash",id:a.id||"flash_"+Math.floor(Math.random()*999999999),width:a.width||320,height:a.height||180,style:a.style||""};m=typeof a.useEncode!=="undefined"?a.useEncode:this.encodeParams;a.movie=a.swf;a.wmode=a.wmode||"opaque";delete a.fallback;delete a.hasVersion;delete a.hasVersionFail;delete a.height;delete a.id;delete a.swf;delete a.useEncode;delete a.width;var c=document.createElement("div");c.innerHTML=["<object ",n(attrs),">",o(a),"</object>"].join("");return c.firstChild}};f.fn[h]=function(a){var c=this.find(g).andSelf().filter(g);/string|object/.test(typeof a)&&this.each(function(){var b=f(this),d;a=typeof a==g?a:{swf:a};a.fallback=this;if(d=f[h].create(a)){b.children().remove();b.html(d)}});typeof a=="function"&&c.each(function(){var b=this;b.jsInteractionTimeoutMs=b.jsInteractionTimeoutMs||0;if(b.jsInteractionTimeoutMs<660)b.clientWidth||b.clientHeight?a.call(b):setTimeout(function(){f(b)[h](a)},b.jsInteractionTimeoutMs+66)});return c}})(jQuery,"flash",navigator.plugins["Shockwave Flash"]||window.ActiveXObject);;
/*
 * jYoutube 1.0 - YouTube video image getter plugin for jQuery
 *
 * Copyright (c) 2009 jQuery Howto
 *
 * Licensed under the GPL license:
 *   http://www.gnu.org/licenses/gpl.html
 *
 * Plugin home & Author URL:
 *   http://jquery-howto.blogspot.com
 *
 */
(function(d){d.extend({jYoutube:function(a,b){if(a===null)return"";b=b===null?"big":b;var c;c=a.match("[\\?&]v=([^&#]*)");a=c===null?a:c[1];return b=="small"?"http://img.youtube.com/vi/"+a+"/2.jpg":"http://img.youtube.com/vi/"+a+"/0.jpg"}})})(jQuery);;
Drupal.behaviors.youtube = function (context) {
  if (!$.flash.hasVersion(8))
    return; // youtube requires flash 8+. There is nothing more we can do here.
  
  // embed youtube:
  $('.youtube', context).each(function(index) {
    videoID = $(this).attr('id');	  
    videoPreviewSrc = $.jYoutube(videoID);
    $(this).html('<a href="" class="play-youtube" id="play-youtube-' + videoID + '"><img src="' + videoPreviewSrc + '" /><span class="youtube-play-button png"></span></a>');
  });
  
  $('.play-youtube', context).click(function (event) {
	  event.preventDefault();
	  
	  if ($(this).hasClass('playing')) {
		  return;
	  }
	  
	  videoID = $(this).attr('id').substring(13);
	  
	  $(this).flash({
	        swf: 'http://www.youtube.com/v/' + videoID + '&enablejsapi=1&rel=0&autoplay=1&fs=1&hd=1',
	        width: '100%',
	        height: '100%',
	        quality: 'high',
	        allowScriptAccess: 'always',
	        allowFullScreen: 'true'
	  });
	  $(this).addClass('playing');
	  
  });
  
};
;

var currentPromo = 0;

jQuery(function(){

	$("#envedette-previous").click( function(event) {
		// stop automated slideshow
		$("#envedette-items-slider").stopTime();	

		slide_promos(true, false);
		
		event.preventDefault();
	});

	$("#envedette-next").click( function(event) {
		// stop automated slideshow
		$("#envedette-items-slider").stopTime();	

		slide_promos(false, false);
		
		event.preventDefault();
	});

	// afficher la 1ere slide au load de la page
	$("#envedette-items-slider").scrollTo('0', 0, {axis: 'x'});

	$("#envedette-items-slider").everyTime('7s', function(i) {
		slide_promos(false, true);
	});
	
	// enable qTip
	$("a.envedette-item, a.a-venir-item").qtip({
		   style: { 
		      
		      padding: 5,
		      background: '#111',
		      color: 'white',
		      textAlign: 'center',
		      border: {
		         width: 0,
		         radius: 5,
		         color: '#111'
		      },
		      tip: 'bottomMiddle',
		      name: 'dark' // Inherit the rest of the attributes from the preset dark style
		   },
		   position: {
			  target: 'mouse',
		      corner: {
		         target: 'topMiddle',
		         tooltip: 'bottomMiddle'
		      }
		   }
		});
	

});


function slide_promos(back, auto) {
	var maxPromos = Math.floor(($('#envedette-items').width() / 312) - 1);

	var duration = 500;

	if (!back) {
		if (currentPromo == maxPromos) {
			// loop
			$("#envedette-items-slider").scrollTo('0', 0, {axis: 'x'});
			currentPromo = 0;
		}

		currentPromo++;
		$("#envedette-items-slider").scrollTo('+=312px', duration, {axis: 'x', easing: 'easeOutQuad'});
	
	} else {
		if (currentPromo == 0) {
			// loop
			$("#envedette-items-slider").scrollTo(maxPromos*312, 0, {axis: 'x'});
			currentPromo = maxPromos;
		}

		currentPromo--;
		$("#envedette-items-slider").scrollTo('-=312px', duration, {axis: 'x', easing: 'easeOutQuad'});
		

	}
	
	$(".position0").removeClass('on');
	$(".position1").removeClass('on');
	$(".position2").removeClass('on');
	
	if (currentPromo == maxPromos)
		$(".position0").addClass('on');
	else
	    $(".position" + currentPromo).addClass('on');

}

;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;
Cufon.registerFont({"w":200,"face":{"font-family":"metro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"8","bbox":"-60 -343 370 85","underline-thickness":"18","underline-position":"-36","stemh":"23","stemv":"27","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100},"\u00d0":{"d":"33,-253r75,0v87,0,143,49,143,126v0,77,-56,127,-143,127r-75,0r0,-120r-26,0r0,-27r26,0r0,-106xm63,-227r0,80r78,0r0,27r-78,0r0,93v90,8,158,-25,158,-100v0,-74,-67,-109,-158,-100","w":266},"\u00f0":{"d":"111,-217v34,38,76,87,76,140v0,46,-39,85,-87,85v-48,0,-87,-39,-87,-87v1,-55,47,-96,108,-84v-10,-15,-19,-22,-35,-43r-62,28r0,-23r47,-21v-11,-9,-20,-21,-30,-31v27,-2,46,1,55,20r63,-29r0,23xm41,-79v0,35,26,64,59,64v33,0,59,-29,59,-64v0,-35,-26,-63,-59,-63v-33,0,-59,28,-59,63"},"\u0141":{"d":"63,-27r129,0r0,27r-159,0r0,-80r-33,29r0,-34r33,-29r0,-139r30,0r0,112r74,-65r0,34r-74,65r0,80"},"\u0142":{"d":"26,0r0,-106r-33,29r0,-27r33,-30r0,-117r28,-7r0,100r33,-29r0,28r-33,29r0,130r-28,0","w":79},"\u0160":{"d":"152,-64v0,-70,-132,-51,-132,-133v0,-65,88,-82,142,-48r0,33v-26,-28,-112,-37,-112,14v0,49,84,55,108,79v47,47,20,128,-63,128v-26,0,-50,-7,-74,-21r-4,-33v42,35,135,42,135,-19xm84,-271r-36,-51r28,0r24,34r24,-34r29,0r-36,51r-33,0"},"\u0161":{"d":"45,-123v9,42,100,24,100,81v0,58,-89,62,-128,29r3,-26v18,14,36,23,62,24v23,0,37,-9,37,-24v-9,-43,-104,-24,-100,-81v4,-51,75,-55,116,-29r-4,24v-23,-13,-41,-19,-57,-19v-18,0,-29,8,-29,21xm63,-183r-35,-51r28,0r24,34r24,-34r28,0r-36,51r-33,0","w":159},"\u00dd":{"d":"132,0r-30,0r0,-110r-106,-143r36,0r86,117r92,-117r34,0r-112,143r0,110xm129,-322r39,0r-47,51r-24,0","w":240},"\u00fd":{"d":"20,76v29,-31,21,-23,49,-76r-69,-158r30,0r55,124r55,-124r26,0r-95,207v-6,12,-9,16,-17,27r-34,0xm91,-234r40,0r-47,51r-25,0","w":166},"\u00de":{"d":"199,-129v-2,66,-57,84,-136,78r0,51r-30,0r0,-253r30,0r0,47v75,-6,138,15,136,77xm63,-183r0,109v60,3,111,-10,106,-55v5,-45,-45,-57,-106,-54","w":206},"\u00fe":{"d":"25,76r0,-327r27,-7r0,110v57,-34,135,-4,135,66v0,71,-66,109,-135,81r0,69xm52,-126r0,100v49,29,107,4,107,-55v0,-58,-61,-74,-107,-45"},"\u017d":{"d":"26,-253r187,0r-162,226r161,0r-5,27r-209,0r161,-227r-137,0xm98,-271r-35,-51r28,0r24,34r24,-34r28,0r-36,51r-33,0","w":219},"\u017e":{"d":"14,-158r140,0r-104,136r103,0r-5,22r-148,0r103,-136r-93,0xm63,-183r-35,-51r28,0r24,34r24,-34r28,0r-36,51r-33,0","w":159},"\u00bd":{"d":"41,9r159,-271r21,0r-159,271r-21,0xm22,-253r44,0r0,151r-24,0r0,-133r-23,0xm185,-111r-18,-10v12,-60,112,-48,112,10v0,36,-48,67,-69,92r77,0r-2,19r-122,-1v27,-32,93,-67,93,-110v0,-18,-15,-30,-36,-30v-18,0,-27,7,-35,30","w":299},"\u00bc":{"d":"59,9r159,-271r21,0r-159,271r-21,0xm261,-33r0,33r-23,0r0,-33r-82,0r105,-130r0,110r20,0r0,20r-20,0xm22,-253r44,0r0,151r-24,0r0,-133r-23,0xm238,-105v-16,16,-28,35,-43,52r43,0r0,-52","w":299},"\u00b9":{"d":"22,-253r44,0r0,151r-24,0r0,-133r-23,0","w":100},"\u00be":{"d":"80,9r159,-271r21,0r-159,271r-21,0xm271,-33r0,33r-23,0r0,-33r-81,0r104,-130r0,110r21,0r0,20r-21,0xm32,-137v8,33,68,32,68,-5v0,-20,-17,-31,-44,-30r0,-19v51,5,49,-50,11,-52v-11,0,-20,6,-28,18r-21,-4v13,-49,102,-41,100,12v0,16,-7,27,-23,34v50,17,28,90,-29,90v-27,0,-41,-10,-55,-38xm206,-53r42,0r0,-52","w":299},"\u00b3":{"d":"32,-137v8,33,68,32,68,-5v0,-20,-17,-31,-44,-30r0,-19v51,5,49,-50,11,-52v-11,0,-20,6,-28,18r-21,-4v13,-49,102,-41,100,12v0,16,-7,27,-23,34v50,17,28,90,-29,90v-27,0,-41,-10,-55,-38","w":140},"\u00b2":{"d":"32,-212r-18,-10v12,-61,112,-47,112,10v0,36,-49,66,-70,91r78,0r-2,19r-122,0v27,-32,93,-67,93,-110v0,-18,-15,-31,-36,-31v-18,0,-27,8,-35,31","w":146},"\u00a6":{"d":"30,-5r0,-90r20,0r0,90r-20,0xm30,-185r0,-90r20,0r0,90r-20,0","w":79},"\u2212":{"d":"0,-69r0,-20r180,0r0,20r-180,0","w":180},"\u00d7":{"d":"26,-19r68,-69r-68,-69r13,-13r69,68r69,-68r13,13r-68,69r68,69r-13,14r-69,-69r-69,69","w":216},"!":{"d":"33,-251r34,-7r-13,192r-9,0xm31,-13v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19","w":100},"\"":{"d":"23,-262r34,0r-4,100r-26,0xm90,-262r33,0r-3,100r-26,0","w":146},"#":{"d":"179,-99r0,18r-41,0r-11,81r-20,0r11,-81r-49,0r-11,81r-20,0r11,-81r-38,0r0,-18r41,0r7,-55r-38,0r0,-18r41,0r11,-81r21,0r-12,81r49,0r11,-81r20,0r-11,81r38,0r0,18r-41,0r-7,55r38,0xm128,-154r-48,0r-8,55r49,0"},"$":{"d":"91,-120v-45,-17,-71,-24,-71,-70v0,-39,26,-63,71,-67r0,-34r19,0r0,34v35,6,45,12,66,33r-14,20v-18,-19,-25,-25,-52,-30r0,92v46,16,77,26,77,75v0,40,-26,64,-77,71r0,45r-19,0r0,-45v-43,-3,-57,-12,-81,-37r19,-19v17,19,32,31,62,33r0,-101xm91,-148r0,-86v-41,-1,-58,44,-34,69v7,8,13,10,34,17xm110,-114r0,95v47,-1,67,-51,37,-79v-8,-5,-14,-7,-37,-16"},"%":{"d":"16,-202v0,-33,27,-60,60,-60v33,0,60,27,60,60v0,33,-27,60,-60,60v-33,0,-60,-27,-60,-60xm60,9r159,-271r21,0r-159,271r-21,0xm163,-51v0,-33,28,-61,61,-61v33,0,60,28,60,61v0,33,-27,60,-60,60v-33,0,-61,-27,-61,-60xm39,-202v0,21,16,37,37,37v21,0,37,-16,37,-37v0,-21,-16,-37,-37,-37v-21,0,-37,16,-37,37xm186,-51v0,21,17,37,38,37v21,0,37,-16,37,-37v0,-21,-16,-38,-37,-38v-21,0,-38,17,-38,38","w":299},"&":{"d":"163,-209v0,33,-19,49,-44,65r71,79v12,-16,18,-26,25,-44r22,11v-9,25,-15,32,-30,54r41,44r-35,0r-24,-26v-45,51,-176,49,-171,-38v2,-42,25,-64,60,-86v-18,-21,-30,-33,-30,-61v0,-30,23,-51,56,-51v35,0,59,22,59,53xm96,-131v-28,18,-50,34,-51,67v-2,60,95,59,126,19xm101,-164v26,-16,36,-29,36,-46v0,-18,-13,-30,-32,-30v-47,0,-31,58,-4,76","w":259},"'":{"d":"23,-262r34,0r-4,100r-26,0","w":79},"(":{"d":"70,45v-65,-80,-65,-226,-2,-307r29,0v-67,79,-63,230,2,307r-29,0","w":119},")":{"d":"50,-262v65,80,65,227,1,307r-28,0v66,-78,65,-231,-2,-307r29,0","w":119},"*":{"d":"102,-262r-6,55r50,-23r7,23r-54,11r37,40r-20,15r-26,-48r-26,48r-20,-15r37,-40r-54,-11r7,-23r50,23r-6,-55r24,0","w":180},"+":{"d":"98,0r0,-78r-78,0r0,-20r78,0r0,-78r20,0r0,78r78,0r0,20r-78,0r0,78r-20,0","w":216},",":{"d":"37,58r-26,0r32,-90r33,0","w":100},"-":{"d":"15,-67r0,-23r90,0r0,23r-90,0","w":119},".":{"d":"31,-13v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19","w":100},"\/":{"d":"22,9r-22,0r85,-271r22,0","w":100},"0":{"d":"11,-127v0,-83,34,-135,89,-135v55,0,89,52,89,135v0,83,-34,136,-89,136v-55,0,-89,-53,-89,-136xm41,-127v0,70,21,109,59,109v38,0,59,-39,59,-109v0,-70,-21,-108,-59,-108v-38,0,-59,38,-59,108"},"1":{"d":"60,-253r60,0r0,253r-31,0r0,-232r-32,0"},"2":{"d":"91,-235v-33,0,-50,17,-59,49r-23,-14v11,-40,39,-62,82,-62v50,0,87,32,87,78v-1,63,-80,114,-115,157r127,0r-2,27r-186,-1r106,-111v29,-31,40,-50,40,-73v0,-31,-23,-50,-57,-50"},"3":{"d":"33,-58v12,55,112,53,112,-11v0,-36,-24,-53,-68,-51r0,-27v40,2,59,-11,61,-44v2,-51,-76,-60,-94,-16r-27,-6v13,-32,38,-49,73,-49v76,0,108,98,42,127v30,12,44,32,44,64v0,74,-102,106,-148,56v-8,-9,-13,-16,-22,-34"},"4":{"d":"157,-55r0,55r-31,0r0,-55r-126,0r157,-211r0,184r31,0r0,27r-31,0xm50,-82r76,0r0,-104"},"5":{"d":"29,-47v33,47,127,36,127,-35v0,-63,-74,-82,-125,-48r3,-123r134,0r-2,23r-107,0r-1,62v66,-20,128,20,128,84v0,94,-126,122,-178,56"},"6":{"d":"114,-247v6,-11,30,-4,45,-6v-28,33,-63,65,-87,101v61,-17,115,21,115,78v0,49,-36,83,-88,83v-53,0,-88,-35,-88,-85v0,-44,32,-98,103,-171xm157,-73v0,-31,-26,-57,-58,-57v-32,0,-58,26,-58,58v0,30,26,54,58,54v32,0,58,-25,58,-55"},"7":{"d":"18,-253r179,0r-131,253r-34,0r121,-227r-135,0r0,-26"},"8":{"d":"100,-262v81,-8,99,104,35,128v32,10,50,34,50,69v0,46,-32,74,-85,74v-96,0,-114,-122,-35,-143v-63,-24,-46,-136,35,-128xm100,-18v34,0,54,-18,54,-49v0,-31,-23,-54,-54,-54v-31,0,-54,23,-54,54v0,31,20,49,54,49xm100,-148v27,0,47,-20,47,-47v0,-25,-18,-40,-47,-40v-29,0,-47,15,-47,40v0,27,20,47,47,47"},"9":{"d":"84,-6v-6,11,-30,4,-45,6v28,-33,65,-64,87,-102v-59,20,-115,-21,-115,-78v0,-49,36,-82,88,-82v53,0,88,34,88,84v0,44,-32,99,-103,172xm41,-180v0,31,26,56,58,56v32,0,58,-25,58,-57v0,-30,-26,-54,-58,-54v-32,0,-58,25,-58,55"},":":{"d":"31,-13v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19xm31,-135v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19","w":100},";":{"d":"31,-135v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19xm37,58r-26,0r32,-90r33,0","w":100},"<":{"d":"210,0r-204,-82r0,-12r204,-82r0,19r-172,69r172,69r0,19","w":216},"=":{"d":"20,-112r0,-19r176,0r0,19r-176,0xm20,-45r0,-19r176,0r0,19r-176,0","w":216},">":{"d":"6,0r0,-19r172,-69r-172,-69r0,-19r204,82r0,12","w":216},"?":{"d":"153,-186v-3,52,-35,75,-89,87r0,28r-26,7r0,-56v51,-4,84,-24,88,-64v3,-40,-51,-58,-96,-45r2,-24v59,-18,125,11,121,67xm32,-13v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19","w":159},"@":{"d":"157,-7v40,0,76,-15,103,-36r9,12v-92,81,-255,31,-255,-92v0,-79,64,-139,148,-139v72,0,124,44,124,108v0,51,-36,96,-75,96v-22,0,-35,-16,-28,-36v-20,53,-102,46,-102,-19v0,-47,34,-89,73,-89v24,0,39,13,41,36r9,-30r26,0v-9,33,-29,69,-29,104v0,10,6,15,16,15v27,0,52,-38,52,-78v0,-54,-44,-92,-107,-92v-74,0,-130,54,-130,125v0,67,52,115,125,115xm160,-183v-28,-2,-51,42,-50,71v0,22,11,34,28,34v30,1,49,-51,49,-76v0,-18,-11,-29,-27,-29","w":299},"A":{"d":"62,-66r-31,66r-31,0r127,-262r6,0r127,262r-33,0r-32,-66r-133,0xm73,-89r112,0r-56,-117","w":259},"B":{"d":"31,0r0,-253v71,-1,164,-10,164,59v0,32,-18,50,-45,59v34,8,51,28,51,60v0,47,-35,75,-95,75r-75,0xm165,-190v1,-47,-48,-39,-104,-40r0,85v52,1,103,-1,104,-45xm171,-74v-3,-50,-50,-48,-110,-48r0,99v57,3,113,-5,110,-51","w":219},"C":{"d":"15,-126v0,-112,124,-172,211,-113r-2,30v-64,-54,-178,-18,-178,82v0,102,124,142,184,77r-2,38v-92,54,-213,-2,-213,-114","w":253},"D":{"d":"33,-253r75,0v87,0,143,49,143,126v0,77,-56,127,-143,127r-75,0r0,-253xm63,-227r0,200v90,8,158,-25,158,-100v0,-74,-67,-109,-158,-100","w":266},"E":{"d":"32,0r0,-253r148,0r0,26r-118,0r0,82r103,0r0,26r-103,0r0,92r120,0r0,27r-150,0"},"F":{"d":"33,0r0,-253r148,0r0,26r-118,0r0,88r107,0r0,27r-107,0r0,112r-30,0","w":193},"G":{"d":"15,-123v0,-115,127,-173,221,-117r-2,32v-70,-57,-188,-17,-188,85v0,89,97,132,171,87r0,-64r-79,0r0,-27r109,0r0,110v-29,15,-66,26,-101,26v-80,0,-131,-51,-131,-132","w":273},"H":{"d":"33,0r0,-253r30,0r0,106r154,0r0,-106r30,0r0,253r-30,0r0,-120r-154,0r0,120r-30,0","w":280},"I":{"d":"35,0r0,-253r30,0r0,253r-30,0","w":100},"J":{"d":"1,1r-2,-32v35,21,71,6,71,-49r0,-173r30,0v-6,108,37,287,-99,254","w":133},"K":{"d":"33,0r0,-253r30,0r0,123r122,-123r39,0r-121,122r138,131r-43,0r-135,-129r0,129r-30,0","w":233},"L":{"d":"33,0r0,-253r30,0r0,226r129,0r0,27r-159,0"},"M":{"d":"63,-262r4,0r94,208r92,-208r4,0r54,262r-31,0r-34,-181r-83,190r-6,0r-84,-190r-35,181r-29,0","w":320},"N":{"d":"31,0r0,-262r6,0r185,205r0,-196r27,0r0,262r-6,0r-185,-205r0,196r-27,0","w":280},"O":{"d":"15,-127v0,-77,54,-135,125,-135v71,0,125,58,125,135v0,77,-54,136,-125,136v-71,0,-125,-59,-125,-136xm46,-127v0,64,39,109,94,109v55,0,94,-45,94,-109v0,-64,-39,-108,-94,-108v-55,0,-94,44,-94,108","w":280},"P":{"d":"199,-177v0,65,-57,84,-136,78r0,99r-30,0r0,-253r72,0v58,0,94,29,94,76xm63,-230r0,108v60,3,111,-8,106,-54v5,-45,-45,-57,-106,-54","w":206},"Q":{"d":"124,8v62,26,61,35,121,36r-7,27v-62,8,-132,-58,-180,-63r9,-24v-34,-26,-52,-65,-52,-111v0,-77,54,-135,125,-135v71,0,125,58,125,135v0,83,-62,144,-141,135xm46,-127v0,64,39,109,94,109v55,0,94,-45,94,-109v0,-64,-39,-108,-94,-108v-55,0,-94,44,-94,108","w":280},"R":{"d":"33,0r0,-253r80,0v57,0,89,26,89,71v0,38,-22,60,-66,72r97,110r-38,0r-90,-104r-42,0r0,104r-30,0xm172,-183v1,-52,-51,-47,-109,-47r0,103v58,3,108,-8,109,-56","w":226},"S":{"d":"152,-64v0,-70,-132,-51,-132,-133v0,-65,88,-82,142,-48r0,33v-26,-28,-112,-37,-112,14v0,49,84,55,108,79v47,47,20,128,-63,128v-26,0,-50,-7,-74,-21r-4,-33v42,35,135,42,135,-19"},"T":{"d":"5,-253r223,0r0,26r-96,0r0,227r-30,0r0,-227r-97,0r0,-26","w":233},"U":{"d":"30,-253r30,0r0,147v0,57,28,88,79,88v53,0,79,-34,79,-101r0,-134r26,0r0,144v0,77,-38,118,-108,118v-68,0,-106,-42,-106,-118r0,-144","w":273},"V":{"d":"117,9r-117,-262r32,0r89,202r96,-202r30,0r-125,262r-5,0","w":246},"W":{"d":"300,-253r30,0r-92,262r-5,0r-65,-193r-67,193r-5,0r-92,-262r32,0r64,185r68,-194r6,0r63,193","w":333},"X":{"d":"216,-253r36,0r-104,120r111,133r-37,0r-94,-111r-93,111r-36,0r113,-131r-103,-122r39,0r83,100","w":259},"Y":{"d":"132,0r-30,0r0,-110r-106,-143r36,0r86,117r92,-117r34,0r-112,143r0,110","w":240},"Z":{"d":"26,-253r187,0r-162,226r161,0r-5,27r-209,0r161,-227r-137,0","w":219},"[":{"d":"27,40r0,-298r76,0r0,15r-50,0r0,268r50,0r0,15r-76,0","w":119},"\\":{"d":"78,9r-85,-271r22,0r85,271r-22,0","w":100},"]":{"d":"93,-258r0,298r-76,0r0,-15r50,0r0,-268r-50,0r0,-15r76,0","w":119},"^":{"d":"19,-112r53,-150r16,0r53,150r-20,0r-41,-118r-41,118r-20,0","w":159},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"`":{"d":"32,-234r32,51r-24,0r-47,-51r39,0","w":79},"a":{"d":"175,-155v1,52,-3,105,3,153r-25,10r-4,-19v-55,43,-136,9,-136,-64v0,-72,68,-104,137,-78xm41,-75v0,63,70,77,107,42r0,-95v-46,-28,-107,-6,-107,53"},"b":{"d":"25,8r0,-259r27,-7r0,115v53,-42,135,-11,135,61v0,73,-74,110,-139,79xm52,-118r0,92v43,29,111,4,107,-55v-4,-59,-65,-79,-107,-37"},"c":{"d":"41,-77v0,68,83,77,121,38r-3,31v-60,35,-146,10,-146,-69v0,-75,84,-111,147,-72r-3,24v-49,-34,-116,-16,-116,48","w":180},"d":{"d":"148,-251r27,-7r0,256r-25,10r0,-22v-54,45,-137,17,-137,-58v0,-70,70,-109,135,-81r0,-98xm41,-73v0,66,72,72,107,37r0,-92v-44,-29,-107,-5,-107,55"},"e":{"d":"164,-39r-4,31v-60,35,-147,9,-147,-69v0,-50,38,-88,87,-88v42,0,74,31,74,72v0,16,-16,18,-37,18r-96,2v0,71,85,69,123,34xm146,-97v-3,-31,-19,-48,-48,-48v-28,0,-52,21,-57,51","w":186},"f":{"d":"116,-246v-44,6,-52,36,-50,88r45,0r0,22r-45,0r0,136r-28,0r0,-136r-33,0r0,-22r33,0v-1,-51,7,-79,30,-93r48,-7r0,12","w":119},"g":{"d":"24,27v35,38,135,39,124,-36v-57,38,-137,9,-135,-63v2,-71,66,-109,136,-81r26,-2r0,140v11,86,-85,112,-147,74xm41,-74v-2,61,71,76,107,42r0,-97v-51,-29,-105,-4,-107,55"},"h":{"d":"52,-136v37,-38,126,-40,126,38r0,98r-27,0v-4,-52,18,-139,-38,-139v-35,0,-61,26,-61,60r0,79r-27,0r0,-251r27,-7r0,122"},"i":{"d":"26,0r0,-156r28,-6r0,162r-28,0xm21,-217v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19","w":79},"j":{"d":"0,76v47,-43,20,-150,27,-232r27,-6r-1,189v-1,17,-5,28,-14,42xm22,-217v0,-10,9,-19,19,-19v11,0,19,9,19,19v0,10,-8,19,-19,19v-10,0,-19,-9,-19,-19","w":79},"k":{"d":"124,-158r32,0r-69,70r97,88r-38,0r-91,-87xm25,0r0,-251r27,-7r0,258r-27,0","w":173},"l":{"d":"26,0r0,-251r28,-7r0,258r-28,0","w":79},"m":{"d":"161,-127v15,-21,32,-34,61,-35v71,-3,55,93,56,162r-27,0v-4,-50,17,-140,-34,-139v-30,0,-52,24,-52,55r0,84r-27,0v-4,-49,16,-140,-32,-139v-31,0,-54,23,-54,55r0,84r-27,0r0,-158r26,0v1,8,-2,21,1,27v21,-39,92,-44,109,4","w":299},"n":{"d":"53,-125v25,-54,125,-51,125,27r0,98r-27,0v-6,-50,21,-139,-35,-139v-37,0,-64,27,-64,65r0,74r-27,0r0,-158r26,0v2,10,-3,27,2,33"},"o":{"d":"13,-79v0,-48,39,-86,87,-86v48,0,87,38,87,86v0,48,-39,87,-87,87v-48,0,-87,-39,-87,-87xm41,-79v0,35,26,64,59,64v33,0,59,-29,59,-64v0,-35,-26,-63,-59,-63v-33,0,-59,28,-59,63"},"p":{"d":"25,-158r27,0r0,10v57,-34,135,-4,135,66v0,71,-66,109,-135,81r0,69r-27,8r0,-234xm52,-126r0,100v49,29,107,4,107,-55v0,-58,-61,-74,-107,-45"},"q":{"d":"148,-2v-68,27,-135,-1,-135,-72v0,-70,60,-101,135,-84r27,0r0,226r-27,8r0,-78xm148,-26r0,-108v-54,-20,-107,0,-107,57v0,58,62,78,107,51"},"r":{"d":"25,0r0,-158r27,0v1,8,-2,20,1,26v16,-23,25,-29,63,-30r0,27v-42,-1,-64,16,-64,56r0,79r-27,0","w":113},"s":{"d":"45,-123v9,42,100,24,100,81v0,58,-89,62,-128,29r3,-26v18,14,36,23,62,24v23,0,37,-9,37,-24v-9,-43,-104,-24,-100,-81v4,-51,75,-55,116,-29r-4,24v-23,-13,-41,-19,-57,-19v-18,0,-29,8,-29,21","w":159},"t":{"d":"6,-136r0,-22r32,0r0,-48r28,-7r0,55r46,0r0,22r-46,0v3,47,-12,124,25,132r0,4r-31,3v-37,-19,-17,-89,-22,-139r-32,0","w":119},"u":{"d":"148,-29v-31,52,-136,56,-126,-37r0,-92r27,0v5,52,-18,143,36,143v36,0,63,-28,63,-65r0,-78r27,0r0,161r-27,5r0,-37"},"v":{"d":"83,9r-6,0r-77,-167r32,0r52,115r56,-115r26,0","w":166},"w":{"d":"1,-158r30,0r46,109r49,-117r4,0r45,117r46,-109r25,0r-72,167r-5,0r-44,-116r-48,116r-4,0","w":246},"x":{"d":"28,0r-29,0r67,-81r-62,-77r35,0r45,56r47,-56r30,0r-62,74r69,84r-36,0r-51,-63","w":166},"y":{"d":"20,76v29,-31,21,-23,49,-76r-69,-158r30,0r55,124r55,-124r26,0r-95,207v-6,12,-9,16,-17,27r-34,0","w":166},"z":{"d":"14,-158r140,0r-104,136r103,0r-5,22r-148,0r103,-136r-93,0","w":159},"{":{"d":"46,-31v1,-37,0,-70,-33,-70r0,-15v55,3,18,-105,46,-127v10,-12,25,-18,47,-19r0,15v-33,1,-35,36,-34,76v1,46,-6,54,-44,62v45,3,45,38,44,91v0,30,11,45,34,48r0,15v-45,-6,-61,-19,-60,-76","w":133},"|":{"d":"30,85r0,-360r20,0r0,360r-20,0","w":79},"}":{"d":"87,-186v-2,37,1,69,33,70r0,15v-56,-5,-17,104,-45,126v-10,12,-26,19,-48,20r0,-15v32,-1,34,-36,34,-76v0,-45,6,-54,44,-63v-46,-1,-45,-40,-44,-91v0,-30,-11,-44,-34,-47r0,-15v46,5,62,18,60,76","w":133},"~":{"d":"63,-111v21,0,69,27,89,27v12,0,19,-9,27,-32r17,0v-15,87,-76,37,-133,25v-12,0,-20,10,-26,31r-17,0v6,-33,22,-51,43,-51","w":216},"\u00c4":{"d":"62,-66r-31,66r-31,0r127,-262r6,0r127,262r-33,0r-32,-66r-133,0xm73,-89r112,0r-56,-117xm81,-294v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19xm141,-295v0,-10,9,-19,19,-19v26,0,23,39,0,38v-10,0,-19,-9,-19,-19","w":259},"\u00c5":{"d":"62,-66r-31,66r-31,0r127,-262r6,0r127,262r-33,0r-32,-66r-133,0xm73,-89r112,0r-56,-117xm93,-306v0,-21,16,-37,37,-37v21,0,37,16,37,37v0,21,-16,37,-37,37v-21,0,-37,-16,-37,-37xm109,-306v0,12,9,21,21,21v12,0,21,-9,21,-21v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21","w":259},"\u00c7":{"d":"15,-126v0,-112,125,-172,211,-113r-2,30v-64,-54,-178,-18,-178,82v0,102,124,142,184,77r-2,38v-25,14,-54,22,-88,21r-10,14v22,-7,42,5,42,26v0,32,-47,40,-77,24v3,-4,3,-17,10,-12v19,8,38,4,40,-12v1,-14,-21,-17,-32,-10v-13,-11,7,-21,12,-32v-67,-10,-110,-62,-110,-133","w":253},"\u00c9":{"d":"32,0r0,-253r148,0r0,26r-118,0r0,82r103,0r0,26r-103,0r0,92r120,0r0,27r-150,0xm108,-322r40,0r-48,51r-24,0"},"\u00d1":{"d":"31,0r0,-262r6,0r185,205r0,-196r27,0r0,262r-6,0r-185,-205r0,196r-27,0xm184,-316r17,0v-5,55,-55,37,-89,25v-8,0,-13,6,-15,17r-18,0v5,-56,52,-36,89,-26v8,0,14,-5,16,-16","w":280},"\u00d6":{"d":"15,-127v0,-77,54,-135,125,-135v71,0,125,58,125,135v0,77,-54,136,-125,136v-71,0,-125,-59,-125,-136xm46,-127v0,64,39,109,94,109v55,0,94,-45,94,-109v0,-64,-39,-108,-94,-108v-55,0,-94,44,-94,108xm91,-294v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19xm151,-295v0,-10,9,-19,19,-19v26,0,23,39,0,38v-10,0,-19,-9,-19,-19","w":280},"\u00dc":{"d":"30,-253r30,0r0,147v0,57,28,88,79,88v53,0,79,-34,79,-101r0,-134r26,0r0,144v0,77,-38,118,-108,118v-68,0,-106,-42,-106,-118r0,-144xm87,-294v0,-27,39,-23,39,0v0,10,-9,19,-19,19v-10,0,-20,-9,-20,-19xm148,-295v0,-10,9,-19,19,-19v26,0,23,39,0,38v-10,0,-19,-9,-19,-19","w":273},"\u00e1":{"d":"175,-155v1,52,-3,105,3,153r-25,10r-4,-19v-55,43,-136,9,-136,-64v0,-72,68,-104,137,-78xm41,-75v0,63,70,77,107,42r0,-95v-46,-28,-107,-6,-107,53xm108,-234r40,0r-48,51r-24,0"},"\u00e0":{"d":"175,-155v1,52,-3,105,3,153r-25,10r-4,-19v-55,43,-136,9,-136,-64v0,-72,68,-104,137,-78xm41,-75v0,63,70,77,107,42r0,-95v-46,-28,-107,-6,-107,53xm92,-234r32,51r-24,0r-47,-51r39,0"},"\u00e2":{"d":"175,-155v1,52,-3,105,3,153r-25,10r-4,-19v-55,43,-136,9,-136,-64v0,-72,68,-104,137,-78xm41,-75v0,63,70,77,107,42r0,-95v-46,-28,-107,-6,-107,53xm84,-234r33,0r36,51r-29,0r-24,-33r-23,33r-29,0"},"\u00e4":{"d":"175,-155v1,52,-3,105,3,153r-25,10r-4,-19v-55,43,-136,9,-136,-64v0,-72,68,-104,137,-78xm41,-75v0,63,70,77,107,42r0,-95v-46,-28,-107,-6,-107,53xm71,-186v-29,0,-23,-39,0,-39v10,0,19,9,19,19v0,10,-9,20,-19,20xm112,-207v0,-10,9,-19,19,-19v26,0,23,39,0,38v-10,0,-19,-9,-19,-19"},"\u00e3":{"d":"175,-155v1,52,-3,105,3,153r-25,10r-4,-19v-55,43,-136,9,-136,-64v0,-72,68,-104,137,-78xm41,-75v0,63,70,77,107,42r0,-95v-46,-28,-107,-6,-107,53xm144,-228r18,0v-5,55,-55,37,-89,25v-8,0,-13,6,-15,17r-18,0v4,-56,54,-36,89,-25v8,0,13,-6,15,-17"},"\u00e5":{"d":"175,-155v1,52,-3,105,3,153r-25,10r-4,-19v-55,43,-136,9,-136,-64v0,-72,68,-104,137,-78xm41,-75v0,63,70,77,107,42r0,-95v-46,-28,-107,-6,-107,53xm64,-218v0,-21,16,-37,37,-37v21,0,37,16,37,37v0,21,-16,37,-37,37v-21,0,-37,-16,-37,-37xm80,-218v0,12,9,21,21,21v12,0,21,-9,21,-21v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21"},"\u00e7":{"d":"41,-77v0,68,83,77,121,38r-3,31v-21,11,-34,15,-59,16r-11,15v21,-7,41,6,41,26v0,32,-47,40,-77,24v3,-5,3,-16,11,-12v18,9,37,3,39,-12v1,-15,-20,-17,-31,-10v-14,-10,6,-22,11,-33v-45,-7,-70,-36,-70,-83v0,-75,84,-111,147,-72r-3,24v-49,-34,-116,-16,-116,48","w":180},"\u00e9":{"d":"164,-39r-4,31v-60,35,-147,9,-147,-69v0,-50,38,-88,87,-88v42,0,74,31,74,72v0,16,-16,18,-37,18r-96,2v0,71,85,69,123,34xm146,-97v-3,-31,-19,-48,-48,-48v-28,0,-52,21,-57,51xm102,-234r39,0r-47,51r-25,0","w":186},"\u00e8":{"d":"164,-39r-4,31v-60,35,-147,9,-147,-69v0,-50,38,-88,87,-88v42,0,74,31,74,72v0,16,-16,18,-37,18r-96,2v0,71,85,69,123,34xm146,-97v-3,-31,-19,-48,-48,-48v-28,0,-52,21,-57,51xm85,-234r32,51r-24,0r-47,-51r39,0","w":186},"\u00ea":{"d":"164,-39r-4,31v-60,35,-147,9,-147,-69v0,-50,38,-88,87,-88v42,0,74,31,74,72v0,16,-16,18,-37,18r-96,2v0,71,85,69,123,34xm146,-97v-3,-31,-19,-48,-48,-48v-28,0,-52,21,-57,51xm77,-234r33,0r36,51r-29,0r-24,-33r-24,33r-28,0","w":186},"\u00eb":{"d":"164,-39r-4,31v-60,35,-147,9,-147,-69v0,-50,38,-88,87,-88v42,0,74,31,74,72v0,16,-16,18,-37,18r-96,2v0,71,85,69,123,34xm146,-97v-3,-31,-19,-48,-48,-48v-28,0,-52,21,-57,51xm63,-186v-27,0,-23,-39,0,-39v10,0,19,9,19,19v0,10,-9,20,-19,20xm104,-207v0,-10,9,-19,19,-19v28,0,24,39,0,38v-10,0,-19,-9,-19,-19","w":186},"\u00ed":{"d":"26,0r0,-156r28,-6r0,162r-28,0xm48,-234r39,0r-47,51r-24,0","w":79},"\u00ec":{"d":"26,0r0,-156r28,-6r0,162r-28,0xm32,-234r32,51r-24,0r-47,-51r39,0","w":79},"\u00ee":{"d":"26,0r0,-156r28,-6r0,162r-28,0xm23,-234r34,0r36,51r-29,0r-24,-33r-24,33r-28,0","w":79},"\u00ef":{"d":"26,0r0,-156r28,-6r0,162r-28,0xm10,-186v-27,0,-23,-39,0,-39v10,0,19,9,19,19v0,10,-9,20,-19,20xm51,-207v0,-10,9,-19,19,-19v26,0,23,39,0,38v-10,0,-19,-9,-19,-19","w":79},"\u00f1":{"d":"53,-125v25,-54,125,-51,125,27r0,98r-27,0v-6,-50,21,-139,-35,-139v-37,0,-64,27,-64,65r0,74r-27,0r0,-158r26,0v2,10,-3,27,2,33xm144,-228r18,0v-5,55,-55,37,-89,25v-8,0,-13,6,-15,17r-18,0v4,-56,54,-36,89,-25v8,0,13,-6,15,-17"},"\u00f3":{"d":"13,-79v0,-48,39,-86,87,-86v48,0,87,38,87,86v0,48,-39,87,-87,87v-48,0,-87,-39,-87,-87xm41,-79v0,35,26,64,59,64v33,0,59,-29,59,-64v0,-35,-26,-63,-59,-63v-33,0,-59,28,-59,63xm108,-234r40,0r-48,51r-24,0"},"\u00f2":{"d":"13,-79v0,-48,39,-86,87,-86v48,0,87,38,87,86v0,48,-39,87,-87,87v-48,0,-87,-39,-87,-87xm41,-79v0,35,26,64,59,64v33,0,59,-29,59,-64v0,-35,-26,-63,-59,-63v-33,0,-59,28,-59,63xm92,-234r32,51r-24,0r-47,-51r39,0"},"\u00f4":{"d":"13,-79v0,-48,39,-86,87,-86v48,0,87,38,87,86v0,48,-39,87,-87,87v-48,0,-87,-39,-87,-87xm41,-79v0,35,26,64,59,64v33,0,59,-29,59,-64v0,-35,-26,-63,-59,-63v-33,0,-59,28,-59,63xm84,-234r33,0r36,51r-29,0r-24,-33r-24,33r-28,0"},"\u00f6":{"d":"13,-79v0,-48,39,-86,87,-86v48,0,87,38,87,86v0,48,-39,87,-87,87v-48,0,-87,-39,-87,-87xm41,-79v0,35,26,64,59,64v33,0,59,-29,59,-64v0,-35,-26,-63,-59,-63v-33,0,-59,28,-59,63xm70,-186v-27,0,-23,-39,0,-39v10,0,19,9,19,19v0,10,-9,20,-19,20xm111,-207v0,-10,9,-19,19,-19v26,0,23,39,0,38v-10,0,-19,-9,-19,-19"},"\u00f5":{"d":"13,-79v0,-48,39,-86,87,-86v48,0,87,38,87,86v0,48,-39,87,-87,87v-48,0,-87,-39,-87,-87xm41,-79v0,35,26,64,59,64v33,0,59,-29,59,-64v0,-35,-26,-63,-59,-63v-33,0,-59,28,-59,63xm144,-228r17,0v-5,55,-55,37,-89,25v-8,0,-13,6,-15,17r-18,0v5,-55,55,-37,89,-25v8,0,14,-6,16,-17"},"\u00fa":{"d":"148,-29v-31,52,-136,56,-126,-37r0,-92r27,0v5,52,-18,143,36,143v36,0,63,-28,63,-65r0,-78r27,0r0,161r-27,5r0,-37xm100,-234r40,0r-47,51r-25,0"},"\u00f9":{"d":"148,-29v-31,52,-136,56,-126,-37r0,-92r27,0v5,52,-18,143,36,143v36,0,63,-28,63,-65r0,-78r27,0r0,161r-27,5r0,-37xm92,-234r32,51r-24,0r-47,-51r39,0"},"\u00fb":{"d":"148,-29v-31,52,-136,56,-126,-37r0,-92r27,0v5,52,-18,143,36,143v36,0,63,-28,63,-65r0,-78r27,0r0,161r-27,5r0,-37xm79,-234r33,0r36,51r-28,0r-24,-33r-24,33r-28,0"},"\u00fc":{"d":"148,-29v-31,52,-136,56,-126,-37r0,-92r27,0v5,52,-18,143,36,143v36,0,63,-28,63,-65r0,-78r27,0r0,161r-27,5r0,-37xm46,-206v0,-27,39,-23,39,0v0,10,-9,19,-19,19v-10,0,-20,-9,-20,-19xm107,-207v0,-10,9,-19,19,-19v26,0,23,39,0,38v-10,0,-19,-9,-19,-19"},"\u2020":{"d":"96,-178v12,74,0,127,0,207r-12,0v-3,-71,-12,-141,0,-207r-57,8r0,-28r57,9r-8,-73r28,0r-8,73r57,-9r0,28","w":180},"\u00b0":{"d":"14,-209v0,-29,24,-53,53,-53v29,0,53,24,53,53v0,29,-24,53,-53,53v-29,0,-53,-24,-53,-53xm33,-209v0,19,15,34,34,34v19,0,33,-15,33,-34v0,-19,-14,-34,-33,-34v-19,0,-34,15,-34,34","w":133},"\u00a2":{"d":"130,-167r14,-44r19,0r-16,49v9,3,12,4,21,9r-3,24v-11,-7,-16,-8,-25,-12r-41,122v33,0,47,-7,71,-23r-4,30v-24,12,-43,18,-75,15r-16,48r-18,0r17,-52v-34,-11,-53,-40,-53,-80v0,-59,46,-97,109,-86xm122,-145v-72,-18,-101,96,-40,121"},"\u00a3":{"d":"195,-38v-17,61,-93,54,-137,18v-15,15,-21,22,-41,29r0,-31v37,-15,50,-53,37,-98r-37,0r0,-18r32,0v-21,-66,-3,-119,63,-120v39,0,64,19,72,52r-26,5v-11,-44,-89,-39,-89,12v0,14,3,27,10,51r64,0r0,18r-59,0v7,35,3,51,-11,82v32,21,84,34,96,-10"},"\u00a7":{"d":"64,-178v-32,-28,-25,-84,24,-84v25,0,38,10,53,29r-18,13v-11,-16,-20,-22,-34,-22v-13,0,-22,9,-22,21v0,32,90,79,90,126v0,23,-13,35,-39,38v34,32,24,89,-28,89v-23,0,-37,-9,-55,-31r19,-13v11,28,61,35,61,0v0,-36,-92,-78,-92,-130v0,-21,15,-35,41,-36xm134,-93v0,-23,-39,-69,-68,-69v-12,0,-20,8,-20,19v0,19,54,77,68,70v12,0,20,-8,20,-20","w":180},"\u2022":{"d":"17,-127v0,-35,28,-63,63,-63v35,0,63,28,63,63v0,35,-28,64,-63,64v-35,0,-63,-29,-63,-64","w":159},"\u00b6":{"d":"74,-110v-46,0,-71,-28,-71,-72v0,-44,28,-71,71,-71r93,0r0,20r-18,0r0,265r-24,0r0,-265r-27,0r0,265r-24,0r0,-142","w":180},"\u00df":{"d":"133,-143v33,13,54,31,54,75v0,72,-86,100,-116,44r23,-16v5,18,13,25,28,25v24,0,37,-18,37,-53v0,-42,-19,-60,-64,-61r0,-21v33,-1,46,-14,46,-42v0,-27,-16,-43,-43,-43v-30,0,-46,21,-46,57r0,178r-27,0r0,-166v-3,-60,26,-88,74,-92v67,-6,95,95,34,115"},"\u00ae":{"d":"285,-127v0,75,-60,136,-135,136v-75,0,-135,-61,-135,-136v0,-75,60,-135,135,-135v75,0,135,60,135,135xm267,-127v0,-66,-52,-118,-117,-118v-65,0,-118,52,-118,118v0,66,53,119,118,119v65,0,117,-53,117,-119xm187,-52v-3,-34,-2,-65,-47,-60r-19,0r0,60r-25,0r0,-150v53,0,117,-8,115,42v0,22,-13,35,-36,38v34,0,33,40,37,70r-25,0xm186,-158v-2,-29,-33,-27,-65,-26r0,54v32,2,67,-1,65,-28","w":299},"\u00a9":{"d":"285,-127v0,75,-60,136,-135,136v-75,0,-135,-61,-135,-136v0,-75,60,-135,135,-135v75,0,135,60,135,135xm267,-127v0,-66,-52,-118,-117,-118v-65,0,-118,52,-118,118v0,66,53,119,118,119v65,0,117,-53,117,-119xm194,-100r23,0v-17,86,-138,56,-138,-27v0,-46,30,-80,72,-80v35,0,62,23,65,55r-22,0v-15,-56,-88,-38,-88,23v0,62,74,83,88,29","w":299},"\u2122":{"d":"54,-102r0,-131r-47,0r0,-20r116,0r0,20r-46,0r0,131r-23,0xm141,-102r0,-151r35,0r38,117r39,-117r34,0r0,151r-22,0r0,-130r-42,130r-18,0r-42,-130r0,130r-22,0","w":320},"\u00b4":{"d":"48,-234r39,0r-47,51r-24,0","w":79},"\u00a8":{"d":"10,-186v-27,0,-23,-39,0,-39v10,0,19,9,19,19v0,10,-9,20,-19,20xm51,-207v0,-10,9,-19,19,-19v26,0,23,39,0,38v-10,0,-19,-9,-19,-19","w":79},"\u2260":{"d":"20,-45r0,-19r68,0r20,-48r-88,0r0,-19r96,0r18,-45r20,0r-18,45r60,0r0,19r-68,0r-20,48r88,0r0,19r-96,0r-18,45r-20,0r18,-45r-60,0","w":216},"\u00c6":{"d":"-4,0r137,-253r167,0r0,26r-118,0r0,82r103,0r0,26r-103,0r0,92r120,0r0,27r-150,0r0,-80r-84,0r-42,80r-30,0xm147,-227r-67,124r72,0r0,-124r-5,0","w":320},"\u00d8":{"d":"218,-234r25,-28r33,0r-41,46v68,80,12,225,-95,225v-29,0,-56,-9,-78,-28r-25,28r-34,0r41,-47v-65,-80,-11,-224,96,-224v29,0,55,9,78,28xm200,-213v-63,-52,-154,-5,-154,86v0,26,6,50,18,68xm80,-40v63,52,154,5,154,-86v0,-26,-6,-50,-18,-68","w":280},"\u221e":{"d":"156,-32v-24,0,-37,-15,-48,-36v-17,52,-96,43,-96,-20v0,-31,21,-55,48,-55v24,0,38,15,48,36v16,-52,96,-44,96,19v0,31,-21,56,-48,56xm97,-88v-12,-39,-61,-49,-64,0v2,49,52,41,64,0xm119,-88v9,21,24,35,37,35v16,0,27,-15,27,-35v-2,-48,-52,-40,-64,0","w":216},"\u00b1":{"d":"98,-32r0,-62r-78,0r0,-19r78,0r0,-63r20,0r0,63r78,0r0,19r-78,0r0,62r-20,0xm20,0r0,-19r176,0r0,19r-176,0","w":216},"\u2264":{"d":"196,-26r-176,-68r0,-13r176,-69r0,19r-143,56r143,56r0,19xm20,0r0,-19r176,0r0,19r-176,0","w":216},"\u2265":{"d":"20,-26r0,-19r143,-56r-143,-56r0,-19r176,69r0,13xm20,0r0,-19r176,0r0,19r-176,0","w":216},"\u00a5":{"d":"85,0r0,-101r-69,0r0,-20r63,0r-21,-38r-48,0r0,-20r36,0r-41,-74r36,0r59,117r59,-117r35,0r-41,74r37,0r0,20r-48,0r-21,38r63,0r0,20r-69,0r0,101r-30,0"},"\u03bc":{"d":"150,-29v-21,30,-60,48,-99,28r0,69r-28,8r0,-234r28,0v5,52,-18,143,36,143v36,0,62,-28,62,-65r0,-78r28,0r0,161r-27,5r0,-37"},"\u2202":{"d":"146,-120v1,-66,-13,-141,-60,-105r-23,-26v68,-36,113,21,113,114v0,85,-40,146,-95,146v-38,0,-67,-32,-67,-75v0,-76,97,-123,132,-54xm87,-18v26,0,48,-29,48,-62v0,-28,-17,-48,-41,-48v-27,0,-49,28,-49,61v0,30,17,49,42,49"},"\u2211":{"d":"13,0r0,-27r101,-102r-96,-98r0,-26r176,0r0,26r-136,0r96,98r-100,102r146,0r0,27r-187,0","w":213},"\u220f":{"d":"15,-253r237,0r0,26r-23,0r0,227r-31,0r0,-227r-130,0r0,227r-30,0r0,-227r-23,0r0,-26","w":266},"\u03c0":{"d":"208,-184r0,24r-25,0r0,121v-2,16,11,18,25,15r0,24v-32,7,-53,-3,-53,-35r0,-125r-93,0r0,160r-27,0r0,-160r-25,0r0,-24r198,0","w":219},"\u222b":{"d":"166,-257r-3,27v-39,-18,-44,7,-49,66v-5,68,1,170,-24,217v-11,21,-40,30,-67,18r2,-28v38,20,46,-7,50,-66v5,-68,-1,-170,24,-216v11,-21,40,-30,67,-18"},"\u00aa":{"d":"10,-204v0,-46,46,-68,89,-50r17,-1r1,97r-21,6r-2,-9v-35,22,-84,1,-84,-43xm93,-181r0,-53v-26,-17,-60,-3,-60,30v0,33,37,43,60,23","w":133},"\u00ba":{"d":"10,-207v0,-31,26,-55,57,-55v31,0,56,24,56,55v0,31,-25,55,-56,55v-31,0,-57,-24,-57,-55xm33,-207v0,19,16,35,34,35v18,0,33,-16,33,-35v0,-20,-15,-35,-33,-35v-18,0,-34,15,-34,35","w":133},"\u03a9":{"d":"45,-141v0,51,25,88,64,114r0,27r-95,0r0,-27r61,0v-35,-22,-57,-64,-58,-113v0,-71,47,-122,113,-122v66,0,113,51,113,122v0,54,-22,89,-58,113r61,0r0,27r-95,0r0,-27v40,-27,64,-62,64,-114v0,-57,-34,-94,-85,-94v-51,0,-85,37,-85,94","w":259},"\u00e6":{"d":"10,-34v2,-49,49,-56,111,-57v9,-59,-55,-57,-88,-30r0,-26v35,-19,88,-25,109,13v34,-49,127,-30,127,40v0,16,-3,20,-17,20r-104,2v-4,69,78,70,113,30v-2,14,-3,34,-15,36v-37,22,-92,20,-111,-15v-24,37,-128,46,-125,-13xm121,-71v-49,3,-75,1,-84,33v6,37,59,28,84,4r0,-37xm150,-91r92,-4v-1,-30,-16,-45,-42,-45v-27,0,-44,17,-50,49","w":280},"\u00f8":{"d":"148,-151r20,-23r28,0r-31,37v50,52,8,149,-65,145v-18,0,-33,-5,-48,-15r-22,25r-28,0r34,-39v-51,-50,-10,-144,64,-144v18,0,34,5,48,14xm68,-26v52,40,120,-35,79,-91xm132,-132v-53,-38,-119,37,-79,92"},"\u00bf":{"d":"6,4v3,-51,37,-76,90,-87r0,-29r26,-6r0,55v-50,5,-85,25,-88,65v-3,40,52,57,96,44r-2,25v-60,18,-126,-11,-122,-67xm128,-169v0,10,-8,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v11,0,19,9,19,19","w":159},"\u00a1":{"d":"67,69r-34,7r13,-193r9,0xm69,-169v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,19,9,19,19","w":100},"\u00ac":{"d":"20,-112r0,-19r176,0r0,86r-19,0r0,-67r-157,0","w":216},"\u221a":{"d":"117,9r-22,0r-55,-160r-34,20r-9,-18r62,-35r49,147r100,-296r26,0"},"\u0192":{"d":"91,-155v3,-70,33,-125,103,-101r-6,25v-46,-37,-66,18,-71,76r56,0r0,22r-58,0v-14,86,2,233,-112,195r8,-22v40,19,57,6,64,-57r13,-116r-51,0r0,-22r54,0"},"\u2248":{"d":"20,-103r0,-19v53,-60,124,43,176,-18r0,19v-53,60,-124,-41,-176,18xm20,-36r0,-19v53,-60,124,43,176,-18r0,19v-53,61,-124,-43,-176,18","w":216},"\u0394":{"d":"147,-262r108,262r-250,0r108,-262r34,0xm46,-27r168,0r-84,-205","w":259},"\u00ab":{"d":"60,-134r28,0r-43,54r44,56r-27,0r-45,-56xm121,-134r27,0r-43,54r44,56r-27,0r-45,-56","w":166},"\u00bb":{"d":"46,-24r-27,0r43,-54r-45,-56r28,0r44,56xm106,-24r-27,0r43,-54r-45,-56r28,0r44,56","w":166},"\u2026":{"d":"41,-13v0,-10,8,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-11,0,-19,-9,-19,-19xm161,-13v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19xm281,-13v0,-10,9,-19,19,-19v11,0,19,9,19,19v0,10,-8,19,-19,19v-10,0,-19,-9,-19,-19","w":360},"\u00a0":{"w":180},"\u00c0":{"d":"62,-66r-31,66r-31,0r127,-262r6,0r127,262r-33,0r-32,-66r-133,0xm73,-89r112,0r-56,-117xm122,-322r32,51r-24,0r-47,-51r39,0","w":259},"\u00c3":{"d":"62,-66r-31,66r-31,0r127,-262r6,0r127,262r-33,0r-32,-66r-133,0xm73,-89r112,0r-56,-117xm174,-316r17,0v-5,55,-55,37,-89,25v-8,0,-13,6,-15,17r-18,0v5,-56,52,-36,89,-26v8,0,14,-5,16,-16","w":259},"\u00d5":{"d":"15,-127v0,-77,54,-135,125,-135v71,0,125,58,125,135v0,77,-54,136,-125,136v-71,0,-125,-59,-125,-136xm46,-127v0,64,39,109,94,109v55,0,94,-45,94,-109v0,-64,-39,-108,-94,-108v-55,0,-94,44,-94,108xm184,-316r17,0v-5,55,-55,37,-89,25v-8,0,-13,6,-15,17r-18,0v5,-56,52,-36,89,-26v8,0,14,-5,16,-16","w":280},"\u0152":{"d":"15,-127v0,-82,52,-126,142,-126r161,0r0,26r-118,0r0,82r103,0r0,26r-103,0r0,92r119,0r0,27r-162,0v-88,2,-142,-45,-142,-127xm170,-27r0,-200v-76,-7,-124,31,-124,100v0,69,48,107,124,100","w":333},"\u0153":{"d":"277,-13v-34,28,-102,31,-125,-10v-42,63,-142,27,-142,-54v0,-84,110,-114,145,-49v29,-56,134,-45,134,32v0,16,-3,20,-17,20r-104,2v-4,51,47,72,88,48v7,-4,11,-8,24,-18xm89,-13v33,0,53,-25,53,-65v0,-39,-20,-62,-53,-62v-32,0,-52,23,-52,62v0,39,21,65,52,65xm170,-91r92,-4v-1,-30,-16,-45,-42,-45v-27,0,-45,18,-50,49","w":299},"\u2013":{"d":"196,-78r-176,0r0,-20r176,0r0,20","w":216},"\u2014":{"d":"0,-69r0,-20r360,0r0,20r-360,0","w":360},"\u201c":{"d":"57,-262r26,0r-33,91r-33,0xm137,-262r26,0r-33,91r-33,0","w":180},"\u201d":{"d":"57,-262r26,0r-33,91r-33,0xm137,-262r26,0r-33,91r-33,0","w":180},"\u2018":{"d":"57,-262r26,0r-33,91r-33,0","w":100},"\u2019":{"d":"57,-262r26,0r-33,91r-33,0","w":100},"\u00f7":{"d":"196,-78r-176,0r0,-20r176,0r0,20xm89,-24v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,11,-9,19,-19,19v-10,0,-19,-8,-19,-19xm89,-152v0,-11,9,-19,19,-19v10,0,19,8,19,19v0,10,-9,20,-19,20v-10,0,-19,-10,-19,-20","w":216},"\u25ca":{"d":"12,-127r78,-135r78,135r-78,136xm39,-127r51,90r51,-90r-51,-89","w":180},"\u00ff":{"d":"20,76v29,-31,21,-23,49,-76r-69,-158r30,0r55,124r55,-124r26,0r-95,207v-6,12,-9,16,-17,27r-34,0xm53,-186v-27,0,-23,-39,0,-39v10,0,19,9,19,19v0,10,-9,20,-19,20xm94,-207v0,-10,9,-19,19,-19v26,0,23,39,0,38v-10,0,-19,-9,-19,-19","w":166},"\u0178":{"d":"132,0r-30,0r0,-110r-106,-143r36,0r86,117r92,-117r34,0r-112,143r0,110xm68,-294v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19xm129,-295v0,-10,9,-19,19,-19v26,0,23,39,0,38v-10,0,-19,-9,-19,-19","w":240},"\u2044":{"d":"-60,9r159,-271r21,0r-159,271r-21,0","w":60},"\u2039":{"d":"60,-134r28,0r-43,54r44,56r-27,0r-45,-56","w":106},"\u203a":{"d":"46,-24r-27,0r43,-54r-45,-56r28,0r44,56","w":106},"\ufb01":{"d":"116,-246v-44,6,-52,36,-50,88r45,0r0,22r-45,0r0,136r-28,0r0,-136r-33,0r0,-22r33,0v-1,-51,7,-79,30,-93r48,-7r0,12xm146,0r0,-156r28,-6r0,162r-28,0xm141,-217v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19","w":199},"\ufb02":{"d":"116,-246v-44,6,-52,36,-50,88r45,0r0,22r-45,0r0,136r-28,0r0,-136r-33,0r0,-22r33,0v-1,-51,7,-79,30,-93r48,-7r0,12xm146,0r0,-251r28,-7r0,258r-28,0","w":199},"\u2021":{"d":"84,-55v-7,-49,-7,-75,0,-123r-57,8r0,-28r57,9r-8,-73r28,0r-8,73r57,-9r0,28r-57,-8v7,49,7,75,0,123r57,-8r0,27r-57,-8r8,73r-28,0r8,-73r-57,8r0,-27","w":180},"\u00b7":{"d":"31,-79v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19","w":100},"\u201a":{"d":"50,-32r26,0r-32,90r-33,0","w":100},"\u201e":{"d":"50,-32r26,0r-32,90r-33,0xm130,-32r26,0r-32,90r-33,0","w":180},"\u2030":{"d":"16,-200v0,-30,24,-53,54,-53v30,0,53,23,53,53v0,30,-23,54,-53,54v-30,0,-54,-24,-54,-54xm64,9r-20,0r147,-271r21,0xm131,-54v0,-30,24,-53,54,-53v30,0,54,23,54,53v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54xm263,-54v0,-30,24,-53,54,-53v30,0,53,23,53,53v0,30,-23,54,-53,54v-30,0,-54,-24,-54,-54xm36,-200v0,18,16,34,34,34v19,0,33,-16,33,-34v0,-18,-14,-33,-33,-33v-18,0,-34,15,-34,33xm152,-54v0,18,15,34,33,34v18,0,34,-16,34,-34v0,-18,-16,-33,-34,-33v-18,0,-33,15,-33,33xm283,-54v0,18,16,34,34,34v18,0,33,-16,33,-34v0,-18,-15,-33,-33,-33v-18,0,-34,15,-34,33","w":386},"\u00c2":{"d":"62,-66r-31,66r-31,0r127,-262r6,0r127,262r-33,0r-32,-66r-133,0xm73,-89r112,0r-56,-117xm113,-322r34,0r36,51r-29,0r-24,-34r-24,34r-28,0","w":259},"\u00ca":{"d":"32,0r0,-253r148,0r0,26r-118,0r0,82r103,0r0,26r-103,0r0,92r120,0r0,27r-150,0xm84,-322r33,0r36,51r-29,0r-24,-34r-24,34r-28,0"},"\u00c1":{"d":"62,-66r-31,66r-31,0r127,-262r6,0r127,262r-33,0r-32,-66r-133,0xm73,-89r112,0r-56,-117xm138,-322r39,0r-47,51r-24,0","w":259},"\u00cb":{"d":"32,0r0,-253r148,0r0,26r-118,0r0,82r103,0r0,26r-103,0r0,92r120,0r0,27r-150,0xm51,-294v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19xm111,-295v0,-10,9,-19,19,-19v26,0,23,39,0,38v-10,0,-19,-9,-19,-19"},"\u00c8":{"d":"32,0r0,-253r148,0r0,26r-118,0r0,82r103,0r0,26r-103,0r0,92r120,0r0,27r-150,0xm92,-322r32,51r-24,0r-47,-51r39,0"},"\u00cd":{"d":"35,0r0,-253r30,0r0,253r-30,0xm58,-322r40,0r-48,51r-24,0","w":100},"\u00ce":{"d":"35,0r0,-253r30,0r0,253r-30,0xm33,-322r34,0r36,51r-29,0r-24,-34r-24,34r-28,0","w":100},"\u00cf":{"d":"35,0r0,-253r30,0r0,253r-30,0xm1,-294v0,-10,9,-19,19,-19v10,0,19,9,19,19v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19xm61,-295v0,-10,9,-19,19,-19v26,0,23,39,0,38v-10,0,-19,-9,-19,-19","w":100},"\u00cc":{"d":"35,0r0,-253r30,0r0,253r-30,0xm42,-322r32,51r-24,0r-47,-51r39,0","w":100},"\u00d3":{"d":"15,-127v0,-77,54,-135,125,-135v71,0,125,58,125,135v0,77,-54,136,-125,136v-71,0,-125,-59,-125,-136xm46,-127v0,64,39,109,94,109v55,0,94,-45,94,-109v0,-64,-39,-108,-94,-108v-55,0,-94,44,-94,108xm148,-322r40,0r-48,51r-24,0","w":280},"\u00d4":{"d":"15,-127v0,-77,54,-135,125,-135v71,0,125,58,125,135v0,77,-54,136,-125,136v-71,0,-125,-59,-125,-136xm46,-127v0,64,39,109,94,109v55,0,94,-45,94,-109v0,-64,-39,-108,-94,-108v-55,0,-94,44,-94,108xm123,-322r34,0r36,51r-29,0r-24,-34r-24,34r-28,0","w":280},"\u00d2":{"d":"15,-127v0,-77,54,-135,125,-135v71,0,125,58,125,135v0,77,-54,136,-125,136v-71,0,-125,-59,-125,-136xm46,-127v0,64,39,109,94,109v55,0,94,-45,94,-109v0,-64,-39,-108,-94,-108v-55,0,-94,44,-94,108xm132,-322r32,51r-24,0r-47,-51r39,0","w":280},"\u00da":{"d":"30,-253r30,0r0,147v0,57,28,88,79,88v53,0,79,-34,79,-101r0,-134r26,0r0,144v0,77,-38,118,-108,118v-68,0,-106,-42,-106,-118r0,-144xm144,-322r39,0r-47,51r-24,0","w":273},"\u00db":{"d":"30,-253r30,0r0,147v0,57,28,88,79,88v53,0,79,-34,79,-101r0,-134r26,0r0,144v0,77,-38,118,-108,118v-68,0,-106,-42,-106,-118r0,-144xm120,-322r33,0r36,51r-29,0r-24,-34r-24,34r-28,0","w":273},"\u00d9":{"d":"30,-253r30,0r0,147v0,57,28,88,79,88v53,0,79,-34,79,-101r0,-134r26,0r0,144v0,77,-38,118,-108,118v-68,0,-106,-42,-106,-118r0,-144xm128,-322r32,51r-24,0r-47,-51r39,0","w":273},"\u0131":{"d":"26,0r0,-156r28,-6r0,162r-28,0","w":79},"\u02c6":{"d":"23,-234r34,0r36,51r-29,0r-24,-33r-24,33r-28,0","w":79},"\u02dc":{"d":"84,-228r17,0v-5,55,-55,37,-89,25v-8,0,-13,6,-15,17r-18,0v5,-55,55,-37,89,-25v8,0,14,-6,16,-17","w":79},"\u00af":{"d":"-16,-195r0,-21r112,0r0,21r-112,0","w":79},"\u02d8":{"d":"-15,-233r17,0v4,37,72,36,76,0r17,0v-3,33,-21,48,-55,48v-34,0,-52,-15,-55,-48","w":79},"\u02d9":{"d":"40,-186v-27,0,-23,-39,0,-39v10,0,19,9,19,19v0,10,-9,20,-19,20","w":79},"\u02da":{"d":"3,-218v0,-21,16,-37,37,-37v21,0,37,16,37,37v0,21,-16,37,-37,37v-21,0,-37,-16,-37,-37xm19,-218v0,12,9,21,21,21v12,0,21,-9,21,-21v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21","w":79},"\u00b8":{"d":"7,31r23,-31r17,0r-17,23v22,-7,42,5,42,26v0,32,-47,40,-77,24v3,-4,3,-17,10,-12v19,8,38,4,40,-12v1,-14,-21,-17,-32,-10","w":79},"\u02dd":{"d":"21,-234r36,0r-34,53r-23,0xm71,-234r40,0r-48,51r-24,0","w":79},"\u02db":{"d":"75,-4r0,9v-29,11,-44,24,-44,39v0,22,26,16,43,5r8,14v-19,13,-32,18,-47,18v-19,0,-31,-12,-31,-31v0,-28,25,-46,71,-54","w":79},"\u02c7":{"d":"23,-183r-35,-51r28,0r24,34r24,-34r29,0r-36,51r-34,0","w":79},"\u00a4":{"d":"190,-243r-9,32v-41,-45,-113,-25,-118,43r107,0r-5,20r-105,0v-1,12,-1,26,0,38r94,0r-5,20r-87,0v4,77,83,91,123,44v-2,14,2,38,-10,41v-66,38,-137,-7,-143,-85r-31,0r6,-20r23,0v-1,-12,-2,-26,0,-38r-29,0r6,-20r26,0v8,-81,90,-119,157,-75"},"\u20ac":{"d":"190,-243r-9,32v-41,-45,-113,-25,-118,43r107,0r-5,20r-105,0v-1,12,-1,26,0,38r94,0r-5,20r-87,0v4,77,83,91,123,44v-2,14,2,38,-10,41v-66,38,-137,-7,-143,-85r-31,0r6,-20r23,0v-1,-12,-2,-26,0,-38r-29,0r6,-20r26,0v8,-81,90,-119,157,-75"}}});
Cufon.registerFont({"w":199,"face":{"font-family":"metro","font-weight":900,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 10 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"8","bbox":"-60 -352 370 85","underline-thickness":"18","underline-position":"-36","stemh":"40","stemv":"55","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":100},"\u00d0":{"d":"253,-127v0,76,-57,127,-142,127r-79,0r0,-113r-26,0r0,-42r26,0r0,-98r79,0v84,0,142,51,142,126xm191,-127v0,-49,-37,-77,-98,-75r0,47r61,0r0,42r-61,0r0,60v61,2,98,-25,98,-74","w":266},"\u00f0":{"d":"103,-165r-19,-27r-61,26r0,-35r40,-16r-33,-36r69,0r12,15r58,-24r0,34r-38,16v24,32,56,83,56,129v0,54,-35,91,-87,91v-51,0,-87,-37,-87,-87v0,-52,37,-87,90,-86xm135,-79v0,-28,-14,-46,-35,-46v-22,0,-34,17,-34,47v0,27,13,45,34,45v21,0,35,-18,35,-46"},"\u0141":{"d":"194,0r-161,0r0,-69r-33,24r0,-46r33,-23r0,-139r61,0r0,95r73,-53r0,45r-73,53r0,60r100,0r0,53","w":200},"\u0142":{"d":"115,-154r-33,23r0,131r-55,0r0,-94r-33,23r0,-45r33,-22r0,-110r55,-10r0,82r33,-22r0,44","w":100},"\u0160":{"d":"126,-70v-15,-50,-114,-52,-110,-122v3,-67,82,-86,149,-57r0,59v-24,-16,-48,-25,-67,-25v-26,0,-36,28,-16,39v45,25,112,59,102,102v3,75,-89,101,-161,71r-5,-68v25,15,38,25,70,26v23,0,38,-10,38,-25xm168,-327r-41,54r-55,0r-40,-54r46,0r22,29r21,-29r47,0","w":200},"\u0161":{"d":"18,-50v18,14,31,23,56,24v19,2,29,-16,17,-26v-30,-13,-78,-19,-76,-61v3,-54,74,-65,124,-38r-5,39v-19,-14,-34,-20,-49,-20v-26,0,-29,25,-2,30v35,6,62,28,62,56v0,55,-80,68,-127,40r0,-44xm148,-237r-41,54r-55,0r-40,-54r46,0r22,29r21,-29r47,0","w":159},"\u00dd":{"d":"244,-253r-97,126r0,127r-60,0r0,-127r-92,-126r73,0r55,76r60,-76r61,0xm187,-327r-57,54r-44,0r35,-54r66,0","w":240},"\u00fd":{"d":"9,76v25,-28,26,-33,49,-79r-58,-155r58,0r30,85r31,-85r48,0r-76,181v-7,16,-12,27,-25,53r-57,0xm150,-237r-57,54r-44,0r35,-54r66,0","w":166},"\u00de":{"d":"199,-129v0,52,-43,82,-111,80r0,49r-58,0r0,-253r58,0r0,45v69,-1,111,28,111,79xm147,-130v-2,-28,-23,-34,-59,-33r0,69v36,1,61,-10,59,-36","w":206},"\u00fe":{"d":"192,-81v0,61,-52,102,-114,85r0,62r-54,10r0,-324r54,-10r0,100v62,-17,114,17,114,77xm140,-78v0,-35,-30,-57,-62,-43r0,85v32,11,62,-8,62,-42","w":206},"\u017d":{"d":"223,-53r-10,53r-214,0r0,-4r122,-196r-111,0r10,-53r201,0v-37,70,-83,132,-123,200r125,0xm188,-327r-40,54r-55,0r-40,-54r46,0r21,29r22,-29r46,0","w":226},"\u017e":{"d":"165,-158r-76,116r72,0r-7,42r-154,0r75,-115r-66,0r6,-43r150,0xm156,-237r-41,54r-55,0r-40,-54r46,0r22,29r21,-29r47,0","w":166},"\u00bd":{"d":"300,-35r-5,35r-118,0r0,-14v22,-27,69,-57,76,-92v-4,-27,-41,-25,-46,5r-30,-19v19,-74,139,-40,114,29v-5,13,-30,39,-45,56r54,0xm229,-262r-148,271r-26,0r148,-271r26,0xm87,-102r-40,0r0,-120r-29,0r6,-31r63,0r0,151","w":313},"\u00bc":{"d":"288,-30r-15,0r0,30r-38,0r0,-30r-69,0r0,-27r64,-95r43,0r0,92r15,0r0,30xm238,-262r-149,271r-26,0r149,-271r26,0xm87,-102r-40,0r0,-120r-29,0r6,-31r63,0r0,151xm235,-60r0,-51r-34,51r34,0","w":313},"\u00b9":{"d":"87,-102r-40,0r0,-120r-29,0r6,-31r63,0r0,151","w":126},"\u00be":{"d":"298,-30r-14,0r0,30r-38,0r0,-30r-70,0r0,-27r65,-95r43,0r0,92r14,0r0,30xm257,-262r-148,271r-26,0r148,-271r26,0xm109,-181v47,27,17,88,-39,88v-23,0,-39,-6,-60,-23r20,-29v14,11,25,16,37,16v14,0,23,-8,23,-19v0,-14,-11,-19,-39,-19r0,-26v26,0,38,-6,38,-19v-4,-22,-35,-16,-48,0r-23,-23v28,-43,110,-32,111,20v0,14,-6,24,-20,34xm246,-60v-1,-16,2,-37,-1,-51r-34,51r35,0","w":313},"\u00b3":{"d":"109,-181v47,27,17,88,-39,88v-23,0,-39,-6,-60,-23r20,-29v14,11,25,16,37,16v14,0,23,-8,23,-19v0,-14,-11,-19,-39,-19r0,-26v26,0,38,-6,38,-19v-4,-22,-35,-16,-48,0r-23,-23v28,-43,110,-32,111,20v0,14,-6,24,-20,34","w":153},"\u00b2":{"d":"133,-136r-4,34r-118,0r0,-13v21,-28,67,-57,75,-93v-5,-26,-41,-24,-45,6r-30,-19v13,-60,116,-51,116,9v0,35,-27,50,-47,76r53,0","w":146},"\u00a6":{"d":"59,-185r-38,0r0,-90r38,0r0,90xm59,-5r-38,0r0,-90r38,0r0,90","w":79},"\u2212":{"d":"196,-69r-176,0r0,-38r176,0r0,38","w":216},"\u00d7":{"d":"197,-25r-26,26r-63,-62r-63,62r-26,-26r62,-63r-62,-62r26,-27r63,63r63,-63r26,27r-62,62","w":216},"!":{"d":"85,-262v-3,77,-20,119,-30,186r-17,-3r-20,-141r-1,-33xm80,-23v0,17,-13,31,-30,31v-17,0,-30,-14,-30,-31v0,-17,13,-30,30,-30v17,0,30,13,30,30","w":100},"\"":{"d":"151,-262r-3,104r-43,0r-3,-104r49,0xm71,-262r-3,104r-42,0r-4,-104r49,0","w":173},"#":{"d":"189,-148r-33,0r-7,43r30,0r0,34r-34,0r-10,71r-36,0r10,-71r-33,0r-10,71r-36,0r10,-71r-29,0r0,-34r34,0r6,-43r-29,0r0,-34r33,0r11,-71r36,0r-11,71r33,0r10,-71r36,0r-10,71r29,0r0,34xm120,-148r-33,0r-6,43r32,0"},"$":{"d":"114,-150v53,19,79,27,79,79v0,42,-30,71,-79,75r0,46r-26,0r0,-46v-40,-4,-60,-15,-85,-39r31,-33v20,19,26,27,54,31r0,-71v-53,-17,-79,-25,-79,-76v0,-41,33,-71,79,-73r0,-40r26,0r0,41v34,3,49,14,69,34r-25,33v-13,-16,-22,-22,-44,-27r0,66xm88,-157r0,-60v-21,1,-34,12,-34,29v0,15,11,25,34,31xm148,-68v0,-16,-10,-26,-34,-33r0,64v20,0,34,-14,34,-31"},"%":{"d":"310,-56v0,36,-29,65,-65,65v-36,0,-65,-29,-65,-65v0,-36,29,-65,65,-65v36,0,65,29,65,65xm251,-262r-149,271r-26,0r149,-271r26,0xm147,-197v0,36,-29,65,-65,65v-36,0,-65,-29,-65,-65v0,-36,29,-65,65,-65v36,0,65,29,65,65xm274,-56v0,-16,-13,-29,-29,-29v-16,0,-29,13,-29,29v0,16,13,29,29,29v16,0,29,-13,29,-29xm111,-197v0,-16,-13,-29,-29,-29v-16,0,-29,13,-29,29v0,16,13,29,29,29v16,0,29,-13,29,-29","w":326},"&":{"d":"250,-106v-8,29,-15,42,-33,64r35,42r-68,0r-9,-11v-57,43,-163,13,-163,-57v0,-29,14,-49,52,-76v-47,-48,-21,-118,46,-118v42,0,74,27,74,63v0,29,-20,50,-45,64r43,50v10,-12,14,-19,21,-35xm138,-203v0,-12,-11,-21,-25,-21v-30,0,-27,36,-4,54v21,-12,29,-20,29,-33xm140,-53r-45,-56v-35,18,-34,65,12,65v12,0,20,-2,33,-9","w":259},"'":{"d":"71,-262r-3,104r-42,0r-4,-104r49,0","w":93},"(":{"d":"109,-262v-66,75,-66,232,0,307r-46,0v-69,-77,-65,-227,-2,-307r48,0","w":119},")":{"d":"57,-262v69,76,66,227,2,307r-48,0v64,-77,67,-233,-1,-307r47,0","w":119},"*":{"d":"157,-202r-53,8r39,38r-29,21r-24,-49r-24,49r-29,-21r39,-38r-53,-8r10,-32r49,24r-9,-52r34,0r-9,52r49,-24","w":180},"+":{"d":"196,-69r-69,0r0,69r-38,0r0,-69r-69,0r0,-38r69,0r0,-69r38,0r0,69r69,0r0,38","w":216},",":{"d":"90,-50r-39,98r-43,0r33,-98r49,0","w":100},"-":{"d":"104,-58r-88,0r0,-42r88,0r0,42","w":119},".":{"d":"80,-23v0,17,-13,31,-30,31v-17,0,-30,-14,-30,-31v0,-17,13,-30,30,-30v17,0,30,13,30,30","w":100},"\/":{"d":"111,-262r-88,271r-26,0r87,-271r27,0","w":100},"0":{"d":"100,-262v64,0,90,60,90,138v0,80,-36,133,-90,133v-55,0,-90,-54,-90,-136v0,-82,35,-135,90,-135xm132,-127v0,-55,-10,-80,-32,-80v-22,0,-32,25,-32,80v0,55,10,81,32,81v22,0,32,-26,32,-81"},"1":{"d":"134,0r-57,0r0,-207r-44,0r8,-46r93,0r0,253"},"2":{"d":"92,-209v-24,0,-33,16,-40,41r-46,-31v18,-43,46,-63,88,-63v63,-1,99,50,81,111v-7,25,-50,72,-73,99r86,0r-6,52r-176,0r0,-23r85,-96v23,-26,31,-40,31,-58v0,-20,-11,-32,-30,-32"},"3":{"d":"94,-262v78,0,112,93,54,130v68,43,26,145,-58,141v-36,-2,-64,-13,-89,-33r30,-48v17,14,35,26,57,26v22,0,36,-13,36,-32v0,-29,-20,-30,-60,-31r0,-43v34,0,58,-8,58,-33v0,-38,-61,-25,-74,0r-34,-37v27,-28,50,-40,80,-40"},"4":{"d":"192,-50r-24,0r0,50r-52,0r0,-50r-107,0r0,-44r99,-159r60,0r0,159r24,0r0,44xm116,-94r-1,-98r-62,98r63,0"},"5":{"d":"181,-83v4,86,-113,119,-176,66r25,-49v23,24,91,32,91,-15v1,-39,-51,-50,-90,-34r2,-138r140,0r-15,51r-80,0r0,33v60,-7,100,32,103,86"},"6":{"d":"9,-83v0,-79,37,-102,89,-170r74,0v-26,30,-53,58,-75,91v54,-7,93,31,93,82v0,51,-37,89,-88,89v-56,0,-93,-37,-93,-92xm134,-80v0,-22,-14,-37,-35,-37v-21,0,-34,13,-34,36v0,23,14,38,35,38v20,0,34,-15,34,-37"},"7":{"d":"195,-253r-105,253r-59,0r87,-204r-103,0r0,-49r180,0"},"8":{"d":"155,-135v70,39,29,144,-55,144v-90,0,-122,-108,-54,-146v-57,-38,-25,-125,53,-125v80,0,116,86,56,127xm101,-155v12,0,33,-17,33,-34v0,-16,-14,-28,-33,-28v-51,1,-34,62,0,62xm100,-111v-16,-1,-35,21,-35,38v0,19,13,30,34,30v21,0,36,-12,36,-30v0,-19,-23,-37,-35,-38"},"9":{"d":"190,-170v0,79,-37,102,-89,170r-75,0r40,-45v16,-19,22,-26,36,-46v-54,4,-93,-31,-93,-83v0,-51,37,-88,88,-88v56,0,93,37,93,92xm134,-172v0,-23,-14,-38,-35,-38v-20,0,-34,14,-34,36v0,22,14,38,35,38v21,0,34,-13,34,-36"},":":{"d":"80,-135v0,17,-13,30,-30,30v-17,0,-30,-13,-30,-30v0,-17,13,-30,30,-30v17,0,30,13,30,30xm80,-23v0,17,-13,31,-30,31v-17,0,-30,-14,-30,-31v0,-17,13,-30,30,-30v17,0,30,13,30,30","w":100},";":{"d":"89,-135v0,17,-13,30,-30,30v-17,0,-30,-13,-30,-30v0,-17,13,-30,30,-30v17,0,30,13,30,30xm83,-50r-39,98r-44,0r34,-98r49,0","w":100},"<":{"d":"210,9r-204,-82r0,-30r204,-81r0,37r-152,59r152,59r0,38","w":216},"=":{"d":"196,-103r-176,0r0,-37r176,0r0,37xm196,-36r-176,0r0,-37r176,0r0,37","w":216},">":{"d":"210,-73r-204,82r0,-38r152,-59r-152,-59r0,-37r204,81r0,30","w":216},"?":{"d":"35,-141v34,-7,57,-17,60,-44v3,-26,-40,-32,-70,-24r4,-49v61,-16,120,12,120,65v0,40,-24,71,-68,84r0,24r-46,9r0,-65xm88,-23v0,17,-14,31,-31,31v-16,0,-30,-14,-30,-31v0,-17,14,-30,30,-30v17,0,31,13,31,30","w":159},"@":{"d":"158,-14v35,0,73,-16,98,-34r13,17v-93,81,-255,31,-255,-93v0,-78,64,-138,147,-138v72,0,125,46,125,109v0,50,-36,95,-76,95v-20,0,-35,-11,-34,-31v-22,49,-99,38,-99,-25v0,-47,35,-88,74,-88v19,0,35,10,38,25r5,-18r39,0r-27,97v0,8,5,13,13,13v22,0,42,-34,42,-70v0,-50,-40,-85,-99,-85v-70,0,-122,49,-122,117v0,64,49,109,118,109xm140,-87v25,2,39,-54,39,-70v0,-11,-8,-18,-18,-18v-21,0,-41,41,-40,65v0,15,7,23,19,23","w":299},"A":{"d":"260,0r-63,0r-16,-37r-105,0r-16,37r-60,0r129,-262r5,0xm163,-80r-35,-82r-34,82r69,0","w":259},"B":{"d":"161,-136v75,30,46,147,-52,136r-79,0r0,-253v75,-2,173,-6,167,64v-2,29,-13,39,-36,53xm145,-184v1,-25,-28,-29,-57,-27r0,59v31,3,56,-7,57,-32xm152,-78v0,-27,-29,-37,-64,-34r0,67v34,2,64,-6,64,-33","w":219},"C":{"d":"152,-49v34,0,57,-10,79,-29r-5,66v-26,15,-49,21,-79,21v-86,1,-130,-61,-133,-136v-5,-110,123,-171,211,-112r-5,65v-40,-55,-144,-44,-144,44v0,49,29,81,76,81","w":253},"D":{"d":"252,-127v0,76,-57,127,-142,127r-79,0r0,-253r79,0v84,0,142,51,142,126xm190,-127v0,-49,-38,-77,-99,-75r0,149v61,2,100,-25,99,-74","w":266},"E":{"d":"179,0r-149,0r0,-253r149,0r0,51r-89,0r0,47r74,0r0,52r-74,0r0,51r89,0r0,52","w":200},"F":{"d":"179,-202r-89,0r0,52r74,0r0,51r-74,0r0,99r-60,0r0,-253r149,0r0,51","w":193},"G":{"d":"230,-175v-21,-17,-47,-34,-75,-34v-46,0,-78,34,-78,83v-1,62,51,95,112,76r0,-40r-48,0r0,-50r108,0r0,122v-30,16,-71,27,-103,27v-75,0,-131,-59,-131,-136v0,-110,128,-171,221,-112","w":273},"H":{"d":"250,0r-60,0r0,-108r-100,0r0,108r-60,0r0,-253r60,0r0,93r100,0r0,-93r60,0r0,253","w":280},"I":{"d":"90,0r-60,0r0,-253r60,0r0,253","w":120},"J":{"d":"123,-89v3,75,-49,106,-119,90r-5,-57v31,18,64,11,64,-31r0,-166r60,0r0,164","w":153},"K":{"d":"256,0r-76,0r-90,-115r0,115r-60,0r0,-253r60,0r1,112r84,-112r72,0r-93,123","w":253},"L":{"d":"191,0r-161,0r0,-253r60,0r0,200r101,0r0,53","w":200},"M":{"d":"311,0r-56,0r-24,-117r-69,126r-3,0r-74,-128r-22,119r-54,0r53,-262r4,0r96,167r91,-167r5,0","w":320},"N":{"d":"251,9r-6,0r-161,-149r0,140r-55,0r0,-262r6,0r162,149r0,-140r54,0r0,262","w":280},"O":{"d":"266,-127v0,76,-55,136,-126,136v-71,0,-126,-60,-126,-136v0,-76,55,-135,126,-135v71,0,126,59,126,135xm204,-127v0,-47,-25,-77,-64,-77v-39,0,-64,30,-64,77v0,47,25,78,64,78v39,0,64,-31,64,-78","w":280},"P":{"d":"199,-174v0,52,-43,82,-111,80r0,94r-58,0r0,-253v85,-6,169,8,169,79xm147,-175v-2,-28,-23,-34,-59,-33r0,69v36,1,60,-10,59,-36","w":206},"Q":{"d":"38,17v2,-25,7,-29,16,-50v-24,-21,-40,-55,-40,-93v0,-77,55,-136,126,-136v70,0,126,59,126,133v-1,67,-46,119,-110,129v27,14,52,18,90,22r-17,51v-62,2,-130,-58,-191,-56xm204,-127v0,-47,-25,-77,-64,-77v-39,0,-64,30,-64,77v0,47,25,78,64,78v39,0,64,-31,64,-78","w":280},"R":{"d":"235,0r-69,0r-70,-100r-8,0r0,100r-58,0r0,-253v84,-5,172,4,172,76v0,29,-15,53,-46,68xm150,-173v0,-29,-22,-36,-62,-35r0,78v43,-1,62,-14,62,-43","w":226},"S":{"d":"126,-70v-15,-50,-114,-52,-110,-122v3,-67,82,-86,149,-57r0,59v-24,-16,-48,-25,-67,-25v-26,0,-36,28,-16,39v45,25,112,59,102,102v3,75,-89,101,-161,71r-5,-68v25,15,38,25,70,26v23,0,38,-10,38,-25","w":200},"T":{"d":"231,-204r-81,0r0,204r-60,0r0,-204r-81,0r0,-49r222,0r0,49","w":240},"U":{"d":"245,-109v0,77,-38,118,-108,118v-70,0,-108,-41,-108,-118r0,-144r60,0v7,76,-27,208,52,208v78,0,44,-133,51,-208r53,0r0,144","w":273},"V":{"d":"245,-253r-124,262r-4,0r-115,-262r63,0r59,138r62,-138r59,0","w":246},"W":{"d":"329,-253r-105,262r-3,0r-54,-135r-53,135r-4,0r-106,-262r61,0r49,127r53,-136r5,0r53,136r48,-127r56,0","w":333},"X":{"d":"260,0r-73,0r-62,-86r-58,86r-67,0r91,-131r-90,-122r75,0r51,72r50,-72r65,0r-81,115","w":259},"Y":{"d":"244,-253r-97,126r0,127r-60,0r0,-127r-92,-126r73,0r55,76r60,-76r61,0","w":240},"Z":{"d":"223,-53r-10,53r-214,0r0,-4r122,-196r-111,0r10,-53r201,0v-37,70,-83,132,-123,200r125,0","w":226},"[":{"d":"108,40r-94,0r0,-298r94,0r0,23r-52,0r0,253r52,0r0,22","w":119},"\\":{"d":"103,9r-26,0r-87,-271r26,0","w":100},"]":{"d":"106,40r-94,0r0,-22r52,0r0,-253r-52,0r0,-23r94,0r0,298","w":119},"^":{"d":"150,-112r-38,0r-32,-100r-32,100r-38,0r53,-150r34,0","w":159},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"`":{"d":"84,-183r-44,0r-57,-54r66,0","w":100},"a":{"d":"186,-7r-51,15r-4,-16v-49,41,-117,-3,-117,-68v0,-67,64,-111,125,-78r44,-4v1,49,-3,109,3,151xm128,-43r0,-76v-32,-16,-61,2,-61,42v0,42,33,55,61,34","w":206},"b":{"d":"192,-81v-1,71,-63,106,-133,81r-35,8r0,-256r54,-10r0,104v55,-32,115,10,114,73xm140,-80v1,-36,-32,-51,-62,-36r0,80v33,11,62,-10,62,-44","w":206},"c":{"d":"68,-77v-1,47,71,44,95,17r-5,53v-63,37,-145,1,-145,-72v0,-71,87,-108,149,-72r-5,47v-33,-26,-89,-15,-89,27","w":180},"d":{"d":"183,-2r-49,10r0,-16v-55,39,-120,1,-120,-68v0,-63,53,-106,114,-83r0,-89r55,-10r0,256xm128,-42r0,-80v-34,-11,-61,10,-61,44v0,37,32,51,61,36","w":206},"e":{"d":"101,-165v54,-1,81,38,71,93r-109,0v4,48,64,49,96,21r7,0r-6,44v-63,35,-147,7,-147,-67v0,-53,37,-91,88,-91xm132,-93v-1,-49,-65,-47,-68,0r68,0","w":186},"f":{"d":"129,-242v-36,13,-47,38,-43,84r39,0r0,43r-39,0r0,115r-55,0r0,-115r-26,0r0,-43r26,0v-1,-42,5,-71,28,-87r70,-13r0,16","w":126},"g":{"d":"183,-19v5,85,-80,114,-153,83r0,-46v27,20,103,38,98,-23v-61,23,-113,-10,-114,-71v-1,-66,64,-107,125,-75r44,-3r0,135xm128,-48r0,-67v-31,-18,-61,0,-61,38v0,39,34,49,61,29","w":206},"h":{"d":"179,0r-54,0v-5,-39,16,-112,-23,-112v-40,0,-19,73,-24,112r-54,0r0,-248r54,-10r0,119v36,-40,102,-26,101,34r0,105"},"i":{"d":"80,-218v0,17,-13,30,-30,30v-17,0,-30,-13,-30,-30v0,-17,13,-30,30,-30v17,0,30,13,30,30xm77,0r-54,0r0,-152r54,-10r0,162","w":100},"j":{"d":"80,-218v0,17,-13,30,-30,30v-17,0,-30,-13,-30,-30v0,-17,13,-30,30,-30v17,0,30,13,30,30xm-2,69v45,-36,18,-146,25,-221r54,-10v-4,73,11,173,-11,226r-68,12r0,-7","w":100},"k":{"d":"199,0r-67,0r-54,-79r0,79r-54,0r0,-248r54,-10r1,162r44,-62r60,0r-54,69","w":193},"l":{"d":"77,0r-54,0r0,-248r54,-10r0,258","w":100},"m":{"d":"279,0r-54,0v-5,-39,16,-112,-23,-112v-39,0,-18,74,-23,112r-55,0v-5,-39,16,-107,-22,-112v-40,3,-19,73,-24,112r-54,0r0,-158r52,0r0,24v33,-38,75,-40,99,3v32,-51,104,-37,104,26r0,105","w":299},"n":{"d":"179,0r-54,0v-5,-39,16,-112,-23,-112v-40,0,-19,73,-24,112r-54,0r0,-158r52,0r0,24v33,-47,103,-33,103,29r0,105"},"o":{"d":"187,-79v0,50,-36,87,-87,87v-51,0,-87,-37,-87,-87v0,-50,36,-86,87,-86v51,0,87,36,87,86xm135,-79v0,-28,-14,-46,-35,-46v-22,0,-34,17,-34,47v0,27,13,45,34,45v21,0,35,-18,35,-46"},"p":{"d":"192,-81v1,61,-52,102,-114,85r0,62r-54,10r0,-234v30,2,61,-4,86,-4v50,0,82,32,82,81xm140,-78v0,-35,-30,-57,-62,-43r0,85v32,11,62,-8,62,-42","w":206},"q":{"d":"183,66r-55,10r0,-80v-54,34,-115,-9,-114,-72v0,-64,55,-107,116,-82r53,0r0,224xm128,-42r0,-79v-31,-14,-61,9,-61,43v0,37,30,51,61,36","w":206},"r":{"d":"76,-130v15,-18,27,-38,59,-31r0,58v-31,-3,-57,-3,-57,27r0,76r-54,0r0,-158r52,0r0,28","w":140},"s":{"d":"18,-50v18,14,31,23,56,24v19,2,29,-16,17,-26v-30,-13,-78,-19,-76,-61v3,-54,74,-65,124,-38r-5,39v-19,-14,-34,-20,-49,-20v-26,0,-29,25,-2,30v35,6,62,28,62,56v0,55,-80,68,-127,40r0,-44","w":159},"t":{"d":"122,-115r-40,0v4,41,-14,99,21,110r0,5r-58,2v-29,-15,-13,-77,-17,-117r-27,0r0,-43r27,0r0,-49r54,-6r0,55r40,0r0,43","w":126},"u":{"d":"176,-7r-55,15r0,-26v-30,46,-100,28,-100,-32r0,-108r54,0v5,40,-16,112,23,116v39,-4,18,-77,23,-116r55,0r0,151"},"v":{"d":"169,-158r-85,167r-6,0r-81,-167r59,0r31,69r33,-69r49,0","w":166},"w":{"d":"247,-158r-80,167r-4,0r-41,-82r-41,82r-4,0r-77,-167r58,0r31,73r37,-81r4,0r35,84r33,-76r49,0","w":246},"x":{"d":"187,0r-66,0r-32,-45r-34,45r-55,0r63,-78r-59,-80r65,0r28,41r31,-41r54,0r-59,74","w":186},"y":{"d":"9,76v25,-28,26,-33,49,-79r-58,-155r58,0r30,85r31,-85r48,0r-76,181v-7,16,-12,27,-25,53r-57,0","w":166},"z":{"d":"165,-158r-76,116r72,0r-7,42r-154,0r75,-115r-66,0r6,-43r150,0","w":166},"{":{"d":"36,-109v42,4,46,33,45,84v0,30,10,44,33,47r0,23v-64,0,-80,-24,-76,-96v2,-30,-9,-44,-33,-47r0,-22v56,4,18,-104,47,-125v18,-13,27,-17,62,-17r0,22v-30,1,-33,32,-33,69v0,45,-7,54,-45,62","w":133},"|":{"d":"59,85r-38,0r0,-360r38,0r0,360","w":79},"}":{"d":"95,-186v-2,36,2,65,34,66r0,22v-56,-3,-19,102,-48,125v-17,13,-27,18,-62,18r0,-23v30,-2,34,-30,34,-68v0,-46,6,-55,44,-63v-44,-2,-45,-34,-44,-84v0,-30,-11,-44,-34,-47r0,-22v58,1,78,12,76,76","w":133},"~":{"d":"63,-111v21,0,69,27,89,27v12,0,19,-9,27,-32r17,0v-15,87,-76,37,-133,25v-12,0,-20,10,-26,31r-17,0v6,-33,22,-51,43,-51","w":216},"\u00c4":{"d":"260,0r-63,0r-16,-37r-105,0r-16,37r-60,0r129,-262r5,0xm163,-80r-35,-82r-34,82r69,0xm196,-303v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27xm120,-303v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27","w":259},"\u00c5":{"d":"260,0r-63,0r-16,-37r-105,0r-16,37r-60,0r129,-262r5,0xm163,-80r-35,-82r-34,82r69,0xm170,-312v0,22,-18,41,-40,41v-22,0,-40,-19,-40,-41v0,-22,18,-40,40,-40v22,0,40,18,40,40xm149,-312v0,-10,-9,-18,-19,-18v-10,0,-19,8,-19,18v0,10,9,19,19,19v10,0,19,-9,19,-19","w":259},"\u00c7":{"d":"152,-49v34,0,57,-10,79,-29r-5,66v-31,17,-41,20,-85,21r-9,14v23,-7,47,5,46,26v-1,36,-55,41,-88,24r6,-16v21,8,46,13,49,-6v3,-20,-32,-5,-38,-18r15,-26v-64,-9,-108,-65,-108,-134v0,-110,123,-171,211,-112r-5,65v-40,-55,-144,-44,-144,44v0,49,29,81,76,81","w":253},"\u00c9":{"d":"179,0r-149,0r0,-253r149,0r0,51r-89,0r0,47r74,0r0,52r-74,0r0,51r89,0r0,52xm167,-327r-57,54r-44,0r35,-54r66,0","w":200},"\u00d1":{"d":"251,9r-6,0r-161,-149r0,140r-55,0r0,-262r6,0r162,149r0,-140r54,0r0,262xm208,-323v-9,61,-51,47,-95,33v-8,0,-13,4,-16,15r-25,0v6,-47,43,-56,80,-37v17,9,25,7,31,-11r25,0","w":280},"\u00d6":{"d":"266,-127v0,76,-55,136,-126,136v-71,0,-126,-60,-126,-136v0,-76,55,-135,126,-135v71,0,126,59,126,135xm204,-127v0,-47,-25,-77,-64,-77v-39,0,-64,30,-64,77v0,47,25,78,64,78v39,0,64,-31,64,-78xm206,-303v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27xm130,-303v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27","w":280},"\u00dc":{"d":"245,-109v0,77,-38,118,-108,118v-70,0,-108,-41,-108,-118r0,-144r60,0v7,76,-27,208,52,208v78,0,44,-133,51,-208r53,0r0,144xm205,-303v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27xm129,-303v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27","w":273},"\u00e1":{"d":"186,-7r-51,15r-4,-16v-49,41,-117,-3,-117,-68v0,-67,64,-111,125,-78r44,-4v1,49,-3,109,3,151xm128,-43r0,-76v-32,-16,-61,2,-61,42v0,42,33,55,61,34xm170,-237r-57,54r-44,0r35,-54r66,0","w":206},"\u00e0":{"d":"186,-7r-51,15r-4,-16v-49,41,-117,-3,-117,-68v0,-67,64,-111,125,-78r44,-4v1,49,-3,109,3,151xm128,-43r0,-76v-32,-16,-61,2,-61,42v0,42,33,55,61,34xm140,-183r-44,0r-57,-54r66,0","w":206},"\u00e2":{"d":"186,-7r-51,15r-4,-16v-49,41,-117,-3,-117,-68v0,-67,64,-111,125,-78r44,-4v1,49,-3,109,3,151xm128,-43r0,-76v-32,-16,-61,2,-61,42v0,42,33,55,61,34xm171,-183r-46,0r-22,-29r-22,29r-46,0r41,-54r54,0","w":206},"\u00e4":{"d":"186,-7r-51,15r-4,-16v-49,41,-117,-3,-117,-68v0,-67,64,-111,125,-78r44,-4v1,49,-3,109,3,151xm128,-43r0,-76v-32,-16,-61,2,-61,42v0,42,33,55,61,34xm169,-213v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27xm93,-213v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27","w":206},"\u00e3":{"d":"186,-7r-51,15r-4,-16v-49,41,-117,-3,-117,-68v0,-67,64,-111,125,-78r44,-4v1,49,-3,109,3,151xm128,-43r0,-76v-32,-16,-61,2,-61,42v0,42,33,55,61,34xm177,-233v-9,61,-51,47,-95,33v-8,0,-13,4,-16,15r-25,0v6,-47,43,-56,80,-37v17,9,25,7,31,-11r25,0","w":206},"\u00e5":{"d":"186,-7r-51,15r-4,-16v-49,41,-117,-3,-117,-68v0,-67,64,-111,125,-78r44,-4v1,49,-3,109,3,151xm128,-43r0,-76v-32,-16,-61,2,-61,42v0,42,33,55,61,34xm144,-222v0,22,-19,41,-41,41v-22,0,-40,-19,-40,-41v0,-22,18,-40,40,-40v22,0,41,18,41,40xm122,-222v0,-10,-9,-18,-19,-18v-10,0,-18,8,-18,18v0,10,8,19,18,19v10,0,19,-9,19,-19","w":206},"\u00e7":{"d":"68,-77v-1,47,71,44,95,17r-5,53v-20,10,-34,14,-55,15r-10,15v23,-7,47,5,46,26v-1,36,-55,40,-89,24r7,-16v20,8,45,13,48,-6v3,-20,-32,-5,-38,-18r17,-27v-44,-8,-71,-41,-71,-85v0,-71,87,-108,149,-72r-5,47v-33,-26,-89,-15,-89,27","w":180},"\u00e9":{"d":"101,-165v54,-1,81,38,71,93r-109,0v4,48,64,49,96,21r7,0r-6,44v-63,35,-147,7,-147,-67v0,-53,37,-91,88,-91xm132,-93v-1,-49,-65,-47,-68,0r68,0xm160,-237r-57,54r-44,0r35,-54r66,0","w":186},"\u00e8":{"d":"101,-165v54,-1,81,38,71,93r-109,0v4,48,64,49,96,21r7,0r-6,44v-63,35,-147,7,-147,-67v0,-53,37,-91,88,-91xm132,-93v-1,-49,-65,-47,-68,0r68,0xm140,-183r-44,0r-57,-54r66,0","w":186},"\u00ea":{"d":"101,-165v54,-1,81,38,71,93r-109,0v4,48,64,49,96,21r7,0r-6,44v-63,35,-147,7,-147,-67v0,-53,37,-91,88,-91xm132,-93v-1,-49,-65,-47,-68,0r68,0xm168,-183r-46,0r-22,-29r-22,29r-46,0r41,-54r54,0","w":186},"\u00eb":{"d":"101,-165v54,-1,81,38,71,93r-109,0v4,48,64,49,96,21r7,0r-6,44v-63,35,-147,7,-147,-67v0,-53,37,-91,88,-91xm132,-93v-1,-49,-65,-47,-68,0r68,0xm166,-213v0,15,-13,28,-28,28v-15,0,-27,-13,-27,-28v0,-15,12,-27,27,-27v15,0,28,12,28,27xm90,-213v0,15,-13,28,-28,28v-15,0,-27,-13,-27,-28v0,-15,12,-27,27,-27v15,0,28,12,28,27","w":186},"\u00ed":{"d":"77,0r-54,0r0,-152r54,-10r0,162xm117,-237r-57,54r-44,0r35,-54r66,0","w":100},"\u00ec":{"d":"77,0r-54,0r0,-152r54,-10r0,162xm84,-183r-44,0r-57,-54r66,0","w":100},"\u00ee":{"d":"77,0r-54,0r0,-152r54,-10r0,162xm118,-183r-47,0r-21,-29r-22,29r-46,0r40,-54r55,0","w":100},"\u00ef":{"d":"77,0r-54,0r0,-152r54,-10r0,162xm116,-213v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27xm40,-213v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27","w":100},"\u00f1":{"d":"179,0r-54,0v-5,-39,16,-112,-23,-112v-40,0,-19,73,-24,112r-54,0r0,-158r52,0r0,24v33,-47,103,-33,103,29r0,105xm168,-233v-9,61,-52,46,-96,33v-8,0,-12,4,-15,15r-26,0v6,-46,44,-57,80,-37v17,9,25,7,31,-11r26,0"},"\u00f3":{"d":"187,-79v0,50,-36,87,-87,87v-51,0,-87,-37,-87,-87v0,-50,36,-86,87,-86v51,0,87,36,87,86xm135,-79v0,-28,-14,-46,-35,-46v-22,0,-34,17,-34,47v0,27,13,45,34,45v21,0,35,-18,35,-46xm167,-237r-58,54r-43,0r35,-54r66,0"},"\u00f2":{"d":"187,-79v0,50,-36,87,-87,87v-51,0,-87,-37,-87,-87v0,-50,36,-86,87,-86v51,0,87,36,87,86xm135,-79v0,-28,-14,-46,-35,-46v-22,0,-34,17,-34,47v0,27,13,45,34,45v21,0,35,-18,35,-46xm137,-183r-43,0r-58,-54r66,0"},"\u00f4":{"d":"187,-79v0,50,-36,87,-87,87v-51,0,-87,-37,-87,-87v0,-50,36,-86,87,-86v51,0,87,36,87,86xm135,-79v0,-28,-14,-46,-35,-46v-22,0,-34,17,-34,47v0,27,13,45,34,45v21,0,35,-18,35,-46xm167,-183r-46,0r-22,-29r-21,29r-46,0r40,-54r55,0"},"\u00f6":{"d":"187,-79v0,50,-36,87,-87,87v-51,0,-87,-37,-87,-87v0,-50,36,-86,87,-86v51,0,87,36,87,86xm135,-79v0,-28,-14,-46,-35,-46v-22,0,-34,17,-34,47v0,27,13,45,34,45v21,0,35,-18,35,-46xm166,-213v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27xm90,-213v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27"},"\u00f5":{"d":"187,-79v0,50,-36,87,-87,87v-51,0,-87,-37,-87,-87v0,-50,36,-86,87,-86v51,0,87,36,87,86xm135,-79v0,-28,-14,-46,-35,-46v-22,0,-34,17,-34,47v0,27,13,45,34,45v21,0,35,-18,35,-46xm168,-233v-9,61,-52,46,-96,33v-8,0,-12,4,-15,15r-26,0v6,-46,44,-57,80,-37v17,9,25,7,31,-11r26,0"},"\u00fa":{"d":"176,-7r-55,15r0,-26v-30,46,-100,28,-100,-32r0,-108r54,0v5,40,-16,112,23,116v39,-4,18,-77,23,-116r55,0r0,151xm167,-237r-58,54r-43,0r35,-54r66,0"},"\u00f9":{"d":"176,-7r-55,15r0,-26v-30,46,-100,28,-100,-32r0,-108r54,0v5,40,-16,112,23,116v39,-4,18,-77,23,-116r55,0r0,151xm134,-183r-43,0r-58,-54r66,0"},"\u00fb":{"d":"176,-7r-55,15r0,-26v-30,46,-100,28,-100,-32r0,-108r54,0v5,40,-16,112,23,116v39,-4,18,-77,23,-116r55,0r0,151xm167,-183r-46,0r-22,-29r-21,29r-46,0r40,-54r55,0"},"\u00fc":{"d":"176,-7r-55,15r0,-26v-30,46,-100,28,-100,-32r0,-108r54,0v5,40,-16,112,23,116v39,-4,18,-77,23,-116r55,0r0,151xm166,-213v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27xm90,-213v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27"},"\u2020":{"d":"156,-162r-59,-14r14,60r-14,146r-14,0r-14,-146r14,-60r-59,14r0,-42r59,15r-14,-73r42,0r-14,73r59,-15r0,42","w":180},"\u00b0":{"d":"120,-209v0,29,-24,53,-53,53v-29,0,-53,-24,-53,-53v0,-29,24,-53,53,-53v29,0,53,24,53,53xm97,-209v0,-17,-13,-31,-30,-31v-17,0,-31,14,-31,31v0,17,14,30,31,30v17,0,30,-13,30,-30","w":133},"\u00a2":{"d":"115,-44v26,-1,37,-7,55,-20r-5,53v-23,11,-41,17,-65,14r-17,49r-25,0r18,-53v-34,-12,-57,-44,-57,-82v0,-56,47,-92,112,-85r14,-42r26,0r-16,48v6,2,8,3,14,7r-6,47v-11,-6,-15,-8,-23,-11xm116,-121v-42,-1,-57,52,-24,71"},"\u00a3":{"d":"197,-39v-14,63,-87,54,-132,21v-19,13,-32,22,-55,27r0,-57v27,-13,37,-31,35,-65r-35,0r0,-32r30,0v-16,-67,3,-113,67,-113v36,0,61,15,77,39r-42,30v-8,-30,-51,-33,-51,3v0,10,2,23,7,41r55,0r0,32r-52,0v1,22,-4,36,-12,60v35,18,48,27,70,-2"},"\u00a7":{"d":"74,-218v10,37,87,77,87,120v0,22,-11,32,-39,40v34,32,20,89,-32,88v-23,0,-40,-8,-58,-30r27,-19v5,22,45,32,48,4v-4,-23,-11,-23,-30,-43v-40,-43,-46,-38,-58,-82v0,-22,13,-35,38,-41v-32,-33,-17,-81,33,-81v22,0,40,9,55,28r-26,19v-10,-15,-16,-20,-27,-20v-11,0,-18,7,-18,17xm53,-143v0,10,41,61,60,62v8,0,14,-5,14,-15v-8,-24,-42,-62,-60,-62v-8,0,-14,7,-14,15","w":180},"\u2022":{"d":"143,-127v0,35,-28,64,-63,64v-35,0,-63,-29,-63,-64v0,-35,28,-63,63,-63v35,0,63,28,63,63","w":159},"\u00b6":{"d":"74,-110v-46,0,-71,-28,-71,-72v0,-44,28,-71,71,-71r114,0r0,29r-19,0r0,256r-34,0r0,-256r-27,0r0,256r-34,0r0,-142"},"\u00df":{"d":"24,0v8,-103,-36,-258,76,-258v77,0,103,86,43,117v33,12,49,35,49,74v0,57,-48,93,-96,66r0,-41v20,21,46,4,44,-34v-1,-31,-9,-44,-40,-46r0,-34v19,0,27,-10,27,-31v0,-22,-9,-35,-26,-35v-15,0,-23,12,-23,36r0,186r-54,0","w":206},"\u00ae":{"d":"285,-127v0,75,-60,136,-135,136v-75,0,-135,-61,-135,-136v0,-75,60,-135,135,-135v75,0,135,60,135,135xm261,-127v0,-62,-49,-112,-111,-112v-62,0,-111,50,-111,112v0,62,49,113,111,113v62,0,111,-51,111,-113xm177,-121v33,1,33,40,37,69r-38,0v-2,-34,-2,-60,-46,-53r0,53r-37,0r0,-150v56,-1,122,-6,120,45v0,22,-12,33,-36,36xm175,-154v2,-18,-20,-22,-45,-21r0,43v24,1,47,-2,45,-22","w":299},"\u00a9":{"d":"285,-127v0,75,-60,136,-135,136v-75,0,-135,-61,-135,-136v0,-75,60,-135,135,-135v75,0,135,60,135,135xm261,-127v0,-62,-49,-112,-111,-112v-62,0,-111,50,-111,112v0,62,49,113,111,113v62,0,111,-51,111,-113xm218,-105v-4,35,-30,58,-65,58v-43,0,-76,-34,-76,-80v0,-47,31,-80,73,-80v37,0,66,24,68,58r-33,0v-3,-17,-15,-27,-32,-27v-21,0,-35,18,-35,48v0,54,57,68,67,23r33,0","w":299},"\u2122":{"d":"287,-102r-31,0r0,-120r-31,120r-28,0r-31,-120r0,120r-32,0r0,-151r51,0r26,100r25,-100r51,0r0,151xm120,-225r-40,0r0,123r-34,0r0,-123r-39,0r0,-28r113,0r0,28","w":320},"\u00b4":{"d":"117,-237r-57,54r-44,0r35,-54r66,0","w":100},"\u00a8":{"d":"116,-213v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27xm40,-213v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27","w":100},"\u2260":{"d":"196,-36r-91,0r-14,36r-38,0r14,-36r-47,0r0,-37r63,0r12,-30r-75,0r0,-37r91,0r14,-36r38,0r-14,36r47,0r0,37r-63,0r-12,30r75,0r0,37","w":216},"\u00c6":{"d":"299,0r-145,0r0,-65r-72,0r-27,65r-59,0r118,-253r185,0r0,51r-86,0r0,47r71,0r0,52r-71,0r0,51r86,0r0,52xm154,-107r0,-101r-10,0r-42,101r52,0","w":320},"\u00d8":{"d":"277,-262r-40,47v67,81,10,224,-97,224v-28,0,-52,-9,-75,-26r-23,26r-41,0r42,-49v-67,-82,-9,-222,97,-222v27,0,53,9,74,25r21,-25r42,0xm176,-193v-60,-42,-125,36,-92,106xm140,-49v53,0,79,-69,56,-119r-93,107v11,8,23,12,37,12","w":280},"\u221e":{"d":"209,-88v0,60,-78,82,-101,28v-23,53,-101,32,-101,-28v0,-60,77,-82,101,-28v24,-53,101,-32,101,28xm172,-88v-2,-28,-36,-24,-44,0v9,24,42,28,44,0xm88,-88v-9,-23,-42,-29,-44,0v2,28,36,25,44,0","w":216},"\u00b1":{"d":"196,-93r-69,0r0,43r-38,0r0,-43r-69,0r0,-37r69,0r0,-46r38,0r0,46r69,0r0,37xm196,0r-176,0r0,-37r176,0r0,37","w":216},"\u2264":{"d":"196,-44r-176,-55r0,-30r176,-55r0,37r-116,33r116,33r0,37xm196,0r-176,0r0,-37r176,0r0,37","w":216},"\u2265":{"d":"196,-99r-176,55r0,-37r116,-33r-116,-33r0,-37r176,55r0,30xm196,0r-176,0r0,-37r176,0r0,37","w":216},"\u00a5":{"d":"200,-253r-37,74r28,0r0,31r-44,0r-13,27r53,0r0,31r-59,0r0,90r-56,0r0,-90r-59,0r0,-31r53,0r-13,-27r-44,0r0,-31r28,0r-37,-74r61,0r39,91r39,-91r61,0"},"\u03bc":{"d":"121,-18v-6,22,-29,36,-46,17r0,67r-54,10r0,-234r54,0v5,40,-16,112,23,116v39,-4,18,-77,23,-116r55,0r0,151r-55,15r0,-26"},"\u2202":{"d":"190,-135v0,82,-47,144,-109,144v-44,0,-76,-33,-76,-78v0,-69,88,-120,133,-69v6,-50,-21,-105,-58,-76r-27,-35v75,-39,137,14,137,114xm125,-77v0,-20,-12,-35,-30,-35v-20,0,-37,19,-37,43v0,20,13,33,31,33v20,0,36,-18,36,-41"},"\u2211":{"d":"215,0r-203,0r0,-41r93,-91r-88,-81r0,-40r195,0r0,53r-109,0r75,72r-78,75r115,0r0,53","w":226},"\u220f":{"d":"265,-202r-26,0r0,202r-60,0r0,-202r-78,0r0,202r-60,0r0,-202r-26,0r0,-51r250,0r0,51","w":280},"\u03c0":{"d":"219,0v-43,9,-80,1,-80,-48r0,-96r-53,0r0,144r-55,0r0,-144r-25,0r0,-41r213,0r0,41r-25,0r0,96v-2,16,11,18,25,15r0,33","w":226},"\u222b":{"d":"25,28v31,16,41,0,41,-45v0,-68,-2,-168,18,-217v13,-31,56,-34,92,-21r-4,40v-34,-16,-41,4,-43,47r-6,160v0,77,-42,98,-102,76"},"\u00aa":{"d":"121,-160r-33,8r-3,-9v-33,24,-76,-2,-76,-44v0,-45,41,-70,81,-50r29,-2v1,31,-2,70,2,97xm83,-185r0,-46v-20,-9,-39,2,-39,25v0,26,22,34,39,21","w":133},"\u00ba":{"d":"123,-207v0,32,-23,55,-56,55v-33,0,-57,-23,-57,-55v0,-32,24,-55,57,-55v33,0,56,23,56,55xm89,-207v0,-17,-8,-27,-22,-27v-14,0,-23,10,-23,28v0,17,9,27,23,27v14,0,22,-11,22,-28","w":133},"\u03a9":{"d":"140,-262v122,0,169,151,78,214r48,0r0,48r-106,0r0,-48v61,-31,62,-158,-20,-156v-40,0,-64,27,-64,71v0,37,14,64,44,85r0,48r-106,0r0,-48r48,0v-93,-63,-40,-214,78,-214","w":280},"\u00e6":{"d":"8,-37v0,-44,43,-53,102,-53v5,-46,-50,-40,-79,-22r0,-40v37,-17,80,-19,110,4v53,-40,146,-8,125,76r-109,0v4,49,62,49,95,21r7,0r-6,44v-41,22,-89,20,-121,-6v-37,27,-124,34,-124,-24xm225,-93v-1,-49,-65,-47,-68,0r68,0xm109,-34r0,-34v-30,-1,-49,8,-48,24v1,23,32,26,48,10","w":280},"\u00f8":{"d":"197,-170r-30,34v45,53,8,144,-67,144v-18,0,-34,-5,-48,-13r-15,17r-35,0r30,-35v-45,-53,-5,-142,68,-142v18,0,33,4,47,12r14,-17r36,0xm117,-120v-33,-19,-58,15,-50,57xm81,-39v35,23,64,-20,51,-58"},"\u00bf":{"d":"132,-164v0,17,-12,30,-29,30v-17,0,-31,-13,-31,-30v0,-17,14,-30,31,-30v17,0,29,13,29,30xm125,-46v-33,7,-57,18,-60,45v-2,26,41,32,70,23r-4,49v-60,18,-121,-12,-121,-65v0,-40,26,-70,69,-83r0,-25r46,-8r0,64","w":159},"\u00a1":{"d":"80,-164v0,17,-13,30,-30,30v-17,0,-30,-13,-30,-30v0,-17,13,-30,30,-30v17,0,30,13,30,30xm83,67r-68,9v2,-77,21,-119,30,-186r17,3r20,141","w":100},"\u00ac":{"d":"196,-36r-38,0r0,-67r-138,0r0,-37r176,0r0,104","w":216},"\u221a":{"d":"230,-333r-106,342r-39,0r-48,-160r-31,19r-14,-25r69,-39r43,162r95,-299r31,0","w":200},"\u0192":{"d":"76,-155v7,-70,45,-118,118,-98r-9,45v-36,-17,-55,-4,-55,53r50,0r0,41r-54,0v-7,95,-16,204,-122,182r9,-47v68,24,46,-81,58,-135r-49,0r0,-41r54,0"},"\u2248":{"d":"196,-112v-53,60,-125,-41,-176,19r0,-38v53,-60,124,43,176,-18r0,37xm196,-45v-36,44,-89,-3,-129,-3v-16,0,-31,8,-47,22r0,-38v53,-60,124,43,176,-18r0,37","w":216},"\u0394":{"d":"258,0r-256,0r101,-262r54,0xm190,-44r-60,-161r-61,161r121,0","w":259},"\u00ab":{"d":"180,-21r-43,0r-43,-58r42,-57r43,0r-43,57xm106,-21r-42,0r-43,-58r42,-57r42,0r-42,57","w":200},"\u00bb":{"d":"180,-79r-44,58r-42,0r43,-58r-42,-57r42,0xm106,-79r-43,58r-42,0r43,-58r-43,-57r43,0","w":200},"\u2026":{"d":"330,-23v0,17,-13,31,-30,31v-17,0,-30,-14,-30,-31v0,-17,13,-30,30,-30v17,0,30,13,30,30xm210,-23v0,17,-13,31,-30,31v-17,0,-30,-14,-30,-31v0,-17,13,-30,30,-30v17,0,30,13,30,30xm90,-23v0,17,-13,31,-30,31v-17,0,-30,-14,-30,-31v0,-17,13,-30,30,-30v17,0,30,13,30,30","w":360},"\u00a0":{"w":180},"\u00c0":{"d":"260,0r-63,0r-16,-37r-105,0r-16,37r-60,0r129,-262r5,0xm163,-80r-35,-82r-34,82r69,0xm164,-273r-44,0r-57,-54r66,0","w":259},"\u00c3":{"d":"260,0r-63,0r-16,-37r-105,0r-16,37r-60,0r129,-262r5,0xm163,-80r-35,-82r-34,82r69,0xm198,-323v-9,61,-51,47,-95,33v-8,0,-13,4,-16,15r-25,0v5,-47,43,-56,79,-37v17,9,26,7,31,-11r26,0","w":259},"\u00d5":{"d":"266,-127v0,76,-55,136,-126,136v-71,0,-126,-60,-126,-136v0,-76,55,-135,126,-135v71,0,126,59,126,135xm204,-127v0,-47,-25,-77,-64,-77v-39,0,-64,30,-64,77v0,47,25,78,64,78v39,0,64,-31,64,-78xm208,-323v-9,61,-51,47,-95,33v-8,0,-13,4,-16,15r-25,0v6,-47,43,-56,80,-37v17,9,25,7,31,-11r25,0","w":280},"\u0152":{"d":"313,0r-168,0v-80,0,-131,-49,-131,-127v0,-78,51,-126,131,-126r168,0r0,51r-86,0r0,47r71,0r0,52r-71,0r0,51r86,0r0,52xm168,-53r0,-149v-54,-14,-95,20,-95,74v0,56,40,88,95,75","w":333},"\u0153":{"d":"158,-144v55,-48,152,-10,129,72r-109,0v3,48,64,49,96,21r6,0r-5,44v-41,21,-85,21,-120,-5v-55,47,-143,6,-143,-67v0,-76,92,-112,146,-65xm247,-93v-1,-23,-13,-36,-33,-36v-19,0,-31,12,-35,36r68,0xm133,-79v0,-28,-13,-46,-34,-46v-22,0,-35,17,-35,47v0,27,14,45,35,45v21,0,34,-18,34,-46","w":299},"\u2013":{"d":"200,-63r-200,0r0,-32r200,0r0,32"},"\u2014":{"d":"360,-63r-360,0r0,-32r360,0r0,32","w":360},"\u201c":{"d":"170,-262r-27,94r-50,0r34,-94r43,0xm90,-262r-31,94r-49,0r38,-94r42,0","w":180},"\u201d":{"d":"170,-262r-27,94r-50,0r34,-94r43,0xm90,-262r-31,94r-49,0r38,-94r42,0","w":180},"\u2018":{"d":"90,-262r-31,94r-49,0r38,-94r42,0","w":100},"\u2019":{"d":"90,-262r-31,94r-49,0r38,-94r42,0","w":100},"\u00f7":{"d":"136,-152v0,15,-13,29,-28,29v-15,0,-28,-14,-28,-29v0,-16,13,-28,28,-28v15,0,28,12,28,28xm196,-69r-176,0r0,-38r176,0r0,38xm136,-24v0,16,-13,28,-28,28v-15,0,-28,-12,-28,-28v0,-15,13,-28,28,-28v15,0,28,13,28,28","w":216},"\u25ca":{"d":"176,-127r-85,136r-85,-136r85,-135xm137,-127r-46,-75r-46,75r46,75","w":180},"\u00ff":{"d":"9,76v25,-28,26,-33,49,-79r-58,-155r58,0r30,85r31,-85r48,0r-76,181v-7,16,-12,27,-25,53r-57,0xm152,-213v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27xm76,-213v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27","w":166},"\u0178":{"d":"244,-253r-97,126r0,127r-60,0r0,-127r-92,-126r73,0r55,76r60,-76r61,0xm189,-303v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27xm113,-303v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27","w":240},"\u2044":{"d":"120,-262r-154,271r-26,0r154,-271r26,0","w":60},"\u2039":{"d":"106,-21r-42,0r-43,-58r42,-57r42,0r-42,57","w":126},"\u203a":{"d":"106,-79r-43,58r-42,0r43,-58r-43,-57r43,0","w":126},"\ufb01":{"d":"200,-218v0,17,-13,30,-30,30v-17,0,-30,-13,-30,-30v0,-17,13,-30,30,-30v17,0,30,13,30,30xm197,0r-54,0r0,-152r54,-10r0,162xm125,-242v-36,13,-46,38,-42,84r39,0r0,43r-39,0r0,115r-55,0r0,-115r-18,0r0,-43r18,0v-1,-42,5,-71,28,-87r69,-13r0,16","w":219},"\ufb02":{"d":"197,0r-54,0r0,-248r54,-10r0,258xm125,-242v-36,13,-46,38,-42,84r39,0r0,43r-39,0r0,115r-55,0r0,-115r-18,0r0,-43r18,0v-1,-42,5,-71,28,-87r69,-13r0,16","w":219},"\u2021":{"d":"156,-28r-59,-14r14,72r-42,0r14,-72r-59,14r0,-42r59,15r-14,-61r14,-60r-59,14r0,-42r59,15r-14,-73r42,0r-14,73r59,-15r0,42r-59,-14r14,60r-14,61r59,-15r0,42","w":180},"\u00b7":{"d":"80,-79v0,17,-13,30,-30,30v-17,0,-30,-13,-30,-30v0,-17,13,-30,30,-30v17,0,30,13,30,30","w":100},"\u201a":{"d":"89,-49r-31,94r-49,0r37,-94r43,0","w":100},"\u201e":{"d":"169,-49r-28,94r-49,0r34,-94r43,0xm89,-49r-31,94r-49,0r37,-94r43,0","w":180},"\u2030":{"d":"370,-54v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54v30,0,54,24,54,54xm124,-199v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54v30,0,54,24,54,54xm215,-262r-149,271r-26,0r149,-271r26,0xm239,-54v0,30,-24,54,-54,54v-30,0,-54,-24,-54,-54v0,-30,24,-54,54,-54v30,0,54,24,54,54xm341,-54v0,-14,-12,-24,-25,-24v-14,0,-24,10,-24,24v0,14,10,24,24,24v13,0,25,-10,25,-24xm95,-199v0,-14,-11,-25,-25,-25v-13,0,-24,11,-24,25v0,14,11,24,24,24v14,0,25,-10,25,-24xm209,-54v0,-14,-11,-24,-24,-24v-14,0,-25,10,-25,24v0,14,11,24,25,24v13,0,24,-10,24,-24","w":386},"\u00c2":{"d":"260,0r-63,0r-16,-37r-105,0r-16,37r-60,0r129,-262r5,0xm163,-80r-35,-82r-34,82r69,0xm198,-273r-47,0r-21,-29r-22,29r-46,0r40,-54r55,0","w":259},"\u00ca":{"d":"179,0r-149,0r0,-253r149,0r0,51r-89,0r0,47r74,0r0,52r-74,0r0,51r89,0r0,52xm171,-273r-47,0r-21,-29r-22,29r-46,0r40,-54r55,0","w":200},"\u00c1":{"d":"260,0r-63,0r-16,-37r-105,0r-16,37r-60,0r129,-262r5,0xm163,-80r-35,-82r-34,82r69,0xm197,-327r-57,54r-44,0r35,-54r66,0","w":259},"\u00cb":{"d":"179,0r-149,0r0,-253r149,0r0,51r-89,0r0,47r74,0r0,52r-74,0r0,51r89,0r0,52xm166,-303v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27xm90,-303v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27","w":200},"\u00c8":{"d":"179,0r-149,0r0,-253r149,0r0,51r-89,0r0,47r74,0r0,52r-74,0r0,51r89,0r0,52xm137,-273r-44,0r-57,-54r66,0","w":200},"\u00cd":{"d":"90,0r-60,0r0,-253r60,0r0,253xm127,-327r-57,54r-44,0r35,-54r66,0","w":120},"\u00ce":{"d":"90,0r-60,0r0,-253r60,0r0,253xm128,-273r-47,0r-21,-29r-22,29r-46,0r40,-54r55,0","w":120},"\u00cf":{"d":"90,0r-60,0r0,-253r60,0r0,253xm126,-303v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27xm50,-303v0,15,-13,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-27,28,-27v15,0,28,12,28,27","w":120},"\u00cc":{"d":"90,0r-60,0r0,-253r60,0r0,253xm94,-273r-44,0r-57,-54r66,0","w":120},"\u00d3":{"d":"266,-127v0,76,-55,136,-126,136v-71,0,-126,-60,-126,-136v0,-76,55,-135,126,-135v71,0,126,59,126,135xm204,-127v0,-47,-25,-77,-64,-77v-39,0,-64,30,-64,77v0,47,25,78,64,78v39,0,64,-31,64,-78xm207,-327r-57,54r-44,0r35,-54r66,0","w":280},"\u00d4":{"d":"266,-127v0,76,-55,136,-126,136v-71,0,-126,-60,-126,-136v0,-76,55,-135,126,-135v71,0,126,59,126,135xm204,-127v0,-47,-25,-77,-64,-77v-39,0,-64,30,-64,77v0,47,25,78,64,78v39,0,64,-31,64,-78xm208,-273r-47,0r-21,-29r-22,29r-46,0r40,-54r55,0","w":280},"\u00d2":{"d":"266,-127v0,76,-55,136,-126,136v-71,0,-126,-60,-126,-136v0,-76,55,-135,126,-135v71,0,126,59,126,135xm204,-127v0,-47,-25,-77,-64,-77v-39,0,-64,30,-64,77v0,47,25,78,64,78v39,0,64,-31,64,-78xm174,-273r-44,0r-57,-54r66,0","w":280},"\u00da":{"d":"245,-109v0,77,-38,118,-108,118v-70,0,-108,-41,-108,-118r0,-144r60,0v7,76,-27,208,52,208v78,0,44,-133,51,-208r53,0r0,144xm203,-327r-57,54r-43,0r35,-54r65,0","w":273},"\u00db":{"d":"245,-109v0,77,-38,118,-108,118v-70,0,-108,-41,-108,-118r0,-144r60,0v7,76,-27,208,52,208v78,0,44,-133,51,-208r53,0r0,144xm208,-273r-47,0r-21,-29r-22,29r-46,0r40,-54r55,0","w":273},"\u00d9":{"d":"245,-109v0,77,-38,118,-108,118v-70,0,-108,-41,-108,-118r0,-144r60,0v7,76,-27,208,52,208v78,0,44,-133,51,-208r53,0r0,144xm180,-273r-43,0r-57,-54r65,0","w":273},"\u0131":{"d":"77,0r-54,0r0,-152r54,-10r0,162","w":100},"\u02c6":{"d":"118,-183r-47,0r-21,-29r-22,29r-46,0r40,-54r55,0","w":100},"\u02dc":{"d":"118,-233v-9,61,-51,47,-95,33v-8,0,-13,4,-16,15r-25,0v6,-47,43,-56,80,-37v17,9,25,7,31,-11r25,0","w":100},"\u00af":{"d":"115,-195r-130,0r0,-30r130,0r0,30","w":100},"\u02d8":{"d":"113,-238v-4,39,-23,55,-63,55v-40,0,-59,-16,-63,-55r26,0v3,18,13,25,37,25v24,0,34,-7,37,-25r26,0","w":100},"\u02d9":{"d":"80,-213v0,17,-13,30,-30,30v-17,0,-30,-13,-30,-30v0,-17,13,-30,30,-30v17,0,30,13,30,30","w":100},"\u02da":{"d":"90,-222v0,22,-18,41,-40,41v-22,0,-40,-19,-40,-41v0,-22,18,-40,40,-40v22,0,40,18,40,40xm69,-222v0,-10,-9,-18,-19,-18v-10,0,-19,8,-19,18v0,10,9,19,19,19v10,0,19,-9,19,-19","w":100},"\u00b8":{"d":"82,49v-1,36,-55,40,-89,24r7,-16v20,8,45,13,48,-6v3,-20,-32,-5,-38,-18r20,-33r20,0r-14,23v23,-7,47,5,46,26","w":100},"\u02dd":{"d":"146,-237r-47,54r-44,0r35,-54r56,0xm76,-237r-37,56r-39,0r23,-56r53,0","w":100},"\u02db":{"d":"86,5v-23,7,-45,21,-47,39v5,21,28,15,48,5r7,16v-31,22,-88,28,-88,-15v0,-28,27,-46,80,-54r0,9","w":100},"\u02c7":{"d":"118,-237r-41,54r-55,0r-40,-54r46,0r22,29r21,-29r47,0","w":100},"\u00a4":{"d":"197,-242r-16,57v-30,-38,-74,-25,-87,14r83,0r-9,31r-80,0r0,27r73,0r-9,31r-58,0v12,47,68,43,96,14r-5,64v-72,38,-143,-10,-151,-78r-32,0r9,-31r19,0r0,-27r-28,0r9,-31r23,0v13,-81,96,-116,163,-71"},"\u20ac":{"d":"197,-242r-16,57v-30,-38,-74,-25,-87,14r83,0r-9,31r-80,0r0,27r73,0r-9,31r-58,0v12,47,68,43,96,14r-5,64v-72,38,-143,-10,-151,-78r-32,0r9,-31r19,0r0,-27r-28,0r9,-31r23,0v13,-81,96,-116,163,-71"}}});
;
/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - jQuery Easing
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2008 George McGinley Smith
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
*/

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

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

/*
 *
 * TERMS OF USE - EASING EQUATIONS
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2001 Robert Penner
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
 */;
/**
 * jQuery.ScrollTo - Easy element scrolling using jQuery.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 5/25/2009
 * @author Ariel Flesler
 * @version 1.4.2
 *
 * http://flesler.blogspot.com/2007/10/jqueryscrollto.html
 */
;(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);;
﻿/**
 * jQuery.timers - Timer abstractions for jQuery
 * Written by Blair Mitchelmore (blair DOT mitchelmore AT gmail DOT com)
 * Licensed under the WTFPL (http://sam.zoy.org/wtfpl/).
 * Date: 2009/10/16
 *
 * @author Blair Mitchelmore
 * @version 1.2
 *
 **/

jQuery.fn.extend({
	everyTime: function(interval, label, fn, times) {
		return this.each(function() {
			jQuery.timer.add(this, interval, label, fn, times);
		});
	},
	oneTime: function(interval, label, fn) {
		return this.each(function() {
			jQuery.timer.add(this, interval, label, fn, 1);
		});
	},
	stopTime: function(label, fn) {
		return this.each(function() {
			jQuery.timer.remove(this, label, fn);
		});
	}
});

jQuery.extend({
	timer: {
		global: [],
		guid: 1,
		dataKey: "jQuery.timer",
		regex: /^([0-9]+(?:\.[0-9]*)?)\s*(.*s)?$/,
		powers: {
			// Yeah this is major overkill...
			'ms': 1,
			'cs': 10,
			'ds': 100,
			's': 1000,
			'das': 10000,
			'hs': 100000,
			'ks': 1000000
		},
		timeParse: function(value) {
			if (value == undefined || value == null)
				return null;
			var result = this.regex.exec(jQuery.trim(value.toString()));
			if (result[2]) {
				var num = parseFloat(result[1]);
				var mult = this.powers[result[2]] || 1;
				return num * mult;
			} else {
				return value;
			}
		},
		add: function(element, interval, label, fn, times) {
			var counter = 0;
			
			if (jQuery.isFunction(label)) {
				if (!times) 
					times = fn;
				fn = label;
				label = interval;
			}
			
			interval = jQuery.timer.timeParse(interval);

			if (typeof interval != 'number' || isNaN(interval) || interval < 0)
				return;

			if (typeof times != 'number' || isNaN(times) || times < 0) 
				times = 0;
			
			times = times || 0;
			
			var timers = jQuery.data(element, this.dataKey) || jQuery.data(element, this.dataKey, {});
			
			if (!timers[label])
				timers[label] = {};
			
			fn.timerID = fn.timerID || this.guid++;
			
			var handler = function() {
				if ((++counter > times && times !== 0) || fn.call(element, counter) === false)
					jQuery.timer.remove(element, label, fn);
			};
			
			handler.timerID = fn.timerID;
			
			if (!timers[label][fn.timerID])
				timers[label][fn.timerID] = window.setInterval(handler,interval);
			
			this.global.push( element );
			
		},
		remove: function(element, label, fn) {
			var timers = jQuery.data(element, this.dataKey), ret;
			
			if ( timers ) {
				
				if (!label) {
					for ( label in timers )
						this.remove(element, label, fn);
				} else if ( timers[label] ) {
					if ( fn ) {
						if ( fn.timerID ) {
							window.clearInterval(timers[label][fn.timerID]);
							delete timers[label][fn.timerID];
						}
					} else {
						for ( var fn in timers[label] ) {
							window.clearInterval(timers[label][fn]);
							delete timers[label][fn];
						}
					}
					
					for ( ret in timers[label] ) break;
					if ( !ret ) {
						ret = null;
						delete timers[label];
					}
				}
				
				for ( ret in timers ) break;
				if ( !ret ) 
					jQuery.removeData(element, this.dataKey);
			}
		}
	}
});

jQuery(window).bind("unload", function() {
	jQuery.each(jQuery.timer.global, function(index, item) {
		jQuery.timer.remove(item);
	});
});;
(function($) {
  var cache = [];
  // Arguments are image paths relative to the current page.
  $.preLoadImages = function() {
    var args_len = arguments.length;
    for (var i = args_len; i--;) {
      var cacheImage = document.createElement('img');
      cacheImage.src = arguments[i];
      cache.push(cacheImage);
    }
  }
})(jQuery);

$(document).ready(function() {
  jQuery.preLoadImages("/sites/default/themes/enspectacle/img/menu-groupes-on.png",
		  			   "/sites/default/themes/enspectacle/img/menu-joindre-on.png",
		  			   "/sites/default/themes/enspectacle/img/menu-membres-on.png",
		  			   "/sites/default/themes/enspectacle/img/menu-billeterie-on.png"
		               );
});;
/*
 * jquery.qtip. The jQuery tooltip plugin
 *
 * Copyright (c) 2009 Craig Thompson
 * http://craigsworks.com
 *
 * Licensed under MIT
 * http://www.opensource.org/licenses/mit-license.php
 *
 * Launch  : February 2009
 * Version : 1.0.0-rc3
 * Released: Tuesday 12th May, 2009 - 00:00
 * Debug: jquery.qtip.debug.js
 */
(function(f){f.fn.qtip=function(B,u){var y,t,A,s,x,w,v,z;if(typeof B=="string"){if(typeof f(this).data("qtip")!=="object"){f.fn.qtip.log.error.call(self,1,f.fn.qtip.constants.NO_TOOLTIP_PRESENT,false)}if(B=="api"){return f(this).data("qtip").interfaces[f(this).data("qtip").current]}else{if(B=="interfaces"){return f(this).data("qtip").interfaces}}}else{if(!B){B={}}if(typeof B.content!=="object"||(B.content.jquery&&B.content.length>0)){B.content={text:B.content}}if(typeof B.content.title!=="object"){B.content.title={text:B.content.title}}if(typeof B.position!=="object"){B.position={corner:B.position}}if(typeof B.position.corner!=="object"){B.position.corner={target:B.position.corner,tooltip:B.position.corner}}if(typeof B.show!=="object"){B.show={when:B.show}}if(typeof B.show.when!=="object"){B.show.when={event:B.show.when}}if(typeof B.show.effect!=="object"){B.show.effect={type:B.show.effect}}if(typeof B.hide!=="object"){B.hide={when:B.hide}}if(typeof B.hide.when!=="object"){B.hide.when={event:B.hide.when}}if(typeof B.hide.effect!=="object"){B.hide.effect={type:B.hide.effect}}if(typeof B.style!=="object"){B.style={name:B.style}}B.style=c(B.style);s=f.extend(true,{},f.fn.qtip.defaults,B);s.style=a.call({options:s},s.style);s.user=f.extend(true,{},B)}return f(this).each(function(){if(typeof B=="string"){w=B.toLowerCase();A=f(this).qtip("interfaces");if(typeof A=="object"){if(u===true&&w=="destroy"){while(A.length>0){A[A.length-1].destroy()}}else{if(u!==true){A=[f(this).qtip("api")]}for(y=0;y<A.length;y++){if(w=="destroy"){A[y].destroy()}else{if(A[y].status.rendered===true){if(w=="show"){A[y].show()}else{if(w=="hide"){A[y].hide()}else{if(w=="focus"){A[y].focus()}else{if(w=="disable"){A[y].disable(true)}else{if(w=="enable"){A[y].disable(false)}}}}}}}}}}}else{v=f.extend(true,{},s);v.hide.effect.length=s.hide.effect.length;v.show.effect.length=s.show.effect.length;if(v.position.container===false){v.position.container=f(document.body)}if(v.position.target===false){v.position.target=f(this)}if(v.show.when.target===false){v.show.when.target=f(this)}if(v.hide.when.target===false){v.hide.when.target=f(this)}t=f.fn.qtip.interfaces.length;for(y=0;y<t;y++){if(typeof f.fn.qtip.interfaces[y]=="undefined"){t=y;break}}x=new d(f(this),v,t);f.fn.qtip.interfaces[t]=x;if(typeof f(this).data("qtip")=="object"){if(typeof f(this).attr("qtip")==="undefined"){f(this).data("qtip").current=f(this).data("qtip").interfaces.length}f(this).data("qtip").interfaces.push(x)}else{f(this).data("qtip",{current:0,interfaces:[x]})}if(v.content.prerender===false&&v.show.when.event!==false&&v.show.ready!==true){v.show.when.target.bind(v.show.when.event+".qtip-"+t+"-create",{qtip:t},function(C){z=f.fn.qtip.interfaces[C.data.qtip];z.options.show.when.target.unbind(z.options.show.when.event+".qtip-"+C.data.qtip+"-create");z.cache.mouse={x:C.pageX,y:C.pageY};p.call(z);z.options.show.when.target.trigger(z.options.show.when.event)})}else{x.cache.mouse={x:v.show.when.target.offset().left,y:v.show.when.target.offset().top};p.call(x)}}})};function d(u,t,v){var s=this;s.id=v;s.options=t;s.status={animated:false,rendered:false,disabled:false,focused:false};s.elements={target:u.addClass(s.options.style.classes.target),tooltip:null,wrapper:null,content:null,contentWrapper:null,title:null,button:null,tip:null,bgiframe:null};s.cache={mouse:{},position:{},toggle:0};s.timers={};f.extend(s,s.options.api,{show:function(y){var x,z;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"show")}if(s.elements.tooltip.css("display")!=="none"){return s}s.elements.tooltip.stop(true,false);x=s.beforeShow.call(s,y);if(x===false){return s}function w(){if(s.options.position.type!=="static"){s.focus()}s.onShow.call(s,y);if(f.browser.msie){s.elements.tooltip.get(0).style.removeAttribute("filter")}}s.cache.toggle=1;if(s.options.position.type!=="static"){s.updatePosition(y,(s.options.show.effect.length>0))}if(typeof s.options.show.solo=="object"){z=f(s.options.show.solo)}else{if(s.options.show.solo===true){z=f("div.qtip").not(s.elements.tooltip)}}if(z){z.each(function(){if(f(this).qtip("api").status.rendered===true){f(this).qtip("api").hide()}})}if(typeof s.options.show.effect.type=="function"){s.options.show.effect.type.call(s.elements.tooltip,s.options.show.effect.length);s.elements.tooltip.queue(function(){w();f(this).dequeue()})}else{switch(s.options.show.effect.type.toLowerCase()){case"fade":s.elements.tooltip.fadeIn(s.options.show.effect.length,w);break;case"slide":s.elements.tooltip.slideDown(s.options.show.effect.length,function(){w();if(s.options.position.type!=="static"){s.updatePosition(y,true)}});break;case"grow":s.elements.tooltip.show(s.options.show.effect.length,w);break;default:s.elements.tooltip.show(null,w);break}s.elements.tooltip.addClass(s.options.style.classes.active)}return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_SHOWN,"show")},hide:function(y){var x;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"hide")}else{if(s.elements.tooltip.css("display")==="none"){return s}}clearTimeout(s.timers.show);s.elements.tooltip.stop(true,false);x=s.beforeHide.call(s,y);if(x===false){return s}function w(){s.onHide.call(s,y)}s.cache.toggle=0;if(typeof s.options.hide.effect.type=="function"){s.options.hide.effect.type.call(s.elements.tooltip,s.options.hide.effect.length);s.elements.tooltip.queue(function(){w();f(this).dequeue()})}else{switch(s.options.hide.effect.type.toLowerCase()){case"fade":s.elements.tooltip.fadeOut(s.options.hide.effect.length,w);break;case"slide":s.elements.tooltip.slideUp(s.options.hide.effect.length,w);break;case"grow":s.elements.tooltip.hide(s.options.hide.effect.length,w);break;default:s.elements.tooltip.hide(null,w);break}s.elements.tooltip.removeClass(s.options.style.classes.active)}return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_HIDDEN,"hide")},updatePosition:function(w,x){var C,G,L,J,H,E,y,I,B,D,K,A,F,z;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updatePosition")}else{if(s.options.position.type=="static"){return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.CANNOT_POSITION_STATIC,"updatePosition")}}G={position:{left:0,top:0},dimensions:{height:0,width:0},corner:s.options.position.corner.target};L={position:s.getPosition(),dimensions:s.getDimensions(),corner:s.options.position.corner.tooltip};if(s.options.position.target!=="mouse"){if(s.options.position.target.get(0).nodeName.toLowerCase()=="area"){J=s.options.position.target.attr("coords").split(",");for(C=0;C<J.length;C++){J[C]=parseInt(J[C])}H=s.options.position.target.parent("map").attr("name");E=f('img[usemap="#'+H+'"]:first').offset();G.position={left:Math.floor(E.left+J[0]),top:Math.floor(E.top+J[1])};switch(s.options.position.target.attr("shape").toLowerCase()){case"rect":G.dimensions={width:Math.ceil(Math.abs(J[2]-J[0])),height:Math.ceil(Math.abs(J[3]-J[1]))};break;case"circle":G.dimensions={width:J[2]+1,height:J[2]+1};break;case"poly":G.dimensions={width:J[0],height:J[1]};for(C=0;C<J.length;C++){if(C%2==0){if(J[C]>G.dimensions.width){G.dimensions.width=J[C]}if(J[C]<J[0]){G.position.left=Math.floor(E.left+J[C])}}else{if(J[C]>G.dimensions.height){G.dimensions.height=J[C]}if(J[C]<J[1]){G.position.top=Math.floor(E.top+J[C])}}}G.dimensions.width=G.dimensions.width-(G.position.left-E.left);G.dimensions.height=G.dimensions.height-(G.position.top-E.top);break;default:return f.fn.qtip.log.error.call(s,4,f.fn.qtip.constants.INVALID_AREA_SHAPE,"updatePosition");break}G.dimensions.width-=2;G.dimensions.height-=2}else{if(s.options.position.target.add(document.body).length===1){G.position={left:f(document).scrollLeft(),top:f(document).scrollTop()};G.dimensions={height:f(window).height(),width:f(window).width()}}else{if(typeof s.options.position.target.attr("qtip")!=="undefined"){G.position=s.options.position.target.qtip("api").cache.position}else{G.position=s.options.position.target.offset()}G.dimensions={height:s.options.position.target.outerHeight(),width:s.options.position.target.outerWidth()}}}y=f.extend({},G.position);if(G.corner.search(/right/i)!==-1){y.left+=G.dimensions.width}if(G.corner.search(/bottom/i)!==-1){y.top+=G.dimensions.height}if(G.corner.search(/((top|bottom)Middle)|center/)!==-1){y.left+=(G.dimensions.width/2)}if(G.corner.search(/((left|right)Middle)|center/)!==-1){y.top+=(G.dimensions.height/2)}}else{G.position=y={left:s.cache.mouse.x,top:s.cache.mouse.y};G.dimensions={height:1,width:1}}if(L.corner.search(/right/i)!==-1){y.left-=L.dimensions.width}if(L.corner.search(/bottom/i)!==-1){y.top-=L.dimensions.height}if(L.corner.search(/((top|bottom)Middle)|center/)!==-1){y.left-=(L.dimensions.width/2)}if(L.corner.search(/((left|right)Middle)|center/)!==-1){y.top-=(L.dimensions.height/2)}I=(f.browser.msie)?1:0;B=(f.browser.msie&&parseInt(f.browser.version.charAt(0))===6)?1:0;if(s.options.style.border.radius>0){if(L.corner.search(/Left/)!==-1){y.left-=s.options.style.border.radius}else{if(L.corner.search(/Right/)!==-1){y.left+=s.options.style.border.radius}}if(L.corner.search(/Top/)!==-1){y.top-=s.options.style.border.radius}else{if(L.corner.search(/Bottom/)!==-1){y.top+=s.options.style.border.radius}}}if(I){if(L.corner.search(/top/)!==-1){y.top-=I}else{if(L.corner.search(/bottom/)!==-1){y.top+=I}}if(L.corner.search(/left/)!==-1){y.left-=I}else{if(L.corner.search(/right/)!==-1){y.left+=I}}if(L.corner.search(/leftMiddle|rightMiddle/)!==-1){y.top-=1}}if(s.options.position.adjust.screen===true){y=o.call(s,y,G,L)}if(s.options.position.target==="mouse"&&s.options.position.adjust.mouse===true){if(s.options.position.adjust.screen===true&&s.elements.tip){K=s.elements.tip.attr("rel")}else{K=s.options.position.corner.tooltip}y.left+=(K.search(/right/i)!==-1)?-6:6;y.top+=(K.search(/bottom/i)!==-1)?-6:6}if(!s.elements.bgiframe&&f.browser.msie&&parseInt(f.browser.version.charAt(0))==6){f("select, object").each(function(){A=f(this).offset();A.bottom=A.top+f(this).height();A.right=A.left+f(this).width();if(y.top+L.dimensions.height>=A.top&&y.left+L.dimensions.width>=A.left){k.call(s)}})}y.left+=s.options.position.adjust.x;y.top+=s.options.position.adjust.y;F=s.getPosition();if(y.left!=F.left||y.top!=F.top){z=s.beforePositionUpdate.call(s,w);if(z===false){return s}s.cache.position=y;if(x===true){s.status.animated=true;s.elements.tooltip.animate(y,200,"swing",function(){s.status.animated=false})}else{s.elements.tooltip.css(y)}s.onPositionUpdate.call(s,w);if(typeof w!=="undefined"&&w.type&&w.type!=="mousemove"){f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_POSITION_UPDATED,"updatePosition")}}return s},updateWidth:function(w){var x;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateWidth")}else{if(w&&typeof w!=="number"){return f.fn.qtip.log.error.call(s,2,"newWidth must be of type number","updateWidth")}}x=s.elements.contentWrapper.siblings().add(s.elements.tip).add(s.elements.button);if(!w){if(typeof s.options.style.width.value=="number"){w=s.options.style.width.value}else{s.elements.tooltip.css({width:"auto"});x.hide();if(f.browser.msie){s.elements.wrapper.add(s.elements.contentWrapper.children()).css({zoom:"normal"})}w=s.getDimensions().width+1;if(!s.options.style.width.value){if(w>s.options.style.width.max){w=s.options.style.width.max}if(w<s.options.style.width.min){w=s.options.style.width.min}}}}if(w%2!==0){w-=1}s.elements.tooltip.width(w);x.show();if(s.options.style.border.radius){s.elements.tooltip.find(".qtip-betweenCorners").each(function(y){f(this).width(w-(s.options.style.border.radius*2))})}if(f.browser.msie){s.elements.wrapper.add(s.elements.contentWrapper.children()).css({zoom:"1"});s.elements.wrapper.width(w);if(s.elements.bgiframe){s.elements.bgiframe.width(w).height(s.getDimensions.height)}}return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_WIDTH_UPDATED,"updateWidth")},updateStyle:function(w){var z,A,x,y,B;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateStyle")}else{if(typeof w!=="string"||!f.fn.qtip.styles[w]){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.STYLE_NOT_DEFINED,"updateStyle")}}s.options.style=a.call(s,f.fn.qtip.styles[w],s.options.user.style);s.elements.content.css(q(s.options.style));if(s.options.content.title.text!==false){s.elements.title.css(q(s.options.style.title,true))}s.elements.contentWrapper.css({borderColor:s.options.style.border.color});if(s.options.style.tip.corner!==false){if(f("<canvas>").get(0).getContext){z=s.elements.tooltip.find(".qtip-tip canvas:first");x=z.get(0).getContext("2d");x.clearRect(0,0,300,300);y=z.parent("div[rel]:first").attr("rel");B=b(y,s.options.style.tip.size.width,s.options.style.tip.size.height);h.call(s,z,B,s.options.style.tip.color||s.options.style.border.color)}else{if(f.browser.msie){z=s.elements.tooltip.find('.qtip-tip [nodeName="shape"]');z.attr("fillcolor",s.options.style.tip.color||s.options.style.border.color)}}}if(s.options.style.border.radius>0){s.elements.tooltip.find(".qtip-betweenCorners").css({backgroundColor:s.options.style.border.color});if(f("<canvas>").get(0).getContext){A=g(s.options.style.border.radius);s.elements.tooltip.find(".qtip-wrapper canvas").each(function(){x=f(this).get(0).getContext("2d");x.clearRect(0,0,300,300);y=f(this).parent("div[rel]:first").attr("rel");r.call(s,f(this),A[y],s.options.style.border.radius,s.options.style.border.color)})}else{if(f.browser.msie){s.elements.tooltip.find('.qtip-wrapper [nodeName="arc"]').each(function(){f(this).attr("fillcolor",s.options.style.border.color)})}}}return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_STYLE_UPDATED,"updateStyle")},updateContent:function(A,y){var z,x,w;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateContent")}else{if(!A){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.NO_CONTENT_PROVIDED,"updateContent")}}z=s.beforeContentUpdate.call(s,A);if(typeof z=="string"){A=z}else{if(z===false){return}}if(f.browser.msie){s.elements.contentWrapper.children().css({zoom:"normal"})}if(A.jquery&&A.length>0){A.clone(true).appendTo(s.elements.content).show()}else{s.elements.content.html(A)}x=s.elements.content.find("img[complete=false]");if(x.length>0){w=0;x.each(function(C){f('<img src="'+f(this).attr("src")+'" />').load(function(){if(++w==x.length){B()}})})}else{B()}function B(){s.updateWidth();if(y!==false){if(s.options.position.type!=="static"){s.updatePosition(s.elements.tooltip.is(":visible"),true)}if(s.options.style.tip.corner!==false){n.call(s)}}}s.onContentUpdate.call(s);return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_CONTENT_UPDATED,"loadContent")},loadContent:function(w,z,A){var y;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"loadContent")}y=s.beforeContentLoad.call(s);if(y===false){return s}if(A=="post"){f.post(w,z,x)}else{f.get(w,z,x)}function x(B){s.onContentLoad.call(s);f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_CONTENT_LOADED,"loadContent");s.updateContent(B)}return s},updateTitle:function(w){if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"updateTitle")}else{if(!w){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.NO_CONTENT_PROVIDED,"updateTitle")}}returned=s.beforeTitleUpdate.call(s);if(returned===false){return s}if(s.elements.button){s.elements.button=s.elements.button.clone(true)}s.elements.title.html(w);if(s.elements.button){s.elements.title.prepend(s.elements.button)}s.onTitleUpdate.call(s);return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_TITLE_UPDATED,"updateTitle")},focus:function(A){var y,x,w,z;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"focus")}else{if(s.options.position.type=="static"){return f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.CANNOT_FOCUS_STATIC,"focus")}}y=parseInt(s.elements.tooltip.css("z-index"));x=6000+f("div.qtip[qtip]").length-1;if(!s.status.focused&&y!==x){z=s.beforeFocus.call(s,A);if(z===false){return s}f("div.qtip[qtip]").not(s.elements.tooltip).each(function(){if(f(this).qtip("api").status.rendered===true){w=parseInt(f(this).css("z-index"));if(typeof w=="number"&&w>-1){f(this).css({zIndex:parseInt(f(this).css("z-index"))-1})}f(this).qtip("api").status.focused=false}});s.elements.tooltip.css({zIndex:x});s.status.focused=true;s.onFocus.call(s,A);f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_FOCUSED,"focus")}return s},disable:function(w){if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"disable")}if(w){if(!s.status.disabled){s.status.disabled=true;f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_DISABLED,"disable")}else{f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.TOOLTIP_ALREADY_DISABLED,"disable")}}else{if(s.status.disabled){s.status.disabled=false;f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_ENABLED,"disable")}else{f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.TOOLTIP_ALREADY_ENABLED,"disable")}}return s},destroy:function(){var w,x,y;x=s.beforeDestroy.call(s);if(x===false){return s}if(s.status.rendered){s.options.show.when.target.unbind("mousemove.qtip",s.updatePosition);s.options.show.when.target.unbind("mouseout.qtip",s.hide);s.options.show.when.target.unbind(s.options.show.when.event+".qtip");s.options.hide.when.target.unbind(s.options.hide.when.event+".qtip");s.elements.tooltip.unbind(s.options.hide.when.event+".qtip");s.elements.tooltip.unbind("mouseover.qtip",s.focus);s.elements.tooltip.remove()}else{s.options.show.when.target.unbind(s.options.show.when.event+".qtip-create")}if(typeof s.elements.target.data("qtip")=="object"){y=s.elements.target.data("qtip").interfaces;if(typeof y=="object"&&y.length>0){for(w=0;w<y.length-1;w++){if(y[w].id==s.id){y.splice(w,1)}}}}delete f.fn.qtip.interfaces[s.id];if(typeof y=="object"&&y.length>0){s.elements.target.data("qtip").current=y.length-1}else{s.elements.target.removeData("qtip")}s.onDestroy.call(s);f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_DESTROYED,"destroy");return s.elements.target},getPosition:function(){var w,x;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"getPosition")}w=(s.elements.tooltip.css("display")!=="none")?false:true;if(w){s.elements.tooltip.css({visiblity:"hidden"}).show()}x=s.elements.tooltip.offset();if(w){s.elements.tooltip.css({visiblity:"visible"}).hide()}return x},getDimensions:function(){var w,x;if(!s.status.rendered){return f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.TOOLTIP_NOT_RENDERED,"getDimensions")}w=(!s.elements.tooltip.is(":visible"))?true:false;if(w){s.elements.tooltip.css({visiblity:"hidden"}).show()}x={height:s.elements.tooltip.outerHeight(),width:s.elements.tooltip.outerWidth()};if(w){s.elements.tooltip.css({visiblity:"visible"}).hide()}return x}})}function p(){var s,w,u,t,v,y,x;s=this;s.beforeRender.call(s);s.status.rendered=true;s.elements.tooltip='<div qtip="'+s.id+'" class="qtip '+(s.options.style.classes.tooltip||s.options.style)+'"style="display:none; -moz-border-radius:0; -webkit-border-radius:0; border-radius:0;position:'+s.options.position.type+';">  <div class="qtip-wrapper" style="position:relative; overflow:hidden; text-align:left;">    <div class="qtip-contentWrapper" style="overflow:hidden;">       <div class="qtip-content '+s.options.style.classes.content+'"></div></div></div></div>';s.elements.tooltip=f(s.elements.tooltip);s.elements.tooltip.appendTo(s.options.position.container);s.elements.tooltip.data("qtip",{current:0,interfaces:[s]});s.elements.wrapper=s.elements.tooltip.children("div:first");s.elements.contentWrapper=s.elements.wrapper.children("div:first").css({background:s.options.style.background});s.elements.content=s.elements.contentWrapper.children("div:first").css(q(s.options.style));if(f.browser.msie){s.elements.wrapper.add(s.elements.content).css({zoom:1})}if(s.options.hide.when.event=="unfocus"){s.elements.tooltip.attr("unfocus",true)}if(typeof s.options.style.width.value=="number"){s.updateWidth()}if(f("<canvas>").get(0).getContext||f.browser.msie){if(s.options.style.border.radius>0){m.call(s)}else{s.elements.contentWrapper.css({border:s.options.style.border.width+"px solid "+s.options.style.border.color})}if(s.options.style.tip.corner!==false){e.call(s)}}else{s.elements.contentWrapper.css({border:s.options.style.border.width+"px solid "+s.options.style.border.color});s.options.style.border.radius=0;s.options.style.tip.corner=false;f.fn.qtip.log.error.call(s,2,f.fn.qtip.constants.CANVAS_VML_NOT_SUPPORTED,"render")}if((typeof s.options.content.text=="string"&&s.options.content.text.length>0)||(s.options.content.text.jquery&&s.options.content.text.length>0)){u=s.options.content.text}else{if(typeof s.elements.target.attr("title")=="string"&&s.elements.target.attr("title").length>0){u=s.elements.target.attr("title").replace("\\n","<br />");s.elements.target.attr("title","")}else{if(typeof s.elements.target.attr("alt")=="string"&&s.elements.target.attr("alt").length>0){u=s.elements.target.attr("alt").replace("\\n","<br />");s.elements.target.attr("alt","")}else{u=" ";f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.NO_VALID_CONTENT,"render")}}}if(s.options.content.title.text!==false){j.call(s)}s.updateContent(u);l.call(s);if(s.options.show.ready===true){s.show()}if(s.options.content.url!==false){t=s.options.content.url;v=s.options.content.data;y=s.options.content.method||"get";s.loadContent(t,v,y)}s.onRender.call(s);f.fn.qtip.log.error.call(s,1,f.fn.qtip.constants.EVENT_RENDERED,"render")}function m(){var F,z,t,B,x,E,u,G,D,y,w,C,A,s,v;F=this;F.elements.wrapper.find(".qtip-borderBottom, .qtip-borderTop").remove();t=F.options.style.border.width;B=F.options.style.border.radius;x=F.options.style.border.color||F.options.style.tip.color;E=g(B);u={};for(z in E){u[z]='<div rel="'+z+'" style="'+((z.search(/Left/)!==-1)?"left":"right")+":0; position:absolute; height:"+B+"px; width:"+B+'px; overflow:hidden; line-height:0.1px; font-size:1px">';if(f("<canvas>").get(0).getContext){u[z]+='<canvas height="'+B+'" width="'+B+'" style="vertical-align: top"></canvas>'}else{if(f.browser.msie){G=B*2+3;u[z]+='<v:arc stroked="false" fillcolor="'+x+'" startangle="'+E[z][0]+'" endangle="'+E[z][1]+'" style="width:'+G+"px; height:"+G+"px; margin-top:"+((z.search(/bottom/)!==-1)?-2:-1)+"px; margin-left:"+((z.search(/Right/)!==-1)?E[z][2]-3.5:-1)+'px; vertical-align:top; display:inline-block; behavior:url(#default#VML)"></v:arc>'}}u[z]+="</div>"}D=F.getDimensions().width-(Math.max(t,B)*2);y='<div class="qtip-betweenCorners" style="height:'+B+"px; width:"+D+"px; overflow:hidden; background-color:"+x+'; line-height:0.1px; font-size:1px;">';w='<div class="qtip-borderTop" dir="ltr" style="height:'+B+"px; margin-left:"+B+'px; line-height:0.1px; font-size:1px; padding:0;">'+u.topLeft+u.topRight+y;F.elements.wrapper.prepend(w);C='<div class="qtip-borderBottom" dir="ltr" style="height:'+B+"px; margin-left:"+B+'px; line-height:0.1px; font-size:1px; padding:0;">'+u.bottomLeft+u.bottomRight+y;F.elements.wrapper.append(C);if(f("<canvas>").get(0).getContext){F.elements.wrapper.find("canvas").each(function(){A=E[f(this).parent("[rel]:first").attr("rel")];r.call(F,f(this),A,B,x)})}else{if(f.browser.msie){F.elements.tooltip.append('<v:image style="behavior:url(#default#VML);"></v:image>')}}s=Math.max(B,(B+(t-B)));v=Math.max(t-B,0);F.elements.contentWrapper.css({border:"0px solid "+x,borderWidth:v+"px "+s+"px"})}function r(u,w,s,t){var v=u.get(0).getContext("2d");v.fillStyle=t;v.beginPath();v.arc(w[0],w[1],s,0,Math.PI*2,false);v.fill()}function e(v){var t,s,x,u,w;t=this;if(t.elements.tip!==null){t.elements.tip.remove()}s=t.options.style.tip.color||t.options.style.border.color;if(t.options.style.tip.corner===false){return}else{if(!v){v=t.options.style.tip.corner}}x=b(v,t.options.style.tip.size.width,t.options.style.tip.size.height);t.elements.tip='<div class="'+t.options.style.classes.tip+'" dir="ltr" rel="'+v+'" style="position:absolute; height:'+t.options.style.tip.size.height+"px; width:"+t.options.style.tip.size.width+'px; margin:0 auto; line-height:0.1px; font-size:1px;">';if(f("<canvas>").get(0).getContext){t.elements.tip+='<canvas height="'+t.options.style.tip.size.height+'" width="'+t.options.style.tip.size.width+'"></canvas>'}else{if(f.browser.msie){u=t.options.style.tip.size.width+","+t.options.style.tip.size.height;w="m"+x[0][0]+","+x[0][1];w+=" l"+x[1][0]+","+x[1][1];w+=" "+x[2][0]+","+x[2][1];w+=" xe";t.elements.tip+='<v:shape fillcolor="'+s+'" stroked="false" filled="true" path="'+w+'" coordsize="'+u+'" style="width:'+t.options.style.tip.size.width+"px; height:"+t.options.style.tip.size.height+"px; line-height:0.1px; display:inline-block; behavior:url(#default#VML); vertical-align:"+((v.search(/top/)!==-1)?"bottom":"top")+'"></v:shape>';t.elements.tip+='<v:image style="behavior:url(#default#VML);"></v:image>';t.elements.contentWrapper.css("position","relative")}}t.elements.tooltip.prepend(t.elements.tip+"</div>");t.elements.tip=t.elements.tooltip.find("."+t.options.style.classes.tip).eq(0);if(f("<canvas>").get(0).getContext){h.call(t,t.elements.tip.find("canvas:first"),x,s)}if(v.search(/top/)!==-1&&f.browser.msie&&parseInt(f.browser.version.charAt(0))===6){t.elements.tip.css({marginTop:-4})}n.call(t,v)}function h(t,v,s){var u=t.get(0).getContext("2d");u.fillStyle=s;u.beginPath();u.moveTo(v[0][0],v[0][1]);u.lineTo(v[1][0],v[1][1]);u.lineTo(v[2][0],v[2][1]);u.fill()}function n(u){var t,w,s,x,v;t=this;if(t.options.style.tip.corner===false||!t.elements.tip){return}if(!u){u=t.elements.tip.attr("rel")}w=positionAdjust=(f.browser.msie)?1:0;t.elements.tip.css(u.match(/left|right|top|bottom/)[0],0);if(u.search(/top|bottom/)!==-1){if(f.browser.msie){if(parseInt(f.browser.version.charAt(0))===6){positionAdjust=(u.search(/top/)!==-1)?-3:1}else{positionAdjust=(u.search(/top/)!==-1)?1:2}}if(u.search(/Middle/)!==-1){t.elements.tip.css({left:"50%",marginLeft:-(t.options.style.tip.size.width/2)})}else{if(u.search(/Left/)!==-1){t.elements.tip.css({left:t.options.style.border.radius-w})}else{if(u.search(/Right/)!==-1){t.elements.tip.css({right:t.options.style.border.radius+w})}}}if(u.search(/top/)!==-1){t.elements.tip.css({top:-positionAdjust})}else{t.elements.tip.css({bottom:positionAdjust})}}else{if(u.search(/left|right/)!==-1){if(f.browser.msie){positionAdjust=(parseInt(f.browser.version.charAt(0))===6)?1:((u.search(/left/)!==-1)?1:2)}if(u.search(/Middle/)!==-1){t.elements.tip.css({top:"50%",marginTop:-(t.options.style.tip.size.height/2)})}else{if(u.search(/Top/)!==-1){t.elements.tip.css({top:t.options.style.border.radius-w})}else{if(u.search(/Bottom/)!==-1){t.elements.tip.css({bottom:t.options.style.border.radius+w})}}}if(u.search(/left/)!==-1){t.elements.tip.css({left:-positionAdjust})}else{t.elements.tip.css({right:positionAdjust})}}}s="padding-"+u.match(/left|right|top|bottom/)[0];x=t.options.style.tip.size[(s.search(/left|right/)!==-1)?"width":"height"];t.elements.tooltip.css("padding",0);t.elements.tooltip.css(s,x);if(f.browser.msie&&parseInt(f.browser.version.charAt(0))==6){v=parseInt(t.elements.tip.css("margin-top"))||0;v+=parseInt(t.elements.content.css("margin-top"))||0;t.elements.tip.css({marginTop:v})}}function j(){var s=this;if(s.elements.title!==null){s.elements.title.remove()}s.elements.title=f('<div class="'+s.options.style.classes.title+'">').css(q(s.options.style.title,true)).css({zoom:(f.browser.msie)?1:0}).prependTo(s.elements.contentWrapper);if(s.options.content.title.text){s.updateTitle.call(s,s.options.content.title.text)}if(s.options.content.title.button!==false&&typeof s.options.content.title.button=="string"){s.elements.button=f('<a class="'+s.options.style.classes.button+'" style="float:right; position: relative"></a>').css(q(s.options.style.button,true)).html(s.options.content.title.button).prependTo(s.elements.title).click(function(t){if(!s.status.disabled){s.hide(t)}})}}function l(){var t,v,u,s;t=this;v=t.options.show.when.target;u=t.options.hide.when.target;if(t.options.hide.fixed){u=u.add(t.elements.tooltip)}if(t.options.hide.when.event=="inactive"){s=["click","dblclick","mousedown","mouseup","mousemove","mouseout","mouseenter","mouseleave","mouseover"];function y(z){if(t.status.disabled===true){return}clearTimeout(t.timers.inactive);t.timers.inactive=setTimeout(function(){f(s).each(function(){u.unbind(this+".qtip-inactive");t.elements.content.unbind(this+".qtip-inactive")});t.hide(z)},t.options.hide.delay)}}else{if(t.options.hide.fixed===true){t.elements.tooltip.bind("mouseover.qtip",function(){if(t.status.disabled===true){return}clearTimeout(t.timers.hide)})}}function x(z){if(t.status.disabled===true){return}if(t.options.hide.when.event=="inactive"){f(s).each(function(){u.bind(this+".qtip-inactive",y);t.elements.content.bind(this+".qtip-inactive",y)});y()}clearTimeout(t.timers.show);clearTimeout(t.timers.hide);t.timers.show=setTimeout(function(){t.show(z)},t.options.show.delay)}function w(z){if(t.status.disabled===true){return}if(t.options.hide.fixed===true&&t.options.hide.when.event.search(/mouse(out|leave)/i)!==-1&&f(z.relatedTarget).parents("div.qtip[qtip]").length>0){z.stopPropagation();z.preventDefault();clearTimeout(t.timers.hide);return false}clearTimeout(t.timers.show);clearTimeout(t.timers.hide);t.elements.tooltip.stop(true,true);t.timers.hide=setTimeout(function(){t.hide(z)},t.options.hide.delay)}if((t.options.show.when.target.add(t.options.hide.when.target).length===1&&t.options.show.when.event==t.options.hide.when.event&&t.options.hide.when.event!=="inactive")||t.options.hide.when.event=="unfocus"){t.cache.toggle=0;v.bind(t.options.show.when.event+".qtip",function(z){if(t.cache.toggle==0){x(z)}else{w(z)}})}else{v.bind(t.options.show.when.event+".qtip",x);if(t.options.hide.when.event!=="inactive"){u.bind(t.options.hide.when.event+".qtip",w)}}if(t.options.position.type.search(/(fixed|absolute)/)!==-1){t.elements.tooltip.bind("mouseover.qtip",t.focus)}if(t.options.position.target==="mouse"&&t.options.position.type!=="static"){v.bind("mousemove.qtip",function(z){t.cache.mouse={x:z.pageX,y:z.pageY};if(t.status.disabled===false&&t.options.position.adjust.mouse===true&&t.options.position.type!=="static"&&t.elements.tooltip.css("display")!=="none"){t.updatePosition(z)}})}}function o(u,v,A){var z,s,x,y,t,w;z=this;if(A.corner=="center"){return v.position}s=f.extend({},u);y={x:false,y:false};t={left:(s.left<f.fn.qtip.cache.screen.scroll.left),right:(s.left+A.dimensions.width+2>=f.fn.qtip.cache.screen.width+f.fn.qtip.cache.screen.scroll.left),top:(s.top<f.fn.qtip.cache.screen.scroll.top),bottom:(s.top+A.dimensions.height+2>=f.fn.qtip.cache.screen.height+f.fn.qtip.cache.screen.scroll.top)};x={left:(t.left&&(A.corner.search(/right/i)!=-1||(A.corner.search(/right/i)==-1&&!t.right))),right:(t.right&&(A.corner.search(/left/i)!=-1||(A.corner.search(/left/i)==-1&&!t.left))),top:(t.top&&A.corner.search(/top/i)==-1),bottom:(t.bottom&&A.corner.search(/bottom/i)==-1)};if(x.left){if(z.options.position.target!=="mouse"){s.left=v.position.left+v.dimensions.width}else{s.left=z.cache.mouse.x}y.x="Left"}else{if(x.right){if(z.options.position.target!=="mouse"){s.left=v.position.left-A.dimensions.width}else{s.left=z.cache.mouse.x-A.dimensions.width}y.x="Right"}}if(x.top){if(z.options.position.target!=="mouse"){s.top=v.position.top+v.dimensions.height}else{s.top=z.cache.mouse.y}y.y="top"}else{if(x.bottom){if(z.options.position.target!=="mouse"){s.top=v.position.top-A.dimensions.height}else{s.top=z.cache.mouse.y-A.dimensions.height}y.y="bottom"}}if(s.left<0){s.left=u.left;y.x=false}if(s.top<0){s.top=u.top;y.y=false}if(z.options.style.tip.corner!==false){s.corner=new String(A.corner);if(y.x!==false){s.corner=s.corner.replace(/Left|Right|Middle/,y.x)}if(y.y!==false){s.corner=s.corner.replace(/top|bottom/,y.y)}if(s.corner!==z.elements.tip.attr("rel")){e.call(z,s.corner)}}return s}function q(u,t){var v,s;v=f.extend(true,{},u);for(s in v){if(t===true&&s.search(/(tip|classes)/i)!==-1){delete v[s]}else{if(!t&&s.search(/(width|border|tip|title|classes|user)/i)!==-1){delete v[s]}}}return v}function c(s){if(typeof s.tip!=="object"){s.tip={corner:s.tip}}if(typeof s.tip.size!=="object"){s.tip.size={width:s.tip.size,height:s.tip.size}}if(typeof s.border!=="object"){s.border={width:s.border}}if(typeof s.width!=="object"){s.width={value:s.width}}if(typeof s.width.max=="string"){s.width.max=parseInt(s.width.max.replace(/([0-9]+)/i,"$1"))}if(typeof s.width.min=="string"){s.width.min=parseInt(s.width.min.replace(/([0-9]+)/i,"$1"))}if(typeof s.tip.size.x=="number"){s.tip.size.width=s.tip.size.x;delete s.tip.size.x}if(typeof s.tip.size.y=="number"){s.tip.size.height=s.tip.size.y;delete s.tip.size.y}return s}function a(){var s,t,u,x,v,w;s=this;u=[true,{}];for(t=0;t<arguments.length;t++){u.push(arguments[t])}x=[f.extend.apply(f,u)];while(typeof x[0].name=="string"){x.unshift(c(f.fn.qtip.styles[x[0].name]))}x.unshift(true,{classes:{tooltip:"qtip-"+(arguments[0].name||"defaults")}},f.fn.qtip.styles.defaults);v=f.extend.apply(f,x);w=(f.browser.msie)?1:0;v.tip.size.width+=w;v.tip.size.height+=w;if(v.tip.size.width%2>0){v.tip.size.width+=1}if(v.tip.size.height%2>0){v.tip.size.height+=1}if(v.tip.corner===true){v.tip.corner=(s.options.position.corner.tooltip==="center")?false:s.options.position.corner.tooltip}return v}function b(v,u,t){var s={bottomRight:[[0,0],[u,t],[u,0]],bottomLeft:[[0,0],[u,0],[0,t]],topRight:[[0,t],[u,0],[u,t]],topLeft:[[0,0],[0,t],[u,t]],topMiddle:[[0,t],[u/2,0],[u,t]],bottomMiddle:[[0,0],[u,0],[u/2,t]],rightMiddle:[[0,0],[u,t/2],[0,t]],leftMiddle:[[u,0],[u,t],[0,t/2]]};s.leftTop=s.bottomRight;s.rightTop=s.bottomLeft;s.leftBottom=s.topRight;s.rightBottom=s.topLeft;return s[v]}function g(s){var t;if(f("<canvas>").get(0).getContext){t={topLeft:[s,s],topRight:[0,s],bottomLeft:[s,0],bottomRight:[0,0]}}else{if(f.browser.msie){t={topLeft:[-90,90,0],topRight:[-90,90,-s],bottomLeft:[90,270,0],bottomRight:[90,270,-s]}}}return t}function k(){var s,t,u;s=this;u=s.getDimensions();t='<iframe class="qtip-bgiframe" frameborder="0" tabindex="-1" src="javascript:false" style="display:block; position:absolute; z-index:-1; filter:alpha(opacity=\'0\'); border: 1px solid red; height:'+u.height+"px; width:"+u.width+'px" />';s.elements.bgiframe=s.elements.wrapper.prepend(t).children(".qtip-bgiframe:first")}f(document).ready(function(){f.fn.qtip.cache={screen:{scroll:{left:f(window).scrollLeft(),top:f(window).scrollTop()},width:f(window).width(),height:f(window).height()}};var s;f(window).bind("resize scroll",function(t){clearTimeout(s);s=setTimeout(function(){if(t.type==="scroll"){f.fn.qtip.cache.screen.scroll={left:f(window).scrollLeft(),top:f(window).scrollTop()}}else{f.fn.qtip.cache.screen.width=f(window).width();f.fn.qtip.cache.screen.height=f(window).height()}for(i=0;i<f.fn.qtip.interfaces.length;i++){var u=f.fn.qtip.interfaces[i];if(u.status.rendered===true&&(u.options.position.type!=="static"||u.options.position.adjust.scroll&&t.type==="scroll"||u.options.position.adjust.resize&&t.type==="resize")){u.updatePosition(t,true)}}},100)});f(document).bind("mousedown.qtip",function(t){if(f(t.target).parents("div.qtip").length===0){f(".qtip[unfocus]").each(function(){var u=f(this).qtip("api");if(f(this).is(":visible")&&!u.status.disabled&&f(t.target).add(u.elements.target).length>1){u.hide(t)}})}})});f.fn.qtip.interfaces=[];f.fn.qtip.log={error:function(){return this}};f.fn.qtip.constants={};f.fn.qtip.defaults={content:{prerender:false,text:false,url:false,data:null,title:{text:false,button:false}},position:{target:false,corner:{target:"bottomRight",tooltip:"topLeft"},adjust:{x:0,y:0,mouse:true,screen:false,scroll:true,resize:true},type:"absolute",container:false},show:{when:{target:false,event:"mouseover"},effect:{type:"fade",length:100},delay:140,solo:false,ready:false},hide:{when:{target:false,event:"mouseout"},effect:{type:"fade",length:100},delay:0,fixed:false},api:{beforeRender:function(){},onRender:function(){},beforePositionUpdate:function(){},onPositionUpdate:function(){},beforeShow:function(){},onShow:function(){},beforeHide:function(){},onHide:function(){},beforeContentUpdate:function(){},onContentUpdate:function(){},beforeContentLoad:function(){},onContentLoad:function(){},beforeTitleUpdate:function(){},onTitleUpdate:function(){},beforeDestroy:function(){},onDestroy:function(){},beforeFocus:function(){},onFocus:function(){}}};f.fn.qtip.styles={defaults:{background:"white",color:"#111",overflow:"hidden",textAlign:"left",width:{min:0,max:250},padding:"5px 9px",border:{width:1,radius:0,color:"#d3d3d3"},tip:{corner:false,color:false,size:{width:13,height:13},opacity:1},title:{background:"#e1e1e1",fontWeight:"bold",padding:"7px 12px"},button:{cursor:"pointer"},classes:{target:"",tip:"qtip-tip",title:"qtip-title",button:"qtip-button",content:"qtip-content",active:"qtip-active"}},cream:{border:{width:3,radius:0,color:"#F9E98E"},title:{background:"#F0DE7D",color:"#A27D35"},background:"#FBF7AA",color:"#A27D35",classes:{tooltip:"qtip-cream"}},light:{border:{width:3,radius:0,color:"#E2E2E2"},title:{background:"#f1f1f1",color:"#454545"},background:"white",color:"#454545",classes:{tooltip:"qtip-light"}},dark:{border:{width:3,radius:0,color:"#303030"},title:{background:"#404040",color:"#f3f3f3"},background:"#505050",color:"#f3f3f3",classes:{tooltip:"qtip-dark"}},red:{border:{width:3,radius:0,color:"#CE6F6F"},title:{background:"#f28279",color:"#9C2F2F"},background:"#F79992",color:"#9C2F2F",classes:{tooltip:"qtip-red"}},green:{border:{width:3,radius:0,color:"#A9DB66"},title:{background:"#b9db8c",color:"#58792E"},background:"#CDE6AC",color:"#58792E",classes:{tooltip:"qtip-green"}},blue:{border:{width:3,radius:0,color:"#ADD9ED"},title:{background:"#D0E9F5",color:"#5E99BD"},background:"#E5F6FE",color:"#4D9FBF",classes:{tooltip:"qtip-blue"}}}})(jQuery);;
Drupal.behaviors.faq = function (context) {
  $('.question', context).click(function () {
	if ($(this).hasClass('on')) {
	  $(this).removeClass('on');
      $(this).next('.reponse').slideUp(100);
	} else {
	  $(this).addClass('on');
	  $(this).next('.reponse').slideDown(100);
	}
  });
};;
Drupal.behaviors.promotions = function (context) {
	var promos = Drupal.settings.es_envedette.promotions;
	var location = window.location.pathname;
	
	var filteredPromotions = new Array();
	
	for(var i = 0; i < promos.length; i++) {
	  if (location.indexOf(promos[i].link) == -1) {
		filteredPromotions[filteredPromotions.length] = promos[i];
		jQuery.preLoadImages(promos[i].img);
      }
	}
	Drupal.settings.es_envedette.promotions = filteredPromotions; 
	
	
	// find random promo 
	Drupal.settings.es_envedette.promotions_index = Math.floor(Math.random()*filteredPromotions.length+1) - 1;
	var promo = filteredPromotions[Drupal.settings.es_envedette.promotions_index];
	
	if (typeof promo != 'undefined') {
		$('#box-promo', context).html('<a href="' + promo['link'] + '" target="' + promo['target'] + '"><img src="' + promo['img'] + '" alt="" /></a>');
		$('#box-promo', context).append('<a href="' + promo['link'] + '" target="' + promo['target'] + '"><img src="' + promo['img'] + '" alt="" /></a>');
	}
	
	if (Drupal.settings.es_envedette.promotions.length > 1) {
	  $("#box-promo", context).everyTime('5s', function(i) {
		var lastPromo = Drupal.settings.es_envedette.promotions[Drupal.settings.es_envedette.promotions_index];
		  
		Drupal.settings.es_envedette.promotions_index++;
		if (Drupal.settings.es_envedette.promotions_index ==  Drupal.settings.es_envedette.promotions.length)
			Drupal.settings.es_envedette.promotions_index = 0;

		var promo =  Drupal.settings.es_envedette.promotions[Drupal.settings.es_envedette.promotions_index];
		
		$("#box-promo-slider").scrollTo('0', 0, {axis: 'x', easing: 'easeOutQuad'});
		$(this).html('<a href="' + lastPromo['link'] + '" target="' + promo['target'] + '"><img src="' + lastPromo['img'] + '" alt="" /></a>');
		$(this).append('<a href="' + promo['link'] + '" target="' + promo['target'] + '"><img src="' + promo['img'] + '" alt="" /></a>');
		
		$("#box-promo-slider").scrollTo('+=343px', 250, {axis: 'x', easing: 'easeOutQuad'});
		
	  });
	}
	
};


;
/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 *
 * Version: 1.3.1 (05/03/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

(function(b){var m,u,x,g,D,i,z,A,B,p=0,e={},q=[],n=0,c={},j=[],E=null,s=new Image,G=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,S=/[^\.]\.(swf)\s*$/i,H,I=1,k,l,h=false,y=b.extend(b("<div/>")[0],{prop:0}),v=0,O=!b.support.opacity&&!window.XMLHttpRequest,J=function(){u.hide();s.onerror=s.onload=null;E&&E.abort();m.empty()},P=function(){b.fancybox('<p id="fancybox_error">The requested content cannot be loaded.<br />Please try again later.</p>',{scrolling:"no",padding:20,transitionIn:"none",transitionOut:"none"})},
K=function(){return[b(window).width(),b(window).height(),b(document).scrollLeft(),b(document).scrollTop()]},T=function(){var a=K(),d={},f=c.margin,o=c.autoScale,t=(20+f)*2,w=(20+f)*2,r=c.padding*2;if(c.width.toString().indexOf("%")>-1){d.width=a[0]*parseFloat(c.width)/100-40;o=false}else d.width=c.width+r;if(c.height.toString().indexOf("%")>-1){d.height=a[1]*parseFloat(c.height)/100-40;o=false}else d.height=c.height+r;if(o&&(d.width>a[0]-t||d.height>a[1]-w))if(e.type=="image"||e.type=="swf"){t+=r;
w+=r;o=Math.min(Math.min(a[0]-t,c.width)/c.width,Math.min(a[1]-w,c.height)/c.height);d.width=Math.round(o*(d.width-r))+r;d.height=Math.round(o*(d.height-r))+r}else{d.width=Math.min(d.width,a[0]-t);d.height=Math.min(d.height,a[1]-w)}d.top=a[3]+(a[1]-(d.height+40))*0.5;d.left=a[2]+(a[0]-(d.width+40))*0.5;if(c.autoScale===false){d.top=Math.max(a[3]+f,d.top);d.left=Math.max(a[2]+f,d.left)}return d},U=function(a){if(a&&a.length)switch(c.titlePosition){case "inside":return a;case "over":return'<span id="fancybox-title-over">'+
a+"</span>";default:return'<span id="fancybox-title-wrap"><span id="fancybox-title-left"></span><span id="fancybox-title-main">'+a+'</span><span id="fancybox-title-right"></span></span>'}return false},V=function(){var a=c.title,d=l.width-c.padding*2,f="fancybox-title-"+c.titlePosition;b("#fancybox-title").remove();v=0;if(c.titleShow!==false){a=b.isFunction(c.titleFormat)?c.titleFormat(a,j,n,c):U(a);if(!(!a||a==="")){b('<div id="fancybox-title" class="'+f+'" />').css({width:d,paddingLeft:c.padding,
paddingRight:c.padding}).html(a).appendTo("body");switch(c.titlePosition){case "inside":v=b("#fancybox-title").outerHeight(true)-c.padding;l.height+=v;break;case "over":b("#fancybox-title").css("bottom",c.padding);break;default:b("#fancybox-title").css("bottom",b("#fancybox-title").outerHeight(true)*-1);break}b("#fancybox-title").appendTo(D).hide()}}},W=function(){b(document).unbind("keydown.fb").bind("keydown.fb",function(a){if(a.keyCode==27&&c.enableEscapeButton){a.preventDefault();b.fancybox.close()}else if(a.keyCode==
37){a.preventDefault();b.fancybox.prev()}else if(a.keyCode==39){a.preventDefault();b.fancybox.next()}});if(b.fn.mousewheel){g.unbind("mousewheel.fb");j.length>1&&g.bind("mousewheel.fb",function(a,d){a.preventDefault();h||d===0||(d>0?b.fancybox.prev():b.fancybox.next())})}if(c.showNavArrows){if(c.cyclic&&j.length>1||n!==0)A.show();if(c.cyclic&&j.length>1||n!=j.length-1)B.show()}},X=function(){var a,d;if(j.length-1>n){a=j[n+1].href;if(typeof a!=="undefined"&&a.match(G)){d=new Image;d.src=a}}if(n>0){a=
j[n-1].href;if(typeof a!=="undefined"&&a.match(G)){d=new Image;d.src=a}}},L=function(){i.css("overflow",c.scrolling=="auto"?c.type=="image"||c.type=="iframe"||c.type=="swf"?"hidden":"auto":c.scrolling=="yes"?"auto":"visible");if(!b.support.opacity){i.get(0).style.removeAttribute("filter");g.get(0).style.removeAttribute("filter")}b("#fancybox-title").show();c.hideOnContentClick&&i.one("click",b.fancybox.close);c.hideOnOverlayClick&&x.one("click",b.fancybox.close);c.showCloseButton&&z.show();W();b(window).bind("resize.fb",
b.fancybox.center);c.centerOnScroll?b(window).bind("scroll.fb",b.fancybox.center):b(window).unbind("scroll.fb");b.isFunction(c.onComplete)&&c.onComplete(j,n,c);h=false;X()},M=function(a){var d=Math.round(k.width+(l.width-k.width)*a),f=Math.round(k.height+(l.height-k.height)*a),o=Math.round(k.top+(l.top-k.top)*a),t=Math.round(k.left+(l.left-k.left)*a);g.css({width:d+"px",height:f+"px",top:o+"px",left:t+"px"});d=Math.max(d-c.padding*2,0);f=Math.max(f-(c.padding*2+v*a),0);i.css({width:d+"px",height:f+
"px"});if(typeof l.opacity!=="undefined")g.css("opacity",a<0.5?0.5:a)},Y=function(a){var d=a.offset();d.top+=parseFloat(a.css("paddingTop"))||0;d.left+=parseFloat(a.css("paddingLeft"))||0;d.top+=parseFloat(a.css("border-top-width"))||0;d.left+=parseFloat(a.css("border-left-width"))||0;d.width=a.width();d.height=a.height();return d},Q=function(){var a=e.orig?b(e.orig):false,d={};if(a&&a.length){a=Y(a);d={width:a.width+c.padding*2,height:a.height+c.padding*2,top:a.top-c.padding-20,left:a.left-c.padding-
20}}else{a=K();d={width:1,height:1,top:a[3]+a[1]*0.5,left:a[2]+a[0]*0.5}}return d},N=function(){u.hide();if(g.is(":visible")&&b.isFunction(c.onCleanup))if(c.onCleanup(j,n,c)===false){b.event.trigger("fancybox-cancel");h=false;return}j=q;n=p;c=e;i.get(0).scrollTop=0;i.get(0).scrollLeft=0;if(c.overlayShow){O&&b("select:not(#fancybox-tmp select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one("fancybox-cleanup",function(){this.style.visibility="inherit"});
x.css({"background-color":c.overlayColor,opacity:c.overlayOpacity}).unbind().show()}l=T();V();if(g.is(":visible")){b(z.add(A).add(B)).hide();var a=g.position(),d;k={top:a.top,left:a.left,width:g.width(),height:g.height()};d=k.width==l.width&&k.height==l.height;i.fadeOut(c.changeFade,function(){var f=function(){i.html(m.contents()).fadeIn(c.changeFade,L)};b.event.trigger("fancybox-change");i.empty().css("overflow","hidden");if(d){i.css({top:c.padding,left:c.padding,width:Math.max(l.width-c.padding*
2,1),height:Math.max(l.height-c.padding*2-v,1)});f()}else{i.css({top:c.padding,left:c.padding,width:Math.max(k.width-c.padding*2,1),height:Math.max(k.height-c.padding*2,1)});y.prop=0;b(y).animate({prop:1},{duration:c.changeSpeed,easing:c.easingChange,step:M,complete:f})}})}else{g.css("opacity",1);if(c.transitionIn=="elastic"){k=Q();i.css({top:c.padding,left:c.padding,width:Math.max(k.width-c.padding*2,1),height:Math.max(k.height-c.padding*2,1)}).html(m.contents());g.css(k).show();if(c.opacity)l.opacity=
0;y.prop=0;b(y).animate({prop:1},{duration:c.speedIn,easing:c.easingIn,step:M,complete:L})}else{i.css({top:c.padding,left:c.padding,width:Math.max(l.width-c.padding*2,1),height:Math.max(l.height-c.padding*2-v,1)}).html(m.contents());g.css(l).fadeIn(c.transitionIn=="none"?0:c.speedIn,L)}}},F=function(){m.width(e.width);m.height(e.height);if(e.width=="auto")e.width=m.width();if(e.height=="auto")e.height=m.height();N()},Z=function(){h=true;e.width=s.width;e.height=s.height;b("<img />").attr({id:"fancybox-img",
src:s.src,alt:e.title}).appendTo(m);N()},C=function(){J();var a=q[p],d,f,o,t,w;e=b.extend({},b.fn.fancybox.defaults,typeof b(a).data("fancybox")=="undefined"?e:b(a).data("fancybox"));o=a.title||b(a).title||e.title||"";if(a.nodeName&&!e.orig)e.orig=b(a).children("img:first").length?b(a).children("img:first"):b(a);if(o===""&&e.orig)o=e.orig.attr("alt");d=a.nodeName&&/^(?:javascript|#)/i.test(a.href)?e.href||null:e.href||a.href||null;if(e.type){f=e.type;if(!d)d=e.content}else if(e.content)f="html";else if(d)if(d.match(G))f=
"image";else if(d.match(S))f="swf";else if(b(a).hasClass("iframe"))f="iframe";else if(d.match(/#/)){a=d.substr(d.indexOf("#"));f=b(a).length>0?"inline":"ajax"}else f="ajax";else f="inline";e.type=f;e.href=d;e.title=o;if(e.autoDimensions&&e.type!=="iframe"&&e.type!=="swf"){e.width="auto";e.height="auto"}if(e.modal){e.overlayShow=true;e.hideOnOverlayClick=false;e.hideOnContentClick=false;e.enableEscapeButton=false;e.showCloseButton=false}if(b.isFunction(e.onStart))if(e.onStart(q,p,e)===false){h=false;
return}m.css("padding",20+e.padding+e.margin);b(".fancybox-inline-tmp").unbind("fancybox-cancel").bind("fancybox-change",function(){b(this).replaceWith(i.children())});switch(f){case "html":m.html(e.content);F();break;case "inline":b('<div class="fancybox-inline-tmp" />').hide().insertBefore(b(a)).bind("fancybox-cleanup",function(){b(this).replaceWith(i.children())}).bind("fancybox-cancel",function(){b(this).replaceWith(m.children())});b(a).appendTo(m);F();break;case "image":h=false;b.fancybox.showActivity();
s=new Image;s.onerror=function(){P()};s.onload=function(){s.onerror=null;s.onload=null;Z()};s.src=d;break;case "swf":t='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+e.width+'" height="'+e.height+'"><param name="movie" value="'+d+'"></param>';w="";b.each(e.swf,function(r,R){t+='<param name="'+r+'" value="'+R+'"></param>';w+=" "+r+'="'+R+'"'});t+='<embed src="'+d+'" type="application/x-shockwave-flash" width="'+e.width+'" height="'+e.height+'"'+w+"></embed></object>";m.html(t);
F();break;case "ajax":a=d.split("#",2);f=e.ajax.data||{};if(a.length>1){d=a[0];if(typeof f=="string")f+="&selector="+a[1];else f.selector=a[1]}h=false;b.fancybox.showActivity();E=b.ajax(b.extend(e.ajax,{url:d,data:f,error:P,success:function(r){if(E.status==200){m.html(r);F()}}}));break;case "iframe":b('<iframe id="fancybox-frame" name="fancybox-frame'+(new Date).getTime()+'" frameborder="0" hspace="0" scrolling="'+e.scrolling+'" src="'+e.href+'"></iframe>').appendTo(m);N();break}},$=function(){if(u.is(":visible")){b("div",
u).css("top",I*-40+"px");I=(I+1)%12}else clearInterval(H)},aa=function(){if(!b("#fancybox-wrap").length){b("body").append(m=b('<div id="fancybox-tmp"></div>'),u=b('<div id="fancybox-loading"><div></div></div>'),x=b('<div id="fancybox-overlay"></div>'),g=b('<div id="fancybox-wrap"></div>'));if(!b.support.opacity){g.addClass("fancybox-ie");u.addClass("fancybox-ie")}D=b('<div id="fancybox-outer"></div>').append('<div class="fancy-bg" id="fancy-bg-n"></div><div class="fancy-bg" id="fancy-bg-ne"></div><div class="fancy-bg" id="fancy-bg-e"></div><div class="fancy-bg" id="fancy-bg-se"></div><div class="fancy-bg" id="fancy-bg-s"></div><div class="fancy-bg" id="fancy-bg-sw"></div><div class="fancy-bg" id="fancy-bg-w"></div><div class="fancy-bg" id="fancy-bg-nw"></div>').appendTo(g);
D.append(i=b('<div id="fancybox-inner"></div>'),z=b('<a id="fancybox-close"></a>'),A=b('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),B=b('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>'));z.click(b.fancybox.close);u.click(b.fancybox.cancel);A.click(function(a){a.preventDefault();b.fancybox.prev()});B.click(function(a){a.preventDefault();b.fancybox.next()});if(O){x.get(0).style.setExpression("height",
"document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'");u.get(0).style.setExpression("top","(-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px'");D.prepend('<iframe id="fancybox-hide-sel-frame" src="javascript:\'\';" scrolling="no" frameborder="0" ></iframe>')}}};
b.fn.fancybox=function(a){b(this).data("fancybox",b.extend({},a,b.metadata?b(this).metadata():{})).unbind("click.fb").bind("click.fb",function(d){d.preventDefault();if(!h){h=true;b(this).blur();q=[];p=0;d=b(this).attr("rel")||"";if(!d||d==""||d==="nofollow")q.push(this);else{q=b("a[rel="+d+"], area[rel="+d+"]");p=q.index(this)}C();return false}});return this};b.fancybox=function(a,d){if(!h){h=true;d=typeof d!=="undefined"?d:{};q=[];p=d.index||0;if(b.isArray(a)){for(var f=0,o=a.length;f<o;f++)if(typeof a[f]==
"object")b(a[f]).data("fancybox",b.extend({},d,a[f]));else a[f]=b({}).data("fancybox",b.extend({content:a[f]},d));q=jQuery.merge(q,a)}else{if(typeof a=="object")b(a).data("fancybox",b.extend({},d,a));else a=b({}).data("fancybox",b.extend({content:a},d));q.push(a)}if(p>q.length||p<0)p=0;C()}};b.fancybox.showActivity=function(){clearInterval(H);u.show();H=setInterval($,66)};b.fancybox.hideActivity=function(){u.hide()};b.fancybox.next=function(){return b.fancybox.pos(n+1)};b.fancybox.prev=function(){return b.fancybox.pos(n-
1)};b.fancybox.pos=function(a){if(!h){a=parseInt(a,10);if(a>-1&&j.length>a){p=a;C()}if(c.cyclic&&j.length>1&&a<0){p=j.length-1;C()}if(c.cyclic&&j.length>1&&a>=j.length){p=0;C()}}};b.fancybox.cancel=function(){if(!h){h=true;b.event.trigger("fancybox-cancel");J();e&&b.isFunction(e.onCancel)&&e.onCancel(q,p,e);h=false}};b.fancybox.close=function(){function a(){x.fadeOut("fast");g.hide();b.event.trigger("fancybox-cleanup");i.empty();b.isFunction(c.onClosed)&&c.onClosed(j,n,c);j=e=[];n=p=0;c=e={};h=false}
if(!(h||g.is(":hidden"))){h=true;if(c&&b.isFunction(c.onCleanup))if(c.onCleanup(j,n,c)===false){h=false;return}J();b(z.add(A).add(B)).hide();b("#fancybox-title").remove();g.add(i).add(x).unbind();b(window).unbind("resize.fb scroll.fb");b(document).unbind("keydown.fb");i.css("overflow","hidden");if(c.transitionOut=="elastic"){k=Q();var d=g.position();l={top:d.top,left:d.left,width:g.width(),height:g.height()};if(c.opacity)l.opacity=1;y.prop=1;b(y).animate({prop:0},{duration:c.speedOut,easing:c.easingOut,
step:M,complete:a})}else g.fadeOut(c.transitionOut=="none"?0:c.speedOut,a)}};b.fancybox.resize=function(){var a,d;if(!(h||g.is(":hidden"))){h=true;a=i.wrapInner("<div style='overflow:auto'></div>").children();d=a.height();g.css({height:d+c.padding*2+v});i.css({height:d});a.replaceWith(a.children());b.fancybox.center()}};b.fancybox.center=function(){h=true;var a=K(),d=c.margin,f={};f.top=a[3]+(a[1]-(g.height()-v+40))*0.5;f.left=a[2]+(a[0]-(g.width()+40))*0.5;f.top=Math.max(a[3]+d,f.top);f.left=Math.max(a[2]+
d,f.left);g.css(f);h=false};b.fn.fancybox.defaults={padding:10,margin:20,opacity:false,modal:false,cyclic:false,scrolling:"auto",width:560,height:340,autoScale:true,autoDimensions:true,centerOnScroll:false,ajax:{},swf:{wmode:"transparent"},hideOnOverlayClick:true,hideOnContentClick:false,overlayShow:true,overlayOpacity:0.3,overlayColor:"#666",titleShow:true,titlePosition:"outside",titleFormat:null,transitionIn:"fade",transitionOut:"fade",speedIn:300,speedOut:300,changeSpeed:300,changeFade:"fast",
easingIn:"swing",easingOut:"swing",showCloseButton:true,showNavArrows:true,enableEscapeButton:true,onStart:null,onCancel:null,onComplete:null,onCleanup:null,onClosed:null};b(document).ready(function(){aa()})})(jQuery);;
/*
 * jQuery Autocomplete plugin 1.2
 *
 * Copyright (c) 2009 Jörn Zaefferer
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * With a small modifications by Alfonso Gómez-Arzola.
 * See changelog for details.
 *
 */

;(function($) {
	
$.fn.extend({
	autocomplete: function(urlOrData, options) {
		var isUrl = typeof urlOrData == "string";
		options = $.extend({}, $.Autocompleter.defaults, {
			url: isUrl ? urlOrData : null,
			data: isUrl ? null : urlOrData,
			delay: isUrl ? $.Autocompleter.defaults.delay : 10,
			max: options && !options.scroll ? 10 : 150
		}, options);
		
		// if highlight is set to false, replace it with a do-nothing function
		options.highlight = options.highlight || function(value) { return value; };
		
		// if the formatMatch option is not specified, then use formatItem for backwards compatibility
		options.formatMatch = options.formatMatch || options.formatItem;
		
		return this.each(function() {
			new $.Autocompleter(this, options);
		});
	},
	result: function(handler) {
		return this.bind("result", handler);
	},
	search: function(handler) {
		return this.trigger("search", [handler]);
	},
	flushCache: function() {
		return this.trigger("flushCache");
	},
	setOptions: function(options){
		return this.trigger("setOptions", [options]);
	},
	unautocomplete: function() {
		return this.trigger("unautocomplete");
	}
});

$.Autocompleter = function(input, options) {

	var KEY = {
		UP: 38,
		DOWN: 40,
		DEL: 46,
		TAB: 9,
		RETURN: 13,
		ESC: 27,
		COMMA: 188,
		PAGEUP: 33,
		PAGEDOWN: 34,
		BACKSPACE: 8
	};

	// Create $ object for input element
	var $input = $(input).attr("autocomplete", "off").addClass(options.inputClass);

	var timeout;
	var previousValue = "";
	var cache = $.Autocompleter.Cache(options);
	var hasFocus = 0;
	var lastKeyPressCode;
	var config = {
		mouseDownOnSelect: false
	};
	var select = $.Autocompleter.Select(options, input, selectCurrent, config);
	
	var blockSubmit;
	
	// prevent form submit in opera when selecting with return key
	$.browser.opera && $(input.form).bind("submit.autocomplete", function() {
		if (blockSubmit) {
			blockSubmit = false;
			return false;
		}
	});
	
	// only opera doesn't trigger keydown multiple times while pressed, others don't work with keypress at all
	$input.bind(($.browser.opera ? "keypress" : "keydown") + ".autocomplete", function(event) {
		// a keypress means the input has focus
		// avoids issue where input had focus before the autocomplete was applied
		hasFocus = 1;
		// track last key pressed
		lastKeyPressCode = event.keyCode;
		switch(event.keyCode) {
		
			case KEY.UP:
				if ( select.visible() ) {
					event.preventDefault(); // Moved from line 105. --AGA
					select.prev();
				} else {
					onChange(0, true);
				}
				break;
				
			case KEY.DOWN:
				if ( select.visible() ) {
					event.preventDefault(); // Moved from line 114. --AGA
					select.next();
				} else {
					onChange(0, true);
				}
				break;
				
			case KEY.PAGEUP:
				event.preventDefault();
				if ( select.visible() ) {
					select.pageUp();
				} else {
					onChange(0, true);
				}
				break;
				
			case KEY.PAGEDOWN:
				event.preventDefault();
				if ( select.visible() ) {
					select.pageDown();
				} else {
					onChange(0, true);
				}
				break;
			
			// matches also semicolon
			case options.multiple && $.trim(options.multipleSeparator) == "," && KEY.COMMA:
			case KEY.TAB:
			case KEY.RETURN:
				if( selectCurrent() ) {
					// stop default to prevent a form submit, Opera needs special handling
					event.preventDefault();
					blockSubmit = true;
					return false;
				}
				break;
				
			case KEY.ESC:
				select.hide();
				break;
				
			default:
				clearTimeout(timeout);
				timeout = setTimeout(onChange, options.delay);
				break;
		}
	}).focus(function(){
		// track whether the field has focus, we shouldn't process any
		// results if the field no longer has focus
		hasFocus++;
	}).blur(function() {
		hasFocus = 0;
		if (!config.mouseDownOnSelect) {
			hideResults();
		}
	}).click(function() {
		// show select when clicking in a focused field
		if ( hasFocus++ > 1 && !select.visible() ) {
			onChange(0, true);
		}
	}).bind("search", function() {
		// TODO why not just specifying both arguments?
		var fn = (arguments.length > 1) ? arguments[1] : null;
		function findValueCallback(q, data) {
			var result;
			if( data && data.length ) {
				for (var i=0; i < data.length; i++) {
					if( data[i].result.toLowerCase() == q.toLowerCase() ) {
						result = data[i];
						break;
					}
				}
			}
			if( typeof fn == "function" ) fn(result);
			else $input.trigger("result", result && [result.data, result.value]);
		}
		$.each(trimWords($input.val()), function(i, value) {
			request(value, findValueCallback, findValueCallback);
		});
	}).bind("flushCache", function() {
		cache.flush();
	}).bind("setOptions", function() {
		$.extend(true, options, arguments[1]);
		// if we've updated the data, repopulate
		if ( "data" in arguments[1] )
			cache.populate();
	}).bind("unautocomplete", function() {
		select.unbind();
		$input.unbind();
		$(input.form).unbind(".autocomplete");
	});
	
	
	function selectCurrent() {
		var selected = select.selected();
		if( !selected )
			return false;
		
		var v = selected.result;
		previousValue = v;
		
		if ( options.multiple ) {
			var words = trimWords($input.val());
			if ( words.length > 1 ) {
				var seperator = options.multipleSeparator.length;
				var cursorAt = $(input).selection().start;
				var wordAt, progress = 0;
				$.each(words, function(i, word) {
					progress += word.length;
					if (cursorAt <= progress) {
						wordAt = i;
						return false;
					}
					progress += seperator;
				});
				words[wordAt] = v;
				// TODO this should set the cursor to the right position, but it gets overriden somewhere
				//$.Autocompleter.Selection(input, progress + seperator, progress + seperator);
				v = words.join( options.multipleSeparator );
			}
			v += options.multipleSeparator;
		}
		
		$input.val(v);
		hideResultsNow();
		$input.trigger("result", [selected.data, selected.value]);
		return true;
	}
	
	function onChange(crap, skipPrevCheck) {
		if( lastKeyPressCode == KEY.DEL ) {
			select.hide();
			return;
		}
		
		var currentValue = $input.val();
		
		if ( !skipPrevCheck && currentValue == previousValue )
			return;
		
		previousValue = currentValue;
		
		currentValue = lastWord(currentValue);
		if ( currentValue.length >= options.minChars) {
			$input.addClass(options.loadingClass);
			if (!options.matchCase)
				currentValue = currentValue.toLowerCase();
			request(currentValue, receiveData, hideResultsNow);
		} else {
			stopLoading();
			select.hide();
		}
	};
	
	function trimWords(value) {
		if (!value)
			return [""];
		if (!options.multiple)
			return [$.trim(value)];
		return $.map(value.split(options.multipleSeparator), function(word) {
			return $.trim(value).length ? $.trim(word) : null;
		});
	}
	
	function lastWord(value) {
		if ( !options.multiple )
			return value;
		var words = trimWords(value);
		if (words.length == 1) 
			return words[0];
		var cursorAt = $(input).selection().start;
		if (cursorAt == value.length) {
			words = trimWords(value)
		} else {
			words = trimWords(value.replace(value.substring(cursorAt), ""));
		}
		return words[words.length - 1];
	}
	
	// fills in the input box w/the first match (assumed to be the best match)
	// q: the term entered
	// sValue: the first matching result
	function autoFill(q, sValue){
		// autofill in the complete box w/the first match as long as the user hasn't entered in more data
		// if the last user key pressed was backspace, don't autofill
		if( options.autoFill && (lastWord($input.val()).toLowerCase() == q.toLowerCase()) && lastKeyPressCode != KEY.BACKSPACE ) {
			// fill in the value (keep the case the user has typed)
			$input.val($input.val() + sValue.substring(lastWord(previousValue).length));
			// select the portion of the value not typed by the user (so the next character will erase)
			$(input).selection(previousValue.length, previousValue.length + sValue.length);
		}
	};

	function hideResults() {
		clearTimeout(timeout);
		timeout = setTimeout(hideResultsNow, 200);
	};

	function hideResultsNow() {
		var wasVisible = select.visible();
		select.hide();
		clearTimeout(timeout);
		stopLoading();
		if (options.mustMatch) {
			// call search and run callback
			$input.search(
				function (result){
					// if no value found, clear the input box
					if( !result ) {
						if (options.multiple) {
							var words = trimWords($input.val()).slice(0, -1);
							$input.val( words.join(options.multipleSeparator) + (words.length ? options.multipleSeparator : "") );
						}
						else {
							$input.val( "" );
							$input.trigger("result", null);
						}
					}
				}
			);
		}
	};

	function receiveData(q, data) {
		if ( data && data.length && hasFocus ) {
			stopLoading();
			select.display(data, q);
			autoFill(q, data[0].value);
			select.show();
		} else {
			hideResultsNow();
		}
	};

	function request(term, success, failure) {
		if (!options.matchCase)
			term = term.toLowerCase();
		var data = cache.load(term);
		// recieve the cached data
		if (data && data.length) {
			success(term, data);
		// if an AJAX url has been supplied, try loading the data now
		} else if( (typeof options.url == "string") && (options.url.length > 0) ){
			
			var extraParams = {
				timestamp: +new Date()
			};
			$.each(options.extraParams, function(key, param) {
				extraParams[key] = typeof param == "function" ? param() : param;
			});
			
			$.ajax({
				// try to leverage ajaxQueue plugin to abort previous requests
				mode: "abort",
				// limit abortion to this input
				port: "autocomplete" + input.name,
				dataType: options.dataType,
				url: options.url,
				data: $.extend({
					key: lastWord(term),
					limit: options.max
				}, extraParams),
				success: function(data) {
					var parsed = options.parse && options.parse(data) || parse(data);
					cache.add(term, parsed);
					success(term, parsed);
				}
			});
		} else {
			// if we have a failure, we need to empty the list -- this prevents the the [TAB] key from selecting the last successful match
			select.emptyList();
			failure(term);
		}
	};
	
	function parse(data) {
		var parsed = [];
		var rows = data.split("\n");
		for (var i=0; i < rows.length; i++) {
			var row = $.trim(rows[i]);
			if (row) {
				row = row.split("|");
				parsed[parsed.length] = {
					data: row,
					value: row[0],
					result: options.formatResult && options.formatResult(row, row[0]) || row[0]
				};
			}
		}
		return parsed;
	};

	function stopLoading() {
		$input.removeClass(options.loadingClass);
	};

};

$.Autocompleter.defaults = {
	inputClass: "ac_input",
	resultsClass: "ac_results",
	loadingClass: "ac_loading",
	minChars: 1,
	delay: 400,
	matchCase: false,
	matchSubset: true,
	matchContains: false,
	cacheLength: 100,
	max: 1000,
	mustMatch: false,
	extraParams: {},
	selectFirst: true,
	formatItem: function(row) { return row[0]; },
	formatMatch: null,
	autoFill: false,
	width: 0,
	multiple: false,
	multipleSeparator: " ",
	highlight: function(value, term) {
		return value.replace(new RegExp("(?![^&;]+;)(?!<[^<>]*)(" + term.replace(/([\^\$\(\)\[\]\{\}\*\.\+\?\|\\])/gi, "\\$1") + ")(?![^<>]*>)(?![^&;]+;)", "gi"), "<strong>$1</strong>");
	},
    scroll: true,
    scrollHeight: 180
};

$.Autocompleter.Cache = function(options) {

	var data = {};
	var length = 0;
	
	function matchSubset(s, sub) {
		if (!options.matchCase) 
			s = s.toLowerCase();
		var i = s.indexOf(sub);
		if (options.matchContains == "word"){
			i = s.toLowerCase().search("\\b" + sub.toLowerCase());
		}
		if (i == -1) return false;
		return i == 0 || options.matchContains;
	};
	
	function add(q, value) {
		if (length > options.cacheLength){
			flush();
		}
		if (!data[q]){ 
			length++;
		}
		data[q] = value;
	}
	
	function populate(){
		if( !options.data ) return false;
		// track the matches
		var stMatchSets = {},
			nullData = 0;

		// no url was specified, we need to adjust the cache length to make sure it fits the local data store
		if( !options.url ) options.cacheLength = 1;
		
		// track all options for minChars = 0
		stMatchSets[""] = [];
		
		// loop through the array and create a lookup structure
		for ( var i = 0, ol = options.data.length; i < ol; i++ ) {
			var rawValue = options.data[i];
			// if rawValue is a string, make an array otherwise just reference the array
			rawValue = (typeof rawValue == "string") ? [rawValue] : rawValue;
			
			var value = options.formatMatch(rawValue, i+1, options.data.length);
			if ( value === false )
				continue;
				
			var firstChar = value.charAt(0).toLowerCase();
			// if no lookup array for this character exists, look it up now
			if( !stMatchSets[firstChar] ) 
				stMatchSets[firstChar] = [];

			// if the match is a string
			var row = {
				value: value,
				data: rawValue,
				result: options.formatResult && options.formatResult(rawValue) || value
			};
			
			// push the current match into the set list
			stMatchSets[firstChar].push(row);

			// keep track of minChars zero items
			if ( nullData++ < options.max ) {
				stMatchSets[""].push(row);
			}
		};

		// add the data items to the cache
		$.each(stMatchSets, function(i, value) {
			// increase the cache size
			options.cacheLength++;
			// add to the cache
			add(i, value);
		});
	}
	
	// populate any existing data
	setTimeout(populate, 25);
	
	function flush(){
		data = {};
		length = 0;
	}
	
	return {
		flush: flush,
		add: add,
		populate: populate,
		load: function(q) {
			if (!options.cacheLength || !length)
				return null;
			/* 
			 * if dealing w/local data and matchContains than we must make sure
			 * to loop through all the data collections looking for matches
			 */
			if( !options.url && options.matchContains ){
				// track all matches
				var csub = [];
				// loop through all the data grids for matches
				for( var k in data ){
					// don't search through the stMatchSets[""] (minChars: 0) cache
					// this prevents duplicates
					if( k.length > 0 ){
						var c = data[k];
						$.each(c, function(i, x) {
							// if we've got a match, add it to the array
							if (matchSubset(x.value, q)) {
								csub.push(x);
							}
						});
					}
				}				
				return csub;
			} else 
			// if the exact item exists, use it
			if (data[q]){
				return data[q];
			} else
			if (options.matchSubset) {
				for (var i = q.length - 1; i >= options.minChars; i--) {
					var c = data[q.substr(0, i)];
					if (c) {
						var csub = [];
						$.each(c, function(i, x) {
							if (matchSubset(x.value, q)) {
								csub[csub.length] = x;
							}
						});
						return csub;
					}
				}
			}
			return null;
		}
	};
};

$.Autocompleter.Select = function (options, input, select, config) {
	var CLASSES = {
		ACTIVE: "ac_over"
	};
	
	var listItems,
		active = -1,
		data,
		term = "",
		needsInit = true,
		element,
		list;
	
	// Create results
	function init() {
		if (!needsInit)
			return;
		element = $("<div/>")
		.hide()
		.addClass(options.resultsClass)
		.css("position", "absolute")
		.appendTo(document.body);
	
		list = $("<ul/>").appendTo(element).mouseover( function(event) {
			if(target(event).nodeName && target(event).nodeName.toUpperCase() == 'LI') {
	            active = $("li", list).removeClass(CLASSES.ACTIVE).index(target(event));
			    $(target(event)).addClass(CLASSES.ACTIVE);            
	        }
		}).click(function(event) {
			$(target(event)).addClass(CLASSES.ACTIVE);
			select();
			// TODO provide option to avoid setting focus again after selection? useful for cleanup-on-focus
			input.focus();
			return false;
		}).mousedown(function() {
			config.mouseDownOnSelect = true;
		}).mouseup(function() {
			config.mouseDownOnSelect = false;
		});
		
		if( options.width > 0 )
			element.css("width", options.width);
			
		needsInit = false;
	} 
	
	function target(event) {
		var element = event.target;
		while(element && element.tagName != "LI")
			element = element.parentNode;
		// more fun with IE, sometimes event.target is empty, just ignore it then
		if(!element)
			return [];
		return element;
	}

	function moveSelect(step) {
		listItems.slice(active, active + 1).removeClass(CLASSES.ACTIVE);
		movePosition(step);
        var activeItem = listItems.slice(active, active + 1).addClass(CLASSES.ACTIVE);
        if(options.scroll) {
            var offset = 0;
            listItems.slice(0, active).each(function() {
				offset += this.offsetHeight;
			});
            if((offset + activeItem[0].offsetHeight - list.scrollTop()) > list[0].clientHeight) {
                list.scrollTop(offset + activeItem[0].offsetHeight - list.innerHeight());
            } else if(offset < list.scrollTop()) {
                list.scrollTop(offset);
            }
        }
	};
	
	function movePosition(step) {
		active += step;
		if (active < 0) {
			active = listItems.size() - 1;
		} else if (active >= listItems.size()) {
			active = 0;
		}
	}
	
	function limitNumberOfItems(available) {
		return options.max && options.max < available
			? options.max
			: available;
	}
	
	function fillList() {
		list.empty();
		var max = limitNumberOfItems(data.length);
		for (var i=0; i < max; i++) {
			if (!data[i])
				continue;
			var formatted = options.formatItem(data[i].data, i+1, max, data[i].value, term);
			if ( formatted === false )
				continue;
			var li = $("<li/>").html( options.highlight(formatted, term) ).addClass(i%2 == 0 ? "ac_even" : "ac_odd").appendTo(list)[0];
			$.data(li, "ac_data", data[i]);
		}
		listItems = list.find("li");
		if ( options.selectFirst ) {
			listItems.slice(0, 1).addClass(CLASSES.ACTIVE);
			active = 0;
		}
		// apply bgiframe if available
		if ( $.fn.bgiframe )
			list.bgiframe();
	}
	
	return {
		display: function(d, q) {
			init();
			data = d;
			term = q;
			fillList();
		},
		next: function() {
			moveSelect(1);
		},
		prev: function() {
			moveSelect(-1);
		},
		pageUp: function() {
			if (active != 0 && active - 8 < 0) {
				moveSelect( -active );
			} else {
				moveSelect(-8);
			}
		},
		pageDown: function() {
			if (active != listItems.size() - 1 && active + 8 > listItems.size()) {
				moveSelect( listItems.size() - 1 - active );
			} else {
				moveSelect(8);
			}
		},
		hide: function() {
			element && element.hide();
			listItems && listItems.removeClass(CLASSES.ACTIVE);
			active = -1;
		},
		visible : function() {
			return element && element.is(":visible");
		},
		current: function() {
			return this.visible() && (listItems.filter("." + CLASSES.ACTIVE)[0] || options.selectFirst && listItems[0]);
		},
		show: function() {
			var offset = $(input).offset();
			element.css({
				width: typeof options.width == "string" || options.width > 0 ? options.width : $(input).width(),
				top: offset.top + input.offsetHeight,
				left: offset.left
			}).show();
            if(options.scroll) {
                list.scrollTop(0);
                list.css({
					maxHeight: options.scrollHeight,
					overflow: 'auto'
				});
				
                if($.browser.msie && typeof document.body.style.maxHeight === "undefined") {
					var listHeight = 0;
					listItems.each(function() {
						listHeight += this.offsetHeight;
					});
					var scrollbarsVisible = listHeight > options.scrollHeight;
                    list.css('height', scrollbarsVisible ? options.scrollHeight : listHeight );
					if (!scrollbarsVisible) {
						// IE doesn't recalculate width when scrollbar disappears
						listItems.width( list.width() - parseInt(listItems.css("padding-left")) - parseInt(listItems.css("padding-right")) );
					}
                }
                
            }
		},
		selected: function() {
			var selected = listItems && listItems.filter("." + CLASSES.ACTIVE).removeClass(CLASSES.ACTIVE);
			return selected && selected.length && $.data(selected[0], "ac_data");
		},
		emptyList: function (){
			list && list.empty();
		},
		unbind: function() {
			element && element.remove();
		}
	};
};

$.fn.selection = function(start, end) {
	if (start !== undefined) {
		return this.each(function() {
			if( this.createTextRange ){
				var selRange = this.createTextRange();
				if (end === undefined || start == end) {
					selRange.move("character", start);
					selRange.select();
				} else {
					selRange.collapse(true);
					selRange.moveStart("character", start);
					selRange.moveEnd("character", end);
					selRange.select();
				}
			} else if( this.setSelectionRange ){
				this.setSelectionRange(start, end);
			} else if( this.selectionStart ){
				this.selectionStart = start;
				this.selectionEnd = end;
			}
		});
	}
	var field = this[0];
	if ( field.createTextRange ) {
		var range = document.selection.createRange(),
			orig = field.value,
			teststring = "<->",
			textLength = range.text.length;
		range.text = teststring;
		var caretAt = field.value.indexOf(teststring);
		field.value = orig;
		this.selection(caretAt, caretAt + textLength);
		return {
			start: caretAt,
			end: caretAt + textLength
		}
	} else if( field.selectionStart !== undefined ){
		return {
			start: field.selectionStart,
			end: field.selectionEnd
		}
	}
};

})(jQuery);;

