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

// CUFON
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var V=L.DOM={ready:(function(){var a=false,c={loaded:1,complete:1};var Z=[],b=function(){if(a){return}a=true;for(var d;d=Z.shift();d()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",b,false);window.addEventListener("pageshow",b,false)}if(!window.opera&&document.readyState){(function(){c[document.readyState]?b():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");b()}catch(d){setTimeout(arguments.callee,1)}})()}P(window,"load",b);return function(d){if(!arguments.length){b()}else{a?d():Z.push(d)}}})()};var M=L.CSS={Size:function(a,Z){this.value=parseFloat(a);this.unit=String(a).match(/[a-z%]*$/)[0]||"px";this.convert=function(b){return b/Z*this.value};this.convertFrom=function(b){return b/this.value*Z};this.toString=function(){return this.value+this.unit}},getStyle:function(a){var Z=document.defaultView;if(Z&&Z.getComputedStyle){return new A(Z.getComputedStyle(a,null))}if(a.currentStyle){return new A(a.currentStyle)}return new A(a.style)},quotedList:I(function(c){var b=[],a=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,Z;while(Z=a.exec(c)){b.push(Z[3]||Z[1])}return b}),ready:(function(){var b=false;var a=[],c=function(){b=true;for(var e;e=a.shift();e()){}};var Z=Object.prototype.propertyIsEnumerable?F("style"):{length:0};var d=F("link");V.ready(function(){var h=0,g;for(var f=0,e=d.length;g=d[f],f<e;++f){if(!g.disabled&&g.rel.toLowerCase()=="stylesheet"){++h}}if(document.styleSheets.length>=Z.length+h){c()}else{setTimeout(arguments.callee,10)}});return function(e){if(b){e()}else{a.push(e)}}})(),supports:function(b,a){var Z=document.createElement("span").style;if(Z[b]===undefined){return false}Z[b]=a;return Z[b]===a},textAlign:function(c,b,Z,a){if(b.get("textAlign")=="right"){if(Z>0){c=" "+c}}else{if(Z<a-1){c+=" "}}return c},textDecoration:function(e,d){if(!d){d=this.getStyle(e)}var a={underline:null,overline:null,"line-through":null};for(var Z=e;Z.parentNode&&Z.parentNode.nodeType==1;){var c=true;for(var b in a){if(!J(a,b)||a[b]){continue}if(d.get("textDecoration").indexOf(b)!=-1){a[b]=d.get("color")}c=false}if(c){break}d=this.getStyle(Z=Z.parentNode)}return a},textShadow:I(function(d){if(d=="none"){return null}var c=[],e={},Z,a=0;var b=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Z=b.exec(d)){if(Z[0]==","){c.push(e);e={},a=0}else{if(Z[1]){e.color=Z[1]}else{e[["offX","offY","blur"][a++]]=Z[2]}}}c.push(e);return c}),color:I(function(a){var Z={};Z.color=a.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(c,b,d){Z.opacity=parseFloat(d);return"rgb("+b+")"});return Z}),textTransform:function(a,Z){return a[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Z.get("textTransform")]||"toString"]()}};function R(a){var Z=this.face=a.face;this.glyphs=a.glyphs;this.w=a.w;this.baseSize=parseInt(Z["units-per-em"],10);this.family=Z["font-family"].toLowerCase();this.weight=Z["font-weight"];this.style=Z["font-style"]||"normal";this.viewBox=(function(){var c=Z.bbox.split(/\s+/);var b={minX:parseInt(c[0],10),minY:parseInt(c[1],10),maxX:parseInt(c[2],10),maxY:parseInt(c[3],10)};b.width=b.maxX-b.minX,b.height=b.maxY-b.minY;b.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return b})();this.ascent=-parseInt(Z.ascent,10);this.descent=-parseInt(Z.descent,10);this.height=-this.ascent+this.descent}function E(){var a={},Z={oblique:"italic",italic:"oblique"};this.add=function(b){(a[b.style]||(a[b.style]={}))[b.weight]=b};this.get=function(f,g){var e=a[f]||a[Z[f]]||a.normal||a.italic||a.oblique;if(!e){return null}g={normal:400,bold:700}[g]||parseInt(g,10);if(e[g]){return e[g]}var c={1:1,99:0}[g%100],i=[],d,b;if(c===undefined){c=g>400}if(g==500){g=400}for(var h in e){if(!J(e,h)){continue}h=parseInt(h,10);if(!d||h<d){d=h}if(!b||h>b){b=h}i.push(h)}if(g<d){g=d}if(g>b){g=b}i.sort(function(k,j){return(c?(k>g&&j>g)?k<j:k>j:(k<g&&j<g)?k>j:k<j)?-1:1});return e[i[0]]}}function Q(){function b(d,e){if(d.contains){return d.contains(e)}return d.compareDocumentPosition(e)&16}function Z(f){var d=f.relatedTarget;if(!d||b(this,d)){return}a(this)}function c(d){a(this)}function a(d){setTimeout(function(){L.replace(d,D.get(d).options,true)},10)}this.attach=function(d){if(d.onmouseenter===undefined){P(d,"mouseover",Z);P(d,"mouseout",Z)}else{P(d,"mouseenter",c);P(d,"mouseleave",c)}}}function Y(){var b={},Z=0;function a(c){return c.cufid||(c.cufid=++Z)}this.get=function(c){var d=a(c);return b[d]||(b[d]={})}}function A(Z){var b={},a={};this.get=function(c){return b[c]!=undefined?b[c]:Z[c]};this.getSize=function(d,c){return a[d]||(a[d]=new M.Size(this.get(d),c))};this.extend=function(c){for(var d in c){if(J(c,d)){b[d]=c[d]}}return this}}function P(a,Z,b){if(a.addEventListener){a.addEventListener(Z,b,false)}else{if(a.attachEvent){a.attachEvent("on"+Z,function(){return b.call(a,window.event)})}}}function T(a,Z){var b=D.get(a);if(b.options){return a}if(Z.hover&&Z.hoverables[a.nodeName.toLowerCase()]){B.attach(a)}b.options=Z;return a}function I(Z){var a={};return function(b){if(!J(a,b)){a[b]=Z.apply(null,arguments)}return a[b]}}function C(e,d){if(!d){d=M.getStyle(e)}var a=M.quotedList(d.get("fontFamily").toLowerCase()),c;for(var b=0,Z=a.length;b<Z;++b){c=a[b];if(H[c]){return H[c].get(d.get("fontStyle"),d.get("fontWeight"))}}return null}function F(Z){return document.getElementsByTagName(Z)}function J(a,Z){return a.hasOwnProperty(Z)}function G(){var Z={},b,d;for(var c=0,a=arguments.length;b=arguments[c],c<a;++c){for(d in b){if(J(b,d)){Z[d]=b[d]}}}return Z}function N(c,m,a,n,d,b){var k=n.separate;if(k=="none"){return X[n.engine].apply(null,arguments)}var j=document.createDocumentFragment(),f;var g=m.split(O[k]),Z=(k=="words");if(Z&&S){if(/^\s/.test(m)){g.unshift("")}if(/\s$/.test(m)){g.push("")}}for(var h=0,e=g.length;h<e;++h){f=X[n.engine](c,Z?M.textAlign(g[h],a,h,e):g[h],a,n,d,b,h<e-1);if(f){j.appendChild(f)}}return j}function K(a,i){var b,Z,c,f,e,h;for(c=T(a,i).firstChild;c;c=e){f=c.nodeType;e=c.nextSibling;h=false;if(f==1){if(!c.firstChild){continue}if(!/cufon/.test(c.className)){arguments.callee(c,i);continue}else{h=true}}else{if(f!=3){continue}}if(!Z){Z=M.getStyle(a).extend(i)}if(!b){b=C(a,Z)}if(!b){continue}if(h){X[i.engine](b,null,Z,i,c,a);continue}var g=c.data;if(g===""){continue}var d=N(b,g,Z,i,c,a);if(d){c.parentNode.replaceChild(d,c)}else{c.parentNode.removeChild(c)}}}var S=" ".split(/\s+/).length==0;var D=new Y();var B=new Q();var W=[];var X={},H={},U={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(Z){return jQuery(Z)})||(window.dojo&&dojo.query)||(window.$$&&function(Z){return $$(Z)})||(window.$&&function(Z){return $(Z)})||(document.querySelectorAll&&function(Z){return document.querySelectorAll(Z)})||F),separate:"words",textShadow:"none"};var O={words:/\s+/,characters:""};L.now=function(){V.ready();return L};L.refresh=function(){var b=W.splice(0,W.length);for(var a=0,Z=b.length;a<Z;++a){L.replace.apply(null,b[a])}return L};L.registerEngine=function(a,Z){if(!Z){return L}X[a]=Z;return L.set("engine",a)};L.registerFont=function(b){var Z=new R(b),a=Z.family;if(!H[a]){H[a]=new E()}H[a].add(Z);return L.set("fontFamily",'"'+a+'"')};L.replace=function(b,a,Z){a=G(U,a);if(!a.engine){return L}if(typeof a.textShadow=="string"){a.textShadow=M.textShadow(a.textShadow)}if(!Z){W.push(arguments)}if(b.nodeType||typeof b=="string"){b=[b]}M.ready(function(){for(var d=0,c=b.length;d<c;++d){var e=b[d];if(typeof e=="string"){L.replace(a.selector(e),a,true)}else{K(e,a)}}});return L};L.set=function(Z,a){U[Z]=a;return L};return L})();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}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(q,T,k,P,X,r){var I=(T===null);var V=q.viewBox;var J=k.getSize("fontSize",q.baseSize);var h=k.get("letterSpacing");h=(h=="normal")?0:J.convertFrom(parseInt(h,10));var W=0,j=0,f=0,R=0;var U=P.textShadow,d=[];if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];var c=J.convertFrom(parseFloat(Z.offX));var b=J.convertFrom(parseFloat(Z.offY));d[p]=[c,b];if(b<W){W=b}if(c>j){j=c}if(b>f){f=b}if(c<R){R=c}}}var u=Cufon.CSS.textTransform(I?X.alt:T,k).split("");var G=0,S=null;for(var p=0,m=u.length;p<m;++p){var Q=q.glyphs[u[p]]||q.missingGlyph;if(!Q){continue}G+=S=Number(Q.w||q.w)+h}if(S===null){return null}j+=(V.width-S);R+=V.minX;var O,K;if(I){O=X;K=X.firstChild}else{O=document.createElement("span");O.className="cufon cufon-canvas";O.alt=T;K=document.createElement("canvas");O.appendChild(K);if(P.printable){var n=document.createElement("span");n.className="cufon-alt";n.appendChild(document.createTextNode(T));O.appendChild(n)}}var v=O.style;var a=K.style;var H=J.convert(V.height-W+f);var t=Math.ceil(H);var e=t/H;K.width=Math.ceil(J.convert(G+j-R)*e);K.height=t;W+=V.minY;a.top=Math.round(J.convert(W-q.ascent))+"px";a.left=Math.round(J.convert(R))+"px";var N=Math.ceil(J.convert(G*e))+"px";if(A){v.width=N;v.height=J.convert(q.height)+"px"}else{v.paddingLeft=N;v.paddingBottom=(J.convert(q.height)-1)+"px"}var s=K.getContext("2d"),Y=t/V.height;s.scale(Y,Y);s.translate(-R,-W);s.lineWidth=q.face["underline-thickness"];s.save();function L(i,g){s.strokeStyle=g;s.beginPath();s.moveTo(0,i);s.lineTo(G,i);s.stroke()}var M=P.enableTextDecoration?Cufon.CSS.textDecoration(r,k):{};if(M.underline){L(-q.face["underline-position"],M.underline)}if(M.overline){L(q.ascent,M.overline)}s.fillStyle=k.get("color");function o(){for(var w=0,g=u.length;w<g;++w){var x=q.glyphs[u[w]]||q.missingGlyph;if(!x){continue}s.beginPath();if(x.d){if(x.code){C(x.code,s)}else{x.code=D("m"+x.d,s)}}s.fill();s.translate(Number(x.w||q.w)+h,0)}}if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];s.save();s.fillStyle=Z.color;s.translate.apply(s,d[p]);o();s.restore()}}o();s.restore();if(M["line-through"]){L(-q.descent,M["line-through"])}return O}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write('<style type="text/css">.cufon-vml-canvas{text-indent:0}@media screen{cvml\\:shape,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:middle}.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>');function C(D,E){return A(D,/(?:em|ex|%)$/i.test(E)?"1em":E)}function A(G,H){if(/px$/i.test(H)){return parseFloat(H)}var F=G.style.left,E=G.runtimeStyle.left;G.runtimeStyle.left=G.currentStyle.left;G.style.left=H;var D=G.style.pixelLeft;G.style.left=F;G.runtimeStyle.left=E;return D}return function(s,V,n,S,Z,t,j){var G=(V===null);if(G){V=Z.alt}var X=s.viewBox;var H=n.computedFontSize||(n.computedFontSize=new Cufon.CSS.Size(C(t,n.get("fontSize"))+"px",s.baseSize));var h=n.computedLSpacing;if(h==undefined){h=n.get("letterSpacing");n.computedLSpacing=h=(h=="normal")?0:~~H.convertFrom(A(t,h))}var P,I;if(G){P=Z;I=Z.firstChild}else{P=document.createElement("span");P.className="cufon cufon-vml";P.alt=V;I=document.createElement("span");I.className="cufon-vml-canvas";P.appendChild(I);if(S.printable){var q=document.createElement("span");q.className="cufon-alt";q.appendChild(document.createTextNode(V));P.appendChild(q)}if(!j){P.appendChild(document.createElement("cvml:shape"))}}var y=P.style;var c=I.style;var E=H.convert(X.height),v=Math.ceil(E);var g=v/E;var f=X.minX,e=X.minY;c.height=v;c.top=Math.round(H.convert(e-s.ascent));c.left=Math.round(H.convert(f));y.height=H.convert(s.height)+"px";var L=S.enableTextDecoration?Cufon.CSS.textDecoration(t,n):{};var U=n.get("color");var w=Cufon.CSS.textTransform(V,n).split("");var D=0,d=0,M=null;var T,N,W=S.textShadow;for(var r=0,p=0,o=w.length;r<o;++r){T=s.glyphs[w[r]]||s.missingGlyph;if(T){D+=M=~~(T.w||s.w)+h}}if(M===null){return null}var O=-f+D+(X.width-M);var x=H.convert(O*g),m=Math.round(x);var b=O+","+X.height,F;var Y="r"+b+"nsnf";for(r=0;r<o;++r){T=s.glyphs[w[r]]||s.missingGlyph;if(!T){continue}if(G){N=I.childNodes[p];if(N.firstChild){N.removeChild(N.firstChild)}}else{N=document.createElement("cvml:shape");I.appendChild(N)}N.stroked="f";N.coordsize=b;N.coordorigin=F=(f-d)+","+e;N.path=(T.d?"m"+T.d+"xe":"")+"m"+F+Y;N.fillcolor=U;var u=N.style;u.width=m;u.height=v;if(W){var K=W[0],J=W[1];var R=Cufon.CSS.color(K.color),Q;var a=document.createElement("cvml:shadow");a.on="t";a.color=R.color;a.offset=K.offX+","+K.offY;if(J){Q=Cufon.CSS.color(J.color);a.type="double";a.color2=Q.color;a.offset2=J.offX+","+J.offY}a.opacity=R.opacity||(Q&&Q.opacity)||1;N.appendChild(a)}d+=~~(T.w||s.w)+h;++p}y.width=Math.max(Math.ceil(H.convert(D*g)),0);return P}})());

