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

$(document).ready(function() 
{
	var newsItems;
	var newsCurrItem=0;
	var newsPause=0;

	var newsTickerSelector = "div#featured li";
	
	newsItems = $(newsTickerSelector).hide().hover(
		function(){
			$(this).addClass("hovered");
			newsPause=1;
		},
		function(){
			$(this).removeClass("hovered");
			newsPause=0;
		}
	).filter(":eq(0)").show().add(newsTickerSelector).size();
	setInterval(ticknews,4000); //time in milliseconds

	function ticknews() {
		if (newsPause==0){
			$("#featured li:eq("+newsCurrItem+")").fadeOut();
			newsCurrItem = ++newsCurrItem%newsItems;
			$("#featured li:eq("+newsCurrItem+")").fadeIn();
		}
	}

});

/**
 * jQuery lightBox plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-lightbox-0.5.js
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
 */

// Offering a Custom Alias suport - More info: http://docs.jquery.com/Plugins/Authoring#Custom_Alias
(function($) {
	/**
	 * $ is an alias to jQuery object
	 *
	 */
	$.fn.lightBox = function(settings) {
		var pluginPath = '/wp-content/plugins/jquery-lightbox';
		// Settings to configure the jQuery lightBox plugin how you like
		settings = jQuery.extend({
			// Configuration related to overlay
			overlayBgColor: 		'#000',		// (string) Background color to overlay; inform a hexadecimal value like: #RRGGBB. Where RR, GG, and BB are the hexadecimal values for the red, green, and blue values of the color.
			overlayOpacity:			0.8,		// (integer) Opacity value to overlay; inform: 0.X. Where X are number from 0 to 9
			// Configuration related to navigation
			fixedNavigation:		false,		// (boolean) Boolean that informs if the navigation (next and prev button) will be fixed or not in the interface.
			// Configuration related to images
			imageLoading:			pluginPath + '/images/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
			imageBtnPrev:			pluginPath + '/images/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
			imageBtnNext:			pluginPath + '/images/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
			imageBtnClose:			pluginPath + '/images/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
			imageBlank:				pluginPath + '/images/lightbox-blank.gif',			// (string) Path and the name of a blank image (one pixel)
			// Configuration related to container image box
			containerBorderSize:	10,			// (integer) If you adjust the padding in the CSS for the container, #lightbox-container-image-box, you will need to update this value
			containerResizeSpeed:	400,		// (integer) Specify the resize duration of container image. These number are miliseconds. 400 is default.
			// Configuration related to texts in caption. For example: Image 2 of 8. You can alter either "Image" and "of" texts.
			txtImage:				'Image',	// (string) Specify text "Image"
			txtOf:					'of',		// (string) Specify text "of"
			// Configuration related to keyboard navigation
			keyToClose:				'c',		// (string) (c = close) Letter to close the jQuery lightBox interface. Beyond this letter, the letter X and the SCAPE key is used to.
			keyToPrev:				'p',		// (string) (p = previous) Letter to show the previous image
			keyToNext:				'n',		// (string) (n = next) Letter to show the next image.
			// Donīt alter these variables in any way
			imageArray:				[],
			activeImage:			0
		},settings);
		// Caching the jQuery object with all elements matched
		var jQueryMatchedObj = this; // This, in this context, refer to jQuery object
		/**
		 * Initializing the plugin calling the start function
		 *
		 * @return boolean false
		 */
		function _initialize() {
			_start(this,jQueryMatchedObj); // This, in this context, refer to object (link) which the user have clicked
			return false; // Avoid the browser following the link
		}
		/**
		 * Start the jQuery lightBox plugin
		 *
		 * @param object objClicked The object (link) whick the user have clicked
		 * @param object jQueryMatchedObj The jQuery object with all elements matched
		 */
		function _start(objClicked,jQueryMatchedObj) {
			// Hime some elements to avoid conflict with overlay in IE. These elements appear above the overlay.
			$('embed, object, select').css({ 'visibility' : 'hidden' });
			// Call the function to create the markup structure; style some elements; assign events in some elements.
			_set_interface();
			// Unset total images in imageArray
			settings.imageArray.length = 0;
			// Unset image active information
			settings.activeImage = 0;
			// We have an image set? Or just an image? Letīs see it.
			if ( jQueryMatchedObj.length == 1 ) {
				settings.imageArray.push(new Array(objClicked.getAttribute('href'),objClicked.getAttribute('title')));
			} else {
				// Add an Array (as many as we have), with href and title atributes, inside the Array that storage the images references		
				for ( var i = 0; i < jQueryMatchedObj.length; i++ ) {
					settings.imageArray.push(new Array(jQueryMatchedObj[i].getAttribute('href'),jQueryMatchedObj[i].getAttribute('title')));
				}
			}
			while ( settings.imageArray[settings.activeImage][0] != objClicked.getAttribute('href') ) {
				settings.activeImage++;
			}
			// Call the function that prepares image exibition
			_set_image_to_view();
		}
		/**
		 * Create the jQuery lightBox plugin interface
		 *
		 * The HTML markup will be like that:
			<div id="jquery-overlay"></div>
			<div id="jquery-lightbox">
				<div id="lightbox-container-image-box">
					<div id="lightbox-container-image">
						<img src="../fotos/XX.jpg" id="lightbox-image">
						<div id="lightbox-nav">
							<a href="#" id="lightbox-nav-btnPrev"></a>
							<a href="#" id="lightbox-nav-btnNext"></a>
						</div>
						<div id="lightbox-loading">
							<a href="#" id="lightbox-loading-link">
								<img src="../images/lightbox-ico-loading.gif">
							</a>
						</div>
					</div>
				</div>
				<div id="lightbox-container-image-data-box">
					<div id="lightbox-container-image-data">
						<div id="lightbox-image-details">
							<span id="lightbox-image-details-caption"></span>
							<span id="lightbox-image-details-currentNumber"></span>
						</div>
						<div id="lightbox-secNav">
							<a href="#" id="lightbox-secNav-btnClose">
								<img src="../images/lightbox-btn-close.gif">
							</a>
						</div>
					</div>
				</div>
			</div>
		 *
		 */
		function _set_interface() {
			// Apply the HTML markup into body tag
			$('body').append('<div id="jquery-overlay"></div><div id="jquery-lightbox"><div id="lightbox-container-image-box"><div id="lightbox-container-image"><img id="lightbox-image"><div style="" id="lightbox-nav"><a href="#" id="lightbox-nav-btnPrev"></a><a href="#" id="lightbox-nav-btnNext"></a></div><div id="lightbox-loading"><a href="#" id="lightbox-loading-link"><img src="' + settings.imageLoading + '"></a></div></div></div><div id="lightbox-container-image-data-box"><div id="lightbox-container-image-data"><div id="lightbox-image-details"><span id="lightbox-image-details-caption"></span><span id="lightbox-image-details-currentNumber"></span></div><div id="lightbox-secNav"><a href="#" id="lightbox-secNav-btnClose"><img src="' + settings.imageBtnClose + '"></a></div></div></div></div>');	
			// Get page sizes
			var arrPageSizes = ___getPageSize();
			// Style overlay and show it
			$('#jquery-overlay').css({
				backgroundColor:	settings.overlayBgColor,
				opacity:			settings.overlayOpacity,
				width:				arrPageSizes[0],
				height:				arrPageSizes[1]
			}).fadeIn();
			// Get page scroll
			var arrPageScroll = ___getPageScroll();
			// Calculate top and left offset for the jquery-lightbox div object and show it
			$('#jquery-lightbox').css({
				top:	arrPageScroll[1] + (arrPageSizes[3] / 10),
				left:	arrPageScroll[0]
			}).show();
			// Assigning click events in elements to close overlay
			$('#jquery-overlay,#jquery-lightbox').click(function() {
				_finish();									
			});
			// Assign the _finish function to lightbox-loading-link and lightbox-secNav-btnClose objects
			$('#lightbox-loading-link,#lightbox-secNav-btnClose').click(function() {
				_finish();
				return false;
			});
			// If window was resized, calculate the new overlay dimensions
			$(window).resize(function() {
				// Get page sizes
				var arrPageSizes = ___getPageSize();
				// Style overlay and show it
				$('#jquery-overlay').css({
					width:		arrPageSizes[0],
					height:		arrPageSizes[1]
				});
				// Get page scroll
				var arrPageScroll = ___getPageScroll();
				// Calculate top and left offset for the jquery-lightbox div object and show it
				$('#jquery-lightbox').css({
					top:	arrPageScroll[1] + (arrPageSizes[3] / 10),
					left:	arrPageScroll[0]
				});
			});
		}
		/**
		 * Prepares image exibition; doing a imageīs preloader to calculate itīs size
		 *
		 */
		function _set_image_to_view() { // show the loading
			// Show the loading
			$('#lightbox-loading').show();
			if ( settings.fixedNavigation ) {
				$('#lightbox-image,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber').hide();
			} else {
				// Hide some elements
				$('#lightbox-image,#lightbox-nav,#lightbox-nav-btnPrev,#lightbox-nav-btnNext,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber').hide();
			}
			// Image preload process
			var objImagePreloader = new Image();
			objImagePreloader.onload = function() {
				$('#lightbox-image').attr('src',settings.imageArray[settings.activeImage][0]);
				// Perfomance an effect in the image container resizing it
				_resize_container_image_box(objImagePreloader.width,objImagePreloader.height);
				//	clear onLoad, IE behaves irratically with animated gifs otherwise
				objImagePreloader.onload=function(){};
			};
			objImagePreloader.src = settings.imageArray[settings.activeImage][0];
		};
		/**
		 * Perfomance an effect in the image container resizing it
		 *
		 * @param integer intImageWidth The imageīs width that will be showed
		 * @param integer intImageHeight The imageīs height that will be showed
		 */
		function _resize_container_image_box(intImageWidth,intImageHeight) {
			// Get current width and height
			var intCurrentWidth = $('#lightbox-container-image-box').width();
			var intCurrentHeight = $('#lightbox-container-image-box').height();
			// Get the width and height of the selected image plus the padding
			var intWidth = (intImageWidth + (settings.containerBorderSize * 2)); // Plus the imageīs width and the left and right padding value
			var intHeight = (intImageHeight + (settings.containerBorderSize * 2)); // Plus the imageīs height and the left and right padding value
			// Diferences
			var intDiffW = intCurrentWidth - intWidth;
			var intDiffH = intCurrentHeight - intHeight;
			// Perfomance the effect
			$('#lightbox-container-image-box').animate({ width: intWidth, height: intHeight },settings.containerResizeSpeed,function() { _show_image(); });
			if ( ( intDiffW == 0 ) && ( intDiffH == 0 ) ) {
				if ( $.browser.msie ) {
					___pause(250);
				} else {
					___pause(100);	
				}
			} 
			$('#lightbox-container-image-data-box').css({ width: intImageWidth });
			$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({ height: intImageHeight + (settings.containerBorderSize * 2) });
		};
		/**
		 * Show the prepared image
		 *
		 */
		function _show_image() {
			$('#lightbox-loading').hide();
			$('#lightbox-image').fadeIn(function() {
				_show_image_data();
				_set_navigation();
			});
			_preload_neighbor_images();
		};
		/**
		 * Show the image information
		 *
		 */
		function _show_image_data() {
			$('#lightbox-container-image-data-box').slideDown('fast');
			$('#lightbox-image-details-caption').hide();
			if ( settings.imageArray[settings.activeImage][1] ) {
				$('#lightbox-image-details-caption').html(settings.imageArray[settings.activeImage][1]).show();
			}
			// If we have a image set, display 'Image X of X'
			if ( settings.imageArray.length > 1 ) {
				$('#lightbox-image-details-currentNumber').html(settings.txtImage + ' ' + ( settings.activeImage + 1 ) + ' ' + settings.txtOf + ' ' + settings.imageArray.length).show();
			}		
		}
		/**
		 * Display the button navigations
		 *
		 */
		function _set_navigation() {
			$('#lightbox-nav').show();

			// Instead to define this configuration in CSS file, we define here. And itīs need to IE. Just.
			$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({ 'background' : 'transparent url(' + settings.imageBlank + ') no-repeat' });
			
			// Show the prev button, if not the first image in set
			if ( settings.activeImage != 0 ) {
				if ( settings.fixedNavigation ) {
					$('#lightbox-nav-btnPrev').css({ 'background' : 'url(' + settings.imageBtnPrev + ') left 15% no-repeat' })
						.unbind()
						.bind('click',function() {
							settings.activeImage = settings.activeImage - 1;
							_set_image_to_view();
							return false;
						});
				} else {
					// Show the images button for Next buttons
					$('#lightbox-nav-btnPrev').unbind().hover(function() {
						$(this).css({ 'background' : 'url(' + settings.imageBtnPrev + ') left 15% no-repeat' });
					},function() {
						$(this).css({ 'background' : 'transparent url(' + settings.imageBlank + ') no-repeat' });
					}).show().bind('click',function() {
						settings.activeImage = settings.activeImage - 1;
						_set_image_to_view();
						return false;
					});
				}
			}
			
			// Show the next button, if not the last image in set
			if ( settings.activeImage != ( settings.imageArray.length -1 ) ) {
				if ( settings.fixedNavigation ) {
					$('#lightbox-nav-btnNext').css({ 'background' : 'url(' + settings.imageBtnNext + ') right 15% no-repeat' })
						.unbind()
						.bind('click',function() {
							settings.activeImage = settings.activeImage + 1;
							_set_image_to_view();
							return false;
						});
				} else {
					// Show the images button for Next buttons
					$('#lightbox-nav-btnNext').unbind().hover(function() {
						$(this).css({ 'background' : 'url(' + settings.imageBtnNext + ') right 15% no-repeat' });
					},function() {
						$(this).css({ 'background' : 'transparent url(' + settings.imageBlank + ') no-repeat' });
					}).show().bind('click',function() {
						settings.activeImage = settings.activeImage + 1;
						_set_image_to_view();
						return false;
					});
				}
			}
			// Enable keyboard navigation
			_enable_keyboard_navigation();
		}
		/**
		 * Enable a support to keyboard navigation
		 *
		 */
		function _enable_keyboard_navigation() {
			$(document).keydown(function(objEvent) {
				_keyboard_action(objEvent);
			});
		}
		/**
		 * Disable the support to keyboard navigation
		 *
		 */
		function _disable_keyboard_navigation() {
			$(document).unbind();
		}
		/**
		 * Perform the keyboard actions
		 *
		 */
		function _keyboard_action(objEvent) {
			// To ie
			if ( objEvent == null ) {
				keycode = event.keyCode;
				escapeKey = 27;
			// To Mozilla
			} else {
				keycode = objEvent.keyCode;
				escapeKey = objEvent.DOM_VK_ESCAPE;
			}
			// Get the key in lower case form
			key = String.fromCharCode(keycode).toLowerCase();
			// Verify the keys to close the ligthBox
			if ( ( key == settings.keyToClose ) || ( key == 'x' ) || ( keycode == escapeKey ) ) {
				_finish();
			}
			// Verify the key to show the previous image
			if ( ( key == settings.keyToPrev ) || ( keycode == 37 ) ) {
				// If weīre not showing the first image, call the previous
				if ( settings.activeImage != 0 ) {
					settings.activeImage = settings.activeImage - 1;
					_set_image_to_view();
					_disable_keyboard_navigation();
				}
			}
			// Verify the key to show the next image
			if ( ( key == settings.keyToNext ) || ( keycode == 39 ) ) {
				// If weīre not showing the last image, call the next
				if ( settings.activeImage != ( settings.imageArray.length - 1 ) ) {
					settings.activeImage = settings.activeImage + 1;
					_set_image_to_view();
					_disable_keyboard_navigation();
				}
			}
		}
		/**
		 * Preload prev and next images being showed
		 *
		 */
		function _preload_neighbor_images() {
			if ( (settings.imageArray.length -1) > settings.activeImage ) {
				objNext = new Image();
				objNext.src = settings.imageArray[settings.activeImage + 1][0];
			}
			if ( settings.activeImage > 0 ) {
				objPrev = new Image();
				objPrev.src = settings.imageArray[settings.activeImage -1][0];
			}
		}
		/**
		 * Remove jQuery lightBox plugin HTML markup
		 *
		 */
		function _finish() {
			$('#jquery-lightbox').remove();
			$('#jquery-overlay').fadeOut(function() { $('#jquery-overlay').remove(); });
			// Show some elements to avoid conflict with overlay in IE. These elements appear above the overlay.
			$('embed, object, select').css({ 'visibility' : 'visible' });
		}
		/**
		 / THIRD FUNCTION
		 * getPageSize() by quirksmode.com
		 *
		 * @return Array Return an array with page width, height and window width, height
		 */
		function ___getPageSize() {
			var xScroll, yScroll;
			if (window.innerHeight && window.scrollMaxY) {	
				xScroll = window.innerWidth + window.scrollMaxX;
				yScroll = window.innerHeight + window.scrollMaxY;
			} else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
				xScroll = document.body.scrollWidth;
				yScroll = document.body.scrollHeight;
			} else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
				xScroll = document.body.offsetWidth;
				yScroll = document.body.offsetHeight;
			}
			var windowWidth, windowHeight;
			if (self.innerHeight) {	// all except Explorer
				if(document.documentElement.clientWidth){
					windowWidth = document.documentElement.clientWidth; 
				} else {
					windowWidth = self.innerWidth;
				}
				windowHeight = self.innerHeight;
			} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
				windowWidth = document.documentElement.clientWidth;
				windowHeight = document.documentElement.clientHeight;
			} else if (document.body) { // other Explorers
				windowWidth = document.body.clientWidth;
				windowHeight = document.body.clientHeight;
			}	
			// for small pages with total height less then height of the viewport
			if(yScroll < windowHeight){
				pageHeight = windowHeight;
			} else { 
				pageHeight = yScroll;
			}
			// for small pages with total width less then width of the viewport
			if(xScroll < windowWidth){	
				pageWidth = xScroll;		
			} else {
				pageWidth = windowWidth;
			}
			arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight);
			return arrayPageSize;
		};
		/**
		 / THIRD FUNCTION
		 * getPageScroll() by quirksmode.com
		 *
		 * @return Array Return an array with x,y page scroll values.
		 */
		function ___getPageScroll() {
			var xScroll, yScroll;
			if (self.pageYOffset) {
				yScroll = self.pageYOffset;
				xScroll = self.pageXOffset;
			} else if (document.documentElement && document.documentElement.scrollTop) {	 // Explorer 6 Strict
				yScroll = document.documentElement.scrollTop;
				xScroll = document.documentElement.scrollLeft;
			} else if (document.body) {// all other Explorers
				yScroll = document.body.scrollTop;
				xScroll = document.body.scrollLeft;	
			}
			arrayPageScroll = new Array(xScroll,yScroll);
			return arrayPageScroll;
		};
		 /**
		  * Stop the code execution from a escified time in milisecond
		  *
		  */
		 function ___pause(ms) {
			var date = new Date(); 
			curDate = null;
			do { var curDate = new Date(); }
			while ( curDate - date < ms);
		 };
		// Return the jQuery object for chaining. The unbind method is used to avoid click conflict when the plugin is called more than once
		return this.unbind('click').click(_initialize);
	};
})(jQuery); // Call and execute the function immediately passing the jQuery object

