/*
 * 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")}})})();;
// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
// $Id: fancy_login.js,v 1.16 2011/01/25 05:49:48 hakulicious Exp $
(function($)
{
	var popupVisible = false;
	var ctrlPressed = false;

	function showLogin()
	{
		var settings = Drupal.settings.fancyLogin;
		var loginBox = $("#fancy_login_login_box");
		if(!popupVisible) {
			popupVisible = true;
			if(settings.hideObjects) {
				$("object, embed").css("visibility", "hidden");
			}
			$("#fancy_login_dim_screen").css({"position" : "fixed", "top" : "0", "left" : "0", "height" : "100%", "width" : "100%", "display" : "block", "background-color" : settings.screenFadeColor, "z-index" : settings.screenFadeZIndex, "opacity" : "0"}).fadeTo(settings.dimFadeSpeed, 0.8, function()
			{
				loginBox.css({"position" : "fixed", "width" : settings.loginBoxWidth, "height" : settings.loginBoxHeight});
				var wHeight = window.innerHeight ? window.innerHeight : $(window).height();
				var wWidth = $(window).width();
				var eHeight = loginBox.height();
				var eWidth = loginBox.width();
				var eTop = (wHeight - eHeight) / 2;
				var eLeft = (wWidth - eWidth) / 2;
				if($("#fancy_login_close_button").css("display") === "none") {
					$("#fancy_login_close_button").css("display", "inline");
				}
				loginBox.css({"top" : eTop, "left" : eLeft, "color" : settings.loginBoxTextColor, "background-color" : settings.loginBoxBackgroundColor, "border-style" : settings.loginBoxBorderStyle, "border-color" : settings.loginBoxBorderColor, "border-width" : settings.loginBoxBorderWidth, "z-index" : (settings.screenFadeZIndex + 1), "display" : "none", "padding-left" : "15px", "padding-right" : "15px"})
				.fadeIn(settings.boxFadeSpeed);
				loginBox.find(".form-text:first").focus().select();
				setCloseListener();
			});
		}
	}

	function setCloseListener()
	{
		$("#fancy_login_dim_screen, #fancy_login_close_button").click(function()
		{
			hideLogin();
			return false;
		});
		$("#fancy_login_login_box form").submit(function()
		{
			submitted();
		});
		$("#fancy_login_login_box a:not('#fancy_login_close_button')").click(function()
		{
			submitted();
		});
		$(document).keyup(function(event)
		{
		    if(event.keyCode === 27) {
		        hideLogin();
		    }
		});
	}

	function hideLogin()
	{
		var settings = Drupal.settings.fancyLogin;
		if(popupVisible) {
			popupVisible = false;
			$("#fancy_login_login_box").fadeOut(settings.boxFadeSpeed, function()
			{
				$(this).css({"position" : "static", "height" : "auto", "width" : "auto",  "background-color" : "transparent", "border" : "none" });
				$("#fancy_login_dim_screen").fadeOut(settings.dimFadeSpeed, function()
				{
					if(settings.hideObjects) {
						$("object, embed").css("visibility", "visible");
					}
				});
				$(window).focus();
			});
		}
	}

	function submitted(requestPassword)
	{
		var formContents = $("#fancy_login_form_contents");
		var ajaxLoader = $("#fancy_login_ajax_loader");
		var wHeight = formContents.height();
		var wWidth = formContents.width();
		ajaxLoader.css({"height" : wHeight, "width" : wWidth});
		formContents.fadeOut(300, function()
		{
			ajaxLoader.fadeIn(300);
			var img = ajaxLoader.children("img:first");
			var imgHeight = img.height();
			var imgWidth = img.width();
			var eMarginTop = (wHeight - imgHeight) / 2;
			var eMarginLeft = (wWidth - imgWidth) / 2;
			img.css({"margin-left" : eMarginLeft, "margin-top" : eMarginTop});
			if(requestPassword) {
				getRequestPassword();
			}
		});
	}

	function getRequestPassword()
	{
		var settings = Drupal.settings;
		var passwordPath = settings.fancyLogin.loginPath.replace(/login/, "password");
		$.ajax(
		{
			url:settings.basePath + passwordPath,
			dataFilter:function(data)
			{
				return $(data).find("#user-pass");
			},
			success:function(data)
			{
				var formContents = $("#fancy_login_form_contents");
				formContents.children("form").css("display", "none");
				var itemList = formContents.children(".item-list");
				itemList.before(data);
				$("#fancy_login_ajax_loader").fadeOut(300, function()
				{
					toggle = $("<li><a id=\"toggle_link\" href=\"#\">" + Drupal.t("Login") + "</a></li>");
					toggle.click(function()
					{
						toggleForm();
					});
					itemList.children("ul").append(toggle);
					$("#user-pass").attr("action", $("#user-pass").attr("action") + settings.fancyLogin.requestDestination);
					formContents.fadeIn(300);
				});
			}
		});
	}
	
	function toggleForm()
	{
		currentForm = ($("#fancy_login_form_contents #user-login").css("display") == "none") ? "#user-pass" : "#user-login";
		targetForm = (currentForm == "#user-login") ? "#user-pass" : "#user-login";
		linkText = (currentForm == "#user-login") ? Drupal.t("Login") : Drupal.t("Request new password");
		$(currentForm).fadeOut(300, function()
		{
			$(targetForm).fadeIn(300);
			$("#toggle_link").text(linkText);
		});
	}

	Drupal.behaviors.fancyLogin = function()
	{
		var settings = Drupal.settings.fancyLogin;
		if(!$.browser.msie || $.browser.version > 6 || window.XMLHttpRequest) {
			$("a[href*='" + settings.loginPath + "']").each(function()
			{
				if(settings.destination) {
					var targetHREF = $(this).attr("href");
					if(targetHREF.search(/destination=/i) === -1) {
						targetHREF += settings.destination;
						$(this).attr("href", targetHREF);
					}
				}
				$(this).click(function()
				{
					var action = $(this).attr("href");
					if(settings.httpsRoot) {
						action = settings.httpsRoot + action;
					}
					$("#fancy_login_login_box form").attr("action", action);
					showLogin();
					return false;
				});
			});
			$(document).keyup(function(e)
			{
				if(e.keyCode === 17) {
					ctrlPressed = false;
				}
			});
			$(document).keydown(function(e)
			{
				if(e.keyCode === 17) {
					ctrlPressed = true;
				}
				if(ctrlPressed === true && e.keyCode === 190) {
					ctrlPressed = false;
					if(popupVisible) {
						hideLogin();
					} else {
						showLogin();
					}
				}
			});
			$("#fancy_login_login_box a[href*='" + settings.loginPath.replace(/login/, "password") + "']").click(function()
			{
				$(this).fadeOut(200);
				submitted(true);
				return false;
			});
		}
	};
}(jQuery));;
/* $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: mollom.js,v 1.2.2.13 2010/08/07 02:49:44 dries Exp $
(function ($) {

/**
 * Open Mollom privacy policy link in a new window.
 *
 * Required for valid XHTML Strict markup.
 */
Drupal.behaviors.mollomPrivacy = function (context) {
  $('.mollom-privacy a', context).click(function () {
    this.target = '_blank';
  });
};

/**
 * Attach click event handlers for CAPTCHA links.
 */
Drupal.behaviors.mollomCaptcha = function (context) {
  $('a.mollom-switch-captcha', context).click(getMollomCaptcha);
};

/**
 * Fetch a Mollom CAPTCHA and output the image or audio into the form.
 */
function getMollomCaptcha() {
  // Get the current requested CAPTCHA type from the clicked link.
  var newCaptchaType = $(this).hasClass('mollom-audio-captcha') ? 'audio' : 'image';

  var context = $(this).parents('form');

  // Extract the Mollom session id from the form.
  var mollomSessionId = $('input.mollom-session-id', context).val();

  // Retrieve a CAPTCHA:
  $.getJSON(Drupal.settings.basePath + 'mollom/captcha/' + newCaptchaType + '/' + mollomSessionId,
    function (data) {
      if (!(data && data.content)) {
        return;
      }
      // Inject new CAPTCHA.
      $('.mollom-captcha-content', context).parent().html(data.content);
      // Update session id.
      $('input.mollom-session-id', context).val(data.session_id);
      // Add an onclick-event handler for the new link.
      Drupal.attachBehaviors(context);
      // Focus on the CATPCHA input.
      $('input[name="mollom[captcha]"]', context).focus();
    }
  );
  return false;
}

})(jQuery);
;
// $Id: poormanscron.js,v 1.1.2.3 2010/01/17 00:27:52 davereid Exp $
(function ($) {

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

})(jQuery);
;
/**
* hoverIntent r5 // 2007.03.27 // jQuery 1.1.2+
* <http://cherne.net/brian/resources/jquery.hoverIntent.html>
* 
* @param  f  onMouseOver function || An object with configuration options
* @param  g  onMouseOut function  || Nothing (use configuration options object)
* @author    Brian Cherne <brian@cherne.net>
*/
(function($){$.fn.hoverIntent=function(f,g){var cfg={sensitivity:7,interval:100,timeout:0};cfg=$.extend(cfg,g?{over:f,out:g}:f);var cX,cY,pX,pY;var track=function(ev){cX=ev.pageX;cY=ev.pageY;};var compare=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);if((Math.abs(pX-cX)+Math.abs(pY-cY))<cfg.sensitivity){$(ob).unbind("mousemove",track);ob.hoverIntent_s=1;return cfg.over.apply(ob,[ev]);}else{pX=cX;pY=cY;ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}};var delay=function(ev,ob){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);ob.hoverIntent_s=0;return cfg.out.apply(ob,[ev]);};var handleHover=function(e){var p=(e.type=="mouseover"?e.fromElement:e.toElement)||e.relatedTarget;while(p&&p!=this){try{p=p.parentNode;}catch(e){p=this;}}if(p==this){return false;}var ev=jQuery.extend({},e);var ob=this;if(ob.hoverIntent_t){ob.hoverIntent_t=clearTimeout(ob.hoverIntent_t);}if(e.type=="mouseover"){pX=ev.pageX;pY=ev.pageY;$(ob).bind("mousemove",track);if(ob.hoverIntent_s!=1){ob.hoverIntent_t=setTimeout(function(){compare(ev,ob);},cfg.interval);}}else{$(ob).unbind("mousemove",track);if(ob.hoverIntent_s==1){ob.hoverIntent_t=setTimeout(function(){delay(ev,ob);},cfg.timeout);}}};return this.mouseover(handleHover).mouseout(handleHover);};})(jQuery);;
/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */
;(function($){$.fn.superfish=function(op){var sf=$.fn.superfish,c=sf.c,$arrow=$(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),over=function(){var $$=$(this),menu=getMenu($$);clearTimeout(menu.sfTimer);$$.showSuperfishUl().siblings().hideSuperfishUl()},out=function(){var $$=$(this),menu=getMenu($$),o=sf.op;clearTimeout(menu.sfTimer);menu.sfTimer=setTimeout(function(){o.retainPath=($.inArray($$[0],o.$path)>-1);$$.hideSuperfishUl();if(o.$path.length&&$$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path)}},o.delay)},getMenu=function($menu){var menu=$menu.parents(['ul.',c.menuClass,':first'].join(''))[0];sf.op=sf.o[menu.serial];return menu},addArrow=function($a){$a.addClass(c.anchorClass).append($arrow.clone())};return this.each(function(){var s=this.serial=sf.o.length;var o=$.extend({},sf.defaults,op);o.$path=$('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){$(this).addClass([o.hoverClass,c.bcClass].join(' ')).filter('li:has(ul)').removeClass(o.pathClass)});sf.o[s]=sf.op=o;$('li:has(ul)',this)[($.fn.hoverIntent&&!o.disableHI)?'hoverIntent':'hover'](over,out).each(function(){if(o.autoArrows)addArrow($('>a:first-child',this))}).not('.'+c.bcClass).hideSuperfishUl();var $a=$('a',this);$a.each(function(i){var $li=$a.eq(i).parents('li');$a.eq(i).focus(function(){over.call($li)}).blur(function(){out.call($li)})});o.onInit.call(this)}).each(function(){var menuClasses=[c.menuClass];if(sf.op.dropShadows&&!($.browser.msie&&$.browser.version<7))menuClasses.push(c.shadowClass);$(this).addClass(menuClasses.join(' '))})};var sf=$.fn.superfish;sf.o=[];sf.op={};sf.IE7fix=function(){var o=sf.op;if($.browser.msie&&$.browser.version>6&&o.dropShadows&&o.animation.opacity!=undefined)this.toggleClass(sf.c.shadowClass+'-off')};sf.c={bcClass:'sf-breadcrumb',menuClass:'sf-js-enabled',anchorClass:'sf-with-ul',arrowClass:'sf-sub-indicator',shadowClass:'sf-shadow'};sf.defaults={hoverClass:'sfHover',pathClass:'overideThisToUse',pathLevels:1,delay:800,animation:{opacity:'show'},speed:'normal',autoArrows:true,dropShadows:true,disableHI:false,onInit:function(){},onBeforeShow:function(){},onShow:function(){},onHide:function(){}};$.fn.extend({hideSuperfishUl:function(){var o=sf.op,not=(o.retainPath===true)?o.$path:'';o.retainPath=false;var $ul=$(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass).find('>ul').hide().css('visibility','hidden');o.onHide.call($ul);return this},showSuperfishUl:function(){var o=sf.op,sh=sf.c.shadowClass+'-off',$ul=this.addClass(o.hoverClass).find('>ul:hidden').css('visibility','visible');sf.IE7fix.call($ul);o.onBeforeShow.call($ul);$ul.animate(o.animation,o.speed,function(){sf.IE7fix.call($ul);o.onShow.call($ul)});return this}})})(jQuery);;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
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("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.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}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1989, 1992, 1994, 1996, 1998, 1999, 2000, 2001 Adobe Systems Incorporated.
 * All rights reserved.
 * 
 * Trademark:
 * Adobe Garamond is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * AGaramondPro-Regular
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 * 
 * Designer:
 * Robert Slimbach
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Adobe Garamond Pro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 2 5 2 6 5 6 2 4 3","ascent":"261","descent":"-99","x-height":"5","cap-height":"1","bbox":"-14 -270 357.925 97","underline-thickness":"18","underline-position":"-18","stemh":"14","stemv":"27","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":90,"k":{"W":5,"V":5,"T":16,"Y":5}},"!":{"d":"40,5v-10,0,-21,-8,-21,-20v0,-12,9,-21,21,-21v12,0,20,9,20,21v0,12,-8,20,-20,20xm40,-233v26,2,18,12,15,43r-11,116v-2,2,-7,2,-9,0r-13,-148v0,-9,6,-11,18,-11","w":79},"\"":{"d":"44,-252v17,0,16,6,14,23r-10,58v-3,3,-5,3,-8,0r-12,-72v0,-8,6,-9,16,-9xm102,-252v18,0,16,7,13,23r-9,58v-3,3,-6,3,-9,0r-11,-72v0,-8,6,-9,16,-9","w":145},"#":{"d":"120,-145r-42,0r-16,58r43,0xm172,-145r-37,0r-15,58r35,0r-5,18r-36,0r-18,68r-14,0r18,-68r-43,0r-18,68r-14,0r18,-68r-40,0r6,-18r39,0r15,-58r-40,0r6,-18r39,0r16,-62r16,0r-17,62r42,0r16,-62r16,0r-17,62r37,0"},"$":{"d":"90,-138r10,-82v-66,5,-47,66,-10,82xm98,-103r-11,92v24,0,47,-10,47,-39v0,-16,-4,-36,-36,-53xm117,-258r-4,28v11,0,23,2,36,5v3,8,8,28,8,41v-1,3,-6,3,-8,1v-4,-11,-12,-30,-37,-36r-10,87v28,14,58,33,58,70v0,36,-29,62,-75,62r-4,34v-3,2,-9,2,-12,0r5,-35v-50,-4,-51,-11,-54,-58v1,-2,5,-4,8,-1v5,15,17,42,47,48r12,-96v-26,-11,-54,-31,-54,-65v0,-32,25,-56,69,-57v2,-11,-2,-37,15,-28"},"%":{"d":"288,-65v0,28,-16,70,-55,70v-39,0,-56,-42,-56,-70v0,-29,17,-70,56,-70v39,0,55,41,55,70xm262,-65v0,-19,-3,-60,-29,-60v-26,0,-30,41,-30,60v0,19,4,60,30,60v26,0,29,-41,29,-60xm126,-161v0,28,-16,70,-55,70v-39,0,-55,-42,-55,-70v0,-29,16,-69,55,-69v39,0,55,40,55,69xm100,-161v0,-19,-2,-59,-28,-59v-26,0,-30,40,-30,59v0,19,4,60,30,60v26,0,28,-41,28,-60xm229,-229r-147,243v-6,0,-10,-3,-10,-8r145,-241v4,0,9,2,12,6","w":303},"&":{"d":"183,-74v10,-14,38,-59,45,-83v1,-9,-33,0,-21,-15r80,-2v8,11,-8,10,-15,12v-20,3,-30,21,-41,39v-12,19,-27,39,-42,60v22,39,59,70,96,37v3,0,5,4,4,7v-14,18,-35,24,-57,24v-38,0,-47,-22,-60,-44v-21,23,-47,44,-79,44v-51,0,-70,-37,-70,-65v0,-37,26,-59,58,-78v-13,-9,-28,-23,-28,-44v0,-57,98,-65,97,-6v0,24,-18,34,-36,44v20,12,45,35,69,70xm90,-131v-18,9,-40,31,-40,60v-1,66,87,68,115,22v-17,-30,-46,-63,-75,-82xm102,-220v-38,7,-31,56,4,69v24,-11,32,-66,-4,-69","w":294},"(":{"d":"108,-248v-73,65,-73,236,0,301v0,4,-1,6,-5,6v-96,-54,-97,-258,0,-312v4,0,5,1,5,5","w":115,"k":{"W":-4,"V":-4,"J":-12,"T":-4,"Y":-4}},")":{"d":"7,53v74,-65,74,-236,0,-301v0,-4,1,-5,5,-5v96,54,97,258,0,312v-4,0,-5,-2,-5,-6","w":115},"*":{"d":"76,-243r3,46r45,-22v3,0,6,4,5,7r-42,29r41,29v1,3,0,7,-4,7r-45,-23r-3,47v-2,2,-7,2,-9,0r-4,-47r-45,23v-3,0,-5,-4,-4,-7r41,-29r-41,-29v-1,-3,1,-7,4,-7r45,22r4,-46v2,-2,6,-2,9,0","w":141},"+":{"d":"101,0r-21,0r0,-65r-59,0r0,-18r59,0r0,-59r21,0r0,59r58,0r0,18r-58,0r0,65"},",":{"d":"50,4v-3,-23,-27,-15,-27,-32v0,-8,6,-16,18,-16v49,11,24,84,-19,88v-10,-17,32,-14,28,-40","w":90},"-":{"d":"14,-81r84,-8v7,4,8,15,3,21r-84,8v-6,-5,-7,-15,-3,-21","w":115,"k":{"W":25}},".":{"d":"45,5v-10,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v12,0,20,9,20,21v0,12,-8,20,-20,20","w":90},"\/":{"d":"107,-247r-75,253r-21,0r75,-253r21,0","w":117},"0":{"d":"90,-230v102,0,101,235,0,235v-53,0,-75,-61,-75,-118v0,-54,22,-117,75,-117xm90,-220v-40,0,-42,73,-42,107v0,34,2,107,42,107v40,0,42,-73,42,-107v0,-34,-2,-107,-42,-107"},"1":{"d":"79,-44r0,-122v3,-34,-9,-34,-34,-36v-3,-1,-4,-7,-1,-8v33,-4,50,-18,63,-19r-1,185v-2,37,5,35,30,36v2,2,3,8,0,9v-30,-2,-56,-1,-86,0v-3,-1,-3,-7,-1,-9v24,-1,30,1,30,-36"},"2":{"d":"9,-4v34,-29,111,-88,111,-154v0,-33,-16,-53,-45,-53v-22,0,-37,15,-47,36v-3,2,-9,0,-9,-5v17,-64,133,-70,132,8v11,37,-83,126,-93,146v24,9,98,9,101,-19v3,-1,7,0,8,2v-5,18,-12,37,-17,44r-138,0v-1,0,-3,-2,-3,-5"},"3":{"d":"161,-82v0,52,-70,102,-111,102v-16,0,-35,-5,-35,-22v0,-7,5,-14,14,-14v18,1,16,24,36,24v23,0,65,-31,65,-71v0,-32,-16,-59,-47,-59v-18,0,-31,9,-39,18v-6,-1,-10,-6,-8,-13v26,-14,77,-23,77,-66v0,-48,-65,-30,-78,1v-4,1,-8,-1,-8,-5v13,-48,113,-64,116,-2v0,15,-6,29,-39,46v-2,4,0,5,4,5v27,2,53,22,53,56"},"4":{"d":"109,-159v0,-10,13,-12,21,-13v5,0,5,4,5,11r0,70v-3,20,43,-6,31,23v-11,2,-32,-6,-31,8v1,29,-5,58,25,52v2,2,2,8,-1,9v-30,-2,-51,-1,-82,0v-3,-1,-3,-7,-1,-9v32,4,35,-11,33,-51v0,-9,-2,-9,-11,-9r-86,0v-9,-3,-5,-12,2,-20r115,-161v3,-6,17,-8,20,-2r-116,162v-4,6,1,6,10,6r56,0v9,0,10,-2,10,-10r0,-66"},"5":{"d":"28,-149r19,-64v2,-6,4,-9,10,-10r86,-12v10,5,-6,20,-9,25r-68,10v-16,0,-14,19,-19,31v-3,7,5,7,12,7v45,0,96,24,96,79v0,62,-72,105,-129,107v-4,-1,-4,-8,-1,-11v56,-3,103,-37,103,-86v0,-51,-55,-64,-97,-65v-5,0,-6,-3,-3,-11"},"6":{"d":"14,-85v0,-31,11,-76,49,-113v37,-37,81,-48,103,-51v3,1,3,6,1,8v-23,8,-54,18,-80,46v-31,32,-41,72,-41,109v0,42,14,80,50,80v27,0,41,-24,41,-55v0,-37,-22,-70,-61,-57v-3,-13,22,-17,35,-17v35,0,57,28,57,65v0,42,-31,75,-76,75v-53,0,-78,-41,-78,-90"},"7":{"d":"129,-203v-42,0,-94,-14,-111,18v-3,1,-7,0,-8,-3v4,-10,10,-24,13,-38v33,2,114,2,147,0v1,0,2,2,2,3v-42,72,-85,168,-125,246v-6,1,-11,-2,-12,-7r101,-206v5,-11,5,-13,-7,-13"},"8":{"d":"95,-230v32,0,59,17,59,52v0,30,-24,43,-42,55v25,14,47,33,47,67v0,38,-30,61,-72,61v-32,0,-66,-16,-66,-60v0,-27,24,-46,48,-61v-21,-12,-41,-28,-41,-56v0,-37,30,-58,67,-58xm91,-6v26,0,42,-17,42,-43v0,-28,-27,-48,-53,-60v-24,16,-33,36,-33,51v0,30,17,52,44,52xm92,-220v-25,0,-38,19,-38,40v0,25,25,40,48,51v37,-18,39,-91,-10,-91"},"9":{"d":"86,-220v-23,0,-40,18,-40,50v0,34,20,71,57,59v2,10,-17,14,-31,15v-29,0,-55,-24,-55,-61v0,-43,33,-73,74,-73v45,0,71,38,71,91v0,39,-16,86,-53,119v-27,24,-61,38,-85,42v-3,-1,-4,-7,-2,-9v70,-23,105,-57,108,-154v0,-33,-9,-79,-44,-79"},":":{"d":"45,-101v-10,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v12,0,20,9,20,21v0,12,-8,20,-20,20xm45,5v-10,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v12,0,20,9,20,21v0,12,-8,20,-20,20","w":90},";":{"d":"50,4v-3,-23,-27,-15,-27,-32v0,-8,6,-16,18,-16v49,11,24,84,-19,88v-10,-17,32,-14,28,-40xm45,-101v-10,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v12,0,20,9,20,21v0,12,-8,20,-20,20","w":90},"<":{"d":"20,-82r140,-67r0,21r-114,54r114,54r0,20r-140,-66r0,-16"},"=":{"d":"159,-110r0,18r-138,0r0,-18r138,0xm159,-56r0,18r-138,0r0,-18r138,0"},">":{"d":"20,-149r140,67r0,16r-140,66r0,-20r114,-55r-114,-53r0,-21"},"?":{"d":"65,-144v41,-21,13,-67,-30,-60v-3,0,-12,-6,-12,-15v0,-7,5,-14,14,-14v40,0,83,75,49,106v-20,11,-52,18,-38,52v-1,3,-5,4,-7,2v-13,-18,-21,-55,6,-62xm45,5v-10,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v12,0,21,9,21,21v0,12,-9,20,-21,20","w":115},"@":{"d":"163,-117v-33,3,-60,58,-61,83v7,12,12,2,33,-14v19,-14,39,-48,43,-59v-2,-5,-7,-10,-15,-10xm74,-29v2,-27,54,-106,99,-101v5,0,11,3,13,8r9,-18v6,-2,15,0,18,4v-5,11,-36,85,-42,100v-3,8,-1,12,8,12v38,-1,70,-29,70,-74v0,-51,-41,-83,-94,-83v-71,0,-114,60,-114,126v0,42,25,99,107,99v26,0,44,-8,56,-13v3,1,4,4,3,7v-81,44,-191,9,-191,-93v0,-85,68,-138,142,-138v134,0,143,179,13,180v-50,1,-16,-20,-14,-42v-22,22,-53,42,-68,42v-10,0,-15,-8,-15,-16","w":275},"A":{"d":"167,-15v-4,-21,-13,-49,-20,-69v-6,-19,-48,-5,-70,-9v-22,2,-16,33,-26,47v-5,16,-8,26,-8,30v-4,11,35,3,22,17v-16,-2,-53,-1,-72,0v-7,-18,31,-3,33,-28r68,-177v5,-13,7,-20,6,-26v12,-1,16,-18,24,-10r65,193v13,36,15,37,41,39v3,2,2,8,0,9v-25,-2,-63,-1,-85,0v-3,-1,-4,-7,-1,-9v8,-1,24,-1,23,-7xm107,-199v-10,21,-23,58,-32,83v-3,8,-2,9,8,9r44,0v10,0,11,-1,8,-11","w":224,"k":{"c":4,"C":4,"d":4,"e":2,"G":4,"o":2,"O":4,"t":2,"T":25,"u":6,"U":7,"Y":22,"z":-2,"Q":4,"V":29,"W":36,"b":4,"p":4,"q":2,"v":15,"w":15}},"B":{"d":"17,-236v58,-3,168,-19,166,52v0,26,-15,40,-37,50v0,4,3,4,7,5v19,4,48,21,48,60v0,56,-63,69,-139,69v-16,0,-28,1,-41,1v-4,-3,-2,-12,5,-10v19,-3,20,-7,20,-45r0,-137v1,-34,-6,-35,-29,-36v-3,-2,-3,-8,0,-9xm76,-113v1,47,-12,103,36,103v32,0,56,-14,56,-50v0,-28,-15,-62,-72,-62v-19,0,-20,2,-20,9xm97,-228v-13,0,-20,0,-21,12r0,73v0,10,0,11,18,10v37,-1,57,-12,57,-46v0,-35,-27,-49,-54,-49","w":217,"k":{"h":4,"b":2,"W":12,"V":7,"e":2,"T":4,"u":4,"U":4,"r":4,"y":6,"a":4,"i":4,"k":4,"l":4}},"C":{"d":"226,-6v-92,32,-210,-5,-210,-111v0,-105,113,-148,216,-116v0,8,2,31,5,53v-2,3,-6,2,-9,0v-5,-24,-22,-52,-74,-52v-55,0,-102,34,-102,109v0,76,48,118,107,118v46,0,67,-31,75,-52v3,-2,8,-1,9,2v-3,19,-12,42,-17,49","w":250,"k":{"u":6,"z":6,"r":2,"y":9}},"D":{"d":"264,-122v0,72,-61,129,-143,125v-44,-1,-64,-5,-104,-2v-5,-4,0,-12,7,-10v21,-3,22,-7,22,-45r0,-137v1,-30,-4,-35,-25,-36v-3,-2,-3,-9,1,-9v31,-3,59,-3,90,-3v88,0,152,43,152,117xm115,-228v-38,0,-40,-5,-39,33r0,133v-1,42,10,54,51,54v70,0,101,-46,101,-113v0,-40,-19,-107,-113,-107","w":280,"k":{"e":2,"o":4,"u":4,"Y":4,"V":7,"W":7,"r":4,"a":2,"i":4,"h":6}},"E":{"d":"76,-57v3,44,-5,46,50,46v57,0,48,-4,72,-40v3,-2,8,-1,9,2v-3,13,-12,40,-17,50r-177,0v-7,-8,3,-10,11,-10v21,-2,22,-7,22,-45r0,-130v1,-41,-3,-43,-28,-46v-2,-1,-1,-8,1,-9r159,0v2,6,5,32,6,48v-1,2,-7,3,-9,1v-3,-38,-42,-38,-89,-36v-11,0,-10,0,-10,14r0,72v-4,18,20,7,32,10v33,0,39,1,42,-29v2,-2,9,-3,10,0v-2,17,-2,54,0,71v-17,8,-7,-28,-24,-28r-49,-1v-11,0,-11,0,-11,9r0,51","w":210,"k":{"c":2,"d":2,"e":2,"o":2,"t":6,"u":6,"Y":4,"z":2,"V":4,"W":4,"b":4,"p":6,"q":2,"v":11,"w":11,"r":2,"y":15,"i":2,"h":4,"g":2,"k":4,"l":4,"n":2,"f":4,"j":4,"m":2,"x":2}},"F":{"d":"76,-212r0,76v-3,18,23,7,36,10v33,0,39,0,43,-30v2,-2,8,-2,9,0v-1,18,-1,54,0,72v-16,6,-8,-25,-24,-28v-9,-2,-38,-2,-53,-2v-11,0,-11,1,-11,10v3,33,-12,102,22,95v8,-1,18,2,11,10r-93,0v-5,-5,0,-12,8,-10v21,-3,22,-7,22,-45r0,-130v1,-42,-3,-42,-27,-46v-2,-1,-2,-8,0,-9r157,0v0,17,0,34,1,48v-1,2,-6,3,-9,1v0,-36,-38,-38,-82,-36v-11,0,-10,0,-10,14","w":193,"k":{".":50,",":50,"e":13,"o":13,"u":9,"r":13,"y":6,"a":17,"i":12,"l":6,"A":13}},"G":{"d":"161,-5v40,0,43,-7,43,-46v0,-38,-13,-32,-39,-37v-3,-1,-3,-8,0,-9v19,1,65,2,89,0v6,3,2,11,-5,10v-28,1,-16,66,-7,80v-24,3,-58,13,-83,13v-74,0,-144,-47,-142,-122v2,-77,56,-128,146,-127v35,0,46,7,68,8v0,12,3,30,6,52v-1,3,-8,4,-10,2v-10,-39,-37,-52,-74,-52v-70,0,-100,50,-100,104v0,69,36,124,108,124","w":268,"k":{"e":2,"o":2,"u":4,"r":9,"y":4,"a":2,"i":4,"h":4,"l":2,"n":6}},"H":{"d":"197,-116r-103,0v-36,-4,-11,40,-18,62v-1,44,5,44,32,46v2,1,1,8,-1,9v-34,-2,-56,-1,-87,0v-4,-3,-2,-12,5,-10v20,-4,21,-7,21,-45r0,-130v1,-45,-4,-44,-31,-46v-2,-1,-1,-8,1,-9r87,0v4,5,1,12,-6,10v-32,-7,-21,56,-21,87v0,11,1,11,18,11r103,0v34,5,12,-32,18,-53v1,-43,-3,-43,-29,-46v-2,-1,-2,-8,0,-9r87,0v4,5,-1,12,-7,10v-21,2,-22,7,-22,45r0,130v-1,43,3,43,30,46v2,1,2,8,0,9r-88,0v-4,-4,1,-11,7,-10v36,5,22,-62,22,-96v0,-11,-1,-11,-18,-11","w":290,"k":{"e":6,"o":6,"u":11,"y":9,"a":2,"i":6}},"I":{"d":"46,-55r0,-128v1,-44,-4,-45,-31,-47v-2,-1,-1,-8,1,-9r90,0v5,6,0,12,-8,10v-21,2,-22,8,-22,46r0,128v-1,43,4,44,31,47v2,1,1,8,-1,9r-90,0v-5,-5,0,-12,8,-10v21,-3,22,-8,22,-46","w":121,"k":{"c":6,"d":6,"e":6,"o":6,"t":9,"u":12,"z":2,"b":2,"p":12,"v":9,"w":9,"r":6,"y":4,"a":6,"i":4,"h":2,"g":2,"k":2,"l":2,"n":4,"f":2,"j":6,"m":4,"s":6}},"J":{"d":"28,53v31,-3,23,-75,23,-100r0,-136v1,-46,-5,-44,-33,-47v-2,-1,-2,-8,0,-9r90,0v4,4,1,11,-5,10v-21,3,-22,8,-22,46r0,134v4,71,-22,118,-79,121v-4,0,-16,0,-16,-7v0,-21,25,-16,42,-12","w":124,"k":{"e":11,"o":11,"u":13,"y":4,"a":11,"i":9}},"K":{"d":"46,-54r0,-130v1,-44,-4,-43,-31,-46v-2,-1,-1,-8,1,-9r87,0v4,5,1,12,-6,10v-32,-7,-18,56,-21,87v-2,14,6,15,14,10r58,-56v9,-9,27,-25,30,-36v-1,-5,-27,-5,-15,-15v24,1,52,2,75,0v3,2,3,7,1,9v-49,5,-80,52,-116,83v-11,9,-13,11,-2,22r90,101v11,12,21,15,39,16v3,2,2,8,-1,9v-22,-2,-58,-1,-84,0v-3,-1,-4,-7,-2,-9v12,0,24,-4,12,-13r-58,-66v-21,-23,-26,-31,-35,-31v-12,6,-5,46,-6,64v-2,44,3,44,30,46v2,1,1,8,-1,9r-85,0v-4,-3,-1,-12,6,-10v19,-3,20,-7,20,-45","w":243,"k":{"C":13,"e":2,"G":13,"o":6,"O":13,"u":9,"Q":13,"v":11,"w":17,"y":9}},"L":{"d":"76,-58v4,45,-4,47,46,47v60,0,46,-4,68,-40v2,-2,9,-1,9,2v0,4,-10,40,-15,50r-170,0v-2,-1,-2,-7,0,-9v28,-2,32,-2,32,-46r0,-130v2,-44,-4,-43,-32,-46v-2,-1,-2,-8,0,-9r91,0v5,5,0,11,-7,10v-21,2,-22,7,-22,45r0,126","w":199,"k":{"C":4,"G":4,"O":4,"T":36,"u":2,"U":6,"Y":25,"Q":4,"V":32,"W":40,"w":13,"y":17,"j":4,"A":-4}},"M":{"d":"65,-191v-5,47,-4,100,-7,149v-2,35,7,32,30,34v3,2,2,8,-1,9v-24,-1,-52,-2,-76,0v-5,-5,0,-11,7,-10v15,-2,20,-5,22,-30r10,-159v3,-26,-6,-29,-29,-32v-2,-2,-2,-8,1,-9v23,2,34,1,58,0v12,65,58,137,86,192v25,-57,74,-135,89,-192v25,2,35,1,59,0v5,6,-2,12,-8,10v-23,2,-25,9,-25,34v1,38,4,105,4,157v0,24,7,30,29,30v2,2,3,8,0,9r-86,0v-3,-2,-3,-7,-1,-9v22,-1,28,-4,28,-32r-2,-150r-94,192v-2,2,-5,3,-7,0","w":328,"k":{"j":6,"c":9,"d":9,"e":9,"o":9,"u":13,"y":11,"a":4,"i":4,"n":2}},"N":{"d":"245,-221v-11,64,-3,148,-4,223v-1,2,-3,4,-7,4r-172,-198v-3,51,-7,129,5,176v2,6,19,7,29,8v2,3,2,7,-1,9v-29,-1,-53,-2,-79,0v-3,-2,-3,-7,-1,-9v43,8,27,-52,30,-82v-4,-44,10,-99,-8,-130v-6,-6,-17,-9,-28,-10v-2,-2,-2,-8,1,-9v25,1,39,2,57,0v40,63,110,135,157,184v1,-51,6,-122,-6,-167v2,-6,-40,-3,-28,-17r80,0v4,4,1,11,-5,10v-12,2,-19,5,-20,8","w":281,"k":{"e":11,"o":11,"u":11,"y":11,"a":11,"i":9}},"O":{"d":"145,6v-80,0,-128,-57,-128,-122v0,-72,54,-127,128,-127v83,0,125,60,125,123v0,73,-56,126,-125,126xm149,-5v43,0,85,-33,85,-104v0,-59,-26,-123,-95,-123v-37,0,-86,25,-86,104v0,53,25,123,96,123","w":286,"k":{"c":2,"d":2,"e":2,"o":2,"t":2,"T":11,"u":2,"Y":11,"z":2,"V":9,"W":19,"b":2,"p":2,"q":2,"r":2,"a":2,"i":2,"h":4,"g":2,"k":4,"l":4,"n":2,"f":2,"j":4,"m":2,"s":2,"A":11,"X":11}},"P":{"d":"17,-236v69,-7,173,-10,169,66v-3,53,-43,65,-86,68v-3,-1,-2,-6,0,-7v76,-7,68,-122,-5,-119v-19,0,-19,1,-19,13r0,161v-2,44,4,43,33,46v2,2,1,8,-1,9r-90,0v-4,-4,-1,-12,6,-10v21,-3,22,-7,22,-45r0,-133v2,-40,-6,-36,-30,-40v-3,-2,-2,-8,1,-9","w":197,"k":{"h":2,"H":4,".":65,",":65,"e":19,"o":19,"t":6,"u":11,"r":11,"y":2,"a":15,"i":4,"l":2,"n":13,"s":13,"A":14,"E":4,"I":4}},"Q":{"d":"145,-243v156,0,159,214,38,243v22,32,76,76,133,64v2,0,3,3,2,5v-60,34,-142,-24,-165,-51v-19,-20,-32,-11,-59,-22v-47,-19,-77,-61,-77,-112v0,-72,54,-127,128,-127xm149,-5v43,0,85,-33,85,-104v0,-59,-26,-123,-95,-123v-37,0,-86,25,-86,104v0,53,25,123,96,123","w":286,"k":{"X":4,"W":11,"V":6,"T":9,"u":2,"U":4,"Y":4,"a":2,"A":9}},"R":{"d":"19,-236v62,-4,170,-17,170,59v0,34,-27,53,-45,60v-2,2,0,5,2,8v29,46,49,75,73,96v4,8,26,6,25,15v-64,18,-97,-53,-126,-98v0,-12,-43,-18,-42,-3v4,36,-15,100,29,91v2,2,1,8,-1,9r-88,0v-2,-1,-3,-6,-1,-9v27,-3,31,-3,31,-46r0,-129v1,-42,-3,-40,-27,-44v-3,-2,-3,-8,0,-9xm102,-118v34,2,55,-14,55,-54v0,-28,-18,-56,-58,-56v-22,0,-23,2,-23,12r0,84v0,20,-1,13,26,14","w":232,"k":{"C":13,"e":4,"G":13,"o":4,"O":13,"T":16,"u":4,"U":9,"Y":16,"Q":13,"V":25,"W":27,"y":11}},"S":{"d":"28,-181v-4,-51,67,-74,119,-56v3,9,7,29,7,44v-1,2,-7,3,-9,1v-5,-17,-14,-40,-49,-40v-65,0,-45,70,-12,84v31,21,72,38,73,87v0,40,-29,67,-76,67v-30,0,-50,-10,-57,-14v-4,-8,-8,-33,-9,-50v2,-3,7,-3,8,-1v5,18,20,54,62,54v55,0,61,-61,16,-92v-30,-21,-69,-36,-73,-84","w":176,"k":{"e":4,"o":4,"t":9,"u":9,"p":9,"q":4,"v":11,"w":11,"r":4,"y":4,"a":4,"i":4,"h":4,"k":4,"l":4,"n":9,"j":6,"m":9}},"T":{"d":"132,-214r0,160v-1,45,5,44,34,46v2,1,1,8,-1,9r-97,0v-7,-10,6,-9,13,-10v21,-2,22,-7,22,-45r0,-161v4,-19,-18,-9,-31,-11v-30,-4,-55,11,-60,33v-3,2,-8,1,-9,-2v6,-16,10,-40,13,-54v1,-1,6,-1,7,0v2,12,14,11,31,11r145,0v24,3,23,-10,35,-9v-4,15,-6,44,-5,55v-1,3,-8,3,-10,1v1,-38,-36,-35,-76,-35v-11,0,-11,0,-11,12","w":237,"k":{"C":9,"e":43,"G":9,"o":43,"O":12,"T":-4,"u":47,"Y":-4,"z":25,"Q":12,"W":-2,"w":47,"r":47,"y":40,"a":40,"i":14,"m":47,"s":36,"A":23,".":43,"X":-6,",":43,":":29,";":29,"S":4,"}":-4,"]":-4,"-":36,")":-4}},"U":{"d":"139,6v-62,-2,-96,-31,-96,-105r0,-85v1,-43,-3,-44,-30,-46v-2,-1,-2,-8,0,-9r89,0v5,6,0,10,-8,10v-39,-2,-21,85,-21,123v0,58,18,96,73,96v91,0,77,-135,65,-212v-3,-6,-17,-7,-27,-8v-2,-3,-1,-8,1,-9v26,1,54,2,79,0v10,14,-23,7,-26,18v-6,26,-5,79,-5,114v0,60,-31,115,-94,113","w":268,"k":{"c":9,"d":11,"t":11,"z":6,"b":2,"p":11,"v":4,"r":13,"y":4,"a":4,"i":6,"g":6,"k":2,"l":2,"n":13,"f":4,"m":13,"x":4,"s":11,"A":4}},"V":{"d":"116,5v-23,-70,-54,-136,-80,-204v-9,-23,-15,-29,-36,-31v-3,-2,-2,-7,1,-9v22,2,57,1,81,0v6,3,2,11,-5,10v-14,2,-17,4,-17,7v14,45,50,126,70,174r68,-160v9,-19,1,-19,-20,-22v-3,-2,-2,-8,1,-9v20,1,50,2,72,0v3,1,3,7,1,9v-15,1,-24,3,-30,14v-28,48,-76,165,-97,221v-3,2,-6,1,-9,0","w":243,"k":{"}":-4,"]":-9,"Q":9,";":16,":":6,".":43,"-":22,",":43,")":-4,"C":9,"e":36,"G":9,"o":36,"O":9,"u":32,"r":28,"y":25,"a":32,"i":4,"A":27}},"W":{"d":"140,-41r33,-73v-12,-33,-28,-64,-42,-96v-6,-14,-15,-20,-32,-20v-3,-3,-2,-8,1,-9v19,2,63,1,78,0v3,1,3,6,1,9v-15,2,-28,-2,-17,20v9,17,17,41,27,63v7,-14,14,-28,22,-47v16,-39,9,-34,-12,-36v-3,-4,-2,-8,1,-9v19,2,51,1,69,0v3,1,2,6,0,9v-24,-1,-31,14,-40,33v-9,20,-37,52,-28,74r36,82v20,-41,45,-108,61,-147v5,-13,11,-29,11,-33v3,-12,-32,-3,-22,-18v24,1,48,2,68,0v7,5,0,10,-6,10v-25,-5,-54,91,-69,123v-18,36,-30,72,-45,111v-2,2,-7,1,-9,0v-12,-32,-33,-78,-44,-103v-13,26,-35,73,-45,103v-2,2,-7,1,-10,0v-6,-15,-19,-48,-24,-58r-69,-150v-8,-19,-14,-27,-35,-27v-2,-2,-2,-8,1,-9v25,2,51,1,78,0v7,5,0,11,-7,10v-28,6,-6,20,6,54v16,46,42,90,63,134","w":345,"k":{"}":-4,"m":34,"]":-9,"Q":6,";":22,":":22,".":43,"-":14,",":43,")":-4,"C":6,"d":28,"e":28,"G":6,"o":28,"O":6,"t":27,"T":-4,"u":30,"r":30,"y":25,"a":32,"i":4,"A":27}},"X":{"d":"120,-139r54,-85v0,-6,-33,-3,-21,-15v23,1,51,2,73,0v5,5,-1,11,-8,10v-35,13,-65,64,-89,101v18,33,43,64,65,95v16,22,22,24,46,25v3,2,2,7,-1,9r-91,0v-2,-2,-3,-7,-1,-9v20,-2,31,-1,15,-22v-16,-21,-36,-51,-52,-72v-11,15,-45,58,-55,88v-2,7,30,2,20,15v-26,-1,-50,-2,-76,0v-3,-1,-5,-7,-2,-9v26,0,39,-16,52,-33v3,-6,36,-45,53,-73v-17,-30,-40,-57,-59,-86v-15,-22,-21,-26,-43,-30v-2,-2,-1,-8,1,-9v30,2,57,1,83,0v3,1,2,6,0,9v-24,1,-25,7,-10,26v13,16,33,49,46,65","w":231,"k":{"Q":9,"C":9,"e":2,"G":9,"O":9,"u":9,"y":4}},"Y":{"d":"113,-115r57,-108v0,-2,-6,-5,-15,-6v-6,1,-12,-7,-6,-10v25,1,44,2,68,0v8,6,-2,11,-9,11v-27,0,-51,68,-70,96v-21,30,-17,39,-17,77v-1,47,6,45,35,47v2,2,2,8,0,9r-97,0v-5,-7,4,-12,11,-10v26,5,21,-31,21,-64v0,-52,-36,-88,-54,-128v-13,-30,-17,-24,-38,-29v-2,-3,-2,-8,1,-9v19,1,62,2,80,0v5,3,2,11,-4,10v-32,1,-5,22,-4,34v13,27,27,55,41,80","w":206,"k":{"C":6,"d":32,"e":32,"G":6,"o":34,"O":6,"t":19,"T":-4,"u":27,"Y":-4,"Q":6,"V":-4,"W":-4,"q":32,"v":18,"a":24,"l":-2,".":29,"X":-4,",":29,":":22,";":13,"}":-4,"]":-9,"-":27,")":-4}},"Z":{"d":"62,-17v18,12,101,8,130,-2v10,-6,19,-20,25,-34v3,-1,8,0,9,3v-3,17,-10,42,-16,51r-198,0v-1,-1,-2,-2,-2,-4v50,-62,116,-152,156,-221v-29,-3,-102,-6,-120,9v-11,9,-11,33,-25,22v4,-13,11,-34,15,-54v1,-1,4,-1,6,0v1,9,6,9,35,9r137,-1v1,0,2,3,2,4v-46,54,-112,150,-154,218","w":230,"k":{"C":11,"e":2,"G":11,"o":4,"O":11,"u":2,"Q":11,"w":13,"y":13,"a":2,"i":4,"A":-4}},"[":{"d":"61,-18v3,34,-6,57,14,59r32,4v2,3,3,7,0,8r-65,1r0,-301r65,1v3,1,2,5,0,8r-32,4v-21,1,-14,25,-14,59r0,157","w":115,"k":{"W":-9,"V":-4,"J":-12,"T":-4,"Y":-4}},"\\":{"d":"32,-247r68,253r-20,0r-69,-253r21,0","w":111},"]":{"d":"54,-175v-3,-34,6,-57,-14,-59r-32,-4v-2,-3,-2,-7,1,-8r64,-1r0,301r-64,-1v-3,-1,-3,-5,-1,-8r32,-4v21,-1,14,-25,14,-59r0,-157","w":115},"^":{"d":"162,-88r-22,0r-50,-112r-50,112r-22,0r63,-137r18,0"},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0"},"a":{"d":"49,5v-40,0,-54,-54,-7,-64r43,-16v12,-13,14,-57,-19,-58v-10,0,-23,5,-24,16v5,17,-23,25,-29,14v0,-19,41,-44,67,-44v51,0,39,61,36,105v-2,25,13,38,30,27v1,0,2,1,2,4v0,2,-12,16,-30,16v-13,0,-21,-10,-29,-16v-9,2,-26,16,-40,16xm87,-63v-17,4,-51,13,-47,30v0,6,5,22,23,22v24,0,34,-28,24,-52","w":145},"b":{"d":"167,-76v0,67,-71,97,-128,72v-5,-1,-8,9,-13,3r1,-202v1,-24,-2,-26,-15,-32v-3,-16,25,-11,39,-22v1,0,3,1,4,2v2,39,-5,86,2,120v43,-29,110,0,110,59xm82,-131v-43,0,-26,45,-28,82v-2,25,12,43,36,43v34,0,47,-29,47,-60v0,-37,-19,-65,-55,-65","k":{"w":2,"v":2,".":6,",":6,"y":2}},"c":{"d":"143,-32v-31,65,-130,39,-130,-35v0,-39,27,-80,87,-80v13,1,42,2,38,21v-6,32,-27,-16,-49,-9v-25,0,-50,20,-50,58v0,28,19,62,58,62v21,0,32,-10,40,-22v3,-1,6,2,6,5","w":144},"d":{"d":"154,-255r-1,202v0,39,1,48,26,39v3,1,2,9,-1,11v-17,0,-41,15,-51,9v-1,-6,1,-14,-2,-18v-44,38,-112,6,-112,-52v0,-58,53,-94,111,-80v1,-24,13,-84,-13,-91v-3,-16,27,-11,39,-22v1,0,3,1,4,2xm96,-12v15,0,32,-4,30,-24v-2,-43,13,-100,-34,-100v-33,0,-50,29,-50,60v0,33,19,64,54,64","w":183},"e":{"d":"136,-104v0,16,-1,12,-23,12r-66,0v-9,0,-10,1,-10,10v-5,50,58,93,93,49v4,-1,6,2,6,5v-33,62,-123,29,-123,-38v0,-44,29,-81,72,-81v31,0,51,21,51,43xm41,-105v21,4,74,6,68,-8v0,-10,-7,-23,-28,-23v-21,0,-40,19,-40,31","w":142,"k":{"z":-1,"w":-2}},"f":{"d":"94,-243v-33,2,-33,57,-33,91v-1,23,32,4,47,10v4,4,1,14,-3,15v-15,4,-44,-11,-44,11r0,76v-1,34,5,30,26,32v3,2,3,8,0,9v-27,-1,-49,-2,-74,0v-3,-1,-4,-7,-1,-9v19,-2,22,0,22,-32r0,-76v6,-22,-22,-1,-21,-18v7,-5,21,-4,21,-14v2,-55,16,-105,76,-109v28,-2,49,26,22,34v-14,-3,-21,-22,-38,-20","w":104,"k":{"'":-28,"}":-40,"]":-42,".":6,",":6,")":-40,"\"":-28}},"g":{"d":"75,-147v34,0,48,18,86,13v4,2,2,14,-3,15r-26,0v8,45,-16,80,-75,74v-16,6,-27,35,9,35v41,0,93,-14,93,39v0,39,-42,68,-89,68v-50,0,-68,-28,-56,-55v8,-11,28,-19,27,-33v-14,-4,-26,-15,-26,-28v5,-11,25,-15,28,-30v-12,-6,-27,-21,-27,-44v0,-31,27,-54,59,-54xm98,12v-36,0,-61,2,-61,34v0,19,15,35,48,35v60,0,77,-69,13,-69xm45,-96v0,52,65,56,63,5v0,-24,-10,-45,-32,-45v-17,0,-31,16,-31,40","w":160,"k":{"f":-2}},"h":{"d":"94,-130v-21,1,-38,5,-36,29v3,31,-16,97,22,93v3,1,2,8,-1,9v-21,-2,-47,-1,-69,0v-3,-1,-4,-7,-1,-9v19,-2,23,0,23,-32r0,-163v1,-24,-2,-26,-15,-32v-3,-16,27,-11,39,-22v9,26,-4,91,4,129v28,-31,95,-22,95,28r0,60v-1,33,3,30,23,32v3,2,2,8,-1,9v-22,-1,-48,-2,-69,0v-7,-19,30,0,20,-41v-1,-40,9,-93,-34,-90","w":185},"i":{"d":"14,-8v39,3,16,-64,21,-95v3,-16,-2,-20,-13,-25v0,-13,30,-15,38,-24v7,24,2,73,2,112v0,31,3,29,21,32v3,2,2,8,-1,9v-20,-2,-48,-1,-67,0v-3,-1,-4,-7,-1,-9xm47,-225v11,0,18,9,18,19v0,13,-9,19,-19,19v-11,0,-18,-8,-18,-18v0,-12,8,-20,19,-20","w":92},"j":{"d":"-5,89v55,-19,35,-117,41,-192v2,-20,-13,-18,-13,-31v10,-1,31,-20,41,-16v-3,60,7,143,-9,188v-9,27,-30,44,-55,59v-4,-1,-6,-4,-5,-8xm48,-225v11,0,18,9,18,19v0,13,-9,19,-19,19v-11,0,-19,-9,-19,-19v0,-12,9,-19,20,-19","w":91},"k":{"d":"32,-40r0,-163v1,-24,-2,-26,-15,-32v-3,-16,27,-11,39,-22v7,39,-1,115,2,170v0,5,1,5,7,5v17,1,45,-37,52,-46v1,-6,-28,-2,-17,-14v21,0,42,-1,66,-3v3,1,2,7,0,9v-28,0,-54,35,-67,45v-8,17,11,19,22,38v24,23,27,40,58,45v3,2,2,8,-1,9v-21,-2,-53,-1,-72,0v-6,-4,-1,-11,6,-10v12,-2,11,-5,3,-14r-39,-44v-6,-6,-19,-11,-18,7v2,26,-6,59,23,52v3,2,2,8,-1,9v-22,-2,-49,-1,-70,0v-5,-19,32,1,22,-41","w":173},"l":{"d":"59,-255r-1,215v-1,32,4,30,23,32v3,2,2,8,-1,9v-22,-2,-49,-1,-70,0v-5,-19,32,1,22,-41r0,-163v1,-24,-2,-26,-15,-32v-3,-16,27,-11,39,-22v1,0,2,1,3,2","w":88},"m":{"d":"98,-130v-47,0,-35,47,-36,90v-1,30,3,29,20,32v3,2,2,8,-1,9v-19,-2,-47,-1,-67,0v-3,-1,-4,-7,-1,-9v38,7,17,-62,22,-95v2,-16,-2,-20,-13,-25v-1,-13,31,-15,37,-24v9,2,-4,23,7,23v25,-19,68,-29,86,3v18,-5,37,-21,58,-21v53,0,43,57,43,107v0,32,3,30,22,32v3,2,2,8,-1,9v-21,-1,-47,-2,-67,0v-7,-18,29,-1,19,-41v-1,-39,10,-90,-33,-90v-45,0,-35,48,-36,90v-1,31,3,30,22,32v3,2,2,8,-1,9v-20,-1,-48,-1,-67,0v-6,-18,29,-1,20,-41v-1,-39,9,-90,-33,-90","w":283},"n":{"d":"98,-130v-46,0,-35,47,-36,90v-1,30,3,29,20,32v3,2,2,8,-1,9v-18,-2,-48,-1,-66,0v-7,-19,29,1,20,-41v-6,-30,13,-78,-13,-88v-1,-13,31,-15,37,-24v9,2,-4,23,7,23v30,-27,97,-24,92,27v5,31,-16,98,22,94v3,2,2,8,-1,9v-20,-1,-48,-1,-67,0v-7,-19,30,0,20,-41v-2,-40,11,-90,-34,-90","w":189},"o":{"d":"89,-147v40,0,73,31,73,75v0,45,-31,77,-76,77v-41,0,-73,-29,-73,-74v0,-45,34,-78,76,-78xm90,-6v62,0,53,-128,-5,-130v-24,0,-41,22,-41,62v0,33,14,68,46,68","w":174,"k":{"v":6,"w":4,"y":4,"x":2,".":6}},"p":{"d":"31,51r0,-154v5,-20,-13,-18,-13,-31v9,-4,27,-13,36,-20v9,1,-3,21,6,24v5,-2,27,-17,50,-17v36,0,60,30,60,66v-1,56,-45,94,-108,85v-10,5,-4,33,-5,47v-3,35,7,29,28,33v3,2,2,8,-1,9v-28,-1,-50,-2,-74,0v-7,-5,0,-11,7,-10v13,-2,14,-6,14,-32xm92,-130v-51,0,-32,52,-35,94v-2,21,20,29,37,29v30,0,47,-28,47,-65v0,-29,-17,-58,-49,-58","w":182,"k":{"w":2,".":6,",":6}},"q":{"d":"13,-66v-1,-68,67,-93,128,-75v4,2,10,-11,14,-3v-7,52,-1,135,-3,195v-1,33,5,29,24,33v3,2,3,8,0,9v-26,-2,-48,-1,-74,0v-3,-1,-4,-7,-1,-9v37,9,22,-47,25,-79v0,-7,-1,-9,-4,-9v-9,5,-22,9,-36,9v-54,0,-73,-43,-73,-71xm100,-9v44,0,23,-40,26,-74v4,-39,-6,-53,-36,-53v-27,0,-47,25,-47,59v0,40,23,68,57,68","w":178},"r":{"d":"103,-116v-22,-12,-46,-9,-41,27v4,30,-17,91,27,81v3,2,3,8,0,9v-27,-1,-51,-2,-74,0v-5,-19,28,0,20,-41v-6,-30,13,-78,-13,-88v0,-13,28,-15,37,-24v8,3,0,19,4,27v13,-10,27,-22,40,-22v9,0,16,6,16,15v0,12,-10,16,-16,16","w":119,"k":{"c":2,"d":5,"e":4,"o":2,"t":-3,"u":-3,"z":-2,"q":2,"v":-6,"w":-6,"y":-6,"k":2,"f":-3,"x":-2,".":22,",":22}},"s":{"d":"81,-28v-2,-37,-67,-41,-63,-78v-5,-38,55,-49,81,-34v3,8,5,19,5,29v-1,3,-6,3,-8,1v-5,-29,-53,-37,-55,-4v7,35,64,32,64,78v0,42,-63,51,-90,30v-3,-7,-5,-24,-4,-36v2,-2,6,-2,8,0v6,20,17,37,38,37v13,0,24,-8,24,-23","w":116},"t":{"d":"58,-51v-7,31,24,50,45,33v3,0,5,4,4,6v-6,8,-20,17,-38,17v-61,0,-29,-72,-37,-121v5,-21,-21,-2,-19,-18v22,-7,29,-15,38,-33v16,-6,0,25,14,25r40,0v4,3,3,13,0,15r-40,0v-6,0,-7,1,-7,9r0,67","w":110},"u":{"d":"91,-12v17,-1,39,-7,36,-31v-4,-30,13,-88,-18,-89v-3,-1,-3,-7,0,-8v16,2,39,-10,46,-4v-2,25,-1,63,-1,91v0,37,1,44,25,38v2,2,3,9,0,10v-14,3,-36,7,-48,14v-9,-1,1,-20,-7,-23v-23,23,-102,31,-93,-26v-5,-30,14,-89,-16,-92v-2,-2,-2,-7,1,-8v19,2,34,-10,42,-4v4,41,-23,134,33,132","w":184},"v":{"d":"86,-39v11,-19,28,-68,34,-88v1,-8,-24,-5,-15,-16v22,1,33,1,53,0v4,3,1,11,-5,10v-36,19,-49,97,-71,137v-17,5,-13,-25,-22,-37r-30,-73v-6,-16,-11,-28,-29,-28v-2,-3,-2,-8,1,-9v19,1,42,2,63,0v11,13,-25,6,-12,24v10,29,21,58,33,80","w":155,"k":{"q":2,".":27,",":27,"c":2,"d":2,"e":2,"o":2,"a":2}},"w":{"d":"171,-39v9,-19,29,-61,33,-89v1,-7,-25,-4,-15,-15v19,1,34,2,52,0v5,16,-21,6,-25,33v-16,34,-34,81,-46,114v-17,6,-13,-24,-24,-39r-25,-60r-41,99v-15,7,-13,-22,-20,-30r-33,-81v-10,-23,-12,-24,-27,-27v-2,-2,-2,-8,1,-9v21,1,43,1,63,0v7,5,0,11,-7,10v-14,4,-9,8,-3,24r29,70v7,-23,57,-88,7,-95v-3,-2,-2,-8,1,-9v21,2,42,1,64,0v12,15,-31,5,-16,27","w":237,"k":{".":27,",":27,"c":2,"d":2,"e":2}},"x":{"d":"64,-72v-20,-20,-27,-55,-60,-62v-2,-2,-2,-8,1,-9v27,2,35,1,62,0v11,12,-22,4,-9,23r22,31v1,-1,12,-20,21,-31v14,-16,-16,-9,-6,-23v16,1,37,1,53,0v5,3,1,12,-5,10v-31,5,-28,19,-52,47v-5,5,-4,8,1,14v20,20,27,63,63,64v2,2,2,8,-1,9v-26,-1,-46,-2,-70,0v-3,-1,-4,-7,-1,-9v9,0,25,0,17,-12r-27,-37r-22,32v-10,16,-3,16,8,17v2,2,2,8,-1,9v-18,-1,-35,-1,-53,0v-9,-16,19,-6,26,-21v7,-13,34,-35,33,-52","w":155,"k":{"v":2,"q":2,"c":4,"d":4,"e":4,"o":2}},"y":{"d":"48,73v-9,22,-37,23,-39,1v-2,-21,27,-8,33,-21v16,-31,32,-42,18,-80r-28,-77v-6,-21,-11,-27,-30,-30v-2,-2,-2,-8,1,-9v23,1,41,2,65,0v12,12,-15,8,-16,16v10,30,20,66,33,92v8,-13,35,-76,38,-91v1,-9,-31,-4,-19,-17v23,1,37,2,59,0v6,4,0,11,-6,10v-21,2,-38,58,-50,80v-13,24,-42,87,-59,126","w":157,"k":{"c":4,"d":2,"e":2,"o":2,"q":2,".":31,",":31}},"z":{"d":"122,1r-111,0v-3,-14,21,-35,33,-56r38,-65v6,-10,2,-11,-4,-11v-31,-2,-57,0,-62,26v-2,2,-7,2,-8,-1v3,-9,3,-42,16,-42v11,13,72,4,98,5v2,14,-13,27,-24,45r-44,73v-8,13,-7,14,7,14v31,2,59,-1,66,-31v3,-1,7,-1,8,2v-3,18,-8,34,-13,41","w":135,"k":{"c":2,"d":2,"e":2,"o":2}},"{":{"d":"101,-243v-75,13,20,120,-50,147v68,15,-25,129,50,146v2,1,2,5,0,7v-18,0,-54,-3,-51,-45r5,-75v0,-12,-1,-28,-31,-30v-2,-2,-2,-5,0,-7v30,-2,31,-18,31,-30r-5,-74v0,-42,33,-46,51,-46v2,2,2,5,0,7","w":115,"k":{"W":-4,"V":-4,"J":-12,"T":-4,"Y":-4}},"|":{"d":"54,-270r0,360r-22,0r0,-360r22,0","w":86},"}":{"d":"14,50v75,-13,-19,-121,50,-147v-68,-15,25,-128,-50,-146v-2,-2,-2,-5,0,-7v18,0,54,4,51,46r-5,74v0,12,1,28,31,30v2,2,2,5,0,7v-30,2,-31,18,-31,30r5,75v0,42,-33,45,-51,45v-2,-2,-2,-6,0,-7","w":115},"~":{"d":"153,-101v-4,10,-16,39,-37,36v-36,2,-69,-9,-77,24v-5,2,-11,0,-12,-5v4,-10,17,-40,37,-37v35,-2,68,10,77,-23v5,-2,11,0,12,5"},"'":{"d":"42,-252v18,0,17,6,14,23r-9,58v-3,3,-6,3,-9,0r-11,-72v0,-8,5,-9,15,-9","w":84},"`":{"d":"29,-214v-15,-12,3,-23,13,-25v4,0,6,4,8,9r28,58v0,3,-5,4,-7,4","w":129},"\u00a0":{"w":90,"k":{"W":5,"V":5,"T":16,"Y":5}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1989, 1992, 1994, 1996, 1998, 1999, 2000, 2001 Adobe Systems Incorporated.
 * All rights reserved.
 * 
 * Trademark:
 * Adobe Garamond is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * AGaramondPro-Bold
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 * 
 * Designer:
 * Robert Slimbach
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":187,"face":{"font-family":"Adobe Garamond Pro","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 2 7 2 6 5 6 2 4 3","ascent":"261","descent":"-99","x-height":"5","cap-height":"1","bbox":"-20 -270 365.811 97","underline-thickness":"18","underline-position":"-18","stemh":"19","stemv":"47","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":86,"k":{"W":13,"V":13,"T":13,"Y":13}},"!":{"d":"46,-233v42,0,28,15,23,58r-15,101v-4,3,-12,3,-16,0r-21,-143v0,-12,10,-16,29,-16xm46,5v-14,0,-29,-11,-29,-29v0,-17,13,-30,29,-30v17,0,29,15,29,30v0,17,-12,29,-29,29","w":91},"\"":{"d":"49,-252v27,0,24,10,20,33r-13,74v-4,3,-10,3,-14,0r-16,-95v0,-12,8,-12,23,-12xm121,-252v27,0,24,10,20,33r-13,74v-4,3,-10,3,-14,0r-16,-95v0,-12,8,-12,23,-12","w":169},"#":{"d":"119,-143r-35,0r-14,53r35,0xm177,-143r-36,0r-14,53r32,0r-4,23r-34,0r-18,66r-22,0r18,-66r-35,0r-18,66r-22,0r18,-66r-36,0r4,-23r38,0r14,-53r-36,0r5,-23r37,0r16,-59r23,0r-16,59r34,0r15,-59r24,0r-16,59r32,0"},"$":{"d":"92,-146r7,-63v-41,2,-42,51,-7,63xm102,-91r-8,74v46,-4,45,-57,8,-74xm122,-253r-4,28v17,1,32,5,41,7v3,8,6,28,6,47v-2,3,-9,4,-12,1v-4,-12,-15,-32,-37,-38r-8,70v32,11,66,27,66,72v0,38,-32,65,-83,66r-4,33v-2,4,-15,4,-17,0r4,-34v-55,-4,-59,-12,-61,-65v3,-4,9,-5,12,-1v6,19,25,44,51,49r10,-81v-28,-12,-60,-28,-60,-65v0,-36,29,-60,75,-62r3,-27v2,-4,16,-4,18,0"},"%":{"d":"239,4v-42,0,-58,-42,-58,-70v0,-29,16,-69,58,-69v42,0,58,40,58,69v0,28,-16,70,-58,70xm216,-66v0,19,3,56,23,56v20,0,22,-37,22,-56v0,-19,-2,-55,-22,-55v-20,0,-23,35,-23,55xm73,-91v-42,0,-58,-42,-58,-70v0,-29,16,-69,58,-69v42,0,58,40,58,69v0,28,-16,70,-58,70xm51,-161v0,19,3,56,23,56v20,0,22,-37,22,-56v0,-19,-2,-55,-22,-55v-20,0,-23,35,-23,55xm96,14v-6,1,-13,-2,-16,-8r133,-241v5,-1,15,2,17,8","w":311},"&":{"d":"226,5v-41,0,-43,-11,-56,-35v-20,19,-40,35,-73,35v-48,0,-77,-27,-77,-64v0,-42,37,-63,56,-71v-45,-28,-14,-100,37,-100v35,0,56,21,56,48v0,26,-23,37,-33,43v19,10,38,30,53,50v10,-18,23,-45,28,-63v1,-5,-10,-6,-16,-7v-8,-10,5,-16,16,-13v28,0,52,-1,71,-2v4,1,5,10,1,12v-49,3,-58,54,-83,81v-5,11,-8,5,2,20v12,18,22,38,53,38v13,0,28,-6,33,-10v3,1,5,6,4,9v-9,11,-34,29,-72,29xm160,-47v-15,-28,-44,-58,-68,-69v-2,0,-24,14,-24,43v0,31,23,49,49,49v27,0,43,-22,43,-23xm120,-150v13,-2,27,-67,-7,-65v-12,0,-21,12,-21,27v0,26,25,37,28,38","w":297},"(":{"d":"119,-246v-74,75,-73,223,0,298v0,3,-2,7,-6,7v-111,-64,-111,-248,0,-312v4,0,6,4,6,7","w":122,"k":{"W":-9,"V":-9,"J":-26,"Y":-4}},")":{"d":"4,52v73,-75,72,-223,0,-298v0,-3,2,-7,6,-7v110,64,110,248,0,312v-4,0,-6,-4,-6,-7","w":122},"*":{"d":"83,-194r45,-24v4,1,7,6,6,11r-41,29r40,28v1,4,-1,9,-5,11r-45,-23r-5,48v-2,2,-8,2,-11,0r-4,-48r-46,23v-4,-1,-6,-6,-5,-10r42,-29r-42,-29v-1,-4,1,-8,5,-10r46,23r4,-48v3,-2,8,-2,11,0","w":145},"+":{"d":"110,0r-32,0r0,-64r-56,0r0,-26r56,0r0,-57r32,0r0,57r56,0r0,26r-56,0r0,64"},",":{"d":"48,3v0,-27,-31,-16,-32,-40v0,-13,12,-23,26,-23v15,0,37,13,37,46v0,36,-28,56,-59,63v-20,-18,35,-20,28,-46","w":93},"-":{"d":"16,-85r86,-8v6,7,7,21,1,29r-87,8v-6,-6,-7,-23,0,-29","w":118},".":{"d":"47,5v-14,0,-29,-11,-29,-29v0,-17,13,-30,29,-30v17,0,29,15,29,30v0,17,-12,29,-29,29","w":93},"\/":{"d":"115,-243r-75,249r-33,0r75,-249r33,0","w":122},"0":{"d":"94,-230v113,2,111,233,0,235v-113,-1,-113,-233,0,-235xm63,-113v0,32,4,101,31,101v27,0,30,-69,30,-101v0,-32,-3,-101,-30,-101v-27,0,-31,69,-31,101"},"1":{"d":"120,-228r-1,182v-2,37,9,32,34,34v3,2,4,12,0,13v-26,-2,-91,-1,-116,0v-4,-1,-3,-11,0,-13v25,-2,34,3,34,-34r0,-118v4,-34,-12,-29,-34,-34v-3,-2,-3,-10,0,-12v23,-1,65,-17,78,-22v2,0,4,1,5,4"},"2":{"d":"73,-41v8,9,35,4,50,4v26,0,31,-1,41,-20v3,-3,11,-3,12,2v-3,22,-11,47,-17,56r-148,0v-3,-1,-5,-5,-4,-8v31,-32,104,-86,103,-151v0,-25,-15,-44,-39,-44v-21,0,-35,13,-47,33v-4,3,-10,1,-11,-5v15,-36,47,-56,82,-56v42,0,68,27,68,61v13,34,-67,95,-90,128"},"3":{"d":"31,-25v22,1,21,28,40,27v15,0,48,-21,48,-65v0,-52,-49,-70,-78,-40v-7,-1,-11,-9,-8,-17v25,-12,71,-19,73,-61v0,-13,-11,-27,-29,-27v-17,0,-34,14,-45,30v-5,1,-10,-3,-10,-7v14,-29,44,-45,76,-45v67,0,83,62,11,87v-4,2,-1,5,4,5v32,-1,60,21,60,56v0,52,-82,102,-124,102v-19,0,-39,-7,-39,-25v0,-10,7,-20,21,-20"},"4":{"d":"100,-148v-1,-20,33,-20,43,-24v3,0,4,2,4,6r0,68v-3,18,19,9,32,11v5,3,5,17,0,20v-17,1,-38,-8,-32,21v0,34,3,34,26,34v3,2,3,12,-1,13v-27,-2,-83,-1,-106,0v-4,-1,-4,-11,-1,-13v29,1,39,-3,35,-45v0,-9,-1,-10,-9,-10r-83,0v-4,-2,-5,-6,-4,-11r117,-168v6,-10,11,-8,23,-8v6,0,8,3,3,10r-108,149v-3,5,-4,8,8,8r44,0v8,0,9,-2,9,-11r0,-50"},"5":{"d":"59,-224r96,-11v3,0,4,1,4,4v-3,14,-11,28,-20,37r-81,9v-8,1,-9,11,-11,19v-2,8,3,9,10,10v47,6,111,19,111,78v0,71,-84,100,-149,101v-5,-3,-7,-14,-2,-17v50,0,104,-22,105,-64v0,-51,-54,-57,-90,-60v-12,-1,-12,-4,-10,-12r21,-83v3,-9,4,-10,16,-11"},"6":{"d":"96,5v-108,2,-103,-152,-38,-205v30,-25,71,-47,114,-49v4,2,5,8,1,12v-74,17,-110,64,-110,142v0,38,13,83,40,83v22,0,27,-23,27,-40v0,-26,-12,-77,-49,-68v-8,-14,19,-22,33,-23v45,0,65,33,65,68v0,47,-33,80,-83,80"},"7":{"d":"18,-226r164,0v3,1,3,3,3,5r-139,243v-6,1,-16,-3,-17,-11v34,-64,78,-125,106,-193v0,-5,-5,-6,-10,-6v-39,5,-97,-14,-109,18v-3,3,-11,2,-12,-2v6,-18,11,-40,14,-54"},"8":{"d":"92,5v-42,0,-79,-19,-79,-58v0,-27,19,-46,47,-60v-61,-26,-44,-117,36,-117v41,0,70,22,70,56v0,26,-21,38,-40,49v27,14,49,33,49,68v0,34,-26,62,-83,62xm59,-57v0,46,66,67,68,12v0,-28,-19,-44,-49,-58v-13,13,-19,29,-19,46xm125,-175v1,-50,-59,-50,-59,-5v0,17,12,31,42,44v11,-7,17,-22,17,-39"},"9":{"d":"58,-172v1,34,13,67,47,66v7,14,-19,19,-34,19v-34,0,-61,-29,-61,-65v0,-46,35,-78,80,-78v110,1,102,151,36,202v-32,25,-78,49,-108,50v-4,-2,-4,-9,-1,-12v70,-17,106,-78,106,-144v0,-27,-8,-80,-38,-80v-17,0,-27,20,-27,42"},":":{"d":"47,5v-14,0,-29,-11,-29,-29v0,-17,13,-30,29,-30v17,0,29,15,29,30v0,17,-12,29,-29,29xm47,-83v-14,0,-29,-11,-29,-28v0,-18,13,-31,29,-31v17,0,29,14,29,31v0,16,-12,28,-29,28","w":93},";":{"d":"48,3v0,-27,-31,-16,-32,-40v0,-13,12,-23,26,-23v15,0,37,13,37,46v0,36,-28,56,-59,63v-20,-18,35,-20,28,-46xm47,-83v-14,0,-29,-11,-29,-28v0,-18,13,-31,29,-31v17,0,29,14,29,31v0,16,-12,28,-29,28","w":93},"<":{"d":"24,-85r140,-64r0,30r-103,45r103,44r0,30r-140,-64r0,-21"},"=":{"d":"166,-38r-144,0r0,-26r144,0r0,26xm166,-90r-144,0r0,-26r144,0r0,26"},">":{"d":"24,-149r140,64r0,21r-140,64r0,-30r103,-45r-103,-44r0,-30"},"?":{"d":"36,-73v-18,-23,-27,-71,16,-78v10,-5,34,-12,34,-20v8,-24,-72,1,-72,-39v0,-12,11,-23,26,-23v48,0,93,88,42,112v-18,9,-50,17,-34,46v-2,3,-9,5,-12,2xm47,5v-14,0,-29,-11,-29,-29v0,-17,13,-30,29,-30v17,0,29,15,29,30v0,17,-12,29,-29,29","w":119},"@":{"d":"74,-31v2,-28,62,-121,110,-95v2,-14,21,-22,34,-12v-4,11,-36,85,-41,97v-3,9,-3,12,5,12v29,0,63,-25,63,-68v0,-50,-38,-82,-86,-82v-67,0,-110,58,-110,121v0,39,22,96,100,96v27,0,43,-7,55,-12v4,1,6,8,4,11v-83,41,-194,9,-194,-95v0,-84,69,-137,145,-137v68,0,105,46,105,97v0,47,-34,83,-95,83v-46,0,-13,-24,-14,-42v-18,22,-50,42,-65,42v-11,0,-16,-8,-16,-16xm165,-120v-23,8,-55,61,-54,79v6,12,9,4,25,-9v15,-12,36,-48,40,-61v-2,-5,-5,-9,-11,-9","w":276},"A":{"d":"134,-75v-6,-13,-42,-6,-60,-6v-9,0,-10,0,-12,7v-5,17,-14,37,-17,55v-1,4,18,7,26,7v2,3,3,11,-1,13v-27,-2,-48,-1,-78,0v-12,-22,27,-6,31,-32v16,-37,39,-101,55,-145v8,-23,15,-36,14,-46v24,-4,32,-35,39,-14r66,190v10,29,13,32,37,34v2,2,3,11,0,13r-104,0v-4,-2,-5,-10,-1,-13v39,3,8,-43,5,-63xm81,-100v15,-3,48,9,41,-11r-24,-72v-6,15,-18,51,-25,72v-3,10,-1,11,8,11","w":224,"k":{"a":-2,"c":2,"C":9,"d":2,"e":2,"g":-2,"G":9,"o":2,"O":9,"s":-2,"t":2,"T":25,"u":6,"U":17,"Y":22,"z":-2,"Q":9,"V":29,"W":33,"b":2,"p":4,"q":2,"v":15,"w":15}},"B":{"d":"219,-68v-4,92,-120,63,-207,69v-7,-9,2,-16,11,-15v16,-3,18,-6,18,-38r0,-127v0,-43,-2,-41,-26,-43v-3,-2,-3,-13,2,-13v68,-3,190,-22,188,55v-2,36,-29,41,-44,49v27,10,59,24,58,63xm91,-203r0,59v0,9,0,10,19,10v31,0,42,-19,42,-41v0,-31,-19,-47,-44,-47v-17,0,-17,3,-17,19xm111,-118v-37,0,-14,34,-20,57v0,28,3,46,31,46v27,0,41,-21,41,-50v0,-31,-17,-53,-52,-53","w":228,"k":{"h":4,"a":2,"o":-2,"u":4,"i":4,"r":2,"y":6,"l":4}},"C":{"d":"14,-116v0,-111,124,-144,218,-118v0,6,1,35,4,56v-1,4,-11,6,-14,3v-10,-33,-32,-52,-67,-52v-40,0,-83,34,-83,106v0,72,42,110,85,110v44,0,63,-32,73,-56v3,-3,12,-1,14,3v-3,27,-9,48,-14,56v-91,34,-216,2,-216,-108","w":248,"k":{"a":4,"C":4,"G":4,"O":4,"u":6,"z":6,"Q":4,"i":4,"r":2,"y":9}},"D":{"d":"271,-122v0,96,-91,122,-203,122v-17,0,-35,0,-56,1v-3,-2,-3,-11,0,-13v24,-3,30,-1,29,-40r0,-127v0,-39,-1,-42,-24,-44v-4,-2,-3,-12,1,-12v30,-2,58,-4,96,-4v88,0,157,43,157,117xm114,-222v-21,0,-21,2,-21,25r0,132v-1,36,6,51,37,51v62,0,83,-56,83,-105v0,-65,-34,-103,-99,-103","w":285,"k":{"a":2,"e":2,"o":4,"u":4,"V":13,"W":13,"i":4,"r":4,"h":6}},"E":{"d":"93,-103v6,47,-19,86,43,86v31,0,42,0,63,-41v2,-4,13,-3,14,1v-1,19,-10,48,-15,58r-192,0v-3,-2,-3,-11,0,-13v26,-4,35,3,35,-40r0,-134v1,-39,-5,-35,-27,-40v-3,-2,-4,-11,0,-13r177,0v0,6,2,32,4,56v-1,4,-9,5,-13,2v-7,-38,-32,-42,-78,-40v-12,0,-11,1,-11,14r0,63v-3,19,21,9,34,11v23,3,25,-11,29,-29v3,-3,11,-3,13,0v-1,23,-1,54,0,77v-23,11,-10,-39,-42,-29v-13,3,-37,-9,-34,11","w":213,"k":{"c":2,"d":2,"e":2,"g":2,"o":2,"t":6,"u":6,"Y":4,"z":2,"V":2,"W":4,"b":4,"p":6,"q":2,"v":11,"w":11,"i":2,"r":2,"y":13,"k":2,"l":2,"n":2,"f":4,"j":4,"m":2,"x":2}},"F":{"d":"93,-206r0,65v-3,20,23,9,37,11v23,4,25,-10,29,-29v3,-3,11,-3,13,0v-1,23,-2,53,0,76v-6,6,-16,1,-15,-8v-2,-27,-28,-19,-54,-20v-10,0,-10,1,-10,11v3,28,-10,92,18,87v10,-2,20,5,13,14r-113,0v-3,-2,-3,-11,0,-13v25,-3,30,0,30,-40r0,-134v0,-38,-4,-37,-26,-40v-3,-2,-3,-12,1,-13r175,0v0,6,0,32,1,56v-1,4,-10,5,-14,2v-4,-42,-30,-40,-74,-40v-12,0,-11,1,-11,15","w":197,"k":{".":43,",":43,"a":12,"e":13,"o":13,"u":6,"i":8,"r":15,"y":6,"l":2,"A":15}},"G":{"d":"72,-122v0,72,32,107,90,111v31,2,23,-24,25,-50v2,-26,-16,-23,-35,-26v-4,-2,-4,-11,0,-13r108,0v10,22,-27,5,-21,39v3,14,-4,44,7,44v3,14,-13,10,-26,14v-95,30,-206,-12,-206,-113v0,-72,64,-127,148,-127v40,0,59,8,71,8v1,11,1,36,5,58v-1,4,-10,5,-13,1v-12,-34,-35,-51,-68,-51v-57,0,-85,48,-85,105","w":264,"k":{"a":2,"e":2,"o":2,"u":4,"i":4,"r":9,"y":4,"h":4,"l":2,"n":6}},"H":{"d":"183,-114r-75,0v-15,0,-15,0,-15,10v0,35,-16,102,29,92v3,2,3,11,0,13r-108,0v-6,-6,0,-16,9,-14v17,-2,18,-6,18,-39r0,-134v1,-39,-3,-38,-27,-40v-3,-2,-3,-11,0,-13r104,0v5,6,1,17,-8,14v-25,-5,-15,54,-17,81v0,10,0,11,15,11r75,0v30,3,9,-34,15,-53v1,-38,-4,-37,-28,-40v-3,-2,-3,-11,0,-13r105,0v5,5,1,16,-7,14v-17,3,-19,6,-19,39r0,134v-1,38,4,37,27,40v3,2,3,11,0,13r-105,0v-5,-6,-1,-16,8,-14v30,5,19,-61,19,-91v0,-10,0,-10,-15,-10","w":290,"k":{"a":4,"e":6,"o":6,"u":9,"i":4,"y":9}},"I":{"d":"93,-185r0,132v-1,40,3,38,28,41v3,2,3,11,0,13r-109,0v-6,-7,1,-17,10,-14v17,-3,19,-6,19,-40r0,-132v1,-41,-6,-36,-29,-41v-3,-2,-3,-11,0,-13r109,0v6,8,-2,16,-10,15v-17,3,-18,5,-18,39","w":133,"k":{"a":4,"c":6,"d":6,"g":4,"o":9,"s":6,"t":9,"u":12,"z":2,"b":2,"p":12,"v":9,"w":6,"r":6,"y":2,"h":2,"k":2,"l":2,"n":4,"f":2,"m":4}},"J":{"d":"-1,32v11,-1,25,17,34,18v8,0,11,-16,12,-29v5,-41,2,-150,3,-206v1,-43,-6,-36,-32,-41v-3,-2,-3,-11,0,-13r112,0v6,8,-2,16,-10,15v-17,3,-18,5,-18,39v-3,116,25,256,-93,257v-10,0,-27,-2,-27,-14v0,-10,8,-25,19,-26","w":137,"k":{"a":9,"e":9,"o":9,"u":13,"i":6,"y":2}},"K":{"d":"99,-129v37,-17,66,-62,85,-90v0,-5,-13,-6,-19,-7v-4,-3,-3,-12,2,-13r88,0v4,1,5,10,2,13v-53,1,-74,41,-106,79v17,34,50,80,77,117v13,17,19,16,38,18v2,3,2,11,-1,13r-108,0v-18,-16,23,-10,11,-25v-19,-24,-43,-79,-67,-90v-15,0,-7,45,-8,62v-2,39,4,38,28,40v3,3,3,11,0,13r-108,0v-6,-7,1,-17,10,-14v16,-2,18,-6,18,-39r0,-134v1,-39,-4,-38,-28,-40v-4,-2,-4,-11,0,-13r108,0v6,7,-1,17,-10,14v-27,-5,-18,55,-18,83v0,12,2,13,6,13","w":257,"k":{"a":-2,"C":15,"e":2,"G":15,"o":6,"O":15,"u":9,"Q":15,"w":20,"i":-2,"r":-2,"y":12,"h":-2}},"L":{"d":"93,-60v3,37,-1,42,43,43v33,0,42,0,64,-42v2,-4,11,-2,14,2v-2,19,-11,48,-16,58r-188,0v-3,-2,-4,-11,-1,-13v26,-2,32,1,32,-40r0,-134v1,-40,-4,-38,-29,-40v-4,-2,-3,-11,1,-13r107,0v6,6,0,16,-9,14v-16,3,-18,6,-18,39r0,126","w":210,"k":{"C":11,"G":11,"O":11,"T":38,"u":2,"U":13,"Y":25,"Q":11,"V":32,"W":40,"w":17,"y":17,"j":4,"A":-4}},"M":{"d":"40,-123v0,-42,18,-105,-28,-103v-3,-3,-3,-12,1,-13v22,1,56,2,81,0v7,51,49,121,73,168v22,-43,60,-119,73,-168v31,2,48,1,77,0v13,23,-39,8,-31,41v0,74,3,113,3,158v0,22,7,28,27,28v3,3,4,12,0,13r-103,0v-8,-6,-1,-17,9,-14v17,-2,17,-6,17,-28r-1,-135v-27,58,-56,118,-80,179v-4,3,-12,2,-16,0v-14,-45,-59,-134,-79,-181v-4,48,-3,89,-3,139v0,25,11,24,30,27v3,3,3,11,0,13v-27,-1,-54,-2,-82,0v-7,-3,-4,-17,5,-14v18,-3,20,-5,22,-27v2,-18,5,-49,5,-83","w":326,"k":{"j":6,"a":4,"e":9,"o":9,"u":13,"i":4,"y":11,"n":2}},"N":{"d":"240,-213v-11,47,-3,152,-5,210v-25,19,-23,1,-50,-31r-122,-149v-4,40,-5,126,3,159v3,11,18,11,31,12v3,3,2,11,0,13r-88,0v-11,-18,24,-12,26,-25v8,-41,8,-140,2,-188v-1,-9,-16,-14,-31,-14v-3,-3,-2,-12,2,-13r80,0v11,32,95,124,124,158v2,-36,3,-107,-4,-132v-4,-11,-17,-12,-31,-13v-3,-3,-2,-11,0,-13r89,0v4,4,2,16,-6,14v-9,1,-18,4,-20,12","w":269,"k":{"a":11,"e":11,"o":11,"u":11,"i":9,"y":11}},"O":{"d":"143,-243v75,0,126,50,126,123v0,78,-53,126,-130,126v-72,0,-125,-48,-125,-123v0,-71,54,-126,129,-126xm212,-115v0,-62,-27,-112,-72,-112v-44,0,-68,42,-68,102v0,44,15,114,74,114v47,0,66,-46,66,-104","w":283,"k":{"a":2,"c":2,"d":2,"e":2,"g":2,"o":2,"s":2,"t":2,"T":11,"u":2,"Y":22,"z":2,"V":9,"W":19,"b":2,"p":2,"q":2,"i":2,"r":2,"y":-2,"h":4,"k":2,"l":2,"n":2,"f":2,"j":2,"m":2,"x":-2,"A":11,"X":11}},"P":{"d":"15,-235v80,-4,193,-20,193,68v0,63,-59,70,-90,67v-3,-2,-4,-7,-1,-9v55,-14,48,-111,-10,-113v-13,0,-14,4,-14,18r0,152v-1,40,6,36,29,41v4,2,4,10,0,12r-109,0v-8,-7,2,-15,10,-14v16,-3,18,-6,18,-39r0,-127v0,-43,-2,-42,-27,-44v-3,-2,-3,-9,1,-12","w":216,"k":{"h":4,"H":2,".":65,",":65,"a":17,"e":22,"o":22,"s":13,"t":6,"u":11,"i":4,"r":11,"y":2,"l":2,"n":11,"A":34,"E":6,"I":2}},"Q":{"d":"143,-243v75,0,126,49,126,123v0,58,-29,100,-75,117v-3,1,-2,4,3,8v33,29,66,64,121,52v3,1,4,6,3,9v-66,34,-140,-4,-181,-49v-7,-7,-10,-11,-19,-12v-59,-5,-107,-51,-107,-122v0,-71,54,-126,129,-126xm140,-227v-44,0,-68,42,-68,102v0,44,15,115,74,115v47,0,66,-47,66,-105v0,-62,-27,-112,-72,-112","w":283,"k":{"X":4,"W":11,"V":6,"a":2,"T":9,"u":2,"U":9,"Y":9,"A":9}},"R":{"d":"16,-235v75,-6,192,-16,192,63v0,32,-21,46,-38,54v-4,2,-4,3,-2,7v33,59,36,87,80,101v3,2,3,7,1,9v-42,9,-80,-2,-98,-35v-11,-20,-20,-36,-28,-55v-1,-15,-33,-19,-33,-5v0,34,-12,92,28,84v3,2,3,11,0,13r-105,0v-6,-7,1,-17,10,-14v16,-3,18,-6,18,-39r0,-127v1,-44,-3,-40,-26,-44v-4,-2,-3,-10,1,-12xm113,-120v30,0,40,-14,40,-49v0,-32,-19,-53,-47,-53v-15,0,-16,1,-16,18r0,70v0,13,2,14,23,14","w":239,"k":{"a":-2,"C":11,"e":4,"G":11,"o":4,"O":11,"T":19,"u":4,"U":13,"Y":14,"Q":11,"V":19,"W":20,"y":11}},"S":{"d":"123,-47v0,-65,-104,-56,-104,-128v0,-60,76,-82,137,-60v3,8,7,28,7,52v-2,4,-11,5,-14,1v-6,-18,-22,-45,-48,-45v-52,0,-42,60,-4,75v35,14,75,32,75,85v0,44,-37,73,-91,73v-66,0,-70,-12,-73,-72v3,-5,11,-5,14,-1v7,23,31,56,62,56v27,0,39,-18,39,-36","w":182,"k":{"a":4,"e":4,"o":2,"t":9,"u":6,"p":9,"q":2,"w":11,"i":4,"y":2,"h":4,"k":6,"l":6,"n":9,"j":4,"m":9}},"T":{"d":"55,-238v54,-4,145,9,171,-9v2,0,4,2,5,3v-4,12,-6,41,-5,62v-2,3,-11,4,-13,1v-5,-31,-21,-44,-60,-40v-9,0,-10,1,-10,10r0,159v-1,41,7,38,33,40v3,2,3,11,0,13r-119,0v-3,-2,-3,-11,0,-13v27,-2,35,2,35,-40r0,-159v3,-17,-19,-7,-31,-10v-26,0,-34,15,-45,41v-4,2,-11,1,-13,-4v8,-25,9,-47,12,-61v19,-4,2,10,40,7","w":232,"k":{"a":40,"C":13,"e":43,"G":13,"o":43,"O":13,"s":36,"T":-4,"u":45,"Y":-6,"z":25,"Q":13,"V":-2,"W":-2,"w":43,"i":12,"r":39,"y":36,"m":39,"A":28,"X":-6,",":43,".":43,"S":4,":":29,"-":36,";":29}},"U":{"d":"137,6v-63,0,-98,-30,-98,-102r0,-90v0,-38,-4,-37,-27,-40v-3,-2,-3,-11,1,-13r105,0v6,6,0,16,-9,14v-16,3,-18,6,-18,39v0,75,-24,167,59,172v80,4,61,-134,55,-199v-4,-10,-17,-12,-31,-13v-3,-3,-2,-11,0,-13r89,0v10,18,-23,11,-26,26v-7,15,-8,74,-6,106v3,65,-28,113,-94,113","w":266,"k":{"d":11,"g":9,"s":11,"t":11,"z":6,"b":2,"p":13,"i":6,"r":15,"h":2,"k":2,"l":2,"n":15,"f":4,"m":15,"x":6,"A":24}},"V":{"d":"219,-213v-33,56,-65,149,-92,216v-5,3,-18,5,-22,0r-74,-188v-18,-44,-14,-34,-41,-41v-3,-4,-2,-11,1,-13r103,0v3,2,3,10,1,13v-31,5,-20,13,-6,48r44,111v19,-42,45,-110,59,-151v1,-7,-37,-5,-22,-21r78,0v13,19,-25,10,-29,26","w":231,"k":{"}":-15,"]":-15,"Q":9,";":16,":":6,".":43,"-":22,",":43,")":-15,"a":33,"C":9,"e":33,"G":9,"o":33,"O":9,"u":33,"r":32,"y":22,"A":27}},"W":{"d":"246,-57v20,-52,48,-103,64,-160v0,-7,-12,-7,-18,-9v-3,-3,-2,-11,1,-13v23,1,49,2,70,0v3,2,4,10,1,13v-35,6,-30,13,-47,50v-19,41,-56,132,-74,179v-4,4,-17,4,-22,0r-42,-94r-44,96v-4,3,-16,5,-21,0r-92,-204v-12,-25,-13,-22,-32,-27v-3,-4,-3,-11,1,-13v25,1,64,2,90,0v5,3,4,16,-5,14v-23,6,-5,19,9,50r56,121v7,-24,35,-46,22,-74r-34,-76v-9,-19,-11,-22,-28,-22v-4,-3,-3,-12,1,-13v25,1,66,2,87,0v6,3,3,16,-5,14v-23,4,2,29,4,41v3,8,8,18,11,24r25,-59v1,-6,-14,-5,-20,-7v-3,-3,-2,-11,1,-13v20,2,53,1,72,0v3,2,4,10,1,13v-38,-2,-52,60,-68,87v7,22,31,67,36,82","w":345,"k":{"}":-15,"]":-17,"Q":9,";":22,":":22,".":43,"-":14,",":43,")":-15,"a":33,"C":9,"e":33,"G":9,"o":36,"O":9,"T":-4,"u":30,"i":4,"r":33,"y":29,"A":42}},"X":{"d":"108,-98v-16,25,-34,53,-46,81v-1,3,15,4,21,5v3,3,3,12,-1,13r-85,0v-7,-5,-2,-15,7,-13v49,-11,54,-54,87,-92v6,-13,8,-11,-1,-24v-12,-18,-35,-54,-52,-78v-9,-14,-20,-17,-38,-20v-3,-3,-4,-11,0,-13v21,1,94,2,111,0v7,4,4,16,-6,14v-15,3,-14,6,-7,20v10,17,23,37,34,53v14,-24,31,-42,40,-68v-1,-4,-15,-5,-21,-6v-3,-3,-3,-11,1,-13v21,2,62,1,83,0v4,2,5,10,2,13v-51,1,-59,45,-86,76v-9,10,-10,11,-2,23v27,42,44,69,57,88v16,23,23,25,47,27v3,3,3,10,-1,13v-26,-2,-87,-1,-117,0v-7,-5,-2,-17,9,-14v22,-5,13,-4,3,-26v-5,-10,-34,-52,-39,-59","w":239,"k":{"Q":9,"C":9,"e":2,"G":9,"O":9,"u":9,"y":6}},"Y":{"d":"122,-119v13,-23,44,-81,48,-100v0,-2,-5,-5,-14,-6v-8,2,-13,-9,-7,-14v25,1,54,2,76,0v13,16,-18,14,-27,23v-15,32,-66,95,-66,164v0,42,6,38,33,40v3,2,3,11,0,13r-115,0v-3,-2,-3,-11,0,-13v32,5,32,-19,31,-58v-3,-52,-37,-89,-53,-131v-8,-20,-15,-23,-35,-25v-3,-3,-3,-12,1,-13v27,2,80,1,104,0v3,1,3,10,0,13r-21,6v9,26,32,76,45,101","w":207,"k":{"a":24,"C":4,"e":32,"G":4,"o":33,"O":4,"t":19,"T":-4,"u":29,"Y":-6,"Q":4,"V":-4,"W":-4,"q":36,"v":18,"l":-4,"A":6,"X":-4,",":29,".":29,":":22,"-":27,";":13,"}":-15,"]":-17,")":-17}},"Z":{"d":"142,-219v-9,-4,-37,-1,-51,-2v-42,0,-50,11,-62,41v-5,3,-13,2,-15,-2v7,-25,10,-45,14,-64v18,-2,4,8,40,8r145,-1v2,1,3,4,3,6v-19,19,-130,191,-139,212v2,6,49,4,67,4v35,0,47,-4,67,-45v4,-3,11,-1,14,3v-2,20,-10,51,-16,60r-202,0v-9,-12,18,-35,30,-54","w":221,"k":{"a":2,"C":11,"e":2,"G":11,"o":4,"O":11,"u":2,"Q":11,"w":13,"i":4,"y":13,"A":-4}},"[":{"d":"44,55r0,-303r67,1v10,16,-13,14,-24,16v-12,3,-14,7,-14,57r0,155v0,69,2,55,39,61v6,19,-12,11,-40,13r-28,0","w":122,"k":{"J":-13}},"\\":{"d":"40,-243r68,249r-32,0r-69,-249r33,0","w":115},"]":{"d":"79,-248r0,303r-68,-1v-3,-1,-3,-11,0,-12v36,-6,39,8,38,-61r0,-155v1,-70,-3,-52,-38,-61v-3,-1,-3,-11,0,-12","w":122},"^":{"d":"166,-88r-32,0r-40,-95r-40,95r-32,0r60,-137r24,0"},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0","w":180},"a":{"d":"12,-99v8,-29,38,-47,78,-50v50,-4,44,51,44,100v0,32,12,36,29,26v3,1,6,6,5,9v-4,6,-21,19,-42,19v-15,0,-23,-11,-36,-15v-21,19,-78,23,-78,-23v0,-29,44,-39,71,-47v19,-6,10,-51,-12,-51v-15,-4,-16,25,-25,32v-8,6,-33,17,-34,0xm76,-18v20,2,15,-34,12,-47v-31,-4,-41,43,-12,47","w":159},"b":{"d":"180,-77v0,72,-80,98,-138,72v-7,-1,-13,11,-19,3r1,-198v7,-26,-20,-18,-14,-37v17,-2,42,-20,62,-18r-1,107v3,21,24,-7,42,-1v41,0,67,31,67,72xm88,-126v-31,0,-14,49,-17,75v-2,18,10,39,28,39v23,0,32,-25,32,-54v0,-36,-18,-60,-43,-60","w":191,"k":{"w":4,"v":4,"y":2}},"c":{"d":"101,-149v20,0,48,0,46,25v-1,14,-6,23,-16,19v-10,-14,-24,-27,-37,-27v-56,0,-44,110,16,108v13,0,24,-4,32,-17v4,0,9,2,9,8v-8,18,-30,38,-64,38v-45,0,-76,-31,-76,-73v0,-51,41,-81,90,-81","w":149},"d":{"d":"169,-255r-1,196v0,47,0,45,24,39v4,3,4,13,0,16v-45,0,-63,21,-71,8v0,-4,3,-16,-2,-14v-44,36,-110,-1,-108,-56v2,-57,48,-91,106,-81v9,-10,1,-36,4,-53v5,-26,-19,-19,-13,-37v17,-2,41,-20,61,-18xm102,-19v33,0,19,-56,19,-88v0,-16,-11,-24,-23,-25v-18,0,-36,18,-36,56v0,24,10,57,40,57","w":193},"e":{"d":"134,-85r-69,0v-8,0,-9,0,-9,6v-4,40,55,78,84,35v4,-1,9,2,9,8v-32,74,-137,39,-137,-32v0,-45,32,-81,77,-81v37,0,58,24,58,52v0,7,-2,12,-13,12xm75,-101v14,-1,32,4,31,-12v0,-12,-7,-19,-19,-19v-18,0,-47,32,-12,31","w":151,"k":{"y":2}},"f":{"d":"132,-208v-19,0,-35,-38,-40,-31v-9,0,-15,11,-15,44r0,41v-2,21,30,6,44,10v4,5,1,17,-3,19v-14,4,-41,-10,-41,11r0,72v-1,34,5,29,25,31v3,2,3,10,0,12r-92,0v-8,-23,29,-1,20,-43r0,-72v6,-22,-27,0,-23,-20v7,-5,22,-8,23,-18v1,-53,18,-106,81,-105v21,0,42,10,42,29v0,12,-9,20,-21,20","w":111,"k":{"'":-28,"}":-35,"]":-39,")":-41,"\"":-32}},"g":{"d":"173,27v1,45,-51,70,-96,70v-76,0,-89,-56,-41,-75v4,-3,3,-4,0,-5v-15,-4,-28,-22,-19,-37v13,-10,27,-13,25,-25v-52,-24,-34,-104,40,-104v21,0,41,6,54,13v14,3,44,-9,44,9v0,19,-16,15,-32,15v9,43,-22,80,-87,74v-12,7,-4,23,12,22v44,-1,99,-10,100,43xm59,-97v-2,50,45,64,45,7v2,-53,-44,-57,-45,-7xm100,20v-21,1,-50,-4,-50,17v0,24,19,41,47,41v23,0,38,-12,38,-29v0,-21,-15,-29,-35,-29","w":172},"h":{"d":"99,-123v-39,-1,-20,54,-23,87v-2,25,2,22,16,24v3,2,2,11,-1,13v-21,-2,-60,-1,-82,0v-4,-4,-3,-16,6,-13v12,-1,14,-5,14,-30r0,-158v7,-26,-20,-18,-14,-37v17,-2,42,-20,62,-18v1,40,-4,87,1,123v13,-6,24,-16,47,-17v55,0,46,55,46,107v0,28,1,30,20,30v3,2,2,11,-1,13v-19,-1,-63,-2,-82,0v-5,-5,-2,-16,6,-14v8,-1,10,-3,10,-23v0,-35,15,-86,-25,-87","w":196},"i":{"d":"78,-151v-2,31,-1,75,-1,109v0,29,1,30,20,30v3,2,3,11,0,13v-24,-2,-63,-1,-87,0v-5,-4,-2,-17,7,-13v23,1,8,-60,13,-84v5,-25,-18,-19,-12,-37v21,-3,46,-24,60,-18xm55,-230v15,0,25,12,25,26v0,17,-13,26,-27,26v-16,0,-25,-11,-25,-26v0,-16,13,-26,27,-26","w":102},"j":{"d":"78,-151v-3,61,7,142,-8,190v-8,27,-27,43,-73,58v-17,-11,10,-19,13,-25v27,-22,20,-111,21,-168v6,-25,-18,-19,-12,-37v21,-3,45,-24,59,-18xm55,-230v15,0,25,12,25,26v0,17,-13,26,-27,26v-16,0,-25,-11,-25,-26v0,-16,13,-26,27,-26","w":101},"k":{"d":"27,-42r0,-158v6,-25,-19,-19,-13,-37v17,-2,41,-20,61,-18r-1,166v15,19,43,-24,50,-37v-1,-5,-11,-4,-16,-5v-5,-6,-1,-16,9,-13v17,0,47,-2,68,-5v4,2,5,10,2,13v-25,1,-53,26,-62,40v5,18,40,63,50,75v6,6,16,7,26,9v3,3,3,12,-1,13v-17,-1,-73,-2,-90,0v-9,-7,3,-16,9,-16v-7,-17,-22,-35,-32,-51v-4,-6,-14,-10,-13,3v2,23,-7,59,20,51v3,2,3,11,0,13v-23,-2,-64,-1,-88,0v-5,-4,-2,-17,7,-13v13,-1,14,-5,14,-30","w":191},"l":{"d":"27,-42r0,-158v6,-25,-19,-19,-13,-37v17,-2,41,-20,61,-18r-1,213v0,28,1,30,20,30v3,2,3,11,0,13v-24,-2,-61,-1,-86,0v-5,-4,-4,-16,6,-13v12,-1,13,-5,13,-30","w":100},"m":{"d":"99,-123v-37,0,-22,54,-22,87v0,23,1,24,16,24v3,2,3,11,0,13v-20,-2,-61,-1,-81,0v-5,-4,-4,-16,5,-13v23,1,8,-60,13,-84v5,-25,-18,-19,-12,-37v21,-3,46,-24,60,-18v1,7,-3,17,1,19v13,-5,26,-15,48,-17v17,-1,30,15,41,20v13,-5,28,-20,53,-20v52,0,43,57,43,107v0,28,2,30,19,30v3,2,3,11,0,13v-20,-1,-60,-2,-81,0v-4,-4,-5,-16,5,-13v9,-1,10,-4,10,-24v0,-34,14,-86,-24,-87v-38,0,-22,55,-22,87v0,23,0,24,15,24v3,2,3,11,0,13v-19,-1,-58,-1,-77,0v-4,-4,-5,-16,5,-13v8,-1,10,-4,10,-24v0,-35,14,-87,-25,-87","w":290},"n":{"d":"100,-123v-38,0,-23,54,-23,87v0,23,1,24,16,24v3,2,3,11,0,13v-22,-2,-59,-1,-83,0v-4,-4,-3,-16,6,-13v25,1,9,-59,14,-84v5,-25,-18,-19,-12,-37v21,-3,46,-24,60,-18v1,7,-3,17,1,19v13,-5,26,-17,48,-17v55,0,45,56,45,107v0,28,1,30,20,30v3,2,3,11,0,13v-20,-1,-61,-2,-83,0v-10,-22,21,-2,16,-37v-5,-35,14,-87,-25,-87","w":198},"o":{"d":"92,5v-43,0,-81,-24,-81,-74v-2,-103,164,-108,164,-3v0,53,-39,77,-83,77xm92,-132v-16,0,-29,16,-29,55v0,38,12,65,33,65v21,0,27,-23,27,-55v0,-35,-10,-65,-31,-65","w":185,"k":{"v":6,"w":6,"y":4,"x":4}},"p":{"d":"28,50r0,-146v6,-25,-18,-19,-12,-37v19,-1,45,-29,59,-19v-1,5,-1,15,2,17v11,-5,27,-14,46,-14v38,0,61,30,61,69v0,55,-42,92,-104,84v-10,5,-4,32,-5,46v-2,33,5,28,25,30v3,2,3,11,0,13r-92,0v-5,-4,-4,-16,6,-13v12,-1,14,-5,14,-30xm94,-124v-33,0,-15,54,-19,83v-2,15,12,29,25,29v22,0,35,-24,35,-57v0,-35,-17,-55,-41,-55","w":195,"k":{"w":4}},"q":{"d":"11,-66v0,-68,71,-95,137,-78v4,2,16,-13,22,-4v-5,60,-1,134,-2,198v-1,33,5,28,25,30v3,2,3,11,0,13r-94,0v-5,-5,-2,-17,8,-13v24,2,10,-54,14,-77v0,-4,0,-7,-3,-7v-55,28,-107,-11,-107,-62xm108,-17v10,0,13,-2,13,-11v0,-38,15,-103,-25,-104v-19,0,-35,21,-35,53v0,42,25,62,47,62","w":190},"r":{"d":"112,-104v-7,0,-24,-17,-28,-14v-13,8,-6,55,-7,77v-2,33,5,28,25,30v3,2,3,11,0,13r-92,0v-5,-5,-1,-16,7,-14v24,1,8,-59,13,-83v5,-25,-18,-20,-12,-37v17,-5,42,-15,53,-22v13,-1,-2,21,9,23v13,-13,55,-33,55,3v0,17,-11,24,-23,24","w":133,"k":{"c":4,"d":7,"e":7,"o":2,"t":-3,"u":-3,"z":-7,"q":2,"v":-6,"w":-6,"y":-6,"k":2,"n":6,"f":-3,"m":6,"x":-4,",":22,".":22}},"s":{"d":"58,-117v6,25,72,38,63,74v4,48,-75,59,-107,37v-4,-7,-6,-25,-5,-41v2,-4,10,-4,12,-1v5,15,19,36,37,36v11,0,18,-6,18,-18v0,-33,-66,-35,-61,-73v-5,-46,66,-54,96,-38v4,8,6,22,6,36v-1,4,-11,4,-13,1v-7,-21,-16,-28,-28,-28v-10,0,-18,5,-18,15","w":128},"t":{"d":"117,-137v3,17,-22,11,-37,12v-5,0,-5,1,-5,9v2,41,-15,112,40,91v4,1,6,5,5,9v-18,27,-92,32,-92,-20r0,-80v5,-19,-28,0,-20,-20v26,-13,35,-17,56,-44v15,-5,10,17,11,29v0,20,39,-6,42,14","w":116},"u":{"d":"100,-21v39,0,18,-53,23,-86v2,-16,-7,-18,-21,-20v-3,-3,-2,-12,2,-13v22,2,59,-13,67,-5r-1,97v-2,32,5,35,24,28v3,1,4,14,-1,16v-42,-1,-66,22,-71,8v1,-6,4,-16,-3,-16v-26,24,-98,28,-91,-29v-5,-28,13,-84,-16,-86v-3,-3,-2,-10,2,-13v22,4,53,-14,62,-5v-2,26,-1,62,-1,91v0,17,2,33,25,33","w":195},"v":{"d":"99,-59v8,-20,20,-42,26,-68v-8,-2,-21,-8,-13,-18v20,2,40,1,57,0v6,4,3,16,-5,14v-11,2,-14,5,-21,19v-19,37,-35,76,-52,115v-3,2,-12,3,-16,0v-19,-45,-26,-63,-49,-111v-11,-22,-10,-22,-28,-24v-3,-3,-4,-12,1,-13v23,2,59,1,85,0v4,5,3,16,-5,14v-10,2,-5,7,-3,16v7,20,15,39,23,56","w":164,"k":{"q":13,".":27,",":27,"a":2,"c":13,"d":11,"e":11,"o":13}},"w":{"d":"186,-57r24,-69v1,-3,-11,-6,-16,-6v-2,-3,-2,-12,2,-13v21,1,38,1,57,0v4,2,4,16,-4,14v-12,3,-14,6,-20,19v-17,37,-33,77,-48,115v-3,3,-14,3,-17,0v-8,-19,-26,-62,-37,-85r-39,85v-3,3,-14,3,-17,0v-17,-41,-34,-83,-52,-120v-7,-12,-10,-13,-22,-15v-3,-3,-2,-11,2,-13r177,0v5,2,4,17,-4,14v-15,4,-15,3,-10,16v6,17,16,41,24,58xm96,-57v13,-24,40,-75,-10,-74v-21,0,-21,4,-15,18v6,13,19,44,25,56","w":245,"k":{"q":2,".":27,",":27,"c":2,"d":2,"e":2}},"x":{"d":"91,-99v1,-7,30,-30,8,-33v-3,-2,-3,-12,1,-13v18,1,41,2,60,0v5,2,5,16,-4,13v-29,1,-40,27,-56,46v16,23,35,75,68,74v3,3,3,12,-1,13r-91,0v-6,-4,-3,-17,7,-14v17,-7,-10,-27,-14,-37v-6,10,-17,22,-19,34v-1,3,9,3,12,4v3,2,3,12,0,13v-20,-1,-39,-2,-61,0v-13,-17,19,-10,25,-21v10,-18,51,-36,22,-65v-15,-15,-22,-47,-49,-47v-3,-2,-3,-12,1,-13v23,1,56,2,82,0v13,12,-17,11,-6,24v6,7,10,15,15,22","w":164,"k":{"q":2,"c":6,"d":4,"e":4,"o":2}},"y":{"d":"26,50v31,0,34,-21,41,-42v-7,-37,-28,-79,-41,-114v-7,-20,-11,-24,-28,-26v-3,-3,-3,-12,1,-13v24,1,61,2,88,0v6,3,3,17,-6,14v-24,7,-7,13,0,39v3,10,12,32,16,41r31,-75v0,-5,-10,-5,-15,-6v-3,-3,-3,-12,1,-13v14,1,45,2,63,0v5,2,3,17,-6,13v-33,7,-42,54,-57,85r-55,114v-7,29,-55,30,-54,2v0,-11,8,-19,21,-19","w":168,"k":{"c":9,"d":13,"e":13,"o":13,"q":2,",":31,".":31}},"z":{"d":"138,1r-128,0v-5,-15,20,-36,30,-58v10,-23,27,-45,37,-69v-26,-5,-56,-2,-58,26v-3,3,-11,1,-13,-3v5,-14,2,-51,18,-48v1,6,3,7,21,7r94,-1v3,15,-12,25,-23,47v-13,27,-34,51,-45,80v34,5,60,0,68,-30v3,-3,11,-2,13,2v-1,14,-9,40,-14,47","w":149,"k":{"c":2,"d":2,"e":2,"o":2}},"{":{"d":"59,-97v43,12,21,71,20,112v0,13,3,27,30,32v2,2,2,9,0,10v-33,0,-61,-5,-61,-47v0,-43,34,-95,-26,-102v-3,-3,-3,-7,0,-9v32,-2,32,-17,32,-28v0,-23,-6,-50,-6,-74v0,-42,30,-47,61,-47v2,1,2,8,0,10v-76,13,21,117,-50,143","w":122,"k":{"J":-13}},"|":{"d":"60,-270r0,360r-31,0r0,-360r31,0","w":89},"}":{"d":"43,15v-1,-41,-23,-100,20,-112v-45,-10,-20,-105,-20,-111v0,-11,-3,-27,-30,-32v-2,-2,-1,-9,1,-10v31,0,61,5,61,47v0,24,-6,51,-6,74v0,11,-1,26,31,28v3,2,3,6,0,9v-60,8,-25,59,-25,102v0,42,-28,47,-61,47v-2,-1,-3,-8,-1,-10v27,-5,30,-19,30,-32","w":122},"~":{"d":"20,-40v3,-18,19,-56,51,-50v36,-1,69,8,76,-26v6,-4,16,-2,20,5v-9,21,-15,47,-47,47v-39,0,-72,-8,-80,29v-5,3,-18,1,-20,-5"},"'":{"d":"46,-252v27,0,24,10,20,33r-13,74v-4,3,-10,3,-14,0r-16,-95v0,-12,8,-12,23,-12","w":91},"`":{"d":"40,-215v-19,-13,1,-30,15,-32v4,0,8,3,12,11r32,66v-1,4,-4,6,-9,5","w":136},"\u00a0":{"w":86,"k":{"W":13,"V":13,"T":13,"Y":13}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1989, 1992, 1994, 1996, 1998, 1999, 2000, 2001 Adobe Systems Incorporated.
 * All rights reserved.
 * 
 * Trademark:
 * Adobe Garamond is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * AGaramondPro-Italic
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 * 
 * Designer:
 * Robert Slimbach
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Adobe Garamond Pro","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 2 5 2 5 5 6 9 4 3","ascent":"261","descent":"-99","x-height":"5","cap-height":"1","bbox":"-56.8086 -274 378.845 103","underline-thickness":"18","underline-position":"-18","slope":"-18.5","stemh":"13","stemv":"27","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":90,"k":{"W":22,"V":17,"T":17,"Y":17}},"!":{"d":"90,-233v30,6,13,15,3,42r-44,117v-1,3,-8,3,-10,0r32,-147v3,-10,7,-12,19,-12xm10,-12v-2,-24,36,-30,36,-6v2,26,-36,32,-36,6","w":74},"\"":{"d":"99,-247v15,0,14,5,7,23r-24,58v-1,3,-7,3,-8,0r7,-58v2,-20,2,-23,18,-23xm156,-247v15,0,14,5,7,23r-24,58v-1,3,-7,3,-8,0r7,-58v2,-20,2,-23,18,-23","w":136},"#":{"d":"145,-145r-41,0r-24,58r41,0xm198,-145r-36,0r-25,58r35,0r-7,17r-34,0r-29,69r-15,0r27,-69r-41,0r-28,69r-15,0r28,-69r-40,0r8,-17r38,0r24,-58r-39,0r8,-18r38,0r25,-62r17,0r-25,62r40,0r25,-62r17,0r-25,62r36,0"},"$":{"d":"108,-139r24,-80v-43,-4,-63,62,-24,80xm112,-104r-27,93v58,4,69,-73,27,-93xm157,-258r-8,28v19,2,37,10,43,13v1,9,-2,24,-6,38v-1,2,-7,3,-8,2v1,-13,-5,-38,-33,-42r-25,87v24,15,45,31,45,62v0,46,-40,70,-84,70r-10,34v-3,3,-11,3,-13,0r10,-35v-50,-10,-62,-13,-50,-66v1,-2,5,-1,8,0v0,18,11,49,45,55r29,-100v-68,-30,-35,-121,35,-118v5,-11,3,-37,22,-28"},"%":{"d":"122,-230v27,0,41,19,41,48v0,43,-34,91,-72,91v-29,0,-43,-20,-43,-48v0,-44,32,-91,74,-91xm72,-129v0,18,6,27,18,27v32,0,49,-68,49,-92v0,-15,-7,-26,-18,-26v-31,0,-49,67,-49,91xm261,-135v27,0,40,19,40,48v0,43,-33,91,-71,91v-29,0,-43,-20,-43,-48v0,-44,32,-91,74,-91xm211,-33v0,18,6,27,18,27v32,0,49,-69,49,-93v0,-15,-7,-26,-18,-26v-31,0,-49,68,-49,92xm67,5r200,-240v4,0,11,3,11,9r-201,240v-6,0,-10,-4,-10,-9","w":310},"&":{"d":"280,-130v17,-5,-7,-37,16,-35v20,2,15,44,-3,41v-10,-2,-29,16,-36,7v-2,-3,-13,-17,-24,-26v-2,47,-1,61,-39,109v-23,29,-61,39,-86,39v-96,0,-102,-87,-45,-149v23,-24,46,-28,54,-28v16,0,19,9,22,14v25,-24,57,-45,64,-82v-5,-12,-15,-32,6,-34v8,0,17,5,17,19v0,67,-119,135,-173,175v-2,47,34,65,63,65v51,0,111,-65,107,-132v-15,-13,-45,-3,-45,17v0,13,16,32,-6,32v-8,0,-16,-4,-16,-14v-7,-15,41,-61,60,-55v24,-4,42,31,64,37xm53,-94v26,-18,47,-34,59,-44v0,-29,-23,-22,-39,0v-11,15,-17,29,-20,44","w":277},"(":{"d":"166,-248v-82,52,-153,186,-91,303v0,3,-3,4,-6,4v-28,-29,-37,-66,-37,-113v0,-82,70,-172,129,-199v3,0,5,2,5,5","w":115,"k":{"J":-13}},")":{"d":"-24,54v80,-53,153,-186,91,-303v0,-3,3,-4,6,-4v28,29,36,65,36,112v0,82,-70,172,-128,200v-3,0,-5,-2,-5,-5","w":115},"*":{"d":"130,-241r-7,46r49,-12v3,1,5,6,3,9r-47,18r33,37v0,3,-1,7,-5,7r-39,-33r-14,45v-3,1,-6,1,-8,-2r7,-46r-49,13v-3,-1,-5,-6,-3,-9r46,-19r-33,-37v0,-3,3,-6,6,-6r38,32r15,-45v3,-1,6,0,8,2","w":144},"+":{"d":"122,0r-21,0r0,-65r-59,0r0,-18r59,0r0,-59r21,0r0,59r59,0r0,18r-59,0r0,65","w":201},",":{"d":"34,-6v0,-13,-17,-12,-17,-22v0,-8,7,-14,15,-14v17,0,26,15,26,28v0,26,-31,45,-55,52v-3,-1,-3,-4,-2,-7v12,-5,33,-17,33,-37","w":90},"-":{"d":"24,-83r88,-8v4,5,2,17,-3,21r-88,8v-4,-5,-2,-17,3,-21","w":115},".":{"d":"17,-12v-2,-25,36,-29,36,-6v2,25,-36,33,-36,6","w":90},"\/":{"d":"129,-243r-111,249r-21,0r111,-249r21,0","w":90},"0":{"d":"27,-64v2,-70,42,-166,114,-166v44,0,51,39,51,69v-2,65,-42,166,-112,166v-45,0,-53,-39,-53,-69xm140,-220v-54,11,-84,119,-86,176v0,23,8,38,28,38v31,0,50,-49,60,-75v11,-29,23,-67,23,-98v0,-22,-5,-41,-25,-41"},"1":{"d":"161,-229r-58,185v-12,35,-1,34,23,36v2,2,2,8,-1,9r-90,0v-7,-7,2,-11,9,-10v23,-3,26,-9,34,-37r36,-121v14,-39,0,-34,-23,-37v-2,-2,-1,-6,1,-7v36,-4,50,-17,69,-18"},"2":{"d":"-3,-5v45,-34,161,-96,161,-167v0,-60,-74,-45,-92,-8v-4,2,-8,-1,-8,-6v24,-56,128,-62,131,9v2,62,-123,123,-139,152v30,3,91,15,104,-18v3,-1,7,0,8,2v-5,14,-15,35,-21,42r-142,0v-1,-2,-2,-3,-2,-6"},"3":{"d":"51,7v42,0,93,-44,87,-89v4,-45,-61,-49,-83,-22v-6,-1,-8,-9,-4,-14v30,-13,95,-34,97,-71v-9,-50,-61,-22,-81,5v-4,0,-6,-2,-6,-6v14,-21,39,-40,71,-40v30,0,46,15,46,38v0,25,-31,40,-52,49v-6,3,-3,7,3,8v21,4,41,21,41,49v0,62,-83,106,-136,106v-21,0,-36,-8,-36,-21v0,-8,6,-15,15,-15v18,1,16,23,38,23"},"4":{"d":"174,-82v8,22,-31,4,-37,22r-7,22v-10,27,-3,28,16,30v2,2,2,8,-1,9v-30,-2,-52,-1,-82,0v-7,-10,7,-10,15,-10v25,0,26,-30,33,-50v3,-9,1,-10,-8,-10r-86,0v-9,-4,-2,-11,6,-19r164,-161v3,-5,17,-8,20,-2r-165,162v-6,6,-1,7,9,7v24,0,63,10,70,-10v8,-24,12,-54,24,-74v5,-3,14,-6,20,-6v5,0,4,4,2,11r-21,69v-5,16,16,8,28,10"},"5":{"d":"104,-201v-23,-1,-20,19,-28,32v-6,10,7,8,13,10v35,5,76,17,76,70v0,72,-86,111,-157,113v-5,-1,-6,-9,-2,-12v81,-1,132,-44,132,-92v0,-49,-41,-60,-83,-60v-5,0,-4,-4,-1,-11r29,-62v3,-6,7,-9,16,-10r90,-12v10,5,-7,20,-11,24"},"6":{"d":"146,-80v0,-33,-23,-48,-51,-38v-5,-14,23,-17,30,-17v30,0,52,17,52,59v0,39,-37,81,-86,81v-44,0,-67,-27,-67,-70v0,-51,35,-106,75,-136v50,-37,102,-45,127,-48v3,1,3,6,1,7v-26,6,-60,14,-95,40v-49,36,-77,96,-77,144v0,31,11,52,39,52v34,0,52,-42,52,-74"},"7":{"d":"220,-222v-64,70,-127,168,-187,245v-6,1,-11,-4,-11,-8r152,-205v9,-12,5,-14,-5,-14v-39,3,-96,-11,-110,17v-2,2,-7,0,-8,-3v5,-8,14,-22,19,-36r147,0v2,1,3,2,3,4"},"8":{"d":"166,-64v0,81,-146,96,-146,15v0,-41,39,-55,68,-73v-54,-30,-19,-108,41,-108v36,0,57,23,57,53v0,28,-27,41,-55,55v18,13,35,34,35,58xm89,-6v24,0,49,-17,49,-52v0,-28,-20,-44,-40,-56v-29,17,-51,36,-51,64v0,31,21,44,42,44xm161,-181v0,-22,-12,-39,-34,-39v-22,0,-42,18,-42,45v0,21,16,33,36,46v20,-12,40,-27,40,-52"},"9":{"d":"132,-230v86,0,69,101,31,155v-38,54,-95,87,-159,97v-3,-1,-3,-7,-1,-9v45,-12,88,-34,118,-72v27,-35,44,-83,44,-116v0,-23,-9,-45,-34,-45v-31,0,-54,34,-54,69v0,26,17,49,45,40v7,13,-21,15,-28,16v-28,0,-48,-21,-48,-52v0,-38,37,-83,86,-83"},":":{"d":"48,-120v-2,-24,37,-30,37,-6v1,25,-37,32,-37,6xm17,-12v-2,-25,36,-29,36,-6v2,25,-36,33,-36,6","w":90},";":{"d":"34,-6v0,-13,-17,-12,-17,-22v0,-8,7,-14,15,-14v17,0,26,15,26,28v0,26,-31,45,-55,52v-3,-1,-3,-4,-2,-7v12,-5,33,-17,33,-37xm48,-120v-2,-24,37,-30,37,-6v1,25,-37,32,-37,6","w":90},"<":{"d":"42,-82r141,-66r0,21r-115,54r115,53r0,21r-141,-67r0,-16","w":201},"=":{"d":"181,-110r0,18r-139,0r0,-18r139,0xm181,-56r0,18r-139,0r0,-18r139,0","w":201},">":{"d":"42,-148r141,66r0,16r-141,67r0,-21r115,-54r-115,-53r0,-21","w":201},"?":{"d":"119,-186v0,-29,-36,-29,-50,-17v-14,-10,0,-31,20,-30v21,0,42,26,42,52v0,34,-35,52,-62,65v-18,8,-19,24,-13,41v-1,2,-4,3,-6,2v-19,-20,-13,-57,17,-67v18,-11,52,-25,52,-46xm24,-12v-2,-25,36,-29,36,-6v2,26,-36,32,-36,6","w":108},"@":{"d":"186,-117v-33,3,-59,58,-60,83v6,12,12,2,33,-14v19,-14,39,-48,43,-59v-2,-5,-8,-10,-16,-10xm97,-29v3,-26,55,-106,100,-101v5,0,11,3,13,8r9,-18v6,-2,14,0,17,4v-5,11,-36,85,-42,100v-3,8,-1,12,8,12v38,-1,71,-29,71,-74v0,-51,-41,-83,-94,-83v-71,0,-115,60,-115,126v0,42,26,99,108,99v26,0,44,-8,56,-13v3,1,3,4,2,7v-81,43,-190,9,-190,-93v0,-85,68,-138,142,-138v133,0,142,178,13,180v-51,1,-13,-22,-15,-42v-22,22,-53,42,-68,42v-10,0,-15,-8,-15,-16","w":277},"A":{"d":"181,-51v-3,46,2,39,27,43v2,2,2,8,-1,9v-21,-2,-62,-1,-82,0v-4,-1,-4,-8,-1,-9v41,6,26,-43,33,-77v1,-8,0,-10,-8,-10v-26,0,-58,-9,-71,11r-44,69v-1,8,36,2,23,16v-22,-2,-53,-1,-76,0v-2,-2,-2,-7,0,-9v17,-1,27,-4,36,-16v46,-67,105,-135,144,-207v16,-1,26,-18,31,-9xm105,-109r46,0v6,0,7,-1,7,-7v1,-29,7,-59,5,-88v-19,20,-45,65,-64,90v-3,4,-2,5,6,5","w":214,"k":{"c":6,"C":9,"d":2,"e":4,"g":4,"G":9,"l":6,"n":6,"o":6,"O":9,"r":4,"s":-2,"t":2,"T":22,"u":6,"U":19,"Y":26,"z":-2,"Q":9,"V":22,"W":25,"b":11,"m":6,"p":6,"q":4,"v":15,"w":13}},"B":{"d":"200,-73v0,62,-75,83,-154,73v-15,-2,-44,8,-37,-8v25,-4,26,-3,39,-44r44,-141v12,-36,0,-31,-23,-33v-3,-2,-2,-6,0,-8v50,-7,150,-16,150,49v0,36,-37,54,-57,55v-6,0,-3,3,0,4v21,7,38,27,38,53xm93,-111r-21,70v-7,24,3,31,29,31v30,0,68,-18,68,-67v0,-31,-26,-46,-53,-46v-17,0,-19,0,-23,12xm126,-216r-22,72v-3,9,-2,10,13,10v26,0,72,-13,72,-58v0,-21,-15,-36,-45,-36v-14,0,-14,0,-18,12","w":209,"k":{"h":2,"W":6,"V":6,"e":2,"l":2,"r":2,"T":9,"u":4,"U":6,"a":2,"i":4,"y":6,"A":-3}},"C":{"d":"37,-91v-3,-106,126,-180,231,-141v-6,14,-13,35,-16,48v-1,3,-9,3,-10,0v7,-31,-2,-48,-39,-48v-63,0,-136,59,-135,148v0,51,24,79,70,79v37,0,61,-23,78,-51v4,-1,7,0,8,3v-3,10,-11,28,-23,50v-76,16,-161,17,-164,-88","w":232,"k":{"C":4,"e":2,"G":4,"O":4,"r":6,"u":6,"z":6,"Q":4,"a":2,"i":2,"y":9}},"D":{"d":"269,-140v0,91,-100,141,-177,141r-85,0v-7,-6,2,-11,9,-10v17,-2,21,-6,32,-43r45,-146v10,-31,-1,-26,-21,-28v-2,-1,-3,-7,0,-9v5,-1,37,-4,67,-4v104,0,130,53,130,99xm125,-213r-54,172v-6,21,1,29,33,29v104,0,133,-87,133,-126v0,-34,-5,-90,-95,-90v-11,0,-13,3,-17,15","w":266,"k":{"e":2,"o":2,"Y":11,"V":15,"W":15,"a":2,"y":-4,"h":2}},"E":{"d":"48,-52r41,-134v13,-39,7,-38,-15,-44v-2,-3,-2,-8,2,-9r159,0v-3,6,-11,35,-15,48v-1,3,-8,3,-9,0v12,-44,-31,-33,-72,-35v-9,0,-11,1,-14,12r-23,74v-3,10,-3,10,7,10v32,0,63,1,67,-18v3,-4,7,-17,15,-10v-6,13,-17,54,-21,70v-8,7,-10,-3,-9,-10v5,-25,-30,-18,-56,-19v-10,0,-11,0,-14,10v-5,24,-25,69,-20,88v3,5,9,8,40,8v40,0,53,-3,76,-38v3,-2,7,0,8,3v-3,10,-15,37,-24,47r-168,0v-8,-9,5,-9,12,-10v17,-1,21,-6,33,-43","w":203,"k":{"c":4,"d":2,"e":2,"g":9,"l":6,"n":6,"o":2,"r":6,"s":4,"t":6,"u":9,"z":6,"b":9,"m":6,"p":6,"q":2,"v":11,"w":11,"a":4,"i":6,"y":11,"k":6,"f":6,"j":4,"x":2}},"F":{"d":"48,-52r42,-134v14,-39,7,-38,-15,-44v-2,-3,-2,-8,2,-9r157,0v-3,6,-11,35,-15,48v-1,3,-8,3,-9,0v11,-43,-29,-33,-70,-35v-10,0,-10,1,-14,12r-25,79v-3,8,-2,9,6,9v32,0,71,3,74,-18v2,-5,8,-17,16,-10v-7,13,-20,52,-22,70v-2,3,-6,2,-9,0v12,-36,-30,-29,-64,-30v-8,0,-8,1,-11,10r-16,52v-14,42,-7,43,21,44v2,3,1,8,-2,9r-89,0v-3,-2,-4,-7,-1,-9v29,-3,30,-1,44,-44","w":191,"k":{".":50,",":50,"e":13,"l":6,"o":11,"r":9,"u":11,"a":13,"i":4,"y":4,"A":13}},"G":{"d":"209,-232v-88,1,-141,71,-141,152v0,57,35,75,71,75v40,0,47,-28,57,-57v12,-34,-2,-33,-27,-36v-3,-2,-2,-8,1,-9v27,1,61,2,84,0v5,3,-2,11,-7,11v-21,-2,-26,49,-35,70v-3,8,6,10,1,16v-79,35,-177,12,-177,-78v0,-99,131,-190,239,-144v-6,13,-13,34,-17,48v-1,3,-8,3,-9,0v6,-33,-5,-48,-40,-48","w":253,"k":{"e":9,"l":6,"n":6,"o":6,"r":6,"u":6,"a":9,"i":4,"y":4,"h":4}},"H":{"d":"113,-131r95,0v17,0,16,0,19,-8v2,-21,42,-88,7,-89v-7,1,-15,-7,-7,-11v29,2,55,1,84,0v7,7,-3,10,-9,11v-20,3,-22,6,-33,42r-42,134v-12,39,-9,42,16,44v2,4,2,8,-1,9r-86,0v-7,-9,4,-10,11,-10v29,5,38,-70,50,-98v3,-9,2,-9,-13,-9r-98,0v-12,0,-10,0,-13,8r-18,56v-13,40,-9,43,18,44v2,3,1,8,-2,9r-83,0v-7,-5,0,-11,7,-10v17,-2,21,-6,33,-43r42,-134v15,-40,7,-39,-17,-44v-2,-3,-2,-8,2,-9v27,2,56,1,84,0v7,6,-3,11,-9,11v-31,-3,-35,61,-48,89v-3,8,-2,8,11,8","w":273,"k":{"e":9,"o":6,"u":9,"a":9,"i":4,"y":9}},"I":{"d":"48,-52r42,-134v15,-40,7,-39,-17,-44v-2,-3,-2,-8,2,-9v29,2,55,1,85,0v7,7,-4,11,-10,11v-21,3,-22,6,-33,42r-42,134v-13,40,-9,43,18,44v2,3,1,8,-2,9r-86,0v-3,-2,-4,-7,-1,-9v29,-3,30,-1,44,-44","w":122,"k":{"c":9,"d":2,"g":4,"l":6,"n":9,"o":9,"r":4,"s":6,"t":6,"u":11,"z":13,"b":6,"m":9,"p":9,"v":11,"w":11,"a":9,"y":2,"h":6,"k":6,"f":6}},"J":{"d":"-42,62v2,-26,31,-9,45,-5v10,0,17,-14,23,-31r68,-212v13,-39,7,-42,-18,-44v-2,-3,-2,-8,2,-9v28,1,56,2,83,0v3,1,3,7,0,9v-28,3,-26,3,-40,44v-24,73,-41,153,-74,218v-14,27,-38,40,-66,40v-11,0,-23,-2,-23,-10","w":122,"k":{"e":13,"o":13,"u":13,"a":13,"i":11,"y":4}},"K":{"d":"48,-52r42,-134v14,-40,9,-39,-14,-44v-2,-3,-2,-8,2,-9v25,2,54,1,81,0v6,5,-3,11,-8,11v-32,-3,-36,62,-49,90v-3,8,-3,10,6,10v37,0,63,-46,90,-69v20,-17,23,-24,23,-27v-2,-4,-25,-6,-14,-15v21,2,60,1,78,0v7,16,-19,9,-32,17v-14,3,-85,67,-109,91v-6,5,-7,5,-3,13r39,79v12,23,18,30,42,31v3,2,2,8,-1,9v-27,-2,-52,-1,-78,0v-7,-18,29,1,14,-29r-38,-75v-11,-22,-21,-22,-26,-6r-18,57v-13,39,-9,43,17,44v2,3,1,8,-2,9r-85,0v-3,-2,-4,-7,-1,-9v29,-3,30,-1,44,-44","w":224,"k":{"C":2,"e":2,"G":2,"o":2,"O":2,"u":6,"Q":2,"v":3,"w":11,"y":6,"h":-2}},"L":{"d":"117,-186r-40,128v-12,40,-15,47,29,47v41,0,57,-2,79,-38v4,-1,7,0,8,3v-4,12,-17,37,-23,47r-163,0v-7,-6,0,-11,8,-10v17,-2,21,-6,33,-43r42,-134v15,-40,6,-39,-17,-44v-2,-3,-2,-8,2,-9r86,0v7,8,-5,11,-11,11v-21,3,-22,6,-33,42","w":196,"k":{"C":17,"G":17,"l":4,"O":17,"T":36,"u":6,"U":13,"Y":23,"Q":17,"V":32,"W":40,"w":11,"i":4,"y":16,"j":6,"A":-4}},"M":{"d":"26,-19v8,-11,69,-161,77,-200v2,-14,-38,-3,-25,-20r63,0v-8,45,12,140,17,183v37,-51,109,-133,133,-183v15,2,43,1,59,0v8,15,-26,11,-30,19v-20,45,-45,147,-58,201v-4,15,37,5,25,20v-25,-1,-63,-2,-90,0v-8,-15,21,-7,29,-17v21,-43,48,-134,60,-186r-88,115v-21,27,-42,54,-58,81v-2,1,-5,1,-6,-1r-19,-195v-18,44,-57,147,-65,183v-2,9,17,10,26,11v1,2,1,7,-1,9v-19,-1,-59,-2,-80,0v-8,-16,26,-6,31,-20","w":314,"k":{"j":6,"e":6,"n":4,"o":6,"u":11,"a":2,"i":4,"y":9}},"N":{"d":"2,-8v44,-6,35,-12,54,-76r40,-135v2,-13,-36,-5,-22,-20r59,1v8,47,53,142,72,188v19,-39,44,-131,52,-167v2,-12,-13,-11,-23,-13v-2,-3,-1,-8,2,-9v24,1,53,2,75,0v8,14,-23,10,-27,17v-24,43,-61,173,-78,227v-2,2,-6,3,-9,3v-11,-36,-67,-169,-86,-217v-16,44,-43,138,-54,185v-4,15,12,14,25,16v2,2,2,7,-1,9v-20,-1,-56,-2,-78,0v-2,-1,-4,-6,-1,-9","w":266,"k":{"e":11,"o":11,"u":11,"a":11,"i":9,"y":9}},"O":{"d":"94,-211v68,-55,179,-44,173,66v-4,77,-53,151,-142,151v-123,0,-102,-159,-31,-217xm237,-161v0,-76,-71,-86,-110,-50v-25,23,-58,73,-60,136v-1,34,12,70,60,70v63,0,110,-102,110,-156","w":262,"k":{"c":2,"d":2,"e":2,"g":2,"l":4,"n":2,"o":2,"r":2,"s":2,"t":2,"T":17,"u":2,"Y":18,"z":2,"V":13,"W":22,"b":2,"m":2,"p":2,"q":2,"a":2,"i":2,"y":-3,"h":4,"k":4,"f":2,"j":2,"x":-2,"A":9,"X":11}},"P":{"d":"130,-239v92,0,116,79,60,118v-18,13,-46,18,-67,18v-3,-1,-3,-5,-1,-8v27,-3,68,-22,68,-71v0,-31,-20,-46,-48,-46v-12,0,-12,2,-16,13r-51,163v-14,41,-8,43,20,44v2,3,2,8,-1,9r-89,0v-7,-8,4,-10,11,-10v17,-2,20,-6,32,-43r47,-149v10,-26,-9,-22,-27,-25v-3,-2,-2,-6,1,-8v15,-3,37,-5,61,-5","w":198,"k":{"h":2,"H":4,".":65,",":65,"e":15,"l":2,"n":6,"o":15,"r":9,"s":11,"t":4,"u":9,"a":19,"i":2,"y":2,"A":22,"E":4,"I":4}},"Q":{"d":"94,-211v67,-56,177,-44,173,66v-2,66,-45,132,-107,146v-3,1,-3,3,-1,5v26,24,73,75,129,57v2,1,3,4,2,6v-62,30,-126,-14,-160,-56v-4,-5,-9,-8,-17,-8v-26,-1,-77,-23,-76,-93v1,-44,19,-91,57,-123xm237,-161v0,-76,-71,-86,-110,-50v-25,23,-58,73,-60,136v-1,34,12,70,60,70v63,0,110,-102,110,-156","w":262,"k":{"X":4,"W":13,"V":9,"T":17,"u":2,"U":4,"Y":13,"a":2,"A":6}},"R":{"d":"75,-236v66,-8,145,-7,145,57v0,36,-35,59,-62,64v-5,1,-5,2,-4,8v14,34,12,96,54,100v3,11,-9,7,-23,8v-44,2,-42,-65,-55,-91v1,-28,-40,-21,-41,-6v-2,21,-41,85,-7,87v7,-2,13,6,7,10v-27,-1,-57,-2,-81,0v-6,-5,0,-11,7,-10v17,-3,21,-6,33,-43r42,-134v14,-44,6,-37,-17,-41v-2,-3,-1,-8,2,-9xm126,-216r-26,82v-4,15,-3,16,15,16v37,0,75,-26,76,-66v1,-28,-16,-44,-47,-44v-14,0,-15,3,-18,12","w":206,"k":{"C":1,"e":4,"G":1,"o":2,"O":-3,"T":11,"u":4,"Y":13,"Q":1,"V":9,"W":13,"a":-2,"y":4,"X":-2}},"S":{"d":"85,-186v0,55,74,59,74,117v0,70,-105,100,-146,50v0,-12,-2,-48,14,-41v3,31,17,55,53,55v23,0,53,-15,53,-51v0,-54,-74,-64,-74,-119v0,-60,88,-85,131,-54v-5,9,-9,29,-13,42v-3,2,-8,1,-10,-1v5,-24,-1,-44,-33,-44v-33,0,-49,21,-49,46","w":169,"k":{"e":4,"l":6,"n":9,"t":9,"u":6,"m":9,"p":4,"w":9,"a":2,"i":4,"y":4,"h":4,"k":9,"j":2}},"T":{"d":"110,-238r133,0v22,4,26,-11,37,-6v-7,12,-18,41,-20,51v-1,3,-7,3,-9,0v10,-37,-21,-33,-56,-33v-12,0,-11,0,-16,15r-50,159v-14,42,-9,43,20,44v3,3,2,8,-2,9r-91,0v-3,-2,-4,-7,-1,-9v31,-2,33,1,47,-44r50,-159v5,-16,4,-15,-8,-15v-45,-1,-68,1,-84,32v-4,1,-8,-1,-9,-4v9,-14,21,-36,26,-48v13,-2,2,8,33,8","w":228,"k":{"C":9,"e":47,"G":9,"o":43,"O":9,"r":40,"s":36,"T":-4,"u":40,"Y":-4,"z":32,"Q":9,"W":-2,"m":47,"w":40,"a":47,"i":14,"y":40,"A":23,",":43,".":43,"X":-6,"}":9,":":29,"-":36,";":29}},"U":{"d":"57,-96r28,-90v13,-39,9,-42,-17,-44v-2,-2,-2,-8,1,-9v31,2,55,1,87,0v7,8,-4,10,-11,10v-21,3,-23,7,-33,43v-15,55,-80,179,21,179v87,0,98,-125,120,-196v7,-20,-4,-26,-24,-27v-2,-3,-1,-8,2,-9r77,0v6,5,-2,11,-8,10v-37,9,-32,40,-46,82v-22,66,-42,153,-127,153v-66,0,-91,-36,-70,-102","w":264,"k":{"d":11,"g":9,"l":4,"n":11,"r":11,"s":11,"t":9,"z":4,"b":2,"m":11,"p":11,"a":2,"i":9,"h":2,"k":4,"x":4,"A":11}},"V":{"d":"92,5v-2,-69,-11,-128,-17,-194v-3,-36,-3,-40,-26,-41v-3,-3,-3,-8,1,-9v22,2,55,1,75,0v3,1,3,7,0,9v-19,2,-28,1,-25,28r16,157r110,-163v14,-21,-1,-20,-14,-22v-2,-2,-2,-8,1,-9v24,1,50,2,72,0v3,1,2,7,1,9v-15,1,-22,4,-31,14v-36,41,-122,171,-154,221v-2,2,-6,1,-9,0","w":223,"k":{"Q":2,";":16,":":6,".":43,"-":22,",":43,"C":2,"e":34,"G":2,"o":34,"O":2,"r":27,"u":23,"a":32,"i":4,"y":25,"A":27}},"W":{"d":"214,-42v24,-32,91,-134,116,-181v1,-3,-3,-5,-10,-6v-7,1,-12,-6,-6,-10v21,1,46,2,63,0v5,5,-1,11,-8,10v-18,3,-31,27,-40,41r-128,193v-2,2,-6,1,-9,0r-14,-103r-70,103v-2,2,-6,1,-9,0r-28,-208v-2,-20,-5,-26,-25,-27v-3,-2,-1,-8,2,-9v23,2,49,1,72,0v9,19,-29,-1,-24,31r26,166v5,-10,57,-57,53,-83r-13,-82v-1,-19,-8,-22,-24,-23v-2,-2,-3,-8,1,-9v19,2,54,1,71,0v9,19,-32,-1,-22,29r9,69r51,-79v8,-11,-27,-6,-15,-19v20,1,45,1,63,0v5,4,-1,12,-7,10v-33,6,-67,76,-83,94v-15,17,8,77,8,93","w":316,"k":{"m":4,"Q":4,";":22,":":22,".":43,"-":14,",":43,"C":4,"d":3,"e":31,"G":4,"o":29,"r":21,"T":-4,"u":21,"a":36,"i":4,"y":20,"A":27}},"X":{"d":"-14,1v-6,-4,0,-12,7,-10v47,-13,65,-54,115,-102v4,-4,5,-7,3,-12r-32,-84v-5,-18,-13,-20,-29,-23v-3,-2,-1,-8,2,-9v26,1,54,2,75,0v10,17,-37,6,-22,28v8,22,17,48,27,73v21,-22,45,-51,66,-74v15,-17,0,-16,-11,-18v-2,-3,-2,-7,1,-9v20,1,49,2,69,0v7,15,-22,9,-30,22v-28,24,-53,52,-84,85v-6,6,-7,6,-4,14v12,32,26,65,36,91v7,18,14,18,32,19v2,1,2,8,-1,9v-24,-2,-55,-1,-79,0v-13,-17,35,-3,20,-27v-9,-26,-19,-53,-29,-78v-21,22,-54,61,-73,85v-4,4,-5,9,2,9v8,0,22,3,13,11v-23,-1,-51,-2,-74,0","w":207,"k":{"Q":9,"C":9,"e":2,"G":9,"O":9,"u":9,"y":4}},"Y":{"d":"108,-208r18,84v2,9,4,10,11,1r79,-99v3,-8,-32,-4,-19,-17v26,1,45,2,70,0v9,14,-21,11,-28,19v-39,47,-102,101,-120,168v-12,45,-7,42,20,44v3,2,2,8,-1,9r-92,0v-8,-10,6,-9,13,-10v20,8,31,-40,40,-64v16,-41,-10,-85,-16,-124v-4,-28,-9,-30,-29,-33v-2,-3,-1,-8,1,-9v23,2,54,1,76,0v9,18,-36,5,-23,31","w":203,"k":{"d":2,"e":30,"o":30,"t":16,"T":-4,"u":29,"Y":-4,"V":-4,"W":-4,"q":34,"v":18,"a":32,"A":11,",":29,".":29,"X":-4,":":22,"-":27,";":13}},"Z":{"d":"-6,-5v68,-62,141,-145,207,-212v6,-6,4,-9,-10,-9v-59,2,-103,-11,-126,36v-4,2,-7,-1,-8,-5v8,-13,15,-32,21,-52v1,-1,4,-1,5,0v2,9,6,9,34,9r135,-1v3,0,3,3,3,5v-39,34,-116,117,-160,162v-5,5,-48,51,-48,55v0,3,4,6,32,6v34,0,81,2,99,-8v9,-5,21,-18,29,-32v2,-1,7,0,8,3v-4,15,-17,40,-25,49r-195,0v-2,-1,-2,-4,-1,-6","w":216,"k":{"C":11,"e":2,"G":11,"o":2,"O":11,"u":2,"Q":11,"w":13,"a":2,"i":4,"y":13,"A":-4}},"[":{"d":"14,54r90,-301r63,1v0,17,-34,4,-45,15v-30,66,-64,193,-81,269v7,7,27,5,39,8v1,17,-41,4,-66,8","w":115,"k":{"W":-9,"V":-6,"J":-13}},"\\":{"d":"42,-243r69,249r-21,0r-68,-249r20,0","w":122},"]":{"d":"131,-247r-89,301r-63,-1v0,-17,34,-4,45,-15v29,-69,64,-192,81,-269v-7,-7,-27,-5,-39,-8v-1,-15,19,-5,42,-8r23,0","w":115},"^":{"d":"186,-88r-22,0r-50,-112r-49,112r-23,0r64,-137r17,0","w":201},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0"},"a":{"d":"119,-142v9,1,10,3,16,10r10,-23v6,-3,15,0,17,5r-48,126v-2,6,0,8,3,8v6,0,16,-6,37,-24v3,0,5,2,5,5v-15,20,-41,40,-61,40v-26,-8,6,-41,4,-56v-26,32,-62,56,-79,56v-10,0,-16,-10,-16,-20v3,-32,60,-132,112,-127xm108,-128v-40,0,-70,74,-71,107v8,17,15,5,40,-16v29,-24,43,-57,49,-78v-3,-7,-9,-13,-18,-13","w":159},"b":{"d":"169,-114v9,40,-80,125,-115,119v-48,-8,-27,-62,-11,-104r42,-111v12,-28,8,-28,-5,-36v-1,-11,32,-13,46,-9r-64,171v25,-38,49,-63,76,-63v21,0,31,15,31,33xm62,-6v31,-6,84,-88,83,-116v0,-10,-7,-13,-13,-13v-23,-3,-91,83,-83,110v0,14,7,19,13,19","w":167,"k":{"w":2,"v":2,".":9,",":9,"y":2}},"c":{"d":"16,-33v0,-33,42,-114,93,-114v33,0,30,39,9,38v-14,-1,-2,-29,-20,-26v-29,4,-54,59,-54,99v0,42,35,19,54,1v4,0,6,2,5,6v-14,18,-37,34,-60,34v-14,0,-27,-10,-27,-38","w":121},"d":{"d":"10,-21v0,-44,64,-129,112,-126v6,0,15,3,19,11r26,-74v10,-28,7,-27,-5,-36v-1,-11,33,-12,45,-9v-6,20,-12,33,-23,63v-36,98,-53,156,-56,167v-1,5,-1,8,2,8v6,0,29,-18,40,-32v3,0,5,2,5,5v-10,20,-42,49,-61,49v-30,-7,9,-53,4,-68v-25,33,-51,68,-86,68v-14,0,-22,-12,-22,-26xm122,-136v-42,10,-80,78,-90,120v12,18,25,3,55,-25v30,-27,39,-50,44,-69v4,-15,0,-26,-9,-26","w":170},"e":{"d":"16,-33v-8,-29,48,-116,97,-114v14,0,22,13,22,22v0,27,-35,45,-87,59v-6,12,-11,53,12,53v13,0,22,-7,38,-21v3,0,6,3,5,6v-22,27,-43,33,-58,33v-22,0,-29,-20,-29,-38xm51,-76v31,-7,57,-29,63,-51v-7,-17,-19,-8,-36,9v-14,15,-23,32,-27,42","w":124},"f":{"d":"60,-142v12,-48,43,-112,98,-115v27,-2,37,38,13,44v-3,0,-5,-3,-5,-6v-5,-37,-31,-30,-46,-7v-16,25,-24,50,-34,84r45,0v3,4,1,9,-4,13r-44,0v-21,63,-37,163,-70,206v-5,5,-22,20,-43,20v-30,0,-33,-22,-18,-34v27,5,42,42,58,-14v17,-57,30,-119,47,-178r-30,0v-4,-3,-2,-10,3,-13r30,0","w":93,"k":{"'":-32,"}":-26,"]":-35,")":-39,"\"":-32}},"g":{"d":"21,-65v-1,-43,56,-102,102,-75v10,2,42,-15,42,4v0,23,-26,1,-37,9v11,45,-24,85,-69,95v-4,2,-8,8,-8,13v6,27,75,40,75,73v0,20,-29,43,-88,43v-26,0,-57,-10,-57,-34v0,-27,42,-45,61,-51v-23,-14,-5,-30,5,-44v-7,-2,-26,-9,-26,-33xm6,57v1,35,89,38,96,3v-11,-25,-55,-57,-83,-26v-10,7,-13,15,-13,23xm53,-43v27,-1,60,-69,57,-81v0,-8,-6,-12,-11,-12v-26,2,-56,57,-57,81v0,8,5,12,11,12","w":137,"k":{"p":-9,"y":-17,"f":-17}},"h":{"d":"81,-5v7,-28,33,14,38,-23v10,-23,26,-73,26,-93v-1,-20,-17,-8,-27,-1v-31,21,-73,86,-89,123v-4,7,-20,5,-17,-5r68,-203v11,-31,10,-28,-3,-37v-2,-11,34,-14,44,-11r-62,182v38,-49,47,-62,91,-74v16,0,22,11,22,24v0,48,-35,117,-78,128v-12,0,-13,-7,-13,-10","w":171},"i":{"d":"19,-8r45,-109v2,-4,3,-7,0,-7v-3,0,-12,4,-30,19v-3,0,-6,-3,-5,-6v23,-23,50,-44,65,-32v2,2,2,6,-2,16r-43,102v-1,4,-2,8,1,8v6,0,26,-13,38,-27v4,0,5,3,5,6v-5,9,-48,52,-73,40v-2,-3,-3,-6,-1,-10xm95,-221v8,0,12,6,12,14v0,21,-30,31,-31,9v0,-8,5,-23,19,-23","w":100},"j":{"d":"-39,63v14,16,30,33,43,1v19,-46,48,-144,59,-184v0,-3,-2,-5,-3,-5v-8,0,-27,18,-36,28v-3,0,-5,-3,-5,-6v8,-13,39,-44,62,-44v23,13,1,44,-10,80v-16,55,-31,160,-97,164v-25,1,-32,-28,-13,-34xm92,-221v8,0,12,6,12,14v0,20,-31,31,-31,9v0,-8,5,-23,19,-23","w":93},"k":{"d":"67,-96v20,-21,38,-49,76,-51v36,6,33,24,11,46v-16,16,-34,28,-57,32v-3,15,11,47,24,52v5,0,11,-4,21,-16v3,0,5,1,5,4v-31,64,-57,22,-70,-19v-6,-18,-19,-14,-26,3r-19,45v-2,9,-21,6,-18,-4r66,-199v10,-31,10,-30,-4,-36v-2,-1,-2,-3,0,-5v11,-4,32,-13,46,-12xm141,-122v-21,-29,-70,31,-79,48v-1,4,-1,7,4,6v9,2,78,-32,75,-54","w":161},"l":{"d":"121,-257v-20,77,-53,156,-77,234v-3,8,-2,11,2,11v8,0,24,-17,41,-36v4,0,6,1,6,5v-9,18,-32,48,-62,48v-25,-6,-14,-16,-6,-41r57,-171v10,-31,5,-28,-7,-34v-3,-14,28,-12,46,-16","w":88},"m":{"d":"186,-4v7,-34,39,-82,45,-121v0,-4,-1,-9,-6,-9v-39,19,-74,81,-103,135v-4,7,-21,5,-17,-5r35,-95v1,-4,16,-35,3,-35v-40,18,-78,79,-104,135v-4,8,-20,5,-17,-5v1,-3,40,-109,41,-114v2,-6,2,-10,-2,-10v-12,0,-25,11,-32,20v-4,0,-5,-2,-5,-5v9,-17,29,-34,56,-34v8,0,11,7,8,15v-7,22,-20,45,-24,66v26,-42,61,-81,88,-81v42,0,-2,61,-3,81v35,-55,62,-81,86,-81v14,0,20,8,20,20v-1,34,-42,93,-38,111v6,0,24,-11,34,-24v5,-1,5,2,5,5v-14,23,-42,40,-62,40v-3,0,-8,-5,-8,-9","w":262},"n":{"d":"104,-4v8,-33,37,-84,45,-121v0,-4,-1,-9,-6,-9v-39,17,-78,81,-104,135v-4,7,-19,6,-17,-5v2,-11,46,-111,40,-122v-8,0,-20,8,-32,18v-3,0,-5,-2,-5,-5v14,-19,36,-34,54,-34v9,0,12,7,9,15v-7,21,-19,44,-23,64v26,-39,61,-79,88,-79v14,0,20,8,20,20v-1,34,-42,93,-38,111v6,0,23,-11,33,-24v5,-1,6,2,6,5v-14,23,-42,40,-62,40v-3,0,-8,-5,-8,-9"},"o":{"d":"56,-123v34,-36,88,-32,87,21v-1,20,-12,55,-39,82v-22,23,-41,25,-51,25v-23,0,-38,-17,-36,-48v1,-22,16,-56,39,-80xm56,-6v34,-2,60,-80,62,-106v2,-28,-24,-32,-41,-7v-20,29,-35,71,-36,90v-1,13,5,23,15,23","w":146,"k":{"v":4,"w":4,"y":4,"x":2,",":4,".":9}},"p":{"d":"102,-163r-8,22v27,-3,63,0,63,40v0,33,-19,65,-48,86v-33,24,-44,22,-63,18v-11,11,-13,33,-20,49v-16,38,-3,31,18,35v2,3,1,7,-2,8v-27,0,-54,1,-78,2v-7,-6,3,-10,8,-10v20,-4,22,-11,27,-26r67,-188v-13,4,-22,7,-37,15v-3,0,-4,-4,-3,-7v13,-9,26,-15,44,-20r11,-29v5,-4,20,0,21,5xm91,-130v-11,39,-31,73,-37,115v16,17,33,8,54,-21v19,-26,21,-52,21,-68v0,-21,-19,-30,-38,-26","w":161,"k":{"w":2,"z":4,"y":4}},"q":{"d":"13,-22v0,-54,53,-124,114,-125v10,0,18,9,20,20v7,-6,15,-38,27,-25r-65,209v-9,26,-2,26,16,27v2,2,1,7,-2,8v-13,1,-54,7,-77,11v-10,-11,8,-11,15,-14v15,-5,18,-11,23,-28r41,-128v-17,24,-55,72,-90,72v-15,0,-22,-14,-22,-27xm47,-11v34,-12,83,-61,85,-105v0,-7,-3,-20,-12,-20v-42,0,-79,82,-81,115v0,6,3,10,8,10","w":167},"r":{"d":"63,-67v20,-31,32,-71,64,-80v22,5,14,25,7,39v-4,5,-11,7,-12,-1v-4,-19,-10,-17,-20,-4v-22,28,-42,73,-61,114v-3,8,-21,5,-18,-5v5,-14,27,-79,37,-114v1,-4,0,-7,-3,-7v-9,0,-20,9,-26,18v-4,1,-5,-1,-5,-5v12,-19,25,-35,42,-35v18,0,10,24,8,34v-3,14,-15,35,-13,46","w":122,"k":{"c":4,"d":7,"e":7,"l":4,"n":-3,"o":2,"t":-3,"u":-3,"z":-7,"m":-3,"q":6,"v":-6,"w":-6,"a":11,"y":-6,"h":1,"k":2,"f":-3,"x":-6,",":22,".":22}},"s":{"d":"33,-97v-6,-29,61,-76,70,-29v-6,26,-19,-6,-36,-4v-41,16,19,59,11,88v7,30,-66,71,-77,28v-1,-5,8,-19,16,-12v10,14,40,22,42,-6v1,-10,-30,-54,-26,-65","w":94},"t":{"d":"126,-138v5,19,-26,12,-44,13r-32,95v-2,7,-1,9,2,9v5,0,29,-18,41,-32v4,0,6,2,5,6v-20,30,-54,52,-69,52v-14,-5,-11,-14,-5,-30r34,-100r-28,0v-3,-16,22,-11,33,-15v10,-11,12,-44,34,-33r-11,35r40,0","w":102},"u":{"d":"94,-136r-40,105v-3,9,-2,12,2,12v35,-12,94,-100,102,-126v8,-1,17,3,18,7v-4,10,-27,68,-42,111v-2,5,-3,9,1,9v7,0,26,-17,35,-28v3,-1,7,1,7,5v-9,17,-44,46,-63,46v-6,0,-11,-7,-9,-13r24,-66v-26,33,-71,79,-90,79v-15,0,-17,-15,-11,-31r33,-87v3,-7,3,-10,0,-10v-7,0,-25,15,-34,24v-4,1,-6,-2,-6,-5v9,-14,45,-43,62,-43v5,0,13,5,11,11","w":178},"v":{"d":"66,-13v32,-9,88,-74,67,-121v1,-8,6,-13,13,-13v12,0,14,13,14,22v0,26,-27,78,-58,104v-27,23,-47,26,-56,26v-22,-6,-16,-33,-7,-56r24,-65v3,-7,3,-10,-2,-10v-7,0,-23,13,-34,25v-3,0,-5,-3,-5,-6v12,-16,36,-40,57,-40v8,0,16,11,11,24v-11,33,-27,61,-35,97v0,6,3,13,11,13","w":153,"k":{"q":2,".":22,",":22,"c":2,"d":2,"e":2,"o":2,"s":2,"a":2}},"w":{"d":"243,-125v9,34,-73,138,-108,130v-23,0,-24,-32,-14,-51v3,-6,-1,-6,-5,0v-17,23,-47,51,-69,51v-22,0,-20,-26,-12,-46r27,-72v3,-8,4,-13,-1,-13v-7,0,-22,12,-33,25v-3,0,-6,-3,-6,-6v11,-16,35,-40,57,-40v8,0,16,11,11,24v-10,31,-29,68,-35,101v0,4,2,8,8,8v31,-5,76,-81,80,-112v2,-20,25,-24,27,-9v-4,23,-37,81,-32,105v0,11,5,16,14,16v32,0,84,-73,63,-120v1,-8,7,-13,14,-13v12,0,14,13,14,22","w":236,"k":{"q":6,".":22,",":22,"c":4,"d":4,"e":4}},"x":{"d":"-3,-8v-1,-10,13,-34,22,-21v3,17,11,9,21,-1v10,-11,19,-22,31,-36v-8,-15,-15,-47,-26,-56v-6,0,-11,12,-16,19v-4,2,-6,0,-6,-5v11,-29,35,-60,48,-20r15,42v4,-4,52,-69,66,-61v10,0,14,9,14,17v0,13,-9,21,-14,21v-7,0,-5,-15,-13,-15v-6,0,-17,10,-49,49v7,15,16,49,27,55v6,4,15,-31,24,-19v-7,39,-39,64,-52,19r-14,-34v-9,11,-54,66,-65,59v-9,0,-13,-7,-13,-13","w":151,"k":{"q":2,"c":2,"d":2,"e":2,"o":2,"y":-4}},"y":{"d":"-2,77v45,-14,61,-74,59,-146v-2,-67,-16,-66,-35,-27v-4,1,-6,-1,-7,-4v8,-24,24,-47,42,-47v18,0,19,36,21,61v2,21,-5,56,-3,80v21,-28,41,-90,43,-129v1,-18,21,-13,22,-1v-5,50,-87,224,-157,233v-22,3,-25,-32,-5,-32v9,0,9,11,20,12","w":131,"k":{"c":2,"d":2,"e":2,"o":2,"q":2,",":26,".":26}},"z":{"d":"100,8v-31,-3,-71,-46,-85,-3v-27,-7,-14,-17,7,-36r87,-81v4,-4,3,-6,-4,-8v-29,-13,-72,-8,-51,20v0,4,-4,10,-13,10v-9,0,-13,-8,-13,-14v-2,-18,38,-43,54,-40v24,4,59,20,70,-3v5,-1,10,3,9,7v-19,19,-74,63,-117,110v25,-2,45,19,68,21v8,0,17,-7,17,-17v0,0,-10,-31,3,-28v10,0,16,10,16,18v1,18,-29,46,-48,44","w":146,"k":{"c":-2,"d":-4,"e":-2,"o":2}},"{":{"d":"31,28v0,-27,33,-78,33,-105v0,-11,-11,-15,-25,-16v-1,-3,-1,-5,2,-7v52,-7,38,-32,49,-66v4,-13,5,-26,9,-39v12,-41,45,-45,63,-45v0,2,0,6,-2,7v-78,11,-20,124,-94,147v12,3,18,11,18,25v0,32,-33,64,-33,97v0,15,8,22,22,25v0,2,0,5,-2,6v-20,0,-40,-5,-40,-29","w":115,"k":{"J":-11}},"|":{"d":"72,-270r0,360r-22,0r0,-360r22,0","w":93},"}":{"d":"117,-221v0,27,-33,78,-33,105v0,11,11,15,25,16v1,3,1,5,-2,7v-52,7,-38,32,-49,66v-4,13,-5,26,-9,39v-12,41,-45,46,-63,45v0,-2,0,-6,2,-7v78,-11,20,-124,94,-147v-12,-3,-18,-11,-18,-25v0,-32,33,-64,33,-97v0,-15,-8,-22,-22,-25v0,-2,0,-5,2,-6v20,0,40,5,40,29","w":115},"~":{"d":"42,-46v4,-11,16,-40,36,-37v35,-2,68,10,77,-23v5,-2,11,0,12,5v-4,10,-16,36,-37,36v-35,0,-68,-9,-76,24v-5,2,-11,0,-12,-5","w":201},"'":{"d":"98,-247v15,0,13,5,6,23r-23,58v-1,3,-8,3,-9,0r7,-58v2,-20,3,-23,19,-23","w":74},"`":{"d":"65,-207v-13,-12,2,-22,12,-23v15,12,15,41,24,59v0,3,-5,4,-7,4","w":129},"\u00a0":{"w":90,"k":{"W":22,"V":17,"T":17,"Y":17}}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1989, 1992, 1994, 1996, 1998, 1999, 2000, 2001 Adobe Systems Incorporated.
 * All rights reserved.
 * 
 * Trademark:
 * Adobe Garamond is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * AGaramondPro-BoldItalic
 * 
 * Manufacturer:
 * Adobe Systems Incorporated
 * 
 * Designer:
 * Robert Slimbach
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":187,"face":{"font-family":"Adobe Garamond Pro","font-weight":700,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 2 7 2 6 5 6 9 4 3","ascent":"261","descent":"-99","x-height":"5","cap-height":"1","bbox":"-59.64 -274 418.487 103","underline-thickness":"18","underline-position":"-18","slope":"-18.5","stemh":"19","stemv":"47","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":86},"!":{"d":"61,-218v0,-21,57,-20,51,0v-13,41,-40,101,-56,144v-3,3,-11,3,-15,0xm39,-54v14,0,24,10,24,27v0,35,-55,46,-55,7v0,-17,12,-34,31,-34","w":88},"\"":{"d":"130,-240r-43,95v-5,3,-11,3,-14,0r11,-95v3,-12,10,-12,23,-12v15,0,28,1,23,12xm202,-240r-43,95v-5,3,-11,3,-14,0r11,-95v3,-12,10,-12,23,-12v15,0,28,1,23,12","w":172},"#":{"d":"145,-143r-34,0r-23,53r35,0xm203,-143r-35,0r-23,53r32,0r-8,23r-34,0r-28,66r-22,0r28,-66r-35,0r-28,66r-22,0r28,-66r-35,0r7,-23r37,0r23,-53r-35,0r7,-23r38,0r25,-59r23,0r-25,59r34,0r25,-59r23,0r-25,59r32,0"},"$":{"d":"113,-91r-24,74v45,7,60,-58,24,-74xm113,-144r21,-65v-46,1,-50,48,-21,65xm150,-207r-23,71v28,14,50,32,50,67v0,42,-37,70,-93,69r-11,33v-5,4,-15,4,-18,0r12,-35v-53,-8,-63,-29,-48,-80v3,-3,9,-3,12,0v3,32,20,54,42,62r25,-80v-22,-14,-43,-27,-43,-58v0,-41,34,-67,84,-67v5,-12,5,-40,26,-28r-9,29v15,2,28,7,42,12v0,13,0,31,-6,52v-2,2,-9,2,-12,0v-1,-26,-12,-42,-30,-47"},"%":{"d":"266,-135v31,0,47,20,47,51v0,38,-30,89,-78,89v-31,0,-46,-20,-46,-48v0,-42,32,-92,77,-92xm267,-121v-29,7,-46,62,-46,91v0,11,4,21,14,21v30,-6,46,-63,46,-93v0,-11,-4,-19,-14,-19xm126,-230v31,0,47,19,47,50v0,38,-29,89,-77,89v-31,0,-47,-20,-47,-48v0,-42,32,-91,77,-91xm127,-217v-28,7,-43,62,-45,91v0,11,4,22,14,22v29,-7,45,-63,45,-93v0,-11,-4,-20,-14,-20xm277,-227r-179,241v-7,1,-13,-2,-14,-8r178,-241v5,-1,14,2,15,8","w":318},"&":{"d":"284,-128v17,-8,-15,-39,15,-41v27,-1,24,50,2,52v-18,2,-27,19,-43,14v-3,-4,-9,-12,-19,-20v1,37,0,50,-35,89v-26,30,-61,39,-90,39v-99,0,-100,-93,-45,-152v24,-24,50,-28,56,-28v18,0,22,10,25,18v25,-25,65,-52,43,-94v0,-14,10,-23,22,-23v11,0,23,9,23,27v0,59,-128,139,-165,172v20,58,101,59,134,-1v18,-32,35,-66,-4,-66v-39,0,16,50,-25,53v-10,0,-17,-8,-17,-20v-6,-21,40,-62,61,-58v26,-3,48,29,62,39xm71,-92v18,-19,44,-27,46,-49v-4,-21,-22,-13,-33,5v-8,12,-13,27,-13,44","w":295},"(":{"d":"174,-246v-75,43,-142,193,-87,297v0,4,-2,8,-7,8v-68,-68,-51,-199,16,-263v32,-30,57,-43,71,-49v5,0,8,4,7,7","w":122},")":{"d":"-22,51v76,-42,142,-194,86,-297v0,-4,3,-7,8,-7v68,68,50,199,-16,262v-32,30,-57,44,-71,50v-5,0,-8,-5,-7,-8","w":122},"*":{"d":"126,-192r49,-13v4,2,4,7,2,12r-46,19r33,36v0,4,-3,9,-8,9r-38,-32r-16,46v-3,1,-9,0,-11,-3r7,-47r-49,12v-3,-2,-5,-8,-3,-11r47,-19r-34,-36v0,-5,3,-9,7,-10r39,32r16,-45v3,-2,9,0,11,2","w":144},"+":{"d":"113,0r-31,0r0,-64r-57,0r0,-26r57,0r0,-57r31,0r0,57r57,0r0,26r-57,0r0,64"},",":{"d":"31,-5v0,-15,-19,-16,-19,-31v0,-13,11,-24,25,-24v14,0,32,11,32,38v0,31,-30,56,-71,66v-5,-2,-7,-9,-4,-13v20,-6,37,-21,37,-36","w":93},"-":{"d":"23,-85r86,-8v6,8,7,21,0,29r-86,8v-7,-6,-8,-23,0,-29","w":115},".":{"d":"43,-54v14,0,24,10,24,27v0,34,-55,47,-55,7v0,-17,12,-34,31,-34","w":93},"\/":{"d":"141,-243r-111,249r-33,0r111,-249r33,0","w":108},"0":{"d":"24,-66v2,-71,48,-164,120,-164v48,0,61,37,61,73v0,65,-45,161,-121,162v-48,0,-60,-35,-60,-71xm146,-214v-41,0,-79,127,-79,174v0,20,8,28,18,28v13,0,25,-13,36,-36v20,-41,41,-104,41,-137v0,-12,0,-29,-16,-29"},"1":{"d":"116,-187v3,-15,-43,-4,-27,-23v24,-4,68,-16,83,-22v15,7,-8,31,-9,47r-44,138v-13,33,0,33,25,35v4,2,3,12,-1,13r-115,0v-7,-8,4,-16,14,-14v19,-3,22,-7,31,-34"},"2":{"d":"72,-40v24,6,82,13,94,-15v3,-3,11,0,12,5v-13,24,-14,61,-53,50r-131,1v-2,-2,-2,-5,-1,-8v36,-28,154,-97,154,-157v0,-55,-67,-46,-87,-6v-5,1,-11,-2,-11,-7v18,-33,49,-53,85,-53v37,0,65,20,65,58v1,63,-95,95,-127,132"},"3":{"d":"15,-25v24,1,22,27,44,27v36,0,68,-36,68,-80v0,-41,-47,-52,-70,-25v-8,-1,-12,-12,-7,-18v28,-11,89,-28,91,-63v-7,-40,-57,-23,-73,7v-5,1,-9,-3,-10,-8v17,-29,47,-45,79,-45v26,0,53,13,53,40v0,22,-21,36,-54,48v-5,1,-3,4,2,4v22,2,45,19,45,51v0,63,-89,109,-146,107v-25,0,-43,-7,-43,-25v0,-11,9,-20,21,-20"},"4":{"d":"184,-67v-14,2,-34,-7,-36,9r-5,14v-9,27,-3,32,19,32v4,2,2,12,-2,13r-106,0v-4,-3,-3,-11,1,-13v34,4,39,-18,47,-48v2,-6,1,-7,-6,-7r-81,0v-4,-2,-4,-6,-2,-11r169,-170v5,-6,14,-6,25,-6v6,0,6,4,0,10r-153,150v-4,3,-6,7,6,7v17,0,46,7,52,-6v10,-22,11,-57,31,-68v9,-4,28,-11,33,-11v4,0,7,2,6,6r-23,72v-2,6,-2,7,6,7r24,0v5,3,1,17,-5,20"},"5":{"d":"103,-223r99,-12v4,0,6,3,5,6v-4,12,-14,25,-24,34r-88,11v-10,-1,-24,24,-13,26v46,7,95,26,93,79v-4,73,-92,102,-171,103v-7,-2,-7,-11,-3,-14v49,-3,127,-22,127,-79v0,-39,-34,-49,-78,-54v-8,-1,-9,-5,-5,-13r38,-76v4,-8,7,-10,20,-11"},"6":{"d":"139,-81v0,-19,-6,-45,-35,-38v-8,-16,22,-24,35,-24v31,0,51,23,51,56v0,53,-43,92,-94,92v-50,0,-74,-30,-74,-74v0,-43,28,-100,81,-137v37,-26,90,-42,130,-43v4,1,5,9,2,12v-92,12,-161,93,-164,182v0,19,1,43,24,43v31,0,44,-48,44,-69"},"7":{"d":"69,-226r164,0v3,1,3,2,2,5r-190,243v-7,2,-16,-4,-15,-12r132,-170v11,-15,15,-21,15,-25v-18,-8,-53,-3,-77,-3v-19,0,-31,1,-42,19v-3,2,-11,0,-12,-5v10,-18,18,-38,23,-52"},"8":{"d":"89,4v-41,0,-73,-18,-73,-55v0,-34,28,-56,61,-69v-49,-38,-6,-110,54,-110v36,0,68,17,68,55v0,29,-26,46,-51,55v59,36,26,124,-59,124xm132,-50v0,-30,-22,-46,-40,-58v-36,15,-49,96,4,96v20,0,36,-15,36,-38xm133,-132v28,-9,41,-81,-4,-82v-18,0,-31,16,-31,34v0,24,17,37,35,48"},"9":{"d":"88,-145v1,30,11,38,37,40v4,15,-23,18,-32,18v-31,0,-52,-21,-52,-55v0,-47,42,-88,92,-88v46,0,71,30,71,76v0,49,-34,100,-79,130v-36,24,-96,45,-124,46v-4,-2,-5,-10,-2,-13v88,-18,152,-90,157,-180v0,-19,-3,-43,-25,-43v-26,0,-43,42,-43,69"},":":{"d":"43,-54v14,0,24,10,24,27v0,34,-55,47,-55,7v0,-17,12,-34,31,-34xm69,-142v14,0,24,10,24,27v0,35,-55,46,-55,7v0,-17,12,-34,31,-34","w":93},";":{"d":"31,-5v0,-15,-19,-16,-19,-31v0,-13,11,-24,25,-24v14,0,32,11,32,38v0,31,-30,56,-71,66v-5,-2,-7,-9,-4,-13v20,-6,37,-21,37,-36xm69,-142v14,0,24,10,24,27v0,35,-55,46,-55,7v0,-17,12,-34,31,-34","w":93},"<":{"d":"24,-85r140,-64r0,30r-103,45r103,44r0,30r-140,-64r0,-21"},"=":{"d":"170,-38r-145,0r0,-26r145,0r0,26xm170,-90r-145,0r0,-26r145,0r0,26"},">":{"d":"36,-149r140,64r0,21r-140,64r0,-30r103,-45r-103,-44r0,-30"},"?":{"d":"132,-178v-1,-32,-67,7,-67,-26v0,-14,11,-29,35,-29v25,0,52,28,52,61v0,30,-37,48,-65,59v-25,10,-25,14,-22,38v-17,11,-23,-22,-23,-34v-3,-32,39,-43,67,-53v13,-5,23,-9,23,-16xm58,-54v14,0,24,10,24,27v0,34,-56,46,-56,7v0,-17,13,-34,32,-34","w":126},"@":{"d":"102,-36v1,-28,54,-105,98,-101v6,0,10,2,12,6v2,-14,21,-22,34,-12v-4,11,-36,84,-41,96v-3,9,-3,12,5,12v29,0,63,-24,63,-67v0,-50,-38,-82,-86,-82v-67,0,-110,58,-110,121v0,39,22,95,100,95v27,0,44,-6,56,-11v4,1,5,8,3,11v-84,41,-194,8,-194,-96v0,-84,69,-136,145,-136v68,0,105,46,105,97v0,47,-34,83,-95,83v-45,0,-13,-25,-14,-42v-18,22,-50,42,-65,42v-11,0,-16,-8,-16,-16xm193,-125v-24,7,-55,61,-54,78v6,11,10,5,26,-8v15,-12,35,-48,39,-61v-2,-5,-5,-9,-11,-9","w":279},"A":{"d":"127,-81v-20,0,-52,-8,-60,7v-8,16,-26,38,-31,54v1,6,17,7,25,8v4,3,2,11,-2,13r-83,0v-8,-5,-3,-17,7,-14v18,-3,22,-6,40,-33r97,-143v11,-17,22,-32,23,-39v28,0,36,-25,45,-10v0,64,-3,128,-3,192v0,30,5,32,26,34v3,2,2,12,-1,13v-24,-1,-75,-2,-98,0v-7,-3,-4,-17,6,-14v35,-1,14,-36,21,-61v0,-7,-1,-7,-12,-7xm95,-100v15,-3,43,9,44,-10r4,-83r-54,85v-4,6,-4,8,6,8","w":216,"k":{"c":4,"C":13,"e":4,"g":4,"G":13,"i":2,"l":4,"n":6,"o":6,"O":13,"r":4,"s":-2,"t":2,"T":26,"u":6,"Y":26,"z":-2,"Q":13,"V":24,"W":27,"b":9,"m":6,"p":4,"q":4,"v":13,"w":13}},"B":{"d":"221,-78v-4,92,-123,79,-219,79v-7,-7,4,-15,12,-14v16,-3,20,-6,30,-39r42,-136v12,-31,5,-32,-15,-35v-3,-3,-2,-10,2,-12v60,-6,167,-15,167,51v0,36,-35,47,-60,54v18,7,42,24,41,52xm138,-209r-21,65v-3,9,-1,10,13,10v36,0,62,-23,62,-55v0,-19,-13,-33,-37,-33v-12,0,-13,0,-17,13xm106,-107r-19,59v-8,24,0,33,18,33v59,0,99,-102,21,-103v-15,0,-17,1,-20,11","w":228,"k":{"h":2,"e":2,"i":4,"l":2,"r":2,"u":4,"a":2,"y":4}},"C":{"d":"35,-89v0,-96,60,-154,168,-154v36,0,61,9,72,13v-8,18,-13,37,-18,56v-3,4,-12,4,-13,0v3,-37,-11,-53,-44,-53v-62,0,-110,74,-110,141v0,110,92,86,131,24v4,-3,13,-2,14,2v-7,22,-20,48,-26,57v-14,1,-33,9,-64,9v-74,0,-110,-41,-110,-95","w":236,"k":{"C":6,"e":2,"G":6,"i":4,"o":2,"O":6,"r":6,"u":6,"z":6,"Q":6,"a":2,"y":9}},"D":{"d":"152,-239v78,-1,133,28,133,101v0,33,-13,67,-37,90v-76,71,-139,44,-246,49v-8,-7,4,-15,12,-14v15,-3,19,-6,29,-39r43,-136v11,-30,4,-32,-15,-35v-3,-3,-2,-10,2,-12v19,-2,45,-4,79,-4xm140,-206r-47,150v-8,26,-10,42,19,42v18,0,42,-5,70,-28v35,-28,49,-73,49,-107v0,-25,-7,-73,-69,-73v-15,0,-17,1,-22,16","w":277,"k":{"e":2,"o":2,"r":-2,"a":2,"y":-6,"h":2}},"E":{"d":"218,-181v8,-44,-22,-40,-60,-40v-12,0,-14,0,-18,14r-19,63v-3,10,-3,11,6,11v34,3,53,-1,62,-29v4,-3,12,-3,13,0r-24,77v-3,3,-12,3,-13,0v3,-18,4,-32,-20,-29v-16,2,-34,-6,-37,11v-4,21,-23,59,-19,78v3,6,10,8,36,8v31,0,43,-1,73,-41v4,-3,12,-2,14,2v-6,18,-19,47,-27,57r-186,0v-4,-2,-3,-12,2,-13v29,-3,30,-1,42,-40r42,-134v12,-34,8,-38,-16,-40v-3,-3,-2,-11,3,-13r178,0v-3,6,-13,33,-19,57v-2,4,-10,4,-13,1","w":214,"k":{"c":4,"e":2,"g":9,"i":6,"l":4,"n":6,"o":2,"r":9,"s":4,"t":6,"u":9,"z":6,"b":6,"m":6,"p":6,"q":2,"v":11,"w":11,"a":4,"y":11,"x":2,"d":2,"k":4,"f":4,"j":4}},"F":{"d":"215,-181v9,-44,-20,-40,-58,-40v-12,0,-13,0,-17,14r-20,66v-3,10,-3,11,6,11v35,2,57,1,66,-29v4,-3,13,-2,14,1r-25,76v-25,13,2,-37,-33,-29v-16,4,-39,-8,-41,11v-2,21,-40,83,-6,87r12,1v2,2,1,11,-3,13r-107,0v-8,-8,1,-16,11,-14v15,-3,19,-6,29,-39r42,-134v12,-34,8,-38,-16,-40v-3,-2,-2,-11,3,-13r175,0v-3,6,-12,33,-18,57v-2,4,-11,4,-14,1","w":200,"k":{".":32,",":32,"e":17,"i":6,"l":4,"o":13,"r":11,"u":11,"a":22,"y":4,"A":13}},"G":{"d":"37,-91v0,-97,62,-152,174,-152v36,0,61,8,74,13v-8,18,-13,37,-18,56v-3,4,-13,4,-14,0v4,-37,-10,-53,-46,-53v-64,0,-116,74,-116,145v0,55,31,71,62,71v32,0,33,-34,41,-57v10,-24,-6,-25,-27,-27v-4,-2,-3,-11,1,-13r102,0v9,23,-28,5,-28,39v0,12,-20,47,-8,52v5,12,-21,11,-27,14v-17,5,-41,9,-59,9v-76,0,-111,-40,-111,-97","w":272,"k":{"e":9,"i":6,"l":9,"n":6,"o":9,"r":6,"u":6,"a":9,"y":2,"h":6}},"H":{"d":"191,-114v-26,0,-76,-11,-83,12r-16,50v-13,36,-5,39,21,40v2,2,2,11,-2,13r-107,0v-7,-5,1,-16,10,-14v15,-3,19,-6,29,-39r42,-134v12,-35,5,-38,-20,-40v-3,-4,-2,-11,3,-13r106,0v8,7,-3,16,-13,14v-22,-4,-30,57,-40,80v-4,11,-3,12,17,12v27,0,79,12,83,-13v3,-20,36,-77,4,-79v-11,2,-16,-8,-7,-14r105,0v7,8,-4,16,-13,15v-15,3,-18,5,-28,38r-42,134v-12,35,-5,38,20,40v2,2,2,11,-2,13r-106,0v-7,-5,1,-15,10,-14v28,3,35,-65,46,-92v3,-9,2,-9,-17,-9","w":280,"k":{"e":9,"i":4,"o":9,"u":9,"a":9,"y":6}},"I":{"d":"92,-52v-12,34,-6,38,19,40v2,2,1,11,-3,13r-106,0v-8,-7,3,-15,12,-14v15,-3,19,-6,29,-39r42,-134v13,-35,4,-36,-19,-40v-3,-2,-2,-11,3,-13r106,0v8,7,-3,16,-12,15v-15,3,-19,5,-29,38","w":131,"k":{"c":9,"g":4,"l":2,"n":4,"o":9,"s":4,"t":4,"u":9,"z":11,"b":6,"m":4,"p":6,"v":9,"w":9,"a":9,"y":2,"h":2,"d":4,"k":2}},"J":{"d":"-27,33v12,-1,21,19,31,20v8,0,13,-13,19,-29r67,-210v13,-35,5,-39,-21,-40v-3,-2,-3,-11,2,-13r106,0v7,6,-1,16,-10,14v-15,3,-18,6,-29,39v-23,70,-38,150,-72,210v-17,30,-45,48,-84,48v-15,0,-30,-3,-30,-15v1,-9,11,-24,21,-24","w":132,"k":{"e":13,"i":11,"o":13,"u":13,"a":13,"y":2}},"K":{"d":"43,-52r42,-134v13,-35,4,-36,-18,-40v-4,-2,-3,-11,1,-13r107,0v7,7,-2,16,-12,14v-25,-4,-33,61,-44,86v-2,7,-2,10,2,10v43,-11,76,-57,107,-85v6,-5,7,-10,-2,-11r-14,-1v-3,-3,-2,-11,3,-13r91,0v5,1,5,10,1,13v-49,3,-81,40,-122,74v-12,10,-16,13,-9,29v13,31,26,64,40,95v6,14,14,15,29,16v3,3,2,11,-1,13r-99,0v-16,-17,24,-10,18,-25r-24,-62v-12,-36,-27,-39,-35,-4v-5,19,-36,76,-3,77v9,-2,15,8,8,14r-107,0v-7,-7,2,-17,12,-14v15,-3,19,-6,29,-39","w":249,"k":{"C":12,"e":2,"G":12,"n":4,"o":6,"O":12,"r":6,"u":11,"Q":12,"w":11,"y":9,"h":-2}},"L":{"d":"134,-186v-14,51,-41,105,-44,160v2,6,9,9,33,9v31,0,43,-1,73,-41v4,-3,13,-2,15,2v-6,18,-20,47,-28,57r-181,0v-4,-2,-4,-12,1,-13v28,-3,28,-1,41,-40r42,-134v12,-34,6,-38,-19,-40v-4,-2,-2,-12,3,-13r104,0v7,7,-3,16,-11,15v-15,3,-20,5,-29,38","w":209,"k":{"C":22,"G":22,"i":4,"l":4,"O":22,"T":40,"u":6,"Y":25,"Q":22,"V":38,"W":44,"w":11,"y":16,"j":6,"A":-4,"U":17}},"M":{"d":"22,-21v20,-30,49,-121,67,-165v14,-33,7,-39,-17,-40v-3,-2,-2,-11,3,-13r88,0v-11,47,5,109,8,154v29,-42,86,-112,102,-154v24,2,59,1,85,0v8,7,-2,16,-11,14v-15,2,-22,5,-32,44r-35,129v-11,36,-6,38,19,40v2,2,1,11,-3,13r-105,0v-9,-8,2,-15,11,-14v15,-3,20,-5,30,-39r43,-147r-80,114v-18,26,-34,52,-51,79v-5,3,-12,3,-16,-1v-1,-43,-8,-145,-15,-188r-59,172v-1,10,18,9,26,11v2,3,1,11,-2,13r-87,0v-12,-18,25,-13,31,-22","w":318,"k":{"j":2,"e":6,"i":4,"n":4,"o":6,"u":9,"a":2,"y":9}},"N":{"d":"37,-39r47,-147v12,-34,6,-38,-19,-40v-3,-2,-2,-11,2,-13r74,0v3,36,49,124,68,166v13,-31,30,-97,38,-126v7,-23,-5,-26,-26,-27v-3,-3,-2,-10,3,-13r86,0v7,24,-37,10,-38,40r-60,198v-3,3,-14,4,-23,4r-82,-192r-45,150v-7,23,5,26,26,27v2,3,2,10,-2,13r-86,0v-6,-5,-1,-17,9,-14v17,-4,22,-9,28,-26","w":259,"k":{"e":11,"i":9,"o":11,"u":11,"a":11,"y":9}},"O":{"d":"281,-142v0,79,-51,148,-143,148v-82,0,-102,-57,-102,-96v0,-75,72,-153,146,-153v44,0,99,23,99,101xm133,-11v60,0,97,-100,97,-156v0,-42,-19,-60,-44,-60v-64,0,-99,80,-99,156v0,35,16,60,46,60","w":272,"k":{"c":2,"e":2,"g":2,"i":2,"l":4,"o":2,"r":2,"s":2,"t":2,"T":19,"u":2,"Y":18,"z":4,"V":15,"W":24,"b":2,"q":2,"a":2,"y":-2,"h":4,"d":2,"k":4,"f":2,"j":-2,"A":4,"X":11}},"P":{"d":"73,-235v67,-7,172,-14,170,60v-2,56,-56,78,-112,76v-3,-3,-3,-7,0,-10v39,-6,61,-37,61,-76v0,-22,-11,-37,-34,-37v-12,0,-13,1,-16,11r-50,159v-13,36,-4,38,20,41v2,2,2,10,-2,12r-107,0v-8,-7,3,-15,11,-14v15,-3,18,-6,29,-39r43,-136v12,-31,5,-32,-15,-35v-3,-3,-2,-10,2,-12","w":220,"k":{"h":2,"H":4,".":61,",":61,"e":17,"i":2,"l":2,"n":6,"o":15,"r":9,"s":11,"t":4,"u":9,"a":26,"y":2,"A":19,"E":4,"I":4}},"Q":{"d":"36,-90v0,-75,72,-153,146,-153v44,0,99,23,99,101v0,65,-42,126,-104,142v-2,1,-5,3,-1,6v33,29,65,62,118,51v4,1,5,6,4,9v-65,34,-136,-3,-176,-51v-5,-5,-9,-11,-14,-12v-56,-12,-72,-59,-72,-93xm133,-11v60,0,97,-100,97,-156v0,-42,-19,-60,-44,-60v-64,0,-99,80,-99,156v0,35,16,60,46,60","w":272,"k":{"X":11,"W":24,"V":15,"T":19,"u":2,"Y":18,"a":2,"A":4}},"R":{"d":"73,-235v66,-5,172,-17,171,56v0,36,-30,55,-58,62v-6,2,-7,4,-6,8v15,61,6,90,46,97v6,16,-14,11,-34,13v-54,6,-45,-51,-57,-90v0,-18,-25,-22,-30,-8v-3,21,-41,79,-6,84v9,-1,16,7,8,14r-104,0v-9,-8,3,-15,11,-14v15,-3,18,-6,29,-39r43,-136v12,-32,3,-30,-15,-35v-3,-3,-2,-10,2,-12xm192,-184v0,-19,-8,-38,-34,-38v-14,0,-15,2,-18,12r-24,77v-3,10,-1,12,16,12v34,0,60,-31,60,-63","w":225,"k":{"C":2,"e":2,"G":2,"o":2,"O":2,"T":11,"u":2,"Y":13,"Q":2,"V":9,"W":13,"a":-2,"y":4,"h":-2,"X":-2}},"S":{"d":"88,6v-37,0,-64,-17,-72,-32v0,-15,2,-35,7,-52v2,-3,11,-3,14,1v-1,31,26,66,57,66v22,0,43,-15,43,-43v0,-46,-79,-65,-79,-115v0,-72,105,-95,154,-55v-5,10,-10,27,-15,48v-3,4,-12,3,-14,0v4,-26,-9,-51,-39,-51v-52,0,-60,53,-12,81v26,15,52,37,52,75v0,44,-34,77,-96,77","w":190,"k":{"e":4,"i":4,"l":4,"n":9,"o":2,"t":6,"u":4,"m":9,"p":4,"w":9,"a":2,"y":4,"h":4,"k":9,"j":2}},"T":{"d":"251,-184v6,-35,-13,-39,-45,-37v-11,0,-12,0,-15,10r-49,159v-13,36,-4,39,23,40v2,2,0,11,-3,13r-112,0v-10,-11,5,-15,15,-14v15,-2,19,-6,29,-39r50,-159v3,-9,2,-10,-10,-10v-38,-3,-53,8,-70,38v-3,2,-14,1,-14,-4v11,-23,21,-43,27,-60v17,-4,5,9,39,9r134,0v21,3,22,-15,37,-8v-7,14,-18,45,-22,62v-3,4,-12,4,-14,0","w":232,"k":{"C":9,"e":47,"G":9,"i":14,"o":43,"O":9,"r":36,"s":36,"T":-4,"u":36,"Y":-4,"z":30,"Q":9,"W":-2,"m":36,"w":36,"a":41,"y":40,"A":23,"X":-6,",":35,".":35,":":18,"-":36,";":18}},"U":{"d":"170,-239v7,6,-2,16,-11,14v-15,3,-19,6,-28,39v-11,40,-33,76,-33,123v0,31,14,49,46,49v77,-2,86,-125,107,-185v8,-22,-5,-26,-26,-27v-2,-3,-2,-10,2,-13r87,0v7,23,-37,11,-38,40v-33,73,-32,205,-148,205v-61,0,-91,-41,-73,-102r27,-90v12,-33,6,-38,-17,-40v-4,-2,-2,-11,3,-13r102,0","w":263,"k":{"g":9,"i":9,"l":4,"n":11,"r":9,"s":9,"t":6,"z":6,"b":2,"m":11,"p":11,"h":2,"x":6,"d":11,"k":4}},"V":{"d":"136,-64v27,-41,79,-102,102,-153v0,-8,-38,-7,-19,-22r84,0v11,19,-29,14,-35,26v-39,44,-123,169,-153,216v-5,3,-18,5,-23,0r-14,-188v-4,-35,-4,-39,-26,-41v-3,-3,-2,-11,2,-13v30,2,60,1,93,0v4,2,4,11,0,13v-28,3,-25,8,-21,48","w":234,"k":{"Q":2,";":6,":":6,".":43,"-":22,",":43,"C":2,"e":40,"G":2,"i":4,"o":36,"O":2,"r":32,"u":29,"a":38,"y":25,"A":22}},"W":{"d":"416,-239v12,16,-23,15,-29,23v-42,54,-114,155,-157,219v-5,3,-18,5,-22,0v-1,-14,-9,-70,-13,-95v-22,30,-51,72,-66,97v-5,3,-17,5,-22,0r-30,-204v-4,-26,-7,-24,-25,-27v-4,-4,-2,-11,2,-13r85,0v5,4,2,17,-7,14v-20,3,-12,8,-8,32r22,139v8,-12,37,-49,46,-63r-13,-87v-3,-20,-5,-22,-21,-22v-3,-3,-2,-12,3,-13v26,1,56,2,80,0v16,20,-23,4,-19,30r8,53r43,-63v0,-6,-12,-5,-17,-7v-3,-3,-2,-12,3,-13v24,1,51,2,71,0v7,6,-1,17,-10,15v-29,5,-69,72,-86,92v3,18,8,52,12,78r94,-133v4,-11,29,-31,12,-37v-11,1,-14,-10,-6,-15v24,1,50,2,70,0","w":347,"k":{"Q":4,";":22,":":22,".":40,"-":14,",":40,"C":4,"e":33,"G":4,"i":4,"o":33,"r":25,"T":-4,"u":25,"a":36,"y":23,"A":27}},"X":{"d":"124,-100v-22,25,-52,50,-69,80v0,4,14,7,22,8v3,3,3,12,-2,13r-92,0v-9,-16,15,-13,26,-19v38,-22,78,-70,109,-102r-28,-81v-10,-25,-16,-19,-32,-25v-3,-4,-1,-12,3,-13v21,1,80,2,98,0v8,7,-2,17,-11,15v-17,4,-15,3,-10,19v5,17,12,36,18,52v19,-20,45,-41,58,-66v1,-5,-13,-6,-19,-7v-4,-4,-1,-11,3,-13v26,1,60,2,84,0v4,1,4,10,0,13v-55,9,-83,60,-121,91v9,31,21,65,32,98v6,19,14,23,36,25v3,3,2,12,-2,13v-22,-2,-82,-1,-104,0v-5,-2,-5,-12,0,-13v21,-2,28,-1,20,-27","w":230,"k":{"Q":9,"C":9,"e":4,"G":9,"i":2,"O":9,"r":2,"u":9,"y":6}},"Y":{"d":"134,-52v-13,36,-4,39,23,40v2,2,0,11,-3,13r-112,0v-4,-2,-4,-12,0,-13v41,10,56,-59,52,-101v-3,-27,-10,-53,-15,-81v-4,-25,-8,-31,-28,-32v-3,-3,-1,-12,3,-13r95,0v4,1,4,11,1,13v-21,4,-29,2,-23,31v6,26,10,59,14,78r51,-63v12,-21,41,-36,19,-43v-10,0,-21,-8,-11,-16r79,0v7,5,0,17,-9,14v-41,14,-74,72,-102,101v-25,26,-22,42,-34,72","w":213,"k":{"e":32,"o":32,"t":16,"T":-4,"u":29,"Y":-4,"V":-4,"W":-4,"q":36,"v":18,"a":32,"A":13,"X":-4,",":29,".":29,":":13,"-":27,";":13}},"Z":{"d":"194,-219v-25,-3,-66,-7,-88,6v-8,5,-17,14,-30,33v-5,3,-13,1,-14,-4v12,-26,22,-47,28,-64v2,-1,7,-1,10,0v0,8,2,10,27,10r146,-1v3,1,4,6,1,9v-48,39,-160,162,-198,209v15,7,83,8,104,-2v12,-6,25,-21,38,-39v2,-3,13,-1,14,3v-7,20,-21,51,-30,60r-203,0v-3,-1,-4,-3,-3,-7v63,-58,131,-138,192,-202v4,-4,6,-9,6,-11","w":231,"k":{"C":11,"e":2,"G":11,"i":4,"o":2,"O":11,"u":2,"Q":11,"w":13,"a":2,"y":13,"A":-4}},"[":{"d":"16,55r89,-303r67,1v5,19,-26,10,-38,18v-28,67,-63,188,-79,265v6,7,40,0,29,18","w":122},"\\":{"d":"71,-243r69,249r-33,0r-68,-249r32,0","w":144},"]":{"d":"135,-248r-89,303r-67,-1v-5,-19,26,-10,38,-18v30,-64,63,-189,79,-265v-6,-7,-39,-1,-28,-18","w":122},"^":{"d":"180,-88r-32,0r-40,-95r-40,95r-32,0r60,-137r25,0"},"_":{"d":"180,27r0,18r-180,0r0,-18r180,0","w":180},"a":{"d":"7,-17v0,-36,78,-156,134,-119v0,-21,33,-24,44,-8v-14,34,-29,74,-43,114v-1,5,-2,8,1,8v5,0,23,-11,34,-23v4,0,7,3,7,8v-16,22,-47,42,-72,42v-30,-6,0,-42,-1,-56v-21,28,-56,56,-82,56v-11,0,-22,-10,-22,-22xm117,-128v-26,9,-62,72,-60,100v0,4,2,6,5,6v24,-7,63,-68,70,-92v-4,-10,-9,-14,-15,-14","w":181},"b":{"d":"185,-113v3,49,-63,124,-123,118v-52,-5,-44,-48,-28,-91r47,-127v12,-20,-20,-16,-11,-32v12,-3,55,-17,70,-9r-59,154v17,-23,44,-49,69,-49v29,0,35,23,35,36xm71,-11v31,-5,74,-89,70,-103v0,-9,-5,-13,-10,-13v-18,-6,-76,78,-69,101v0,10,5,15,9,15","w":184,"k":{"w":2,"v":2}},"c":{"d":"102,-133v-21,6,-42,55,-40,88v3,41,29,24,53,1v5,0,8,4,7,8v-14,35,-108,69,-108,-1v0,-44,54,-117,98,-112v38,-6,50,48,12,50v-22,1,-9,-28,-22,-34","w":136},"d":{"d":"12,-29v0,-54,80,-147,134,-111r24,-70v13,-25,-19,-18,-11,-35v12,-3,55,-17,69,-9r-75,227v0,2,1,4,3,4v4,0,22,-11,33,-23v4,0,6,4,5,9v-8,12,-37,42,-73,42v-31,-7,2,-47,1,-65v-17,26,-44,65,-84,65v-16,0,-26,-14,-26,-34xm131,-133v-29,3,-76,87,-78,110v0,5,1,8,5,8v20,-7,69,-58,78,-94v4,-14,1,-24,-5,-24","w":190},"e":{"d":"14,-36v-2,-49,52,-114,106,-113v21,0,34,13,34,29v0,37,-61,54,-90,62v-3,12,-4,38,13,37v13,0,30,-8,47,-25v4,0,7,3,7,8v-17,27,-46,43,-78,43v-26,0,-39,-18,-39,-41xm67,-74v22,-5,45,-26,47,-51v-2,-13,-16,-8,-23,1v-12,15,-21,37,-24,50","w":144,"k":{"y":-2,"x":-2}},"f":{"d":"177,-201v-15,-2,-20,-49,-29,-41v-20,11,-37,70,-44,98r41,0v3,5,0,16,-6,19r-40,0v-20,62,-33,141,-64,190v-11,17,-33,32,-59,32v-36,0,-51,-47,-15,-51v26,11,29,62,45,3r48,-174r-34,0v-8,-24,19,-19,39,-19v15,-51,42,-109,103,-113v50,-3,43,54,15,56","w":107},"g":{"d":"68,-49v18,-1,41,-53,42,-73v0,-8,-4,-11,-9,-11v-22,5,-42,49,-43,73v0,7,4,11,10,11xm62,-25v15,23,79,32,79,73v0,38,-61,49,-91,49v-25,0,-68,-7,-68,-36v0,-28,41,-41,60,-47v-26,-13,-7,-37,9,-49v-16,-4,-32,-15,-32,-41v0,-25,24,-73,83,-73v10,0,25,8,32,9v16,-1,44,-18,44,8v0,23,-18,13,-31,10v2,45,-28,87,-80,89v-2,2,-5,5,-5,8xm104,61v0,-16,-39,-37,-46,-38v-12,1,-32,14,-31,30v0,17,19,26,42,26v20,0,35,-7,35,-18","w":149,"k":{"p":-17,"y":-23,"f":-25}},"h":{"d":"105,-14v16,-21,35,-83,36,-102v0,-6,-2,-10,-7,-10v-28,1,-85,109,-89,125v-8,10,-43,9,-37,-8r69,-201v14,-25,-18,-18,-10,-35v13,-3,55,-17,70,-9r-57,159v16,-22,48,-53,79,-54v17,0,27,12,27,32v0,50,-34,117,-90,122v-23,2,-23,-30,-6,-31v6,0,14,13,15,12","w":183},"i":{"d":"111,-133v-11,37,-29,69,-43,104v-1,3,-1,5,2,5v5,0,25,-13,34,-22v4,0,8,3,7,8v-14,19,-46,43,-76,43v-17,-4,-21,-15,-12,-30v11,-32,32,-63,36,-95v-6,0,-26,16,-32,21v-4,-1,-6,-6,-5,-9v19,-24,53,-41,72,-41v8,0,17,8,17,16xm81,-198v-4,-29,48,-45,49,-9v5,30,-48,43,-49,9","w":111},"j":{"d":"-38,50v21,6,27,53,41,15v10,-27,49,-150,55,-178v0,-4,0,-5,-3,-5v-7,0,-27,18,-32,23v-4,0,-7,-6,-6,-10v13,-14,44,-44,73,-44v32,13,13,41,0,81v-25,78,-29,153,-113,165v-33,5,-49,-43,-15,-47xm74,-198v-5,-29,47,-45,48,-9v5,30,-47,43,-48,9","w":108},"k":{"d":"83,-105v18,-19,40,-46,75,-44v42,2,36,45,11,64v-15,11,-32,17,-44,20v-8,9,5,43,14,42v9,4,26,-29,34,-12v-9,17,-32,40,-59,40v-30,0,-23,-43,-39,-58v-26,5,-11,59,-45,58v-9,0,-25,-2,-21,-14r68,-201v13,-25,-19,-18,-11,-35v13,-3,55,-17,70,-9xm72,-69v17,13,70,-24,69,-43v0,-8,-5,-11,-11,-11v-12,-4,-47,30,-58,54","w":177},"l":{"d":"35,5v-30,0,-25,-15,-18,-37r61,-178v13,-25,-17,-18,-11,-35v12,-5,49,-12,67,-12v3,0,3,1,3,3r-76,218v-4,10,-4,17,1,17v8,0,28,-22,37,-32v4,0,8,3,7,8v-10,20,-30,48,-71,48","w":99},"m":{"d":"186,-9v10,-38,32,-74,41,-112v-8,-13,-16,0,-31,18v-22,25,-42,66,-55,100v-5,14,-46,8,-39,-3v0,-4,32,-80,42,-115v-9,-13,-19,1,-35,20v-20,23,-37,65,-52,100v-4,12,-45,6,-38,-5v1,-5,30,-86,35,-101v4,-12,3,-15,-2,-15v-16,-4,-28,34,-37,14v10,-23,33,-41,68,-41v18,0,18,13,14,23r-16,42v19,-28,51,-65,81,-65v16,0,19,12,19,21v2,6,-9,25,-14,44v24,-39,54,-65,80,-65v32,0,26,30,17,53v-7,18,-16,38,-27,64v-2,5,-1,8,2,8v6,0,22,-14,32,-24v4,-1,7,2,7,7v-10,18,-40,46,-76,46v-8,0,-16,-8,-16,-14","w":278},"n":{"d":"104,-9v9,-39,33,-74,41,-112v-8,-13,-17,0,-32,18v-21,25,-40,67,-56,102v-8,10,-42,9,-37,-8v2,-5,30,-83,35,-98v3,-7,2,-13,-2,-13v-10,-4,-29,30,-37,14v9,-19,40,-43,69,-43v17,0,15,15,12,23v-4,14,-14,31,-16,44v21,-29,50,-67,85,-67v31,0,23,30,15,53v-7,18,-16,38,-27,64v-2,5,-1,8,2,8v5,0,23,-14,32,-24v4,-1,7,2,7,7v-10,18,-39,46,-75,46v-8,0,-16,-8,-16,-14","w":195},"o":{"d":"70,-11v30,-8,51,-67,54,-107v0,-8,-2,-15,-10,-15v-31,11,-51,63,-55,107v0,9,4,15,11,15xm18,-45v0,-46,48,-104,94,-104v39,0,53,27,53,53v0,47,-46,101,-95,101v-37,0,-52,-25,-52,-50","w":168,"k":{"v":4,"w":4,"y":4,"x":2}},"p":{"d":"179,-91v-3,53,-57,109,-116,92v-11,13,-14,37,-22,54v-10,20,6,25,25,24v4,2,3,11,-2,12r-100,4v-5,-2,-5,-9,-2,-12v24,-4,30,-4,39,-34r57,-167v-9,2,-28,10,-38,15v-5,-1,-6,-6,-4,-10v6,-8,35,-21,48,-25v7,-13,4,-34,27,-32v13,0,23,3,25,7r-8,20v46,-6,73,22,71,52xm84,-11v26,-7,50,-55,48,-85v-1,-24,-11,-30,-29,-29r-32,94v-5,7,6,21,13,20","w":182,"k":{"w":2}},"q":{"d":"130,-149v14,0,20,11,23,18v6,-9,13,-18,20,-27v6,-2,17,0,20,6r-64,207v-8,25,4,24,21,26v3,3,2,9,-1,11v-29,1,-68,5,-102,11v-8,-9,4,-14,12,-15v17,-3,21,-9,27,-30r34,-112v-14,20,-40,59,-82,59v-19,0,-26,-20,-26,-33v0,-17,8,-46,32,-76v27,-33,61,-45,86,-45xm62,-15v17,1,81,-73,72,-103v0,-10,-5,-16,-9,-16v-19,-11,-75,105,-69,110v0,5,2,9,6,9","w":182},"r":{"d":"78,-76v20,-33,32,-66,65,-73v10,0,18,7,18,22v0,21,-14,35,-24,35v-11,2,-8,-23,-16,-25v-27,18,-47,84,-63,116v-5,11,-42,9,-37,-8v10,-33,24,-71,34,-102v2,-7,2,-12,-2,-12v-6,0,-20,10,-30,22v-4,0,-7,-4,-6,-8v7,-14,30,-40,56,-40v42,0,1,57,5,73","w":142,"k":{"c":4,"e":7,"g":-3,"n":-3,"o":2,"t":-3,"u":-3,"z":-7,"m":-5,"q":6,"v":-6,"w":-6,"a":4,"y":-10,"x":-4,"d":7,"k":2,"f":-5,",":22,".":22}},"s":{"d":"50,-58v-37,-34,-5,-88,41,-91v32,-2,49,44,19,47v-18,-10,-35,-42,-46,-16v4,21,41,41,41,67v0,30,-33,57,-66,56v-31,6,-51,-44,-18,-49v18,9,38,45,52,17v0,-9,-16,-24,-23,-31","w":116},"t":{"d":"137,-125r-37,0r-33,93v-2,5,-2,8,2,8v6,0,24,-12,38,-27v5,0,7,3,7,8v-12,18,-48,48,-78,48v-19,0,-20,-16,-13,-35r33,-95r-26,0v-10,-18,21,-17,34,-20v12,-14,26,-51,51,-32r-10,33r34,0v6,5,2,16,-2,19","w":115},"u":{"d":"93,-149v13,1,19,13,14,25r-35,88v-2,13,4,11,16,2v30,-26,56,-78,72,-112v12,-6,33,-1,39,5r-41,106v-1,4,-4,10,1,10v6,0,24,-14,33,-23v4,1,7,3,7,8v-10,18,-46,45,-76,45v-9,0,-16,-7,-12,-18v5,-16,16,-36,19,-51v-19,27,-58,69,-87,69v-22,0,-22,-21,-15,-40r30,-75v2,-5,2,-10,-1,-10v-7,0,-22,14,-32,22v-4,-1,-6,-3,-6,-8v14,-18,47,-43,74,-43","w":195},"v":{"d":"172,-122v0,39,-73,131,-121,127v-51,-16,-3,-81,4,-112v3,-6,3,-13,-1,-13v-9,-4,-28,30,-37,16v9,-19,39,-45,70,-45v23,0,19,22,12,41v-8,23,-22,52,-26,76v0,4,3,10,9,10v24,-4,65,-65,48,-105v1,-14,9,-22,22,-22v18,0,20,15,20,27","w":165,"k":{"q":2,".":22,",":22,"c":2,"e":2,"o":2,"a":2,"d":2}},"w":{"d":"122,-44v-17,17,-44,50,-76,49v-52,-16,5,-79,9,-112v3,-8,3,-13,-1,-13v-9,-4,-28,30,-37,16v9,-19,39,-45,70,-45v22,0,19,22,12,41r-29,81v4,12,15,1,24,-8v27,-29,37,-53,43,-83v6,-28,20,-31,32,-31v9,0,19,6,19,16v0,26,-33,65,-32,95v0,9,3,15,10,15v28,0,58,-67,46,-106v1,-13,11,-20,23,-20v18,0,21,15,21,27v9,41,-80,127,-118,127v-24,0,-25,-31,-16,-49","w":248,"k":{"q":2,".":22,",":22,"c":2,"e":2,"y":-2,"d":2}},"x":{"d":"162,-99v-10,0,-7,-18,-17,-17v-7,-2,-30,24,-38,35v4,12,16,56,22,54v7,4,16,-32,30,-21v-7,41,-61,79,-76,26r-8,-24v-15,17,-42,51,-63,51v-9,0,-16,-7,-16,-18v0,-13,12,-31,21,-31v6,-1,7,19,15,17v1,0,11,-6,26,-24r11,-14v-10,-22,-12,-75,-37,-29v-4,2,-9,-1,-10,-5v2,-23,56,-82,71,-27r9,27v15,-19,41,-50,60,-50v11,0,18,10,18,19v0,17,-9,31,-18,31","w":163,"k":{"q":2,"c":2,"e":2,"o":2,"y":-4,"d":2}},"y":{"d":"-9,49v19,0,27,41,46,13v19,-28,21,-46,20,-108v-1,-44,-4,-71,-14,-71v-11,-4,-19,42,-35,26v7,-20,24,-58,55,-58v39,0,32,96,31,139v21,-39,29,-78,36,-124v2,-12,6,-15,12,-15v11,0,23,4,23,16v-18,60,-87,227,-168,230v-13,0,-28,-9,-28,-25v0,-14,10,-23,22,-23","w":153,"k":{"c":2,"e":2,"o":2,"q":2,"d":2,",":7,".":7}},"z":{"d":"104,8v-30,2,-66,-46,-83,-3v-33,-4,-24,-22,-3,-39v31,-26,59,-46,86,-68v3,-3,4,-5,0,-6v-26,-5,-48,-17,-56,-2v6,10,16,28,-5,28v-11,0,-19,-7,-19,-17v1,-24,36,-48,60,-48v27,0,54,27,70,0v8,-1,17,6,14,17r-106,85r0,2v22,-6,60,39,74,16v-1,-11,-19,-37,3,-37v14,0,23,14,23,25v-2,27,-30,45,-58,47","w":159,"k":{"c":2,"e":2,"o":2,"d":2}},"{":{"d":"35,13v7,-28,23,-58,28,-77v3,-11,7,-26,-23,-28v-1,-3,-1,-8,1,-9v63,-5,41,-58,58,-104v15,-40,40,-46,73,-45v3,2,2,9,-1,11v-82,7,-19,120,-94,143v45,18,-7,81,-12,108v-2,12,-5,32,20,36v2,3,1,8,-2,9v-28,1,-58,-8,-48,-44","w":122},"|":{"d":"71,-270r0,360r-31,0r0,-360r31,0","w":89},"}":{"d":"116,-206v-7,28,-23,58,-28,77v-3,11,-7,26,23,28v1,3,0,8,-2,9v-62,6,-40,59,-57,104v-15,40,-40,46,-73,45v-3,-2,-3,-9,0,-11v83,-6,20,-120,94,-143v-44,-18,9,-82,13,-108v2,-12,5,-31,-20,-35v-2,-3,-1,-9,2,-10v28,-1,58,8,48,44","w":122},"~":{"d":"24,-40v4,-18,18,-56,50,-50v36,-1,69,9,76,-26v6,-4,17,-2,21,5v-9,21,-16,47,-48,47v-39,0,-71,-8,-80,29v-5,3,-17,1,-19,-5"},"'":{"d":"127,-240r-42,95v-5,3,-11,3,-14,0r10,-95v3,-12,11,-12,24,-12v15,0,27,1,22,12","w":94},"`":{"d":"77,-213v-17,-15,5,-29,19,-31v3,0,7,2,10,10r19,64v0,4,-4,6,-9,5","w":136},"\u00a0":{"w":86}}});
;
/*
 * jQuery UI 1.7.3
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI
 */jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7.3",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return}for(var m=0;m<n.length;m++){if(j.options[n[m][0]]){n[m][1].apply(j.element,k)}}}},contains:function(k,j){return document.compareDocumentPosition?k.compareDocumentPosition(j)&16:k!==j&&k.contains(j)},hasScroll:function(m,k){if(c(m).css("overflow")=="hidden"){return false}var j=(k&&k=="left")?"scrollLeft":"scrollTop",l=false;if(m[j]>0){return true}m[j]=1;l=(m[j]>0);m[j]=0;return l},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l))},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)))};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""))}):e.call(this,j))}}c.fn.extend({remove:function(j,k){return this.each(function(){if(!k){if(!j||c.filter(j,[this]).length){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")})}}return i.call(c(this),j,k)})},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return !!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return !(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return !this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;/*
 * jQuery UI Tabs 1.7.3
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Tabs
 *
 * Depends:
 *	ui.core.js
 */(function(c){var b=0,a=0;c.widget("ui.tabs",{_init:function(){if(this.options.deselectable!==undefined){this.options.collapsible=this.options.deselectable}this._tabify(true)},_setData:function(d,e){if(d=="selected"){if(this.options.collapsible&&e==this.options.selected){return}this.select(e)}else{this.options[d]=e;if(d=="deselectable"){this.options.collapsible=e}this._tabify()}},_tabId:function(d){return d.title&&d.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||this.options.idPrefix+(++b)},_sanitizeSelector:function(d){return d.replace(/:/g,"\\:")},_cookie:function(){var d=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+(++a));return c.cookie.apply(null,[d].concat(c.makeArray(arguments)))},_ui:function(e,d){return{tab:e,panel:d,index:this.anchors.index(e)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var d=c(this);d.html(d.data("label.tabs")).removeData("label.tabs")})},_tabify:function(q){this.list=this.element.children("ul:first");this.lis=c("li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return c("a",this)[0]});this.panels=c([]);var r=this,f=this.options;var e=/^#.+/;this.anchors.each(function(u,o){var s=c(o).attr("href");var v=s.split("#")[0],w;if(v&&(v===location.toString().split("#")[0]||(w=c("base")[0])&&v===w.href)){s=o.hash;o.href=s}if(e.test(s)){r.panels=r.panels.add(r._sanitizeSelector(s))}else{if(s!="#"){c.data(o,"href.tabs",s);c.data(o,"load.tabs",s.replace(/#.*$/,""));var y=r._tabId(o);o.href="#"+y;var x=c("#"+y);if(!x.length){x=c(f.panelTemplate).attr("id",y).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(r.panels[u-1]||r.list);x.data("destroy.tabs",true)}r.panels=r.panels.add(x)}else{f.disabled.push(u)}}});if(q){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all");this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(f.selected===undefined){if(location.hash){this.anchors.each(function(s,o){if(o.hash==location.hash){f.selected=s;return false}})}if(typeof f.selected!="number"&&f.cookie){f.selected=parseInt(r._cookie(),10)}if(typeof f.selected!="number"&&this.lis.filter(".ui-tabs-selected").length){f.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}f.selected=f.selected||0}else{if(f.selected===null){f.selected=-1}}f.selected=((f.selected>=0&&this.anchors[f.selected])||f.selected<0)?f.selected:0;f.disabled=c.unique(f.disabled.concat(c.map(this.lis.filter(".ui-state-disabled"),function(s,o){return r.lis.index(s)}))).sort();if(c.inArray(f.selected,f.disabled)!=-1){f.disabled.splice(c.inArray(f.selected,f.disabled),1)}this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active");if(f.selected>=0&&this.anchors.length){this.panels.eq(f.selected).removeClass("ui-tabs-hide");this.lis.eq(f.selected).addClass("ui-tabs-selected ui-state-active");r.element.queue("tabs",function(){r._trigger("show",null,r._ui(r.anchors[f.selected],r.panels[f.selected]))});this.load(f.selected)}c(window).bind("unload",function(){r.lis.add(r.anchors).unbind(".tabs");r.lis=r.anchors=r.panels=null})}else{f.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}this.element[f.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible");if(f.cookie){this._cookie(f.selected,f.cookie)}for(var j=0,p;(p=this.lis[j]);j++){c(p)[c.inArray(j,f.disabled)!=-1&&!c(p).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled")}if(f.cache===false){this.anchors.removeData("cache.tabs")}this.lis.add(this.anchors).unbind(".tabs");if(f.event!="mouseover"){var h=function(o,i){if(i.is(":not(.ui-state-disabled)")){i.addClass("ui-state-"+o)}};var l=function(o,i){i.removeClass("ui-state-"+o)};this.lis.bind("mouseover.tabs",function(){h("hover",c(this))});this.lis.bind("mouseout.tabs",function(){l("hover",c(this))});this.anchors.bind("focus.tabs",function(){h("focus",c(this).closest("li"))});this.anchors.bind("blur.tabs",function(){l("focus",c(this).closest("li"))})}var d,k;if(f.fx){if(c.isArray(f.fx)){d=f.fx[0];k=f.fx[1]}else{d=k=f.fx}}function g(i,o){i.css({display:""});if(c.browser.msie&&o.opacity){i[0].style.removeAttribute("filter")}}var m=k?function(i,o){c(i).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");o.hide().removeClass("ui-tabs-hide").animate(k,k.duration||"normal",function(){g(o,k);r._trigger("show",null,r._ui(i,o[0]))})}:function(i,o){c(i).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");o.removeClass("ui-tabs-hide");r._trigger("show",null,r._ui(i,o[0]))};var n=d?function(o,i){i.animate(d,d.duration||"normal",function(){r.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");i.addClass("ui-tabs-hide");g(i,d);r.element.dequeue("tabs")})}:function(o,i,s){r.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");i.addClass("ui-tabs-hide");r.element.dequeue("tabs")};this.anchors.bind(f.event+".tabs",function(){var o=this,u=c(this).closest("li"),i=r.panels.filter(":not(.ui-tabs-hide)"),s=c(r._sanitizeSelector(this.hash));if((u.hasClass("ui-tabs-selected")&&!f.collapsible)||u.hasClass("ui-state-disabled")||u.hasClass("ui-state-processing")||r._trigger("select",null,r._ui(this,s[0]))===false){this.blur();return false}f.selected=r.anchors.index(this);r.abort();if(f.collapsible){if(u.hasClass("ui-tabs-selected")){f.selected=-1;if(f.cookie){r._cookie(f.selected,f.cookie)}r.element.queue("tabs",function(){n(o,i)}).dequeue("tabs");this.blur();return false}else{if(!i.length){if(f.cookie){r._cookie(f.selected,f.cookie)}r.element.queue("tabs",function(){m(o,s)});r.load(r.anchors.index(this));this.blur();return false}}}if(f.cookie){r._cookie(f.selected,f.cookie)}if(s.length){if(i.length){r.element.queue("tabs",function(){n(o,i)})}r.element.queue("tabs",function(){m(o,s)});r.load(r.anchors.index(this))}else{throw"jQuery UI Tabs: Mismatching fragment identifier."}if(c.browser.msie){this.blur()}});this.anchors.bind("click.tabs",function(){return false})},destroy:function(){var d=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){var e=c.data(this,"href.tabs");if(e){this.href=e}var f=c(this).unbind(".tabs");c.each(["href","load","cache"],function(g,h){f.removeData(h+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){if(c.data(this,"destroy.tabs")){c(this).remove()}else{c(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}});if(d.cookie){this._cookie(null,d.cookie)}},add:function(g,f,e){if(e===undefined){e=this.anchors.length}var d=this,i=this.options,k=c(i.tabTemplate.replace(/#\{href\}/g,g).replace(/#\{label\}/g,f)),j=!g.indexOf("#")?g.replace("#",""):this._tabId(c("a",k)[0]);k.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);var h=c("#"+j);if(!h.length){h=c(i.panelTemplate).attr("id",j).data("destroy.tabs",true)}h.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(e>=this.lis.length){k.appendTo(this.list);h.appendTo(this.list[0].parentNode)}else{k.insertBefore(this.lis[e]);h.insertBefore(this.panels[e])}i.disabled=c.map(i.disabled,function(m,l){return m>=e?++m:m});this._tabify();if(this.anchors.length==1){k.addClass("ui-tabs-selected ui-state-active");h.removeClass("ui-tabs-hide");this.element.queue("tabs",function(){d._trigger("show",null,d._ui(d.anchors[0],d.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[e],this.panels[e]))},remove:function(d){var f=this.options,g=this.lis.eq(d).remove(),e=this.panels.eq(d).remove();if(g.hasClass("ui-tabs-selected")&&this.anchors.length>1){this.select(d+(d+1<this.anchors.length?1:-1))}f.disabled=c.map(c.grep(f.disabled,function(j,h){return j!=d}),function(j,h){return j>=d?--j:j});this._tabify();this._trigger("remove",null,this._ui(g.find("a")[0],e[0]))},enable:function(d){var e=this.options;if(c.inArray(d,e.disabled)==-1){return}this.lis.eq(d).removeClass("ui-state-disabled");e.disabled=c.grep(e.disabled,function(g,f){return g!=d});this._trigger("enable",null,this._ui(this.anchors[d],this.panels[d]))},disable:function(e){var d=this,f=this.options;if(e!=f.selected){this.lis.eq(e).addClass("ui-state-disabled");f.disabled.push(e);f.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[e],this.panels[e]))}},select:function(d){if(typeof d=="string"){d=this.anchors.index(this.anchors.filter("[href$="+d+"]"))}else{if(d===null){d=-1}}if(d==-1&&this.options.collapsible){d=this.options.selected}this.anchors.eq(d).trigger(this.options.event+".tabs")},load:function(g){var e=this,i=this.options,d=this.anchors.eq(g)[0],f=c.data(d,"load.tabs");this.abort();if(!f||this.element.queue("tabs").length!==0&&c.data(d,"cache.tabs")){this.element.dequeue("tabs");return}this.lis.eq(g).addClass("ui-state-processing");if(i.spinner){var h=c("span",d);h.data("label.tabs",h.html()).html(i.spinner)}this.xhr=c.ajax(c.extend({},i.ajaxOptions,{url:f,success:function(k,j){c(e._sanitizeSelector(d.hash)).html(k);e._cleanup();if(i.cache){c.data(d,"cache.tabs",true)}e._trigger("load",null,e._ui(e.anchors[g],e.panels[g]));try{i.ajaxOptions.success(k,j)}catch(l){}e.element.dequeue("tabs")}}))},abort:function(){this.element.queue([]);this.panels.stop(false,true);if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup()},url:function(e,d){this.anchors.eq(e).removeData("cache.tabs").data("load.tabs",d)},length:function(){return this.anchors.length}});c.extend(c.ui.tabs,{version:"1.7.3",getter:"length",defaults:{ajaxOptions:null,cache:false,cookie:null,collapsible:false,disabled:[],event:"click",fx:null,idPrefix:"ui-tabs-",panelTemplate:"<div></div>",spinner:"<em>Loading&#8230;</em>",tabTemplate:'<li><a href="#{href}"><span>#{label}</span></a></li>'}});c.extend(c.ui.tabs.prototype,{rotation:null,rotate:function(f,h){var d=this,i=this.options;var e=d._rotate||(d._rotate=function(j){clearTimeout(d.rotation);d.rotation=setTimeout(function(){var k=i.selected;d.select(++k<d.anchors.length?k:0)},f);if(j){j.stopPropagation()}});var g=d._unrotate||(d._unrotate=!h?function(j){if(j.clientX){d.rotate(null)}}:function(j){t=i.selected;e()});if(f){this.element.bind("tabsshow",e);this.anchors.bind(i.event+".tabs",g);e()}else{clearTimeout(d.rotation);this.element.unbind("tabsshow",e);this.anchors.unbind(i.event+".tabs",g);delete this._rotate;delete this._unrotate}}})})(jQuery);;/*
 * jQuery UI Datepicker 1.7.3
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Datepicker
 *
 * Depends:
 *	ui.core.js
 */(function($){$.extend($.ui,{datepicker:{version:"1.7.3"}});var PROP_NAME="datepicker";function Datepicker(){this.debug=false;this._curInst=null;this._keyEvent=false;this._disabledInputs=[];this._datepickerShowing=false;this._inDialog=false;this._mainDivId="ui-datepicker-div";this._inlineClass="ui-datepicker-inline";this._appendClass="ui-datepicker-append";this._triggerClass="ui-datepicker-trigger";this._dialogClass="ui-datepicker-dialog";this._disableClass="ui-datepicker-disabled";this._unselectableClass="ui-datepicker-unselectable";this._currentClass="ui-datepicker-current-day";this._dayOverClass="ui-datepicker-days-cell-over";this.regional=[];this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],dateFormat:"mm/dd/yy",firstDay:0,isRTL:false};this._defaults={showOn:"focus",showAnim:"show",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:false,hideIfNoPrevNext:false,navigationAsDateFormat:false,gotoCurrent:false,changeMonth:false,changeYear:false,showMonthAfterYear:false,yearRange:"-10:+10",showOtherMonths:false,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"normal",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:true,showButtonPanel:false};$.extend(this._defaults,this.regional[""]);this.dpDiv=$('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all ui-helper-hidden-accessible"></div>')}$.extend(Datepicker.prototype,{markerClassName:"hasDatepicker",log:function(){if(this.debug){console.log.apply("",arguments)}},setDefaults:function(settings){extendRemove(this._defaults,settings||{});return this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("date:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase();var inline=(nodeName=="div"||nodeName=="span");if(!target.id){target.id="dp"+(++this.uuid)}var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{});if(nodeName=="input"){this._connectDatepicker(target,inst)}else{if(inline){this._inlineDatepicker(target,inst)}}},_newInst:function(target,inline){var id=target[0].id.replace(/([:\[\]\.])/g,"\\\\$1");return{id:id,input:target,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:inline,dpDiv:(!inline?this.dpDiv:$('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}},_connectDatepicker:function(target,inst){var input=$(target);inst.append=$([]);inst.trigger=$([]);if(input.hasClass(this.markerClassName)){return}var appendText=this._get(inst,"appendText");var isRTL=this._get(inst,"isRTL");if(appendText){inst.append=$('<span class="'+this._appendClass+'">'+appendText+"</span>");input[isRTL?"before":"after"](inst.append)}var showOn=this._get(inst,"showOn");if(showOn=="focus"||showOn=="both"){input.focus(this._showDatepicker)}if(showOn=="button"||showOn=="both"){var buttonText=this._get(inst,"buttonText");var buttonImage=this._get(inst,"buttonImage");inst.trigger=$(this._get(inst,"buttonImageOnly")?$("<img/>").addClass(this._triggerClass).attr({src:buttonImage,alt:buttonText,title:buttonText}):$('<button type="button"></button>').addClass(this._triggerClass).html(buttonImage==""?buttonText:$("<img/>").attr({src:buttonImage,alt:buttonText,title:buttonText})));input[isRTL?"before":"after"](inst.trigger);inst.trigger.click(function(){if($.datepicker._datepickerShowing&&$.datepicker._lastInput==target){$.datepicker._hideDatepicker()}else{$.datepicker._showDatepicker(target)}return false})}input.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).bind("setData.datepicker",function(event,key,value){inst.settings[key]=value}).bind("getData.datepicker",function(event,key){return this._get(inst,key)});$.data(target,PROP_NAME,inst)},_inlineDatepicker:function(target,inst){var divSpan=$(target);if(divSpan.hasClass(this.markerClassName)){return}divSpan.addClass(this.markerClassName).append(inst.dpDiv).bind("setData.datepicker",function(event,key,value){inst.settings[key]=value}).bind("getData.datepicker",function(event,key){return this._get(inst,key)});$.data(target,PROP_NAME,inst);this._setDate(inst,this._getDefaultDate(inst));this._updateDatepicker(inst);this._updateAlternate(inst)},_dialogDatepicker:function(input,dateText,onSelect,settings,pos){var inst=this._dialogInst;if(!inst){var id="dp"+(++this.uuid);this._dialogInput=$('<input type="text" id="'+id+'" size="1" style="position: absolute; top: -100px;"/>');this._dialogInput.keydown(this._doKeyDown);$("body").append(this._dialogInput);inst=this._dialogInst=this._newInst(this._dialogInput,false);inst.settings={};$.data(this._dialogInput[0],PROP_NAME,inst)}extendRemove(inst.settings,settings||{});this._dialogInput.val(dateText);this._pos=(pos?(pos.length?pos:[pos.pageX,pos.pageY]):null);if(!this._pos){var browserWidth=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth;var browserHeight=window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight;var scrollX=document.documentElement.scrollLeft||document.body.scrollLeft;var scrollY=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[(browserWidth/2)-100+scrollX,(browserHeight/2)-150+scrollY]}this._dialogInput.css("left",this._pos[0]+"px").css("top",this._pos[1]+"px");inst.settings.onSelect=onSelect;this._inDialog=true;this.dpDiv.addClass(this._dialogClass);this._showDatepicker(this._dialogInput[0]);if($.blockUI){$.blockUI(this.dpDiv)}$.data(this._dialogInput[0],PROP_NAME,inst);return this},_destroyDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();$.removeData(target,PROP_NAME);if(nodeName=="input"){inst.append.remove();inst.trigger.remove();$target.removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress)}else{if(nodeName=="div"||nodeName=="span"){$target.removeClass(this.markerClassName).empty()}}},_enableDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();if(nodeName=="input"){target.disabled=false;inst.trigger.filter("button").each(function(){this.disabled=false}).end().filter("img").css({opacity:"1.0",cursor:""})}else{if(nodeName=="div"||nodeName=="span"){var inline=$target.children("."+this._inlineClass);inline.children().removeClass("ui-state-disabled")}}this._disabledInputs=$.map(this._disabledInputs,function(value){return(value==target?null:value)})},_disableDatepicker:function(target){var $target=$(target);var inst=$.data(target,PROP_NAME);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();if(nodeName=="input"){target.disabled=true;inst.trigger.filter("button").each(function(){this.disabled=true}).end().filter("img").css({opacity:"0.5",cursor:"default"})}else{if(nodeName=="div"||nodeName=="span"){var inline=$target.children("."+this._inlineClass);inline.children().addClass("ui-state-disabled")}}this._disabledInputs=$.map(this._disabledInputs,function(value){return(value==target?null:value)});this._disabledInputs[this._disabledInputs.length]=target},_isDisabledDatepicker:function(target){if(!target){return false}for(var i=0;i<this._disabledInputs.length;i++){if(this._disabledInputs[i]==target){return true}}return false},_getInst:function(target){try{return $.data(target,PROP_NAME)}catch(err){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(target,name,value){var inst=this._getInst(target);if(arguments.length==2&&typeof name=="string"){return(name=="defaults"?$.extend({},$.datepicker._defaults):(inst?(name=="all"?$.extend({},inst.settings):this._get(inst,name)):null))}var settings=name||{};if(typeof name=="string"){settings={};settings[name]=value}if(inst){if(this._curInst==inst){this._hideDatepicker(null)}var date=this._getDateDatepicker(target);extendRemove(inst.settings,settings);this._setDateDatepicker(target,date);this._updateDatepicker(inst)}},_changeDatepicker:function(target,name,value){this._optionDatepicker(target,name,value)},_refreshDatepicker:function(target){var inst=this._getInst(target);if(inst){this._updateDatepicker(inst)}},_setDateDatepicker:function(target,date,endDate){var inst=this._getInst(target);if(inst){this._setDate(inst,date,endDate);this._updateDatepicker(inst);this._updateAlternate(inst)}},_getDateDatepicker:function(target){var inst=this._getInst(target);if(inst&&!inst.inline){this._setDateFromField(inst)}return(inst?this._getDate(inst):null)},_doKeyDown:function(event){var inst=$.datepicker._getInst(event.target);var handled=true;var isRTL=inst.dpDiv.is(".ui-datepicker-rtl");inst._keyEvent=true;if($.datepicker._datepickerShowing){switch(event.keyCode){case 9:$.datepicker._hideDatepicker(null,"");break;case 13:var sel=$("td."+$.datepicker._dayOverClass+", td."+$.datepicker._currentClass,inst.dpDiv);if(sel[0]){$.datepicker._selectDay(event.target,inst.selectedMonth,inst.selectedYear,sel[0])}else{$.datepicker._hideDatepicker(null,$.datepicker._get(inst,"duration"))}return false;break;case 27:$.datepicker._hideDatepicker(null,$.datepicker._get(inst,"duration"));break;case 33:$.datepicker._adjustDate(event.target,(event.ctrlKey?-$.datepicker._get(inst,"stepBigMonths"):-$.datepicker._get(inst,"stepMonths")),"M");break;case 34:$.datepicker._adjustDate(event.target,(event.ctrlKey?+$.datepicker._get(inst,"stepBigMonths"):+$.datepicker._get(inst,"stepMonths")),"M");break;case 35:if(event.ctrlKey||event.metaKey){$.datepicker._clearDate(event.target)}handled=event.ctrlKey||event.metaKey;break;case 36:if(event.ctrlKey||event.metaKey){$.datepicker._gotoToday(event.target)}handled=event.ctrlKey||event.metaKey;break;case 37:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,(isRTL?+1:-1),"D")}handled=event.ctrlKey||event.metaKey;if(event.originalEvent.altKey){$.datepicker._adjustDate(event.target,(event.ctrlKey?-$.datepicker._get(inst,"stepBigMonths"):-$.datepicker._get(inst,"stepMonths")),"M")}break;case 38:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,-7,"D")}handled=event.ctrlKey||event.metaKey;break;case 39:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,(isRTL?-1:+1),"D")}handled=event.ctrlKey||event.metaKey;if(event.originalEvent.altKey){$.datepicker._adjustDate(event.target,(event.ctrlKey?+$.datepicker._get(inst,"stepBigMonths"):+$.datepicker._get(inst,"stepMonths")),"M")}break;case 40:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,+7,"D")}handled=event.ctrlKey||event.metaKey;break;default:handled=false}}else{if(event.keyCode==36&&event.ctrlKey){$.datepicker._showDatepicker(this)}else{handled=false}}if(handled){event.preventDefault();event.stopPropagation()}},_doKeyPress:function(event){var inst=$.datepicker._getInst(event.target);if($.datepicker._get(inst,"constrainInput")){var chars=$.datepicker._possibleChars($.datepicker._get(inst,"dateFormat"));var chr=String.fromCharCode(event.charCode==undefined?event.keyCode:event.charCode);return event.ctrlKey||(chr<" "||!chars||chars.indexOf(chr)>-1)}},_showDatepicker:function(input){input=input.target||input;if(input.nodeName.toLowerCase()!="input"){input=$("input",input.parentNode)[0]}if($.datepicker._isDisabledDatepicker(input)||$.datepicker._lastInput==input){return}var inst=$.datepicker._getInst(input);var beforeShow=$.datepicker._get(inst,"beforeShow");extendRemove(inst.settings,(beforeShow?beforeShow.apply(input,[input,inst]):{}));$.datepicker._hideDatepicker(null,"");$.datepicker._lastInput=input;$.datepicker._setDateFromField(inst);if($.datepicker._inDialog){input.value=""}if(!$.datepicker._pos){$.datepicker._pos=$.datepicker._findPos(input);$.datepicker._pos[1]+=input.offsetHeight}var isFixed=false;$(input).parents().each(function(){isFixed|=$(this).css("position")=="fixed";return !isFixed});if(isFixed&&$.browser.opera){$.datepicker._pos[0]-=document.documentElement.scrollLeft;$.datepicker._pos[1]-=document.documentElement.scrollTop}var offset={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null;inst.rangeStart=null;inst.dpDiv.css({position:"absolute",display:"block",top:"-1000px"});$.datepicker._updateDatepicker(inst);offset=$.datepicker._checkOffset(inst,offset,isFixed);inst.dpDiv.css({position:($.datepicker._inDialog&&$.blockUI?"static":(isFixed?"fixed":"absolute")),display:"none",left:offset.left+"px",top:offset.top+"px"});if(!inst.inline){var showAnim=$.datepicker._get(inst,"showAnim")||"show";var duration=$.datepicker._get(inst,"duration");var postProcess=function(){$.datepicker._datepickerShowing=true;if($.browser.msie&&parseInt($.browser.version,10)<7){$("iframe.ui-datepicker-cover").css({width:inst.dpDiv.width()+4,height:inst.dpDiv.height()+4})}};if($.effects&&$.effects[showAnim]){inst.dpDiv.show(showAnim,$.datepicker._get(inst,"showOptions"),duration,postProcess)}else{inst.dpDiv[showAnim](duration,postProcess)}if(duration==""){postProcess()}if(inst.input[0].type!="hidden"){inst.input[0].focus()}$.datepicker._curInst=inst}},_updateDatepicker:function(inst){var dims={width:inst.dpDiv.width()+4,height:inst.dpDiv.height()+4};var self=this;inst.dpDiv.empty().append(this._generateHTML(inst)).find("iframe.ui-datepicker-cover").css({width:dims.width,height:dims.height}).end().find("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a").bind("mouseout",function(){$(this).removeClass("ui-state-hover");if(this.className.indexOf("ui-datepicker-prev")!=-1){$(this).removeClass("ui-datepicker-prev-hover")}if(this.className.indexOf("ui-datepicker-next")!=-1){$(this).removeClass("ui-datepicker-next-hover")}}).bind("mouseover",function(){if(!self._isDisabledDatepicker(inst.inline?inst.dpDiv.parent()[0]:inst.input[0])){$(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover");$(this).addClass("ui-state-hover");if(this.className.indexOf("ui-datepicker-prev")!=-1){$(this).addClass("ui-datepicker-prev-hover")}if(this.className.indexOf("ui-datepicker-next")!=-1){$(this).addClass("ui-datepicker-next-hover")}}}).end().find("."+this._dayOverClass+" a").trigger("mouseover").end();var numMonths=this._getNumberOfMonths(inst);var cols=numMonths[1];var width=17;if(cols>1){inst.dpDiv.addClass("ui-datepicker-multi-"+cols).css("width",(width*cols)+"em")}else{inst.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("")}inst.dpDiv[(numMonths[0]!=1||numMonths[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi");inst.dpDiv[(this._get(inst,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl");if(inst.input&&inst.input[0].type!="hidden"&&inst==$.datepicker._curInst){$(inst.input[0]).focus()}},_checkOffset:function(inst,offset,isFixed){var dpWidth=inst.dpDiv.outerWidth();var dpHeight=inst.dpDiv.outerHeight();var inputWidth=inst.input?inst.input.outerWidth():0;var inputHeight=inst.input?inst.input.outerHeight():0;var viewWidth=(window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth)+$(document).scrollLeft();var viewHeight=(window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight)+$(document).scrollTop();offset.left-=(this._get(inst,"isRTL")?(dpWidth-inputWidth):0);offset.left-=(isFixed&&offset.left==inst.input.offset().left)?$(document).scrollLeft():0;offset.top-=(isFixed&&offset.top==(inst.input.offset().top+inputHeight))?$(document).scrollTop():0;offset.left-=(offset.left+dpWidth>viewWidth&&viewWidth>dpWidth)?Math.abs(offset.left+dpWidth-viewWidth):0;offset.top-=(offset.top+dpHeight>viewHeight&&viewHeight>dpHeight)?Math.abs(offset.top+dpHeight+inputHeight*2-viewHeight):0;return offset},_findPos:function(obj){while(obj&&(obj.type=="hidden"||obj.nodeType!=1)){obj=obj.nextSibling}var position=$(obj).offset();return[position.left,position.top]},_hideDatepicker:function(input,duration){var inst=this._curInst;if(!inst||(input&&inst!=$.data(input,PROP_NAME))){return}if(inst.stayOpen){this._selectDate("#"+inst.id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear))}inst.stayOpen=false;if(this._datepickerShowing){duration=(duration!=null?duration:this._get(inst,"duration"));var showAnim=this._get(inst,"showAnim");var postProcess=function(){$.datepicker._tidyDialog(inst)};if(duration!=""&&$.effects&&$.effects[showAnim]){inst.dpDiv.hide(showAnim,$.datepicker._get(inst,"showOptions"),duration,postProcess)}else{inst.dpDiv[(duration==""?"hide":(showAnim=="slideDown"?"slideUp":(showAnim=="fadeIn"?"fadeOut":"hide")))](duration,postProcess)}if(duration==""){this._tidyDialog(inst)}var onClose=this._get(inst,"onClose");if(onClose){onClose.apply((inst.input?inst.input[0]:null),[(inst.input?inst.input.val():""),inst])}this._datepickerShowing=false;this._lastInput=null;if(this._inDialog){this._dialogInput.css({position:"absolute",left:"0",top:"-100px"});if($.blockUI){$.unblockUI();$("body").append(this.dpDiv)}}this._inDialog=false}this._curInst=null},_tidyDialog:function(inst){inst.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(event){if(!$.datepicker._curInst){return}var $target=$(event.target);if(($target.parents("#"+$.datepicker._mainDivId).length==0)&&!$target.hasClass($.datepicker.markerClassName)&&!$target.hasClass($.datepicker._triggerClass)&&$.datepicker._datepickerShowing&&!($.datepicker._inDialog&&$.blockUI)){$.datepicker._hideDatepicker(null,"")}},_adjustDate:function(id,offset,period){var target=$(id);var inst=this._getInst(target[0]);if(this._isDisabledDatepicker(target[0])){return}this._adjustInstDate(inst,offset+(period=="M"?this._get(inst,"showCurrentAtPos"):0),period);this._updateDatepicker(inst)},_gotoToday:function(id){var target=$(id);var inst=this._getInst(target[0]);if(this._get(inst,"gotoCurrent")&&inst.currentDay){inst.selectedDay=inst.currentDay;inst.drawMonth=inst.selectedMonth=inst.currentMonth;inst.drawYear=inst.selectedYear=inst.currentYear}else{var date=new Date();inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear()}this._notifyChange(inst);this._adjustDate(target)},_selectMonthYear:function(id,select,period){var target=$(id);var inst=this._getInst(target[0]);inst._selectingMonthYear=false;inst["selected"+(period=="M"?"Month":"Year")]=inst["draw"+(period=="M"?"Month":"Year")]=parseInt(select.options[select.selectedIndex].value,10);this._notifyChange(inst);this._adjustDate(target)},_clickMonthYear:function(id){var target=$(id);var inst=this._getInst(target[0]);if(inst.input&&inst._selectingMonthYear&&!$.browser.msie){inst.input[0].focus()}inst._selectingMonthYear=!inst._selectingMonthYear},_selectDay:function(id,month,year,td){var target=$(id);if($(td).hasClass(this._unselectableClass)||this._isDisabledDatepicker(target[0])){return}var inst=this._getInst(target[0]);inst.selectedDay=inst.currentDay=$("a",td).html();inst.selectedMonth=inst.currentMonth=month;inst.selectedYear=inst.currentYear=year;if(inst.stayOpen){inst.endDay=inst.endMonth=inst.endYear=null}this._selectDate(id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear));if(inst.stayOpen){inst.rangeStart=this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay));this._updateDatepicker(inst)}},_clearDate:function(id){var target=$(id);var inst=this._getInst(target[0]);inst.stayOpen=false;inst.endDay=inst.endMonth=inst.endYear=inst.rangeStart=null;this._selectDate(target,"")},_selectDate:function(id,dateStr){var target=$(id);var inst=this._getInst(target[0]);dateStr=(dateStr!=null?dateStr:this._formatDate(inst));if(inst.input){inst.input.val(dateStr)}this._updateAlternate(inst);var onSelect=this._get(inst,"onSelect");if(onSelect){onSelect.apply((inst.input?inst.input[0]:null),[dateStr,inst])}else{if(inst.input){inst.input.trigger("change")}}if(inst.inline){this._updateDatepicker(inst)}else{if(!inst.stayOpen){this._hideDatepicker(null,this._get(inst,"duration"));this._lastInput=inst.input[0];if(typeof(inst.input[0])!="object"){inst.input[0].focus()}this._lastInput=null}}},_updateAlternate:function(inst){var altField=this._get(inst,"altField");if(altField){var altFormat=this._get(inst,"altFormat")||this._get(inst,"dateFormat");var date=this._getDate(inst);dateStr=this.formatDate(altFormat,date,this._getFormatConfig(inst));$(altField).each(function(){$(this).val(dateStr)})}},noWeekends:function(date){var day=date.getDay();return[(day>0&&day<6),""]},iso8601Week:function(date){var checkDate=new Date(date.getFullYear(),date.getMonth(),date.getDate());var firstMon=new Date(checkDate.getFullYear(),1-1,4);var firstDay=firstMon.getDay()||7;firstMon.setDate(firstMon.getDate()+1-firstDay);if(firstDay<4&&checkDate<firstMon){checkDate.setDate(checkDate.getDate()-3);return $.datepicker.iso8601Week(checkDate)}else{if(checkDate>new Date(checkDate.getFullYear(),12-1,28)){firstDay=new Date(checkDate.getFullYear()+1,1-1,4).getDay()||7;if(firstDay>4&&(checkDate.getDay()||7)<firstDay-3){return 1}}}return Math.floor(((checkDate-firstMon)/86400000)/7)+1},parseDate:function(format,value,settings){if(format==null||value==null){throw"Invalid arguments"}value=(typeof value=="object"?value.toString():value+"");if(value==""){return null}var shortYearCutoff=(settings?settings.shortYearCutoff:null)||this._defaults.shortYearCutoff;var dayNamesShort=(settings?settings.dayNamesShort:null)||this._defaults.dayNamesShort;var dayNames=(settings?settings.dayNames:null)||this._defaults.dayNames;var monthNamesShort=(settings?settings.monthNamesShort:null)||this._defaults.monthNamesShort;var monthNames=(settings?settings.monthNames:null)||this._defaults.monthNames;var year=-1;var month=-1;var day=-1;var doy=-1;var literal=false;var lookAhead=function(match){var matches=(iFormat+1<format.length&&format.charAt(iFormat+1)==match);if(matches){iFormat++}return matches};var getNumber=function(match){lookAhead(match);var origSize=(match=="@"?14:(match=="y"?4:(match=="o"?3:2)));var size=origSize;var num=0;while(size>0&&iValue<value.length&&value.charAt(iValue)>="0"&&value.charAt(iValue)<="9"){num=num*10+parseInt(value.charAt(iValue++),10);size--}if(size==origSize){throw"Missing number at position "+iValue}return num};var getName=function(match,shortNames,longNames){var names=(lookAhead(match)?longNames:shortNames);var size=0;for(var j=0;j<names.length;j++){size=Math.max(size,names[j].length)}var name="";var iInit=iValue;while(size>0&&iValue<value.length){name+=value.charAt(iValue++);for(var i=0;i<names.length;i++){if(name==names[i]){return i+1}}size--}throw"Unknown name at position "+iInit};var checkLiteral=function(){if(value.charAt(iValue)!=format.charAt(iFormat)){throw"Unexpected literal at position "+iValue}iValue++};var iValue=0;for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{checkLiteral()}}else{switch(format.charAt(iFormat)){case"d":day=getNumber("d");break;case"D":getName("D",dayNamesShort,dayNames);break;case"o":doy=getNumber("o");break;case"m":month=getNumber("m");break;case"M":month=getName("M",monthNamesShort,monthNames);break;case"y":year=getNumber("y");break;case"@":var date=new Date(getNumber("@"));year=date.getFullYear();month=date.getMonth()+1;day=date.getDate();break;case"'":if(lookAhead("'")){checkLiteral()}else{literal=true}break;default:checkLiteral()}}}if(year==-1){year=new Date().getFullYear()}else{if(year<100){year+=new Date().getFullYear()-new Date().getFullYear()%100+(year<=shortYearCutoff?0:-100)}}if(doy>-1){month=1;day=doy;do{var dim=this._getDaysInMonth(year,month-1);if(day<=dim){break}month++;day-=dim}while(true)}var date=this._daylightSavingAdjust(new Date(year,month-1,day));if(date.getFullYear()!=year||date.getMonth()+1!=month||date.getDate()!=day){throw"Invalid date"}return date},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TIMESTAMP:"@",W3C:"yy-mm-dd",formatDate:function(format,date,settings){if(!date){return""}var dayNamesShort=(settings?settings.dayNamesShort:null)||this._defaults.dayNamesShort;var dayNames=(settings?settings.dayNames:null)||this._defaults.dayNames;var monthNamesShort=(settings?settings.monthNamesShort:null)||this._defaults.monthNamesShort;var monthNames=(settings?settings.monthNames:null)||this._defaults.monthNames;var lookAhead=function(match){var matches=(iFormat+1<format.length&&format.charAt(iFormat+1)==match);if(matches){iFormat++}return matches};var formatNumber=function(match,value,len){var num=""+value;if(lookAhead(match)){while(num.length<len){num="0"+num}}return num};var formatName=function(match,value,shortNames,longNames){return(lookAhead(match)?longNames[value]:shortNames[value])};var output="";var literal=false;if(date){for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{output+=format.charAt(iFormat)}}else{switch(format.charAt(iFormat)){case"d":output+=formatNumber("d",date.getDate(),2);break;case"D":output+=formatName("D",date.getDay(),dayNamesShort,dayNames);break;case"o":var doy=date.getDate();for(var m=date.getMonth()-1;m>=0;m--){doy+=this._getDaysInMonth(date.getFullYear(),m)}output+=formatNumber("o",doy,3);break;case"m":output+=formatNumber("m",date.getMonth()+1,2);break;case"M":output+=formatName("M",date.getMonth(),monthNamesShort,monthNames);break;case"y":output+=(lookAhead("y")?date.getFullYear():(date.getYear()%100<10?"0":"")+date.getYear()%100);break;case"@":output+=date.getTime();break;case"'":if(lookAhead("'")){output+="'"}else{literal=true}break;default:output+=format.charAt(iFormat)}}}}return output},_possibleChars:function(format){var chars="";var literal=false;for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{chars+=format.charAt(iFormat)}}else{switch(format.charAt(iFormat)){case"d":case"m":case"y":case"@":chars+="0123456789";break;case"D":case"M":return null;case"'":if(lookAhead("'")){chars+="'"}else{literal=true}break;default:chars+=format.charAt(iFormat)}}}return chars},_get:function(inst,name){return inst.settings[name]!==undefined?inst.settings[name]:this._defaults[name]},_setDateFromField:function(inst){var dateFormat=this._get(inst,"dateFormat");var dates=inst.input?inst.input.val():null;inst.endDay=inst.endMonth=inst.endYear=null;var date=defaultDate=this._getDefaultDate(inst);var settings=this._getFormatConfig(inst);try{date=this.parseDate(dateFormat,dates,settings)||defaultDate}catch(event){this.log(event);date=defaultDate}inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear();inst.currentDay=(dates?date.getDate():0);inst.currentMonth=(dates?date.getMonth():0);inst.currentYear=(dates?date.getFullYear():0);this._adjustInstDate(inst)},_getDefaultDate:function(inst){var date=this._determineDate(this._get(inst,"defaultDate"),new Date());var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");date=(minDate&&date<minDate?minDate:date);date=(maxDate&&date>maxDate?maxDate:date);return date},_determineDate:function(date,defaultDate){var offsetNumeric=function(offset){var date=new Date();date.setDate(date.getDate()+offset);return date};var offsetString=function(offset,getDaysInMonth){var date=new Date();var year=date.getFullYear();var month=date.getMonth();var day=date.getDate();var pattern=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g;var matches=pattern.exec(offset);while(matches){switch(matches[2]||"d"){case"d":case"D":day+=parseInt(matches[1],10);break;case"w":case"W":day+=parseInt(matches[1],10)*7;break;case"m":case"M":month+=parseInt(matches[1],10);day=Math.min(day,getDaysInMonth(year,month));break;case"y":case"Y":year+=parseInt(matches[1],10);day=Math.min(day,getDaysInMonth(year,month));break}matches=pattern.exec(offset)}return new Date(year,month,day)};date=(date==null?defaultDate:(typeof date=="string"?offsetString(date,this._getDaysInMonth):(typeof date=="number"?(isNaN(date)?defaultDate:offsetNumeric(date)):date)));date=(date&&date.toString()=="Invalid Date"?defaultDate:date);if(date){date.setHours(0);date.setMinutes(0);date.setSeconds(0);date.setMilliseconds(0)}return this._daylightSavingAdjust(date)},_daylightSavingAdjust:function(date){if(!date){return null}date.setHours(date.getHours()>12?date.getHours()+2:0);return date},_setDate:function(inst,date,endDate){var clear=!(date);var origMonth=inst.selectedMonth;var origYear=inst.selectedYear;date=this._determineDate(date,new Date());inst.selectedDay=inst.currentDay=date.getDate();inst.drawMonth=inst.selectedMonth=inst.currentMonth=date.getMonth();inst.drawYear=inst.selectedYear=inst.currentYear=date.getFullYear();if(origMonth!=inst.selectedMonth||origYear!=inst.selectedYear){this._notifyChange(inst)}this._adjustInstDate(inst);if(inst.input){inst.input.val(clear?"":this._formatDate(inst))}},_getDate:function(inst){var startDate=(!inst.currentYear||(inst.input&&inst.input.val()=="")?null:this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));return startDate},_generateHTML:function(inst){var today=new Date();today=this._daylightSavingAdjust(new Date(today.getFullYear(),today.getMonth(),today.getDate()));var isRTL=this._get(inst,"isRTL");var showButtonPanel=this._get(inst,"showButtonPanel");var hideIfNoPrevNext=this._get(inst,"hideIfNoPrevNext");var navigationAsDateFormat=this._get(inst,"navigationAsDateFormat");var numMonths=this._getNumberOfMonths(inst);var showCurrentAtPos=this._get(inst,"showCurrentAtPos");var stepMonths=this._get(inst,"stepMonths");var stepBigMonths=this._get(inst,"stepBigMonths");var isMultiMonth=(numMonths[0]!=1||numMonths[1]!=1);var currentDate=this._daylightSavingAdjust((!inst.currentDay?new Date(9999,9,9):new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");var drawMonth=inst.drawMonth-showCurrentAtPos;var drawYear=inst.drawYear;if(drawMonth<0){drawMonth+=12;drawYear--}if(maxDate){var maxDraw=this._daylightSavingAdjust(new Date(maxDate.getFullYear(),maxDate.getMonth()-numMonths[1]+1,maxDate.getDate()));maxDraw=(minDate&&maxDraw<minDate?minDate:maxDraw);while(this._daylightSavingAdjust(new Date(drawYear,drawMonth,1))>maxDraw){drawMonth--;if(drawMonth<0){drawMonth=11;drawYear--}}}inst.drawMonth=drawMonth;inst.drawYear=drawYear;var prevText=this._get(inst,"prevText");prevText=(!navigationAsDateFormat?prevText:this.formatDate(prevText,this._daylightSavingAdjust(new Date(drawYear,drawMonth-stepMonths,1)),this._getFormatConfig(inst)));var prev=(this._canAdjustMonth(inst,-1,drawYear,drawMonth)?'<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery.datepicker._adjustDate(\'#'+inst.id+"', -"+stepMonths+", 'M');\" title=\""+prevText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"e":"w")+'">'+prevText+"</span></a>":(hideIfNoPrevNext?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+prevText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"e":"w")+'">'+prevText+"</span></a>"));var nextText=this._get(inst,"nextText");nextText=(!navigationAsDateFormat?nextText:this.formatDate(nextText,this._daylightSavingAdjust(new Date(drawYear,drawMonth+stepMonths,1)),this._getFormatConfig(inst)));var next=(this._canAdjustMonth(inst,+1,drawYear,drawMonth)?'<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery.datepicker._adjustDate(\'#'+inst.id+"', +"+stepMonths+", 'M');\" title=\""+nextText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"w":"e")+'">'+nextText+"</span></a>":(hideIfNoPrevNext?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+nextText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"w":"e")+'">'+nextText+"</span></a>"));var currentText=this._get(inst,"currentText");var gotoDate=(this._get(inst,"gotoCurrent")&&inst.currentDay?currentDate:today);currentText=(!navigationAsDateFormat?currentText:this.formatDate(currentText,gotoDate,this._getFormatConfig(inst)));var controls=(!inst.inline?'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery.datepicker._hideDatepicker();">'+this._get(inst,"closeText")+"</button>":"");var buttonPanel=(showButtonPanel)?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(isRTL?controls:"")+(this._isInRange(inst,gotoDate)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery.datepicker._gotoToday(\'#'+inst.id+"');\">"+currentText+"</button>":"")+(isRTL?"":controls)+"</div>":"";var firstDay=parseInt(this._get(inst,"firstDay"),10);firstDay=(isNaN(firstDay)?0:firstDay);var dayNames=this._get(inst,"dayNames");var dayNamesShort=this._get(inst,"dayNamesShort");var dayNamesMin=this._get(inst,"dayNamesMin");var monthNames=this._get(inst,"monthNames");var monthNamesShort=this._get(inst,"monthNamesShort");var beforeShowDay=this._get(inst,"beforeShowDay");var showOtherMonths=this._get(inst,"showOtherMonths");var calculateWeek=this._get(inst,"calculateWeek")||this.iso8601Week;var endDate=inst.endDay?this._daylightSavingAdjust(new Date(inst.endYear,inst.endMonth,inst.endDay)):currentDate;var defaultDate=this._getDefaultDate(inst);var html="";for(var row=0;row<numMonths[0];row++){var group="";for(var col=0;col<numMonths[1];col++){var selectedDate=this._daylightSavingAdjust(new Date(drawYear,drawMonth,inst.selectedDay));var cornerClass=" ui-corner-all";var calender="";if(isMultiMonth){calender+='<div class="ui-datepicker-group ui-datepicker-group-';switch(col){case 0:calender+="first";cornerClass=" ui-corner-"+(isRTL?"right":"left");break;case numMonths[1]-1:calender+="last";cornerClass=" ui-corner-"+(isRTL?"left":"right");break;default:calender+="middle";cornerClass="";break}calender+='">'}calender+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+cornerClass+'">'+(/all|left/.test(cornerClass)&&row==0?(isRTL?next:prev):"")+(/all|right/.test(cornerClass)&&row==0?(isRTL?prev:next):"")+this._generateMonthYearHeader(inst,drawMonth,drawYear,minDate,maxDate,selectedDate,row>0||col>0,monthNames,monthNamesShort)+'</div><table class="ui-datepicker-calendar"><thead><tr>';var thead="";for(var dow=0;dow<7;dow++){var day=(dow+firstDay)%7;thead+="<th"+((dow+firstDay+6)%7>=5?' class="ui-datepicker-week-end"':"")+'><span title="'+dayNames[day]+'">'+dayNamesMin[day]+"</span></th>"}calender+=thead+"</tr></thead><tbody>";var daysInMonth=this._getDaysInMonth(drawYear,drawMonth);if(drawYear==inst.selectedYear&&drawMonth==inst.selectedMonth){inst.selectedDay=Math.min(inst.selectedDay,daysInMonth)}var leadDays=(this._getFirstDayOfMonth(drawYear,drawMonth)-firstDay+7)%7;var numRows=(isMultiMonth?6:Math.ceil((leadDays+daysInMonth)/7));var printDate=this._daylightSavingAdjust(new Date(drawYear,drawMonth,1-leadDays));for(var dRow=0;dRow<numRows;dRow++){calender+="<tr>";var tbody="";for(var dow=0;dow<7;dow++){var daySettings=(beforeShowDay?beforeShowDay.apply((inst.input?inst.input[0]:null),[printDate]):[true,""]);var otherMonth=(printDate.getMonth()!=drawMonth);var unselectable=otherMonth||!daySettings[0]||(minDate&&printDate<minDate)||(maxDate&&printDate>maxDate);tbody+='<td class="'+((dow+firstDay+6)%7>=5?" ui-datepicker-week-end":"")+(otherMonth?" ui-datepicker-other-month":"")+((printDate.getTime()==selectedDate.getTime()&&drawMonth==inst.selectedMonth&&inst._keyEvent)||(defaultDate.getTime()==printDate.getTime()&&defaultDate.getTime()==selectedDate.getTime())?" "+this._dayOverClass:"")+(unselectable?" "+this._unselectableClass+" ui-state-disabled":"")+(otherMonth&&!showOtherMonths?"":" "+daySettings[1]+(printDate.getTime()>=currentDate.getTime()&&printDate.getTime()<=endDate.getTime()?" "+this._currentClass:"")+(printDate.getTime()==today.getTime()?" ui-datepicker-today":""))+'"'+((!otherMonth||showOtherMonths)&&daySettings[2]?' title="'+daySettings[2]+'"':"")+(unselectable?"":" onclick=\"DP_jQuery.datepicker._selectDay('#"+inst.id+"',"+drawMonth+","+drawYear+', this);return false;"')+">"+(otherMonth?(showOtherMonths?printDate.getDate():"&#xa0;"):(unselectable?'<span class="ui-state-default">'+printDate.getDate()+"</span>":'<a class="ui-state-default'+(printDate.getTime()==today.getTime()?" ui-state-highlight":"")+(printDate.getTime()>=currentDate.getTime()&&printDate.getTime()<=endDate.getTime()?" ui-state-active":"")+'" href="#">'+printDate.getDate()+"</a>"))+"</td>";printDate.setDate(printDate.getDate()+1);printDate=this._daylightSavingAdjust(printDate)}calender+=tbody+"</tr>"}drawMonth++;if(drawMonth>11){drawMonth=0;drawYear++}calender+="</tbody></table>"+(isMultiMonth?"</div>"+((numMonths[0]>0&&col==numMonths[1]-1)?'<div class="ui-datepicker-row-break"></div>':""):"");group+=calender}html+=group}html+=buttonPanel+($.browser.msie&&parseInt($.browser.version,10)<7&&!inst.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':"");inst._keyEvent=false;return html},_generateMonthYearHeader:function(inst,drawMonth,drawYear,minDate,maxDate,selectedDate,secondary,monthNames,monthNamesShort){minDate=(inst.rangeStart&&minDate&&selectedDate<minDate?selectedDate:minDate);var changeMonth=this._get(inst,"changeMonth");var changeYear=this._get(inst,"changeYear");var showMonthAfterYear=this._get(inst,"showMonthAfterYear");var html='<div class="ui-datepicker-title">';var monthHtml="";if(secondary||!changeMonth){monthHtml+='<span class="ui-datepicker-month">'+monthNames[drawMonth]+"</span> "}else{var inMinYear=(minDate&&minDate.getFullYear()==drawYear);var inMaxYear=(maxDate&&maxDate.getFullYear()==drawYear);monthHtml+='<select class="ui-datepicker-month" onchange="DP_jQuery.datepicker._selectMonthYear(\'#'+inst.id+"', this, 'M');\" onclick=\"DP_jQuery.datepicker._clickMonthYear('#"+inst.id+"');\">";for(var month=0;month<12;month++){if((!inMinYear||month>=minDate.getMonth())&&(!inMaxYear||month<=maxDate.getMonth())){monthHtml+='<option value="'+month+'"'+(month==drawMonth?' selected="selected"':"")+">"+monthNamesShort[month]+"</option>"}}monthHtml+="</select>"}if(!showMonthAfterYear){html+=monthHtml+((secondary||changeMonth||changeYear)&&(!(changeMonth&&changeYear))?"&#xa0;":"")}if(secondary||!changeYear){html+='<span class="ui-datepicker-year">'+drawYear+"</span>"}else{var years=this._get(inst,"yearRange").split(":");var year=0;var endYear=0;if(years.length!=2){year=drawYear-10;endYear=drawYear+10}else{if(years[0].charAt(0)=="+"||years[0].charAt(0)=="-"){year=drawYear+parseInt(years[0],10);endYear=drawYear+parseInt(years[1],10)}else{year=parseInt(years[0],10);endYear=parseInt(years[1],10)}}year=(minDate?Math.max(year,minDate.getFullYear()):year);endYear=(maxDate?Math.min(endYear,maxDate.getFullYear()):endYear);html+='<select class="ui-datepicker-year" onchange="DP_jQuery.datepicker._selectMonthYear(\'#'+inst.id+"', this, 'Y');\" onclick=\"DP_jQuery.datepicker._clickMonthYear('#"+inst.id+"');\">";for(;year<=endYear;year++){html+='<option value="'+year+'"'+(year==drawYear?' selected="selected"':"")+">"+year+"</option>"}html+="</select>"}if(showMonthAfterYear){html+=(secondary||changeMonth||changeYear?"&#xa0;":"")+monthHtml}html+="</div>";return html},_adjustInstDate:function(inst,offset,period){var year=inst.drawYear+(period=="Y"?offset:0);var month=inst.drawMonth+(period=="M"?offset:0);var day=Math.min(inst.selectedDay,this._getDaysInMonth(year,month))+(period=="D"?offset:0);var date=this._daylightSavingAdjust(new Date(year,month,day));var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");date=(minDate&&date<minDate?minDate:date);date=(maxDate&&date>maxDate?maxDate:date);inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear();if(period=="M"||period=="Y"){this._notifyChange(inst)}},_notifyChange:function(inst){var onChange=this._get(inst,"onChangeMonthYear");if(onChange){onChange.apply((inst.input?inst.input[0]:null),[inst.selectedYear,inst.selectedMonth+1,inst])}},_getNumberOfMonths:function(inst){var numMonths=this._get(inst,"numberOfMonths");return(numMonths==null?[1,1]:(typeof numMonths=="number"?[1,numMonths]:numMonths))},_getMinMaxDate:function(inst,minMax,checkRange){var date=this._determineDate(this._get(inst,minMax+"Date"),null);return(!checkRange||!inst.rangeStart?date:(!date||inst.rangeStart>date?inst.rangeStart:date))},_getDaysInMonth:function(year,month){return 32-new Date(year,month,32).getDate()},_getFirstDayOfMonth:function(year,month){return new Date(year,month,1).getDay()},_canAdjustMonth:function(inst,offset,curYear,curMonth){var numMonths=this._getNumberOfMonths(inst);var date=this._daylightSavingAdjust(new Date(curYear,curMonth+(offset<0?offset:numMonths[1]),1));if(offset<0){date.setDate(this._getDaysInMonth(date.getFullYear(),date.getMonth()))}return this._isInRange(inst,date)},_isInRange:function(inst,date){var newMinDate=(!inst.rangeStart?null:this._daylightSavingAdjust(new Date(inst.selectedYear,inst.selectedMonth,inst.selectedDay)));newMinDate=(newMinDate&&inst.rangeStart<newMinDate?inst.rangeStart:newMinDate);var minDate=newMinDate||this._getMinMaxDate(inst,"min");var maxDate=this._getMinMaxDate(inst,"max");return((!minDate||date>=minDate)&&(!maxDate||date<=maxDate))},_getFormatConfig:function(inst){var shortYearCutoff=this._get(inst,"shortYearCutoff");shortYearCutoff=(typeof shortYearCutoff!="string"?shortYearCutoff:new Date().getFullYear()%100+parseInt(shortYearCutoff,10));return{shortYearCutoff:shortYearCutoff,dayNamesShort:this._get(inst,"dayNamesShort"),dayNames:this._get(inst,"dayNames"),monthNamesShort:this._get(inst,"monthNamesShort"),monthNames:this._get(inst,"monthNames")}},_formatDate:function(inst,day,month,year){if(!day){inst.currentDay=inst.selectedDay;inst.currentMonth=inst.selectedMonth;inst.currentYear=inst.selectedYear}var date=(day?(typeof day=="object"?day:this._daylightSavingAdjust(new Date(year,month,day))):this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));return this.formatDate(this._get(inst,"dateFormat"),date,this._getFormatConfig(inst))}});function extendRemove(target,props){$.extend(target,props);for(var name in props){if(props[name]==null||props[name]==undefined){target[name]=props[name]}}return target}function isArray(a){return(a&&(($.browser.safari&&typeof a=="object"&&a.length)||(a.constructor&&a.constructor.toString().match(/\Array\(\)/))))}$.fn.datepicker=function(options){if(!$.datepicker.initialized){$(document).mousedown($.datepicker._checkExternalClick).find("body").append($.datepicker.dpDiv);$.datepicker.initialized=true}var otherArgs=Array.prototype.slice.call(arguments,1);if(typeof options=="string"&&(options=="isDisabled"||options=="getDate")){return $.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this[0]].concat(otherArgs))}if(options=="option"&&arguments.length==2&&typeof arguments[1]=="string"){return $.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this[0]].concat(otherArgs))}return this.each(function(){typeof options=="string"?$.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this].concat(otherArgs)):$.datepicker._attachDatepicker(this,options)})};$.datepicker=new Datepicker();$.datepicker.initialized=false;$.datepicker.uuid=new Date().getTime();$.datepicker.version="1.7.3";window.DP_jQuery=$})(jQuery);;/*
 * jQuery UI Effects 1.7.3
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/
 */jQuery.effects||(function(d){d.effects={version:"1.7.3",save:function(g,h){for(var f=0;f<h.length;f++){if(h[f]!==null){g.data("ec.storage."+h[f],g[0].style[h[f]])}}},restore:function(g,h){for(var f=0;f<h.length;f++){if(h[f]!==null){g.css(h[f],g.data("ec.storage."+h[f]))}}},setMode:function(f,g){if(g=="toggle"){g=f.is(":hidden")?"show":"hide"}return g},getBaseline:function(g,h){var i,f;switch(g[0]){case"top":i=0;break;case"middle":i=0.5;break;case"bottom":i=1;break;default:i=g[0]/h.height}switch(g[1]){case"left":f=0;break;case"center":f=0.5;break;case"right":f=1;break;default:f=g[1]/h.width}return{x:f,y:i}},createWrapper:function(f){if(f.parent().is(".ui-effects-wrapper")){return f.parent()}var g={width:f.outerWidth(true),height:f.outerHeight(true),"float":f.css("float")};f.wrap('<div class="ui-effects-wrapper" style="font-size:100%;background:transparent;border:none;margin:0;padding:0"></div>');var j=f.parent();if(f.css("position")=="static"){j.css({position:"relative"});f.css({position:"relative"})}else{var i=f.css("top");if(isNaN(parseInt(i,10))){i="auto"}var h=f.css("left");if(isNaN(parseInt(h,10))){h="auto"}j.css({position:f.css("position"),top:i,left:h,zIndex:f.css("z-index")}).show();f.css({position:"relative",top:0,left:0})}j.css(g);return j},removeWrapper:function(f){if(f.parent().is(".ui-effects-wrapper")){return f.parent().replaceWith(f)}return f},setTransition:function(g,i,f,h){h=h||{};d.each(i,function(k,j){unit=g.cssUnit(j);if(unit[0]>0){h[j]=unit[0]*f+unit[1]}});return h},animateClass:function(h,i,k,j){var f=(typeof k=="function"?k:(j?j:null));var g=(typeof k=="string"?k:null);return this.each(function(){var q={};var o=d(this);var p=o.attr("style")||"";if(typeof p=="object"){p=p.cssText}if(h.toggle){o.hasClass(h.toggle)?h.remove=h.toggle:h.add=h.toggle}var l=d.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(h.add){o.addClass(h.add)}if(h.remove){o.removeClass(h.remove)}var m=d.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(h.add){o.removeClass(h.add)}if(h.remove){o.addClass(h.remove)}for(var r in m){if(typeof m[r]!="function"&&m[r]&&r.indexOf("Moz")==-1&&r.indexOf("length")==-1&&m[r]!=l[r]&&(r.match(/color/i)||(!r.match(/color/i)&&!isNaN(parseInt(m[r],10))))&&(l.position!="static"||(l.position=="static"&&!r.match(/left|top|bottom|right/)))){q[r]=m[r]}}o.animate(q,i,g,function(){if(typeof d(this).attr("style")=="object"){d(this).attr("style")["cssText"]="";d(this).attr("style")["cssText"]=p}else{d(this).attr("style",p)}if(h.add){d(this).addClass(h.add)}if(h.remove){d(this).removeClass(h.remove)}if(f){f.apply(this,arguments)}})})}};function c(g,f){var i=g[1]&&g[1].constructor==Object?g[1]:{};if(f){i.mode=f}var h=g[1]&&g[1].constructor!=Object?g[1]:(i.duration?i.duration:g[2]);h=d.fx.off?0:typeof h==="number"?h:d.fx.speeds[h]||d.fx.speeds._default;var j=i.callback||(d.isFunction(g[1])&&g[1])||(d.isFunction(g[2])&&g[2])||(d.isFunction(g[3])&&g[3]);return[g[0],i,h,j]}d.fn.extend({_show:d.fn.show,_hide:d.fn.hide,__toggle:d.fn.toggle,_addClass:d.fn.addClass,_removeClass:d.fn.removeClass,_toggleClass:d.fn.toggleClass,effect:function(g,f,h,i){return d.effects[g]?d.effects[g].call(this,{method:g,options:f||{},duration:h,callback:i}):null},show:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))){return this._show.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"show"))}},hide:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))){return this._hide.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"hide"))}},toggle:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))||(d.isFunction(arguments[0])||typeof arguments[0]=="boolean")){return this.__toggle.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"toggle"))}},addClass:function(g,f,i,h){return f?d.effects.animateClass.apply(this,[{add:g},f,i,h]):this._addClass(g)},removeClass:function(g,f,i,h){return f?d.effects.animateClass.apply(this,[{remove:g},f,i,h]):this._removeClass(g)},toggleClass:function(g,f,i,h){return((typeof f!=="boolean")&&f)?d.effects.animateClass.apply(this,[{toggle:g},f,i,h]):this._toggleClass(g,f)},morph:function(f,h,g,j,i){return d.effects.animateClass.apply(this,[{add:h,remove:f},g,j,i])},switchClass:function(){return this.morph.apply(this,arguments)},cssUnit:function(f){var g=this.css(f),h=[];d.each(["em","px","%","pt"],function(j,k){if(g.indexOf(k)>0){h=[parseFloat(g),k]}});return h}});d.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(g,f){d.fx.step[f]=function(h){if(h.state==0){h.start=e(h.elem,f);h.end=b(h.end)}h.elem.style[f]="rgb("+[Math.max(Math.min(parseInt((h.pos*(h.end[0]-h.start[0]))+h.start[0],10),255),0),Math.max(Math.min(parseInt((h.pos*(h.end[1]-h.start[1]))+h.start[1],10),255),0),Math.max(Math.min(parseInt((h.pos*(h.end[2]-h.start[2]))+h.start[2],10),255),0)].join(",")+")"}});function b(g){var f;if(g&&g.constructor==Array&&g.length==3){return g}if(f=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(g)){return[parseInt(f[1],10),parseInt(f[2],10),parseInt(f[3],10)]}if(f=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(g)){return[parseFloat(f[1])*2.55,parseFloat(f[2])*2.55,parseFloat(f[3])*2.55]}if(f=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(g)){return[parseInt(f[1],16),parseInt(f[2],16),parseInt(f[3],16)]}if(f=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(g)){return[parseInt(f[1]+f[1],16),parseInt(f[2]+f[2],16),parseInt(f[3]+f[3],16)]}if(f=/rgba\(0, 0, 0, 0\)/.exec(g)){return a.transparent}return a[d.trim(g).toLowerCase()]}function e(h,f){var g;do{g=d.curCSS(h,f);if(g!=""&&g!="transparent"||d.nodeName(h,"body")){break}f="backgroundColor"}while(h=h.parentNode);return b(g)}var a={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]};d.easing.jswing=d.easing.swing;d.extend(d.easing,{def:"easeOutQuad",swing:function(g,h,f,j,i){return d.easing[d.easing.def](g,h,f,j,i)},easeInQuad:function(g,h,f,j,i){return j*(h/=i)*h+f},easeOutQuad:function(g,h,f,j,i){return -j*(h/=i)*(h-2)+f},easeInOutQuad:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h+f}return -j/2*((--h)*(h-2)-1)+f},easeInCubic:function(g,h,f,j,i){return j*(h/=i)*h*h+f},easeOutCubic:function(g,h,f,j,i){return j*((h=h/i-1)*h*h+1)+f},easeInOutCubic:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h+f}return j/2*((h-=2)*h*h+2)+f},easeInQuart:function(g,h,f,j,i){return j*(h/=i)*h*h*h+f},easeOutQuart:function(g,h,f,j,i){return -j*((h=h/i-1)*h*h*h-1)+f},easeInOutQuart:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h*h+f}return -j/2*((h-=2)*h*h*h-2)+f},easeInQuint:function(g,h,f,j,i){return j*(h/=i)*h*h*h*h+f},easeOutQuint:function(g,h,f,j,i){return j*((h=h/i-1)*h*h*h*h+1)+f},easeInOutQuint:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h*h*h+f}return j/2*((h-=2)*h*h*h*h+2)+f},easeInSine:function(g,h,f,j,i){return -j*Math.cos(h/i*(Math.PI/2))+j+f},easeOutSine:function(g,h,f,j,i){return j*Math.sin(h/i*(Math.PI/2))+f},easeInOutSine:function(g,h,f,j,i){return -j/2*(Math.cos(Math.PI*h/i)-1)+f},easeInExpo:function(g,h,f,j,i){return(h==0)?f:j*Math.pow(2,10*(h/i-1))+f},easeOutExpo:function(g,h,f,j,i){return(h==i)?f+j:j*(-Math.pow(2,-10*h/i)+1)+f},easeInOutExpo:function(g,h,f,j,i){if(h==0){return f}if(h==i){return f+j}if((h/=i/2)<1){return j/2*Math.pow(2,10*(h-1))+f}return j/2*(-Math.pow(2,-10*--h)+2)+f},easeInCirc:function(g,h,f,j,i){return -j*(Math.sqrt(1-(h/=i)*h)-1)+f},easeOutCirc:function(g,h,f,j,i){return j*Math.sqrt(1-(h=h/i-1)*h)+f},easeInOutCirc:function(g,h,f,j,i){if((h/=i/2)<1){return -j/2*(Math.sqrt(1-h*h)-1)+f}return j/2*(Math.sqrt(1-(h-=2)*h)+1)+f},easeInElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l)==1){return f+m}if(!k){k=l*0.3}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}return -(h*Math.pow(2,10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k))+f},easeOutElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l)==1){return f+m}if(!k){k=l*0.3}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}return h*Math.pow(2,-10*i)*Math.sin((i*l-j)*(2*Math.PI)/k)+m+f},easeInOutElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l/2)==2){return f+m}if(!k){k=l*(0.3*1.5)}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}if(i<1){return -0.5*(h*Math.pow(2,10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k))+f}return h*Math.pow(2,-10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k)*0.5+m+f},easeInBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}return k*(h/=j)*h*((i+1)*h-i)+f},easeOutBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}return k*((h=h/j-1)*h*((i+1)*h+i)+1)+f},easeInOutBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}if((h/=j/2)<1){return k/2*(h*h*(((i*=(1.525))+1)*h-i))+f}return k/2*((h-=2)*h*(((i*=(1.525))+1)*h+i)+2)+f},easeInBounce:function(g,h,f,j,i){return j-d.easing.easeOutBounce(g,i-h,0,j,i)+f},easeOutBounce:function(g,h,f,j,i){if((h/=i)<(1/2.75)){return j*(7.5625*h*h)+f}else{if(h<(2/2.75)){return j*(7.5625*(h-=(1.5/2.75))*h+0.75)+f}else{if(h<(2.5/2.75)){return j*(7.5625*(h-=(2.25/2.75))*h+0.9375)+f}else{return j*(7.5625*(h-=(2.625/2.75))*h+0.984375)+f}}}},easeInOutBounce:function(g,h,f,j,i){if(h<i/2){return d.easing.easeInBounce(g,h*2,0,j,i)*0.5+f}return d.easing.easeOutBounce(g,h*2-i,0,j,i)*0.5+j*0.5+f}})})(jQuery);;/*
 * jQuery UI Effects Slide 1.7.3
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/Slide
 *
 * Depends:
 *	effects.core.js
 */(function(a){a.effects.slide=function(b){return this.queue(function(){var e=a(this),d=["position","top","left"];var i=a.effects.setMode(e,b.options.mode||"show");var h=b.options.direction||"left";a.effects.save(e,d);e.show();a.effects.createWrapper(e).css({overflow:"hidden"});var f=(h=="up"||h=="down")?"top":"left";var c=(h=="up"||h=="left")?"pos":"neg";var j=b.options.distance||(f=="top"?e.outerHeight({margin:true}):e.outerWidth({margin:true}));if(i=="show"){e.css(f,c=="pos"?-j:j)}var g={};g[f]=(i=="show"?(c=="pos"?"+=":"-="):(c=="pos"?"-=":"+="))+j;e.animate(g,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(i=="hide"){e.hide()}a.effects.restore(e,d);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}e.dequeue()}})})}})(jQuery);;;
/*
 * jQuery Nivo Slider v2.5.1
 * http://nivo.dev7studios.com
 *
 * Copyright 2011, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * March 2010
 */

(function($){var NivoSlider=function(element,options){var settings=$.extend({},$.fn.nivoSlider.defaults,options);var vars={currentSlide:0,currentImage:'',totalSlides:0,randAnim:'',running:false,paused:false,stop:false};var slider=$(element);slider.data('nivo:vars',vars);slider.css('position','relative');slider.addClass('nivoSlider');var kids=slider.children();kids.each(function(){var child=$(this);var link='';if(!child.is('img')){if(child.is('a')){child.addClass('nivo-imageLink');link=child;}
child=child.find('img:first');}
var childWidth=child.width();if(childWidth==0)childWidth=child.attr('width');var childHeight=child.height();if(childHeight==0)childHeight=child.attr('height');if(childWidth>slider.width()){slider.width(childWidth);}
if(childHeight>slider.height()){slider.height(childHeight);}
if(link!=''){link.css('display','none');}
child.css('display','none');vars.totalSlides++;});if(settings.startSlide>0){if(settings.startSlide>=vars.totalSlides)settings.startSlide=vars.totalSlides-1;vars.currentSlide=settings.startSlide;}
if($(kids[vars.currentSlide]).is('img')){vars.currentImage=$(kids[vars.currentSlide]);}else{vars.currentImage=$(kids[vars.currentSlide]).find('img:first');}
if($(kids[vars.currentSlide]).is('a')){$(kids[vars.currentSlide]).css('display','block');}
slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');slider.append($('<div class="nivo-caption"><p></p></div>').css({display:'none',opacity:settings.captionOpacity}));var processCaption=function(settings){var nivoCaption=$('.nivo-caption',slider);if(vars.currentImage.attr('title')!=''){var title=vars.currentImage.attr('title');if(title.substr(0,1)=='#')title=$(title).html();if(nivoCaption.css('display')=='block'){nivoCaption.find('p').fadeOut(settings.animSpeed,function(){$(this).html(title);$(this).fadeIn(settings.animSpeed);});}else{nivoCaption.find('p').html(title);}
nivoCaption.fadeIn(settings.animSpeed);}else{nivoCaption.fadeOut(settings.animSpeed);}}
processCaption(settings);var timer=0;if(!settings.manualAdvance&&kids.length>1){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);}
if(settings.directionNav){slider.append('<div class="nivo-directionNav"><a class="nivo-prevNav">'+settings.prevText+'</a><a class="nivo-nextNav">'+settings.nextText+'</a></div>');if(settings.directionNavHide){$('.nivo-directionNav',slider).hide();slider.hover(function(){$('.nivo-directionNav',slider).show();},function(){$('.nivo-directionNav',slider).hide();});}
$('a.nivo-prevNav',slider).live('click',function(){if(vars.running)return false;clearInterval(timer);timer='';vars.currentSlide-=2;nivoRun(slider,kids,settings,'prev');});$('a.nivo-nextNav',slider).live('click',function(){if(vars.running)return false;clearInterval(timer);timer='';nivoRun(slider,kids,settings,'next');});}
if(settings.controlNav){var nivoControl=$('<div class="nivo-controlNav"></div>');slider.append(nivoControl);for(var i=0;i<kids.length;i++){if(settings.controlNavThumbs){var child=kids.eq(i);if(!child.is('img')){child=child.find('img:first');}
if(settings.controlNavThumbsFromRel){nivoControl.append('<a class="nivo-control" rel="'+i+'"><img src="'+child.attr('rel')+'" alt="" /></a>');}else{nivoControl.append('<a class="nivo-control" rel="'+i+'"><img src="'+child.attr('src').replace(settings.controlNavThumbsSearch,settings.controlNavThumbsReplace)+'" alt="" /></a>');}}else{nivoControl.append('<a class="nivo-control" rel="'+i+'">'+(i+1)+'</a>');}}
$('.nivo-controlNav a:eq('+vars.currentSlide+')',slider).addClass('active');$('.nivo-controlNav a',slider).live('click',function(){if(vars.running)return false;if($(this).hasClass('active'))return false;clearInterval(timer);timer='';slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');vars.currentSlide=$(this).attr('rel')-1;nivoRun(slider,kids,settings,'control');});}
if(settings.keyboardNav){$(window).keypress(function(event){if(event.keyCode=='37'){if(vars.running)return false;clearInterval(timer);timer='';vars.currentSlide-=2;nivoRun(slider,kids,settings,'prev');}
if(event.keyCode=='39'){if(vars.running)return false;clearInterval(timer);timer='';nivoRun(slider,kids,settings,'next');}});}
if(settings.pauseOnHover){slider.hover(function(){vars.paused=true;clearInterval(timer);timer='';},function(){vars.paused=false;if(timer==''&&!settings.manualAdvance){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);}});}
slider.bind('nivo:animFinished',function(){vars.running=false;$(kids).each(function(){if($(this).is('a')){$(this).css('display','none');}});if($(kids[vars.currentSlide]).is('a')){$(kids[vars.currentSlide]).css('display','block');}
if(timer==''&&!vars.paused&&!settings.manualAdvance){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);}
settings.afterChange.call(this);});var createSlices=function(slider,settings,vars){for(var i=0;i<settings.slices;i++){var sliceWidth=Math.round(slider.width()/settings.slices);if(i==settings.slices-1){slider.append($('<div class="nivo-slice"></div>').css({left:(sliceWidth*i)+'px',width:(slider.width()-(sliceWidth*i))+'px',height:'0px',opacity:'0',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((sliceWidth+(i*sliceWidth))-sliceWidth)+'px 0%'}));}else{slider.append($('<div class="nivo-slice"></div>').css({left:(sliceWidth*i)+'px',width:sliceWidth+'px',height:'0px',opacity:'0',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((sliceWidth+(i*sliceWidth))-sliceWidth)+'px 0%'}));}}}
var createBoxes=function(slider,settings,vars){var boxWidth=Math.round(slider.width()/settings.boxCols);var boxHeight=Math.round(slider.height()/settings.boxRows);for(var rows=0;rows<settings.boxRows;rows++){for(var cols=0;cols<settings.boxCols;cols++){if(cols==settings.boxCols-1){slider.append($('<div class="nivo-box"></div>').css({opacity:0,left:(boxWidth*cols)+'px',top:(boxHeight*rows)+'px',width:(slider.width()-(boxWidth*cols))+'px',height:boxHeight+'px',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((boxWidth+(cols*boxWidth))-boxWidth)+'px -'+((boxHeight+(rows*boxHeight))-boxHeight)+'px'}));}else{slider.append($('<div class="nivo-box"></div>').css({opacity:0,left:(boxWidth*cols)+'px',top:(boxHeight*rows)+'px',width:boxWidth+'px',height:boxHeight+'px',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((boxWidth+(cols*boxWidth))-boxWidth)+'px -'+((boxHeight+(rows*boxHeight))-boxHeight)+'px'}));}}}}
var nivoRun=function(slider,kids,settings,nudge){var vars=slider.data('nivo:vars');if(vars&&(vars.currentSlide==vars.totalSlides-1)){settings.lastSlide.call(this);}
if((!vars||vars.stop)&&!nudge)return false;settings.beforeChange.call(this);if(!nudge){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}else{if(nudge=='prev'){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}
if(nudge=='next'){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}}
vars.currentSlide++;if(vars.currentSlide==vars.totalSlides){vars.currentSlide=0;settings.slideshowEnd.call(this);}
if(vars.currentSlide<0)vars.currentSlide=(vars.totalSlides-1);if($(kids[vars.currentSlide]).is('img')){vars.currentImage=$(kids[vars.currentSlide]);}else{vars.currentImage=$(kids[vars.currentSlide]).find('img:first');}
if(settings.controlNav){$('.nivo-controlNav a',slider).removeClass('active');$('.nivo-controlNav a:eq('+vars.currentSlide+')',slider).addClass('active');}
processCaption(settings);$('.nivo-slice',slider).remove();$('.nivo-box',slider).remove();if(settings.effect=='random'){var anims=new Array('sliceDownRight','sliceDownLeft','sliceUpRight','sliceUpLeft','sliceUpDown','sliceUpDownLeft','fold','fade','boxRandom','boxRain','boxRainReverse','boxRainGrow','boxRainGrowReverse');vars.randAnim=anims[Math.floor(Math.random()*(anims.length+1))];if(vars.randAnim==undefined)vars.randAnim='fade';}
if(settings.effect.indexOf(',')!=-1){var anims=settings.effect.split(',');vars.randAnim=anims[Math.floor(Math.random()*(anims.length))];if(vars.randAnim==undefined)vars.randAnim='fade';}
vars.running=true;if(settings.effect=='sliceDown'||settings.effect=='sliceDownRight'||vars.randAnim=='sliceDownRight'||settings.effect=='sliceDownLeft'||vars.randAnim=='sliceDownLeft'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;var slices=$('.nivo-slice',slider);if(settings.effect=='sliceDownLeft'||vars.randAnim=='sliceDownLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);slice.css({'top':'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=50;i++;});}
else if(settings.effect=='sliceUp'||settings.effect=='sliceUpRight'||vars.randAnim=='sliceUpRight'||settings.effect=='sliceUpLeft'||vars.randAnim=='sliceUpLeft'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;var slices=$('.nivo-slice',slider);if(settings.effect=='sliceUpLeft'||vars.randAnim=='sliceUpLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);slice.css({'bottom':'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=50;i++;});}
else if(settings.effect=='sliceUpDown'||settings.effect=='sliceUpDownRight'||vars.randAnim=='sliceUpDown'||settings.effect=='sliceUpDownLeft'||vars.randAnim=='sliceUpDownLeft'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;var v=0;var slices=$('.nivo-slice',slider);if(settings.effect=='sliceUpDownLeft'||vars.randAnim=='sliceUpDownLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);if(i==0){slice.css('top','0px');i++;}else{slice.css('bottom','0px');i=0;}
if(v==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=50;v++;});}
else if(settings.effect=='fold'||vars.randAnim=='fold'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;$('.nivo-slice',slider).each(function(){var slice=$(this);var origWidth=slice.width();slice.css({top:'0px',height:'100%',width:'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({width:origWidth,opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({width:origWidth,opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=50;i++;});}
else if(settings.effect=='fade'||vars.randAnim=='fade'){createSlices(slider,settings,vars);var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':slider.width()+'px'});firstSlice.animate({opacity:'1.0'},(settings.animSpeed*2),'',function(){slider.trigger('nivo:animFinished');});}
else if(settings.effect=='slideInRight'||vars.randAnim=='slideInRight'){createSlices(slider,settings,vars);var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':'0px','opacity':'1'});firstSlice.animate({width:slider.width()+'px'},(settings.animSpeed*2),'',function(){slider.trigger('nivo:animFinished');});}
else if(settings.effect=='slideInLeft'||vars.randAnim=='slideInLeft'){createSlices(slider,settings,vars);var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':'0px','opacity':'1','left':'','right':'0px'});firstSlice.animate({width:slider.width()+'px'},(settings.animSpeed*2),'',function(){firstSlice.css({'left':'0px','right':''});slider.trigger('nivo:animFinished');});}
else if(settings.effect=='boxRandom'||vars.randAnim=='boxRandom'){createBoxes(slider,settings,vars);var totalBoxes=settings.boxCols*settings.boxRows;var i=0;var timeBuff=0;var boxes=shuffle($('.nivo-box',slider));boxes.each(function(){var box=$(this);if(i==totalBoxes-1){setTimeout(function(){box.animate({opacity:'1'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){box.animate({opacity:'1'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=20;i++;});}
else if(settings.effect=='boxRain'||vars.randAnim=='boxRain'||settings.effect=='boxRainReverse'||vars.randAnim=='boxRainReverse'||settings.effect=='boxRainGrow'||vars.randAnim=='boxRainGrow'||settings.effect=='boxRainGrowReverse'||vars.randAnim=='boxRainGrowReverse'){createBoxes(slider,settings,vars);var totalBoxes=settings.boxCols*settings.boxRows;var i=0;var timeBuff=0;var rowIndex=0;var colIndex=0;var box2Darr=new Array();box2Darr[rowIndex]=new Array();var boxes=$('.nivo-box',slider);if(settings.effect=='boxRainReverse'||vars.randAnim=='boxRainReverse'||settings.effect=='boxRainGrowReverse'||vars.randAnim=='boxRainGrowReverse'){boxes=$('.nivo-box',slider)._reverse();}
boxes.each(function(){box2Darr[rowIndex][colIndex]=$(this);colIndex++;if(colIndex==settings.boxCols){rowIndex++;colIndex=0;box2Darr[rowIndex]=new Array();}});for(var cols=0;cols<(settings.boxCols*2);cols++){var prevCol=cols;for(var rows=0;rows<settings.boxRows;rows++){if(prevCol>=0&&prevCol<settings.boxCols){(function(row,col,time,i,totalBoxes){var box=$(box2Darr[row][col]);var w=box.width();var h=box.height();if(settings.effect=='boxRainGrow'||vars.randAnim=='boxRainGrow'||settings.effect=='boxRainGrowReverse'||vars.randAnim=='boxRainGrowReverse'){box.width(0).height(0);}
if(i==totalBoxes-1){setTimeout(function(){box.animate({opacity:'1',width:w,height:h},settings.animSpeed/1.3,'',function(){slider.trigger('nivo:animFinished');});},(100+time));}else{setTimeout(function(){box.animate({opacity:'1',width:w,height:h},settings.animSpeed/1.3);},(100+time));}})(rows,prevCol,timeBuff,i,totalBoxes);i++;}
prevCol--;}
timeBuff+=100;}}}
var shuffle=function(arr){for(var j,x,i=arr.length;i;j=parseInt(Math.random()*i),x=arr[--i],arr[i]=arr[j],arr[j]=x);return arr;}
var trace=function(msg){if(this.console&&typeof console.log!="undefined")
console.log(msg);}
this.stop=function(){if(!$(element).data('nivo:vars').stop){$(element).data('nivo:vars').stop=true;trace('Stop Slider');}}
this.start=function(){if($(element).data('nivo:vars').stop){$(element).data('nivo:vars').stop=false;trace('Start Slider');}}
settings.afterLoad.call(this);return this;};$.fn.nivoSlider=function(options){return this.each(function(key,value){var element=$(this);if(element.data('nivoslider'))return element.data('nivoslider');var nivoslider=new NivoSlider(this,options);element.data('nivoslider',nivoslider);});};$.fn.nivoSlider.defaults={effect:'random',slices:15,boxCols:8,boxRows:4,animSpeed:500,pauseTime:3000,startSlide:0,directionNav:true,directionNavHide:true,controlNav:true,controlNavThumbs:false,controlNavThumbsFromRel:false,controlNavThumbsSearch:'.jpg',controlNavThumbsReplace:'_thumb.jpg',keyboardNav:true,pauseOnHover:true,manualAdvance:false,captionOpacity:0.8,prevText:'Prev',nextText:'Next',beforeChange:function(){},afterChange:function(){},slideshowEnd:function(){},lastSlide:function(){},afterLoad:function(){}};$.fn._reverse=[].reverse;})(jQuery);;
/**
 * jCarousel - Riding carousels with jQuery
 *   http://sorgalla.com/jcarousel/
 *
 * Copyright (c) 2006 Jan Sorgalla (http://sorgalla.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * Built on top of the jQuery library
 *   http://jquery.com
 *
 * Inspired by the "Carousel Component" by Bill Scott
 *   http://billwscott.com/carousel/
 */
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(9($){$.1v.C=9(o){z 4.1b(9(){3p r(4,o)})};8 q={Z:F,25:1,21:1,u:7,1c:3,15:7,1K:\'2X\',2c:\'2Q\',1q:0,B:7,1j:7,1G:7,2F:7,2B:7,2z:7,2x:7,2v:7,2s:7,2p:7,1S:\'<P></P>\',1Q:\'<P></P>\',2m:\'2l\',2k:\'2l\',1O:7,1L:7};$.C=9(e,o){4.5=$.16({},q,o||{});4.Q=F;4.D=7;4.H=7;4.t=7;4.U=7;4.R=7;4.N=!4.5.Z?\'1H\':\'26\';4.E=!4.5.Z?\'24\':\'23\';8 a=\'\',1e=e.K.1e(\' \');1r(8 i=0;i<1e.I;i++){6(1e[i].2y(\'C-2w\')!=-1){$(e).1E(1e[i]);8 a=1e[i];1p}}6(e.2t==\'3o\'||e.2t==\'3n\'){4.t=$(e);4.D=4.t.19();6(4.D.1o(\'C-H\')){6(!4.D.19().1o(\'C-D\'))4.D=4.D.B(\'<P></P>\');4.D=4.D.19()}10 6(!4.D.1o(\'C-D\'))4.D=4.t.B(\'<P></P>\').19()}10{4.D=$(e);4.t=$(e).3h(\'>2o,>2n,P>2o,P>2n\')}6(a!=\'\'&&4.D.19()[0].K.2y(\'C-2w\')==-1)4.D.B(\'<P 3g=" \'+a+\'"></P>\');4.H=4.t.19();6(!4.H.I||!4.H.1o(\'C-H\'))4.H=4.t.B(\'<P></P>\').19();4.R=$(\'.C-11\',4.D);6(4.R.u()==0&&4.5.1Q!=7)4.R=4.H.1z(4.5.1Q).11();4.R.V(4.K(\'C-11\'));4.U=$(\'.C-17\',4.D);6(4.U.u()==0&&4.5.1S!=7)4.U=4.H.1z(4.5.1S).11();4.U.V(4.K(\'C-17\'));4.H.V(4.K(\'C-H\'));4.t.V(4.K(\'C-t\'));4.D.V(4.K(\'C-D\'));8 b=4.5.15!=7?1k.1P(4.1m()/4.5.15):7;8 c=4.t.32(\'1F\');8 d=4;6(c.u()>0){8 f=0,i=4.5.21;c.1b(9(){d.1I(4,i++);f+=d.S(4,b)});4.t.y(4.N,f+\'T\');6(!o||o.u===J)4.5.u=c.u()}4.D.y(\'1y\',\'1A\');4.U.y(\'1y\',\'1A\');4.R.y(\'1y\',\'1A\');4.2G=9(){d.17()};4.2b=9(){d.11()};4.1U=9(){d.2q()};6(4.5.1j!=7)4.5.1j(4,\'2a\');6($.2A.28){4.1f(F,F);$(27).1u(\'2I\',9(){d.1t()})}10 4.1t()};8 r=$.C;r.1v=r.2H={C:\'0.2.3\'};r.1v.16=r.16=$.16;r.1v.16({1t:9(){4.A=7;4.G=7;4.X=7;4.13=7;4.14=F;4.1d=7;4.O=7;4.W=F;6(4.Q)z;4.t.y(4.E,4.1s(4.5.21)+\'T\');8 p=4.1s(4.5.25);4.X=4.13=7;4.1i(p,F);$(27).22(\'2E\',4.1U).1u(\'2E\',4.1U)},2D:9(){4.t.2C();4.t.y(4.E,\'3u\');4.t.y(4.N,\'3t\');6(4.5.1j!=7)4.5.1j(4,\'2D\');4.1t()},2q:9(){6(4.O!=7&&4.W)4.t.y(4.E,r.M(4.t.y(4.E))+4.O);4.O=7;4.W=F;6(4.5.1G!=7)4.5.1G(4);6(4.5.15!=7){8 a=4;8 b=1k.1P(4.1m()/4.5.15),N=0,E=0;$(\'1F\',4.t).1b(9(i){N+=a.S(4,b);6(i+1<a.A)E=N});4.t.y(4.N,N+\'T\');4.t.y(4.E,-E+\'T\')}4.1c(4.A,F)},3s:9(){4.Q=1h;4.1f()},3r:9(){4.Q=F;4.1f()},u:9(s){6(s!=J){4.5.u=s;6(!4.Q)4.1f()}z 4.5.u},3q:9(i,a){6(a==J||!a)a=i;6(4.5.u!==7&&a>4.5.u)a=4.5.u;1r(8 j=i;j<=a;j++){8 e=4.L(j);6(!e.I||e.1o(\'C-1a-1D\'))z F}z 1h},L:9(i){z $(\'.C-1a-\'+i,4.t)},2u:9(i,s){8 e=4.L(i),20=0,2u=0;6(e.I==0){8 c,e=4.1B(i),j=r.M(i);1n(c=4.L(--j)){6(j<=0||c.I){j<=0?4.t.2r(e):c.1X(e);1p}}}10 20=4.S(e);e.1E(4.K(\'C-1a-1D\'));1R s==\'3l\'?e.3k(s):e.2C().3j(s);8 a=4.5.15!=7?1k.1P(4.1m()/4.5.15):7;8 b=4.S(e,a)-20;6(i>0&&i<4.A)4.t.y(4.E,r.M(4.t.y(4.E))-b+\'T\');4.t.y(4.N,r.M(4.t.y(4.N))+b+\'T\');z e},1V:9(i){8 e=4.L(i);6(!e.I||(i>=4.A&&i<=4.G))z;8 d=4.S(e);6(i<4.A)4.t.y(4.E,r.M(4.t.y(4.E))+d+\'T\');e.1V();4.t.y(4.N,r.M(4.t.y(4.N))-d+\'T\')},17:9(){4.1C();6(4.O!=7&&!4.W)4.1T(F);10 4.1c(((4.5.B==\'1Z\'||4.5.B==\'G\')&&4.5.u!=7&&4.G==4.5.u)?1:4.A+4.5.1c)},11:9(){4.1C();6(4.O!=7&&4.W)4.1T(1h);10 4.1c(((4.5.B==\'1Z\'||4.5.B==\'A\')&&4.5.u!=7&&4.A==1)?4.5.u:4.A-4.5.1c)},1T:9(b){6(4.Q||4.14||!4.O)z;8 a=r.M(4.t.y(4.E));!b?a-=4.O:a+=4.O;4.W=!b;4.X=4.A;4.13=4.G;4.1i(a)},1c:9(i,a){6(4.Q||4.14)z;4.1i(4.1s(i),a)},1s:9(i){6(4.Q||4.14)z;6(4.5.B!=\'18\')i=i<1?1:(4.5.u&&i>4.5.u?4.5.u:i);8 a=4.A>i;8 b=r.M(4.t.y(4.E));8 f=4.5.B!=\'18\'&&4.A<=1?1:4.A;8 c=a?4.L(f):4.L(4.G);8 j=a?f:f-1;8 e=7,l=0,p=F,d=0;1n(a?--j>=i:++j<i){e=4.L(j);p=!e.I;6(e.I==0){e=4.1B(j).V(4.K(\'C-1a-1D\'));c[a?\'1z\':\'1X\'](e)}c=e;d=4.S(e);6(p)l+=d;6(4.A!=7&&(4.5.B==\'18\'||(j>=1&&(4.5.u==7||j<=4.5.u))))b=a?b+d:b-d}8 g=4.1m();8 h=[];8 k=0,j=i,v=0;8 c=4.L(i-1);1n(++k){e=4.L(j);p=!e.I;6(e.I==0){e=4.1B(j).V(4.K(\'C-1a-1D\'));c.I==0?4.t.2r(e):c[a?\'1z\':\'1X\'](e)}c=e;8 d=4.S(e);6(d==0){3f(\'3e: 3d 1H/26 3c 1r 3b. 3a 39 38 37 36 35. 34...\');z 0}6(4.5.B!=\'18\'&&4.5.u!==7&&j>4.5.u)h.33(e);10 6(p)l+=d;v+=d;6(v>=g)1p;j++}1r(8 x=0;x<h.I;x++)h[x].1V();6(l>0){4.t.y(4.N,4.S(4.t)+l+\'T\');6(a){b-=l;4.t.y(4.E,r.M(4.t.y(4.E))-l+\'T\')}}8 n=i+k-1;6(4.5.B!=\'18\'&&4.5.u&&n>4.5.u)n=4.5.u;6(j>n){k=0,j=n,v=0;1n(++k){8 e=4.L(j--);6(!e.I)1p;v+=4.S(e);6(v>=g)1p}}8 o=n-k+1;6(4.5.B!=\'18\'&&o<1)o=1;6(4.W&&a){b+=4.O;4.W=F}4.O=7;6(4.5.B!=\'18\'&&n==4.5.u&&(n-k+1)>=1){8 m=r.Y(4.L(n),!4.5.Z?\'1l\':\'1N\');6((v-m)>g)4.O=v-g-m}1n(i-->o)b+=4.S(4.L(i));4.X=4.A;4.13=4.G;4.A=o;4.G=n;z b},1i:9(p,a){6(4.Q||4.14)z;4.14=1h;8 b=4;8 c=9(){b.14=F;6(p==0)b.t.y(b.E,0);6(b.5.B==\'1Z\'||b.5.B==\'G\'||b.5.u==7||b.G<b.5.u)b.2j();b.1f();b.1M(\'2i\')};4.1M(\'31\');6(!4.5.1K||a==F){4.t.y(4.E,p+\'T\');c()}10{8 o=!4.5.Z?{\'24\':p}:{\'23\':p};4.t.1i(o,4.5.1K,4.5.2c,c)}},2j:9(s){6(s!=J)4.5.1q=s;6(4.5.1q==0)z 4.1C();6(4.1d!=7)z;8 a=4;4.1d=30(9(){a.17()},4.5.1q*2Z)},1C:9(){6(4.1d==7)z;2Y(4.1d);4.1d=7},1f:9(n,p){6(n==J||n==7){8 n=!4.Q&&4.5.u!==0&&((4.5.B&&4.5.B!=\'A\')||4.5.u==7||4.G<4.5.u);6(!4.Q&&(!4.5.B||4.5.B==\'A\')&&4.5.u!=7&&4.G>=4.5.u)n=4.O!=7&&!4.W}6(p==J||p==7){8 p=!4.Q&&4.5.u!==0&&((4.5.B&&4.5.B!=\'G\')||4.A>1);6(!4.Q&&(!4.5.B||4.5.B==\'G\')&&4.5.u!=7&&4.A==1)p=4.O!=7&&4.W}8 a=4;4.U[n?\'1u\':\'22\'](4.5.2m,4.2G)[n?\'1E\':\'V\'](4.K(\'C-17-1w\')).1J(\'1w\',n?F:1h);4.R[p?\'1u\':\'22\'](4.5.2k,4.2b)[p?\'1E\':\'V\'](4.K(\'C-11-1w\')).1J(\'1w\',p?F:1h);6(4.U.I>0&&(4.U[0].1g==J||4.U[0].1g!=n)&&4.5.1O!=7){4.U.1b(9(){a.5.1O(a,4,n)});4.U[0].1g=n}6(4.R.I>0&&(4.R[0].1g==J||4.R[0].1g!=p)&&4.5.1L!=7){4.R.1b(9(){a.5.1L(a,4,p)});4.R[0].1g=p}},1M:9(a){8 b=4.X==7?\'2a\':(4.X<4.A?\'17\':\'11\');4.12(\'2F\',a,b);6(4.X!==4.A){4.12(\'2B\',a,b,4.A);4.12(\'2z\',a,b,4.X)}6(4.13!==4.G){4.12(\'2x\',a,b,4.G);4.12(\'2v\',a,b,4.13)}4.12(\'2s\',a,b,4.A,4.G,4.X,4.13);4.12(\'2p\',a,b,4.X,4.13,4.A,4.G)},12:9(a,b,c,d,e,f,g){6(4.5[a]==J||(1R 4.5[a]!=\'2h\'&&b!=\'2i\'))z;8 h=1R 4.5[a]==\'2h\'?4.5[a][b]:4.5[a];6(!$.2W(h))z;8 j=4;6(d===J)h(j,c,b);10 6(e===J)4.L(d).1b(9(){h(j,4,d,c,b)});10{1r(8 i=d;i<=e;i++)6(i!==7&&!(i>=f&&i<=g))4.L(i).1b(9(){h(j,4,i,c,b)})}},1B:9(i){z 4.1I(\'<1F></1F>\',i)},1I:9(e,i){8 a=$(e).V(4.K(\'C-1a\')).V(4.K(\'C-1a-\'+i));a.1J(\'2V\',i);z a},K:9(c){z c+\' \'+c+(!4.5.Z?\'-2U\':\'-Z\')},S:9(e,d){8 a=e.2g!=J?e[0]:e;8 b=!4.5.Z?a.1x+r.Y(a,\'2f\')+r.Y(a,\'1l\'):a.2e+r.Y(a,\'2d\')+r.Y(a,\'1N\');6(d==J||b==d)z b;8 w=!4.5.Z?d-r.Y(a,\'2f\')-r.Y(a,\'1l\'):d-r.Y(a,\'2d\')-r.Y(a,\'1N\');$(a).y(4.N,w+\'T\');z 4.S(a)},1m:9(){z!4.5.Z?4.H[0].1x-r.M(4.H.y(\'2T\'))-r.M(4.H.y(\'2S\')):4.H[0].2e-r.M(4.H.y(\'2R\'))-r.M(4.H.y(\'3i\'))},2P:9(i,s){6(s==J)s=4.5.u;z 1k.2O((((i-1)/s)-1k.2N((i-1)/s))*s)+1}});r.16({3m:9(d){z $.16(q,d||{})},Y:9(e,p){6(!e)z 0;8 a=e.2g!=J?e[0]:e;6(p==\'1l\'&&$.2A.28){8 b={\'1y\':\'1A\',\'2M\':\'2L\',\'1H\':\'1q\'},1Y,1W;$.29(a,b,9(){1Y=a.1x});b[\'1l\']=0;$.29(a,b,9(){1W=a.1x});z 1W-1Y}z r.M($.y(a,p))},M:9(v){v=2K(v);z 2J(v)?0:v}})})(3v);',62,218,'||||this|options|if|null|var|function||||||||||||||||||||list|size||||css|return|first|wrap|jcarousel|container|lt|false|last|clip|length|undefined|className|get|intval|wh|tail|div|locked|buttonPrev|dimension|px|buttonNext|addClass|inTail|prevFirst|margin|vertical|else|prev|callback|prevLast|animating|visible|extend|next|circular|parent|item|each|scroll|timer|split|buttons|jcarouselstate|true|animate|initCallback|Math|marginRight|clipping|while|hasClass|break|auto|for|pos|setup|bind|fn|disabled|offsetWidth|display|before|block|create|stopAuto|placeholder|removeClass|li|reloadCallback|width|format|attr|animation|buttonPrevCallback|notify|marginBottom|buttonNextCallback|ceil|buttonPrevHTML|typeof|buttonNextHTML|scrollTail|funcResize|remove|oWidth2|after|oWidth|both|old|offset|unbind|top|left|start|height|window|safari|swap|init|funcPrev|easing|marginTop|offsetHeight|marginLeft|jquery|object|onAfterAnimation|startAuto|buttonPrevEvent|click|buttonNextEvent|ol|ul|itemVisibleOutCallback|reload|prepend|itemVisibleInCallback|nodeName|add|itemLastOutCallback|skin|itemLastInCallback|indexOf|itemFirstOutCallback|browser|itemFirstInCallback|empty|reset|resize|itemLoadCallback|funcNext|prototype|load|isNaN|parseInt|none|float|floor|round|index|swing|borderTopWidth|borderRightWidth|borderLeftWidth|horizontal|jcarouselindex|isFunction|normal|clearTimeout|1000|setTimeout|onBeforeAnimation|children|push|Aborting|loop|infinite|an|cause|will|This|items|set|No|jCarousel|isNan|class|find|borderBottomWidth|append|html|string|defaults|OL|UL|new|has|unlock|lock|10px|0px|jQuery'.split('|'),0,{}))
;
(function($){var $$;$$=$.fn.galleria=function($options){if(!$$.hasCSS()){return false;}$.historyInit($$.onPageLoad);var $defaults={insert:'.galleria_container',history:true,clickNext:true,onImage:function(image,caption,thumb){},onThumb:function(thumb){}};var $opts=$.extend($defaults,$options);for(var i in $opts){if(i){$.galleria[i]=$opts[i];}}var _insert=($($opts.insert).is($opts.insert))?$($opts.insert):jQuery(document.createElement('div')).insertBefore(this);var _div=$(document.createElement('div')).addClass('galleria_wrapper');var _span=$(document.createElement('span')).addClass('caption');_insert.addClass('galleria_container').append(_div).append(_span);return this.each(function(){$(this).addClass('galleria');$(this).children('li').each(function(i){var _container=$(this);var _o=$.meta?$.extend({},$opts,_container.data()):$opts;_o.clickNext=$(this).is(':only-child')?false:_o.clickNext;var _a=$(this).find('a').is('a')?$(this).find('a'):false;var _img=$(this).children('img').css('display','none');var _src=_a?_a.attr('href'):_img.attr('src');var _title=_a?_a.attr('title'):_img.attr('title');var _loader=new Image();if(_o.history&&(window.location.hash&&window.location.hash.replace(/\#/,'')==_src)){_container.siblings('.active').removeClass('active');_container.addClass('active');}$(_loader).load(function(){$(this).attr('alt',_img.attr('alt'));var _thumb=_a?_a.find('img').addClass('thumb noscale').css('display','none'):_img.clone(true).addClass('thumb').css('display','none');if(_a){_a.replaceWith(_thumb);}if(!_thumb.hasClass('noscale')){var w=Math.ceil(_img.width()/_img.height()*_container.height());var h=Math.ceil(_img.height()/_img.width()*_container.width());if(w<h){_thumb.css({height:'auto',width:_container.width(),marginTop:-(h-_container.height())/2});}else{_thumb.css({width:'auto',height:_container.height(),marginLeft:-(w-_container.width())/2});}}else{window.setTimeout(function(){_thumb.css({marginLeft:-(_thumb.width()-_container.width())/2,marginTop:-(_thumb.height()-_container.height())/2});},1);}_thumb.attr('rel',_src);_thumb.attr('title',_title);_thumb.click(function(){$.galleria.activate(_src);});_thumb.hover(function(){$(this).addClass('hover');},function(){$(this).removeClass('hover');});_container.hover(function(){_container.addClass('hover');},function(){_container.removeClass('hover');});_container.prepend(_thumb);_thumb.css('display','block');_o.onThumb(jQuery(_thumb));if(_container.hasClass('active')){$.galleria.activate(_src);}_img.remove();}).error(function(){_container.html('<span class="error" style="color:red">Error loading image: '+_src+'</span>');}).attr('src',_src);});});};$$.nextSelector=function(selector){return $(selector).is(':last-child')?$(selector).siblings(':first-child'):$(selector).next();};$$.previousSelector=function(selector){return $(selector).is(':first-child')?$(selector).siblings(':last-child'):$(selector).prev();};$$.hasCSS=function(){$('body').append($(document.createElement('div')).attr('id','css_test').css({width:'1px',height:'1px',display:'none'}));var _v=($('#css_test').width()!=1)?false:true;$('#css_test').remove();return _v;};$$.onPageLoad=function(_src){var _wrapper=$('.galleria_wrapper');var _thumb=$('.galleria img[rel="'+_src+'"]');if(_src){if($.galleria.history){window.location=window.location.href.replace(/\#.*/,'')+'#'+_src;}_thumb.parents('li').siblings('.active').removeClass('active');_thumb.parents('li').addClass('active');var _img=$(new Image()).attr('src',_src).addClass('replaced');_wrapper.empty().append(_img);_wrapper.siblings('.caption').text(_thumb.attr('title'));$.galleria.onImage(_img,_wrapper.siblings('.caption'),_thumb);if($.galleria.clickNext){_img.css('cursor','pointer').click(function(){$.galleria.next();});}}else{_wrapper.siblings().andSelf().empty();$('.galleria li.active').removeClass('active');}$.galleria.current=_src;};$.extend({galleria:{current:'',onImage:function(){},activate:function(_src){if($.galleria.history){$.historyLoad(_src);}else{$$.onPageLoad(_src);}},next:function(){var _next=$($$.nextSelector($('.galleria img[rel="'+$.galleria.current+'"]').parents('li'))).find('img').attr('rel');$.galleria.activate(_next);},prev:function(){var _prev=$($$.previousSelector($('.galleria img[rel="'+$.galleria.current+'"]').parents('li'))).find('img').attr('rel');$.galleria.activate(_prev);}}});})(jQuery);jQuery.extend({historyCurrentHash:undefined,historyCallback:undefined,historyInit:function(callback){jQuery.historyCallback=callback;var current_hash=location.hash;jQuery.historyCurrentHash=current_hash;if(jQuery.browser.msie){if(jQuery.historyCurrentHash===''){jQuery.historyCurrentHash='#';}$("body").prepend('<iframe id="jQuery_history" style="display: none;"></iframe>');var ihistory=$("#jQuery_history")[0];var iframe=ihistory.contentWindow.document;iframe.open();iframe.close();iframe.location.hash=current_hash;}else if($.browser.safari){jQuery.historyBackStack=[];jQuery.historyBackStack.length=history.length;jQuery.historyForwardStack=[];jQuery.isFirst=true;}jQuery.historyCallback(current_hash.replace(/^#/,''));setInterval(jQuery.historyCheck,100);},historyAddHistory:function(hash){jQuery.historyBackStack.push(hash);jQuery.historyForwardStack.length=0;this.isFirst=true;},historyCheck:function(){if(jQuery.browser.msie){var ihistory=$("#jQuery_history")[0];var iframe=ihistory.contentDocument||ihistory.contentWindow.document;var current_hash=iframe.location.hash;if(current_hash!=jQuery.historyCurrentHash){location.hash=current_hash;jQuery.historyCurrentHash=current_hash;jQuery.historyCallback(current_hash.replace(/^#/,''));}}else if($.browser.safari){if(!jQuery.dontCheck){var historyDelta=history.length-jQuery.historyBackStack.length;if(historyDelta){jQuery.isFirst=false;var i;if(historyDelta<0){for(i=0;i<Math.abs(historyDelta);i++){jQuery.historyForwardStack.unshift(jQuery.historyBackStack.pop());}}else{for(i=0;i<historyDelta;i++){jQuery.historyBackStack.push(jQuery.historyForwardStack.shift());}}var cachedHash=jQuery.historyBackStack[jQuery.historyBackStack.length-1];if(cachedHash!==undefined){jQuery.historyCurrentHash=location.hash;jQuery.historyCallback(cachedHash);}}else if(jQuery.historyBackStack[jQuery.historyBackStack.length-1]===undefined&&!jQuery.isFirst){if(document.URL.indexOf('#')>=0){jQuery.historyCallback(document.URL.split('#')[1]);}else{current_hash=location.hash;jQuery.historyCallback('');}jQuery.isFirst=true;}}}else{current_hash=location.hash;if(current_hash!=jQuery.historyCurrentHash){jQuery.historyCurrentHash=current_hash;jQuery.historyCallback(current_hash.replace(/^#/,''));}}},historyLoad:function(hash){var newhash;if(jQuery.browser.safari){newhash=hash;}else{newhash='#'+hash;location.hash=newhash;}jQuery.historyCurrentHash=newhash;if(jQuery.browser.msie){var ihistory=$("#jQuery_history")[0];var iframe=ihistory.contentWindow.document;iframe.open();iframe.close();iframe.location.hash=newhash;jQuery.historyCallback(hash);}else if(jQuery.browser.safari){jQuery.dontCheck=true;this.historyAddHistory(hash);var fn=function(){jQuery.dontCheck=false;};window.setTimeout(fn,200);jQuery.historyCallback(hash);location.hash=newhash;}else{jQuery.historyCallback(hash);}}});;
jQuery.fn.popupwindow = function(p)
{

	var profiles = p || {};

	return this.each(function(index){
		var settings, parameters, mysettings, b, a, winObj;
		
		// for overrideing the default settings
		mysettings = (jQuery(this).attr("rel") || "").split(",");

		
		settings = {
			height:600, // sets the height in pixels of the window.
			width:600, // sets the width in pixels of the window.
			toolbar:0, // determines whether a toolbar (includes the forward and back buttons) is displayed {1 (YES) or 0 (NO)}.
			scrollbars:0, // determines whether scrollbars appear on the window {1 (YES) or 0 (NO)}.
			status:0, // whether a status line appears at the bottom of the window {1 (YES) or 0 (NO)}.
			resizable:1, // whether the window can be resized {1 (YES) or 0 (NO)}. Can also be overloaded using resizable.
			left:0, // left position when the window appears.
			top:0, // top position when the window appears.
			center:0, // should we center the window? {1 (YES) or 0 (NO)}. overrides top and left
			createnew:1, // should we create a new window for each occurance {1 (YES) or 0 (NO)}.
			location:0, // determines whether the address bar is displayed {1 (YES) or 0 (NO)}.
			menubar:0, // determines whether the menu bar is displayed {1 (YES) or 0 (NO)}.
			onUnload:null // function to call when the window is closed
		};

		// if mysettings length is 1 and not a value pair then assume it is a profile declaration
		// and see if the profile settings exists

		if(mysettings.length == 1 && mysettings[0].split(":").length == 1)
		{
			a = mysettings[0];
			// see if a profile has been defined
			if(typeof profiles[a] != "undefined")
			{
				settings = jQuery.extend(settings, profiles[a]);
			}
		}
		else
		{
			// overrides the settings with parameter passed in using the rel tag.
			for(var i=0; i < mysettings.length; i++)
			{
				b = mysettings[i].split(":");
				if(typeof settings[b[0]] != "undefined" && b.length == 2)
				{
					settings[b[0]] = b[1];
				}
			}
		}

		// center the window
		if (settings.center == 1)
		{
			settings.top = (screen.height-(settings.height + 110))/2;
			settings.left = (screen.width-settings.width)/2;
		}
		
		parameters = "location=" + settings.location + ",menubar=" + settings.menubar + ",height=" + settings.height + ",width=" + settings.width + ",toolbar=" + settings.toolbar + ",scrollbars=" + settings.scrollbars  + ",status=" + settings.status + ",resizable=" + settings.resizable + ",left=" + settings.left  + ",screenX=" + settings.left + ",top=" + settings.top  + ",screenY=" + settings.top;
		
		jQuery(this).bind("click", function(){
			var name = settings.createnew ? "PopUpWindow" + index : "PopUpWindow";
			winObj = window.open(this.href, name, parameters);
			
			if (settings.onUnload) {
				// Incremental check for window status
				// Attaching directly to window.onunlaod event causes invoke when document within window is reloaded
				// (i.e. an inner refresh)
				unloadInterval = setInterval(function() {
					if (!winObj || winObj.closed) {
						clearInterval(unloadInterval);	
						settings.onUnload.call($(this));
					}
				},500);
			}
			
			winObj.focus();
			
			return false;
		});
	});

};;
/*****
 * Copyright © FASTBOOKING  1999-2007
 * 22/04/2009
 *
 * Please do NOT modify this file
 * Please do NOT use the final IP adress for Fastbooking links:
 *   IP address may be changed at any time
 *
*/

// use following parameters, declared before in a fbparam.js file
// Mandatory parameters:
//var FBRESA = "http://www.fastbookings.biz/DIRECTORY/";
//var FB_nb_day_delay = 7;
// Optional parameters:
//var FB_useGoogleAnalytics = true;

if (typeof(FB_useGoogleAnalytics) == "undefined")
	var FB_useGoogleAnalytics = false;
//////////////////////////////////////////////////////////////
// following code is used to optimize booking access and a better client experience
var FB_book_image = new Image();
FB_book_image.src = FBRESA + "trans.gif";

//////////////////////////////////////////////////////////////
// Fidelity program
var FB_code_interface = "";
var FB_profil = "";
function hhotelProfil(code_interface, profil)
{
	FB_code_interface = code_interface;
	FB_profil = profil;
}
// Form: show arrival date
// this function to replace the traditional start function
// in this case no update is required every year.
function start() {
	var nbm = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
		
	thisform = document.idForm;

	build_year_select(thisform);

	MD = new Date();
		
	nday = MD.getDate();
	aday = MD.getDay();
	amois = MD.getMonth();
	ayear = takeYear(MD);
	cur_year = ayear;
			
	nday += FB_nb_day_delay;

	if(nday > nbm[amois])
	{
		nday -= nbm[amois];
		amois++;
		if(amois > 11) {
			ayear++;
			amois = 0;
		}
	}

	indexDay = nday - 1;
	indexMois = amois;
	indexYear = ayear - cur_year;
		
	if(indexDay < 0 || indexDay > 30)
		indexDay = 0;
	if(indexMois < 0 || indexMois > 11)
		indexMois = 0;
	if(indexYear < 0 || indexYear > 1)
		indexDay = 0;

	thisform.fromday.selectedIndex = indexDay;
	thisform.frommonth.selectedIndex = indexMois;
	thisform.fromyear.selectedIndex = indexYear;

	update_departure();
}

function generateSession()
{
	var time = new Date();
	var sec  = time.getSeconds();
	f = Math.floor(Math.random() * 1000000000) + '';
	var sess = '' + sec + f;
	return sess;
}

function transferGAdata(sessId, cname)
{
	var waction = FBRESA + "ga.phtml?clusterName="+cname + "&id=" + sessId;
	pageTracker._initData();
	new Image().src = pageTracker._getLinkerUrl(waction);
	pageTracker._trackPageview('/FastBooking/ClicBook'); 
}

function fbOpenWindow(cname, waction, title, width, height)
{
	if(FB_useGoogleAnalytics)
	{
		sessId 	 = generateSession();
		hhotelProfil("GoogleAnalytics", escape("SESSION=" + sessId));
	}
	if(FB_profil != "")
	{
		waction += "&code="+FB_code_interface;
		waction += "&profil="+FB_profil;
	}

	window.open(waction, title, "toolbar=no,width=" + width + ",height=" + height +",menubar=no,scrollbars=yes,resizable=yes,alwaysRaised=yes");

	if(FB_useGoogleAnalytics)
		transferGAdata(sessId, cname);
}

// standard booking function
function hhotelPTC(cname, lg, codeprice, codetrack, cluster)
{
	hhotelResa(cname, lg, codeprice, "", "", codetrack, cluster, "", "");
}

// standard promotion function
function hhotelPromo(cname, lg, theme)
{
	hhotelResa(cname, lg, "DYNPROMO", "", "", "", "", theme, "");
}

// reservation promotion function: To show one promotion
function hhotelOnePromo(cname, lg, codeprice, codetrack, cluster)
{
	hhotelResa(cname, lg, codeprice, "", "", codetrack, cluster, "", "style=DIRECTPROMO");
}

// reservation page WITHOUT the individual access
function hhotelNegociated(cname, lg, codeprice, codetrack, cluster)
{
	hhotelResa(cname, lg, codeprice, "", "", codetrack, cluster, "", "negociated=1");
}

// Main direct reservation function
function hhotelResaDirect(cname, lg, codeprice, firstroom, codetrack, firstdate)
{
	hhotelResa(cname, lg, codeprice, firstroom, firstdate, codetrack, "", "", "style=DIRECT");
}

// standard search availabilities in a group
function hhotelSearchGroup(cluster, lg, price, nights, title)
{
	hhotelSearch(cluster, lg, price, nights, title, "", "");
}

// standard search availabilities in a group for a partner
function hhotelSearchPartner(cluster, lg, price, codetrack, title)
{
	if (codetrack != "") args = "&from="+codetrack;
	else	args = "";
	hhotelSearch(cluster, lg, price, "", title, "", args);
}

// search by giving the initial date
function hhotelSearchPriceDate(cluster, price, nights, title, firstdate)
{
	// firstdate : format "YYMMDD"
	var args="";
	if (firstdate != "") args = "FirstDate="+firstdate;
	hhotelSearch(cluster, "", price, nights, title, "", args);
}

function hhotelSearchPriceDateTrack(cluster, lg, price, codetrack, nights, title, firstdate)
{
	var args="";
	if (codetrack != "") args = "from="+codetrack;
	if (firstdate != "") args += "&FirstDate="+firstdate;
	hhotelSearch(cluster, lg, price, nights, title, "", args);
}

// search by giving the initial date and persons for MSP
function hhotelSearchAllMSP(cluster, price, nights, title, firstdate, mastercluster, cartID, adults, children)
{
	// firstdate : format "YYMMDD"
	var args="";
	if (firstdate != "") args = "FirstDate="+firstdate;
	if (mastercluster != "") args += "&mastercluster=" + mastercluster;
	if (cartID != "") args += "&cartID=" + cartID;
	if (adults != "") args += "&adulteresa=" + adults;
	if (children != "") args += "&enfantresa=" + children;
	hhotelSearch(cluster, "", price, nights, title, "", args);
}

// search availabilities for selected promotions
function hhotelSearchPromo(cluster, lg, theme)
{
	hhotelSearch(cluster, lg, "", "", "", theme, "");
}

// search availabilities with Extra Field
function hhotelSearchExtra(cluster, lg, price, codetrack, extratitle, extraval, extrashow)
{
	var args = "Extrafield=" + escape(extratitle) + ";" + extraval + ";" + extrashow;
	if (codetrack != "") args += "&from="+codetrack;
	hhotelSearch(cluster, lg, price, "", "", "", args);
}

// go to the cancel reservation page
function hhotelcancel(cname,lg)
{
	var waction = FBRESA + "cancel.phtml?state=77&Hotelnames="+cname;
	if (lg != "") waction += "&langue="+lg;
	fbOpenWindow(cname, waction, "reservation", 400, 350);
	//window.open(waction,"reservation","toolbar=no,width=400,height=350,menubar=no,scrollbars=yes,resizable=yes,alwaysRaised=yes");
}

// go to the extract reservation page
function hhotelExtract(cname, lg)
{
	var waction = FBRESA + "getresa.phtml?Hotelnames="+cname+"&langue="+lg;
	fbOpenWindow(cname, waction, "getresa", 700, 300);
	//window.open(waction, 'getresa', 'toolbar=no,width=700,height=300,menubar=no,scrollbars=yes,resizable=yes,alwaysRaised=yes');
	return false;
}

// check interface
function hhotelcheckrates(cname, lg)
{
	var waction = FBRESA + "crs.phtml?clusterName="+cname;
	if (lg != "") waction += "&langue="+lg;
	waction += "&checkPromo=1";
	fbOpenWindow(cname, waction, "search", 800, 550);
	//window.open(waction,"search","toolbar=no,width=800,height=550,menubar=no,scrollbars=yes,resizable=yes,alwaysRaised=yes");
}

// Main standard reservation function MSP
function hhotelResaMSP(cname, lg, codeprice, firstroom, firstdate, codetrack, cluster, theme, args, mastercluster, cartID)
{
	if (mastercluster != "") args += "&mastercluster=" + mastercluster;
	if (cartID != "") args += "&cartID=" + cartID;
	hhotelResa(cname, lg, codeprice, firstroom, firstdate, codetrack, cluster, theme, args);
}

// Main Search function MSP
function hhotelSearchMSP(cluster, lg, price, nights, title, theme, args, mastercluster, cartID)
{
	if (mastercluster != "") args += "&mastercluster=" + mastercluster;
	if (cartID != "") args += "&cartID=" + cartID;
	hhotelSearch(cluster, lg, price, nights, title, theme, args);
}

// Main standard reservation function
function hhotelResa(cname, lg, codeprice, firstroom, firstdate, codetrack, cluster, theme, args)
{
	var waction = FBRESA+"preresa.phtml?Hotelnames="+cname;
	if (lg != "") waction += "&langue="+lg;
	if (firstroom != "") {
		waction += "&FirstRoomName="+firstroom;
		if (codeprice == "")
			codeprice = "DIRECT";
		}
	if (firstdate != "") {
		waction += "&FirstDate="+firstdate;
		if (codeprice == "")
			codeprice = "DIRECT";
		}
	if (codeprice != "") waction += "&FSTBKNGCode="+codeprice;
	if (codetrack != "") waction += "&FSTBKNGTrackLink="+codetrack;
	if (cluster != "") waction += "&clustername="+cluster;
	if (theme != "") waction += "&theme="+theme;
	if (args != "" && (args.indexOf("=")!= -1) ) waction += "&"+args;
	waction += "&HTTP_REFERER="+escape(document.location.href);
	fbOpenWindow(cname, waction, "reservation", 400, 350);
	//window.open(waction,"reservation","toolbar=no,width=400,height=350,menubar=no,scrollbars=yes,resizable=yes,alwaysRaised=yes");
}

// Main Search function
function hhotelSearch(cluster, lg, price, nights, title, theme, args)
{
	var waction = FBRESA + "crs.phtml?clusterName="+cluster;
	if (lg != "") waction += "&langue="+lg;
	if (price != "") waction += "&FSTBKNGCode="+price;
	if (nights != "") waction += "&nights="+nights;
	if (title != "") waction += "&title="+escape(title);
	if (theme != "") waction += "&theme="+theme;
	if (args != "" && (args.indexOf("=")!= -1) ) waction += "&"+args;
	fbOpenWindow(cluster, waction, "search", 1000, 700);
	//window.open(waction,"search","toolbar=no,width=1000,height=700,menubar=no,scrollbars=yes,resizable=yes,alwaysRaised=yes");
}

// Main Search function for Multi Codes
function hhotelSearchMultCode(cluster, lg, clecode, title, codetrack)
{
	var waction = FBRESA + "crs.phtml?clusterName="+cluster;
	if (lg != "") waction += "&langue="+lg;
	if (clecode != "") waction += "&AccessCode="+clecode;
	if (title != "") waction += "&title="+escape(title);
	if (codetrack != "") waction += "&FSTBKNGTrackLink="+codetrack;
	waction += "&crossSelling=NO"; // CROSS SELLING DESACTIVATED
	fbOpenWindow(cluster, waction, "search", 1000, 700);
	//window.open(waction,"search","toolbar=no,width=1000,height=700,menubar=no,scrollbars=yes,resizable=yes,alwaysRaised=yes");
}

// Main Search function for Cross Selling

function hhotelSearchCrossSell(cluster, lg, codetrack, crossSelling)
{
	var waction = FBRESA + "crs.phtml?clusterName="+cluster;
	if (lg != "") waction += "&langue="+lg;
	if (codetrack != "") waction += "&FSTBKNGTrackLink="+codetrack;
	if (crossSelling != "") waction += "&crossSelling="+crossSelling;
	fbOpenWindow(cluster, waction, "search", 1000, 700);
	//window.open(waction,"search","toolbar=no,width=1000,height=700,menubar=no,scrollbars=yes,resizable=yes,alwaysRaised=yes");
}

// MAIN AVAILABILITY CHECK 
function hhotelDispopriceFHP(cname, lg, codetrack, year, month, day, nights, currency)
{
	var waction = FBRESA+"dispoprice.phtml?clusterName="+cname+"&Hotelnames="+cname;
	if (lg != "") waction += "&langue="+lg;
	if (codetrack != "") waction += "&FSTBKNGTrackLink="+codetrack;
	if (year != "") waction += "&fromyear="+year;
	if (month != "") waction += "&frommonth="+month;
	if (day != "") waction += "&fromday="+day;
	if (nights != "") waction += "&nbdays="+nights;
	if (currency != "") waction += "&CurrencyLabel="+currency;
	waction += "&showPromotions=3";
	fbOpenWindow(cname, waction, "reservation", 1000, 700);
	//window.open(waction,"reservation","toolbar=no,width=1000,height=700,menubar=no,scrollbars=yes,resizable=yes,alwaysRaised=yes");
}


///////////////////////////////////////////////////////////////////////////////////////
// Form functions
// Simple form validation (used for compatibility issues)
function hhotelDispoprice(myForm)
{
	hhotelFormValidation(myForm, 0);
}

// Form validation with control
function hhotelFormValidation(myForm, mandatoryCode){
	if (mandatoryCode == 1 && myForm.AccessCode.value == "") {
		alert("You must type in your code ID");
		return (false);
	}
	myForm.action = FBRESA + "dispoprice.phtml";
	if (FB_useGoogleAnalytics) {	
		sessId = generateSession();
		profilValue = escape("SESSION=" + sessId + "&CODE=GoogleAnalytics");
		if ((typeof myForm.profil) == "undefined") {
			var newInput = document.createElement("input");
			newInput.setAttribute("type", "hidden");
			newInput.setAttribute("name", "profil");
			newInput.setAttribute("value", profilValue);
			myForm.appendChild(newInput);
		} else {
			myForm.profil.value = profilValue;
		}
	}
	window.open('','dispoprice', 'toolbar=no,width=1000,height=700,menubar=no,scrollbars=yes,resizable=yes');
	myForm.submit();
	if (FB_useGoogleAnalytics) {
		var cname = "";
		if ((typeof myForm.AccountName) != "undefined" && myForm.AccountName.value != "")
			cname = myForm.AccountName.value;
		else 
			cname = myForm.Clusternames.value;
		transferGAdata(sessId, cname);
	}
	return (true);
}

// Form: update the selected hotel name
function hhotelFormUpdateHotelnames(myForm)
{
	menuNum = myForm.HotelList.selectedIndex;
	if (menuNum == null)
		return;
	myForm.Hotelnames.value = myForm.HotelList.options[menuNum].value;
}

// Form: show the cancel page
function hhotelFormCancel(myForm){
	var CName = myForm.Hotelnames.value;
	var languetype = typeof myForm.langue;
	var langue;
	if (languetype == "undefined")
		langue = "";
	else
		langue = myForm.langue.value;
	if (CName == null || CName == 'All' || CName == ''){ alert('Please select a hotel first'); return (false); }
	return hhotelcancel(CName, langue);
}

// Form: show the extract page
function hhotelFormExtract(myForm)
{
	var CName = myForm.Hotelnames.value;
	var languetype = typeof myForm.langue;
	var langue;
	if (languetype == "undefined")
		langue = "";
	else
		langue = myForm.langue.value;
	if (CName == null || CName == 'All' || CName == ''){ alert('Please select a hotel first'); return (false); }
	return hhotelExtract(CName, langue);
}

// Form: show languages ////////////////////////////////////////////
function hhotelShowLang(lang) 
{
	hhotelShowLang__(this.document, lang);
}

function hhotelShowLangOpener(lang)
{
	hhotelShowLang__(window.opener.document, lang);
	window.close();
}

function hhotelShowLang__(mydoc, lang)
{
	mydoc.idForm.langue.value=lang;

	var imgLang = hhotelLang2Img(lang);
	if (imgLang != "") {
		var formFlag = mydoc.selLgFlag;
		if (formFlag != null)
			mydoc.selLgFlag.src= "fastbooking/flags/"+imgLang+".gif";
		var formFlag = mydoc.selLgTxt;
		if (formFlag != null)
			mydoc.selLgTxt.src= "fastbooking/flags/"+imgLang+"lg.gif";
	}
}

// FastBooking language and image code
var FBLangCode = new Array (
	"uk", "france", "germany", "spain", "portuguese", "italy", "nether", "russian",
	"dansk", "svensk", "islensk", "norsk", "turk", "hungria", "greek", "arab",
	"china", "coreen", "japan","croate","czech","poland");
var FBLangImg = new Array (
	"grandbret", "france", "germany", "spain", "portuguese", "italy", "nether", "russia",
	"denmark", "sweeden", "iceland", "norway", "turkey", "hungary", "greek", "arab",
	"china", "coreen", "japan","croate","czech","poland");

function hhotelLang2Img(lang)
{
	for(i = 0; i < FBLangCode.length; i++) {
		if (FBLangCode[i] == lang)
			break;
	}
	return FBLangImg[i];
}

function hhotelLangSelector()
{
	window.open('fastbooking/flags/langSelector.html', '', 'width=330,height=180');
}


var langcodes = new Array("en", "uk", "fr", "france", "de", "germany", "es", "spain ", "pt", "portuguese", "it", "italy", "nl", "nether", "ja", "japan ", "ko", "coreen", "zh", "china", "ar", "arab", "ru", "russian", "tr", "turk", "el", "greek", "hu", "hungria", "da", "dansk", "sv", "svensk", "is", "islensk", "no", "norsk", "hr", "croate", "cs", "czech", "pl", "poland", "iw", "hebrew");

function selectLang()
{
	if(navigator.appName == "Microsoft Internet Explorer") UL = navigator.userLanguage.substring(0, 2);
	else if(navigator.appName == "Netscape") UL = navigator.language;
	else return;

	for(i = 0; i < langcodes.length; i += 2)
		if(UL == langcodes[i])
			break;
			
	lang = (i < langcodes.length) ? langcodes[i+1] : "uk";
	hhotelShowLang(lang);
}


// date manager ////////////////////////////////////////////
// build year select
function build_year_select(thisform) {
	var cur_date = new Date();
	var cur_year = takeYear(cur_date);
		
	cur_y = new Option(cur_year, cur_year, true, true);
	thisform.fromyear.options[0] = cur_y;
	if(thisform.toyear != null) {
		cur_yb = new Option(cur_year, cur_year, true, true);
		thisform.toyear.options[0] = cur_yb;
	}
		
	next_y = new Option(cur_year + 1, cur_year + 1, false, false);
	thisform.fromyear.options[1] = next_y;
	next_yb = new Option(cur_year + 1, cur_year + 1, false, false);
	if(thisform.toyear != null) {
		thisform.toyear.options[1] = next_yb;
	}
}
	
// check departure date to arrival date + 1 day (every time the arrival date is changed)
function check_departure() {
	thisform = document.idForm;

	if(thisform.today == null)
		return;

	var nbm = [ 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31 ];
	
	var ar_day = parseInt(thisform.fromday.value) + 1;
	var ar_month = parseInt(thisform.frommonth.value);
	var ar_year = parseInt(thisform.fromyear.value);
			
	if(ar_day > nbm[ar_month - 1]) {
		ar_day = 1;
		ar_month += 1;
		if(ar_month > 12) {
			ar_month = 1;
			ar_year += 1;
		}
	}
			
	var cur_date = new Date();
	var cur_year = takeYear(cur_date);
	
	thisform.today.selectedIndex = ar_day - 1;
	thisform.tomonth.selectedIndex = ar_month - 1;
	thisform.toyear.selectedIndex = ar_year - cur_year;
}

// update departure : check 
function update_departure() {
	thisform = document.idForm;

	if(thisform.today == null)
		return;
		
	var ar_day = parseInt(thisform.fromday.value) + 1;
	var ar_month = parseInt(thisform.frommonth.value);
	var ar_year = parseInt(thisform.fromyear.value);
			
	var de_day = parseInt(thisform.today.value) + 1;
	var de_month = parseInt(thisform.tomonth.value);
	var de_year = parseInt(thisform.toyear.value);
	
	if(de_year < ar_year) {
		check_departure();
	} else {
		if(de_year == ar_year) {
			if(de_month < ar_month) {
				check_departure();
			} else {
				if(de_month == ar_month) {
					if(de_day <= ar_day) {
						check_departure();
					}
				}
			}
		}
	}
}

function takeYear(theDate)
{
	x = theDate.getYear();
	var y = x % 100;
	y += (y < 38) ? 2000 : 1900;
	return y;
}

// popup for quicksearch flash
function popup(url)
{
	fbOpenWindow("", url, "", 1000, 700);
	//window.open(url,"","toolbar=no,width=1000,height=700,menubar=no,scrollbars=yes,resizable=yes,alwaysRaised=yes");
}

// ages chidren for quick form
function ageschildren()
{
	var age = '';
	var obj1 = '';
	var n = document.idForm.enfantresa.options[document.idForm.enfantresa.selectedIndex].value;
	
	for (i = 1; i<=n; i++)
	{
		if (i==1)
		{
			obj1 = document.getElementById("agechild"+i);
			age += obj1.options[obj1.selectedIndex].value;
		}
		else
		{
			obj1 = document.getElementById("agechild"+i);
			age += ';';
			age += obj1.options[obj1.selectedIndex].value;
		}
	}
	document.idForm.agesval.value = age;
}


;
var FBRESA = "http://www.fastbookings.biz/DIRECTORY/";
var FB_nb_day_delay = 0;
var FB_useGoogleAnalytics = false;;
/**
 * JavaScript implementation for FastBooking.
 */
$(function() {
  $('#check-submit-button input').click(function() {
    if ($('select[name=hid]').val() == "") {
      alert('You need to select a property.');
      return false;
    }
    
    // Property option.
    $('input[name=Clusternames]').val($('select[name=hid]').val());
    $('input[name=Hotelnames]').val($('select[name=hid]').val());
    
    // Language option.
    $('input[name=langue]').val($('select[name=lang]').val());

    var dateFrom = $('input#date-booking-from').val().split('-');
    var dateTo = $('input#date-booking-to').val().split('-');

    $('input[name=fromday]').val(dateFrom[0]);
    $('input[name=frommonth]').val(dateFrom[1]);
    $('input[name=fromyear]').val(dateFrom[2]);

    $('input[name=today]').val(dateTo[0]);
    $('input[name=tomonth]').val(dateTo[1]);
    $('input[name=toyear]').val(dateTo[2]);

    hhotelDispoprice(document.forms["idForm"]);
  });
});
;
// $Id$

//Cufon.replace('h1', {fontFamily: ''});

$(function() {
  // Initialise Superfish drop down menu.
  $('#primary ul').superfish({
    delay: 600,  // 1000 miliseconds is 1 second, 600 is 0.6 seconds delay.
    animation: {opacity: 'toggle'},  // Same as jQuery's .animate() function. See jQuery's API for more animations.
    speed: 'normal',  // 'slow', 'normal', 'fast'.
    autoArrows: false,
    dropShadows: false,
    disableHI: true  // Set to true to disable hoverIntent detection or delayed event trigger.
  });

  // Search box focus and blur events.
  var searchThemeFormText = Drupal.t('Search this site');
  $('#search-theme-form .form-text').val(searchThemeFormText);
  $('#search-theme-form .form-text').focus(function() {
    if ($(this).val() == searchThemeFormText) $(this).val('');
    $(this).css('color', '#333');
  });
  $('#search-theme-form .form-text').blur(function() {
    if ($(this).val() == '') $(this).val(searchThemeFormText);
    $(this).css('color', '#a5a5a5');
  });
  // Search box do not search with the <searchThemeFormText> variable string.
  $('#search-theme-form').submit(function(e) {
    if ($(this).find('.form-text').val() == searchThemeFormText) {
      $(this).find('.form-text').focus().select();
      return false;
    } else {
      return true;
    }
  });
  
  // Cufon replacement
  //Cufon.replace('#sidebar-left h2.block-subject', { fontFamily: 'Adobe Garamond Pro' });
  //Cufon.replace('#content_top h2.block-subject', { fontFamily: 'Adobe Garamond Pro' });
  
  // Pop-up for newsletter
  $(".popup").popupwindow();
  
  // Tabs
  $('#tabs').tabs();
  
  // Datepicker
  $('.datepicker').datepicker({
    dateFormat: 'd-m-yy',
    changeMonth: true,
    changeYear: true,
    onSelect: function(selectedDate) {
      $('#to').val(selectedDate);
    }
  });
  
  // Sliders
  var total = $('#block-block-2 .block-content img').length;
  var rand = Math.floor(Math.random()*total);
  $('#block-block-2 .block-content').nivoSlider({
    startSlide:rand,
    effect:'fade',
    pauseTime:3000,
    directionNav:false,
    controlNav:false,
    pauseOnHover:false
  });
  var total = $('#block-block-17 .block-content img').length;
  var rand = Math.floor(Math.random()*total);
  $('#block-block-17 .block-content').nivoSlider({
    startSlide:rand,
    effect:'fade',
    pauseTime:3000,
    directionNav:false,
    controlNav:false,
    pauseOnHover:false
  });
  var total = $('#block-block-18 .block-content img').length;
  var rand = Math.floor(Math.random()*total);
  $('#block-block-18 .block-content').nivoSlider({
    startSlide:rand,
    effect:'fade',
    pauseTime:3000,
    directionNav:false,
    controlNav:false,
    pauseOnHover:false
  });
  
  $('.view-real-estate .item-list').jcarousel({
    scroll: 1,
    wrap: 'last',
    initCallback: re_new_featured_initCallback
  })
  
  function re_new_featured_initCallback(carousel) {
    // Disable autoscrolling if the user clicks the prev or next button.
    carousel.buttonNext.bind('click', function() {
      carousel.startAuto(0);
    });

    carousel.buttonPrev.bind('click', function() {
      carousel.startAuto(0);
    });

    // Pause autoscrolling if the user moves with the cursor over the clip.
    carousel.clip.hover(function() {
      carousel.stopAuto();
    }, function() {
      carousel.startAuto();
    });
  };
  
  $('#re-gallery li').each(function(idx) {
      $(this).data('index', (++idx));
  });

  $('#re-gallery').jcarousel({
      vertical: true,
      scroll: 1,
      initCallback: initCallbackFunction
  })
  
  function initCallbackFunction(carousel) {
      $('#img').bind('image-loaded',function() {
          var idx =  $('#re-gallery li.active').data('index') - 2;
          
          carousel.scroll(idx);
          return false;
      });
  };

  // load and fade-in thumbnails
  /*$('#re-gallery li img').css('opacity', 0).each(function() {    
      if (this.complete || this.readyState == 'complete') { $(this).animate({'opacity': 1}, 300) } 
      else { $(this).load(function() { $(this).animate({'opacity': 1}, 300) }); }
  });*/

  
  $('#re-gallery').galleria({
    thumbFit: false,
    thumbCrop: false,
    
    // #img is the empty div which holds full size images
    insert: '#img',
    
    // enable history plugin
    history: true,
    
    // function fired when the image is displayed
    onImage: function(image, caption, thumb) {        
        // fade in the image 
        image.hide().fadeIn(500);
        
        // animate active thumbnail's opacity to 1, other list elements to 0.6
        thumb.parent().fadeTo(200, 1).siblings().fadeTo(200, 0.6)
        
        // $('#img').data('currentIndex', $li.data('index')).trigger('image-loaded')
        
        $('#img')
            .trigger('image-loaded')
            .hover(
                function(){ $('#img .caption').stop().animate({height: 50}, 250) },
                function(){ 
                    if (!$('#show-caption').is(':checked')) {
                        $('#img .caption').stop().animate({height: 0}, 250) 
                    }
                }
            );
    },
    
    // function similar to onImage, but fired when thumbnail is displayed
    onThumb: function(thumb) {
        var $li = thumb.parent(),
            opacity = $li.is('.active') ? 1 : 0.6;
        
        // hover effects for list elements
        $li.hover(
            function() { $li.fadeTo(200, 1); },
            function() { $li.not('.active').fadeTo(200, opacity); }
        )
    }        
  }).find('li:first').addClass('active') // display first image when Galleria is loaded

  // For New/Featured properties
  $("#block-views-real_estate-block_1").css("display", "none");
  $("#re-featured-properties").addClass("active");  
  $(".re-navigation > li > a").click(function(e){  
    switch(e.target.id){  
      case "re-new-properties":  
        //change status &amp;amp;amp; style menu  
        $("#re-new-properties-list").addClass("active");
        $("#re-new-properties").addClass("active"); 
        $("#re-featured-properties-list").removeClass("active");
        $("#re-featured-properties").removeClass("active"); 
        //display selected division, hide others  
        $("#block-views-real_estate-block_1").fadeIn();  
        $("#block-views-real_estate-block_2").css("display", "none");  
        break;  
      case "re-featured-properties":  
        //change status &amp;amp;amp; style menu  
        $("#re-new-properties").removeClass("active");  
        $("#re-new-properties-list").removeClass("active");  
        $("#re-featured-properties").addClass("active");   
        $("#re-featured-properties-list").addClass("active");   
        //display selected division, hide others  
        $("#block-views-real_estate-block_1").css("display", "none");  
        $("#block-views-real_estate-block_2").fadeIn();  
        break;  
    }  
    //alert(e.target.id);  
    return false;  
  });  
});
;