// A font by Jos Buivenga (exljbris) -> www.exljbris.nl
Cufon.registerFont({"w":218,"face":{"font-family":"Museo 300","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-8 -314 334 76.1827","underline-thickness":"18","underline-position":"-36","stemh":"22","stemv":"25","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":97},"\u00a0":{"w":97},"!":{"d":"42,-66r-1,-187r25,0r-1,187r-23,0xm40,0r0,-28r28,0r0,28r-28,0","w":106},"\"":{"d":"67,-196r0,-61r22,0r0,61r-22,0xm24,-196r0,-61r21,0r0,61r-21,0","w":112},"#":{"d":"54,0r12,-70r-51,0r3,-20r51,0r13,-71r-51,0r3,-20r51,0r13,-72r22,0r-13,72r63,0r12,-72r22,0r-12,72r50,0r-4,20r-50,0r-12,71r50,0r-4,20r-50,0r-12,70r-22,0r12,-70r-62,0r-12,70r-22,0xm91,-90r62,0r13,-71r-62,0","w":256},"$":{"d":"17,-43r18,-15v0,0,21,39,64,39v31,0,50,-20,50,-45v0,-63,-125,-49,-125,-130v0,-32,26,-58,65,-62r0,-35r20,0r0,34v31,2,67,17,59,61r-23,0v4,-27,-14,-36,-43,-38v-33,0,-52,18,-52,39v0,61,125,45,125,130v0,34,-25,65,-66,69r0,33r-20,0r0,-33v-50,-5,-72,-47,-72,-47","w":191},"%":{"d":"73,-157v-28,0,-51,-23,-51,-50v0,-28,23,-50,51,-50v28,0,50,22,50,50v0,27,-22,50,-50,50xm24,0r193,-253r26,0r-193,253r-26,0xm73,-177v16,0,29,-14,29,-30v0,-17,-13,-30,-29,-30v-17,0,-29,13,-29,30v0,16,12,30,29,30xm144,-45v0,-28,22,-51,50,-51v28,0,51,23,51,51v0,27,-23,49,-51,49v-28,0,-50,-22,-50,-49xm166,-46v0,17,12,30,28,30v17,0,30,-13,30,-30v0,-16,-13,-30,-30,-30v-16,0,-28,14,-28,30","w":267},"&":{"d":"102,4v-88,7,-117,-114,-40,-140v1,-3,-35,-10,-35,-57v-5,-48,56,-74,105,-60r-7,20v-32,-8,-76,8,-72,41v0,17,7,46,55,46r52,0r0,-35r25,0r0,35r34,0r0,22r-34,0v7,76,-19,132,-83,128xm42,-71v0,28,22,52,60,52v48,5,63,-47,58,-105v-58,-4,-123,2,-118,53","w":224},"'":{"d":"24,-196r0,-61r21,0r0,61r-21,0","w":68},"(":{"d":"72,34v-51,-82,-57,-213,-3,-297r24,0v-56,90,-51,205,2,297r-23,0","w":111},")":{"d":"17,34v52,-92,57,-207,2,-297r23,0v55,85,49,215,-3,297r-22,0","w":111},"*":{"d":"55,-121r-19,-14r33,-44r-52,-15r7,-23r52,19r-3,-55r25,0r-3,55r53,-18r7,22v-17,6,-38,8,-53,16r34,43r-19,14v-11,-15,-20,-32,-32,-46","w":171},"+":{"d":"15,-92r0,-21r83,0r0,-91r22,0r0,91r83,0r0,21r-83,0r0,92r-22,0r0,-92r-83,0"},",":{"d":"29,-30r26,0r-26,65r-21,0","w":77},"-":{"d":"27,-91r0,-22r102,0r0,22r-102,0","w":155},"\u00ad":{"d":"27,-91r0,-22r102,0r0,22r-102,0","w":155},".":{"d":"25,0r0,-29r28,0r0,29r-28,0","w":77},"\/":{"d":"1,15r92,-282r22,0r-91,282r-23,0","w":117},"0":{"d":"108,4v-66,0,-87,-57,-87,-131v0,-72,21,-130,87,-130v66,0,88,58,88,130v0,74,-22,131,-88,131xm108,-19v48,0,62,-47,62,-108v0,-60,-14,-107,-62,-107v-48,0,-61,47,-61,107v0,61,13,108,61,108","w":216},"1":{"d":"23,0r0,-22r57,0r-1,-200v-4,8,-30,33,-39,42r-16,-16r57,-57r24,0r0,231r55,0r0,22r-137,0","w":171},"2":{"d":"15,-25v0,-94,134,-86,134,-161v0,-52,-90,-64,-97,-20r0,12r-24,0v-9,-48,37,-63,70,-63v48,0,77,31,77,71v0,88,-134,86,-134,156v0,6,3,8,8,8r106,0v11,0,7,-15,8,-25r23,0v0,23,4,50,-21,47r-127,0v-17,0,-23,-7,-23,-25","w":203},"3":{"d":"9,-31r15,-19v0,0,26,31,67,31v30,0,57,-23,57,-55v-2,-40,-36,-57,-79,-53r-6,-15r75,-90v-20,2,-62,1,-86,1v-11,0,-7,15,-8,25r-23,0v1,-23,-5,-50,21,-47r128,0r0,16r-74,88v31,2,78,20,78,74v0,43,-36,79,-84,79v-50,0,-81,-35,-81,-35","w":190},"4":{"d":"5,-70r0,-16r124,-167r27,0r0,161r40,0r0,22r-40,0r0,70r-26,0r0,-70r-125,0xm131,-92r0,-128r-96,129v26,-2,67,-1,96,-1","w":202},"5":{"d":"19,-32r16,-17v0,0,19,30,59,30v36,0,63,-26,63,-59v0,-35,-29,-60,-66,-60v-42,0,-42,23,-61,9r11,-102v2,-41,69,-15,105,-22v25,-3,21,24,21,47r-23,0v-1,-10,3,-25,-8,-25r-64,0v-5,0,-7,3,-8,8v-2,23,-8,51,-8,72v0,0,16,-10,38,-10v52,0,89,37,89,83v0,45,-38,82,-89,82v-50,0,-75,-36,-75,-36","w":204},"6":{"d":"107,4v-55,0,-92,-49,-92,-115v0,-65,34,-146,112,-146v27,0,46,10,46,10r-9,22v0,0,-16,-9,-37,-9v-52,-1,-83,55,-84,104v37,-57,151,-29,143,50v0,52,-35,84,-79,84xm42,-95v0,33,27,76,65,76v34,0,54,-26,54,-61v0,-35,-23,-58,-57,-58v-34,0,-62,22,-62,43","w":201},"7":{"d":"28,0r125,-231r-111,0v-11,0,-6,15,-7,25r-24,0v0,-23,-4,-50,21,-47r150,0r0,17r-125,236r-29,0","w":184},"8":{"d":"17,-71v0,-47,46,-65,45,-68v-57,-24,-39,-123,42,-118v48,0,77,28,77,67v0,38,-34,63,-34,63v72,28,39,136,-44,131v-45,0,-86,-27,-86,-75xm53,-191v-1,33,41,44,71,53v9,0,32,-25,32,-51v0,-28,-22,-45,-52,-45v-32,0,-51,19,-51,43xm162,-69v3,-35,-50,-49,-78,-58v-9,0,-41,23,-41,55v0,33,29,53,60,53v30,0,59,-21,59,-50","w":205},"9":{"d":"28,-6r10,-22v0,0,16,9,37,9v51,1,83,-55,83,-104v-37,56,-151,28,-143,-50v0,-52,35,-84,80,-84v55,0,91,49,91,115v0,65,-33,146,-111,146v-28,0,-47,-10,-47,-10xm98,-115v34,0,61,-23,61,-43v0,-34,-26,-76,-64,-76v-34,0,-54,26,-54,61v0,35,22,58,57,58","w":201},":":{"d":"37,-152r0,-29r28,0r0,29r-28,0xm37,0r0,-29r28,0r0,29r-28,0","w":101},";":{"d":"37,-152r0,-29r28,0r0,29r-28,0xm19,35r18,-65r26,0r-23,65r-21,0","w":101},"<":{"d":"25,-93r0,-18r163,-73r0,24r-133,58r133,57r0,24"},"=":{"d":"25,-123r0,-21r168,0r0,21r-168,0xm25,-60r0,-21r168,0r0,21r-168,0"},">":{"d":"28,-21r0,-24r132,-58r-132,-57r0,-24r162,73r0,18"},"?":{"d":"55,-66v-9,-70,62,-79,63,-127v0,-23,-19,-41,-47,-41v-25,0,-44,15,-44,15r-13,-18v0,0,22,-21,58,-21v41,0,72,27,72,64v-1,67,-74,62,-64,128r-25,0xm54,0r0,-28r27,0r0,28r-27,0","w":155},"@":{"d":"15,-87v0,-74,57,-132,128,-132v116,0,83,86,88,181r26,0r0,20r-97,0v-42,0,-72,-31,-72,-69v0,-54,53,-77,119,-69v-1,-22,-20,-42,-62,-42v-59,0,-105,50,-105,111v0,61,45,110,107,110r0,22v-75,0,-132,-59,-132,-132xm113,-87v0,44,44,54,94,49r0,-99v-50,-5,-95,5,-94,50","w":266},"A":{"d":"4,0r0,-22v9,0,14,1,18,-8r83,-223r27,0r83,223v2,8,8,8,17,8r0,22v-53,8,-46,-51,-64,-81r-100,0v-17,30,-11,89,-64,81xm75,-103r87,0r-44,-123v-10,36,-30,87,-43,123","w":236},"B":{"d":"38,-22r0,-209r-24,0r0,-22v78,1,178,-17,176,64v0,27,-14,46,-32,55v26,8,43,32,43,63v0,70,-68,76,-141,71v-16,0,-22,-6,-22,-22xm63,-143v50,1,103,6,102,-45v2,-48,-54,-45,-102,-43r0,88xm63,-30v6,18,43,4,62,8v31,0,49,-19,49,-50v2,-55,-56,-52,-111,-50r0,92"},"C":{"d":"14,-129v0,-73,53,-128,125,-128v43,2,106,16,94,74r-23,0v8,-40,-37,-48,-71,-51v-56,0,-99,44,-99,105v0,61,43,110,100,110v53,0,83,-36,83,-36r15,18v0,0,-35,41,-98,41v-74,0,-126,-59,-126,-133","w":249},"D":{"d":"39,-22r0,-209r-24,0r0,-22r102,0v76,0,127,46,127,126v0,103,-75,137,-184,127v-15,0,-21,-6,-21,-22xm64,-30v3,16,34,5,50,8v62,0,103,-37,103,-105v0,-86,-62,-112,-153,-104r0,201","w":257},"E":{"d":"39,-22r0,-209r-24,0r0,-22r145,0v25,-3,22,24,22,47r-24,0v-1,-10,3,-25,-8,-25r-86,0r0,92r95,0r0,23r-95,0r0,86v0,5,3,8,8,8r89,0v11,0,6,-15,7,-25r24,0v0,23,3,50,-22,47r-110,0v-15,0,-21,-6,-21,-22","w":200},"F":{"d":"39,0r0,-231r-24,0r0,-22r135,0v25,-3,21,24,21,47r-23,0v-1,-10,3,-25,-8,-25r-76,0r0,95r92,0r0,23r-92,0r0,113r-25,0","w":179},"G":{"d":"14,-127v0,-73,55,-130,126,-130v59,0,89,31,89,31r-15,18v0,0,-28,-26,-73,-26v-57,0,-101,46,-101,107v0,62,43,108,100,108v50,0,80,-38,80,-38v-1,-19,8,-46,-23,-39r0,-22v23,0,50,-4,47,22r0,96r-23,0r0,-30v0,0,-30,34,-83,34v-69,0,-124,-55,-124,-131","w":262},"H":{"d":"39,0r0,-223v0,-11,-14,-7,-24,-8r0,-22v24,0,51,-5,49,22r0,93r145,0r0,-93v-2,-27,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,223r-25,0r0,-116r-145,0r0,116r-25,0","w":272},"I":{"d":"17,0r0,-22r23,0r0,-209r-23,0r0,-22r72,0r0,22r-24,0r0,209r24,0r0,22r-72,0","w":105},"J":{"d":"80,4v-38,1,-75,-26,-71,-85r25,0v-3,42,21,64,46,62v23,0,46,-14,46,-53r0,-151v0,-5,-3,-8,-8,-8r-63,0r0,-22v34,6,96,-17,96,22r0,160v0,55,-36,75,-71,75","w":181},"K":{"d":"39,0r0,-223v0,-11,-14,-7,-24,-8r0,-22v24,0,51,-5,49,22r0,88v19,-1,43,5,51,-9r61,-101r29,0r-65,106v-15,24,-17,4,-1,29r44,87v4,10,13,9,26,9r0,22v-25,0,-40,3,-48,-19r-47,-93v-6,-14,-32,-8,-50,-9r0,121r-25,0","w":212},"L":{"d":"39,-22r0,-201v0,-11,-14,-7,-24,-8r0,-22v24,0,51,-5,49,22r0,201v0,5,3,8,8,8r84,0v11,0,6,-15,7,-25r24,0v0,23,4,50,-22,47r-105,0v-15,0,-21,-6,-21,-22","w":190},"M":{"d":"8,0r0,-22v9,0,22,2,21,-8r18,-223r25,0r81,177r79,-177r25,0r18,223v0,10,12,8,22,8r0,22v-24,0,-48,4,-47,-22r-13,-189v-18,52,-51,113,-74,164r-22,0r-60,-129v-7,-12,-11,-37,-14,-36v-1,60,-9,131,-13,190v2,26,-22,22,-46,22","w":304},"N":{"d":"15,0r0,-22v10,-1,24,3,24,-8r0,-223r23,0r129,180v7,11,12,24,21,33v-4,-53,-1,-132,-2,-191v-2,-27,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,223r-23,0r-129,-180v-9,-13,-21,-33,-21,-33v4,53,1,132,2,191v2,27,-25,22,-49,22","w":273},"O":{"d":"14,-128v0,-73,57,-129,129,-129v71,0,128,56,128,129v0,74,-57,132,-128,132v-72,0,-129,-58,-129,-132xm40,-128v0,61,46,109,103,109v56,0,102,-48,102,-109v0,-60,-46,-106,-102,-106v-57,0,-103,46,-103,106","w":284},"P":{"d":"39,0r0,-231r-24,0r0,-22r107,0v45,0,78,29,78,76v0,70,-61,85,-136,78r0,99r-25,0xm64,-122v57,2,112,3,110,-55v2,-56,-53,-57,-110,-54r0,109","w":208},"Q":{"d":"14,-128v0,-73,56,-129,128,-129v110,-6,168,137,98,216r31,31r-16,16r-31,-31v-79,69,-217,5,-210,-103xm40,-128v0,61,45,109,102,109v40,0,65,-23,65,-23r-31,-31r16,-16r30,31v53,-66,7,-181,-80,-175v-57,0,-102,45,-102,105","w":284},"R":{"d":"39,0r0,-231r-24,0r0,-22r107,0v43,0,73,28,73,72v0,39,-24,62,-49,68v19,20,30,57,45,82v5,10,11,9,23,9r0,22v-25,0,-38,0,-46,-19r-36,-72v-9,-26,-39,-13,-68,-16r0,107r-25,0xm64,-129v54,2,107,3,105,-51v2,-55,-51,-53,-105,-51r0,102","w":217},"S":{"d":"13,-32r16,-18v0,0,25,31,65,31v28,0,50,-18,50,-45v0,-63,-125,-50,-125,-129v0,-35,31,-64,78,-64v30,0,78,14,68,61r-24,0v4,-28,-15,-36,-44,-38v-33,0,-52,19,-52,41v0,58,125,44,125,127v0,38,-29,70,-76,70v-52,0,-81,-36,-81,-36","w":186},"T":{"d":"99,0r0,-231r-63,0v-11,-1,-7,15,-8,25r-23,0v1,-23,-6,-50,21,-47r171,0v27,-3,20,24,21,47r-24,0v-1,-10,4,-26,-8,-25r-62,0r0,231r-25,0","w":223},"U":{"d":"36,-87r0,-136v0,-11,-14,-7,-24,-8r0,-22v24,0,51,-5,49,22r0,143v0,42,26,69,68,69v41,0,68,-27,68,-70r0,-142v-2,-27,25,-22,49,-22r0,22v-10,1,-24,-3,-24,8r0,136v0,55,-37,91,-93,91v-56,0,-93,-36,-93,-91","w":258},"V":{"d":"104,0r-83,-223v-3,-8,-8,-8,-17,-8r0,-22v23,0,35,0,41,21r73,203v18,-67,49,-138,72,-203v6,-22,17,-21,40,-21r0,22v-9,0,-13,0,-16,8r-83,223r-27,0","w":235},"W":{"d":"82,0r-58,-223v-2,-8,-9,-8,-18,-8r0,-22v23,0,38,-1,42,21r50,201r63,-221r24,0r58,221v12,-65,34,-137,49,-201v5,-22,19,-21,42,-21r0,22v-9,0,-15,0,-17,8r-59,223r-29,0r-57,-213r-60,213r-30,0","w":340},"X":{"d":"5,0r81,-132r-55,-89v-6,-11,-12,-10,-25,-10r0,-22v54,-8,57,47,80,74r17,29v9,-18,35,-61,48,-83v11,-21,22,-20,48,-20r0,22v-12,0,-18,-1,-25,10r-55,89r81,132r-29,0r-69,-115r-68,115r-29,0","w":205},"Y":{"d":"94,0r0,-110r-68,-111v-5,-10,-11,-10,-22,-10r0,-22v24,0,32,-1,44,20r59,100v13,-27,41,-72,58,-100v13,-21,21,-20,45,-20r0,22v-12,0,-17,0,-23,10r-68,111r0,110r-25,0","w":213},"Z":{"d":"7,0r0,-18r154,-213r-119,0v-11,0,-7,15,-8,25r-24,0v0,-23,-3,-50,22,-47r160,0r0,18r-135,190v-10,13,-19,23,-19,23r128,0v11,0,7,-15,8,-25r23,0v0,23,3,50,-22,47r-168,0","w":207},"[":{"d":"36,12r0,-253v-2,-26,25,-22,49,-22r0,20v-10,1,-26,-4,-26,8r0,241v0,13,16,7,26,8r0,20v-24,0,-51,5,-49,-22","w":109},"\\":{"d":"93,15r-91,-282r23,0r91,282r-23,0","w":114},"]":{"d":"24,14v10,-1,26,5,26,-8r0,-241v0,-12,-16,-7,-26,-8r0,-20v0,0,51,-4,49,22r0,253v2,27,-25,22,-49,22r0,-20","w":109},"^":{"d":"26,-90r72,-163r16,0r72,163r-24,0r-56,-133r-56,133r-24,0"},"_":{"d":"2,0r186,0r0,21r-186,0r0,-21","w":189},"`":{"d":"65,-271r-32,-43r28,0r25,43r-21,0","w":129},"a":{"d":"14,-49v3,-66,85,-59,121,-65v0,-38,-13,-51,-46,-51v-13,0,-43,3,-36,27r-23,0v-10,-40,37,-47,59,-47v94,-1,67,78,71,156v0,11,13,8,23,8r0,21v-31,5,-52,-5,-47,-35v0,0,-15,39,-60,39v-30,0,-62,-17,-62,-53xm40,-51v0,17,13,34,40,34v36,-1,57,-38,55,-75v-36,0,-92,-2,-95,41","w":190},"b":{"d":"30,0r0,-224v0,-11,-13,-8,-23,-8r0,-21v24,0,50,-5,48,22v1,26,-3,56,0,80v0,0,15,-34,61,-34v49,0,79,38,79,95v0,57,-34,94,-82,94v-45,0,-57,-36,-60,-35r1,31r-24,0xm54,-90v0,36,19,73,58,73v32,0,58,-27,58,-73v0,-45,-24,-73,-57,-73v-31,0,-59,22,-59,73","w":210},"c":{"d":"14,-90v0,-56,42,-95,96,-95v25,0,74,11,64,54r-23,0v5,-25,-22,-31,-41,-32v-39,0,-70,29,-70,73v0,44,32,72,71,72v37,0,58,-26,58,-26r11,19v0,0,-24,29,-71,29v-54,0,-95,-38,-95,-94","w":190},"d":{"d":"15,-91v0,-57,34,-94,81,-94v44,0,60,33,60,33r0,-72v0,-11,-14,-7,-24,-8r0,-21v24,0,51,-5,48,22r0,202v0,11,13,8,23,8r0,21v-30,4,-53,-4,-47,-32v0,0,-15,36,-62,36v-49,0,-79,-39,-79,-95xm98,-18v30,0,58,-21,58,-73v0,-36,-18,-72,-57,-72v-32,0,-59,27,-59,72v0,45,24,73,58,73","w":211},"e":{"d":"14,-90v0,-60,41,-95,90,-95v54,1,81,43,75,95r-139,0v1,46,33,72,70,72v33,0,55,-22,55,-22r11,18v0,0,-26,26,-67,26v-54,0,-95,-39,-95,-94xm41,-109r113,0v-2,-81,-106,-68,-113,0","w":197},"f":{"d":"32,0r0,-161r-23,0r0,-20r23,0v0,-64,39,-79,73,-73r0,22v-23,-6,-50,6,-49,51r46,0r0,20r-46,0r0,161r-24,0","w":109},"g":{"d":"15,-94v0,-54,30,-91,79,-91v48,0,60,31,60,31v-5,-28,20,-28,46,-27r0,21v-10,0,-23,-3,-23,8r0,148v0,82,-87,96,-146,65r10,-20v0,0,22,12,49,12v45,2,70,-29,63,-85v-11,19,-29,31,-57,31v-49,0,-81,-39,-81,-93xm99,-23v29,0,54,-18,54,-71v0,-53,-25,-69,-57,-69v-35,0,-56,25,-56,69v0,43,24,71,59,71","w":208},"h":{"d":"123,-162v-37,1,-69,30,-68,75r0,87r-25,0r0,-224v0,-11,-13,-8,-23,-8r0,-21v23,0,50,-4,48,21r0,92v7,-18,31,-45,71,-45v78,-5,59,85,61,156v0,11,13,8,23,8r0,21v-23,0,-50,4,-47,-22v-7,-56,23,-137,-40,-140","w":217},"i":{"d":"32,-222r0,-31r24,0r0,31r-24,0xm33,-22r0,-130v0,-11,-13,-8,-23,-8r0,-21v24,0,50,-5,48,22r0,130v-1,11,13,8,23,8r0,21v-24,0,-50,5,-48,-22","w":90},"j":{"d":"41,-222r0,-31r23,0r0,31r-23,0xm-8,52v24,0,45,-1,49,-46r0,-158v1,-11,-13,-8,-23,-8r0,-21v24,0,50,-5,48,22r0,166v-4,65,-42,69,-74,66r0,-21","w":96},"k":{"d":"30,0r0,-224v0,-11,-13,-8,-23,-8r0,-21v23,1,50,-5,48,21r0,120v17,0,30,2,39,-9r46,-60r30,0v-20,24,-43,60,-66,79v14,13,32,52,44,73v4,9,14,8,27,8r0,21v-25,0,-40,2,-49,-18r-36,-65v-7,-11,-20,-7,-35,-8r0,91r-25,0","w":179},"l":{"d":"31,-22r0,-202v0,-11,-13,-8,-23,-8r0,-21v23,0,50,-4,47,22r0,202v0,11,13,8,23,8r0,21v-23,0,-50,4,-47,-22","w":88},"m":{"d":"118,-163v-68,2,-65,89,-62,163r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v33,-3,55,1,47,41v14,-50,116,-67,122,0v12,-23,36,-46,67,-45v76,-5,59,85,61,156v-1,11,13,7,23,8r0,21v-24,0,-48,5,-48,-22v0,-56,22,-139,-39,-141v-66,2,-64,89,-61,163r-24,0r0,-109v0,-27,-4,-54,-38,-54","w":335},"n":{"d":"125,-162v-38,1,-69,30,-69,75r0,87r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v33,-3,55,1,47,41v7,-16,30,-45,72,-45v78,-5,59,85,61,156v0,11,13,8,23,8r0,21v-23,0,-50,4,-47,-22v-6,-55,23,-137,-39,-140"},"o":{"d":"14,-91v0,-54,43,-94,96,-94v53,0,96,40,96,94v0,54,-43,95,-96,95v-53,0,-96,-41,-96,-95xm40,-91v0,42,31,73,70,73v39,0,70,-31,70,-73v0,-41,-31,-72,-70,-72v-39,0,-70,31,-70,72","w":219},"p":{"d":"31,72r0,-224v0,-11,-13,-8,-23,-8r0,-21v29,-3,53,2,47,31v0,0,14,-35,62,-35v49,0,79,38,79,95v0,57,-34,94,-81,94v-46,0,-57,-35,-60,-34v2,29,1,70,1,102r-25,0xm55,-90v0,36,20,73,58,73v32,0,58,-27,58,-73v0,-45,-23,-73,-57,-73v-30,0,-59,22,-59,73","w":211},"q":{"d":"15,-91v0,-57,34,-94,82,-94v44,0,60,35,60,35v-6,-31,17,-33,46,-31r0,21v-10,0,-23,-3,-23,8r0,224r-24,0r0,-103v0,0,-15,35,-62,35v-48,0,-79,-39,-79,-95xm98,-18v30,0,59,-21,59,-73v0,-36,-19,-72,-58,-72v-32,0,-59,27,-59,72v0,45,24,73,58,73","w":211},"r":{"d":"122,-158v-72,-5,-68,83,-66,158r-25,0r0,-152v0,-11,-13,-8,-23,-8r0,-21v36,-4,54,4,47,46v10,-29,32,-53,67,-47r0,24","w":130},"s":{"d":"10,-27r14,-17v0,0,21,27,56,27v20,0,38,-10,38,-29v0,-39,-101,-32,-101,-90v0,-33,28,-49,64,-49v25,0,64,10,55,48r-23,0v4,-21,-15,-27,-31,-27v-25,0,-40,8,-40,26v0,41,101,31,101,92v0,30,-27,50,-63,50v-47,0,-70,-31,-70,-31","w":158},"t":{"d":"33,-66r0,-95r-23,0r0,-20r24,0r0,-50r24,0r0,50r45,0r0,20r-45,0r0,93v3,46,25,47,49,47r0,22v-34,0,-69,-1,-74,-67","w":120},"u":{"d":"91,4v-74,6,-59,-86,-60,-156v0,-11,-13,-8,-23,-8r0,-21v23,0,50,-4,47,21v7,56,-23,138,40,141v74,-2,68,-86,66,-162r25,0r0,152v0,11,13,8,23,8r0,21v-26,0,-53,3,-47,-28v-1,-9,3,-14,0,-13v-7,17,-31,45,-71,45","w":217},"v":{"d":"80,0r-59,-152v-3,-7,-7,-8,-16,-8r0,-21v22,-1,32,0,39,20r50,134v13,-44,34,-91,50,-134v6,-19,15,-21,37,-20r0,21v-8,0,-13,1,-15,8r-59,152r-27,0","w":186},"w":{"d":"73,0r-52,-152v-2,-7,-8,-8,-17,-8r0,-21v23,0,35,-1,41,20r43,134r50,-153r24,0r51,153v11,-43,30,-91,43,-134v5,-22,18,-20,41,-20r0,21v-9,0,-16,0,-18,8r-52,152r-27,0r-50,-148r-50,148r-27,0","w":300},"x":{"d":"7,0r63,-94r-39,-58v-7,-8,-13,-8,-25,-8r0,-21v52,-8,57,43,80,71v21,-25,28,-79,79,-71r0,21v0,0,-19,-1,-24,7r-39,59r63,94r-29,0r-50,-77r-51,77r-28,0","w":171},"y":{"d":"14,40v0,0,12,14,27,14v26,0,35,-34,45,-55r-64,-151v-3,-7,-7,-8,-16,-8r0,-21v22,0,32,0,39,20r53,132v14,-43,35,-90,51,-132v6,-20,17,-21,39,-20r0,21v-9,0,-13,1,-16,8r-78,190v-9,23,-28,38,-52,38v-41,0,-45,-17,-28,-36","w":194},"z":{"d":"14,0r0,-16r116,-144v-21,2,-60,1,-84,1v-11,-1,-8,12,-8,21r-23,0v-1,-23,-2,-46,22,-43r126,0r0,16r-117,144v24,-2,65,-1,93,-1v10,1,8,-13,8,-22r23,0v0,23,3,47,-22,44r-134,0","w":179},"{":{"d":"42,-30r0,-34v0,-38,-30,-41,-30,-41r0,-22v0,0,30,-4,30,-42r0,-29v3,-63,37,-65,60,-65r0,20v-16,0,-34,2,-37,45r0,36v0,37,-30,43,-29,46v0,0,29,9,29,46r0,39v2,44,22,45,37,45r0,21v-24,0,-56,-2,-60,-65","w":117},"|":{"d":"40,57r0,-341r23,0r0,341r-23,0","w":102},"}":{"d":"16,14v14,0,34,-1,36,-45r0,-39v0,-39,30,-44,29,-47v0,0,-29,-10,-29,-45r0,-36v-2,-43,-22,-45,-36,-45r0,-20v24,0,55,2,59,65r0,29v0,38,30,42,30,42r0,22v0,0,-30,3,-30,41r0,34v-3,63,-36,65,-59,65r0,-21","w":117},"~":{"d":"24,-75v0,-40,19,-56,46,-56v39,0,41,37,71,37v22,0,26,-22,26,-36r21,0v0,40,-18,56,-45,56v-40,0,-41,-37,-72,-37v-22,0,-26,22,-26,36r-21,0"}}});

