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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
(function ($) {

Drupal.behaviors.initColorbox = function (context) {
  if (!$.isFunction($.colorbox)) {
    return;
  }
  $('a, area, input', context)
    .filter('.colorbox:not(.initColorbox-processed)')
    .addClass('initColorbox-processed')
    .colorbox(Drupal.settings.colorbox);
};

{
  $(document).bind('cbox_complete', function () {
    Drupal.attachBehaviors('#cboxLoadedContent');
  });
}

})(jQuery);
;
(function ($) {

Drupal.behaviors.initColorboxDefaultStyle = function (context) {
  $(document).bind('cbox_complete', function () {
    // Only run if there is a title.
    if ($('#cboxTitle:empty', context).length == false) {
      setTimeout(function () { $('#cboxTitle', context).slideUp() }, 1500);
      $('#cboxLoadedContent img', context).bind('mouseover', function () {
        $('#cboxTitle', context).slideDown();
      });
      $('#cboxOverlay', context).bind('mouseover', function () {
        $('#cboxTitle', context).slideUp();
      });
    }
    else {
      $('#cboxTitle', context).hide();
    }
  });
};

})(jQuery);
;

$(document).ready(function() {

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

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

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});
;
/* $Id: lightbox.js,v 1.5.2.6.2.136 2010/09/24 08:39:40 snpower Exp $ */

/**
 * jQuery Lightbox
 * @author
 *   Stella Power, <http://drupal.org/user/66894>
 *
 * Based on Lightbox v2.03.3 by Lokesh Dhakar
 * <http://www.huddletogether.com/projects/lightbox2/>
 * Also partially based on the jQuery Lightbox by Warren Krewenki
 *   <http://warren.mesozen.com>
 *
 * Permission has been granted to Mark Ashmead & other Drupal Lightbox2 module
 * maintainers to distribute this file via Drupal.org
 * Under GPL license.
 *
 * Slideshow, iframe and video functionality added by Stella Power.
 */

