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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
// $Id: poormanscron.js,v 1.1.2.3 2010/01/17 00:27:52 davereid Exp $
(function ($) {

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

})(jQuery);
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.04
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),hasClass:function(C,B){return RegExp("(?:^|\\s)"+B+"(?=\\s|$)").test(C.className)},quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var B={inline:1,"inline-block":1,"run-in":1};return function(E,C,D){if(B[C.get("display")]){return E}if(!D.previousSibling){E=E.replace(/^\s+/,"")}if(!D.nextSibling){E=E.replace(/\s+$/,"")}return E}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I-1]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this)}function E(F){C(this)}function C(F){setTimeout(function(){m.replace(F,d.get(F).options,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var B={},D,F;for(var E=0,C=arguments.length;D=arguments[E],E<C;++E){for(F in D){if(k(D,F)){B[F]=D[F]}}}return B}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(C,J){var B=n.getStyle(v(C,J)).extend(J);var D=c(C,B),E,H,G,F,I;if(!D){return}for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E)}else{F=E}if(G){continue}}if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,F),B,J,E,C),F);F=null}if(H==1&&E.firstChild){if(n.hasClass(E,"cufon")){z[J.engine](D,null,B,J,E,C)}else{arguments.callee(E,J)}}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.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",textShadow:"none"};var p={words:/[^\S\u00a0]+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){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)}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode((".cufon-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.alt}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("span");s.className="cufon cufon-canvas";s.alt=w;n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("span");S.className="cufon-alt";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">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"));function c(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("span");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("span");q.className="cufon-vml-canvas";y.appendChild(q);if(C.printable){var Z=document.createElement("span");Z.className="cufon-alt";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":288,"face":{"font-family":"Chunder","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 5 8 0 0 2 0 4","ascent":"288","descent":"-72","cap-height":"2","bbox":"-60 -348.872 429.171 199.2","underline-thickness":"18","underline-position":"-18","stemh":"20","stemv":"55","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":192},"$":{"d":"54,-23v-24,-15,-69,-50,-41,-82v16,-4,38,5,29,23v1,9,-19,11,-9,21v9,8,20,18,33,16v10,-24,23,-45,34,-67v0,-8,-18,-14,-23,-20v-29,-55,28,-100,85,-104v3,-16,20,-50,28,-66v5,3,11,0,17,2v-3,23,-19,45,-28,64v4,11,27,11,33,26v2,12,9,32,0,44v-11,9,-31,6,-28,-9v-1,-11,20,-11,13,-23v-4,-8,-17,-15,-23,-15v-8,18,-20,41,-25,60v32,17,53,45,38,78v-1,49,-72,72,-115,59v-10,22,-29,60,-47,73v1,-34,24,-52,29,-80xm149,-213v-24,-7,-35,4,-36,33v3,6,11,12,18,13v6,-9,17,-36,18,-46xm123,-106v-12,25,-34,47,-36,75v9,-1,18,1,28,-1v21,-9,17,-36,24,-49v1,-12,-7,-19,-16,-25","w":227},"%":{"d":"172,-37v-6,10,-46,28,-63,11v-17,-17,-11,-42,-1,-52v10,-10,26,-28,47,-16v21,12,23,47,17,57xm142,-181v-28,37,-66,105,-84,148v-2,2,-51,15,-51,15v14,-27,24,-57,56,-90v18,-18,52,-60,52,-60v-3,2,-46,8,-51,2v0,0,3,9,-2,30v-5,21,-24,24,-43,15v-19,-9,-22,-33,-8,-65v14,-32,39,-7,47,-4v8,3,5,9,27,15v22,6,47,-20,51,-14v4,6,10,6,6,8xm149,-81v-22,-11,-36,12,-38,23v-2,12,12,39,32,26v20,-13,29,-37,6,-49xm51,-154v7,-16,3,-29,-14,-29v-28,1,-28,40,-10,51v10,6,17,-6,24,-22","w":180},"&":{"d":"168,-60v-24,35,-48,71,-96,80v-37,8,-75,-13,-67,-57v6,-33,30,-63,59,-76v10,-6,5,-15,-6,-16v-12,-12,-15,-32,-6,-44v10,-24,27,-54,53,-63v33,-11,75,-9,85,17v11,29,-17,81,-54,65v-12,-25,11,-51,30,-53v4,-13,-17,-13,-30,-9v-24,8,-56,44,-42,77v2,21,31,9,33,28v-31,10,-48,43,-61,71v-2,11,-15,28,-2,34v14,6,25,-15,36,-24v19,-25,37,-49,50,-77v-14,-3,-18,-20,-32,-23v-10,-9,4,-22,13,-18v15,6,22,26,43,21v33,-8,38,-4,67,-27v4,-2,8,-1,11,1v-6,20,-38,34,-55,47v-1,1,-2,21,-2,25v-12,15,-15,66,-14,81v5,2,16,-6,19,1v-9,18,-37,23,-46,5v-5,-24,12,-44,17,-64v-1,-1,-2,-2,-3,-2","w":252},"'":{"d":"75,-289v3,10,-6,30,-13,38v-18,47,-17,58,-30,100v-20,-2,-18,-100,-3,-130v12,-24,43,-18,46,-8","w":93},"(":{"d":"77,2v-21,5,-32,-28,-41,-44v-24,-42,-30,-98,-24,-147v12,-18,11,-43,25,-60v13,-8,18,-31,35,-30v4,9,-3,15,-7,21v-26,70,-27,162,0,226v5,12,12,21,12,34","w":82},")":{"d":"73,-189v6,48,0,105,-24,146v-10,17,-18,47,-41,45v0,-13,7,-23,13,-34v16,-33,17,-79,17,-112v0,-42,-3,-81,-19,-114v-3,-7,-10,-12,-6,-21v17,-1,22,22,35,30v15,17,12,42,25,60","w":82},"*":{"d":"76,-197v13,-15,6,-40,25,-52v26,3,-4,42,-2,56v5,-5,35,-50,54,-41v16,21,-33,31,-49,48v5,10,37,7,33,18v1,5,-6,8,-10,11v-15,12,-19,-15,-33,-13v-12,20,18,40,-15,47v-15,-9,-1,-30,-6,-45v-17,3,-33,46,-52,21v-3,-17,36,-20,43,-37v-7,-20,-50,4,-25,-39v20,-8,25,16,37,26","w":160},"+":{"d":"76,-191v5,3,13,-4,15,3v2,0,14,-5,16,5v-6,12,1,35,-1,56v28,6,60,-15,68,11v0,14,-6,14,-10,14v-14,0,-36,2,-59,3v-6,28,14,58,-11,66v-14,0,-14,-6,-14,-11v0,-13,-1,-32,-2,-53v-45,2,-73,7,-59,-15v0,-2,-5,-14,5,-17v10,6,34,0,52,2v-2,-32,-4,-61,0,-64","w":190},",":{"d":"122,-80v24,55,-38,138,-82,134v20,-14,44,-34,45,-71v-4,-7,-14,3,-18,-1v-24,-4,-33,-30,-17,-50v19,-24,46,-31,72,-12","w":140},"-":{"d":"206,-160v-2,21,-9,42,-27,51v-30,14,-67,2,-95,-10v-19,-16,-47,-9,-69,4v-1,-28,36,-48,63,-39v39,24,94,35,124,-7v1,0,3,-1,4,1","w":220},".":{"d":"116,-41v21,33,-12,84,-53,67v-13,-9,-18,-25,-13,-42v8,-26,39,-43,66,-25","w":153},"\/":{"d":"49,-31v-2,7,-7,34,-14,44v-4,-24,-26,2,-29,-15v30,-64,63,-168,89,-236v3,-9,13,-26,9,-31v-5,-29,19,4,22,-4v5,-4,9,6,15,3v3,13,-68,174,-92,239","w":144},"0":{"d":"136,-169v28,56,0,151,-60,163v-54,10,-75,-78,-49,-114v13,-39,72,-96,109,-49xm101,-170v-32,24,-39,75,-48,114v-3,14,-2,41,17,31v23,-40,39,-90,42,-142v-3,-4,-7,-3,-11,-3","w":156},"1":{"d":"90,-17v-20,-5,-38,-1,-57,-4v16,-54,54,-96,70,-145v-11,6,-75,51,-86,53v7,-19,52,-41,68,-56v16,-9,26,-32,39,-42v11,3,14,23,26,26r-45,110v-1,20,-22,40,-15,58","w":140},"2":{"d":"202,-62v-18,30,-51,62,-89,57v-25,-9,-60,-26,-85,-10v-1,0,-3,0,-4,-1v-1,-24,30,-36,46,-50v28,-23,70,-71,35,-111v-13,-5,-26,0,-30,10v5,2,13,1,17,5v-2,20,-25,38,-42,19v-23,-27,25,-51,50,-55v45,-7,86,33,54,74v-13,27,-42,46,-63,65v20,6,44,22,69,11v13,-6,26,-24,42,-14","w":212},"3":{"d":"62,-52v13,-24,35,-43,50,-66v-13,-10,-35,1,-51,-1v-11,8,-6,31,-25,28v-4,-14,5,-32,9,-47v39,4,77,-2,113,-6v-2,8,14,8,5,16v-5,22,-25,38,-31,59v30,15,41,64,32,98v-17,62,-108,95,-169,50v-35,-15,-10,-84,27,-62v9,16,4,48,-18,47v1,22,47,21,66,9v26,-17,51,-43,46,-85v-3,-27,-38,-26,-54,-40","w":175},"4":{"d":"102,-126v11,-19,13,-48,24,-68v17,0,34,-3,50,1v-7,22,-12,46,-22,66v9,3,23,-3,33,1v3,6,-5,9,-2,15v-5,5,-18,2,-32,3v-13,25,-22,56,-30,86v-15,1,-34,9,-45,3v9,-26,11,-59,20,-85v-23,0,-50,-1,-72,3v-3,0,-7,-1,-5,-4v37,-44,71,-102,83,-156v5,1,12,-6,14,0v-2,57,-34,96,-56,136v12,6,26,-1,40,-1","w":197},"5":{"d":"190,-183v-5,18,-6,40,-16,52v-20,-3,7,-29,-6,-36v-15,6,-30,9,-47,8v-12,19,-17,41,-29,61v32,4,69,20,76,53v5,20,-2,40,-9,57v-35,36,-101,53,-141,21v-19,-15,-8,-45,12,-47v15,-2,26,16,19,30v0,5,-2,12,6,12v36,0,81,-31,62,-71v-14,-29,-48,-32,-80,-39v-11,-14,9,-26,15,-39v7,-16,11,-33,18,-49v-3,-17,16,-4,25,-9v29,-3,67,-8,95,-4","w":191},"6":{"d":"157,-72v8,-29,-43,-16,-39,-36v21,-17,59,-12,79,2v17,26,10,60,-15,75v-40,24,-103,26,-142,-2v-36,-56,17,-131,64,-154v33,-28,74,-50,124,-55v11,11,-4,13,-11,16v-22,14,-42,35,-60,54v-28,10,-44,42,-58,66v-16,11,-27,39,-18,61v29,29,61,-2,76,-27","w":217},"7":{"d":"28,59v11,-34,33,-70,47,-105v-13,-6,-30,-3,-44,-7v2,-21,34,-10,53,-14r30,-69v-17,-5,-43,-1,-64,-2v-12,6,-16,34,-33,25v2,-16,17,-28,22,-43v55,-2,113,-9,164,-1v-3,9,-20,9,-25,17v-16,28,-24,57,-44,83v8,6,29,5,44,10v3,6,-1,11,-4,16v-16,-4,-35,-7,-52,-8v-16,17,-25,38,-35,60v21,-1,25,34,6,39v-18,10,-41,-7,-65,-1","w":189},"8":{"d":"19,-67v5,-28,19,-61,44,-77v-23,-44,27,-81,74,-68v41,11,36,62,7,83v21,28,14,69,-1,95v-12,21,-37,20,-58,23v-32,-6,-73,-13,-66,-56xm130,-203v-11,-9,-20,4,-25,12v-9,15,-21,33,-11,49v31,12,31,-35,36,-61xm108,-81v4,-14,13,-48,-15,-44v-27,19,-36,48,-38,82v6,12,24,15,35,4v12,-12,13,-27,18,-42","w":177},"9":{"d":"82,-177v91,-17,134,61,93,135v-20,64,-62,114,-119,144v-5,1,-9,-5,-12,-8v5,-3,12,-3,16,-8v34,-36,50,-82,65,-127v-2,-10,5,-36,-7,-32v-35,51,-127,15,-94,-47v7,-24,29,-51,58,-57xm127,-157v-31,-24,-47,32,-48,56v-1,10,0,22,11,27v38,0,44,-50,37,-83","w":201},":":{"d":"90,-82v19,30,-12,73,-48,59v-28,-19,-6,-61,18,-66v11,-2,22,0,30,7xm114,-188v20,31,-10,74,-47,59v-28,-18,-9,-60,17,-65v11,-2,22,-1,30,6","w":134},";":{"d":"33,20v9,-9,22,-18,23,-33v-9,-8,-24,-2,-30,-19v-11,-33,37,-74,64,-48v15,41,-20,112,-57,100xm114,-188v19,30,-12,78,-48,59v-31,-16,-8,-60,18,-65v11,-2,22,-1,30,6","w":140},"<":{"d":"57,-113v31,25,59,51,94,73v-14,4,-3,27,-14,29v-34,-33,-76,-55,-113,-87v-20,3,-14,-13,-6,-22v-2,-10,3,-25,17,-10v25,-26,34,-39,61,-67v3,-5,18,-14,14,-18v-3,-18,18,2,20,3v7,-2,9,6,16,6v1,9,-53,58,-89,93","w":161},"=":{"d":"184,-143v4,4,-1,10,2,15v-13,8,-135,-7,-173,-3v12,-10,-7,-21,2,-29v26,5,103,0,145,3v5,-1,17,4,19,-1v13,-13,5,13,5,15xm12,-62v3,-5,-2,-12,3,-15v0,-2,-8,-29,5,-16v38,4,140,2,164,-1v9,8,-10,19,2,29v-40,-4,-160,10,-174,3","w":200},">":{"d":"139,-137v3,14,5,18,12,33v3,6,-10,6,-15,6v-33,32,-62,45,-98,73v-13,3,-7,15,-15,14v-12,-1,2,-27,-14,-29v35,-23,64,-46,94,-73v-36,-36,-90,-84,-89,-93v7,0,9,-8,16,-6v2,-1,23,-21,20,-3v-4,4,10,13,14,18v27,28,37,41,61,67v7,-5,12,-7,14,-7","w":161},"?":{"d":"101,-285v102,-17,107,101,42,139v-36,21,-81,56,-68,65v12,9,53,-6,53,-6v0,0,-30,34,-64,25v-41,-11,-16,-75,8,-87v11,-2,64,-30,65,-56v1,-26,7,-65,-27,-63v-18,1,-48,40,-44,53v4,13,14,16,24,13v-17,19,-47,11,-52,-10v-5,-21,19,-66,63,-73xm78,0v-23,18,-67,-21,-34,-40v20,-11,25,-3,37,13v6,8,6,16,-3,27","w":180},"@":{"d":"91,-142v18,-10,40,-11,60,5v2,-2,0,-8,2,-14v4,-12,36,13,40,4v-9,24,-22,51,-19,76v39,-14,37,-39,37,-107v0,-11,-8,-39,-34,-47v-26,-8,-33,7,-61,13v-41,9,-79,84,-87,146v-4,34,53,55,69,61v0,0,55,7,91,-14v56,-33,63,-67,93,-117r9,0v0,0,-31,79,-45,94v-14,15,-33,33,-53,42v-20,9,-97,10,-97,10v-28,3,-55,3,-74,-26v-19,-29,-9,-82,21,-144v30,-62,68,-77,114,-78v46,0,85,20,90,43v9,45,-36,136,-87,146v-9,2,-20,1,-26,-4v-3,-3,-1,-12,-9,-6v-28,18,-64,6,-64,-26v5,-15,14,-48,30,-57xm146,-123v-12,-13,-24,-15,-34,0v-9,13,-14,47,-9,59v12,6,24,-4,33,-12v4,-14,3,-34,10,-47","w":278},"A":{"d":"328,-57v-15,7,-65,92,-122,57v-28,-17,-6,-101,-4,-118v-6,-4,-43,-2,-48,1v0,0,-12,34,-25,61v-13,27,-52,56,-52,56v0,0,1,0,-4,16v-5,17,-45,30,-45,30r21,-16v8,-6,3,-30,3,-30v0,0,-23,10,-39,-18v-16,-28,8,-51,33,-60v25,-9,32,26,32,26v0,0,20,-27,57,-108v37,-80,96,-103,112,-109v15,-6,69,2,69,2v0,0,-22,4,-37,18v-21,61,-23,114,-38,189v-2,6,-1,24,8,30v9,5,79,-27,79,-27xm227,-220v0,0,-7,3,-29,20v-22,17,-37,55,-37,55r48,-1xm59,-31v0,0,2,-36,-11,-30v-13,6,-23,29,-17,34v11,9,26,-5,28,-4"},"B":{"d":"232,-71v-13,70,-63,91,-138,88v-47,10,-95,-5,-101,-44v7,-8,21,10,26,15v10,11,28,16,33,12v10,-55,12,-149,21,-209v1,-13,6,-24,-10,-28v-8,-2,-38,18,-42,24v-8,20,22,16,29,18r9,-15r5,13v-15,11,-35,20,-59,9v-9,-8,-17,-22,-10,-35v26,-48,106,-38,151,-47v30,1,66,0,82,31v15,29,-7,61,-26,75v18,19,35,66,30,93xm121,-152v34,-3,69,-61,45,-91v-12,0,-24,-10,-34,0xm173,-55v10,-24,11,-56,-10,-89v-11,6,-24,8,-43,8v-5,40,-4,98,-14,135v49,-4,48,-6,67,-54","w":245},"C":{"d":"252,-62v-7,25,-70,53,-91,61v-46,18,-99,5,-137,-22v-7,-17,-23,-33,-14,-54v-8,-61,25,-124,71,-161v42,-34,142,-15,118,62v-11,35,-63,32,-82,2v3,-7,2,-20,12,-20v4,15,17,28,28,11v3,-13,-4,-22,-10,-31v-8,-12,-21,-3,-32,-2v-24,18,-34,49,-34,81v0,35,2,84,31,105v31,9,86,9,132,-37v7,-3,5,2,8,5","w":217},"D":{"d":"144,-17v-35,35,-89,49,-134,26v-9,-10,-8,-23,-8,-37v10,-2,5,13,14,13v21,5,27,-21,34,-35v20,-39,34,-88,22,-136v-3,-14,-22,-20,-30,-5v0,10,9,19,18,22v-26,25,-69,-13,-46,-42v22,-27,54,-16,80,-28v46,-4,91,12,115,53v21,67,-21,125,-65,169xm118,-197v6,18,-7,37,-2,55v-2,44,-9,84,-23,123v4,0,8,1,11,-2v45,-37,63,-94,51,-156v-6,-14,-21,-21,-33,-27","w":217},"E":{"d":"258,-54v5,6,-1,13,-4,18v-45,44,-85,60,-148,60v-36,0,-93,-8,-102,-50v-8,-36,21,-73,56,-84v-45,-13,-37,-69,-4,-91v28,-19,61,-33,98,-24v13,-22,57,-32,71,-5r0,7v-14,-3,-35,-8,-40,8v26,4,32,38,7,47v-18,0,-49,4,-56,-20v0,-4,8,-7,3,-11v-24,-1,-36,22,-49,37v-9,49,65,-1,81,37v-4,44,-71,10,-87,54v-6,15,-24,38,-6,50v69,45,132,2,180,-33xm186,-188v-4,-8,-33,-19,-28,2v2,8,12,11,21,10v5,-1,6,-7,7,-12","w":212},"F":{"d":"22,-180v-18,3,-38,-9,-38,-29v0,-27,29,-26,46,-33r-16,-9v10,-8,29,-4,40,3v94,-15,160,15,237,33v9,3,19,-9,23,-2v-37,17,-48,54,-59,86v22,2,46,1,58,23v-2,8,-2,16,-6,22v-8,0,-9,-11,-14,-16v-12,-1,-24,-13,-36,-3v-21,56,-53,126,-122,138v-24,-4,-49,-11,-62,-31v-3,-11,4,-18,7,-26v20,-16,70,-12,57,21v-3,2,-4,6,-8,5v-2,-10,-17,-23,-27,-12v-2,19,31,18,45,11v30,-27,49,-59,46,-99v-18,-11,-50,10,-69,-7v-23,-11,-12,-48,10,-43v0,8,-10,18,2,23v23,10,38,-9,59,-10v8,-3,1,-12,6,-17v5,-18,19,-35,36,-47v-55,-7,-115,-21,-171,-10v-10,12,-25,41,-44,29xm40,-211v-10,-11,-35,-3,-36,12v12,13,34,1,36,-12","w":312},"G":{"d":"7,-115v25,-60,76,-126,167,-115v13,-12,31,-17,46,-17r-24,23v7,6,24,15,20,29v-7,23,-42,27,-54,2v-3,-6,6,-11,0,-17v-56,10,-75,69,-97,111v-13,44,67,56,101,29v8,-27,17,-54,22,-82v-5,-9,-12,2,-20,-2v-1,-17,30,-9,48,-9v28,0,52,-9,76,0v-3,6,-20,1,-28,9v-30,13,-25,50,-36,74v1,11,-11,19,-4,30v34,-18,99,-28,127,-8v-3,4,-6,3,-11,8v-46,-16,-105,28,-129,50v-11,67,-32,131,-98,158v-27,11,-64,-10,-58,-41v9,-50,54,-89,95,-125v-3,-6,6,-9,0,-13v-61,11,-163,-3,-141,-92xm192,-201v-3,-4,-7,-4,-10,-6r2,12v6,1,6,-2,8,-6xm146,26v-36,23,-68,58,-68,100v3,10,10,14,20,13v25,-25,33,-55,46,-85v0,-9,7,-18,2,-28","w":298},"H":{"d":"224,-139v15,18,67,9,83,2v-19,20,-60,32,-94,35v-1,33,-28,77,-5,98v15,-18,49,-28,61,-3v8,37,-40,49,-73,40v-20,-12,-36,-28,-34,-54v3,-30,11,-58,12,-88v-4,-6,-12,-4,-17,-2r-46,-15v-9,4,-8,15,-6,22v-5,14,1,43,-10,59v4,33,-35,56,-70,40v-1,-7,9,-8,10,-14v20,-27,17,-78,20,-113v-17,-16,-36,11,-51,7v10,-24,38,-28,60,-34r5,-12v-5,-24,19,-63,-14,-73v-18,0,-37,4,-45,21v9,16,50,-19,33,12v-20,17,-64,30,-70,-4v-5,-27,28,-36,46,-46v24,-5,50,-13,74,0v12,10,20,23,26,35v-2,21,4,44,-6,61v18,12,37,21,63,23r26,-91v-1,-5,-6,-24,-21,-19v-10,7,-8,21,0,25v-12,1,-20,-6,-29,-11v-14,-37,51,-54,74,-28v31,34,6,88,-2,127xm244,-8v-11,-1,-27,8,-27,8v0,0,7,19,22,14v15,-5,16,-21,5,-22","w":280},"I":{"d":"82,-245v47,29,124,-33,151,28v-24,-4,-51,-2,-70,12v11,73,-4,132,-22,188v18,7,40,2,57,-6v1,17,-14,18,-24,25v-62,16,-115,-25,-172,-2v17,-34,55,-31,94,-35v24,-46,32,-110,25,-170v-18,0,-30,-8,-38,-23v3,-7,-18,-17,-1,-17","w":210},"J":{"d":"310,-46v-57,6,-86,41,-125,69v-24,43,-9,116,-72,128v-39,7,-64,-30,-55,-66v9,-35,39,-67,73,-81v-1,-4,1,-7,-2,-10v-80,14,-135,-119,-94,-207v44,-48,123,-66,172,-21v31,69,-19,158,-16,220v35,-20,73,-52,119,-32xm161,-223v-5,-17,-22,-18,-34,-14v-35,38,-61,90,-51,147v4,23,23,40,38,43v21,-9,23,-27,12,-59v6,6,21,32,19,44v22,-45,32,-109,16,-161xm110,123v10,-27,25,-60,24,-87v-29,17,-72,52,-47,94v7,6,20,2,23,-7","w":246},"K":{"d":"343,-77v0,6,2,16,-1,22v-18,39,-63,77,-108,81v-37,3,-56,-16,-76,-43v-13,-16,-33,-51,-30,-73v-2,-6,0,-22,-12,-10v-6,32,-14,64,-15,97v-15,31,-37,45,-61,45v-25,0,-55,-21,-36,-43v3,-1,5,-2,9,-2v-1,11,5,23,20,23v9,0,20,-20,25,-27v18,-61,23,-122,20,-188v7,-34,-85,6,-67,-54v5,-6,15,-10,24,-7v-5,5,-11,10,-9,18v8,13,21,10,29,7v31,-12,53,-36,85,-61r8,5v-12,36,-16,101,-20,140r3,3v40,-2,96,-56,122,-89v9,-12,-4,-31,-17,-22v-9,6,-8,14,3,17v-12,17,-39,-4,-31,-22v13,-29,63,-24,74,5v5,47,-71,124,-103,147v3,33,4,83,46,97v39,13,77,-5,100,-36v6,-7,10,-27,18,-30","w":304},"L":{"d":"213,-183v-24,-12,-11,-59,0,-82v-8,-3,-15,12,-20,19v-28,49,-38,107,-44,175v42,15,78,39,118,57v39,18,84,-7,100,-35v2,6,5,9,6,18v-42,48,-101,59,-166,33v-27,-11,-53,-29,-81,-38v-21,26,-50,42,-83,32v-15,-5,-35,-11,-39,-30v9,-42,52,-66,103,-52v12,-55,19,-109,39,-157v18,-26,38,-63,71,-53v17,24,30,-9,49,-4v17,4,40,1,45,23v5,21,-10,51,-28,47v17,-15,14,-50,-9,-49v-8,1,-15,5,-20,13v18,34,-4,102,-41,83xm234,-245v-3,13,-18,34,-4,43v8,-12,10,-30,4,-43xm105,-39v-10,3,-3,-11,-3,-11v-28,-20,-90,0,-69,32v26,14,54,-1,72,-21","w":319},"M":{"d":"429,-70v4,44,-63,75,-106,78v-44,13,-83,-23,-78,-70v5,-44,23,-124,45,-166v-35,12,-55,66,-75,94v1,10,1,34,16,31v4,0,8,-8,10,-3v-8,23,-42,25,-59,7v-19,-21,-29,-46,-31,-75r-4,-4v-1,10,-4,22,-3,31v-10,7,7,16,-4,24v6,8,0,15,4,24v4,9,-8,14,-1,22v-12,59,-94,109,-143,57v-7,-44,36,-59,66,-64r5,5v-10,9,-37,16,-29,37v6,7,17,12,26,7v32,-28,31,-73,42,-112v1,-30,12,-66,-5,-93v-12,-3,-19,6,-29,9v5,-31,43,-50,78,-39v29,27,47,64,53,103r3,0v30,-42,47,-112,109,-112v22,0,50,24,65,-4v1,-7,-4,-13,-1,-19v12,6,16,19,19,31v-2,24,-21,31,-46,31v-19,50,-53,125,-53,182v0,14,17,32,27,37v29,0,72,-13,99,-49","w":391},"N":{"d":"314,-35v-32,55,-83,57,-102,57v-21,0,-43,-3,-56,-20v-38,-47,-13,-129,-51,-174v-8,64,-31,182,-105,172v27,-25,51,-61,40,-105v14,-26,5,-64,-1,-92v-25,11,-37,-23,-30,-45v8,-24,28,-29,45,-35v33,5,69,11,86,53v19,46,9,106,34,146v1,-66,15,-141,61,-168v13,-3,28,-4,40,2v-18,8,-21,31,-29,49v-11,58,-29,112,-27,176v-4,10,6,12,11,15v11,9,49,4,84,-31xm41,-210v-1,-8,3,-29,-4,-32v-4,3,-12,11,-12,16v0,5,9,20,16,16","w":272},"O":{"d":"299,-229v2,0,5,3,6,1v-8,25,-34,46,-58,50v-8,6,3,13,2,21v17,80,-54,144,-106,157v-39,10,-97,12,-120,-31v-40,-73,12,-168,71,-198v26,-14,60,-16,86,-4v20,1,40,9,52,30v23,-6,48,-9,67,-26xm192,-196v-14,-10,-33,-12,-47,0v-9,18,18,26,33,20v5,-4,16,-11,14,-20xm116,-180v-34,30,-49,79,-53,135v3,11,11,14,21,15v55,-10,102,-66,113,-125v-29,9,-69,6,-81,-25","w":260},"P":{"d":"239,-237v19,19,20,61,2,87v-23,34,-59,43,-96,46v-14,43,-10,95,-48,126v-31,25,-105,4,-94,-32v7,12,20,15,32,19v39,-10,37,-73,34,-119v-11,-10,-33,-6,-48,-20v-3,-12,-4,-28,3,-38v7,17,26,20,42,23v7,-51,27,-99,74,-110v35,-9,70,1,99,18xm194,-225v-7,-10,-17,-19,-27,-12v-32,21,-33,69,-26,107v36,-12,66,-54,53,-95","w":258},"Q":{"d":"302,36v22,0,35,34,16,51v-4,-1,-6,3,-10,1v10,-10,6,-34,-12,-31v-20,14,-21,44,-44,50v-26,17,-55,-1,-81,-6v-35,-22,-40,-63,-44,-102v-38,-5,-82,-8,-103,-44v-53,-89,2,-215,105,-215v32,0,64,21,72,53v31,58,29,146,-14,198v2,30,6,65,35,79v36,18,48,-34,80,-34xm160,-74v8,-39,8,-88,-7,-123v-8,-9,-13,-29,-29,-25v-32,18,-34,61,-31,97v9,-6,17,4,26,-2v26,1,35,32,41,53xm132,-70v-13,-14,-16,-42,-40,-39v-8,15,0,26,5,40v8,11,21,9,32,13v8,-1,3,-12,3,-14","w":237},"R":{"d":"342,-33v2,0,7,0,5,1v-21,31,-57,96,-121,80v-51,-13,-78,-73,-90,-126v-12,25,-26,78,-63,84v-31,5,-77,-13,-59,-47v5,-3,9,-15,15,-9v-1,6,-10,13,-2,19v50,19,48,-55,58,-82v8,-22,10,-47,18,-69r-2,-2v-11,9,-30,10,-42,4v-22,-20,-6,-51,16,-57v62,-17,135,-24,193,8v24,13,23,53,11,76v-14,27,-52,52,-83,60v-2,54,28,105,87,96v14,-2,51,-19,59,-36xm167,-222v0,17,-10,29,-9,46v17,4,36,21,32,44v22,-16,37,-45,32,-74v-9,-23,-35,-14,-55,-16xm107,-210v-8,-4,-28,0,-25,15v6,5,14,5,21,8v3,-6,0,-17,4,-23xm158,-117v8,-8,-2,-21,-6,-30v-10,4,-8,18,-13,27v5,3,15,2,19,3","w":297},"S":{"d":"207,-274v4,7,-8,2,-11,6v-16,5,-31,16,-42,29v21,2,50,18,42,44v-15,24,-59,26,-76,1v-2,-4,-1,-9,-7,-10v-3,5,-6,11,-3,17v46,45,139,116,60,177v-34,16,-76,26,-118,11v-18,13,-39,26,-64,21v15,-5,35,-14,44,-29v-25,-9,-37,-47,-9,-64v31,-19,82,8,54,42v20,5,43,-5,46,-24v-3,-22,-26,-39,-46,-48v-30,-23,-55,-58,-43,-94v12,-36,52,-48,89,-48v24,-19,52,-34,84,-31xm172,-206v-5,-10,-25,-18,-31,-5v0,8,-8,19,3,24v16,6,34,-6,28,-19xm61,-57v-16,-5,-19,7,-17,15v5,2,6,7,13,6","w":212},"T":{"d":"182,-196v-13,39,-15,84,-19,130v-5,56,-36,68,-82,70v-9,0,-22,-1,-44,-16v-35,-23,-41,-71,-41,-71v5,10,81,7,89,4v0,0,-37,25,-52,22v-21,-4,-13,-1,-10,10v7,28,46,39,60,21v33,-44,13,-121,34,-179v-32,-20,-50,27,-81,14v-12,-5,-28,-5,-33,-18v8,-10,8,-30,25,-31v12,-1,22,-5,34,-1v7,-6,-3,-9,-7,-14v13,-7,28,8,37,17v82,-30,153,44,224,-1v4,3,-1,5,-1,8v-30,42,-81,44,-133,35xm62,-221v-12,-13,-54,6,-29,18v14,0,23,-7,29,-18","w":272},"U":{"d":"322,-192v-1,-3,-20,-23,-28,-24v-53,13,-26,100,-56,140v-7,31,-31,65,-59,72v-66,15,-143,3,-143,-69v0,-22,9,-50,19,-69v-15,4,-36,6,-50,-8v-18,-47,41,-76,78,-71v10,7,26,11,29,27v11,58,-41,108,-6,158v45,33,84,-26,91,-60v12,-53,6,-121,53,-142v19,-8,39,-3,55,10v12,10,15,8,17,36xm58,-162v12,-10,10,-39,-7,-37v-11,7,-42,25,-20,38v8,5,19,0,27,-1","w":280},"V":{"d":"109,-202v12,14,26,127,27,153v5,7,12,-3,18,-4v64,-55,46,-186,149,-204v6,4,17,0,20,6v-42,4,-45,65,-54,100v-21,82,-72,148,-165,154v-6,-67,-9,-138,-28,-184v-23,23,-76,20,-80,-11v-5,-37,45,-75,86,-51v11,2,17,11,18,19v15,-4,43,-29,47,-37r3,4v-8,17,-28,41,-41,55xm60,-202v-4,-10,-12,-20,-24,-21v-7,4,-13,12,-13,20v0,17,30,17,37,1"},"W":{"d":"203,-86v22,-74,51,-172,142,-165v5,4,14,6,17,12v-23,4,-46,16,-59,37v-37,63,-27,150,-95,195v-26,17,-64,19,-90,-2v24,2,48,-1,65,-21v-5,-17,-6,-38,-15,-52v-33,38,-71,88,-142,77v20,-44,40,-123,21,-179v-14,-2,-39,-12,-45,-25v-3,-14,9,-24,20,-32v13,-4,23,-19,38,-14v15,5,17,21,18,35v17,1,33,-33,42,-29v-11,18,-16,42,-38,51v11,44,12,84,5,132v36,3,82,-67,96,-95v3,-6,-6,-20,-13,-11v1,7,8,15,-4,13v-8,2,-15,-4,-12,-12v-1,-23,38,-30,54,-15v5,30,-13,56,-20,83v8,5,9,12,15,17xm44,-203v-5,-8,-1,-35,-17,-25v-8,13,8,28,17,25","w":299},"X":{"d":"374,-73v-3,63,-86,111,-147,72v-29,-18,-49,-49,-60,-79v-23,46,-66,99,-139,77v-17,-10,-18,-41,3,-51v8,-1,21,-5,27,3v-4,5,-17,11,-12,21v6,5,17,7,23,3v37,-23,43,-65,70,-93v-8,-29,-22,-56,-46,-78v-15,14,-51,27,-75,13v-8,-10,-18,-20,-16,-34v17,-29,54,-31,84,-20v6,-8,5,-19,10,-28v14,13,6,39,27,48v18,13,32,33,44,51v11,-3,10,-17,18,-24v29,-27,57,-53,90,-72v20,-11,45,-18,64,-29v-43,41,-103,91,-129,144v3,39,25,70,42,103v13,25,54,24,84,14v11,-4,25,-18,38,-41xm76,-218v-12,-11,-37,-16,-48,1v-1,14,18,22,33,15v6,-3,18,-6,15,-16","w":321},"Y":{"d":"346,-68v-45,5,-83,18,-105,46v0,75,-4,122,-66,140v-12,-1,-23,-4,-30,-13v-31,-43,5,-85,31,-118v-1,-11,2,-25,-4,-35v-27,21,-59,35,-95,30v-51,-28,-18,-100,-8,-147v-8,0,-30,14,-40,12v-34,-8,-25,-54,1,-67v10,-5,25,-9,37,-5v9,3,21,16,26,1v3,-9,6,-24,6,-34v22,13,4,57,18,74v1,32,-14,71,0,98v11,10,20,39,59,16v5,-51,9,-114,34,-156v23,-7,23,-2,48,-5v0,8,18,1,15,6v-37,46,-46,116,-36,176v19,-18,30,-18,56,-22v18,-3,49,-5,53,3xm75,-193v-4,-14,-48,-20,-42,5v5,25,29,15,42,-5xm194,28v-9,-33,-24,9,-32,17v-4,16,-11,40,4,53v32,5,29,-44,28,-70"},"Z":{"d":"71,-256v14,-7,6,14,11,21v48,-11,99,-12,149,-5v18,2,32,-7,46,-16v-6,97,-59,158,-126,198r1,3v37,8,83,40,123,25v-2,-2,-2,-7,2,-6v3,4,-5,5,0,8v21,-4,39,-19,51,-36r3,0v-9,37,-46,71,-88,76v-62,8,-129,-40,-185,-11v-15,8,-20,36,-41,20v12,-15,22,-32,33,-47v47,-67,144,-110,166,-188v-47,-27,-60,25,-108,-4v-3,-1,-26,1,-30,1v-4,10,-9,26,-19,32v-29,17,-66,1,-54,-27v13,-17,34,-24,56,-25v3,-6,15,-10,10,-19xm54,-218v-13,-4,-32,3,-29,17v9,11,31,-5,29,-17"},"[":{"d":"56,-18v0,48,67,9,57,50r-7,1v-18,-20,-81,11,-94,-3v-5,-8,10,-21,3,-43v0,-60,-7,-156,-7,-216v-2,-9,4,-31,-4,-33v-22,-21,22,-11,25,-12v4,-11,17,-1,24,-7v9,0,55,-5,55,8v0,26,-55,3,-56,29v-3,72,4,155,4,226","w":122},"\\":{"d":"6,-270v7,3,12,-9,17,-1v2,0,25,-24,19,2v-4,5,7,22,10,31r78,210v1,21,13,13,11,26v-3,18,-25,-9,-29,15v-7,-10,-13,-37,-14,-44v-24,-65,-95,-226,-92,-239","w":144},"]":{"d":"109,-228r-7,228v-9,19,10,20,2,29v-13,15,-75,-16,-93,4v-12,1,-7,-12,-4,-18v4,-9,53,4,53,-33v0,-71,7,-154,4,-226v-1,-27,-55,-3,-55,-29v13,-16,71,-10,79,-1v3,1,47,-9,25,12v-8,2,-4,25,-4,34","w":122},"^":{"d":"72,-197v-2,6,-42,22,-45,31r-12,-2v0,0,47,-57,54,-61v23,1,25,17,46,31v7,8,21,25,14,33v-3,-5,-45,-31,-57,-32","w":151},"_":{"d":"169,59v-37,-5,-160,7,-174,-1v4,-8,-4,-23,9,-23v33,0,106,2,147,3v11,5,11,-7,16,-2v9,8,-10,12,2,23","w":165},"`":{"d":"102,-181v3,3,-1,9,-8,8v-7,-1,-45,-21,-59,-26v-14,-5,-12,-18,-10,-28v2,-10,17,-8,23,-5v6,3,51,48,54,51","w":130},"a":{"d":"270,-75v-19,33,-73,52,-84,60v-21,16,-71,29,-80,-2v-33,32,-106,23,-97,-31v9,-59,59,-140,135,-98v4,-38,51,-24,58,-8v-21,32,-41,74,-36,117v34,4,88,-28,101,-43v2,0,3,3,3,5xm110,-39v-2,-32,23,-63,31,-92v-14,-5,-45,-18,-57,5v-25,26,-43,77,-9,99v13,4,26,-1,35,-12","w":226},"b":{"d":"238,-106v-4,12,-43,28,-59,32v-22,47,-55,86,-125,75v-18,-3,-35,-23,-39,-43v-4,-26,11,-42,18,-67v12,-42,20,-71,33,-122v8,-31,52,-66,81,-39v0,7,9,9,10,15v14,47,-30,86,-60,100v0,0,-5,15,-6,21v27,-4,65,-11,85,15v6,8,3,17,8,25v14,2,37,-2,54,-12xm100,-172v24,-12,46,-54,30,-86v-22,18,-19,56,-30,86xm130,-103v0,-16,-25,-22,-40,-17v-5,5,-8,14,-6,22v8,4,23,6,32,5v6,-1,14,5,14,-10xm77,-86v-12,18,-21,40,-19,64v34,17,56,-30,62,-54v-15,-1,-33,4,-43,-10","w":204},"c":{"d":"126,-109v-25,8,-45,34,-49,63v5,14,14,25,35,23v37,-4,69,-7,109,-35v4,0,9,-1,7,5v-42,36,-120,80,-189,45v-16,-13,-29,-32,-30,-58v15,-50,58,-88,123,-80v16,14,32,-7,47,0v1,6,-9,8,-8,14v9,8,22,16,16,31v-12,28,-58,15,-61,-8xm165,-114v-7,-12,-24,-3,-22,8v6,13,27,6,22,-8","w":205},"d":{"d":"165,-30v32,5,78,-16,91,-27v1,0,4,-1,4,2v-26,26,-90,68,-148,51v-1,-3,-4,-4,-5,-7v-41,21,-107,12,-99,-41v8,-54,73,-118,133,-74v7,-26,21,-51,20,-79v-13,-12,-20,-28,-17,-46v12,-31,61,-58,86,-22v13,18,-1,40,-1,57v-3,11,17,17,28,14v-4,16,-26,25,-43,14xm184,-269v-20,7,-13,45,7,46v2,-1,4,-10,4,-12v-11,-6,5,-12,3,-23v-3,-5,-6,-14,-14,-11xm135,-108v-4,-8,-25,-22,-39,-16v-16,13,-23,30,-30,47v-6,16,-17,40,-1,56v11,10,28,2,39,-3v22,-23,23,-55,31,-84","w":220},"e":{"d":"237,-53v-46,34,-101,75,-182,56v-64,-15,-39,-110,0,-136v34,-23,95,-45,123,-7v2,61,-58,75,-107,87v-12,25,20,40,46,35v42,-8,79,-28,117,-45v4,2,3,6,3,10xm148,-129r-7,-7v-32,1,-48,37,-63,60v0,2,-1,4,2,5v26,-13,66,-26,68,-58","w":207},"f":{"d":"91,-19v61,15,93,-9,144,-40r3,3v-31,40,-97,77,-147,73v11,23,30,68,13,111v-14,34,-47,57,-66,64v-32,12,-44,9,-49,-9v-8,-27,-1,-81,9,-105v13,-30,20,-90,37,-102v9,-31,-22,1,-25,-7v1,-3,30,-19,31,-22v5,-27,37,-175,53,-195v15,-18,61,-34,77,-6v37,39,4,129,-14,162v-7,12,-36,34,-51,39v-9,14,-9,21,-15,34xm162,-205v5,-16,-2,-35,-10,-34v-26,34,-29,110,-43,149v1,2,3,2,4,2v23,-14,46,-82,49,-117xm31,175v23,-1,45,-112,38,-136v-2,-2,-4,2,-7,2v-13,17,-33,86,-40,107v-5,16,0,28,9,27","w":191},"g":{"d":"8,-23v-19,-65,53,-147,118,-107v0,-4,4,-6,6,-10v15,1,31,-2,46,0v-14,36,-15,73,-20,110v26,4,51,-33,77,-20v-43,9,-59,38,-86,58v-5,31,-21,96,-45,122v-16,17,-69,31,-95,31v-11,0,-19,-11,-29,-17v-17,-23,40,-88,51,-105v20,-15,44,-27,66,-40v3,-4,3,-11,1,-14v-26,17,-82,19,-90,-8xm116,-82v-11,1,-32,13,-35,-5v-3,-17,36,-18,14,-35v-41,10,-44,53,-49,83v6,5,1,18,13,18v9,3,16,0,26,-2v31,-7,21,-40,31,-59xm95,23v-44,8,-84,70,-90,107v5,6,23,3,31,2v24,-19,49,-84,59,-109","w":198},"h":{"d":"102,-84v2,27,-27,65,-19,84v-19,0,-58,2,-76,-1v39,-70,51,-150,87,-220v5,-25,37,-51,71,-40v13,5,21,16,30,26v8,65,-42,92,-80,122v34,-10,69,-32,111,-21v36,31,-33,80,-1,111v30,9,59,-8,82,-21v0,1,3,2,1,2v-29,32,-81,72,-127,36v-12,-9,-21,-24,-20,-36v-7,-28,19,-45,20,-70v-12,-9,-25,4,-38,6v-12,6,-34,10,-41,22xm153,-240v-27,9,-28,45,-33,73v1,12,-10,23,-4,33v2,-3,5,-2,3,-6v28,-24,46,-52,50,-85v1,-9,-6,-15,-16,-15","w":265},"i":{"d":"131,-209v9,24,-28,40,-54,29v-24,-11,-10,-45,14,-45v16,0,34,1,40,16xm177,-46v-32,25,-89,63,-147,46v-26,-15,-11,-53,-4,-78v6,-19,19,-51,23,-70v14,4,48,0,62,2v-9,42,-40,79,-38,122v32,15,96,-34,104,-22","w":131},"j":{"d":"142,-179v2,14,-22,26,-38,18v-27,-15,0,-41,21,-35v18,-5,12,12,17,17xm142,-136v2,35,-17,66,-20,99r99,-3v4,11,-27,10,-32,11v-46,8,-37,6,-69,22v-11,66,-47,114,-110,124v-12,1,-22,-2,-32,-6v-9,-12,-14,-29,-10,-44v17,-31,42,-58,73,-81r15,-4v5,-39,20,-89,15,-119v19,-2,46,5,71,1xm52,14r-4,-3v-19,11,-35,25,-47,43v-5,15,-23,34,-5,48v8,3,15,0,20,-6v21,-24,27,-54,36,-82","w":170},"k":{"d":"121,-76v-27,7,-38,57,-40,81v-20,0,-48,-5,-71,-5v14,-35,36,-91,51,-126v30,-68,42,-145,127,-155v57,33,10,124,-45,122v-5,7,-22,49,-22,56v34,-14,72,-53,118,-32v16,16,-1,38,-19,40v-14,1,-30,-5,-31,-18v-10,3,-21,10,-28,18v9,2,20,1,27,9v9,28,-36,68,7,74v31,4,81,-29,98,-47r3,0v-16,36,-80,93,-144,69v-18,-7,-22,-25,-27,-39v1,-15,20,-37,-4,-47xm186,-247v-14,-19,-22,10,-25,18v-1,-2,-4,-1,-5,-1v-6,18,-9,38,-17,56r7,0v21,-19,48,-41,40,-73","w":257},"l":{"d":"192,-56v-28,45,-104,73,-170,55v-24,-23,-10,-60,0,-85v19,-49,35,-120,81,-158v15,-12,51,-18,70,-5v17,11,17,30,11,44v-11,30,-53,99,-95,109v-13,-3,-1,8,-9,14v-9,21,-18,31,-13,55v34,15,95,-14,125,-29xm166,-230v-3,-8,-16,-10,-20,-3v-18,29,-51,86,-51,118v0,3,5,0,7,-1v24,-26,64,-79,64,-114","w":168},"m":{"d":"8,0v14,-36,43,-73,51,-113v-7,-5,-27,1,-48,8v40,-44,61,-29,107,-21v2,6,-7,12,0,18v27,-7,48,-17,81,-14v12,2,5,14,13,18v23,-14,62,-28,92,-13v43,22,-42,107,30,107v27,0,39,-4,58,-22v2,0,6,-1,5,2v-26,53,-123,76,-154,16v-16,-30,13,-54,17,-82v-14,-8,-31,4,-44,9v-10,42,-13,106,-85,93v-17,-17,-3,-36,3,-53v11,-14,31,-27,26,-48v-16,-3,-35,3,-48,12v-18,23,-30,51,-37,75v0,3,0,8,5,7r-4,5v-23,-3,-51,2,-68,-4xm154,-50v-16,3,-40,49,-7,43v8,-11,8,-30,7,-43","w":352},"n":{"d":"307,-52v-3,16,-20,22,-26,37v-32,36,-103,33,-142,6v-21,-36,12,-79,26,-113v-13,-7,-30,1,-44,5v-28,28,-34,93,-52,124v-23,-5,-40,-2,-63,-7v21,-35,34,-115,58,-155v24,3,55,-1,65,7v3,5,-6,8,-1,12v30,-16,92,-22,100,16v3,18,-12,38,-12,56v0,16,-28,41,0,49v35,10,73,-16,91,-37","w":268},"o":{"d":"197,-41v21,27,50,21,92,0v-35,42,-84,55,-119,24v-59,22,-164,23,-160,-52v17,-59,77,-105,154,-81v0,3,5,5,7,8v22,1,40,14,50,32v4,26,-4,51,-24,69xm194,-101v-5,-12,-19,-17,-32,-15v-23,18,-7,58,16,62v7,-8,6,-20,9,-31v4,-4,-3,-16,7,-16xm153,-35v1,-8,-8,-5,-12,-8v-22,-17,-23,-47,-19,-73r-6,-6v-21,6,-26,29,-37,44v-3,18,-12,44,10,54v22,10,46,0,64,-11","w":241},"p":{"d":"221,-111v3,43,-7,72,-35,92v15,17,62,4,89,-10v1,9,10,4,3,7v-22,19,-80,42,-114,22v-32,22,-61,13,-86,-4v-25,29,-26,179,-111,138v-10,-6,-19,-16,-27,-31v2,-56,64,-92,79,-115v11,-35,25,-71,40,-105v4,-8,0,-27,8,-22v21,-2,42,-4,63,-5v7,5,-4,18,-1,22v29,-17,75,-14,92,11xm154,-36v14,-16,22,-35,21,-63v-10,-20,-43,-16,-52,3v-10,21,11,47,31,60xm100,-57v0,0,-16,22,-18,36v4,15,23,14,35,20v10,1,18,-1,18,-11v-24,-3,-26,-28,-35,-45xm-13,48v-11,21,-26,23,-22,52v1,8,8,14,16,12v26,-7,20,-61,29,-84v-1,-8,-16,18,-23,20","w":241},"q":{"d":"239,-147v-5,26,-27,62,-31,83v-15,26,-30,52,-40,78v-7,19,-19,34,-17,55v21,17,56,-18,75,-19v-21,43,-68,55,-105,57v-12,-4,-28,-11,-31,-25v-7,-30,20,-58,13,-80v-23,7,-49,5,-68,-8v-47,-16,-8,-82,13,-98v10,-8,12,-14,29,-23v-5,-16,0,-49,19,-53v-9,20,-15,35,2,43v25,-11,59,-7,72,10v9,-6,3,-18,11,-22v18,6,39,1,58,2xm140,-101v11,-4,7,-17,-4,-17v-6,0,-12,5,-14,11v2,5,10,8,18,6xm149,-86v-14,-8,-36,8,-51,-5v-8,18,-45,51,-37,73v15,13,54,16,61,-3v1,-11,23,-56,27,-65","w":228},"r":{"d":"292,-54v-10,48,-82,82,-136,54v-17,-27,-12,-81,7,-105v-13,2,-47,17,-56,5v-17,35,-25,64,-40,100v-26,-4,-38,2,-61,-1v27,-46,30,-75,45,-126v-21,-36,-33,-78,18,-92v46,-12,63,23,65,52v-4,9,-17,33,-16,42v11,5,39,-1,52,-6v8,-10,19,-22,19,-22v0,0,43,7,50,9v-18,25,-76,77,-48,121v39,25,79,-7,98,-31r3,0xm78,-178v4,-8,6,-27,-8,-25v-14,2,-21,22,-22,31v-1,9,15,28,15,28v0,0,11,-26,15,-34","w":258},"s":{"d":"186,-34v30,25,59,7,78,-16v1,1,2,1,3,1v-3,15,-18,29,-32,37v-29,17,-37,23,-72,4v-54,16,-105,10,-142,-22v-8,2,-13,9,-19,14v-6,-1,-13,-5,-16,-9v43,-40,72,-83,119,-118v-2,-33,50,-78,86,-51v16,27,-12,48,-26,60v14,31,34,64,21,100xm174,-165v6,-7,-5,-12,-12,-11v-14,1,-14,21,-11,26v9,-2,16,-15,23,-15xm87,-70v30,15,7,51,-19,44v10,8,31,6,43,3v31,-22,23,-73,0,-91v-9,3,-18,11,-22,17v-8,9,-22,14,-25,26v8,-4,16,1,23,1","w":225},"t":{"d":"235,-54v4,1,7,2,5,7v-47,41,-104,68,-173,44v-56,-20,-31,-94,-9,-133r-3,-4v-25,-1,-51,-3,-76,-5v5,-8,-2,-31,20,-22v21,1,43,6,64,1r19,-55v25,0,39,4,63,0v7,20,-14,35,-14,59v24,9,54,0,71,5v-1,6,-3,11,-4,17r-77,3v-12,30,-27,66,-31,98v3,8,10,16,18,22v50,8,96,-5,127,-37","w":213},"u":{"d":"297,-50v-35,31,-86,75,-138,42v0,-4,0,-8,-3,-11v-33,23,-84,21,-121,10v-18,-5,-20,-22,-23,-37v1,-41,21,-75,32,-114v24,1,46,-3,66,-2v-14,39,-39,79,-27,128v12,19,43,6,49,-10v12,-37,21,-74,35,-111v29,0,58,3,85,1v-4,26,-27,46,-26,74v-7,15,-12,30,-15,46v19,18,41,-2,60,-6v11,0,16,-16,26,-13r0,3","w":269},"v":{"d":"278,-117v-13,20,-63,28,-98,23v-22,20,-42,44,-66,57v-2,13,21,6,21,18v-22,19,-60,27,-86,12v-51,-29,-40,-119,-23,-174v22,5,48,0,69,9v-9,36,-20,88,-1,118v14,-3,21,-19,31,-28v4,-13,28,-28,11,-40v-32,-14,-10,-55,17,-61v21,0,42,3,53,22v7,13,0,31,-4,44v15,11,59,5,76,0xm170,-159v-3,-10,-19,-4,-20,6v1,6,2,13,10,16v5,-7,8,-14,10,-22","w":224},"w":{"d":"173,-178v46,19,7,129,-19,142v0,0,23,14,37,18v14,4,32,-51,32,-51v0,0,-12,-18,-16,-38v-4,-20,20,-68,53,-68v71,0,15,101,9,123v0,0,29,14,44,18v17,4,41,-11,41,-5v0,0,-32,19,-45,17v-13,-2,-46,-12,-46,-13v0,-1,-38,43,-77,37v-39,-6,-41,-25,-41,-25v0,0,-54,25,-80,25v-26,0,-46,-31,-47,-42v-7,-53,34,-123,13,-136v0,0,54,-11,83,-1v-37,41,-46,108,-49,127v-1,7,6,32,14,36v8,4,16,-2,34,-19v18,-17,18,-21,18,-21v-24,-44,-19,-130,42,-124xm248,-140v2,-8,1,-22,-13,-7v-21,23,-16,33,-7,58v0,0,18,-43,20,-51xm156,-129v1,-13,1,-33,-5,-30v-6,3,-24,28,-22,38v2,10,9,48,9,48v0,0,17,-43,18,-56","w":309},"x":{"d":"273,-48v-16,41,-94,75,-139,40v-13,-10,-30,-36,-42,-48v-26,16,-51,46,-91,31v27,-13,52,-27,66,-55v-22,-22,-31,-52,-43,-82v21,1,47,4,71,0v8,9,6,37,22,29v11,-11,23,-19,32,-32v-11,-7,-20,-29,-9,-45v23,-19,63,-1,51,31v-12,32,-39,45,-60,69v0,15,19,35,27,46v15,20,35,55,59,46v19,-1,46,-28,56,-30xm170,-199v-4,-11,-15,-4,-17,5v1,6,2,14,9,17v4,-7,7,-14,8,-22","w":236},"y":{"d":"214,-62v24,-14,66,-31,93,-32v4,0,2,3,2,3v-30,11,-78,37,-103,64v-22,53,-23,120,-67,152v-8,6,-24,3,-34,2v-52,-41,-1,-111,31,-134v0,-2,8,-22,5,-23v-39,26,-115,45,-127,-12v-4,-17,-3,-36,0,-53v-9,-5,-17,-16,-16,-25v4,3,11,8,16,9v10,-1,3,-11,7,-16v11,-45,83,-77,113,-28v8,36,-31,51,-58,59v-6,16,-18,59,7,61v23,2,36,-14,53,-23v12,-30,22,-71,30,-103v17,-2,46,1,66,-4r4,3v-5,27,-19,74,-22,100xm76,-112v21,0,50,-38,23,-49v-20,9,-20,31,-23,49xm138,22v-27,17,-40,54,-33,86v3,4,7,4,12,4v19,-25,16,-59,21,-90","w":257},"z":{"d":"208,9v5,19,26,32,38,30v-22,20,-56,1,-65,-28v-32,3,-57,-19,-86,-28v-16,45,-50,5,-77,14v-5,2,-12,7,-17,2v21,-63,79,-102,122,-140v-15,-6,-32,-16,-48,-10v-11,33,-47,48,-72,22v-2,-6,-6,-16,-2,-23v32,-54,90,-21,135,-15v24,10,40,-17,62,-18v19,3,51,-2,50,33v-20,1,-37,10,-52,25v-28,29,-64,46,-85,88v19,15,44,20,66,15v4,-37,57,-78,72,-31v9,29,-21,53,-41,64xm222,-62v-14,3,-29,32,-19,47v15,-1,47,-38,19,-47xm62,-161r-2,-3v-13,1,-49,4,-38,29v16,4,31,-8,40,-26","w":264},"{":{"d":"60,-139v5,2,39,12,36,25v0,0,-16,80,-21,88v-10,15,25,41,33,45v8,4,11,15,-7,8v-18,-7,-58,-23,-57,-47v1,-24,12,-80,10,-84v-6,-12,-60,-21,-43,-46v2,0,49,-18,48,-25v-1,-7,-35,-68,-26,-77v9,-9,54,-33,63,-33v10,0,34,-19,23,0v-11,19,-36,33,-38,45v-4,23,18,74,11,82v-6,7,-32,19,-32,19","w":127},"|":{"d":"54,22v-4,3,-27,5,-30,-3v-3,-8,-12,-285,-5,-297v7,-12,29,-3,34,2v5,5,5,295,1,298","w":72},"}":{"d":"31,-114v-1,-11,31,-23,37,-25v0,0,-43,-19,-33,-29v0,0,15,-60,12,-72v-3,-12,-27,-26,-38,-45v-11,-19,12,0,22,0v9,0,55,24,64,33v9,9,-25,70,-26,77v-1,7,46,25,48,25v17,25,-38,34,-44,46v-2,4,10,60,11,84v1,24,-39,40,-57,47v-18,7,-15,-4,-7,-8v9,-4,43,-30,33,-45v-5,-8,-22,-88,-22,-88","w":127},"~":{"d":"134,-210v20,16,-19,38,-30,48v-22,9,-26,-21,-44,-22v-9,-1,-27,20,-31,21v-4,1,-9,-2,-6,-11v14,-19,33,-35,51,-46v5,0,24,25,30,27v6,2,26,-15,30,-17","w":162},"#":{"d":"165,-169v0,4,-3,20,-3,20r-40,0v-2,3,-8,38,-10,44v0,0,35,0,38,1v3,1,2,18,-1,19v-3,1,-40,1,-40,1v0,0,-9,35,-9,39v0,4,-20,3,-18,-1v2,-3,6,-37,5,-39v-1,-1,-27,-1,-27,-1v-2,5,0,57,-22,41v0,-2,4,-42,4,-42v0,0,-32,1,-37,-2v-5,-3,-2,-18,2,-20v4,-2,41,-2,41,-2r6,-43v0,0,-34,2,-38,-1v-5,-3,4,-22,7,-23v3,-1,34,3,34,3v0,0,3,-38,7,-45v5,-7,21,-10,21,-4v0,6,-6,51,-6,51r28,0v2,-5,6,-75,31,-49v4,7,-11,51,-11,51v0,0,38,-2,38,2xm102,-149r-25,-2r-7,43r23,0","w":167},"!":{"d":"198,-337v9,24,10,43,5,62v-9,33,-29,30,-50,59v-22,30,-37,68,-50,104v23,-8,45,-6,45,19v0,14,-5,28,-15,33v-23,11,-64,2,-60,-27v-6,0,-28,14,-33,11v3,-14,25,-17,33,-29v6,-39,34,-83,30,-127v6,-30,16,-107,49,-115v16,-4,34,-2,46,10xm85,-35v21,31,-12,86,-52,66v-14,-7,-19,-25,-14,-42v7,-26,40,-43,66,-24xm129,-86v-4,-21,-29,-17,-36,-5v3,22,14,28,24,26v7,-1,15,-9,12,-21","w":153},"\"":{"d":"130,-289v4,10,-4,26,-10,32v-13,39,-12,48,-21,83v-18,1,-23,-91,-10,-115v10,-19,37,-10,41,0xm73,-288v4,10,-4,26,-10,32v-13,40,-12,49,-22,84v-16,-3,-22,-92,-9,-116v10,-19,37,-10,41,0","w":138},"\u00a0":{"w":192}}});;
Cufon.registerFont({"w":260,"face":{"font-family":"ocrb10","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 9 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"6","cap-height":"1","bbox":"37.5588 -279.566 222 86","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{},"!":{"d":"130,-100v-38,-12,-18,-96,-18,-151v0,-17,6,-25,18,-25v39,10,18,96,18,151v0,17,-6,25,-18,25xm130,-27v35,-4,34,50,9,53v-20,3,-36,-5,-36,-25v0,-20,10,-26,27,-28"},"\"":{"d":"96,-214v-27,0,-28,-62,0,-62v14,0,20,16,19,32v0,20,-6,30,-19,30xm164,-214v-27,-1,-28,-63,1,-62v14,0,18,15,18,31v0,21,-6,31,-19,31"},"#":{"d":"62,5v-36,-2,-7,-54,-7,-74v0,-10,-15,-9,-15,-22v0,-11,14,-18,25,-18r12,-56v-37,5,-37,-37,-8,-36v15,1,18,-4,20,-18v3,-22,3,-57,28,-58v35,-1,7,58,5,76v22,-1,53,7,50,-19v4,-21,3,-55,26,-58v35,5,9,52,6,77v21,2,20,36,-1,36v-17,0,-14,44,-20,56v22,0,30,2,30,18v0,18,-18,21,-38,18v-5,2,-4,77,-31,77v-36,0,-6,-57,-6,-77r-45,0v-10,26,-2,72,-31,78xm159,-165r-44,1r-13,55r45,0"},"$":{"d":"112,-16v-36,2,-69,-21,-71,-49v-1,-10,9,-17,18,-17v21,6,21,34,53,30v-4,-31,16,-79,-21,-82v-26,-9,-49,-23,-50,-58v0,-38,33,-64,71,-65v1,-11,7,-19,18,-19v11,0,17,8,18,19v29,1,61,22,63,47v0,10,-6,17,-16,17v-22,-6,-22,-22,-47,-28r-1,58v-5,13,28,17,31,20v32,13,56,53,33,92v-11,19,-36,29,-61,35v-6,8,-6,21,-20,20v-10,0,-17,-10,-18,-20xm112,-221v-27,2,-48,27,-24,45v7,6,16,10,24,11r0,-56xm148,-53v16,0,37,-15,37,-31v0,-15,-13,-25,-37,-32r0,63"},"%":{"d":"86,-174v-28,0,-45,-25,-46,-52v0,-29,21,-52,49,-52v28,0,45,25,45,53v0,28,-21,51,-48,51xm79,-15v-3,18,-37,26,-38,0v0,-13,13,-29,19,-38r128,-216v8,-12,34,-4,32,12v-40,84,-97,162,-141,242xm98,-225v0,-7,-3,-17,-11,-16v-7,0,-11,7,-11,15v0,8,3,16,11,16v7,0,11,-7,11,-15xm172,5v-28,0,-45,-26,-45,-53v0,-29,20,-51,48,-51v29,0,45,26,45,53v0,29,-20,51,-48,51xm174,-31v15,-1,15,-32,-1,-32v-7,0,-11,7,-11,15v0,9,4,17,12,17"},"&":{"d":"201,-36v6,12,17,38,-6,39v-9,0,-18,-7,-21,-13v-53,38,-134,7,-134,-64v0,-28,19,-54,34,-72v-7,-17,-23,-37,-23,-65v0,-38,29,-67,69,-67v36,0,69,22,68,57v-1,44,-40,61,-63,83v20,21,32,49,52,69v9,-23,0,-56,25,-60v37,9,10,71,-1,93xm152,-223v-6,-31,-71,-22,-65,12v-1,16,10,36,18,43v15,-11,44,-33,47,-55xm98,-116v-31,19,-32,86,20,86v13,0,25,-3,35,-9"},"(":{"d":"177,-277v17,-1,26,24,11,32v-55,28,-85,134,-32,188v8,12,39,23,39,45v0,10,-7,17,-18,16v-44,-16,-86,-73,-86,-136v0,-64,46,-134,86,-145"},")":{"d":"82,5v-23,-2,-19,-32,-1,-40v55,-24,72,-138,21,-183v-9,-13,-37,-23,-37,-42v0,-9,8,-18,17,-18v45,19,88,76,88,140v0,58,-48,136,-88,143"},"*":{"d":"65,-139v-25,1,-33,-37,-6,-39v14,2,38,12,53,17v3,-27,-11,-73,18,-72v28,0,15,44,18,72v15,-5,38,-15,54,-17v10,-1,19,9,18,19v-3,23,-34,24,-54,30v6,15,53,68,11,74v-27,-5,-27,-41,-44,-56v-11,21,-27,46,-49,56v-44,-11,7,-58,17,-72v-1,0,-1,0,-36,-12"},"+":{"d":"112,-118v-26,-2,-71,9,-71,-18v0,-28,44,-15,71,-18v4,-30,-12,-82,18,-82v30,0,14,52,18,82v27,2,72,-9,72,18v0,27,-44,16,-72,18v-4,29,13,81,-18,81v-29,1,-15,-51,-18,-81"},",":{"d":"117,42v-8,19,-52,40,-60,7v14,-41,44,-73,61,-111v8,-17,33,-12,57,-12v35,0,16,51,-2,58v-12,13,-30,33,-56,58"},"-":{"d":"175,-159v24,-1,46,-4,46,22v0,26,-28,24,-53,24r-101,1v-18,0,-28,-8,-28,-25v-2,-33,41,-22,70,-22r66,0"},".":{"d":"152,4v-42,0,-74,6,-67,-44v-4,-37,36,-27,65,-27v27,0,24,19,25,43v0,19,-5,28,-23,28"},"\/":{"d":"80,5v-30,-3,-11,-40,-5,-55r90,-218v5,-14,38,-9,33,9v-24,86,-66,157,-95,242v-3,8,-12,22,-23,22"},"0":{"d":"220,-170v3,92,-2,178,-90,176v-69,-2,-92,-49,-91,-131v1,-74,6,-153,91,-153v67,0,88,46,90,108xm132,-242v-61,-3,-56,60,-56,120v0,69,9,97,69,91v36,4,42,-71,40,-113v-3,-65,-2,-96,-53,-98"},"1":{"d":"69,-185v-20,-2,-24,-25,-5,-37v26,-17,41,-46,75,-55v20,0,24,11,24,31r1,216v0,23,-6,34,-18,34v-21,1,-19,-30,-19,-55r0,-177v-12,12,-40,41,-58,43"},"2":{"d":"125,-241v-33,-6,-68,40,-79,0v0,-23,53,-38,79,-37v52,1,86,27,86,80v0,89,-117,75,-124,162r102,-1v13,1,24,5,23,19v3,20,-25,18,-45,18r-91,0v-48,0,-23,-79,-3,-98v26,-43,90,-46,102,-103v-1,-25,-20,-41,-50,-40"},"3":{"d":"41,-24v4,-35,45,-7,72,-7v38,0,68,-20,68,-54v0,-36,-30,-49,-65,-52v-25,3,-33,-20,-18,-35r61,-64r-94,0v-16,0,-23,-7,-23,-19v0,-19,25,-19,47,-18r96,0v15,0,24,9,24,24v-7,37,-46,53,-63,81v41,1,71,43,71,84v1,53,-47,91,-100,89v-28,-1,-71,-3,-76,-29"},"4":{"d":"183,-59v2,23,6,65,-18,62v-24,2,-20,-39,-18,-62v-45,-4,-129,20,-103,-44v19,-47,51,-103,70,-155v3,-7,12,-18,22,-18v37,3,3,56,-3,68r-54,113r68,0v-1,-23,-5,-61,18,-59v23,-3,21,36,18,59v19,-1,38,1,37,18v-1,16,-16,20,-37,18"},"5":{"d":"104,-148v-46,10,-51,-17,-45,-54v8,-51,-9,-72,39,-71r80,0v17,0,25,6,25,18v-3,34,-70,14,-106,19r-3,52v67,-1,111,25,111,87v0,71,-61,103,-129,103v-18,0,-26,-6,-26,-19v1,-17,12,-19,33,-19v43,-1,85,-19,86,-61v1,-37,-28,-55,-65,-55"},"6":{"d":"130,5v-54,0,-90,-36,-90,-91v0,-55,57,-140,97,-178v15,-25,50,-3,34,17v-23,30,-30,30,-63,74v68,-11,112,27,113,89v1,51,-40,89,-91,89xm130,-31v34,1,55,-21,55,-55v0,-34,-21,-53,-54,-53v-36,0,-55,21,-55,55v0,32,22,53,54,53"},"7":{"d":"103,3v-11,-1,-20,-8,-19,-22v2,-75,23,-120,64,-168v17,-19,27,-37,32,-50r-115,1v-16,0,-24,-7,-24,-19v-1,-21,26,-18,49,-18r104,0v38,0,29,38,15,62v-34,56,-88,101,-88,192v0,15,-6,22,-18,22"},"8":{"d":"220,-71v-1,43,-40,76,-89,76v-48,0,-91,-32,-91,-76v0,-39,22,-61,52,-81v-20,-10,-39,-34,-39,-64v0,-39,40,-61,79,-61v40,0,76,23,76,61v0,34,-21,51,-39,65v22,13,52,43,51,80xm172,-214v0,-18,-20,-28,-40,-28v-20,1,-44,7,-43,29v-4,16,31,38,41,39v16,2,42,-23,42,-40xm77,-70v0,26,26,39,54,39v28,0,55,-14,53,-40v-2,-31,-28,-52,-54,-61v-26,10,-53,30,-53,62"},"9":{"d":"131,-277v70,0,110,72,80,143v-21,49,-56,91,-87,126v-19,21,-47,5,-35,-18v24,-23,42,-41,63,-73v-70,5,-110,-25,-112,-86v-1,-50,39,-92,91,-92xm185,-185v1,-34,-23,-56,-54,-57v-31,-1,-56,28,-55,58v0,32,21,48,54,50v36,2,54,-18,55,-51xm153,-100r-1,1"},":":{"d":"148,-126v-36,2,-63,4,-55,-40v-3,-30,22,-25,49,-26v25,-1,27,14,26,39v-1,17,-4,27,-20,27xm148,4v-36,0,-62,4,-55,-40v-4,-29,23,-25,48,-26v27,-2,28,14,27,39v0,17,-4,27,-20,27"},";":{"d":"154,-126v-37,3,-55,2,-55,-39v0,-30,22,-26,49,-27v28,-1,28,15,27,40v0,18,-5,25,-21,26xm106,56v-29,27,-69,-9,-38,-39v14,-25,22,-56,40,-76v25,-10,90,-6,60,33"},"<":{"d":"209,-59v17,11,13,34,-7,35v-45,-15,-100,-68,-145,-90v-10,-6,-26,-25,-9,-36r138,-94v34,-18,44,16,18,33r-113,74v35,28,82,53,118,78"},"=":{"d":"173,-195v23,-1,46,-3,47,18v1,20,-27,18,-51,18r-102,1v-17,0,-26,-6,-26,-19v1,-28,43,-18,69,-18r63,0xm173,-113v23,-1,45,-3,47,18v2,20,-29,18,-51,18r-102,1v-17,0,-26,-6,-26,-19v0,-29,43,-17,69,-18r63,0"},">":{"d":"101,-48v-9,18,-74,41,-56,-4v37,-33,86,-53,124,-85v-41,-28,-88,-50,-124,-83v-15,-14,7,-39,26,-26r136,90v22,12,9,42,-11,45"},"?":{"d":"149,-164v24,-20,11,-62,-24,-57v-31,-3,-38,22,-44,46v-10,14,-33,2,-31,-17v4,-41,31,-64,76,-65v36,-1,73,27,73,63v0,25,-14,51,-43,77v-9,8,-8,31,-26,30v-44,-13,5,-64,19,-77xm130,25v-20,0,-26,-7,-27,-26v-1,-20,9,-28,27,-28v18,0,27,9,27,26v1,18,-8,29,-27,28"},"@":{"d":"220,-73v10,60,-46,98,-87,68v-40,27,-102,3,-93,-60v-7,-68,33,-103,83,-76v10,-18,37,-6,34,16v-3,22,-1,48,-1,72v0,16,4,23,10,23v28,-3,17,-56,19,-87v3,-56,-4,-104,-59,-106v-33,-1,-46,18,-54,41v-10,10,-31,5,-30,-15v3,-35,41,-62,84,-62v92,0,99,89,94,186xm120,-66v4,-29,-6,-49,-28,-49v-22,0,-13,32,-17,50v0,24,7,36,20,36v22,1,23,-17,25,-37"},"A":{"d":"200,3v-29,-5,-24,-47,-33,-74r-63,-1v-7,0,-12,2,-13,8v-7,24,-4,64,-31,68v-28,-2,-11,-43,-7,-61r38,-150v5,-22,6,-54,41,-48v35,-4,33,33,39,56r46,185v1,10,-8,19,-17,17xm131,-210r-28,103r54,0"},"B":{"d":"116,1v-41,-2,-90,13,-76,-45r0,-186v0,-37,47,-18,82,-23v82,-10,120,71,71,122v13,6,28,34,27,56v-3,52,-46,80,-104,76xm179,-182v0,-44,-58,-33,-103,-34r0,67v43,-2,103,11,103,-33xm184,-76v5,-41,-63,-41,-108,-37r0,77v48,4,114,1,108,-40"},"C":{"d":"142,5v-67,-4,-85,-62,-85,-135v0,-68,21,-123,84,-127v30,-2,62,24,62,50v1,11,-9,18,-18,18v-22,-2,-17,-35,-44,-32v-41,4,-47,50,-47,92v0,43,5,96,48,98v28,1,20,-32,43,-32v11,0,18,7,18,18v0,26,-28,53,-61,50"},"D":{"d":"211,-118v0,71,-53,116,-123,119v-32,1,-29,-23,-29,-51r-1,-164v2,-30,0,-40,31,-40v71,0,122,58,122,136xm95,-36v81,1,102,-97,55,-149v-18,-20,-35,-29,-55,-30r0,179"},"E":{"d":"93,-149v37,4,105,-16,105,18v0,15,-11,18,-27,18r-78,0r0,77r71,-1v26,0,56,-3,51,24v-3,12,-16,13,-31,13r-103,0v-18,1,-24,-8,-24,-27r-2,-193v-1,-25,9,-32,36,-32r111,1v19,3,16,35,-4,35r-105,0r0,67"},"F":{"d":"209,-235v0,34,-66,16,-98,19r0,67v29,4,82,-12,82,17v0,30,-52,16,-82,19v-3,40,18,110,-18,117v-22,4,-18,-37,-18,-62r-2,-161v-4,-57,67,-24,114,-34v15,0,22,6,22,18"},"G":{"d":"211,-215v-12,42,-42,-6,-70,-5v-45,3,-62,37,-62,87v0,49,10,105,63,103v20,0,44,-2,36,-28r0,-42v-23,1,-58,5,-58,-18v0,-26,35,-17,63,-19v53,-4,25,67,30,114v-8,24,-44,28,-70,29v-79,0,-100,-64,-100,-138v0,-73,30,-121,98,-124v29,-2,68,20,70,41"},"H":{"d":"210,-69v-2,31,12,72,-18,72v-35,0,-12,-76,-18,-114r-87,0r0,89v1,15,-5,24,-18,25v-29,1,-17,-45,-18,-72r0,-160v-1,-19,5,-25,18,-27v32,4,13,73,18,109r87,0r-1,-82v-1,-15,5,-28,19,-27v13,1,19,8,18,27r0,160"},"I":{"d":"68,-234v3,-34,62,-11,100,-19v16,0,24,7,24,19v0,18,-22,19,-44,18r0,180v21,-2,54,-2,51,18v-5,34,-73,11,-113,19v-17,0,-25,-7,-25,-19v0,-20,30,-21,51,-18r0,-180v-21,3,-45,1,-44,-18"},"J":{"d":"82,-70v0,21,9,38,29,39v30,2,29,-32,29,-62r-1,-134v0,-19,7,-29,19,-29v26,1,18,44,18,69r0,120v4,48,-26,69,-65,72v-36,2,-64,-31,-64,-66v0,-27,35,-36,35,-9"},"K":{"d":"201,3v-36,-11,-95,-96,-119,-115r0,90v0,17,-6,25,-18,25v-29,1,-17,-45,-18,-72r0,-160v-1,-19,5,-25,18,-27v34,6,12,70,18,106v19,-17,80,-97,111,-105v35,5,12,38,-4,48r-72,76v18,25,68,73,94,98v15,14,10,35,-10,36"},"L":{"d":"86,0v-49,9,-36,-39,-35,-74r-1,-150v0,-22,6,-32,17,-32v22,-2,20,28,20,54r0,166r116,0v9,0,17,9,17,18v1,16,-17,18,-37,18r-97,0"},"M":{"d":"180,-256v51,-10,40,36,40,74r1,152v4,45,-38,43,-38,4r0,-181v-12,40,-22,91,-43,130v-34,11,-30,-30,-43,-59v-10,-24,-15,-48,-21,-71r0,189v-1,12,-5,21,-18,21v-16,0,-18,-14,-18,-33r-1,-200v-6,-32,37,-32,57,-23v20,20,15,71,35,98v4,-32,20,-64,28,-93v4,-7,10,-6,21,-8"},"N":{"d":"197,-256v28,0,18,41,18,71r0,167v4,29,-45,30,-50,7r-63,-129v-11,-19,-14,-35,-20,-44r1,158v5,36,-38,38,-38,8r-1,-207v-6,-41,44,-39,55,-12v23,60,54,115,80,171r-2,-159v0,-20,7,-31,20,-31"},"O":{"d":"137,5v-64,8,-95,-70,-96,-135v-1,-62,34,-133,90,-130v118,6,116,252,6,265xm130,-31v62,0,70,-141,26,-180v-45,-39,-79,31,-79,83v0,39,19,97,53,97"},"P":{"d":"87,-42v1,21,2,44,-18,45v-20,1,-18,-30,-18,-52r-1,-174v-2,-40,33,-29,72,-29v58,0,98,23,98,74v0,66,-57,80,-133,75r0,61xm184,-176v0,-45,-52,-45,-97,-40r0,77v43,3,97,2,97,-37"},"Q":{"d":"125,-11v-65,-4,-85,-59,-83,-132v1,-66,23,-115,84,-115v83,0,100,132,69,202v6,12,47,55,7,60v-16,-2,-22,-20,-32,-28v-12,4,-27,14,-45,13xm148,-54v-3,-10,-70,-66,-21,-74v20,2,28,30,41,40v13,-51,8,-127,-42,-134v-36,4,-48,33,-49,74v-2,57,14,120,71,94"},"R":{"d":"210,-191v0,40,-16,74,-49,83v10,30,45,60,50,94v1,10,-9,17,-18,17v-15,1,-21,-18,-26,-27v-16,-25,-27,-56,-47,-78v-6,-3,-22,-2,-29,-1v-4,35,15,102,-18,106v-16,2,-21,-13,-18,-30r-1,-194v-4,-34,20,-31,48,-31v57,0,108,10,108,61xm173,-177v5,-43,-41,-41,-82,-39r0,77v41,2,77,2,82,-38"},"S":{"d":"71,-75v28,0,19,51,56,45v32,3,63,-37,35,-62v-35,-31,-107,-36,-107,-100v0,-39,39,-65,79,-65v36,0,68,27,70,55v0,10,-8,17,-18,17v-26,0,-19,-41,-54,-36v-37,-5,-55,42,-20,60v37,19,96,31,96,93v0,46,-39,72,-81,74v-39,2,-74,-31,-74,-63v0,-13,8,-18,18,-18"},"T":{"d":"70,-216v-35,6,-37,-36,-12,-36r132,-2v37,-5,39,38,8,38r-50,0r1,190v0,20,-7,30,-19,30v-19,0,-18,-27,-18,-51r0,-169r-42,0"},"U":{"d":"46,-165v2,-32,-15,-86,18,-91v19,-3,22,37,18,61v5,65,-26,164,49,164v79,0,47,-113,47,-195v0,-17,5,-30,20,-30v14,0,17,11,17,26r0,161v-4,47,-35,74,-83,74v-62,0,-86,-38,-86,-103r0,-67"},"V":{"d":"87,-61r-46,-177v-2,-22,30,-23,35,-3r55,202v13,-71,37,-129,52,-200v2,-7,8,-18,18,-17v35,3,10,56,4,76r-48,176v-4,7,-13,9,-27,9v-40,0,-36,-40,-43,-66"},"W":{"d":"171,-73v4,-32,10,-96,10,-133v0,-27,1,-46,20,-50v26,2,18,38,17,62v-2,57,-9,121,-20,181v-14,35,-52,7,-52,-20r-16,-52v-3,17,-11,38,-15,54v-5,16,-6,38,-29,36v-38,-4,-25,-54,-35,-88r-12,-141v-7,-30,37,-45,37,-16v0,54,9,114,12,167v17,-26,10,-102,58,-78v12,20,17,51,25,78"},"X":{"d":"201,-42v16,15,13,56,-17,42v-21,-26,-32,-61,-54,-95v-18,31,-32,67,-54,95v-18,13,-37,-11,-24,-30v20,-32,39,-64,54,-100v-15,-38,-43,-67,-56,-108v6,-31,39,-14,43,7v10,25,28,41,36,68v19,-30,33,-65,55,-91v33,-10,26,25,14,45v-16,26,-33,50,-44,80v12,31,33,58,47,87"},"Y":{"d":"112,-88v3,-65,-52,-93,-63,-151v1,-24,31,-17,38,-1v12,28,31,52,42,82v20,-26,30,-68,54,-94v9,-10,29,-1,29,13v-18,67,-78,100,-63,193v4,24,-1,53,-20,50v-31,-4,-12,-60,-17,-92"},"Z":{"d":"176,-36v19,-1,34,1,33,18v3,20,-25,18,-45,18r-89,0v-48,1,-11,-49,-3,-65r78,-151v-33,-3,-95,14,-98,-18v7,-36,78,-18,124,-18v40,0,8,50,0,65r-78,151r78,0"},"[":{"d":"213,-13v0,16,-14,20,-31,18v-43,-6,-110,23,-109,-35r2,-216v-4,-58,72,-21,124,-31v27,9,12,39,-11,37v-24,-2,-51,-1,-77,-1r0,210r77,-1v14,-1,25,5,25,19"},"\\":{"d":"80,-212v-7,-16,-33,-62,0,-66v18,3,25,33,31,48r84,202v15,26,-20,47,-32,20"},"]":{"d":"185,-246r2,216v4,60,-69,27,-119,35v-13,1,-22,-7,-22,-18v7,-34,68,-15,103,-18r0,-210v-36,-2,-96,15,-103,-19v9,-34,77,-10,119,-17v17,2,20,7,20,31"},"^":{"d":"202,-183v10,11,31,47,0,51v-33,-10,-48,-49,-72,-67v-22,23,-41,54,-72,67v-26,-1,-15,-34,-4,-44r54,-81v17,-35,45,-9,52,12"},"_":{"d":"75,36v57,12,139,-22,146,26v4,25,-28,23,-53,23r-102,1v-18,0,-27,-8,-27,-24v0,-22,14,-25,36,-26"},"`":{"d":"51,-183v-1,-35,-12,-84,36,-73r109,-1v29,-2,23,27,25,51v4,34,-32,37,-37,13r0,-27r-97,0r1,189v0,20,-7,31,-21,31v-16,0,-16,-27,-16,-50r0,-133"},"a":{"d":"207,-22v0,34,-35,32,-37,7v-40,39,-125,21,-124,-39v1,-59,58,-71,125,-67v-4,-21,-12,-39,-39,-38v-18,-3,-43,16,-54,17v-9,1,-16,-10,-16,-18v1,-22,45,-35,71,-35v86,0,74,91,74,173xm170,-85v-35,1,-87,-3,-89,29v7,36,57,31,79,0v6,-9,10,-18,10,-29"},"b":{"d":"221,-94v0,78,-78,132,-141,79v1,11,-10,20,-20,20v-16,1,-17,-18,-16,-37r0,-229v-1,-9,10,-16,18,-16v34,3,12,68,18,104v62,-50,141,2,141,79xm184,-96v0,-36,-16,-61,-51,-61v-31,0,-56,31,-55,65v1,35,25,62,59,62v34,0,47,-28,47,-66"},"c":{"d":"137,6v-57,-2,-77,-44,-77,-105v0,-60,28,-93,81,-94v33,-1,58,18,60,44v1,11,-10,17,-18,18v-18,-4,-17,-26,-42,-26v-30,0,-45,20,-45,60v0,41,8,64,43,67v28,3,23,-31,46,-33v9,0,20,8,19,19v-4,29,-34,51,-67,50"},"d":{"d":"109,4v-100,-15,-88,-197,17,-197v20,0,38,7,54,20r-1,-79v-4,-31,37,-32,37,-9r1,242v3,33,-37,28,-37,4v-21,18,-42,23,-71,19xm181,-81v4,-45,-18,-75,-56,-76v-32,0,-50,30,-50,63v-1,32,18,65,50,64v28,-1,54,-23,56,-51"},"e":{"d":"132,-196v49,0,82,42,83,90v1,23,-16,23,-39,22r-93,0v2,30,23,54,54,54v15,0,34,-14,44,-15v8,-1,16,10,15,18v-2,20,-33,34,-60,33v-59,-2,-89,-45,-91,-103v-1,-53,34,-99,87,-99xm177,-120v-1,-53,-88,-50,-92,0r92,0"},"f":{"d":"112,-22r-2,-133v-23,1,-60,4,-57,-18v-2,-23,34,-21,57,-18v-5,-55,27,-83,74,-85v15,0,22,6,22,19v-10,32,-73,6,-60,66v23,-2,64,-6,61,18v3,22,-38,20,-61,18v3,37,2,96,2,140v0,10,-5,21,-17,20v-13,0,-19,-9,-19,-27"},"g":{"d":"55,30v-2,-18,24,-27,34,-10v30,30,104,12,86,-47v-17,13,-35,20,-56,20v-51,2,-79,-43,-79,-92v0,-77,77,-119,135,-77v11,-24,40,-22,38,16v-3,47,-1,102,-1,151v0,51,-32,79,-85,78v-31,0,-69,-11,-72,-39xm176,-98v0,-29,-23,-59,-53,-59v-29,0,-47,24,-47,56v0,29,16,58,43,58v24,-1,57,-25,57,-55"},"h":{"d":"56,-248v-1,-21,3,-27,17,-29v35,3,13,66,19,102v49,-41,114,-8,113,68r-1,86v4,32,-36,32,-36,7r0,-105v0,-25,-9,-38,-27,-38v-28,0,-57,32,-49,67v-3,32,12,92,-18,95v-29,-3,-18,-47,-18,-75r0,-178"},"i":{"d":"168,-253v0,19,-9,29,-28,29v-35,0,-34,-52,-8,-54v23,-2,36,4,36,25xm94,-189v45,1,84,-9,72,48r1,119v0,17,-7,26,-19,26v-21,0,-18,-26,-18,-47r0,-109v-25,2,-65,6,-65,-19v0,-12,10,-18,29,-18"},"j":{"d":"113,-250v0,-16,9,-28,27,-28v18,0,28,8,28,26v0,18,-9,28,-28,28v-18,0,-27,-9,-27,-26xm94,65v-17,-1,-40,2,-40,-19v0,-17,21,-19,42,-18v36,2,31,-34,31,-70r0,-110v-22,2,-52,4,-52,-18v0,-22,31,-17,55,-19v42,-4,35,33,33,66v-4,77,20,192,-69,188"},"k":{"d":"62,-202v0,-28,-12,-75,18,-75v27,0,18,34,18,61r0,92v30,-18,49,-55,83,-68v36,7,8,42,-8,50v-13,13,-29,24,-41,38v20,18,42,50,63,64v24,17,8,65,-18,37r-79,-85v-4,31,13,90,-18,93v-13,-2,-18,-8,-18,-29r0,-178"},"l":{"d":"159,-34v40,-13,58,38,13,38v-118,0,-74,-140,-80,-251v0,-16,4,-31,20,-31v17,0,17,30,17,52r-3,146v0,31,8,44,33,46"},"m":{"d":"75,-186v16,-10,53,-9,61,11v38,-36,84,-12,84,55r0,100v6,31,-35,31,-36,7r0,-120v0,-16,-3,-24,-10,-24v-36,11,-24,77,-26,126v0,24,-5,36,-16,36v-17,1,-20,-14,-20,-33r0,-105v0,-16,-4,-24,-12,-24v-31,7,-23,90,-24,139v0,10,-9,23,-19,23v-20,0,-17,-28,-17,-48r-1,-123v-3,-29,22,-29,36,-20"},"n":{"d":"82,-22v4,32,-36,33,-36,10r-2,-142v1,-20,0,-37,18,-38v10,0,21,10,20,21v67,-51,150,-10,133,96v-5,29,12,77,-18,79v-52,-9,21,-164,-57,-161v-32,1,-61,30,-60,70"},"o":{"d":"128,6v-53,0,-89,-52,-89,-104v0,-56,38,-97,93,-97v53,0,89,52,89,104v0,56,-39,97,-93,97xm185,-93v1,-34,-20,-66,-54,-66v-35,0,-56,29,-56,63v0,34,21,66,55,66v35,0,54,-31,55,-63"},"p":{"d":"44,-162v-8,-38,35,-37,36,-11v66,-52,142,4,142,82v0,77,-84,127,-142,76v-3,29,12,79,-18,81v-24,2,-18,-40,-18,-65r0,-163xm185,-94v0,-31,-18,-64,-49,-63v-35,2,-64,30,-56,75v-1,23,30,52,55,52v32,0,50,-31,50,-64"},"q":{"d":"199,-192v14,2,17,9,17,30r2,195v5,39,-38,45,-38,9r0,-56v-61,51,-141,-2,-141,-80v0,-75,80,-130,141,-79v0,-9,9,-20,19,-19xm181,-81v0,-45,-19,-74,-56,-76v-30,0,-50,31,-50,64v0,31,17,63,49,63v26,0,57,-27,57,-51"},"r":{"d":"160,-157v-53,4,-56,68,-49,122v5,40,-39,56,-39,12r0,-141v-4,-34,32,-35,37,-11v33,-31,105,-22,105,31v0,10,-9,18,-19,18v-24,0,-9,-34,-35,-31"},"s":{"d":"54,-36v0,-20,31,-22,37,-5v15,17,79,17,81,-12v-22,-38,-118,-19,-115,-86v2,-39,31,-57,75,-57v35,0,66,17,68,45v1,18,-27,22,-34,8v-5,-24,-71,-24,-73,4v18,45,112,14,115,84v3,76,-154,81,-154,19"},"t":{"d":"126,-73v-10,44,25,47,54,35v11,0,18,7,18,18v0,19,-29,25,-50,25v-75,4,-56,-87,-58,-158v-20,2,-44,2,-44,-18v0,-17,18,-21,38,-18v20,-3,-5,-59,26,-54v22,-2,19,29,18,54v27,2,70,-10,70,18v0,27,-45,16,-72,18r0,80"},"u":{"d":"178,-165v-5,-32,37,-34,37,-10r2,143v-1,20,-1,35,-18,36v-11,1,-21,-9,-20,-20v-54,49,-151,11,-133,-81v7,-33,-13,-89,17,-96v52,10,-21,165,58,163v57,-2,67,-68,57,-135"},"v":{"d":"102,-3v-24,-54,-40,-115,-61,-171v-1,-20,30,-24,36,-6r52,149r2,0v11,-40,36,-112,56,-154v7,-14,31,-7,32,10r-57,165v-3,20,-48,21,-60,7"},"w":{"d":"181,-159v1,-16,2,-34,20,-33v27,1,15,36,13,57r-13,111v0,18,-7,30,-26,30v-39,0,-32,-47,-45,-69v-10,19,-6,72,-43,69v-44,-3,-30,-53,-35,-94r-11,-84v0,-12,8,-20,19,-20v39,13,14,87,32,132v7,-22,5,-55,33,-58v43,-5,31,33,44,57"},"x":{"d":"105,-95v-9,-25,-44,-53,-48,-79v-3,-17,23,-24,33,-10v14,19,27,41,41,59v19,-22,24,-56,54,-67v24,0,20,31,7,41v-12,19,-27,34,-36,55v13,32,40,48,51,82v1,10,-9,19,-18,19v-27,-4,-41,-60,-60,-71r-42,62v-12,20,-42,2,-32,-18v11,-22,39,-52,50,-73"},"y":{"d":"181,-176v9,-21,36,-21,39,1v-31,73,-77,143,-113,213v-7,14,-24,29,-42,29v-12,0,-25,-6,-24,-20v1,-27,35,-5,39,-36v13,-22,20,-33,31,-57v-20,-46,-53,-80,-71,-129v0,-16,24,-23,33,-10v23,31,37,71,60,101v12,-29,39,-71,48,-92"},"z":{"d":"178,-35v17,0,32,1,32,18v0,20,-25,18,-45,18r-88,0v-42,-1,-20,-51,-2,-62r81,-91v-33,-5,-96,14,-100,-18v-2,-19,22,-21,42,-18v42,5,128,-18,101,39v-20,42,-75,80,-98,114r77,0"},"{":{"d":"40,-136v6,-37,77,0,62,-69v2,-50,34,-73,87,-73v21,0,31,6,31,18v1,19,-17,21,-36,19v-67,-8,-35,75,-62,105v8,16,18,35,16,64v-2,35,19,43,55,40v16,-2,26,6,27,19v1,17,-17,18,-37,18v-54,0,-83,-30,-80,-79v3,-33,-11,-44,-39,-44v-12,0,-26,-6,-24,-18"},"|":{"d":"148,-15v-2,31,11,69,-18,73v-23,3,-18,-42,-18,-66r-1,-235v0,-23,6,-35,20,-35v19,0,17,33,17,58r0,205"},"}":{"d":"87,-240v-23,0,-46,2,-46,-19v-1,-17,16,-20,35,-18v51,5,85,19,81,81v-3,31,14,40,40,41v11,0,23,6,23,18v0,13,-12,19,-25,19v-28,0,-39,17,-37,51v3,49,-37,73,-86,73v-40,0,-41,-37,-9,-37v40,1,62,-4,60,-47v-2,-34,8,-39,15,-58v-7,-11,-17,-33,-15,-58v2,-31,-9,-46,-36,-46"},"~":{"d":"64,-196v-10,0,-18,-8,-18,-19v0,-21,26,-44,50,-44v31,0,42,30,68,30v17,0,15,-25,32,-26v9,0,18,7,18,18v0,23,-26,45,-50,45v-27,0,-46,-26,-67,-31v-18,1,-16,26,-33,27"},"\u00a0":{}}});;
/*
	jQuery OneFBLike v1.0 - http://www.onerutter.com/onefblike
	Copyright (c) 2010 Jake Rutter
	This plugin available for use in all personal or commercial projects under both MIT and GPL licenses.
*/

(function($) {  
  $.fn.extend({
    oneFBLike: function(options) {  
      //Set the default values, use comma to separate the settings 
      var defaults = {  
      appID: 110862735645512,  
      buttonWidth: 450,
      buttonHeight: 80,
      showfaces: true,
      font: 'lucida grande',
      layout: 'button_count',
      action: 'like',
      colorscheme: 'light'
    }  

    var options =  $.extend(defaults, options);  

    return this.each(function() {  
      var o = options;  
      var obj = $(this);

      // Add #fb-root div - mandatory - do not remove
      jQuery('body').append('<div id="fb-root"></div>');

      // setup FB Developers App Link - do not touch
      window.fbAsyncInit = function() {
        FB.init({appId: o.appID, status: true, cookie: true, xfbml: true});
      };
      
      (function() {
        var e = document.createElement('script');
        e.async = true;
        e.src = document.location.protocol + '//connect.facebook.net/en_US/all.js';
        document.getElementById('fb-root').appendChild(e);
      }());


      // Grab the URL and assign it to a variable
      var dynUrl = document.location;
      var fbDIV = obj;

      // Apply the like button to an element on the page and include all available options
      // If no options are passed in from the page, the defaults will be applied            
      jQuery(fbDIV).html('<fb:like href="'+dynUrl+'" width="'+o.buttonWidth+'" height="'+o.buttonHeight+'" show_faces="'+o.showfaces+'" font="'+o.font+'" layout="'+o.layout+'" action="'+o.action+'" colorscheme="'+o.colorscheme+'"/>')
      });  
    } 
  });     
})(jQuery);;
var CoBackground = {
	images: [],
	currentIndex: 0,
	alignH: "left",
	alignV: "top"
};

CoBackground.init = function() {
	$(window).resize(function() {
		CoBackground.resize();
	});
	this.coLoadingImage = null;
	this.coLoadingImageButton = null;
	this.imageContainer = $('#background');
	this.clickedElement = null;
}

CoBackground.resize = function() {

	var imageElem = $('#background img');

	var width = $(window).width();
	var height = $(window).height();

	var widthRatio = width / $(imageElem).width();
	var heightRatio = height / $(imageElem).height();

	var r = Math.max(widthRatio, heightRatio);
	var imageWidth = Math.round($(imageElem).width() * r);
	var imageHeight = Math.round($(imageElem).height() * r);

	imageElem.width(imageWidth);
	imageElem.height(imageHeight);

	this.setMargins(imageElem, width, height, imageWidth, imageHeight);

	$('#background').css("visibility", "visible");
}

CoBackground.setMargins = function(imageElem, width, height, imageWidth, imageHeight) {
	if (this.alignH == "right") {
		imageElem.css('margin-left', Math.round(width-imageWidth) +'px');
	} else if (this.alignH == "center") {
		imageElem.css('margin-left', Math.round((width/2) - (imageWidth/2)) +'px');
	}

	if (this.alignV == "bottom") {
		imageElem.css('margin-top', Math.round(height-imageHeight) +'px');
	} else if (this.alignV == "center") {
		imageElem.css('margin-top', Math.round((height/2) - (imageHeight/2)) +'px');
	}
}

$(document).ready(function() {
	
	//load the initial background image
	CoBackground.init();
	
	//fb like button
	$('#like').oneFBLike();  

	//smooth page scrolling
  $('a.scroll[href*=#]').click(function() {
    if (location.pathname.replace(/^\//,'') == this.pathname.replace(/^\//,'') && location.hostname == this.hostname) {
      var $target = $(this.hash);
      $target = $target.length && $target || $('[name=' + this.hash.slice(1) +']');
      if ($target.length) {
        var targetOffset = $target.offset().top;
        $('html,body').animate({scrollTop: targetOffset}, 1000);
        return false;
      }
    }
  }); 

	//open links in new window  
  $("a[href^='http']").attr('target','_blank');
});;