$(document).ready(function(){
	$('a[rel*=lightbox]').lightBox();
});

jQuery(document).ready(function(){});  //needed because FF is stupid

function newQuote(categories, linkphrase, id, strayurl, multi, offset, sequence, timer, disableaspect, loading, contributor){
	
	jQuery(document).ready
	(
		function($){
			
				var divheight = $("div.stray_quote-" + id).height();
				$("div.stray_quote-" + id).height(divheight/2);
				$("div.stray_quote-" + id).css('text-align','center');
				$("div.stray_quote-" + id).css('padding-top',divheight/2);
				$("div.stray_quote-" + id).fadeOut('slow');
				$("div.stray_quote-" + id).html(loading).fadeIn('slow', function () {
																												 
					$.ajax({
							type: "POST",
							url: strayurl + "inc/stray_ajax.php",
							data: "action=newquote&categories=" + categories + "&sequence=" + sequence + "&linkphrase=" + linkphrase + "&widgetid=" + id + "&multi=" + multi + "&offset=" + offset + "&disableaspect=" + disableaspect + "&timer=" + timer + "&contributor=" + contributor,
							success: function(html){
								$("div.stray_quote-" + id).css('padding-top',null);
								$("div.stray_quote-" + id).css('height', null);
								$("div.stray_quote-" + id).after(html).remove();
							}
					});
			  });
				
		}
	)
}

jQuery(document).ready(function(){jQuery('a').each(function(){var a=jQuery(this);var href=a.attr('href');if(href==undefined)
return;var url=href.replace('http://','').replace('https://','');var hrefArray=href.split('.').reverse();var extension=hrefArray[0].toLowerCase();var hrefArray=href.split('/').reverse();var domain=hrefArray[2];var downloadTracked=false;if(jQuery.inArray(extension,analyticsFileTypes)!=-1){downloadTracked=true;a.click(function(){if(analyticsEventTracking=='enabled'){_gaq.push(['_trackEvent','Downloads',extension.toUpperCase(),href]);}else
_gaq.push(['_trackPageview',analyticsDownloadsPrefix+url]);});}
if((href.match(/^http/))&&(!href.match(document.domain))&&(downloadTracked==false)){a.click(function(){if(analyticsEventTracking=='enabled'){_gaq.push(['_trackEvent','Outbound Traffic',href.match(/:\/\/(.[^/]+)/)[1],href]);}else
_gaq.push(['_trackPageview',analyticsOutboundPrefix+url]);});}});});

/*
Copyright 2007, 2008, 2009 OLIVER SEIDEL  (email : oliver.seidel @ deliciousdays.com)

  This program is free software: you can redistribute it and/or modify it under the
  terms of the GNU General Public License as published by the Free Software Foundation,
  either version 3 of the License, or (at your option) any later version.

  This program is distributed in the hope that it will be useful, but
  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

  You should have received a copy of the GNU General Public License along with this
  program. If not, see <http://www.gnu.org/licenses/>.
*/


// ONLY in case AJAX DOESN'T work you may want to double-check this path:
// If you do change this setting: CLEAR your BROWSER CACHE & RESTART you BROWSER!
var sajax_uri = '/wp-content/plugins/cforms/lib_ajax.php';


// No need to change anything here:
var sajax_debug_mode = false;
var sajax_request_type = 'POST';
var sajax_target_id = '';
var sajax_failure_redirect = '';