var Lightbox = {
  auto_modal : false,
  overlayOpacity : 0.8, // Controls transparency of shadow overlay.
  overlayColor : '000', // Controls colour of shadow overlay.
  disableCloseClick : true,
  // Controls the order of the lightbox resizing animation sequence.
  resizeSequence: 0, // 0: simultaneous, 1: width then height, 2: height then width.
  resizeSpeed: 'normal', // Controls the speed of the lightbox resizing animation.
  fadeInSpeed: 'normal', // Controls the speed of the image appearance.
  slideDownSpeed: 'slow', // Controls the speed of the image details appearance.
  minWidth: 240,
  borderSize : 10,
  boxColor : 'fff',
  fontColor : '000',
  topPosition : '',
  infoHeight: 20,
  alternative_layout : false,
  imageArray : [],
  imageNum : null,
  total : 0,
  activeImage : null,
  inprogress : false,
  disableResize : false,
  disableZoom : false,
  isZoomedIn : false,
  rtl : false,
  loopItems : false,
  keysClose : ['c', 'x', 27],
  keysPrevious : ['p', 37],
  keysNext : ['n', 39],
  keysZoom : ['z'],
  keysPlayPause : [32],

  // Slideshow options.
  slideInterval : 5000, // In milliseconds.
  showPlayPause : true,
  autoStart : true,
  autoExit : true,
  pauseOnNextClick : false, // True to pause the slideshow when the "Next" button is clicked.
  pauseOnPrevClick : true, // True to pause the slideshow when the "Prev" button is clicked.
  slideIdArray : [],
  slideIdCount : 0,
  isSlideshow : false,
  isPaused : false,
  loopSlides : false,

  // Iframe options.
  isLightframe : false,
  iframe_width : 600,
  iframe_height : 400,
  iframe_border : 1,

  // Video and modal options.
  enableVideo : false,
  flvPlayer : '/flvplayer.swf',
  flvFlashvars : '',
  isModal : false,
  isVideo : false,
  videoId : false,
  modalWidth : 400,
  modalHeight : 400,
  modalHTML : null,


  // initialize()
  // Constructor runs on completion of the DOM loading.
  // The function inserts html at the bottom of the page which is used
  // to display the shadow overlay and the image container.
  initialize: function() {

    var s = Drupal.settings.lightbox2;
    Lightbox.overlayOpacity = s.overlay_opacity;
    Lightbox.overlayColor = s.overlay_color;
    Lightbox.disableCloseClick = s.disable_close_click;
    Lightbox.resizeSequence = s.resize_sequence;
    Lightbox.resizeSpeed = s.resize_speed;
    Lightbox.fadeInSpeed = s.fade_in_speed;
    Lightbox.slideDownSpeed = s.slide_down_speed;
    Lightbox.borderSize = s.border_size;
    Lightbox.boxColor = s.box_color;
    Lightbox.fontColor = s.font_color;
    Lightbox.topPosition = s.top_position;
    Lightbox.rtl = s.rtl;
    Lightbox.loopItems = s.loop_items;
    Lightbox.keysClose = s.keys_close.split(" ");
    Lightbox.keysPrevious = s.keys_previous.split(" ");
    Lightbox.keysNext = s.keys_next.split(" ");
    Lightbox.keysZoom = s.keys_zoom.split(" ");
    Lightbox.keysPlayPause = s.keys_play_pause.split(" ");
    Lightbox.disableResize = s.disable_resize;
    Lightbox.disableZoom = s.disable_zoom;
    Lightbox.slideInterval = s.slideshow_interval;
    Lightbox.showPlayPause = s.show_play_pause;
    Lightbox.showCaption = s.show_caption;
    Lightbox.autoStart = s.slideshow_automatic_start;
    Lightbox.autoExit = s.slideshow_automatic_exit;
    Lightbox.pauseOnNextClick = s.pause_on_next_click;
    Lightbox.pauseOnPrevClick = s.pause_on_previous_click;
    Lightbox.loopSlides = s.loop_slides;
    Lightbox.alternative_layout = s.use_alt_layout;
    Lightbox.iframe_width = s.iframe_width;
    Lightbox.iframe_height = s.iframe_height;
    Lightbox.iframe_border = s.iframe_border;
    Lightbox.enableVideo = s.enable_video;
    if (s.enable_video) {
      Lightbox.flvPlayer = s.flvPlayer;
      Lightbox.flvFlashvars = s.flvFlashvars;
    }

    // Make the lightbox divs.
    var layout_class = (s.use_alt_layout ? 'lightbox2-alt-layout' : 'lightbox2-orig-layout');
    var output = '<div id="lightbox2-overlay" style="display: none;"></div>\
      <div id="lightbox" style="display: none;" class="' + layout_class + '">\
        <div id="outerImageContainer"></div>\
        <div id="imageDataContainer" class="clearfix">\
          <div id="imageData"></div>\
        </div>\
      </div>';
    var loading = '<div id="loading"><a href="#" id="loadingLink"></a></div>';
    var modal = '<div id="modalContainer" style="display: none;"></div>';
    var frame = '<div id="frameContainer" style="display: none;"></div>';
    var imageContainer = '<div id="imageContainer" style="display: none;"></div>';
    var details = '<div id="imageDetails"></div>';
    var bottomNav = '<div id="bottomNav"></div>';
    var image = '<img id="lightboxImage" alt="" />';
    var hoverNav = '<div id="hoverNav"><a id="prevLink" href="#"></a><a id="nextLink" href="#"></a></div>';
    var frameNav = '<div id="frameHoverNav"><a id="framePrevLink" href="#"></a><a id="frameNextLink" href="#"></a></div>';
    var hoverNav = '<div id="hoverNav"><a id="prevLink" title="' + Drupal.t('Previous') + '" href="#"></a><a id="nextLink" title="' + Drupal.t('Next') + '" href="#"></a></div>';
    var frameNav = '<div id="frameHoverNav"><a id="framePrevLink" title="' + Drupal.t('Previous') + '" href="#"></a><a id="frameNextLink" title="' + Drupal.t('Next') + '" href="#"></a></div>';
    var caption = '<span id="caption"></span>';
    var numberDisplay = '<span id="numberDisplay"></span>';
    var close = '<a id="bottomNavClose" title="' + Drupal.t('Close') + '" href="#"></a>';
    var zoom = '<a id="bottomNavZoom" href="#"></a>';
    var zoomOut = '<a id="bottomNavZoomOut" href="#"></a>';
    var pause = '<a id="lightshowPause" title="' + Drupal.t('Pause Slideshow') + '" href="#" style="display: none;"></a>';
    var play = '<a id="lightshowPlay" title="' + Drupal.t('Play Slideshow') + '" href="#" style="display: none;"></a>';

    $("body").append(output);
    $('#outerImageContainer').append(modal + frame + imageContainer + loading);
    if (!s.use_alt_layout) {
      $('#imageContainer').append(image + hoverNav);
      $('#imageData').append(details + bottomNav);
      $('#imageDetails').append(caption + numberDisplay);
      $('#bottomNav').append(frameNav + close + zoom + zoomOut + pause + play);
    }
    else {
      $('#outerImageContainer').append(bottomNav);
      $('#imageContainer').append(image);
      $('#bottomNav').append(close + zoom + zoomOut);
      $('#imageData').append(hoverNav + details);
      $('#imageDetails').append(caption + numberDisplay + pause + play);
    }

    // Setup onclick handlers.
    if (Lightbox.disableCloseClick) {
      $('#lightbox2-overlay').click(function() { Lightbox.end(); return false; } ).hide();
    }
    $('#loadingLink, #bottomNavClose').click(function() { Lightbox.end('forceClose'); return false; } );
    $('#prevLink, #framePrevLink').click(function() { Lightbox.changeData(Lightbox.activeImage - 1); return false; } );
    $('#nextLink, #frameNextLink').click(function() { Lightbox.changeData(Lightbox.activeImage + 1); return false; } );
    $('#bottomNavZoom').click(function() { Lightbox.changeData(Lightbox.activeImage, true); return false; } );
    $('#bottomNavZoomOut').click(function() { Lightbox.changeData(Lightbox.activeImage, false); return false; } );
    $('#lightshowPause').click(function() { Lightbox.togglePlayPause("lightshowPause", "lightshowPlay"); return false; } );
    $('#lightshowPlay').click(function() { Lightbox.togglePlayPause("lightshowPlay", "lightshowPause"); return false; } );

    // Fix positioning.
    $('#prevLink, #nextLink, #framePrevLink, #frameNextLink').css({ 'paddingTop': Lightbox.borderSize + 'px'});
    $('#imageContainer, #frameContainer, #modalContainer').css({ 'padding': Lightbox.borderSize + 'px'});
    $('#outerImageContainer, #imageDataContainer, #bottomNavClose').css({'backgroundColor': '#' + Lightbox.boxColor, 'color': '#'+Lightbox.fontColor});
    if (Lightbox.alternative_layout) {
      $('#bottomNavZoom, #bottomNavZoomOut').css({'bottom': Lightbox.borderSize + 'px', 'right': Lightbox.borderSize + 'px'});
    }
    else if (Lightbox.rtl == 1 && $.browser.msie) {
      $('#bottomNavZoom, #bottomNavZoomOut').css({'left': '0px'});
    }

    // Force navigation links to always be displayed
    if (s.force_show_nav) {
      $('#prevLink, #nextLink').addClass("force_show_nav");
    }

  },

  // initList()
  // Loops through anchor tags looking for 'lightbox', 'lightshow' and
  // 'lightframe', etc, references and applies onclick events to appropriate
  // links. You can rerun after dynamically adding images w/ajax.
  initList : function(context) {

    if (context == undefined || context == null) {
      context = document;
    }

    // Attach lightbox to any links with rel 'lightbox', 'lightshow' or
    // 'lightframe', etc.
    $("a[rel^='lightbox']:not(.lightbox-processed), area[rel^='lightbox']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, false, false, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("a[rel^='lightshow']:not(.lightbox-processed), area[rel^='lightshow']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, true, false, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("a[rel^='lightframe']:not(.lightbox-processed), area[rel^='lightframe']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      if (Lightbox.disableCloseClick) {
        $('#lightbox').unbind('click');
        $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
      }
      Lightbox.start(this, false, true, false, false);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    if (Lightbox.enableVideo) {
      $("a[rel^='lightvideo']:not(.lightbox-processed), area[rel^='lightvideo']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
        if (Lightbox.disableCloseClick) {
          $('#lightbox').unbind('click');
          $('#lightbox').click(function() { Lightbox.end('forceClose'); } );
        }
        Lightbox.start(this, false, false, true, false);
        if (e.preventDefault) { e.preventDefault(); }
        return false;
      });
    }
    $("a[rel^='lightmodal']:not(.lightbox-processed), area[rel^='lightmodal']:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      $('#lightbox').unbind('click');
      // Add classes from the link to the lightbox div - don't include lightbox-processed
      $('#lightbox').addClass($(this).attr('class'));
      $('#lightbox').removeClass('lightbox-processed');
      Lightbox.start(this, false, false, false, true);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
    $("#lightboxAutoModal:not(.lightbox-processed)", context).addClass('lightbox-processed').click(function(e) {
      Lightbox.auto_modal = true;
      $('#lightbox').unbind('click');
      Lightbox.start(this, false, false, false, true);
      if (e.preventDefault) { e.preventDefault(); }
      return false;
    });
  },

  // start()
  // Display overlay and lightbox. If image is part of a set, add siblings to
  // imageArray.
  start: function(imageLink, slideshow, lightframe, lightvideo, lightmodal) {

    Lightbox.isPaused = !Lightbox.autoStart;

    // Replaces hideSelectBoxes() and hideFlash() calls in original lightbox2.
    Lightbox.toggleSelectsFlash('hide');

    // Stretch overlay to fill page and fade in.
    var arrayPageSize = Lightbox.getPageSize();
    $("#lightbox2-overlay").hide().css({
      'width': '100%',
      'zIndex': '10090',
      'height': arrayPageSize[1] + 'px',
      'backgroundColor' : '#' + Lightbox.overlayColor
    });
    // Detect OS X FF2 opacity + flash issue.
    if (lightvideo && this.detectMacFF2()) {
      $("#lightbox2-overlay").removeClass("overlay_default");
      $("#lightbox2-overlay").addClass("overlay_macff2");
      $("#lightbox2-overlay").css({'opacity' : null});
    }
    else {
      $("#lightbox2-overlay").removeClass("overlay_macff2");
      $("#lightbox2-overlay").addClass("overlay_default");
      $("#lightbox2-overlay").css({'opacity' : Lightbox.overlayOpacity});
    }
    $("#lightbox2-overlay").fadeIn(Lightbox.fadeInSpeed);


    Lightbox.isSlideshow = slideshow;
    Lightbox.isLightframe = lightframe;
    Lightbox.isVideo = lightvideo;
    Lightbox.isModal = lightmodal;
    Lightbox.imageArray = [];
    Lightbox.imageNum = 0;

    var anchors = $(imageLink.tagName);
    var anchor = null;
    var rel_parts = Lightbox.parseRel(imageLink);
    var rel = rel_parts["rel"];
    var rel_group = rel_parts["group"];
    var title = (rel_parts["title"] ? rel_parts["title"] : imageLink.title);
    var rel_style = null;
    var i = 0;

    if (rel_parts["flashvars"]) {
      Lightbox.flvFlashvars = Lightbox.flvFlashvars + '&' + rel_parts["flashvars"];
    }

    // Set the title for image alternative text.
    var alt = imageLink.title;
    if (!alt) {
      var img = $(imageLink).find("img");
      if (img && $(img).attr("alt")) {
        alt = $(img).attr("alt");
      }
      else {
        alt = title;
      }
    }

    if ($(imageLink).attr('id') == 'lightboxAutoModal') {
      rel_style = rel_parts["style"];
      Lightbox.imageArray.push(['#lightboxAutoModal > *', title, alt, rel_style, 1]);
    }
    else {
      // Handle lightbox images with no grouping.
      if ((rel == 'lightbox' || rel == 'lightshow') && !rel_group) {
        Lightbox.imageArray.push([imageLink.href, title, alt]);
      }

      // Handle other items with no grouping.
      else if (!rel_group) {
        rel_style = rel_parts["style"];
        Lightbox.imageArray.push([imageLink.href, title, alt, rel_style]);
      }

      // Handle grouped items.
      else {

        // Loop through anchors and add them to imageArray.
        for (i = 0; i < anchors.length; i++) {
          anchor = anchors[i];
          if (anchor.href && typeof(anchor.href) == "string" && $(anchor).attr('rel')) {
            var rel_data = Lightbox.parseRel(anchor);
            var anchor_title = (rel_data["title"] ? rel_data["title"] : anchor.title);
            img_alt = anchor.title;
            if (!img_alt) {
              var anchor_img = $(anchor).find("img");
              if (anchor_img && $(anchor_img).attr("alt")) {
                img_alt = $(anchor_img).attr("alt");
              }
              else {
                img_alt = title;
              }
            }
            if (rel_data["rel"] == rel) {
              if (rel_data["group"] == rel_group) {
                if (Lightbox.isLightframe || Lightbox.isModal || Lightbox.isVideo) {
                  rel_style = rel_data["style"];
                }
                Lightbox.imageArray.push([anchor.href, anchor_title, img_alt, rel_style]);
              }
            }
          }
        }

        // Remove duplicates.
        for (i = 0; i < Lightbox.imageArray.length; i++) {
          for (j = Lightbox.imageArray.length-1; j > i; j--) {
            if (Lightbox.imageArray[i][0] == Lightbox.imageArray[j][0]) {
              Lightbox.imageArray.splice(j,1);
            }
          }
        }
        while (Lightbox.imageArray[Lightbox.imageNum][0] != imageLink.href) {
          Lightbox.imageNum++;
        }
      }
    }

    if (Lightbox.isSlideshow && Lightbox.showPlayPause && Lightbox.isPaused) {
      $('#lightshowPlay').show();
      $('#lightshowPause').hide();
    }

    // Calculate top and left offset for the lightbox.
    var arrayPageScroll = Lightbox.getPageScroll();
    var lightboxTop = arrayPageScroll[1] + (Lightbox.topPosition == '' ? (arrayPageSize[3] / 10) : Lightbox.topPosition) * 1;
    var lightboxLeft = arrayPageScroll[0];
    $('#frameContainer, #modalContainer, #lightboxImage').hide();
    $('#hoverNav, #prevLink, #nextLink, #frameHoverNav, #framePrevLink, #frameNextLink').hide();
    $('#imageDataContainer, #numberDisplay, #bottomNavZoom, #bottomNavZoomOut').hide();
    $('#outerImageContainer').css({'width': '250px', 'height': '250px'});
    $('#lightbox').css({
      'zIndex': '10500',
      'top': lightboxTop + 'px',
      'left': lightboxLeft + 'px'
    }).show();

    Lightbox.total = Lightbox.imageArray.length;
    Lightbox.changeData(Lightbox.imageNum);
  },

  // changeData()
  // Hide most elements and preload image in preparation for resizing image
  // container.
  changeData: function(imageNum, zoomIn) {

    if (Lightbox.inprogress === false) {
      if (Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) {
        if (imageNum >= Lightbox.total) imageNum = 0;
        if (imageNum < 0) imageNum = Lightbox.total - 1;
      }

      if (Lightbox.isSlideshow) {
        for (var i = 0; i < Lightbox.slideIdCount; i++) {
          window.clearTimeout(Lightbox.slideIdArray[i]);
        }
      }
      Lightbox.inprogress = true;
      Lightbox.activeImage = imageNum;

      if (Lightbox.disableResize && !Lightbox.isSlideshow) {
        zoomIn = true;
      }
      Lightbox.isZoomedIn = zoomIn;


      // Hide elements during transition.
      $('#loading').css({'zIndex': '10500'}).show();
      if (!Lightbox.alternative_layout) {
        $('#imageContainer').hide();
      }
      $('#frameContainer, #modalContainer, #lightboxImage').hide();
      $('#hoverNav, #prevLink, #nextLink, #frameHoverNav, #framePrevLink, #frameNextLink').hide();
      $('#imageDataContainer, #numberDisplay, #bottomNavZoom, #bottomNavZoomOut').hide();

      // Preload image content, but not iframe pages.
      if (!Lightbox.isLightframe && !Lightbox.isVideo && !Lightbox.isModal) {
        $("#lightbox #imageDataContainer").removeClass('lightbox2-alt-layout-data');
        imgPreloader = new Image();
        imgPreloader.onerror = function() { Lightbox.imgNodeLoadingError(this); };

        imgPreloader.onload = function() {
          var photo = document.getElementById('lightboxImage');
          photo.src = Lightbox.imageArray[Lightbox.activeImage][0];
          photo.alt = Lightbox.imageArray[Lightbox.activeImage][2];

          var imageWidth = imgPreloader.width;
          var imageHeight = imgPreloader.height;

          // Resize code.
          var arrayPageSize = Lightbox.getPageSize();
          var targ = { w:arrayPageSize[2] - (Lightbox.borderSize * 2), h:arrayPageSize[3] - (Lightbox.borderSize * 6) - (Lightbox.infoHeight * 4) - (arrayPageSize[3] / 10) };
          var orig = { w:imgPreloader.width, h:imgPreloader.height };

          // Image is very large, so show a smaller version of the larger image
          // with zoom button.
          if (zoomIn !== true) {
            var ratio = 1.0; // Shrink image with the same aspect.
            $('#bottomNavZoomOut, #bottomNavZoom').hide();
            if ((orig.w >= targ.w || orig.h >= targ.h) && orig.h && orig.w) {
              ratio = ((targ.w / orig.w) < (targ.h / orig.h)) ? targ.w / orig.w : targ.h / orig.h;
              if (!Lightbox.disableZoom && !Lightbox.isSlideshow) {
                $('#bottomNavZoom').css({'zIndex': '10500'}).show();
              }
            }

            imageWidth  = Math.floor(orig.w * ratio);
            imageHeight = Math.floor(orig.h * ratio);
          }

          else {
            $('#bottomNavZoom').hide();
            // Only display zoom out button if the image is zoomed in already.
            if ((orig.w >= targ.w || orig.h >= targ.h) && orig.h && orig.w) {
              // Only display zoom out button if not a slideshow and if the
              // buttons aren't disabled.
              if (!Lightbox.disableResize && Lightbox.isSlideshow === false && !Lightbox.disableZoom) {
                $('#bottomNavZoomOut').css({'zIndex': '10500'}).show();
              }
            }
          }

          photo.style.width = (imageWidth) + 'px';
          photo.style.height = (imageHeight) + 'px';
          Lightbox.resizeContainer(imageWidth, imageHeight);

          // Clear onLoad, IE behaves irratically with animated gifs otherwise.
          imgPreloader.onload = function() {};
        };

        imgPreloader.src = Lightbox.imageArray[Lightbox.activeImage][0];
        imgPreloader.alt = Lightbox.imageArray[Lightbox.activeImage][2];
      }

      // Set up frame size, etc.
      else if (Lightbox.isLightframe) {
        $("#lightbox #imageDataContainer").addClass('lightbox2-alt-layout-data');
        var src = Lightbox.imageArray[Lightbox.activeImage][0];
        $('#frameContainer').html('<iframe id="lightboxFrame" style="display: none;" src="'+src+'"></iframe>');

        // Enable swf support in Gecko browsers.
        if ($.browser.mozilla && src.indexOf('.swf') != -1) {
          setTimeout(function () {
            document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
          }, 1000);
        }

        if (!Lightbox.iframe_border) {
          $('#lightboxFrame').css({'border': 'none'});
          $('#lightboxFrame').attr('frameborder', '0');
        }
        var iframe = document.getElementById('lightboxFrame');
        var iframeStyles = Lightbox.imageArray[Lightbox.activeImage][3];
        iframe = Lightbox.setStyles(iframe, iframeStyles);
        Lightbox.resizeContainer(parseInt(iframe.width, 10), parseInt(iframe.height, 10));
      }
      else if (Lightbox.isVideo || Lightbox.isModal) {
        $("#lightbox #imageDataContainer").addClass('lightbox2-alt-layout-data');
        var container = document.getElementById('modalContainer');
        var modalStyles = Lightbox.imageArray[Lightbox.activeImage][3];
        container = Lightbox.setStyles(container, modalStyles);
        if (Lightbox.isVideo) {
          Lightbox.modalHeight =  parseInt(container.height, 10) - 10;
          Lightbox.modalWidth =  parseInt(container.width, 10) - 10;
          Lightvideo.startVideo(Lightbox.imageArray[Lightbox.activeImage][0]);
        }
        Lightbox.resizeContainer(parseInt(container.width, 10), parseInt(container.height, 10));
      }
    }
  },

  // imgNodeLoadingError()
  imgNodeLoadingError: function(image) {
    var s = Drupal.settings.lightbox2;
    var original_image = Lightbox.imageArray[Lightbox.activeImage][0];
    if (s.display_image_size !== "") {
      original_image = original_image.replace(new RegExp("."+s.display_image_size), "");
    }
    Lightbox.imageArray[Lightbox.activeImage][0] = original_image;
    image.onerror = function() { Lightbox.imgLoadingError(image); };
    image.src = original_image;
  },

  // imgLoadingError()
  imgLoadingError: function(image) {
    var s = Drupal.settings.lightbox2;
    Lightbox.imageArray[Lightbox.activeImage][0] = s.default_image;
    image.src = s.default_image;
  },

  // resizeContainer()
  resizeContainer: function(imgWidth, imgHeight) {

    imgWidth = (imgWidth < Lightbox.minWidth ? Lightbox.minWidth : imgWidth);

    this.widthCurrent = $('#outerImageContainer').width();
    this.heightCurrent = $('#outerImageContainer').height();

    var widthNew = (imgWidth  + (Lightbox.borderSize * 2));
    var heightNew = (imgHeight  + (Lightbox.borderSize * 2));

    // Scalars based on change from old to new.
    this.xScale = ( widthNew / this.widthCurrent) * 100;
    this.yScale = ( heightNew / this.heightCurrent) * 100;

    // Calculate size difference between new and old image, and resize if
    // necessary.
    wDiff = this.widthCurrent - widthNew;
    hDiff = this.heightCurrent - heightNew;

    $('#modalContainer').css({'width': imgWidth, 'height': imgHeight});
    // Detect animation sequence.
    if (Lightbox.resizeSequence) {
      var animate1 = {width: widthNew};
      var animate2 = {height: heightNew};
      if (Lightbox.resizeSequence == 2) {
        animate1 = {height: heightNew};
        animate2 = {width: widthNew};
      }
      $('#outerImageContainer').animate(animate1, Lightbox.resizeSpeed).animate(animate2, Lightbox.resizeSpeed, 'linear', function() { Lightbox.showData(); });
    }
    // Simultaneous.
    else {
      $('#outerImageContainer').animate({'width': widthNew, 'height': heightNew}, Lightbox.resizeSpeed, 'linear', function() { Lightbox.showData(); });
    }

    // If new and old image are same size and no scaling transition is necessary
    // do a quick pause to prevent image flicker.
    if ((hDiff === 0) && (wDiff === 0)) {
      if ($.browser.msie) {
        Lightbox.pause(250);
      }
      else {
        Lightbox.pause(100);
      }
    }

    var s = Drupal.settings.lightbox2;
    if (!s.use_alt_layout) {
      $('#prevLink, #nextLink').css({'height': imgHeight + 'px'});
    }
    $('#imageDataContainer').css({'width': widthNew + 'px'});
  },

  // showData()
  // Display image and begin preloading neighbors.
  showData: function() {
    $('#loading').hide();

    if (Lightbox.isLightframe || Lightbox.isVideo || Lightbox.isModal) {
      Lightbox.updateDetails();
      if (Lightbox.isLightframe) {
        $('#frameContainer').show();
        if ($.browser.safari || Lightbox.fadeInSpeed === 0) {
          $('#lightboxFrame').css({'zIndex': '10500'}).show();
        }
        else {
          $('#lightboxFrame').css({'zIndex': '10500'}).fadeIn(Lightbox.fadeInSpeed);
        }
      }
      else {
        if (Lightbox.isVideo) {
          $("#modalContainer").html(Lightbox.modalHTML).click(function(){return false;}).css('zIndex', '10500').show();
        }
        else {
          var src = unescape(Lightbox.imageArray[Lightbox.activeImage][0]);
          if (Lightbox.imageArray[Lightbox.activeImage][4]) {
            $(src).appendTo("#modalContainer");
            $('#modalContainer').css({'zIndex': '10500'}).show();
          }
          else {
            // Use a callback to show the new image, otherwise you get flicker.
            $("#modalContainer").hide().load(src, function () {$('#modalContainer').css({'zIndex': '10500'}).show();});
          }
          $('#modalContainer').unbind('click');
        }
        // This might be needed in the Lightframe section above.
        //$('#modalContainer').css({'zIndex': '10500'}).show();
      }
    }

    // Handle display of image content.
    else {
      $('#imageContainer').show();
      if ($.browser.safari || Lightbox.fadeInSpeed === 0) {
        $('#lightboxImage').css({'zIndex': '10500'}).show();
      }
      else {
        $('#lightboxImage').css({'zIndex': '10500'}).fadeIn(Lightbox.fadeInSpeed);
      }
      Lightbox.updateDetails();
      this.preloadNeighborImages();
    }
    Lightbox.inprogress = false;

    // Slideshow specific stuff.
    if (Lightbox.isSlideshow) {
      if (!Lightbox.loopSlides && Lightbox.activeImage == (Lightbox.total - 1)) {
        if (Lightbox.autoExit) {
          Lightbox.slideIdArray[Lightbox.slideIdCount++] = setTimeout(function () {Lightbox.end('slideshow');}, Lightbox.slideInterval);
        }
      }
      else {
        if (!Lightbox.isPaused && Lightbox.total > 1) {
          Lightbox.slideIdArray[Lightbox.slideIdCount++] = setTimeout(function () {Lightbox.changeData(Lightbox.activeImage + 1);}, Lightbox.slideInterval);
        }
      }
      if (Lightbox.showPlayPause && Lightbox.total > 1 && !Lightbox.isPaused) {
        $('#lightshowPause').show();
        $('#lightshowPlay').hide();
      }
      else if (Lightbox.showPlayPause && Lightbox.total > 1) {
        $('#lightshowPause').hide();
        $('#lightshowPlay').show();
      }
    }

    // Adjust the page overlay size.
    var arrayPageSize = Lightbox.getPageSize();
    var arrayPageScroll = Lightbox.getPageScroll();
    var pageHeight = arrayPageSize[1];
    if (Lightbox.isZoomedIn && arrayPageSize[1] > arrayPageSize[3]) {
      var lightboxTop = (Lightbox.topPosition == '' ? (arrayPageSize[3] / 10) : Lightbox.topPosition) * 1;
      pageHeight = pageHeight + arrayPageScroll[1] + lightboxTop;
    }
    $('#lightbox2-overlay').css({'height': pageHeight + 'px', 'width': arrayPageSize[0] + 'px'});

    // Gecko browsers (e.g. Firefox, SeaMonkey, etc) don't handle pdfs as
    // expected.
    if ($.browser.mozilla) {
      if (Lightbox.imageArray[Lightbox.activeImage][0].indexOf(".pdf") != -1) {
        setTimeout(function () {
          document.getElementById("lightboxFrame").src = Lightbox.imageArray[Lightbox.activeImage][0];
        }, 1000);
      }
    }
  },

  // updateDetails()
  // Display caption, image number, and bottom nav.
  updateDetails: function() {

    $("#imageDataContainer").hide();

    var s = Drupal.settings.lightbox2;

    if (s.show_caption) {
      var caption = Lightbox.filterXSS(Lightbox.imageArray[Lightbox.activeImage][1]);
      if (!caption) caption = '';
      $('#caption').html(caption).css({'zIndex': '10500'}).show();
    }

    // If image is part of set display 'Image x of x'.
    var numberDisplay = null;
    if (s.image_count && Lightbox.total > 1) {
      var currentImage = Lightbox.activeImage + 1;
      if (!Lightbox.isLightframe && !Lightbox.isModal && !Lightbox.isVideo) {
        numberDisplay = s.image_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      else if (Lightbox.isVideo) {
        numberDisplay = s.video_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      else {
        numberDisplay = s.page_count.replace(/\!current/, currentImage).replace(/\!total/, Lightbox.total);
      }
      $('#numberDisplay').html(numberDisplay).css({'zIndex': '10500'}).show();
    }
    else {
      $('#numberDisplay').hide();
    }

    $("#imageDataContainer").hide().slideDown(Lightbox.slideDownSpeed, function() {
      $("#bottomNav").show();
    });
    if (Lightbox.rtl == 1) {
      $("#bottomNav").css({'float': 'left'});
    }
    Lightbox.updateNav();
  },

  // updateNav()
  // Display appropriate previous and next hover navigation.
  updateNav: function() {

    $('#hoverNav').css({'zIndex': '10500'}).show();
    var prevLink = '#prevLink';
    var nextLink = '#nextLink';

    // Slideshow is separated as we need to show play / pause button.
    if (Lightbox.isSlideshow) {
      if ((Lightbox.total > 1 && Lightbox.loopSlides) || Lightbox.activeImage !== 0) {
        $(prevLink).css({'zIndex': '10500'}).show().click(function() {
          if (Lightbox.pauseOnPrevClick) {
            Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
          }
          Lightbox.changeData(Lightbox.activeImage - 1); return false;
        });
      }
      else {
        $(prevLink).hide();
      }

      // If not last image in set, display next image button.
      if ((Lightbox.total > 1 && Lightbox.loopSlides) || Lightbox.activeImage != (Lightbox.total - 1)) {
        $(nextLink).css({'zIndex': '10500'}).show().click(function() {
          if (Lightbox.pauseOnNextClick) {
            Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
          }
          Lightbox.changeData(Lightbox.activeImage + 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(nextLink).hide();
      }
    }

    // All other types of content.
    else {

      if ((Lightbox.isLightframe || Lightbox.isModal || Lightbox.isVideo) && !Lightbox.alternative_layout) {
        $('#frameHoverNav').css({'zIndex': '10500'}).show();
        $('#hoverNav').css({'zIndex': '10500'}).hide();
        prevLink = '#framePrevLink';
        nextLink = '#frameNextLink';
      }

      // If not first image in set, display prev image button.
      if ((Lightbox.total > 1 && Lightbox.loopItems) || Lightbox.activeImage !== 0) {
        // Unbind any other click handlers, otherwise this adds a new click handler
        // each time the arrow is clicked.
        $(prevLink).css({'zIndex': '10500'}).show().unbind().click(function() {
          Lightbox.changeData(Lightbox.activeImage - 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(prevLink).hide();
      }

      // If not last image in set, display next image button.
      if ((Lightbox.total > 1 && Lightbox.loopItems) || Lightbox.activeImage != (Lightbox.total - 1)) {
        // Unbind any other click handlers, otherwise this adds a new click handler
        // each time the arrow is clicked.
        $(nextLink).css({'zIndex': '10500'}).show().unbind().click(function() {
          Lightbox.changeData(Lightbox.activeImage + 1); return false;
        });
      }
      // Safari browsers need to have hide() called again.
      else {
        $(nextLink).hide();
      }
    }

    // Don't enable keyboard shortcuts so forms will work.
    if (!Lightbox.isModal) {
      this.enableKeyboardNav();
    }
  },


  // enableKeyboardNav()
  enableKeyboardNav: function() {
    $(document).bind("keydown", this.keyboardAction);
  },

  // disableKeyboardNav()
  disableKeyboardNav: function() {
    $(document).unbind("keydown", this.keyboardAction);
  },

  // keyboardAction()
  keyboardAction: function(e) {
    if (e === null) { // IE.
      keycode = event.keyCode;
      escapeKey = 27;
    }
    else { // Mozilla.
      keycode = e.keyCode;
      escapeKey = e.DOM_VK_ESCAPE;
    }

    key = String.fromCharCode(keycode).toLowerCase();

    // Close lightbox.
    if (Lightbox.checkKey(Lightbox.keysClose, key, keycode)) {
      Lightbox.end('forceClose');
    }
    // Display previous image (p, <-).
    else if (Lightbox.checkKey(Lightbox.keysPrevious, key, keycode)) {
      if ((Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) || Lightbox.activeImage !== 0) {
        Lightbox.changeData(Lightbox.activeImage - 1);
      }

    }
    // Display next image (n, ->).
    else if (Lightbox.checkKey(Lightbox.keysNext, key, keycode)) {
      if ((Lightbox.total > 1 && ((Lightbox.isSlideshow && Lightbox.loopSlides) || (!Lightbox.isSlideshow && Lightbox.loopItems))) || Lightbox.activeImage != (Lightbox.total - 1)) {
        Lightbox.changeData(Lightbox.activeImage + 1);
      }
    }
    // Zoom in.
    else if (Lightbox.checkKey(Lightbox.keysZoom, key, keycode) && !Lightbox.disableResize && !Lightbox.disableZoom && !Lightbox.isSlideshow && !Lightbox.isLightframe) {
      if (Lightbox.isZoomedIn) {
        Lightbox.changeData(Lightbox.activeImage, false);
      }
      else if (!Lightbox.isZoomedIn) {
        Lightbox.changeData(Lightbox.activeImage, true);
      }
      return false;
    }
    // Toggle play / pause (space).
    else if (Lightbox.checkKey(Lightbox.keysPlayPause, key, keycode) && Lightbox.isSlideshow) {

      if (Lightbox.isPaused) {
        Lightbox.togglePlayPause("lightshowPlay", "lightshowPause");
      }
      else {
        Lightbox.togglePlayPause("lightshowPause", "lightshowPlay");
      }
      return false;
    }
  },

  preloadNeighborImages: function() {

    if ((Lightbox.total - 1) > Lightbox.activeImage) {
      preloadNextImage = new Image();
      preloadNextImage.src = Lightbox.imageArray[Lightbox.activeImage + 1][0];
    }
    if (Lightbox.activeImage > 0) {
      preloadPrevImage = new Image();
      preloadPrevImage.src = Lightbox.imageArray[Lightbox.activeImage - 1][0];
    }

  },

  end: function(caller) {
    var closeClick = (caller == 'slideshow' ? false : true);
    if (Lightbox.isSlideshow && Lightbox.isPaused && !closeClick) {
      return;
    }
    // To prevent double clicks on navigation links.
    if (Lightbox.inprogress === true && caller != 'forceClose') {
      return;
    }
    Lightbox.disableKeyboardNav();
    $('#lightbox').hide();
    $("#lightbox2-overlay").fadeOut();
    Lightbox.isPaused = true;
    Lightbox.inprogress = false;
    // Replaces calls to showSelectBoxes() and showFlash() in original
    // lightbox2.
    Lightbox.toggleSelectsFlash('visible');
    if (Lightbox.isSlideshow) {
      for (var i = 0; i < Lightbox.slideIdCount; i++) {
        window.clearTimeout(Lightbox.slideIdArray[i]);
      }
      $('#lightshowPause, #lightshowPlay').hide();
    }
    else if (Lightbox.isLightframe) {
      $('#frameContainer').empty().hide();
    }
    else if (Lightbox.isVideo || Lightbox.isModal) {
      if (!Lightbox.auto_modal) {
        $('#modalContainer').hide().html("");
      }
      Lightbox.auto_modal = false;
    }
  },


  // getPageScroll()
  // Returns array with x,y page scroll values.
  // Core code from - quirksmode.com.
  getPageScroll : function() {

    var xScroll, yScroll;

    if (self.pageYOffset || self.pageXOffset) {
      yScroll = self.pageYOffset;
      xScroll = self.pageXOffset;
    }
    else if (document.documentElement && (document.documentElement.scrollTop || document.documentElement.scrollLeft)) {  // Explorer 6 Strict.
      yScroll = document.documentElement.scrollTop;
      xScroll = document.documentElement.scrollLeft;
    }
    else if (document.body) {// All other Explorers.
      yScroll = document.body.scrollTop;
      xScroll = document.body.scrollLeft;
    }

    arrayPageScroll = [xScroll,yScroll];
    return arrayPageScroll;
  },

  // getPageSize()
  // Returns array with page width, height and window width, height.
  // Core code from - quirksmode.com.
  // Edit for Firefox by pHaez.

  getPageSize : function() {

    var xScroll, yScroll;

    if (window.innerHeight && window.scrollMaxY) {
      xScroll = window.innerWidth + window.scrollMaxX;
      yScroll = window.innerHeight + window.scrollMaxY;
    }
    else if (document.body.scrollHeight > document.body.offsetHeight) { // All but Explorer Mac.
      xScroll = document.body.scrollWidth;
      yScroll = document.body.scrollHeight;
    }
    else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari.
      xScroll = document.body.offsetWidth;
      yScroll = document.body.offsetHeight;
    }

    var windowWidth, windowHeight;

    if (self.innerHeight) { // All except Explorer.
      if (document.documentElement.clientWidth) {
        windowWidth = document.documentElement.clientWidth;
      }
      else {
        windowWidth = self.innerWidth;
      }
      windowHeight = self.innerHeight;
    }
    else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode.
      windowWidth = document.documentElement.clientWidth;
      windowHeight = document.documentElement.clientHeight;
    }
    else if (document.body) { // Other Explorers.
      windowWidth = document.body.clientWidth;
      windowHeight = document.body.clientHeight;
    }
    // For small pages with total height less than height of the viewport.
    if (yScroll < windowHeight) {
      pageHeight = windowHeight;
    }
    else {
      pageHeight = yScroll;
    }
    // For small pages with total width less than width of the viewport.
    if (xScroll < windowWidth) {
      pageWidth = xScroll;
    }
    else {
      pageWidth = windowWidth;
    }
    arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight);
    return arrayPageSize;
  },


  // pause(numberMillis)
  pause : function(ms) {
    var date = new Date();
    var curDate = null;
    do { curDate = new Date(); }
    while (curDate - date < ms);
  },


  // toggleSelectsFlash()
  // Hide / unhide select lists and flash objects as they appear above the
  // lightbox in some browsers.
  toggleSelectsFlash: function (state) {
    if (state == 'visible') {
      $("select.lightbox_hidden, embed.lightbox_hidden, object.lightbox_hidden").show();
    }
    else if (state == 'hide') {
      $("select:visible, embed:visible, object:visible").not('#lightboxAutoModal select, #lightboxAutoModal embed, #lightboxAutoModal object').addClass("lightbox_hidden");
      $("select.lightbox_hidden, embed.lightbox_hidden, object.lightbox_hidden").hide();
    }
  },


  // parseRel()
  parseRel: function (link) {
    var parts = [];
    parts["rel"] = parts["title"] = parts["group"] = parts["style"] = parts["flashvars"] = null;
    if (!$(link).attr('rel')) return parts;
    parts["rel"] = $(link).attr('rel').match(/\w+/)[0];

    if ($(link).attr('rel').match(/\[(.*)\]/)) {
      var info = $(link).attr('rel').match(/\[(.*?)\]/)[1].split('|');
      parts["group"] = info[0];
      parts["style"] = info[1];
      if (parts["style"] != undefined && parts["style"].match(/flashvars:\s?(.*?);/)) {
        parts["flashvars"] = parts["style"].match(/flashvars:\s?(.*?);/)[1];
      }
    }
    if ($(link).attr('rel').match(/\[.*\]\[(.*)\]/)) {
      parts["title"] = $(link).attr('rel').match(/\[.*\]\[(.*)\]/)[1];
    }
    return parts;
  },

  // setStyles()
  setStyles: function(item, styles) {
    item.width = Lightbox.iframe_width;
    item.height = Lightbox.iframe_height;
    item.scrolling = "auto";

    if (!styles) return item;
    var stylesArray = styles.split(';');
    for (var i = 0; i< stylesArray.length; i++) {
      if (stylesArray[i].indexOf('width:') >= 0) {
        var w = stylesArray[i].replace('width:', '');
        item.width = jQuery.trim(w);
      }
      else if (stylesArray[i].indexOf('height:') >= 0) {
        var h = stylesArray[i].replace('height:', '');
        item.height = jQuery.trim(h);
      }
      else if (stylesArray[i].indexOf('scrolling:') >= 0) {
        var scrolling = stylesArray[i].replace('scrolling:', '');
        item.scrolling = jQuery.trim(scrolling);
      }
      else if (stylesArray[i].indexOf('overflow:') >= 0) {
        var overflow = stylesArray[i].replace('overflow:', '');
        item.overflow = jQuery.trim(overflow);
      }
    }
    return item;
  },


  // togglePlayPause()
  // Hide the pause / play button as appropriate.  If pausing the slideshow also
  // clear the timers, otherwise move onto the next image.
  togglePlayPause: function(hideId, showId) {
    if (Lightbox.isSlideshow && hideId == "lightshowPause") {
      for (var i = 0; i < Lightbox.slideIdCount; i++) {
        window.clearTimeout(Lightbox.slideIdArray[i]);
      }
    }
    $('#' + hideId).hide();
    $('#' + showId).show();

    if (hideId == "lightshowPlay") {
      Lightbox.isPaused = false;
      if (!Lightbox.loopSlides && Lightbox.activeImage == (Lightbox.total - 1)) {
        Lightbox.end();
      }
      else if (Lightbox.total > 1) {
        Lightbox.changeData(Lightbox.activeImage + 1);
      }
    }
    else {
      Lightbox.isPaused = true;
    }
  },

  triggerLightbox: function (rel_type, rel_group) {
    if (rel_type.length) {
      if (rel_group && rel_group.length) {
        $("a[rel^='" + rel_type +"\[" + rel_group + "\]'], area[rel^='" + rel_type +"\[" + rel_group + "\]']").eq(0).trigger("click");
      }
      else {
        $("a[rel^='" + rel_type +"'], area[rel^='" + rel_type +"']").eq(0).trigger("click");
      }
    }
  },

  detectMacFF2: function() {
    var ua = navigator.userAgent.toLowerCase();
    if (/firefox[\/\s](\d+\.\d+)/.test(ua)) {
      var ffversion = new Number(RegExp.$1);
      if (ffversion < 3 && ua.indexOf('mac') != -1) {
        return true;
      }
    }
    return false;
  },

  checkKey: function(keys, key, code) {
    return (jQuery.inArray(key, keys) != -1 || jQuery.inArray(String(code), keys) != -1);
  },

  filterXSS: function(str, allowed_tags) {
    var output = "";
    $.ajax({
      url: Drupal.settings.basePath + 'system/lightbox2/filter-xss',
      data: {
        'string' : str,
        'allowed_tags' : allowed_tags
      },
      type: "POST",
      async: false,
      dataType:  "json",
      success: function(data) {
        output = data;
      }
    });
    return output;
  }

};

// Initialize the lightbox.
Drupal.behaviors.initLightbox = function (context) {
  $('body:not(.lightbox-processed)', context).addClass('lightbox-processed').each(function() {
    Lightbox.initialize();
    return false; // Break the each loop.
  });

  // Attach lightbox to any links with lightbox rels.
  Lightbox.initList(context);
  $('#lightboxAutoModal', context).triggerHandler('click');
};

;
// $Id: panels.js,v 1.2.4.1 2009/10/05 22:40:35 merlinofchaos Exp $

(function ($) {
  Drupal.Panels = {};

  Drupal.Panels.autoAttach = function() {
    if ($.browser.msie) {
      // If IE, attach a hover event so we can see our admin links.
      $("div.panel-pane").hover(
        function() {
          $('div.panel-hide', this).addClass("panel-hide-hover"); return true;
        },
        function() {
          $('div.panel-hide', this).removeClass("panel-hide-hover"); return true;
        }
      );
      $("div.admin-links").hover(
        function() {
          $(this).addClass("admin-links-hover"); return true;
        },
        function(){
          $(this).removeClass("admin-links-hover"); return true;
        }
      );
    }
  };

  $(Drupal.Panels.autoAttach);
})(jQuery);
;
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.88 (08-JUN-2010)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.2.6 or later
 */
(function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version:	 2.72
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;
// $Id: views_slideshow.js,v 1.1.2.1.2.39 2010/07/01 03:29:08 redndahead Exp $

/**
 *  @file
 *  A simple jQuery SingleFrame Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowSingleFrame = function (context) {
  $('.views_slideshow_singleframe_main:not(.viewsSlideshowSingleFrame-processed)', context).addClass('viewsSlideshowSingleFrame-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowSingleFrame[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
    settings.paused = false;

    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_hover==1 || settings.pager_click_to_page),
      prev:(settings.controls > 0)?'#views_slideshow_singleframe_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_singleframe_next_' + settings.vss_id:null,
      pager:(settings.pager > 0)?'#views_slideshow_singleframe_pager_' + settings.vss_id:null,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder: function(idx, slide) {
        var classes = 'pager-item pager-num-' + (idx+1);
        if (idx == 0) {
          classes += ' first';
        }
        if ($(slide).siblings().length == idx) {
          classes += ' last';
        }

        if (idx % 2) {
          classes += ' odd';
        }
        else {
          classes += ' even';
        }
        
        var theme = 'viewsSlideshowPager' + settings.pager_type;
        return Drupal.theme.prototype[theme] ? Drupal.theme(theme, classes, idx, slide, settings) : '';
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(curr, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.vss_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
      },
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    }
    
    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.vss_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.pager_hover == 1) {
      settings.opts.pagerEvent = 'mouseover';
      settings.opts.pauseOnPagerHover = true;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowSingleFramePause(settings);
      });
    }

    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }
    
    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowSingleFramePause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowSingleFrameIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowSingleFrameResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowSingleFramePause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when the window is resized.
      $(window).resize(function() {
        checkPause(settings);
      });
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_singleframe_image_count_' + settings.vss_id).show();

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_singleframe_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_singleframe_playpause_' + settings.vss_id).click(function(e) {
      	if (settings.paused) {
      	  viewsSlideshowSingleFrameResume(settings);
      	}
      	else {
      	  viewsSlideshowSingleFramePause(settings);
      	}
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowSingleFramePause = function (settings) {
  //make Resume translatable
  var resume = Drupal.t('Resume');

  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_singleframe_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowSingleFrameResume = function (settings) {
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_singleframe_play')
      .removeClass('views_slideshow_play')
      .text('Pause');
  }
  settings.paused = false;
}

Drupal.theme.prototype.viewsSlideshowPagerThumbnails = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '"><img src="' + $(slide).find('img').attr('src') + '" /></a></div>';
}

Drupal.theme.prototype.viewsSlideshowPagerNumbered = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '">' + (idx+1) + '</a></div>';
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (var i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * type = The way to calculate how much is visible.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowSingleFrameIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}

;
// $Id: views_slideshow.js,v 1.1.2.2.2.35 2010/07/01 03:29:08 redndahead Exp $

/**
 * @file
 * A simple jQuery ThumbnailHover Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowThumbnailHover = function (context) {
  $('.views_slideshow_thumbnailhover_main:not(.viewsSlideshowThumbnailHover-processed)', context).addClass('viewsSlideshowThumbnailHover-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowThumbnailHover[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
		settings.paused = false;
		
    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_event=='click')? false : true,
      pager:(settings.pager_event == 'hoverIntent') ? null : '#views_slideshow_breakout_teasers_' + settings.vss_id,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder:(settings.pager_event == 'hoverIntent') ? null : function(idx, slide) { 
        return '#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + idx; 
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(current, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.view_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
        
        var currId = (currId=$(current).attr('id')).substring(currId.lastIndexOf('_')+1)
        var nextId = (nextId=$(next).attr('id')).substring(nextId.lastIndexOf('_')+1)
        $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + currId).removeClass('activeSlide');
        $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + nextId).addClass('activeSlide');
      },
      pagerEvent: (settings.pager_event == 'hoverIntent') ? null : settings.pager_event,
      prev:(settings.controls > 0)?'#views_slideshow_thumbnailhover_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_thumbnailhover_next_' + settings.vss_id:null,
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    };

    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.view_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_thumbnailhover_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_thumbnailhover_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowThumbnailHoverPause(settings);
      });
    }
    
    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }

    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowThumbnailHoverPause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowThumbnailHoverIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowThumbnailHoverResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowThumbnailHoverPause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when window is resized.
      $(window).resize(function() {
        checkPause(settings);
      });
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_thumbnailhover_image_count_' + settings.vss_id).show();
    
    if (settings.pager_event == 'hoverIntent') {
      $('#views_slideshow_thumbnailhover_breakout_teasers_' + settings.vss_id + ' .views_slideshow_thumbnailhover_div_breakout_teaser').each(function(i,obj) {
        $(obj).hoverIntent(
          function() {
            $('.views_slideshow_thumbnailhover_div_breakout_teaser').removeClass('activeSlide');
            var id = $(this).attr('id');
            id = parseInt(id.substring(id.lastIndexOf('_')+1));
            $(settings.targetId).cycle(id);
            $('#views_slideshow_thumbnailhover_div_breakout_teaser_' + settings.vss_id + '_' + id).addClass('activeSlide');
            $(settings.targetId).cycle('stop');
          },
          function() {
            var id = $(this).attr('id');
            settings.opts.startingSlide = parseInt(id.substring(id.lastIndexOf('_')+1));
            $(settings.targetId).cycle(settings.opts);
          }
        );
      });
    }

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_thumbnailhover_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id).click(function(e) {
        if (settings.paused) {
          viewsSlideshowThumbnailHoverResume(settings);
        }
        else {
          viewsSlideshowThumbnailHoverPause(settings);
        }
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowThumbnailHoverPause = function (settings) {
  //make Resume translatable
  var resume = Drupal.t('Resume');

  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_thumbnailhover_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowThumbnailHoverResume = function (settings) {
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_thumbnailhover_playpause_' + settings.vss_id)
      .addClass('views_slideshow_thumbnailhover_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_thumbnailhover_play')
      .removeClass('views_slideshow_play')
      .text('Pause');
  }
  settings.paused = false;
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (var i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowThumbnailHoverIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

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

Drupal.Views = {};

/**
 * jQuery UI tabs, Views integration component
 */
Drupal.behaviors.viewsTabs = function (context) {
  $('#views-tabset:not(.views-processed)').addClass('views-processed').each(function() {
    new Drupal.Views.Tabs($(this), {selectedClass: 'active'});
  });

  $('a.views-remove-link')
    .addClass('views-processed')
    .click(function() {
      var id = $(this).attr('id').replace('views-remove-link-', '');
      $('#views-row-' + id).hide();
      $('#views-removed-' + id).attr('checked', true);
      return false;
    });
}

/**
 * For IE, attach some javascript so that our hovers do what they're supposed
 * to do.
 */
Drupal.behaviors.viewsHoverlinks = function() {
  if ($.browser.msie) {
    // If IE, attach a hover event so we can see our admin links.
    $("div.view:not(.views-hover-processed)").addClass('views-hover-processed').hover(
      function() {
        $('div.views-hide', this).addClass("views-hide-hover"); return true;
      },
      function(){
        $('div.views-hide', this).removeClass("views-hide-hover"); return true;
      }
    );
    $("div.views-admin-links:not(.views-hover-processed)")
      .addClass('views-hover-processed')
      .hover(
        function() {
          $(this).addClass("views-admin-links-hover"); return true;
        },
        function(){
          $(this).removeClass("views-admin-links-hover"); return true;
        }
      );
  }
}

/**
 * Helper function to parse a querystring.
 */
Drupal.Views.parseQueryString = function (query) {
  var args = {};
  var pos = query.indexOf('?');
  if (pos != -1) {
    query = query.substring(pos + 1);
  }
  var pairs = query.split('&');
  for(var i in pairs) {
    var pair = pairs[i].split('=');
    // Ignore the 'q' path argument, if present.
    if (pair[0] != 'q' && pair[1]) {
      args[pair[0]] = decodeURIComponent(pair[1].replace(/\+/g, ' '));
    }
  }
  return args;
};

/**
 * Helper function to return a view's arguments based on a path.
 */
Drupal.Views.parseViewArgs = function (href, viewPath) {
  var returnObj = {};
  var path = Drupal.Views.getPath(href);
  // Ensure we have a correct path.
  if (viewPath && path.substring(0, viewPath.length + 1) == viewPath + '/') {
    var args = decodeURIComponent(path.substring(viewPath.length + 1, path.length));
    returnObj.view_args = args;
    returnObj.view_path = path;
  }
  return returnObj;
};

/**
 * Strip off the protocol plus domain from an href.
 */
Drupal.Views.pathPortion = function (href) {
  // Remove e.g. http://example.com if present.
  var protocol = window.location.protocol;
  if (href.substring(0, protocol.length) == protocol) {
    // 2 is the length of the '//' that normally follows the protocol
    href = href.substring(href.indexOf('/', protocol.length + 2));
  }
  return href;
};

/**
 * Return the Drupal path portion of an href.
 */
Drupal.Views.getPath = function (href) {
  href = Drupal.Views.pathPortion(href);
  href = href.substring(Drupal.settings.basePath.length, href.length);
  // 3 is the length of the '?q=' added to the url without clean urls.
  if (href.substring(0, 3) == '?q=') {
    href = href.substring(3, href.length);
  }
  var chars = ['#', '?', '&'];
  for (i in chars) {
    if (href.indexOf(chars[i]) > -1) {
      href = href.substr(0, href.indexOf(chars[i]));
    }
  }
  return href;
};
;
// $Id: ajax_view.js,v 1.19.2.5 2010/03/25 18:25:28 merlinofchaos Exp $

/**
 * @file ajaxView.js
 *
 * Handles AJAX fetching of views, including filter submission and response.
 */

Drupal.Views.Ajax = Drupal.Views.Ajax || {};

/**
 * An ajax responder that accepts a packet of JSON data and acts appropriately.
 *
 * The following fields control behavior.
 * - 'display': Display the associated data in the view area.
 */
Drupal.Views.Ajax.ajaxViewResponse = function(target, response) {

  if (response.debug) {
    alert(response.debug);
  }

  var $view = $(target);

  // Check the 'display' for data.
  if (response.status && response.display) {
    var $newView = $(response.display);
    $view.replaceWith($newView);
    $view = $newView;
    Drupal.attachBehaviors($view.parent());
  }

  if (response.messages) {
    // Show any messages (but first remove old ones, if there are any).
    $view.find('.views-messages').remove().end().prepend(response.messages);
  }
};

/**
 * Ajax behavior for views.
 */
Drupal.behaviors.ViewsAjaxView = function() {
  if (Drupal.settings && Drupal.settings.views && Drupal.settings.views.ajaxViews) {
    var ajax_path = Drupal.settings.views.ajax_path;
    // If there are multiple views this might've ended up showing up multiple times.
    if (ajax_path.constructor.toString().indexOf("Array") != -1) {
      ajax_path = ajax_path[0];
    }
    $.each(Drupal.settings.views.ajaxViews, function(i, settings) {
      var view = '.view-dom-id-' + settings.view_dom_id;
      if (!$(view).size()) {
        // Backward compatibility: if 'views-view.tpl.php' is old and doesn't
        // contain the 'view-dom-id-#' class, we fall back to the old way of
        // locating the view:
        view = '.view-id-' + settings.view_name + '.view-display-id-' + settings.view_display_id;
      }


      // Process exposed filter forms.
      $('form#views-exposed-form-' + settings.view_name.replace(/_/g, '-') + '-' + settings.view_display_id.replace(/_/g, '-'))
      .filter(':not(.views-processed)')
      .each(function () {
        // remove 'q' from the form; it's there for clean URLs
        // so that it submits to the right place with regular submit
        // but this method is submitting elsewhere.
        $('input[name=q]', this).remove();
        var form = this;
        // ajaxSubmit doesn't accept a data argument, so we have to
        // pass additional fields this way.
        $.each(settings, function(key, setting) {
          $(form).append('<input type="hidden" name="'+ key + '" value="'+ setting +'"/>');
        });
      })
      .addClass('views-processed')
      .submit(function () {
        $('input[type=submit], button', this).after('<span class="views-throbbing">&nbsp</span>');
        var object = this;
        $(this).ajaxSubmit({
          url: ajax_path,
          type: 'GET',
          success: function(response) {
            // Call all callbacks.
            if (response.__callbacks) {
              $.each(response.__callbacks, function(i, callback) {
                eval(callback)(view, response);
              });
              $('.views-throbbing', object).remove();
            }
          },
          error: function(xhr) { Drupal.Views.Ajax.handleErrors(xhr, ajax_path); $('.views-throbbing', object).remove(); },
          dataType: 'json'
        });

        return false;
      });

      $(view).filter(':not(.views-processed)')
        // Don't attach to nested views. Doing so would attach multiple behaviors
        // to a given element.
        .filter(function() {
          // If there is at least one parent with a view class, this view
          // is nested (e.g., an attachment). Bail.
          return !$(this).parents('.view').size();
        })
        .each(function() {
          // Set a reference that will work in subsequent calls.
          var target = this;
          $(this)
            .addClass('views-processed')
            // Process pager, tablesort, and attachment summary links.
            .find('ul.pager > li > a, th.views-field a, .attachment .views-summary a')
            .each(function () {
              var viewData = { 'js': 1 };
              // Construct an object using the settings defaults and then overriding
              // with data specific to the link.
              $.extend(
                viewData,
                Drupal.Views.parseQueryString($(this).attr('href')),
                // Extract argument data from the URL.
                Drupal.Views.parseViewArgs($(this).attr('href'), settings.view_base_path),
                // Settings must be used last to avoid sending url aliases to the server.
                settings
              );
              $(this).click(function () {
                $.extend(viewData, Drupal.Views.parseViewArgs($(this).attr('href'), settings.view_base_path));
                $(this).addClass('views-throbbing');
                $.ajax({
                  url: ajax_path,
                  type: 'GET',
                  data: viewData,
                  success: function(response) {
                    $(this).removeClass('views-throbbing');
                    // Scroll to the top of the view. This will allow users
                    // to browse newly loaded content after e.g. clicking a pager
                    // link.
                    var offset = $(target).offset();
                    // We can't guarantee that the scrollable object should be
                    // the body, as the view could be embedded in something
                    // more complex such as a modal popup. Recurse up the DOM
                    // and scroll the first element that has a non-zero top.
                    var scrollTarget = target;
                    while ($(scrollTarget).scrollTop() == 0 && $(scrollTarget).parent()) {
                      scrollTarget = $(scrollTarget).parent()
                    }
                    // Only scroll upward
                    if (offset.top - 10 < $(scrollTarget).scrollTop()) {
                      $(scrollTarget).animate({scrollTop: (offset.top - 10)}, 500);
                    }
                    // Call all callbacks.
                    if (response.__callbacks) {
                      $.each(response.__callbacks, function(i, callback) {
                        eval(callback)(target, response);
                      });
                    }
                  },
                  error: function(xhr) { $(this).removeClass('views-throbbing'); Drupal.Views.Ajax.handleErrors(xhr, ajax_path); },
                  dataType: 'json'
                });

                return false;
              });
            }); // .each function () {
      }); // $view.filter().each
    }); // .each Drupal.settings.views.ajaxViews
  } // if
};
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1998 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":220,"face":{"font-family":"Futura Hv BT","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 2 2 2 4 2 2 4","ascent":"274","descent":"-86","x-height":"7","bbox":"-5 -278 355 85","underline-thickness":"33.3984","underline-position":"-22.5","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":110},"!":{"d":"35,-80r0,-183r50,0r0,183r-50,0xm60,7v-15,0,-30,-15,-30,-30v0,-16,14,-30,30,-30v16,0,30,13,30,30v0,16,-14,30,-30,30","w":120},"\"":{"d":"71,-253r34,0r0,98r-34,0r0,-98xm14,-253r34,0r0,98r-34,0r0,-98","w":119},"#":{"d":"125,-149r-16,43r44,0r15,-43r-43,0xm125,-257r38,0r-25,73r42,0r26,-73r39,0r-26,73r50,0r-13,35r-49,0r-15,42r51,0r-13,36r-51,0r-26,73r-39,0r26,-73r-42,0r-27,73r-38,0r25,-73r-50,0r13,-36r50,0r15,-42r-53,0r13,-35r53,0","w":276},"$":{"d":"193,-76v0,44,-34,72,-78,75r0,28r-17,0r0,-28v-38,-2,-64,-12,-78,-37r30,-33v8,17,25,29,48,29r0,-69v-43,-20,-75,-31,-75,-77v0,-42,39,-67,81,-69r0,-21r16,0r0,21v32,0,49,13,64,32r-32,29v-8,-13,-16,-18,-32,-21r0,64v40,17,73,33,73,77xm104,-217v-21,2,-36,26,-21,45v5,5,12,9,21,13r0,-58xm115,-44v20,-3,35,-29,20,-47v-4,-4,-11,-8,-20,-12r0,59"},"%":{"d":"69,-260v40,1,61,29,61,71v0,41,-22,71,-61,71v-41,0,-62,-28,-62,-71v0,-42,22,-72,62,-71xm69,-235v-34,1,-33,91,0,92v34,-1,33,-91,0,-92xm90,7r-27,0r151,-267r26,0xm235,-135v41,0,62,27,62,70v0,42,-22,72,-62,72v-40,0,-62,-31,-62,-72v0,-41,22,-70,62,-70xm236,-110v-34,1,-34,89,-1,92v35,0,35,-91,1,-92","w":304},"&":{"d":"113,-225v-23,-1,-32,29,-18,45v7,8,12,21,22,10v25,-8,27,-54,-4,-55xm95,-114v-34,13,-43,78,6,78v20,0,33,-8,43,-20xm176,-89v15,-12,26,-26,38,-39r28,30r-39,41r47,57r-58,0r-22,-25v-39,52,-159,36,-153,-43v3,-39,25,-56,54,-75v-16,-17,-25,-30,-26,-57v-1,-37,30,-57,69,-57v37,0,66,19,66,54v0,34,-21,45,-47,64","w":257},"'":{"d":"14,-253r34,0r0,98r-34,0r0,-98","w":61},"(":{"d":"70,82v-54,-88,-54,-261,0,-348r40,8v-48,85,-50,248,0,331","w":120},")":{"d":"11,73v50,-83,48,-246,0,-331r39,-8v55,86,56,261,0,348","w":120},"*":{"d":"38,-147r-15,-24r41,-21r-41,-21r15,-24r37,26r-3,-46r28,0r-2,45r36,-25r14,24r-39,21r38,21r-13,24r-36,-26r2,44r-28,0r3,-43","w":171},"+":{"d":"132,-215r36,0r0,90r87,0r0,35r-87,0r0,90r-36,0r0,-90r-87,0r0,-35r87,0r0,-90","w":299},",":{"d":"11,58r34,-110r54,0r-54,110r-34,0","w":110},"-":{"d":"26,-64r0,-44r98,0r0,44r-98,0","w":150,"k":{"x":6,"s":-13,"q":-7,"o":-7,"g":-7,"e":-7,"d":-7,"c":-7,"Y":28,"X":13,"W":20,"V":21,"T":33,"S":-7,"Q":-13,"O":-13,"J":-20,"G":-13,"C":-7,"A":6}},".":{"d":"55,5v-15,0,-30,-15,-30,-30v0,-15,15,-30,30,-30v15,0,30,15,30,30v0,15,-15,30,-30,30","w":110},"\/":{"d":"0,33r126,-296r37,0r-126,296r-37,0","w":163},"0":{"d":"111,-260v66,0,94,58,94,133v0,74,-27,134,-94,134v-67,0,-96,-59,-96,-134v0,-74,29,-133,96,-133xm111,-213v-36,0,-42,42,-42,87v0,45,7,85,41,85v35,0,42,-42,42,-86v0,-44,-7,-86,-41,-86"},"1":{"d":"90,0r0,-212r-52,0r22,-43r82,0r0,255r-52,0"},"2":{"d":"105,-260v51,-1,86,24,87,71v6,29,-53,109,-87,146r87,0r0,43r-178,0r91,-120v18,-26,32,-35,34,-64v1,-20,-13,-32,-34,-32v-22,0,-33,18,-32,41r-52,0v-2,-56,30,-85,84,-85"},"3":{"d":"106,7v-49,0,-88,-27,-87,-75v16,1,36,-2,50,1v0,18,18,31,38,31v25,-1,41,-12,41,-37v0,-29,-19,-39,-50,-38r0,-45v27,1,44,-6,44,-32v0,-18,-13,-30,-31,-30v-20,0,-33,9,-34,26r-49,0v2,-45,36,-68,84,-68v47,-1,83,23,82,68v0,30,-18,53,-44,57v30,5,50,31,50,66v0,50,-41,76,-94,76"},"4":{"d":"132,0r0,-49r-124,0r0,-24r124,-187r47,0r0,174r27,0r0,37r-27,0r0,49r-47,0xm133,-86r2,-121v-19,46,-50,81,-74,121r72,0"},"5":{"d":"195,-83v0,87,-114,113,-179,69r11,-42v32,31,113,31,115,-26v2,-51,-75,-57,-104,-31r-12,-8r32,-134r133,0r0,43r-99,0r-13,53v57,-22,116,16,116,76"},"6":{"d":"109,-121v-22,0,-38,19,-38,42v0,25,16,41,40,41v23,0,38,-18,38,-41v1,-27,-14,-42,-40,-42xm108,7v-71,0,-105,-71,-77,-139v16,-39,50,-86,73,-123r62,0r-74,101v54,-24,109,16,109,73v0,52,-39,88,-93,88"},"7":{"d":"35,0r103,-212r-116,0r0,-43r184,0r0,16r-116,239r-55,0"},"8":{"d":"110,-260v79,-12,112,102,43,124v28,7,48,34,48,67v0,50,-37,76,-91,76v-53,0,-92,-26,-92,-75v0,-35,19,-60,48,-68v-72,-27,-33,-134,44,-124xm142,-188v0,-19,-13,-30,-32,-30v-19,0,-33,10,-33,29v0,19,13,30,32,30v19,0,33,-10,33,-29xm70,-74v-1,24,17,38,40,38v24,0,39,-15,39,-38v0,-23,-15,-38,-39,-38v-24,-1,-40,15,-40,38"},"9":{"d":"112,-133v23,1,38,-18,38,-41v0,-26,-15,-41,-39,-41v-24,-1,-39,18,-39,41v0,25,15,41,40,41xm114,-260v72,0,105,72,76,139v-17,40,-49,84,-73,121r-62,0r74,-100v-52,27,-108,-15,-108,-72v0,-52,39,-88,93,-88"},":":{"d":"60,-110v-15,0,-30,-15,-30,-30v0,-15,15,-30,30,-30v16,0,30,14,30,30v0,16,-14,30,-30,30xm60,5v-15,0,-30,-15,-30,-30v0,-15,15,-30,30,-30v16,0,30,14,30,30v0,16,-14,30,-30,30","w":120},";":{"d":"77,-110v-16,0,-31,-14,-31,-30v0,-16,15,-30,31,-30v15,0,30,15,30,30v0,15,-15,30,-30,30xm14,58r33,-110r55,0r-55,110r-33,0","w":120},"<":{"d":"253,-210r0,39r-156,64r156,64r0,38r-207,-85r0,-35","w":299},"=":{"d":"45,-87r210,0r0,35r-210,0r0,-35xm45,-163r210,0r0,35r-210,0r0,-35","w":299},">":{"d":"46,-210r207,85r0,35r-207,85r0,-38r158,-64r-158,-64r0,-39","w":299},"?":{"d":"100,7v-15,0,-30,-15,-30,-30v0,-16,14,-30,30,-30v16,0,30,14,30,30v0,15,-15,30,-30,30xm181,-188v0,39,-23,60,-57,67r0,46r-48,0r0,-75v32,3,53,-10,53,-39v1,-21,-9,-35,-28,-35v-22,-1,-31,15,-29,39r-49,0v-3,-50,34,-78,81,-78v47,0,77,29,77,75","w":208},"@":{"d":"243,-19v-23,1,-37,-8,-38,-29v-22,46,-118,36,-109,-31v-8,-69,82,-134,127,-76r9,-17r31,0r-27,112v0,9,7,12,17,13v39,-8,58,-44,59,-88v1,-59,-55,-98,-117,-97v-90,3,-147,54,-147,140v0,73,57,120,134,119v43,-1,78,-15,106,-34r14,21v-32,23,-69,40,-120,40v-98,-2,-166,-49,-166,-145v0,-107,72,-169,180,-169v86,0,149,42,149,126v0,64,-37,112,-102,115xm134,-78v0,34,34,41,54,22v16,-15,19,-43,26,-67v-4,-17,-11,-30,-31,-29v-29,0,-49,40,-49,74","w":360},"A":{"d":"162,-98v-12,-40,-28,-74,-36,-118v-7,46,-23,78,-35,118r71,0xm-2,0r98,-257r63,0r99,257r-62,0r-21,-55r-100,0r-18,55r-59,0","w":256,"k":{"w":6,"v":6,"Y":20,"W":6,"V":6,"U":6,"T":20,"Q":6,"O":6,"G":6,"C":6,";":-7,":":-7,"-":8}},"B":{"d":"148,-78v0,-31,-30,-36,-64,-34r0,69v35,2,64,-2,64,-35xm142,-185v1,-30,-26,-31,-58,-30r0,60v32,1,58,-1,58,-30xm202,-73v0,79,-84,74,-173,73r0,-257v81,0,164,-8,164,67v0,34,-22,49,-54,55v37,5,63,23,63,62","w":214,"k":{"Y":6,"V":6,"-":-10}},"C":{"d":"18,-128v0,-109,123,-166,220,-118r-2,56v-50,-55,-162,-28,-162,62v0,53,33,88,85,88v33,-1,57,-13,77,-30r-1,56v-89,56,-217,-5,-217,-114","w":258,"k":{";":-7,":":-7,"-":-8}},"D":{"d":"197,-128v0,-69,-40,-88,-113,-83r0,165v72,4,113,-13,113,-82xm254,-128v3,118,-95,136,-225,128r0,-257r70,0v102,-4,153,39,155,129","w":271,"k":{"Y":13,"W":6,"V":6,"A":6,";":-7,":":-7,".":15,"-":-11,",":15}},"E":{"d":"29,0r0,-257r151,0r0,46r-96,0r0,53r96,0r0,47r-96,0r0,64r96,0r0,47r-151,0","w":205,"k":{";":-7,":":-7,".":-7,"-":-7,",":-7}},"F":{"d":"29,0r0,-257r151,0r0,46r-96,0r0,53r96,0r0,47r-96,0r0,111r-55,0","w":194,"k":{"r":6,"A":6,";":15,":":15,".":58,",":58}},"G":{"d":"158,-41v33,0,61,-16,60,-49r-61,0r0,-46r117,0v5,83,-43,142,-118,143v-78,1,-138,-57,-138,-135v0,-126,174,-183,242,-83r-37,28v-40,-62,-148,-29,-148,55v0,50,33,88,83,87","w":289,"k":{"Y":6,"W":6,"T":6,";":-7,":":-7,".":10,"-":-8,",":10}},"H":{"d":"29,0r0,-257r55,0r0,103r111,0r0,-103r55,0r0,257r-55,0r0,-108r-111,0r0,108r-55,0","w":278,"k":{".":6,",":6}},"I":{"d":"30,0r0,-257r55,0r0,257r-55,0","w":114},"J":{"d":"59,-41v26,1,19,-36,19,-65r0,-151r55,0r0,169v15,82,-57,117,-112,81v-12,-8,-18,-22,-21,-39r40,-19v2,14,5,23,19,24","w":159,"k":{";":11,":":11,".":18,"-":6,",":18}},"K":{"d":"29,0r0,-257r55,0r0,116r86,-116r63,0r-92,117r96,140r-67,0r-86,-135r0,135r-55,0","w":233,"k":{"y":13,"u":6,"o":6,"e":6,"a":6,"Y":13,"W":6,"U":6,"T":13,"O":13,"C":13,"A":6,";":-7,":":-7,".":-7,"-":18,",":-7}},"L":{"d":"29,0r0,-257r55,0r0,210r88,0r0,47r-143,0","w":177,"k":{"y":13,"Y":26,"W":20,"V":20,"U":6,"T":20,"O":13,";":-7,":":-7,".":-7,"-":6,",":-7}},"M":{"d":"7,0r39,-257r57,0r53,165v1,6,3,13,4,21v11,-70,39,-123,57,-186r57,0r39,257r-52,0r-23,-204v-15,75,-43,134,-63,204r-31,0r-57,-177r-6,-30v-2,69,-16,139,-22,207r-52,0","w":319},"N":{"d":"78,-198v7,58,1,133,3,198r-52,0r0,-257r57,0r114,149v8,11,17,29,23,45v-8,-57,-2,-130,-4,-194r53,0r0,257r-54,0r-128,-170v-4,-8,-8,-17,-12,-28","w":300,"k":{";":10,":":10,".":10,",":10}},"O":{"d":"155,-263v81,0,137,53,137,135v0,82,-56,135,-137,135v-81,0,-137,-52,-137,-135v0,-82,56,-135,137,-135xm74,-128v0,48,34,86,81,86v46,0,81,-38,81,-86v0,-46,-34,-87,-81,-87v-47,0,-81,41,-81,87","w":309,"k":{"Y":13,"X":6,"V":6,"T":6,"A":6,";":-7,":":-7,".":15,"-":-10,",":15}},"P":{"d":"135,-180v0,-30,-19,-38,-51,-37r0,76v33,1,51,-7,51,-39xm191,-178v-2,57,-44,84,-107,80r0,98r-55,0r0,-257v84,-2,165,-4,162,79","w":200,"k":{"r":6,"o":13,"e":13,"a":13,"A":18,";":10,":":10,".":79,"-":15,",":79}},"Q":{"d":"74,-128v0,54,44,97,101,83r-37,-42r54,0r19,22v49,-46,19,-150,-56,-150v-47,0,-81,41,-81,87xm293,-128v0,46,-21,78,-49,103r47,55r-55,0r-28,-33v-100,31,-191,-29,-191,-125v0,-81,55,-135,138,-135v82,0,138,54,138,135","w":309,"k":{";":-7,":":-7,".":11,"-":-10,",":11}},"R":{"d":"201,-184v0,35,-25,64,-57,67r71,117r-63,0r-68,-120r0,120r-55,0r0,-257v82,-1,172,-9,172,73xm147,-180v0,-34,-25,-35,-63,-35r0,67v38,0,63,1,63,-32","w":218,"k":{"u":6,"o":6,"e":6,"a":6,"Y":6,".":-7,"-":10,",":-7}},"S":{"d":"170,-115v37,57,-5,122,-76,122v-40,0,-68,-15,-82,-40r31,-34v8,36,89,44,89,-3v-10,-47,-116,-51,-116,-121v0,-74,124,-98,161,-39r-33,31v-10,-29,-75,-31,-75,7v0,34,83,50,101,77","w":201,"k":{";":-7,":":-7,".":6,"-":-11,",":6}},"T":{"d":"125,-211r0,211r-55,0r0,-211r-63,0r0,-46r181,0r0,46r-63,0","w":195,"k":{"y":36,"w":36,"u":36,"s":36,"r":29,"o":36,"e":36,"c":36,"a":36,"O":6,"C":6,"A":20,";":29,":":29,".":46,"-":33,",":46}},"U":{"d":"139,-42v39,0,57,-24,56,-64r0,-151r55,0r0,160v0,72,-38,104,-111,104v-74,0,-110,-32,-111,-104r0,-160r54,0r0,151v1,40,17,64,57,64","w":278,"k":{"A":6,";":11,":":11,".":21,"-":10,",":21}},"V":{"d":"94,0r-95,-257r61,0r54,178v2,9,5,20,7,31v13,-77,40,-140,61,-209r60,0r-96,257r-52,0","w":240,"k":{"y":10,"u":20,"o":20,"e":20,"a":20,"O":6,"A":6,";":18,":":18,".":53,"-":29,",":53}},"W":{"d":"208,-257r45,168v2,10,4,21,6,34v3,-77,29,-134,42,-202r54,0r-67,257r-53,0v-17,-71,-43,-133,-54,-211v-10,78,-37,140,-54,211r-53,0r-67,-257r55,0v13,67,33,127,41,200v11,-65,35,-137,51,-200r54,0","w":361,"k":{"y":6,"u":13,"r":13,"o":20,"e":20,"a":20,"A":6,";":21,":":21,".":44,"-":21,",":44}},"X":{"d":"60,-257r48,91v14,-32,32,-61,48,-91r58,0r-77,122r80,135r-60,0v-16,-34,-36,-63,-49,-100v-13,38,-33,66,-50,100r-59,0r79,-135r-77,-122r59,0","w":216,"k":{"O":6,"C":6,";":6,":":6,".":-7,"-":18,",":-7}},"Y":{"d":"82,0r0,-117r-87,-140r64,0v16,34,37,64,50,102v12,-38,33,-68,50,-102r65,0r-87,140r0,117r-55,0","w":218,"k":{"u":38,"o":40,"e":40,"a":40,"O":13,"C":13,"A":20,";":38,":":38,".":48,"-":43,",":48}},"Z":{"d":"217,0r-216,0r133,-213r-119,0r0,-44r208,0r-134,213r128,0r0,44","w":228,"k":{";":-7,":":-7,".":-7,"-":6,",":-7}},"[":{"d":"32,-263r79,0r0,40r-35,0r0,261r35,0r0,41r-79,0r0,-342","w":120},"\\":{"d":"126,33r-126,-296r37,0r126,296r-37,0","w":163},"]":{"d":"89,-263r0,342r-79,0r0,-41r35,0r0,-261r-35,0r0,-40r79,0","w":120},"^":{"d":"158,-257r44,0r85,99r-42,0r-65,-65r-66,65r-41,0","w":360},"_":{"d":"0,49r180,0r0,36r-180,0r0,-36","w":180},"`":{"d":"38,-263r46,0r34,65r-24,0","w":180},"a":{"d":"108,-37v28,0,44,-20,44,-49v1,-29,-17,-51,-44,-51v-28,0,-43,21,-43,51v0,30,15,49,43,49xm92,-178v29,0,46,15,58,34r0,-28r47,0r0,172r-48,0r0,-25v-12,21,-29,31,-59,32v-48,0,-76,-42,-76,-93v0,-55,27,-92,78,-92","w":219},"b":{"d":"113,-137v-27,0,-44,23,-43,51v0,29,16,49,44,49v28,0,43,-19,43,-49v0,-31,-16,-51,-44,-51xm132,7v-30,0,-47,-12,-59,-32r0,25r-49,0r0,-272r48,0r-2,129v14,-20,30,-35,60,-35v52,0,78,38,78,92v0,51,-28,93,-76,93","w":221,"k":{"-":-7}},"c":{"d":"65,-87v-6,49,62,62,86,30r1,52v-61,34,-139,-9,-139,-81v0,-71,78,-114,139,-81r-1,50v-23,-30,-92,-18,-86,30","w":164},"d":{"d":"108,-37v28,0,44,-20,44,-49v1,-29,-17,-51,-44,-51v-28,1,-43,20,-43,50v0,30,14,50,43,50xm14,-86v0,-87,97,-125,138,-57v-5,-38,-1,-87,-2,-129r47,0r0,272r-48,0r0,-25v-12,21,-29,31,-59,32v-48,0,-76,-42,-76,-93","w":221},"e":{"d":"143,-104v1,-31,-42,-42,-65,-25v-7,6,-11,14,-13,25r78,0xm63,-74v0,43,68,48,83,16r40,20v-17,28,-41,44,-82,45v-55,1,-90,-37,-90,-92v0,-54,38,-93,91,-93v59,0,96,42,88,104r-130,0","w":206,"k":{"x":6,"-":-7}},"f":{"d":"123,-233v-21,-10,-42,-3,-42,27r0,34r32,0r0,39r-32,0r0,133r-50,0r0,-133r-23,0r0,-39r23,0v-3,-62,4,-109,68,-104v9,0,15,3,24,4r0,39","w":119,"k":{".":6,",":6}},"g":{"d":"14,-87v0,-87,101,-122,136,-57r0,-28r47,0r0,169v15,91,-93,94,-150,68v-16,-7,-23,-23,-24,-41r55,0v3,15,14,20,33,20v38,1,39,-31,38,-70v-13,20,-28,30,-57,31v-50,1,-78,-40,-78,-92xm108,-38v28,0,44,-20,44,-48v1,-29,-16,-50,-44,-50v-29,0,-43,21,-43,50v0,29,15,48,43,48","w":221,"k":{".":6,",":6}},"h":{"d":"117,-137v-59,0,-38,80,-42,137r-51,0r0,-272r49,0r-2,128v33,-52,129,-47,129,43r0,101r-51,0v-7,-49,21,-137,-32,-137","w":222},"i":{"d":"51,-214v-15,0,-29,-14,-29,-29v0,-15,13,-29,29,-29v16,0,30,14,30,29v0,15,-15,29,-30,29xm26,0r0,-172r50,0r0,172r-50,0","w":102},"j":{"d":"51,-214v-15,0,-29,-14,-29,-29v0,-15,13,-29,29,-29v16,0,30,14,30,29v0,15,-15,29,-30,29xm26,78r0,-250r50,0r0,250r-50,0","w":102},"k":{"d":"24,-272r51,0r0,176r64,-76r60,0r-70,76r76,96r-61,0r-69,-91r0,91r-51,0r0,-272","w":203,"k":{"-":15}},"l":{"d":"26,0r0,-272r50,0r0,272r-50,0","w":102},"m":{"d":"112,-137v-55,0,-34,84,-38,137r-50,0r0,-172r50,0r0,27v18,-40,100,-46,112,2v14,-20,31,-34,60,-35v80,-4,54,103,58,178r-50,0v-6,-48,20,-137,-29,-137v-54,0,-33,84,-37,137r-50,0v-6,-47,19,-137,-26,-137","w":327},"n":{"d":"117,-137v-59,0,-38,80,-42,137r-51,0r0,-172r49,0r0,27v32,-51,127,-46,127,44r0,101r-51,0v-7,-49,21,-137,-32,-137","w":222},"o":{"d":"110,-40v28,0,44,-19,45,-46v0,-28,-17,-46,-45,-46v-28,0,-45,18,-45,46v0,28,17,46,45,46xm110,-178v54,0,96,38,96,92v0,52,-42,93,-96,93v-54,0,-97,-41,-97,-93v0,-51,43,-92,97,-92","w":219,"k":{"x":6,"-":-7}},"p":{"d":"113,-137v-27,0,-44,23,-43,51v0,29,16,49,44,49v28,0,43,-19,43,-49v0,-31,-16,-51,-44,-51xm208,-86v0,81,-92,128,-135,61v3,32,2,68,2,103r-51,0r0,-250r48,0r0,28v12,-19,29,-34,58,-34v51,0,78,38,78,92","w":221,"k":{"-":-7}},"q":{"d":"108,-37v28,0,44,-20,44,-49v1,-29,-17,-51,-44,-51v-28,0,-43,21,-43,51v0,30,15,49,43,49xm92,-178v29,0,46,15,58,34r0,-28r47,0r0,250r-50,0r2,-103v-12,21,-29,31,-59,32v-48,0,-76,-42,-76,-93v0,-55,27,-92,78,-92","w":221},"r":{"d":"141,-122v-34,-14,-66,1,-66,46r0,76r-51,0r0,-172r50,0r-1,44v9,-36,31,-56,75,-48","w":146,"k":{".":36,",":36}},"s":{"d":"59,-128v9,31,101,25,93,79v4,68,-125,74,-144,19r38,-20v0,26,55,31,58,5v-11,-32,-91,-27,-91,-77v0,-66,117,-76,137,-21r-37,18v-2,-24,-51,-28,-54,-3","w":164,"k":{"-":-7}},"t":{"d":"31,0r0,-133r-24,0r0,-39r24,0r0,-58r50,0r0,58r24,0r0,39r-24,0r0,133r-50,0","w":111,"k":{"-":8}},"u":{"d":"112,7v-61,0,-88,-28,-88,-89r0,-90r49,0v5,51,-21,133,38,133v59,0,32,-82,38,-133r50,0r0,90v0,61,-27,89,-87,89","w":222},"v":{"d":"67,0r-70,-172r58,0v12,43,29,81,37,128v9,-48,26,-85,39,-128r57,0r-71,172r-50,0","w":185,"k":{".":28,"-":-13,",":28}},"w":{"d":"174,-172v11,44,25,76,31,126v10,-43,25,-84,37,-126r54,0r-59,172r-54,0r-36,-130v-10,46,-24,86,-36,130r-53,0r-60,-172r55,0r36,125v7,-45,21,-83,31,-125r54,0","w":294,"k":{".":26,"-":-13,",":26}},"x":{"d":"56,0r-59,0r61,-88r-58,-84r63,0v10,19,21,36,27,58v7,-21,20,-39,30,-58r59,0r-59,83r62,89r-62,0v-11,-20,-24,-39,-31,-62v-6,25,-22,41,-33,62","w":179,"k":{"o":6,"e":6,"c":6}},"y":{"d":"67,-13r-69,-159r57,0v12,40,32,71,38,117v10,-41,24,-79,37,-117r58,0r-103,250r-55,0","w":185,"k":{".":31,"-":6,",":31}},"z":{"d":"165,0r-165,0r91,-133r-80,0r0,-39r156,0r-90,133r88,0r0,39","w":173},"{":{"d":"74,-200v-4,-57,29,-60,81,-60r0,37v-78,-16,1,126,-75,130v43,3,37,48,37,94v0,31,8,36,38,35r0,37v-52,1,-81,-3,-81,-60v0,-46,8,-95,-46,-88r0,-37v50,10,49,-40,46,-88","w":180},"|":{"d":"72,-275r36,0r0,360r-36,0r0,-360","w":180},"}":{"d":"100,-93v-76,-5,8,-142,-75,-130r0,-37v52,-1,84,4,81,60v-2,46,-6,99,47,88r0,37v-53,-7,-50,40,-47,88v3,58,-29,61,-81,60r0,-37v79,17,0,-125,75,-129","w":180},"~":{"d":"150,-127v46,19,86,14,119,-14r0,39v-20,13,-39,23,-67,24v-34,0,-78,-26,-103,-23v-28,3,-47,12,-68,28r0,-39v34,-23,71,-34,119,-15","w":299},"\u00a0":{"w":110}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1998 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":214,"face":{"font-family":"Futura Hv BT","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 7 2 2 2 4 9 2 4","ascent":"274","descent":"-86","x-height":"7","bbox":"-37 -289 358 90","underline-thickness":"33.3984","underline-position":"-22.5","slope":"-7.5","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":106},"!":{"d":"26,-79r25,-184r50,0r-24,184r-51,0xm44,7v-15,0,-30,-15,-30,-30v0,-16,14,-30,30,-30v17,0,31,14,31,30v0,16,-15,30,-31,30","w":115},"\"":{"d":"71,-253r34,0r0,98r-34,0r0,-98xm14,-253r34,0r0,98r-34,0r0,-98","w":119},"#":{"d":"125,-149r-16,43r44,0r15,-43r-43,0xm125,-257r38,0r-25,73r42,0r26,-73r39,0r-26,73r50,0r-13,35r-49,0r-15,42r51,0r-13,36r-51,0r-26,73r-39,0r26,-73r-42,0r-27,73r-38,0r25,-73r-50,0r13,-36r50,0r15,-42r-53,0r13,-35r53,0","w":276},"$":{"d":"118,-153v57,16,82,90,38,135v-15,14,-34,22,-58,23r-6,39r-17,0r6,-38v-32,-3,-51,-18,-69,-39r29,-36v11,17,23,30,46,31r9,-71v-53,-16,-80,-83,-37,-126v14,-14,33,-22,56,-24r4,-30r17,0r-4,31v26,3,46,13,58,31r-28,34v-8,-13,-17,-22,-35,-24xm103,-40v29,-2,33,-49,9,-61xm110,-215v-26,3,-31,43,-7,53"},"%":{"d":"92,-210v0,-16,-3,-25,-16,-26v-26,-1,-44,78,-11,86v18,-3,28,-34,27,-60xm13,-181v-1,-42,25,-80,64,-80v35,0,50,22,50,58v1,41,-25,79,-65,78v-33,0,-49,-22,-49,-56xm233,-78v0,-16,-4,-25,-17,-25v-17,0,-27,32,-27,55v0,18,3,30,17,30v19,0,27,-35,27,-60xm203,7v-33,0,-50,-22,-50,-56v0,-42,24,-79,64,-79v36,0,50,22,51,58v0,40,-26,77,-65,77xm54,7r145,-267r26,0r-144,267r-27,0","w":282},"&":{"d":"123,-231v-31,1,-27,40,-11,59v17,-10,30,-18,32,-37v1,-12,-9,-22,-21,-22xm63,-71v-2,39,52,38,71,13r-38,-56v-19,12,-32,21,-33,43xm231,-94r-38,40r39,54r-57,0r-17,-24v-36,54,-152,34,-146,-43v3,-43,28,-64,62,-83v-11,-19,-20,-32,-20,-56v-1,-35,30,-57,66,-57v36,0,69,20,67,54v-2,38,-24,50,-54,71r34,50v16,-15,24,-24,36,-38","w":254},"'":{"d":"14,-253r34,0r0,98r-34,0r0,-98","w":61},"(":{"d":"122,-255v-67,71,-94,230,-42,332r-30,13v-63,-114,-26,-291,48,-364","w":120},")":{"d":"-12,71v68,-70,96,-229,43,-332r30,-13v37,70,43,178,12,261v-14,37,-33,71,-60,103","w":120},"*":{"d":"38,-155r-11,-25r42,-15r-37,-25r17,-22r32,30r4,-45r27,3r-8,44r38,-21r10,26r-40,16r35,23r-16,22r-32,-29r-2,43r-28,-4r8,-41","w":162},"+":{"d":"132,-215r36,0r0,90r87,0r0,35r-87,0r0,90r-36,0r0,-90r-87,0r0,-35r87,0r0,-90","w":299},",":{"d":"4,56r-37,0r62,-108r54,0","w":106},"-":{"d":"16,-64r6,-44r100,0r-5,44r-101,0","w":150,"k":{"x":6,"s":-13,"q":-7,"o":-7,"g":-7,"e":-7,"d":-7,"c":-7,"Y":28,"X":13,"W":20,"V":21,"T":33,"S":-7,"Q":-13,"O":-13,"J":-20,"G":-13,"C":-7,"A":6}},".":{"d":"40,5v-16,0,-31,-14,-31,-30v0,-16,15,-31,31,-31v16,0,30,15,30,31v0,15,-15,30,-30,30","w":106},"\/":{"d":"0,33r137,-296r36,0r-137,296r-36,0","w":173},"0":{"d":"97,-39v50,0,60,-108,44,-161v-5,-9,-14,-14,-25,-14v-40,0,-50,67,-50,121v0,31,5,54,31,54xm119,-260v59,0,82,46,82,109v0,81,-35,158,-107,158v-58,0,-81,-47,-81,-110v0,-81,36,-157,106,-157"},"1":{"d":"72,0r28,-212r-44,0r6,-43r94,0r-33,255r-51,0"},"2":{"d":"201,-190v0,74,-48,88,-112,146r94,0r-5,44r-186,0r1,-7r112,-108v25,-25,45,-38,47,-72v2,-22,-15,-34,-37,-34v-26,0,-43,18,-43,45r-50,0v2,-53,37,-85,94,-84v50,0,85,23,85,70"},"3":{"d":"140,-131v88,30,38,138,-46,138v-52,0,-81,-28,-83,-77r49,0v-1,21,13,35,34,35v23,0,41,-18,41,-40v-1,-26,-21,-35,-50,-36r5,-44v28,4,53,-9,53,-35v1,-19,-13,-29,-32,-29v-18,0,-31,12,-34,29r-46,0v-1,-86,163,-95,163,-7v0,34,-23,58,-54,66"},"4":{"d":"108,0r7,-49r-105,0r5,-41r132,-165r44,0r-22,167r28,0r-6,39r-27,0r-7,49r-49,0xm121,-88r16,-105r-79,105r63,0"},"5":{"d":"189,-89v4,93,-139,130,-188,56r34,-30v21,44,103,29,103,-25v0,-55,-70,-57,-100,-29r-9,-8r39,-130r128,0r-6,42r-90,0r-13,43v59,-8,100,28,102,81"},"6":{"d":"94,7v-69,0,-100,-70,-67,-130v20,-37,70,-95,100,-132r57,0r-87,100v55,-11,95,22,95,73v0,51,-45,89,-98,89xm142,-80v0,-22,-15,-36,-39,-36v-24,0,-41,20,-41,43v-1,21,15,36,36,36v26,0,44,-18,44,-43"},"7":{"d":"19,-12r116,-199r-102,0r6,-44r169,0r-2,20r-141,245"},"8":{"d":"103,-114v-23,0,-39,19,-39,43v0,21,14,36,35,36v24,0,40,-19,40,-44v0,-22,-16,-34,-36,-35xm118,-220v-21,-1,-37,15,-36,36v0,18,12,31,31,31v21,0,36,-15,36,-36v0,-18,-14,-31,-31,-31xm15,-67v1,-39,22,-61,55,-72v-19,-10,-32,-27,-33,-53v0,-41,37,-68,81,-68v44,0,78,20,77,63v-1,35,-20,51,-48,62v81,31,33,142,-50,142v-49,0,-83,-27,-82,-74"},"9":{"d":"71,-173v0,22,15,38,38,37v23,0,42,-20,42,-44v0,-21,-16,-36,-37,-36v-25,0,-43,19,-43,43xm119,-260v69,0,100,70,67,130v-20,36,-69,93,-99,130r-57,0r85,-98v-53,12,-94,-23,-94,-73v0,-51,46,-89,98,-89"},":":{"d":"59,-110v-15,0,-30,-15,-30,-30v0,-15,15,-30,30,-30v16,0,30,14,30,30v0,15,-15,30,-30,30xm44,5v-15,0,-30,-15,-30,-30v0,-16,14,-30,30,-30v16,0,30,14,30,30v0,15,-15,30,-30,30","w":115},";":{"d":"0,56r-37,0r62,-108r55,0xm62,-110v-16,0,-31,-14,-31,-30v0,-16,15,-30,31,-30v15,0,29,14,29,30v0,16,-14,30,-29,30","w":115},"<":{"d":"253,-210r0,39r-156,64r156,64r0,38r-207,-85r0,-35","w":299},"=":{"d":"45,-87r210,0r0,35r-210,0r0,-35xm45,-163r210,0r0,35r-210,0r0,-35","w":299},">":{"d":"46,-210r207,85r0,35r-207,85r0,-38r158,-64r-158,-64r0,-39","w":299},"?":{"d":"74,7v-15,0,-30,-15,-30,-30v0,-16,14,-30,30,-30v16,0,30,13,30,30v0,16,-14,30,-30,30xm105,-263v67,0,94,78,55,123v-12,14,-29,23,-50,26r-5,35r-48,0v5,-21,3,-49,11,-67v34,0,61,-14,61,-47v0,-46,-59,-34,-62,1r-46,0v4,-43,37,-71,84,-71","w":186},"@":{"d":"243,-19v-23,1,-37,-8,-38,-29v-22,46,-118,36,-109,-31v-8,-69,82,-134,127,-76r9,-17r31,0r-27,112v0,9,7,12,17,13v39,-8,58,-44,59,-88v1,-59,-55,-98,-117,-97v-90,3,-147,54,-147,140v0,73,57,120,134,119v43,-1,78,-15,106,-34r14,21v-32,23,-69,40,-120,40v-98,-2,-166,-49,-166,-145v0,-107,72,-169,180,-169v86,0,149,42,149,126v0,64,-37,112,-102,115xm134,-78v0,34,34,41,54,22v16,-15,19,-43,26,-67v-4,-17,-11,-30,-31,-29v-29,0,-49,40,-49,74","w":360},"A":{"d":"-13,0r134,-257r58,0r62,257r-57,0r-11,-55r-98,0r-28,55r-60,0xm163,-98v-6,-39,-15,-72,-18,-115v-12,44,-32,77,-49,115r67,0","w":258,"k":{"Y":13,"W":6,"V":6,"U":6,"T":13,"Q":6,"O":6,"G":6,"C":6,";":-7,":":-7,"-":8}},"B":{"d":"140,-79v-1,-30,-25,-32,-61,-32r-9,68v39,0,70,-1,70,-36xm143,-187v0,-29,-19,-27,-51,-28r-8,62v35,0,58,-3,59,-34xm193,-78v0,86,-89,80,-182,78r34,-257v73,0,150,-9,150,61v0,35,-22,58,-54,62v30,3,52,24,52,56","w":209,"k":{"-":-10}},"C":{"d":"71,-118v0,82,101,98,152,53r-6,56v-86,43,-201,-3,-201,-106v0,-119,128,-185,230,-125r-8,50v-23,-15,-43,-25,-75,-27v-54,-1,-92,44,-92,99","w":254,"k":{";":-7,":":-7,"-":-8}},"D":{"d":"196,-139v0,-65,-39,-76,-104,-72r-21,165v80,9,125,-18,125,-93xm251,-136v0,124,-100,145,-240,136r34,-257r54,0v106,-7,152,30,152,121","w":266,"k":{"Y":10,"W":6,"V":6,"A":6,";":-7,":":-7,".":15,"-":-11,",":15}},"E":{"d":"11,0r34,-257r153,0r-6,45r-100,0r-7,58r99,0r-5,44r-100,0r-9,65r100,0r-6,45r-153,0","w":205,"k":{";":-7,":":-7,".":-7,"-":-7,",":-7}},"F":{"d":"11,0r34,-257r153,0r-6,45r-99,0r-8,58r99,0r-5,44r-99,0r-15,110r-54,0","w":201,"k":{"u":6,"r":6,"o":6,"i":6,"e":6,"a":6,"A":20,";":15,":":15,".":58,",":58}},"G":{"d":"16,-117v0,-109,103,-176,209,-133v19,8,32,23,43,41r-42,30v-14,-22,-33,-39,-66,-39v-52,0,-89,46,-89,100v0,85,123,107,144,28r-61,0r5,-45r117,0v-5,83,-48,142,-132,142v-76,0,-128,-48,-128,-124","w":291,"k":{"Y":6,"T":6,";":-7,":":-7,".":10,"-":-8,",":10}},"H":{"d":"11,0r34,-257r54,0r-13,100r105,0r13,-100r54,0r-34,257r-54,0r15,-112r-105,0r-15,112r-54,0","w":269,"k":{".":6,",":6}},"I":{"d":"12,0r34,-257r54,0r-34,257r-54,0","w":111},"J":{"d":"39,-60v1,12,3,23,15,22v10,0,18,-18,22,-55r21,-164r54,0v-13,73,-16,188,-41,242v-31,39,-129,25,-121,-35","w":159,"k":{";":11,":":11,".":18,"-":6,",":18}},"K":{"d":"11,0r34,-257r54,0r-16,115r101,-115r64,0r-110,123r77,134r-60,0r-73,-130r-17,130r-54,0","w":232,"k":{"y":13,"u":13,"o":13,"e":13,"a":13,"Y":6,"W":13,"U":6,"T":13,"O":20,"C":13,"A":13,";":-7,":":-7,".":-7,"-":18,",":-7}},"L":{"d":"11,0r34,-257r54,0r-28,211r89,0r-6,46r-143,0","w":175,"k":{"y":13,"o":6,"Y":20,"W":20,"V":20,"U":6,"T":20,"O":20,";":-7,":":-7,".":-7,"-":6,",":-7}},"M":{"d":"-5,0r72,-257r57,0r25,117r8,68v19,-69,53,-123,79,-185r59,0r3,257r-51,0r6,-203v-26,72,-59,137,-90,203r-29,0v-13,-69,-33,-130,-39,-206r-11,57r-36,149r-53,0","w":325},"N":{"d":"11,0r34,-257r56,0r98,165v4,7,7,14,9,21v4,-65,14,-124,21,-186r51,0r-34,257r-52,0r-102,-174v-3,-7,-7,-14,-9,-20v-2,70,-14,130,-22,194r-50,0","w":291,"k":{";":10,":":10,".":10,",":10}},"O":{"d":"235,-139v0,-47,-29,-78,-75,-78v-52,0,-89,46,-89,99v0,47,29,78,75,78v51,0,89,-46,89,-99xm290,-142v-2,91,-57,147,-147,149v-76,2,-129,-50,-127,-124v3,-87,58,-144,147,-146v75,-2,128,47,127,121","w":306,"k":{"Y":13,"X":6,"V":6,"T":13,"A":6,";":-7,":":-7,".":15,"-":-10,",":15}},"P":{"d":"145,-181v0,-30,-19,-32,-52,-32r-9,71v39,0,61,-3,61,-39xm199,-183v0,65,-45,90,-121,85r-13,98r-54,0r34,-257v83,-3,154,-1,154,74","w":204,"k":{"u":6,"s":6,"r":6,"o":13,"n":6,"i":6,"e":13,"a":13,"A":26,";":10,":":10,".":79,"-":15,",":79}},"Q":{"d":"71,-118v0,52,35,84,90,77r-35,-58r56,0r22,36v51,-40,39,-154,-44,-154v-52,0,-89,46,-89,99xm290,-142v-1,57,-23,97,-60,122r28,45r-56,0r-15,-24v-93,25,-175,-29,-171,-118v4,-87,58,-143,147,-146v74,-1,128,48,127,121","w":306,"k":{";":-7,":":-7,".":11,"-":-10,",":11}},"R":{"d":"145,-183v-1,-30,-18,-32,-52,-32r-9,69v38,0,62,-2,61,-37xm199,-190v0,43,-26,67,-65,75r59,115r-59,0r-53,-118r-16,118r-54,0r34,-257v79,-2,154,-5,154,67","w":209,"k":{"u":6,"o":6,"e":6,"a":6,".":-7,"-":10,",":-7}},"S":{"d":"165,-73v6,85,-128,106,-167,41r29,-37v11,36,90,46,86,-4v-4,-50,-79,-45,-85,-88v-35,-84,96,-140,148,-70r-28,36v-10,-33,-74,-36,-75,5v12,44,102,50,92,117","w":184,"k":{";":-7,":":-7,".":6,"-":-11,",":6}},"T":{"d":"50,0r28,-212r-66,0r6,-45r182,0r-6,45r-62,0r-28,212r-54,0","w":190,"k":{"y":29,"w":29,"u":36,"s":36,"r":29,"o":36,"e":36,"c":36,"a":36,"O":13,"C":13,"A":20,";":29,":":29,".":46,"-":33,",":46}},"U":{"d":"226,-60v-20,89,-214,96,-204,-21v5,-59,14,-120,21,-176r54,0r-21,171v0,31,16,49,46,49v51,0,56,-37,64,-93r17,-127r53,0r-19,144v-3,24,-8,42,-11,53","w":266,"k":{"A":6,";":11,":":11,".":21,"-":10,",":21}},"V":{"d":"107,-58v23,-68,65,-135,95,-199r58,0r-136,257r-52,0r-68,-257r56,0r39,156v4,17,7,31,8,43","w":236,"k":{"u":16,"o":23,"e":23,"a":23,"O":6,"A":13,";":18,":":18,".":53,"-":29,",":53}},"W":{"d":"194,0r-21,-193v-10,72,-37,128,-55,193r-51,0r-64,-257r53,0r43,193v11,-70,37,-129,55,-193r55,0r22,193v15,-75,48,-128,72,-193r55,0r-113,257r-51,0","w":336,"k":{"u":13,"r":15,"o":13,"e":13,"a":13,"A":6,";":21,":":21,".":44,"-":21,",":44}},"X":{"d":"-21,0r94,-133r-55,-124r60,0r30,86v13,-32,37,-57,54,-86r64,0r-90,123r58,134r-59,0v-11,-31,-26,-59,-34,-93v-17,34,-40,62,-60,93r-62,0","w":209,"k":{"e":6,"O":13,"C":6,";":6,":":6,".":-7,"-":18,",":-7}},"Y":{"d":"52,0r19,-118r-65,-139r59,0v11,33,27,62,35,99v14,-28,43,-70,61,-99r64,0r-100,139r-19,118r-54,0","w":208,"k":{"u":31,"o":33,"i":6,"e":33,"a":33,"O":13,"C":13,"A":23,";":38,":":38,".":48,"-":43,",":48}},"Z":{"d":"-14,0r0,-6r147,-209r-110,0r7,-42r190,0r0,5r-146,209r120,0r-7,43r-201,0","w":211,"k":{";":-7,":":-7,".":-7,"-":6,",":-7}},"[":{"d":"2,79r45,-342r77,0r-5,35r-36,0r-35,272r35,0r-4,35r-77,0","w":120},"\\":{"d":"145,33r-35,0r-82,-296r35,0","w":173},"]":{"d":"109,-263r-45,342r-77,0r5,-35r36,0r36,-272r-36,0r5,-35r76,0","w":120},"^":{"d":"158,-257r44,0r85,99r-42,0r-65,-65r-66,65r-41,0","w":360},"_":{"d":"0,49r180,0r0,36r-180,0r0,-36","w":180},"`":{"d":"102,-198r-48,-62r43,0r28,62r-23,0","w":180},"a":{"d":"97,-37v29,0,45,-27,44,-59v0,-25,-16,-43,-40,-43v-31,0,-47,26,-46,60v0,25,16,42,42,42xm90,-178v28,0,45,12,56,30r3,-24r49,0r-22,172r-50,0r3,-19v-11,17,-28,26,-53,26v-46,0,-69,-33,-69,-82v0,-56,32,-103,83,-103"},"b":{"d":"102,-33v30,-1,46,-24,46,-58v0,-27,-14,-44,-40,-43v-30,0,-46,26,-46,59v0,23,16,43,40,42xm114,7v-27,0,-42,-11,-58,-28r-2,21r-50,0r36,-272r49,0r-18,118v42,-46,126,-21,126,57v0,57,-30,104,-83,104","k":{"-":-7}},"c":{"d":"6,-78v0,-80,94,-130,159,-81r-12,42v-33,-33,-96,-16,-96,39v0,47,61,49,92,27r-8,48v-61,27,-135,-4,-135,-75","w":170},"d":{"d":"97,-37v29,1,45,-27,44,-59v0,-25,-15,-43,-40,-43v-31,1,-47,27,-46,61v0,26,17,40,42,41xm89,-178v28,1,48,12,59,32v-2,-45,10,-84,14,-126r50,0r-36,272r-50,0r3,-19v-11,17,-28,26,-53,26v-46,0,-69,-33,-69,-82v0,-55,32,-103,82,-103"},"e":{"d":"139,-104v4,-37,-41,-47,-64,-28v-8,6,-13,16,-17,28r81,0xm103,-178v58,0,90,42,83,103r-131,0v-5,51,69,50,85,17r33,28v-15,24,-41,37,-79,37v-53,0,-88,-34,-88,-85v-1,-56,41,-100,97,-100","w":204,"k":{"x":6,"-":-7}},"f":{"d":"141,-220v-21,-16,-52,-12,-51,22r-3,26r42,0r-6,39r-41,0r-17,133r-50,0r17,-133r-31,0r6,-39r30,0v6,-62,18,-120,90,-101v7,2,14,4,20,7","w":128,"k":{".":6,",":6}},"g":{"d":"95,-42v30,0,46,-26,46,-57v0,-25,-15,-41,-39,-41v-30,0,-47,25,-47,58v0,24,16,40,40,40xm89,-178v28,0,46,12,58,30r3,-24r48,0r-19,147v-10,77,-23,103,-97,103v-48,0,-79,-18,-83,-61r46,-4v2,32,58,37,74,13v7,-10,11,-28,12,-53v-11,17,-28,27,-54,27v-46,1,-70,-31,-70,-79v0,-53,33,-100,82,-99","k":{".":6,",":6}},"h":{"d":"142,-96v13,-42,-38,-52,-59,-28v-22,25,-18,84,-26,124r-50,0r36,-272r49,0r-19,125v26,-43,130,-44,122,21r-16,126r-49,0","w":219},"i":{"d":"64,-210v-16,0,-29,-13,-29,-29v0,-16,13,-29,29,-29v16,0,29,13,29,29v0,16,-13,29,-29,29xm9,0r22,-172r50,0r-23,172r-49,0","w":100},"j":{"d":"-2,78r33,-250r50,0r-33,250r-50,0xm64,-210v-16,0,-29,-13,-29,-29v0,-16,13,-29,29,-29v16,0,29,13,29,29v0,16,-13,29,-29,29","w":100},"k":{"d":"7,0r36,-272r49,0r-23,173r77,-73r62,0r-86,76r67,96r-57,0r-63,-94r-12,94r-50,0","w":200,"k":{"-":15}},"l":{"d":"9,0r35,-272r50,0r-36,272r-49,0","w":100},"m":{"d":"72,-145v18,-40,92,-46,103,1v17,-19,29,-34,58,-34v79,0,39,114,34,178r-49,0r14,-112v5,-31,-36,-31,-47,-13v-18,27,-17,86,-24,125r-49,0r14,-112v3,-30,-35,-31,-47,-13v-17,27,-16,86,-23,125r-49,0r23,-172r46,0","w":307},"n":{"d":"142,-96v13,-42,-38,-52,-59,-28v-22,25,-18,84,-26,124r-50,0r23,-172r46,0r-4,27v18,-19,34,-32,64,-33v91,-3,48,109,43,178r-49,0","w":219},"o":{"d":"144,-92v1,-25,-14,-41,-38,-41v-31,-1,-49,24,-49,55v0,24,15,40,38,40v30,0,49,-24,49,-54xm6,-78v0,-57,43,-100,100,-100v53,0,89,34,89,86v0,57,-44,99,-102,99v-51,0,-87,-33,-87,-85","w":212,"k":{"x":6,"-":-7}},"p":{"d":"102,-33v30,-1,46,-24,46,-58v0,-28,-14,-43,-40,-43v-31,0,-46,27,-46,60v0,23,16,42,40,41xm115,7v-28,0,-46,-13,-61,-29v-1,36,-7,67,-11,100r-50,0r33,-250r47,0r-3,19v42,-47,127,-23,127,56v0,56,-30,103,-82,104","k":{"-":-7}},"q":{"d":"97,-37v29,0,44,-28,44,-59v0,-25,-16,-43,-40,-43v-31,0,-47,26,-46,60v0,25,15,43,42,42xm89,-178v29,0,46,13,58,31r3,-25r48,0r-32,250r-50,0r15,-99v-11,16,-28,28,-54,28v-46,-1,-70,-32,-70,-82v0,-55,32,-103,82,-103"},"r":{"d":"133,-127v-73,-20,-68,67,-76,127r-50,0r23,-172r49,0r-4,30v11,-24,35,-42,68,-34","w":142,"k":{".":36,",":36}},"s":{"d":"133,-53v0,71,-104,74,-137,27r29,-29v10,12,23,25,41,26v11,1,21,-5,20,-16v-9,-29,-65,-34,-65,-78v0,-63,99,-70,130,-27r-30,27v-10,-17,-48,-33,-54,-6v7,24,66,33,66,76","w":162,"k":{"-":-7}},"t":{"d":"17,0r17,-133r-33,0r6,-39r32,0r8,-58r50,0r-8,58r33,0r-5,39r-33,0r-18,133r-49,0","w":121,"k":{"-":8}},"u":{"d":"179,-45v-18,70,-168,71,-164,-12v1,-37,9,-78,13,-115r50,0r-13,103v-5,35,45,42,61,19v16,-21,19,-84,24,-122r50,0v-6,39,-13,97,-21,127","w":217},"v":{"d":"45,0r-44,-172r54,0r21,127v15,-49,38,-84,58,-127r57,0r-93,172r-53,0","w":188,"k":{".":28,"-":-13,",":28}},"w":{"d":"42,0r-39,-172r52,0r21,119r51,-119r51,0r16,120v14,-43,36,-80,53,-120r55,0r-90,172r-47,0r-17,-128r-58,128r-48,0","w":300,"k":{".":26,"-":-13,",":26}},"x":{"d":"-19,0r77,-90r-51,-82r56,0v9,18,18,34,25,55v9,-24,23,-37,36,-55r63,0r-75,84r53,88r-55,0v-10,-19,-21,-37,-28,-59v-12,21,-26,40,-39,59r-62,0","w":180,"k":{"o":6,"e":6,"c":6}},"y":{"d":"45,-9r-44,-163r54,0r22,122v16,-44,38,-82,57,-122r57,0r-136,250r-57,0","w":188,"k":{".":31,"-":6,",":31}},"z":{"d":"-13,0r1,-8r93,-114v4,-4,7,-7,11,-10r-80,0r5,-40r156,0r-1,7r-93,116v-3,3,-6,6,-9,8r86,0r-6,41r-163,0","w":173},"{":{"d":"74,-200v-4,-57,29,-60,81,-60r0,37v-78,-16,1,126,-75,130v43,3,37,48,37,94v0,31,8,36,38,35r0,37v-52,1,-81,-3,-81,-60v0,-46,8,-95,-46,-88r0,-37v50,10,49,-40,46,-88","w":180},"|":{"d":"72,-275r36,0r0,360r-36,0r0,-360","w":180},"}":{"d":"100,-93v-76,-5,8,-142,-75,-130r0,-37v52,-1,84,4,81,60v-2,46,-6,99,47,88r0,37v-53,-7,-50,40,-47,88v3,58,-29,61,-81,60r0,-37v79,17,0,-125,75,-129","w":180},"~":{"d":"150,-127v46,19,86,14,119,-14r0,39v-20,13,-39,23,-67,24v-34,0,-78,-26,-103,-23v-28,3,-47,12,-68,28r0,-39v34,-23,71,-34,119,-15","w":299},"\u00a0":{"w":106}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright \(c\) 2004, SUDTIPOS. Expanded and digitized from the Bluemlein
 * Script collection by Alejandro Paul. All rights reserved.
 * 
 * Trademark:
 * Please refer to the Copyright section for the font trademark attribution
 * notices.
 */
Cufon.registerFont({"w":312,"face":{"font-family":"MissLeGatees","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"3 0 5 0 0 0 0 0 0 0","ascent":"416","descent":"-584","x-height":"18","cap-height":"69","bbox":"-643 -1196 1512 584","underline-thickness":"50","underline-position":"-50","stemh":"15","stemv":"29","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":175},"\u00a0":{"w":175},"!":{"d":"336,-625v17,-1,23,13,14,27v-69,110,-168,363,-208,491v-7,23,-18,9,-15,-3v33,-157,116,-326,173,-490v1,-15,21,-25,36,-25xm143,-15v0,15,-22,31,-33,31v-21,0,-21,-20,-21,-20v2,-34,54,-41,54,-11","w":341},"\"":{"d":"195,-375v-1,13,-33,70,-53,141v-2,1,-6,-6,-5,-7v11,-36,8,-133,45,-145v13,0,13,11,13,11xm125,-375v-1,13,-33,70,-53,141v-2,1,-6,-6,-5,-7v11,-36,8,-133,45,-145v13,0,13,11,13,11","w":245},"#":{"d":"430,-239v0,4,-6,9,-26,19r-86,0r-42,73v36,2,80,-6,110,4v0,4,-6,9,-27,19r-96,0r-68,119v-8,9,-16,24,-15,-15r60,-104r-73,0v-18,29,-30,62,-53,86v-3,0,-4,-4,-4,-27r34,-59v-31,-3,-71,6,-95,-4v0,-4,4,-9,21,-19r87,0r42,-73r-97,0v0,0,-9,0,-9,-5v0,-3,5,-9,22,-18r98,0r71,-123v0,0,5,-9,9,-9v4,0,7,4,7,21r-64,111r73,0r46,-79v0,0,5,-9,10,-9v3,0,5,4,5,22r-38,66v32,2,72,-5,98,4xm296,-220r-73,0r-42,73r73,0","w":397,"k":{"f":-40,"Y":-40,"X":-30}},"$":{"d":"370,-402v0,0,-9,9,-16,9v-5,0,-10,-5,-10,-23v0,-19,-21,-35,-49,-38r-41,181v40,42,89,81,89,137v0,43,-52,142,-155,158r-12,54v-4,18,-10,18,-23,9r13,-60v-68,3,-119,-46,-120,-107v0,0,16,-23,25,-23v4,0,6,4,6,15v0,55,44,98,93,98r57,-249v-29,-28,-55,-57,-55,-101v0,-62,48,-118,107,-127v8,-24,7,-55,22,-73v2,0,5,4,10,16r-13,56v64,1,72,48,72,68xm276,-455v-41,4,-75,41,-75,81v0,32,16,58,38,83xm302,-119v0,-47,-28,-77,-58,-106r-52,230v58,-11,110,-68,110,-124","w":386},"%":{"d":"543,-171v0,81,-70,188,-131,188v-34,0,-53,-29,-53,-72v0,-111,110,-182,139,-182v27,0,45,26,45,66xm467,-432r-289,463v-10,17,-14,16,-27,0r300,-476v2,-4,7,-9,10,-9v3,0,6,6,6,22xm275,-341v0,81,-70,188,-131,188v-34,0,-53,-29,-53,-72v0,-111,110,-182,139,-182v27,0,45,26,45,66xm522,-154v0,-38,-12,-59,-35,-59v-46,0,-106,76,-106,147v0,35,15,58,42,58v43,0,99,-71,99,-146xm254,-324v0,-38,-12,-59,-35,-59v-46,0,-106,76,-106,147v0,35,15,58,42,58v43,0,99,-71,99,-146","w":567},"&":{"d":"520,-380v-7,21,-32,3,-57,5v-43,4,-111,5,-172,25v0,0,0,362,182,362v101,1,140,-125,150,-239v2,1,3,0,5,3v0,78,-42,261,-174,261v-42,0,-81,-29,-102,-56v-52,29,-101,41,-144,41v-110,0,-185,-79,-185,-167v0,-86,72,-181,254,-217v9,-88,60,-223,133,-223v44,0,73,31,73,67v0,47,-39,93,-114,139v71,-8,100,-8,145,-8v3,1,6,3,6,7xm457,-512v0,-27,-16,-55,-56,-55v-60,0,-106,139,-109,201v19,-4,39,-8,57,-11v0,0,108,-56,108,-135xm343,-28v-50,-70,-77,-195,-67,-319v-154,26,-220,121,-220,207v0,79,56,149,153,149v38,0,84,-11,134,-37","w":491},"'":{"d":"125,-375v-1,13,-33,70,-53,141v-2,1,-6,-6,-5,-7v11,-36,8,-133,45,-145v13,0,13,11,13,11","w":168},"(":{"d":"208,164v-36,-43,-69,-139,-69,-211v0,-518,524,-727,527,-719v0,3,-6,9,-6,9v-268,124,-489,397,-489,739v0,66,14,124,40,174v0,3,0,8,-3,8","w":361},")":{"d":"351,-768v36,43,69,139,69,211v0,518,-524,727,-527,719v0,-3,6,-9,6,-9v268,-124,489,-397,489,-739v0,-66,-14,-124,-40,-174v0,-3,0,-8,3,-8","w":350},"*":{"d":"206,-446v22,6,15,26,33,61v16,-28,34,-51,51,-51v9,0,9,15,9,15v-3,7,-18,25,-37,49v30,0,56,4,64,17v0,12,-8,17,-8,17v-9,0,-32,-4,-64,-9v-1,15,35,60,30,70v-4,0,-7,-1,-8,-2v-6,-14,-23,-37,-39,-62r-46,63v-1,-1,-3,-4,-3,-9v9,-12,21,-37,34,-64v-27,-3,-54,-9,-82,-9v-3,-2,1,-7,5,-8v15,2,43,-1,73,-3v-13,-21,-23,-42,-23,-58v0,0,0,-17,11,-17","w":295},"+":{"d":"356,-161v0,4,-6,9,-27,19r-107,0r-38,111v0,0,-3,10,-8,10v-4,-1,-5,-8,-10,-31r31,-90r-109,0v0,0,-9,0,-9,-4v0,-4,4,-9,21,-19r105,0r40,-116v0,0,3,-7,8,-7v4,1,6,7,11,27r-34,96r114,0v0,0,12,0,12,4","w":407,"k":{"f":-40,"Y":-40,"X":-30}},",":{"d":"92,-18v-3,95,-121,138,-121,124v19,-11,89,-33,89,-89v0,-21,-13,-27,-13,-41v0,-13,5,-22,20,-22v25,0,25,28,25,28","w":168},"-":{"d":"371,-129v11,21,-35,40,-68,40v-56,0,-94,-37,-146,-37v-21,-1,-45,22,-58,18v0,-6,37,-41,83,-41v47,0,104,41,140,41v31,0,45,-21,49,-21","w":435,"k":{"f":-40,"Y":-40,"X":-30}},"\u00ad":{"d":"371,-129v11,21,-35,40,-68,40v-56,0,-94,-37,-146,-37v-21,-1,-45,22,-58,18v0,-6,37,-41,83,-41v47,0,104,41,140,41v31,0,45,-21,49,-21","w":435},".":{"d":"94,-15v0,15,-22,31,-33,31v-21,0,-21,-20,-21,-20v2,-34,54,-41,54,-11","w":217},"\/":{"d":"426,-527r-397,633v-10,17,-14,16,-27,0r408,-646v2,-4,7,-9,10,-9v3,0,6,6,6,22","w":317},"0":{"d":"349,-287v0,136,-117,313,-218,313v-57,0,-88,-47,-88,-120v0,-184,183,-302,232,-302v45,0,74,42,74,109xm328,-264v0,-64,-23,-102,-65,-102v-85,0,-197,132,-197,259v0,60,29,102,78,102v78,0,184,-127,184,-259","w":330},"1":{"d":"228,-373v-29,7,-104,60,-159,96v-4,0,-14,1,-14,-2v0,-5,153,-104,168,-113v9,-12,37,-14,41,2v-38,38,-177,400,-177,400v-3,26,-40,16,-42,6v0,-3,177,-389,183,-389","w":209,"k":{"7":-17}},"2":{"d":"341,7v0,9,-6,13,-17,13v-57,0,-115,-32,-167,-56v-33,30,-65,48,-89,48v-42,0,-63,-31,-63,-57v0,-21,15,-40,47,-40v40,0,75,13,109,29v70,-67,134,-187,134,-263v0,-41,-18,-69,-64,-69v-53,0,-111,51,-111,131v0,40,16,55,35,55v22,0,48,-22,51,-54v13,0,13,5,13,5v0,35,-46,77,-82,77v-24,0,-44,-19,-44,-69v0,-94,84,-164,154,-164v41,0,74,24,74,81v0,83,-74,203,-148,275v53,26,103,58,168,58xm144,-42v-30,-14,-59,-26,-82,-26v-21,0,-30,11,-30,23v0,57,76,38,112,3"},"3":{"d":"67,-339v29,-44,74,-68,112,-67v142,2,106,116,40,174v26,16,38,41,38,69v0,82,-103,192,-276,192v-19,-4,-29,-9,-19,-16v155,9,264,-92,262,-171v0,-22,-9,-43,-27,-57v-30,26,-111,30,-115,-8v-4,-38,101,-34,126,-15v51,-51,68,-149,-41,-151v-57,-1,-85,63,-100,50xm188,-221v-17,-11,-41,-17,-71,-17v-17,0,-25,6,-25,13v6,29,73,26,96,4","w":258},"4":{"d":"334,-380v-38,57,-93,186,-115,229r56,-10v10,34,-40,36,-70,39v-23,53,-38,99,-38,123v7,26,-32,31,-39,21v0,0,12,-48,48,-142v-13,5,-129,3,-156,4v-11,1,-5,-19,-4,-21v41,-26,261,-235,277,-245v9,-12,37,-14,41,2xm298,-363v-3,0,-8,2,-12,4v-10,4,-203,191,-245,222v0,0,110,-1,148,-9v56,-115,98,-199,109,-217","w":280,"k":{"7":-22}},"5":{"d":"296,-386v0,18,-69,33,-87,33v-25,0,-47,-1,-69,-5r-54,130v0,0,38,-55,92,-55v57,0,83,56,83,109v0,145,-170,202,-250,202v-19,-4,-29,-12,-19,-18r23,0v67,0,220,-49,220,-180v0,-39,-22,-89,-75,-89v-28,0,-59,31,-80,52v-10,5,-23,6,-24,-3r77,-180v44,10,116,26,155,-1v0,0,8,1,8,5","w":255},"6":{"d":"316,-336v0,9,-9,19,-20,20v0,-42,-17,-60,-42,-60v-70,2,-198,137,-191,282v29,-63,88,-123,135,-123v54,0,76,36,76,80v0,72,-58,166,-138,166v-57,0,-93,-58,-93,-114v0,-177,145,-310,224,-310v29,0,49,18,49,59xm252,-122v0,-40,-20,-74,-66,-74v-45,0,-93,66,-116,130v13,40,45,67,84,67v59,0,98,-67,98,-123","w":295,"k":[18]},"7":{"d":"292,-368v-28,27,-66,88,-100,154r53,4v5,0,10,3,10,9v-8,16,-22,-2,-71,2v-42,89,-79,161,-74,209v-4,29,-43,13,-45,3v0,0,41,-103,98,-212v-16,-3,-50,10,-57,-4v2,-23,43,-12,66,-12v25,-46,52,-91,80,-130v-51,20,-125,-32,-173,-32v-14,0,-30,22,-40,18v0,-6,26,-41,58,-41v32,0,119,41,144,41v22,0,31,-21,34,-21v8,1,17,6,17,12","w":228,"k":{"9":-22,"7":-26}},"8":{"d":"300,-337v0,38,-48,76,-104,115v27,39,59,76,59,122v0,39,-52,134,-154,134v-51,0,-94,-40,-94,-89v0,-69,79,-112,151,-160v-53,-67,-5,-178,80,-178v55,0,62,39,62,56xm278,-348v0,-25,-28,-33,-51,-33v-36,0,-68,33,-68,68v0,28,12,54,29,79v49,-33,90,-69,90,-114xm221,-86v0,-49,-29,-81,-54,-116v-67,46,-134,93,-134,140v0,46,37,82,78,82v55,0,110,-53,110,-106","w":267},"9":{"d":"254,-414v57,-1,63,43,37,86v-51,84,-156,250,-149,338v-4,29,-43,13,-45,3v0,0,41,-103,98,-212v9,-18,20,-34,30,-51v-37,25,-83,55,-127,55v-29,0,-53,-24,-53,-49v0,-99,132,-170,209,-170xm270,-326v20,-34,11,-68,-34,-68v-61,0,-162,55,-162,136v0,15,6,38,33,38v42,0,89,-26,133,-54v11,-17,20,-35,30,-52","w":245,"k":{"7":-39}},":":{"d":"139,-156v0,15,-22,31,-33,31v-21,0,-21,-20,-21,-20v2,-34,54,-41,54,-11xm94,-15v0,15,-22,31,-33,31v-21,0,-21,-20,-21,-20v2,-34,54,-41,54,-11","w":217},";":{"d":"131,-156v0,15,-22,31,-33,31v-21,0,-21,-20,-21,-20v2,-34,54,-41,54,-11xm92,-18v-3,95,-121,138,-121,124v19,-11,89,-33,89,-89v0,-21,-13,-27,-13,-41v0,-13,5,-22,20,-22v25,0,25,28,25,28","w":207},"<":{"d":"414,-314v6,7,-3,14,-13,28r-289,102r208,116v10,4,13,8,13,11v0,8,-24,12,-24,12r-233,-133v-6,-4,-7,-12,7,-17","w":454,"k":{"t":-40,"f":-50,"Y":-80,"X":-100,"U":-80,"T":-100,"S":-50,"B":-50,"A":-80,"7":-50}},"=":{"d":"408,-209v0,4,-6,9,-26,19r-242,0v0,0,-9,0,-9,-5v0,-3,5,-9,22,-18r244,0v0,0,11,0,11,4xm364,-113v0,4,-6,9,-27,19r-241,0v0,0,-9,0,-9,-4v0,-4,4,-9,21,-19r244,0v0,0,12,0,12,4","w":435,"k":{"f":-40,"Y":-40,"X":-30}},">":{"d":"405,-182v6,4,7,12,-7,17r-331,119v-6,-7,3,-14,13,-28r289,-102r-208,-116v-10,-4,-13,-8,-13,-11v0,-8,24,-12,24,-12","w":440,"k":{"t":-40,"f":-50,"Y":-80,"X":-100,"U":-80,"T":-100,"S":-50,"B":-50,"A":-80,"7":-50}},"?":{"d":"475,-522v0,140,-336,206,-336,354v0,60,41,63,41,63v0,7,-1,18,-16,18v-32,0,-55,-22,-55,-55v0,-188,329,-228,329,-365v0,-51,-36,-87,-105,-87v-83,-1,-187,74,-174,183v0,5,-3,10,-14,10v-9,0,-15,-9,-15,-24v0,-108,143,-194,236,-194v70,0,109,40,109,97xm143,-15v0,15,-22,31,-33,31v-21,0,-21,-20,-21,-20v2,-34,54,-41,54,-11","w":286},"@":{"d":"375,-144v-8,27,-56,56,-56,98v0,28,13,41,32,41v50,0,143,-88,143,-178v0,-137,-76,-164,-164,-164v-153,0,-281,161,-281,294v0,210,322,228,419,76v0,0,9,-7,16,-7v7,0,8,6,8,6v-61,81,-159,119,-251,119v-119,0,-226,-64,-226,-186v0,-146,155,-326,338,-326v95,0,174,51,174,169v0,121,-114,209,-184,209v-31,0,-53,-17,-53,-56v-1,-18,19,-33,15,-35v-7,0,-93,83,-133,83v-10,0,-23,-3,-23,-19v0,-65,141,-166,191,-166v9,2,24,12,20,17v-51,0,-125,69,-143,87v-9,9,-28,34,-28,47v0,4,3,7,7,7v34,0,139,-96,155,-118v14,-19,19,-12,24,2","w":500},"A":{"d":"666,-686v0,77,-48,115,-75,123v-4,-2,-5,-3,-5,-5v0,-10,54,-60,54,-108v0,-33,-23,-39,-46,-39v-188,0,-535,350,-535,572v0,130,46,167,126,167v65,0,146,-64,219,-145v36,-155,153,-333,205,-333v9,0,12,7,12,14v-1,26,-79,174,-182,300v-25,88,-33,204,49,228v0,7,-13,7,-16,7v-73,-25,-87,-103,-73,-190v-72,77,-152,137,-226,137v-124,0,-149,-111,-149,-163v0,-298,384,-609,576,-609v58,0,66,31,66,44xm607,-438v0,-2,-1,-3,-5,-3v-55,47,-119,160,-154,270v87,-108,155,-227,159,-267","w":547},"B":{"d":"387,-444v-45,-1,-97,6,-141,19v-2,0,-4,-1,-4,-2v0,-3,4,-7,13,-10v30,-12,265,-103,265,-221v0,-19,-14,-31,-42,-31v-150,0,-447,412,-447,564v0,28,-39,30,-39,8v0,-89,284,-595,503,-595v43,0,60,26,60,44v0,91,-213,209,-213,209v17,9,40,-2,83,-2v76,0,225,24,225,178v0,162,-234,349,-466,349v-33,0,-230,-14,-230,-105v0,-11,8,-23,42,-23v114,-2,164,65,164,65v0,2,-1,3,-3,3v0,0,-62,-59,-140,-59v-17,0,-33,4,-33,30v0,25,68,78,199,78v217,0,434,-192,434,-330v0,-62,-31,-169,-230,-169","w":622},"C":{"d":"356,-400v0,-52,38,-93,80,-127v4,0,6,4,6,8v0,0,-73,55,-73,115v0,16,11,36,30,36v51,0,183,-152,183,-279v0,-43,-25,-61,-62,-61v-207,0,-473,329,-473,546v0,108,62,194,162,194v75,0,172,-45,279,-152v4,-3,9,-3,9,3v0,3,-2,8,-8,15v-16,16,-145,149,-298,149v-149,0,-182,-111,-182,-187v0,-208,263,-583,519,-583v45,0,85,17,85,70v0,112,-131,296,-221,296v-24,0,-36,-21,-36,-43","w":483},"D":{"d":"775,-170v41,13,105,16,143,-1v2,0,3,1,3,3v-2,27,-120,25,-155,9v-126,156,-333,273,-561,175v-58,28,-118,45,-179,45v-51,0,-134,-13,-134,-68v0,-42,54,-56,107,-56v72,0,144,29,218,58v89,-43,235,-186,353,-364v-62,-198,66,-437,232,-440v25,0,140,24,140,200v0,123,-58,299,-167,439xm916,-603v0,-174,-108,-188,-125,-188v-126,1,-201,178,-201,308v0,16,1,42,7,72v26,-42,58,-90,68,-122v7,-22,41,-11,39,2v0,-3,-32,58,-99,157v20,75,63,162,154,198v91,-118,157,-272,157,-427xm750,-165v-80,-30,-138,-95,-169,-173v-91,129,-211,264,-348,339v208,94,388,-13,517,-166xm188,9v-77,-27,-154,-59,-207,-59v-52,0,-78,27,-78,38v0,49,92,59,112,59v37,0,96,-2,173,-38","w":806},"E":{"d":"426,-43v-23,33,-91,100,-228,100v-44,0,-178,-2,-178,-171v0,-229,393,-309,393,-315v0,-4,-99,-12,-122,-70v-101,47,-221,83,-368,83v-8,0,-22,0,-22,-9v0,0,1,-11,16,-11v148,0,268,-34,370,-79v-9,-95,140,-183,299,-168v63,-36,121,-61,181,-61v47,0,69,19,69,39v0,41,-65,59,-127,59v-30,0,-83,-12,-131,-20v-75,44,-157,103,-256,153v14,53,98,88,172,72v5,0,8,2,8,9v0,10,-10,10,-15,10v-82,0,-432,89,-432,302v0,72,45,162,154,162v48,0,121,-15,201,-84v4,-3,8,-6,11,-6v2,0,6,2,5,5xm821,-703v0,-17,-30,-25,-63,-25v-52,0,-102,19,-155,48v41,14,205,38,218,-23xm561,-668v-123,-22,-233,49,-241,138v93,-44,170,-96,241,-138","w":454},"F":{"d":"813,-549v0,138,-87,271,-206,377r147,2v7,0,15,3,15,9v-2,6,-6,8,-17,8v-69,0,-122,0,-167,-1v-148,122,-339,203,-484,203v-33,0,-207,-13,-207,-95v0,-33,50,-39,87,-39v38,0,93,7,148,46v6,4,12,14,1,14v-10,0,-56,-48,-147,-48v-25,0,-64,1,-64,35v0,41,104,72,181,72v154,0,324,-78,456,-188r-237,-1v-10,0,-16,-4,-16,-7v0,-4,9,-15,24,-15r250,4v119,-106,202,-238,202,-358v0,-90,-64,-169,-205,-169v-63,0,-121,11,-170,27v-49,61,-124,144,-162,144v-9,0,-22,-4,-22,-18v0,-15,38,-88,162,-133v22,-34,38,-62,39,-67v4,-18,31,-9,31,4v-4,18,-23,35,-33,50v144,-35,394,-62,394,144xm368,-660v-79,33,-129,77,-129,106v0,6,4,10,10,10v31,0,81,-61,119,-116","w":722},"G":{"d":"95,-14v-23,-13,-74,-58,-159,-60v-29,0,-50,2,-50,25v0,20,27,85,195,85v363,0,565,-421,565,-421v0,-1,-2,-2,-5,-3v0,0,-124,129,-267,129v-35,0,-61,-8,-80,-22v-103,108,-193,189,-193,189v-8,4,-10,9,-14,1v0,-3,3,-10,9,-12v0,0,89,-81,188,-187v-20,-21,-29,-52,-29,-91v0,-143,154,-374,294,-374v25,0,36,16,36,40v0,100,-137,270,-265,407v19,19,46,30,83,30v69,0,165,-49,272,-175v4,-16,33,-12,34,4v0,5,-3,11,-6,17v-46,73,-209,484,-637,484v-52,0,-215,-22,-215,-101v0,-15,12,-38,78,-39v112,-3,171,64,171,70v0,3,-2,4,-5,4xm558,-698v0,-24,-13,-30,-27,-30v-124,0,-241,228,-241,328v0,32,7,60,21,81v121,-131,247,-290,247,-379","w":553},"H":{"d":"18,-47v-37,-21,-96,-44,-140,-43v-25,0,-80,6,-80,39v0,65,136,75,188,75v190,0,350,-118,476,-260v-60,-36,-90,-80,-90,-111v0,-28,22,-58,70,-58v50,0,89,17,119,43v127,-180,197,-356,197,-356v2,-7,38,1,34,6v0,0,-72,186,-209,373v33,40,53,94,64,146v22,3,44,4,101,4r218,-409v14,-29,33,-33,44,-17r-242,425v51,-2,106,-6,130,-12v9,1,4,14,-2,15v-47,8,-85,10,-135,10v-35,66,-68,127,-88,172v-4,8,-9,30,-21,30v-8,-2,-12,-6,-12,-13v14,-45,13,-136,0,-193v-62,-7,-113,-22,-153,-42v-131,141,-301,257,-510,257v-138,0,-205,-48,-205,-83v0,-46,75,-53,105,-53v85,0,127,32,144,52v0,2,-1,3,-3,3xm637,-194v-12,-52,-33,-99,-62,-134v-24,31,-49,61,-76,91v36,19,82,35,138,43xm741,-177v-50,0,-71,-1,-91,-3v11,62,12,107,10,153v28,-45,54,-102,81,-150xm553,-351v-31,-27,-68,-43,-113,-43v-28,0,-43,16,-43,43v0,26,26,66,78,100v27,-33,54,-66,78,-100","w":839},"I":{"d":"54,-6v-32,-13,-74,-61,-191,-63v-19,0,-47,11,-47,33v0,69,99,92,204,92v149,0,307,-68,422,-186v-91,-45,-167,-139,-167,-332v0,-159,91,-316,222,-316v109,0,146,104,146,214v0,137,-61,301,-174,428v48,21,105,30,171,30v7,0,14,3,14,8v0,4,-5,7,-18,7v-52,0,-118,-6,-178,-32v-105,112,-253,192,-438,192v-34,0,-237,-8,-237,-103v0,-16,22,-48,89,-48v59,0,118,22,183,63v4,5,7,12,-1,13xm609,-543v0,-144,-45,-224,-129,-224v-92,0,-184,151,-184,291v0,176,56,282,158,333v93,-102,155,-239,155,-400","w":585},"J":{"d":"863,-856v0,64,-104,91,-237,117v-114,148,-242,411,-357,650v160,-105,297,-171,297,-171v12,-1,23,3,10,12v0,0,-151,72,-320,186v-163,335,-320,646,-448,646v-21,0,-33,-22,-33,-58v0,-220,228,-430,439,-578v122,-250,255,-518,385,-681v-268,51,-563,106,-563,345v0,35,10,108,97,108v43,0,66,-9,107,-44v2,-5,14,-4,14,2v0,18,-76,61,-129,61v-73,0,-114,-40,-114,-124v2,-258,352,-313,602,-366v71,-84,140,-137,207,-137v20,0,43,7,43,32xm830,-850v0,-17,-14,-23,-21,-23v-54,0,-110,44,-169,116v110,-24,190,-48,190,-93xm200,-23v-197,142,-401,337,-399,540v1,42,13,47,23,47v91,0,225,-276,376,-587","w":473},"K":{"d":"722,139v-91,1,-151,19,-176,27v-4,0,-6,-2,-6,-5v0,-4,3,-10,7,-11v53,-18,119,-26,185,-26v137,0,353,43,353,136v0,89,-102,132,-218,132v-424,0,-544,-410,-707,-596v-19,2,-39,4,-59,5v-142,140,-317,255,-510,255v-120,0,-234,-44,-234,-102v0,-41,56,-49,87,-49v91,0,170,67,170,67v0,5,-3,7,-6,7v-12,0,-72,-62,-164,-62v-27,0,-53,7,-53,36v0,69,147,88,205,88v172,0,333,-106,466,-239v-108,-1,-129,-53,-129,-75v0,-31,39,-34,63,-34v48,0,90,16,129,42v185,-207,304,-443,304,-443v1,-16,44,-5,38,0v-1,17,-121,240,-320,461v10,8,20,17,30,26v272,-46,522,-284,627,-462v10,-17,23,-10,44,-12v9,0,12,2,12,5v0,0,-263,409,-671,481v180,189,309,585,680,585v115,0,181,-43,181,-102v0,-75,-205,-135,-328,-135xm149,-217v-5,-5,-10,-10,-16,-15r-17,18v11,0,22,-1,33,-3xm112,-251v-34,-28,-72,-44,-115,-44v-24,0,-46,0,-46,26v0,33,46,55,125,56v13,-12,24,-25,36,-38","w":500},"L":{"d":"1195,275v0,-132,-344,-179,-505,-122v-5,0,-7,-2,-8,-6v0,-8,17,-11,24,-11v3,0,76,-20,175,-20v73,0,343,20,343,144v0,88,-130,103,-186,103v-331,0,-598,-252,-822,-378v-46,20,-96,33,-151,33v-22,0,-154,-11,-154,-65v0,-35,52,-52,97,-52v67,0,140,25,218,62v146,-87,245,-288,341,-460v-82,29,-169,48,-249,48v-90,0,-90,-16,-90,-16v0,-7,4,-12,10,-12v9,0,9,10,120,10v63,0,141,-17,218,-45v84,-150,166,-274,277,-274v21,0,55,5,55,33v0,67,-126,167,-283,234v-101,176,-212,396,-382,490v252,126,545,381,782,381v90,0,170,-24,170,-77xm880,-750v0,-15,-21,-19,-35,-19v-74,0,-138,103,-212,234v133,-58,247,-143,247,-215xm202,-23v-70,-38,-136,-64,-198,-64v-34,0,-58,6,-59,38v20,46,95,56,126,56v48,0,91,-11,131,-30","w":561},"M":{"d":"1163,120v-78,-1,-126,9,-208,33v-8,-2,-6,-10,3,-13v12,-5,94,-39,222,-39v140,0,332,46,332,140v0,92,-113,138,-251,138v-171,0,-475,-103,-475,-474v0,-210,132,-439,132,-439v-27,25,-483,519,-504,537v-12,10,-26,19,-31,3v0,-9,10,-19,14,-26v5,-8,155,-280,163,-298v8,-18,151,-252,151,-338v0,-20,-8,-51,-63,-51v-59,0,-128,43,-197,106v-65,209,-298,611,-371,611v-9,0,-17,-6,-17,-29v0,-107,170,-401,357,-574v8,-30,15,-78,15,-116v0,-159,-208,-183,-208,-343v0,-49,43,-163,108,-129v0,0,-87,65,-87,146v0,142,220,149,220,348v0,16,-4,37,-10,61v73,-60,146,-99,212,-99v60,0,74,31,74,64v0,121,-252,500,-299,611v2,0,9,-7,28,-28v38,-44,221,-243,244,-266v23,-23,217,-232,225,-242v10,-12,39,-16,39,3v0,7,-5,16,-12,26v-39,57,-152,256,-152,492v0,182,125,429,437,429v76,0,228,-13,228,-111v0,-74,-146,-133,-319,-133xm408,-559v-167,173,-323,446,-323,517v0,20,8,29,23,23v21,-9,117,-158,138,-192v84,-137,150,-310,162,-348","w":924},"N":{"d":"815,127v-106,0,-147,19,-176,26v-14,0,-12,-14,-1,-17v3,0,85,-21,202,-21v224,0,330,76,330,144v0,55,-70,105,-202,105v-338,0,-528,-195,-528,-445v0,-239,115,-409,141,-471v-57,40,-507,549,-515,553v-3,8,-40,43,-43,10v0,-11,9,-22,14,-30v0,0,332,-521,332,-679v0,-156,-152,-131,-152,-304v0,-127,143,-194,143,-194v0,0,6,0,19,5v16,6,12,15,-7,21v-71,23,-135,107,-135,186v0,124,156,149,156,305v0,151,-240,501,-320,654v5,0,8,-3,8,-3v66,-89,501,-547,528,-572v8,-8,11,-13,16,-13v42,10,1,47,-17,77v-132,211,-142,443,-142,466v0,326,328,418,496,418v121,0,175,-35,175,-78v0,-64,-121,-143,-322,-143","w":595},"O":{"d":"645,-163v57,1,72,-29,88,-19v-51,39,-115,35,-175,17v-96,137,-223,236,-338,236v-108,0,-189,-80,-189,-240v0,-232,166,-392,309,-497v3,-2,17,-4,15,6v-4,14,-295,185,-295,489v0,112,59,227,165,227v90,0,215,-95,312,-229v-110,-50,-163,-182,-163,-312v0,-157,77,-311,222,-311v90,0,115,121,115,194v0,141,-58,297,-143,424v23,10,48,15,77,15xm686,-579v0,-82,-14,-198,-104,-198v-111,0,-170,136,-170,280v0,124,44,254,135,308v80,-115,139,-256,139,-390","w":608},"P":{"d":"949,-600v0,237,-410,456,-773,412v-35,72,-58,140,-67,193v3,29,-9,26,-34,30v-6,0,-10,-2,-10,-11v0,-45,27,-126,75,-217v-104,-16,-148,-46,-148,-46v-9,0,-11,-27,-5,-29v0,0,47,45,158,65v123,-229,374,-522,659,-522v77,0,145,32,145,125xm906,-594v0,-80,-61,-108,-136,-108v-249,0,-477,273,-590,504v23,3,47,4,75,4v375,0,651,-223,651,-400","w":438},"Q":{"d":"1220,261v0,42,-38,111,-195,111v-258,0,-563,-227,-814,-365v-41,10,-82,16,-122,16v-56,0,-236,-21,-236,-95v0,-31,42,-33,71,-33v81,0,186,41,300,98v284,-74,564,-397,564,-584v0,-79,-51,-134,-174,-134v-164,0,-424,193,-424,401v0,59,43,114,117,114v49,0,145,-41,177,-93v4,-4,12,-4,13,2v0,20,-104,109,-201,109v-77,0,-133,-48,-133,-122v0,-181,224,-424,464,-424v141,0,198,59,198,144v0,190,-286,507,-586,594v269,136,585,358,768,358v124,0,185,-26,185,-80v0,-73,-101,-157,-331,-157v-139,0,-126,30,-166,23v0,-10,40,-27,70,-31v11,-2,50,-8,102,-8v87,0,353,35,353,156xm195,-1v-102,-55,-195,-94,-271,-94v-21,0,-40,6,-40,26v0,67,172,77,226,77v28,0,57,-4,85,-9","w":657},"R":{"d":"817,118v-36,-1,-120,11,-188,31v-10,-1,-6,-10,1,-14v9,-5,118,-29,203,-29v129,1,312,56,312,158v0,66,-80,114,-207,114v-411,0,-522,-356,-660,-552r-78,-3v-46,103,-67,179,-67,179v-5,13,-12,31,-28,31v-19,-4,-21,-15,-21,-21v0,-24,23,-101,69,-196v-68,-13,-126,-40,-126,-92v0,-58,142,-43,181,-12v122,-205,332,-437,629,-437v87,0,146,48,146,120v0,181,-314,407,-657,429v144,198,234,537,622,537v42,0,84,-7,123,-25v14,-6,47,-23,47,-62v0,-90,-140,-156,-301,-156xm940,-607v0,-66,-55,-100,-124,-100v-282,0,-468,241,-573,442v27,21,51,47,74,77v408,-24,623,-323,623,-419xm269,-187v-13,-18,-27,-34,-41,-49v-8,16,-15,32,-22,47xm195,-265v-30,-22,-63,-36,-101,-36v-46,0,-47,11,-47,25v0,0,4,57,112,80","w":595},"S":{"d":"183,-100v-3,0,-8,-3,-8,-8v0,-4,9,-15,9,-15r229,-276v-25,-30,-44,-58,-44,-85v0,-93,111,-238,214,-238v26,0,40,16,40,38v0,39,-82,153,-176,270v47,65,116,133,116,191v0,126,-163,249,-364,249v-138,0,-275,-40,-275,-109v0,-15,26,-34,60,-34v53,0,140,36,173,62v6,4,6,12,-2,13v-37,-14,-83,-60,-174,-61v-12,0,-30,7,-30,24v0,58,149,90,235,90v168,0,339,-74,339,-233v0,-59,-55,-113,-100,-164xm590,-668v0,-19,-12,-29,-30,-29v-64,0,-156,111,-156,188v0,25,14,52,33,80v87,-107,153,-196,153,-239","w":577},"T":{"d":"843,-430v-1,6,-3,8,-11,8r-116,0v-118,213,-388,454,-644,454v-119,0,-227,-41,-227,-101v0,-93,204,-20,204,-5v0,3,-7,3,-11,3v-23,-17,-79,-34,-113,-34v-26,0,-54,14,-54,41v0,72,154,81,179,81v278,0,526,-234,630,-440r-125,-1v-7,0,-10,-4,-10,-7v0,-4,6,-15,15,-15r129,3v69,-145,46,-286,-167,-285v-38,0,-87,10,-135,26v-51,63,-133,134,-175,134v-17,0,-22,-8,-22,-17v0,-47,91,-95,190,-126v18,-26,31,-53,31,-75v7,-4,17,-6,21,2v0,15,-13,40,-33,67v61,-18,123,-30,166,-30v217,1,247,154,161,305r107,3v5,0,10,3,10,9xm368,-695v-83,29,-156,71,-156,99v0,5,4,8,10,8v31,0,100,-51,146,-107","w":680,"k":{"b":-59}},"U":{"d":"375,-355v118,-25,132,-90,143,-90v3,0,5,2,5,5v0,14,-51,76,-153,98v-56,134,-172,262,-172,334v0,17,10,35,30,35v106,0,436,-433,496,-535v10,-17,33,-21,38,-6v0,12,-19,21,-34,50v-22,45,-221,390,-221,469v0,19,6,34,26,34v55,3,112,-87,126,-73v0,12,-86,89,-137,89v-32,0,-48,-20,-48,-50v0,-83,141,-296,191,-405v-184,274,-374,442,-448,442v-29,0,-52,-17,-52,-47v0,-73,119,-197,173,-332v-211,24,-378,-149,-379,-286v0,-96,66,-145,144,-145v178,1,363,211,272,413xm343,-349v74,-188,-54,-407,-242,-407v-84,0,-115,57,-115,130v0,167,176,279,306,279v18,0,35,0,51,-2","w":663},"V":{"d":"1061,-612v0,20,-16,28,-32,17v-385,1,-653,647,-857,647v-42,0,-64,-23,-64,-48v0,-76,126,-181,182,-323v-20,3,-42,4,-67,4v-148,0,-328,-112,-328,-274v0,-94,73,-153,162,-153v151,-1,355,202,273,406v79,-20,106,-61,109,-75v0,0,0,-3,6,-3v5,28,-32,69,-119,89v-53,138,-183,240,-183,327v0,24,12,31,28,31v187,0,517,-664,852,-664v23,0,38,5,38,19xm294,-329v84,-183,-73,-404,-238,-404v-72,0,-134,56,-134,129v0,191,216,279,312,279v22,0,42,-1,60,-4","w":492},"W":{"d":"320,-399v54,-22,85,-58,121,-85v4,0,7,8,4,12v-38,37,-81,66,-127,83v-30,136,-124,233,-124,233v-4,5,-31,32,-31,34v99,-71,362,-308,484,-486v8,-13,23,-49,35,-30v0,20,-36,65,-52,90v-83,132,-213,398,-277,539v122,-183,528,-663,768,-663v13,1,13,15,2,15v-100,0,-410,193,-776,674v-5,7,-15,21,-25,21v-15,-4,-10,-21,-3,-33v68,-125,171,-339,235,-467v2,-4,10,-19,10,-20v0,0,-247,284,-522,467v-26,18,-53,42,-63,42v-15,-18,27,-34,48,-51v114,-94,227,-198,261,-355v-208,46,-398,-104,-398,-267v0,-98,65,-144,144,-144v236,0,316,199,286,391xm299,-480v0,-115,-93,-299,-259,-299v-71,0,-130,54,-130,121v0,118,108,277,310,277v26,0,50,-3,70,-8v6,-29,9,-59,9,-91","w":554},"X":{"d":"648,-325v132,-11,194,-54,229,-70v8,0,9,10,4,13v-66,35,-136,63,-238,70v-24,56,-39,118,-39,186v0,106,64,183,147,183v74,0,138,-47,151,-47v6,0,8,2,8,5v0,13,-110,60,-177,60v-112,0,-171,-100,-171,-180v0,-68,21,-138,56,-205r-16,0v-73,184,-283,391,-558,391v-112,0,-234,-78,-234,-124v0,-19,21,-32,72,-32v70,0,164,51,164,73v-1,10,-13,8,-16,1v-31,-36,-89,-64,-146,-64v-42,0,-60,13,-60,27v0,36,122,102,222,102v273,0,465,-193,528,-374v-212,-5,-376,-146,-376,-298v0,-84,50,-140,160,-140v171,0,272,187,272,310v0,36,-8,75,-23,116v6,0,12,0,18,-1v113,-207,350,-383,463,-383v10,0,15,3,15,9v0,7,-13,12,-27,12v-43,0,-318,125,-428,360xm578,-322v62,-189,-44,-413,-228,-413v-77,0,-129,47,-129,122v0,209,241,289,357,291","w":738},"Y":{"d":"354,-445v80,-26,91,-69,107,-70v4,0,4,4,4,8v-32,39,-72,62,-114,74v-34,161,-164,269,-164,349v0,10,9,18,19,18v119,0,404,-431,443,-518v2,-3,10,-12,31,-12v6,0,10,2,10,10v-67,98,-172,340,-282,572r130,-98v1,-2,19,-10,17,2v-12,17,-64,41,-159,119v-125,264,-255,509,-337,509v-23,0,-37,-18,-37,-48v0,-139,175,-314,342,-450v99,-207,186,-409,205,-442v-86,126,-271,379,-378,379v-22,0,-36,-19,-36,-37v0,-75,124,-180,163,-345v-228,37,-402,-149,-400,-292v0,-69,60,-123,139,-123v197,0,332,192,297,395xm320,-436v49,-206,-85,-385,-260,-385v-76,0,-113,43,-113,110v0,162,188,309,373,275xm352,46v-139,117,-301,284,-301,423v0,14,5,31,21,31v60,-22,175,-237,280,-454","w":561},"Z":{"d":"680,-668v0,110,-172,290,-334,401v98,31,109,117,77,214v56,-21,110,-33,157,-33v10,0,10,10,10,10v-48,0,-108,15,-173,41v-86,242,-409,578,-513,578v-15,0,-52,-1,-52,-56v0,-154,282,-415,531,-523v31,-92,32,-186,-59,-216v-77,50,-150,83,-198,83v-27,0,-38,-8,-38,-19v-1,-45,141,-115,234,-85v145,-104,309,-281,309,-384v0,-48,-36,-80,-127,-80v-44,0,-112,16,-179,41v-53,78,-135,182,-192,182v-17,0,-24,-9,-24,-20v0,-62,93,-126,196,-171v25,-42,42,-76,42,-76v1,-3,32,-25,33,0v0,0,-15,26,-38,61v67,-25,134,-41,178,-41v115,0,160,37,160,93xm291,-681v-86,38,-159,91,-159,145v0,5,2,6,6,6v48,0,109,-81,153,-151xm300,-258v-70,-19,-179,29,-173,58v0,7,6,11,20,11v35,0,92,-27,153,-69xm377,-18v-230,103,-496,327,-496,510v0,22,9,29,22,29v116,0,390,-310,474,-539","w":568},"[":{"d":"650,-785v0,4,-6,9,-26,19r-224,0r-318,855r233,0v0,0,11,0,11,4v0,4,-6,9,-26,19r-242,0v0,0,-9,0,-9,-6r336,-886v2,-4,7,-9,10,-9r244,0v0,0,11,0,11,4","w":364},"\\":{"d":"319,150v-15,12,-20,10,-26,-7r-219,-714v5,-24,14,-25,19,-9","w":344},"]":{"d":"491,-784r-336,886v-2,4,-7,9,-10,9r-244,0v0,0,-11,0,-11,-4v0,-4,6,-9,26,-19r224,0r318,-855r-233,0v0,0,-11,0,-11,-4v0,-4,6,-9,26,-19r242,0v0,0,9,0,9,6","w":266},"^":{"d":"283,-211v-6,15,-21,4,-21,-3v-13,-51,-29,-69,-29,-69v-6,0,-26,4,-112,45v-3,0,-5,-2,-5,-4v3,-1,95,-66,132,-66v10,0,32,74,35,97"},"_":{"d":"308,26v0,4,-6,9,-26,19r-242,0v0,0,-9,0,-9,-5v0,-3,5,-9,22,-18r244,0v0,0,11,0,11,4","w":388,"k":{"f":-40,"Y":-40,"X":-30}},"`":{"d":"332,-210v0,3,-1,9,-3,6v-60,-63,-106,-77,-106,-90v0,-14,13,-14,13,-14v34,5,75,73,96,98"},"a":{"d":"176,-18v53,-1,116,-46,144,-62v2,0,3,2,3,4v0,14,-115,82,-155,82v-64,0,-55,-69,-37,-90v-7,0,-93,83,-133,83v-10,0,-23,-3,-23,-19v0,-65,141,-166,191,-166v9,2,24,12,20,17v-51,0,-125,69,-143,87v-9,9,-28,34,-28,47v0,4,3,7,7,7v34,0,139,-96,155,-118v14,-19,19,-12,24,2v-8,27,-56,56,-56,98v0,20,16,28,31,28"},"b":{"d":"350,-76v-37,46,-115,71,-158,24v-35,32,-82,54,-115,54v-45,0,-76,-43,-76,-94v0,-234,283,-636,405,-636v25,0,32,17,32,32v0,225,-368,578,-403,578v3,129,81,103,152,57v-24,-35,0,-117,34,-107v11,0,21,8,21,25v0,25,-12,49,-30,70v33,47,91,28,135,-7v2,0,3,2,3,4xm409,-681v0,-18,-9,-23,-18,-23v-96,1,-362,419,-352,567v32,0,370,-349,370,-544xm232,-137v0,-7,-3,-10,-7,-10v-10,0,-21,8,-21,41v0,9,1,17,4,25v14,-16,24,-35,24,-56","w":339,"k":{"k":6}},"c":{"d":"49,1v55,1,123,-50,175,-81v8,6,-2,11,-12,20v-39,24,-115,86,-172,86v-29,0,-53,-24,-53,-49v0,-96,114,-170,170,-170v14,0,31,8,31,25v0,21,-34,53,-50,59v-21,-13,18,-39,16,-67v0,-2,-4,-3,-7,-3v-21,0,-131,63,-131,142v0,15,6,38,33,38","w":215,"k":{"r":-1}},"d":{"d":"201,-6v53,0,116,-59,144,-74v2,0,3,2,3,4v0,14,-115,94,-155,94v-57,-1,-49,-67,-55,-94v-32,22,-83,73,-121,73v-16,0,-23,-11,-23,-27v0,-70,97,-169,178,-169v23,-66,262,-515,377,-515v14,0,18,12,18,26v0,122,-263,457,-390,581v-10,34,-12,101,24,101xm530,-676v0,-5,0,-8,-6,-10v-136,74,-301,441,-328,512v-1,4,-8,26,-14,48v130,-131,348,-425,348,-550xm166,-180v0,-3,-1,-6,-4,-6v-57,16,-129,106,-135,143v0,0,0,16,16,16v18,0,93,-58,98,-61v0,0,9,-44,25,-92","w":338},"e":{"d":"246,-76v-31,32,-130,97,-186,97v-47,0,-65,-37,-65,-76v0,-77,95,-169,158,-169v10,0,15,4,15,14v0,53,-113,149,-136,163v2,26,12,44,42,44v53,0,126,-52,169,-77v2,0,3,2,3,4xm137,-191v0,-5,-2,-12,-7,-12v-33,0,-97,86,-98,140v21,-7,105,-90,105,-128","w":234,"k":{"v":-3}},"f":{"d":"102,-18v53,-1,116,-46,144,-62v2,0,3,2,3,4v-11,19,-176,134,-204,47v25,262,-195,555,-268,554v-16,0,-22,-18,-22,-31v0,-133,526,-1182,654,-1182v20,0,32,16,32,32v0,189,-241,475,-392,577v-5,3,-8,5,-8,15v0,0,5,46,61,46xm407,-642v0,-16,-4,-20,-15,-20v-41,0,-211,287,-362,576v58,-5,377,-349,377,-556xm31,11v0,-43,-1,-56,-14,-70v-127,245,-237,487,-237,549v0,7,0,12,7,12v53,0,244,-258,244,-491","w":236},"g":{"d":"143,18r164,-98v9,16,-18,25,-65,55v-33,21,-72,43,-112,69v-119,233,-242,502,-343,502v-21,0,-30,-15,-30,-39v0,-196,206,-369,347,-464r84,-171v-15,2,-43,37,-62,53v-61,54,-102,66,-116,66v-18,0,-21,-16,-21,-25v1,-58,128,-199,234,-160v13,-14,14,-30,35,-38v14,1,15,17,8,28v-39,56,-80,136,-123,222xm36,-31v51,0,175,-139,180,-151v0,-3,-4,-4,-9,-4v-74,0,-182,91,-182,143v0,8,3,12,11,12xm90,72v-150,106,-305,253,-305,427v0,13,1,26,17,26v54,0,190,-255,288,-453","w":300},"h":{"d":"184,10v-69,0,-45,-84,-33,-123v-3,0,-164,143,-180,143v-6,0,-7,-7,-7,-14v0,0,313,-717,458,-717v25,0,32,17,32,32v0,228,-353,510,-382,510v-27,63,-65,122,-57,138v37,-19,155,-136,185,-146v7,0,11,7,11,13v-12,27,-42,70,-41,100v0,27,8,39,28,39v36,0,93,-48,124,-65v2,0,3,2,3,4v-22,29,-100,86,-141,86xm425,-654v0,-18,-9,-23,-18,-23v-97,25,-325,499,-325,499v45,-15,343,-293,343,-476","w":313},"i":{"d":"167,-310v0,13,-19,28,-29,28v-38,-9,-5,-45,11,-45v9,0,18,9,18,17xm58,-19v47,0,112,-58,121,-61v9,8,-3,14,-17,24v-50,37,-86,56,-123,56v-26,0,-45,-13,-45,-38v0,-63,65,-138,77,-150v4,-6,25,-14,30,-4v0,11,-70,97,-70,142v0,13,6,31,27,31","w":172,"k":{"v":-4,"r":-3}},"j":{"d":"252,-310v0,13,-19,28,-29,28v-38,-9,-5,-45,11,-45v9,0,18,9,18,17xm79,28r177,-108v9,16,-18,25,-65,55v-36,23,-80,48,-124,77v-106,224,-237,494,-331,494v-21,0,-30,-15,-30,-39v0,-187,197,-357,338,-456v56,-115,101,-212,112,-230v-31,5,-120,92,-175,129v-15,1,-19,-3,-3,-12v41,-25,157,-126,173,-136v9,-12,37,-14,41,2v-30,49,-69,132,-113,224xm32,77v-148,105,-298,251,-298,422v0,13,1,26,17,26v54,0,183,-246,281,-448","w":249},"k":{"d":"365,-76v-29,39,-136,97,-184,97v-39,0,-54,-25,-54,-52v0,-94,153,-88,153,-164v0,-7,-3,-14,-13,-14v-56,0,-260,229,-286,229v-8,0,-19,-16,-6,-28v23,-37,310,-693,447,-693v25,0,32,17,32,32v0,228,-365,532,-394,532v-28,58,-47,102,-47,112v15,-13,197,-211,283,-211v8,0,21,4,21,18v0,102,-155,102,-155,172v0,32,14,44,35,44v44,1,118,-50,165,-78v2,0,3,2,3,4xm425,-654v0,-18,-9,-23,-18,-23v-97,25,-337,521,-337,521v45,-15,355,-315,355,-498","w":353},"l":{"d":"223,-76v-33,38,-116,78,-143,78v-45,0,-76,-43,-76,-94v0,-184,276,-590,393,-590v24,0,24,15,24,32v0,225,-358,532,-383,532v-3,158,126,73,182,38v2,0,3,2,3,4xm392,-635v0,-18,-1,-23,-10,-23v-108,2,-350,402,-340,521v22,0,350,-303,350,-498","w":211,"k":{"m":2}},"m":{"d":"472,-12v45,-2,101,-46,140,-68v8,6,-2,13,-12,20v-53,38,-107,79,-154,80v-22,0,-40,-18,-40,-41v0,-44,47,-112,68,-153v-73,46,-150,110,-223,170v-12,9,-19,10,-22,11v-5,0,-7,-5,-7,-10v0,-40,67,-90,67,-127v0,-9,-6,-17,-16,-17v-38,0,-158,123,-182,150v-6,12,-33,23,-35,1v10,-45,87,-111,89,-157v0,-7,-2,-9,-6,-9v-30,6,-102,75,-157,112v-15,1,-19,-3,-3,-12v41,-25,139,-109,155,-119v12,-12,52,-17,51,8v-1,28,-45,76,-57,110v35,-13,116,-114,161,-112v82,6,-12,91,-4,118v22,-6,194,-144,222,-164v12,-9,33,-13,34,3v-24,59,-96,115,-95,183v0,19,14,23,26,23","w":604},"n":{"d":"272,-13v36,-2,119,-58,136,-67v2,0,3,2,3,4v-7,21,-127,85,-172,85v-11,0,-17,-3,-17,-12v0,-32,67,-97,67,-127v0,-9,-6,-17,-16,-17v-38,0,-158,123,-182,150v-6,12,-33,23,-35,1v10,-45,87,-111,89,-157v0,-7,-2,-9,-6,-9v-30,6,-102,75,-157,112v-15,1,-19,-3,-3,-12v41,-25,139,-109,155,-119v12,-12,51,-17,51,8v0,38,-63,98,-55,111v7,0,119,-113,159,-113v27,0,37,10,37,25v0,39,-64,110,-64,129v0,6,4,8,10,8","w":399},"o":{"d":"152,-64v38,36,86,16,128,-16v2,0,3,2,3,4v-34,41,-100,68,-147,34v-27,35,-63,60,-100,60v-33,0,-40,-28,-40,-50v0,-100,123,-186,143,-186v12,0,23,10,10,18v-21,4,-115,80,-115,159v0,68,68,23,95,-7v-41,-33,-5,-145,33,-136v11,0,21,8,21,25v0,30,-12,64,-31,95xm173,-153v0,-7,-3,-10,-7,-10v-10,0,-29,21,-29,57v0,14,3,26,9,35v16,-25,27,-55,27,-82","w":272,"k":{"r":-1}},"p":{"d":"109,-12v92,0,148,-42,191,-68v10,13,-30,34,-69,56v-53,28,-129,38,-175,38v-63,0,-64,-12,-64,-12v3,-11,18,-4,30,-4v71,0,164,-92,164,-136v0,-12,-8,-15,-19,-15v-83,0,-169,120,-205,178v-12,19,-209,408,-216,425v-5,12,-11,17,-18,17v-8,0,-12,-5,-12,-13v0,-20,69,-154,450,-840v5,-9,21,-22,22,-4v-7,40,-163,280,-164,316v26,-33,100,-102,171,-105v15,0,31,6,31,24v0,79,-117,143,-117,143","w":294},"q":{"d":"223,2v50,-1,131,-59,172,-82v9,9,-13,21,-38,37v-36,24,-104,69,-147,69v-31,0,-47,-26,-47,-26v0,207,-129,536,-279,536v-16,0,-22,-18,-22,-31v0,-114,248,-471,290,-575v0,0,-79,80,-135,80v-18,0,-34,-11,-34,-29v0,-83,150,-193,223,-193v11,0,18,16,7,17v-40,3,-182,71,-182,161v0,8,3,15,12,15v43,0,143,-89,184,-168v3,-12,32,-34,36,-9v-10,44,-76,110,-92,161v0,26,22,37,52,37xm151,17v0,-4,-1,-8,-3,-8v-15,0,-261,421,-261,492v0,7,0,12,7,12v94,0,257,-285,257,-496","w":385},"r":{"d":"165,-6v53,-1,116,-59,144,-74v2,0,3,2,3,4v-7,17,-109,93,-171,93v-26,0,-47,-10,-47,-40v0,-40,71,-97,68,-97v-38,0,-28,-64,-54,-35v-25,28,-83,79,-119,99v-2,0,-2,-9,-2,-11v56,-38,112,-86,149,-143v5,-8,23,-21,27,-7v0,9,-8,25,-8,37v0,31,39,37,39,51v0,23,-61,45,-61,88v0,13,1,35,32,35","w":302,"k":{"t":-3,"s":-1,"n":-1,"j":-3}},"s":{"d":"302,-80v9,9,-12,21,-38,37v-94,55,-157,73,-195,73v-38,0,-52,-19,-52,-42v0,-27,29,-47,43,-47v26,9,-12,30,-12,47v0,12,6,18,16,21v41,-13,108,-99,108,-140v0,-20,-10,-26,-21,-26v-30,-7,-120,73,-169,107v-15,1,-19,-3,-3,-12v55,-33,132,-116,195,-118v16,0,38,5,38,31v0,80,-97,142,-128,160v102,-13,162,-59,218,-91","w":293},"t":{"d":"126,-187v74,-74,138,-145,192,-248v10,3,17,10,9,22v-52,85,-88,163,-126,239v50,0,69,-2,88,-6v6,33,-63,12,-94,19v-30,60,-62,119,-97,182v-11,19,-24,20,-27,2v16,-49,34,-111,40,-178v-47,44,-99,87,-150,117v-3,-1,-5,-3,-5,-5v0,-7,15,-15,15,-15v44,-28,91,-67,139,-113v-87,-21,-195,-77,-195,-195v0,-38,37,-82,80,-82v77,0,141,111,131,261xm220,-268r-83,89v13,3,25,5,35,5xm115,-214v0,-72,-36,-213,-123,-213v-34,0,-50,24,-50,55v0,99,94,162,172,187v0,-11,1,-20,1,-29xm166,-162v-12,-1,-26,-3,-41,-6v-2,40,-12,88,-21,129","w":257,"k":{"r":38}},"u":{"d":"185,-5v20,6,95,-43,147,-75v8,6,-2,13,-12,20v-55,39,-127,83,-166,83v-46,0,-21,-77,-11,-94v0,0,0,-4,-3,-4v-24,15,-107,95,-144,95v-12,0,-24,-8,-24,-24v0,-26,70,-129,70,-151v0,-6,-3,-11,-18,-11v-4,0,-4,-12,-4,-12v16,-6,54,-4,54,17v1,41,-62,109,-62,139v0,4,1,8,7,8v21,0,131,-90,175,-149v9,-12,32,-23,35,-2v-7,29,-67,97,-67,135v0,16,8,25,23,25","w":323},"v":{"d":"260,-134v15,33,73,10,97,-15v3,0,4,5,4,10v-8,33,-88,55,-121,28v-37,33,-104,136,-164,136v-16,0,-26,-17,-26,-29v-1,-40,72,-113,67,-150v-42,30,-93,80,-140,107v-3,-1,-5,-3,-5,-5v0,-7,15,-15,15,-15v33,-22,59,-41,95,-76v25,-24,33,-32,45,-32v16,0,21,15,21,25v0,50,-66,109,-66,136v0,5,5,9,11,9v39,0,109,-92,137,-124v0,-30,24,-84,43,-89v0,0,10,-1,24,-1v16,8,-41,57,-37,85","w":351},"w":{"d":"205,-161v-8,27,-59,97,-60,139v0,8,2,10,11,10v46,0,146,-124,156,-142v0,-30,24,-84,43,-89v0,0,10,-1,24,-1v16,8,-37,51,-33,79v1,12,39,22,58,18v2,14,4,18,-27,18v-33,0,-51,-13,-51,-13v0,0,-129,165,-189,165v-51,0,-14,-67,-16,-93v-12,9,-66,74,-112,74v-21,0,-22,-14,-22,-23v0,-43,74,-164,98,-164v10,1,35,1,33,8v-47,21,-87,110,-98,138v3,17,17,14,31,4v32,-21,99,-79,125,-125v6,-12,19,-20,29,-3","w":371},"x":{"d":"128,-18v53,-1,116,-46,144,-62v2,0,3,2,3,4v-10,24,-204,147,-213,33v-37,37,-75,75,-113,119v-11,13,-22,27,-30,12v0,-3,2,-7,7,-13r136,-141v2,-27,11,-58,16,-86v0,-5,-3,-7,-4,-7v-14,5,-43,27,-84,30v0,-17,10,-18,10,-18v8,-1,44,-7,86,-40v10,-8,30,-18,31,7v1,-1,-16,41,-23,82v50,-49,99,-95,131,-119v6,-7,20,-10,24,3v0,3,-2,7,-9,12v-53,41,-101,83,-148,129v-1,31,7,55,36,55","w":263},"y":{"d":"127,21r169,-101v9,16,-18,25,-65,55v-35,22,-76,45,-117,72v-110,220,-228,485,-326,485v-21,0,-30,-15,-30,-39v0,-186,189,-349,326,-444r62,-130v0,0,0,-4,-3,-4v-24,15,-98,84,-135,84v-12,0,-24,-8,-24,-24v0,-26,61,-118,61,-140v0,-6,-3,-11,-18,-11v-4,0,-4,-12,-4,-12v16,-6,54,-4,54,17v1,41,-54,105,-54,135v0,4,1,8,7,8v27,0,123,-64,167,-145v7,-13,32,-23,35,-2v0,6,-3,12,-7,18v-31,48,-64,110,-98,178xm72,76v-143,102,-286,239,-286,409v0,13,1,26,17,26v63,0,178,-239,269,-435","w":288},"z":{"d":"129,26v40,-23,104,-79,153,-106v8,6,-1,12,-12,20r-138,102v-4,161,-254,515,-361,513v-23,0,-41,-18,-41,-42v0,-166,346,-466,363,-466v-4,-19,-11,-32,-42,-36v-15,-1,-39,12,-51,12v-2,0,-3,0,-4,-4v0,-5,7,-13,20,-18v32,-14,130,-85,130,-129v0,-9,-6,-17,-16,-17v-24,0,-99,63,-141,89v-2,0,-2,-9,-2,-11v53,-30,113,-108,166,-108v24,0,36,15,36,38v0,62,-121,116,-125,133v0,2,2,4,7,4v38,0,52,15,58,26xm-222,528v58,-1,326,-309,319,-464v-41,0,-334,303,-334,441v0,10,2,23,15,23","w":272},"{":{"d":"109,18v-2,-121,159,-242,112,-380v0,-12,16,-13,16,-13v147,-36,84,-446,406,-436v0,4,-7,13,-12,13v-301,39,-202,366,-381,439v50,134,-109,253,-111,373v-1,47,34,84,113,111v0,4,-12,14,-19,14v-93,-28,-124,-71,-124,-121","w":500},"|":{"d":"382,-689r-353,795v-10,17,-14,16,-27,0r364,-808v2,-4,7,-9,10,-9v3,0,6,6,6,22","w":317},"}":{"d":"445,-692v2,121,-159,242,-112,380v0,12,-16,13,-16,13v-147,36,-84,446,-406,436v0,-4,7,-13,12,-13v301,-39,202,-366,381,-439v-50,-134,109,-253,111,-373v1,-47,-34,-84,-113,-111v0,-4,12,-14,19,-14v93,28,124,71,124,121","w":382},"~":{"d":"298,-287v9,20,-25,41,-47,40v-39,0,-65,-37,-102,-37v-14,-1,-30,22,-40,18v0,-6,26,-41,58,-41v32,0,72,41,97,41v22,0,31,-21,34,-21"}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1998 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":788,"face":{"font-family":"futura medium cond","font-weight":400,"font-stretch":"condensed","units-per-em":"2048","panose-1":"2 11 5 6 2 2 4 3 2 3","ascent":"1556","descent":"-492","bbox":"-18 -1671 1937 483","underline-thickness":"121","underline-position":"-137","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":395},"!":{"d":"279,18v-62,0,-115,-50,-115,-112v0,-62,53,-115,115,-115v62,0,112,53,112,115v0,61,-51,112,-112,112xm188,-356r0,-1104r181,0r0,1104r-181,0","w":557},"\"":{"d":"496,-1434r0,553r-119,0r0,-553r119,0xm211,-1434r0,553r-117,0r0,-553r117,0","w":590},"#":{"d":"973,-862r-264,0r-95,272r263,0xm922,-1456r-166,471r260,0r168,-471r143,0r-164,471r307,0r-43,123r-311,0r-94,272r330,0r-43,123r-332,0r-166,469r-145,0r168,-469r-265,0r-168,469r-143,0r166,-469r-320,0r43,-123r320,0r96,-272r-342,0r43,-123r344,0r168,-471r146,0","w":1575},"$":{"d":"434,18v-37,6,-58,6,-88,2r0,191r-84,0r0,-205v-106,-30,-168,-102,-209,-207r162,-90v24,80,56,131,145,131v118,0,175,-86,172,-211v-4,-152,-53,-186,-159,-268v-36,-28,-191,-125,-221,-158v-66,-74,-98,-148,-99,-282v0,-197,67,-327,209,-379r0,-213r82,0r0,196r90,-2r0,-194r82,0r0,207v109,27,154,99,205,207r-162,81v-18,-77,-59,-129,-145,-129v-116,0,-168,72,-168,193v0,186,118,227,243,317v134,97,166,116,217,238v19,44,25,97,25,156v1,197,-76,344,-215,399r0,213r-82,0r0,-193"},"%":{"d":"1146,-649v-31,48,-31,432,0,481v25,74,148,73,172,-2v31,-53,31,-424,0,-476v-23,-74,-147,-75,-172,-3xm1029,-68v-70,-88,-70,-590,0,-678v42,-53,105,-85,202,-85v97,0,160,32,202,86v70,90,69,589,0,677v-42,54,-105,86,-202,86v-97,0,-160,-32,-202,-86xm514,18r-127,0r664,-1497r127,0xm247,-1286v-32,51,-32,426,0,478v24,74,147,75,172,1v31,-50,31,-429,0,-479v-24,-73,-147,-72,-172,0xm132,-706v-70,-88,-70,-593,0,-681v42,-54,105,-86,202,-86v97,0,159,33,202,87v71,90,70,592,0,680v-42,53,-105,85,-202,85v-97,0,-160,-32,-202,-85","w":1573},"&":{"d":"260,-385v-8,150,129,276,262,192v28,-18,56,-46,84,-83r-225,-367v-68,74,-115,142,-121,258xm469,-1325v-125,0,-146,144,-106,257v14,39,34,89,65,148v88,-89,156,-149,164,-278v4,-75,-48,-127,-123,-127xm465,-1481v166,0,305,128,305,291v0,64,-20,130,-61,198v-41,68,-104,141,-191,220r217,352r137,-188r136,96r-179,244r164,268r-221,0r-76,-123v-75,79,-155,136,-284,139v-199,4,-340,-185,-332,-395v7,-189,95,-295,211,-416v-67,-108,-122,-233,-125,-381v-3,-179,120,-305,299,-305","w":1042},"'":{"d":"211,-1434r0,553r-117,0r0,-553r117,0","w":305},"(":{"d":"305,-588v0,374,69,683,182,965r-172,55v-178,-424,-255,-995,-149,-1538v33,-169,82,-337,149,-504r172,56v-114,280,-182,592,-182,966","w":559},")":{"d":"252,-590v0,-373,-69,-687,-182,-966r172,-56v177,424,259,994,150,1536v-33,168,-83,337,-150,506r-172,-55v113,-283,182,-590,182,-965","w":559},"*":{"d":"342,-838r0,-225r-197,111r-49,-84r197,-113r-197,-115r49,-84r197,113r0,-225r98,0r0,225r195,-113r49,86r-197,113r197,113r-49,84r-195,-113r0,227r-98,0","w":780},"+":{"d":"913,-1221r0,551r539,0r0,117r-539,0r0,553r-118,0r0,-553r-541,0r0,-117r541,0r0,-551r118,0","w":1706},",":{"d":"340,-197r-186,514r-101,-30r133,-531","w":395},"-":{"d":"76,-410r0,-161r407,0r0,161r-407,0","w":559,"k":{"x":36,"s":-75,"q":-38,"o":-38,"g":-38,"e":-38,"d":-38,"c":-38,"Y":83,"W":45,"V":92,"T":112,"S":-38,"Q":-38,"O":-38,"J":-38,"G":-38,"C":-38}},".":{"d":"197,20v-62,0,-113,-50,-113,-112v0,-62,50,-115,113,-115v61,0,114,53,114,115v0,62,-52,112,-114,112","w":395},"\/":{"d":"0,190r422,-1669r145,0r-422,1669r-145,0","w":567},"0":{"d":"284,-1202v-36,100,-36,840,0,940v25,70,58,108,111,108v53,0,84,-37,109,-105v36,-96,35,-850,0,-945v-26,-68,-56,-105,-109,-105v-53,0,-86,37,-111,107xm74,-370v-14,-141,-12,-579,0,-720v15,-168,63,-271,148,-340v82,-66,264,-66,346,0v84,67,136,175,146,342v13,233,34,725,-36,900v-52,130,-119,206,-283,206v-163,0,-232,-76,-284,-206v-17,-41,-29,-101,-37,-182"},"1":{"d":"324,0r0,-1284r-181,0r0,-176r363,0r0,1460r-182,0"},"2":{"d":"401,-1479v207,0,329,146,324,361v-5,190,-61,299,-147,456r-261,476r379,0r0,186r-663,0r389,-774v54,-111,102,-212,102,-344v0,-115,-30,-191,-133,-191v-50,0,-84,21,-107,62v-25,44,-34,159,-32,262r-184,0v-19,-284,66,-494,333,-494"},"3":{"d":"352,18v-231,0,-317,-151,-309,-399r172,0v-12,128,32,227,152,223v128,-4,154,-102,155,-252v1,-228,-53,-275,-272,-274r0,-159r63,1v176,-6,193,-67,193,-264v0,-123,-22,-213,-125,-213v-125,0,-136,100,-144,250r-167,0v-18,-247,67,-414,301,-410v236,4,323,147,323,398v0,172,-44,283,-174,315v154,32,195,136,195,334v0,294,-88,450,-363,450"},"4":{"d":"440,-561r0,-578r-262,578r262,0xm436,0r0,-397r-395,0r0,-187r412,-876r168,0r0,899r104,0r0,164r-104,0r0,397r-185,0"},"5":{"d":"702,-506v0,304,-136,524,-419,524v-109,0,-192,-27,-269,-69r49,-174v54,39,112,67,193,67v193,0,260,-144,260,-356v0,-178,-89,-268,-266,-268v-67,0,-115,6,-166,20r96,-698r510,0r0,180r-356,0r-57,356v274,-59,425,152,425,418"},"6":{"d":"282,-672v-39,81,-39,366,2,446v46,89,178,91,224,0v40,-79,41,-374,0,-450v-45,-83,-183,-85,-226,4xm393,20v-253,0,-325,-205,-325,-493v0,-133,23,-269,68,-411v45,-142,131,-334,259,-576r215,0v-83,144,-150,266,-202,366v-52,100,-95,188,-127,263v43,-43,90,-74,165,-74v97,0,167,34,210,103v43,69,65,184,65,343v-1,289,-71,479,-328,479"},"7":{"d":"78,0r434,-1286r-442,0r0,-174r696,0r-487,1460r-201,0"},"8":{"d":"698,-1126v0,197,-33,271,-161,333v144,56,172,154,176,369v4,219,-32,326,-155,402v-80,49,-208,56,-298,14v-146,-69,-191,-176,-186,-416v4,-215,33,-313,178,-369v-129,-61,-162,-136,-162,-333v0,-234,81,-353,303,-353v224,0,305,120,305,353xm291,-640v-36,71,-33,360,-1,426v38,77,167,76,206,2v36,-67,32,-364,0,-428v-39,-78,-165,-79,-205,0xm270,-1096v0,140,9,228,123,228v112,0,125,-91,125,-228v0,-135,-14,-223,-125,-223v-113,0,-123,84,-123,223"},"9":{"d":"506,-788v40,-82,41,-365,-2,-446v-46,-88,-178,-94,-224,-2v-39,78,-39,378,0,452v44,84,183,84,226,-4xm68,-1001v2,-290,70,-480,327,-480v109,0,191,40,243,123v113,180,96,539,14,782v-47,140,-132,333,-261,576r-213,0v93,-163,163,-290,210,-380v47,-90,87,-173,120,-249v-44,44,-90,74,-166,74v-97,0,-167,-34,-210,-103v-43,-69,-64,-184,-64,-343"},":":{"d":"279,-498v-62,0,-115,-50,-115,-112v0,-62,53,-115,115,-115v62,0,112,53,112,115v0,61,-51,112,-112,112xm279,20v-62,0,-115,-50,-115,-112v0,-62,53,-115,115,-115v62,0,112,53,112,115v0,61,-51,112,-112,112","w":557},";":{"d":"307,-498v-61,0,-112,-51,-112,-112v0,-62,50,-115,112,-115v62,0,115,53,115,115v0,62,-53,112,-115,112xm135,287r133,-531r154,47r-186,514","w":557},"<":{"d":"1442,-1018r-1000,408r1000,405r0,129r-1178,-483r0,-103r1178,-483r0,127","w":1706},"=":{"d":"1452,-477r0,117r-1198,0r0,-117r1198,0xm1452,-860r0,117r-1198,0r0,-117r1198,0","w":1706},">":{"d":"1442,-662r0,103r-1178,483r0,-129r1000,-405r-1000,-408r0,-127","w":1706},"?":{"d":"276,-1479v212,0,256,102,256,332v0,197,-12,325,-38,383v-26,58,-73,88,-141,90r-1,312r-174,0r0,-433v181,-7,182,-64,182,-280v0,-97,-9,-163,-20,-198v-21,-68,-115,-67,-140,-7v-13,30,-20,85,-20,168r-166,0v-3,-233,45,-367,262,-367xm262,18v-62,0,-115,-50,-115,-112v0,-62,54,-115,115,-115v62,0,115,53,115,115v0,62,-53,112,-115,112","w":561},"@":{"d":"1042,-1001v131,1,208,60,250,157r58,-121r110,0r-150,612v-15,82,25,133,107,126v177,-16,281,-142,343,-285v34,-80,50,-165,50,-254v1,-373,-317,-595,-714,-590v-398,5,-655,214,-783,488v-88,188,-100,470,-11,658v112,237,370,398,722,398v253,0,471,-78,631,-188r45,66v-175,129,-383,218,-660,221v-423,4,-713,-183,-852,-457v-93,-184,-96,-452,-24,-661v84,-242,277,-433,498,-536v305,-142,795,-103,1013,77v146,120,262,276,262,512v0,316,-156,536,-393,628v-147,57,-390,45,-360,-149v-59,102,-152,177,-297,178v-207,2,-314,-121,-314,-332v0,-283,201,-552,469,-548xm713,-446v0,138,64,229,196,229v151,0,260,-122,293,-256r60,-242v-19,-108,-90,-190,-207,-190v-210,0,-342,228,-342,459","w":2048},"A":{"d":"451,-1083r-132,632r263,0xm16,0r342,-1460r185,0r342,1460r-199,0r-70,-287r-333,0r-68,287r-199,0","w":901,"k":{"y":36,"w":36,"v":36,"Y":36,"W":36,"V":36,"T":55,";":-38,":":-38,".":-65,",":-65}},"B":{"d":"600,-1061v0,-163,-53,-223,-215,-225r-72,0r0,452r72,0v151,-1,215,-73,215,-227xm616,-422v4,-202,-94,-263,-303,-250r0,486r66,0v182,-2,234,-56,237,-236xm815,-420v0,287,-126,420,-412,420r-286,0r0,-1460r270,0v278,1,406,100,406,370v0,192,-55,291,-197,338v157,38,219,136,219,332","w":889,"k":{"-":-57}},"C":{"d":"561,-170v71,0,119,-25,174,-55r0,192v-60,32,-121,50,-205,51v-149,0,-261,-61,-335,-183v-74,-122,-111,-306,-111,-552v0,-251,39,-440,118,-569v79,-129,196,-193,351,-193v72,0,130,15,182,39r0,187v-46,-23,-94,-41,-153,-41v-105,0,-177,49,-229,138v-89,153,-93,692,-3,852v49,88,116,134,211,134","w":780,"k":{";":-38,":":-38}},"D":{"d":"330,-188v161,8,272,-17,336,-120v82,-132,82,-716,0,-848v-63,-102,-175,-129,-336,-120r0,1088xm131,0r0,-1460r260,0v199,0,338,55,419,164v81,109,122,297,122,565v0,269,-41,458,-122,567v-81,109,-220,164,-419,164r-260,0","w":1014,"k":{"Y":36,"W":36,"V":36,"A":36,";":-38,":":-38,".":83,",":83}},"E":{"d":"125,0r0,-1460r584,0r0,176r-387,0r0,434r354,0r0,174r-354,0r0,494r387,0r0,182r-584,0","w":786,"k":{";":-38,":":-38,".":-38,",":-38}},"F":{"d":"131,0r0,-1460r598,0r0,176r-401,0r0,436r368,0r0,174r-368,0r0,674r-197,0","w":786,"k":{"u":36,"r":55,"a":36,"A":36,";":83,":":83,".":292,",":292}},"G":{"d":"512,-168v201,0,239,-212,227,-444r-209,0r0,-172r394,0r6,174v0,214,-34,372,-104,474v-70,102,-177,154,-322,154v-149,0,-257,-58,-324,-174v-67,-116,-100,-307,-100,-573v0,-269,33,-462,100,-577v67,-115,177,-173,330,-173v229,1,351,113,397,308r-174,84v-25,-127,-84,-211,-221,-211v-85,0,-140,43,-180,122v-65,131,-65,752,0,884v40,80,95,124,180,124","w":1004,"k":{"Y":36,"T":36,";":-38,":":-38,".":55,"-":-47,",":55}},"H":{"d":"131,0r0,-1460r197,0r0,555r352,0r0,-555r197,0r0,1460r-197,0r0,-721r-352,0r0,721r-197,0","w":1008},"I":{"d":"131,0r0,-1460r197,0r0,1460r-197,0","w":461},"J":{"d":"154,-168v112,0,142,-78,143,-203r0,-1089r197,0r0,1083v-1,248,-76,397,-304,397v-86,0,-150,-27,-208,-65r0,-201v52,43,97,78,172,78","w":621,"k":{".":63,",":63}},"K":{"d":"121,0r0,-1460r196,0r0,692r345,-692r204,0r-348,694r348,766r-211,0r-338,-750r0,750r-196,0","w":891,"k":{"y":73,"u":36,"o":36,"e":36,"a":36,"Y":73,"W":36,"O":73,"C":73,"A":36,";":-38,":":-38,".":-38,",":-38}},"L":{"d":"131,0r0,-1460r197,0r0,1278r422,0r0,182r-619,0","w":772,"k":{"y":73,"Y":120,"W":73,"V":112,"U":36,"T":112,"O":36,";":-38,":":-38,".":-38,"-":73,",":-38}},"M":{"d":"72,0r125,-1460r178,0r198,1011r203,-1011r172,0r127,1460r-182,0r-59,-1024r-195,1024r-133,0r-195,-1024r-59,1024r-180,0","w":1145},"N":{"d":"129,0r0,-1460r182,0r387,1014r0,-1014r187,0r0,1460r-185,0r-385,-1022r0,1022r-186,0","w":1014},"O":{"d":"336,-1171v-62,137,-61,738,2,875v38,83,89,128,168,128v78,0,129,-42,165,-121v59,-129,60,-751,-1,-883v-37,-81,-88,-124,-166,-124v-79,0,-131,43,-168,125xm186,-155v-124,-195,-124,-954,0,-1149v71,-112,171,-175,318,-175v147,0,246,61,317,173v123,194,123,957,0,1151v-71,111,-170,173,-317,173v-147,0,-247,-61,-318,-173","w":1006,"k":{"Y":36,"X":36,"T":36,";":-38,":":-38,".":83,"-":-38,",":83}},"P":{"d":"645,-1057v3,-194,-112,-239,-317,-231r0,469r73,0v176,-2,242,-64,244,-238xm842,-1049v0,295,-200,427,-514,406r0,643r-197,0r0,-1460v218,4,459,-21,576,82v79,69,135,185,135,329","w":897,"k":{"u":36,"s":36,"r":36,"o":73,"n":36,"i":36,"e":73,"a":73,"A":92,";":131,":":131,".":376,"-":120,",":376}},"Q":{"d":"918,-731v0,249,-22,462,-107,596r119,164r-117,84r-106,-148v-59,31,-124,50,-207,51v-146,0,-252,-58,-316,-173v-64,-115,-96,-307,-96,-574v0,-267,33,-458,98,-574v65,-116,171,-174,318,-174v147,0,252,57,317,173v65,116,97,308,97,575xm686,-309v36,-120,37,-255,37,-449v0,-198,-17,-338,-51,-418v-34,-80,-89,-120,-168,-120v-81,0,-134,43,-171,124v-62,135,-60,734,-1,874v49,116,143,153,262,108r-129,-179r117,-84","w":1006,"k":{";":-38,":":-38,"-":-38}},"R":{"d":"608,-1079v3,-187,-88,-214,-280,-209r0,463r61,0v172,-3,216,-73,219,-254xm807,-1079v2,212,-89,337,-275,360r347,719r-211,0r-334,-713r-6,0r0,713r-197,0r0,-1460r238,0v304,3,435,90,438,381","w":891,"k":{"u":36,"o":36,"e":36,"a":36,".":-38,"-":55,",":-38}},"S":{"d":"348,18v-101,-2,-179,-32,-254,-73r0,-201v76,46,143,81,240,84v118,3,196,-76,196,-193v0,-90,-117,-225,-239,-325v-144,-118,-226,-196,-234,-404v-8,-211,159,-388,365,-385v104,2,182,25,256,66r0,196v-64,-44,-128,-77,-219,-79v-121,-2,-205,79,-205,200v0,86,116,219,246,322v142,113,223,198,229,407v7,219,-162,389,-381,385","k":{";":-38,":":-38,".":36,"-":-65,",":36}},"T":{"d":"291,0r0,-1278r-271,0r0,-182r740,0r0,182r-271,0r0,1278r-198,0","w":780,"k":{"y":167,"w":167,"u":167,"s":159,"r":167,"o":167,"e":167,"c":167,"a":167,"O":36,"C":36,"A":55,";":206,":":206,".":188,"-":112,",":188}},"U":{"d":"504,18v-273,0,-385,-129,-385,-407r0,-1071r194,0r0,1087v0,137,58,205,191,205v133,0,190,-68,190,-205r0,-1087r195,0r0,1071v-1,279,-111,407,-385,407","w":1008,"k":{";":63,":":63,".":45,",":45}},"V":{"d":"506,0r-166,0r-320,-1460r199,0r205,991r205,-991r198,0","w":848,"k":{"u":73,"o":73,"e":73,"a":73,"A":36,";":102,":":102,".":188,"-":92,",":188}},"W":{"d":"276,0r-245,-1460r194,0r142,999r170,-999r161,0r172,999r140,-999r194,0r-243,1460r-162,0r-181,-1036r-182,1036r-160,0","w":1235,"k":{"u":36,"r":55,"o":55,"e":55,"a":55,"A":36,";":83,":":83,".":102,"-":45,",":102}},"X":{"d":"23,0r268,-743r-254,-717r196,0r160,479r158,-479r197,0r-254,717r268,743r-207,0r-162,-508r-164,508r-206,0","w":784,"k":{"O":36,"C":36,";":36,":":36,".":-38,",":-38}},"Y":{"d":"494,-621r0,621r-203,0r0,-621r-275,-839r203,0r123,407v19,66,38,152,51,234v37,-236,115,-427,174,-641r205,0","k":{"u":131,"o":131,"i":36,"e":131,"a":131,"O":36,"C":36,"A":36,";":215,":":215,".":272,"-":83,",":272}},"Z":{"d":"18,0r474,-1286r-404,0r0,-174r672,0r-469,1278r428,0r0,182r-701,0","w":784,"k":{";":-38,":":-38,".":-38,"-":36,",":-38}},"[":{"d":"141,383r0,-1944r375,0r0,160r-194,0r0,1624r194,0r0,160r-375,0","w":559},"\\":{"d":"422,190r-422,-1669r143,0r422,1669r-143,0","w":567},"]":{"d":"43,383r0,-160r193,0r0,-1624r-193,0r0,-160r373,0r0,1944r-373,0","w":559},"^":{"d":"1104,-1458r520,557r-158,0r-442,-438r-442,438r-160,0r520,-557r162,0","w":2048},"_":{"d":"1024,365r0,118r-1024,0r0,-118r1024,0","w":1024},"`":{"d":"631,-1114r-105,0r-237,-346r178,0","w":1024},"a":{"d":"324,-999v98,0,152,44,194,112r0,-94r180,0r0,981r-180,0r0,-96v-43,69,-96,114,-194,114v-83,0,-142,-45,-188,-129v-82,-151,-82,-607,0,-759v45,-84,105,-129,188,-129xm285,-756v-35,85,-34,445,1,529v42,100,165,99,206,-1v35,-86,36,-443,1,-528v-40,-98,-168,-98,-208,0","w":801},"b":{"d":"308,-754v-35,84,-35,444,0,528v41,98,167,98,208,0v35,-84,35,-445,0,-528v-41,-98,-167,-98,-208,0xm477,18v-98,0,-151,-46,-194,-114r0,96r-181,0r0,-1550r181,0r0,665v43,-68,96,-112,194,-112v86,0,147,42,191,123v78,142,79,626,0,768v-44,80,-105,124,-191,124","w":801,"k":{"-":-38}},"c":{"d":"280,-238v42,93,154,99,216,37r0,185v-45,21,-88,35,-148,36v-99,0,-168,-44,-218,-124v-90,-145,-91,-616,0,-766v51,-84,117,-129,208,-129v63,0,112,15,158,38r0,173v-28,-26,-54,-46,-99,-46v-52,0,-89,30,-117,88v-47,97,-45,407,0,508","w":522},"d":{"d":"285,-754v-35,83,-35,445,0,528v41,98,167,98,208,0v35,-84,35,-445,0,-528v-41,-98,-167,-98,-208,0xm324,-997v98,0,152,44,194,112r0,-665r180,0r0,1550r-180,0r0,-96v-43,69,-96,114,-194,114v-87,0,-147,-43,-191,-124v-78,-143,-78,-626,0,-768v44,-80,104,-123,191,-123","w":801},"e":{"d":"506,-598v0,-143,-12,-254,-135,-254v-113,0,-140,117,-140,254r275,0xm670,-328v6,204,-100,345,-291,346v-110,0,-187,-43,-241,-122v-97,-141,-100,-624,0,-770v55,-81,128,-125,231,-125v110,0,188,38,238,113v54,80,77,247,73,429r-449,0v1,171,7,322,146,322v96,0,123,-83,127,-192","w":741,"k":{"-":-38}},"f":{"d":"385,-1397v-60,1,-78,35,-78,99r0,317r135,0r0,139r-135,0r0,842r-182,0r0,-842r-98,0r0,-139r98,0r0,-344v-2,-143,75,-246,211,-246v42,1,78,10,117,23r0,164v-22,-8,-43,-13,-68,-13","w":446,"k":{".":36,",":36}},"g":{"d":"285,-756v-35,84,-35,445,0,528v41,98,167,98,208,0v35,-83,35,-445,0,-528v-41,-98,-167,-98,-208,0xm324,-999v98,0,152,44,194,112r0,-94r180,0r0,1004v-2,260,-75,369,-323,372v-197,2,-305,-107,-295,-311r171,0v4,97,34,158,126,158v114,0,141,-74,141,-201r0,-139v-44,67,-96,114,-194,114v-87,0,-147,-43,-191,-124v-78,-142,-78,-626,0,-768v44,-80,104,-123,191,-123","w":801,"k":{".":36,",":36}},"h":{"d":"414,-831v-86,0,-121,57,-121,149r0,682r-180,0r0,-1550r180,0r0,667v39,-67,104,-108,205,-108v151,0,213,86,213,243r0,748r-181,0r0,-659v-2,-117,-14,-172,-116,-172","w":817},"i":{"d":"205,-1159v-64,0,-115,-51,-115,-115v0,-64,51,-117,115,-117v63,0,114,54,114,117v0,62,-53,115,-114,115xm115,0r0,-981r180,0r0,981r-180,0","w":410},"j":{"d":"205,-1159v-64,0,-115,-51,-115,-115v0,-64,51,-117,115,-117v63,0,114,54,114,117v0,62,-53,115,-114,115xm115,395r0,-1376r180,0r0,1376r-180,0","w":410},"k":{"d":"119,0r0,-1550r180,0r0,1005r260,-436r193,0r-271,451r283,530r-195,0r-270,-516r0,516r-180,0","w":784,"k":{"u":36,"o":36,"e":36,"a":36,"-":45}},"l":{"d":"115,0r0,-1550r180,0r0,1550r-180,0","w":410},"m":{"d":"410,-831v-84,0,-117,58,-117,149r0,682r-180,0r0,-981r178,0r0,98v41,-66,102,-108,201,-108v103,0,154,47,198,119v47,-71,111,-119,217,-119v151,0,213,86,213,243r0,748r-180,0r0,-659v-2,-118,-14,-172,-117,-172v-85,0,-122,58,-121,149r0,682r-178,0r0,-659v-2,-114,-15,-172,-114,-172","w":1229},"n":{"d":"414,-831v-86,0,-121,57,-121,149r0,682r-180,0r0,-981r178,0r0,98v44,-66,106,-108,207,-108v151,0,213,86,213,243r0,748r-181,0r0,-659v-2,-117,-14,-172,-116,-172","w":817},"o":{"d":"280,-756v-41,97,-41,429,0,526v47,110,177,107,224,-1v42,-98,43,-427,0,-525v-47,-108,-177,-110,-224,0xm146,-112v-103,-158,-103,-600,0,-758v109,-166,381,-166,490,0v103,159,103,600,0,758v-109,167,-381,167,-490,0","w":784,"k":{"-":-38}},"p":{"d":"308,-756v-35,84,-35,445,0,528v41,98,167,98,208,0v35,-83,35,-445,0,-528v-41,-98,-167,-98,-208,0xm477,16v-97,0,-151,-47,-194,-114r0,493r-181,0r0,-1376r181,0r0,94v43,-68,96,-112,194,-112v86,0,147,43,191,123v79,143,78,626,0,768v-44,80,-105,124,-191,124","w":801,"k":{"-":-38}},"q":{"d":"285,-756v-35,84,-35,445,0,528v41,98,167,98,208,0v35,-83,35,-445,0,-528v-41,-98,-167,-98,-208,0xm324,-999v98,0,151,46,194,114r0,-96r180,0r0,1376r-180,0r0,-491v-43,69,-96,114,-194,114v-86,0,-146,-43,-190,-124v-78,-142,-79,-627,-1,-770v44,-80,104,-123,191,-123","w":801},"r":{"d":"526,-809v-161,-7,-233,59,-233,217r0,592r-178,0r0,-981r174,0r0,143v46,-95,113,-153,237,-161r0,190","w":555,"k":{".":131,"-":36,",":131}},"s":{"d":"229,18v-65,-1,-120,-15,-172,-36r0,-189v43,36,86,64,152,66v73,2,129,-50,129,-121v0,-43,-63,-122,-119,-176v-102,-99,-155,-136,-162,-283v-7,-161,113,-283,273,-280v62,1,110,16,155,40r0,185v-35,-41,-74,-65,-143,-66v-65,-1,-116,49,-115,113v-9,46,72,130,123,178v98,91,153,146,158,295v5,165,-113,276,-279,274","w":559,"k":{"-":-38}},"t":{"d":"123,0r0,-848r-98,0r0,-133r98,0r0,-266r180,0r0,266r135,0r0,133r-135,0r0,848r-180,0","w":449},"u":{"d":"408,18v-214,0,-299,-91,-299,-307r0,-692r180,0r0,702v0,86,36,138,119,138v81,0,119,-52,118,-138r0,-702r183,0r0,692v-1,216,-87,307,-301,307","w":817},"v":{"d":"18,-981r187,0r102,512v13,68,22,145,29,225v6,-54,11,-100,16,-137v5,-37,11,-66,15,-86r100,-514r186,0r-245,981r-144,0","w":672,"k":{".":120,",":120}},"w":{"d":"530,-482r-26,-210v-4,42,-8,81,-12,117v-4,36,-10,67,-15,94r-88,481r-127,0r-227,-981r176,0r94,503r27,209v27,-248,74,-476,114,-712r117,0r90,504v7,33,17,124,25,208v3,-40,6,-78,12,-114r107,-598r178,0r-230,981r-127,0","w":1010,"k":{".":112,",":112}},"x":{"d":"240,-520r-193,-461r189,0r98,283r100,-283r187,0r-191,461r225,520r-190,0r-131,-342r-129,342r-191,0","w":670,"k":{"-":63}},"y":{"d":"27,-981r186,0r115,643r155,-643r179,0r-396,1376r-186,0r151,-481","w":672,"k":{".":102,",":102}},"z":{"d":"27,0r364,-823r-342,0r0,-158r600,0r-366,819r338,0r0,162r-594,0","w":676},"{":{"d":"172,-594v208,13,289,-60,289,-274v0,-142,-10,-371,23,-460v48,-129,185,-154,374,-149r0,127r-45,-2v-178,5,-207,54,-207,244r0,242v-2,215,-39,287,-198,336v159,48,198,121,198,335r0,242v-3,208,52,244,252,242r0,125v-189,5,-327,-20,-374,-152v-32,-90,-23,-317,-23,-457v0,-214,-79,-285,-289,-272r0,-127","w":1024},"|":{"d":"575,-1565r0,2048r-126,0r0,-2048r126,0","w":1024},"}":{"d":"418,-1108v3,-208,-53,-247,-252,-244r0,-125v188,-4,328,19,375,150v32,89,22,319,22,459v0,214,80,287,291,274r0,127v-209,-13,-291,60,-291,274v0,141,9,369,-22,459v-45,132,-184,153,-375,148r0,-125r45,2v177,-5,207,-55,207,-246r0,-240v2,-214,39,-287,198,-335v-159,-49,-198,-121,-198,-336r0,-242","w":1024},"~":{"d":"1145,-600v164,-10,257,-72,385,-158r0,131v-146,112,-360,189,-578,109v-101,-38,-323,-108,-389,-103v-163,13,-256,73,-385,160r0,-133v140,-95,292,-172,504,-132v104,20,357,132,463,126","w":1706},"\u00a0":{"w":395}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1992 Corel Corporation. All Rights Reserved.
 */
Cufon.registerFont({"w":1679,"face":{"font-family":"futura medium cond","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"4096","panose-1":"0 0 4 0 0 0 0 0 0 0","ascent":"3276","descent":"-820","x-height":"33","bbox":"-184 -3441.25 3464.89 878.518","underline-thickness":"50","underline-position":"-75","slope":"-11","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":840},"!":{"d":"374,-18v-118,-81,-90,-251,6,-347v99,-98,239,-123,352,-40v112,82,72,265,-22,351v-100,92,-216,118,-336,36xm430,-745r369,-2343r418,0r-369,2343r-418,0","w":1032},"\"":{"d":"463,-2167r98,-921r352,0r-192,921r-258,0xm999,-2167r99,-921r352,0r-193,921r-258,0","w":1024},"#":{"d":"-49,0r495,-1057r-438,0r103,-237r450,0r230,-512r-439,0r103,-242r450,0r488,-1040r225,0r-492,1040r369,0r471,-1040r234,0r-480,1040r455,0r-111,242r-454,0r-242,512r463,0r-102,237r-472,0r-487,1057r-225,0r487,-1057r-360,0r-496,1057r-225,0xm782,-1294r361,0r241,-512r-360,0"},"$":{"d":"1602,-2449v3,-175,-142,-299,-320,-295v-242,5,-401,210,-401,487v0,119,31,215,99,286v57,60,164,145,322,256v144,101,247,190,310,269v72,91,108,212,108,365v0,273,-65,511,-195,712v-140,217,-338,340,-595,369r-41,270r-184,0r40,-270v-309,-17,-485,-172,-528,-463r369,-168v7,181,102,287,286,287v288,0,442,-271,439,-594v0,-68,-6,-127,-29,-172v-61,-120,-322,-293,-456,-396v-111,-87,-198,-182,-261,-285v-70,-115,-100,-237,-94,-368v23,-521,296,-876,762,-929r49,-271r180,0r-45,262v320,33,496,187,529,463"},"%":{"d":"598,-2626v80,-341,256,-511,528,-503v237,7,330,177,328,442v0,110,-10,222,-29,336v-79,464,-271,696,-577,696v-236,0,-328,-198,-328,-442v0,-135,27,-311,78,-529xm1167,-2503v0,-33,10,-143,9,-176v0,-133,-34,-200,-103,-200v-117,0,-203,179,-258,536r-24,221v9,145,47,217,114,217v125,0,262,-196,262,-598xm1294,-430v0,-340,89,-674,252,-854v91,-101,199,-152,326,-150v265,5,352,169,352,443v0,391,-80,681,-240,870v-92,108,-217,162,-374,162v-199,0,-316,-157,-316,-471xm1946,-799r8,-176v0,-141,-41,-211,-123,-209v-58,1,-101,39,-136,111v-60,125,-134,463,-134,655v0,140,49,209,118,209v125,0,214,-197,267,-590xm242,0r2015,-3088r254,0r-2015,3088r-254,0","w":2265},"&":{"d":"1311,-2560v-161,0,-295,182,-295,344v0,68,69,297,102,410v251,-205,377,-405,377,-602v0,-101,-61,-152,-184,-152xm606,-647v0,181,113,344,283,344v128,0,245,-84,352,-225r-311,-713v-216,193,-324,391,-324,594xm1352,-2879v294,0,493,204,487,487v-1,87,-26,183,-74,288v-92,198,-264,401,-516,609r295,664r311,-361r234,217r-401,455r241,520r-459,0r-102,-242v-166,189,-361,283,-586,283v-338,0,-575,-278,-573,-655v0,-165,51,-328,153,-487v95,-149,233,-302,412,-460v-93,-213,-140,-404,-143,-573v-2,-127,31,-252,98,-375v135,-247,342,-370,623,-370","w":2023},"'":{"d":"930,-3138r311,107r-569,1085r-201,-61","w":872},"(":{"d":"455,463v-91,-401,-136,-763,-136,-1086v0,-861,238,-1699,713,-2515r361,99v-306,591,-506,1104,-594,1540v-140,693,-80,1111,57,1868","w":1126},")":{"d":"1098,-3138v90,388,135,751,135,1090v0,828,-235,1665,-705,2511r-368,-94v229,-448,395,-843,498,-1186v219,-734,208,-1431,38,-2222","w":1126},"*":{"d":"1126,-3088r160,0r-78,544r496,-286r65,135r-512,270r431,266r-111,136r-410,-275r-69,529r-176,0r102,-541r-487,287r-82,-136r512,-266r-422,-246r94,-147r426,274","w":1462},"+":{"d":"1073,-1192r135,-889r287,0r-135,889r704,0r-49,287r-704,0r-144,897r-286,0r143,-897r-705,0r50,-287r704,0","w":2048},",":{"d":"385,-430r311,102r-569,1082r-201,-58","w":840},"-":{"d":"319,-1217r738,0r-49,312r-738,0","w":991},"\u2010":{"d":"319,-1217r738,0r-49,312r-738,0","w":991},".":{"d":"410,33v-120,0,-203,-109,-201,-226v4,-188,263,-346,427,-213v107,85,81,257,-20,350v-63,58,-130,89,-206,89","w":840},"\/":{"d":"2007,-3400r320,0r-2184,3826r-327,0","w":1663},"0":{"d":"295,-770v57,-702,149,-1232,268,-1591v76,-230,178,-416,306,-557v131,-144,289,-214,474,-211v194,4,333,80,416,230v95,172,141,359,121,601v-60,716,-102,1012,-251,1521v-70,239,-178,433,-314,587v-138,156,-309,233,-516,231v-96,-1,-183,-33,-262,-95v-182,-142,-268,-392,-242,-716xm696,-774v-2,43,-5,71,-8,86v9,231,76,348,201,352v118,4,219,-108,303,-337v83,-224,146,-488,190,-792v59,-410,88,-694,88,-853r0,-82v0,-241,-65,-361,-196,-361v-33,0,-66,8,-98,25v-178,92,-316,536,-415,1332v-39,310,-60,520,-65,630"},"1":{"d":"831,-3088r705,0r-487,3088r-410,0r442,-2736r-307,0"},"2":{"d":"799,-360r770,0r-58,360r-1359,0r1007,-1610v235,-375,352,-667,352,-876v0,-178,-72,-267,-217,-267v-132,0,-223,78,-274,234v-27,80,-53,223,-78,430r-414,0v61,-489,198,-800,411,-932v121,-75,275,-111,462,-108v352,5,528,181,528,528v0,183,-51,401,-152,655v-87,220,-192,421,-315,603"},"3":{"d":"1266,-1126v0,-250,-127,-300,-410,-299r57,-369v175,18,337,-23,416,-121v32,-40,70,-98,96,-182v41,-134,54,-261,54,-377v0,-191,-66,-287,-197,-287v-97,0,-175,62,-232,185v-44,93,-69,197,-75,311r-389,0v56,-420,189,-683,400,-790v99,-49,212,-74,341,-74v369,0,553,179,553,536v0,327,-61,583,-184,768v-71,107,-166,181,-287,223r-8,9v191,43,287,199,287,467v0,443,-132,775,-396,995v-143,119,-316,176,-518,172v-335,-7,-520,-175,-516,-520v1,-87,10,-185,29,-295r401,0v-10,37,-28,97,-33,180v-9,142,92,266,226,266v79,0,154,-46,223,-123v69,-77,112,-185,129,-323v22,-179,33,-297,33,-352"},"4":{"d":"1839,-3088r-303,1937r201,0r-49,303r-201,0r-135,848r-402,0r140,-848r-832,0r45,-352r1139,-1888r397,0xm1135,-1151r208,-1315r-16,0r-704,1315r512,0"},"5":{"d":"1024,-1954v397,0,633,165,672,500v64,550,-169,1040,-480,1292v-277,225,-701,257,-1032,76r168,-369v128,81,242,136,344,136v240,0,407,-176,507,-464v60,-172,77,-357,54,-544v-24,-197,-171,-295,-434,-295v-109,0,-194,10,-254,29r414,-1495r983,0r-53,352r-664,0"},"6":{"d":"1274,-1311v0,-153,-120,-268,-275,-209v-104,40,-187,207,-246,509v-27,135,-40,270,-40,405v0,133,65,278,184,278v163,0,275,-186,338,-558v26,-153,39,-295,39,-425xm930,-1761v99,-90,218,-135,356,-135v273,0,410,184,410,553v0,519,-103,900,-309,1144v-128,151,-294,229,-498,240v-387,21,-593,-243,-602,-610v3,-9,5,-35,8,-78v39,-555,169,-1017,385,-1432v178,-342,407,-680,606,-1009r451,0r-815,1319"},"7":{"d":"639,-3088r1384,0r-1425,3088r-446,0r1298,-2736r-856,0"},"8":{"d":"856,41v-405,0,-569,-197,-569,-610v0,-378,33,-425,104,-674v67,-233,210,-374,416,-428r0,-8v-159,-43,-254,-195,-254,-455v0,-354,98,-598,253,-796v108,-138,291,-199,546,-199v361,0,528,168,528,495v0,354,-90,644,-250,819v-65,72,-136,117,-213,136r0,8v175,34,262,194,262,479v0,315,-61,589,-184,822v-144,274,-357,411,-639,411xm713,-672v0,33,-3,59,-8,78v10,172,74,258,192,258v219,0,340,-263,360,-790v8,-222,-51,-328,-192,-328v-110,0,-192,75,-245,225v-51,145,-107,330,-107,557xm967,-2130v0,183,64,275,192,275v82,0,149,-78,200,-199v71,-168,95,-283,95,-440v0,-181,-60,-270,-180,-267v-68,2,-126,38,-175,109v-88,129,-132,303,-132,522"},"9":{"d":"897,-1823v0,186,78,279,209,279v145,0,244,-157,296,-430v41,-217,52,-335,52,-500v0,-186,-68,-279,-205,-279v-107,0,-186,112,-239,296v-58,203,-113,397,-113,634xm1233,-1303v-89,77,-204,127,-344,127v-276,0,-414,-185,-414,-524v0,-508,138,-936,293,-1146v131,-177,309,-283,584,-283v386,0,524,215,528,594v6,598,-194,1213,-463,1646r-553,889r-446,0r823,-1286"},":":{"d":"410,33v-120,0,-203,-109,-201,-226v4,-188,263,-346,427,-213v107,85,81,257,-20,350v-63,58,-130,89,-206,89xm672,-1610v-120,-6,-201,-95,-201,-221v0,-187,256,-351,426,-215v104,83,83,261,-16,338v-61,47,-129,81,-209,98","w":840},";":{"d":"385,-430r320,102r-570,1082r-209,-58xm463,-1831v0,-186,259,-350,434,-215v102,78,84,263,-9,334v-56,43,-129,81,-224,110v-134,-9,-201,-86,-201,-229","w":840},"<":{"d":"319,-913r50,-263r1839,-946r-49,299r-1495,783r1249,782r-49,299","w":2048},"=":{"d":"2122,-1577r-41,291r-1696,0r45,-291r1692,0xm1999,-791r-45,287r-1692,0r41,-287r1696,0","w":2048},">":{"d":"2056,-1176r-41,263r-1839,954r49,-299r1495,-782r-1257,-783r57,-299","w":2048},"?":{"d":"1192,-3129v334,0,496,168,496,528v0,204,-80,599,-108,706v-47,175,-110,305,-189,389v-74,79,-174,119,-301,122r-115,655r-361,0r156,-934v230,35,357,-47,422,-248v45,-139,91,-384,90,-600v0,-185,-52,-276,-156,-274v-56,1,-100,28,-133,81v-45,73,-77,199,-96,377r-393,0v51,-340,151,-569,299,-688v94,-76,224,-114,389,-114xm680,33v-141,0,-217,-107,-217,-234v0,-119,152,-254,282,-254v142,0,213,68,213,205v0,141,-137,283,-278,283","w":1401},"@":{"d":"2150,-2224v-267,-4,-471,179,-600,351v-131,176,-301,447,-301,730v0,186,96,279,262,279v189,0,377,-147,566,-440v78,-121,146,-255,204,-400v47,-117,70,-216,70,-295v0,-147,-67,-223,-201,-225xm3183,-1966v2,-573,-392,-907,-1012,-909v-265,0,-518,70,-761,207v-438,248,-812,721,-812,1357v0,465,249,802,589,964v313,149,636,181,1001,73v290,-86,540,-241,749,-471r254,0v-219,307,-516,530,-890,670v-191,72,-387,108,-589,108v-519,0,-907,-200,-1167,-599v-253,-387,-261,-1001,-41,-1452v217,-445,549,-769,1011,-970v538,-234,1219,-171,1597,178v318,293,433,693,296,1180v-121,428,-472,816,-841,967v-126,51,-231,79,-318,77v-176,-4,-283,-78,-320,-221v-161,117,-284,200,-536,209v-277,10,-499,-232,-488,-512v8,-196,69,-407,195,-632v118,-211,272,-387,461,-526v195,-143,394,-216,598,-226v174,-9,419,131,417,303r103,-217r282,0r-680,1368v-15,30,-40,77,-40,143v0,51,37,81,110,90v17,-5,36,-8,57,-8v301,-77,525,-297,674,-659v67,-163,101,-327,101,-492","w":3281},"A":{"d":"1176,-3088r327,0r176,3088r-413,0r-25,-598r-618,0r-205,598r-402,0xm745,-922r488,0r8,-1572r-8,0","w":1696},"B":{"d":"1241,-3088v419,1,606,128,606,528v0,562,-171,890,-512,983r0,8v224,67,336,232,336,496v0,103,-30,274,-49,385v-79,459,-369,688,-868,688r-504,0r487,-3088r504,0xm913,-1729v356,3,537,-307,537,-688v0,-218,-94,-327,-283,-327r-94,0xm864,-1401r-168,1049v324,-4,438,-125,504,-402v28,-119,41,-218,41,-295v0,-250,-126,-363,-377,-352","w":1712},"C":{"d":"1929,-3039r-57,377v-81,-61,-169,-91,-262,-91v-203,0,-374,115,-512,345v-92,154,-172,426,-244,816v-78,423,-83,743,47,1055v53,128,175,201,356,201v101,0,185,-34,254,-74r-57,361v-189,122,-512,115,-722,1v-117,-64,-203,-138,-253,-231v-75,-141,-115,-362,-119,-663v-3,-203,24,-448,79,-736v109,-573,272,-965,491,-1177v188,-183,398,-274,631,-274v133,0,256,30,368,90","w":1511},"D":{"d":"1384,-3088v446,3,656,310,656,782v0,522,-59,974,-205,1436v-149,469,-377,736,-681,810v-264,64,-578,62,-904,60r487,-3088r647,0xm1098,-2744r-385,2392v359,0,592,-174,704,-520v80,-246,195,-896,201,-1311v4,-332,-195,-564,-520,-561","w":1913},"E":{"d":"737,-3088r1102,0r-53,352r-688,0r-160,975r623,0r-58,352r-622,0r-160,1049r688,0r-57,360r-1102,0","w":1425},"F":{"d":"737,-3088r1110,0r-53,352r-696,0r-160,975r631,0r-58,352r-630,0r-226,1409r-405,0","w":1401},"G":{"d":"1233,-1630r749,0v-49,348,-75,653,-180,966v-103,306,-251,513,-449,620v-105,57,-228,85,-370,85v-299,0,-492,-120,-578,-360v-48,-133,-70,-283,-69,-451v2,-409,149,-1250,269,-1602v122,-359,284,-588,497,-684v107,-49,236,-73,385,-73v373,0,582,212,627,635r-426,151v0,-273,-93,-410,-279,-410v-149,0,-264,91,-344,275v-130,300,-283,1260,-283,1773v0,209,52,361,258,361v89,0,164,-34,227,-109v101,-121,173,-313,215,-578r38,-243r-344,0","w":1888},"H":{"d":"737,-3088r406,0r-185,1200r619,0r192,-1200r406,0r-487,3088r-406,0r238,-1528r-615,0r-250,1528r-405,0","w":1937},"I":{"d":"1143,-3088r-488,3088r-405,0r487,-3088r406,0","w":913},"J":{"d":"1073,-3088r406,0r-369,2318v-50,313,-137,530,-262,651v-110,107,-264,160,-463,160v-151,0,-266,-27,-344,-82r61,-414v83,61,172,96,267,103v155,-21,251,-95,288,-222v11,-38,30,-137,56,-298","w":1241},"K":{"d":"922,-1585r815,-1503r422,0r-848,1495r409,1593r-471,0xm913,-1585r-258,1585r-405,0r487,-3088r406,0","w":1737},"L":{"d":"737,-3088r406,0r-422,2728r688,0r-57,360r-1102,0","w":1352},"M":{"d":"840,-3088r352,0r90,2224r4,0v157,-513,408,-1254,754,-2224r360,0r-200,3088r-402,0r121,-1196v37,-362,74,-673,113,-934r-9,0v-69,227,-185,576,-350,1045r-379,1085r-278,0r-66,-2130r-8,0r-455,2130r-393,0","w":2298},"N":{"d":"250,0r487,-3088r389,0r361,2343r8,-9r46,-620v49,-644,116,-1096,220,-1714r414,0r-487,3088r-385,0r-345,-2384r-8,8v-40,756,-164,1633,-295,2376r-405,0","w":1937},"O":{"d":"1487,-3121v449,-3,642,387,610,880v-44,688,-140,1226,-300,1611v-186,447,-469,671,-847,671v-275,0,-459,-137,-554,-409v-52,-149,-76,-329,-60,-513v35,-402,77,-706,117,-911v65,-337,162,-626,290,-867v131,-248,311,-397,539,-446v49,-11,118,-16,205,-16xm774,-754v0,275,103,411,283,410v122,-1,226,-105,312,-310v181,-432,294,-1084,294,-1644v0,-137,-13,-236,-38,-298v-40,-99,-117,-148,-232,-148v-195,0,-344,236,-453,707v-92,395,-166,882,-166,1283","w":1954},"P":{"d":"1286,-3088v444,8,635,150,635,569v0,314,-85,624,-207,797v-166,234,-444,354,-842,354r-217,1368r-405,0r487,-3088r549,0xm930,-1720v347,-6,473,-155,524,-480v30,-189,21,-376,-77,-464v-59,-53,-155,-80,-287,-80","w":1593},"Q":{"d":"1208,-410r-200,-372r278,-193r123,213r8,0v164,-626,246,-1130,246,-1511v0,-300,-75,-480,-229,-480v-162,0,-298,147,-411,441v-147,384,-231,1025,-253,1513v-10,215,73,463,246,463v62,0,126,-32,192,-74xm1401,-86v-157,85,-312,127,-463,127v-249,0,-425,-124,-528,-373v-52,-125,-82,-278,-82,-459v0,-98,16,-164,16,-200v0,-942,273,-1564,545,-1879v154,-179,351,-268,590,-268v412,0,618,280,618,840v0,274,-11,379,-75,783v-87,545,-214,938,-375,1179r217,385r-295,193","w":1962},"R":{"d":"1303,-3088v398,2,577,153,577,544v0,354,-76,635,-228,842v-85,115,-196,182,-333,199r336,1503r-430,0r-320,-1511r-8,0r-242,1511r-405,0r487,-3088r566,0xm938,-1720v336,0,504,-243,504,-729v0,-246,-83,-293,-344,-295","w":1704},"S":{"d":"1286,-2744v-240,-1,-438,210,-438,438v0,96,35,200,104,312v16,27,82,117,199,270v224,295,336,551,336,766v0,377,-141,658,-413,858v-239,175,-671,196,-881,-2r65,-418v119,103,245,168,381,168v246,0,434,-230,434,-488v0,-121,-26,-226,-79,-320v-73,-130,-410,-505,-482,-652v-51,-103,-82,-222,-82,-363v0,-385,142,-665,424,-842v250,-157,571,-159,834,-14r-70,422v-94,-90,-205,-135,-332,-135","w":1450},"T":{"d":"471,-3088r1360,0r-53,352r-467,0r-430,2736r-418,0r442,-2736r-487,0","w":1319},"U":{"d":"770,-598v2,155,60,254,221,254v172,0,283,-67,333,-202v23,-65,46,-168,69,-310r352,-2232r414,0r-353,2207v-29,181,-60,320,-95,419v-123,341,-338,496,-761,503v-396,6,-590,-164,-590,-569v0,-96,11,-215,33,-353r344,-2207r414,0r-344,2158v-25,155,-37,265,-37,332","w":1913},"V":{"d":"623,0r-103,-3088r410,0r-17,2318r9,0v159,-603,520,-1647,741,-2318r385,0r-1098,3088r-327,0","w":1585},"W":{"d":"545,0r-49,-3088r401,0r-17,1222v-7,425,-20,791,-40,1096r8,0v224,-817,459,-1590,704,-2318r320,0r-33,2306r8,0v91,-341,200,-728,328,-1161r336,-1145r401,0r-1032,3088r-328,0r2,-931v2,-132,3,-237,4,-316v3,-464,12,-814,27,-1051r-8,0v-165,700,-469,1589,-696,2298r-336,0","w":2425},"X":{"d":"1032,-3088v38,212,168,747,185,1114r8,0v129,-321,297,-693,504,-1114r413,0r-807,1519r320,1569r-422,0v-35,-181,-84,-453,-143,-817v-19,-115,-25,-227,-25,-334r-8,0v-34,170,-364,838,-520,1151r-443,0r844,-1569r-315,-1519r409,0","w":1753},"Y":{"d":"614,0r217,-1327r-335,-1761r442,0r152,1425r8,0v110,-382,387,-1010,557,-1425r434,0r-848,1753r-209,1335r-418,0","w":1610},"Z":{"d":"655,-3088r1368,0r-1359,2728r880,0r-57,360r-1421,0r1368,-2736r-828,0","w":1610},"[":{"d":"639,-3088r905,0r-41,270r-553,0r-471,2961r553,0r-49,283r-897,0","w":1233},"\\":{"d":"913,0r-585,-3400r319,0r586,3400r-320,0","w":1024},"]":{"d":"664,-3088r897,0r-553,3514r-897,0r41,-283r544,0r471,-2961r-544,0","w":1233},"^":{"d":"1409,-3088r201,0r479,1704r-274,0r-365,-1328r-786,1328r-263,0","w":2048},"_":{"d":"1929,770r-2048,0r45,-315r2048,0","w":2048},"`":{"d":"729,-2879r303,-177r242,607r-225,122","w":1143},"a":{"d":"1032,-1753v-111,0,-192,98,-233,192v-61,141,-174,752,-176,963r28,142v19,94,71,145,156,153v144,-15,250,-174,283,-320v82,-357,127,-647,127,-872v0,-172,-62,-258,-185,-258xm930,-2105v156,0,351,122,352,266r4,0r33,-234r393,0r-328,2073r-385,0r41,-262r-8,0v-103,197,-245,295,-426,295v-175,0,-284,-85,-325,-255v-17,-66,-48,-159,-48,-282v0,-406,106,-1000,238,-1249v124,-233,274,-352,459,-352","w":1561},"b":{"d":"807,-1462v-57,166,-135,647,-135,848v0,198,56,311,168,311v161,0,284,-226,311,-393v53,-332,106,-564,106,-697v0,-245,-61,-368,-184,-368v-113,0,-198,101,-266,299xm942,33v-172,0,-325,-134,-336,-295r-8,0r-37,262r-385,0r537,-3400r385,0r-242,1561r8,0v95,-177,236,-266,422,-266v110,0,201,47,267,144v134,196,114,531,61,857v-45,274,-100,505,-172,694v-113,295,-279,443,-500,443","w":1561},"c":{"d":"1106,-410r-57,361v-124,55,-236,82,-336,82v-304,0,-464,-216,-480,-647v-4,-107,14,-260,53,-457v71,-354,161,-606,267,-760v185,-267,490,-349,807,-201r-57,394r-9,0v-23,-66,-84,-99,-184,-99v-130,0,-232,75,-303,226v-58,122,-170,560,-160,774v6,118,20,184,24,200v30,130,81,203,218,218v76,-9,148,-39,217,-91","w":1135},"d":{"d":"782,-1511v-95,277,-159,581,-159,913v0,112,28,174,33,190v24,69,69,113,135,113v122,0,207,-98,274,-258v60,-143,156,-775,152,-958v-3,-130,-64,-250,-185,-250v-110,0,-193,83,-250,250xm1032,-262v-60,158,-242,294,-446,295v-177,0,-283,-96,-318,-287v-14,-73,-35,-173,-35,-299v0,-332,108,-868,205,-1110v118,-294,283,-442,500,-442v185,0,300,89,344,266r4,0r250,-1561r385,0r-537,3400r-393,0r49,-262r-8,0","w":1561},"e":{"d":"664,-958v-15,84,-41,198,-41,344v0,202,69,303,184,303v163,0,262,-128,299,-385r356,0v-47,261,-136,446,-267,556v-135,114,-285,172,-450,173v-333,3,-512,-210,-512,-639v0,-261,43,-497,120,-771v55,-198,139,-370,256,-513v119,-147,271,-216,456,-215v486,4,538,471,474,970r-19,177r-856,0xm713,-1233r454,0v17,-92,25,-174,25,-246v0,-188,-59,-282,-176,-282v-162,0,-263,176,-303,528","w":1479},"f":{"d":"279,0r282,-1769r-192,0r49,-304r188,0r131,-790v35,-214,98,-364,190,-447v175,-157,367,-166,617,-65r-74,397v-90,-58,-228,-66,-300,12v-31,33,-53,85,-64,156r-115,737r320,0r-45,304r-324,0r-278,1769r-385,0","w":1016},"g":{"d":"705,-1241v-42,243,-74,444,-74,602v0,216,68,325,176,328v87,3,154,-48,211,-147v96,-167,182,-661,182,-926v0,-233,-49,-377,-151,-377v-77,0,-146,49,-208,147v-66,103,-111,228,-136,373xm1032,-250v-107,193,-255,287,-446,283v-270,-7,-355,-281,-353,-561v1,-123,17,-297,46,-521v33,-255,88,-468,165,-641v70,-156,147,-263,230,-322v86,-61,175,-92,268,-93v165,-2,278,92,340,282v21,-77,28,-168,45,-250r393,0r-344,2167v-55,351,-173,578,-346,694v-196,132,-611,113,-784,-14v-101,-75,-183,-195,-160,-364r25,-185r376,0v0,20,-5,51,-16,94v7,145,79,218,217,218v144,0,234,-104,270,-312r82,-475r-8,0","w":1569},"h":{"d":"1257,-1450v-1,-20,10,-82,9,-102v0,-139,-59,-209,-176,-209v-168,0,-271,123,-308,368r-213,1393r-385,0r537,-3400r385,0r-250,1569r8,0v118,-177,270,-266,455,-266r115,0v153,20,229,143,229,368v0,89,-8,187,-25,295r-221,1434r-385,0","w":1593},"i":{"d":"889,-2073r-328,2073r-385,0r328,-2073r385,0xm537,-2671v0,-192,259,-371,441,-233v45,34,79,80,79,143v0,155,-101,261,-303,320v-145,-9,-217,-85,-217,-230","w":737},"j":{"d":"889,-2073r-463,2921r-385,0r463,-2921r385,0xm754,-2441v-121,-5,-217,-105,-217,-230v0,-126,161,-282,286,-282v116,0,234,79,234,200v0,161,-101,265,-303,312","w":737},"k":{"d":"721,-3400r385,0r-352,2249r8,0r622,-922r422,0r-671,922r417,1151r-446,0r-361,-1098r-8,0r-168,1098r-385,0","w":1618},"l":{"d":"1098,-3400r-537,3400r-385,0r537,-3400r385,0","w":737},"m":{"d":"1249,-1479r8,-90v0,-128,-59,-192,-176,-192v-107,0,-186,52,-235,156v-29,61,-53,151,-72,270r-213,1335r-385,0r328,-2073r393,0r-41,258r8,0v121,-196,272,-293,455,-290v175,2,316,112,319,290r9,0v120,-194,250,-290,512,-290v229,0,344,119,344,344v0,57,-3,104,-9,143r-253,1618r-386,0r234,-1454r8,-107v0,-133,-56,-200,-168,-200v-205,0,-277,141,-307,336r-221,1425r-385,0","w":2417},"n":{"d":"1319,-2105v249,0,342,103,344,352v0,91,-5,172,-16,242r-230,1511r-385,0r225,-1454v-1,-19,10,-79,9,-98v0,-139,-59,-209,-176,-209v-90,0,-158,30,-204,90v-51,66,-88,178,-112,336r-205,1335r-385,0r320,-2073r393,0r-41,242r8,0v118,-183,270,-274,455,-274","w":1593},"o":{"d":"774,33v-384,0,-534,-255,-532,-656v1,-145,27,-356,77,-634v51,-285,149,-498,293,-638v142,-139,301,-209,478,-210v355,-3,532,226,532,688v0,141,-18,309,-53,504v-114,631,-379,946,-795,946xm781,-1501v-63,172,-158,604,-158,878v0,203,86,304,233,304v173,-37,283,-281,336,-730v9,-75,49,-279,49,-401v0,-202,-64,-303,-192,-303v-118,0,-207,84,-268,252","w":1536},"p":{"d":"1081,-1761v-75,1,-137,40,-186,116v-71,109,-129,308,-174,596v-33,211,-57,356,-57,435v0,202,70,303,184,303v116,0,202,-92,260,-275v68,-215,141,-595,141,-839v0,-225,-56,-337,-168,-336xm938,33v-173,0,-312,-112,-332,-266r-8,0r-172,1081r-385,0r463,-2921r385,0r-41,275r8,0v87,-205,227,-307,418,-307v243,0,364,195,364,585v0,457,-68,847,-204,1168v-109,257,-274,385,-496,385","w":1561},"q":{"d":"1032,-1761v-102,3,-175,70,-229,196v-76,178,-180,660,-180,959v0,199,73,297,192,295v99,-2,176,-68,231,-199v51,-121,95,-304,130,-547v27,-187,41,-318,41,-393v0,-211,-62,-315,-185,-311xm1249,848r-385,0r168,-1081r-8,0v-85,183,-221,274,-410,274v-179,0,-291,-88,-337,-265v-18,-69,-52,-164,-52,-288v0,-364,81,-736,201,-1118v72,-231,255,-475,516,-475v189,0,299,100,332,299r8,0r45,-267r385,0","w":1561},"r":{"d":"184,0r320,-2073r393,0r-41,258r8,0v120,-193,280,-290,479,-290r-57,385v-150,-16,-308,16,-379,96v-66,75,-114,172,-133,297r-205,1327r-385,0","w":1106},"s":{"d":"942,-1753v-177,0,-295,89,-295,258v0,60,26,118,79,174v4,4,55,48,152,131v182,157,273,327,273,510v0,273,-111,479,-332,616v-206,127,-475,132,-684,-2r66,-372v73,81,174,135,303,135v179,0,295,-125,295,-315v0,-69,-27,-134,-82,-196v-19,-23,-74,-72,-163,-147v-175,-147,-264,-304,-267,-473v3,-11,6,-31,8,-61v13,-343,306,-610,647,-610v129,0,243,33,340,98r-57,360v-63,-71,-158,-106,-283,-106","w":1126},"t":{"d":"680,-2654r385,0r-98,581r209,0r-50,304r-204,0r-283,1769r-381,0r279,-1769r-209,0r49,-304r209,0","w":905},"u":{"d":"504,-2073r393,0r-250,1545v9,139,79,209,209,209v149,0,239,-98,270,-295r234,-1459r385,0r-234,1479v-38,241,-138,417,-300,528v-93,64,-203,98,-330,99v-397,3,-622,-96,-623,-479v0,-53,7,-122,21,-209","w":1593},"v":{"d":"385,-2073r406,0r24,1569r16,0v91,-302,210,-662,360,-1078r177,-491r377,0r-873,2073r-258,0","w":1462},"w":{"d":"311,-2073r410,0r-8,1487r8,0v137,-468,296,-964,479,-1487r270,0r0,1487r17,0v115,-411,209,-725,283,-943r192,-544r373,0r-815,2073r-263,0v-4,-227,-10,-471,-25,-733v-25,-426,-13,-424,17,-787r-8,0v-112,430,-272,937,-479,1520r-275,0","w":1991},"x":{"d":"385,-2073r455,0r176,713v75,-174,200,-412,377,-713r401,0r-618,975r393,1098r-459,0v-66,-228,-205,-620,-205,-840r-8,0v-58,250,-310,606,-442,840r-398,0r688,-1098","w":1618},"y":{"d":"344,-2073r430,0r74,1450r8,0r578,-1450r389,0r-1303,2921r-409,0r483,-1016","w":1528},"z":{"d":"438,-2073r1200,0r-966,1729r655,0r-45,344r-1225,0r992,-1729r-664,0","w":1376},"{":{"d":"512,-848v37,-232,-54,-361,-303,-385r33,-217v281,-20,386,-128,422,-356r110,-705v41,-266,88,-373,259,-492v103,-71,308,-100,503,-85r-41,233v-146,11,-242,47,-287,110v-50,70,-83,156,-98,259r-102,688v-38,255,-190,407,-455,455r0,8v207,39,311,157,311,352r-8,152r-94,598v-1,4,-9,68,-25,192v9,132,102,204,279,217r-41,234r-144,0v-293,0,-454,-120,-454,-361v0,-51,23,-167,33,-233","w":1057},"|":{"d":"369,0r536,-3400r287,0r-537,3400r-286,0","w":1024},"}":{"d":"1249,-1233v-278,18,-393,130,-426,344r-110,705v-13,83,-30,159,-50,228v-77,267,-344,396,-720,366r41,-234v183,-13,296,-82,339,-205v13,-37,25,-91,37,-164r111,-688v41,-257,197,-409,467,-454r0,-8v-211,-41,-332,-159,-332,-353v0,-81,14,-131,17,-151r106,-611v11,-61,16,-117,16,-168v0,-140,-94,-216,-282,-229r33,-233r151,0v301,0,451,134,451,401v0,69,-6,136,-17,201r-114,655v0,10,-6,50,-17,119v10,158,121,245,332,262","w":1057},"~":{"d":"319,-872v168,-292,339,-480,521,-480v99,0,236,49,411,146v95,53,145,81,149,83v63,31,116,48,161,50v16,-5,35,-8,57,-8v99,-23,211,-132,336,-328r110,192v-156,253,-335,405,-536,455v-87,-3,-213,-53,-380,-148v-163,-93,-274,-139,-333,-139v-96,0,-190,68,-281,205r-108,164","w":2048},"\u00a0":{"w":840}}});
;