// A font by Jos Buivenga (exljbris) -> www.exljbris.nl
Cufon.registerFont({"w":220,"face":{"font-family":"Museo 500","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-7 -318 342 76","underline-thickness":"18","underline-position":"-36","stemh":"31","stemv":"35","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":96},"\u00a0":{"w":96},"!":{"d":"41,-70r-2,-184r36,0r-3,184r-31,0xm39,0r0,-35r36,0r0,35r-36,0","w":113},"\"":{"d":"73,-191r0,-67r27,0r0,67r-27,0xm22,-191r0,-67r28,0r0,67r-28,0","w":122},"#":{"d":"48,0r12,-69r-47,0r5,-26r47,0r10,-61r-46,0r4,-26r47,0r13,-72r29,0r-13,72r56,0r12,-72r30,0r-13,72r47,0r-4,26r-47,0r-11,61r47,0r-5,26r-46,0r-13,69r-29,0r12,-69r-56,0r-12,69r-29,0xm94,-95r56,0r11,-61r-56,0","w":254},"$":{"d":"15,-45r26,-21v0,0,21,38,61,38v26,0,44,-16,44,-38v0,-54,-123,-45,-123,-127v0,-33,27,-59,66,-64r0,-34r27,0r0,33v32,4,68,21,59,67r-33,0v4,-25,-12,-33,-38,-35v-27,0,-44,15,-44,33v0,53,122,40,122,126v0,34,-25,65,-66,70r0,34r-27,0r0,-33v-51,-7,-74,-49,-74,-49","w":196},"%":{"d":"76,-152v-31,0,-55,-24,-55,-53v0,-29,24,-53,55,-53v30,0,54,24,54,53v0,29,-24,53,-54,53xm27,0r194,-254r34,0r-195,254r-33,0xm76,-179v15,0,26,-11,26,-26v0,-15,-11,-27,-26,-27v-16,0,-27,12,-27,27v0,15,11,26,27,26xm152,-49v0,-29,24,-53,54,-53v30,0,55,24,55,53v0,30,-25,53,-55,53v-30,0,-54,-23,-54,-53xm180,-49v0,15,11,27,26,27v15,0,27,-12,27,-27v0,-15,-12,-27,-27,-27v-15,0,-26,12,-26,27","w":281},"&":{"d":"104,4v-88,7,-122,-111,-44,-140v1,-3,-33,-11,-33,-57v-5,-50,58,-74,108,-62r-9,29v-27,-10,-67,7,-63,37v0,15,8,40,47,40r46,0r0,-33r34,0r0,33r32,0r0,31r-32,0v7,74,-21,123,-86,122xm52,-73v0,24,20,45,52,45v43,4,57,-39,52,-90v-50,-2,-108,-1,-104,45","w":229},"'":{"d":"22,-191r0,-67r28,0r0,67r-28,0","w":72},"(":{"d":"72,34v-54,-83,-58,-215,-1,-299r30,0v-54,92,-50,206,2,299r-31,0","w":118},")":{"d":"16,34v52,-93,56,-207,2,-299r30,0v57,84,53,215,-1,299r-31,0","w":118},"*":{"d":"58,-118r-26,-19r32,-40r-49,-14r9,-30r48,18r-2,-51r33,0r-3,51r48,-18r10,30r-50,14r32,40r-26,19v-10,-14,-17,-30,-28,-43","w":172},"+":{"d":"15,-89r0,-28r81,0r0,-88r29,0r0,88r81,0r0,28r-81,0r0,89r-29,0r0,-89r-81,0"},",":{"d":"30,-38r36,0r-31,74r-27,0","w":86},"-":{"d":"25,-87r0,-31r105,0r0,31r-105,0","w":155},"\u00ad":{"d":"25,-87r0,-31r105,0r0,31r-105,0","w":155},".":{"d":"25,0r0,-37r36,0r0,37r-36,0","w":86},"\/":{"d":"0,15r92,-283r31,0r-92,283r-31,0","w":124},"0":{"d":"109,4v-68,0,-90,-58,-90,-131v0,-74,22,-131,90,-131v68,0,90,57,90,131v0,73,-22,131,-90,131xm109,-28v42,0,54,-44,54,-99v0,-56,-12,-99,-54,-99v-41,0,-53,43,-53,99v0,55,12,99,53,99","w":218},"1":{"d":"23,0r0,-31r56,0r-1,-180v-3,8,-26,30,-35,38r-22,-22r61,-59r33,0r0,223r55,0r0,31r-147,0","w":181},"2":{"d":"14,-29v0,-94,129,-87,129,-156v0,-23,-17,-40,-45,-40v-27,2,-43,10,-39,35r-33,0v-10,-51,35,-67,74,-68v46,0,80,29,80,73v0,87,-129,89,-129,147v0,5,3,7,9,7r90,0v11,0,7,-14,8,-24r33,0v-1,26,6,58,-23,55r-130,0v-20,0,-24,-9,-24,-29","w":206},"3":{"d":"9,-31r20,-27v0,0,25,28,64,28v28,0,51,-19,51,-46v-1,-34,-34,-49,-73,-45r-8,-19r68,-84v-13,1,-53,1,-71,1v-11,-1,-6,15,-7,24r-34,0v1,-25,-7,-58,22,-55r134,0r0,23r-67,80v33,4,72,26,72,75v0,42,-34,80,-87,80v-53,0,-84,-35,-84,-35","w":194},"4":{"d":"6,-67r0,-23r115,-164r41,0r0,156r39,0r0,31r-39,0r0,67r-36,0r0,-67r-120,0xm126,-98r1,-114v-21,37,-57,81,-82,115v18,-2,59,-1,81,-1","w":207},"5":{"d":"18,-31r20,-27v0,0,20,28,59,28v32,0,55,-22,55,-50v0,-32,-27,-52,-61,-52v-44,1,-43,22,-63,6r11,-105v1,-16,6,-23,23,-23r88,0v29,-3,23,29,23,55r-33,0v-1,-10,4,-25,-8,-24r-53,0v-17,7,-9,49,-14,67v0,0,14,-7,33,-7v55,0,91,37,91,83v0,45,-36,84,-92,84v-52,0,-79,-35,-79,-35","w":209},"6":{"d":"109,4v-54,0,-95,-46,-95,-117v0,-66,35,-145,114,-145v30,0,49,10,49,10r-11,31v0,0,-16,-9,-36,-9v-46,-1,-74,46,-76,87v41,-51,145,-14,136,58v0,50,-34,85,-81,85xm51,-98v0,33,25,70,57,70v30,0,47,-23,47,-53v0,-30,-19,-52,-52,-52v-28,0,-52,17,-52,35","w":204},"7":{"d":"23,0r122,-224v-24,2,-67,1,-95,1v-11,-1,-7,14,-8,24r-33,0v1,-25,-7,-58,22,-55r155,0r0,24r-123,230r-40,0","w":189},"8":{"d":"15,-73v0,-43,43,-63,42,-66v0,0,-31,-16,-31,-51v0,-36,28,-68,79,-68v48,0,79,29,79,68v0,38,-30,61,-30,61v69,34,36,137,-50,133v-48,0,-89,-30,-89,-77xm61,-190v-1,29,35,38,61,46v9,0,27,-21,27,-44v0,-23,-18,-38,-44,-38v-28,0,-44,16,-44,36xm155,-71v3,-30,-45,-43,-69,-51v-9,0,-35,20,-35,47v0,29,25,47,53,47v26,0,51,-18,51,-43","w":207},"9":{"d":"27,-6r11,-31v0,0,16,9,37,9v45,1,73,-46,75,-88v-41,53,-145,15,-136,-58v0,-50,34,-84,81,-84v54,0,95,46,95,117v0,66,-35,145,-114,145v-30,0,-49,-10,-49,-10xm101,-121v29,0,52,-17,52,-36v0,-32,-25,-69,-57,-69v-30,0,-47,23,-47,52v0,31,19,53,52,53","w":204},":":{"d":"35,-145r0,-37r36,0r0,37r-36,0xm35,0r0,-37r36,0r0,37r-36,0","w":105},";":{"d":"35,-145r0,-37r36,0r0,37r-36,0xm16,36r19,-74r34,0r-26,74r-27,0","w":105},"<":{"d":"24,-91r0,-23r168,-75r0,32r-129,55r129,54r0,32"},"=":{"d":"24,-122r0,-28r172,0r0,28r-172,0xm24,-54r0,-28r172,0r0,28r-172,0"},">":{"d":"27,-16r0,-32r128,-55r-128,-54r0,-32r167,75r0,23"},"?":{"d":"54,-70v-10,-68,59,-76,61,-121v0,-20,-17,-35,-41,-35v-23,0,-41,15,-41,15r-20,-25v0,0,24,-23,63,-23v41,0,76,26,76,66v-1,66,-73,61,-64,123r-34,0xm53,0r0,-35r36,0r0,35r-36,0","w":163},"@":{"d":"14,-87v0,-74,58,-133,132,-133v116,1,91,79,93,175r26,0r0,26r-98,0v-45,0,-74,-31,-74,-68v-1,-48,50,-76,113,-67v-1,-21,-21,-37,-58,-37v-56,0,-99,48,-99,104v0,57,41,104,103,104r0,28v-81,0,-138,-58,-138,-132xm128,-87v-1,37,36,47,78,42r0,-85v-42,-4,-79,4,-78,43","w":274},"A":{"d":"4,0r0,-31v0,0,15,1,17,-8r80,-215r38,0r79,215v2,9,8,8,17,8r0,31v-26,0,-40,2,-49,-21r-19,-52r-94,0v-16,31,-11,84,-69,73xm82,-103r76,0r-39,-113v-7,30,-26,81,-37,113","w":239},"B":{"d":"37,-23r0,-200r-24,0r0,-31v80,1,184,-16,183,65v1,28,-17,45,-32,55v27,8,42,33,42,62v-1,72,-71,76,-146,72v-16,0,-23,-7,-23,-23xm73,-147v42,1,88,4,86,-39v2,-41,-45,-38,-86,-37r0,76xm73,-39v4,16,36,8,53,8v27,0,43,-17,43,-43v2,-47,-48,-46,-96,-44r0,79","w":222},"C":{"d":"12,-129v0,-74,55,-129,128,-129v42,1,108,16,95,79r-33,0v7,-37,-30,-44,-62,-46v-51,0,-90,39,-90,96v0,55,40,99,91,99v51,0,81,-34,81,-34r19,26v0,0,-36,42,-100,42v-76,0,-129,-58,-129,-133","w":252},"D":{"d":"37,-23r0,-200r-23,0r0,-31r103,0v77,0,128,46,128,127v0,102,-75,137,-185,127v-16,0,-23,-7,-23,-23xm73,-39v1,15,27,8,41,8v57,0,94,-34,94,-96v-1,-79,-54,-103,-135,-96r0,184","w":257},"E":{"d":"37,-23r0,-200r-23,0r0,-31r149,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-25,-8,-24r-72,0r0,79r89,0r0,31r-89,0r0,74v0,5,3,8,8,8r74,0v11,0,7,-14,8,-24r33,0v-1,26,6,58,-23,55r-113,0v-16,0,-23,-7,-23,-23","w":204},"F":{"d":"37,0r0,-223r-23,0r0,-31r140,0v29,-3,23,29,23,55r-33,0v-1,-10,3,-25,-8,-24r-63,0r0,83r87,0r0,31r-87,0r0,109r-36,0","w":184},"G":{"d":"13,-128v0,-73,55,-130,128,-130v61,0,90,31,90,31r-20,26v0,0,-27,-24,-70,-24v-50,0,-91,40,-91,97v0,59,41,98,92,98v46,0,73,-31,73,-31v0,-19,5,-40,-24,-34r0,-31v26,1,60,-7,57,23r0,103r-32,0r0,-27v0,0,-29,31,-80,31v-67,0,-123,-53,-123,-132","w":264},"H":{"d":"37,0r0,-215v0,-12,-13,-7,-23,-8r0,-31v26,1,62,-7,59,23r0,89r129,0r0,-89v-3,-31,33,-22,60,-23r0,31v-10,1,-24,-4,-24,8r0,215r-36,0r0,-112r-129,0r0,112r-36,0","w":275},"I":{"d":"15,0r0,-31r25,0r0,-192r-25,0r0,-31r84,0r0,31r-25,0r0,192r25,0r0,31r-84,0","w":114},"J":{"d":"84,4v-42,1,-81,-29,-76,-90r36,0v-3,38,17,58,40,56v20,0,39,-11,39,-45r0,-140v0,-6,-2,-8,-7,-8r-63,0r0,-31r83,0v17,0,23,7,23,23r0,158v0,55,-38,77,-75,77","w":187},"K":{"d":"37,0r0,-215v0,-12,-13,-7,-23,-8r0,-31v26,1,62,-7,59,23r0,84v18,-1,39,4,45,-9r57,-98r40,0v-25,39,-47,88,-76,122v18,16,38,65,53,93v3,9,13,8,24,8r0,31v-27,0,-46,3,-55,-19r-44,-88v-6,-15,-26,-9,-44,-10r0,117r-36,0","w":219},"L":{"d":"37,-23r0,-192v0,-12,-13,-7,-23,-8r0,-31v26,1,62,-7,59,23r0,192v0,5,3,8,8,8r70,0v11,0,7,-14,8,-24r33,0v-1,26,6,58,-23,55r-109,0v-16,0,-23,-7,-23,-23","w":195},"M":{"d":"7,0r0,-31v9,0,21,2,20,-8r18,-215r37,0r73,167v18,-52,50,-116,72,-167r37,0r18,215v-1,10,10,8,19,8r0,31v-26,-1,-57,6,-55,-23r-12,-172v-13,46,-45,105,-64,149r-31,0r-51,-111v-7,-14,-12,-39,-15,-38v1,52,-7,119,-10,172v2,29,-30,23,-56,23","w":308},"N":{"d":"14,0r0,-31v10,0,23,3,23,-8r0,-215r33,0r113,161v10,13,19,35,22,34v-6,-46,-2,-119,-3,-172v-3,-30,33,-22,60,-23r0,31v-10,1,-24,-4,-24,8r0,215r-32,0r-113,-161v-11,-14,-19,-35,-22,-34v4,47,1,119,2,172v3,30,-33,22,-59,23","w":275},"O":{"d":"12,-129v0,-73,57,-129,131,-129v73,0,130,56,130,129v0,75,-57,133,-130,133v-74,0,-131,-58,-131,-133xm50,-129v0,56,41,99,93,99v51,0,93,-43,93,-99v0,-54,-42,-96,-93,-96v-52,0,-93,42,-93,96","w":285},"P":{"d":"37,0r0,-223r-23,0r0,-31r112,0v46,0,79,31,79,79v0,70,-57,88,-132,81r0,94r-36,0xm73,-125v51,3,97,1,95,-50v2,-49,-45,-51,-95,-48r0,98","w":213},"Q":{"d":"12,-129v0,-73,57,-129,130,-129v109,-6,171,133,101,213r30,28r-22,23r-29,-29v-82,66,-216,2,-210,-106xm50,-129v0,56,40,99,92,99v34,0,54,-17,54,-17r-28,-28r21,-23r28,29v46,-60,2,-161,-75,-156v-52,0,-92,41,-92,96","w":285},"R":{"d":"37,0r0,-223r-23,0r0,-31r111,0v44,0,76,28,76,74v0,43,-28,64,-46,68v17,15,29,51,41,73v5,8,12,8,23,8r0,31v-26,0,-45,3,-53,-19r-35,-68v-7,-21,-34,-12,-58,-14r0,101r-36,0xm73,-132v47,2,92,2,90,-46v2,-49,-43,-47,-90,-45r0,91","w":222},"S":{"d":"12,-33r21,-26v0,0,26,31,64,31v24,0,44,-15,44,-38v0,-54,-123,-45,-123,-124v0,-39,33,-68,81,-68v34,0,84,16,73,67r-33,0v4,-26,-14,-33,-40,-35v-27,0,-44,15,-44,34v0,52,122,40,122,124v0,39,-30,72,-81,72v-54,0,-84,-37,-84,-37","w":191},"T":{"d":"96,0r0,-223r-51,0v-11,-1,-7,14,-8,24r-32,0v1,-25,-8,-59,22,-55r175,0v30,-4,21,30,22,55r-32,0v-1,-10,3,-25,-8,-24r-52,0r0,223r-36,0","w":228},"U":{"d":"34,-89r0,-126v0,-12,-13,-7,-23,-8r0,-31v26,1,62,-7,59,23r0,141v0,38,24,60,61,60v37,0,61,-22,61,-61r0,-140v-3,-30,33,-22,59,-23r0,31v-10,1,-23,-4,-23,8r0,126v0,56,-39,93,-97,93v-58,0,-97,-37,-97,-93","w":262},"V":{"d":"101,0r-80,-215v-2,-9,-8,-8,-17,-8r0,-31v26,0,42,-2,50,21r56,156v6,14,8,36,11,35v15,-63,45,-130,65,-191v6,-24,24,-21,50,-21r0,31v0,0,-15,-1,-17,8r-80,215r-38,0","w":240},"W":{"d":"80,0r-56,-215v-3,-9,-9,-8,-18,-8r0,-31v26,1,48,-4,52,21r45,190r57,-210r33,0r53,210r45,-190v4,-25,25,-21,51,-21r0,31v0,0,-15,-1,-17,8r-56,215r-42,0r-51,-195r-54,195r-42,0","w":348},"X":{"d":"4,0r80,-131r-52,-83v-7,-11,-13,-9,-26,-9r0,-31v28,0,44,-4,56,19r45,78v7,-16,32,-59,44,-78v12,-23,27,-19,55,-19r0,31v-13,0,-19,-2,-26,9r-51,83r80,131r-41,0r-63,-106v-14,29,-43,76,-61,106r-40,0","w":212},"Y":{"d":"91,0r0,-111r-65,-103v-5,-10,-11,-9,-22,-9r0,-31v26,0,38,-3,50,19r55,93v11,-22,39,-68,54,-93v12,-22,24,-19,50,-19r0,31v-11,0,-17,-1,-22,9r-64,103r0,111r-36,0","w":217},"Z":{"d":"6,0r0,-24r145,-200v-26,2,-71,1,-101,1v-11,-1,-7,14,-8,24r-33,0v1,-26,-6,-58,23,-55r163,0r0,23r-125,177v-10,15,-19,21,-19,24v28,-2,76,-1,108,-1v12,0,7,-14,8,-24r34,0v-1,26,6,58,-24,55r-171,0","w":209},"[":{"d":"35,11r0,-253v-3,-30,33,-22,59,-23r0,27v-11,2,-29,-5,-28,8r0,230v-1,13,17,7,28,8r0,26v-26,-1,-62,7,-59,-23","w":117},"\\":{"d":"93,15r-91,-283r31,0r91,283r-31,0","w":122},"]":{"d":"23,8v11,-1,29,4,29,-8r0,-230v0,-13,-18,-6,-29,-8r0,-27v27,1,63,-8,60,23r0,253v3,31,-33,22,-60,23r0,-26","w":117},"^":{"d":"25,-89r72,-165r23,0r71,165r-31,0r-52,-127r-51,127r-32,0"},"_":{"d":"2,0r193,0r0,28r-193,0r0,-28","w":197},"`":{"d":"64,-272r-34,-46r35,0r26,46r-27,0","w":136},"a":{"d":"13,-51v4,-62,80,-62,118,-62v1,-33,-11,-46,-40,-46v-13,0,-36,4,-30,25r-33,0v-10,-44,38,-53,63,-52v92,-1,73,70,75,148v0,12,13,7,23,8r0,30v-31,2,-63,1,-56,-32v0,0,-14,36,-58,36v-31,0,-62,-19,-62,-55xm49,-53v0,15,11,29,34,29v31,-1,50,-32,48,-64v-32,0,-79,-1,-82,35","w":195},"b":{"d":"29,0r0,-216v0,-12,-13,-7,-23,-8r0,-30v26,1,61,-7,58,23v1,24,-3,52,0,74v0,0,16,-29,59,-29v49,0,80,38,80,95v0,58,-35,95,-83,95v-43,0,-55,-31,-58,-30r1,26r-34,0xm63,-90v0,32,17,64,52,64v29,0,52,-23,52,-65v0,-39,-21,-65,-51,-65v-27,0,-53,19,-53,66","w":216},"c":{"d":"13,-91v0,-54,39,-95,98,-95v29,0,75,12,65,58r-31,0v5,-23,-17,-28,-34,-29v-36,0,-62,27,-62,66v0,41,30,64,64,64v34,0,56,-25,56,-25r15,25v0,0,-26,31,-74,31v-57,0,-97,-40,-97,-95","w":191},"d":{"d":"13,-91v0,-58,35,-95,83,-95v44,0,54,29,57,28v-2,-14,-1,-41,-1,-58v0,-12,-13,-7,-23,-8r0,-30v26,1,61,-7,58,23r0,193v0,12,13,7,23,8r0,30v-29,1,-62,5,-57,-29v0,0,-15,33,-59,33v-50,0,-81,-39,-81,-95xm100,-26v27,0,53,-19,53,-65v0,-33,-17,-65,-52,-65v-28,0,-52,24,-52,65v0,40,21,65,51,65","w":217},"e":{"d":"13,-91v0,-58,40,-95,91,-95v57,1,84,44,78,99r-133,0v2,39,30,61,63,61v31,0,53,-21,53,-21r15,25v0,0,-27,26,-70,26v-58,0,-97,-41,-97,-95xm50,-112r97,0v-2,-67,-91,-58,-97,0","w":198},"f":{"d":"31,0r0,-154r-23,0r0,-28r23,0v1,-67,43,-79,82,-73r0,30v-22,-5,-49,4,-47,43r43,0r0,28r-43,0r0,154r-35,0","w":117},"g":{"d":"13,-95v0,-53,29,-91,80,-91v46,0,59,28,59,28v-6,-29,28,-24,54,-24r0,30v-9,1,-22,-3,-22,7r0,137v-1,87,-93,100,-154,68r12,-28v0,0,22,13,49,13v41,3,65,-29,58,-75v-11,18,-28,28,-54,28v-51,0,-82,-41,-82,-93xm102,-32v25,0,48,-16,48,-63v0,-48,-23,-61,-51,-61v-32,0,-50,23,-50,60v0,38,20,64,53,64","w":214},"h":{"d":"125,-154v-35,1,-61,27,-61,69r0,85r-35,0r0,-216v0,-12,-13,-7,-23,-8r0,-30v26,1,61,-7,58,22r0,86v8,-17,31,-40,68,-40v73,-6,62,79,62,148v0,12,13,7,23,8r0,30v-26,-1,-61,6,-58,-23v-7,-50,22,-128,-34,-131","w":223},"i":{"d":"33,-218r0,-36r31,0r0,36r-31,0xm32,-23r0,-121v1,-11,-13,-7,-22,-8r0,-30v26,1,60,-7,57,23r0,121v0,12,13,7,23,8r0,30v-26,-1,-61,7,-58,-23","w":99},"j":{"d":"40,-218r0,-36r32,0r0,36r-32,0xm-7,44v22,0,44,0,47,-40r0,-148v0,-12,-13,-7,-23,-8r0,-30v26,1,61,-6,58,23r0,165v-4,66,-47,70,-82,67r0,-29","w":102},"k":{"d":"29,0r0,-216v0,-12,-13,-7,-23,-8r0,-30v25,2,61,-8,58,21r0,118v15,0,28,2,35,-8r42,-59r40,0v-19,25,-41,62,-63,82v14,9,29,46,40,63v3,9,15,7,26,7r0,30v-26,-1,-47,5,-55,-17r-33,-61v-7,-11,-18,-7,-32,-8r0,86r-35,0","w":189},"l":{"d":"30,-23r0,-193v0,-12,-13,-7,-23,-8r0,-30v26,1,61,-7,58,23r0,193v0,11,12,7,22,8r0,30v-26,-1,-60,7,-57,-23","w":96},"m":{"d":"120,-155v-61,2,-56,86,-54,155r-35,0r0,-144v0,-12,-13,-7,-23,-8r0,-30v33,-2,63,-3,57,37v12,-46,109,-60,117,0v12,-20,35,-42,65,-41v71,-6,60,80,60,148v0,12,13,7,23,8r0,30v-26,-1,-61,7,-57,-23v-6,-49,20,-129,-33,-132v-60,2,-56,87,-54,155r-34,0r0,-109v0,-24,-4,-46,-32,-46","w":337},"n":{"d":"126,-154v-36,1,-61,27,-60,69r0,85r-35,0r0,-144v0,-12,-13,-7,-23,-8r0,-30v32,0,65,-5,56,37v8,-16,29,-41,69,-41v73,-6,62,79,62,148v0,12,13,7,23,8r0,30v-26,-1,-61,7,-57,-23v-7,-51,22,-129,-35,-131","w":225},"o":{"d":"13,-91v0,-56,44,-95,98,-95v54,0,98,39,98,95v0,55,-44,95,-98,95v-54,0,-98,-40,-98,-95xm49,-91v0,38,28,65,62,65v34,0,63,-27,63,-65v0,-38,-29,-65,-63,-65v-34,0,-62,27,-62,65","w":222},"p":{"d":"31,72r0,-216v0,-12,-13,-7,-23,-8r0,-30v27,0,63,-6,55,28v0,0,15,-32,61,-32v49,0,80,38,80,95v0,58,-35,95,-83,95v-42,0,-53,-30,-56,-29v2,27,1,67,1,97r-35,0xm64,-90v0,32,18,64,52,64v29,0,52,-23,52,-65v0,-39,-21,-65,-51,-65v-27,0,-53,19,-53,66","w":217},"q":{"d":"14,-91v0,-58,34,-95,82,-95v45,0,56,31,59,30v-7,-31,28,-26,55,-26r0,30v-10,1,-23,-4,-23,8r0,216r-35,0r0,-98v0,0,-15,30,-58,30v-49,0,-80,-39,-80,-95xm101,-26v27,0,52,-19,52,-65v0,-33,-17,-65,-51,-65v-29,0,-53,24,-53,65v0,40,21,65,52,65","w":217},"r":{"d":"131,-149v-39,-8,-67,29,-65,74r0,75r-35,0r0,-144v0,-12,-13,-7,-23,-8r0,-30v36,-2,66,-4,56,45v11,-29,31,-50,67,-47r0,35","w":139},"s":{"d":"10,-28r18,-23v0,0,21,27,55,27v17,0,31,-8,31,-24v0,-32,-99,-29,-99,-87v0,-35,31,-51,68,-51v28,0,69,10,60,52r-32,0v4,-19,-12,-24,-27,-24v-21,0,-34,7,-34,21v0,35,99,27,99,88v0,32,-28,53,-67,53v-48,0,-72,-32,-72,-32","w":163},"t":{"d":"32,-67r0,-87r-24,0r0,-28r25,0r0,-50r34,0r0,50r44,0r0,28r-44,0r0,83v3,41,24,41,47,41r0,31v-38,1,-77,-2,-82,-68","w":126},"u":{"d":"92,4v-70,7,-64,-78,-62,-148v0,-12,-13,-7,-23,-8r0,-30v26,1,61,-6,58,22v7,50,-22,129,34,132v68,-1,60,-84,59,-154r35,0r0,144v0,12,13,7,23,8r0,30v-32,0,-66,6,-57,-37v-8,18,-31,41,-67,41","w":223},"v":{"d":"76,0r-57,-145v-2,-6,-6,-7,-14,-7r0,-30v23,0,40,-2,45,18r47,129v10,-43,31,-88,45,-129v6,-20,22,-18,45,-18r0,30v-8,0,-13,0,-16,7r-55,145r-40,0","w":191},"w":{"d":"68,0r-48,-145v-3,-8,-8,-7,-16,-7r0,-30v24,0,44,-4,49,19r37,128r44,-146r32,0r45,146r37,-128v4,-23,25,-19,49,-19r0,30v-8,0,-15,-1,-17,7r-47,145r-40,0r-43,-137v-11,45,-30,93,-43,137r-39,0","w":300},"x":{"d":"5,0r62,-94r-35,-51v-5,-9,-14,-7,-26,-7r0,-30v27,1,41,-3,54,18r29,47v18,-28,27,-76,83,-65r0,30v-11,0,-22,-2,-26,6r-35,52r61,94r-39,0r-44,-69r-44,69r-40,0","w":177},"y":{"d":"16,32v0,1,11,13,27,13v22,1,33,-27,40,-46r-62,-144v-4,-7,-8,-7,-16,-7r0,-30v23,0,41,-3,46,18r49,125v11,-41,30,-85,44,-125v5,-21,24,-18,48,-18r0,30v-9,0,-13,-1,-17,7r-72,178v-11,28,-33,43,-58,43v-27,0,-43,-18,-43,-18","w":196},"z":{"d":"12,0r0,-20r108,-133v-14,2,-48,1,-67,1v-10,-1,-8,11,-8,20r-32,0v0,-25,-4,-53,23,-50r130,0r0,20r-108,133v17,-2,55,-1,76,-1v9,0,7,-11,7,-20r32,0v0,25,4,53,-23,50r-138,0","w":181},"{":{"d":"41,-28r0,-34v0,-37,-31,-40,-31,-40r0,-30v0,0,31,-3,31,-40r0,-31v4,-61,39,-62,67,-62r0,27v-16,0,-33,0,-36,37r0,38v0,37,-31,43,-30,46v0,0,30,9,30,46r0,41v2,38,20,38,36,38r0,27v-29,0,-62,-1,-67,-63","w":122},"|":{"d":"39,57r0,-342r30,0r0,342r-30,0","w":107},"}":{"d":"14,8v16,0,33,0,36,-38r0,-41v0,-39,31,-44,30,-47v0,0,-30,-10,-30,-45r0,-38v-2,-37,-20,-37,-36,-37r0,-27v29,0,62,1,67,62r0,31v0,37,31,40,31,40r0,30v0,0,-31,3,-31,40r0,34v-4,62,-39,63,-67,63r0,-27","w":122},"~":{"d":"22,-73v0,-42,19,-61,51,-61v38,0,41,35,68,35v20,0,25,-19,25,-34r28,0v0,42,-19,61,-50,61v-38,0,-42,-35,-69,-35v-19,0,-24,19,-24,34r-29,0"}}});