eval(function(p,a,c,k,e,d){e=function(c){return(c<a?"":e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}('B 1p(4W){f(7G)2m(4W)}B 39(){1p("39() 58..");h A;h 33=1c 1r(\'2Y.2J.6.0\',\'2Y.2J.3.0\',\'2Y.2J\',\'59.2J\');K(h i=0;i<33.C;i++){2M{A=1c 5b(33[i])}2s(e){A=1U}}f(!A&&3G 4P!="4g")A=1c 4P();f(!A)1p("4R 4S 5c 6X 35.");v A}h 28=1c 1r();B 5f(){K(h i=0;i<28.C;i++)28[i].5g()}B 2O(24,1a){h i,x,n;h 1f;h 1q;h 2U;1p("5h 2O().."+1o+"/"+2X);2U=2X;f(3G(1o)=="4g"||1o=="")1o="4a";1f=5i;f(1o=="4a"){f(1f.2o("?")==-1)1f+="?3e="+1D(24);u 1f+="&3e="+1D(24);1f+="&3O="+1D(2X);1f+="&43="+1c 4y().42();K(i=0;i<1a.C-1;i++)1f+="&3Q[]="+1D(1a[i]);1q=1U}u f(1o=="31"){1q="3e="+1D(24);1q+="&3O="+1D(2X);1q+="&43="+1c 4y().42();K(i=0;i<1a.C-1;i++)1q=1q+"&3Q[]="+1D(1a[i])}u{2m("5m 5n 2p: "+1o)}x=39();f(x==1U){f(3R!=""){2P.2e=3R;v J}u{1p("61 5o 35 K 3T 5R:\\n"+5p.5r);v J}}u{x.5s(1o,1f,1b);28[28.C]=x;f(1o=="31"){x.3U("5G","31 "+1f+" 5u/1.1");x.3U("6n-84","5x/x-5y-1n-81")}x.80=B(){f(x.7Z!=4)v;1p("5B "+x.4Z);h 2T;h W;h 2S=x.4Z.L(/^\\s*|\\s*$/g,"");h 1K=(2S.4V(0)>5D)?1:0;2T=2S.1y(0+1K);W=2S.1i(2+1K);f(2T==""){}u f(2T=="-"){2m("7T: "+W)}u{f(2U!=""){k.o(2U).26=37(W)}u{2M{h 27;h 2R=J;f(3G 1a[1a.C-1]=="35"){27=1a[1a.C-1].27;2R=1a[1a.C-1].2R}u{27=1a[1a.C-1]}27(37(W),2R)}2s(e){1p("5J 5M "+e+": 4R 4S 37 "+W)}}}}}1p(24+" 1f = "+1f+"*/5O = "+1q);x.5P(1q);1p(24+" 1M..");5S x;v 1b}B 3D(){2O("3x",3D.3W)}B 3c(){2O("3X",3c.3W)}B 3X(m){3c(m,4K)}B 4K(3Y){m=3Y.1V(\'|\');k.o(\'7t\'+m[1]).5V=m[2]+\'&5X=\'+3Z.5Y(3Z.5Z()*62)}B 3m(m,U,N,4I){k.o(\'1H\'+m).1J.2Q="3L";k.o(\'1H\'+m).3F=J;f(N!=\'\')N=\'<4H>\'+N+\'</4H>\';U=3l(4E(U.E))+N;T=U.L(/(\\r\\n)/g,\'<4C />\');1d=\'1w\'+m;1Q=(3V(m)>1)?\' 2K\'+m:\'\';f(k.o(1d+\'a\'))k.o(1d+\'a\').F="1O 2K"+1Q;f(k.o(1d+\'b\'))k.o(1d+\'b\').F="1O 2K"+1Q;2u(1d,T.L(/\\\\/g,""),\'\');U=U.L(/\\\\/g,"");f(k.o(\'7l\'+m).E.1y(4I)==\'y\'){U=U.L(/<1k>/g,"\\r\\n");U=U.L(/<.?4u>/g,\'*\');U=U.L(/(<([^>]+)>)/3q,\'\');U=U.L(/&4F;/3q,\'\');2m(U)}}B 66(1B){f(1B.40==1B.E)1B.E=\'\'};B 67(1B){f(1B.E==\'\')1B.E=1B.40};B 69(m,3k){f(!m)m=\'\';1d=\'1w\'+m;f(k.o(1d+\'a\')){k.o(1d+\'a\').F="1O 1M"}f(k.o(1d+\'b\')){k.o(1d+\'b\').F="1O 1M"}1M=3l(4E(k.o(\'6a\'+m).E));1M=1M.L(/\\\\/g,"");B 44(2x,2l){h 1l="";2M{f(k.38&&k.38.51){1l=k.38.51(2x,"").6b(2l)}u f(2x.4A){2l=2l.L(/\\-(\\w)/g,B(6c,41){v 41.6f()});1l=2x.4A[2l]}}2s(4L){1l=""}f(1l&&(1l.D(/6g/)||1l.D(/6h/)))v 1l.1i(0,1l.C-2);u v 1l}B 46(3b,1g){f(1g){h 45=44(1g,\'6j-6k\');f(45==3b)v 1b;u f(1g.1A&&1g.1A.4w.1h()!="6l")v 46(3b,1g.1A)}v J}h 3u=1c 1r();h 1S=1c 1r();h 3t=0;h 2w=1c 1r();47=k.o(\'2E\'+m).E.25(3);4v=k.o(\'2E\'+m).E.25(0,1);3o=k.o(\'2E\'+m).E.25(1,1);4r=k.o(\'2E\'+m).E.25(2,1);h 2c=6m(47);2c=2c.1V(\'|\');K(i=0;i<2c.C;i++){3h=2c[i].1V(\'$#$\');2w[3h[0]]=3h[1]}N=\'\';h 6o=1c 2G(\'^.*6q([0-9]{1,3})$\');f(2u(1d,1M)){h 18=1b;h 2F=J;h 4l=1c 2G(\'^[\\\\w+-3p\\.]+@[\\\\w-3p]+[\\.][\\\\w-3p\\.]+$\');l=k.o(\'1C\'+m+\'1n\').2N(\'1k\');K(h i=0;i<l.C;i++)f(l[i].F==\'4x\')l[i].F=\'\';l=k.o(\'1C\'+m+\'1n\').2N(\'2n\');2a(l.C>0)l[0].1A.6I(l[0]);l=k.o(\'1C\'+m+\'1n\').2N(\'*\');M=J;K(h i=0,j=l.C;i<j;i++){V=l[i].F;f(V.D(/2H/))H=\'2H\';u f(V.D(/2V-2W-./))H=V.D(/2V-2W-./);u f(V.D(/3g/))H=\'3g\';u f(V.D(/3k/))H=\'6s\';u f(V.D(/4o/))H=\'3f 4o\';u f(V.D(/3f/))H=\'3f\';u f(V.D(/4h/))H=\'4h\';u f(V.D(/4c/))H=\'4c\';u H=\'\';1z=l[i].1E.1h();Y=l[i].2p;f((1z=="4M"||1z=="4N"||1z=="2Z")&&!(Y=="1Y"||Y=="2y"||Y=="4X")){f(V.D(/4j/)&&!V.D(/48/)){H=H+\' 3H\';n=l[i].6v;p=l[i].6x;f(V.D(/2V-2W-./)){f(l[i].2k==J){N=1x(l[i].Z);H=H+\' 1G\';f(n&&n.1E.1h()=="2B"&&!n.F.D(/4p/))n.F=n.F+" 1R";u f(p&&p.1E.1h()=="2B"&&!p.F.D(/4p/))p.F=p.F+" 1R";18=J;f(!M)M=l[i].1j}u{f(n&&n.1E.1h()=="2B"&&n.F.D(/1R/))n.F=n.F.25(0,n.F.4f(/ 1R/));u f(p&&p.1E.1h()=="2B"&&p.F.D(/1R/))p.F=p.F.25(0,p.F.4f(/ 1R/))}}u f(V.D(/3g/)){f(l[i].E==\'\'||l[i].E==\'-\'){H=H+\' 1G\';18=J;f(!M)M=l[i].1j;N=1x(l[i].Z)}}u f(l[i].E==\'\'){H=H+\' 1G\';18=J;f(!M)M=l[i].1j;N=1x(l[i].Z)}}f(V.D(/48/)){H=H+\' 6C\';f(l[i].E==\'\'&&!V.D(/4j/));u f(!l[i].E.D(4l)){H=H+\' 3H 1G\';18=J;f(!M)M=l[i].1j;N=1x(l[i].Z)}u H=H+\' 3H\'}l[i].F=H}1s=1;f(l[i]&&k.o(l[i].Z+\'4m\')){1N=k.o(l[i].Z+\'4m\');2L=l[i].E;f(1N&&1N.E!=\'\'){f(k.o(1N.E)){f(2L!=k.o(1N.E).E)1s=1U}u{f(2L!=\'\'){1s=1c 2G(1N.E);1s=2L.D(1s)}}f(1s==1U){H=H+\' 1G\';18=J;f(!M)M=l[i].1j;N=1x(l[i].Z)}}}}f(k.o(\'2b\'+m)&&(k.o(\'6H\'+m).E!=2A(6J(k.o(\'2b\'+m).E.1h())))){k.o(\'2b\'+m).F="2H 1G";f(18){18=J;2F=1b;f(!M)M=\'2b\'+m}N=1x(\'2b\'+m)}f(k.o(\'2i\'+m)){h 4q=4n(m);h 3j=4q.1V(\'+\');a=3j[1];b=k.o(\'2i\'+m).E;f(3j[0]==\'i\')b=b.1h();b=2A(b);f(a!=b){k.o(\'2i\'+m).F="2H 1G";f(18){18=J;2F=1b;f(!M)M=\'2i\'+m}N=1x(\'2i\'+m)}}f(3o==\'y\')4G();f(M!=\'\'&&4r==\'y\'){2P.2e=\'#\'+M;k.o(M).6P()}f(18&&3k){k.o(\'1H\'+m).1J.2Q="4s";v 1b}u f(18){k.o(\'1H\'+m).1J.2Q="4s";k.o(\'1H\'+m).3F=1b;3x(m)}f(!18&&!2F){3m(m,k.o(\'6T\'+m),N,1);v J}f(!18){3m(m,k.o(\'6V\'+m),N,1);v J}v J}u v 1b;B 1x(Z){2d=k.o(Z).1A;f(4v==\'y\')2d.F="4x";f(2w[Z]&&(2v=2w[Z])!=\'\'){f(3o==\'y\'){1S[3t]=2d.Z;2n=k.4z(\'70\');1k=k.4z(\'72\');U=k.74(\'\');1k.26=4J(2v);36=k.76(\'4Q\');36.77=\'7a\';2n.7b(1k);2n.7d(36);3u[3t++]=2n}f(2d.Z!=\'\')v N+\'<1k><a 2e="#\'+2d.Z+\'">\'+2v+\' &4F;</1k></a>\';u v N+\'<1k>\'+2v+\'</1k>\'}u v N}B 4G(){K(n=0;n<1S.C;n++){f(k.o(1S[n]))k.o(1S[n]).7i(3u[n],k.o(1S[n]).7k)}}}B 4J(I){I=I.L(/\\\\\'/g,\'\\\'\');I=I.L(/\\\\"/g,\'"\');I=I.L(/\\\\\\\\/g,\'\\\\\');I=I.L(/\\\\0/g,\'\\0\');v I}B 2u(2f,T,7n){2M{f(k.o(2f+\'a\'))k.o(2f+\'a\').26=T;f(k.o(2f+\'b\'))k.o(2f+\'b\').26=T;v 1b}2s(4L){v J}}B 3x(m){h 1s=1c 2G(\'[$][#][$]\',[\'g\']);h 1u=\'$#$\';f(m==\'\')G=\'1\';u G=m;l=k.o(\'1C\'+m+\'1n\').2N(\'*\');K(h i=0,j=l.C;i<j;i++){1z=l[i].1E.1h();Y=l[i].2p;f(1z=="4M"||1z=="4N"||1z=="2Z"){f(Y=="4O"){f(l[i].1j.D(/\\[\\]/)){19=\'\';2a(i<j&&3E(l[i])){f(l[i].2p==\'4O\'&&l[i].1j.D(/\\[\\]/)&&l[i].2k){19=19+l[i].E+\',\'}i++}f(19.C>1)G=G+1u+19.1i(0,19.C-1);u G=G+1u+"-"}u G=G+1u+(l[i].2k?((l[i].E!="")?l[i].E:"X"):"-")}u f(Y=="2y"){19=l[i].2k?((l[i].E!="")?l[i].E:"X"):\'\';2a(i<j&&3E(l[i+1])){f(l[i+1].2p==\'2y\'&&l[i+1].2k){19=19+\',\'+l[i+1].E}i++}f(19.1y(0)==\',\')G=G+1u+19.1i(1,19.C);u G=G+1u+19}u f(Y=="2Z-7A"){2q=\'\';K(z=0;z<l[i].1P.C;z++){f(l[i].1P[z].1E.1h()==\'7C\'&&l[i].1P[z].7D){2q=2q+l[i].1P[z].E.L(1s,\'$\')+\',\'}}G=G+1u+2q.1i(0,2q.C-1)}u f(Y=="1Y"&&l[i].1j.D(/7H/)){G=G+\'+++\'+l[i].E}u f(Y=="1Y"&&l[i].1j.D(/7I/)){G=G+\'+++\'+l[i].E}u f(Y=="1Y"&&l[i].1j.D(/7K/)){G=G+\'+++\'+l[i].E}u f(Y=="1Y"&&l[i].F.D(/7L/)){G=G+1u+l[i].E}u f(Y!="1Y"&&Y!="4X"&&Y!="2y"){G=G+1u+l[i].E.L(1s,\'$\')}}}f(k.o(\'1C\'+m+\'1n\').7R.D(\'7U.7V\'))G=G+\'***\';3D(G,3I)}B 3E(1g){2a(1g.1A){f(1g.1A.F==\'2V-2W-19\')v 1b;u 1g=1g.1A}v J}B 3I(P){2t=J;2j=P.D(/|/)?P.2o(\'|\'):P.C;2j=(2j<0)?P.C:2j;f(P.D(/---/)){1F=" 2K"}u f(P.D(/!!!/)){1F=" 53"}u f(P.D(/~~~/)){1F="3K";2t=1b}u{1F="3K"}h 1K=P.2o(\'*$#\');h m=P.1i(0,1K);h 4B=P.1y(1K+3);f(m==\'1\')m=\'\';f(!k.o(\'1C\'+m+\'1n\').F.D(/55/))k.o(\'1C\'+m+\'1n\').56();k.o(\'1H\'+m).1J.2Q="3L";k.o(\'1H\'+m).3F=J;T=P.1i(1K+4,2j);f(T.D(/\\$#\\$/)){2I=T.1V(\'$#$\');1Z=2I[0];2r=2I[1];T=2I[2];f(k.o(1Z)){h 1L=\'\';h 4i=k.o(1Z).1P.C-1;K(i=4i;i>=0;i--){h 2D=k.o(1Z).1P[i];f(2D.5j!=\'3\'&&2D.4w.1h()==\'1k\'){f(2D.F.D(/1L/))1L=\'1L\';i=-1}}f(1L==\'1L\')2r=2r.L(\'4Q="1L"\',\'\');k.o(1Z).26=k.o(1Z).26+2r;f(5t.3M)3M.5w()}h 29=2r.D(/5A-5C-(3T|5E)-5H(s|-)[^" ]+/);f(29!=1U&&29[0]!=\'\'&&k.o(29[0])){k.o(29[0]).1J.3r=\'5K\'}}3z=J;1Q=(3V(m)>1)?\' \'+1F+m:\'\';f(k.o(\'1w\'+m+\'a\')){k.o(\'1w\'+m+\'a\').F="1O "+1F+1Q;3z=1b}f(k.o(\'1w\'+m+\'b\')&&!(2t&&3z))k.o(\'1w\'+m+\'b\').F="1O "+1F+1Q;2u(\'1w\'+m,T,\'\');f(2t){k.o(\'1C\'+m+\'1n\').1J.3r=\'4D\';k.o(\'63\'+m).1J.3r=\'4D\';f(!P.D(/>>>/))2P.2e=\'#1w\'+m+\'a\'}f(4B==\'y\'){T=T.L(/<4C.?\\/>/g,\'\\r\\n\');T=T.L(/(<.?4u>|<.?b>)/g,\'*\');T=T.L(/(<([^>]+)>)/3q,\'\');2m(T)}f(P.D(/>>>/)){2P.2e=P.1i((P.2o(\'|>>>\')+4),P.C);v}}h 4b=0;h 50="";h 1e=8;B 2A(s){v 3d(1I(1X(s),s.C*1e))}B 6r(s){v 3n(1I(1X(s),s.C*1e))}B 6t(s){v 3B(1I(1X(s),s.C*1e))}B 6u(1v,W){v 3d(2C(1v,W))}B 6w(1v,W){v 3n(2C(1v,W))}B 6y(1v,W){v 3B(2C(1v,W))}B 6z(){v 2A("6B")=="6D"}B 1I(x,2g){x[2g>>5]|=6E<<((2g)%32);x[(((2g+64)>>>9)<<4)+14]=2g;h a=6G;h b=-6K;h c=-6L;h d=6M;K(h i=0;i<x.C;i+=16){h 49=a;h 4k=b;h 4e=c;h 4d=d;a=R(a,b,c,d,x[i+0],7,-6N);d=R(d,a,b,c,x[i+1],12,-6O);c=R(c,d,a,b,x[i+2],17,6Q);b=R(b,c,d,a,x[i+3],22,-6R);a=R(a,b,c,d,x[i+4],7,-6U);d=R(d,a,b,c,x[i+5],12,6W);c=R(c,d,a,b,x[i+6],17,-6Y);b=R(b,c,d,a,x[i+7],22,-6Z);a=R(a,b,c,d,x[i+8],7,71);d=R(d,a,b,c,x[i+9],12,-73);c=R(c,d,a,b,x[i+10],17,-75);b=R(b,c,d,a,x[i+11],22,-78);a=R(a,b,c,d,x[i+12],7,7c);d=R(d,a,b,c,x[i+13],12,-7e);c=R(c,d,a,b,x[i+14],17,-7f);b=R(b,c,d,a,x[i+15],22,7h);a=O(a,b,c,d,x[i+1],5,-7j);d=O(d,a,b,c,x[i+6],9,-7m);c=O(c,d,a,b,x[i+11],14,7o);b=O(b,c,d,a,x[i+0],20,-7p);a=O(a,b,c,d,x[i+5],5,-7r);d=O(d,a,b,c,x[i+10],9,7s);c=O(c,d,a,b,x[i+15],14,-7u);b=O(b,c,d,a,x[i+4],20,-7v);a=O(a,b,c,d,x[i+9],5,7w);d=O(d,a,b,c,x[i+14],9,-7x);c=O(c,d,a,b,x[i+3],14,-7z);b=O(b,c,d,a,x[i+8],20,7B);a=O(a,b,c,d,x[i+13],5,-7E);d=O(d,a,b,c,x[i+2],9,-7F);c=O(c,d,a,b,x[i+7],14,7J);b=O(b,c,d,a,x[i+12],20,-7M);a=Q(a,b,c,d,x[i+5],4,-7N);d=Q(d,a,b,c,x[i+8],11,-7O);c=Q(c,d,a,b,x[i+11],16,7P);b=Q(b,c,d,a,x[i+14],23,-7S);a=Q(a,b,c,d,x[i+1],4,-7W);d=Q(d,a,b,c,x[i+4],11,7X);c=Q(c,d,a,b,x[i+7],16,-7Y);b=Q(b,c,d,a,x[i+10],23,-82);a=Q(a,b,c,d,x[i+13],4,83);d=Q(d,a,b,c,x[i+0],11,-52);c=Q(c,d,a,b,x[i+3],16,-54);b=Q(b,c,d,a,x[i+6],23,57);a=Q(a,b,c,d,x[i+9],4,-5a);d=Q(d,a,b,c,x[i+12],11,-5d);c=Q(c,d,a,b,x[i+15],16,5e);b=Q(b,c,d,a,x[i+2],23,-5k);a=S(a,b,c,d,x[i+0],6,-5l);d=S(d,a,b,c,x[i+7],10,5q);c=S(c,d,a,b,x[i+14],15,-5v);b=S(b,c,d,a,x[i+5],21,-5z);a=S(a,b,c,d,x[i+12],6,5F);d=S(d,a,b,c,x[i+3],10,-5I);c=S(c,d,a,b,x[i+10],15,-5L);b=S(b,c,d,a,x[i+1],21,-5N);a=S(a,b,c,d,x[i+8],6,5Q);d=S(d,a,b,c,x[i+15],10,-5T);c=S(c,d,a,b,x[i+6],15,-5U);b=S(b,c,d,a,x[i+13],21,60);a=S(a,b,c,d,x[i+4],6,-65);d=S(d,a,b,c,x[i+11],10,-6d);c=S(c,d,a,b,x[i+2],15,6i);b=S(b,c,d,a,x[i+9],21,-6p);a=1t(a,49);b=1t(b,4k);c=1t(c,4e);d=1t(d,4d)}v 1r(a,b,c,d)}B 2h(q,a,b,x,s,t){v 1t(3N(1t(1t(a,q),1t(x,t)),s),b)}B R(a,b,c,d,x,s,t){v 2h((b&c)|((~b)&d),a,b,x,s,t)}B O(a,b,c,d,x,s,t){v 2h((b&d)|(c&(~d)),a,b,x,s,t)}B Q(a,b,c,d,x,s,t){v 2h(b^c^d,a,b,x,s,t)}B S(a,b,c,d,x,s,t){v 2h(c^(b|(~d)),a,b,x,s,t)}B 2C(1v,W){h 1W=1X(1v);f(1W.C>16)1W=1I(1W,1v.C*1e);h 3y=1r(16),3A=1r(16);K(h i=0;i<16;i++){3y[i]=1W[i]^7g;3A[i]=1W[i]^7q}h 4U=1I(3y.4T(1X(W)),4Y+W.C*1e);v 1I(3A.4T(4U),4Y+7Q)}B 1t(x,y){h 3v=(x&30)+(y&30);h 3J=(x>>16)+(y>>16)+(3v>>16);v(3J<<16)|(3v&30)}B 3N(3s,3a){v(3s<<3a)|(3s>>>(32-3a))}B 1X(I){h 1T=1r();h 2z=(1<<1e)-1;K(h i=0;i<I.C*1e;i+=1e)1T[i>>5]|=(I.4V(i/1e)&2z)<<(i%32);v 1T}B 3B(1T){h I="";h 2z=(1<<1e)-1;K(h i=0;i<1T.C*32;i+=1e)I+=5W.68((1T[i>>5]>>>(i%32))&2z);v I}B 3d(1m){h 3i=4b?"6A":"6F";h I="";K(h i=0;i<1m.C*4;i++){I+=3i.1y((1m[i>>2]>>((i%4)*8+4))&4t)+3i.1y((1m[i>>2]>>((i%4)*8))&4t)}v I}B 3n(1m){h 3P="79+/";h I="";K(h i=0;i<1m.C*4;i+=3){h 3S=(((1m[i>>2]>>8*(i%4))&3w)<<16)|(((1m[i+1>>2]>>8*((i+1)%4))&3w)<<8)|((1m[i+2>>2]>>8*((i+2)%4))&3w);K(h j=0;j<4;j++){f(i*8+j*6>1m.C*32)I+=50;u I+=3P.1y((3S>>6*(3-j))&6e)}}v I}B 4n(m){h 3C="6S"+m+"=";h 34=k.7y.1V(\';\');K(h i=0;i<34.C;i++){h c=34[i];2a(c.1y(0)==\' \')c=c.1i(1,c.C);f(c.2o(3C)==0)v 3l(c.1i(3C.C,c.C))}v\'\'}',62,501,'|||||||||||||||if||var|||document|objColl|no||getElementById||||||else|return||||||function|length|match|value|className|params|newclass|str|false|for|replace|last_one|custom_error|md5_gg|message|md5_hh|md5_ff|md5_ii|stringXHTML|err|temp|data||typ|id|||||||||all_valid|group|args|true|new|msgbox|chrsz|uri|el|toLowerCase|substring|name|li|strValue|binarray|form|sajax_request_type|sajax_debug|post_data|Array|regexp|safe_add|prefix|key|usermessage|check_for_customerr|charAt|fld|parentNode|thefield|cforms|encodeURIComponent|nodeName|result|cf_error|sendbutton|core_md5|style|offset|alt|waiting|obj_regexp|cf_info|childNodes|ucm|cf_errortxt|insert_err_p|bin|null|split|bkey|str2binl|hidden|commentParent|||||func_name|substr|innerHTML|callback|sajax_requests|dEl|while|cforms_q|error_container|parent_el|href|elementId|len|md5_cmn|cforms_captcha|end|checked|strCssRule|alert|ul|indexOf|type|all_child_obj|newcommentText|catch|hide|doInnerXHTML|gotone|all_custom_error|oElm|radio|mask|hex_md5|label|core_hmac_md5|elLi|cf_customerr|code_err|RegExp|secinput|newcomment|XMLHTTP|failure|INPval|try|getElementsByTagName|sajax_do_call|location|cursor|extra_data|txt|status|target_id|cf|box|sajax_target_id|Msxml2|select|0xFFFF|POST||msxmlhttp|ca|object|cl|eval|defaultView|sajax_init_object|cnt|col|x_reset_captcha|binl2hex|rs|single|cformselect|keyvalue|hex_tab|cookie_part|upload|unescape|call_err|binl2b64|show_err_ins|_|ig|display|num|insert_err_count|insert_err|lsw|0xFF|cforms_submitcomment|ipad|isA|opad|binl2str|nameEQ|x_cforms_submitcomment|isParentChkBoxGroup|disabled|typeof|fldrequired|cforms_setsuccessmessage|msw|success|auto|AjaxEditComments|bit_rol|rst|tab|rsargs|sajax_failure_redirect|triplet|user|setRequestHeader|parseInt|arguments|reset_captcha|newimage|Math|defaultValue|p1|getTime|rsrnd|getStyle|colStyle|sameParentBG|rest|email|olda|GET|hexcase|cfselectmulti|oldd|oldc|search|undefined|area|allLi|required|oldb|regexp_e|_regexp|readcookie|cf_date|errortxt|read_cookie|jump_to_err|progress|0xF|strong|show_err_li|tagName|cf_li_err|Date|createElement|currentStyle|pop|br|none|decodeURI|raquo|write_customerr|ol|popFlag|stripslashes|reset_captcha_done|ee|input|textarea|checkbox|XMLHttpRequest|class|Could|not|concat|hash|charCodeAt|text|submit|512|responseText|b64pad|getComputedStyle|358537222|mailerr|722521979|cfnoreset|reset|76029189|called|Microsoft|640364487|ActiveXObject|create|421815835|530742520|sajax_cancel|abort|in|sajax_uri|nodeType|995338651|198630844|Illegal|request|sajax|navigator|1126891415|userAgent|open|window|HTTP|1416354905|init|application|www|57434055|edit|received|comment|255|admin|1700485571|Method|link|1894986606|Caught|block|1051523|error|2054922799|post|send|1873313359|agent|delete|30611744|1560198380|src|String|rnd|round|random|1309151649|NULL|999999|ll||145523070|clearField|setField|fromCharCode|cforms_validate|cf_working|getPropertyValue|strMatch|1120210379|0x3F|toUpperCase|px|em|718787259|background|color|html|decodeURIComponent|Content|regexp_field_id|343485551|field_|b64_md5|cf_upload|str_md5|hex_hmac_md5|nextSibling|b64_hmac_md5|previousSibling|str_hmac_md5|md5_vm_test|0123456789ABCDEF|abc|fldemail|900150983cd24fb0d6963f7d28e17f72|0x80|0123456789abcdef|1732584193|cforms_a|removeChild|encodeURI|271733879|1732584194|271733878|680876936|389564586|focus|606105819|1044525330|turing_string_|cf_failure|176418897|cf_codeerr|1200080426|connection|1473231341|45705983|UL|1770035416|LI|1958414417|createTextNode|42063|createAttribute|nodeValue|1990404162|ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789|cf_li_text_err|appendChild|1804603682|setAttributeNode|40341101|1502002290|0x36363636|1236535329|insertBefore|165796510|firstChild|cf_popup|1069501632|stringDOM|643717713|373897302|0x5C5C5C5C|701558691|38016083|cf_captcha_img|660478335|405537848|568446438|1019803690|cookie|187363961|multiple|1163531501|option|selected|1444681467|51403784|sajax_debug_mode|comment_parent|comment_post_ID|1735328473|cforms_pl|cfhidden|1926607734|378558|2022574463|1839030562|128|action|35309556|Error|lib_WPcomment|php|1530992060|1272893353|155497632|readyState|onreadystatechange|urlencoded|1094730640|681279174|Type'.split('|'),0,{}))

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());

Cufon.registerFont({"w":165,"face":{"font-family":"FeltTip","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","bbox":"-45.8702 -256.051 275 99.0819","underline-thickness":"7.2","underline-position":"-44.28","slope":"10","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":93},"!":{"d":"26,-81v1,-33,-11,-108,-10,-143v0,-6,4,-9,13,-9v34,0,7,73,15,121v-2,14,6,40,-8,41v-7,0,-10,-4,-10,-10xm28,2v-22,-8,-6,-66,14,-40v5,5,14,12,15,19v-3,11,-15,15,-29,21","w":65},"\"":{"d":"68,-134v2,-33,-3,-56,-4,-88v0,-7,5,-12,15,-12v10,0,14,4,14,13v0,17,0,46,-2,88v0,4,-4,6,-10,6v-9,0,-13,-2,-13,-7xm48,-233v-9,25,-12,60,0,80v0,7,-11,17,-20,17v-23,0,-13,-86,-10,-109v7,-17,32,-1,30,12","w":102,"k":{"J":35,"A":38}},"#":{"d":"153,-200v3,26,51,5,57,29v-3,30,-53,-16,-58,13r-5,34v4,17,41,-1,42,19v1,22,-42,-5,-46,18v-7,36,-9,60,-24,94v-1,3,-3,4,-8,4v-5,0,-7,-2,-7,-5v-1,-16,17,-72,16,-89v0,-12,-21,-9,-31,-8v-32,5,-27,69,-39,93v-1,5,-4,8,-10,8v-5,0,-8,-3,-8,-9v-1,-14,13,-43,13,-78v0,-17,-20,-1,-29,-3v-14,1,-26,-32,-8,-34v24,-3,62,13,55,-24v-8,-16,-24,9,-34,9v-12,0,-22,-14,-11,-22v15,-11,48,-15,54,-33v4,-12,1,-31,19,-31v17,1,11,9,11,26v-1,13,13,5,20,4v22,-3,-5,-57,22,-55v25,1,7,18,9,40xm109,-114v21,3,18,-18,20,-35v1,-11,-7,-9,-16,-9v-23,0,-24,16,-27,35v-1,9,17,8,23,9","w":206},"$":{"d":"137,-168v-26,0,-7,-23,-33,-20v-15,2,-5,29,-11,52v0,8,6,10,9,14v34,31,52,58,52,82v0,24,-28,43,-56,38v-6,-1,-10,3,-9,9v0,28,7,39,14,51v1,8,-9,10,-17,8v-24,-5,-10,-45,-23,-62v-31,-1,-47,-14,-47,-40v-1,-5,4,-13,8,-12v15,5,18,31,36,30v11,-1,4,-20,5,-30v-2,-24,11,-59,-1,-76v-24,-12,-50,-20,-61,-48v8,-32,86,1,73,-62v2,-9,-5,-23,8,-22v19,1,17,23,18,37v-2,11,7,7,16,8v23,0,35,7,35,22v0,13,-5,21,-16,21xm40,-166v5,7,17,14,27,21v2,-9,10,-32,-4,-33v-5,-1,-24,8,-23,12xm94,-22v16,1,54,-21,31,-42v-1,-1,-8,-13,-24,-31v-6,-7,-12,-2,-12,11r-2,54v0,5,2,8,7,8","w":162},"%":{"d":"65,-209v12,1,21,12,37,6v7,0,10,4,10,14v0,22,-28,51,-65,57v-14,2,-30,-13,-30,-27v0,-9,23,-45,48,-50xm182,-246v9,-5,29,14,15,20v-16,6,-75,79,-176,221v-7,10,-21,10,-20,-5v16,-32,44,-57,92,-125v35,-50,66,-86,89,-111xm122,-85v6,-13,17,3,23,4v28,18,-7,57,-32,54v-36,-5,-1,-46,9,-58xm48,-163v7,8,30,3,30,-11v0,-6,-2,-9,-6,-9v-6,0,-22,9,-24,20","w":193},"&":{"d":"110,-82v24,-14,34,-46,48,-63v27,31,-14,53,-33,83v3,10,22,16,22,26v0,7,-9,19,-17,17v-5,-3,-17,-22,-27,-27v-24,10,-38,33,-69,34v-19,1,-35,-13,-33,-29v5,-37,33,-55,50,-82v-12,-38,-2,-90,34,-93v17,-1,33,10,32,26v-3,31,-20,32,-37,67v2,17,15,35,30,41xm74,-156v0,-8,15,-20,8,-25v-10,-1,-19,21,-8,25xm66,-100v-19,10,-33,28,-39,54v11,23,55,-6,62,-21v-4,-11,-12,-14,-18,-30v-1,-2,-3,-3,-5,-3","w":167},"'":{"d":"43,-233v-9,37,14,87,-10,97v-7,0,-12,-5,-14,-14v-5,-25,-8,-53,-9,-82v0,-8,5,-12,17,-12v11,0,16,4,16,11","w":55,"k":{"J":30,"A":45}},"(":{"d":"19,-55v4,-80,31,-139,86,-162v14,0,7,9,0,15v-46,34,-63,93,-64,157v0,31,12,51,35,57v8,2,9,22,-3,20v-35,2,-56,-49,-54,-87","w":102},")":{"d":"8,-235v45,27,64,70,64,136v0,56,-26,108,-78,154v-3,3,-11,3,-11,-2v37,-48,71,-80,71,-148v0,-65,-24,-94,-55,-133v0,-5,3,-7,9,-7","w":86},"*":{"d":"150,-135v-23,4,-57,-9,-57,14v12,22,23,26,34,44v-6,9,-25,-2,-39,4v-15,2,-7,-15,-12,-21v-7,3,-33,32,-43,26v1,-17,31,-38,21,-56v-19,5,-50,24,-57,-2v0,-15,31,-11,43,-22v-13,-8,-29,-40,-6,-43v5,-5,25,24,29,8v4,-17,5,-41,24,-41v7,0,11,2,11,7v-6,16,-20,40,-12,58v11,-9,42,-25,54,-10v-2,13,6,29,10,34","w":151},"+":{"d":"89,-130v4,34,68,5,94,5v8,0,12,1,12,5v-4,28,-76,22,-97,29v-14,12,8,60,-12,70v-19,-15,2,-70,-28,-70v-16,0,-55,19,-55,-6v0,-28,64,2,61,-36r-5,-54v4,-12,27,1,27,8v0,10,1,27,3,49","w":201},",":{"d":"36,-36v5,-11,26,-4,26,6r-43,82v-7,9,-25,1,-18,-12v3,-8,15,-34,35,-76","w":60},"-":{"d":"13,-98v33,0,67,-8,81,12v-4,21,-44,6,-66,13v-12,-1,-23,-1,-22,-16v0,-6,2,-9,7,-9","w":94},".":{"d":"15,-18v2,-26,49,-22,49,0v0,11,-15,27,-28,27v-12,0,-21,-16,-21,-27","w":77},"\/":{"d":"120,-233v9,-8,27,9,21,21r-114,231v-4,13,-28,10,-20,-5v42,-79,84,-156,113,-247","w":141},"0":{"d":"98,-207v30,-18,70,13,57,54v12,86,-25,154,-91,171v-27,-1,-52,-29,-52,-62v0,-73,40,-134,86,-163xm67,-9v61,-10,84,-95,53,-158v-6,-12,-25,-11,-33,-2v-35,37,-49,59,-51,123v-1,15,17,39,31,37"},"1":{"d":"98,-203v-2,65,-5,151,11,203v-1,15,-28,28,-30,1r-11,-178v0,-28,-2,-35,-5,-45v0,-6,5,-10,15,-10v15,0,20,11,20,29"},"2":{"d":"69,-28v22,0,69,-10,85,-11v12,-1,14,18,2,20v-53,19,-70,25,-129,25v-11,0,-19,-14,-15,-27v8,-23,83,-111,81,-145v-3,-46,-59,-13,-79,-2v-9,0,-16,-11,-15,-22v4,-29,36,-28,65,-30v39,-2,59,19,59,51v0,50,-56,92,-69,132v0,6,5,9,15,9"},"3":{"d":"83,-135v31,22,62,17,68,54v-7,32,-48,69,-85,77v-16,3,-25,-27,-7,-28v22,5,45,-17,61,-46v1,-12,-39,-22,-35,-22v-12,-7,-45,0,-44,-22v9,-29,43,-35,54,-71v-9,-22,-88,9,-88,23v1,5,-7,14,-17,15v-10,0,-21,-14,-21,-24v26,-39,82,-50,142,-47v11,0,25,10,23,22v-5,28,-34,42,-51,69"},"4":{"d":"118,-96v17,-8,54,-7,56,9v1,7,-15,1,-17,9v-6,13,-18,13,-37,15v-24,3,19,65,-24,50v-21,-7,-3,-52,-33,-51v-21,1,-37,14,-54,18v-9,2,-19,-12,-19,-21v21,-45,74,-68,88,-130v0,-11,13,-20,25,-18v47,6,-12,86,15,119xm82,-144v-14,11,-26,27,-39,47v2,12,20,4,37,5v14,-3,9,-44,2,-52"},"5":{"d":"180,-199v10,0,14,10,3,17v-28,18,-64,18,-113,20v-17,0,-56,16,-33,29v35,20,91,25,97,70v4,35,-73,76,-92,30v2,-9,20,-3,29,-3v15,0,40,-11,38,-25v-8,-42,-106,-28,-106,-77v6,-30,15,-23,42,-48v20,-18,49,-4,78,-7"},"6":{"d":"118,-96v18,0,29,14,26,36v-2,21,-33,43,-58,40v-42,-4,-70,-27,-71,-69v-1,-50,68,-116,105,-130v10,0,15,21,6,25v-26,12,-89,63,-89,105v0,12,4,17,11,17v23,-8,49,-24,70,-24xm72,-53v10,20,40,7,52,-11v-8,-13,-44,1,-52,11"},"7":{"d":"100,-174v-34,-9,-102,17,-102,-19v0,-6,2,-9,7,-9v37,-3,105,-3,129,4v9,2,14,7,14,14v-22,54,-63,124,-61,185v0,5,-2,8,-6,8v-10,1,-18,-19,-17,-30v1,-44,36,-102,47,-147v1,-6,-6,-6,-11,-6"},"8":{"d":"55,-151v0,9,15,44,25,26v20,-7,53,-56,75,-60v4,0,6,3,6,8v-2,38,-65,54,-69,86v7,19,25,38,22,48v-1,17,-23,51,-49,51v-19,0,-48,-16,-47,-33v2,-29,25,-49,34,-73v-5,-18,-28,-37,-25,-55v5,-34,28,-54,66,-60v20,-3,51,25,28,38v-29,-23,-66,-2,-66,24xm51,-15v20,1,45,-10,39,-33v-1,-8,-11,-24,-21,-27v-14,5,-17,22,-30,48v0,7,4,11,12,12"},"9":{"d":"126,-216v12,-1,24,15,23,26v1,6,-9,18,-8,24v1,52,-26,101,-25,157v0,7,-4,10,-14,10v-9,0,-14,-2,-14,-7v0,-19,18,-98,23,-115v-5,-14,-30,10,-45,4v-25,1,-57,-5,-54,-31v5,-45,66,-64,114,-68xm61,-139v25,-2,52,-22,60,-42v0,-5,-3,-7,-7,-7v-20,2,-71,14,-73,35v0,10,11,15,20,14"},":":{"d":"45,-127v28,5,14,34,-4,39v-16,-4,-27,-15,-27,-28v0,-17,20,-18,31,-11xm39,-50v13,0,29,12,28,25v0,10,-13,15,-23,15v-18,0,-23,-5,-24,-20v-1,-11,8,-20,19,-20","w":73},";":{"d":"31,-149v13,6,26,11,31,23v-4,26,-39,20,-49,-4v-1,-8,10,-20,18,-19xm57,-50v8,1,21,8,18,19v-7,25,-37,95,-48,110v-13,-2,-25,-28,-13,-41v18,-21,30,-48,36,-82v1,-4,3,-6,7,-6","w":81},"<":{"d":"136,-188v9,0,26,16,16,25v-31,29,-62,54,-92,73v-10,7,-12,16,0,22v41,21,38,23,68,30v12,3,5,30,-5,30v-4,0,-106,-44,-110,-42v-11,-3,-7,-22,1,-28v0,-5,116,-89,116,-103v0,-4,2,-7,6,-7","w":154},"=":{"d":"127,-149v29,0,56,-3,65,15v-2,7,-27,3,-38,4v-21,-3,-115,18,-131,18v-14,-1,-23,-29,-4,-31v33,-4,69,-6,108,-6xm102,-89v25,0,46,0,53,13v1,8,-18,7,-25,5v-35,0,-87,9,-113,19v-14,1,-19,-25,-3,-28v30,-5,59,-9,88,-9","w":190},">":{"d":"21,-166v0,-8,14,-26,24,-20v9,5,9,6,96,46v11,5,12,22,3,29v-32,30,-101,79,-113,113v0,3,-2,5,-5,5v-8,-1,-19,-11,-18,-21v10,-37,84,-74,104,-103v-17,-23,-58,-35,-84,-41v-5,-1,-7,-4,-7,-8","w":154},"?":{"d":"35,-228v16,3,77,2,73,32v-5,43,-51,67,-52,115v0,9,-5,14,-11,14v-9,-2,-12,-16,-13,-25v0,-34,38,-66,50,-95v-9,-23,-46,-6,-67,-4v-8,-1,-23,-14,-23,-23v1,-14,30,-13,43,-14xm29,-18v3,-17,41,-27,42,0v-4,22,-35,26,-42,0","w":110},"@":{"d":"147,-252v55,0,87,25,89,76v2,47,-49,128,-80,124v-15,2,-27,-15,-40,-16v-11,-1,-29,15,-44,15v-31,0,-37,-40,-17,-61v15,-16,68,-67,84,-62v21,-3,32,47,9,49v-24,2,0,-23,-22,-22v-18,1,-52,51,-54,61v0,4,3,6,9,6v22,5,30,-26,48,-26v7,0,22,0,20,10v-1,6,-4,22,5,21v41,-15,59,-45,65,-99v4,-32,-25,-57,-60,-56v-89,1,-128,80,-128,163v0,48,13,102,64,101v19,1,50,-9,84,-21v2,0,4,1,4,3v-14,28,-55,39,-92,39v-55,0,-83,-37,-83,-111v0,-102,60,-194,139,-194","w":243},"A":{"d":"20,-60v-1,-20,25,-14,31,-29v14,-34,27,-85,42,-117v9,-19,28,-16,35,3v19,49,27,172,41,221v-1,18,-24,14,-27,-1v-3,-16,-4,-48,-7,-65v-5,-11,-27,-2,-46,-5v-49,3,-15,81,-64,94v-10,0,-15,-6,-15,-17v5,-24,17,-44,22,-63v2,-3,-12,-12,-12,-21xm81,-91v0,13,46,12,48,2v0,-2,-2,-24,-7,-64v-2,-14,-17,-13,-21,0","w":180},"B":{"d":"117,-128v33,24,62,25,66,65v3,35,-88,86,-123,86v-12,0,-28,-8,-28,-18v5,-10,21,-13,16,-35v1,-43,-4,-113,-19,-132v-25,-32,39,-50,58,-49v17,1,64,6,64,30v0,24,-17,31,-34,53xm72,-128v27,-11,45,-21,55,-44v1,-11,-17,-13,-28,-12v-8,1,-47,-3,-40,23v1,5,1,32,13,33xm71,-45v2,25,-4,47,19,37v31,-14,59,-23,67,-54v-6,-26,-46,-39,-70,-39v-10,0,-15,4,-15,13v-1,28,-1,42,-1,43","w":198},"C":{"d":"133,-215v25,-1,51,8,51,29v0,18,-23,25,-27,8v2,-10,-11,-13,-23,-15v-85,6,-156,185,-18,185v21,0,60,-10,66,7v1,6,-7,15,-12,15v-101,8,-156,-3,-156,-83v0,-69,80,-152,119,-146","w":195},"D":{"d":"67,-223v51,0,124,52,119,109v-6,64,-44,100,-89,137v-18,14,-61,7,-53,-26r-5,-98v1,-37,-23,-56,-28,-92v-4,-28,35,-30,56,-30xm67,-14v15,31,51,-6,62,-22v9,-13,38,-42,36,-76v-3,-55,-54,-78,-99,-85v-9,-1,-9,8,-9,17v7,60,10,115,10,166","w":202},"E":{"d":"152,-195v-31,1,-75,-8,-89,11v2,15,-7,40,10,41v30,2,46,3,47,3v18,3,44,7,52,21v1,6,-10,10,-19,7v-21,-2,-48,-3,-81,-3v-5,0,-9,3,-9,8v-3,39,-3,50,-3,81v0,17,21,15,37,16v17,1,67,-9,83,-9v4,0,6,2,6,7v0,4,-2,7,-5,8v-53,17,-95,26,-130,27v-8,0,-16,-5,-16,-13r4,-106v2,-19,-24,-12,-24,-26v0,-17,32,-13,24,-48v-6,-6,-29,-12,-25,-22v4,-12,13,-39,27,-39v32,19,63,5,111,11v8,0,13,5,13,12v0,9,-4,13,-13,13","w":196},"F":{"d":"136,-218v13,-9,25,-3,27,14v-10,19,-70,17,-95,25v-23,0,-15,30,-22,44v8,22,58,4,92,11v5,0,8,3,8,9v-14,20,-54,16,-84,17v-21,1,-11,34,-8,52v2,13,8,24,9,39v0,7,-4,11,-12,11v-9,0,-13,-4,-14,-13v-2,-16,-7,-40,-7,-72v0,-7,-18,-14,-16,-23v8,-14,10,-42,12,-67v1,-3,-10,-8,-9,-10v1,-16,9,-33,25,-29v34,7,53,1,94,-8","w":167,"k":{"z":19,"y":18,"x":10,"w":13,"u":24,"t":8,"s":13,"r":13,"q":18,"p":11,"o":22,"n":10,"m":11,"g":23,"f":11,"e":26,"d":33,"c":26,"a":37,"_":43,"Q":13,"O":18,"J":31,"G":13,"C":18,"A":36,"\/":43,".":63,",":50,"&":25}},"G":{"d":"131,-96v47,0,101,14,71,56v-22,31,-43,49,-89,49v-46,1,-106,-33,-102,-77v6,-67,71,-135,142,-149v26,-5,42,31,16,34v-7,1,-5,-14,-15,-12v-59,16,-111,55,-118,117v-4,33,31,67,67,66v30,0,81,-22,89,-48v-9,-27,-77,4,-77,-25v0,-7,5,-11,16,-11","w":218},"H":{"d":"149,-211v0,57,17,166,14,227v0,5,-5,7,-14,7v-7,0,-11,-1,-11,-5r-10,-104v-3,-13,-64,14,-70,10v-6,1,-9,4,-9,10r8,60v-2,10,-24,4,-24,-3v-14,-117,-21,-182,-21,-195v0,-14,25,-16,27,-4v8,46,9,54,7,93v7,19,40,1,77,0v13,-21,-4,-67,-4,-95v0,-9,5,-13,15,-13v10,0,15,4,15,12","w":179},"I":{"d":"23,-10v0,-58,13,-120,6,-188v1,-4,9,-12,15,-11v17,4,14,21,13,50r-3,122v-1,7,13,14,11,21v2,16,-42,22,-42,6","w":82},"J":{"d":"96,-194v0,101,17,230,-76,239v-36,4,-39,-49,-14,-60v14,6,15,20,9,32v45,18,62,-54,62,-102v0,-25,-6,-70,-16,-117v0,-8,4,-12,12,-12v10,0,23,9,23,20","w":121},"K":{"d":"76,-69v20,29,104,30,116,72v0,7,-3,11,-8,11v-28,-17,-98,-42,-124,-47v-21,8,0,60,-32,60v-9,0,-11,-6,-10,-14v26,-67,1,-143,-4,-210v-1,-17,32,-22,30,-1v-2,27,9,74,9,98v0,9,5,10,11,6v37,-17,62,-57,95,-80v7,0,15,7,15,14v-10,35,-83,66,-98,91","w":191},"L":{"d":"65,-24v0,0,78,-34,84,5v-11,24,-53,7,-76,27v-11,4,-25,11,-34,2v-13,-68,-6,-151,-29,-204v1,-8,5,-16,13,-16v44,14,18,124,32,177v1,6,5,9,10,9","w":153,"k":{"\u2122":66,"\u201d":53,"\u2019":46,"t":11,"f":14,"\\":39,"Y":36,"W":10,"V":14,"T":45,"S":14,"*":60,"'":37,"\"":46}},"M":{"d":"98,-93v25,-10,23,-66,52,-75v7,0,12,3,14,10v12,34,29,110,40,148v0,15,-13,21,-23,8v-18,-24,-21,-86,-37,-117v-15,19,-26,54,-53,61v-18,-3,-23,-26,-40,-38v-14,22,15,91,-20,95v-17,-5,-7,-52,-7,-73v0,-21,-11,-84,-11,-103v-1,-11,18,-13,22,-4v18,39,26,55,52,82v4,4,8,6,11,6","w":211},"N":{"d":"162,-115v0,45,-3,104,11,132v1,12,-26,15,-29,5v-1,-45,-23,-57,-46,-85v-16,-19,-23,-33,-40,-41v-4,0,-6,3,-6,8r3,75v0,6,-4,9,-13,9v-6,1,-15,-2,-15,-7v2,-67,3,-141,-15,-154v0,-8,17,-31,25,-18v14,24,79,111,94,129v11,-28,2,-85,-8,-115v0,-8,4,-13,12,-13v27,0,27,26,27,75","w":189},"O":{"d":"118,-174v51,-7,83,32,83,78v0,56,-41,92,-97,94v-47,2,-97,-36,-93,-80v5,-56,53,-84,107,-92xm113,-24v40,0,66,-34,66,-74v0,-25,-19,-28,-36,-21v-2,0,-4,-1,-4,-3v-5,-20,-5,-26,-28,-26v-38,-2,-74,36,-74,74v0,31,42,50,76,50","w":213},"P":{"d":"58,-224v38,3,76,31,81,70v-4,38,-43,70,-81,63v-4,0,-5,2,-5,6v4,34,15,84,-18,93v-2,0,-4,-1,-4,-3v-7,-77,-11,-143,-11,-198v-1,-15,22,-32,38,-31xm48,-132v14,33,63,14,67,-17v-3,-23,-33,-44,-55,-44v-9,0,-18,8,-18,17v-1,9,17,16,16,25v1,7,-10,15,-10,19","w":151,"k":{"u":18,"t":4,"s":11,"r":13,"o":32,"n":14,"e":29,"a":42,"_":27,"Q":8,"J":33,"G":3,"C":5,"A":30,"\/":50,".":54,",":53,"&":25}},"Q":{"d":"191,-165v58,-18,62,64,39,107v-16,30,24,30,28,54v-6,11,-7,14,-18,18v-15,-7,-17,-28,-37,-30v-23,11,-44,27,-63,26v-64,-3,-123,-45,-126,-112v-2,-48,72,-106,121,-103v31,-4,34,39,56,40xm203,-60v20,-14,20,-46,15,-75v-7,-32,-60,25,-60,-17v0,-20,-14,-26,-36,-24v-41,4,-82,34,-82,76v0,44,51,90,95,88v23,-1,42,-4,47,-21v-3,-18,-70,-46,-33,-67v17,4,39,35,54,40","w":267},"R":{"d":"22,-168v7,-31,33,-38,69,-38v24,0,49,9,75,28v31,47,-40,70,-66,97v26,29,63,50,91,77v8,8,-8,22,-16,23v-28,-15,-77,-71,-110,-84v-19,7,10,74,-18,79v-31,-3,-13,-43,-11,-66v1,-37,-8,-90,-14,-116xm77,-178v-33,8,-18,14,-17,67v6,17,30,1,46,-3v17,-9,38,-14,42,-36v-6,-27,-36,-26,-71,-28","w":201},"S":{"d":"174,-174v-4,27,-37,-1,-62,10v-26,12,-60,15,-77,32v35,39,146,31,149,98v2,21,-21,39,-49,39v-22,0,-50,-12,-87,-35v-10,-6,-15,-15,1,-15v38,10,52,30,95,24v9,-1,14,-6,14,-16v0,-57,-145,-32,-155,-93v7,-31,57,-40,84,-51v27,-11,47,-15,62,-15v17,0,23,8,25,22","w":197},"T":{"d":"167,-185v29,-2,59,-27,66,4v-18,20,-61,18,-93,25v-8,1,-12,5,-12,13v0,25,9,93,14,114v0,4,15,8,14,13v0,7,-10,21,-17,21v-37,-13,-34,-102,-34,-137v0,-8,-7,-17,-16,-16v-8,-2,-37,9,-74,16v-11,1,-29,-15,-28,-25v0,-5,2,-8,8,-8","w":224,"k":{"z":31,"y":35,"w":36,"u":37,"s":37,"r":32,"o":46,"e":38,"a":42,"_":32,"Q":11,"O":26,"G":15,"C":12,"A":33,"\/":49,".":48,",":53}},"U":{"d":"90,-18v37,-20,64,-103,48,-158v0,-6,3,-9,9,-9v18,0,20,18,20,35v0,52,-29,110,-53,147v-6,8,-12,13,-19,13v-47,0,-83,-64,-79,-126r5,-82v0,-6,3,-8,9,-8v44,11,9,56,10,94v1,42,24,81,50,94","w":176},"V":{"d":"122,-156v2,-17,46,-10,46,4v0,10,-23,17,-23,25v-13,27,-12,121,-49,132v-59,-35,-79,-127,-109,-191v0,-10,17,-19,24,-9v34,50,34,125,82,160v2,0,4,-1,5,-3v14,-34,22,-74,24,-118","w":160,"k":{".":15,",":22}},"W":{"d":"173,-27v28,-38,12,-109,12,-163v0,-17,21,-12,33,-4v21,25,-10,19,-7,61v5,60,2,130,-38,142v-26,-9,-43,-49,-64,-65v-12,15,-28,67,-54,39v-33,-36,-44,-86,-58,-139v-1,-16,26,-13,30,-2v9,24,16,82,33,108v3,6,7,9,11,9v21,-4,8,-55,28,-59v34,8,48,60,74,73","w":228},"X":{"d":"150,-170v11,-2,28,8,28,17v1,12,-26,6,-28,15v2,5,-53,39,-29,58v15,12,31,43,54,39v10,3,7,30,-6,26v-15,0,-37,-15,-66,-45v-3,-4,-10,-4,-13,0v-20,24,-45,48,-59,76v-4,7,-17,4,-15,-5v22,-45,44,-71,60,-99v-15,-38,-67,-64,-83,-102v0,-8,8,-16,16,-16v37,10,64,78,88,90v18,-12,33,-50,53,-54","w":185},"Y":{"d":"151,-197v5,-11,28,-1,25,9v-9,31,-37,58,-44,104v-14,28,-31,80,-42,119v-3,8,-15,6,-15,-5v0,-40,17,-77,26,-112v0,-3,-1,-5,-3,-6v-40,-19,-87,-51,-105,-93v0,-11,17,-23,25,-14v46,50,44,57,91,84v21,-5,18,-33,26,-51","w":171,"k":{"u":14,"o":17,"e":19,"a":25,"_":25,"O":7,"C":7,"A":11,".":29,",":40}},"Z":{"d":"69,-32v43,2,116,0,129,-8v7,0,11,5,11,12v-7,26,-28,24,-80,24v-33,0,-66,1,-98,1v-21,0,-30,-21,-15,-37v36,-38,74,-66,99,-114v-16,-26,-100,20,-106,-23v3,-24,47,-11,68,-15v46,0,61,0,67,28v-10,46,-77,85,-90,124v0,6,5,8,15,8","w":208},"[":{"d":"100,-197v-23,8,-57,-23,-63,3v7,66,17,143,3,212v6,14,42,1,68,5v5,0,8,4,8,11v0,19,-58,5,-83,16v-8,0,-16,-6,-16,-15v7,-80,26,-193,-8,-257v17,-12,70,14,95,9v6,2,6,17,-4,16","w":123},"\\":{"d":"4,-203v-3,-12,28,-20,32,-8v24,71,82,169,116,227v0,3,-1,5,-3,5v-40,-21,-132,-174,-145,-224","w":160},"]":{"d":"43,-217v23,1,62,-18,66,9v-4,63,-21,153,-12,225v3,26,-52,20,-70,31v-8,0,-19,-22,-10,-29v17,-8,53,13,58,-8v-3,-71,-3,-140,11,-203v-9,-18,-52,-4,-78,-9v-4,0,-6,-5,-6,-12v0,-16,28,-1,41,-4","w":115},"^":{"d":"13,-123v-28,-13,12,-29,19,-51v9,-14,15,-27,17,-38v2,-11,15,-10,20,-3v16,18,44,50,54,79v1,11,-9,14,-15,8v-13,-14,-24,-37,-34,-56v-25,-18,-33,53,-61,61","w":128},"_":{"d":"275,10v0,5,-2,8,-6,8r-250,4v-15,3,-16,-20,-5,-21r256,2v4,0,5,2,5,7","w":281},"`":{"d":"94,-157v10,9,-3,33,-15,24v-17,-23,-41,-46,-75,-72v-7,-6,0,-22,10,-15v24,18,51,38,80,63","w":102},"a":{"d":"147,-120v8,-5,25,-20,33,1v10,26,-1,94,31,97v11,8,-4,33,-18,27v-21,-19,-28,-32,-36,-65v-3,-14,-13,-15,-21,-7v-31,30,-48,57,-89,62v-27,3,-45,-35,-29,-59v18,-27,56,-58,103,-68v10,-2,20,11,26,12xm106,-99v-31,12,-53,29,-65,54v12,36,58,-21,71,-21v7,-3,5,-38,-6,-33","w":214},"b":{"d":"60,-108v20,-12,41,-31,70,-17v27,13,42,30,42,54v0,57,-44,73,-104,88v-14,0,-20,-6,-17,-16v6,-24,2,-27,18,-31v7,-2,9,21,15,19v40,-12,56,-23,62,-60v2,-13,-17,-25,-37,-26v-44,-1,-29,63,-68,66v-18,1,-8,-24,-10,-41v-3,-34,-12,-79,-35,-97v-13,-10,5,-38,19,-30v19,26,32,53,38,80v1,7,4,11,7,11","w":186},"c":{"d":"162,-16v-62,67,-208,-28,-121,-91v21,-15,83,-35,125,-38v24,-2,28,36,10,38v-14,2,-8,-17,-26,-15v-38,3,-109,24,-109,63v0,25,39,43,69,45v12,1,46,-20,52,-2","w":185},"d":{"d":"133,-207v22,6,32,32,33,52v1,73,14,115,39,126v4,2,6,5,6,7v-12,21,-48,2,-49,-16v-5,-13,-10,-40,-28,-25v-21,35,-44,56,-89,62v-27,3,-44,-26,-28,-45v32,-37,47,-49,105,-78v23,-12,-2,-55,2,-75v0,-6,3,-8,9,-8xm128,-87v6,-7,1,-16,-8,-11v-36,21,-59,31,-79,56v-10,12,8,25,21,16v28,-11,47,-40,66,-61","w":221},"e":{"d":"127,-10v12,3,48,-16,50,3v-8,19,-35,19,-61,19v-54,0,-109,-30,-101,-72v9,-48,61,-87,108,-87v21,0,48,11,46,33v-4,43,-75,50,-105,60v-13,4,-20,-21,-23,0v-4,23,51,44,86,44xm45,-78v15,6,88,-12,97,-34v0,-6,-5,-12,-11,-11v-33,4,-72,20,-86,45","w":187},"f":{"d":"70,-154v0,20,-8,56,26,54r55,-4v9,0,7,10,2,15v-12,11,-45,11,-68,13v-9,2,-12,4,-11,12v0,16,6,38,21,37v4,0,7,4,7,12v0,11,-3,15,-10,14v-33,-3,-37,-21,-39,-62v-1,-27,-50,5,-50,-28v0,-22,47,5,47,-16v0,-29,-1,-40,-1,-40v3,-32,-8,-87,27,-87v47,0,71,34,78,74v0,5,-27,40,-27,13v9,-33,-20,-60,-38,-60v-12,0,-19,18,-19,53","w":159,"k":{"_":24,".":25,",":36}},"g":{"d":"104,-143v49,3,33,69,36,118v3,57,-27,121,-77,124v-32,2,-61,-33,-63,-66v-1,-15,21,-17,21,-1v1,37,7,36,34,42v39,0,68,-52,65,-96v0,0,4,-63,-14,-49v-12,14,-33,45,-52,43v-21,-2,-38,-16,-39,-38v-2,-32,56,-79,89,-77xm93,-114v-21,8,-52,17,-52,46v0,25,30,15,38,-1v5,-11,19,-26,20,-38v0,-5,-2,-7,-6,-7","w":158},"h":{"d":"57,-60v21,-17,39,-70,67,-80v20,9,15,20,29,58v11,29,19,48,27,70v1,12,-22,22,-27,11v-4,-31,-22,-61,-29,-92v-2,-8,-11,-8,-15,-1v-16,28,-37,54,-54,82v-4,6,-24,8,-24,-2v0,-33,-20,-164,-12,-208v3,-15,33,-6,31,10v-6,18,-4,111,-1,137v1,10,4,15,8,15","w":187},"i":{"d":"12,-214v13,0,39,5,43,22v2,9,-9,14,-20,14v-14,0,-31,-9,-36,-27v0,-6,4,-9,13,-9xm42,-74v0,28,15,35,27,59v0,6,-6,9,-19,9v-44,-14,-28,-69,-32,-124v0,-6,2,-9,8,-9v31,1,17,41,16,65","w":77},"j":{"d":"5,-204v9,-32,36,-8,44,12v4,9,-14,24,-22,17v-4,-13,-13,-19,-22,-29xm37,-112v12,40,25,82,25,119v0,54,-31,79,-68,83v-40,4,-51,-54,-28,-77v27,6,-15,59,33,53v27,-3,41,-22,41,-52v-1,-61,-21,-90,-42,-151v0,-8,8,-18,16,-18v12,9,34,9,37,25v1,6,-16,11,-14,18","w":72},"k":{"d":"71,-72v18,13,57,26,84,27v6,0,10,3,10,10v1,16,-18,12,-29,14v-12,1,-54,-14,-65,-12v-21,4,0,22,4,37v-2,9,-30,5,-29,-3v-36,-65,-8,-164,-47,-219v-6,-10,3,-26,14,-26v44,12,35,89,35,140v0,6,3,8,7,8v31,-18,57,-54,70,-48v9,0,13,6,13,17v0,11,-6,19,-18,15v-15,4,-33,21,-49,40","w":170},"l":{"d":"39,-228v10,80,19,100,11,212v0,4,-3,6,-9,6v-33,-9,-15,-68,-16,-103v-1,-43,-15,-83,-24,-111v-1,-14,36,-21,38,-4","w":75},"m":{"d":"109,-131v25,0,10,40,29,53v19,-1,37,-43,42,-55v8,-10,25,1,27,9v9,52,19,74,36,114v0,9,-13,14,-21,9v-22,-13,-23,-46,-31,-72v-1,-5,-4,-8,-8,-8v-20,2,-23,34,-48,41v-17,-1,-21,-24,-32,-35v-21,11,-30,64,-64,66v-7,0,-12,-2,-12,-7v2,-22,-34,-104,-1,-124v39,-1,2,76,32,82v21,-26,34,-48,38,-66v1,-5,6,-7,13,-7","w":238},"n":{"d":"31,-144v30,0,2,87,36,63v15,-10,11,-37,28,-44v30,7,27,27,35,71v5,27,10,41,15,43v16,5,8,24,-6,24v-44,0,-18,-80,-47,-94v-21,6,-18,58,-47,57v-19,-1,-19,-28,-18,-50v1,-14,-9,-31,-18,-49v-1,-10,12,-21,22,-21","w":159},"o":{"d":"73,0v-29,1,-60,-29,-60,-59v0,-38,44,-58,68,-80v12,-11,30,-12,36,3v6,17,19,40,19,59v-1,41,-27,75,-63,77xm77,-27v30,0,53,-50,28,-74v-7,10,-22,5,-30,-1v-15,4,-33,20,-33,40v0,24,11,35,35,35","w":145},"p":{"d":"64,-145v43,0,75,59,37,88v-12,19,-51,7,-48,42v3,26,13,70,-9,81v-43,-31,-13,-123,-30,-180v-1,-15,33,-31,50,-31xm56,-63v18,-2,40,-13,38,-27v2,-21,-47,-42,-46,-5v0,21,2,32,8,32","w":129},"q":{"d":"164,-86v-3,43,-7,94,10,122v0,7,-5,16,-13,15v-35,-5,-16,-72,-33,-98v-24,11,-51,21,-65,21v-30,0,-56,-13,-52,-38v7,-52,45,-59,100,-75v13,1,28,9,34,27v2,7,5,7,12,7v8,0,7,10,7,19xm39,-72v9,31,67,18,83,-7v-5,-10,-5,-33,-17,-32v-30,11,-53,16,-66,39","w":185},"r":{"d":"66,-110v3,-23,53,-24,55,1v1,18,-14,14,-25,10v-33,7,-13,80,-45,86v-25,-10,-15,-51,-38,-78v-14,-16,-8,-45,14,-33v16,9,16,21,19,40v2,7,11,7,13,0v2,-9,5,-17,7,-26","w":126,"k":{"_":15,".":25,",":29}},"s":{"d":"13,-108v6,-31,54,-41,80,-45v31,4,29,46,3,46v-10,0,1,-18,-12,-17v-7,4,-40,10,-31,26v20,22,48,39,58,71v-2,29,-46,39,-74,43v-19,3,-37,-26,-12,-29v18,7,45,4,53,-14v-5,-36,-62,-44,-65,-81","w":123},"t":{"d":"97,-82v-84,0,16,89,-33,89v-34,0,-13,-77,-33,-94v-3,-2,-26,-7,-25,-21v-4,-24,28,-6,33,-21v5,-17,-29,-77,1,-77v58,0,-25,94,62,94v27,0,28,-3,45,-10v5,0,7,4,7,11v-5,23,-29,29,-57,29","w":149,"k":{"_":25,".":22,",":27}},"u":{"d":"109,-102v-6,-21,26,-27,31,-9v14,52,18,69,36,93v16,9,1,31,-14,28v-24,-4,-21,-53,-39,-65v-17,18,-25,49,-55,49v-51,0,-53,-84,-40,-139v2,-10,31,-6,27,6v-3,33,-15,90,16,104v23,-7,39,-48,38,-67","w":182},"v":{"d":"127,-156v10,2,32,30,20,42v-34,32,-24,108,-66,134v-35,-28,-57,-100,-80,-132v-15,-12,1,-28,15,-28v24,0,22,27,28,47v5,17,20,47,37,60v28,-20,31,-75,40,-116v1,-4,3,-7,6,-7","w":152,"k":{"_":14,".":18,",":22}},"w":{"d":"183,-116v10,0,21,10,20,21v-3,33,-16,83,-42,95v-9,4,-51,-51,-51,-47v-10,21,-19,54,-48,50v-35,-4,-34,-38,-45,-75v-8,-27,-11,-46,-11,-58v0,-17,38,-11,38,3v0,37,-2,89,24,100v18,-7,23,-38,25,-68v0,-11,5,-16,13,-16v26,7,27,69,56,74v18,-9,12,-46,10,-69v0,-6,4,-10,11,-10","w":211,"k":{",":14}},"x":{"d":"136,-137v19,0,46,20,9,23v-20,2,-42,13,-51,30v8,25,55,29,64,54v0,6,-8,12,-15,12v-24,-4,-40,-25,-69,-40v-24,9,-33,58,-56,68v-6,1,-7,-5,-7,-13v4,-31,29,-48,40,-74v-9,-17,-38,-22,-41,-44v-1,-8,8,-16,17,-15v21,1,27,30,45,31v22,-8,52,-37,64,-32","w":167},"y":{"d":"137,-119v5,-15,25,-3,25,8v-17,45,-81,136,-99,184v-1,9,-23,14,-21,0v8,-40,34,-70,49,-104v-35,-30,-80,-57,-87,-95v-2,-11,16,-21,24,-10v24,35,47,59,76,79v18,-13,25,-40,33,-62","w":167,"k":{"_":21,".":14,",":25}},"z":{"d":"47,-23v30,19,95,-36,104,9v-6,14,-86,22,-118,23v-18,0,-19,-28,-10,-41v18,-25,39,-50,49,-82v-7,-17,-25,8,-36,4v-10,-3,-15,-9,-15,-15v7,-21,56,-20,74,-28v7,0,11,5,11,15v-4,39,-53,94,-59,115","w":146},"{":{"d":"43,32v-3,43,61,49,79,23v5,0,7,4,7,13v-1,21,-30,23,-45,24v-29,2,-61,-23,-61,-55v0,-18,14,-48,28,-78v-7,-9,-43,-2,-37,-19v-1,-23,46,-31,31,-53v-13,-18,-53,-39,-28,-65v16,-17,49,-45,94,-71v10,-1,12,11,5,15v-20,13,-59,47,-78,60v-24,33,38,41,39,68v5,13,-39,34,-20,36v47,5,8,44,-2,64v-8,15,-12,27,-12,38","w":128},"|":{"d":"42,-218v-7,69,-6,151,1,219v1,12,-22,23,-27,11r5,-232v0,-6,3,-10,9,-10v5,1,13,6,12,12","w":52},"}":{"d":"56,-107v19,-9,41,18,20,27v-15,6,-4,15,3,18v54,44,14,134,-41,144v-18,3,-17,-23,-6,-25v22,17,57,-39,56,-59v0,-24,-13,-42,-39,-52v-10,-4,-12,-9,-11,-21v2,-16,-20,-15,-19,-34r-4,-15v11,-20,50,-48,50,-77v0,-20,-30,-14,-48,-11v-5,0,-7,-3,-7,-8v-1,-17,21,-13,37,-13v69,1,21,83,-1,102v-6,9,-4,26,10,24","w":115},"~":{"d":"114,-145v23,-2,46,-43,46,-65v0,-10,12,-8,17,-3v3,2,5,5,5,8v-13,36,-35,78,-73,85v-25,4,-31,-85,-66,-43v-11,13,-18,32,-24,50v-3,8,-17,11,-17,0v14,-43,26,-74,67,-84v25,-6,24,54,45,52","w":182},"\u2026":{"d":"183,-36v10,2,27,6,27,17v-3,33,-31,30,-40,-3v-2,-6,8,-14,13,-14xm113,-40v14,0,23,10,22,26v-1,11,-1,15,-14,15v-15,0,-41,-41,-8,-41xm17,-23v-4,-13,9,-22,23,-22v13,0,18,7,17,20v-1,14,-10,46,-18,47v-6,0,-13,-15,-22,-45","w":230},"\u2018":{"d":"14,-245v15,-5,21,21,17,30v0,27,9,45,27,54v13,6,3,20,-8,20v-30,0,-49,-39,-49,-72v0,-13,-2,-32,13,-32","w":63,"k":{"J":28,"A":32}},"\u2019":{"d":"61,-233v0,50,-9,78,-43,93v-10,1,-12,-15,-5,-21v14,-13,16,-48,19,-73v1,-7,5,-11,14,-11v10,0,15,4,15,12","w":70},"\u201c":{"d":"96,-151v-9,-21,-58,-78,-12,-88v5,0,8,2,9,6r21,72v1,8,-13,21,-18,10xm32,-248v23,1,5,27,6,41v2,24,20,44,25,67v0,6,-2,9,-7,9v-26,-23,-46,-49,-49,-82v-1,-15,8,-35,25,-35","w":117,"k":{"J":31,"A":42}},"\u201d":{"d":"96,-249v13,0,14,21,14,33v0,24,-16,62,-43,85v-7,1,-9,-10,-5,-15v13,-24,15,-52,19,-83v2,-13,7,-20,15,-20xm31,-241v6,-15,30,2,29,12v0,25,-10,52,-30,79v-6,8,-21,0,-18,-8v11,-30,16,-33,19,-83","w":117},"\u2013":{"d":"135,-99v8,1,16,19,-1,18v-41,-2,-77,4,-115,6v-11,1,-18,-26,-6,-29r45,0v32,0,57,2,77,5","w":149},"\u2014":{"d":"14,-99r256,2v3,0,5,2,5,8v0,7,-2,11,-6,11v-61,5,-145,7,-251,7v-8,0,-13,-5,-13,-14v0,-9,3,-14,9,-14","w":279},"\u2122":{"d":"219,-238v14,9,20,50,27,65v0,6,-4,10,-10,10v-12,0,-10,-30,-20,-33v-9,2,-24,21,-27,18v-12,-2,-26,-30,-29,-17v-3,10,-6,23,-11,37v-9,4,-21,-2,-20,-10v10,-24,24,-34,20,-57v-3,-4,14,-11,17,-11v10,8,27,54,38,23v-3,-13,7,-24,15,-25xm63,-221v24,-6,61,-32,71,-1v0,4,-2,6,-8,6v-19,1,-45,1,-45,19v2,13,14,50,1,59v-15,-5,-10,-64,-32,-61v-17,2,-46,12,-48,-7v10,-12,27,-7,61,-15","w":252},"\u00d7":{"d":"148,-135v11,-18,52,-8,29,10v-33,5,-49,27,-68,45v20,19,38,42,64,55v7,8,0,23,-10,24v-31,-12,-47,-46,-74,-61v-16,7,-32,20,-38,36v0,8,-7,13,-16,13v-29,-2,-16,-26,1,-33v11,-12,49,-23,32,-39r-58,-55v-11,-13,4,-27,16,-28v27,20,40,62,71,78v21,-9,31,-34,51,-45","w":190},"\u00a0":{"w":93}}});Cufon.registerFont({"w":171,"face":{"font-family":"FeltTip","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 7 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-51.4538 -260 279 103","underline-thickness":"7.2","underline-position":"-44.28","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":98},"!":{"d":"22,-81v1,-32,-11,-104,-10,-141v0,-10,5,-15,17,-15v36,1,19,56,19,94r0,63v-1,9,-5,13,-13,13v-9,0,-13,-5,-13,-14xm31,-48v11,3,28,17,30,29v1,11,-23,24,-33,24v-9,0,-14,-7,-14,-23v1,-13,5,-30,17,-30","w":71},"\"":{"d":"79,-238v31,2,17,39,17,82v0,10,4,33,-15,33v-20,0,-19,-11,-16,-28v4,-26,-24,-90,14,-87xm51,-233v-6,28,-11,58,1,80v1,10,-14,22,-24,21v-20,-3,-19,-55,-19,-81v0,-29,6,-43,18,-43v12,-1,26,12,24,23","w":107,"k":{"J":35,"A":38}},"#":{"d":"146,-244v32,0,0,39,16,52v19,5,51,0,51,21v0,34,-48,-9,-57,13r-5,36v15,4,41,-3,42,17v2,25,-36,2,-46,18v-4,26,-14,69,-24,95v-3,8,-24,10,-23,-2v-2,-15,26,-81,12,-93v-71,-16,-31,92,-73,101v-7,0,-11,-4,-11,-12v-1,-12,7,-42,13,-79v-2,-11,-18,4,-25,1v-12,1,-21,-18,-21,-29v0,-21,37,-11,58,-12v5,-2,8,-20,4,-22v-8,-2,-20,15,-28,14v-23,-2,-28,-27,-1,-37v15,-6,34,-7,40,-22v6,-14,1,-35,22,-35v24,0,14,20,18,33v34,8,3,-58,38,-58xm109,-118v18,6,17,-25,14,-36v-27,-5,-30,15,-33,30v2,7,13,5,19,6","w":212},"$":{"d":"97,-135v28,30,61,68,61,95v0,26,-32,49,-60,41v-25,17,33,64,-6,70v-28,-4,-27,-30,-29,-63v-34,-1,-51,-15,-51,-44v0,-7,5,-17,12,-17v9,-2,24,34,35,30v6,-24,2,-62,7,-91v-18,-24,-60,-23,-67,-58v6,-38,87,-1,73,-61v1,-13,-4,-27,12,-27v21,0,19,23,21,40v0,6,6,5,12,5v38,-9,57,47,17,50v-27,2,-5,-21,-32,-19v-2,1,-5,43,-5,49xm45,-166v6,2,26,29,21,9v0,-6,3,-16,-3,-17v-2,-1,-19,6,-18,8xm95,-26v16,0,46,-17,27,-36v-10,-10,-15,-24,-27,-32v-3,16,-8,53,0,68","w":167},"%":{"d":"13,-159v-4,-15,46,-76,72,-45v14,-4,31,-6,31,15v0,25,-29,55,-69,61v-16,2,-35,-15,-34,-31xm179,-248v10,-10,28,6,27,17v0,3,-2,6,-7,9v-8,-5,-115,133,-175,219v-10,14,-27,9,-27,-7v0,-11,6,-12,13,-21r139,-182v6,-8,16,-20,30,-35xm118,-87v7,-14,22,-2,28,2v34,18,-5,63,-28,63v-43,0,-17,-51,0,-65xm72,-179v-4,-1,-23,12,-18,16v16,1,26,-9,18,-16","w":198},"&":{"d":"84,-122v1,6,20,48,32,32v11,-15,23,-32,34,-53v5,-10,13,-7,18,4v13,36,-21,48,-39,78v15,12,22,21,22,26v0,8,-11,20,-20,20v-14,-7,-18,-21,-28,-27v-18,9,-42,34,-69,34v-20,0,-40,-14,-37,-33v5,-40,30,-57,50,-82v-14,-41,5,-99,38,-97v19,1,36,11,36,30v5,12,-37,63,-37,68xm80,-176v-3,0,-5,4,-6,10v0,-1,3,-4,6,-10xm31,-47v9,17,37,-8,48,-13v18,-8,-15,-30,-13,-36v-6,-3,-38,42,-35,49","w":172},"'":{"d":"47,-233v0,28,0,55,2,82v2,24,-30,25,-34,2v-4,-24,-8,-52,-9,-84v0,-19,41,-20,41,0","w":60,"k":{"J":30,"A":45}},"(":{"d":"15,-55v4,-84,32,-145,90,-166v17,0,14,14,3,22v-46,37,-64,90,-64,153v0,26,8,43,23,51v6,1,22,6,19,18v0,9,-5,14,-13,14v-37,2,-60,-52,-58,-92","w":107},")":{"d":"8,-239v89,52,88,203,11,275v-13,12,-18,22,-33,26v-12,0,-9,-11,-3,-17v37,-46,77,-100,65,-165v-8,-42,-23,-74,-50,-100v-8,-8,0,-19,10,-19","w":92},"*":{"d":"144,-168v0,14,7,27,10,34v-3,12,-58,-7,-58,11v10,21,28,27,35,46v-3,16,-27,2,-43,8v-14,0,-15,-8,-14,-20v-4,6,-30,25,-40,27v-19,-10,24,-45,19,-59v-14,7,-35,14,-39,13v-9,1,-22,-9,-21,-18v-3,-14,26,-16,40,-23v-10,-1,-13,-24,-14,-28v0,-26,28,-17,40,-4v1,-9,6,-45,28,-47v34,7,-5,39,-2,65v13,-9,27,-17,42,-16v12,0,17,4,17,11","w":157},"+":{"d":"199,-119v-12,23,-36,27,-77,27v-8,1,-25,0,-25,10v7,26,-3,93,-21,52v-1,-4,-3,-21,-7,-50v-15,-22,-69,21,-70,-18v5,-16,20,-16,50,-19v25,-2,2,-50,6,-70v4,-16,34,-5,35,7v0,11,2,27,3,49v11,39,89,-20,106,12","w":206},",":{"d":"32,-37v7,-16,34,-9,34,7r-44,84v-6,10,-27,8,-26,-7v0,-8,13,-36,36,-84","w":65},"-":{"d":"40,-103v23,0,54,-5,56,16v2,27,-43,11,-68,18v-16,-1,-25,-1,-25,-20v0,-18,18,-14,37,-14","w":99},".":{"d":"10,-18v1,-27,57,-30,58,-1v1,14,-17,32,-31,32v-14,0,-27,-17,-27,-31","w":83},"\/":{"d":"117,-234v8,-13,31,5,30,17r-117,238v-6,12,-28,15,-29,0r76,-155","w":146},"0":{"d":"95,-211v32,-18,78,14,64,58v14,90,-30,159,-95,175v-29,-1,-58,-32,-56,-67v5,-53,3,-74,37,-115v19,-22,33,-41,50,-51xm68,-13v52,-10,84,-93,48,-153v-5,-9,-20,-7,-26,0v-35,34,-49,60,-50,121v-1,13,15,35,28,32"},"1":{"d":"64,-177v4,-28,-18,-57,14,-59v34,-2,22,55,22,86v0,50,-1,112,13,150v-1,18,-36,35,-38,2"},"2":{"d":"58,-37v28,23,110,-31,110,9v0,6,-3,10,-10,13v-42,17,-77,26,-131,25v-47,-15,6,-73,18,-90v26,-38,38,-58,44,-86v-3,-45,-61,-3,-75,2v-12,0,-19,-14,-19,-26v0,-31,36,-32,69,-34v40,-2,63,21,63,55v0,49,-55,93,-69,132"},"3":{"d":"112,-230v52,21,14,52,-24,94v24,16,63,18,67,55v-4,34,-52,74,-89,81v-21,3,-31,-36,-7,-36v23,0,48,-23,57,-42v-14,-15,-44,-21,-63,-25v-11,-2,-16,-8,-16,-19v8,-31,47,-40,54,-71v-8,-11,-20,1,-46,5v-24,9,-38,11,-34,18v0,9,-14,19,-22,20v-13,0,-31,-26,-19,-39v28,-29,84,-46,142,-41"},"4":{"d":"121,-100v16,-9,51,-8,56,12v2,12,-17,5,-19,17v-7,11,-31,7,-42,15v3,22,11,64,-22,47v-14,-7,-14,-28,-19,-46v-12,-18,-54,13,-66,13v-15,0,-31,-22,-19,-35v34,-40,61,-68,85,-113v-5,-18,11,-30,28,-29v15,0,23,7,22,21r-9,87v0,7,2,11,5,11xm82,-96v2,-14,4,-32,0,-44v-2,1,-23,20,-34,45"},"5":{"d":"72,-201v47,14,98,-16,123,9v-18,33,-70,31,-123,34v-16,1,-34,4,-38,16v32,25,102,33,105,79v2,42,-84,82,-102,30v0,-13,23,-8,34,-7v12,1,34,-11,34,-22v-1,-30,-106,-29,-106,-76v0,-27,29,-38,45,-52v9,-8,18,-11,28,-11"},"6":{"d":"118,-100v18,0,30,15,30,33v1,28,-33,53,-62,51v-44,-2,-75,-39,-75,-73v0,-52,68,-121,109,-134v15,-1,22,27,7,32v-33,20,-86,55,-86,102v0,9,3,13,8,13v26,-10,38,-25,69,-24xm120,-64v-11,-8,-64,15,-31,18v7,1,20,-8,31,-18"},"7":{"d":"-6,-194v1,-21,34,-14,60,-14v38,0,64,2,80,6v12,3,18,9,18,18v-31,75,-61,146,-61,176v0,14,-3,22,-10,22v-54,-38,15,-135,27,-181v-22,-16,-116,16,-114,-27"},"8":{"d":"90,-183v-26,3,-46,41,-17,59v32,-16,47,-54,82,-65v6,0,9,4,9,12v8,27,-72,69,-69,86v2,3,26,39,23,48v0,20,-25,57,-53,55v-21,-2,-52,-16,-51,-37v3,-31,22,-46,34,-73v-7,-17,-28,-37,-25,-55v-1,-28,27,-59,70,-64v15,-2,40,14,40,29v0,30,-28,7,-43,5xm43,-27v6,17,46,3,44,-13v1,-10,-8,-26,-18,-31v-2,0,-7,7,-15,20v-8,13,-11,21,-11,24"},"9":{"d":"124,-220v29,-2,34,35,21,54v3,54,-26,101,-25,157v0,10,-6,14,-18,14v-9,1,-18,-3,-18,-11v-1,-22,22,-96,21,-116v-33,16,-100,16,-97,-26v4,-50,63,-67,116,-72xm61,-143v23,-1,48,-19,56,-38v-11,-13,-110,28,-56,38"},":":{"d":"41,-84v-31,-2,-45,-51,-10,-51v13,0,33,9,36,21v0,4,-18,34,-26,30xm40,-54v16,0,31,15,31,30v1,12,-16,18,-27,18v-21,1,-28,-5,-28,-25v1,-14,10,-22,24,-23","w":78},";":{"d":"30,-154v13,6,32,12,35,26v2,8,-12,25,-21,24v-13,-2,-33,-10,-34,-25v-1,-10,10,-26,20,-25xm57,-54v10,0,25,11,21,24v-6,19,-29,71,-44,108v-1,3,-4,5,-7,5v-15,-2,-30,-32,-16,-48v23,-27,24,-38,35,-80v1,-6,5,-9,11,-9","w":86},"<":{"d":"136,-192v12,1,32,20,19,32v-28,28,-59,51,-92,73v-17,12,3,18,14,24v21,11,39,18,52,21v17,3,7,39,-6,38v-10,-1,-84,-40,-113,-42v-12,-6,-7,-27,1,-35v-1,-5,117,-89,116,-101v2,-7,4,-10,9,-10","w":159},"=":{"d":"127,-153v33,1,62,-4,68,19v1,12,-26,7,-41,8v-49,0,-93,5,-131,18v-17,0,-30,-38,-5,-39xm102,-93v29,1,55,2,60,18v1,10,-21,9,-32,8v-40,-2,-77,8,-114,19v-19,1,-22,-32,-2,-36v26,-5,55,-9,88,-9","w":196},">":{"d":"17,-166v1,-12,15,-31,30,-24r96,46v24,22,1,39,-20,57r-46,39v-18,18,-35,31,-42,51v-1,5,-4,8,-9,8v-12,0,-22,-14,-22,-25v7,-35,74,-69,104,-103v-22,-19,-52,-32,-80,-37v-7,-2,-11,-6,-11,-12","w":159},"?":{"d":"19,-187v-13,2,-33,-14,-30,-27v6,-30,123,-24,123,17v0,40,-50,69,-52,116v0,7,-7,18,-15,18v-10,0,-17,-18,-17,-29v0,-33,38,-67,50,-95v-10,-17,-43,-3,-59,0xm25,-17v1,-24,51,-32,50,0v1,10,-16,23,-26,22v-7,2,-25,-16,-24,-22","w":115},"@":{"d":"147,-256v56,0,93,26,93,79v0,49,-50,134,-84,129v-12,3,-32,-16,-40,-16v-9,-1,-33,15,-44,15v-20,0,-33,-15,-32,-35v-5,-29,74,-99,100,-95v28,-2,34,53,8,56v-16,2,-20,-10,-14,-20v-24,-9,-69,56,-54,58v21,3,29,-28,50,-27v15,1,28,6,22,26v0,3,1,4,3,4v35,-14,55,-46,60,-94v4,-32,-25,-52,-56,-52v-87,-1,-124,80,-124,159v0,46,10,97,60,97v16,0,50,-11,85,-21v5,0,7,3,7,7v-15,31,-56,43,-98,43v-60,1,-86,-50,-84,-115v1,-106,62,-198,142,-198","w":248},"A":{"d":"16,-60v-1,-21,27,-17,32,-31r41,-116v10,-23,35,-20,43,3v20,49,27,168,41,222v0,10,-5,15,-15,15v-35,2,-16,-60,-29,-82v-23,2,-58,-7,-62,14v-7,32,-10,72,-42,80v-43,-4,0,-66,2,-83v1,-6,-13,-16,-11,-22xm123,-87v6,-12,-3,-36,-5,-65v-1,-9,-10,-8,-13,0v-5,15,-20,49,-20,61v2,6,29,5,38,4","w":185},"B":{"d":"122,-129v40,23,61,26,65,66v-7,44,-77,86,-127,90v-13,0,-33,-10,-32,-22v1,-12,21,-14,16,-35v1,-37,-5,-116,-18,-129v-32,-33,35,-58,61,-56v21,1,66,7,68,34v1,22,-22,40,-33,52xm72,-132v23,-11,41,-20,51,-40v1,-5,-10,-9,-23,-8v-13,1,-41,-5,-37,19v1,6,1,24,9,29xm146,-47v25,-30,-34,-52,-59,-50v-21,1,-9,37,-12,52v2,14,-7,43,14,33v24,-12,45,-20,57,-35","w":203},"C":{"d":"133,-219v27,0,55,10,55,33v0,27,-33,28,-35,8v3,-9,-14,-10,-20,-11v-44,7,-90,65,-92,119v-3,59,63,63,125,56v29,-3,22,30,4,32v-88,9,-160,-6,-160,-87v1,-70,82,-150,123,-150","w":200},"D":{"d":"67,-227v54,0,123,54,123,113v0,48,-30,95,-91,140v-21,15,-65,8,-59,-29v3,-19,-5,-88,-5,-98v0,-37,-24,-54,-28,-92v-3,-29,35,-34,60,-34xm85,-5v30,-15,76,-52,76,-107v0,-53,-49,-74,-94,-80v-4,0,-6,2,-6,6v-1,33,11,139,10,172v0,5,9,9,14,9","w":207},"E":{"d":"74,-15v27,5,83,-7,106,-8v13,-1,12,19,2,22v-51,17,-95,28,-131,28v-13,0,-20,-6,-20,-17r3,-111v-7,-10,-24,-7,-24,-20v0,-19,33,-16,25,-49v-16,-5,-25,-13,-25,-22v-1,-8,18,-45,31,-43v15,8,41,14,68,9v24,3,59,-6,59,18v0,36,-73,2,-101,24v2,12,-6,36,6,37v35,4,68,4,93,16v17,8,13,26,-9,24v-27,-2,-55,-5,-85,-4v-13,13,-8,60,-8,85v0,7,4,10,10,11","w":201},"F":{"d":"150,-226v10,-1,17,13,17,22v-6,25,-71,19,-98,29v-21,0,-12,26,-19,40v13,20,91,-13,100,21v-11,23,-56,19,-89,20v-5,0,-7,3,-7,9v-1,28,13,52,13,78v0,22,-33,19,-34,-2v-1,-16,-5,-40,-7,-72v0,-5,-18,-14,-16,-23v8,-15,11,-42,12,-67v-19,-10,-2,-49,21,-43v38,10,76,-2,107,-12","w":172,"k":{"z":19,"y":18,"x":10,"w":13,"u":24,"t":8,"s":13,"r":13,"q":18,"p":11,"o":22,"n":10,"m":11,"g":23,"f":11,"e":26,"d":33,"c":26,"a":37,"_":43,"Q":13,"O":18,"J":31,"G":13,"C":18,"A":36,"\/":43,".":63,",":50,"&":25}},"G":{"d":"188,-60v-10,-20,-77,7,-77,-25v10,-32,109,-17,103,21v-8,48,-60,77,-99,77v-50,0,-111,-35,-108,-81v5,-69,74,-141,146,-153v16,-3,35,9,34,24v0,9,-9,19,-19,18v-9,2,-8,-12,-12,-13v-56,17,-110,54,-116,114v-3,33,30,63,63,62v33,-1,73,-21,85,-44","w":224},"H":{"d":"167,15v1,9,-8,13,-17,12v-22,0,-15,-14,-19,-33v-7,-41,-1,-56,-8,-80v-23,6,-36,11,-64,14v-14,12,2,42,1,62v0,9,-4,13,-12,13v-11,0,-17,-4,-18,-12r-22,-195v-2,-17,30,-23,34,-5v6,32,11,61,8,93v0,3,2,5,5,5v11,0,32,-2,63,-7v5,0,5,-5,5,-10v4,-27,-28,-96,11,-99v16,0,20,10,19,28v-2,36,11,97,12,147v1,40,2,62,2,67","w":184},"I":{"d":"27,-149v0,-32,-9,-64,18,-65v14,-3,15,29,15,55r-2,122v-1,4,13,14,11,20v3,20,-48,29,-50,7v-1,-27,8,-112,8,-139","w":87},"J":{"d":"19,17v44,3,53,-55,54,-101v1,-22,-16,-68,-16,-119v0,-10,5,-15,16,-15v47,0,26,68,30,125v5,75,-22,136,-83,142v-17,2,-35,-14,-35,-31v0,-12,9,-38,21,-37v15,1,21,23,13,36","w":127},"K":{"d":"80,-68v38,29,98,25,116,71v0,10,-4,15,-12,15v-36,-19,-84,-35,-124,-48v-2,0,-4,1,-4,3v-4,24,-3,57,-29,58v-11,1,-14,-7,-13,-19v26,-70,-4,-142,-4,-209v0,-10,9,-19,21,-19v14,0,17,10,17,25v0,12,4,67,11,95v35,-14,61,-56,100,-82v31,11,19,33,-10,54v-17,13,-64,44,-69,56","w":196},"L":{"d":"64,-28v25,-1,84,-35,89,9v-9,27,-54,12,-78,30v-19,8,-40,15,-42,-10v-5,-68,-7,-143,-27,-195v0,-9,6,-22,16,-20v53,8,17,144,42,186","w":158,"k":{"\u2122":66,"\u201d":53,"\u2019":46,"t":11,"f":14,"\\":39,"Y":36,"W":10,"V":14,"T":45,"S":14,"*":60,"'":37,"\"":46}},"M":{"d":"97,-97v23,-10,22,-71,53,-75v8,0,15,4,18,13r40,149v1,10,-6,22,-14,21v-35,8,-45,-142,-52,-122v-8,20,-32,57,-52,57v-15,0,-27,-26,-38,-36v-4,33,14,93,-22,93v-22,0,-10,-54,-10,-77v0,-36,-5,-71,-11,-105v-3,-16,26,-15,30,-4v13,31,33,69,58,86","w":217},"N":{"d":"166,-122v0,47,-1,116,11,139v0,11,-7,15,-20,15v-30,2,-11,-43,-30,-55v-24,-25,-43,-54,-69,-77v-5,21,2,53,1,78v0,9,-6,14,-17,14v-30,0,-17,-35,-18,-63v-2,-66,-4,-84,-15,-102v-1,-13,20,-37,31,-20v25,41,56,77,90,126v4,-26,-1,-85,-11,-110v0,-10,6,-17,16,-17v28,5,31,25,31,72","w":194},"O":{"d":"129,-178v44,-2,78,39,76,82v-2,58,-44,98,-101,98v-54,0,-97,-34,-97,-84v0,-58,62,-94,122,-96xm113,-28v38,0,62,-32,62,-71v0,-23,-18,-22,-33,-16v-16,-9,-3,-35,-32,-29v-33,-1,-69,31,-69,66v0,33,38,50,72,50","w":218},"P":{"d":"58,-228v40,3,80,33,85,74v-4,41,-45,73,-85,67v1,35,17,93,-23,99v-11,2,-8,-13,-9,-22v-6,-68,-10,-129,-10,-183v0,-17,24,-36,42,-35xm52,-132v13,28,59,5,59,-18v0,-19,-55,-60,-65,-26v0,7,18,14,16,24v1,7,-8,18,-10,20","w":157,"k":{"u":18,"t":4,"s":11,"r":13,"o":32,"n":14,"e":29,"a":42,"_":27,"Q":8,"J":33,"G":3,"C":5,"A":30,"\/":50,".":54,",":53,"&":25}},"Q":{"d":"231,-45v-3,6,33,33,31,38v1,7,-15,25,-22,24v-14,-4,-29,-34,-36,-29v-24,12,-36,26,-64,26v-63,0,-130,-53,-130,-115v0,-59,92,-134,154,-97v5,2,15,31,27,30v35,-17,58,20,58,55v0,12,-11,45,-18,68xm148,-104v6,-4,51,42,56,40v13,-15,16,-48,10,-71v-5,-21,-27,7,-40,3v-31,3,-9,-40,-42,-40v-43,0,-88,31,-88,72v0,42,49,87,91,85v22,-1,38,-4,43,-18v2,-3,-51,-44,-45,-51v0,-8,7,-20,15,-20","w":273},"R":{"d":"179,-161v9,33,-54,63,-75,80r89,73v13,12,-9,38,-24,29v-2,-1,-2,-1,-55,-45v-30,-25,-47,-38,-50,-38v-5,30,11,79,-19,79v-34,-7,-13,-36,-13,-69v1,-55,-8,-82,-14,-116v15,-66,145,-51,161,7xm65,-108v31,-7,70,-14,79,-42v0,-22,-42,-22,-62,-25v-39,5,-17,18,-17,67","w":207},"S":{"d":"165,-157v-35,-18,-103,12,-124,25v7,18,85,31,86,36v33,15,58,27,61,62v2,23,-29,43,-53,43v-24,0,-54,-12,-90,-36v-13,-8,-15,-21,4,-22v38,10,47,26,84,25v14,0,21,-4,21,-13v-17,-51,-147,-32,-155,-93v6,-32,55,-42,85,-54v28,-11,50,-14,66,-14v18,0,27,8,27,25v0,11,-4,16,-12,16","w":203},"T":{"d":"163,-189v32,-5,69,-28,74,9v-16,24,-57,18,-96,28v-7,1,-9,4,-9,11v2,39,5,74,14,111v2,1,15,7,13,13v1,9,-11,27,-20,26v-35,-6,-32,-75,-36,-107v-1,-9,4,-48,-15,-46v-25,3,-50,12,-73,16v-17,3,-50,-38,-20,-41v54,-6,117,-13,168,-20","w":229,"k":{"z":31,"y":35,"w":36,"u":37,"s":37,"r":32,"o":46,"e":38,"a":42,"_":32,"Q":11,"O":26,"G":15,"C":12,"A":33,"\/":49,".":48,",":53}},"U":{"d":"89,-22v35,-22,60,-101,45,-155v0,-8,5,-12,14,-12v15,0,23,13,23,39v-1,49,-30,114,-54,149v-6,10,-14,15,-22,15v-66,-15,-94,-93,-80,-186v2,-16,-1,-38,15,-38v18,0,27,22,28,35v-27,41,-10,139,31,153","w":182},"V":{"d":"118,-156v2,-23,54,-13,54,5v2,10,-24,19,-24,25v-17,42,-9,122,-52,135v-30,-12,-51,-47,-63,-76r-50,-119v0,-15,20,-22,31,-12v32,48,36,128,80,158v17,-43,20,-63,24,-116","w":166,"k":{".":15,",":22}},"W":{"d":"197,-205v15,-1,33,11,32,26v-11,13,-13,49,-13,82v0,59,-7,98,-43,110v-29,-9,-37,-39,-64,-64v-7,23,-31,64,-57,36v-31,-34,-48,-89,-59,-141v-4,-19,31,-19,37,-5v16,35,14,91,41,116v13,1,9,-62,28,-59v26,3,52,52,73,72v23,-37,10,-106,9,-158v0,-10,5,-15,16,-15","w":234},"X":{"d":"169,-44v10,-5,17,6,16,16v-4,30,-36,15,-54,0v-12,-10,-21,-23,-35,-31v-24,24,-46,50,-61,77v-6,12,-24,4,-23,-7v15,-38,41,-66,60,-100v-13,-32,-72,-65,-83,-101v-1,-10,10,-22,20,-20v33,6,71,78,88,90v16,-16,34,-51,54,-54v20,-3,46,30,17,34v-26,4,-21,19,-44,37v-4,5,-6,8,-6,11v11,23,47,51,51,48","w":190},"Y":{"d":"147,-199v7,-15,35,-4,33,11v-11,31,-39,60,-45,106v-14,31,-28,70,-41,118v-4,12,-26,11,-23,-6v-4,-33,24,-86,25,-114v-46,-22,-88,-53,-107,-97v-1,-15,21,-29,32,-17v26,29,56,67,88,83v12,-4,8,-11,14,-26v5,-14,15,-38,24,-58","w":176,"k":{"u":14,"o":17,"e":19,"a":25,"_":25,"O":7,"C":7,"A":11,".":29,",":40}},"Z":{"d":"68,-36v42,2,114,2,130,-8v8,0,17,8,15,16v-10,44,-118,29,-182,29v-22,0,-36,-25,-18,-43v10,-10,86,-85,98,-111v-23,-18,-108,22,-106,-24v1,-28,37,-15,72,-18v101,-10,70,56,28,95v-34,31,-46,54,-46,59v0,3,3,5,9,5","w":213},"[":{"d":"44,17v21,11,77,-12,76,17v-1,24,-61,8,-87,20v-11,0,-20,-8,-20,-19v0,-80,26,-190,-8,-256v0,-12,11,-6,20,-7v18,-1,60,16,79,11v6,0,8,3,8,11v0,24,-54,12,-65,5v-4,0,-6,3,-6,7v8,62,13,146,3,211","w":128},"\\":{"d":"1,-196v-10,-22,31,-37,39,-17v31,76,68,159,114,222v8,11,-4,24,-14,13v-48,-47,-110,-152,-139,-218","w":165},"]":{"d":"6,-224v41,13,100,-21,107,16v-4,64,-26,155,-12,226v0,27,-54,24,-74,33v-9,0,-17,-15,-17,-24v0,-24,48,-10,52,-10v6,0,9,-2,9,-7v-9,-94,7,-128,11,-202v-14,-18,-81,15,-84,-20v0,-8,2,-12,8,-12","w":120},"^":{"d":"67,-184v-11,-1,-51,104,-70,50v17,-25,41,-47,48,-79v4,-13,19,-14,27,-5v8,10,39,42,55,82v0,8,-5,15,-13,15v-20,0,-30,-48,-47,-63","w":133},"_":{"d":"14,-3r256,2v6,0,9,4,9,11v0,25,-56,12,-86,13r-175,3v-10,0,-15,-4,-15,-14v0,-7,3,-16,11,-15","w":287},"`":{"d":"10,-226v15,6,86,55,92,78v0,12,-15,27,-26,18v-15,-21,-49,-53,-75,-73v-8,-6,-1,-23,9,-23","w":107},"a":{"d":"147,-125v8,-10,32,-14,37,4v7,10,3,82,18,89v3,3,16,7,16,17v1,10,-10,28,-20,25v-34,-9,-32,-49,-51,-78v-31,20,-55,63,-100,67v-30,2,-50,-39,-33,-65v17,-27,60,-60,107,-70v8,-2,21,10,26,11xm105,-68v4,0,9,-1,7,-8v0,-13,-2,-19,-6,-19v-27,12,-50,27,-61,50v0,6,4,8,11,8v17,-2,33,-24,49,-31","w":219},"b":{"d":"61,-113v10,-10,45,-29,70,-16v29,15,45,32,45,58v0,59,-49,76,-107,92v-17,0,-25,-7,-22,-20v5,-22,5,-30,22,-34v12,-3,10,20,18,17v32,-14,51,-21,55,-54v2,-13,-18,-24,-33,-23v-42,0,-27,65,-68,66v-21,0,-13,-25,-14,-45v-3,-33,-11,-77,-33,-94v-16,-13,1,-38,17,-39v10,2,10,8,17,18v17,25,23,50,33,74","w":192},"c":{"d":"88,-133v27,-9,103,-36,103,8v0,15,-5,22,-15,22v-13,0,-12,-17,-26,-17v-18,-1,-108,29,-105,61v3,21,39,41,65,41v0,0,52,-22,56,2v-42,57,-161,12,-154,-46v5,-43,31,-55,76,-71","w":190},"d":{"d":"121,-127v19,-10,-6,-55,-1,-72v-1,-13,15,-14,24,-8v47,33,9,152,63,175v6,3,9,7,9,10v-12,23,-49,17,-57,-15v-3,-5,-9,-35,-22,-24v-19,32,-47,61,-92,64v-27,2,-51,-28,-32,-52v29,-37,54,-49,108,-78xm51,-27v37,-14,48,-27,75,-66v0,-3,-4,-2,-5,-1v-41,24,-67,37,-79,59v0,5,3,8,9,8","w":226},"e":{"d":"45,-58v-2,39,81,50,125,39v8,0,11,3,11,11v-5,23,-33,24,-65,24v-57,0,-114,-30,-105,-76v9,-50,63,-86,112,-91v23,-2,52,14,50,36v-5,48,-69,53,-111,65v-8,0,-14,-3,-17,-8xm50,-80v5,1,86,-17,88,-33v-2,-10,-9,-6,-20,-4v-30,6,-54,18,-68,37","w":193},"f":{"d":"84,-105v21,2,46,-2,67,-3v15,0,12,14,5,22v-12,15,-61,7,-78,19v0,16,3,37,18,36v14,3,11,37,-5,34v-30,2,-41,-27,-41,-63v0,-17,-12,-9,-24,-9v-13,0,-26,-9,-26,-22v0,-32,57,13,46,-38v2,-45,-13,-106,30,-109v48,-2,124,78,55,105v-10,2,-9,-21,-7,-30v2,-22,-25,-40,-34,-41v-17,0,-25,89,-6,99","w":165,"k":{"_":24,".":25,",":36}},"g":{"d":"104,-147v52,2,37,72,40,122v3,59,-29,128,-82,128v-37,0,-66,-33,-66,-69v0,-12,5,-17,14,-17v17,-7,16,39,18,39v36,44,93,-24,88,-71v-2,-20,1,-41,-5,-54v-14,12,-33,45,-57,45v-20,0,-42,-22,-42,-42v0,-35,57,-83,92,-81xm55,-56v16,1,49,-53,38,-54v-14,7,-50,16,-48,42v0,8,4,12,10,12","w":164},"h":{"d":"57,-64v19,-17,39,-73,67,-80v32,9,34,88,58,123v13,20,-23,40,-33,21v-3,-30,-23,-59,-28,-91v-7,-10,-10,4,-15,10v-15,20,-32,51,-48,72v-6,8,-30,8,-30,-5r-14,-183v1,-20,-3,-36,15,-37v40,6,18,35,21,87v2,42,-2,64,7,83","w":192},"i":{"d":"60,-192v-10,31,-60,18,-65,-13v2,-20,30,-14,46,-6v13,6,19,12,19,19xm46,-74v-2,25,21,42,28,59v0,13,-30,17,-39,8v-29,-28,-19,-68,-21,-123v0,-9,4,-13,12,-13v34,0,22,42,20,69","w":82},"j":{"d":"22,-225v9,-2,33,27,32,36v-1,11,-20,25,-30,16v-4,-9,-16,-20,-22,-31v0,-9,10,-22,20,-21xm41,-112v12,41,25,85,25,119v0,57,-32,87,-72,87v-38,0,-57,-30,-38,-76v1,-6,4,-9,9,-9v31,1,-3,53,27,53v29,1,44,-19,44,-48v0,-46,-24,-102,-42,-150v0,-10,9,-24,19,-23v12,7,41,8,42,29v2,8,-16,12,-14,18","w":77},"k":{"d":"168,-36v0,41,-72,6,-97,7v-3,0,-5,1,-5,4v0,10,30,39,-1,38v-12,0,-19,-3,-23,-10v-35,-59,-8,-160,-46,-219v-9,-12,3,-35,17,-32v51,10,25,96,42,148v22,-12,44,-47,69,-48v12,0,18,8,18,21v-1,30,-24,10,-42,32v-6,7,-21,18,-25,22v32,16,59,24,80,24v9,0,13,4,13,13","w":175},"l":{"d":"-3,-224v-1,-19,43,-27,46,-4v6,43,19,117,12,184v-1,10,5,41,-14,38v-38,-6,-20,-71,-20,-107v0,-23,-9,-68,-24,-111","w":81},"m":{"d":"139,-82v31,-8,26,-76,64,-54v21,28,20,84,43,120v5,13,-5,21,-17,20v-37,-4,-29,-51,-46,-81v-14,3,-30,40,-48,41v-13,1,-23,-15,-33,-33v-16,10,-31,66,-63,64v-29,-1,-14,-44,-26,-66v-7,-29,-10,-61,13,-73v39,-4,13,70,29,83v19,-23,31,-44,37,-64v2,-6,7,-10,17,-10v28,1,15,33,30,53","w":243},"n":{"d":"31,-148v28,0,14,52,28,68v19,-8,15,-42,36,-48v46,-1,27,77,51,114v21,7,11,31,-7,31v-45,0,-24,-69,-47,-94v-14,12,-20,58,-47,58v-13,0,-23,-18,-22,-35v2,-27,-9,-48,-19,-69v-1,-12,16,-25,27,-25","w":164},"o":{"d":"73,4v-31,2,-64,-32,-64,-62v0,-39,44,-62,69,-84v15,-13,35,-13,43,5v6,17,19,40,19,60v-1,43,-28,78,-67,81xm77,-31v29,0,46,-43,27,-65v-7,13,-23,2,-29,-1v-14,2,-29,20,-29,35v0,21,11,31,31,31","w":150},"p":{"d":"64,-149v45,-1,80,61,41,94v-13,22,-51,8,-48,40v2,29,13,75,-13,85v-49,-27,-16,-127,-35,-184v-1,-18,35,-35,55,-35xm54,-68v13,2,40,-11,36,-22v1,-17,-40,-35,-39,-5v0,15,2,24,3,27","w":135},"q":{"d":"163,-109v12,39,-7,112,15,145v0,10,-7,21,-17,20v-37,-5,-21,-66,-34,-100v-39,30,-120,35,-120,-20v0,-47,50,-68,104,-79v20,-4,32,17,42,34r10,0xm43,-72v-1,10,15,14,27,14v9,0,36,-9,48,-22v-4,-7,-3,-26,-13,-27v-8,-1,-65,27,-62,35","w":191},"r":{"d":"94,-131v27,-5,42,33,17,40v-52,-20,-19,84,-60,82v-23,-1,-20,-42,-29,-56v-3,-11,-43,-63,-4,-66v25,4,27,27,34,48v13,-16,8,-53,42,-48","w":131,"k":{"_":15,".":25,",":29}},"s":{"d":"24,-133v27,-14,88,-47,96,4v2,16,-12,25,-25,26v-7,3,-6,-17,-11,-17v-2,2,-31,12,-30,16v16,26,61,43,61,77v0,32,-49,44,-78,47v-16,1,-28,-11,-28,-22v0,-17,21,-16,35,-11v8,0,30,-8,30,-15v-5,-31,-100,-63,-50,-105","w":129},"t":{"d":"67,-74v-6,35,38,77,-3,85v-32,-1,-21,-55,-32,-91v-2,-5,-34,-14,-30,-28v-3,-21,20,-16,33,-21v-4,-20,-11,-47,-11,-68v0,-9,6,-13,16,-13v15,0,31,10,28,27v-5,23,-5,37,-1,61v11,15,70,3,80,-4v8,0,11,5,11,15v0,33,-46,34,-84,32v-5,0,-7,1,-7,5","w":154,"k":{"_":25,".":22,",":27}},"u":{"d":"105,-102v-7,-26,33,-33,39,-10v7,27,20,78,35,90v16,14,2,37,-17,36v-21,-1,-27,-48,-39,-64v-17,23,-24,44,-55,48v-54,6,-56,-92,-44,-143v3,-15,37,-10,35,6v-3,29,-12,88,12,99v21,-8,35,-43,34,-62","w":188},"v":{"d":"127,-159v14,-1,37,33,22,48v-31,32,-26,117,-68,135v-41,-29,-54,-94,-83,-133v-19,-17,4,-40,26,-33v14,8,18,11,20,33v2,23,17,50,37,70v21,-19,25,-54,33,-91v0,-6,2,-31,13,-29","w":157,"k":{"_":14,".":18,",":22}},"w":{"d":"68,-31v27,-6,6,-79,38,-84v22,-4,38,76,55,74v24,-11,-11,-79,22,-79v13,0,24,12,24,25v0,24,-24,101,-45,99v-17,-2,-37,-30,-51,-47v-3,39,-57,73,-79,30v-9,-16,-29,-95,-29,-117v0,-9,6,-14,18,-14v28,0,25,17,25,48v0,26,6,56,22,65","w":217,"k":{",":14}},"x":{"d":"137,-141v10,0,32,8,31,18v-11,18,-61,12,-70,39v8,22,60,29,64,54v1,9,-10,16,-19,16v-9,5,-66,-39,-68,-39v-23,8,-32,61,-57,67v-7,0,-11,-4,-11,-14v-1,-27,29,-57,40,-77v-12,-14,-41,-22,-41,-45v0,-9,11,-19,21,-18v13,-3,35,32,45,31v6,-1,51,-38,65,-32","w":172},"y":{"d":"134,-120v7,-19,31,-6,32,8v-26,68,-72,115,-100,187v-5,13,-31,16,-28,-3v5,-22,28,-63,50,-103v-41,-27,-77,-58,-88,-95v0,-14,21,-27,31,-13v19,25,46,60,73,77v16,-12,22,-38,30,-58","w":172,"k":{"_":21,".":14,",":25}},"z":{"d":"52,-26v26,14,100,-37,103,12v0,11,-18,12,-29,14v-28,7,-59,15,-93,13v-42,-13,-5,-66,11,-82v10,-18,26,-30,22,-47v-4,-1,-22,11,-26,11v-9,0,-24,-11,-23,-21v3,-23,45,-19,78,-31v10,0,15,6,15,19v-1,34,-44,81,-58,112","w":152},"{":{"d":"121,51v7,-1,12,10,11,18v-16,51,-121,23,-113,-32v-1,-19,12,-51,29,-78v-21,1,-40,-5,-38,-19v-5,-11,35,-40,35,-45v-9,-16,-61,-46,-31,-76v20,-20,60,-53,97,-72v10,0,19,15,7,22v-6,4,-51,41,-78,60v-22,27,42,39,41,64v0,15,-14,25,-23,33v13,-2,27,7,27,18v0,11,-44,71,-38,88v-1,22,19,35,40,35v13,3,28,-14,34,-16","w":133},"|":{"d":"46,-219v-7,68,-5,157,1,221v2,16,-35,28,-35,10r3,-202v2,-10,-3,-46,14,-44v7,0,18,7,17,15","w":58},"}":{"d":"72,-72v66,36,32,150,-34,158v-23,3,-22,-31,-6,-33v4,-1,6,6,9,5v14,-3,47,-42,43,-60v0,-22,-13,-38,-37,-48v-12,-6,-14,-11,-13,-25v-6,-13,-23,-26,-22,-49v6,-21,49,-50,49,-77v0,-27,-53,10,-55,-19v0,-13,10,-18,27,-17v33,2,54,6,56,33v6,17,-41,75,-42,83v0,11,10,10,21,9v12,-1,20,15,21,24v3,6,-16,15,-17,16","w":120},"~":{"d":"62,-170v-31,2,-27,68,-53,68v-7,0,-11,-3,-11,-11v15,-46,30,-84,71,-89v32,-4,31,83,65,40v12,-14,20,-30,22,-48v1,-13,16,-14,24,-6v4,3,6,7,6,11v-19,50,-31,75,-77,89v-26,1,-27,-48,-47,-54","w":188},"\u2026":{"d":"183,-40v34,-4,38,45,12,50v-18,-3,-46,-44,-12,-50xm113,-44v26,-3,39,48,8,49v-21,1,-46,-49,-8,-49xm12,-27v-1,-13,15,-22,28,-22v40,1,12,64,0,75v-8,2,-30,-44,-28,-53","w":235},"\u2018":{"d":"14,-249v16,0,27,14,21,34v0,25,9,42,25,50v16,8,5,27,-10,27v-34,0,-54,-40,-53,-75v1,-17,0,-36,17,-36","w":68,"k":{"J":28,"A":32}},"\u2019":{"d":"18,-136v-30,-12,6,-38,6,-62v0,-21,-2,-52,25,-51v11,0,16,6,16,16v-1,52,-10,83,-47,97","w":75},"\u201c":{"d":"84,-243v21,-5,26,73,34,82v1,12,-18,27,-25,12v-10,-19,-32,-54,-33,-74v0,-10,13,-21,24,-20xm42,-207v-4,13,24,60,25,67v1,13,-13,16,-20,8v-28,-34,-44,-60,-44,-81v0,-17,13,-40,30,-39v26,1,9,29,9,45","w":123,"k":{"J":31,"A":42}},"\u201d":{"d":"114,-216v0,27,-16,69,-47,89v-26,-8,6,-45,4,-62v5,-22,2,-64,25,-64v12,0,18,12,18,37xm39,-250v51,9,11,96,-15,107v-35,-13,7,-45,2,-81v0,-9,0,-29,13,-26","w":123},"\u2013":{"d":"13,-108v57,0,127,-14,135,22v0,12,-22,9,-36,9v-16,0,-78,5,-93,6v-15,2,-24,-37,-6,-37","w":154},"\u2014":{"d":"14,-103r256,2v6,0,9,4,9,13v0,28,-55,15,-96,16r-166,5v-11,0,-16,-7,-16,-19v1,-7,5,-18,13,-17","w":284},"\u2122":{"d":"201,-214v-7,-16,15,-38,27,-23v7,16,17,44,21,62v0,10,-4,16,-12,16v-9,5,-20,-31,-22,-33v-2,0,-20,21,-25,18v-4,1,-16,-10,-26,-20v-4,7,-4,44,-20,41v-44,-7,8,-42,1,-72v-2,-7,15,-14,21,-15v9,-2,25,52,35,26xm115,-241v10,-4,22,11,23,19v0,18,-57,4,-53,25v3,13,13,60,-3,63v-18,3,-14,-69,-32,-61v-19,4,-50,14,-52,-12v0,-4,2,-7,8,-8v33,-5,72,-12,109,-26","w":258},"\u00d7":{"d":"150,-141v17,-22,55,2,29,19v-31,4,-47,25,-65,43v21,16,35,39,61,50v14,12,-5,42,-22,29v-23,-18,-42,-41,-64,-58v-12,6,-29,20,-34,32v1,14,-14,19,-28,16v-41,-28,28,-45,43,-67r-63,-60v-15,-16,8,-44,26,-33v22,25,39,54,63,76v21,-9,33,-37,54,-47","w":195},"\u00a0":{"w":98}}});


Cufon.replace('h3', { fontFamily: 'FeltTip' });
