/*
 * 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": "Erro nÃ£o especificado", "Drag to re-order": "Arraste para reordenar", "Changes made in this table will not be saved until the form is submitted.": "As mudanÃ§as feitas nesta tabela nÃ£o vÃ£o ser salvas antes do formulÃ¡rio ser enviado.", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "As alteraÃ§Ãµes nesses blocos nÃ£o vÃ£o ser salvas enquanto o botÃ£o \x3cem\x3eSalvar Blocos\x3c/em\x3e nÃ£o for clicado.", "The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.": "O arquivo selecionado %filename nÃ£o pÃ´de ser transferido. Somente arquivos com as seguintes extensÃµes sÃ£o permitidos: %extensions.", "Cancel": "Cancelar", "Update": "Atualizar", "An error occurred at @path.": "Um erro ocorreu em @path.", "jQuery UI Tabs: Mismatching fragment identifier.": "jQuery UI Tabs: Erro no identificador do fragmento.", "jQuery UI Tabs: Not enough arguments to add tab.": "jQuery UI Tabs: NÃ£o hÃ¡ argumentos o suficiente para adicionar uma aba.", "Sep": "set", "Mon": "seg", "Testing clean URLs...": "Testando URLs limpas...", "Your server has been successfully tested to support this feature.": "Seu servidor foi testado e foi verificado que ele suporta esse recurso.", "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.": "As configuraÃ§Ãµes atuais do seu sistema nÃ£o suportam este recurso. Consulte a \x3ca href=\"http://drupal.org/node/15365\"\x3epÃ¡gina sobre URLs limpas\x3c/a\x3e, da ajuda on-line, para mais informaÃ§Ãµes sobre esse problema.", "Select all rows in this table": "Selecionar todas as linhas da tabela", "Deselect all rows in this table": "Desmarcar todas as linhas da tabela", "Alias: @alias": "EndereÃ§o: @alias", "No alias": "NÃ£o hÃ¡ um endereÃ§o", "Tue": "ter", "Fri": "sex", "Oct": "out", "Thu": "qui", "Done": "ConcluÃ­do", "mm/dd/yy": "mm/dd/yy", "Sa": "SÃ¡b", "Wed": "qua", "Sat": "sab", "Sun": "dom", "January": "janeiro", "February": "fevereiro", "March": "marÃ§o", "April": "abril", "May": "mai", "June": "junho", "July": "julho", "August": "agosto", "September": "setembro", "October": "outubro", "November": "novembro", "December": "dezembro", "Close": "Fechar", "Show": "Exibir", "Jan": "jan", "Feb": "fev", "Mar": "mar", "Apr": "abr", "Jun": "jun", "Jul": "jul", "Aug": "ago", "Nov": "nov", "Dec": "dez", "Loading...": "Carregando...", "The selected file %filename cannot not be uploaded. Only files with the following extensions are allowed: %extensions.": "O arquivo selecionado %filename nÃ£o pode ser enviado. Apenas arquivos com as seguintes extensÃµes podem ser enviados: %extensions.", "Join summary": "Juntar resumo ao texto", "Split summary at cursor": "Separar chamada no cursor", "Prev": "Anterior", "Not in book": "Fora do livro", "New book": "Novo livro", "By @name on @date": "Por @name em @date", "By @name": "Por @name", "Not in menu": "Fora do menu", "Fr": "Sex", "Th": "Qui", "New revision": "Nova revisÃ£o", "An error occurred. \n@uri\n@text": "Ocorreu um erro.\n@uri\n@text", "An error occurred. \n@uri\n(no information available).": "Ocorreu um erro.\n@uri\n(nÃ£o hÃ¡ informaÃ§Ã£o disponÃ­vel).", "An HTTP error @status occurred. \n@uri": "Ocorreu um erro HTTP @status.\n@uri", "We": "Qua", "Tu": "Ter", "Mo": "Seg", "Su": "Dom", "Today": "Hoje", "No revision": "Sem revisÃ£o", "Not restricted": "Sem restriÃ§Ãµes", "(active tab)": "(aba ativa)", "An AJAX HTTP error occurred.": "Ocorreu um erro AJAX HTTP", "HTTP Result Code: !status": "CÃ³digo do Resultado HTTP:  !status", "An AJAX HTTP request terminated abnormally.": "Uma requisiÃ§Ã£o HTTP AJAX terminou de forma anormal.", "Debugging information follows.": "Estas sÃ£o as informaÃ§Ãµes de depuraÃ§Ã£o.", "Path: !uri": "Caminho: !url", "StatusText: !statusText": "Texto de Status: !statusText", "ResponseText: !responseText": "Texto de Resposta: !responseText", "ReadyState: !readyState": "ReadyState: !readyState", "Customize dashboard": "Personalizar painel", "Edit summary": "Editar resumo" } };;

$(document).ready(function() {

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

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

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});
;
/*
 * 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}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International
 * FontFont release 15
 */