// A font by Jos Buivenga (exljbris) -> www.exljbris.nl
Cufon.registerFont({"w":222,"face":{"font-family":"Museo 700","font-weight":600,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-7 -321 351 76","underline-thickness":"18","underline-position":"-36","stemh":"40","stemv":"46","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":95},"\u00a0":{"w":95},"!":{"d":"40,-74r-4,-182r48,0r-4,182r-40,0xm38,0r0,-42r44,0r0,42r-44,0","w":119},"\"":{"d":"78,-185r0,-75r34,0r0,75r-34,0xm21,-185r0,-75r33,0r0,75r-33,0","w":132},"#":{"d":"43,0r11,-67r-42,0r5,-33r43,0r9,-50r-42,0r5,-34r43,0r12,-72r37,0r-13,72r49,0r13,-72r37,0r-13,72r43,0r-5,34r-43,0r-9,50r42,0r-5,33r-43,0r-12,67r-36,0r11,-67r-49,0r-11,67r-37,0xm96,-100r50,0r9,-50r-50,0","w":252},"$":{"d":"14,-47r32,-28v0,0,21,37,59,37v21,0,37,-11,37,-30v0,-45,-120,-40,-120,-122v0,-36,28,-62,67,-68r0,-34r32,0r0,34v37,4,68,24,60,72r-42,0v4,-22,-11,-30,-32,-31v-22,0,-38,11,-38,26v0,46,120,34,120,121v0,36,-26,67,-68,73r0,33r-32,0r0,-33v-52,-7,-75,-50,-75,-50","w":201},"%":{"d":"78,-146v-32,0,-58,-25,-58,-57v0,-31,26,-57,58,-57v33,0,60,26,60,57v0,32,-27,57,-60,57xm29,0r196,-256r42,0r-196,256r-42,0xm78,-179v14,0,25,-11,25,-24v0,-13,-11,-24,-25,-24v-13,0,-23,11,-23,24v0,13,10,24,23,24xm159,-52v0,-31,26,-57,59,-57v33,0,59,26,59,57v0,31,-26,56,-59,56v-33,0,-59,-25,-59,-56xm194,-53v0,14,11,24,24,24v13,0,24,-10,24,-24v0,-13,-11,-23,-24,-23v-13,0,-24,10,-24,23","w":297},"&":{"d":"107,4v-89,7,-128,-109,-49,-140v1,-3,-32,-11,-32,-57v-5,-53,63,-77,113,-63r-11,37v-24,-7,-55,7,-55,32v0,15,8,34,39,34r38,0r0,-31r46,0r0,31r31,0r0,40r-31,0v6,72,-21,116,-89,117xm63,-75v0,20,16,37,44,37v38,2,47,-33,43,-75v-42,-2,-89,-1,-87,38","w":234},"'":{"d":"21,-185r0,-75r34,0r0,75r-34,0","w":75},"(":{"d":"72,34v-56,-83,-58,-217,-1,-301r39,0v-56,93,-51,208,1,301r-39,0","w":126},")":{"d":"15,34v53,-93,59,-208,1,-301r39,0v58,85,57,218,-1,301r-39,0","w":126},"*":{"d":"62,-116r-33,-23v10,-13,21,-23,30,-37r-46,-11r13,-39r43,18r-3,-48r41,0r-3,48r44,-18r13,38v-15,5,-34,6,-47,13r31,35r-33,24v-9,-13,-16,-28,-26,-39","w":173},"+":{"d":"15,-85r0,-36r78,0r0,-85r37,0r0,85r78,0r0,36r-78,0r0,85r-37,0r0,-85r-78,0"},",":{"d":"32,-46r44,0r-35,84r-33,0","w":95},"-":{"d":"23,-83r0,-40r109,0r0,40r-109,0","w":155},"\u00ad":{"d":"23,-83r0,-40r109,0r0,40r-109,0","w":155},".":{"d":"26,0r0,-46r44,0r0,46r-44,0","w":95},"\/":{"d":"0,15r91,-284r39,0r-91,284r-39,0","w":132},"0":{"d":"110,4v-70,0,-92,-59,-92,-132v0,-74,22,-132,92,-132v70,0,93,58,93,132v0,73,-23,132,-93,132xm110,-38v35,0,45,-40,45,-90v0,-50,-10,-89,-45,-89v-35,0,-45,39,-45,89v0,50,10,90,45,90","w":220},"1":{"d":"23,0r0,-40r55,0r0,-159v-3,6,-24,27,-32,34r-27,-29r64,-62r42,0r0,216r55,0r0,40r-157,0","w":191},"2":{"d":"12,-34v0,-92,125,-87,125,-150v0,-39,-68,-41,-71,-13r0,12r-42,0v-10,-55,33,-74,78,-75v44,0,82,28,82,76v0,86,-123,91,-123,138v0,4,3,6,10,6r74,0v11,0,8,-13,8,-23r43,0v-2,28,9,66,-25,63r-133,0v-22,0,-26,-10,-26,-34","w":209},"3":{"d":"9,-32r24,-35v0,0,25,27,63,27v25,0,43,-15,43,-38v0,-28,-31,-41,-66,-37r-9,-24r60,-78r-55,1v-11,0,-7,14,-8,24r-42,0v2,-27,-9,-66,22,-64r139,0r0,30r-59,73v35,5,66,31,66,75v0,42,-33,82,-91,82v-55,0,-87,-36,-87,-36","w":200},"4":{"d":"6,-64r0,-30r106,-162r56,0r0,152r39,0r0,40r-39,0r0,64r-47,0r0,-64r-115,0xm121,-104r1,-99v-15,29,-48,73,-66,100","w":212},"5":{"d":"17,-31r24,-36v0,0,22,27,59,27v29,0,47,-19,47,-42v0,-29,-26,-44,-55,-44v-46,2,-43,21,-65,4r9,-109v4,-46,77,-17,119,-25v32,-3,23,36,24,64r-43,0v-1,-9,3,-25,-7,-24v-17,2,-47,-8,-51,8v0,14,-4,38,-4,47v59,-16,128,24,121,80v0,44,-35,86,-95,86v-54,0,-83,-36,-83,-36","w":214},"6":{"d":"111,4v-53,0,-99,-43,-99,-118v0,-69,38,-146,118,-146v32,0,52,11,52,11r-14,40v0,0,-16,-8,-36,-8v-38,-1,-64,35,-66,69v46,-44,138,2,129,67v0,47,-34,85,-84,85xm60,-100v0,32,24,62,51,62v24,0,38,-19,38,-43v11,-50,-83,-63,-89,-19","w":207},"7":{"d":"17,0r105,-192v9,-16,16,-24,16,-24r-79,0v-11,0,-7,14,-8,24r-43,0v2,-27,-9,-66,22,-64r160,0r0,33r-122,223r-51,0","w":193},"8":{"d":"13,-74v0,-40,39,-64,39,-64v0,0,-28,-17,-28,-51v0,-37,29,-71,82,-71v50,0,82,31,82,71v0,38,-29,56,-28,59v67,39,32,137,-56,134v-51,0,-91,-32,-91,-78xm69,-188v-1,22,31,32,52,39v8,0,22,-18,22,-37v0,-19,-16,-31,-37,-31v-23,0,-37,13,-37,29xm148,-74v3,-23,-42,-37,-60,-44v-8,0,-28,19,-28,41v0,24,20,39,44,39v24,0,44,-15,44,-36","w":209},"9":{"d":"24,-6r14,-40v0,0,17,8,36,8v39,1,65,-36,67,-70v-8,11,-29,19,-47,19v-51,0,-82,-40,-82,-85v0,-47,33,-86,84,-86v53,0,99,43,99,119v0,68,-39,145,-118,145v-32,0,-53,-10,-53,-10xm58,-174v-10,48,82,65,88,19v0,-32,-23,-62,-50,-62v-24,0,-38,19,-38,43","w":207},":":{"d":"33,-138r0,-46r44,0r0,46r-44,0xm33,0r0,-46r44,0r0,46r-44,0","w":110},";":{"d":"33,-138r0,-46r44,0r0,46r-44,0xm13,38r19,-84r44,0r-30,84r-33,0","w":110},"<":{"d":"23,-88r0,-30r173,-77r0,40r-125,52r125,52r0,40"},"=":{"d":"24,-122r0,-35r175,0r0,35r-175,0xm24,-48r0,-36r175,0r0,36r-175,0"},">":{"d":"26,-11r0,-40r124,-52r-124,-52r0,-40r173,77r0,30"},"?":{"d":"52,-74v-10,-65,58,-75,60,-115v0,-17,-16,-30,-35,-30v-21,0,-39,16,-39,16r-25,-32v0,0,25,-26,68,-26v40,0,78,26,78,68v-1,66,-72,61,-63,119r-44,0xm52,0r0,-42r44,0r0,42r-44,0","w":171},"@":{"d":"14,-86v0,-75,59,-135,135,-135v115,2,99,73,99,169r26,0r0,33r-99,0v-49,0,-78,-33,-78,-67v-2,-44,46,-74,108,-66v-1,-19,-23,-32,-55,-32v-52,0,-91,46,-91,98v0,52,37,96,97,96r0,36v-85,0,-142,-59,-142,-132xm143,-87v0,30,28,39,62,35r0,-71v-34,-3,-63,5,-62,36","w":282},"A":{"d":"4,0r0,-40v9,0,15,1,17,-8r76,-208r49,0r76,208v2,9,8,8,17,8r0,40v-28,0,-53,4,-59,-21r-15,-45r-87,0v-13,24,-9,68,-46,66r-28,0xm89,-104r65,0r-22,-64v-6,-15,-8,-40,-11,-39v-4,25,-23,76,-32,103","w":242},"B":{"d":"35,-24r0,-192r-23,0r0,-40v82,1,191,-16,190,66v1,30,-18,46,-31,56v27,8,41,34,41,60v-1,74,-75,78,-152,74v-17,0,-25,-7,-25,-24xm82,-151v36,2,72,2,72,-33v0,-34,-37,-34,-72,-32r0,65xm82,-48v2,15,30,8,45,8v23,0,36,-15,36,-37v2,-39,-41,-39,-81,-37r0,66","w":226},"C":{"d":"11,-130v0,-74,55,-130,129,-130v33,0,97,14,97,57r0,29r-43,0v7,-34,-23,-40,-53,-42v-45,0,-81,33,-81,86v0,50,36,90,83,90v48,0,77,-33,77,-33r25,33v0,0,-37,44,-103,44v-78,0,-131,-58,-131,-134","w":255},"D":{"d":"36,-24r0,-192r-24,0r0,-40r104,0v79,0,131,47,131,128v0,101,-76,138,-187,128v-17,0,-24,-7,-24,-24xm83,-48v0,13,19,7,31,8v51,0,84,-31,84,-88v-1,-69,-45,-94,-115,-88r0,168","w":257},"E":{"d":"36,-24r0,-192r-24,0r0,-40r155,0v32,-3,23,36,24,64r-43,0v-1,-10,3,-24,-8,-24r-57,0r0,67r83,0r0,40r-83,0r0,61v0,5,3,8,8,8r59,0v11,0,8,-13,8,-23r43,0v-1,28,8,66,-25,63r-116,0v-17,0,-24,-7,-24,-24","w":208},"F":{"d":"36,0r0,-216r-24,0r0,-40r146,0v32,-3,24,35,25,64r-43,0v-1,-10,3,-24,-8,-24r-49,0r0,73r82,0r0,40r-82,0r0,103r-47,0","w":189},"G":{"d":"11,-129v0,-74,56,-131,130,-131v63,0,93,32,93,32r-26,34v0,0,-27,-22,-66,-22v-44,0,-82,35,-82,86v0,56,38,90,84,90v41,0,65,-26,65,-26v-1,-10,4,-28,-8,-27r-16,0r0,-40v28,2,69,-9,66,24r0,109r-40,0r0,-23v0,0,-28,27,-76,27v-67,0,-124,-51,-124,-133","w":267},"H":{"d":"36,0r0,-208v0,-11,-14,-7,-24,-8r0,-40v30,2,74,-10,71,25r0,84r112,0v6,-39,-18,-108,25,-109r46,0r0,40v-10,0,-23,-3,-23,8r0,208r-48,0r0,-107r-112,0r0,107r-47,0","w":278},"I":{"d":"14,0r0,-40r25,0r0,-176r-25,0r0,-40r95,0r0,40r-25,0r0,176r25,0r0,40r-95,0","w":123},"J":{"d":"87,4v-43,1,-86,-31,-80,-94r47,0v-3,33,14,52,34,50v17,0,33,-10,33,-38r0,-130v0,-5,-3,-8,-8,-8r-62,0r0,-40r93,0v17,0,24,8,24,25r0,155v0,56,-41,80,-81,80","w":194},"K":{"d":"36,0r0,-208v0,-11,-14,-7,-24,-8r0,-40v30,2,74,-10,71,25r0,79v15,-1,32,4,38,-8r52,-96r52,0v-24,40,-45,92,-74,125v18,12,36,60,49,83v4,9,14,8,25,8r0,40v-29,-1,-54,5,-63,-19r-42,-84v-6,-12,-21,-8,-37,-9r0,112r-47,0","w":228},"L":{"d":"36,-24r0,-184v0,-11,-14,-7,-24,-8r0,-40v30,2,74,-10,71,25r0,183v0,5,3,8,8,8r56,0v10,0,6,-14,7,-23r43,0v-1,28,8,66,-24,63r-113,0v-17,0,-24,-7,-24,-24","w":200},"M":{"d":"6,0r0,-40v10,0,20,2,20,-8r16,-208r49,0r53,122v7,15,10,35,13,34v17,-46,45,-109,65,-156r49,0r17,208v0,9,10,8,19,8r0,40v-29,-2,-62,9,-65,-24r-9,-114v-2,-17,2,-41,-1,-40v-11,37,-40,96,-56,134r-38,0r-43,-94v-7,-15,-12,-41,-15,-40v2,43,-5,109,-8,154v0,33,-36,22,-66,24","w":313},"N":{"d":"12,0r0,-40v10,-1,24,3,24,-8r0,-208r42,0r97,142v11,15,19,37,22,36v-5,-38,-2,-107,-3,-153v-3,-35,41,-23,71,-25r0,40v-10,1,-24,-3,-23,8r0,208r-43,0r-97,-141v-11,-15,-19,-37,-22,-36v5,38,2,107,3,153v3,34,-42,22,-71,24","w":277},"O":{"d":"11,-130v0,-73,57,-130,132,-130v75,0,132,57,132,130v0,76,-57,134,-132,134v-75,0,-132,-58,-132,-134xm60,-130v0,52,37,90,83,90v46,0,83,-38,83,-90v0,-49,-37,-86,-83,-86v-46,0,-83,37,-83,86","w":285},"P":{"d":"36,0r0,-216r-24,0r0,-40r117,0v48,0,82,34,82,84v-1,66,-53,93,-128,84r0,88r-47,0xm83,-129v43,3,81,-1,79,-43v2,-43,-35,-47,-79,-44r0,87","w":217},"Q":{"d":"11,-129v0,-74,57,-131,132,-131v108,-6,171,129,104,211r28,26r-28,30r-28,-27v-85,62,-214,-5,-208,-109xm60,-129v0,51,36,89,83,89v27,0,42,-12,42,-12r-26,-24r27,-31r26,26v37,-55,-5,-140,-69,-135v-47,0,-83,37,-83,87","w":285},"R":{"d":"36,0r0,-216r-24,0r0,-40r115,0v47,0,79,29,79,77v0,47,-31,66,-42,68v15,11,27,45,37,63v5,8,12,8,23,8r0,40v-29,-1,-51,4,-61,-19r-32,-65v-7,-16,-28,-10,-48,-11r0,95r-47,0xm83,-136v40,2,77,2,75,-40v1,-41,-35,-42,-75,-40r0,80","w":227},"S":{"d":"12,-35r26,-33v0,0,26,30,62,30v20,0,37,-11,37,-30v0,-44,-120,-40,-120,-120v0,-41,36,-72,85,-72v39,0,87,19,76,74r-43,0v4,-23,-12,-30,-33,-31v-22,0,-38,11,-38,27v0,44,120,35,120,119v0,41,-31,75,-85,75v-56,0,-87,-39,-87,-39","w":197},"T":{"d":"94,0r0,-216v-21,2,-55,-11,-47,24r-42,0v2,-27,-10,-67,23,-64r179,0v33,-3,21,37,23,64r-42,0v-1,-10,3,-24,-8,-24r-39,0r0,216r-47,0","w":235},"U":{"d":"33,-91r0,-117v0,-11,-14,-7,-24,-8r0,-40v30,2,71,-10,71,25v0,74,-28,192,53,191v81,2,53,-118,53,-191v0,-35,41,-23,71,-25r0,40v-10,0,-23,-3,-23,8r0,117v0,56,-40,95,-100,95v-61,0,-101,-39,-101,-95","w":266},"V":{"d":"98,0r-76,-208v-3,-8,-8,-8,-18,-8r0,-40v29,1,55,-5,60,21r49,143v5,14,10,37,10,37v14,-56,41,-124,59,-180v6,-26,31,-20,60,-21r0,40v-9,0,-16,0,-18,8r-76,208r-50,0","w":246},"W":{"d":"77,0r-53,-208v-1,-8,-9,-8,-18,-8r0,-40v28,0,58,-5,62,21r40,180v12,-65,36,-136,52,-200r40,0r49,200r40,-180v4,-26,34,-20,62,-21r0,40v-9,0,-16,0,-18,8r-53,208r-55,0r-46,-176v-12,55,-33,121,-47,176r-55,0","w":357},"X":{"d":"2,0r79,-130r-48,-77v-5,-12,-13,-9,-26,-9r0,-40v29,1,49,-4,62,19r42,74v5,-14,29,-57,40,-74v11,-24,32,-18,62,-19r0,40v-13,0,-20,-2,-26,9r-48,77r80,130r-53,0r-57,-97v-10,24,-39,71,-54,97r-53,0","w":220},"Y":{"d":"87,0r0,-112r-60,-95v-6,-10,-11,-9,-23,-9r0,-40v28,1,45,-5,57,19r50,85v9,-18,36,-64,49,-85v12,-23,29,-18,58,-19r0,40v-12,0,-19,-1,-23,9r-61,95r0,112r-47,0","w":221},"Z":{"d":"6,0r0,-30r115,-163v10,-14,19,-23,19,-23r-81,0v-11,0,-7,14,-8,24r-43,0v1,-29,-8,-67,25,-64r166,0r0,30r-115,163v-11,16,-20,21,-20,24v21,-2,64,-1,90,-1v11,0,8,-13,8,-23r42,0v-1,28,8,66,-24,63r-174,0","w":211},"[":{"d":"33,10r0,-252v-3,-36,41,-23,71,-25r0,33v-12,1,-32,-5,-32,8r0,219v0,14,20,6,32,8r0,33v-29,-2,-74,10,-71,-24","w":126},"\\":{"d":"94,15r-92,-284r39,0r92,284r-39,0","w":131},"]":{"d":"23,1v12,-2,31,6,31,-8r0,-219v0,-13,-19,-7,-31,-8r0,-33v30,2,74,-11,71,25r0,252v2,34,-41,22,-71,24r0,-33","w":126},"^":{"d":"23,-88r73,-168r29,0r72,168r-40,0r-47,-119r-47,119r-40,0"},"_":{"d":"2,0r202,0r0,35r-202,0r0,-35","w":205},"`":{"d":"63,-273r-37,-48r44,0r27,48r-34,0","w":143},"a":{"d":"12,-53v3,-60,79,-62,115,-62v1,-27,-10,-38,-34,-38v-12,0,-30,4,-25,22r-42,0v-11,-48,41,-59,67,-57v91,0,79,64,79,142v0,10,14,6,23,7r0,39v-31,1,-72,4,-65,-28v-13,46,-123,41,-118,-25xm58,-55v0,12,9,24,28,24v25,-1,42,-27,41,-53v-28,0,-68,1,-69,29","w":201},"b":{"d":"28,0r0,-209v1,-11,-13,-7,-22,-8r0,-39v29,2,71,-9,68,25v1,22,-3,49,0,69v0,0,16,-26,55,-26v50,0,82,39,82,96v0,59,-36,96,-85,96v-40,0,-52,-27,-55,-26r1,22r-44,0xm73,-91v0,29,15,57,45,57v25,0,47,-21,47,-57v0,-35,-19,-58,-46,-58v-24,0,-46,18,-46,58"},"c":{"d":"12,-92v0,-52,37,-96,100,-96v32,0,78,14,67,63r-41,0v4,-19,-10,-24,-26,-24v-32,0,-54,24,-54,57v0,37,27,56,57,56v31,0,54,-24,54,-24r19,31v0,0,-27,33,-77,33v-61,0,-99,-43,-99,-96","w":193},"d":{"d":"12,-92v0,-58,34,-96,83,-96v42,0,51,23,54,22v-6,-16,13,-60,-23,-51r0,-39v30,2,70,-9,68,25r0,185v0,10,13,6,22,7r0,39v-29,0,-70,7,-66,-26v0,0,-15,30,-57,30v-49,0,-81,-39,-81,-96xm103,-34v24,0,46,-17,46,-58v0,-29,-14,-57,-45,-57v-25,0,-46,21,-46,57v0,35,18,58,45,58","w":223},"e":{"d":"12,-92v0,-56,38,-96,93,-96v58,1,87,46,80,104r-127,0v4,33,28,49,55,49v30,0,52,-20,52,-20r19,32v0,0,-28,27,-74,27v-61,0,-98,-44,-98,-96xm60,-116r79,0v0,-22,-16,-37,-34,-37v-24,0,-40,14,-45,37","w":200},"f":{"d":"30,0r0,-147r-23,0r0,-37r23,0v1,-68,49,-77,90,-72r0,39v-19,-4,-45,0,-44,33r39,0r0,37r-39,0r0,147r-46,0","w":124},"g":{"d":"12,-96v0,-51,28,-92,81,-92v44,0,54,27,57,26v-5,-29,37,-21,63,-22r0,39v-9,0,-22,-2,-22,7r0,127v0,90,-99,103,-162,71r14,-36v0,0,23,12,51,12v34,3,57,-24,51,-63v-11,15,-27,23,-51,23v-53,0,-82,-42,-82,-92xm104,-42v22,0,43,-13,43,-54v0,-42,-21,-53,-46,-53v-28,0,-43,20,-43,51v0,32,16,56,46,56","w":220},"h":{"d":"127,-146v-32,1,-54,25,-53,62r0,84r-46,0r0,-209v1,-11,-13,-7,-22,-8r0,-39v29,2,71,-9,68,25v1,26,-3,55,0,79v9,-17,31,-36,63,-36v41,0,64,21,64,70r0,72v0,10,14,6,23,7r0,39v-29,-2,-71,10,-68,-24v-6,-45,20,-120,-29,-122","w":230},"i":{"d":"33,-213r0,-43r40,0r0,43r-40,0xm31,-24r0,-113v0,-10,-12,-8,-22,-8r0,-39v30,2,70,-9,68,25r0,113v0,10,13,6,22,7r0,39v-29,-2,-70,10,-68,-24","w":107},"j":{"d":"40,-213r0,-43r40,0r0,43r-40,0xm-7,35v19,3,43,0,45,-33r0,-139v0,-11,-13,-8,-23,-8r0,-39v30,2,72,-9,69,25r0,164v-4,68,-55,74,-91,68r0,-38","w":109},"k":{"d":"28,0r0,-209v1,-11,-13,-7,-22,-8r0,-39v27,3,70,-11,68,21r0,116v13,0,24,2,31,-7r38,-58r50,0v-18,26,-39,64,-60,85v22,8,19,69,61,60r0,39v-27,-1,-51,5,-62,-16r-31,-57v-5,-10,-16,-6,-27,-7r0,80r-46,0","w":199},"l":{"d":"29,-24r0,-185v0,-11,-13,-8,-23,-8r0,-39v30,2,72,-9,69,25r0,185v-1,10,12,6,21,7r0,39v-29,-2,-70,10,-67,-24","w":104},"m":{"d":"122,-146v-56,2,-47,85,-47,146r-45,0r0,-137v0,-10,-12,-8,-22,-8r0,-39v34,-1,74,-6,66,34v14,-41,101,-57,113,0v12,-18,33,-39,64,-38v65,-7,63,75,60,142v0,10,13,6,22,7r0,39v-29,-2,-71,10,-68,-24r0,-85v0,-21,-4,-37,-25,-37v-57,2,-47,85,-47,146r-46,0r0,-109v0,-20,-3,-37,-25,-37","w":339},"n":{"d":"128,-146v-63,-1,-54,81,-53,146r-45,0r0,-137v0,-10,-12,-8,-22,-8r0,-39v34,-1,74,-6,66,34v8,-15,28,-38,65,-38v40,0,64,21,64,70r0,72v0,10,13,6,22,7r0,39v-29,-2,-71,10,-68,-24v-6,-45,20,-120,-29,-122","w":231},"o":{"d":"12,-92v0,-56,44,-96,100,-96v56,0,101,40,101,96v0,57,-45,96,-101,96v-56,0,-100,-39,-100,-96xm58,-92v0,34,24,57,54,57v30,0,55,-23,55,-57v0,-34,-25,-57,-55,-57v-30,0,-54,23,-54,57","w":224},"p":{"d":"30,72r0,-209v0,-10,-12,-8,-22,-8r0,-39v28,0,68,-6,64,25v0,0,15,-29,58,-29v50,0,82,39,82,96v0,59,-36,96,-84,96v-37,0,-53,-24,-53,-24r0,92r-45,0xm74,-91v0,29,15,57,46,57v25,0,46,-21,46,-57v0,-35,-19,-58,-46,-58v-24,0,-46,18,-46,58","w":223},"q":{"d":"12,-92v0,-58,34,-96,83,-96v44,0,55,28,58,27v-7,-30,36,-22,63,-23r0,39v-10,0,-23,-2,-22,8r0,209r-46,0r0,-94v0,0,-15,26,-55,26v-49,0,-81,-39,-81,-96xm104,-34v23,0,46,-17,46,-58v0,-29,-15,-57,-46,-57v-25,0,-46,21,-46,57v0,35,19,58,46,58","w":223},"r":{"d":"140,-140v-37,-8,-67,23,-65,67r0,73r-45,0r0,-137v0,-10,-12,-8,-22,-8r0,-39v39,-2,76,-4,66,45v9,-28,33,-51,66,-46r0,45","w":148},"s":{"d":"9,-28r22,-30v0,0,23,27,54,27v14,0,25,-6,25,-18v0,-26,-97,-26,-97,-85v0,-37,33,-54,72,-54v31,0,74,12,64,57r-40,0v3,-16,-9,-21,-23,-22v-17,0,-28,6,-28,17v0,29,98,23,98,84v0,35,-31,56,-71,56v-50,0,-76,-32,-76,-32","w":168},"t":{"d":"31,-67r0,-80r-24,0r0,-37r25,0r0,-50r44,0r0,50r42,0r0,37r-42,0r0,74v2,33,24,34,45,34r0,40v-38,3,-86,-1,-90,-68","w":133},"u":{"d":"29,-66r0,-71v0,-10,-12,-8,-22,-8r0,-39v30,1,71,-9,68,25v6,44,-20,119,28,122v63,-2,50,-83,51,-147r46,0r0,138v0,10,13,6,22,7r0,39v-34,1,-74,5,-66,-34v-9,19,-32,38,-63,38v-40,0,-64,-19,-64,-70","w":229},"v":{"d":"71,0r-53,-138v-1,-6,-7,-7,-14,-7r0,-39v25,0,49,-4,54,18r42,122v8,-39,28,-85,41,-122v4,-21,27,-18,51,-18r0,39v-8,0,-12,1,-14,7r-53,138r-54,0","w":196},"w":{"d":"63,0r-44,-138v-3,-8,-7,-7,-15,-7r0,-39v26,1,53,-6,57,19r31,121v10,-45,26,-95,38,-139r41,0r39,139v6,-40,21,-83,30,-121v3,-25,31,-18,57,-19r0,39v0,0,-13,-1,-15,7r-44,138r-52,0r-36,-125r-36,125r-51,0","w":300},"x":{"d":"4,0r60,-93r-31,-46v-3,-8,-16,-6,-27,-6r0,-39v29,1,51,-5,62,18v7,14,15,30,25,42v15,-33,29,-71,85,-60r0,39v-39,-5,-39,34,-58,52r60,93r-50,0v-13,-20,-24,-42,-38,-61r-37,61r-51,0","w":184},"y":{"d":"18,24v0,0,11,13,26,13v18,2,31,-19,37,-37r-62,-138v-2,-8,-7,-7,-15,-7r0,-39v26,1,49,-6,55,18v13,37,34,76,42,116v11,-40,25,-77,38,-116v6,-23,30,-17,56,-18r0,39v-8,0,-14,-1,-16,7r-66,166v-13,33,-39,48,-66,48v-29,0,-47,-19,-47,-19","w":199},"z":{"d":"10,0r0,-24r100,-121v-21,5,-63,-15,-58,19r-42,0v0,-28,-5,-61,25,-58r135,0r0,25r-85,104v-8,11,-16,14,-16,17v10,-1,43,-1,58,-1v9,1,8,-9,8,-18r41,0v-1,27,6,60,-24,57r-142,0","w":183},"{":{"d":"39,-26r0,-34v0,-36,-30,-38,-30,-38r0,-40v0,0,30,-1,30,-38r0,-31v4,-60,44,-63,75,-60r0,33v-17,0,-33,0,-36,31r0,39v0,36,-29,46,-29,46v0,0,29,9,29,46r0,43v2,31,20,30,36,30r0,34v-31,3,-71,0,-75,-61","w":126},"|":{"d":"37,58r0,-345r39,0r0,345r-39,0","w":112},"}":{"d":"13,1v17,0,33,1,35,-30r0,-43v0,-37,30,-46,30,-46v0,0,-30,-10,-30,-46r0,-39v-2,-31,-18,-31,-35,-31v4,-13,-11,-34,11,-34v20,0,63,6,63,61r0,31v0,37,31,38,31,38r0,40v0,0,-31,2,-31,38r0,34v-4,61,-43,64,-74,61r0,-34","w":126},"~":{"d":"20,-72v0,-44,20,-65,56,-65v36,0,42,33,66,33v16,0,22,-16,22,-32r36,0v0,45,-20,66,-55,66v-36,0,-42,-33,-66,-33v-16,0,-22,15,-22,31r-37,0"}}});

/*
 * jQuery UI 1.6
 *
 * Copyright (c) 2008 AUTHORS.txt (http://ui.jquery.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI
 */
(function(C){var I=C.fn.remove,D=C.browser.mozilla&&(parseFloat(C.browser.version)<1.9);C.ui={version:"1.6",plugin:{add:function(K,L,N){var M=C.ui[K].prototype;for(var J in N){M.plugins[J]=M.plugins[J]||[];M.plugins[J].push([L,N[J]])}},call:function(J,L,K){var N=J.plugins[L];if(!N){return }for(var M=0;M<N.length;M++){if(J.options[N[M][0]]){N[M][1].apply(J.element,K)}}}},contains:function(L,K){var J=C.browser.safari&&C.browser.version<522;if(L.contains&&!J){return L.contains(K)}if(L.compareDocumentPosition){return !!(L.compareDocumentPosition(K)&16)}while(K=K.parentNode){if(K==L){return true}}return false},cssCache:{},css:function(J){if(C.ui.cssCache[J]){return C.ui.cssCache[J]}var K=C('<div class="ui-gen">').addClass(J).css({position:"absolute",top:"-5000px",left:"-5000px",display:"block"}).appendTo("body");C.ui.cssCache[J]=!!((!(/auto|default/).test(K.css("cursor"))||(/^[1-9]/).test(K.css("height"))||(/^[1-9]/).test(K.css("width"))||!(/none/).test(K.css("backgroundImage"))||!(/transparent|rgba\(0, 0, 0, 0\)/).test(K.css("backgroundColor"))));try{C("body").get(0).removeChild(K.get(0))}catch(L){}return C.ui.cssCache[J]},hasScroll:function(M,K){if(C(M).css("overflow")=="hidden"){return false}var J=(K&&K=="left")?"scrollLeft":"scrollTop",L=false;if(M[J]>0){return true}M[J]=1;L=(M[J]>0);M[J]=0;return L},isOverAxis:function(K,J,L){return(K>J)&&(K<(J+L))},isOver:function(O,K,N,M,J,L){return C.ui.isOverAxis(O,N,J)&&C.ui.isOverAxis(K,M,L)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(D){var F=C.attr,E=C.fn.removeAttr,H="http://www.w3.org/2005/07/aaa",A=/^aria-/,B=/^wairole:/;C.attr=function(K,J,L){var M=L!==undefined;return(J=="role"?(M?F.call(this,K,J,"wairole:"+L):(F.apply(this,arguments)||"").replace(B,"")):(A.test(J)?(M?K.setAttributeNS(H,J.replace(A,"aaa:"),L):F.call(this,K,J.replace(A,"aaa:"))):F.apply(this,arguments)))};C.fn.removeAttr=function(J){return(A.test(J)?this.each(function(){this.removeAttributeNS(H,J.replace(A,""))}):E.call(this,J))}}C.fn.extend({remove:function(){C("*",this).add(this).each(function(){C(this).triggerHandler("remove")});return I.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var J;if((C.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){J=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(C.curCSS(this,"position",1))&&(/(auto|scroll)/).test(C.curCSS(this,"overflow",1)+C.curCSS(this,"overflow-y",1)+C.curCSS(this,"overflow-x",1))}).eq(0)}else{J=this.parents().filter(function(){return(/(auto|scroll)/).test(C.curCSS(this,"overflow",1)+C.curCSS(this,"overflow-y",1)+C.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!J.length?C(document):J}});C.extend(C.expr[":"],{data:function(K,L,J){return C.data(K,J[3])},tabbable:function(L,M,K){var N=L.nodeName.toLowerCase();function J(O){return !(C(O).is(":hidden")||C(O).parents(":hidden").length)}return(L.tabIndex>=0&&(("a"==N&&L.href)||(/input|select|textarea|button/.test(N)&&"hidden"!=L.type&&!L.disabled))&&J(L))}});function G(M,N,O,L){function K(Q){var P=C[M][N][Q]||[];return(typeof P=="string"?P.split(/,?\s+/):P)}var J=K("getter");if(L.length==1&&typeof L[0]=="string"){J=J.concat(K("getterSetter"))}return(C.inArray(O,J)!=-1)}C.widget=function(K,J){var L=K.split(".")[0];K=K.split(".")[1];C.fn[K]=function(P){var N=(typeof P=="string"),O=Array.prototype.slice.call(arguments,1);if(N&&P.substring(0,1)=="_"){return this}if(N&&G(L,K,P,O)){var M=C.data(this[0],K);return(M?M[P].apply(M,O):undefined)}return this.each(function(){var Q=C.data(this,K);(!Q&&!N&&C.data(this,K,new C[L][K](this,P)));(Q&&N&&C.isFunction(Q[P])&&Q[P].apply(Q,O))})};C[L]=C[L]||{};C[L][K]=function(O,N){var M=this;this.widgetName=K;this.widgetEventPrefix=C[L][K].eventPrefix||K;this.widgetBaseClass=L+"-"+K;this.options=C.extend({},C.widget.defaults,C[L][K].defaults,C.metadata&&C.metadata.get(O)[K],N);this.element=C(O).bind("setData."+K,function(Q,P,R){return M._setData(P,R)}).bind("getData."+K,function(Q,P){return M._getData(P)}).bind("remove",function(){return M.destroy()});this._init()};C[L][K].prototype=C.extend({},C.widget.prototype,J);C[L][K].getterSetter="option"};C.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName)},option:function(L,M){var K=L,J=this;if(typeof L=="string"){if(M===undefined){return this._getData(L)}K={};K[L]=M}C.each(K,function(N,O){J._setData(N,O)})},_getData:function(J){return this.options[J]},_setData:function(J,K){this.options[J]=K;if(J=="disabled"){this.element[K?"addClass":"removeClass"](this.widgetBaseClass+"-disabled")}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(K,L,M){var J=(K==this.widgetEventPrefix?K:this.widgetEventPrefix+K);L=L||C.event.fix({type:J,target:this.element[0]});return this.element.triggerHandler(J,[L,M],this.options[K])}};C.widget.defaults={disabled:false};C.ui.mouse={_mouseInit:function(){var J=this;this.element.bind("mousedown."+this.widgetName,function(K){return J._mouseDown(K)}).bind("click."+this.widgetName,function(K){if(J._preventClickEvent){J._preventClickEvent=false;return false}});if(C.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(C.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(L){(this._mouseStarted&&this._mouseUp(L));this._mouseDownEvent=L;var K=this,M=(L.which==1),J=(typeof this.options.cancel=="string"?C(L.target).parents().add(L.target).filter(this.options.cancel).length:false);if(!M||J||!this._mouseCapture(L)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){K.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(L)&&this._mouseDelayMet(L)){this._mouseStarted=(this._mouseStart(L)!==false);if(!this._mouseStarted){L.preventDefault();return true}}this._mouseMoveDelegate=function(N){return K._mouseMove(N)};this._mouseUpDelegate=function(N){return K._mouseUp(N)};C(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);if(!C.browser.safari){L.preventDefault()}return true},_mouseMove:function(J){if(C.browser.msie&&!J.button){return this._mouseUp(J)}if(this._mouseStarted){this._mouseDrag(J);return J.preventDefault()}if(this._mouseDistanceMet(J)&&this._mouseDelayMet(J)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,J)!==false);(this._mouseStarted?this._mouseDrag(J):this._mouseUp(J))}return !this._mouseStarted},_mouseUp:function(J){C(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=true;this._mouseStop(J)}return false},_mouseDistanceMet:function(J){return(Math.max(Math.abs(this._mouseDownEvent.pageX-J.pageX),Math.abs(this._mouseDownEvent.pageY-J.pageY))>=this.options.distance)},_mouseDelayMet:function(J){return this.mouseDelayMet},_mouseStart:function(J){},_mouseDrag:function(J){},_mouseStop:function(J){},_mouseCapture:function(J){return true}};C.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);

/*
 * jQuery UI Tabs 1.6
 *
 * Copyright (c) 2008 AUTHORS.txt (http://ui.jquery.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Tabs
 *
 * Depends:
 *	ui.core.js
 */
(function(A){A.widget("ui.tabs",{_init:function(){this._tabify(true)},destroy:function(){var B=this.options;this.element.unbind(".tabs").removeClass(B.navClass).removeData("tabs");this.$tabs.each(function(){var C=A.data(this,"href.tabs");if(C){this.href=C}var D=A(this).unbind(".tabs");A.each(["href","load","cache"],function(E,F){D.removeData(F+".tabs")})});this.$lis.add(this.$panels).each(function(){if(A.data(this,"destroy.tabs")){A(this).remove()}else{A(this).removeClass([B.selectedClass,B.deselectableClass,B.disabledClass,B.panelClass,B.hideClass].join(" "))}});if(B.cookie){this._cookie(null,B.cookie)}},_setData:function(B,C){if((/^selected/).test(B)){this.select(C)}else{this.options[B]=C;this._tabify()}},length:function(){return this.$tabs.length},_tabId:function(B){return B.title&&B.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||this.options.idPrefix+A.data(B)},_sanitizeSelector:function(B){return B.replace(/:/g,"\\:")},_cookie:function(){var B=this.cookie||(this.cookie="ui-tabs-"+A.data(this.element[0]));return A.cookie.apply(null,[B].concat(A.makeArray(arguments)))},_tabify:function(N){this.$lis=A("li:has(a[href])",this.element);this.$tabs=this.$lis.map(function(){return A("a",this)[0]});this.$panels=A([]);var O=this,C=this.options;this.$tabs.each(function(Q,P){if(P.hash&&P.hash.replace("#","")){O.$panels=O.$panels.add(O._sanitizeSelector(P.hash))}else{if(A(P).attr("href")!="#"){A.data(P,"href.tabs",P.href);A.data(P,"load.tabs",P.href);var S=O._tabId(P);P.href="#"+S;var R=A("#"+S);if(!R.length){R=A(C.panelTemplate).attr("id",S).addClass(C.panelClass).insertAfter(O.$panels[Q-1]||O.element);R.data("destroy.tabs",true)}O.$panels=O.$panels.add(R)}else{C.disabled.push(Q+1)}}});if(N){this.element.addClass(C.navClass);this.$panels.addClass(C.panelClass);if(C.selected===undefined){if(location.hash){this.$tabs.each(function(Q,P){if(P.hash==location.hash){C.selected=Q;return false}})}else{if(C.cookie){var I=parseInt(O._cookie(),10);if(I&&O.$tabs[I]){C.selected=I}}else{if(O.$lis.filter("."+C.selectedClass).length){C.selected=O.$lis.index(O.$lis.filter("."+C.selectedClass)[0])}}}}C.selected=C.selected===null||C.selected!==undefined?C.selected:0;C.disabled=A.unique(C.disabled.concat(A.map(this.$lis.filter("."+C.disabledClass),function(Q,P){return O.$lis.index(Q)}))).sort();if(A.inArray(C.selected,C.disabled)!=-1){C.disabled.splice(A.inArray(C.selected,C.disabled),1)}this.$panels.addClass(C.hideClass);this.$lis.removeClass(C.selectedClass);if(C.selected!==null){this.$panels.eq(C.selected).removeClass(C.hideClass);var E=[C.selectedClass];if(C.deselectable){E.push(C.deselectableClass)}this.$lis.eq(C.selected).addClass(E.join(" "));var J=function(){O._trigger("show",null,O.ui(O.$tabs[C.selected],O.$panels[C.selected]))};if(A.data(this.$tabs[C.selected],"load.tabs")){this.load(C.selected,J)}else{J()}}A(window).bind("unload",function(){O.$tabs.unbind(".tabs");O.$lis=O.$tabs=O.$panels=null})}else{C.selected=this.$lis.index(this.$lis.filter("."+C.selectedClass)[0])}if(C.cookie){this._cookie(C.selected,C.cookie)}for(var G=0,M;M=this.$lis[G];G++){A(M)[A.inArray(G,C.disabled)!=-1&&!A(M).hasClass(C.selectedClass)?"addClass":"removeClass"](C.disabledClass)}if(C.cache===false){this.$tabs.removeData("cache.tabs")}var B,H;if(C.fx){if(C.fx.constructor==Array){B=C.fx[0];H=C.fx[1]}else{B=H=C.fx}}function D(P,Q){P.css({display:""});if(A.browser.msie&&Q.opacity){P[0].style.removeAttribute("filter")}}var K=H?function(P,Q){Q.animate(H,H.duration||"normal",function(){Q.removeClass(C.hideClass);D(Q,H);O._trigger("show",null,O.ui(P,Q[0]))})}:function(P,Q){Q.removeClass(C.hideClass);O._trigger("show",null,O.ui(P,Q[0]))};var L=B?function(Q,P,R){P.animate(B,B.duration||"normal",function(){P.addClass(C.hideClass);D(P,B);if(R){K(Q,R,P)}})}:function(Q,P,R){P.addClass(C.hideClass);if(R){K(Q,R)}};function F(R,T,P,S){var Q=[C.selectedClass];if(C.deselectable){Q.push(C.deselectableClass)}T.addClass(Q.join(" ")).siblings().removeClass(Q.join(" "));L(R,P,S)}this.$tabs.unbind(".tabs").bind(C.event+".tabs",function(){var S=A(this).parents("li:eq(0)"),P=O.$panels.filter(":visible"),R=A(O._sanitizeSelector(this.hash));if((S.hasClass(C.selectedClass)&&!C.deselectable)||S.hasClass(C.disabledClass)||A(this).hasClass(C.loadingClass)||O._trigger("select",null,O.ui(this,R[0]))===false){this.blur();return false}C.selected=O.$tabs.index(this);if(C.deselectable){if(S.hasClass(C.selectedClass)){O.options.selected=null;S.removeClass([C.selectedClass,C.deselectableClass].join(" "));O.$panels.stop();L(this,P);this.blur();return false}else{if(!P.length){O.$panels.stop();var Q=this;O.load(O.$tabs.index(this),function(){S.addClass([C.selectedClass,C.deselectableClass].join(" "));K(Q,R)});this.blur();return false}}}if(C.cookie){O._cookie(C.selected,C.cookie)}O.$panels.stop();if(R.length){var Q=this;O.load(O.$tabs.index(this),P.length?function(){F(Q,S,P,R)}:function(){S.addClass(C.selectedClass);K(Q,R)})}else{throw"jQuery UI Tabs: Mismatching fragment identifier."}if(A.browser.msie){this.blur()}return false});if(C.event!="click"){this.$tabs.bind("click.tabs",function(){return false})}},add:function(E,D,C){if(C==undefined){C=this.$tabs.length}var G=this.options;var I=A(G.tabTemplate.replace(/#\{href\}/g,E).replace(/#\{label\}/g,D));I.data("destroy.tabs",true);var H=E.indexOf("#")==0?E.replace("#",""):this._tabId(A("a:first-child",I)[0]);var F=A("#"+H);if(!F.length){F=A(G.panelTemplate).attr("id",H).addClass(G.hideClass).data("destroy.tabs",true)}F.addClass(G.panelClass);if(C>=this.$lis.length){I.appendTo(this.element);F.appendTo(this.element[0].parentNode)}else{I.insertBefore(this.$lis[C]);F.insertBefore(this.$panels[C])}G.disabled=A.map(G.disabled,function(K,J){return K>=C?++K:K});this._tabify();if(this.$tabs.length==1){I.addClass(G.selectedClass);F.removeClass(G.hideClass);var B=A.data(this.$tabs[0],"load.tabs");if(B){this.load(C,B)}}this._trigger("add",null,this.ui(this.$tabs[C],this.$panels[C]))},remove:function(B){var D=this.options,E=this.$lis.eq(B).remove(),C=this.$panels.eq(B).remove();if(E.hasClass(D.selectedClass)&&this.$tabs.length>1){this.select(B+(B+1<this.$tabs.length?1:-1))}D.disabled=A.map(A.grep(D.disabled,function(G,F){return G!=B}),function(G,F){return G>=B?--G:G});this._tabify();this._trigger("remove",null,this.ui(E.find("a")[0],C[0]))},enable:function(B){var C=this.options;if(A.inArray(B,C.disabled)==-1){return }var D=this.$lis.eq(B).removeClass(C.disabledClass);if(A.browser.safari){D.css("display","inline-block");setTimeout(function(){D.css("display","block")},0)}C.disabled=A.grep(C.disabled,function(F,E){return F!=B});this._trigger("enable",null,this.ui(this.$tabs[B],this.$panels[B]))},disable:function(C){var B=this,D=this.options;if(C!=D.selected){this.$lis.eq(C).addClass(D.disabledClass);D.disabled.push(C);D.disabled.sort();this._trigger("disable",null,this.ui(this.$tabs[C],this.$panels[C]))}},select:function(B){if(typeof B=="string"){B=this.$tabs.index(this.$tabs.filter("[href$="+B+"]")[0])}this.$tabs.eq(B).trigger(this.options.event+".tabs")},load:function(G,K){var L=this,D=this.options,E=this.$tabs.eq(G),J=E[0],H=K==undefined||K===false,B=E.data("load.tabs");K=K||function(){};if(!B||!H&&A.data(J,"cache.tabs")){K();return }var M=function(N){var O=A(N),P=O.find("*:last");return P.length&&P.is(":not(img)")&&P||O};var C=function(){L.$tabs.filter("."+D.loadingClass).removeClass(D.loadingClass).each(function(){if(D.spinner){M(this).parent().html(M(this).data("label.tabs"))}});L.xhr=null};if(D.spinner){var I=M(J).html();M(J).wrapInner("<em></em>").find("em").data("label.tabs",I).html(D.spinner)}var F=A.extend({},D.ajaxOptions,{url:B,success:function(P,N){A(L._sanitizeSelector(J.hash)).html(P);C();if(D.cache){A.data(J,"cache.tabs",true)}L._trigger("load",null,L.ui(L.$tabs[G],L.$panels[G]));try{D.ajaxOptions.success(P,N)}catch(O){}K()}});if(this.xhr){this.xhr.abort();C()}E.addClass(D.loadingClass);L.xhr=A.ajax(F)},url:function(C,B){this.$tabs.eq(C).removeData("cache.tabs").data("load.tabs",B)},ui:function(C,B){return{options:this.options,tab:C,panel:B,index:this.$tabs.index(C)}}});A.extend(A.ui.tabs,{version:"1.6",getter:"length",defaults:{ajaxOptions:null,cache:false,cookie:null,deselectable:false,deselectableClass:"ui-tabs-deselectable",disabled:[],disabledClass:"ui-tabs-disabled",event:"click",fx:null,hideClass:"ui-tabs-hide",idPrefix:"ui-tabs-",loadingClass:"ui-tabs-loading",navClass:"ui-tabs-nav",panelClass:"ui-tabs-panel",panelTemplate:"<div></div>",selectedClass:"ui-tabs-selected",spinner:"Loading&#8230;",tabTemplate:'<li><a href="#{href}"><span>#{label}</span></a></li>'}});A.extend(A.ui.tabs.prototype,{rotation:null,rotate:function(C,F){F=F||false;var B=this,E=this.options.selected;function G(){B.rotation=setInterval(function(){E=++E<B.$tabs.length?E:0;B.select(E)},C)}function D(H){if(!H||H.clientX){clearInterval(B.rotation)}}if(C){G();if(!F){this.$tabs.bind(this.options.event+".tabs",D)}else{this.$tabs.bind(this.options.event+".tabs",function(){D();E=B.options.selected;G()})}}else{D();this.$tabs.unbind(this.options.event+".tabs",D)}}})})(jQuery);

/*
 * jQuery ifixpng plugin
 * (previously known as pngfix)
 * Version 2.1  (23/04/2008)
 * @requires jQuery v1.1.3 or above
 *
 * Examples at: http://jquery.khurshid.com
 * Copyright (c) 2007 Kush M.
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */

 /**
  *
  * @example
  *
  * optional if location of pixel.gif if different to default which is images/pixel.gif
  * $.ifixpng('media/pixel.gif');
  *
  * $('img[@src$=.png], #panel').ifixpng();
  *
  * @apply hack to all png images and #panel which icluded png img in its css
  *
  * @name ifixpng
  * @type jQuery
  * @cat Plugins/Image
  * @return jQuery
  * @author jQuery Community
  */

(function($) {

	/**
	 * helper variables and function
	 */
	$.ifixpng = function(customPixel) {
		$.ifixpng.pixel = customPixel;
	};

	$.ifixpng.getPixel = function() {
		return $.ifixpng.pixel || 'images/pixel.gif';
	};

	var hack = {
		ltie7  : $.browser.msie && $.browser.version < 7,
		filter : function(src) {
			return "progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true,sizingMethod=crop,src='"+src+"')";
		}
	};

	/**
	 * Applies ie png hack to selected dom elements
	 *
	 * $('img[@src$=.png]').ifixpng();
	 * @desc apply hack to all images with png extensions
	 *
	 * $('#panel, img[@src$=.png]').ifixpng();
	 * @desc apply hack to element #panel and all images with png extensions
	 *
	 * @name ifixpng
	 */

	$.fn.ifixpng = hack.ltie7 ? function() {
    	return this.each(function() {
			var $$ = $(this);
			// in case rewriting urls
			var base = $('base').attr('href');
			if (base) {
				// remove anything after the last '/'
				base = base.replace(/\/[^\/]+$/,'/');
			}
			if ($$.is('img') || $$.is('input')) { // hack image tags present in dom
				if ($$.attr('src')) {
					if ($$.attr('src').match(/.*\.png([?].*)?$/i)) { // make sure it is png image
						// use source tag value if set
						var source = (base && $$.attr('src').search(/^(\/|http:)/i)) ? base + $$.attr('src') : $$.attr('src');
						// apply filter
						$$.css({filter:hack.filter(source), width:$$.width(), height:$$.height()})
						  .attr({src:$.ifixpng.getPixel()})
						  .positionFix();
					}
				}
			} else { // hack png css properties present inside css
				var image = $$.css('backgroundImage');
				if (image.match(/^url\(["']?(.*\.png([?].*)?)["']?\)$/i)) {
					image = RegExp.$1;
					image = (base && image.substring(0,1)!='/') ? base + image : image;
					$$.css({backgroundImage:'none', filter:hack.filter(image)})
					  .children().children().positionFix();
				}
			}
		});
	} : function() { return this; };

	/**
	 * Removes any png hack that may have been applied previously
	 *
	 * $('img[@src$=.png]').iunfixpng();
	 * @desc revert hack on all images with png extensions
	 *
	 * $('#panel, img[@src$=.png]').iunfixpng();
	 * @desc revert hack on element #panel and all images with png extensions
	 *
	 * @name iunfixpng
	 */

	$.fn.iunfixpng = hack.ltie7 ? function() {
    	return this.each(function() {
			var $$ = $(this);
			var src = $$.css('filter');
			if (src.match(/src=["']?(.*\.png([?].*)?)["']?/i)) { // get img source from filter
				src = RegExp.$1;
				if ($$.is('img') || $$.is('input')) {
					$$.attr({src:src}).css({filter:''});
				} else {
					$$.css({filter:'', background:'url('+src+')'});
				}
			}
		});
	} : function() { return this; };

	/**
	 * positions selected item relatively
	 */

	$.fn.positionFix = function() {
		return this.each(function() {
			var $$ = $(this);
			var position = $$.css('position');
			if (position != 'absolute' && position != 'relative') {
				$$.css({position:'relative'});
			}
		});
	};

})(jQuery);


/*
 * Thickbox 3.1 - One Box To Rule Them All.
 * By Cody Lindley (http://www.codylindley.com)
 * Copyright (c) 2007 cody lindley
 * Licensed under the MIT License: http://www.opensource.org/licenses/mit-license.php
*/
var tb_pathToImage="/sites/all/themes/fuzemeeting/_media/loadingAnimation.gif";$(document).ready(function(){tb_init('a.thickbox, area.thickbox, input.thickbox');imgLoader=new Image();imgLoader.src=tb_pathToImage;});function tb_init(domChunk){$(domChunk).click(function(){var t=this.title||this.name||null;var a=this.href||this.alt;var g=this.rel||false;tb_show(t,a,g);this.blur();return false;});}
function tb_show(caption,url,imageGroup){try{if(typeof document.body.style.maxHeight==="undefined"){$("body","html").css({height:"100%",width:"100%"});$("html").css("overflow","hidden");if(document.getElementById("TB_HideSelect")===null){$("body").append("<iframe id='TB_HideSelect'></iframe><div id='TB_overlay'></div><div id='TB_window'></div>");$("#TB_overlay").click(tb_remove);}}else{if(document.getElementById("TB_overlay")===null){$("body").append("<div id='TB_overlay'></div><div id='TB_window'></div>");$("#TB_overlay").click(tb_remove);}}
if(tb_detectMacXFF()){$("#TB_overlay").addClass("TB_overlayMacFFBGHack");}else{$("#TB_overlay").addClass("TB_overlayBG");}
if(caption===null){caption="";}
$("body").append("<div id='TB_load'><img src='"+imgLoader.src+"' /></div>");$('#TB_load').show();var baseURL;if(url.indexOf("?")!==-1){baseURL=url.substr(0,url.indexOf("?"));}else{baseURL=url;}
var urlString=/\.jpg$|\.jpeg$|\.png$|\.gif$|\.bmp$/;var urlType=baseURL.toLowerCase().match(urlString);if(urlType=='.jpg'||urlType=='.jpeg'||urlType=='.png'||urlType=='.gif'||urlType=='.bmp'){TB_PrevCaption="";TB_PrevURL="";TB_PrevHTML="";TB_NextCaption="";TB_NextURL="";TB_NextHTML="";TB_imageCount="";TB_FoundURL=false;if(imageGroup){TB_TempArray=$("a[@rel="+imageGroup+"]").get();for(TB_Counter=0;((TB_Counter<TB_TempArray.length)&&(TB_NextHTML===""));TB_Counter++){var urlTypeTemp=TB_TempArray[TB_Counter].href.toLowerCase().match(urlString);if(!(TB_TempArray[TB_Counter].href==url)){if(TB_FoundURL){TB_NextCaption=TB_TempArray[TB_Counter].title;TB_NextURL=TB_TempArray[TB_Counter].href;TB_NextHTML="<span id='TB_next'>&nbsp;&nbsp;<a href='#'>Next &gt;</a></span>";}else{TB_PrevCaption=TB_TempArray[TB_Counter].title;TB_PrevURL=TB_TempArray[TB_Counter].href;TB_PrevHTML="<span id='TB_prev'>&nbsp;&nbsp;<a href='#'>&lt; Prev</a></span>";}}else{TB_FoundURL=true;TB_imageCount="Image "+(TB_Counter+1)+" of "+(TB_TempArray.length);}}}
imgPreloader=new Image();imgPreloader.onload=function(){imgPreloader.onload=null;var pagesize=tb_getPageSize();var x=pagesize[0]-150;var y=pagesize[1]-150;var imageWidth=imgPreloader.width;var imageHeight=imgPreloader.height;if(imageWidth>x){imageHeight=imageHeight*(x/imageWidth);imageWidth=x;if(imageHeight>y){imageWidth=imageWidth*(y/imageHeight);imageHeight=y;}}else if(imageHeight>y){imageWidth=imageWidth*(y/imageHeight);imageHeight=y;if(imageWidth>x){imageHeight=imageHeight*(x/imageWidth);imageWidth=x;}}
TB_WIDTH=imageWidth+30;TB_HEIGHT=imageHeight+60;$("#TB_window").append("<a href='' id='TB_ImageOff' title='Close'><img id='TB_Image' src='"+url+"' width='"+imageWidth+"' height='"+imageHeight+"' alt='"+caption+"'/></a>"+"<div id='TB_caption'>"+caption+"<div id='TB_secondLine'>"+TB_imageCount+TB_PrevHTML+TB_NextHTML+"</div></div><div id='TB_closeWindow'><a href='#' id='TB_closeWindowButton' title='Close' class='png-fix'></a></div>");$("#TB_closeWindowButton").click(tb_remove);if(!(TB_PrevHTML==="")){function goPrev(){if($(document).unbind("click",goPrev)){$(document).unbind("click",goPrev);}
$("#TB_window").remove();$("body").append("<div id='TB_window'></div>");tb_show(TB_PrevCaption,TB_PrevURL,imageGroup);return false;}
$("#TB_prev").click(goPrev);}
if(!(TB_NextHTML==="")){function goNext(){$("#TB_window").remove();$("body").append("<div id='TB_window'></div>");tb_show(TB_NextCaption,TB_NextURL,imageGroup);return false;}
$("#TB_next").click(goNext);}
document.onkeydown=function(e){if(e==null){keycode=event.keyCode;}else{keycode=e.which;}
if(keycode==27){tb_remove();}else if(keycode==190){if(!(TB_NextHTML=="")){document.onkeydown="";goNext();}}else if(keycode==188){if(!(TB_PrevHTML=="")){document.onkeydown="";goPrev();}}};tb_position();$("#TB_load").remove();$("#TB_ImageOff").click(tb_remove);$("#TB_window").css({display:"block"});};imgPreloader.src=url;}else{var queryString=url.replace(/^[^\?]+\??/,'');var params=tb_parseQuery(queryString);TB_WIDTH=(params['width']*1)+30||630;TB_HEIGHT=(params['height']*1)+40||440;ajaxContentW=TB_WIDTH-30;ajaxContentH=TB_HEIGHT-45;if(url.indexOf('TB_iframe')!=-1){urlNoQuery=url.split('TB_');$("#TB_iframeContent").remove();if(params['modal']!="true"){$("#TB_window").append("<div id='TB_title'><div id='TB_ajaxWindowTitle'>"+caption+"</div><div id='TB_closeAjaxWindow'><a href='#' id='TB_closeWindowButton' title='Close'>close</a> or Esc Key</div></div><iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' onload='tb_showIframe()' style='width:"+(ajaxContentW+29)+"px;height:"+(ajaxContentH+17)+"px;' > </iframe>");}else{$("#TB_overlay").unbind();$("#TB_window").append("<iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' onload='tb_showIframe()' style='width:"+(ajaxContentW+29)+"px;height:"+(ajaxContentH+17)+"px;'> </iframe>");}}else{if($("#TB_window").css("display")!="block"){if(params['modal']!="true"){$("#TB_window").append("<div id='TB_title'><div id='TB_ajaxWindowTitle'>"+caption+"</div><div id='TB_closeAjaxWindow'><a href='#' id='TB_closeWindowButton'>close</a> or Esc Key</div></div><div id='TB_ajaxContent' style='width:"+ajaxContentW+"px;height:"+ajaxContentH+"px'></div>");}else{$("#TB_overlay").unbind();$("#TB_window").append("<div id='TB_ajaxContent' class='TB_modal' style='width:"+ajaxContentW+"px;height:"+ajaxContentH+"px;'></div>");}}else{$("#TB_ajaxContent")[0].style.width=ajaxContentW+"px";$("#TB_ajaxContent")[0].style.height=ajaxContentH+"px";$("#TB_ajaxContent")[0].scrollTop=0;$("#TB_ajaxWindowTitle").html(caption);}}
$("#TB_closeWindowButton").click(tb_remove);if(url.indexOf('TB_inline')!=-1){$("#TB_ajaxContent").append($('#'+params['inlineId']).children());$("#TB_window").unload(function(){$('#'+params['inlineId']).append($("#TB_ajaxContent").children());});tb_position();$("#TB_load").remove();$("#TB_window").css({display:"block"});}else if(url.indexOf('TB_iframe')!=-1){tb_position();if($.browser.safari){$("#TB_load").remove();$("#TB_window").css({display:"block"});}}else{$("#TB_ajaxContent").load(url+="&random="+(new Date().getTime()),function(){tb_position();$("#TB_load").remove();tb_init("#TB_ajaxContent a.thickbox");$("#TB_window").css({display:"block"});});}}
if(!params['modal']){document.onkeyup=function(e){if(e==null){keycode=event.keyCode;}else{keycode=e.which;}
if(keycode==27){tb_remove();}};}}catch(e){}}
function tb_showIframe(){$("#TB_load").remove();$("#TB_window").css({display:"block"});}
function tb_remove(){$("#TB_imageOff").unbind("click");$("#TB_closeWindowButton").unbind("click");$("#TB_window").fadeOut("fast",function(){$('#TB_window,#TB_overlay,#TB_HideSelect').trigger("unload").unbind().remove();});$("#TB_load").remove();if(typeof document.body.style.maxHeight=="undefined"){$("body","html").css({height:"auto",width:"auto"});$("html").css("overflow","");}
document.onkeydown="";document.onkeyup="";return false;}
function tb_position(){$("#TB_window").css({marginLeft:'-'+parseInt((TB_WIDTH/2),10)+'px',width:TB_WIDTH+'px'});if(!(jQuery.browser.msie&&jQuery.browser.version<7)){$("#TB_window").css({marginTop:'-'+parseInt((TB_HEIGHT/2),10)+'px'});}}
function tb_parseQuery(query){var Params={};if(!query){return Params;}
var Pairs=query.split(/[;&]/);for(var i=0;i<Pairs.length;i++){var KeyVal=Pairs[i].split('=');if(!KeyVal||KeyVal.length!=2){continue;}
var key=unescape(KeyVal[0]);var val=unescape(KeyVal[1]);val=val.replace(/\+/g,' ');Params[key]=val;}
return Params;}
function tb_getPageSize(){var de=document.documentElement;var w=window.innerWidth||self.innerWidth||(de&&de.clientWidth)||document.body.clientWidth;var h=window.innerHeight||self.innerHeight||(de&&de.clientHeight)||document.body.clientHeight;arrayPageSize=[w,h];return arrayPageSize;}
function tb_detectMacXFF(){var userAgent=navigator.userAgent.toLowerCase();if(userAgent.indexOf('mac')!=-1&&userAgent.indexOf('firefox')!=-1){return true;}}


/*
 * jQuery validation plug-in 1.5.2
 *
 * http://bassistance.de/jquery-plugins/jquery-plugin-validation/
 * http://docs.jquery.com/Plugins/Validation
 *
 * Copyright (c) 2006 - 2008 Jörn Zaefferer
 *
 * $Id: jquery.validate.js 6243 2009-02-19 11:40:49Z joern.zaefferer $
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */
(function($){$.extend($.fn,{validate:function(options){if(!this.length){options&&options.debug&&window.console&&console.warn("nothing selected, can't validate, returning nothing");return;}var validator=$.data(this[0],'validator');if(validator){return validator;}validator=new $.validator(options,this[0]);$.data(this[0],'validator',validator);if(validator.settings.onsubmit){this.find("input, button").filter(".cancel").click(function(){validator.cancelSubmit=true;});this.submit(function(event){if(validator.settings.debug)event.preventDefault();function handle(){if(validator.settings.submitHandler){validator.settings.submitHandler.call(validator,validator.currentForm);return false;}return true;}if(validator.cancelSubmit){validator.cancelSubmit=false;return handle();}if(validator.form()){if(validator.pendingRequest){validator.formSubmitted=true;return false;}return handle();}else{validator.focusInvalid();return false;}});}return validator;},valid:function(){if($(this[0]).is('form')){return this.validate().form();}else{var valid=false;var validator=$(this[0].form).validate();this.each(function(){valid|=validator.element(this);});return valid;}},removeAttrs:function(attributes){var result={},$element=this;$.each(attributes.split(/\s/),function(index,value){result[value]=$element.attr(value);$element.removeAttr(value);});return result;},rules:function(command,argument){var element=this[0];if(command){var settings=$.data(element.form,'validator').settings;var staticRules=settings.rules;var existingRules=$.validator.staticRules(element);switch(command){case"add":$.extend(existingRules,$.validator.normalizeRule(argument));staticRules[element.name]=existingRules;if(argument.messages)settings.messages[element.name]=$.extend(settings.messages[element.name],argument.messages);break;case"remove":if(!argument){delete staticRules[element.name];return existingRules;}var filtered={};$.each(argument.split(/\s/),function(index,method){filtered[method]=existingRules[method];delete existingRules[method];});return filtered;}}var data=$.validator.normalizeRules($.extend({},$.validator.metadataRules(element),$.validator.classRules(element),$.validator.attributeRules(element),$.validator.staticRules(element)),element);if(data.required){var param=data.required;delete data.required;data=$.extend({required:param},data);}return data;}});$.extend($.expr[":"],{blank:function(a){return!$.trim(a.value);},filled:function(a){return!!$.trim(a.value);},unchecked:function(a){return!a.checked;}});$.format=function(source,params){if(arguments.length==1)return function(){var args=$.makeArray(arguments);args.unshift(source);return $.format.apply(this,args);};if(arguments.length>2&&params.constructor!=Array){params=$.makeArray(arguments).slice(1);}if(params.constructor!=Array){params=[params];}$.each(params,function(i,n){source=source.replace(new RegExp("\\{"+i+"\\}","g"),n);});return source;};$.validator=function(options,form){this.settings=$.extend({},$.validator.defaults,options);this.currentForm=form;this.init();};$.extend($.validator,{defaults:{messages:{},groups:{},rules:{},errorClass:"error",errorElement:"label",focusInvalid:true,errorContainer:$([]),errorLabelContainer:$([]),onsubmit:true,ignore:[],ignoreTitle:false,onfocusin:function(element){this.lastActive=element;if(this.settings.focusCleanup&&!this.blockFocusCleanup){this.settings.unhighlight&&this.settings.unhighlight.call(this,element,this.settings.errorClass);this.errorsFor(element).hide();}},onfocusout:function(element){if(!this.checkable(element)&&(element.name in this.submitted||!this.optional(element))){this.element(element);}},onkeyup:function(element){if(element.name in this.submitted||element==this.lastElement){this.element(element);}},onclick:function(element){if(element.name in this.submitted)this.element(element);},highlight:function(element,errorClass){$(element).addClass(errorClass);},unhighlight:function(element,errorClass){$(element).removeClass(errorClass);}},setDefaults:function(settings){$.extend($.validator.defaults,settings);},messages:{required:"This field is required.",remote:"Please fix this field.",email:"Please enter a valid email address.",url:"Please enter a valid URL.",date:"Please enter a valid date.",dateISO:"Please enter a valid date (ISO).",dateDE:"Bitte geben Sie ein gültiges Datum ein.",number:"Please enter a valid number.",numberDE:"Bitte geben Sie eine Nummer ein.",digits:"Please enter only digits",creditcard:"Please enter a valid credit card number.",equalTo:"Please enter the same value again.",accept:"Please enter a value with a valid extension.",maxlength:$.format("Please enter no more than {0} characters."),minlength:$.format("Please enter at least {0} characters."),rangelength:$.format("Please enter a value between {0} and {1} characters long."),range:$.format("Please enter a value between {0} and {1}."),max:$.format("Please enter a value less than or equal to {0}."),min:$.format("Please enter a value greater than or equal to {0}.")},autoCreateRanges:false,prototype:{init:function(){this.labelContainer=$(this.settings.errorLabelContainer);this.errorContext=this.labelContainer.length&&this.labelContainer||$(this.currentForm);this.containers=$(this.settings.errorContainer).add(this.settings.errorLabelContainer);this.submitted={};this.valueCache={};this.pendingRequest=0;this.pending={};this.invalid={};this.reset();var groups=(this.groups={});$.each(this.settings.groups,function(key,value){$.each(value.split(/\s/),function(index,name){groups[name]=key;});});var rules=this.settings.rules;$.each(rules,function(key,value){rules[key]=$.validator.normalizeRule(value);});function delegate(event){var validator=$.data(this[0].form,"validator");validator.settings["on"+event.type]&&validator.settings["on"+event.type].call(validator,this[0]);}$(this.currentForm).delegate("focusin focusout keyup",":text, :password, :file, select, textarea",delegate).delegate("click",":radio, :checkbox",delegate);if(this.settings.invalidHandler)$(this.currentForm).bind("invalid-form.validate",this.settings.invalidHandler);},form:function(){this.checkForm();$.extend(this.submitted,this.errorMap);this.invalid=$.extend({},this.errorMap);if(!this.valid())$(this.currentForm).triggerHandler("invalid-form",[this]);this.showErrors();return this.valid();},checkForm:function(){this.prepareForm();for(var i=0,elements=(this.currentElements=this.elements());elements[i];i++){this.check(elements[i]);}return this.valid();},element:function(element){element=this.clean(element);this.lastElement=element;this.prepareElement(element);this.currentElements=$(element);var result=this.check(element);if(result){delete this.invalid[element.name];}else{this.invalid[element.name]=true;}if(!this.numberOfInvalids()){this.toHide=this.toHide.add(this.containers);}this.showErrors();return result;},showErrors:function(errors){if(errors){$.extend(this.errorMap,errors);this.errorList=[];for(var name in errors){this.errorList.push({message:errors[name],element:this.findByName(name)[0]});}this.successList=$.grep(this.successList,function(element){return!(element.name in errors);});}this.settings.showErrors?this.settings.showErrors.call(this,this.errorMap,this.errorList):this.defaultShowErrors();},resetForm:function(){if($.fn.resetForm)$(this.currentForm).resetForm();this.submitted={};this.prepareForm();this.hideErrors();this.elements().removeClass(this.settings.errorClass);},numberOfInvalids:function(){return this.objectLength(this.invalid);},objectLength:function(obj){var count=0;for(var i in obj)count++;return count;},hideErrors:function(){this.addWrapper(this.toHide).hide();},valid:function(){return this.size()==0;},size:function(){return this.errorList.length;},focusInvalid:function(){if(this.settings.focusInvalid){try{$(this.findLastActive()||this.errorList.length&&this.errorList[0].element||[]).filter(":visible").focus();}catch(e){}}},findLastActive:function(){var lastActive=this.lastActive;return lastActive&&$.grep(this.errorList,function(n){return n.element.name==lastActive.name;}).length==1&&lastActive;},elements:function(){var validator=this,rulesCache={};return $([]).add(this.currentForm.elements).filter(":input").not(":submit, :reset, :image, [disabled]").not(this.settings.ignore).filter(function(){!this.name&&validator.settings.debug&&window.console&&console.error("%o has no name assigned",this);if(this.name in rulesCache||!validator.objectLength($(this).rules()))return false;rulesCache[this.name]=true;return true;});},clean:function(selector){return $(selector)[0];},errors:function(){return $(this.settings.errorElement+"."+this.settings.errorClass,this.errorContext);},reset:function(){this.successList=[];this.errorList=[];this.errorMap={};this.toShow=$([]);this.toHide=$([]);this.formSubmitted=false;this.currentElements=$([]);},prepareForm:function(){this.reset();this.toHide=this.errors().add(this.containers);},prepareElement:function(element){this.reset();this.toHide=this.errorsFor(element);},check:function(element){element=this.clean(element);if(this.checkable(element)){element=this.findByName(element.name)[0];}var rules=$(element).rules();var dependencyMismatch=false;for(method in rules){var rule={method:method,parameters:rules[method]};try{var result=$.validator.methods[method].call(this,element.value.replace(/\r/g,""),element,rule.parameters);if(result=="dependency-mismatch"){dependencyMismatch=true;continue;}dependencyMismatch=false;if(result=="pending"){this.toHide=this.toHide.not(this.errorsFor(element));return;}if(!result){this.formatAndAdd(element,rule);return false;}}catch(e){this.settings.debug&&window.console&&console.log("exception occured when checking element "+element.id
+", check the '"+rule.method+"' method");throw e;}}if(dependencyMismatch)return;if(this.objectLength(rules))this.successList.push(element);return true;},customMetaMessage:function(element,method){if(!$.metadata)return;var meta=this.settings.meta?$(element).metadata()[this.settings.meta]:$(element).metadata();return meta&&meta.messages&&meta.messages[method];},customMessage:function(name,method){var m=this.settings.messages[name];return m&&(m.constructor==String?m:m[method]);},findDefined:function(){for(var i=0;i<arguments.length;i++){if(arguments[i]!==undefined)return arguments[i];}return undefined;},defaultMessage:function(element,method){return this.findDefined(this.customMessage(element.name,method),this.customMetaMessage(element,method),!this.settings.ignoreTitle&&element.title||undefined,$.validator.messages[method],"<strong>Warning: No message defined for "+element.name+"</strong>");},formatAndAdd:function(element,rule){var message=this.defaultMessage(element,rule.method);if(typeof message=="function")message=message.call(this,rule.parameters,element);this.errorList.push({message:message,element:element});this.errorMap[element.name]=message;this.submitted[element.name]=message;},addWrapper:function(toToggle){if(this.settings.wrapper)toToggle=toToggle.add(toToggle.parents(this.settings.wrapper));return toToggle;},defaultShowErrors:function(){for(var i=0;this.errorList[i];i++){var error=this.errorList[i];this.settings.highlight&&this.settings.highlight.call(this,error.element,this.settings.errorClass);this.showLabel(error.element,error.message);}if(this.errorList.length){this.toShow=this.toShow.add(this.containers);}if(this.settings.success){for(var i=0;this.successList[i];i++){this.showLabel(this.successList[i]);}}if(this.settings.unhighlight){for(var i=0,elements=this.validElements();elements[i];i++){this.settings.unhighlight.call(this,elements[i],this.settings.errorClass);}}this.toHide=this.toHide.not(this.toShow);this.hideErrors();this.addWrapper(this.toShow).show();},validElements:function(){return this.currentElements.not(this.invalidElements());},invalidElements:function(){return $(this.errorList).map(function(){return this.element;});},showLabel:function(element,message){var label=this.errorsFor(element);if(label.length){label.removeClass().addClass(this.settings.errorClass);label.attr("generated")&&label.html(message);}else{label=$("<"+this.settings.errorElement+"/>").attr({"for":this.idOrName(element),generated:true}).addClass(this.settings.errorClass).html(message||"");if(this.settings.wrapper){label=label.hide().show().wrap("<"+this.settings.wrapper+"/>").parent();}if(!this.labelContainer.append(label).length)this.settings.errorPlacement?this.settings.errorPlacement(label,$(element)):label.insertAfter(element);}if(!message&&this.settings.success){label.text("");typeof this.settings.success=="string"?label.addClass(this.settings.success):this.settings.success(label);}this.toShow=this.toShow.add(label);},errorsFor:function(element){return this.errors().filter("[for='"+this.idOrName(element)+"']");},idOrName:function(element){return this.groups[element.name]||(this.checkable(element)?element.name:element.id||element.name);},checkable:function(element){return/radio|checkbox/i.test(element.type);},findByName:function(name){var form=this.currentForm;return $(document.getElementsByName(name)).map(function(index,element){return element.form==form&&element.name==name&&element||null;});},getLength:function(value,element){switch(element.nodeName.toLowerCase()){case'select':return $("option:selected",element).length;case'input':if(this.checkable(element))return this.findByName(element.name).filter(':checked').length;}return value.length;},depend:function(param,element){return this.dependTypes[typeof param]?this.dependTypes[typeof param](param,element):true;},dependTypes:{"boolean":function(param,element){return param;},"string":function(param,element){return!!$(param,element.form).length;},"function":function(param,element){return param(element);}},optional:function(element){return!$.validator.methods.required.call(this,$.trim(element.value),element)&&"dependency-mismatch";},startRequest:function(element){if(!this.pending[element.name]){this.pendingRequest++;this.pending[element.name]=true;}},stopRequest:function(element,valid){this.pendingRequest--;if(this.pendingRequest<0)this.pendingRequest=0;delete this.pending[element.name];if(valid&&this.pendingRequest==0&&this.formSubmitted&&this.form()){$(this.currentForm).submit();}else if(!valid&&this.pendingRequest==0&&this.formSubmitted){$(this.currentForm).triggerHandler("invalid-form",[this]);}},previousValue:function(element){return $.data(element,"previousValue")||$.data(element,"previousValue",previous={old:null,valid:true,message:this.defaultMessage(element,"remote")});}},classRuleSettings:{required:{required:true},email:{email:true},url:{url:true},date:{date:true},dateISO:{dateISO:true},dateDE:{dateDE:true},number:{number:true},numberDE:{numberDE:true},digits:{digits:true},creditcard:{creditcard:true}},addClassRules:function(className,rules){className.constructor==String?this.classRuleSettings[className]=rules:$.extend(this.classRuleSettings,className);},classRules:function(element){var rules={};var classes=$(element).attr('class');classes&&$.each(classes.split(' '),function(){if(this in $.validator.classRuleSettings){$.extend(rules,$.validator.classRuleSettings[this]);}});return rules;},attributeRules:function(element){var rules={};var $element=$(element);for(method in $.validator.methods){var value=$element.attr(method);if(value){rules[method]=value;}}if(rules.maxlength&&/-1|2147483647|524288/.test(rules.maxlength)){delete rules.maxlength;}return rules;},metadataRules:function(element){if(!$.metadata)return{};var meta=$.data(element.form,'validator').settings.meta;return meta?$(element).metadata()[meta]:$(element).metadata();},staticRules:function(element){var rules={};var validator=$.data(element.form,'validator');if(validator.settings.rules){rules=$.validator.normalizeRule(validator.settings.rules[element.name])||{};}return rules;},normalizeRules:function(rules,element){$.each(rules,function(prop,val){if(val===false){delete rules[prop];return;}if(val.param||val.depends){var keepRule=true;switch(typeof val.depends){case"string":keepRule=!!$(val.depends,element.form).length;break;case"function":keepRule=val.depends.call(element,element);break;}if(keepRule){rules[prop]=val.param!==undefined?val.param:true;}else{delete rules[prop];}}});$.each(rules,function(rule,parameter){rules[rule]=$.isFunction(parameter)?parameter(element):parameter;});$.each(['minlength','maxlength','min','max'],function(){if(rules[this]){rules[this]=Number(rules[this]);}});$.each(['rangelength','range'],function(){if(rules[this]){rules[this]=[Number(rules[this][0]),Number(rules[this][1])];}});if($.validator.autoCreateRanges){if(rules.min&&rules.max){rules.range=[rules.min,rules.max];delete rules.min;delete rules.max;}if(rules.minlength&&rules.maxlength){rules.rangelength=[rules.minlength,rules.maxlength];delete rules.minlength;delete rules.maxlength;}}if(rules.messages){delete rules.messages}return rules;},normalizeRule:function(data){if(typeof data=="string"){var transformed={};$.each(data.split(/\s/),function(){transformed[this]=true;});data=transformed;}return data;},addMethod:function(name,method,message){$.validator.methods[name]=method;$.validator.messages[name]=message;if(method.length<3){$.validator.addClassRules(name,$.validator.normalizeRule(name));}},methods:{required:function(value,element,param){if(!this.depend(param,element))return"dependency-mismatch";switch(element.nodeName.toLowerCase()){case'select':var options=$("option:selected",element);return options.length>0&&(element.type=="select-multiple"||($.browser.msie&&!(options[0].attributes['value'].specified)?options[0].text:options[0].value).length>0);case'input':if(this.checkable(element))return this.getLength(value,element)>0;default:return $.trim(value).length>0;}},remote:function(value,element,param){if(this.optional(element))return"dependency-mismatch";var previous=this.previousValue(element);if(!this.settings.messages[element.name])this.settings.messages[element.name]={};this.settings.messages[element.name].remote=typeof previous.message=="function"?previous.message(value):previous.message;param=typeof param=="string"&&{url:param}||param;if(previous.old!==value){previous.old=value;var validator=this;this.startRequest(element);var data={};data[element.name]=value;$.ajax($.extend(true,{url:param,mode:"abort",port:"validate"+element.name,dataType:"json",data:data,success:function(response){if(response){var submitted=validator.formSubmitted;validator.prepareElement(element);validator.formSubmitted=submitted;validator.successList.push(element);validator.showErrors();}else{var errors={};errors[element.name]=response||validator.defaultMessage(element,"remote");validator.showErrors(errors);}previous.valid=response;validator.stopRequest(element,response);}},param));return"pending";}else if(this.pending[element.name]){return"pending";}return previous.valid;},minlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)>=param;},maxlength:function(value,element,param){return this.optional(element)||this.getLength($.trim(value),element)<=param;},rangelength:function(value,element,param){var length=this.getLength($.trim(value),element);return this.optional(element)||(length>=param[0]&&length<=param[1]);},min:function(value,element,param){return this.optional(element)||value>=param;},max:function(value,element,param){return this.optional(element)||value<=param;},range:function(value,element,param){return this.optional(element)||(value>=param[0]&&value<=param[1]);},email:function(value,element){return this.optional(element)||/^((([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+(\.([a-z]|\d|[!#\$%&'\*\+\-\/=\?\^_`{\|}~]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])+)*)|((\x22)((((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(([\x01-\x08\x0b\x0c\x0e-\x1f\x7f]|\x21|[\x23-\x5b]|[\x5d-\x7e]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(\\([\x01-\x09\x0b\x0c\x0d-\x7f]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF]))))*(((\x20|\x09)*(\x0d\x0a))?(\x20|\x09)+)?(\x22)))@((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?$/i.test(value);},url:function(value,element){return this.optional(element)||/^(https?|ftp):\/\/(((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:)*@)?(((\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5])\.(\d|[1-9]\d|1\d\d|2[0-4]\d|25[0-5]))|((([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|\d|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.)+(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])*([a-z]|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])))\.?)(:\d*)?)(\/((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)+(\/(([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)*)*)?)?(\?((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|[\uE000-\uF8FF]|\/|\?)*)?(\#((([a-z]|\d|-|\.|_|~|[\u00A0-\uD7FF\uF900-\uFDCF\uFDF0-\uFFEF])|(%[\da-f]{2})|[!\$&'\(\)\*\+,;=]|:|@)|\/|\?)*)?$/i.test(value);},date:function(value,element){return this.optional(element)||!/Invalid|NaN/.test(new Date(value));},dateISO:function(value,element){return this.optional(element)||/^\d{4}[\/-]\d{1,2}[\/-]\d{1,2}$/.test(value);},dateDE:function(value,element){return this.optional(element)||/^\d\d?\.\d\d?\.\d\d\d?\d?$/.test(value);},number:function(value,element){return this.optional(element)||/^-?(?:\d+|\d{1,3}(?:,\d{3})+)(?:\.\d+)?$/.test(value);},numberDE:function(value,element){return this.optional(element)||/^-?(?:\d+|\d{1,3}(?:\.\d{3})+)(?:,\d+)?$/.test(value);},digits:function(value,element){return this.optional(element)||/^\d+$/.test(value);},creditcard:function(value,element){if(this.optional(element))return"dependency-mismatch";if(/[^0-9-]+/.test(value))return false;var nCheck=0,nDigit=0,bEven=false;value=value.replace(/\D/g,"");for(n=value.length-1;n>=0;n--){var cDigit=value.charAt(n);var nDigit=parseInt(cDigit,10);if(bEven){if((nDigit*=2)>9)nDigit-=9;}nCheck+=nDigit;bEven=!bEven;}return(nCheck%10)==0;},accept:function(value,element,param){param=typeof param=="string"?param:"png|jpe?g|gif";return this.optional(element)||value.match(new RegExp(".("+param+")$","i"));},equalTo:function(value,element,param){return value==$(param).val();}}});})(jQuery);;(function($){var ajax=$.ajax;var pendingRequests={};$.ajax=function(settings){settings=$.extend(settings,$.extend({},$.ajaxSettings,settings));var port=settings.port;if(settings.mode=="abort"){if(pendingRequests[port]){pendingRequests[port].abort();}return(pendingRequests[port]=ajax.apply(this,arguments));}return ajax.apply(this,arguments);};})(jQuery);;(function($){$.each({focus:'focusin',blur:'focusout'},function(original,fix){$.event.special[fix]={setup:function(){if($.browser.msie)return false;this.addEventListener(original,$.event.special[fix].handler,true);},teardown:function(){if($.browser.msie)return false;this.removeEventListener(original,$.event.special[fix].handler,true);},handler:function(e){arguments[0]=$.event.fix(e);arguments[0].type=fix;return $.event.handle.apply(this,arguments);}};});$.extend($.fn,{delegate:function(type,delegate,handler){return this.bind(type,function(event){var target=$(event.target);if(target.is(delegate)){return handler.apply(target,arguments);}});},triggerEvent:function(type,target){return this.triggerHandler(type,[$.event.fix({type:type,target:target})]);}})})(jQuery);

/* SiteCatalyst code version: H.17.
Copyright 1997-2008 Omniture, Inc. More info available at
http://www.omniture.com */
/************************ ADDITIONAL FEATURES ************************
     Plugins
*/

var s_account="callwave-fuze"
var s=s_gi(s_account)
/************************** CONFIG SECTION **************************/
/* You may add or alter any code config here. */
/* Conversion Config */
s.currencyCode="USD"
/* Link Tracking Config */
s.trackDownloadLinks=true
s.trackExternalLinks=true
s.trackInlineStats=true
s.linkDownloadFileTypes="exe,zip,wav,mp3,mov,mpg,avi,wmv,pdf,doc,docx,xls,xlsx,ppt,pptx"
s.linkInternalFilters="javascript:,fuzemeeting.com"
s.linkLeaveQueryString=false
s.linkTrackVars="None"
s.linkTrackEvents="None"
/* Plugin Config */
s.usePlugins=true
function s_doPlugins(s) {
	/* Add calls to plugins here */

s.campaign=s.getQueryParam('cid');
s.eVar7=s.getQueryParam('pid');
s.eVar8=s.getQueryParam('sid');
s.eVar9=s.getQueryParam('aid');


}
s.doPlugins=s_doPlugins
/************************** PLUGINS SECTION *************************/
/* You may insert any plugins you wish to use here.                 */

/*
 * Plugin: getQueryParam 2.1 - return query string parameter(s)
 */
s.getQueryParam=new Function("p","d","u",""
+"var s=this,v='',i,t;d=d?d:'';u=u?u:(s.pageURL?s.pageURL:s.wd.locati"
+"on);if(u=='f')u=s.gtfs().location;while(p){i=p.indexOf(',');i=i<0?p"
+".length:i;t=s.p_gpv(p.substring(0,i),u+'');if(t)v+=v?d+t:t;p=p.subs"
+"tring(i==p.length?i:i+1)}return v");
s.p_gpv=new Function("k","u",""
+"var s=this,v='',i=u.indexOf('?'),q;if(k&&i>-1){q=u.substring(i+1);v"
+"=s.pt(q,'&','p_gvf',k)}return v");
s.p_gvf=new Function("t","k",""
+"if(t){var s=this,i=t.indexOf('='),p=i<0?t:t.substring(0,i),v=i<0?'T"
+"rue':t.substring(i+1);if(p.toLowerCase()==k.toLowerCase())return s."
+"epa(v)}return ''");

/*
 * Plugin: getValOnce 0.2 - get a value once per session or number of days
 */
s.getValOnce=new Function("v","c","e",""
+"var s=this,k=s.c_r(c),a=new Date;e=e?e:0;if(v){a.setTime(a.getTime("
+")+e*86400000);s.c_w(c,v,e?a:0);}return v==k?'':v");



/* WARNING: Changing any of the below variables will cause drastic
changes to how your visitor data is collected.  Changes should only be
made when instructed to do so by your account manager.*/
s.visitorNamespace="callwave"
s.dc=122

/************* DO NOT ALTER ANYTHING BELOW THIS LINE ! **************/
var s_code='',s_objectID;function s_gi(un,pg,ss){var c="=fun@6(~){`Ks=^S~$h ~.substring(~.indexOf(~;@t~';`Bt`t~=new Fun@6(~.toLowerCase()~s_c_il['+s^sn+']~};s.~`m@t~.length~.toUpperCase~=new Object~s"
+".wd~','~){@t~')q='~.location~var ~s.pt(~dynamicAccount~link~s.apv~='+@y(~)@tx^m!Object$eObject.prototype$eObject.prototype[x])~);s.~Element~.getTime()~=new Array~ookieDomainPeriods~s.m_~referrer~.p"
+"rotocol~=new Date~BufferedRequests~}c$s(e){~visitor~;@X^js[k],255)}~=''~javaEnabled~conne@6^M~@0c_i~Name~:'')~onclick~}@t~else ~ternalFilters~javascript~s.dl~@Os.b.addBehavior(\"# default# ~=parseF"
+"loat(~'+tm.get~=='~cookie~s.rep(~s.^T~track~o@0oid~browser~.parent~window~colorDepth~String~while(~.host~.lastIndexOf('~s.sq~s.maxDelay~s.vl_g~r=s.m(f)?s[f](~for(~s.un~s.eo~&&s.~parseInt(~t=s.ot(o)"
+"~j='1.~#4URL~lugins~dynamicVariablePrefix~document~Type~Sampling~s.rc[un]~Download~Event~');~this~tfs~resolution~s.c_r(~s.c_w(~s.eh~s.isie~s.vl_l~s.vl_t~Height~t,h){t=t?t~tcf~isopera~ismac~escape(~"
+".href~screen.~s.fl(~Version~harCode~&&(~_'+~variableProvider~s.pe~)?'Y':'N'~:'';h=h?h~._i~e&&l$HSESSION'~f',~onload~name~home#4~objectID~}else{~.s_~s.rl[u~Width~s.ssl~o.type~Timeout(~ction~Lifetime"
+"~.mrq(\"'+un+'\")~sEnabled~;i++)~'){q='~&&l$HNONE'){~ExternalLinks~charSet~onerror~lnk~currencyCode~.src~s=s_gi(~etYear(~&&!~Opera~'s_~;try{~Math.~s.fsg~s.ns6~s.oun~InlineStats~Track~'0123456789~&&"
+"t~s[k]=~s.epa(~m._d~n=s.oid(o)~,'sqs',q);~LeaveQuery~')>=~'=')~)+'/~){n=~\",''),~vo)~s.sampled~=s.oh(o);~+(y<1900?~s.disable~ingServer~n]=~true~sess~campaign~lif~if(~'http~,100)~s.co(~x in ~s.ape~f"
+"fset~s.c_d~s.br~'&pe~s.gg(~s.gv(~s[mn]~s.qav~,'vo~s.pl~=(apn~Listener~\"s_gs(\")~vo._t~b.attach~d.create~=s.n.app~(''+~!='~'||t~'+n~s()+'~){p=~():''~a):f(~+1))~a['!'+t]~){v=s.n.~channel~un)~.target"
+"~o.value~g+\"_c\"]~\".tl(\")~etscape~(ns?ns:~s_')t=t~k',s.bc~omePage~s.d.get~')<~||!~[b](e);~m[t+1](~return~mobile~height~events~random~code~'MSIE ~rs,~un,~,pev~floor(~atch~s.num(~[\"s_\"+~s.c_gd~s"
+".dc~s.pg~,'lt~.inner~transa~;s.gl(~\"m_\"+n~idt='+~page~Group,~.fromC~sByTag~?'&~+';'~t&&~1);~){s.~[t]=~>=5)~[t](~=l[n];~!a[t])~~s._c=@Nc';`F=^1`5!`F`hn){`F`hl`U;`F`hn=0;}s^sl=`F`hl;s^sn=`F`hn;s^sl"
+"[s^s@os;`F`hn++;s.m`0m){`2$Gm)`4'{$d0`Afl`0x,l){`2x?$Gx)`30,l):x`Aco`0o`H!o)`2o;`Kn`E,x;^B@xo)@tx`4'select$d0&&x`4'filter$d0)n[x]=o[x];`2n`Anum`0x){x`e+x;^B`Kp=0;p<x`C;p++)@t(@V')`4x`3p,p$O<0)`20;`"
+"21`Arep=s_r;@y`0x`1,h=@VABCDEF',i,c=s.@E,n,l,e,y`e;c=c?c`D$M`5x){x`e+x`5c`tAUTO'^m'').c^lAt){^Bi=0;i<x`C@A{c=x`3i,i+#Bn=x.c^lAt(i)`5n>127){l=0;e`e;^4n||l<4){e=h`3n%16,n%16+1)+e;n=(n-n%16)/16;l++}y+"
+"='%u'+e}`Bc`t+')y+='%2B';`my+=^gc)}x=y^zx=x?`v^g''+x),'+`G%2B'):x`5x&&c^Eem==1&&x`4'%u$d0&&x`4'%U$d0){i=x`4'%^R^4i>=0){i++`5h`38)`4x`3i,i+1)`D())>=0)`2x`30,i)+'u00'+x`3i);i=x`4'%',i)}}}}`2x`Aepa`0x"
+"`1;`2x?un^g`v''+x,'+`G ')):x`Apt`0x,d,f,a`1,t=x,z=0,y,r;^4t){y=t`4d);y=y<0?t`C:y;t=t`30,y);^At,$Nt,a)`5r)`2r;z+=y+d`C;t=x`3z,x`C);t=z<x`C?t:''}`2''`Aisf`0t,a){`Kc=a`4':')`5c>=0)a=a`30,c)`5t`30,2)`t"
+"$Z`32);`2(t!`e@W==a)`Afsf`0t,a`1`5`La,`G,'is^ut))@Q+=(@Q!`e?`G`j+t;`20`Afs`0x,f`1;@Q`e;`Lx,`G,'fs^uf);`2@Q`Ac_d`e;$vf`0t,a`1`5!$tt))`21;`20`Ac_gd`0`1,d=`F`J^5^w,n=s.fpC`V,p`5!n)n=s.c`V`5d@L$0@gn?^F"
+"n):2;n=n>2?n:2;p=d^6.')`5p>=0){^4p>=0&&n>1$Ld^6.',p-#Bn--}$0=p>0&&`Ld,'.`Gc_gd^u0)?d`3p):d}}`2$0`Ac_r`0k`1;k=@y(k);`Kc=' '+s.d.`u,i=c`4' '+k+@e,e=i<0?i:c`4';',i),v=i<0?'':@Yc`3i+2+k`C,e<0?c`C:e));`"
+"2v$H[[B]]'?v:''`Ac_w`0k,v,e`1,d=$v(),l=s.`u@7,t;v`e+v;l=l?$Gl)`D$M`5^t@Ct=(v!`e?^Fl?l:0):-60)`5t){e`Z;e.setTime(e`T+(t*1000))}`lk@Cs.d.`u=k+'`Pv!`e?v:'[[B]]')+'; path=/;'+(^t?' expires='+e.toGMT^3("
+")#9`j+(d?' domain='+d#9`j;`2^Vk)==v}`20`Aeh`0o,e,r,f`1,b='s^ne+'^ns^sn,n=-1,l,i,x`5!^Xl)^Xl`U;l=^Xl;^Bi=0;i<l`C&&n<0;i++`Hl[i].o==o&&l[i].e==e)n=i`ln<0@gi;l[n]`E}x#Gx.o=o;x.e=e;f=r?x.b:f`5r||f){x.b"
+"=r?0:o[e];x.o[e]=f`lx.b){x.o[b]=x.b;`2b}`20`Acet`0f,a,t,o,b`1,r,^d`5`O>=5^m!s.^e||`O>=7)){^d`7's`Gf`Ga`Gt`G`Ke,r@O^A$Na)`br=s.m(t)?s#Fe):t(e)}`2r^Rr=^d(s,f,a,t)^z@ts.^f^Eu`4$n4@d0)r=s.m(b)?s[b](a):"
+"b(a);else{^X(`F,'@F',0,o);^A$Na`Reh(`F,'@F',1)}}`2r`Ag^Tet`0e`1;`2`w`Ag^Toe`7'e`G`Ks=`9,c;^X(^1,\"@F\",1`Re^T=1;c=s.t()`5c)s.d.write(c`Re^T=0;`2@p'`Rg^Tfb`0a){`2^1`Ag^Tf`0w`1,p=w^0,l=w`J;`w=w`5p&&p"
+"`J!=l&&p`J^5==l^5){`w=p;`2s.g^Tf(`w)}`2`w`Ag^T`0`1`5!`w){`w=`F`5!s.e^T)`w=s.cet('g^T^u`w,'g^Tet',s.g^Toe,'g^Tfb')}`2`w`Amrq`0u`1,l=@1],n,r;@1]=0`5l)^Bn=0;n<l`C;n++){r#Gs.mr(0,0,r.r,0,r.t,r.u)}`Abr`"
+"0id,rs`1`5@m`a$e^W@Nbr',rs))$1l=rs`Aflush`a`0`1;s.fbr(0)`Afbr`0id`1,br=^V@Nbr')`5!br)br=$1l`5br`H!@m`a)^W@Nbr`G'`Rmr(0,0,br)}$1l=0`Amr`0@q,q,$oid,ta,u`1,dc=$w,t1=s.`x@n,t2=s.`x@nSecure,ns=s.`c`ispa"
+"ce,un=u?u:$Ys.f$S,unc=`v$p'_`G-'),r`E,l,imn=@Ni^n($S,im,b,e`5!rs){rs=@u'+(@3?'s'`j+'://'+(t1?(@3@W2?t2:t1):($Y(@3?'102':unc))+'.'+($w?$w:112)+'.2o7.net')@fb/ss/'+^C+'/'+(s.$i?'5.1':'1'@fH.17/'+@q+'"
+"?AQB=1&ndh=1'+(q?q`j+'&AQE=1'`5^Y@Ls.^f`H`O>5.5)rs=^j$o4095);`mrs=^j$o2047)`lid){$1(id,rs);$h}`ls.d.images&&`O>=3^m!s.^e||`O>=7)^m@R<0||`O>=6.1)`H!s.rc)s.rc`E`5!^O){^O=1`5!s.rl)s.rl`E;@1n]`U;set@5'"
+"@t^1`hl)^1.`9@8',750)^zl=@1n]`5l){r.t=ta;r.u=un;r.r=rs;l[l`C]=r;`2''}imn+='^n^O;^O++}im=`F[imn]`5!im)im=`F[im@onew Image;im@0l=0;im.^v`7'e`G^S@0l=1`5^1`hl)^1.`9@8^Rim@I=rs`5rs`4$2=@d0^m!ta||ta`t_se"
+"lf$Ia`t_top'||(`F.^w@Wa==`F.^w))){b=e`Z;^4!im@0l&&e`T-b`T<500)e`Z}`2''}`2'<im'+'g sr'+'c=\"'+rs+'\" width=1 $j=1 border=0 alt=\"\">'`Agg`0v`1`5!`F['s^nv])`F['s^nv]`e;`2`F['s^nv]`Aglf`0t,a`Ht`30,2)`"
+"t$Z`32);`Ks=^S,v=$3t)`5v)s#Dv`Agl`0v`1`5$x)`Lv,`G,'gl^u0)`Agv`0v`1;`2s['vpm^nv]?s['vpv^nv]:(s[v]?s[v]`j`Ahavf`0t,a`1,b=t`30,4),x=t`34),n=^Fx),k='g^nt,m='vpm^nt,q=t,v=s.`N@UVa$oe=s.`N@U^Qs,mn;@X$4t)"
+"`5s.@G||^D||^p`H^p^Epe`30,4)$H@G_'){mn=^p`30,1)`D()+^p`31)`5$5){v=$5.`xVars;e=$5.`x^Qs}}v=v?v+`G+^Z+`G+^Z2:''`5v@L`Lv,`G,'is^ut))s[k]`e`5t`t$k'&&e)@Xs.fs(s[k],e)}s[m]=0`5t`t^K`ID`6`cID`Ivid`6^I@Bg'"
+"`d`Bt`t`X@Br'`d`Bt`tvmk`Ivmt`6@E@Bce'`5s[k]&&s[k]`D()`tAUTO')@X'ISO8859-1';`Bs[k]^Eem==2)@X'UTF-8'}`Bt`t`c`ispace`Ins`6c`V`Icdp`6`u@7`Icl`6^o`Ivvp`6@H`Icc`6$R`Ich`6#0@6ID`Ixact`6@r`Iv0`6^U`Is`6^2`I"
+"c`6`o^k`Ij`6`f`Iv`6`u@9`Ik`6`z@2`Ibw`6`z^b`Ibh`6`g`Ict`6^x`Ihp`6p^J`Ip';`B$tx)`Hb`tprop`Ic$J;`Bb`teVar`Iv$J;`Bb`thier@Bh$J`d`ls[k]@W$H`N`i'@W$H`N^M')$6+='&'+q+'`Ps[k]);`2''`Ahav`0`1;$6`e;`L^a,`G,'h"
+"av^u0);`2$6`Alnf`0^c`8^r`8:'';`Kte=t`4@e`5t@We>0&&h`4t`3te$O>=0)`2t`30,te);`2''`Aln`0h`1,n=s.`N`is`5n)`2`Ln,`G,'ln^uh);`2''`Altdf`0^c`8^r`8:'';`Kqi=h`4'?^Rh=qi>=0?h`30,qi):h`5#Ah`3h`C-(t`C$O`t.'+t)"
+"`21;`20`Altef`0^c`8^r`8:''`5#Ah`4t)>=0)`21;`20`Alt`0h`1,lft=s.`N^PFile^Ms,lef=s.`NEx`n,@s=s.`NIn`n;@s=@s?@s:`F`J^5^w;h=h`8`5s.`x^PLinks&&lf#A`Llft,`G$yd^uh))`2'd'`5s.`x@D&&h`30,1)$H# '^mlef||@s)^m!"
+"lef||`Llef,`G$ye^uh))^m!@s$e`L@s,`G$ye^uh)))`2'e';`2''`Alc`7'e`G`Ks=`9,b=^X(^S,\"`k\"`R@G=@w^S`Rt(`R@G=0`5b)`2^S$f`2@p'`Rbc`7'e`G`Ks=`9,f,^d`5s.d^Ed.all^Ed.all.cppXYctnr)$h;^D=e@I`S?e@I`S:e$T;^d`7"
+"\"s\",\"`Ke@O@t^D^m^D.tag`i||^D^0`S||^D^0Node))s.t()`b}\");^d(s`Reo=0'`Roh`0o`1,l=`F`J,h=o^h?o^h:'',i,j,k,p;i=h`4':^Rj=h`4'?^Rk=h`4'/')`5h^mi<0||(j>=0&&i>j)||(k>=0&&i>k))$Lo`Y&&o`Y`C>1?o`Y:(l`Y?l`Y"
+"`j;i=l.path^w^6/^Rh=(p?p+'//'`j+(o^5?o^5:(l^5?l^5`j)+(h`30,1)$H/'?l.path^w`30,i<0?0:i@f'`j+h}`2h`Aot`0o){`Kt=o.tag`i;t=t@W`D?t`D$M`5t`tSHAPE')t`e`5t`Ht`tINPUT'&&@4&&@4`D)t=@4`D();`B!#Ao^h)t='A';}`2"
+"t`Aoid`0o`1,^G,p,c,n`e,x=0`5t@L`y$Lo`Y;c=o.`k`5o^h^mt`tA$I`tAREA')^m!c$ep||p`8`4'`o$d0))n@k`Bc@g`vs.rep(`vs.rep$Gc,\"\\r@h\"\\n@h\"\\t@h' `G^Rx=2}`B$U^mt`tINPUT$I`tSUBMIT')@g$U;x=3}`Bo@I@W`tIMAGE')"
+"n=o@I`5n){`y=^jn@v;`yt=x}}`2`y`Arqf`0t,un`1,e=t`4@e,u=e>=0?`G+t`30,e)+`G:'';`2u&&u`4`G+un+`G)>=0?@Yt`3e$O:''`Arq`0un`1,c=un`4`G),v=^V@Nsq'),q`e`5c<0)`2`Lv,'&`Grq^u$S;`2`L$p`G,'rq',0)`Asqp`0t,a`1,e="
+"t`4@e,q=e<0?'':@Yt`3e+1)`Rsqq[q]`e`5e>=0)`Lt`30,e),`G@b`20`Asqs`0$pq`1;^7u[u@oq;`20`Asq`0q`1,k=@Nsq',v=^Vk),x,c=0;^7q`E;^7u`E;^7q[q]`e;`Lv,'&`Gsqp',0);`L^C,`G@bv`e;^B@x^7u`Q)^7q[^7u[x]]+=(^7q[^7u[x"
+"]]?`G`j+x;^B@x^7q`Q&&^7q[x]^mx==q||c<2)){v+=(v#8'`j+^7q[x]+'`Px);c++}`2^Wk,v,0)`Awdl`7'e`G`Ks=`9,r=@p,b=^X(`F,\"^v\"),i,o,oc`5b)r=^S$f^Bi=0;i<s.d.`Ns`C@A{o=s.d.`Ns[i];oc=o.`k?\"\"+o.`k:\"\"`5(oc`4$"
+"B<0||oc`4\"@0oc(\")>=0)&&oc`4$W<0)^X(o,\"`k\",0,s.lc);}`2r^R`Fs`0`1`5`O>3^m!^Y$es.^f||`O#E`Hs.b^E$D^Q)s.$D^Q('`k',s.bc);`Bs.b^Eb.add^Q$A)s.b.add^Q$A('clic$a,false);`m^X(`F,'^v',0,`Fl)}`Avs`0x`1,v=s"
+".`c^N,g=s.`c^N#5k=@Nvsn^n^C+(g?'^ng`j,n=^Vk),e`Z,y=e.g@K);e.s@Ky+10@l1900:0))`5v){v*=100`5!n`H!^Wk,x,e))`20;n=x`ln%10000>v)`20}`21`Adyasmf`0t,m`H#Am&&m`4t)>=0)`21;`20`Adyasf`0t,m`1,i=t?t`4@e:-1,n,x"
+"`5i>=0&&m){`Kn=t`30,i),x=t`3i+1)`5`Lx,`G,'dyasm^um))`2n}`20`Auns`0`1,x=s.`MSele@6,l=s.`MList,m=s.`MM$s,n,i;^C=^C`8`5x&&l`H!m)m=`F`J^5`5!m.toLowerCase)m`e+m;l=l`8;m=m`8;n=`Ll,';`Gdyas^um)`5n)^C=n}i="
+"^C`4`G`Rfun=i<0?^C:^C`30,i)`Asa`0un`1;^C=un`5!@S)@S=un;`B(`G+@S+`G)`4$S<0)@S+=`G+un;^Cs()`Am_i`0n,a`1,m,f=n`30,1),r,l,i`5!`Wl)`Wl`E`5!`Wnl)`Wnl`U;m=`Wl[n]`5!a&&m&&m._e@Lm^s)`Wa(n)`5!m){m`E,m._c=@Nm"
+"';m^sn=`F`hn;m^sl=s^sl;m^sl[m^s@om;`F`hn++;m.s=s;m._n=n;m._l`U('_c`G_in`G_il`G_i`G_e`G_d`G_dl`Gs`Gn`G_r`G_g`G_g1`G_t`G_t1`G_x`G_x1`G_l'`Rm_l[@om;`Wnl[`Wnl`C]=n}`Bm._r@Lm._m){r=m._r;r._m=m;l=m._l;^B"
+"i=0;i<l`C@A@tm[l[i]])r[l[i]]=m[l[i]];r^sl[r^s@or;m=`Wl[@or`lf==f`D())s[@om;`2m`Am_a`7'n`Gg`G@t!g)g=#2;`Ks=`9,c=s[$V,m,x,f=0`5!c)c=`F$u$V`5c&&s_d)s[g]`7\"s\",s_ft(s_d(c)));x=s[g]`5!x)x=`F$ug];m=`Wi("
+"n,1)`5x){m^s=f=1`5(\"\"+x)`4\"fun@6\")>=0)x(s);`m`Wm(\"x\",n,x)}m=`Wi(n,1)`5@Zl)@Zl=@Z=0;`pt();`2f'`Rm_m`0t,n,d){t='^nt;`Ks=^S,i,x,m,f='^nt`5`Wl&&`Wnl)^Bi=0;i<`Wnl`C@A{x=`Wnl[i]`5!n||x==n){m=`Wi(x)"
+"`5m[t]`Ht`t_d')`21`5d)m#Fd);`mm#F)`lm[t+1]@Lm[f]`Hd)$gd);`m$g)}m[f]=1}}`20`AloadModule`0n,u,d,l`1,m,i=n`4':'),g=i<0?#2:n`3i+1),o=0,f,c=s.h?s.h:s.b,^d`5i>=0)n=n`30,i);m=`Wi(n)`5(l$e`Wa(n,g))&&u^Ed&&"
+"c^E$E`S`Hd){@Z=1;@Zl=1`l@3)u=`vu,@u:`Ghttps:^Rf`7'e`G`9.m_a(\"$J+'\",\"'+g+'\")^R^d`7's`Gf`Gu`Gc`G`Ke,o=0@Oo=s.$E`S(\"script\")`5o){@4=\"text/`o\"`5f)o.^v=f;o@I=u;c.appendChild(o)}`bo=0}`2o^Ro=^d(s"
+",f,u,c)}`mm=`Wi(n);m._e=1;`2m`Avo1`0t,a`Ha[t]||$P)^S#Da[t]`Avo2`0t,a`H#H{a#D^S[t]`5#H$P=1}`Adlt`7'`Ks=`9,d`Z,i,vo,f=0`5`pl)^Bi=0;i<`pl`C@A{vo=`pl[i]`5vo`H!`Wm(\"d\")||d`T-$C>=^8){`pl[i]=0;s.t(@i}`m"
+"f=1}`l`pi)clear@5`pi`Rdli=0`5f`H!`pi)`pi=set@5`pt,^8)}`m`pl=0'`Rdl`0vo`1,d`Z`5!@ivo`E;`L^9,`G$72',@i;$C=d`T`5!`pl)`pl`U;`pl[`pl`C]=vo`5!^8)^8=250;`pt()`At`0vo,id`1,trk=1,tm`Z,sed=Math&&@P$l?@P$r@P$"
+"l()*10000000000000):tm`T,@q='s'+@P$rtm`T/10800000)%10+sed,y=tm.g@K),vt=tm.getDate(@f`sMonth(@f'@ly+1900:y)+' `sHour$K:`sMinute$K:`sSecond$K `sDay()+' `sTimezoneO@z(),^d,^T=s.g^T(),ta`e,q`e,qs`e,$m`"
+"e,vb`E#1^9`Runs()`5!s.td){`Ktl=^T`J,a,o,i,x`e,c`e,v`e,p`e,bw`e,bh`e,^H0',k=^W@Ncc`G@p',0^q,hp`e,ct`e,pn=0,ps`5^3&&^3.prototype){^H1'`5j.m$s){^H2'`5tm.setUTCDate){^H3'`5^Y^E^f&&`O#E^H4'`5pn.toPrecis"
+"ion){^H5';a`U`5a.forEach){^H6';i=0;o`E;^d`7'o`G`Ke,i=0@Oi=new Iterator(o)`b}`2i^Ri=^d(o)`5i&&i.next)^H7'}}}}`l`O>=4)x=^iwidth+'x'+^i$j`5s.isns||s.^e`H`O>=3$Q`f(^q`5`O>=4){c=^ipixelDepth;bw=`F$z@2;b"
+"h=`F$z^b}}$8=s.n.p^J}`B^Y`H`O>=4$Q`f(^q;c=^i^2`5`O#E{bw=s.d.^L`S.o@z@2;bh=s.d.^L`S.o@z^b`5!s.^f^Eb){^d`7's`Gtl`G`Ke,hp=0`qh$b\");hp=s.b.isH$b(tl)?\"Y\":\"N\"`b}`2hp^Rhp=^d(s,tl);^d`7's`G`Ke,ct=0`qc"
+"lientCaps\");ct=s.b.`g`b}`2ct^Rct=^d(s)}}}`mr`e`l$8)^4pn<$8`C&&pn<30){ps=^j$8[pn].^w@v#9`5p`4ps)<0)p+=ps;pn++}s.^U=x;s.^2=c;s.`o^k=j;s.`f=v;s.`u@9=k;s.`z@2=bw;s.`z^b=bh;s.`g=ct;s.^x=hp;s.p^J=p;s.td"
+"=1`l@i{`L^9,`G$72',vb);`L^9,`G$71',@i`ls.useP^J)s.doP^J(s);`Kl=`F`J,r=^T.^L.`X`5!s.^I)s.^I=l^h?l^h:l`5!s.`X@Ls._1_`X#C`X=r;s._1_`X=1}`Wm('g')`5(vo&&$C)$e`Wm('d')`Hs.@G||^D){`Ko=^D?^D:s.@G`5!o)`2'';"
+"`Kp=$4'#4`i'),w=1,^G,@a,x=`yt,h,l,i,oc`5^D&&o==^D){^4o@Ln@W$HBODY'){o=o^0`S?o^0`S:o^0Node`5!o)`2'';^G;@a;x=`yt}oc=o.`k?''+o.`k:''`5(oc`4$B>=0&&oc`4\"@0oc(\")<0)||oc`4$W>=0)`2''}ta=n?o$T:1;h@ki=h`4'"
+"?^Rh=s.`N@c^3||i<0?h:h`30,i);l=s.`N`i?s.`N`i:s.ln(h);t=s.`N^M?s.`N^M`8:s.lt(h)`5t^mh||l))q+=$2=@G^n(t`td$I`te'?@y(t):'o')+(h?$2v1`Ph)`j+(l?$2v2`Pl)`j;`mtrk=0`5s.`x@T`H!p$L$4'^I^Rw=0}^G;i=o.sourceIn"
+"dex`5$3'^y')@g$3'^y^Rx=1;i=1`lp&&n@W)qs='&pid`P^jp,255))+(w#8p#3w`j+'&oid`P^jn@v)+(x#8o#3x`j+'&ot`Pt)+(i#8oi='+i`j}`l!trk@Lqs)`2'';@j=s.vs(sed)`5trk`H@j)$m=s.mr(@q,(vt#8t`Pvt)`j+s.hav()+q+(qs?qs:s."
+"rq(^C)),0,id,ta);qs`e;`Wm('t')`5s.p_r)s.p_r(`R`X`e}^7(qs);^z`p(@i;`l@i`L^9,`G$71',vb`R@G=^D=s.`N`i=s.`N^M=`F@0^y=s.ppu=^p=^pv1=^pv2=^pv3`e`5$x)`F@0@G=`F@0eo=`F@0`N`i=`F@0`N^M`e`5!id@Ls.tc#Ctc=1;s.f"
+"lush`a()}`2$m`Atl`0o,t,n,vo`1;s.@G=@wo`R`N^M=t;s.`N`i=n;s.t(@i}`5pg){`F@0co`0o){`K@J\"_\",1,#B`2@wo)`Awd@0gs`0$S{`K@J$p1,#B`2s.t()`Awd@0dc`0$S{`K@J$p#B`2s.t()}}@3=(`F`J`Y`8`4@us@d0`Rd=^L;s.b=s.d.bo"
+"dy`5$c`S#7`i#Ch=$c`S#7`i('HEAD')`5s.h)s.h=s.h[0]}s.n=navigator;s.u=s.n.userAgent;@R=s.u`4'N$X6/^R`Kapn$F`i,v$F^k,ie=v`4$n'),o=s.u`4'@M '),i`5v`4'@M@d0||o>0)apn='@M';^Y$9`tMicrosoft Internet Explore"
+"r'`Risns$9`tN$X'`R^e$9`t@M'`R^f=(s.u`4'Mac@d0)`5o>0)`O`rs.u`3o+6));`Bie>0){`O=^Fi=v`3ie+5))`5`O>3)`O`ri)}`B@R>0)`O`rs.u`3@R+10));`m`O`rv`Rem=0`5^3#6^l){i=^g^3#6^l(256))`D(`Rem=(i`t%C4%80'?2:(i`t%U0"
+"100'?1:0))}s.sa(un`Rvl_l='^K,`cID,vmk,ppu,@E,`c`ispace,c`V,`u@7,#4`i,^I,`X,@H';^a=^Z+',^o,$R,server,#4^M,#0@6ID,purchaseID,@r,state,zip,$k,products,`N`i,`N^M';^B`Kn=1;n<51;n++)^a+=',prop$J+',eVar$J"
+"+',hier$J;^Z2=',^U,^2,`o^k,`f,`u@9,`z@2,`z^b,`g,^x,pe$q1$q2$q3,p^J';^a+=^Z2;^9=^a+',$i,`c^N,`c^N#5`MSele@6,`MList,`MM$s,`x^PLinks,`x@D,`x@T,`N@c^3,`N^PFile^Ms,`NEx`n,`NIn`n,`N@UVa$o`N@U^Qs,`N`is,@G"
+",eo';$x=pg#1^9)`5!ss)`Fs()",
w=window,l=w.s_c_il,n=navigator,u=n.userAgent,v=n.appVersion,e=v.indexOf('MSIE '),m=u.indexOf('Netscape6/'),a,i,s;if(un){un=un.toLowerCase();if(l)for(i=0;i<l.length;i++){s=l[i];if(s._c=='s_c'){if(s.oun==un)return s;else if(s.fs&&s.sa&&s.fs(s.oun,un)){s.sa(un);return s}}}}
w.s_r=new Function("x","o","n","var i=x.indexOf(o);if(i>=0&&x.split)x=(x.split(o)).join(n);else while(i>=0){x=x.substring(0,i)+n+x.substring(i+o.length);i=x.indexOf(o)}return x");
w.s_d=new Function("x","var t='`^@$#',l='0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz',d,n=0,b,k,w,i=x.lastIndexOf('~~');if(i>0){d=x.substring(0,i);x=x.substring(i+2);while(d){w=d;i"
+"=d.indexOf('~');if(i>0){w=d.substring(0,i);d=d.substring(i+1)}else d='';b=(n-n%62)/62;k=n-b*62;k=t.substring(b,b+1)+l.substring(k,k+1);x=s_r(x,k,w);n++}for(i=0;i<5;i++){w=t.substring(i,i+1);x=s_r(x"
+",w+' ',w)}}return x");
w.s_fe=new Function("c","return s_r(s_r(s_r(c,'\\\\','\\\\\\\\'),'\"','\\\\\"'),\"\\n\",\"\\\\n\")");
w.s_fa=new Function("f","var s=f.indexOf('(')+1,e=f.indexOf(')'),a='',c;while(s>=0&&s<e){c=f.substring(s,s+1);if(c==',')a+='\",\"';else if((\"\\n\\r\\t \").indexOf(c)<0)a+=c;s++}return a?'\"'+a+'\"':"
+"a");
w.s_ft=new Function("c","c+='';var s,e,o,a,d,q,f,h,x;s=c.indexOf('=function(');while(s>=0){s++;d=1;q='';x=0;f=c.substring(s);a=s_fa(f);e=o=c.indexOf('{',s);e++;while(d>0){h=c.substring(e,e+1);if(q){i"
+"f(h==q&&!x)q='';if(h=='\\\\')x=x?0:1;else x=0}else{if(h=='\"'||h==\"'\")q=h;if(h=='{')d++;if(h=='}')d--}if(d>0)e++}c=c.substring(0,s)+'new Function('+(a?a+',':'')+'\"'+s_fe(c.substring(o+1,e))+'\")"
+"'+c.substring(e+1);s=c.indexOf('=function(')}return c;");
c=s_d(c);if(e>0){a=parseInt(i=v.substring(e+5));if(a>3)a=parseFloat(i)}else if(m>0)a=parseFloat(u.substring(m+10));else a=parseFloat(v);if(a>=5&&v.indexOf('Opera')<0&&u.indexOf('Opera')<0){w.s_c=new Function("un","pg","ss","var s=this;"+c);return new s_c(un,pg,ss)}else s=new Function("un","pg","ss","var s=new Object;"+s_ft(c)+";return s");return s(un,pg,ss)}



/* TOOLTIP PLUGIN
********************************************************************************/
this.tooltip = function(){
	xOffset = 55;
	yOffset = 15;
	$("a.tooltip").hover(function(e){
		this.t = this.title;
		this.title = "";
		$("body").append("<p id='tooltip'>"+ this.t +"</p>");
		$("#tooltip")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px")
			.fadeIn("fast");
    },
	function(){
		this.title = this.t;
		$("#tooltip").remove();
    });
	$("a.tooltip").mousemove(function(e){
		$("#tooltip")
			.css("top",(e.pageY - xOffset) + "px")
			.css("left",(e.pageX + yOffset) + "px");
	});
};


/* CUSTOM VALIDATION METHOD
********************************************************************************/
jQuery.validator.addMethod("phoneUS", function(phone_number, element) {
    phone_number = phone_number.replace(/\s+/g, "");
	return this.optional(element) || phone_number.length > 9 &&
		phone_number.match(/^(1-?)?(\([2-9]\d{2}\)|[2-9]\d{2})-?[2-9]\d{2}-?\d{4}$/);
}, "Please specify a valid phone number");

jQuery.validator.addMethod("containsNum", 
	function(value, element) {
		return /[0-9]/.test(value);
	}
);
jQuery.validator.addMethod("containsAlpha", 
	function(value, element) {
		return /[a-zA-Z]/.test(value);
	}
);
jQuery.validator.addMethod("strLength", 
	function(value, element) {
		var strLength = (value).length;
		if (strLength < 7) {
			return false;
		}
		else {
			return true;
		};
	}
);


/* TEXT REPLACEMENT JS FOR CUFON
********************************************************************************/
Cufon.replace('h1', { fontFamily: 'Museo 300' });
Cufon.replace('.front h1', { fontFamily: 'Museo 500' });
Cufon.replace('#feature h2', { fontFamily: 'Museo 500' });
Cufon.replace('#feature h2', { fontFamily: 'Museo 500' });
Cufon.replace('.pricing-content h2', { fontFamily: 'Museo 500' });
Cufon.replace('#sub-content h2', { fontFamilyily: 'Museo 700' });
Cufon.replace('.landing-heading', { fontFamily: 'Museo 500' });
Cufon.replace('.landing-sub-heading', { fontFamily: 'Museo 300' });
Cufon.replace('#get-started-form h2', { fontFamily: 'Museo 700' });
Cufon.replace('.promo-heading', { fontFamily: 'Museo 500' });
Cufon.replace('.promo-sub-heading', { fontFamily: 'Museo 300' });
Cufon.replace('.sidebar-heading', { fontFamily: 'Museo 500' });
Cufon.replace('.start-meeting', { fontFamily: 'Museo 700' });
Cufon.replace('.purchase-header span', { fontFamily: 'Museo 700' });

$.fn.unwrap = function(expr) {
	return this.each(function(){
		$(this).parents(expr).eq(0).after(this).remove();
	});
};

/* ALL GLOBALLY NEEDED JS CODE CAN BE PLACED HERE
********************************************************************************/
$(document).ready(function() {
	// RUN TOOLTIP
    tooltip();

	// FORM STYLES
	$("input.form-text").wrap('<span class="input"></span>');
	$("input.form-text.input-small").unwrap("span").wrap('<span class="input-small"></span>');
	$("input.form-text.error").unwrap("span").wrap('<span class="input input-error"></span>');
	$("input.form-text.input-small.error").unwrap("span").wrap('<span class="input input-error-small"></span>');

	// IPHONE FEATURES
    $("#iphone-features").tabs();

	/* SHOW OR HIDE DRUPAL STATUS MESSAGES
	********************************************************************************/
	var has_form_errors_container = ($('#hidden-form-messages').length > 0) ? true : false;
	if (has_form_errors_container) {
		var drupal_form_messages = $('#hidden-messages div.error').html();
		$("#hidden-form-messages").show();
		$('#hidden-form-messages').html(drupal_form_messages);
	}

    var drupal_messages = $('#hidden-messages').html();
    if (drupal_messages != "") {
        $("#display-messages-wrap").show();
        $("#display-messages").html(drupal_messages);
    };
	
	/* #SUPPORT-FORM
	********************************************************************************/
    $("#support-form").validate();

	/* #BLACKBERRY-FORM
	********************************************************************************/
    $("#blackberry-form").validate({
        errorLabelContainer: "#form-messages",
        wrapper: "li",
        onfocusout: false,
        onkeyup: false,
        onclick: false,
        rules: {
            "phonenumber": {
                required: true,
                phoneUS: true
            }
        },
        messages: {
            "phonenumber": {
                required: "You must enter a phone number.",
                phoneUS: "Please enter a valid 10 digit mobile number."
            }
        },
        highlight: function(element, errorClass) {
           $(element).addClass(errorClass);
           $(element.form).find("label[for=" + element.id + "]")
                          .addClass(errorClass);
        },
        unhighlight: function(element, errorClass) {
           $(element).removeClass(errorClass);
           $(element.form).find("label[for=" + element.id + 	 "]")
                          .removeClass(errorClass);
        },
        submitHandler: function(form) {
            var phonenumber = $("#phonenumber").val();

            $("input[type='submit']").attr("disabled","true").attr("value", "Processing...");
            var str = $("form").serialize();
            $.post(
                "/fuzemeeting/mobile/iblackberry", //destination
                str, //data
                function(data) { //callback function
                    $("input[type='submit']").removeAttr("disabled").attr("value", "Enter your phone number");
                    $("#form-messages").html("<li class='success-message'>Thanks, we've sent a text to: " + phonenumber + "</li>").show();
                },
                "text"
            );
            return false;
        }
    });

	/* #GET-STARTED-FORM
	********************************************************************************/
	$("#get-started-form input[name=submit]").removeAttr("disabled");
    $("#get-started-form form").validate({
        errorLabelContainer: "#form-messages",
        wrapper: "li",
        onfocusout: false,
        onkeyup: false,
        onclick: false,
        rules: {
            password: {
				required: true,
				containsNum: true,
				containsAlpha: true,
				strLength: true
			},
			confirm_password: {
				equalTo: "#password"
			},
			"email": {
				required: true,
				email: true
			}
        },
        messages: {
            "email": {
				required: "Email address is a required field. ",
				email: "You must enter a valid email address. "
			},
			"password": {
				containsNum: "Your password must contain at least one number. ",
				containsAlpha: "Your password must contain at least one letter. ",
				strLength: "Your password must be at least 7 characters. "
			}
        },
        highlight: function(element, errorClass) {
           $(element).addClass(errorClass);
           $(element.form).find("label[for=" + element.id + "]")
                          .addClass(errorClass);
        },
        unhighlight: function(element, errorClass) {
           $(element).removeClass(errorClass);
           $(element.form).find("label[for=" + element.id + "]")
                          .removeClass(errorClass);
        },
        submitHandler: function(form) {

			var spinnerState  = 1;
			var spinnerStates = 5;

			function spinner() 
			{
				if (spinnerState == spinnerStates) {
					spinnerState = 1;
				}
				$("input[name=submit]").attr("disabled","true").attr("src","/sites/all/themes/fuzemeeting/_media/button_registering_" + spinnerState + ".png");
				spinnerState++;
			}
			var submitSpinner = setInterval(spinner,500);

            var str = $("form").serialize();
            $.post(
                "/fuzemeeting_registration", // destination
                str, // data
                function(data) {
					if (200 == data.code) {
						document.location.href="/get-started/thank-you";
					}
					else {
						clearInterval(submitSpinner);
						$("input[name=submit]").removeAttr("disabled").attr("src","/sites/all/themes/fuzemeeting/_media/button_get_started_form.png");
						$("ul#form-messages").append('<li><label class="error" style="display: inline;">' + data.message.toString() + '</label></li>');
						$("ul#form-messages").show();
					}
                },
                "json"
            );
            return false;
        }
    });

	/* #CONTACT-US-FORM
	********************************************************************************/
    $("#contact-us-form").validate({
        errorLabelContainer: "#form-messages",
        wrapper: "li",
        onfocusout: false,
        onkeyup: false,
        onclick: false,
        rules: {
            first_name: {
				required: true
			},
			last_name: {
				required: true
			},
			email: {
				required: true,
				email: true
			},
			subject: {
				required: true
			},
			comments: {
				required: true
			}
        },
        messages: {
            first_name: {
				required: "First name is a required field. "
			},
            last_name: {
				required: "Last name is a required field. "
			},
            email: {
				required: "Email address is a required field. ",
				email: "You must enter a valid email address. "
			},
            subject: {
				required: "Subject is a required field. "
			},
            comments: {
				required: "Comments is a required field. "
			}
        },
        highlight: function(element, errorClass) {
           $(element).addClass(errorClass);
           $(element.form).find("label[for=" + element.id + "]")
                          .addClass(errorClass);
        },
        unhighlight: function(element, errorClass) {
           $(element).removeClass(errorClass);
           $(element.form).find("label[for=" + element.id + "]")
                          .removeClass(errorClass);
        },
        submitHandler: function(form) {
			var message    = "The following message was submitted via the contact us form on the website.";
			var department = "Attention: " + $('#department').val();
			var subject    = "Subject: " + $('#subject').val();
			var comments   = "Comments:\n" + $('#comments').val();
			var description = message + "\n" + department + "\n" + subject + "\n" + comments + "\n";
			$('description').val(description);
			$(form).submit();
        }
	});

	/* TRANSPARENCY FIXES
	********************************************************************************/
    $.ifixpng('/wp-content/themes/fuzemeeting/_media/png_fix.gif');
    $('.png-fix').ifixpng();
    $("img[src$='logo.png']").ifixpng();
    $("#iphone-content").ifixpng();
    $("#title").ifixpng();
    $("#pricing-table").ifixpng();
    $(".button-get-started").ifixpng();
    $(".button-app-store").ifixpng();
    $(".button-callwave").ifixpng();
    $(".button-login").ifixpng();
});