Cufon.registerFont({"w":187,"face":{"font-family":"DIN","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"279","descent":"-81","x-height":"2","bbox":"-12 -355 350 81.3705","underline-thickness":"18.36","underline-position":"-50.04","stemh":"23","stemv":"26","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":89},"\u00d0":{"d":"42,-256v114,-4,178,-1,178,128v0,58,-4,70,-16,90v-25,43,-94,39,-162,38r0,-119r-28,0r0,-21r28,0r0,-116xm70,-24v86,1,123,0,123,-103v0,-102,-36,-107,-123,-105r0,92r58,0r0,21r-58,0r0,95","w":247},"\u00f0":{"d":"24,-88v0,-55,33,-104,92,-85r-21,-36r-42,0r0,-19r32,0r-17,-29r27,0r17,29r29,0r0,19r-19,0v19,33,45,77,45,121v0,48,-22,90,-72,90v-50,0,-71,-42,-71,-90xm95,-21v34,0,46,-33,46,-67v0,-34,-11,-67,-46,-67v-34,0,-45,33,-45,67v0,33,11,67,45,67","w":190},"\u00dd":{"d":"182,-256r-75,150r0,106r-28,0r0,-106r-76,-150r29,0r61,122r60,-122r29,0xm138,-336r-39,55r-24,0r32,-55r31,0","w":185},"\u00fd":{"d":"157,-177r-81,220v-8,25,-27,35,-58,33r0,-23v39,6,38,-33,50,-57r-64,-173r28,0r49,142r48,-142r28,0xm125,-269r-39,55r-24,0r32,-55r31,0","w":160},"\u00de":{"d":"212,-129v1,72,-71,81,-148,75r0,54r-27,0r0,-256r27,0r0,51r68,0v47,0,80,30,80,76xm184,-129v0,-60,-63,-51,-120,-51r0,102v57,0,120,9,120,-51","w":231},"\u00fe":{"d":"108,-179v51,-2,65,44,65,90v0,46,-13,93,-65,91v-19,0,-36,-5,-50,-23r0,100r-26,0r0,-335r26,0r0,99v14,-18,31,-22,50,-22xm147,-89v0,-35,-5,-67,-44,-67v-39,0,-45,32,-45,67v0,35,6,68,45,68v39,0,44,-33,44,-68","w":196},"\u00bd":{"d":"267,0r-88,0r0,-19r59,-72v15,-15,9,-46,-15,-45v-12,0,-24,6,-24,24r-20,0v0,-26,18,-43,44,-43v41,0,55,46,30,76r-49,60r63,0r0,19xm199,-256r-119,256r-22,0r120,-256r21,0xm66,-103r-21,0r0,-130r-30,26r0,-24v15,-10,22,-29,51,-25r0,153","w":284},"\u00bc":{"d":"265,-23r-17,0r0,23r-20,0r0,-23r-62,0r0,-19r55,-112r22,0r-54,112r39,0r0,-38r20,0r0,38r17,0r0,19xm204,-256r-120,256r-22,0r120,-256r22,0xm66,-103r-21,0r0,-130r-30,26r0,-24v15,-10,22,-29,51,-25r0,153","w":279},"\u00b9":{"d":"66,-103r-21,0r0,-130r-30,26r0,-24v15,-10,22,-29,51,-25r0,153","w":93},"\u00be":{"d":"282,-23r-17,0r0,23r-21,0r0,-23r-61,0r0,-19r54,-112r22,0r-54,112r39,0r0,-38r21,0r0,38r17,0r0,19xm223,-256r-120,256r-22,0r120,-256r22,0xm89,-182v40,14,21,81,-25,81v-24,0,-46,-13,-47,-43r21,0v1,17,13,24,26,24v15,0,26,-9,26,-26v0,-17,-10,-27,-30,-26r0,-18v19,1,28,-9,28,-25v0,-16,-11,-24,-24,-24v-14,0,-23,9,-24,23r-21,0v1,-26,21,-42,45,-42v43,0,60,60,25,76","w":295},"\u00b3":{"d":"89,-182v40,14,21,81,-25,81v-24,0,-46,-13,-47,-43r21,0v1,17,13,24,26,24v15,0,26,-9,26,-26v0,-17,-10,-27,-30,-26r0,-18v19,1,28,-9,28,-25v0,-16,-11,-24,-24,-24v-14,0,-23,9,-24,23r-21,0v1,-26,21,-42,45,-42v43,0,60,60,25,76","w":128},"\u00b2":{"d":"106,-103r-89,0r0,-18r60,-73v15,-15,9,-46,-15,-45v-12,0,-24,6,-24,24r-21,0v0,-26,19,-43,45,-43v41,0,55,46,30,76r-50,61r64,0r0,18","w":123},"\u00a6":{"d":"72,-157r-26,0r0,-126r26,0r0,126xm72,27r-26,0r0,-126r26,0r0,126","w":120},"\u00d7":{"d":"165,-43r-17,16r-54,-54r-54,54r-17,-16r55,-54r-55,-55r17,-16r54,55r54,-55r17,16r-55,55"},"!":{"d":"77,-256r-4,184r-22,0r-3,-184r29,0xm78,0r-31,0r0,-30r31,0r0,30","w":113},"\"":{"d":"121,-195r-29,0r0,-61r29,0r0,61xm60,-195r-28,0r0,-61r28,0r0,61","w":152},"#":{"d":"217,-156r-35,0r-8,51r32,0r0,23r-36,0r-13,82r-26,0r13,-82r-58,0r-13,82r-26,0r13,-82r-32,0r0,-23r36,0r8,-51r-33,0r0,-23r36,0r12,-78r27,0r-12,78r57,0r12,-78r27,0r-13,78r32,0r0,23xm156,-156r-58,0r-8,51r57,0","w":235},"$":{"d":"172,-121v46,42,16,125,-56,122r0,40r-22,0r0,-39v-34,-1,-57,-12,-79,-34r19,-18v19,19,38,26,62,27r0,-95v-43,-4,-74,-24,-74,-68v0,-41,27,-68,72,-72r0,-32r22,0r0,32v28,1,47,10,67,28r-18,17v-14,-12,-28,-20,-50,-21r0,93v24,4,46,9,57,20xm96,-144r0,-90v-42,0,-62,49,-36,76v9,9,24,12,36,14xm115,-23v47,2,68,-51,39,-79v-11,-11,-24,-11,-39,-13r0,92","w":214},"%":{"d":"277,-84v0,48,-6,87,-49,87v-43,0,-48,-39,-48,-87v0,-30,20,-48,48,-48v28,0,49,18,49,48xm221,-256r-120,256r-22,0r120,-256r22,0xm121,-210v0,48,-5,86,-49,86v-43,0,-49,-38,-49,-86v0,-30,21,-49,49,-49v28,0,49,19,49,49xm228,-15v33,1,28,-36,28,-68v0,-19,-9,-31,-28,-31v-34,-1,-28,35,-28,67v0,19,8,32,28,32xm72,-142v33,1,28,-36,28,-68v0,-19,-9,-31,-28,-31v-34,-1,-28,36,-28,68v0,19,9,31,28,31","w":299},"&":{"d":"242,0r-35,0r-23,-28v-10,10,-34,30,-75,30v-50,0,-81,-29,-81,-74v0,-39,27,-58,55,-77v-40,-29,-37,-109,29,-109v57,0,75,78,27,99r-19,13r66,79v10,-16,14,-30,14,-59r26,0v0,32,-7,59,-24,79xm105,-163v17,-12,37,-19,37,-41v0,-17,-13,-31,-30,-31v-40,0,-38,43,-7,72xm169,-47r-71,-85v-22,15,-44,30,-44,59v0,59,76,67,115,26","w":266},"'":{"d":"60,-195r-28,0r0,-61r28,0r0,61","w":91},"(":{"d":"59,-36v0,28,11,38,25,52r-17,18v-20,-18,-34,-35,-34,-68v0,-90,-26,-211,34,-256r17,17v-14,15,-25,25,-25,53r0,184","w":107},")":{"d":"41,-290v20,18,34,35,33,68r0,188v1,33,-13,50,-33,68r-19,-19v14,-14,25,-23,25,-51r0,-184v1,-28,-11,-38,-25,-52","w":107},"*":{"d":"147,-170r-11,18r-42,-26r2,49r-21,0r1,-49r-41,26r-11,-18r43,-23r-43,-24r11,-17r41,25r-1,-49r21,0r-2,49r42,-25r11,17r-44,24","w":170},"+":{"d":"169,-84r-63,0r0,63r-24,0r0,-63r-63,0r0,-24r63,0r0,-63r24,0r0,63r63,0r0,24"},",":{"d":"63,23r-31,29r0,-84r31,0r0,55","w":95},"-":{"d":"126,-85r-99,0r0,-24r99,0r0,24","w":153},".":{"d":"66,0r-34,0r0,-34r34,0r0,34","w":97},"\/":{"d":"128,-283r-102,310r-26,0r103,-310r25,0","w":127},"0":{"d":"164,-68v0,42,-30,70,-70,70v-40,0,-70,-28,-70,-70r0,-120v0,-42,30,-70,70,-70v40,0,70,28,70,70r0,120xm94,-21v67,-2,44,-102,44,-165v0,-28,-16,-49,-44,-49v-67,2,-44,102,-44,165v0,28,16,49,44,49"},"1":{"d":"119,0r-26,0r0,-228r-48,43r0,-30r48,-41r26,0r0,256"},"2":{"d":"166,0r-142,0r0,-23r102,-129v27,-30,13,-83,-31,-83v-24,0,-44,13,-44,46r-26,0v0,-40,27,-69,70,-69v65,0,87,72,50,120r-89,115r110,0r0,23"},"3":{"d":"166,-70v0,47,-34,73,-76,73v-40,0,-73,-22,-75,-68r26,0v4,63,99,56,99,-5v0,-33,-18,-52,-56,-50r0,-23v34,1,51,-15,51,-46v0,-31,-20,-47,-45,-47v-27,0,-43,17,-46,43r-26,0v3,-41,33,-66,72,-66v72,0,98,102,36,127v26,10,40,30,40,62"},"4":{"d":"174,-41r-32,0r0,41r-25,0r0,-41r-103,0r0,-23r93,-192r28,0r-93,192r75,0r0,-73r25,0r0,73r32,0r0,23"},"5":{"d":"101,-170v47,-2,65,44,65,85v0,47,-21,89,-71,88v-42,0,-68,-25,-70,-63r26,0v3,26,17,39,44,39v35,0,45,-33,45,-64v0,-31,-6,-62,-43,-62v-22,0,-37,10,-42,25r-24,0r0,-134r130,0r0,23r-106,0r0,81v10,-11,26,-18,46,-18"},"6":{"d":"166,-74v0,44,-27,76,-71,76v-68,1,-84,-72,-55,-131r63,-127r26,0r-57,115v48,-21,94,15,94,67xm140,-73v0,-28,-16,-52,-46,-52v-27,0,-45,20,-45,52v0,31,18,52,45,52v27,0,46,-21,46,-52"},"7":{"d":"170,-233r-89,233r-28,0r89,-233r-89,0r0,40r-26,0r0,-63r143,0r0,23"},"8":{"d":"170,-71v0,43,-34,73,-76,73v-42,0,-76,-30,-76,-73v0,-30,17,-50,39,-62v-58,-27,-36,-125,37,-125v72,0,95,98,37,125v22,12,39,32,39,62xm139,-189v0,-27,-19,-46,-45,-46v-26,0,-45,19,-45,46v0,27,19,45,45,45v26,0,45,-18,45,-45xm144,-71v0,-28,-22,-50,-50,-50v-28,0,-50,22,-50,50v0,28,22,50,50,50v28,0,50,-22,50,-50"},"9":{"d":"93,-258v69,-2,84,72,55,131r-63,127r-27,0r58,-115v-49,19,-94,-16,-94,-68v0,-44,27,-75,71,-75xm139,-184v0,-31,-19,-51,-46,-51v-27,0,-45,20,-45,51v0,28,15,52,45,52v27,0,46,-20,46,-52"},":":{"d":"75,-108r-34,0r0,-34r34,0r0,34xm75,0r-34,0r0,-34r34,0r0,34","w":106},";":{"d":"75,-108r-34,0r0,-34r34,0r0,34xm74,23r-32,29r0,-84r32,0r0,55","w":106},"<":{"d":"350,-84r-284,0r131,131r-34,0r-143,-144r143,-143r34,0r-131,131r284,0r0,25","w":369},"=":{"d":"169,-115r-150,0r0,-24r150,0r0,24xm169,-54r-150,0r0,-24r150,0r0,24"},">":{"d":"350,-97r-144,144r-34,0r132,-131r-284,0r0,-25r284,0r-132,-131r34,0","w":369},"?":{"d":"95,-258v57,0,87,67,51,109v-13,24,-39,38,-36,77r-26,0v-6,-59,52,-70,52,-121v0,-24,-17,-42,-41,-42v-26,0,-42,19,-42,42r-26,0v0,-37,29,-65,68,-65xm113,0r-31,0r0,-30r31,0r0,30","w":178},"@":{"d":"102,-257v74,0,129,9,129,78r0,179r-25,0r0,-20v-42,49,-127,14,-113,-66v-13,-81,69,-113,113,-65v5,-49,-9,-84,-54,-84v-55,0,-106,2,-101,56v5,58,-19,139,21,165r-18,17v-48,-28,-23,-115,-28,-182v-3,-47,28,-78,76,-78xm206,-86v0,-33,-6,-66,-44,-66v-38,0,-44,33,-44,66v0,33,6,66,44,66v38,0,44,-33,44,-66","w":256},"A":{"d":"216,0r-30,0r-20,-58r-112,0r-21,58r-29,0r95,-256r23,0xm158,-82r-47,-135r-49,135r96,0","w":219},"B":{"d":"213,-71v2,84,-94,71,-176,71r0,-256v79,-1,175,-12,172,68v0,27,-16,48,-38,56v24,9,42,30,42,61xm182,-188v0,-56,-65,-43,-118,-44r0,89v54,-1,118,11,118,-45xm186,-72v0,-55,-67,-46,-122,-46r0,94v56,1,122,8,122,-48","w":240},"C":{"d":"55,-128v0,79,9,106,62,106v32,0,55,-21,62,-52r27,0v-8,48,-43,76,-89,76v-66,0,-90,-44,-90,-130v0,-86,23,-130,90,-130v46,0,80,28,89,76r-28,0v-7,-31,-29,-52,-61,-52v-53,0,-62,28,-62,106","w":229},"D":{"d":"125,-256v70,-5,90,63,90,125v0,36,1,79,-25,107v-30,32,-95,22,-153,24r0,-256r88,0xm188,-131v0,-55,-14,-101,-68,-101r-56,0r0,208v43,-1,84,6,107,-19v17,-19,17,-57,17,-88","w":242},"E":{"d":"196,0r-159,0r0,-256r159,0r0,24r-132,0r0,91r113,0r0,24r-113,0r0,93r132,0r0,24","w":216},"F":{"d":"196,-232r-132,0r0,94r113,0r0,25r-113,0r0,113r-27,0r0,-256r159,0r0,24","w":208},"G":{"d":"117,-22v43,0,70,-35,63,-88r-63,0r0,-24r90,0v10,81,-24,136,-90,136v-66,0,-90,-44,-90,-130v0,-86,22,-130,90,-130v49,0,82,31,90,76r-28,0v-7,-32,-30,-52,-62,-52v-53,0,-62,28,-62,106v0,79,9,106,62,106","w":234},"H":{"d":"213,0r-27,0r0,-117r-122,0r0,117r-27,0r0,-256r27,0r0,115r122,0r0,-115r27,0r0,256","w":250},"I":{"d":"64,0r-27,0r0,-256r27,0r0,256","w":101},"J":{"d":"147,-78v6,75,-92,104,-139,57r19,-18v27,32,93,17,93,-42r0,-175r27,0r0,178","w":180},"K":{"d":"229,0r-32,0r-79,-136r-54,64r0,72r-27,0r0,-256r27,0r0,147r120,-147r33,0r-80,99","w":234},"L":{"d":"195,0r-158,0r0,-256r27,0r0,232r131,0r0,24","w":206},"M":{"d":"257,0r-28,0r0,-195r-70,155r-23,0r-72,-155r0,195r-27,0r0,-256r27,0r84,181r81,-181r28,0r0,256","w":293},"N":{"d":"226,0r-25,0r-137,-206r0,206r-27,0r0,-256r26,0r136,205r0,-205r27,0r0,256","w":263},"O":{"d":"117,-258v67,0,90,44,90,130v0,86,-22,130,-90,130v-67,0,-90,-44,-90,-130v0,-86,22,-130,90,-130xm117,-22v51,-9,62,-28,62,-106v0,-79,-9,-97,-62,-106v-52,8,-62,28,-62,106v0,79,11,96,62,106","w":234},"P":{"d":"212,-181v1,72,-70,82,-148,76r0,105r-27,0r0,-256r95,0v47,0,80,29,80,75xm184,-181v0,-60,-63,-51,-120,-51r0,102v57,0,120,9,120,-51","w":226},"Q":{"d":"117,-258v67,0,90,44,90,130v0,49,0,74,-18,96r28,28r-16,17r-29,-29v-75,47,-165,-4,-145,-112v-7,-86,22,-130,90,-130xm55,-128v0,79,10,106,62,106v14,0,26,-5,36,-13r-32,-32r17,-17r31,32v9,-15,10,-35,10,-76v0,-79,-9,-97,-62,-106v-52,8,-62,28,-62,106","w":233},"R":{"d":"216,0r-32,0r-58,-114r-62,0r0,114r-27,0r0,-256r98,0v45,0,76,27,76,71v0,37,-22,62,-55,69xm184,-185v0,-57,-65,-47,-120,-47r0,94v55,0,120,11,120,-47","w":236},"S":{"d":"170,-121v47,47,11,123,-67,123v-39,0,-64,-10,-88,-34r19,-18v32,42,130,39,130,-20v-1,-80,-142,-15,-142,-116v0,-77,114,-93,158,-44r-17,17v-28,-34,-114,-30,-114,26v0,60,93,38,121,66","w":211},"T":{"d":"186,-232r-74,0r0,232r-27,0r0,-232r-74,0r0,-24r175,0r0,24","w":197},"U":{"d":"212,-85v0,51,-37,87,-89,87v-52,0,-90,-36,-90,-87r0,-171r28,0r0,169v0,39,25,65,62,65v37,0,62,-26,62,-65r0,-169r27,0r0,171","w":245},"V":{"d":"194,-256r-85,256r-22,0r-84,-256r29,0r66,207r67,-207r29,0","w":196},"W":{"d":"302,-256r-66,256r-25,0r-57,-205r-57,205r-26,0r-65,-256r29,0r50,206r56,-206r25,0r56,206r51,-206r29,0","w":307},"X":{"d":"193,0r-32,0r-62,-108r-63,108r-31,0r79,-131r-74,-125r32,0r57,101r57,-101r32,0r-74,125","w":198},"Y":{"d":"182,-256r-75,150r0,106r-28,0r0,-106r-76,-150r29,0r61,122r60,-122r29,0","w":185},"Z":{"d":"180,0r-159,0r0,-26r128,-206r-123,0r0,-24r154,0r0,23r-130,209r130,0r0,24","w":200},"[":{"d":"97,27r-64,0r0,-310r64,0r0,23r-38,0r0,264r38,0r0,23","w":112},"\\":{"d":"128,27r-26,0r-102,-309r26,0","w":127},"]":{"d":"80,27r-64,0r0,-23r39,0r0,-265r-39,0r0,-22r64,0r0,310","w":112},"^":{"d":"167,-149r-26,0r-44,-82r-44,82r-27,0r59,-109r24,0","w":193},"_":{"d":"193,59r-193,0r0,-18r193,0r0,18","w":193},"`":{"d":"108,-214r-24,0r-39,-55r31,0","w":180},"a":{"d":"133,-17v-32,35,-115,23,-115,-33v0,-50,59,-55,115,-51v3,-37,-7,-56,-46,-56v-23,0,-34,5,-44,20r-18,-16v31,-46,134,-32,134,33r0,120r-26,0r0,-17xm84,-20v35,0,55,-19,49,-62v-38,0,-89,-7,-89,32v0,21,12,30,40,30","w":189},"b":{"d":"108,-179v51,-2,65,44,65,90v0,46,-13,93,-65,91v-19,0,-36,-4,-50,-23r0,21r-26,0r0,-256r26,0r0,99v14,-18,31,-22,50,-22xm147,-89v0,-35,-5,-67,-44,-67v-39,0,-45,32,-45,67v0,35,6,68,45,68v39,0,44,-33,44,-68","w":196},"c":{"d":"49,-89v-8,62,58,90,93,48r17,17v-49,54,-136,23,-136,-65v0,-88,87,-117,136,-64r-17,17v-34,-42,-101,-14,-93,47","w":176},"d":{"d":"23,-89v0,-45,14,-92,65,-90v19,0,36,4,50,22r0,-99r26,0r0,256r-26,0r0,-21v-14,19,-31,23,-50,23v-51,2,-65,-45,-65,-91xm138,-89v0,-35,-5,-67,-44,-67v-39,0,-45,32,-45,67v0,35,6,68,45,68v39,0,44,-33,44,-68","w":196},"e":{"d":"168,-82r-119,0v-6,62,66,79,98,41r18,16v-48,50,-142,33,-142,-64v0,-57,27,-90,72,-90v50,0,76,38,73,97xm142,-101v8,-58,-69,-75,-88,-30v-4,10,-4,16,-5,30r93,0","w":190},"f":{"d":"102,-156r-38,0r0,156r-26,0r0,-156r-23,0r0,-20r23,0v-5,-52,7,-88,64,-81r0,22v-39,-7,-40,22,-38,59r38,0r0,20","w":113},"g":{"d":"23,-90v0,-46,15,-90,65,-89v19,0,36,4,50,23r0,-21r25,0r0,182v7,71,-90,101,-134,53r17,-17v29,35,99,15,91,-37r0,-27v-14,18,-31,23,-50,23v-49,0,-64,-44,-64,-90xm137,-90v0,-33,-5,-66,-44,-66v-39,0,-44,33,-44,66v0,33,5,66,44,66v39,0,44,-33,44,-66","w":195},"h":{"d":"172,0r-26,0v-5,-59,22,-156,-43,-156v-66,0,-40,96,-45,156r-26,0r0,-256r26,0r0,98v36,-42,114,-19,114,44r0,114","w":202},"i":{"d":"60,-228r-29,0r0,-29r29,0r0,29xm58,0r-26,0r0,-177r26,0r0,177","w":91},"j":{"d":"60,-228r-29,0r0,-29r29,0r0,29xm58,32v1,33,-22,53,-63,48r0,-23v24,2,37,-3,37,-26r0,-207r26,0r0,208","w":91},"k":{"d":"181,0r-32,0r-56,-91r-35,40r0,51r-26,0r0,-256r26,0r0,171r80,-92r33,0r-60,68","w":192},"l":{"d":"95,0v-40,4,-63,-13,-63,-47r0,-209r26,0r0,208v-2,23,13,28,37,26r0,22","w":106},"m":{"d":"163,-150v31,-50,123,-32,123,37r0,113r-26,0v-5,-60,21,-156,-44,-156v-66,0,-39,96,-44,156r-26,0v-5,-59,22,-156,-43,-156v-66,0,-40,96,-45,156r-26,0r0,-177r26,0r0,19v26,-31,86,-27,105,8","w":316},"n":{"d":"58,-158v37,-42,114,-18,114,45r0,113r-26,0v-5,-60,21,-156,-44,-156v-65,0,-39,96,-44,156r-26,0r0,-177r26,0r0,19","w":202},"o":{"d":"95,-179v50,0,73,42,73,90v0,48,-22,91,-73,91v-50,0,-72,-43,-72,-91v0,-48,22,-90,72,-90xm95,-21v35,0,47,-33,47,-68v0,-34,-12,-67,-47,-67v-34,0,-46,33,-46,67v0,34,11,68,46,68","w":190},"p":{"d":"108,-179v51,-2,65,44,65,90v0,46,-13,93,-65,91v-19,0,-36,-5,-50,-23r0,100r-26,0r0,-256r26,0r0,21v14,-19,31,-23,50,-23xm147,-89v0,-35,-5,-67,-44,-67v-39,0,-45,32,-45,67v0,35,6,68,45,68v39,0,44,-33,44,-68","w":196},"q":{"d":"23,-89v0,-45,14,-92,65,-90v19,0,36,4,50,23r0,-21r26,0r0,256r-26,0r0,-100v-14,18,-31,23,-50,23v-51,2,-65,-45,-65,-91xm138,-89v0,-35,-5,-67,-44,-67v-39,0,-45,32,-45,67v0,35,6,68,45,68v39,0,44,-33,44,-68","w":196},"r":{"d":"150,-163r-19,20v-26,-29,-73,-6,-73,34r0,109r-26,0r0,-177r26,0r0,21v18,-26,67,-33,92,-7","w":151},"s":{"d":"160,-52v0,62,-110,70,-145,29r18,-18v21,29,100,31,102,-10v1,-25,-34,-27,-59,-29v-35,-3,-53,-18,-53,-47v0,-57,93,-65,129,-33r-17,17v-22,-20,-88,-21,-86,15v-3,25,33,26,59,28v31,2,52,15,52,48","w":178},"t":{"d":"100,0v-40,5,-64,-15,-63,-48r0,-108r-23,0r0,-20r23,0r0,-55r26,0r0,55r37,0r0,20r-37,0r0,108v-1,21,14,28,37,26r0,22","w":119},"u":{"d":"144,-20v-36,43,-113,20,-113,-44r0,-113r26,0v5,59,-22,156,43,156v65,0,39,-96,44,-156r26,0r0,177r-26,0r0,-20","w":202},"v":{"d":"157,-177r-65,177r-23,0r-65,-177r28,0r48,142r49,-142r28,0","w":160},"w":{"d":"257,-177r-56,177r-24,0r-47,-138r-46,138r-24,0r-56,-177r28,0r41,142r46,-142r22,0r47,142r41,-142r28,0","w":260},"x":{"d":"160,0r-31,0r-43,-69r-43,69r-31,0r60,-90r-58,-87r32,0r40,65r40,-65r32,0r-58,87","w":172},"y":{"d":"157,-177r-81,220v-8,25,-27,35,-58,33r0,-23v39,6,38,-33,50,-57r-64,-173r28,0r49,142r48,-142r28,0","w":160},"z":{"d":"147,0r-129,0r0,-22r99,-132r-94,0r0,-23r124,0r0,22r-99,132r99,0r0,23","w":165},"{":{"d":"53,-128v58,22,-22,143,57,132r0,23v-40,2,-61,-6,-61,-47v0,-38,19,-103,-32,-97r0,-23v80,10,-27,-161,93,-143r0,23v-75,-15,-1,108,-57,132","w":127},"|":{"d":"72,27r-26,0r0,-310r26,0r0,310","w":117},"}":{"d":"17,-283v119,-19,10,142,93,143r0,23v-79,-7,26,162,-93,144r0,-23v75,15,0,-109,58,-132v-33,-8,-23,-64,-23,-104v0,-28,-9,-28,-35,-28r0,-23","w":127},"~":{"d":"18,-95v44,-66,96,27,142,-21r16,16v-45,65,-96,-28,-143,21","w":194},"\u00c4":{"d":"216,0r-30,0r-20,-58r-112,0r-21,58r-29,0r95,-256r23,0xm158,-82r-47,-135r-49,135r96,0xm160,-284r-26,0r0,-32r26,0r0,32xm84,-284r-26,0r0,-32r26,0r0,32","w":219},"\u00c5":{"d":"151,-312v0,23,-19,43,-42,43v-23,0,-43,-20,-43,-43v0,-23,20,-43,43,-43v23,0,42,19,42,43xm134,-312v0,-14,-11,-25,-25,-25v-14,0,-25,11,-25,25v0,14,11,25,25,25v14,0,25,-11,25,-25xm216,0r-30,0r-20,-58r-112,0r-21,58r-29,0r95,-256r23,0xm158,-82r-47,-135r-49,135r96,0","w":219},"\u00c7":{"d":"55,-128v0,79,9,106,62,106v32,0,55,-21,62,-52r27,0v-8,48,-43,76,-89,76v-66,0,-90,-44,-90,-130v0,-86,23,-130,90,-130v46,0,80,28,89,76r-28,0v-7,-31,-29,-52,-61,-52v-53,0,-62,28,-62,106xm134,24r-22,54r-28,0r26,-54r24,0","w":229},"\u00c9":{"d":"196,0r-159,0r0,-256r159,0r0,24r-132,0r0,91r113,0r0,24r-113,0r0,93r132,0r0,24xm158,-336r-39,55r-24,0r32,-55r31,0","w":216},"\u00d1":{"d":"74,-303v36,-51,66,22,101,-15r13,13v-37,51,-65,-20,-101,14xm226,0r-25,0r-137,-206r0,206r-27,0r0,-256r26,0r136,205r0,-205r27,0r0,256","w":263},"\u00d6":{"d":"117,-258v67,0,90,44,90,130v0,86,-22,130,-90,130v-67,0,-90,-44,-90,-130v0,-86,22,-130,90,-130xm117,-22v51,-9,62,-28,62,-106v0,-79,-9,-97,-62,-106v-52,8,-62,28,-62,106v0,79,11,96,62,106xm168,-284r-26,0r0,-32r26,0r0,32xm92,-284r-26,0r0,-32r26,0r0,32","w":234},"\u00dc":{"d":"212,-85v0,51,-37,87,-89,87v-52,0,-90,-36,-90,-87r0,-171r28,0r0,169v0,39,25,65,62,65v37,0,62,-26,62,-65r0,-169r27,0r0,171xm174,-284r-26,0r0,-32r26,0r0,32xm98,-284r-26,0r0,-32r26,0r0,32","w":245},"\u00e1":{"d":"133,-17v-32,35,-115,23,-115,-33v0,-50,59,-55,115,-51v3,-37,-7,-56,-46,-56v-23,0,-34,5,-44,20r-18,-16v31,-46,134,-32,134,33r0,120r-26,0r0,-17xm84,-20v35,0,55,-19,49,-62v-38,0,-89,-7,-89,32v0,21,12,30,40,30xm136,-269r-39,55r-24,0r32,-55r31,0","w":189},"\u00e0":{"d":"133,-17v-32,35,-115,23,-115,-33v0,-50,59,-55,115,-51v3,-37,-7,-56,-46,-56v-23,0,-34,5,-44,20r-18,-16v31,-46,134,-32,134,33r0,120r-26,0r0,-17xm84,-20v35,0,55,-19,49,-62v-38,0,-89,-7,-89,32v0,21,12,30,40,30xm109,-214r-24,0r-39,-55r31,0","w":189},"\u00e2":{"d":"148,-214r-25,0r-32,-37r-33,37r-25,0r45,-55r25,0xm133,-17v-32,35,-115,23,-115,-33v0,-50,59,-55,115,-51v3,-37,-7,-56,-46,-56v-23,0,-34,5,-44,20r-18,-16v31,-46,134,-32,134,33r0,120r-26,0r0,-17xm84,-20v35,0,55,-19,49,-62v-38,0,-89,-7,-89,32v0,21,12,30,40,30","w":189},"\u00e4":{"d":"133,-17v-32,35,-115,23,-115,-33v0,-50,59,-55,115,-51v3,-37,-7,-56,-46,-56v-23,0,-34,5,-44,20r-18,-16v31,-46,134,-32,134,33r0,120r-26,0r0,-17xm84,-20v35,0,55,-19,49,-62v-38,0,-89,-7,-89,32v0,21,12,30,40,30xm142,-217r-26,0r0,-32r26,0r0,32xm66,-217r-26,0r0,-32r26,0r0,32","w":189},"\u00e3":{"d":"33,-236v36,-51,65,21,101,-14r13,13v-38,50,-66,-22,-101,14xm133,-17v-32,35,-115,23,-115,-33v0,-50,59,-55,115,-51v3,-37,-7,-56,-46,-56v-23,0,-34,5,-44,20r-18,-16v31,-46,134,-32,134,33r0,120r-26,0r0,-17xm84,-20v35,0,55,-19,49,-62v-38,0,-89,-7,-89,32v0,21,12,30,40,30","w":189},"\u00e5":{"d":"133,-247v0,23,-19,43,-42,43v-23,0,-43,-20,-43,-43v0,-23,20,-43,43,-43v23,0,42,19,42,43xm116,-247v0,-14,-11,-25,-25,-25v-14,0,-25,11,-25,25v0,14,11,25,25,25v14,0,25,-11,25,-25xm133,-17v-32,35,-115,23,-115,-33v0,-50,59,-55,115,-51v3,-37,-7,-56,-46,-56v-23,0,-34,5,-44,20r-18,-16v31,-46,134,-32,134,33r0,120r-26,0r0,-17xm84,-20v35,0,55,-19,49,-62v-38,0,-89,-7,-89,32v0,21,12,30,40,30","w":189},"\u00e7":{"d":"49,-89v-8,62,58,90,93,48r17,17v-49,54,-136,23,-136,-65v0,-88,87,-117,136,-64r-17,17v-34,-42,-101,-14,-93,47xm113,24r-22,54r-28,0r26,-54r24,0","w":177},"\u00e9":{"d":"168,-82r-119,0v-6,62,66,79,98,41r18,16v-48,50,-142,33,-142,-64v0,-57,27,-90,72,-90v50,0,76,38,73,97xm142,-101v8,-58,-69,-75,-88,-30v-4,10,-4,16,-5,30r93,0xm141,-269r-39,55r-24,0r32,-55r31,0","w":190},"\u00e8":{"d":"168,-82r-119,0v-6,62,66,79,98,41r18,16v-48,50,-142,33,-142,-64v0,-57,27,-90,72,-90v50,0,76,38,73,97xm142,-101v8,-58,-69,-75,-88,-30v-4,10,-4,16,-5,30r93,0xm114,-214r-24,0r-39,-55r31,0","w":190},"\u00ea":{"d":"154,-214r-25,0r-33,-37r-32,37r-25,0r45,-55r25,0xm168,-82r-119,0v-6,62,66,79,98,41r18,16v-48,50,-142,33,-142,-64v0,-57,27,-90,72,-90v50,0,76,38,73,97xm142,-101v8,-58,-69,-75,-88,-30v-4,10,-4,16,-5,30r93,0","w":190},"\u00eb":{"d":"168,-82r-119,0v-6,62,66,79,98,41r18,16v-48,50,-142,33,-142,-64v0,-57,27,-90,72,-90v50,0,76,38,73,97xm142,-101v8,-58,-69,-75,-88,-30v-4,10,-4,16,-5,30r93,0xm147,-217r-26,0r0,-32r26,0r0,32xm71,-217r-26,0r0,-32r26,0r0,32","w":190},"\u00ed":{"d":"58,0r-26,0r0,-177r26,0r0,177xm86,-269r-39,55r-24,0r32,-55r31,0","w":91},"\u00ec":{"d":"58,0r-26,0r0,-177r26,0r0,177xm69,-214r-24,0r-39,-55r31,0","w":91},"\u00ee":{"d":"103,-214r-25,0r-33,-37r-32,37r-25,0r45,-55r25,0xm58,0r-26,0r0,-177r26,0r0,177","w":91},"\u00ef":{"d":"58,0r-26,0r0,-177r26,0r0,177xm96,-217r-26,0r0,-32r26,0r0,32xm20,-217r-26,0r0,-32r26,0r0,32","w":91},"\u00f1":{"d":"45,-236v37,-51,64,21,101,-14r13,13v-38,50,-66,-22,-101,14xm58,-158v37,-42,114,-18,114,45r0,113r-26,0v-5,-60,21,-156,-44,-156v-65,0,-39,96,-44,156r-26,0r0,-177r26,0r0,19","w":202},"\u00f3":{"d":"95,-179v50,0,73,42,73,90v0,48,-22,91,-73,91v-50,0,-72,-43,-72,-91v0,-48,22,-90,72,-90xm95,-21v35,0,47,-33,47,-68v0,-34,-12,-67,-47,-67v-34,0,-46,33,-46,67v0,34,11,68,46,68xm140,-269r-39,55r-24,0r32,-55r31,0","w":190},"\u00f2":{"d":"95,-179v50,0,73,42,73,90v0,48,-22,91,-73,91v-50,0,-72,-43,-72,-91v0,-48,22,-90,72,-90xm95,-21v35,0,47,-33,47,-68v0,-34,-12,-67,-47,-67v-34,0,-46,33,-46,67v0,34,11,68,46,68xm110,-214r-24,0r-39,-55r31,0","w":190},"\u00f4":{"d":"153,-214r-25,0r-33,-37r-32,37r-25,0r45,-55r25,0xm95,-179v50,0,73,42,73,90v0,48,-22,91,-73,91v-50,0,-72,-43,-72,-91v0,-48,22,-90,72,-90xm95,-21v35,0,47,-33,47,-68v0,-34,-12,-67,-47,-67v-34,0,-46,33,-46,67v0,34,11,68,46,68","w":190},"\u00f6":{"d":"95,-179v50,0,73,42,73,90v0,48,-22,91,-73,91v-50,0,-72,-43,-72,-91v0,-48,22,-90,72,-90xm95,-21v35,0,47,-33,47,-68v0,-34,-12,-67,-47,-67v-34,0,-46,33,-46,67v0,34,11,68,46,68xm146,-217r-26,0r0,-32r26,0r0,32xm70,-217r-26,0r0,-32r26,0r0,32","w":190},"\u00f5":{"d":"37,-236v37,-50,65,21,102,-14r13,13v-38,50,-66,-22,-101,14xm95,-179v50,0,73,42,73,90v0,48,-22,91,-73,91v-50,0,-72,-43,-72,-91v0,-48,22,-90,72,-90xm95,-21v35,0,47,-33,47,-68v0,-34,-12,-67,-47,-67v-34,0,-46,33,-46,67v0,34,11,68,46,68","w":190},"\u00fa":{"d":"144,-20v-36,43,-113,20,-113,-44r0,-113r26,0v5,59,-22,156,43,156v65,0,39,-96,44,-156r26,0r0,177r-26,0r0,-20xm145,-269r-39,55r-24,0r32,-55r31,0","w":202},"\u00f9":{"d":"144,-20v-36,43,-113,20,-113,-44r0,-113r26,0v5,59,-22,156,43,156v65,0,39,-96,44,-156r26,0r0,177r-26,0r0,-20xm118,-214r-24,0r-39,-55r31,0","w":202},"\u00fb":{"d":"157,-214r-25,0r-32,-37r-32,37r-25,0r45,-55r24,0xm144,-20v-36,43,-113,20,-113,-44r0,-113r26,0v5,59,-22,156,43,156v65,0,39,-96,44,-156r26,0r0,177r-26,0r0,-20","w":202},"\u00fc":{"d":"144,-20v-36,43,-113,20,-113,-44r0,-113r26,0v5,59,-22,156,43,156v65,0,39,-96,44,-156r26,0r0,177r-26,0r0,-20xm151,-217r-26,0r0,-32r26,0r0,32xm75,-217r-26,0r0,-32r26,0r0,32","w":202},"\u00b0":{"d":"143,-201v0,33,-26,60,-59,60v-33,0,-60,-27,-60,-60v0,-33,27,-59,60,-59v33,0,59,26,59,59xm121,-201v0,-22,-17,-38,-38,-38v-21,0,-37,16,-37,38v0,22,17,39,38,39v21,0,37,-17,37,-39","w":166},"\u00a2":{"d":"161,-68v-17,18,-31,26,-52,27r0,41r-21,0r0,-42v-40,-6,-65,-38,-65,-90v0,-52,25,-83,65,-89r0,-35r21,0r0,34v21,1,35,9,52,27r-17,16v-12,-13,-22,-19,-36,-20r0,134v14,-1,24,-7,36,-20xm89,-198v-54,4,-55,128,0,132r0,-132","w":179},"\u00a3":{"d":"179,0r-139,0r0,-119r-23,0r0,-19r23,0v-7,-71,17,-121,80,-120v24,0,43,7,59,23r-19,18v-27,-32,-101,-17,-93,42r0,37r53,0r0,19r-53,0r0,95r112,0r0,24","w":197},"\u00a7":{"d":"120,-157v60,12,62,107,12,125v21,8,35,25,35,51v0,37,-30,62,-67,62v-36,0,-66,-19,-68,-58r27,0v2,22,17,35,41,35v47,0,54,-66,9,-75v-41,-8,-78,-28,-78,-74v0,-30,19,-50,38,-59v-56,-19,-35,-108,31,-108v37,0,65,21,66,56r-26,0v-2,-24,-17,-33,-40,-33v-24,0,-38,12,-38,35v-1,31,32,38,58,43xm100,-45v26,0,43,-18,43,-46v1,-26,-18,-46,-43,-46v-25,1,-42,18,-42,46v0,29,16,46,42,46","w":200},"\u00b6":{"d":"180,79r-26,0r0,-311r-42,0r0,311r-26,0r0,-196v-43,0,-71,-34,-71,-69v0,-39,29,-70,78,-70r87,0r0,335","w":217},"\u00df":{"d":"148,-199v0,-24,-18,-37,-45,-37v-32,0,-44,19,-44,48r0,188r-27,0r0,-189v0,-45,29,-70,73,-70v60,0,93,72,47,103v33,13,22,64,22,105v0,39,-27,55,-70,51r0,-22v54,10,43,-46,44,-92v1,-26,-17,-33,-44,-30r0,-22v27,3,44,-8,44,-33","w":200},"\u00ae":{"d":"289,-128v0,72,-59,130,-131,130v-72,0,-130,-58,-130,-130v0,-72,58,-130,130,-130v72,0,131,58,131,130xm268,-128v0,-61,-50,-111,-110,-111v-60,0,-109,50,-109,111v0,61,49,111,109,111v60,0,110,-50,110,-111xm213,-57r-23,0r-33,-58r-21,0r0,58r-20,0r0,-143v47,-3,94,0,94,43v0,21,-13,34,-31,39xm189,-157v0,-24,-26,-27,-53,-25r0,50v27,2,53,-1,53,-25","w":317},"\u00a9":{"d":"289,-128v0,72,-59,130,-131,130v-72,0,-130,-58,-130,-130v0,-72,58,-130,130,-130v72,0,131,58,131,130xm268,-128v0,-61,-50,-111,-110,-111v-60,0,-109,50,-109,111v0,61,49,111,109,111v60,0,110,-50,110,-111xm207,-74v-41,42,-119,10,-111,-54v-7,-64,69,-97,111,-55r-13,13v-33,-32,-85,-5,-78,42v-7,46,46,73,78,41","w":317},"\u00b4":{"d":"135,-269r-39,55r-24,0r32,-55r31,0","w":180},"\u00a8":{"d":"141,-217r-26,0r0,-32r26,0r0,32xm65,-217r-26,0r0,-32r26,0r0,32","w":180},"\u00c6":{"d":"312,0r-159,0r0,-61r-89,0r-31,61r-30,0r135,-256r174,0r0,24r-132,0r0,91r113,0r0,25r-113,0r0,92r132,0r0,24xm153,-85r0,-147r-77,147r77,0","w":331},"\u00d8":{"d":"27,-128v-10,-104,54,-151,135,-119r12,-25r24,0r-18,37v26,24,27,51,27,107v0,104,-54,151,-135,119r-12,25r-24,0r18,-38v-27,-22,-22,-51,-27,-106xm117,-22v52,0,62,-28,62,-106v0,-47,-1,-66,-12,-81r-85,176v10,6,22,11,35,11xm117,-234v-53,0,-62,28,-62,106v0,47,1,66,12,81r85,-177v-10,-6,-22,-10,-35,-10","w":234},"\u00b1":{"d":"169,-104r-63,0r0,64r-24,0r0,-64r-63,0r0,-24r63,0r0,-63r24,0r0,63r63,0r0,24xm169,0r-150,0r0,-24r150,0r0,24"},"\u00a5":{"d":"182,-256r-56,112r36,0r0,19r-46,0v-5,10,-11,20,-9,38r55,0r0,20r-55,0r0,67r-28,0r0,-67r-56,0r0,-20r56,0v2,-18,-4,-28,-10,-38r-46,0r0,-19r36,0r-56,-112r29,0r61,122r60,-122r29,0","w":185},"\u00aa":{"d":"111,-128v-25,28,-91,18,-91,-26v0,-40,45,-44,90,-41v14,-46,-51,-57,-70,-28r-15,-13v24,-38,106,-27,106,26r0,95r-20,0r0,-13xm72,-132v27,0,43,-13,38,-47v-29,0,-69,-6,-69,24v0,16,9,23,31,23","w":161},"\u00ba":{"d":"82,-258v40,0,57,35,57,73v0,38,-18,72,-57,72v-40,0,-58,-33,-58,-72v0,-39,18,-73,58,-73xm82,-132v50,0,51,-106,0,-106v-27,0,-36,27,-36,53v0,26,10,53,36,53","w":163},"\u00e6":{"d":"147,-28v-26,47,-129,41,-129,-22v0,-50,59,-55,115,-51v3,-37,-7,-56,-46,-56v-23,0,-34,5,-44,20r-18,-16v23,-38,108,-33,125,1v43,-56,144,-20,128,70r-120,0v-6,62,66,79,99,41r18,16v-28,36,-104,38,-128,-3xm252,-101v8,-58,-68,-74,-88,-30v-4,10,-5,16,-6,30r94,0xm84,-20v35,0,55,-19,49,-62v-38,0,-89,-7,-89,32v0,21,12,30,40,30","w":300},"\u00f8":{"d":"44,-19v-41,-51,-26,-163,51,-160v15,0,28,3,38,9r14,-23r20,0r-20,35v41,51,26,164,-52,160v-15,0,-27,-4,-37,-10r-14,24r-21,0xm69,-29v59,35,93,-49,64,-107xm121,-149v-60,-33,-91,50,-63,108","w":190},"\u00bf":{"d":"97,-147r-30,0r0,-30r30,0r0,30xm152,15v0,37,-29,66,-68,66v-57,0,-87,-68,-51,-109v13,-24,39,-37,36,-77r26,0v6,59,-53,70,-53,120v0,24,18,43,42,43v26,0,42,-20,42,-43r26,0","w":178},"\u00a1":{"d":"67,-147r-31,0r0,-30r31,0r0,30xm66,79r-30,0r4,-184r22,0","w":113},"\u00ac":{"d":"170,-37r-25,0r0,-49r-127,0r0,-25r152,0r0,74"},"\u00ab":{"d":"171,-21r-75,-75r75,-76r0,32r-43,44r43,43r0,32xm90,-21r-76,-75r76,-76r0,32r-43,44r43,43r0,32","w":199},"\u00bb":{"d":"185,-96r-76,75r0,-32r44,-43r-44,-44r0,-32xm104,-96r-76,75r0,-32r44,-43r-44,-44r0,-32","w":199},"\u00a0":{"w":89},"\u00c0":{"d":"216,0r-30,0r-20,-58r-112,0r-21,58r-29,0r95,-256r23,0xm158,-82r-47,-135r-49,135r96,0xm127,-281r-24,0r-39,-55r31,0","w":219},"\u00c3":{"d":"51,-303v36,-51,66,22,101,-15r13,13v-37,51,-65,-20,-101,14xm216,0r-30,0r-20,-58r-112,0r-21,58r-29,0r95,-256r23,0xm158,-82r-47,-135r-49,135r96,0","w":219},"\u00d5":{"d":"59,-303v36,-51,66,22,101,-15r14,13v-38,51,-65,-20,-102,14xm117,-258v67,0,90,44,90,130v0,86,-22,130,-90,130v-67,0,-90,-44,-90,-130v0,-86,22,-130,90,-130xm117,-22v51,-9,62,-28,62,-106v0,-79,-9,-97,-62,-106v-52,8,-62,28,-62,106v0,79,11,96,62,106","w":234},"\u00f7":{"d":"109,-145r-31,0r0,-31r31,0r0,31xm170,-85r-152,0r0,-24r152,0r0,24xm109,-18r-31,0r0,-31r31,0r0,31"},"\u00ff":{"d":"157,-177r-81,220v-8,25,-27,35,-58,33r0,-23v39,6,38,-33,50,-57r-64,-173r28,0r49,142r48,-142r28,0xm131,-217r-26,0r0,-32r26,0r0,32xm55,-217r-26,0r0,-32r26,0r0,32","w":160},"\u00a4":{"d":"210,-23r-17,16r-27,-26v-25,20,-70,20,-95,0r-26,26r-17,-16r27,-27v-21,-25,-21,-70,0,-95r-27,-26r17,-17r26,26v25,-20,70,-20,95,0r27,-26r17,17r-27,26v21,25,21,70,0,95xm175,-98v0,-31,-25,-55,-56,-55v-31,0,-56,24,-56,55v0,31,25,57,56,57v31,0,56,-26,56,-57","w":237},"\u00b7":{"d":"66,-80r-34,0r0,-34r34,0r0,34","w":97},"\u00c2":{"d":"166,-281r-25,0r-32,-38r-33,38r-25,0r45,-55r25,0xm216,0r-30,0r-20,-58r-112,0r-21,58r-29,0r95,-256r23,0xm158,-82r-47,-135r-49,135r96,0","w":219},"\u00ca":{"d":"170,-281r-25,0r-32,-38r-33,38r-25,0r45,-55r25,0xm196,0r-159,0r0,-256r159,0r0,24r-132,0r0,91r113,0r0,24r-113,0r0,93r132,0r0,24","w":216},"\u00c1":{"d":"216,0r-30,0r-20,-58r-112,0r-21,58r-29,0r95,-256r23,0xm158,-82r-47,-135r-49,135r96,0xm154,-336r-39,55r-24,0r32,-55r31,0","w":219},"\u00cb":{"d":"196,0r-159,0r0,-256r159,0r0,24r-132,0r0,91r113,0r0,24r-113,0r0,93r132,0r0,24xm164,-284r-26,0r0,-32r26,0r0,32xm88,-284r-26,0r0,-32r26,0r0,32","w":216},"\u00c8":{"d":"196,0r-159,0r0,-256r159,0r0,24r-132,0r0,91r113,0r0,24r-113,0r0,93r132,0r0,24xm131,-281r-24,0r-39,-55r31,0","w":216},"\u00cd":{"d":"64,0r-27,0r0,-256r27,0r0,256xm91,-336r-39,55r-24,0r32,-55r31,0","w":101},"\u00ce":{"d":"107,-281r-25,0r-32,-38r-32,38r-25,0r45,-55r24,0xm64,0r-27,0r0,-256r27,0r0,256","w":101},"\u00cf":{"d":"64,0r-27,0r0,-256r27,0r0,256xm101,-284r-26,0r0,-32r26,0r0,32xm25,-284r-26,0r0,-32r26,0r0,32","w":101},"\u00cc":{"d":"64,0r-27,0r0,-256r27,0r0,256xm74,-281r-24,0r-39,-55r31,0","w":101},"\u00d3":{"d":"117,-258v67,0,90,44,90,130v0,86,-22,130,-90,130v-67,0,-90,-44,-90,-130v0,-86,22,-130,90,-130xm117,-22v51,-9,62,-28,62,-106v0,-79,-9,-97,-62,-106v-52,8,-62,28,-62,106v0,79,11,96,62,106xm162,-336r-39,55r-24,0r32,-55r31,0","w":234},"\u00d4":{"d":"174,-281r-25,0r-32,-38r-32,38r-25,0r45,-55r24,0xm117,-258v67,0,90,44,90,130v0,86,-22,130,-90,130v-67,0,-90,-44,-90,-130v0,-86,22,-130,90,-130xm117,-22v51,-9,62,-28,62,-106v0,-79,-9,-97,-62,-106v-52,8,-62,28,-62,106v0,79,11,96,62,106","w":234},"\u00d2":{"d":"117,-258v67,0,90,44,90,130v0,86,-22,130,-90,130v-67,0,-90,-44,-90,-130v0,-86,22,-130,90,-130xm117,-22v51,-9,62,-28,62,-106v0,-79,-9,-97,-62,-106v-52,8,-62,28,-62,106v0,79,11,96,62,106xm135,-281r-24,0r-39,-55r31,0","w":234},"\u00da":{"d":"212,-85v0,51,-37,87,-89,87v-52,0,-90,-36,-90,-87r0,-171r28,0r0,169v0,39,25,65,62,65v37,0,62,-26,62,-65r0,-169r27,0r0,171xm168,-336r-39,55r-24,0r32,-55r31,0","w":245},"\u00db":{"d":"180,-281r-25,0r-32,-38r-33,38r-24,0r45,-55r24,0xm212,-85v0,51,-37,87,-89,87v-52,0,-90,-36,-90,-87r0,-171r28,0r0,169v0,39,25,65,62,65v37,0,62,-26,62,-65r0,-169r27,0r0,171","w":245},"\u00d9":{"d":"212,-85v0,51,-37,87,-89,87v-52,0,-90,-36,-90,-87r0,-171r28,0r0,169v0,39,25,65,62,65v37,0,62,-26,62,-65r0,-169r27,0r0,171xm141,-281r-24,0r-39,-55r31,0","w":245},"\u00af":{"d":"144,-221r-108,0r0,-21r108,0r0,21","w":180},"\u00b8":{"d":"113,24r-22,54r-28,0r26,-54r24,0","w":180}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International
 * FontFont release 15
 */
Cufon.registerFont({"w":195,"face":{"font-family":"DIN","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"289","descent":"-71","x-height":"2","bbox":"-16 -365 352 74","underline-thickness":"31.32","underline-position":"-48.6","stemh":"42","stemv":"47","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":83},"\u00d0":{"d":"131,-256v65,1,103,52,93,128v8,79,-25,128,-94,128r-92,0r0,-111r-25,0r0,-38r25,0r0,-107r93,0xm88,-44v66,-3,86,5,86,-83v0,-87,-18,-83,-86,-85r0,63r42,0r0,38r-42,0r0,67","w":245},"\u00f0":{"d":"20,-91v0,-60,25,-91,80,-92r-12,-22r-41,0r0,-33r25,0r-12,-21r51,0r11,21r33,0r0,33r-17,0v44,57,69,207,-40,207v-57,0,-78,-34,-78,-93xm98,-40v26,0,30,-24,30,-51v0,-27,-4,-52,-30,-52v-27,0,-31,24,-31,52v0,28,4,51,31,51"},"\u00dd":{"d":"205,-256r-77,151r0,105r-50,0r0,-105r-77,-151r54,0r48,103r47,-103r55,0xm156,-343r-41,62r-32,0r23,-62r50,0","w":205},"\u00fd":{"d":"176,-188r-80,218v-9,30,-34,43,-73,39r0,-42v31,6,36,-18,43,-40r-65,-175r50,0r39,116r37,-116r49,0xm141,-279r-41,62r-32,0r23,-62r50,0","w":177},"\u00de":{"d":"214,-130v0,62,-58,89,-134,80r0,50r-50,0r0,-256r50,0r0,47v75,-8,134,16,134,79xm164,-130v0,-39,-44,-36,-84,-35r0,71v40,1,84,4,84,-36","w":227},"\u00fe":{"d":"118,-190v51,-2,65,48,65,96v0,48,-13,99,-65,96v-19,0,-33,-5,-45,-19r0,86r-47,0r0,-325r47,0r0,85v12,-14,26,-19,45,-19xm136,-94v0,-31,-3,-54,-31,-54v-28,0,-32,23,-32,54v0,31,4,54,32,54v28,0,31,-23,31,-54","w":202},"\u00bd":{"d":"295,0r-98,0r0,-31r56,-61v12,-10,11,-32,-7,-33v-7,0,-15,3,-15,16r-34,0v0,-30,22,-46,49,-46v47,0,66,57,30,83r-38,41r57,0r0,31xm223,-256r-121,256r-36,0r121,-256r36,0xm80,-103r-34,0r0,-115r-32,28r0,-38r32,-28r34,0r0,153","w":310},"\u00bc":{"d":"287,-21r-12,0r0,21r-33,0r0,-21r-63,0r0,-32r51,-101r37,0r-51,101r26,0r0,-22r33,0r0,22r12,0r0,32xm225,-256r-121,256r-37,0r121,-256r37,0xm80,-103r-34,0r0,-115r-32,28r0,-38r32,-28r34,0r0,153","w":300},"\u00b9":{"d":"80,-103r-34,0r0,-115r-32,28r0,-38r32,-28r34,0r0,153","w":105},"\u00be":{"d":"297,-21r-12,0r0,21r-32,0r0,-21r-64,0r0,-32r52,-101r37,0r-52,101r27,0r0,-22r32,0r0,22r12,0r0,32xm237,-256r-122,256r-37,0r122,-256r37,0xm99,-182v35,19,12,91,-33,81v-26,0,-51,-14,-51,-48r34,0v0,12,8,18,17,18v10,0,17,-6,17,-18v0,-12,-8,-20,-22,-18r0,-29v13,1,21,-5,20,-15v0,-10,-7,-16,-15,-16v-8,0,-15,5,-15,15r-34,0v0,-28,22,-46,49,-46v43,0,65,57,33,76","w":311},"\u00b3":{"d":"99,-182v35,19,12,91,-33,81v-26,0,-51,-14,-51,-48r34,0v0,12,8,18,17,18v10,0,17,-6,17,-18v0,-12,-8,-20,-22,-18r0,-29v13,1,21,-5,20,-15v0,-10,-7,-16,-15,-16v-8,0,-15,5,-15,15r-34,0v0,-28,22,-46,49,-46v43,0,65,57,33,76","w":132},"\u00b2":{"d":"113,-103r-98,0r0,-30r57,-62v13,-11,11,-32,-8,-32v-7,0,-15,3,-15,16r-34,0v0,-30,22,-47,49,-47v47,0,61,52,31,84r-38,41r56,0r0,30","w":128},"\u00a6":{"d":"86,-157r-46,0r0,-126r46,0r0,126xm86,27r-46,0r0,-126r46,0r0,126","w":127},"\u00d7":{"d":"178,-52r-30,29r-50,-50r-51,50r-29,-29r50,-51r-50,-51r29,-29r51,51r50,-51r30,29r-51,51"},"!":{"d":"98,-256r-11,176r-36,0r-11,-176r58,0xm94,0r-50,0r0,-48r50,0r0,48","w":124},"\"":{"d":"142,-180r-43,0r0,-76r43,0r0,76xm68,-180r-44,0r0,-76r44,0r0,76","w":167},"#":{"d":"231,-151r-32,0r-5,39r25,0r0,44r-33,0r-10,68r-50,0r12,-68r-42,0r-11,68r-49,0r10,-68r-24,0r0,-44r32,0r5,-39r-25,0r0,-44r32,0r10,-63r50,0r-10,63r41,0r10,-63r49,0r-9,63r24,0r0,44xm150,-151r-41,0r-6,39r41,0","w":248},"$":{"d":"186,-130v44,47,10,131,-58,131r0,40r-36,0r0,-39v-35,-1,-62,-10,-85,-34r32,-32v15,15,35,21,57,22r0,-66v-48,-4,-79,-24,-79,-73v0,-41,28,-72,75,-77r0,-32r36,0r0,32v29,2,52,10,71,29r-32,32v-12,-12,-29,-17,-44,-18r0,63v26,3,51,10,63,22xm96,-154r0,-60v-43,3,-38,58,0,60xm123,-43v32,-1,43,-33,26,-53v-6,-8,-17,-8,-26,-9r0,62","w":222},"%":{"d":"287,-83v0,50,-10,85,-53,85v-42,0,-52,-35,-52,-85v0,-32,24,-49,52,-49v28,0,53,17,53,49xm232,-256r-121,256r-37,0r121,-256r37,0xm123,-209v0,49,-10,85,-52,85v-41,0,-52,-36,-52,-85v0,-32,24,-49,52,-49v28,0,52,17,52,49xm234,-28v24,2,19,-30,19,-53v0,-14,-7,-21,-19,-21v-24,-2,-17,31,-18,53v0,14,6,21,18,21xm71,-154v24,2,17,-32,18,-54v0,-14,-6,-20,-18,-20v-24,0,-17,31,-18,53v0,14,6,21,18,21","w":305},"&":{"d":"251,0r-60,0r-19,-22v-12,9,-29,24,-66,24v-57,0,-84,-30,-84,-78v0,-33,24,-53,46,-68v-10,-12,-26,-31,-26,-55v0,-35,26,-59,69,-59v64,0,87,76,39,105r-19,13r44,51v8,-11,12,-27,13,-45r44,0v-2,33,-10,60,-28,80xm106,-169v24,-7,39,-46,5,-50v-31,3,-24,35,-5,50xm144,-55r-51,-61v-36,16,-34,76,13,76v15,0,26,-5,38,-15","w":259},"'":{"d":"69,-180r-45,0r0,-76r45,0r0,76","w":93},"(":{"d":"76,-52v-1,32,11,39,25,55r-31,31v-22,-20,-44,-44,-41,-84v4,-68,-12,-150,9,-203v6,-15,20,-25,32,-37r31,31v-15,16,-25,22,-25,55r0,152","w":120},")":{"d":"51,-290v21,19,44,43,41,83v-4,69,12,150,-9,204v-6,15,-20,25,-32,37r-32,-32v15,-16,26,-21,26,-54r0,-152v1,-33,-10,-39,-26,-54","w":120},"*":{"d":"158,-166r-16,29r-38,-24r1,45r-33,0r2,-45r-38,24r-16,-29r39,-20r-39,-21r16,-29r38,24r-2,-45r33,0r-1,45r38,-24r16,29r-40,21","w":177},"+":{"d":"177,-78r-57,0r0,58r-44,0r0,-58r-58,0r0,-44r58,0r0,-57r44,0r0,57r57,0r0,44"},",":{"d":"76,20r-52,39r0,-110r52,0r0,71","w":100},"-":{"d":"132,-81r-111,0r0,-44r111,0r0,44","w":153},".":{"d":"78,0r-54,0r0,-53r54,0r0,53","w":102},"\/":{"d":"147,-283r-103,310r-44,0r103,-310r44,0","w":145},"0":{"d":"176,-74v0,49,-36,76,-78,76v-42,0,-78,-27,-78,-76r0,-108v0,-49,36,-76,78,-76v42,0,78,27,78,76r0,108xm98,-40v51,-3,31,-91,31,-141v0,-22,-13,-35,-31,-35v-51,3,-31,91,-31,141v0,22,13,35,31,35"},"1":{"d":"136,0r-47,0r0,-206r-52,45r0,-50r52,-45r47,0r0,256"},"2":{"d":"177,0r-156,0r0,-42r96,-111v22,-21,17,-63,-18,-63v-15,0,-31,7,-31,32r-47,0v0,-47,34,-74,78,-74v73,0,96,81,51,133r-72,83r99,0r0,42"},"3":{"d":"178,-74v0,51,-37,76,-81,76v-42,0,-81,-21,-82,-75r47,0v1,23,17,33,35,33v20,0,34,-13,34,-36v0,-23,-15,-37,-42,-35r0,-41v26,2,40,-12,39,-32v0,-22,-15,-32,-32,-32v-18,0,-30,12,-31,31r-47,0v1,-46,35,-73,78,-73v73,0,107,97,49,126v18,10,33,27,33,58"},"4":{"d":"184,-36r-23,0r0,36r-45,0r0,-36r-105,0r0,-45r88,-175r51,0r-88,175r54,0r0,-48r45,0r0,48r23,0r0,45"},"5":{"d":"107,-172v51,-3,71,45,71,86v0,51,-24,87,-79,88v-52,1,-78,-32,-78,-74r46,0v3,20,13,32,32,32v24,1,33,-20,32,-46v10,-52,-52,-57,-62,-26r-43,0r0,-144r146,0r0,42r-104,0r0,55v7,-6,22,-13,39,-13"},"6":{"d":"177,-78v0,50,-35,80,-80,80v-45,0,-80,-28,-80,-79v0,-68,53,-122,76,-179r51,0r-53,106v45,-15,86,18,86,72xm130,-77v0,-23,-13,-38,-33,-38v-19,0,-33,14,-33,38v0,24,14,37,33,37v19,0,33,-13,33,-37"},"7":{"d":"181,-214r-83,214r-51,0r83,-214r-67,0r0,40r-45,0r0,-82r163,0r0,42"},"8":{"d":"180,-75v0,50,-37,77,-82,77v-45,0,-82,-27,-82,-77v0,-31,18,-48,32,-57v-13,-9,-29,-26,-29,-53v0,-45,36,-73,79,-73v43,0,78,28,78,73v0,27,-15,44,-28,53v14,9,32,26,32,57xm130,-184v0,-18,-14,-32,-32,-32v-18,0,-32,14,-32,32v0,19,14,32,32,32v18,0,32,-13,32,-32xm133,-75v0,-20,-15,-36,-35,-36v-20,0,-35,16,-35,36v0,20,15,35,35,35v20,0,35,-15,35,-35"},"9":{"d":"98,-258v76,0,90,83,59,147r-54,111r-51,0r53,-106v-47,13,-87,-19,-87,-73v0,-50,35,-79,80,-79xm131,-179v0,-24,-14,-37,-33,-37v-19,0,-33,13,-33,37v0,23,13,38,33,38v19,0,33,-14,33,-38"},":":{"d":"87,-98r-54,0r0,-53r54,0r0,53xm87,0r-54,0r0,-53r54,0r0,53","w":111},";":{"d":"87,-98r-54,0r0,-53r54,0r0,53xm86,20r-51,39r0,-110r51,0r0,71","w":111},"<":{"d":"351,-81r-253,0r118,117r-59,0r-139,-139r139,-138r59,0r-118,116r253,0r0,44","w":369},"=":{"d":"177,-120r-159,0r0,-44r159,0r0,44xm177,-42r-159,0r0,-44r159,0r0,44"},">":{"d":"352,-103r-139,139r-59,0r117,-117r-253,0r0,-44r253,0r-117,-116r59,0","w":369},"?":{"d":"99,-258v60,0,100,72,59,117v-11,19,-34,30,-33,61r-47,0v-6,-53,42,-66,51,-107v0,-17,-12,-29,-30,-29v-19,0,-28,13,-28,30r-47,0v0,-45,33,-72,75,-72xm126,0r-50,0r0,-48r50,0r0,48","w":188},"@":{"d":"111,-258v84,0,141,10,141,90r0,169r-44,-1r0,-17v-42,44,-120,6,-105,-66v-13,-72,60,-109,104,-67v9,-60,-33,-66,-93,-66v-27,0,-51,20,-48,49v5,48,-14,115,15,140r-32,32v-45,-29,-24,-107,-28,-173v-4,-57,32,-90,90,-90xm207,-83v0,-28,-7,-46,-30,-46v-23,0,-29,18,-29,46v0,28,6,46,29,46v23,0,30,-18,30,-46","w":272},"A":{"d":"228,0r-52,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0xm147,-87r-31,-94r-32,94r63,0","w":229},"B":{"d":"216,-74v2,89,-100,74,-186,74r0,-256r103,0v50,0,79,28,79,72v0,28,-19,47,-32,53v15,7,36,23,36,57xm162,-182v0,-36,-46,-30,-82,-30r0,59v35,0,82,7,82,-29xm166,-76v0,-37,-48,-33,-86,-32r0,63v37,1,86,6,86,-31","w":236},"C":{"d":"71,-128v0,71,3,75,45,86v25,0,38,-16,43,-37r51,0v-9,54,-46,81,-94,81v-67,0,-104,-56,-95,-130v-9,-75,27,-130,95,-130v48,0,85,27,94,81r-51,0v-5,-21,-18,-37,-43,-37v-43,9,-45,17,-45,86","w":223},"D":{"d":"122,-256v70,-5,94,62,94,127v0,39,2,75,-26,105v-33,35,-99,21,-160,24r0,-256r92,0xm80,-45v67,3,86,-5,86,-84v0,-78,-19,-85,-86,-83r0,167","w":237},"E":{"d":"199,0r-169,0r0,-256r169,0r0,44r-119,0r0,60r101,0r0,45r-101,0r0,62r119,0r0,45","w":217},"F":{"d":"199,-212r-119,0r0,63r101,0r0,45r-101,0r0,104r-50,0r0,-256r169,0r0,44","w":212},"G":{"d":"116,-42v32,-1,50,-24,47,-59r-47,0r0,-42r96,0v11,88,-26,145,-96,145v-67,0,-104,-56,-95,-130v-8,-75,26,-130,95,-130v59,0,89,39,96,82r-50,0v-6,-24,-20,-38,-46,-38v-42,10,-45,16,-45,86v0,71,3,75,45,86","w":233},"H":{"d":"217,0r-50,0r0,-107r-87,0r0,107r-50,0r0,-256r50,0r0,104r87,0r0,-104r50,0r0,256","w":246},"I":{"d":"80,0r-50,0r0,-256r50,0r0,256","w":109},"J":{"d":"157,-84v3,86,-106,111,-156,60r33,-33v20,26,73,19,73,-29r0,-170r50,0r0,172","w":183},"K":{"d":"237,0r-58,0r-66,-117r-33,40r0,77r-50,0r0,-256r50,0r0,111r90,-111r61,0r-85,102","w":239},"L":{"d":"196,0r-166,0r0,-256r50,0r0,211r116,0r0,45","w":207},"M":{"d":"262,0r-50,0r0,-149r-49,97r-34,0r-49,-97r0,149r-50,0r0,-256r49,0r67,138r67,-138r49,0r0,256","w":291},"N":{"d":"226,0r-45,0r-101,-157r0,157r-50,0r0,-256r45,0r101,157r0,-157r50,0r0,256","w":255},"O":{"d":"116,-258v68,0,103,56,95,130v7,74,-27,130,-95,130v-68,0,-104,-56,-95,-130v-8,-75,26,-130,95,-130xm116,-42v42,-10,45,-16,45,-86v0,-71,-3,-75,-45,-86v-42,10,-45,16,-45,86v0,71,3,75,45,86","w":231},"P":{"d":"214,-176v0,62,-58,89,-134,80r0,96r-50,0r0,-256r99,0v53,0,85,36,85,80xm164,-176v0,-39,-44,-38,-84,-36r0,71v39,1,84,5,84,-35","w":226},"Q":{"d":"116,-258v68,0,95,56,95,130v0,39,0,67,-16,91r22,22r-27,26r-22,-23v-80,43,-166,-20,-147,-116v-8,-75,26,-130,95,-130xm71,-128v0,71,3,75,45,86v6,0,11,-2,16,-5r-22,-22r27,-26r19,19v4,-11,5,-26,5,-52v-1,-71,-3,-75,-45,-86v-42,10,-45,16,-45,86","w":231},"R":{"d":"224,0r-58,0r-50,-102r-36,0r0,102r-50,0r0,-256r100,0v92,-8,109,124,37,145xm163,-178v0,-38,-44,-35,-83,-34r0,68v39,1,83,4,83,-34","w":235},"S":{"d":"176,-130v45,54,3,132,-76,132v-39,0,-68,-8,-93,-34r32,-32v29,39,140,23,100,-32v-26,-17,-85,-10,-104,-34v-40,-51,-8,-128,71,-128v35,0,61,8,83,29r-32,32v-32,-37,-119,-12,-84,33v24,19,84,11,103,34","w":212},"T":{"d":"195,-212r-67,0r0,212r-50,0r0,-212r-67,0r0,-44r184,0r0,44","w":205},"U":{"d":"215,-88v0,54,-42,90,-95,90v-53,0,-94,-36,-94,-90r0,-168r50,0r0,166v0,30,17,48,44,48v27,0,45,-18,45,-48r0,-166r50,0r0,168","w":240},"V":{"d":"208,-256r-85,256r-37,0r-85,-256r52,0r51,167r52,-167r52,0","w":209},"W":{"d":"317,-256r-69,256r-41,0r-48,-156r-47,156r-41,0r-69,-256r52,0r40,161r47,-161r37,0r47,161r40,-161r52,0","w":319},"X":{"d":"215,0r-57,0r-50,-89r-49,89r-57,0r79,-131r-74,-125r57,0r44,82r45,-82r57,0r-75,125","w":217},"Y":{"d":"205,-256r-77,151r0,105r-50,0r0,-105r-77,-151r54,0r48,103r47,-103r55,0","w":205},"Z":{"d":"183,0r-169,0r0,-40r110,-172r-105,0r0,-44r164,0r0,39r-110,172r110,0r0,45","w":197},"[":{"d":"121,27r-92,0r0,-310r92,0r0,42r-45,0r0,226r45,0r0,42","w":136},"\\":{"d":"145,27r-44,0r-101,-305r44,0","w":145},"]":{"d":"108,27r-93,0r0,-42r46,0r0,-226r-46,0r0,-42r93,0r0,310","w":136},"^":{"d":"194,-140r-49,0r-37,-68r-36,68r-49,0r64,-119r43,0","w":216},"_":{"d":"217,64r-217,0r0,-31r217,0r0,31","w":216},"`":{"d":"110,-217r-32,0r-41,-62r50,0","w":180},"a":{"d":"122,-16v-33,36,-116,16,-109,-41v-5,-45,51,-60,108,-54v12,-45,-52,-49,-71,-24r-29,-29v37,-47,147,-31,147,41r0,123r-46,0r0,-16xm85,-36v26,0,39,-12,36,-43v-26,0,-65,-5,-63,21v0,13,9,22,27,22","w":192},"b":{"d":"118,-190v51,-2,65,48,65,96v0,48,-13,96,-65,96v-20,0,-33,-6,-46,-20r0,18r-46,0r0,-256r47,0r0,85v12,-14,26,-19,45,-19xm136,-94v0,-31,-3,-54,-31,-54v-28,0,-32,23,-32,54v0,31,4,54,32,54v28,0,31,-23,31,-54","w":201},"c":{"d":"64,-94v-6,49,39,70,67,39r32,32v-53,46,-146,36,-146,-71v0,-108,93,-116,146,-71r-32,32v-27,-31,-73,-9,-67,39","w":172},"d":{"d":"18,-94v0,-48,13,-99,65,-96v19,0,34,5,46,19r0,-85r47,0r0,256r-46,0r0,-18v-13,14,-26,20,-46,20v-52,3,-66,-47,-66,-96xm129,-94v0,-31,-4,-54,-32,-54v-28,0,-32,23,-32,54v0,31,4,54,32,54v28,0,32,-23,32,-54","w":201},"e":{"d":"180,-79r-117,0v-5,45,63,54,84,24r28,28v-50,49,-158,45,-158,-67v0,-61,33,-96,82,-96v59,1,86,47,81,111xm134,-111v6,-41,-55,-53,-67,-20v-3,7,-4,12,-4,20r71,0","w":197},"f":{"d":"113,-147r-34,0r0,147r-47,0r0,-147r-19,0r0,-35r19,0v-7,-54,19,-83,81,-77r0,39v-18,-1,-34,-2,-34,17r0,21r34,0r0,35","w":123},"g":{"d":"18,-99v0,-53,15,-90,64,-91v20,0,33,6,46,20r0,-18r46,0r0,181v7,74,-104,104,-151,53r29,-29v22,27,82,11,75,-25r0,-19v-12,14,-27,19,-45,19v-50,0,-64,-38,-64,-91xm127,-99v0,-25,-3,-49,-31,-49v-28,0,-31,24,-31,49v0,25,3,49,31,49v28,0,31,-24,31,-49","w":199},"h":{"d":"181,0r-47,0r0,-114v0,-47,-61,-46,-61,0r0,114r-47,0r0,-256r47,0r0,86v38,-42,108,-13,108,49r0,121","w":204},"i":{"d":"73,-220r-47,0r0,-38r47,0r0,38xm73,0r-47,0r0,-188r47,0r0,188","w":99},"j":{"d":"73,-220r-47,0r0,-38r47,0r0,38xm73,17v3,36,-32,60,-81,53r0,-39v17,1,34,2,34,-17r0,-202r47,0r0,205","w":99},"k":{"d":"197,0r-58,0r-46,-78r-20,22r0,56r-47,0r0,-256r47,0r0,145r62,-77r57,0r-67,76","w":201},"l":{"d":"106,0v-50,6,-82,-17,-82,-54r0,-202r47,0r0,199v-2,18,17,18,35,17r0,40","w":117},"m":{"d":"168,-166v40,-48,123,-19,123,46r0,120r-47,0r0,-113v-1,-48,-62,-47,-62,-1r0,114r-47,0r0,-113v-1,-48,-61,-48,-62,0r0,113r-47,0r0,-188r46,0r0,18v25,-28,75,-27,96,4","w":315},"n":{"d":"72,-170v39,-43,110,-10,110,50r0,120r-47,0r0,-113v-1,-48,-61,-48,-62,0r0,113r-47,0r0,-188r46,0r0,18","w":206},"o":{"d":"98,-190v59,0,79,36,79,96v0,61,-20,96,-79,96v-59,0,-80,-36,-80,-96v0,-60,21,-96,80,-96xm98,-40v28,0,32,-25,32,-54v0,-29,-5,-54,-32,-54v-27,0,-33,25,-33,54v0,29,5,54,33,54"},"p":{"d":"118,-190v51,-2,65,48,65,96v0,48,-13,99,-65,96v-19,0,-33,-5,-45,-19r0,86r-47,0r0,-257r46,0r0,18v13,-14,26,-20,46,-20xm136,-94v0,-31,-3,-54,-31,-54v-28,0,-32,23,-32,54v0,31,4,54,32,54v28,0,31,-23,31,-54","w":201},"q":{"d":"18,-94v0,-49,14,-96,66,-96v20,0,33,6,46,20r0,-18r46,0r0,257r-47,0r0,-86v-12,14,-27,19,-46,19v-51,2,-65,-48,-65,-96xm129,-94v0,-31,-4,-54,-32,-54v-28,0,-32,23,-32,54v0,31,4,54,32,54v28,0,32,-23,32,-54","w":201},"r":{"d":"163,-172r-35,36v-17,-21,-55,-15,-55,23r0,113r-47,0r0,-188r46,0r0,18v18,-23,69,-29,91,-2","w":163},"s":{"d":"167,-59v-1,71,-114,80,-159,34r31,-30v15,15,36,17,50,17v31,0,49,-35,13,-37v-45,-3,-84,-8,-84,-55v0,-68,103,-75,144,-38r-29,29v-15,-16,-70,-18,-70,6v-4,17,32,17,49,19v37,4,55,23,55,55","w":180},"t":{"d":"111,0v-49,6,-80,-17,-80,-54r0,-93r-20,0r0,-35r20,0r0,-56r46,0r0,56r34,0r0,35r-34,0r0,90v-1,18,16,18,34,17r0,40","w":126},"u":{"d":"134,-17v-40,42,-110,9,-110,-51r0,-120r47,0r0,114v1,47,61,47,62,0r0,-114r47,0r0,188r-46,0r0,-17","w":206},"v":{"d":"176,-188r-69,188r-36,0r-70,-188r50,0r38,116r38,-116r49,0","w":177},"w":{"d":"272,-188r-57,188r-39,0r-39,-118r-39,118r-39,0r-58,-188r50,0r30,116r39,-116r34,0r38,116r30,-116r50,0","w":273},"x":{"d":"185,0r-56,0r-34,-56r-35,56r-56,0r65,-96r-62,-92r56,0r32,54r32,-54r56,0r-62,92","w":189},"y":{"d":"176,-188r-80,218v-9,30,-34,43,-73,39r0,-42v31,6,36,-18,43,-40r-65,-175r50,0r39,116r37,-116r49,0","w":177},"z":{"d":"156,0r-143,0r0,-36r83,-109r-78,0r0,-43r138,0r0,36r-84,110r84,0r0,42","w":172},"{":{"d":"79,-128v49,7,-3,121,51,113r19,0r0,42v-53,5,-92,-7,-92,-54v0,-39,14,-91,-42,-80r0,-42v26,1,44,-2,42,-28v-2,-56,-3,-109,55,-106r37,0r0,42v-27,0,-45,-4,-45,28r0,49v0,26,-16,32,-25,36","w":164},"|":{"d":"86,27r-46,0r0,-310r46,0r0,310","w":126},"}":{"d":"108,-230v0,39,-15,92,41,81r0,42v-25,-1,-43,2,-41,28v3,57,2,108,-56,106r-37,0r0,-42v28,0,46,2,46,-29r0,-48v0,-26,16,-32,25,-36v-9,-4,-25,-10,-25,-36v0,-40,14,-90,-46,-77r0,-42v53,-4,93,5,93,53","w":164},"~":{"d":"72,-136v36,0,71,43,103,5r30,30v-22,22,-38,31,-60,31v-37,0,-70,-44,-102,-6r-30,-29v22,-22,37,-31,59,-31","w":218},"\u00c4":{"d":"228,0r-52,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0xm147,-87r-31,-94r-32,94r63,0xm174,-282r-40,0r0,-45r40,0r0,45xm94,-282r-40,0r0,-45r40,0r0,45","w":229},"\u00c5":{"d":"161,-318v0,26,-21,47,-47,47v-26,0,-47,-21,-47,-47v0,-26,21,-47,47,-47v26,0,47,21,47,47xm135,-318v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,12,9,21,21,21v12,0,21,-9,21,-21xm228,0r-52,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0xm147,-87r-31,-94r-32,94r63,0","w":229},"\u00c7":{"d":"71,-128v0,71,3,75,45,86v25,0,38,-16,43,-37r51,0v-9,54,-46,81,-94,81v-67,0,-104,-56,-95,-130v-9,-75,27,-130,95,-130v48,0,85,27,94,81r-51,0v-5,-21,-18,-37,-43,-37v-43,9,-45,17,-45,86xm136,22r-16,52r-43,0r24,-52r35,0","w":223},"\u00c9":{"d":"199,0r-169,0r0,-256r169,0r0,44r-119,0r0,60r101,0r0,45r-101,0r0,62r119,0r0,45xm164,-343r-41,62r-32,0r23,-62r50,0","w":217},"\u00d1":{"d":"63,-310v28,-35,56,-16,88,-6v6,0,12,-2,21,-11r21,21v-29,35,-56,16,-89,6v-6,0,-12,2,-21,11xm226,0r-45,0r-101,-157r0,157r-50,0r0,-256r45,0r101,157r0,-157r50,0r0,256","w":255},"\u00d6":{"d":"116,-258v68,0,103,56,95,130v7,74,-27,130,-95,130v-68,0,-104,-56,-95,-130v-8,-75,26,-130,95,-130xm116,-42v42,-10,45,-16,45,-86v0,-71,-3,-75,-45,-86v-42,10,-45,16,-45,86v0,71,3,75,45,86xm176,-282r-40,0r0,-45r40,0r0,45xm96,-282r-40,0r0,-45r40,0r0,45","w":231},"\u00dc":{"d":"215,-88v0,54,-42,90,-95,90v-53,0,-94,-36,-94,-90r0,-168r50,0r0,166v0,30,17,48,44,48v27,0,45,-18,45,-48r0,-166r50,0r0,168xm180,-282r-40,0r0,-45r40,0r0,45xm100,-282r-40,0r0,-45r40,0r0,45","w":240},"\u00e1":{"d":"122,-16v-33,36,-116,16,-109,-41v-5,-45,51,-60,108,-54v12,-45,-52,-49,-71,-24r-29,-29v37,-47,147,-31,147,41r0,123r-46,0r0,-16xm85,-36v26,0,39,-12,36,-43v-26,0,-65,-5,-63,21v0,13,9,22,27,22xm147,-279r-41,62r-32,0r23,-62r50,0","w":192},"\u00e0":{"d":"122,-16v-33,36,-116,16,-109,-41v-5,-45,51,-60,108,-54v12,-45,-52,-49,-71,-24r-29,-29v37,-47,147,-31,147,41r0,123r-46,0r0,-16xm85,-36v26,0,39,-12,36,-43v-26,0,-65,-5,-63,21v0,13,9,22,27,22xm114,-217r-32,0r-41,-62r50,0","w":192},"\u00e2":{"d":"160,-217r-36,0r-30,-33r-30,33r-36,0r47,-61r38,0xm122,-16v-33,36,-116,16,-109,-41v-5,-45,51,-60,108,-54v12,-45,-52,-49,-71,-24r-29,-29v37,-47,147,-31,147,41r0,123r-46,0r0,-16xm85,-36v26,0,39,-12,36,-43v-26,0,-65,-5,-63,21v0,13,9,22,27,22","w":192},"\u00e4":{"d":"122,-16v-33,36,-116,16,-109,-41v-5,-45,51,-60,108,-54v12,-45,-52,-49,-71,-24r-29,-29v37,-47,147,-31,147,41r0,123r-46,0r0,-16xm85,-36v26,0,39,-12,36,-43v-26,0,-65,-5,-63,21v0,13,9,22,27,22xm154,-218r-40,0r0,-45r40,0r0,45xm74,-218r-40,0r0,-45r40,0r0,45","w":192},"\u00e3":{"d":"29,-246v34,-50,73,12,109,-17r21,20v-29,36,-55,17,-89,7v-6,0,-12,1,-21,10xm122,-16v-33,36,-116,16,-109,-41v-5,-45,51,-60,108,-54v12,-45,-52,-49,-71,-24r-29,-29v37,-47,147,-31,147,41r0,123r-46,0r0,-16xm85,-36v26,0,39,-12,36,-43v-26,0,-65,-5,-63,21v0,13,9,22,27,22","w":192},"\u00e5":{"d":"141,-257v0,26,-21,47,-47,47v-26,0,-47,-21,-47,-47v0,-26,21,-48,47,-48v26,0,47,22,47,48xm115,-257v0,-12,-9,-21,-21,-21v-12,0,-21,9,-21,21v0,12,9,21,21,21v12,0,21,-9,21,-21xm122,-16v-33,36,-116,16,-109,-41v-5,-45,51,-60,108,-54v12,-45,-52,-49,-71,-24r-29,-29v37,-47,147,-31,147,41r0,123r-46,0r0,-16xm85,-36v26,0,39,-12,36,-43v-26,0,-65,-5,-63,21v0,13,9,22,27,22","w":192},"\u00e7":{"d":"64,-94v-6,49,39,70,67,39r32,32v-53,46,-146,36,-146,-71v0,-108,93,-116,146,-71r-32,32v-27,-31,-73,-9,-67,39xm117,22r-16,52r-43,0r24,-52r35,0","w":173},"\u00e9":{"d":"180,-79r-117,0v-5,45,63,54,84,24r28,28v-50,49,-158,45,-158,-67v0,-61,33,-96,82,-96v59,1,86,47,81,111xm134,-111v6,-41,-55,-53,-67,-20v-3,7,-4,12,-4,20r71,0xm153,-279r-41,62r-32,0r23,-62r50,0","w":197},"\u00e8":{"d":"180,-79r-117,0v-5,45,63,54,84,24r28,28v-50,49,-158,45,-158,-67v0,-61,33,-96,82,-96v59,1,86,47,81,111xm134,-111v6,-41,-55,-53,-67,-20v-3,7,-4,12,-4,20r71,0xm120,-217r-32,0r-41,-62r50,0","w":197},"\u00ea":{"d":"166,-217r-36,0r-30,-33r-30,33r-37,0r48,-61r37,0xm180,-79r-117,0v-5,45,63,54,84,24r28,28v-50,49,-158,45,-158,-67v0,-61,33,-96,82,-96v59,1,86,47,81,111xm134,-111v6,-41,-55,-53,-67,-20v-3,7,-4,12,-4,20r71,0","w":197},"\u00eb":{"d":"180,-79r-117,0v-5,45,63,54,84,24r28,28v-50,49,-158,45,-158,-67v0,-61,33,-96,82,-96v59,1,86,47,81,111xm134,-111v6,-41,-55,-53,-67,-20v-3,7,-4,12,-4,20r71,0xm160,-218r-40,0r0,-45r40,0r0,45xm80,-218r-40,0r0,-45r40,0r0,45","w":197},"\u00ed":{"d":"73,0r-47,0r0,-188r47,0r0,188xm94,-279r-41,62r-32,0r23,-62r50,0","w":99},"\u00ec":{"d":"73,0r-47,0r0,-188r47,0r0,188xm79,-217r-32,0r-41,-62r50,0","w":99},"\u00ee":{"d":"117,-217r-37,0r-30,-33r-29,33r-37,0r48,-61r37,0xm73,0r-47,0r0,-188r47,0r0,188","w":99},"\u00ef":{"d":"73,0r-47,0r0,-188r47,0r0,188xm109,-218r-40,0r0,-45r40,0r0,45xm29,-218r-40,0r0,-45r40,0r0,45","w":99},"\u00f1":{"d":"39,-246v29,-35,56,-16,88,-7v6,0,12,-1,21,-10r21,20v-34,52,-72,-13,-110,17xm72,-170v39,-43,110,-10,110,50r0,120r-47,0r0,-113v-1,-48,-61,-48,-62,0r0,113r-47,0r0,-188r46,0r0,18","w":206},"\u00f3":{"d":"98,-190v59,0,79,36,79,96v0,61,-20,96,-79,96v-59,0,-80,-36,-80,-96v0,-60,21,-96,80,-96xm98,-40v28,0,32,-25,32,-54v0,-29,-5,-54,-32,-54v-27,0,-33,25,-33,54v0,29,5,54,33,54xm151,-279r-41,62r-32,0r23,-62r50,0"},"\u00f2":{"d":"98,-190v59,0,79,36,79,96v0,61,-20,96,-79,96v-59,0,-80,-36,-80,-96v0,-60,21,-96,80,-96xm98,-40v28,0,32,-25,32,-54v0,-29,-5,-54,-32,-54v-27,0,-33,25,-33,54v0,29,5,54,33,54xm116,-217r-32,0r-41,-62r50,0"},"\u00f4":{"d":"164,-217r-36,0r-30,-33r-30,33r-36,0r47,-61r38,0xm98,-190v59,0,79,36,79,96v0,61,-20,96,-79,96v-59,0,-80,-36,-80,-96v0,-60,21,-96,80,-96xm98,-40v28,0,32,-25,32,-54v0,-29,-5,-54,-32,-54v-27,0,-33,25,-33,54v0,29,5,54,33,54"},"\u00f6":{"d":"98,-190v59,0,79,36,79,96v0,61,-20,96,-79,96v-59,0,-80,-36,-80,-96v0,-60,21,-96,80,-96xm98,-40v28,0,32,-25,32,-54v0,-29,-5,-54,-32,-54v-27,0,-33,25,-33,54v0,29,5,54,33,54xm158,-218r-40,0r0,-45r40,0r0,45xm78,-218r-40,0r0,-45r40,0r0,45"},"\u00f5":{"d":"33,-246v34,-50,73,12,109,-17r21,20v-29,36,-55,17,-89,7v-6,0,-12,1,-21,10xm98,-190v59,0,79,36,79,96v0,61,-20,96,-79,96v-59,0,-80,-36,-80,-96v0,-60,21,-96,80,-96xm98,-40v28,0,32,-25,32,-54v0,-29,-5,-54,-32,-54v-27,0,-33,25,-33,54v0,29,5,54,33,54"},"\u00fa":{"d":"134,-17v-40,42,-110,9,-110,-51r0,-120r47,0r0,114v1,47,61,47,62,0r0,-114r47,0r0,188r-46,0r0,-17xm155,-279r-41,62r-32,0r23,-62r50,0","w":206},"\u00f9":{"d":"134,-17v-40,42,-110,9,-110,-51r0,-120r47,0r0,114v1,47,61,47,62,0r0,-114r47,0r0,188r-46,0r0,-17xm122,-217r-32,0r-41,-62r50,0","w":206},"\u00fb":{"d":"168,-217r-36,0r-30,-33r-30,33r-36,0r47,-61r38,0xm134,-17v-40,42,-110,9,-110,-51r0,-120r47,0r0,114v1,47,61,47,62,0r0,-114r47,0r0,188r-46,0r0,-17","w":206},"\u00fc":{"d":"134,-17v-40,42,-110,9,-110,-51r0,-120r47,0r0,114v1,47,61,47,62,0r0,-114r47,0r0,188r-46,0r0,-17xm162,-218r-40,0r0,-45r40,0r0,45xm82,-218r-40,0r0,-45r40,0r0,45","w":206},"\u00b0":{"d":"152,-195v0,37,-29,66,-66,66v-37,0,-66,-29,-66,-66v0,-37,29,-67,66,-67v37,0,66,30,66,67xm114,-195v0,-16,-12,-29,-28,-29v-16,0,-28,13,-28,29v0,16,12,29,28,29v16,0,28,-13,28,-29","w":172},"\u00a2":{"d":"169,-65v-14,14,-29,23,-49,27r0,38r-36,0r0,-38v-38,-8,-67,-39,-67,-94v0,-55,29,-86,67,-94r0,-30r36,0r0,30v20,4,35,13,49,27r-31,31v-7,-8,-13,-12,-23,-15r0,103v10,-3,16,-7,23,-15xm89,-183v-34,8,-34,96,0,102r0,-102","w":179},"\u00a3":{"d":"192,0r-156,0r0,-107r-22,0r0,-36r22,0v-18,-104,92,-148,156,-89r-33,33v-20,-26,-78,-18,-73,29r0,27r41,0r0,36r-41,0r0,62r106,0r0,45","w":208},"\u00a7":{"d":"170,-99v0,27,-19,46,-32,54v16,8,29,22,29,50v0,86,-141,91,-143,2r45,0v1,13,11,23,27,23v34,-2,36,-40,1,-50v-39,-11,-75,-27,-75,-75v0,-27,19,-46,33,-54v-47,-23,-33,-109,41,-109v47,0,70,26,70,61r-44,0v-1,-16,-12,-22,-26,-22v-34,1,-31,38,-1,45v40,10,75,27,75,75xm96,-65v20,-3,29,-9,29,-32v0,-21,-10,-30,-29,-32v-20,3,-29,10,-29,32v0,23,9,29,29,32","w":191},"\u00b6":{"d":"211,69r-47,0r0,-281r-36,0r0,281r-47,0r0,-180v-36,0,-68,-32,-68,-72v0,-47,33,-73,83,-73r115,0r0,325","w":240},"\u00df":{"d":"139,-194v0,-16,-13,-24,-32,-24v-25,0,-34,13,-34,34r0,184r-47,0r0,-188v0,-50,35,-70,81,-70v45,0,78,19,78,63v0,22,-11,33,-22,40v29,8,23,58,23,97v0,45,-29,62,-79,58r0,-40v42,8,31,-39,32,-74v0,-18,-13,-23,-32,-22r0,-36v19,1,32,-3,32,-22","w":206},"\u00ae":{"d":"282,-128v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130v0,-72,58,-130,130,-130v72,0,130,58,130,130xm251,-128v0,-58,-43,-101,-99,-101v-56,0,-99,43,-99,101v0,58,43,101,99,101v56,0,99,-43,99,-101xm211,-59r-36,0r-25,-54r-15,0r0,54r-31,0r0,-139r57,0v50,-3,60,69,20,81xm176,-154v0,-18,-21,-19,-41,-18r0,36v20,1,41,1,41,-18","w":303},"\u00a9":{"d":"282,-128v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130v0,-72,58,-130,130,-130v72,0,130,58,130,130xm251,-128v0,-58,-43,-101,-99,-101v-56,0,-99,43,-99,101v0,58,43,101,99,101v56,0,99,-43,99,-101xm202,-76v-40,37,-112,17,-112,-52v0,-69,71,-90,112,-52r-20,20v-26,-23,-61,-8,-61,32v0,40,35,55,61,32","w":303},"\u00b4":{"d":"143,-279r-41,62r-32,0r23,-62r50,0","w":180},"\u00a8":{"d":"150,-218r-40,0r0,-45r40,0r0,45xm70,-218r-40,0r0,-45r40,0r0,45","w":180},"\u00c6":{"d":"333,0r-168,0r0,-56r-81,0r-29,56r-54,0r134,-256r198,0r0,44r-118,0r0,61r101,0r0,44r-101,0r0,62r118,0r0,45xm165,-98r0,-114r-60,114r60,0","w":352},"\u00d8":{"d":"183,-232v27,25,28,59,28,104v0,91,-51,153,-136,122r-10,22r-36,0r19,-40v-27,-25,-27,-59,-27,-104v0,-91,49,-152,136,-123r10,-21r35,0xm116,-214v-42,10,-44,16,-45,86v0,28,1,44,4,54r64,-134v-6,-4,-14,-6,-23,-6xm116,-42v42,-10,44,-16,45,-86v0,-28,-1,-45,-4,-55r-64,134v6,4,14,7,23,7","w":234},"\u00b1":{"d":"177,-123r-57,0r0,58r-44,0r0,-58r-58,0r0,-43r58,0r0,-58r44,0r0,58r57,0r0,43xm177,0r-159,0r0,-44r159,0r0,44"},"\u00a5":{"d":"204,-256r-48,97r26,0r0,36r-45,0v-5,10,-11,19,-9,36r54,0r0,36r-54,0r0,51r-50,0r0,-51r-55,0r0,-36r55,0v2,-17,-4,-26,-9,-36r-46,0r0,-36r27,0r-49,-97r54,0r48,103r47,-103r54,0","w":205},"\u00aa":{"d":"104,-120v-26,30,-87,12,-87,-32v0,-36,41,-48,86,-43v9,-36,-41,-39,-56,-19r-24,-23v30,-38,118,-25,118,32r0,98r-37,0r0,-13xm75,-136v21,1,31,-10,28,-34v-21,0,-50,-4,-49,17v0,10,7,17,21,17","w":163},"\u00ba":{"d":"83,-258v47,0,64,29,64,77v0,48,-17,76,-64,76v-47,0,-63,-28,-63,-76v0,-48,16,-77,63,-77xm83,-139v22,0,26,-20,26,-42v0,-22,-3,-43,-26,-43v-22,-1,-25,20,-25,43v0,22,3,42,25,42","w":166},"\u00e6":{"d":"142,-24v-39,45,-129,33,-129,-33v0,-45,51,-60,108,-54v12,-45,-52,-49,-71,-24r-29,-29v25,-36,102,-33,129,-5v49,-49,144,-5,135,69r0,21r-118,0v-5,45,63,54,84,24r28,28v-29,36,-103,41,-137,3xm239,-111v4,-40,-54,-54,-67,-20v-3,7,-5,12,-5,20r72,0xm85,-36v26,0,39,-12,36,-43v-26,0,-65,-5,-63,21v0,13,9,22,27,22","w":301},"\u00f8":{"d":"18,-94v0,-74,52,-112,117,-88r13,-21r29,0v-6,12,-18,26,-21,36v17,18,21,39,21,73v0,75,-51,112,-117,88r-13,22r-28,0r21,-37v-17,-17,-22,-39,-22,-73xm115,-143v-43,-22,-60,34,-47,80xm80,-45v44,23,60,-33,47,-80"},"\u00bf":{"d":"112,-140r-50,0r0,-48r50,0r0,48xm165,-1v0,45,-34,72,-76,72v-61,0,-100,-73,-58,-117v11,-20,33,-31,33,-61r47,0v5,52,-51,63,-51,106v0,17,11,30,29,30v19,0,29,-13,29,-30r47,0","w":188},"\u00a1":{"d":"81,-140r-50,0r0,-48r50,0r0,48xm85,69r-58,0r12,-176r34,0","w":124},"\u00ac":{"d":"179,-34r-44,0r0,-52r-118,0r0,-44r162,0r0,96"},"\u00ab":{"d":"202,-10r-90,-89r90,-89r0,56r-34,33r34,33r0,56xm102,-10r-90,-89r90,-89r0,56r-34,33r34,33r0,56","w":226},"\u00bb":{"d":"214,-99r-90,89r0,-56r34,-33r-34,-33r0,-56xm114,-99r-90,89r0,-56r34,-33r-34,-33r0,-56","w":226},"\u00a0":{"w":83},"\u00c0":{"d":"228,0r-52,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0xm147,-87r-31,-94r-32,94r63,0xm134,-281r-32,0r-41,-62r50,0","w":229},"\u00c3":{"d":"49,-310v28,-35,56,-16,88,-6v6,0,12,-2,21,-11r21,21v-29,35,-56,16,-89,6v-6,0,-12,2,-21,11xm228,0r-52,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0xm147,-87r-31,-94r-32,94r63,0","w":229},"\u00d5":{"d":"51,-310v28,-35,56,-16,88,-6v6,0,12,-2,21,-11r21,21v-29,35,-57,17,-89,6v-6,0,-12,2,-21,11xm116,-258v68,0,103,56,95,130v7,74,-27,130,-95,130v-68,0,-104,-56,-95,-130v-8,-75,26,-130,95,-130xm116,-42v42,-10,45,-16,45,-86v0,-71,-3,-75,-45,-86v-42,10,-45,16,-45,86v0,71,3,75,45,86","w":231},"\u00f7":{"d":"121,-152r-46,0r0,-47r46,0r0,47xm179,-81r-162,0r0,-44r162,0r0,44xm121,-6r-46,0r0,-47r46,0r0,47"},"\u00ff":{"d":"176,-188r-80,218v-9,30,-34,43,-73,39r0,-42v31,6,36,-18,43,-40r-65,-175r50,0r39,116r37,-116r49,0xm148,-218r-40,0r0,-45r40,0r0,45xm68,-218r-40,0r0,-45r40,0r0,45","w":177},"\u00a4":{"d":"220,-35r-31,31r-27,-26v-24,15,-60,16,-84,0r-26,26r-31,-31r27,-26v-15,-24,-16,-60,0,-84r-27,-26r31,-31r26,26v24,-15,60,-16,84,0r27,-26r31,31r-27,26v15,24,16,60,0,84xm163,-103v0,-23,-20,-42,-43,-42v-23,0,-42,19,-42,42v0,23,19,42,42,42v23,0,43,-19,43,-42","w":240},"\u00b7":{"d":"78,-76r-54,0r0,-54r54,0r0,54","w":102},"\u00c2":{"d":"180,-281r-36,0r-30,-33r-30,33r-36,0r47,-61r38,0xm228,0r-52,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0xm147,-87r-31,-94r-32,94r63,0","w":229},"\u00ca":{"d":"178,-281r-37,0r-29,-33r-30,33r-37,0r48,-61r37,0xm199,0r-169,0r0,-256r169,0r0,44r-119,0r0,60r101,0r0,45r-101,0r0,62r119,0r0,45","w":217},"\u00c1":{"d":"228,0r-52,0r-15,-45r-92,0r-15,45r-52,0r93,-256r39,0xm147,-87r-31,-94r-32,94r63,0xm167,-343r-41,62r-32,0r23,-62r50,0","w":229},"\u00cb":{"d":"199,0r-169,0r0,-256r169,0r0,44r-119,0r0,60r101,0r0,45r-101,0r0,62r119,0r0,45xm172,-282r-40,0r0,-45r40,0r0,45xm92,-282r-40,0r0,-45r40,0r0,45","w":217},"\u00c8":{"d":"199,0r-169,0r0,-256r169,0r0,44r-119,0r0,60r101,0r0,45r-101,0r0,62r119,0r0,45xm132,-281r-32,0r-41,-62r50,0","w":217},"\u00cd":{"d":"80,0r-50,0r0,-256r50,0r0,256xm99,-343r-41,62r-32,0r23,-62r50,0","w":109},"\u00ce":{"d":"121,-281r-37,0r-30,-33r-30,33r-36,0r48,-61r37,0xm80,0r-50,0r0,-256r50,0r0,256","w":109},"\u00cf":{"d":"80,0r-50,0r0,-256r50,0r0,256xm115,-282r-40,0r0,-45r40,0r0,45xm35,-282r-40,0r0,-45r40,0r0,45","w":109},"\u00cc":{"d":"80,0r-50,0r0,-256r50,0r0,256xm84,-281r-32,0r-41,-62r50,0","w":109},"\u00d3":{"d":"116,-258v68,0,103,56,95,130v7,74,-27,130,-95,130v-68,0,-104,-56,-95,-130v-8,-75,26,-130,95,-130xm116,-42v42,-10,45,-16,45,-86v0,-71,-3,-75,-45,-86v-42,10,-45,16,-45,86v0,71,3,75,45,86xm169,-343r-41,62r-32,0r23,-62r50,0","w":231},"\u00d4":{"d":"182,-281r-36,0r-30,-33r-30,33r-36,0r47,-61r38,0xm116,-258v68,0,103,56,95,130v7,74,-27,130,-95,130v-68,0,-104,-56,-95,-130v-8,-75,26,-130,95,-130xm116,-42v42,-10,45,-16,45,-86v0,-71,-3,-75,-45,-86v-42,10,-45,16,-45,86v0,71,3,75,45,86","w":231},"\u00d2":{"d":"116,-258v68,0,103,56,95,130v7,74,-27,130,-95,130v-68,0,-104,-56,-95,-130v-8,-75,26,-130,95,-130xm116,-42v42,-10,45,-16,45,-86v0,-71,-3,-75,-45,-86v-42,10,-45,16,-45,86v0,71,3,75,45,86xm136,-281r-32,0r-41,-62r50,0","w":231},"\u00da":{"d":"215,-88v0,54,-42,90,-95,90v-53,0,-94,-36,-94,-90r0,-168r50,0r0,166v0,30,17,48,44,48v27,0,45,-18,45,-48r0,-166r50,0r0,168xm173,-343r-41,62r-32,0r23,-62r50,0","w":240},"\u00db":{"d":"186,-281r-36,0r-30,-33r-30,33r-36,0r48,-61r37,0xm215,-88v0,54,-42,90,-95,90v-53,0,-94,-36,-94,-90r0,-168r50,0r0,166v0,30,17,48,44,48v27,0,45,-18,45,-48r0,-166r50,0r0,168","w":240},"\u00d9":{"d":"215,-88v0,54,-42,90,-95,90v-53,0,-94,-36,-94,-90r0,-168r50,0r0,166v0,30,17,48,44,48v27,0,45,-18,45,-48r0,-166r50,0r0,168xm140,-281r-32,0r-41,-62r50,0","w":240},"\u00af":{"d":"147,-227r-114,0r0,-31r114,0r0,31","w":180},"\u00b8":{"d":"117,22r-16,52r-43,0r24,-52r35,0","w":180}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © Dutch Design: Albert-Jan Pool, 1995. Published by FontShop International
 * FontFont release 15
 */
Cufon.registerFont({"w":185,"face":{"font-family":"DIN","font-weight":200,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 3 3 0 0 0 0 0 0","ascent":"275","descent":"-85","x-height":"2","bbox":"-10 -351 349 85","underline-thickness":"13.68","underline-position":"-50.76","stemh":"16","stemv":"18","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":91},"\u00d0":{"d":"205,-215v21,12,18,167,0,174v-21,45,-93,43,-161,41r0,-122r-30,0r0,-15r30,0r0,-119v70,1,136,-10,161,41xm63,-17v93,2,148,1,136,-109v10,-108,-41,-117,-136,-113r0,102r64,0r0,15r-64,0r0,105","w":248},"\u00f0":{"d":"25,-87v-7,-55,39,-108,97,-83r-24,-40r-43,0r0,-14r35,0r-19,-32r19,0r18,32r29,0r0,14r-21,0v19,34,49,79,49,123v0,44,-23,89,-70,89v-47,0,-74,-44,-70,-89xm95,-14v37,0,55,-37,51,-73v3,-35,-13,-72,-51,-72v-37,0,-52,37,-52,72v0,36,15,73,52,73","w":189},"\u00dd":{"d":"174,-256r-75,150r0,106r-20,0r0,-106r-75,-150r20,0r66,129r63,-129r21,0xm131,-333r-38,53r-21,0r35,-53r24,0","w":177},"\u00fd":{"d":"150,-174r-81,221v-7,23,-26,33,-53,31v1,-7,-4,-19,7,-16v36,2,32,-39,45,-62r-63,-174r20,0r52,152r53,-152r20,0xm119,-265r-38,53r-21,0r35,-53r24,0","w":154},"\u00de":{"d":"211,-129v0,77,-74,78,-152,74r0,55r-19,0r0,-256r19,0r0,53v78,-3,152,-3,152,74xm192,-129v0,-67,-69,-57,-133,-57r0,113v63,0,133,11,133,-56","w":232},"\u00fe":{"d":"105,-176v50,-2,65,46,65,89v0,43,-15,91,-65,89v-19,0,-37,-4,-52,-24r0,105r-18,0r0,-339r18,0r0,105v15,-20,33,-25,52,-25xm151,-87v0,-36,-7,-72,-49,-72v-42,0,-49,36,-49,72v0,36,7,73,49,73v42,0,49,-37,49,-73","w":194},"\u00bd":{"d":"257,0r-85,0r0,-14r61,-77v16,-18,8,-51,-18,-50v-14,0,-27,8,-27,28r-16,0v0,-24,17,-42,43,-42v39,0,52,45,30,73r-54,68r66,0r0,14xm191,-256r-120,256r-16,0r120,-256r16,0xm61,-103r-16,0r0,-136r-29,26r0,-18v15,-9,19,-28,45,-25r0,153","w":275},"\u00bc":{"d":"258,-24r-19,0r0,24r-16,0r0,-24r-61,0r0,-15r55,-115r17,0r-55,115r44,0r0,-43r16,0r0,43r19,0r0,15xm196,-256r-119,256r-17,0r120,-256r16,0xm61,-103r-16,0r0,-136r-29,26r0,-18v15,-9,19,-28,45,-25r0,153","w":272},"\u00b9":{"d":"61,-103r-16,0r0,-136r-29,26r0,-18v15,-9,19,-28,45,-25r0,153","w":89},"\u00be":{"d":"276,-24r-19,0r0,24r-16,0r0,-24r-61,0r0,-15r55,-115r17,0r-55,115r44,0r0,-43r16,0r0,43r19,0r0,15xm218,-256r-120,256r-16,0r120,-256r16,0xm85,-182v41,13,25,81,-21,81v-24,0,-45,-13,-46,-41r16,0v1,19,15,27,30,27v17,0,29,-11,29,-30v0,-19,-10,-30,-33,-29r0,-14v21,1,30,-10,30,-28v0,-18,-12,-27,-27,-27v-16,0,-26,10,-27,25r-16,0v2,-25,20,-40,43,-40v43,0,59,61,22,76","w":290},"\u00b3":{"d":"85,-182v41,13,25,81,-21,81v-24,0,-45,-13,-46,-41r16,0v1,19,15,27,30,27v17,0,29,-11,29,-30v0,-19,-10,-30,-33,-29r0,-14v21,1,30,-10,30,-28v0,-18,-12,-27,-27,-27v-16,0,-26,10,-27,25r-16,0v2,-25,20,-40,43,-40v43,0,59,61,22,76","w":126},"\u00b2":{"d":"103,-103r-85,0r0,-14v22,-33,56,-58,69,-99v0,-17,-10,-27,-27,-27v-14,0,-26,7,-26,27r-16,0v0,-24,16,-42,42,-42v39,0,54,44,31,73r-54,68r66,0r0,14","w":120},"\u00a6":{"d":"66,-157r-18,0r0,-126r18,0r0,126xm66,27r-18,0r0,-126r18,0r0,126","w":118},"\u00d7":{"d":"159,-39r-11,11r-55,-56r-56,56r-11,-11r55,-56r-55,-56r11,-11r56,56r55,-56r11,11r-55,56"},"!":{"d":"70,-256r-1,187r-18,0r-1,-187r20,0xm72,0r-24,0r0,-24r24,0r0,24","w":109},"\"":{"d":"113,-200r-23,0r0,-56r23,0r0,56xm57,-200r-23,0r0,-56r23,0r0,56","w":146},"#":{"d":"212,-157r-36,0r-9,55r34,0r0,16r-37,0r-14,86r-18,0r14,-86r-63,0r-14,86r-18,0r14,-86r-35,0r0,-16r37,0r9,-55r-35,0r0,-17r37,0r13,-82r19,0r-13,82r63,0r13,-82r18,0r-13,82r34,0r0,17xm157,-157r-63,0r-9,55r63,0","w":230},"$":{"d":"95,-122v-43,-4,-71,-25,-71,-66v0,-40,27,-67,71,-70r0,-32r17,0r0,32v27,1,45,10,65,27r-12,13v-14,-13,-29,-22,-53,-24r0,105v47,6,78,23,78,68v0,41,-29,68,-78,71r0,39r-17,0r0,-39v-33,-1,-55,-12,-77,-34r14,-13v21,21,37,29,63,30r0,-107xm95,-140r0,-102v-47,0,-68,57,-39,86v11,11,26,14,39,16xm112,-15v52,2,77,-57,45,-89v-13,-13,-28,-12,-45,-15r0,104","w":211},"%":{"d":"273,-84v0,47,-4,87,-47,87v-43,0,-47,-40,-47,-87v0,-28,19,-48,47,-48v28,0,47,20,47,48xm217,-256r-119,256r-17,0r120,-256r16,0xm120,-211v0,47,-4,87,-48,87v-43,0,-47,-40,-47,-87v0,-28,19,-48,47,-48v28,0,48,20,48,48xm226,-11v37,1,31,-38,31,-73v0,-21,-9,-35,-31,-35v-37,0,-33,38,-32,73v0,22,10,35,32,35xm72,-138v36,1,33,-37,32,-72v0,-21,-10,-35,-32,-35v-36,0,-31,37,-31,72v0,22,9,35,31,35","w":298},"&":{"d":"238,0r-25,0r-24,-30v-10,10,-37,32,-79,32v-47,0,-80,-29,-80,-73v0,-41,29,-59,59,-79v-14,-16,-29,-35,-29,-57v0,-29,24,-51,53,-51v29,0,52,22,52,51v0,30,-29,45,-49,59r74,89v11,-17,15,-31,15,-64r19,0v0,32,-6,58,-22,78xm105,-161v19,-13,41,-21,41,-46v0,-19,-14,-34,-33,-34v-43,0,-43,47,-8,80xm178,-44r-78,-94v-24,17,-50,33,-50,66v0,66,83,75,128,28","w":268},"'":{"d":"57,-200r-23,0r0,-56r23,0r0,56","w":91},"(":{"d":"53,-31v0,26,10,39,25,52r-12,13v-18,-17,-32,-32,-31,-62r0,-200v-1,-30,14,-46,31,-62r12,12v-14,14,-25,26,-25,52r0,195","w":102},")":{"d":"37,-290v17,17,30,33,30,62r0,200v0,29,-13,45,-30,62r-14,-13v15,-13,26,-25,25,-52r0,-195v1,-26,-11,-38,-25,-51","w":102},"*":{"d":"142,-171r-8,13r-43,-26r1,51r-16,0r1,-51r-43,26r-8,-13r44,-25r-44,-24r8,-14r43,26r-1,-50r16,0r-1,50r43,-26r8,14r-44,24","w":168},"+":{"d":"166,-86r-65,0r0,65r-17,0r0,-65r-65,0r0,-17r65,0r0,-65r17,0r0,65r65,0r0,17"},",":{"d":"59,24r-25,25r0,-73r25,0r0,48","w":92},"-":{"d":"124,-86r-94,0r0,-17r94,0r0,17","w":153},".":{"d":"61,0r-27,0r0,-27r27,0r0,27","w":95},"\/":{"d":"122,-283r-103,310r-19,0r103,-310r19,0","w":121},"0":{"d":"160,-66v0,40,-27,68,-67,68v-40,0,-68,-28,-68,-68r0,-124v0,-40,28,-68,68,-68v40,0,67,28,67,68r0,124xm93,-14v73,-2,48,-106,48,-174v0,-30,-16,-54,-48,-54v-74,2,-49,105,-49,174v0,30,17,54,49,54"},"1":{"d":"113,0r-19,0r0,-235r-46,41r0,-22r46,-40r19,0r0,256"},"2":{"d":"162,0r-136,0r0,-16r103,-135v28,-33,13,-91,-35,-91v-27,0,-49,15,-49,51r-19,0v0,-38,26,-67,68,-67v62,0,85,70,50,116r-96,126r114,0r0,16"},"3":{"d":"161,-68v0,46,-32,71,-73,71v-40,0,-70,-21,-73,-65r18,0v3,35,28,48,55,48v31,0,55,-20,55,-54v0,-37,-19,-57,-61,-55v1,-6,-4,-18,5,-16v34,0,51,-19,51,-52v0,-34,-22,-52,-50,-52v-30,0,-48,19,-51,47r-19,0v4,-40,33,-63,70,-63v70,0,95,103,32,127v28,10,41,32,41,64"},"4":{"d":"170,-42r-35,0r0,42r-18,0r0,-42r-102,0r0,-16r95,-198r19,0r-94,198r82,0r0,-82r18,0r0,82r35,0r0,16"},"5":{"d":"98,-168v47,0,64,44,64,84v0,45,-20,87,-69,87v-40,0,-64,-22,-66,-60r18,0v4,27,18,43,48,43v38,0,51,-36,51,-70v0,-32,-6,-68,-48,-68v-23,0,-41,10,-46,27r-17,0r0,-131r124,0r0,16r-107,0r0,91v11,-13,27,-19,48,-19"},"6":{"d":"161,-72v0,41,-24,74,-67,74v-65,1,-81,-70,-54,-125r66,-133r18,0r-59,118v49,-21,96,15,96,66xm143,-71v0,-31,-17,-57,-50,-57v-30,0,-49,22,-49,57v0,34,19,57,49,57v30,0,50,-23,50,-57"},"7":{"d":"165,-240r-90,240r-19,0r91,-240r-98,0r0,40r-18,0r0,-56r134,0r0,16"},"8":{"d":"125,-133v66,26,46,135,-32,135v-41,0,-74,-30,-74,-71v0,-30,17,-51,41,-64v-59,-27,-39,-125,33,-125v71,0,91,99,32,125xm142,-192v0,-30,-20,-50,-49,-50v-29,0,-50,20,-50,50v0,30,21,51,50,51v29,0,49,-21,49,-51xm147,-69v0,-31,-23,-56,-54,-56v-31,0,-55,25,-55,56v0,31,24,55,55,55v31,0,54,-24,54,-55"},"9":{"d":"91,-258v65,-1,81,70,54,125r-66,133r-18,0r59,-118v-49,21,-96,-15,-96,-66v0,-41,24,-74,67,-74xm141,-185v0,-34,-20,-57,-50,-57v-30,0,-49,23,-49,57v0,31,16,56,49,56v30,0,50,-21,50,-56"},":":{"d":"71,-112r-27,0r0,-27r27,0r0,27xm71,0r-27,0r0,-27r27,0r0,27","w":105},";":{"d":"71,-112r-27,0r0,-27r27,0r0,27xm69,24r-24,25r0,-73r24,0r0,48","w":105},"<":{"d":"349,-86r-295,0r137,137r-25,0r-145,-146r145,-145r25,0r-137,136r295,0r0,18","w":369},"=":{"d":"166,-114r-147,0r0,-17r147,0r0,17xm166,-59r-147,0r0,-17r147,0r0,17"},">":{"d":"349,-95r-145,146r-25,0r136,-137r-294,0r0,-18r294,0r-136,-136r25,0","w":369},"?":{"d":"93,-258v56,0,84,66,49,106v-14,25,-41,41,-37,83r-19,0v-5,-61,53,-73,53,-126v0,-27,-20,-47,-46,-47v-28,0,-46,22,-46,47r-18,0v0,-34,26,-63,64,-63xm108,0r-24,0r0,-24r24,0r0,24","w":175},"@":{"d":"98,-256v70,0,125,7,125,73r0,183r-18,0r0,-21v-42,50,-129,15,-116,-66v-14,-84,73,-115,116,-65v5,-53,-9,-88,-56,-90v-57,-2,-103,2,-103,58r0,127v0,24,4,34,22,47r-12,13v-49,-27,-24,-119,-28,-186v-3,-43,27,-73,70,-73xm205,-87v0,-35,-6,-73,-49,-73v-43,0,-48,38,-48,73v0,35,5,73,48,73v43,0,49,-38,49,-73","w":250},"A":{"d":"211,0r-21,0r-22,-62r-119,0r-23,62r-21,0r95,-256r17,0xm162,-80r-54,-150r-53,150r107,0","w":216},"B":{"d":"212,-70v0,83,-92,70,-172,70r0,-256v78,-1,169,-11,168,67v0,27,-15,49,-40,57v28,9,44,32,44,62xm189,-189v0,-62,-71,-49,-130,-50r0,99v59,-2,130,13,130,-49xm193,-70v0,-62,-73,-53,-134,-52r0,105v61,1,134,9,134,-53","w":241},"C":{"d":"49,-128v0,81,13,113,68,113v35,0,60,-23,68,-58r19,0v-8,46,-42,75,-87,75v-65,0,-87,-40,-87,-130v0,-91,21,-130,87,-130v46,0,79,28,87,74r-19,0v-8,-35,-33,-57,-68,-57v-54,0,-68,33,-68,113","w":231},"D":{"d":"126,-256v69,-5,89,62,89,124v0,35,0,82,-25,109v-29,31,-93,21,-150,23r0,-256r86,0xm195,-132v0,-28,2,-66,-19,-87v-26,-28,-70,-18,-117,-20r0,222v47,-2,91,8,117,-20v21,-21,19,-67,19,-95","w":244},"E":{"d":"195,0r-155,0r0,-256r155,0r0,17r-136,0r0,101r116,0r0,17r-116,0r0,104r136,0r0,17","w":215},"F":{"d":"195,-239r-136,0r0,105r116,0r0,18r-116,0r0,116r-19,0r0,-256r155,0r0,17","w":207},"G":{"d":"117,-15v47,0,77,-40,69,-99r-69,0r0,-17r89,0v10,79,-23,133,-89,133v-65,0,-87,-40,-87,-130v0,-91,21,-130,87,-130v45,0,80,29,88,74r-20,0v-8,-35,-33,-57,-68,-57v-54,0,-68,33,-68,113v0,81,13,113,68,113","w":234},"H":{"d":"212,0r-19,0r0,-121r-134,0r0,121r-19,0r0,-256r19,0r0,118r134,0r0,-118r19,0r0,256","w":251},"I":{"d":"59,0r-19,0r0,-256r19,0r0,256","w":98},"J":{"d":"143,-76v6,72,-87,102,-132,56r13,-13v30,35,100,17,100,-47r0,-176r19,0r0,180","w":179},"K":{"d":"226,0r-23,0r-83,-144r-61,75r0,69r-19,0r0,-256r19,0r0,160r130,-160r23,0r-79,98","w":232},"L":{"d":"195,0r-155,0r0,-256r19,0r0,239r136,0r0,17","w":205},"M":{"d":"255,0r-20,0r0,-211r-77,175r-20,0r-79,-175r0,211r-19,0r0,-256r19,0r89,197r87,-197r20,0r0,256","w":294},"N":{"d":"226,0r-19,0r-148,-223r0,223r-19,0r0,-256r19,0r148,222r0,-222r19,0r0,256","w":266},"O":{"d":"117,-258v64,6,88,41,88,130v0,90,-23,123,-88,130v-64,-6,-87,-40,-87,-130v0,-91,22,-123,87,-130xm117,-15v54,-7,69,-32,69,-113v0,-82,-14,-105,-69,-113v-54,8,-68,33,-68,113v0,81,14,105,68,113","w":234},"P":{"d":"211,-183v0,77,-74,78,-152,74r0,109r-19,0r0,-256v82,-1,171,-11,171,73xm192,-183v0,-67,-70,-56,-133,-56r0,113v0,0,133,11,133,-57","w":227},"Q":{"d":"117,-258v64,6,88,41,88,130v0,53,0,77,-18,98r30,30r-13,13r-30,-30v-75,46,-164,2,-144,-111v-7,-90,22,-123,87,-130xm49,-128v0,81,13,113,68,113v16,0,32,-5,44,-15r-36,-36r13,-13r36,35v11,-17,12,-38,12,-84v0,-82,-14,-105,-69,-113v-54,8,-68,33,-68,113","w":234},"R":{"d":"213,0r-22,0r-61,-118r-71,0r0,118r-19,0r0,-256v79,0,172,-14,171,68v0,38,-23,64,-59,70xm191,-187v0,-64,-71,-51,-132,-52r0,104v61,-1,132,12,132,-52","w":236},"S":{"d":"168,-118v47,43,14,120,-64,120v-38,0,-63,-11,-86,-34r14,-13v35,46,138,40,139,-23v1,-86,-147,-19,-147,-120v0,-75,110,-90,153,-43r-12,13v-27,-36,-122,-33,-122,29v0,64,94,42,125,71","w":211},"T":{"d":"183,-239r-76,0r0,239r-20,0r0,-239r-76,0r0,-17r172,0r0,17","w":194},"U":{"d":"212,-83v0,50,-37,85,-88,85v-51,0,-88,-35,-88,-85r0,-173r19,0r0,170v0,42,28,71,69,71v41,0,68,-29,68,-71r0,-170r20,0r0,173","w":247},"V":{"d":"189,-256r-85,256r-16,0r-84,-256r20,0r72,222r72,-222r21,0","w":192},"W":{"d":"296,-256r-64,256r-20,0r-60,-223r-61,223r-20,0r-64,-256r21,0r54,223r59,-223r21,0r59,223r54,-223r21,0","w":303},"X":{"d":"185,0r-23,0r-67,-114r-67,114r-22,0r79,-131r-73,-125r22,0r61,107r62,-107r22,0r-73,125","w":191},"Y":{"d":"174,-256r-75,150r0,106r-20,0r0,-106r-75,-150r20,0r66,129r63,-129r21,0","w":177},"Z":{"d":"179,0r-156,0r0,-21r135,-218r-130,0r0,-17r151,0r0,17r-137,222r137,0r0,17","w":201},"[":{"d":"88,27r-53,0r0,-310r53,0r0,16r-35,0r0,277r35,0r0,17","w":104},"\\":{"d":"122,27r-19,0r-103,-310r19,0","w":121},"]":{"d":"69,27r-53,0r0,-15r36,0r0,-280r-36,0r0,-15r53,0r0,310","w":104},"^":{"d":"158,-152r-19,0r-46,-87r-47,87r-19,0r57,-106r17,0"},"_":{"d":"185,58r-185,0r0,-14r185,0r0,14"},"`":{"d":"107,-212r-21,0r-38,-53r24,0","w":180},"a":{"d":"137,-17v-32,34,-117,25,-117,-31v0,-52,61,-52,117,-50v3,-40,-6,-61,-49,-61v-24,0,-37,5,-48,21r-13,-11v28,-47,128,-32,128,30r0,119r-18,0r0,-17xm84,-14v39,0,60,-22,53,-69v-42,0,-98,-8,-98,35v0,23,14,34,45,34","w":188},"b":{"d":"105,-176v50,-2,65,46,65,89v0,43,-15,91,-65,89v-19,0,-37,-4,-52,-24r0,22r-18,0r0,-256r18,0r0,105v15,-20,33,-25,52,-25xm151,-87v0,-36,-7,-72,-49,-72v-42,0,-49,36,-49,72v0,36,7,73,49,73v42,0,49,-37,49,-73","w":194},"c":{"d":"43,-87v-8,66,64,98,103,51r12,12v-49,56,-133,19,-133,-63v0,-83,85,-119,133,-62r-12,11v-39,-46,-111,-13,-103,51","w":177},"d":{"d":"25,-87v0,-44,15,-91,65,-89v19,0,36,5,51,25r0,-105r18,0r0,256r-18,0r0,-22v-15,20,-32,24,-51,24v-50,2,-65,-45,-65,-89xm141,-87v0,-36,-7,-72,-49,-72v-42,0,-49,36,-49,72v0,36,7,73,49,73v42,0,49,-37,49,-73","w":194},"e":{"d":"164,-83r-121,0v-6,68,68,89,105,48r13,11v-46,51,-136,27,-136,-63v0,-56,25,-89,69,-89v45,0,72,36,70,93xm145,-98v6,-64,-74,-81,-96,-32v-4,11,-5,15,-6,32r102,0","w":188},"f":{"d":"98,-160r-39,0r0,160r-19,0r0,-160r-23,0r0,-14r23,0v-4,-49,3,-90,58,-82r0,16v-42,-7,-41,27,-39,66r39,0r0,14","w":109},"g":{"d":"25,-87v0,-44,15,-91,65,-89v19,0,36,5,51,25r0,-23r18,0r0,184v7,71,-85,98,-128,52r13,-12v31,37,105,16,97,-41r0,-31v-15,20,-32,24,-51,24v-50,2,-65,-45,-65,-89xm141,-87v0,-36,-7,-72,-49,-72v-42,0,-49,36,-49,72v0,36,7,73,49,73v42,0,49,-37,49,-73","w":194},"h":{"d":"168,0r-18,0v-5,-63,22,-159,-48,-159v-70,0,-44,95,-49,159r-18,0r0,-256r18,0r0,103v34,-43,115,-23,115,42r0,111","w":201},"i":{"d":"55,-234r-22,0r0,-22r22,0r0,22xm53,0r-18,0r0,-174r18,0r0,174","w":88},"j":{"d":"55,-234r-22,0r0,-22r22,0r0,22xm53,38v1,33,-20,49,-57,45r0,-16v26,2,39,-6,39,-30r0,-211r18,0r0,212","w":88},"k":{"d":"175,0r-22,0r-60,-95r-40,45r0,50r-18,0r0,-256r18,0r0,180r86,-98r24,0r-58,65","w":189},"l":{"d":"92,0v-37,4,-59,-12,-58,-45r0,-211r19,0r0,211v-2,24,13,31,39,29r0,16","w":103},"m":{"d":"161,-144v28,-53,122,-37,122,33r0,111r-18,0v-5,-63,22,-159,-48,-159v-71,0,-44,95,-49,159r-18,0v-5,-63,22,-159,-48,-159v-70,0,-44,95,-49,159r-18,0r0,-174r18,0r0,21v26,-33,92,-30,108,9","w":316},"n":{"d":"53,-153v34,-43,115,-23,115,42r0,111r-18,0v-5,-63,22,-159,-48,-159v-70,0,-44,95,-49,159r-18,0r0,-174r18,0r0,21","w":201},"o":{"d":"95,-176v47,0,70,45,70,89v0,44,-23,89,-70,89v-47,0,-70,-44,-70,-89v0,-45,22,-89,70,-89xm95,-14v37,0,55,-37,51,-73v3,-35,-13,-72,-51,-72v-37,0,-52,37,-52,72v0,36,15,73,52,73","w":189},"p":{"d":"105,-176v50,-2,65,46,65,89v0,43,-15,91,-65,89v-19,0,-37,-4,-52,-24r0,105r-18,0r0,-257r18,0r0,23v15,-20,33,-25,52,-25xm151,-87v0,-36,-7,-72,-49,-72v-42,0,-49,36,-49,72v0,36,7,73,49,73v42,0,49,-37,49,-73","w":194},"q":{"d":"25,-87v0,-44,15,-91,65,-89v19,0,36,5,51,25r0,-23r18,0r0,257r-18,0r0,-105v-15,20,-32,24,-51,24v-50,2,-65,-45,-65,-89xm141,-87v0,-36,-7,-72,-49,-72v-42,0,-49,36,-49,72v0,36,7,73,49,73v42,0,49,-37,49,-73","w":194},"r":{"d":"146,-159r-14,13v-29,-31,-79,-3,-79,39r0,107r-18,0r0,-174r18,0r0,24v17,-29,68,-36,93,-9","w":147},"s":{"d":"158,-49v0,59,-109,65,-140,26r13,-12v20,30,109,30,109,-14v0,-29,-34,-30,-62,-32v-35,-3,-52,-18,-52,-45v0,-55,90,-63,123,-31r-13,12v-24,-23,-94,-21,-92,19v3,55,114,4,114,77","w":177},"t":{"d":"97,0v-83,12,-53,-91,-58,-160r-24,0r0,-14r24,0r0,-55r19,0r0,55r39,0r0,14r-39,0r0,115v-1,23,14,31,39,29r0,16","w":117},"u":{"d":"148,-21v-34,43,-115,23,-115,-42r0,-111r18,0v5,64,-22,160,48,160v70,0,45,-96,49,-160r18,0r0,174r-18,0r0,-21","w":201},"v":{"d":"150,-174r-64,174r-18,0r-63,-174r20,0r52,152r53,-152r20,0","w":154},"w":{"d":"251,-174r-55,174r-19,0r-49,-145r-49,145r-19,0r-55,-174r20,0r44,152r50,-152r18,0r50,152r44,-152r20,0","w":256},"x":{"d":"151,0r-22,0r-46,-73r-46,73r-23,0r59,-89r-56,-85r22,0r44,70r43,-70r23,0r-56,85","w":165},"y":{"d":"150,-174r-81,221v-7,23,-26,33,-53,31v1,-7,-4,-19,7,-16v36,2,32,-39,45,-62r-63,-174r20,0r52,152r53,-152r20,0","w":154},"z":{"d":"143,0r-124,0r0,-17r105,-140r-99,0r0,-17r118,0r0,18r-104,140r104,0r0,16","w":162},"{":{"d":"65,-18v0,26,4,29,31,28r0,17v-68,10,-50,-64,-50,-119v0,-20,-9,-29,-28,-28v1,-6,-4,-19,6,-16v60,-8,-27,-160,72,-147v-1,6,4,18,-5,16v-24,0,-25,4,-26,28v-4,42,13,98,-22,111v35,13,22,68,22,110","w":113},"|":{"d":"66,27r-18,0r0,-310r18,0r0,310","w":114},"}":{"d":"18,-283v103,-13,2,145,78,147v-1,7,4,19,-7,16v-60,9,27,160,-71,147r0,-17v72,9,-5,-112,53,-138v-35,-13,-22,-68,-22,-111v0,-26,-5,-28,-31,-28r0,-16","w":113},"~":{"d":"19,-92v43,-62,92,30,136,-19r11,11v-43,63,-91,-31,-136,19"},"\u00c4":{"d":"211,0r-21,0r-22,-62r-119,0r-23,62r-21,0r95,-256r17,0xm162,-80r-54,-150r-53,150r107,0xm156,-284r-21,0r0,-28r21,0r0,28xm81,-284r-21,0r0,-28r21,0r0,28","w":216},"\u00c5":{"d":"149,-310v0,23,-18,41,-41,41v-23,0,-41,-18,-41,-41v0,-23,18,-41,41,-41v23,0,41,18,41,41xm135,-310v0,-14,-13,-26,-27,-26v-14,0,-26,12,-26,26v0,14,12,26,26,26v14,0,27,-12,27,-26xm211,0r-21,0r-22,-62r-119,0r-23,62r-21,0r95,-256r17,0xm162,-80r-54,-150r-53,150r107,0","w":216},"\u00c7":{"d":"49,-128v0,81,13,113,68,113v35,0,60,-23,68,-58r19,0v-8,46,-42,75,-87,75v-65,0,-87,-40,-87,-130v0,-91,21,-130,87,-130v46,0,79,28,87,74r-19,0v-8,-35,-33,-57,-68,-57v-54,0,-68,33,-68,113xm132,25r-23,54r-23,0r26,-54r20,0","w":231},"\u00c9":{"d":"195,0r-155,0r0,-256r155,0r0,17r-136,0r0,101r116,0r0,17r-116,0r0,104r136,0r0,17xm155,-333r-38,53r-21,0r35,-53r24,0","w":215},"\u00d1":{"d":"78,-301v39,-50,62,26,98,-13r11,11v-39,49,-60,-24,-98,12xm226,0r-19,0r-148,-223r0,223r-19,0r0,-256r19,0r148,222r0,-222r19,0r0,256","w":266},"\u00d6":{"d":"117,-258v64,6,88,41,88,130v0,90,-23,123,-88,130v-64,-6,-87,-40,-87,-130v0,-91,22,-123,87,-130xm117,-15v54,-7,69,-32,69,-113v0,-82,-14,-105,-69,-113v-54,8,-68,33,-68,113v0,81,14,105,68,113xm165,-284r-21,0r0,-28r21,0r0,28xm90,-284r-21,0r0,-28r21,0r0,28","w":234},"\u00dc":{"d":"212,-83v0,50,-37,85,-88,85v-51,0,-88,-35,-88,-85r0,-173r19,0r0,170v0,42,28,71,69,71v41,0,68,-29,68,-71r0,-170r20,0r0,173xm172,-284r-21,0r0,-28r21,0r0,28xm97,-284r-21,0r0,-28r21,0r0,28","w":247},"\u00e1":{"d":"137,-17v-32,34,-117,25,-117,-31v0,-52,61,-52,117,-50v3,-40,-6,-61,-49,-61v-24,0,-37,5,-48,21r-13,-11v28,-47,128,-32,128,30r0,119r-18,0r0,-17xm84,-14v39,0,60,-22,53,-69v-42,0,-98,-8,-98,35v0,23,14,34,45,34xm132,-265r-38,53r-21,0r35,-53r24,0","w":188},"\u00e0":{"d":"137,-17v-32,34,-117,25,-117,-31v0,-52,61,-52,117,-50v3,-40,-6,-61,-49,-61v-24,0,-37,5,-48,21r-13,-11v28,-47,128,-32,128,30r0,119r-18,0r0,-17xm84,-14v39,0,60,-22,53,-69v-42,0,-98,-8,-98,35v0,23,14,34,45,34xm107,-212r-21,0r-38,-53r24,0","w":188},"\u00e2":{"d":"144,-212r-21,0r-33,-40r-34,40r-20,0r44,-53r19,0xm137,-17v-32,34,-117,25,-117,-31v0,-52,61,-52,117,-50v3,-40,-6,-61,-49,-61v-24,0,-37,5,-48,21r-13,-11v28,-47,128,-32,128,30r0,119r-18,0r0,-17xm84,-14v39,0,60,-22,53,-69v-42,0,-98,-8,-98,35v0,23,14,34,45,34","w":188},"\u00e4":{"d":"137,-17v-32,34,-117,25,-117,-31v0,-52,61,-52,117,-50v3,-40,-6,-61,-49,-61v-24,0,-37,5,-48,21r-13,-11v28,-47,128,-32,128,30r0,119r-18,0r0,-17xm84,-14v39,0,60,-22,53,-69v-42,0,-98,-8,-98,35v0,23,14,34,45,34xm138,-216r-21,0r0,-28r21,0r0,28xm63,-216r-21,0r0,-28r21,0r0,28","w":188},"\u00e3":{"d":"34,-233v39,-50,61,26,98,-13r11,11v-39,50,-62,-25,-98,13xm137,-17v-32,34,-117,25,-117,-31v0,-52,61,-52,117,-50v3,-40,-6,-61,-49,-61v-24,0,-37,5,-48,21r-13,-11v28,-47,128,-32,128,30r0,119r-18,0r0,-17xm84,-14v39,0,60,-22,53,-69v-42,0,-98,-8,-98,35v0,23,14,34,45,34","w":188},"\u00e5":{"d":"131,-244v0,23,-18,42,-41,42v-23,0,-41,-19,-41,-42v0,-23,18,-41,41,-41v23,0,41,18,41,41xm116,-244v0,-14,-12,-26,-26,-26v-14,0,-27,12,-27,26v0,14,13,27,27,27v14,0,26,-13,26,-27xm137,-17v-32,34,-117,25,-117,-31v0,-52,61,-52,117,-50v3,-40,-6,-61,-49,-61v-24,0,-37,5,-48,21r-13,-11v28,-47,128,-32,128,30r0,119r-18,0r0,-17xm84,-14v39,0,60,-22,53,-69v-42,0,-98,-8,-98,35v0,23,14,34,45,34","w":188},"\u00e7":{"d":"43,-87v-8,66,64,98,103,51r12,12v-49,56,-133,19,-133,-63v0,-83,85,-119,133,-62r-12,11v-39,-46,-111,-13,-103,51xm111,25r-23,54r-23,0r26,-54r20,0","w":179},"\u00e9":{"d":"164,-83r-121,0v-6,68,68,89,105,48r13,11v-46,51,-136,27,-136,-63v0,-56,25,-89,69,-89v45,0,72,36,70,93xm145,-98v6,-64,-74,-81,-96,-32v-4,11,-5,15,-6,32r102,0xm137,-265r-38,53r-21,0r35,-53r24,0","w":188},"\u00e8":{"d":"164,-83r-121,0v-6,68,68,89,105,48r13,11v-46,51,-136,27,-136,-63v0,-56,25,-89,69,-89v45,0,72,36,70,93xm145,-98v6,-64,-74,-81,-96,-32v-4,11,-5,15,-6,32r102,0xm112,-212r-21,0r-38,-53r24,0","w":188},"\u00ea":{"d":"149,-212r-20,0r-34,-40r-33,40r-21,0r44,-53r20,0xm164,-83r-121,0v-6,68,68,89,105,48r13,11v-46,51,-136,27,-136,-63v0,-56,25,-89,69,-89v45,0,72,36,70,93xm145,-98v6,-64,-74,-81,-96,-32v-4,11,-5,15,-6,32r102,0","w":188},"\u00eb":{"d":"164,-83r-121,0v-6,68,68,89,105,48r13,11v-46,51,-136,27,-136,-63v0,-56,25,-89,69,-89v45,0,72,36,70,93xm145,-98v6,-64,-74,-81,-96,-32v-4,11,-5,15,-6,32r102,0xm143,-216r-21,0r0,-28r21,0r0,28xm68,-216r-21,0r0,-28r21,0r0,28","w":188},"\u00ed":{"d":"53,0r-18,0r0,-174r18,0r0,174xm84,-265r-38,53r-21,0r35,-53r24,0","w":88},"\u00ec":{"d":"53,0r-18,0r0,-174r18,0r0,174xm62,-212r-21,0r-38,-53r24,0","w":88},"\u00ee":{"d":"98,-212r-21,0r-33,-40r-34,40r-20,0r44,-53r20,0xm53,0r-18,0r0,-174r18,0r0,174","w":88},"\u00ef":{"d":"53,0r-18,0r0,-174r18,0r0,174xm92,-216r-21,0r0,-28r21,0r0,28xm17,-216r-21,0r0,-28r21,0r0,28","w":88},"\u00f1":{"d":"47,-233v39,-50,61,26,98,-13r11,11v-39,50,-62,-25,-98,13xm53,-153v34,-43,115,-23,115,42r0,111r-18,0v-5,-63,22,-159,-48,-159v-70,0,-44,95,-49,159r-18,0r0,-174r18,0r0,21","w":201},"\u00f3":{"d":"95,-176v47,0,70,45,70,89v0,44,-23,89,-70,89v-47,0,-70,-44,-70,-89v0,-45,22,-89,70,-89xm95,-14v37,0,55,-37,51,-73v3,-35,-13,-72,-51,-72v-37,0,-52,37,-52,72v0,36,15,73,52,73xm137,-265r-38,53r-21,0r35,-53r24,0","w":189},"\u00f2":{"d":"107,-212r-21,0r-38,-53r24,0xm118,-176v47,0,70,45,70,89v0,44,-23,89,-70,89v-47,0,-70,-44,-70,-89v0,-45,22,-89,70,-89xm118,-14v37,0,55,-37,51,-73v3,-35,-13,-72,-51,-72v-37,0,-52,37,-52,72v0,36,15,73,52,73","w":189},"\u00f4":{"d":"149,-212r-21,0r-33,-40r-34,40r-20,0r44,-53r19,0xm95,-176v47,0,70,45,70,89v0,44,-23,89,-70,89v-47,0,-70,-44,-70,-89v0,-45,22,-89,70,-89xm95,-14v37,0,55,-37,51,-73v3,-35,-13,-72,-51,-72v-37,0,-52,37,-52,72v0,36,15,73,52,73","w":189},"\u00f6":{"d":"95,-176v47,0,70,45,70,89v0,44,-23,89,-70,89v-47,0,-70,-44,-70,-89v0,-45,22,-89,70,-89xm95,-14v37,0,55,-37,51,-73v3,-35,-13,-72,-51,-72v-37,0,-52,37,-52,72v0,36,15,73,52,73xm143,-216r-21,0r0,-28r21,0r0,28xm68,-216r-21,0r0,-28r21,0r0,28","w":189},"\u00f5":{"d":"39,-233v39,-50,61,26,99,-13r10,11v-39,50,-62,-25,-98,13xm95,-176v47,0,70,45,70,89v0,44,-23,89,-70,89v-47,0,-70,-44,-70,-89v0,-45,22,-89,70,-89xm95,-14v37,0,55,-37,51,-73v3,-35,-13,-72,-51,-72v-37,0,-52,37,-52,72v0,36,15,73,52,73","w":189},"\u00fa":{"d":"148,-21v-34,43,-115,23,-115,-42r0,-111r18,0v5,64,-22,160,48,160v70,0,45,-96,49,-160r18,0r0,174r-18,0r0,-21xm141,-265r-38,53r-21,0r35,-53r24,0","w":201},"\u00f9":{"d":"148,-21v-34,43,-115,23,-115,-42r0,-111r18,0v5,64,-22,160,48,160v70,0,45,-96,49,-160r18,0r0,174r-18,0r0,-21xm116,-212r-21,0r-38,-53r24,0","w":201},"\u00fb":{"d":"153,-212r-20,0r-34,-40r-33,40r-21,0r45,-53r19,0xm148,-21v-34,43,-115,23,-115,-42r0,-111r18,0v5,64,-22,160,48,160v70,0,45,-96,49,-160r18,0r0,174r-18,0r0,-21","w":201},"\u00fc":{"d":"148,-21v-34,43,-115,23,-115,-42r0,-111r18,0v5,64,-22,160,48,160v70,0,45,-96,49,-160r18,0r0,174r-18,0r0,-21xm147,-216r-21,0r0,-28r21,0r0,28xm72,-216r-21,0r0,-28r21,0r0,28","w":201},"\u00b0":{"d":"139,-202v0,31,-26,56,-57,56v-31,0,-56,-25,-56,-56v0,-31,25,-57,56,-57v31,0,57,26,57,57xm123,-202v0,-23,-18,-42,-41,-42v-23,0,-40,18,-40,42v0,24,17,41,40,41v23,0,41,-17,41,-41","w":164},"\u00a2":{"d":"158,-69v-18,19,-31,25,-53,26r0,43r-15,0r0,-44v-40,-5,-65,-38,-65,-88v0,-50,25,-83,65,-88r0,-36r15,0r0,35v22,1,35,8,53,27r-12,11v-14,-15,-25,-20,-41,-21r0,145v16,-1,27,-7,41,-22xm90,-203v-48,2,-60,82,-35,121v8,12,21,19,35,22r0,-143","w":179},"\u00a3":{"d":"174,0r-133,0r0,-123r-23,0r0,-14r23,0v-7,-70,13,-122,76,-121v23,0,42,6,57,21r-14,14v-30,-35,-110,-17,-100,46r0,40r57,0r0,14r-57,0r0,106r114,0r0,17","w":193},"\u00a7":{"d":"121,-154v60,13,61,109,8,126v59,18,43,113,-27,113v-36,0,-63,-20,-66,-56r19,0v3,26,20,39,47,39v53,0,61,-74,11,-83v-41,-7,-78,-29,-78,-74v0,-31,19,-51,40,-61v-22,-10,-36,-25,-36,-51v0,-36,28,-57,63,-57v34,0,62,19,64,54r-19,0v-3,-27,-19,-38,-45,-38v-27,0,-44,14,-44,41v-1,35,34,41,63,47xm102,-38v28,0,47,-19,47,-51v0,-28,-21,-51,-47,-51v-27,0,-48,22,-48,51v0,30,20,51,48,51","w":203},"\u00b6":{"d":"169,83r-19,0r0,-322r-44,0r0,322r-18,0r0,-203v-46,0,-72,-34,-72,-68v0,-35,27,-68,76,-68r77,0r0,339","w":208},"\u00df":{"d":"152,-201v0,-27,-19,-43,-50,-42v-35,0,-49,22,-49,54r0,189r-18,0r0,-189v0,-43,25,-70,69,-70v59,0,90,72,43,102v36,15,23,65,23,109v0,36,-26,53,-67,48r0,-16v30,2,49,-6,49,-34v0,-48,15,-109,-49,-98r0,-16v30,3,49,-10,49,-37","w":198},"\u00ae":{"d":"291,-128v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130v0,-72,58,-130,130,-130v72,0,130,58,130,130xm274,-128v0,-62,-51,-115,-113,-115v-62,0,-113,53,-113,115v0,62,51,115,113,115v62,0,113,-53,113,-115xm214,-56r-19,0r-35,-60r-24,0r0,60r-16,0r0,-145v46,-3,90,1,91,43v0,21,-14,35,-33,40xm194,-158v0,-27,-28,-30,-58,-28r0,55v29,2,58,0,58,-27","w":321},"\u00a9":{"d":"291,-128v0,72,-58,130,-130,130v-72,0,-130,-58,-130,-130v0,-72,58,-130,130,-130v72,0,130,58,130,130xm274,-128v0,-62,-51,-115,-113,-115v-62,0,-113,53,-113,115v0,62,51,114,113,114v62,0,113,-52,113,-114xm210,-73v-14,13,-28,19,-48,19v-44,0,-63,-34,-63,-74v0,-40,19,-75,63,-75v20,0,33,6,48,19r-11,11v-35,-35,-92,-5,-84,45v-7,49,49,79,84,44","w":321},"\u00b4":{"d":"132,-265r-38,53r-21,0r35,-53r24,0","w":180},"\u00a8":{"d":"138,-216r-21,0r0,-28r21,0r0,28xm63,-216r-21,0r0,-28r21,0r0,28","w":180},"\u00c6":{"d":"304,0r-155,0r0,-62r-92,0r-32,62r-21,0r135,-256r165,0r0,17r-136,0r0,102r116,0r0,17r-116,0r0,103r136,0r0,17xm149,-80r0,-159r-83,159r83,0","w":324},"\u00d8":{"d":"30,-128v0,-91,21,-130,87,-130v17,0,33,4,47,12r13,-26r19,0r-18,37v25,23,27,47,27,107v0,90,-22,130,-88,130v-17,0,-32,-4,-46,-12r-13,26r-19,0r18,-37v-27,-22,-27,-47,-27,-107xm117,-15v55,0,69,-32,69,-113v0,-51,-1,-71,-16,-89r-92,190v11,8,25,12,39,12xm117,-241v-54,0,-68,33,-68,113v0,51,1,71,16,89r91,-190v-11,-8,-25,-12,-39,-12","w":234},"\u00b1":{"d":"166,-97r-65,0r0,65r-17,0r0,-65r-65,0r0,-17r65,0r0,-65r17,0r0,65r65,0r0,17xm166,0r-147,0r0,-17r147,0r0,17"},"\u00a5":{"d":"174,-256r-59,117r39,0r0,14r-46,0v-5,10,-11,20,-9,38r55,0r0,14r-55,0r0,73r-20,0r0,-73r-56,0r0,-14r56,0v2,-18,-4,-28,-10,-38r-46,0r0,-14r40,0r-59,-117r20,0r65,130r65,-130r20,0","w":177},"\u00aa":{"d":"113,-131v-25,27,-92,19,-92,-25v0,-41,48,-41,92,-39v15,-51,-55,-62,-76,-31r-11,-10v23,-37,102,-26,102,24r0,94r-15,0r0,-13xm72,-130v30,0,46,-17,41,-53v-33,0,-76,-6,-76,27v0,18,11,26,35,26","w":160},"\u00ba":{"d":"81,-257v37,0,60,35,56,70v4,35,-18,71,-56,71v-37,0,-59,-36,-55,-71v-3,-34,18,-70,55,-70xm81,-130v28,0,40,-30,40,-57v0,-27,-11,-56,-40,-56v-29,0,-40,29,-40,56v0,27,11,57,40,57","w":162},"\u00e6":{"d":"148,-30v-21,47,-128,45,-128,-18v0,-52,61,-52,117,-50v3,-40,-6,-61,-49,-61v-24,0,-37,5,-48,21r-13,-11v22,-40,109,-34,123,4v38,-60,139,-27,126,62r-121,0v-6,68,68,89,105,48r13,11v-29,36,-104,35,-125,-6xm257,-98v6,-64,-74,-81,-96,-32v-4,11,-5,15,-6,32r102,0xm84,-14v39,0,60,-22,53,-69v-42,0,-98,-8,-98,35v0,23,14,34,45,34","w":300},"\u00f8":{"d":"45,-18v-40,-54,-24,-161,50,-158v14,0,26,4,37,11r15,-24r17,0r-20,33v41,52,25,160,-49,158v-14,0,-27,-3,-38,-10r-15,24r-17,0xm66,-23v67,39,102,-54,69,-117xm124,-150v-68,-39,-104,54,-69,117","w":189},"\u00bf":{"d":"92,-149r-24,0r0,-25r24,0r0,25xm147,22v0,34,-27,63,-65,63v-56,0,-83,-66,-48,-106v13,-26,41,-42,37,-84r18,0v6,63,-53,74,-53,127v0,27,20,47,46,47v28,0,47,-22,47,-47r18,0","w":175},"\u00a1":{"d":"62,-149r-25,0r0,-25r25,0r0,25xm59,83r-19,0r1,-187r17,0","w":109},"\u00ac":{"d":"166,-39r-17,0r0,-47r-130,0r0,-17r147,0r0,64"},"\u00ab":{"d":"160,-25r-70,-70r70,-71r0,24r-47,47r47,46r0,24xm86,-25r-71,-70r71,-71r0,24r-47,47r47,46r0,24","w":189},"\u00bb":{"d":"175,-95r-71,70r0,-24r47,-46r-47,-47r0,-24xm100,-95r-70,70r0,-24r46,-46r-46,-47r0,-24","w":189},"\u00a0":{"w":91},"\u00c0":{"d":"211,0r-21,0r-22,-62r-119,0r-23,62r-21,0r95,-256r17,0xm162,-80r-54,-150r-53,150r107,0xm125,-280r-21,0r-38,-53r24,0","w":216},"\u00c3":{"d":"53,-301v39,-50,62,26,98,-13r11,11v-39,49,-60,-24,-98,12xm211,0r-21,0r-22,-62r-119,0r-23,62r-21,0r95,-256r17,0xm162,-80r-54,-150r-53,150r107,0","w":216},"\u00d5":{"d":"62,-301v39,-50,62,26,98,-13r11,11v-39,49,-60,-24,-98,12xm117,-258v64,6,88,41,88,130v0,90,-23,123,-88,130v-64,-6,-87,-40,-87,-130v0,-91,22,-123,87,-130xm117,-15v54,-7,69,-32,69,-113v0,-82,-14,-105,-69,-113v-54,8,-68,33,-68,113v0,81,14,105,68,113","w":234},"\u00f7":{"d":"105,-143r-25,0r0,-25r25,0r0,25xm166,-86r-147,0r0,-17r147,0r0,17xm105,-22r-25,0r0,-25r25,0r0,25"},"\u00ff":{"d":"150,-174r-81,221v-7,23,-26,33,-53,31v1,-7,-4,-19,7,-16v36,2,32,-39,45,-62r-63,-174r20,0r52,152r53,-152r20,0xm125,-216r-21,0r0,-28r21,0r0,28xm50,-216r-21,0r0,-28r21,0r0,28","w":154},"\u00a4":{"d":"206,-19r-12,11r-27,-27v-25,23,-73,24,-98,0r-27,27r-11,-11r26,-27v-23,-25,-22,-74,0,-99r-26,-26r11,-12r27,26v25,-22,73,-23,98,0r27,-26r12,12r-27,26v22,25,23,74,0,99xm179,-95v0,-34,-27,-61,-61,-61v-34,0,-61,27,-61,61v0,34,27,60,61,60v34,0,61,-26,61,-60","w":236},"\u00b7":{"d":"61,-82r-27,0r0,-26r27,0r0,26","w":95},"\u00c2":{"d":"162,-281r-20,0r-34,-39r-33,39r-21,0r45,-53r19,0xm211,0r-21,0r-22,-62r-119,0r-23,62r-21,0r95,-256r17,0xm162,-80r-54,-150r-53,150r107,0","w":216},"\u00ca":{"d":"167,-281r-20,0r-34,-39r-33,39r-21,0r44,-53r20,0xm195,0r-155,0r0,-256r155,0r0,17r-136,0r0,101r116,0r0,17r-116,0r0,104r136,0r0,17","w":215},"\u00c1":{"d":"211,0r-21,0r-22,-62r-119,0r-23,62r-21,0r95,-256r17,0xm162,-80r-54,-150r-53,150r107,0xm150,-333r-38,53r-21,0r35,-53r24,0","w":216},"\u00cb":{"d":"195,0r-155,0r0,-256r155,0r0,17r-136,0r0,101r116,0r0,17r-116,0r0,104r136,0r0,17xm161,-284r-21,0r0,-28r21,0r0,28xm86,-284r-21,0r0,-28r21,0r0,28","w":215},"\u00c8":{"d":"195,0r-155,0r0,-256r155,0r0,17r-136,0r0,101r116,0r0,17r-116,0r0,104r136,0r0,17xm130,-280r-21,0r-38,-53r24,0","w":215},"\u00cd":{"d":"59,0r-19,0r0,-256r19,0r0,256xm90,-333r-38,53r-21,0r35,-53r24,0","w":98},"\u00ce":{"d":"103,-281r-21,0r-33,-39r-34,39r-20,0r44,-53r19,0xm59,0r-19,0r0,-256r19,0r0,256","w":98},"\u00cf":{"d":"59,0r-19,0r0,-256r19,0r0,256xm98,-284r-21,0r0,-28r21,0r0,28xm23,-284r-21,0r0,-28r21,0r0,28","w":98},"\u00cc":{"d":"59,0r-19,0r0,-256r19,0r0,256xm70,-280r-21,0r-38,-53r24,0","w":98},"\u00d3":{"d":"117,-258v64,6,88,41,88,130v0,90,-23,123,-88,130v-64,-6,-87,-40,-87,-130v0,-91,22,-123,87,-130xm117,-15v54,-7,69,-32,69,-113v0,-82,-14,-105,-69,-113v-54,8,-68,33,-68,113v0,81,14,105,68,113xm159,-333r-38,53r-21,0r35,-53r24,0","w":234},"\u00d4":{"d":"171,-281r-20,0r-34,-39r-33,39r-21,0r45,-53r19,0xm117,-258v64,6,88,41,88,130v0,90,-23,123,-88,130v-64,-6,-87,-40,-87,-130v0,-91,22,-123,87,-130xm117,-15v54,-7,69,-32,69,-113v0,-82,-14,-105,-69,-113v-54,8,-68,33,-68,113v0,81,14,105,68,113","w":234},"\u00d2":{"d":"117,-258v64,6,88,41,88,130v0,90,-23,123,-88,130v-64,-6,-87,-40,-87,-130v0,-91,22,-123,87,-130xm117,-15v54,-7,69,-32,69,-113v0,-82,-14,-105,-69,-113v-54,8,-68,33,-68,113v0,81,14,105,68,113xm134,-280r-21,0r-38,-53r24,0","w":234},"\u00da":{"d":"212,-83v0,50,-37,85,-88,85v-51,0,-88,-35,-88,-85r0,-173r19,0r0,170v0,42,28,71,69,71v41,0,68,-29,68,-71r0,-170r20,0r0,173xm166,-333r-38,53r-21,0r35,-53r24,0","w":247},"\u00db":{"d":"178,-281r-21,0r-33,-39r-34,39r-20,0r44,-53r20,0xm212,-83v0,50,-37,85,-88,85v-51,0,-88,-35,-88,-85r0,-173r19,0r0,170v0,42,28,71,69,71v41,0,68,-29,68,-71r0,-170r20,0r0,173","w":247},"\u00d9":{"d":"212,-83v0,50,-37,85,-88,85v-51,0,-88,-35,-88,-85r0,-173r19,0r0,170v0,42,28,71,69,71v41,0,68,-29,68,-71r0,-170r20,0r0,173xm141,-280r-21,0r-38,-53r24,0","w":247},"\u00af":{"d":"143,-219r-106,0r0,-16r106,0r0,16","w":180},"\u00b8":{"d":"111,25r-23,54r-23,0r26,-54r20,0","w":180}}});
;
/*!
 * jQuery JavaScript Library v1.4.4
 * http://jquery.com/
 *
 * Copyright 2010, John Resig
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * Includes Sizzle.js
 * http://sizzlejs.com/
 * Copyright 2010, The Dojo Foundation
 * Released under the MIT, BSD, and GPL Licenses.
 *
 * Date: Thu Nov 11 19:04:53 2010 -0500
 */
(function(E,B){function ka(a,b,d){if(d===B&&a.nodeType===1){d=a.getAttribute("data-"+b);if(typeof d==="string"){try{d=d==="true"?true:d==="false"?false:d==="null"?null:!c.isNaN(d)?parseFloat(d):Ja.test(d)?c.parseJSON(d):d}catch(e){}c.data(a,b,d)}else d=B}return d}function U(){return false}function ca(){return true}function la(a,b,d){d[0].type=a;return c.event.handle.apply(b,d)}function Ka(a){var b,d,e,f,h,l,k,o,x,r,A,C=[];f=[];h=c.data(this,this.nodeType?"events":"__events__");if(typeof h==="function")h=
h.events;if(!(a.liveFired===this||!h||!h.live||a.button&&a.type==="click")){if(a.namespace)A=RegExp("(^|\\.)"+a.namespace.split(".").join("\\.(?:.*\\.)?")+"(\\.|$)");a.liveFired=this;var J=h.live.slice(0);for(k=0;k<J.length;k++){h=J[k];h.origType.replace(X,"")===a.type?f.push(h.selector):J.splice(k--,1)}f=c(a.target).closest(f,a.currentTarget);o=0;for(x=f.length;o<x;o++){r=f[o];for(k=0;k<J.length;k++){h=J[k];if(r.selector===h.selector&&(!A||A.test(h.namespace))){l=r.elem;e=null;if(h.preType==="mouseenter"||
h.preType==="mouseleave"){a.type=h.preType;e=c(a.relatedTarget).closest(h.selector)[0]}if(!e||e!==l)C.push({elem:l,handleObj:h,level:r.level})}}}o=0;for(x=C.length;o<x;o++){f=C[o];if(d&&f.level>d)break;a.currentTarget=f.elem;a.data=f.handleObj.data;a.handleObj=f.handleObj;A=f.handleObj.origHandler.apply(f.elem,arguments);if(A===false||a.isPropagationStopped()){d=f.level;if(A===false)b=false;if(a.isImmediatePropagationStopped())break}}return b}}function Y(a,b){return(a&&a!=="*"?a+".":"")+b.replace(La,
"`").replace(Ma,"&")}function ma(a,b,d){if(c.isFunction(b))return c.grep(a,function(f,h){return!!b.call(f,h,f)===d});else if(b.nodeType)return c.grep(a,function(f){return f===b===d});else if(typeof b==="string"){var e=c.grep(a,function(f){return f.nodeType===1});if(Na.test(b))return c.filter(b,e,!d);else b=c.filter(b,e)}return c.grep(a,function(f){return c.inArray(f,b)>=0===d})}function na(a,b){var d=0;b.each(function(){if(this.nodeName===(a[d]&&a[d].nodeName)){var e=c.data(a[d++]),f=c.data(this,
e);if(e=e&&e.events){delete f.handle;f.events={};for(var h in e)for(var l in e[h])c.event.add(this,h,e[h][l],e[h][l].data)}}})}function Oa(a,b){b.src?c.ajax({url:b.src,async:false,dataType:"script"}):c.globalEval(b.text||b.textContent||b.innerHTML||"");b.parentNode&&b.parentNode.removeChild(b)}function oa(a,b,d){var e=b==="width"?a.offsetWidth:a.offsetHeight;if(d==="border")return e;c.each(b==="width"?Pa:Qa,function(){d||(e-=parseFloat(c.css(a,"padding"+this))||0);if(d==="margin")e+=parseFloat(c.css(a,
"margin"+this))||0;else e-=parseFloat(c.css(a,"border"+this+"Width"))||0});return e}function da(a,b,d,e){if(c.isArray(b)&&b.length)c.each(b,function(f,h){d||Ra.test(a)?e(a,h):da(a+"["+(typeof h==="object"||c.isArray(h)?f:"")+"]",h,d,e)});else if(!d&&b!=null&&typeof b==="object")c.isEmptyObject(b)?e(a,""):c.each(b,function(f,h){da(a+"["+f+"]",h,d,e)});else e(a,b)}function S(a,b){var d={};c.each(pa.concat.apply([],pa.slice(0,b)),function(){d[this]=a});return d}function qa(a){if(!ea[a]){var b=c("<"+
a+">").appendTo("body"),d=b.css("display");b.remove();if(d==="none"||d==="")d="block";ea[a]=d}return ea[a]}function fa(a){return c.isWindow(a)?a:a.nodeType===9?a.defaultView||a.parentWindow:false}var t=E.document,c=function(){function a(){if(!b.isReady){try{t.documentElement.doScroll("left")}catch(j){setTimeout(a,1);return}b.ready()}}var b=function(j,s){return new b.fn.init(j,s)},d=E.jQuery,e=E.$,f,h=/^(?:[^<]*(<[\w\W]+>)[^>]*$|#([\w\-]+)$)/,l=/\S/,k=/^\s+/,o=/\s+$/,x=/\W/,r=/\d/,A=/^<(\w+)\s*\/?>(?:<\/\1>)?$/,
C=/^[\],:{}\s]*$/,J=/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g,w=/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g,I=/(?:^|:|,)(?:\s*\[)+/g,L=/(webkit)[ \/]([\w.]+)/,g=/(opera)(?:.*version)?[ \/]([\w.]+)/,i=/(msie) ([\w.]+)/,n=/(mozilla)(?:.*? rv:([\w.]+))?/,m=navigator.userAgent,p=false,q=[],u,y=Object.prototype.toString,F=Object.prototype.hasOwnProperty,M=Array.prototype.push,N=Array.prototype.slice,O=String.prototype.trim,D=Array.prototype.indexOf,R={};b.fn=b.prototype={init:function(j,
s){var v,z,H;if(!j)return this;if(j.nodeType){this.context=this[0]=j;this.length=1;return this}if(j==="body"&&!s&&t.body){this.context=t;this[0]=t.body;this.selector="body";this.length=1;return this}if(typeof j==="string")if((v=h.exec(j))&&(v[1]||!s))if(v[1]){H=s?s.ownerDocument||s:t;if(z=A.exec(j))if(b.isPlainObject(s)){j=[t.createElement(z[1])];b.fn.attr.call(j,s,true)}else j=[H.createElement(z[1])];else{z=b.buildFragment([v[1]],[H]);j=(z.cacheable?z.fragment.cloneNode(true):z.fragment).childNodes}return b.merge(this,
j)}else{if((z=t.getElementById(v[2]))&&z.parentNode){if(z.id!==v[2])return f.find(j);this.length=1;this[0]=z}this.context=t;this.selector=j;return this}else if(!s&&!x.test(j)){this.selector=j;this.context=t;j=t.getElementsByTagName(j);return b.merge(this,j)}else return!s||s.jquery?(s||f).find(j):b(s).find(j);else if(b.isFunction(j))return f.ready(j);if(j.selector!==B){this.selector=j.selector;this.context=j.context}return b.makeArray(j,this)},selector:"",jquery:"1.4.4",length:0,size:function(){return this.length},
toArray:function(){return N.call(this,0)},get:function(j){return j==null?this.toArray():j<0?this.slice(j)[0]:this[j]},pushStack:function(j,s,v){var z=b();b.isArray(j)?M.apply(z,j):b.merge(z,j);z.prevObject=this;z.context=this.context;if(s==="find")z.selector=this.selector+(this.selector?" ":"")+v;else if(s)z.selector=this.selector+"."+s+"("+v+")";return z},each:function(j,s){return b.each(this,j,s)},ready:function(j){b.bindReady();if(b.isReady)j.call(t,b);else q&&q.push(j);return this},eq:function(j){return j===
-1?this.slice(j):this.slice(j,+j+1)},first:function(){return this.eq(0)},last:function(){return this.eq(-1)},slice:function(){return this.pushStack(N.apply(this,arguments),"slice",N.call(arguments).join(","))},map:function(j){return this.pushStack(b.map(this,function(s,v){return j.call(s,v,s)}))},end:function(){return this.prevObject||b(null)},push:M,sort:[].sort,splice:[].splice};b.fn.init.prototype=b.fn;b.extend=b.fn.extend=function(){var j,s,v,z,H,G=arguments[0]||{},K=1,Q=arguments.length,ga=false;
if(typeof G==="boolean"){ga=G;G=arguments[1]||{};K=2}if(typeof G!=="object"&&!b.isFunction(G))G={};if(Q===K){G=this;--K}for(;K<Q;K++)if((j=arguments[K])!=null)for(s in j){v=G[s];z=j[s];if(G!==z)if(ga&&z&&(b.isPlainObject(z)||(H=b.isArray(z)))){if(H){H=false;v=v&&b.isArray(v)?v:[]}else v=v&&b.isPlainObject(v)?v:{};G[s]=b.extend(ga,v,z)}else if(z!==B)G[s]=z}return G};b.extend({noConflict:function(j){E.$=e;if(j)E.jQuery=d;return b},isReady:false,readyWait:1,ready:function(j){j===true&&b.readyWait--;
if(!b.readyWait||j!==true&&!b.isReady){if(!t.body)return setTimeout(b.ready,1);b.isReady=true;if(!(j!==true&&--b.readyWait>0))if(q){var s=0,v=q;for(q=null;j=v[s++];)j.call(t,b);b.fn.trigger&&b(t).trigger("ready").unbind("ready")}}},bindReady:function(){if(!p){p=true;if(t.readyState==="complete")return setTimeout(b.ready,1);if(t.addEventListener){t.addEventListener("DOMContentLoaded",u,false);E.addEventListener("load",b.ready,false)}else if(t.attachEvent){t.attachEvent("onreadystatechange",u);E.attachEvent("onload",
b.ready);var j=false;try{j=E.frameElement==null}catch(s){}t.documentElement.doScroll&&j&&a()}}},isFunction:function(j){return b.type(j)==="function"},isArray:Array.isArray||function(j){return b.type(j)==="array"},isWindow:function(j){return j&&typeof j==="object"&&"setInterval"in j},isNaN:function(j){return j==null||!r.test(j)||isNaN(j)},type:function(j){return j==null?String(j):R[y.call(j)]||"object"},isPlainObject:function(j){if(!j||b.type(j)!=="object"||j.nodeType||b.isWindow(j))return false;if(j.constructor&&
!F.call(j,"constructor")&&!F.call(j.constructor.prototype,"isPrototypeOf"))return false;for(var s in j);return s===B||F.call(j,s)},isEmptyObject:function(j){for(var s in j)return false;return true},error:function(j){throw j;},parseJSON:function(j){if(typeof j!=="string"||!j)return null;j=b.trim(j);if(C.test(j.replace(J,"@").replace(w,"]").replace(I,"")))return E.JSON&&E.JSON.parse?E.JSON.parse(j):(new Function("return "+j))();else b.error("Invalid JSON: "+j)},noop:function(){},globalEval:function(j){if(j&&
l.test(j)){var s=t.getElementsByTagName("head")[0]||t.documentElement,v=t.createElement("script");v.type="text/javascript";if(b.support.scriptEval)v.appendChild(t.createTextNode(j));else v.text=j;s.insertBefore(v,s.firstChild);s.removeChild(v)}},nodeName:function(j,s){return j.nodeName&&j.nodeName.toUpperCase()===s.toUpperCase()},each:function(j,s,v){var z,H=0,G=j.length,K=G===B||b.isFunction(j);if(v)if(K)for(z in j){if(s.apply(j[z],v)===false)break}else for(;H<G;){if(s.apply(j[H++],v)===false)break}else if(K)for(z in j){if(s.call(j[z],
z,j[z])===false)break}else for(v=j[0];H<G&&s.call(v,H,v)!==false;v=j[++H]);return j},trim:O?function(j){return j==null?"":O.call(j)}:function(j){return j==null?"":j.toString().replace(k,"").replace(o,"")},makeArray:function(j,s){var v=s||[];if(j!=null){var z=b.type(j);j.length==null||z==="string"||z==="function"||z==="regexp"||b.isWindow(j)?M.call(v,j):b.merge(v,j)}return v},inArray:function(j,s){if(s.indexOf)return s.indexOf(j);for(var v=0,z=s.length;v<z;v++)if(s[v]===j)return v;return-1},merge:function(j,
s){var v=j.length,z=0;if(typeof s.length==="number")for(var H=s.length;z<H;z++)j[v++]=s[z];else for(;s[z]!==B;)j[v++]=s[z++];j.length=v;return j},grep:function(j,s,v){var z=[],H;v=!!v;for(var G=0,K=j.length;G<K;G++){H=!!s(j[G],G);v!==H&&z.push(j[G])}return z},map:function(j,s,v){for(var z=[],H,G=0,K=j.length;G<K;G++){H=s(j[G],G,v);if(H!=null)z[z.length]=H}return z.concat.apply([],z)},guid:1,proxy:function(j,s,v){if(arguments.length===2)if(typeof s==="string"){v=j;j=v[s];s=B}else if(s&&!b.isFunction(s)){v=
s;s=B}if(!s&&j)s=function(){return j.apply(v||this,arguments)};if(j)s.guid=j.guid=j.guid||s.guid||b.guid++;return s},access:function(j,s,v,z,H,G){var K=j.length;if(typeof s==="object"){for(var Q in s)b.access(j,Q,s[Q],z,H,v);return j}if(v!==B){z=!G&&z&&b.isFunction(v);for(Q=0;Q<K;Q++)H(j[Q],s,z?v.call(j[Q],Q,H(j[Q],s)):v,G);return j}return K?H(j[0],s):B},now:function(){return(new Date).getTime()},uaMatch:function(j){j=j.toLowerCase();j=L.exec(j)||g.exec(j)||i.exec(j)||j.indexOf("compatible")<0&&n.exec(j)||
[];return{browser:j[1]||"",version:j[2]||"0"}},browser:{}});b.each("Boolean Number String Function Array Date RegExp Object".split(" "),function(j,s){R["[object "+s+"]"]=s.toLowerCase()});m=b.uaMatch(m);if(m.browser){b.browser[m.browser]=true;b.browser.version=m.version}if(b.browser.webkit)b.browser.safari=true;if(D)b.inArray=function(j,s){return D.call(s,j)};if(!/\s/.test("\u00a0")){k=/^[\s\xA0]+/;o=/[\s\xA0]+$/}f=b(t);if(t.addEventListener)u=function(){t.removeEventListener("DOMContentLoaded",u,
false);b.ready()};else if(t.attachEvent)u=function(){if(t.readyState==="complete"){t.detachEvent("onreadystatechange",u);b.ready()}};return E.jQuery=E.$=b}();(function(){c.support={};var a=t.documentElement,b=t.createElement("script"),d=t.createElement("div"),e="script"+c.now();d.style.display="none";d.innerHTML="   <link/><table></table><a href='/a' style='color:red;float:left;opacity:.55;'>a</a><input type='checkbox'/>";var f=d.getElementsByTagName("*"),h=d.getElementsByTagName("a")[0],l=t.createElement("select"),
k=l.appendChild(t.createElement("option"));if(!(!f||!f.length||!h)){c.support={leadingWhitespace:d.firstChild.nodeType===3,tbody:!d.getElementsByTagName("tbody").length,htmlSerialize:!!d.getElementsByTagName("link").length,style:/red/.test(h.getAttribute("style")),hrefNormalized:h.getAttribute("href")==="/a",opacity:/^0.55$/.test(h.style.opacity),cssFloat:!!h.style.cssFloat,checkOn:d.getElementsByTagName("input")[0].value==="on",optSelected:k.selected,deleteExpando:true,optDisabled:false,checkClone:false,
scriptEval:false,noCloneEvent:true,boxModel:null,inlineBlockNeedsLayout:false,shrinkWrapBlocks:false,reliableHiddenOffsets:true};l.disabled=true;c.support.optDisabled=!k.disabled;b.type="text/javascript";try{b.appendChild(t.createTextNode("window."+e+"=1;"))}catch(o){}a.insertBefore(b,a.firstChild);if(E[e]){c.support.scriptEval=true;delete E[e]}try{delete b.test}catch(x){c.support.deleteExpando=false}a.removeChild(b);if(d.attachEvent&&d.fireEvent){d.attachEvent("onclick",function r(){c.support.noCloneEvent=
false;d.detachEvent("onclick",r)});d.cloneNode(true).fireEvent("onclick")}d=t.createElement("div");d.innerHTML="<input type='radio' name='radiotest' checked='checked'/>";a=t.createDocumentFragment();a.appendChild(d.firstChild);c.support.checkClone=a.cloneNode(true).cloneNode(true).lastChild.checked;c(function(){var r=t.createElement("div");r.style.width=r.style.paddingLeft="1px";t.body.appendChild(r);c.boxModel=c.support.boxModel=r.offsetWidth===2;if("zoom"in r.style){r.style.display="inline";r.style.zoom=
1;c.support.inlineBlockNeedsLayout=r.offsetWidth===2;r.style.display="";r.innerHTML="<div style='width:4px;'></div>";c.support.shrinkWrapBlocks=r.offsetWidth!==2}r.innerHTML="<table><tr><td style='padding:0;display:none'></td><td>t</td></tr></table>";var A=r.getElementsByTagName("td");c.support.reliableHiddenOffsets=A[0].offsetHeight===0;A[0].style.display="";A[1].style.display="none";c.support.reliableHiddenOffsets=c.support.reliableHiddenOffsets&&A[0].offsetHeight===0;r.innerHTML="";t.body.removeChild(r).style.display=
"none"});a=function(r){var A=t.createElement("div");r="on"+r;var C=r in A;if(!C){A.setAttribute(r,"return;");C=typeof A[r]==="function"}return C};c.support.submitBubbles=a("submit");c.support.changeBubbles=a("change");a=b=d=f=h=null}})();var ra={},Ja=/^(?:\{.*\}|\[.*\])$/;c.extend({cache:{},uuid:0,expando:"jQuery"+c.now(),noData:{embed:true,object:"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000",applet:true},data:function(a,b,d){if(c.acceptData(a)){a=a==E?ra:a;var e=a.nodeType,f=e?a[c.expando]:null,h=
c.cache;if(!(e&&!f&&typeof b==="string"&&d===B)){if(e)f||(a[c.expando]=f=++c.uuid);else h=a;if(typeof b==="object")if(e)h[f]=c.extend(h[f],b);else c.extend(h,b);else if(e&&!h[f])h[f]={};a=e?h[f]:h;if(d!==B)a[b]=d;return typeof b==="string"?a[b]:a}}},removeData:function(a,b){if(c.acceptData(a)){a=a==E?ra:a;var d=a.nodeType,e=d?a[c.expando]:a,f=c.cache,h=d?f[e]:e;if(b){if(h){delete h[b];d&&c.isEmptyObject(h)&&c.removeData(a)}}else if(d&&c.support.deleteExpando)delete a[c.expando];else if(a.removeAttribute)a.removeAttribute(c.expando);
else if(d)delete f[e];else for(var l in a)delete a[l]}},acceptData:function(a){if(a.nodeName){var b=c.noData[a.nodeName.toLowerCase()];if(b)return!(b===true||a.getAttribute("classid")!==b)}return true}});c.fn.extend({data:function(a,b){var d=null;if(typeof a==="undefined"){if(this.length){var e=this[0].attributes,f;d=c.data(this[0]);for(var h=0,l=e.length;h<l;h++){f=e[h].name;if(f.indexOf("data-")===0){f=f.substr(5);ka(this[0],f,d[f])}}}return d}else if(typeof a==="object")return this.each(function(){c.data(this,
a)});var k=a.split(".");k[1]=k[1]?"."+k[1]:"";if(b===B){d=this.triggerHandler("getData"+k[1]+"!",[k[0]]);if(d===B&&this.length){d=c.data(this[0],a);d=ka(this[0],a,d)}return d===B&&k[1]?this.data(k[0]):d}else return this.each(function(){var o=c(this),x=[k[0],b];o.triggerHandler("setData"+k[1]+"!",x);c.data(this,a,b);o.triggerHandler("changeData"+k[1]+"!",x)})},removeData:function(a){return this.each(function(){c.removeData(this,a)})}});c.extend({queue:function(a,b,d){if(a){b=(b||"fx")+"queue";var e=
c.data(a,b);if(!d)return e||[];if(!e||c.isArray(d))e=c.data(a,b,c.makeArray(d));else e.push(d);return e}},dequeue:function(a,b){b=b||"fx";var d=c.queue(a,b),e=d.shift();if(e==="inprogress")e=d.shift();if(e){b==="fx"&&d.unshift("inprogress");e.call(a,function(){c.dequeue(a,b)})}}});c.fn.extend({queue:function(a,b){if(typeof a!=="string"){b=a;a="fx"}if(b===B)return c.queue(this[0],a);return this.each(function(){var d=c.queue(this,a,b);a==="fx"&&d[0]!=="inprogress"&&c.dequeue(this,a)})},dequeue:function(a){return this.each(function(){c.dequeue(this,
a)})},delay:function(a,b){a=c.fx?c.fx.speeds[a]||a:a;b=b||"fx";return this.queue(b,function(){var d=this;setTimeout(function(){c.dequeue(d,b)},a)})},clearQueue:function(a){return this.queue(a||"fx",[])}});var sa=/[\n\t]/g,ha=/\s+/,Sa=/\r/g,Ta=/^(?:href|src|style)$/,Ua=/^(?:button|input)$/i,Va=/^(?:button|input|object|select|textarea)$/i,Wa=/^a(?:rea)?$/i,ta=/^(?:radio|checkbox)$/i;c.props={"for":"htmlFor","class":"className",readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",
colspan:"colSpan",tabindex:"tabIndex",usemap:"useMap",frameborder:"frameBorder"};c.fn.extend({attr:function(a,b){return c.access(this,a,b,true,c.attr)},removeAttr:function(a){return this.each(function(){c.attr(this,a,"");this.nodeType===1&&this.removeAttribute(a)})},addClass:function(a){if(c.isFunction(a))return this.each(function(x){var r=c(this);r.addClass(a.call(this,x,r.attr("class")))});if(a&&typeof a==="string")for(var b=(a||"").split(ha),d=0,e=this.length;d<e;d++){var f=this[d];if(f.nodeType===
1)if(f.className){for(var h=" "+f.className+" ",l=f.className,k=0,o=b.length;k<o;k++)if(h.indexOf(" "+b[k]+" ")<0)l+=" "+b[k];f.className=c.trim(l)}else f.className=a}return this},removeClass:function(a){if(c.isFunction(a))return this.each(function(o){var x=c(this);x.removeClass(a.call(this,o,x.attr("class")))});if(a&&typeof a==="string"||a===B)for(var b=(a||"").split(ha),d=0,e=this.length;d<e;d++){var f=this[d];if(f.nodeType===1&&f.className)if(a){for(var h=(" "+f.className+" ").replace(sa," "),
l=0,k=b.length;l<k;l++)h=h.replace(" "+b[l]+" "," ");f.className=c.trim(h)}else f.className=""}return this},toggleClass:function(a,b){var d=typeof a,e=typeof b==="boolean";if(c.isFunction(a))return this.each(function(f){var h=c(this);h.toggleClass(a.call(this,f,h.attr("class"),b),b)});return this.each(function(){if(d==="string")for(var f,h=0,l=c(this),k=b,o=a.split(ha);f=o[h++];){k=e?k:!l.hasClass(f);l[k?"addClass":"removeClass"](f)}else if(d==="undefined"||d==="boolean"){this.className&&c.data(this,
"__className__",this.className);this.className=this.className||a===false?"":c.data(this,"__className__")||""}})},hasClass:function(a){a=" "+a+" ";for(var b=0,d=this.length;b<d;b++)if((" "+this[b].className+" ").replace(sa," ").indexOf(a)>-1)return true;return false},val:function(a){if(!arguments.length){var b=this[0];if(b){if(c.nodeName(b,"option")){var d=b.attributes.value;return!d||d.specified?b.value:b.text}if(c.nodeName(b,"select")){var e=b.selectedIndex;d=[];var f=b.options;b=b.type==="select-one";
if(e<0)return null;var h=b?e:0;for(e=b?e+1:f.length;h<e;h++){var l=f[h];if(l.selected&&(c.support.optDisabled?!l.disabled:l.getAttribute("disabled")===null)&&(!l.parentNode.disabled||!c.nodeName(l.parentNode,"optgroup"))){a=c(l).val();if(b)return a;d.push(a)}}return d}if(ta.test(b.type)&&!c.support.checkOn)return b.getAttribute("value")===null?"on":b.value;return(b.value||"").replace(Sa,"")}return B}var k=c.isFunction(a);return this.each(function(o){var x=c(this),r=a;if(this.nodeType===1){if(k)r=
a.call(this,o,x.val());if(r==null)r="";else if(typeof r==="number")r+="";else if(c.isArray(r))r=c.map(r,function(C){return C==null?"":C+""});if(c.isArray(r)&&ta.test(this.type))this.checked=c.inArray(x.val(),r)>=0;else if(c.nodeName(this,"select")){var A=c.makeArray(r);c("option",this).each(function(){this.selected=c.inArray(c(this).val(),A)>=0});if(!A.length)this.selectedIndex=-1}else this.value=r}})}});c.extend({attrFn:{val:true,css:true,html:true,text:true,data:true,width:true,height:true,offset:true},
attr:function(a,b,d,e){if(!a||a.nodeType===3||a.nodeType===8)return B;if(e&&b in c.attrFn)return c(a)[b](d);e=a.nodeType!==1||!c.isXMLDoc(a);var f=d!==B;b=e&&c.props[b]||b;var h=Ta.test(b);if((b in a||a[b]!==B)&&e&&!h){if(f){b==="type"&&Ua.test(a.nodeName)&&a.parentNode&&c.error("type property can't be changed");if(d===null)a.nodeType===1&&a.removeAttribute(b);else a[b]=d}if(c.nodeName(a,"form")&&a.getAttributeNode(b))return a.getAttributeNode(b).nodeValue;if(b==="tabIndex")return(b=a.getAttributeNode("tabIndex"))&&
b.specified?b.value:Va.test(a.nodeName)||Wa.test(a.nodeName)&&a.href?0:B;return a[b]}if(!c.support.style&&e&&b==="style"){if(f)a.style.cssText=""+d;return a.style.cssText}f&&a.setAttribute(b,""+d);if(!a.attributes[b]&&a.hasAttribute&&!a.hasAttribute(b))return B;a=!c.support.hrefNormalized&&e&&h?a.getAttribute(b,2):a.getAttribute(b);return a===null?B:a}});var X=/\.(.*)$/,ia=/^(?:textarea|input|select)$/i,La=/\./g,Ma=/ /g,Xa=/[^\w\s.|`]/g,Ya=function(a){return a.replace(Xa,"\\$&")},ua={focusin:0,focusout:0};
c.event={add:function(a,b,d,e){if(!(a.nodeType===3||a.nodeType===8)){if(c.isWindow(a)&&a!==E&&!a.frameElement)a=E;if(d===false)d=U;else if(!d)return;var f,h;if(d.handler){f=d;d=f.handler}if(!d.guid)d.guid=c.guid++;if(h=c.data(a)){var l=a.nodeType?"events":"__events__",k=h[l],o=h.handle;if(typeof k==="function"){o=k.handle;k=k.events}else if(!k){a.nodeType||(h[l]=h=function(){});h.events=k={}}if(!o)h.handle=o=function(){return typeof c!=="undefined"&&!c.event.triggered?c.event.handle.apply(o.elem,
arguments):B};o.elem=a;b=b.split(" ");for(var x=0,r;l=b[x++];){h=f?c.extend({},f):{handler:d,data:e};if(l.indexOf(".")>-1){r=l.split(".");l=r.shift();h.namespace=r.slice(0).sort().join(".")}else{r=[];h.namespace=""}h.type=l;if(!h.guid)h.guid=d.guid;var A=k[l],C=c.event.special[l]||{};if(!A){A=k[l]=[];if(!C.setup||C.setup.call(a,e,r,o)===false)if(a.addEventListener)a.addEventListener(l,o,false);else a.attachEvent&&a.attachEvent("on"+l,o)}if(C.add){C.add.call(a,h);if(!h.handler.guid)h.handler.guid=
d.guid}A.push(h);c.event.global[l]=true}a=null}}},global:{},remove:function(a,b,d,e){if(!(a.nodeType===3||a.nodeType===8)){if(d===false)d=U;var f,h,l=0,k,o,x,r,A,C,J=a.nodeType?"events":"__events__",w=c.data(a),I=w&&w[J];if(w&&I){if(typeof I==="function"){w=I;I=I.events}if(b&&b.type){d=b.handler;b=b.type}if(!b||typeof b==="string"&&b.charAt(0)==="."){b=b||"";for(f in I)c.event.remove(a,f+b)}else{for(b=b.split(" ");f=b[l++];){r=f;k=f.indexOf(".")<0;o=[];if(!k){o=f.split(".");f=o.shift();x=RegExp("(^|\\.)"+
c.map(o.slice(0).sort(),Ya).join("\\.(?:.*\\.)?")+"(\\.|$)")}if(A=I[f])if(d){r=c.event.special[f]||{};for(h=e||0;h<A.length;h++){C=A[h];if(d.guid===C.guid){if(k||x.test(C.namespace)){e==null&&A.splice(h--,1);r.remove&&r.remove.call(a,C)}if(e!=null)break}}if(A.length===0||e!=null&&A.length===1){if(!r.teardown||r.teardown.call(a,o)===false)c.removeEvent(a,f,w.handle);delete I[f]}}else for(h=0;h<A.length;h++){C=A[h];if(k||x.test(C.namespace)){c.event.remove(a,r,C.handler,h);A.splice(h--,1)}}}if(c.isEmptyObject(I)){if(b=
w.handle)b.elem=null;delete w.events;delete w.handle;if(typeof w==="function")c.removeData(a,J);else c.isEmptyObject(w)&&c.removeData(a)}}}}},trigger:function(a,b,d,e){var f=a.type||a;if(!e){a=typeof a==="object"?a[c.expando]?a:c.extend(c.Event(f),a):c.Event(f);if(f.indexOf("!")>=0){a.type=f=f.slice(0,-1);a.exclusive=true}if(!d){a.stopPropagation();c.event.global[f]&&c.each(c.cache,function(){this.events&&this.events[f]&&c.event.trigger(a,b,this.handle.elem)})}if(!d||d.nodeType===3||d.nodeType===
8)return B;a.result=B;a.target=d;b=c.makeArray(b);b.unshift(a)}a.currentTarget=d;(e=d.nodeType?c.data(d,"handle"):(c.data(d,"__events__")||{}).handle)&&e.apply(d,b);e=d.parentNode||d.ownerDocument;try{if(!(d&&d.nodeName&&c.noData[d.nodeName.toLowerCase()]))if(d["on"+f]&&d["on"+f].apply(d,b)===false){a.result=false;a.preventDefault()}}catch(h){}if(!a.isPropagationStopped()&&e)c.event.trigger(a,b,e,true);else if(!a.isDefaultPrevented()){var l;e=a.target;var k=f.replace(X,""),o=c.nodeName(e,"a")&&k===
"click",x=c.event.special[k]||{};if((!x._default||x._default.call(d,a)===false)&&!o&&!(e&&e.nodeName&&c.noData[e.nodeName.toLowerCase()])){try{if(e[k]){if(l=e["on"+k])e["on"+k]=null;c.event.triggered=true;e[k]()}}catch(r){}if(l)e["on"+k]=l;c.event.triggered=false}}},handle:function(a){var b,d,e,f;d=[];var h=c.makeArray(arguments);a=h[0]=c.event.fix(a||E.event);a.currentTarget=this;b=a.type.indexOf(".")<0&&!a.exclusive;if(!b){e=a.type.split(".");a.type=e.shift();d=e.slice(0).sort();e=RegExp("(^|\\.)"+
d.join("\\.(?:.*\\.)?")+"(\\.|$)")}a.namespace=a.namespace||d.join(".");f=c.data(this,this.nodeType?"events":"__events__");if(typeof f==="function")f=f.events;d=(f||{})[a.type];if(f&&d){d=d.slice(0);f=0;for(var l=d.length;f<l;f++){var k=d[f];if(b||e.test(k.namespace)){a.handler=k.handler;a.data=k.data;a.handleObj=k;k=k.handler.apply(this,h);if(k!==B){a.result=k;if(k===false){a.preventDefault();a.stopPropagation()}}if(a.isImmediatePropagationStopped())break}}}return a.result},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode layerX layerY metaKey newValue offsetX offsetY pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),
fix:function(a){if(a[c.expando])return a;var b=a;a=c.Event(b);for(var d=this.props.length,e;d;){e=this.props[--d];a[e]=b[e]}if(!a.target)a.target=a.srcElement||t;if(a.target.nodeType===3)a.target=a.target.parentNode;if(!a.relatedTarget&&a.fromElement)a.relatedTarget=a.fromElement===a.target?a.toElement:a.fromElement;if(a.pageX==null&&a.clientX!=null){b=t.documentElement;d=t.body;a.pageX=a.clientX+(b&&b.scrollLeft||d&&d.scrollLeft||0)-(b&&b.clientLeft||d&&d.clientLeft||0);a.pageY=a.clientY+(b&&b.scrollTop||
d&&d.scrollTop||0)-(b&&b.clientTop||d&&d.clientTop||0)}if(a.which==null&&(a.charCode!=null||a.keyCode!=null))a.which=a.charCode!=null?a.charCode:a.keyCode;if(!a.metaKey&&a.ctrlKey)a.metaKey=a.ctrlKey;if(!a.which&&a.button!==B)a.which=a.button&1?1:a.button&2?3:a.button&4?2:0;return a},guid:1E8,proxy:c.proxy,special:{ready:{setup:c.bindReady,teardown:c.noop},live:{add:function(a){c.event.add(this,Y(a.origType,a.selector),c.extend({},a,{handler:Ka,guid:a.handler.guid}))},remove:function(a){c.event.remove(this,
Y(a.origType,a.selector),a)}},beforeunload:{setup:function(a,b,d){if(c.isWindow(this))this.onbeforeunload=d},teardown:function(a,b){if(this.onbeforeunload===b)this.onbeforeunload=null}}}};c.removeEvent=t.removeEventListener?function(a,b,d){a.removeEventListener&&a.removeEventListener(b,d,false)}:function(a,b,d){a.detachEvent&&a.detachEvent("on"+b,d)};c.Event=function(a){if(!this.preventDefault)return new c.Event(a);if(a&&a.type){this.originalEvent=a;this.type=a.type}else this.type=a;this.timeStamp=
c.now();this[c.expando]=true};c.Event.prototype={preventDefault:function(){this.isDefaultPrevented=ca;var a=this.originalEvent;if(a)if(a.preventDefault)a.preventDefault();else a.returnValue=false},stopPropagation:function(){this.isPropagationStopped=ca;var a=this.originalEvent;if(a){a.stopPropagation&&a.stopPropagation();a.cancelBubble=true}},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=ca;this.stopPropagation()},isDefaultPrevented:U,isPropagationStopped:U,isImmediatePropagationStopped:U};
var va=function(a){var b=a.relatedTarget;try{for(;b&&b!==this;)b=b.parentNode;if(b!==this){a.type=a.data;c.event.handle.apply(this,arguments)}}catch(d){}},wa=function(a){a.type=a.data;c.event.handle.apply(this,arguments)};c.each({mouseenter:"mouseover",mouseleave:"mouseout"},function(a,b){c.event.special[a]={setup:function(d){c.event.add(this,b,d&&d.selector?wa:va,a)},teardown:function(d){c.event.remove(this,b,d&&d.selector?wa:va)}}});if(!c.support.submitBubbles)c.event.special.submit={setup:function(){if(this.nodeName.toLowerCase()!==
"form"){c.event.add(this,"click.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="submit"||d==="image")&&c(b).closest("form").length){a.liveFired=B;return la("submit",this,arguments)}});c.event.add(this,"keypress.specialSubmit",function(a){var b=a.target,d=b.type;if((d==="text"||d==="password")&&c(b).closest("form").length&&a.keyCode===13){a.liveFired=B;return la("submit",this,arguments)}})}else return false},teardown:function(){c.event.remove(this,".specialSubmit")}};if(!c.support.changeBubbles){var V,
xa=function(a){var b=a.type,d=a.value;if(b==="radio"||b==="checkbox")d=a.checked;else if(b==="select-multiple")d=a.selectedIndex>-1?c.map(a.options,function(e){return e.selected}).join("-"):"";else if(a.nodeName.toLowerCase()==="select")d=a.selectedIndex;return d},Z=function(a,b){var d=a.target,e,f;if(!(!ia.test(d.nodeName)||d.readOnly)){e=c.data(d,"_change_data");f=xa(d);if(a.type!=="focusout"||d.type!=="radio")c.data(d,"_change_data",f);if(!(e===B||f===e))if(e!=null||f){a.type="change";a.liveFired=
B;return c.event.trigger(a,b,d)}}};c.event.special.change={filters:{focusout:Z,beforedeactivate:Z,click:function(a){var b=a.target,d=b.type;if(d==="radio"||d==="checkbox"||b.nodeName.toLowerCase()==="select")return Z.call(this,a)},keydown:function(a){var b=a.target,d=b.type;if(a.keyCode===13&&b.nodeName.toLowerCase()!=="textarea"||a.keyCode===32&&(d==="checkbox"||d==="radio")||d==="select-multiple")return Z.call(this,a)},beforeactivate:function(a){a=a.target;c.data(a,"_change_data",xa(a))}},setup:function(){if(this.type===
"file")return false;for(var a in V)c.event.add(this,a+".specialChange",V[a]);return ia.test(this.nodeName)},teardown:function(){c.event.remove(this,".specialChange");return ia.test(this.nodeName)}};V=c.event.special.change.filters;V.focus=V.beforeactivate}t.addEventListener&&c.each({focus:"focusin",blur:"focusout"},function(a,b){function d(e){e=c.event.fix(e);e.type=b;return c.event.trigger(e,null,e.target)}c.event.special[b]={setup:function(){ua[b]++===0&&t.addEventListener(a,d,true)},teardown:function(){--ua[b]===
0&&t.removeEventListener(a,d,true)}}});c.each(["bind","one"],function(a,b){c.fn[b]=function(d,e,f){if(typeof d==="object"){for(var h in d)this[b](h,e,d[h],f);return this}if(c.isFunction(e)||e===false){f=e;e=B}var l=b==="one"?c.proxy(f,function(o){c(this).unbind(o,l);return f.apply(this,arguments)}):f;if(d==="unload"&&b!=="one")this.one(d,e,f);else{h=0;for(var k=this.length;h<k;h++)c.event.add(this[h],d,l,e)}return this}});c.fn.extend({unbind:function(a,b){if(typeof a==="object"&&!a.preventDefault)for(var d in a)this.unbind(d,
a[d]);else{d=0;for(var e=this.length;d<e;d++)c.event.remove(this[d],a,b)}return this},delegate:function(a,b,d,e){return this.live(b,d,e,a)},undelegate:function(a,b,d){return arguments.length===0?this.unbind("live"):this.die(b,null,d,a)},trigger:function(a,b){return this.each(function(){c.event.trigger(a,b,this)})},triggerHandler:function(a,b){if(this[0]){var d=c.Event(a);d.preventDefault();d.stopPropagation();c.event.trigger(d,b,this[0]);return d.result}},toggle:function(a){for(var b=arguments,d=
1;d<b.length;)c.proxy(a,b[d++]);return this.click(c.proxy(a,function(e){var f=(c.data(this,"lastToggle"+a.guid)||0)%d;c.data(this,"lastToggle"+a.guid,f+1);e.preventDefault();return b[f].apply(this,arguments)||false}))},hover:function(a,b){return this.mouseenter(a).mouseleave(b||a)}});var ya={focus:"focusin",blur:"focusout",mouseenter:"mouseover",mouseleave:"mouseout"};c.each(["live","die"],function(a,b){c.fn[b]=function(d,e,f,h){var l,k=0,o,x,r=h||this.selector;h=h?this:c(this.context);if(typeof d===
"object"&&!d.preventDefault){for(l in d)h[b](l,e,d[l],r);return this}if(c.isFunction(e)){f=e;e=B}for(d=(d||"").split(" ");(l=d[k++])!=null;){o=X.exec(l);x="";if(o){x=o[0];l=l.replace(X,"")}if(l==="hover")d.push("mouseenter"+x,"mouseleave"+x);else{o=l;if(l==="focus"||l==="blur"){d.push(ya[l]+x);l+=x}else l=(ya[l]||l)+x;if(b==="live"){x=0;for(var A=h.length;x<A;x++)c.event.add(h[x],"live."+Y(l,r),{data:e,selector:r,handler:f,origType:l,origHandler:f,preType:o})}else h.unbind("live."+Y(l,r),f)}}return this}});
c.each("blur focus focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select submit keydown keypress keyup error".split(" "),function(a,b){c.fn[b]=function(d,e){if(e==null){e=d;d=null}return arguments.length>0?this.bind(b,d,e):this.trigger(b)};if(c.attrFn)c.attrFn[b]=true});E.attachEvent&&!E.addEventListener&&c(E).bind("unload",function(){for(var a in c.cache)if(c.cache[a].handle)try{c.event.remove(c.cache[a].handle.elem)}catch(b){}});
(function(){function a(g,i,n,m,p,q){p=0;for(var u=m.length;p<u;p++){var y=m[p];if(y){var F=false;for(y=y[g];y;){if(y.sizcache===n){F=m[y.sizset];break}if(y.nodeType===1&&!q){y.sizcache=n;y.sizset=p}if(y.nodeName.toLowerCase()===i){F=y;break}y=y[g]}m[p]=F}}}function b(g,i,n,m,p,q){p=0;for(var u=m.length;p<u;p++){var y=m[p];if(y){var F=false;for(y=y[g];y;){if(y.sizcache===n){F=m[y.sizset];break}if(y.nodeType===1){if(!q){y.sizcache=n;y.sizset=p}if(typeof i!=="string"){if(y===i){F=true;break}}else if(k.filter(i,
[y]).length>0){F=y;break}}y=y[g]}m[p]=F}}}var d=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^\[\]]*\]|['"][^'"]*['"]|[^\[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?((?:.|\r|\n)*)/g,e=0,f=Object.prototype.toString,h=false,l=true;[0,0].sort(function(){l=false;return 0});var k=function(g,i,n,m){n=n||[];var p=i=i||t;if(i.nodeType!==1&&i.nodeType!==9)return[];if(!g||typeof g!=="string")return n;var q,u,y,F,M,N=true,O=k.isXML(i),D=[],R=g;do{d.exec("");if(q=d.exec(R)){R=q[3];D.push(q[1]);if(q[2]){F=q[3];
break}}}while(q);if(D.length>1&&x.exec(g))if(D.length===2&&o.relative[D[0]])u=L(D[0]+D[1],i);else for(u=o.relative[D[0]]?[i]:k(D.shift(),i);D.length;){g=D.shift();if(o.relative[g])g+=D.shift();u=L(g,u)}else{if(!m&&D.length>1&&i.nodeType===9&&!O&&o.match.ID.test(D[0])&&!o.match.ID.test(D[D.length-1])){q=k.find(D.shift(),i,O);i=q.expr?k.filter(q.expr,q.set)[0]:q.set[0]}if(i){q=m?{expr:D.pop(),set:C(m)}:k.find(D.pop(),D.length===1&&(D[0]==="~"||D[0]==="+")&&i.parentNode?i.parentNode:i,O);u=q.expr?k.filter(q.expr,
q.set):q.set;if(D.length>0)y=C(u);else N=false;for(;D.length;){q=M=D.pop();if(o.relative[M])q=D.pop();else M="";if(q==null)q=i;o.relative[M](y,q,O)}}else y=[]}y||(y=u);y||k.error(M||g);if(f.call(y)==="[object Array]")if(N)if(i&&i.nodeType===1)for(g=0;y[g]!=null;g++){if(y[g]&&(y[g]===true||y[g].nodeType===1&&k.contains(i,y[g])))n.push(u[g])}else for(g=0;y[g]!=null;g++)y[g]&&y[g].nodeType===1&&n.push(u[g]);else n.push.apply(n,y);else C(y,n);if(F){k(F,p,n,m);k.uniqueSort(n)}return n};k.uniqueSort=function(g){if(w){h=
l;g.sort(w);if(h)for(var i=1;i<g.length;i++)g[i]===g[i-1]&&g.splice(i--,1)}return g};k.matches=function(g,i){return k(g,null,null,i)};k.matchesSelector=function(g,i){return k(i,null,null,[g]).length>0};k.find=function(g,i,n){var m;if(!g)return[];for(var p=0,q=o.order.length;p<q;p++){var u,y=o.order[p];if(u=o.leftMatch[y].exec(g)){var F=u[1];u.splice(1,1);if(F.substr(F.length-1)!=="\\"){u[1]=(u[1]||"").replace(/\\/g,"");m=o.find[y](u,i,n);if(m!=null){g=g.replace(o.match[y],"");break}}}}m||(m=i.getElementsByTagName("*"));
return{set:m,expr:g}};k.filter=function(g,i,n,m){for(var p,q,u=g,y=[],F=i,M=i&&i[0]&&k.isXML(i[0]);g&&i.length;){for(var N in o.filter)if((p=o.leftMatch[N].exec(g))!=null&&p[2]){var O,D,R=o.filter[N];D=p[1];q=false;p.splice(1,1);if(D.substr(D.length-1)!=="\\"){if(F===y)y=[];if(o.preFilter[N])if(p=o.preFilter[N](p,F,n,y,m,M)){if(p===true)continue}else q=O=true;if(p)for(var j=0;(D=F[j])!=null;j++)if(D){O=R(D,p,j,F);var s=m^!!O;if(n&&O!=null)if(s)q=true;else F[j]=false;else if(s){y.push(D);q=true}}if(O!==
B){n||(F=y);g=g.replace(o.match[N],"");if(!q)return[];break}}}if(g===u)if(q==null)k.error(g);else break;u=g}return F};k.error=function(g){throw"Syntax error, unrecognized expression: "+g;};var o=k.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\))?/},leftMatch:{},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(g){return g.getAttribute("href")}},relative:{"+":function(g,i){var n=typeof i==="string",m=n&&!/\W/.test(i);n=n&&!m;if(m)i=i.toLowerCase();m=0;for(var p=g.length,q;m<p;m++)if(q=g[m]){for(;(q=q.previousSibling)&&q.nodeType!==1;);g[m]=n||q&&q.nodeName.toLowerCase()===
i?q||false:q===i}n&&k.filter(i,g,true)},">":function(g,i){var n,m=typeof i==="string",p=0,q=g.length;if(m&&!/\W/.test(i))for(i=i.toLowerCase();p<q;p++){if(n=g[p]){n=n.parentNode;g[p]=n.nodeName.toLowerCase()===i?n:false}}else{for(;p<q;p++)if(n=g[p])g[p]=m?n.parentNode:n.parentNode===i;m&&k.filter(i,g,true)}},"":function(g,i,n){var m,p=e++,q=b;if(typeof i==="string"&&!/\W/.test(i)){m=i=i.toLowerCase();q=a}q("parentNode",i,p,g,m,n)},"~":function(g,i,n){var m,p=e++,q=b;if(typeof i==="string"&&!/\W/.test(i)){m=
i=i.toLowerCase();q=a}q("previousSibling",i,p,g,m,n)}},find:{ID:function(g,i,n){if(typeof i.getElementById!=="undefined"&&!n)return(g=i.getElementById(g[1]))&&g.parentNode?[g]:[]},NAME:function(g,i){if(typeof i.getElementsByName!=="undefined"){for(var n=[],m=i.getElementsByName(g[1]),p=0,q=m.length;p<q;p++)m[p].getAttribute("name")===g[1]&&n.push(m[p]);return n.length===0?null:n}},TAG:function(g,i){return i.getElementsByTagName(g[1])}},preFilter:{CLASS:function(g,i,n,m,p,q){g=" "+g[1].replace(/\\/g,
"")+" ";if(q)return g;q=0;for(var u;(u=i[q])!=null;q++)if(u)if(p^(u.className&&(" "+u.className+" ").replace(/[\t\n]/g," ").indexOf(g)>=0))n||m.push(u);else if(n)i[q]=false;return false},ID:function(g){return g[1].replace(/\\/g,"")},TAG:function(g){return g[1].toLowerCase()},CHILD:function(g){if(g[1]==="nth"){var i=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(g[2]==="even"&&"2n"||g[2]==="odd"&&"2n+1"||!/\D/.test(g[2])&&"0n+"+g[2]||g[2]);g[2]=i[1]+(i[2]||1)-0;g[3]=i[3]-0}g[0]=e++;return g},ATTR:function(g,i,n,
m,p,q){i=g[1].replace(/\\/g,"");if(!q&&o.attrMap[i])g[1]=o.attrMap[i];if(g[2]==="~=")g[4]=" "+g[4]+" ";return g},PSEUDO:function(g,i,n,m,p){if(g[1]==="not")if((d.exec(g[3])||"").length>1||/^\w/.test(g[3]))g[3]=k(g[3],null,null,i);else{g=k.filter(g[3],i,n,true^p);n||m.push.apply(m,g);return false}else if(o.match.POS.test(g[0])||o.match.CHILD.test(g[0]))return true;return g},POS:function(g){g.unshift(true);return g}},filters:{enabled:function(g){return g.disabled===false&&g.type!=="hidden"},disabled:function(g){return g.disabled===
true},checked:function(g){return g.checked===true},selected:function(g){return g.selected===true},parent:function(g){return!!g.firstChild},empty:function(g){return!g.firstChild},has:function(g,i,n){return!!k(n[3],g).length},header:function(g){return/h\d/i.test(g.nodeName)},text:function(g){return"text"===g.type},radio:function(g){return"radio"===g.type},checkbox:function(g){return"checkbox"===g.type},file:function(g){return"file"===g.type},password:function(g){return"password"===g.type},submit:function(g){return"submit"===
g.type},image:function(g){return"image"===g.type},reset:function(g){return"reset"===g.type},button:function(g){return"button"===g.type||g.nodeName.toLowerCase()==="button"},input:function(g){return/input|select|textarea|button/i.test(g.nodeName)}},setFilters:{first:function(g,i){return i===0},last:function(g,i,n,m){return i===m.length-1},even:function(g,i){return i%2===0},odd:function(g,i){return i%2===1},lt:function(g,i,n){return i<n[3]-0},gt:function(g,i,n){return i>n[3]-0},nth:function(g,i,n){return n[3]-
0===i},eq:function(g,i,n){return n[3]-0===i}},filter:{PSEUDO:function(g,i,n,m){var p=i[1],q=o.filters[p];if(q)return q(g,n,i,m);else if(p==="contains")return(g.textContent||g.innerText||k.getText([g])||"").indexOf(i[3])>=0;else if(p==="not"){i=i[3];n=0;for(m=i.length;n<m;n++)if(i[n]===g)return false;return true}else k.error("Syntax error, unrecognized expression: "+p)},CHILD:function(g,i){var n=i[1],m=g;switch(n){case "only":case "first":for(;m=m.previousSibling;)if(m.nodeType===1)return false;if(n===
"first")return true;m=g;case "last":for(;m=m.nextSibling;)if(m.nodeType===1)return false;return true;case "nth":n=i[2];var p=i[3];if(n===1&&p===0)return true;var q=i[0],u=g.parentNode;if(u&&(u.sizcache!==q||!g.nodeIndex)){var y=0;for(m=u.firstChild;m;m=m.nextSibling)if(m.nodeType===1)m.nodeIndex=++y;u.sizcache=q}m=g.nodeIndex-p;return n===0?m===0:m%n===0&&m/n>=0}},ID:function(g,i){return g.nodeType===1&&g.getAttribute("id")===i},TAG:function(g,i){return i==="*"&&g.nodeType===1||g.nodeName.toLowerCase()===
i},CLASS:function(g,i){return(" "+(g.className||g.getAttribute("class"))+" ").indexOf(i)>-1},ATTR:function(g,i){var n=i[1];n=o.attrHandle[n]?o.attrHandle[n](g):g[n]!=null?g[n]:g.getAttribute(n);var m=n+"",p=i[2],q=i[4];return n==null?p==="!=":p==="="?m===q:p==="*="?m.indexOf(q)>=0:p==="~="?(" "+m+" ").indexOf(q)>=0:!q?m&&n!==false:p==="!="?m!==q:p==="^="?m.indexOf(q)===0:p==="$="?m.substr(m.length-q.length)===q:p==="|="?m===q||m.substr(0,q.length+1)===q+"-":false},POS:function(g,i,n,m){var p=o.setFilters[i[2]];
if(p)return p(g,n,i,m)}}},x=o.match.POS,r=function(g,i){return"\\"+(i-0+1)},A;for(A in o.match){o.match[A]=RegExp(o.match[A].source+/(?![^\[]*\])(?![^\(]*\))/.source);o.leftMatch[A]=RegExp(/(^(?:.|\r|\n)*?)/.source+o.match[A].source.replace(/\\(\d+)/g,r))}var C=function(g,i){g=Array.prototype.slice.call(g,0);if(i){i.push.apply(i,g);return i}return g};try{Array.prototype.slice.call(t.documentElement.childNodes,0)}catch(J){C=function(g,i){var n=0,m=i||[];if(f.call(g)==="[object Array]")Array.prototype.push.apply(m,
g);else if(typeof g.length==="number")for(var p=g.length;n<p;n++)m.push(g[n]);else for(;g[n];n++)m.push(g[n]);return m}}var w,I;if(t.documentElement.compareDocumentPosition)w=function(g,i){if(g===i){h=true;return 0}if(!g.compareDocumentPosition||!i.compareDocumentPosition)return g.compareDocumentPosition?-1:1;return g.compareDocumentPosition(i)&4?-1:1};else{w=function(g,i){var n,m,p=[],q=[];n=g.parentNode;m=i.parentNode;var u=n;if(g===i){h=true;return 0}else if(n===m)return I(g,i);else if(n){if(!m)return 1}else return-1;
for(;u;){p.unshift(u);u=u.parentNode}for(u=m;u;){q.unshift(u);u=u.parentNode}n=p.length;m=q.length;for(u=0;u<n&&u<m;u++)if(p[u]!==q[u])return I(p[u],q[u]);return u===n?I(g,q[u],-1):I(p[u],i,1)};I=function(g,i,n){if(g===i)return n;for(g=g.nextSibling;g;){if(g===i)return-1;g=g.nextSibling}return 1}}k.getText=function(g){for(var i="",n,m=0;g[m];m++){n=g[m];if(n.nodeType===3||n.nodeType===4)i+=n.nodeValue;else if(n.nodeType!==8)i+=k.getText(n.childNodes)}return i};(function(){var g=t.createElement("div"),
i="script"+(new Date).getTime(),n=t.documentElement;g.innerHTML="<a name='"+i+"'/>";n.insertBefore(g,n.firstChild);if(t.getElementById(i)){o.find.ID=function(m,p,q){if(typeof p.getElementById!=="undefined"&&!q)return(p=p.getElementById(m[1]))?p.id===m[1]||typeof p.getAttributeNode!=="undefined"&&p.getAttributeNode("id").nodeValue===m[1]?[p]:B:[]};o.filter.ID=function(m,p){var q=typeof m.getAttributeNode!=="undefined"&&m.getAttributeNode("id");return m.nodeType===1&&q&&q.nodeValue===p}}n.removeChild(g);
n=g=null})();(function(){var g=t.createElement("div");g.appendChild(t.createComment(""));if(g.getElementsByTagName("*").length>0)o.find.TAG=function(i,n){var m=n.getElementsByTagName(i[1]);if(i[1]==="*"){for(var p=[],q=0;m[q];q++)m[q].nodeType===1&&p.push(m[q]);m=p}return m};g.innerHTML="<a href='#'></a>";if(g.firstChild&&typeof g.firstChild.getAttribute!=="undefined"&&g.firstChild.getAttribute("href")!=="#")o.attrHandle.href=function(i){return i.getAttribute("href",2)};g=null})();t.querySelectorAll&&
function(){var g=k,i=t.createElement("div");i.innerHTML="<p class='TEST'></p>";if(!(i.querySelectorAll&&i.querySelectorAll(".TEST").length===0)){k=function(m,p,q,u){p=p||t;m=m.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!u&&!k.isXML(p))if(p.nodeType===9)try{return C(p.querySelectorAll(m),q)}catch(y){}else if(p.nodeType===1&&p.nodeName.toLowerCase()!=="object"){var F=p.getAttribute("id"),M=F||"__sizzle__";F||p.setAttribute("id",M);try{return C(p.querySelectorAll("#"+M+" "+m),q)}catch(N){}finally{F||
p.removeAttribute("id")}}return g(m,p,q,u)};for(var n in g)k[n]=g[n];i=null}}();(function(){var g=t.documentElement,i=g.matchesSelector||g.mozMatchesSelector||g.webkitMatchesSelector||g.msMatchesSelector,n=false;try{i.call(t.documentElement,"[test!='']:sizzle")}catch(m){n=true}if(i)k.matchesSelector=function(p,q){q=q.replace(/\=\s*([^'"\]]*)\s*\]/g,"='$1']");if(!k.isXML(p))try{if(n||!o.match.PSEUDO.test(q)&&!/!=/.test(q))return i.call(p,q)}catch(u){}return k(q,null,null,[p]).length>0}})();(function(){var g=
t.createElement("div");g.innerHTML="<div class='test e'></div><div class='test'></div>";if(!(!g.getElementsByClassName||g.getElementsByClassName("e").length===0)){g.lastChild.className="e";if(g.getElementsByClassName("e").length!==1){o.order.splice(1,0,"CLASS");o.find.CLASS=function(i,n,m){if(typeof n.getElementsByClassName!=="undefined"&&!m)return n.getElementsByClassName(i[1])};g=null}}})();k.contains=t.documentElement.contains?function(g,i){return g!==i&&(g.contains?g.contains(i):true)}:t.documentElement.compareDocumentPosition?
function(g,i){return!!(g.compareDocumentPosition(i)&16)}:function(){return false};k.isXML=function(g){return(g=(g?g.ownerDocument||g:0).documentElement)?g.nodeName!=="HTML":false};var L=function(g,i){for(var n,m=[],p="",q=i.nodeType?[i]:i;n=o.match.PSEUDO.exec(g);){p+=n[0];g=g.replace(o.match.PSEUDO,"")}g=o.relative[g]?g+"*":g;n=0;for(var u=q.length;n<u;n++)k(g,q[n],m);return k.filter(p,m)};c.find=k;c.expr=k.selectors;c.expr[":"]=c.expr.filters;c.unique=k.uniqueSort;c.text=k.getText;c.isXMLDoc=k.isXML;
c.contains=k.contains})();var Za=/Until$/,$a=/^(?:parents|prevUntil|prevAll)/,ab=/,/,Na=/^.[^:#\[\.,]*$/,bb=Array.prototype.slice,cb=c.expr.match.POS;c.fn.extend({find:function(a){for(var b=this.pushStack("","find",a),d=0,e=0,f=this.length;e<f;e++){d=b.length;c.find(a,this[e],b);if(e>0)for(var h=d;h<b.length;h++)for(var l=0;l<d;l++)if(b[l]===b[h]){b.splice(h--,1);break}}return b},has:function(a){var b=c(a);return this.filter(function(){for(var d=0,e=b.length;d<e;d++)if(c.contains(this,b[d]))return true})},
not:function(a){return this.pushStack(ma(this,a,false),"not",a)},filter:function(a){return this.pushStack(ma(this,a,true),"filter",a)},is:function(a){return!!a&&c.filter(a,this).length>0},closest:function(a,b){var d=[],e,f,h=this[0];if(c.isArray(a)){var l,k={},o=1;if(h&&a.length){e=0;for(f=a.length;e<f;e++){l=a[e];k[l]||(k[l]=c.expr.match.POS.test(l)?c(l,b||this.context):l)}for(;h&&h.ownerDocument&&h!==b;){for(l in k){e=k[l];if(e.jquery?e.index(h)>-1:c(h).is(e))d.push({selector:l,elem:h,level:o})}h=
h.parentNode;o++}}return d}l=cb.test(a)?c(a,b||this.context):null;e=0;for(f=this.length;e<f;e++)for(h=this[e];h;)if(l?l.index(h)>-1:c.find.matchesSelector(h,a)){d.push(h);break}else{h=h.parentNode;if(!h||!h.ownerDocument||h===b)break}d=d.length>1?c.unique(d):d;return this.pushStack(d,"closest",a)},index:function(a){if(!a||typeof a==="string")return c.inArray(this[0],a?c(a):this.parent().children());return c.inArray(a.jquery?a[0]:a,this)},add:function(a,b){var d=typeof a==="string"?c(a,b||this.context):
c.makeArray(a),e=c.merge(this.get(),d);return this.pushStack(!d[0]||!d[0].parentNode||d[0].parentNode.nodeType===11||!e[0]||!e[0].parentNode||e[0].parentNode.nodeType===11?e:c.unique(e))},andSelf:function(){return this.add(this.prevObject)}});c.each({parent:function(a){return(a=a.parentNode)&&a.nodeType!==11?a:null},parents:function(a){return c.dir(a,"parentNode")},parentsUntil:function(a,b,d){return c.dir(a,"parentNode",d)},next:function(a){return c.nth(a,2,"nextSibling")},prev:function(a){return c.nth(a,
2,"previousSibling")},nextAll:function(a){return c.dir(a,"nextSibling")},prevAll:function(a){return c.dir(a,"previousSibling")},nextUntil:function(a,b,d){return c.dir(a,"nextSibling",d)},prevUntil:function(a,b,d){return c.dir(a,"previousSibling",d)},siblings:function(a){return c.sibling(a.parentNode.firstChild,a)},children:function(a){return c.sibling(a.firstChild)},contents:function(a){return c.nodeName(a,"iframe")?a.contentDocument||a.contentWindow.document:c.makeArray(a.childNodes)}},function(a,
b){c.fn[a]=function(d,e){var f=c.map(this,b,d);Za.test(a)||(e=d);if(e&&typeof e==="string")f=c.filter(e,f);f=this.length>1?c.unique(f):f;if((this.length>1||ab.test(e))&&$a.test(a))f=f.reverse();return this.pushStack(f,a,bb.call(arguments).join(","))}});c.extend({filter:function(a,b,d){if(d)a=":not("+a+")";return b.length===1?c.find.matchesSelector(b[0],a)?[b[0]]:[]:c.find.matches(a,b)},dir:function(a,b,d){var e=[];for(a=a[b];a&&a.nodeType!==9&&(d===B||a.nodeType!==1||!c(a).is(d));){a.nodeType===1&&
e.push(a);a=a[b]}return e},nth:function(a,b,d){b=b||1;for(var e=0;a;a=a[d])if(a.nodeType===1&&++e===b)break;return a},sibling:function(a,b){for(var d=[];a;a=a.nextSibling)a.nodeType===1&&a!==b&&d.push(a);return d}});var za=/ jQuery\d+="(?:\d+|null)"/g,$=/^\s+/,Aa=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,Ba=/<([\w:]+)/,db=/<tbody/i,eb=/<|&#?\w+;/,Ca=/<(?:script|object|embed|option|style)/i,Da=/checked\s*(?:[^=]|=\s*.checked.)/i,fb=/\=([^="'>\s]+\/)>/g,P={option:[1,
"<select multiple='multiple'>","</select>"],legend:[1,"<fieldset>","</fieldset>"],thead:[1,"<table>","</table>"],tr:[2,"<table><tbody>","</tbody></table>"],td:[3,"<table><tbody><tr>","</tr></tbody></table>"],col:[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"],area:[1,"<map>","</map>"],_default:[0,"",""]};P.optgroup=P.option;P.tbody=P.tfoot=P.colgroup=P.caption=P.thead;P.th=P.td;if(!c.support.htmlSerialize)P._default=[1,"div<div>","</div>"];c.fn.extend({text:function(a){if(c.isFunction(a))return this.each(function(b){var d=
c(this);d.text(a.call(this,b,d.text()))});if(typeof a!=="object"&&a!==B)return this.empty().append((this[0]&&this[0].ownerDocument||t).createTextNode(a));return c.text(this)},wrapAll:function(a){if(c.isFunction(a))return this.each(function(d){c(this).wrapAll(a.call(this,d))});if(this[0]){var b=c(a,this[0].ownerDocument).eq(0).clone(true);this[0].parentNode&&b.insertBefore(this[0]);b.map(function(){for(var d=this;d.firstChild&&d.firstChild.nodeType===1;)d=d.firstChild;return d}).append(this)}return this},
wrapInner:function(a){if(c.isFunction(a))return this.each(function(b){c(this).wrapInner(a.call(this,b))});return this.each(function(){var b=c(this),d=b.contents();d.length?d.wrapAll(a):b.append(a)})},wrap:function(a){return this.each(function(){c(this).wrapAll(a)})},unwrap:function(){return this.parent().each(function(){c.nodeName(this,"body")||c(this).replaceWith(this.childNodes)}).end()},append:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.appendChild(a)})},
prepend:function(){return this.domManip(arguments,true,function(a){this.nodeType===1&&this.insertBefore(a,this.firstChild)})},before:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,this)});else if(arguments.length){var a=c(arguments[0]);a.push.apply(a,this.toArray());return this.pushStack(a,"before",arguments)}},after:function(){if(this[0]&&this[0].parentNode)return this.domManip(arguments,false,function(b){this.parentNode.insertBefore(b,
this.nextSibling)});else if(arguments.length){var a=this.pushStack(this,"after",arguments);a.push.apply(a,c(arguments[0]).toArray());return a}},remove:function(a,b){for(var d=0,e;(e=this[d])!=null;d++)if(!a||c.filter(a,[e]).length){if(!b&&e.nodeType===1){c.cleanData(e.getElementsByTagName("*"));c.cleanData([e])}e.parentNode&&e.parentNode.removeChild(e)}return this},empty:function(){for(var a=0,b;(b=this[a])!=null;a++)for(b.nodeType===1&&c.cleanData(b.getElementsByTagName("*"));b.firstChild;)b.removeChild(b.firstChild);
return this},clone:function(a){var b=this.map(function(){if(!c.support.noCloneEvent&&!c.isXMLDoc(this)){var d=this.outerHTML,e=this.ownerDocument;if(!d){d=e.createElement("div");d.appendChild(this.cloneNode(true));d=d.innerHTML}return c.clean([d.replace(za,"").replace(fb,'="$1">').replace($,"")],e)[0]}else return this.cloneNode(true)});if(a===true){na(this,b);na(this.find("*"),b.find("*"))}return b},html:function(a){if(a===B)return this[0]&&this[0].nodeType===1?this[0].innerHTML.replace(za,""):null;
else if(typeof a==="string"&&!Ca.test(a)&&(c.support.leadingWhitespace||!$.test(a))&&!P[(Ba.exec(a)||["",""])[1].toLowerCase()]){a=a.replace(Aa,"<$1></$2>");try{for(var b=0,d=this.length;b<d;b++)if(this[b].nodeType===1){c.cleanData(this[b].getElementsByTagName("*"));this[b].innerHTML=a}}catch(e){this.empty().append(a)}}else c.isFunction(a)?this.each(function(f){var h=c(this);h.html(a.call(this,f,h.html()))}):this.empty().append(a);return this},replaceWith:function(a){if(this[0]&&this[0].parentNode){if(c.isFunction(a))return this.each(function(b){var d=
c(this),e=d.html();d.replaceWith(a.call(this,b,e))});if(typeof a!=="string")a=c(a).detach();return this.each(function(){var b=this.nextSibling,d=this.parentNode;c(this).remove();b?c(b).before(a):c(d).append(a)})}else return this.pushStack(c(c.isFunction(a)?a():a),"replaceWith",a)},detach:function(a){return this.remove(a,true)},domManip:function(a,b,d){var e,f,h,l=a[0],k=[];if(!c.support.checkClone&&arguments.length===3&&typeof l==="string"&&Da.test(l))return this.each(function(){c(this).domManip(a,
b,d,true)});if(c.isFunction(l))return this.each(function(x){var r=c(this);a[0]=l.call(this,x,b?r.html():B);r.domManip(a,b,d)});if(this[0]){e=l&&l.parentNode;e=c.support.parentNode&&e&&e.nodeType===11&&e.childNodes.length===this.length?{fragment:e}:c.buildFragment(a,this,k);h=e.fragment;if(f=h.childNodes.length===1?h=h.firstChild:h.firstChild){b=b&&c.nodeName(f,"tr");f=0;for(var o=this.length;f<o;f++)d.call(b?c.nodeName(this[f],"table")?this[f].getElementsByTagName("tbody")[0]||this[f].appendChild(this[f].ownerDocument.createElement("tbody")):
this[f]:this[f],f>0||e.cacheable||this.length>1?h.cloneNode(true):h)}k.length&&c.each(k,Oa)}return this}});c.buildFragment=function(a,b,d){var e,f,h;b=b&&b[0]?b[0].ownerDocument||b[0]:t;if(a.length===1&&typeof a[0]==="string"&&a[0].length<512&&b===t&&!Ca.test(a[0])&&(c.support.checkClone||!Da.test(a[0]))){f=true;if(h=c.fragments[a[0]])if(h!==1)e=h}if(!e){e=b.createDocumentFragment();c.clean(a,b,e,d)}if(f)c.fragments[a[0]]=h?e:1;return{fragment:e,cacheable:f}};c.fragments={};c.each({appendTo:"append",
prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(a,b){c.fn[a]=function(d){var e=[];d=c(d);var f=this.length===1&&this[0].parentNode;if(f&&f.nodeType===11&&f.childNodes.length===1&&d.length===1){d[b](this[0]);return this}else{f=0;for(var h=d.length;f<h;f++){var l=(f>0?this.clone(true):this).get();c(d[f])[b](l);e=e.concat(l)}return this.pushStack(e,a,d.selector)}}});c.extend({clean:function(a,b,d,e){b=b||t;if(typeof b.createElement==="undefined")b=b.ownerDocument||
b[0]&&b[0].ownerDocument||t;for(var f=[],h=0,l;(l=a[h])!=null;h++){if(typeof l==="number")l+="";if(l){if(typeof l==="string"&&!eb.test(l))l=b.createTextNode(l);else if(typeof l==="string"){l=l.replace(Aa,"<$1></$2>");var k=(Ba.exec(l)||["",""])[1].toLowerCase(),o=P[k]||P._default,x=o[0],r=b.createElement("div");for(r.innerHTML=o[1]+l+o[2];x--;)r=r.lastChild;if(!c.support.tbody){x=db.test(l);k=k==="table"&&!x?r.firstChild&&r.firstChild.childNodes:o[1]==="<table>"&&!x?r.childNodes:[];for(o=k.length-
1;o>=0;--o)c.nodeName(k[o],"tbody")&&!k[o].childNodes.length&&k[o].parentNode.removeChild(k[o])}!c.support.leadingWhitespace&&$.test(l)&&r.insertBefore(b.createTextNode($.exec(l)[0]),r.firstChild);l=r.childNodes}if(l.nodeType)f.push(l);else f=c.merge(f,l)}}if(d)for(h=0;f[h];h++)if(e&&c.nodeName(f[h],"script")&&(!f[h].type||f[h].type.toLowerCase()==="text/javascript"))e.push(f[h].parentNode?f[h].parentNode.removeChild(f[h]):f[h]);else{f[h].nodeType===1&&f.splice.apply(f,[h+1,0].concat(c.makeArray(f[h].getElementsByTagName("script"))));
d.appendChild(f[h])}return f},cleanData:function(a){for(var b,d,e=c.cache,f=c.event.special,h=c.support.deleteExpando,l=0,k;(k=a[l])!=null;l++)if(!(k.nodeName&&c.noData[k.nodeName.toLowerCase()]))if(d=k[c.expando]){if((b=e[d])&&b.events)for(var o in b.events)f[o]?c.event.remove(k,o):c.removeEvent(k,o,b.handle);if(h)delete k[c.expando];else k.removeAttribute&&k.removeAttribute(c.expando);delete e[d]}}});var Ea=/alpha\([^)]*\)/i,gb=/opacity=([^)]*)/,hb=/-([a-z])/ig,ib=/([A-Z])/g,Fa=/^-?\d+(?:px)?$/i,
jb=/^-?\d/,kb={position:"absolute",visibility:"hidden",display:"block"},Pa=["Left","Right"],Qa=["Top","Bottom"],W,Ga,aa,lb=function(a,b){return b.toUpperCase()};c.fn.css=function(a,b){if(arguments.length===2&&b===B)return this;return c.access(this,a,b,true,function(d,e,f){return f!==B?c.style(d,e,f):c.css(d,e)})};c.extend({cssHooks:{opacity:{get:function(a,b){if(b){var d=W(a,"opacity","opacity");return d===""?"1":d}else return a.style.opacity}}},cssNumber:{zIndex:true,fontWeight:true,opacity:true,
zoom:true,lineHeight:true},cssProps:{"float":c.support.cssFloat?"cssFloat":"styleFloat"},style:function(a,b,d,e){if(!(!a||a.nodeType===3||a.nodeType===8||!a.style)){var f,h=c.camelCase(b),l=a.style,k=c.cssHooks[h];b=c.cssProps[h]||h;if(d!==B){if(!(typeof d==="number"&&isNaN(d)||d==null)){if(typeof d==="number"&&!c.cssNumber[h])d+="px";if(!k||!("set"in k)||(d=k.set(a,d))!==B)try{l[b]=d}catch(o){}}}else{if(k&&"get"in k&&(f=k.get(a,false,e))!==B)return f;return l[b]}}},css:function(a,b,d){var e,f=c.camelCase(b),
h=c.cssHooks[f];b=c.cssProps[f]||f;if(h&&"get"in h&&(e=h.get(a,true,d))!==B)return e;else if(W)return W(a,b,f)},swap:function(a,b,d){var e={},f;for(f in b){e[f]=a.style[f];a.style[f]=b[f]}d.call(a);for(f in b)a.style[f]=e[f]},camelCase:function(a){return a.replace(hb,lb)}});c.curCSS=c.css;c.each(["height","width"],function(a,b){c.cssHooks[b]={get:function(d,e,f){var h;if(e){if(d.offsetWidth!==0)h=oa(d,b,f);else c.swap(d,kb,function(){h=oa(d,b,f)});if(h<=0){h=W(d,b,b);if(h==="0px"&&aa)h=aa(d,b,b);
if(h!=null)return h===""||h==="auto"?"0px":h}if(h<0||h==null){h=d.style[b];return h===""||h==="auto"?"0px":h}return typeof h==="string"?h:h+"px"}},set:function(d,e){if(Fa.test(e)){e=parseFloat(e);if(e>=0)return e+"px"}else return e}}});if(!c.support.opacity)c.cssHooks.opacity={get:function(a,b){return gb.test((b&&a.currentStyle?a.currentStyle.filter:a.style.filter)||"")?parseFloat(RegExp.$1)/100+"":b?"1":""},set:function(a,b){var d=a.style;d.zoom=1;var e=c.isNaN(b)?"":"alpha(opacity="+b*100+")",f=
d.filter||"";d.filter=Ea.test(f)?f.replace(Ea,e):d.filter+" "+e}};if(t.defaultView&&t.defaultView.getComputedStyle)Ga=function(a,b,d){var e;d=d.replace(ib,"-$1").toLowerCase();if(!(b=a.ownerDocument.defaultView))return B;if(b=b.getComputedStyle(a,null)){e=b.getPropertyValue(d);if(e===""&&!c.contains(a.ownerDocument.documentElement,a))e=c.style(a,d)}return e};if(t.documentElement.currentStyle)aa=function(a,b){var d,e,f=a.currentStyle&&a.currentStyle[b],h=a.style;if(!Fa.test(f)&&jb.test(f)){d=h.left;
e=a.runtimeStyle.left;a.runtimeStyle.left=a.currentStyle.left;h.left=b==="fontSize"?"1em":f||0;f=h.pixelLeft+"px";h.left=d;a.runtimeStyle.left=e}return f===""?"auto":f};W=Ga||aa;if(c.expr&&c.expr.filters){c.expr.filters.hidden=function(a){var b=a.offsetHeight;return a.offsetWidth===0&&b===0||!c.support.reliableHiddenOffsets&&(a.style.display||c.css(a,"display"))==="none"};c.expr.filters.visible=function(a){return!c.expr.filters.hidden(a)}}var mb=c.now(),nb=/<script\b[^<]*(?:(?!<\/script>)<[^<]*)*<\/script>/gi,
ob=/^(?:select|textarea)/i,pb=/^(?:color|date|datetime|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i,qb=/^(?:GET|HEAD)$/,Ra=/\[\]$/,T=/\=\?(&|$)/,ja=/\?/,rb=/([?&])_=[^&]*/,sb=/^(\w+:)?\/\/([^\/?#]+)/,tb=/%20/g,ub=/#.*$/,Ha=c.fn.load;c.fn.extend({load:function(a,b,d){if(typeof a!=="string"&&Ha)return Ha.apply(this,arguments);else if(!this.length)return this;var e=a.indexOf(" ");if(e>=0){var f=a.slice(e,a.length);a=a.slice(0,e)}e="GET";if(b)if(c.isFunction(b)){d=b;b=null}else if(typeof b===
"object"){b=c.param(b,c.ajaxSettings.traditional);e="POST"}var h=this;c.ajax({url:a,type:e,dataType:"html",data:b,complete:function(l,k){if(k==="success"||k==="notmodified")h.html(f?c("<div>").append(l.responseText.replace(nb,"")).find(f):l.responseText);d&&h.each(d,[l.responseText,k,l])}});return this},serialize:function(){return c.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?c.makeArray(this.elements):this}).filter(function(){return this.name&&
!this.disabled&&(this.checked||ob.test(this.nodeName)||pb.test(this.type))}).map(function(a,b){var d=c(this).val();return d==null?null:c.isArray(d)?c.map(d,function(e){return{name:b.name,value:e}}):{name:b.name,value:d}}).get()}});c.each("ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split(" "),function(a,b){c.fn[b]=function(d){return this.bind(b,d)}});c.extend({get:function(a,b,d,e){if(c.isFunction(b)){e=e||d;d=b;b=null}return c.ajax({type:"GET",url:a,data:b,success:d,dataType:e})},
getScript:function(a,b){return c.get(a,null,b,"script")},getJSON:function(a,b,d){return c.get(a,b,d,"json")},post:function(a,b,d,e){if(c.isFunction(b)){e=e||d;d=b;b={}}return c.ajax({type:"POST",url:a,data:b,success:d,dataType:e})},ajaxSetup:function(a){c.extend(c.ajaxSettings,a)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return new E.XMLHttpRequest},accepts:{xml:"application/xml, text/xml",html:"text/html",
script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},ajax:function(a){var b=c.extend(true,{},c.ajaxSettings,a),d,e,f,h=b.type.toUpperCase(),l=qb.test(h);b.url=b.url.replace(ub,"");b.context=a&&a.context!=null?a.context:b;if(b.data&&b.processData&&typeof b.data!=="string")b.data=c.param(b.data,b.traditional);if(b.dataType==="jsonp"){if(h==="GET")T.test(b.url)||(b.url+=(ja.test(b.url)?"&":"?")+(b.jsonp||"callback")+"=?");else if(!b.data||
!T.test(b.data))b.data=(b.data?b.data+"&":"")+(b.jsonp||"callback")+"=?";b.dataType="json"}if(b.dataType==="json"&&(b.data&&T.test(b.data)||T.test(b.url))){d=b.jsonpCallback||"jsonp"+mb++;if(b.data)b.data=(b.data+"").replace(T,"="+d+"$1");b.url=b.url.replace(T,"="+d+"$1");b.dataType="script";var k=E[d];E[d]=function(m){if(c.isFunction(k))k(m);else{E[d]=B;try{delete E[d]}catch(p){}}f=m;c.handleSuccess(b,w,e,f);c.handleComplete(b,w,e,f);r&&r.removeChild(A)}}if(b.dataType==="script"&&b.cache===null)b.cache=
false;if(b.cache===false&&l){var o=c.now(),x=b.url.replace(rb,"$1_="+o);b.url=x+(x===b.url?(ja.test(b.url)?"&":"?")+"_="+o:"")}if(b.data&&l)b.url+=(ja.test(b.url)?"&":"?")+b.data;b.global&&c.active++===0&&c.event.trigger("ajaxStart");o=(o=sb.exec(b.url))&&(o[1]&&o[1].toLowerCase()!==location.protocol||o[2].toLowerCase()!==location.host);if(b.dataType==="script"&&h==="GET"&&o){var r=t.getElementsByTagName("head")[0]||t.documentElement,A=t.createElement("script");if(b.scriptCharset)A.charset=b.scriptCharset;
A.src=b.url;if(!d){var C=false;A.onload=A.onreadystatechange=function(){if(!C&&(!this.readyState||this.readyState==="loaded"||this.readyState==="complete")){C=true;c.handleSuccess(b,w,e,f);c.handleComplete(b,w,e,f);A.onload=A.onreadystatechange=null;r&&A.parentNode&&r.removeChild(A)}}}r.insertBefore(A,r.firstChild);return B}var J=false,w=b.xhr();if(w){b.username?w.open(h,b.url,b.async,b.username,b.password):w.open(h,b.url,b.async);try{if(b.data!=null&&!l||a&&a.contentType)w.setRequestHeader("Content-Type",
b.contentType);if(b.ifModified){c.lastModified[b.url]&&w.setRequestHeader("If-Modified-Since",c.lastModified[b.url]);c.etag[b.url]&&w.setRequestHeader("If-None-Match",c.etag[b.url])}o||w.setRequestHeader("X-Requested-With","XMLHttpRequest");w.setRequestHeader("Accept",b.dataType&&b.accepts[b.dataType]?b.accepts[b.dataType]+", */*; q=0.01":b.accepts._default)}catch(I){}if(b.beforeSend&&b.beforeSend.call(b.context,w,b)===false){b.global&&c.active--===1&&c.event.trigger("ajaxStop");w.abort();return false}b.global&&
c.triggerGlobal(b,"ajaxSend",[w,b]);var L=w.onreadystatechange=function(m){if(!w||w.readyState===0||m==="abort"){J||c.handleComplete(b,w,e,f);J=true;if(w)w.onreadystatechange=c.noop}else if(!J&&w&&(w.readyState===4||m==="timeout")){J=true;w.onreadystatechange=c.noop;e=m==="timeout"?"timeout":!c.httpSuccess(w)?"error":b.ifModified&&c.httpNotModified(w,b.url)?"notmodified":"success";var p;if(e==="success")try{f=c.httpData(w,b.dataType,b)}catch(q){e="parsererror";p=q}if(e==="success"||e==="notmodified")d||
c.handleSuccess(b,w,e,f);else c.handleError(b,w,e,p);d||c.handleComplete(b,w,e,f);m==="timeout"&&w.abort();if(b.async)w=null}};try{var g=w.abort;w.abort=function(){w&&Function.prototype.call.call(g,w);L("abort")}}catch(i){}b.async&&b.timeout>0&&setTimeout(function(){w&&!J&&L("timeout")},b.timeout);try{w.send(l||b.data==null?null:b.data)}catch(n){c.handleError(b,w,null,n);c.handleComplete(b,w,e,f)}b.async||L();return w}},param:function(a,b){var d=[],e=function(h,l){l=c.isFunction(l)?l():l;d[d.length]=
encodeURIComponent(h)+"="+encodeURIComponent(l)};if(b===B)b=c.ajaxSettings.traditional;if(c.isArray(a)||a.jquery)c.each(a,function(){e(this.name,this.value)});else for(var f in a)da(f,a[f],b,e);return d.join("&").replace(tb,"+")}});c.extend({active:0,lastModified:{},etag:{},handleError:function(a,b,d,e){a.error&&a.error.call(a.context,b,d,e);a.global&&c.triggerGlobal(a,"ajaxError",[b,a,e])},handleSuccess:function(a,b,d,e){a.success&&a.success.call(a.context,e,d,b);a.global&&c.triggerGlobal(a,"ajaxSuccess",
[b,a])},handleComplete:function(a,b,d){a.complete&&a.complete.call(a.context,b,d);a.global&&c.triggerGlobal(a,"ajaxComplete",[b,a]);a.global&&c.active--===1&&c.event.trigger("ajaxStop")},triggerGlobal:function(a,b,d){(a.context&&a.context.url==null?c(a.context):c.event).trigger(b,d)},httpSuccess:function(a){try{return!a.status&&location.protocol==="file:"||a.status>=200&&a.status<300||a.status===304||a.status===1223}catch(b){}return false},httpNotModified:function(a,b){var d=a.getResponseHeader("Last-Modified"),
e=a.getResponseHeader("Etag");if(d)c.lastModified[b]=d;if(e)c.etag[b]=e;return a.status===304},httpData:function(a,b,d){var e=a.getResponseHeader("content-type")||"",f=b==="xml"||!b&&e.indexOf("xml")>=0;a=f?a.responseXML:a.responseText;f&&a.documentElement.nodeName==="parsererror"&&c.error("parsererror");if(d&&d.dataFilter)a=d.dataFilter(a,b);if(typeof a==="string")if(b==="json"||!b&&e.indexOf("json")>=0)a=c.parseJSON(a);else if(b==="script"||!b&&e.indexOf("javascript")>=0)c.globalEval(a);return a}});
if(E.ActiveXObject)c.ajaxSettings.xhr=function(){if(E.location.protocol!=="file:")try{return new E.XMLHttpRequest}catch(a){}try{return new E.ActiveXObject("Microsoft.XMLHTTP")}catch(b){}};c.support.ajax=!!c.ajaxSettings.xhr();var ea={},vb=/^(?:toggle|show|hide)$/,wb=/^([+\-]=)?([\d+.\-]+)(.*)$/,ba,pa=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];c.fn.extend({show:function(a,b,d){if(a||a===0)return this.animate(S("show",
3),a,b,d);else{d=0;for(var e=this.length;d<e;d++){a=this[d];b=a.style.display;if(!c.data(a,"olddisplay")&&b==="none")b=a.style.display="";b===""&&c.css(a,"display")==="none"&&c.data(a,"olddisplay",qa(a.nodeName))}for(d=0;d<e;d++){a=this[d];b=a.style.display;if(b===""||b==="none")a.style.display=c.data(a,"olddisplay")||""}return this}},hide:function(a,b,d){if(a||a===0)return this.animate(S("hide",3),a,b,d);else{a=0;for(b=this.length;a<b;a++){d=c.css(this[a],"display");d!=="none"&&c.data(this[a],"olddisplay",
d)}for(a=0;a<b;a++)this[a].style.display="none";return this}},_toggle:c.fn.toggle,toggle:function(a,b,d){var e=typeof a==="boolean";if(c.isFunction(a)&&c.isFunction(b))this._toggle.apply(this,arguments);else a==null||e?this.each(function(){var f=e?a:c(this).is(":hidden");c(this)[f?"show":"hide"]()}):this.animate(S("toggle",3),a,b,d);return this},fadeTo:function(a,b,d,e){return this.filter(":hidden").css("opacity",0).show().end().animate({opacity:b},a,d,e)},animate:function(a,b,d,e){var f=c.speed(b,
d,e);if(c.isEmptyObject(a))return this.each(f.complete);return this[f.queue===false?"each":"queue"](function(){var h=c.extend({},f),l,k=this.nodeType===1,o=k&&c(this).is(":hidden"),x=this;for(l in a){var r=c.camelCase(l);if(l!==r){a[r]=a[l];delete a[l];l=r}if(a[l]==="hide"&&o||a[l]==="show"&&!o)return h.complete.call(this);if(k&&(l==="height"||l==="width")){h.overflow=[this.style.overflow,this.style.overflowX,this.style.overflowY];if(c.css(this,"display")==="inline"&&c.css(this,"float")==="none")if(c.support.inlineBlockNeedsLayout)if(qa(this.nodeName)===
"inline")this.style.display="inline-block";else{this.style.display="inline";this.style.zoom=1}else this.style.display="inline-block"}if(c.isArray(a[l])){(h.specialEasing=h.specialEasing||{})[l]=a[l][1];a[l]=a[l][0]}}if(h.overflow!=null)this.style.overflow="hidden";h.curAnim=c.extend({},a);c.each(a,function(A,C){var J=new c.fx(x,h,A);if(vb.test(C))J[C==="toggle"?o?"show":"hide":C](a);else{var w=wb.exec(C),I=J.cur()||0;if(w){var L=parseFloat(w[2]),g=w[3]||"px";if(g!=="px"){c.style(x,A,(L||1)+g);I=(L||
1)/J.cur()*I;c.style(x,A,I+g)}if(w[1])L=(w[1]==="-="?-1:1)*L+I;J.custom(I,L,g)}else J.custom(I,C,"")}});return true})},stop:function(a,b){var d=c.timers;a&&this.queue([]);this.each(function(){for(var e=d.length-1;e>=0;e--)if(d[e].elem===this){b&&d[e](true);d.splice(e,1)}});b||this.dequeue();return this}});c.each({slideDown:S("show",1),slideUp:S("hide",1),slideToggle:S("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"},fadeToggle:{opacity:"toggle"}},function(a,b){c.fn[a]=function(d,e,f){return this.animate(b,
d,e,f)}});c.extend({speed:function(a,b,d){var e=a&&typeof a==="object"?c.extend({},a):{complete:d||!d&&b||c.isFunction(a)&&a,duration:a,easing:d&&b||b&&!c.isFunction(b)&&b};e.duration=c.fx.off?0:typeof e.duration==="number"?e.duration:e.duration in c.fx.speeds?c.fx.speeds[e.duration]:c.fx.speeds._default;e.old=e.complete;e.complete=function(){e.queue!==false&&c(this).dequeue();c.isFunction(e.old)&&e.old.call(this)};return e},easing:{linear:function(a,b,d,e){return d+e*a},swing:function(a,b,d,e){return(-Math.cos(a*
Math.PI)/2+0.5)*e+d}},timers:[],fx:function(a,b,d){this.options=b;this.elem=a;this.prop=d;if(!b.orig)b.orig={}}});c.fx.prototype={update:function(){this.options.step&&this.options.step.call(this.elem,this.now,this);(c.fx.step[this.prop]||c.fx.step._default)(this)},cur:function(){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null))return this.elem[this.prop];var a=parseFloat(c.css(this.elem,this.prop));return a&&a>-1E4?a:0},custom:function(a,b,d){function e(l){return f.step(l)}
var f=this,h=c.fx;this.startTime=c.now();this.start=a;this.end=b;this.unit=d||this.unit||"px";this.now=this.start;this.pos=this.state=0;e.elem=this.elem;if(e()&&c.timers.push(e)&&!ba)ba=setInterval(h.tick,h.interval)},show:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.show=true;this.custom(this.prop==="width"||this.prop==="height"?1:0,this.cur());c(this.elem).show()},hide:function(){this.options.orig[this.prop]=c.style(this.elem,this.prop);this.options.hide=true;
this.custom(this.cur(),0)},step:function(a){var b=c.now(),d=true;if(a||b>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;for(var e in this.options.curAnim)if(this.options.curAnim[e]!==true)d=false;if(d){if(this.options.overflow!=null&&!c.support.shrinkWrapBlocks){var f=this.elem,h=this.options;c.each(["","X","Y"],function(k,o){f.style["overflow"+o]=h.overflow[k]})}this.options.hide&&c(this.elem).hide();if(this.options.hide||
this.options.show)for(var l in this.options.curAnim)c.style(this.elem,l,this.options.orig[l]);this.options.complete.call(this.elem)}return false}else{a=b-this.startTime;this.state=a/this.options.duration;b=this.options.easing||(c.easing.swing?"swing":"linear");this.pos=c.easing[this.options.specialEasing&&this.options.specialEasing[this.prop]||b](this.state,a,0,1,this.options.duration);this.now=this.start+(this.end-this.start)*this.pos;this.update()}return true}};c.extend(c.fx,{tick:function(){for(var a=
c.timers,b=0;b<a.length;b++)a[b]()||a.splice(b--,1);a.length||c.fx.stop()},interval:13,stop:function(){clearInterval(ba);ba=null},speeds:{slow:600,fast:200,_default:400},step:{opacity:function(a){c.style(a.elem,"opacity",a.now)},_default:function(a){if(a.elem.style&&a.elem.style[a.prop]!=null)a.elem.style[a.prop]=(a.prop==="width"||a.prop==="height"?Math.max(0,a.now):a.now)+a.unit;else a.elem[a.prop]=a.now}}});if(c.expr&&c.expr.filters)c.expr.filters.animated=function(a){return c.grep(c.timers,function(b){return a===
b.elem}).length};var xb=/^t(?:able|d|h)$/i,Ia=/^(?:body|html)$/i;c.fn.offset="getBoundingClientRect"in t.documentElement?function(a){var b=this[0],d;if(a)return this.each(function(l){c.offset.setOffset(this,a,l)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);try{d=b.getBoundingClientRect()}catch(e){}var f=b.ownerDocument,h=f.documentElement;if(!d||!c.contains(h,b))return d||{top:0,left:0};b=f.body;f=fa(f);return{top:d.top+(f.pageYOffset||c.support.boxModel&&
h.scrollTop||b.scrollTop)-(h.clientTop||b.clientTop||0),left:d.left+(f.pageXOffset||c.support.boxModel&&h.scrollLeft||b.scrollLeft)-(h.clientLeft||b.clientLeft||0)}}:function(a){var b=this[0];if(a)return this.each(function(x){c.offset.setOffset(this,a,x)});if(!b||!b.ownerDocument)return null;if(b===b.ownerDocument.body)return c.offset.bodyOffset(b);c.offset.initialize();var d,e=b.offsetParent,f=b.ownerDocument,h=f.documentElement,l=f.body;d=(f=f.defaultView)?f.getComputedStyle(b,null):b.currentStyle;
for(var k=b.offsetTop,o=b.offsetLeft;(b=b.parentNode)&&b!==l&&b!==h;){if(c.offset.supportsFixedPosition&&d.position==="fixed")break;d=f?f.getComputedStyle(b,null):b.currentStyle;k-=b.scrollTop;o-=b.scrollLeft;if(b===e){k+=b.offsetTop;o+=b.offsetLeft;if(c.offset.doesNotAddBorder&&!(c.offset.doesAddBorderForTableAndCells&&xb.test(b.nodeName))){k+=parseFloat(d.borderTopWidth)||0;o+=parseFloat(d.borderLeftWidth)||0}e=b.offsetParent}if(c.offset.subtractsBorderForOverflowNotVisible&&d.overflow!=="visible"){k+=
parseFloat(d.borderTopWidth)||0;o+=parseFloat(d.borderLeftWidth)||0}d=d}if(d.position==="relative"||d.position==="static"){k+=l.offsetTop;o+=l.offsetLeft}if(c.offset.supportsFixedPosition&&d.position==="fixed"){k+=Math.max(h.scrollTop,l.scrollTop);o+=Math.max(h.scrollLeft,l.scrollLeft)}return{top:k,left:o}};c.offset={initialize:function(){var a=t.body,b=t.createElement("div"),d,e,f,h=parseFloat(c.css(a,"marginTop"))||0;c.extend(b.style,{position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",
height:"1px",visibility:"hidden"});b.innerHTML="<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>";a.insertBefore(b,a.firstChild);d=b.firstChild;e=d.firstChild;f=d.nextSibling.firstChild.firstChild;this.doesNotAddBorder=e.offsetTop!==5;this.doesAddBorderForTableAndCells=
f.offsetTop===5;e.style.position="fixed";e.style.top="20px";this.supportsFixedPosition=e.offsetTop===20||e.offsetTop===15;e.style.position=e.style.top="";d.style.overflow="hidden";d.style.position="relative";this.subtractsBorderForOverflowNotVisible=e.offsetTop===-5;this.doesNotIncludeMarginInBodyOffset=a.offsetTop!==h;a.removeChild(b);c.offset.initialize=c.noop},bodyOffset:function(a){var b=a.offsetTop,d=a.offsetLeft;c.offset.initialize();if(c.offset.doesNotIncludeMarginInBodyOffset){b+=parseFloat(c.css(a,
"marginTop"))||0;d+=parseFloat(c.css(a,"marginLeft"))||0}return{top:b,left:d}},setOffset:function(a,b,d){var e=c.css(a,"position");if(e==="static")a.style.position="relative";var f=c(a),h=f.offset(),l=c.css(a,"top"),k=c.css(a,"left"),o=e==="absolute"&&c.inArray("auto",[l,k])>-1;e={};var x={};if(o)x=f.position();l=o?x.top:parseInt(l,10)||0;k=o?x.left:parseInt(k,10)||0;if(c.isFunction(b))b=b.call(a,d,h);if(b.top!=null)e.top=b.top-h.top+l;if(b.left!=null)e.left=b.left-h.left+k;"using"in b?b.using.call(a,
e):f.css(e)}};c.fn.extend({position:function(){if(!this[0])return null;var a=this[0],b=this.offsetParent(),d=this.offset(),e=Ia.test(b[0].nodeName)?{top:0,left:0}:b.offset();d.top-=parseFloat(c.css(a,"marginTop"))||0;d.left-=parseFloat(c.css(a,"marginLeft"))||0;e.top+=parseFloat(c.css(b[0],"borderTopWidth"))||0;e.left+=parseFloat(c.css(b[0],"borderLeftWidth"))||0;return{top:d.top-e.top,left:d.left-e.left}},offsetParent:function(){return this.map(function(){for(var a=this.offsetParent||t.body;a&&!Ia.test(a.nodeName)&&
c.css(a,"position")==="static";)a=a.offsetParent;return a})}});c.each(["Left","Top"],function(a,b){var d="scroll"+b;c.fn[d]=function(e){var f=this[0],h;if(!f)return null;if(e!==B)return this.each(function(){if(h=fa(this))h.scrollTo(!a?e:c(h).scrollLeft(),a?e:c(h).scrollTop());else this[d]=e});else return(h=fa(f))?"pageXOffset"in h?h[a?"pageYOffset":"pageXOffset"]:c.support.boxModel&&h.document.documentElement[d]||h.document.body[d]:f[d]}});c.each(["Height","Width"],function(a,b){var d=b.toLowerCase();
c.fn["inner"+b]=function(){return this[0]?parseFloat(c.css(this[0],d,"padding")):null};c.fn["outer"+b]=function(e){return this[0]?parseFloat(c.css(this[0],d,e?"margin":"border")):null};c.fn[d]=function(e){var f=this[0];if(!f)return e==null?null:this;if(c.isFunction(e))return this.each(function(l){var k=c(this);k[d](e.call(this,l,k[d]()))});if(c.isWindow(f))return f.document.compatMode==="CSS1Compat"&&f.document.documentElement["client"+b]||f.document.body["client"+b];else if(f.nodeType===9)return Math.max(f.documentElement["client"+
b],f.body["scroll"+b],f.documentElement["scroll"+b],f.body["offset"+b],f.documentElement["offset"+b]);else if(e===B){f=c.css(f,d);var h=parseFloat(f);return c.isNaN(h)?f:h}else return this.css(d,typeof e==="string"?e:e+"px")}})})(window);
;
/*
 * 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. 
 *
 */;
/*MENU*/
$(document).ready(function()
{	
    /*
	$('.expanded ul').addClass('interno');
	$('li.expanded').each(function(){
		$(this).children('a').attr('href', 'javascript:;');
		
		if($(this).children('a').attr('title') == 'Projetos')
		{
			if($(this).hasClass('active-trail'))
			{
				$(this).children('a').addClass('active');
				$(this).prev().children('a').removeClass('active');
				$(this).prev().children('ul').css('width','0px');
				$(this).children('ul').css('width','426px');
				Cufon.refresh('.menu', {hover: true}); 
				Cufon.refresh('.menu.interno', {hover: true});
			}
		}
		else
		{
			if($(this).hasClass('active-trail'))
			{
				$(this).children('a').addClass('active');
				$(this).prev().children('a').removeClass('active');
				$(this).prev().children('ul').css('width','0px');
				$(this).children('ul').css('width','478px');
				Cufon.refresh('.menu', {hover: true}); 
				Cufon.refresh('.menu.interno', {hover: true});
			}
		}
	});
	$('li.expanded a').click(function(){
		if($(this).attr('title') == 'Projetos')
		{
			if($(this).parent().children('ul').css('width').substr(0, 1) == 0)
			{
				$(this).parent().children('a').addClass('active');
				$(this).parent().next().children('ul').animate({width:'0px'}, 200);
				$(this).parent().next().children('a').removeClass('active');
				$(this).parent().children('ul').animate({width:'426px'}, 250);
				 Cufon.refresh('.menu', {hover: true}); 
				 Cufon.refresh('.menu.interno', {hover: true});
			}
			else
			{
				$(this).parent().children('a').removeClass('active');
				$(this).parent().children('ul').animate({width:'0px'}, 200);
			}
		}
		else
		{
			if($(this).parent().children('ul').css('width').substr(0, 1) == 0)
			{
				$(this).parent().children('a').addClass('active');
				$(this).parent().prev().children('a').removeClass('active');
				$(this).parent().prev().children('ul').animate({width:'0px'}, 200);
				$(this).parent().children('ul').animate({width:'478px'}, 250);
				Cufon.refresh('.menu', {hover: true}); 
				Cufon.refresh('.menu.interno', {hover: true});
			}
			else
			{
				$(this).parent().children('a').removeClass('active');
				$(this).parent().children('ul').animate({width:'0px'}, 200);
			}
		}
	});*/
});

Cufon.replace('.menu', {hover: true});
Cufon.replace('.menu.interno', {hover: true});
	/*FIM MENU*/;
$(window).ready(function()
{	
	/*controle de roll de imagens*/
	$('.home .node').hover(function(){
		/*if(($(this).position().left + $(this).width()) + $('.fotos').position().left <= $('.nav').position().left)
		{*/
			$(this).css('cursor', 'pointer');
			//$(this).children('.transparencia').css({'width':'100%', 'height':'400px', 'top': '-400px'});
			//$(this).children('.transparencia').stop().animate({top: '0px'}, 200);
			$(this).children('.link').stop().animate({bottom: '0px'}, 200);
		//}
	},function(){
		$(this).css('cursor', 'default');
		//$(this).children('.transparencia').stop().animate({top:'-400px'}, 200);
		$(this).children('.link').stop().animate({bottom:  -($(this).children('.link').height() + 40) +'px'}, 200);
	});
	
	var arrImagensTamanho = [];
	var arrImagensPosicao = [];
	var arrImagens		  = [];
	var navIndex = 0;
	var trava = false;
	var travaAnimacao 		  = false;
	//item que toca o fim
	var itemMaximo = 0;
	var cont = 0;
	
	/*$('.fotos img').each(function(){
		$(this).css('opacity', 0);
	});*/
	
	$(window).load(function(){
		/*controle de nav de imagens*/
		var totalWidth = 0;
		$('.fotos').children('.node').each(function(){
			arrImagensTamanho.push($(this).width());
			arrImagens.push($(this));
			arrImagensPosicao.push(totalWidth);
			totalWidth += $(this).width();
			$('.fotos').width(totalWidth);
		});
		
		/*$('.fotos img').each(function(index){
			$(this).delay(index * 200).animate({opacity: 1},700);
		});
		*/
		
		if(totalWidth <= $(window).width())
		{
			$('.nav').css('display', 'none');	
		}
	});
	$('.home .nav .anterior').addClass('desativado');	
	var release = false;
	$('.home .nav .proximo').click(function(){
		var position = $('.fotos').position();
		$('.home .nav .anterior').removeClass('desativado');	
		if(navIndex < arrImagens.length - 1)
		{
			if(!travaAnimacao)
			{
				if(!release)
				{
					navIndex++;
					if($('.fotos').position().left + $('.fotos').width() <= $(window).width())
					{
						//$('.fotos').stop().animate({'left': - arrImagens[arrImagensPosicao.length - 1].width() + 'px'}, 300, function(){travaAnimacao = false;});
						$('.fotos').stop().animate({'left': (-arrImagensPosicao[navIndex])+'px'}, 300, function(){travaAnimacao = false;});
						travaAnimacao = true;
						$(this).addClass('desativado');
						release = true;
					}
					else
					{
						$('.fotos').stop().animate({'left': (-arrImagensPosicao[navIndex])+'px'}, 300, function(){travaAnimacao = false;});
						travaAnimacao = true;
					}
				}
			}
		}
		else
		{
			$(this).addClass('desativado');	
		}
	});
	
	$('.home .nav .anterior').click(function(){
		var position = $('.fotos').position();
		$('.home .nav .proximo').removeClass('desativado');
		if(navIndex > 0)
		{
			if(!travaAnimacao)
			{
				navIndex--;			
				if(position.left >= (0 - arrImagensPosicao[1]))
				{
					$('.fotos').stop().animate({'left': '0px'}, 300, function(){travaAnimacao = false;});
					travaAnimacao = true;
					$(this).addClass('desativado');
				}
				else
				{
					release = true;
					$('.fotos').stop().animate({'left': (-arrImagensPosicao[navIndex])+'px'}, 300, function(){travaAnimacao = false;});
					travaAnimacao = true;
				}
				release = false;
			}
		}
	});
	
	
	/*$(window).bind("resize", onWindowResize);
	
	function onWindowResize()
	{
		trava = false;
		$('.fotos').css({'left': '0px'});
		cont = 0;
		$('.home .fotos').children('.node').each(function(){
			if(($(this).position().left + $(this).width()) + $('.fotos').position().left >= $('.nav').position().left && !trava)
			{
				itemMaximo = cont;
				trava = true;
			}
			cont++;
		});
		navIndex = itemMaximo - 1;
	}*/
	
	//menu restrito
	$('.ativa_menu_restrito').hover(function(){
		$('.menu_restrito').stop().animate({top:0}, 300);	
	},
	function(){
		
	});
	
	$('.menu_restrito').hover(function(){
		
	},
	function(){
		$(this).stop().animate({top:'-43px'}, 300);	
	});
	
	
	//replace de fonts
	Cufon.replace('.din');
});;

