/*
 * 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>';
  }
};
;
// ColorBox v1.3.10 - a full featured, light-weight, customizable lightbox based on jQuery 1.3
// Copyright (c) 2010 Jack Moore - jack@colorpowered.com
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
(function(c,lb){var v="none",N="LoadedContent",b=false,x="resize.",o="y",r="auto",f=true,u="click",O="nofollow",q="on",m="x";function e(a,b){a=a?' id="'+j+a+'"':"";b=b?' style="'+b+'"':"";return c("<div"+a+b+"/>")}function p(a,b){b=b===m?n.width():n.height();return typeof a==="string"?Math.round(a.match(/%/)?b/100*parseInt(a,10):parseInt(a,10)):a}function U(b,d){b=c.isFunction(b)?b.call(d):b;return a.photo||b.match(/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i)}function eb(a){for(var b in a)if(c.isFunction(a[b])&&b.substring(0,2)!==q)a[b]=a[b].call(l);a.rel=a.rel||l.rel||O;a.href=a.href||c(l).attr("href");a.title=a.title||l.title;return a}function y(b,a){a&&a.call(l);c.event.trigger(b)}function mb(){var c,b=j+"Slideshow_",e,f;if(a.slideshow&&i[1]){e=function(){z.text(a.slideshowStop).bind(V,function(){c=setTimeout(d.next,a.slideshowSpeed)}).bind(W,function(){clearTimeout(c)}).one(u,function(){f()});h.removeClass(b+"off").addClass(b+q)};f=function(){clearTimeout(c);z.text(a.slideshowStart).unbind(V+" "+W).one(u,function(){e();c=setTimeout(d.next,a.slideshowSpeed)});h.removeClass(b+q).addClass(b+"off")};z.bind(fb,function(){z.unbind();clearTimeout(c);h.removeClass(b+"off "+b+q)});a.slideshowAuto?e():f()}}function gb(b){if(!P){l=b;a=eb(c.extend({},c.data(l,s)));i=c(l);g=0;if(a.rel!==O){i=c("."+I).filter(function(){return (c.data(this,s).rel||this.rel)===a.rel});g=i.index(l);if(g===-1){i=i.add(l);g=i.length-1}}if(!w){w=H=f;h.show();X=l;try{X.blur()}catch(e){}A.css({opacity:+a.opacity,cursor:a.overlayClose?"pointer":r}).show();a.w=p(a.initialWidth,m);a.h=p(a.initialHeight,o);d.position(0);Y&&n.bind(x+Q+" scroll."+Q,function(){A.css({width:n.width(),height:n.height(),top:n.scrollTop(),left:n.scrollLeft()})}).trigger("scroll."+Q);y(hb,a.onOpen);Z.add(J).add(K).add(z).add(ab).hide();bb.html(a.close).show()}d.load(f)}}var ib={transition:"elastic",speed:300,width:b,initialWidth:"600",innerWidth:b,maxWidth:b,height:b,initialHeight:"450",innerHeight:b,maxHeight:b,scalePhotos:f,scrolling:f,inline:b,html:b,iframe:b,photo:b,href:b,title:b,rel:b,opacity:.9,preloading:f,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:b,loop:f,slideshow:b,slideshowAuto:f,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",onOpen:b,onLoad:b,onComplete:b,onCleanup:b,onClosed:b,overlayClose:f,escKey:f,arrowKey:f},s="colorbox",j="cbox",hb=j+"_open",W=j+"_load",V=j+"_complete",jb=j+"_cleanup",fb=j+"_closed",R=j+"_purge",kb=j+"_loaded",D=c.browser.msie&&!c.support.opacity,Y=D&&c.browser.version<7,Q=j+"_IE6",A,h,E,t,cb,db,T,S,i,n,k,L,M,ab,Z,z,K,J,bb,F,G,B,C,l,X,g,a,w,H,P=b,d,I=j+"Element";d=c.fn[s]=c[s]=function(b,e){var a=this,d;if(!a[0]&&a.selector)return a;b=b||{};if(e)b.onComplete=e;if(!a[0]||a.selector===undefined){a=c("<a/>");b.open=f}a.each(function(){c.data(this,s,c.extend({},c.data(this,s)||ib,b));c(this).addClass(I)});d=b.open;if(c.isFunction(d))d=d.call(a);d&&gb(a[0]);return a};d.init=function(){var l="hover",m="clear:left";n=c(lb);h=e().attr({id:s,"class":D?j+"IE":""});A=e("Overlay",Y?"position:absolute":"").hide();E=e("Wrapper");t=e("Content").append(k=e(N,"width:0; height:0; overflow:hidden"),M=e("LoadingOverlay").add(e("LoadingGraphic")),ab=e("Title"),Z=e("Current"),K=e("Next"),J=e("Previous"),z=e("Slideshow").bind(hb,mb),bb=e("Close"));E.append(e().append(e("TopLeft"),cb=e("TopCenter"),e("TopRight")),e(b,m).append(db=e("MiddleLeft"),t,T=e("MiddleRight")),e(b,m).append(e("BottomLeft"),S=e("BottomCenter"),e("BottomRight"))).children().children().css({"float":"left"});L=e(b,"position:absolute; width:9999px; visibility:hidden; display:none");c("body").prepend(A,h.append(E,L));t.children().hover(function(){c(this).addClass(l)},function(){c(this).removeClass(l)}).addClass(l);F=cb.height()+S.height()+t.outerHeight(f)-t.height();G=db.width()+T.width()+t.outerWidth(f)-t.width();B=k.outerHeight(f);C=k.outerWidth(f);h.css({"padding-bottom":F,"padding-right":G}).hide();K.click(d.next);J.click(d.prev);bb.click(d.close);t.children().removeClass(l);c("."+I).live(u,function(a){if(!(a.button!==0&&typeof a.button!=="undefined"||a.ctrlKey||a.shiftKey||a.altKey)){a.preventDefault();gb(this)}});A.click(function(){a.overlayClose&&d.close()});c(document).bind("keydown",function(b){if(w&&a.escKey&&b.keyCode===27){b.preventDefault();d.close()}if(w&&a.arrowKey&&!H&&i[1])if(b.keyCode===37&&(g||a.loop)){b.preventDefault();J.click()}else if(b.keyCode===39&&(g<i.length-1||a.loop)){b.preventDefault();K.click()}})};d.remove=function(){h.add(A).remove();c("."+I).die(u).removeData(s).removeClass(I)};d.position=function(f,c){function d(a){cb[0].style.width=S[0].style.width=t[0].style.width=a.style.width;M[0].style.height=M[1].style.height=t[0].style.height=db[0].style.height=T[0].style.height=a.style.height}var e,i=Math.max(document.documentElement.clientHeight-a.h-B-F,0)/2+n.scrollTop(),g=Math.max(n.width()-a.w-C-G,0)/2+n.scrollLeft();e=h.width()===a.w+C&&h.height()===a.h+B?0:f;E[0].style.width=E[0].style.height="9999px";h.dequeue().animate({width:a.w+C,height:a.h+B,top:i,left:g},{duration:e,complete:function(){d(this);H=b;E[0].style.width=a.w+C+G+"px";E[0].style.height=a.h+B+F+"px";c&&c()},step:function(){d(this)}})};d.resize=function(b){if(w){b=b||{};if(b.width)a.w=p(b.width,m)-C-G;if(b.innerWidth)a.w=p(b.innerWidth,m);k.css({width:a.w});if(b.height)a.h=p(b.height,o)-B-F;if(b.innerHeight)a.h=p(b.innerHeight,o);if(!b.innerHeight&&!b.height){b=k.wrapInner("<div style='overflow:auto'></div>").children();a.h=b.height();b.replaceWith(b.children())}k.css({height:a.h});d.position(a.transition===v?0:a.speed)}};d.prep=function(o){var f="hidden";function m(t){var m,r,f,o,e=i.length,q=a.loop;d.position(t,function(){if(w){D&&p&&k.fadeIn(100);k.show();y(kb);ab.show().html(a.title);if(e>1){Z.html(a.current.replace(/\{current\}/,g+1).replace(/\{total\}/,e)).show();K[q||g<e-1?"show":"hide"]().html(a.next);J[q||g?"show":"hide"]().html(a.previous);m=g?i[g-1]:i[e-1];f=g<e-1?i[g+1]:i[0];if(a.slideshow){z.show();g===e-1&&!q&&h.is("."+j+"Slideshow_on")&&z.click()}if(a.preloading){o=c.data(f,s).href||f.href;r=c.data(m,s).href||m.href;if(U(o,f))c("<img/>")[0].src=o;if(U(r,m))c("<img/>")[0].src=r}}M.hide();if(a.transition==="fade")h.fadeTo(l,1,function(){if(D)h[0].style.filter=b});else if(D)h[0].style.filter=b;n.bind(x+j,function(){d.position(0)});y(V,a.onComplete)}})}if(w){var p,l=a.transition===v?0:a.speed;n.unbind(x+j);k.remove();k=e(N).html(o);k.hide().appendTo(L.show()).css({width:function(){a.w=a.w||k.width();a.w=a.mw&&a.mw<a.w?a.mw:a.w;return a.w}(),overflow:a.scrolling?r:f}).css({height:function(){a.h=a.h||k.height();a.h=a.mh&&a.mh<a.h?a.mh:a.h;return a.h}()}).prependTo(t);L.hide();c("#"+j+"Photo").css({cssFloat:v,marginLeft:r,marginRight:r});Y&&c("select").not(h.find("select")).filter(function(){return this.style.visibility!==f}).css({visibility:f}).one(jb,function(){this.style.visibility="inherit"});a.transition==="fade"?h.fadeTo(l,0,function(){m(0)}):m(l)}};d.load=function(t){var n,b,r,q=d.prep;H=f;l=i[g];t||(a=eb(c.extend({},c.data(l,s))));y(R);y(W,a.onLoad);a.h=a.height?p(a.height,o)-B-F:a.innerHeight&&p(a.innerHeight,o);a.w=a.width?p(a.width,m)-C-G:a.innerWidth&&p(a.innerWidth,m);a.mw=a.w;a.mh=a.h;if(a.maxWidth){a.mw=p(a.maxWidth,m)-C-G;a.mw=a.w&&a.w<a.mw?a.w:a.mw}if(a.maxHeight){a.mh=p(a.maxHeight,o)-B-F;a.mh=a.h&&a.h<a.mh?a.h:a.mh}n=a.href;M.show();if(a.inline){e().hide().insertBefore(c(n)[0]).one(R,function(){c(this).replaceWith(k.children())});q(c(n))}else if(a.iframe){h.one(kb,function(){var b=c("<iframe name='"+(new Date).getTime()+"' frameborder=0"+(a.scrolling?"":" scrolling='no'")+(D?" allowtransparency='true'":"")+" style='width:100%; height:100%; border:0; display:block;'/>");b[0].src=a.href;b.appendTo(k).one(R,function(){b[0].src="about:blank"})});q(" ")}else if(a.html)q(a.html);else if(U(n,l)){b=new Image;b.onload=function(){var e;b.onload=null;b.id=j+"Photo";c(b).css({border:v,display:"block",cssFloat:"left"});if(a.scalePhotos){r=function(){b.height-=b.height*e;b.width-=b.width*e};if(a.mw&&b.width>a.mw){e=(b.width-a.mw)/b.width;r()}if(a.mh&&b.height>a.mh){e=(b.height-a.mh)/b.height;r()}}if(a.h)b.style.marginTop=Math.max(a.h-b.height,0)/2+"px";i[1]&&(g<i.length-1||a.loop)&&c(b).css({cursor:"pointer"}).click(d.next);if(D)b.style.msInterpolationMode="bicubic";setTimeout(function(){q(b)},1)};setTimeout(function(){b.src=n},1)}else e().appendTo(L).load(n,function(c,a,b){q(a==="error"?"Request unsuccessful: "+b.statusText:this)})};d.next=function(){if(!H){g=g<i.length-1?g+1:0;d.load()}};d.prev=function(){if(!H){g=g?g-1:i.length-1;d.load()}};d.close=function(){if(w&&!P){P=f;w=b;y(jb,a.onCleanup);n.unbind("."+j+" ."+Q);A.fadeTo("fast",0);h.stop().fadeTo("fast",0,function(){y(R);k.remove();h.add(A).css({opacity:1,cursor:r}).hide();try{X.focus()}catch(c){}setTimeout(function(){P=b;y(fb,a.onClosed)},1)})}};d.element=function(){return c(l)};d.settings=ib;c(d.init)})(jQuery,this);
(function ($) {

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

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

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

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

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

Drupal.behaviors.initColorboxInline = function (context) {
  var settings = Drupal.settings.colorbox;
  $.urlParam = function(name, url){
    if (name == 'fragment') {
      var results = new RegExp('(#[^&#]*)').exec(url);
    }
    else {
      var results = new RegExp('[\\?&]' + name + '=([^&#]*)').exec(url);
    }
    if (!results) { return ''; }
    return results[1] || '';
  };
  $('a, area, input', context).filter('.colorbox-inline:not(.initColorboxInline-processed)').addClass('initColorboxInline-processed').colorbox({
    transition:settings.transition,
    speed:settings.speed,
    opacity:settings.opacity,
    close:settings.close,
    overlayClose:settings.overlayClose,
    maxWidth:settings.maxWidth,
    maxHeight:settings.maxHeight,
    innerWidth:function(){
      return $.urlParam('width', $(this).attr('href'));
    },
    innerHeight:function(){
      return $.urlParam('height', $(this).attr('href'));
    },
    title:function(){
      return $.urlParam('title', $(this).attr('href'));
    },
    iframe:function(){
      return $.urlParam('iframe', $(this).attr('href'));
    },
    inline:function(){
      return $.urlParam('inline', $(this).attr('href'));
    },
    href:function(){
      return $.urlParam('fragment', $(this).attr('href'));
    }
  });
};

})(jQuery);
;
/* $Id: img_assist.js,v 1.6.4.2 2008/07/22 23:08:13 sun Exp $ */

Drupal.behaviors.img_assist = function(context) {
  $('textarea.img_assist:not(.img_assist-processed)', context).each(function() {
    // Drupal's teaser behavior is a destructive one and needs to be run first.
    if ($(this).is('textarea.teaser:not(.teaser-processed)')) {
      Drupal.behaviors.teaser(context);  
    }
    $(this).addClass('img_assist-processed').parent().append(Drupal.theme('img_assist_link', this));
  });
}

Drupal.theme.prototype.img_assist_link = function(el) {
  var html = '<div class="img_assist-button">', link = Drupal.t('Add image');
  if (Drupal.settings.img_assist.link == 'icon') {
    link = '<img src="'+ Drupal.settings.basePath + Drupal.settings.img_assist.icon +'" alt="'+ link +'" title="'+ link +'" />';
  }
  html += '<a href="'+ Drupal.settings.basePath +'index.php?q=img_assist/load/textarea&textarea='+ el.name +'" class="img_assist-link" id="img_assist-link-'+ el.id +'" title="'+ Drupal.t('Click here to add images') +'" onclick="window.open(this.href, \'img_assist_link\', \'width=600,height=350,scrollbars=yes,status=yes,resizable=yes,toolbar=no,menubar=no\'); return false;">'+ link +'</a>';
  html += '</div>';
  return html;
}

function launch_popup(nid, mw, mh) {
  var ox = mw;
  var oy = mh;
  if((ox>=screen.width) || (oy>=screen.height)) {
    var ox = screen.width-150;
    var oy = screen.height-150;
    var winx = (screen.width / 2)-(ox / 2);
    var winy = (screen.height / 2)-(oy / 2);
    var use_scrollbars = 1;
  }
  else {
    var winx = (screen.width / 2)-(ox / 2);
    var winy = (screen.height / 2)-(oy / 2);
    var use_scrollbars = 0;
  }
  var win = window.open(Drupal.settings.basePath + 'index.php?q=img_assist/popup/' + nid, 'imagev', 'height='+oy+'-10,width='+ox+',top='+winy+',left='+winx+',scrollbars='+use_scrollbars+',resizable');
}

;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var W=L.DOM={ready:(function(){var b=false,d={loaded:1,complete:1};var a=[],c=function(){if(b){return}b=true;for(var e;e=a.shift();e()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",c,false);window.addEventListener("pageshow",c,false)}if(!window.opera&&document.readyState){(function(){d[document.readyState]?c():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");c()}catch(f){setTimeout(arguments.callee,1)}})()}P(window,"load",c);return function(e){if(!arguments.length){c()}else{b?e():a.push(e)}}})()};var M=L.CSS={Size:function(b,a){this.value=parseFloat(b);this.unit=String(b).match(/[a-z%]*$/)[0]||"px";this.convert=function(c){return c/a*this.value};this.convertFrom=function(c){return c/this.value*a};this.toString=function(){return this.value+this.unit}},color:I(function(b){var a={};a.color=b.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(d,c,e){a.opacity=parseFloat(e);return"rgb("+c+")"});return a}),getStyle:function(b){var a=document.defaultView;if(a&&a.getComputedStyle){return new A(a.getComputedStyle(b,null))}if(b.currentStyle){return new A(b.currentStyle)}return new A(b.style)},gradient:I(function(e){var f={id:e,type:e.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},b=e.substr(e.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var d=0,a=b.length,c;d<a;++d){c=b[d].split("=",2).reverse();f.stops.push([c[1]||d/(a-1),c[0]])}return f}),quotedList:I(function(d){var c=[],b=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,a;while(a=b.exec(d)){c.push(a[3]||a[1])}return c}),recognizesMedia:I(function(g){var d=document.createElement("style"),c,b,a;d.type="text/css";d.media=g;try{d.appendChild(document.createTextNode("/**/"))}catch(f){}b=F("head")[0];b.insertBefore(d,b.firstChild);c=(d.sheet||d.styleSheet);a=c&&!c.disabled;b.removeChild(d);return a}),supports:function(c,b){var a=document.createElement("span").style;if(a[c]===undefined){return false}a[c]=b;return a[c]===b},textAlign:function(d,c,a,b){if(c.get("textAlign")=="right"){if(a>0){d=" "+d}}else{if(a<b-1){d+=" "}}return d},textDecoration:function(f,e){if(!e){e=this.getStyle(f)}var b={underline:null,overline:null,"line-through":null};for(var a=f;a.parentNode&&a.parentNode.nodeType==1;){var d=true;for(var c in b){if(!J(b,c)||b[c]){continue}if(e.get("textDecoration").indexOf(c)!=-1){b[c]=e.get("color")}d=false}if(d){break}e=this.getStyle(a=a.parentNode)}return b},textShadow:I(function(e){if(e=="none"){return null}var d=[],f={},a,b=0;var c=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(a=c.exec(e)){if(a[0]==","){d.push(f);f={},b=0}else{if(a[1]){f.color=a[1]}else{f[["offX","offY","blur"][b++]]=a[2]}}}d.push(f);return d}),textTransform:function(b,a){return b[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[a.get("textTransform")]||"toString"]()},whiteSpace:(function(){var a={inline:1,"inline-block":1,"run-in":1};return function(d,b,c){if(a[b.get("display")]){return d}if(!c.previousSibling){d=d.replace(/^\s+/,"")}if(!c.nextSibling){d=d.replace(/\s+$/,"")}return d}})()};M.ready=(function(){var a=!M.recognizesMedia("all"),d=false;var c=[],g=function(){a=true;for(var j;j=c.shift();j()){}};var h=F("link"),i=F("style");function b(j){return j.disabled||f(j.sheet,j.media||"screen")}function f(m,p){if(!M.recognizesMedia(p||"all")){return true}if(!m||m.disabled){return false}try{var q=m.cssRules,o;if(q){search:for(var k=0,j=q.length;o=q[k],k<j;++k){switch(o.type){case 2:break;case 3:if(!f(o.styleSheet,o.media.mediaText)){return false}break;default:break search}}}}catch(n){}return true}function e(){if(document.createStyleSheet){return true}var k,j;for(j=0;k=h[j];++j){if(k.rel.toLowerCase()=="stylesheet"&&!b(k)){return false}}for(j=0;k=i[j];++j){if(!b(k)){return false}}return true}W.ready(function(){if(!d){d=M.getStyle(document.body).isUsable()}if(a||(d&&e())){g()}else{setTimeout(arguments.callee,10)}});return function(j){if(a){j()}else{c.push(j)}}})();function R(b){var a=this.face=b.face;this.glyphs=b.glyphs;this.w=b.w;this.baseSize=parseInt(a["units-per-em"],10);this.family=a["font-family"].toLowerCase();this.weight=a["font-weight"];this.style=a["font-style"]||"normal";this.viewBox=(function(){var d=a.bbox.split(/\s+/);var c={minX:parseInt(d[0],10),minY:parseInt(d[1],10),maxX:parseInt(d[2],10),maxY:parseInt(d[3],10)};c.width=c.maxX-c.minX,c.height=c.maxY-c.minY;c.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return c})();this.ascent=-parseInt(a.ascent,10);this.descent=-parseInt(a.descent,10);this.height=-this.ascent+this.descent}function E(){var b={},a={oblique:"italic",italic:"oblique"};this.add=function(c){(b[c.style]||(b[c.style]={}))[c.weight]=c};this.get=function(g,h){var f=b[g]||b[a[g]]||b.normal||b.italic||b.oblique;if(!f){return null}h={normal:400,bold:700}[h]||parseInt(h,10);if(f[h]){return f[h]}var d={1:1,99:0}[h%100],j=[],e,c;if(d===undefined){d=h>400}if(h==500){h=400}for(var i in f){if(!J(f,i)){continue}i=parseInt(i,10);if(!e||i<e){e=i}if(!c||i>c){c=i}j.push(i)}if(h<e){h=e}if(h>c){h=c}j.sort(function(l,k){return(d?(l>h&&k>h)?l<k:l>k:(l<h&&k<h)?l>k:l<k)?-1:1});return f[j[0]]}}function Q(){function c(e,f){if(e.contains){return e.contains(f)}return e.compareDocumentPosition(f)&16}function a(g){var f=g.relatedTarget;if(!f||c(this,f)){return}b(this)}function d(f){b(this)}function b(e){setTimeout(function(){L.replace(e,D.get(e).options,true)},10)}this.attach=function(e){if(e.onmouseenter===undefined){P(e,"mouseover",a);P(e,"mouseout",a)}else{P(e,"mouseenter",d);P(e,"mouseleave",d)}}}function T(){var b=[],c={};function a(g){var d=[],f;for(var e=0;f=g[e];++e){d[e]=b[c[f]]}return d}this.add=function(e,d){c[e]=b.push(d)-1};this.repeat=function(){var d=arguments.length?a(arguments):b,e;for(var f=0;e=d[f++];){L.replace(e[0],e[1],true)}}}function Z(){var c={},a=0;function b(d){return d.cufid||(d.cufid=++a)}this.get=function(d){var e=b(d);return c[e]||(c[e]={})}}function A(a){var c={},b={};this.extend=function(d){for(var e in d){if(J(d,e)){c[e]=d[e]}}return this};this.get=function(d){return c[d]!=undefined?c[d]:a[d]};this.getSize=function(e,d){return b[e]||(b[e]=new M.Size(this.get(e),d))};this.isUsable=function(){return !!a}}function P(b,a,c){if(b.addEventListener){b.addEventListener(a,c,false)}else{if(b.attachEvent){b.attachEvent("on"+a,function(){return c.call(b,window.event)})}}}function U(b,a){var c=D.get(b);if(c.options){return b}if(a.hover&&a.hoverables[b.nodeName.toLowerCase()]){B.attach(b)}c.options=a;return b}function I(a){var b={};return function(c){if(!J(b,c)){b[c]=a.apply(null,arguments)}return b[c]}}function C(f,e){if(!e){e=M.getStyle(f)}var b=M.quotedList(e.get("fontFamily").toLowerCase()),d;for(var c=0,a=b.length;c<a;++c){d=b[c];if(H[d]){return H[d].get(e.get("fontStyle"),e.get("fontWeight"))}}return null}function F(a){return document.getElementsByTagName(a)}function J(b,a){return b.hasOwnProperty(a)}function G(){var a={},c,e;for(var d=0,b=arguments.length;c=arguments[d],d<b;++d){for(e in c){if(J(c,e)){a[e]=c[e]}}}return a}function N(d,n,b,o,e,c){var m=o.separate;if(m=="none"){return Y[o.engine].apply(null,arguments)}var k=document.createDocumentFragment(),g;var h=n.split(O[m]),a=(m=="words");if(a&&S){if(/^\s/.test(n)){h.unshift("")}if(/\s$/.test(n)){h.push("")}}for(var j=0,f=h.length;j<f;++j){g=Y[o.engine](d,a?M.textAlign(h[j],b,j,f):h[j],b,o,e,c,j<f-1);if(g){k.appendChild(g)}}return k}function K(b,j){var c,a,d,g,f,i;for(d=U(b,j).firstChild;d;d=f){g=d.nodeType;f=d.nextSibling;i=false;if(g==1){if(!d.firstChild){continue}if(!/cufon/.test(d.className)){arguments.callee(d,j);continue}else{i=true}}else{if(g!=3){continue}}if(!a){a=M.getStyle(b).extend(j)}if(!c){c=C(b,a)}if(!c){continue}if(i){Y[j.engine](c,null,a,j,d,b);continue}var h=M.whiteSpace(d.data,a,d);if(h===""){continue}var e=N(c,h,a,j,d,b);if(e){d.parentNode.replaceChild(e,d)}else{d.parentNode.removeChild(d)}}}var S=" ".split(/\s+/).length==0;var D=new Z();var B=new Q();var X=new T();var Y={},H={},V={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(a){return jQuery(a)})||(window.dojo&&dojo.query)||(window.$$&&function(a){return $$(a)})||(window.$&&function(a){return $(a)})||(document.querySelectorAll&&function(a){return document.querySelectorAll(a)})||F),separate:"words",textShadow:"none"};var O={words:/[^\S\u00a0]+/,characters:""};L.now=function(){W.ready();return L};L.refresh=function(){X.repeat.apply(X,arguments);return L};L.registerEngine=function(b,a){if(!a){return L}Y[b]=a;return L.set("engine",b)};L.registerFont=function(c){var a=new R(c),b=a.family;if(!H[b]){H[b]=new E()}H[b].add(a);return L.set("fontFamily",'"'+b+'"')};L.replace=function(c,b,a){b=G(V,b);if(!b.engine){return L}if(typeof b.textShadow=="string"){b.textShadow=M.textShadow(b.textShadow)}if(typeof b.color=="string"&&/^-/.test(b.color)){b.textGradient=M.gradient(b.color)}if(!a){X.add(c,arguments)}if(c.nodeType||typeof c=="string"){c=[c]}M.ready(function(){for(var e=0,d=c.length;e<d;++e){var f=c[e];if(typeof f=="string"){L.replace(b.selector(f),b,true)}else{K(f,b)}}});return L};L.set=function(a,b){V[a]=b;return L};return L})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode((".cufon-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(E?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;}"+(A?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(AD,Z,u,V,d,AE){var I=(Z===null);if(I){Z=d.alt}var b=AD.viewBox;var K=u.getSize("fontSize",AD.baseSize);var s=u.get("letterSpacing");s=(s=="normal")?0:K.convertFrom(parseInt(s,10));var c=0,t=0,r=0,X=0;var a=V.textShadow,p=[];if(a){for(var AC=a.length;AC--;){var h=a[AC];var o=K.convertFrom(parseFloat(h.offX));var n=K.convertFrom(parseFloat(h.offY));p[AC]=[o,n];if(n<c){c=n}if(o>t){t=o}if(n>r){r=n}if(o<X){X=o}}}var AH=Cufon.CSS.textTransform(Z,u).split(""),T;var J=AD.glyphs,W,M,w;var G=0,P,f=[];for(var AC=0,AA=0,v=AH.length;AC<v;++AC){W=J[T=AH[AC]]||AD.missingGlyph;if(!W){continue}if(M){G-=w=M[T]||0;f[AA-1]-=w}G+=P=f[AA++]=~~(W.w||AD.w)+s;M=W.k}if(P===undefined){return null}t+=b.width-P;X+=b.minX;var U,L;if(I){U=d;L=d.firstChild}else{U=document.createElement("span");U.className="cufon cufon-canvas";U.alt=Z;L=document.createElement("canvas");U.appendChild(L);if(V.printable){var z=document.createElement("span");z.className="cufon-alt";z.appendChild(document.createTextNode(Z));U.appendChild(z)}}var AI=U.style;var m=L.style;var H=K.convert(b.height);var AG=Math.ceil(H);var q=AG/H;L.width=Math.ceil(K.convert(G*q+t-X));L.height=Math.ceil(K.convert(b.height-c+r));c+=b.minY;m.top=Math.round(K.convert(c-AD.ascent))+"px";m.left=Math.round(K.convert(X))+"px";var S=Math.ceil(K.convert(G*q))+"px";if(A){AI.width=S;AI.height=K.convert(AD.height)+"px"}else{AI.paddingLeft=S;AI.paddingBottom=(K.convert(AD.height)-1)+"px"}var AF=L.getContext("2d"),e=H/b.height;AF.scale(e,e*q);AF.translate(-X,-c);AF.lineWidth=AD.face["underline-thickness"];AF.save();function N(i,g){AF.strokeStyle=g;AF.beginPath();AF.moveTo(0,i);AF.lineTo(G,i);AF.stroke()}var O=V.enableTextDecoration?Cufon.CSS.textDecoration(AE,u):{};if(O.underline){N(-AD.face["underline-position"],O.underline)}if(O.overline){N(AD.ascent,O.overline)}function AB(){AF.scale(q,1);for(var x=0,k=0,g=AH.length;x<g;++x){var y=J[AH[x]]||AD.missingGlyph;if(!y){continue}if(y.d){AF.beginPath();if(y.code){C(y.code,AF)}else{y.code=D("m"+y.d,AF)}AF.fill()}AF.translate(f[k++],0)}AF.restore()}if(a){for(var AC=a.length;AC--;){var h=a[AC];AF.save();AF.fillStyle=h.color;AF.translate.apply(AF,p[AC]);AB()}}var R=V.textGradient;if(R){var Y=R.stops,Q=AF.createLinearGradient(0,b.minY,0,b.maxY);for(var AC=0,v=Y.length;AC<v;++AC){Q.addColorStop.apply(Q,Y[AC])}AF.fillStyle=Q}else{AF.fillStyle=u.get("color")}AB();if(O["line-through"]){N(-AD.descent,O["line-through"])}return U}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:middle;}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>').replace(/;/g,"!important;"));function C(F,G){return A(F,/(?:em|ex|%)$/i.test(G)?"1em":G)}function A(I,J){if(/px$/i.test(J)){return parseFloat(J)}var H=I.style.left,G=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;I.style.left=J;var F=I.style.pixelLeft;I.style.left=H;I.runtimeStyle.left=G;return F}var E={};function D(K){var L=K.id;if(!E[L]){var I=K.stops,J=document.createElement("cvml:fill"),F=[];J.type="gradient";J.angle=180;J.focus="0";J.method="sigma";J.color=I[0][1];for(var H=1,G=I.length-1;H<G;++H){F.push(I[H][0]*100+"% "+I[H][1])}J.colors=F.join(",");J.color2=I[G][1];E[L]=J}return E[L]}return function(AE,d,y,a,h,AF,w){var I=(d===null);if(I){d=h.alt}var f=AE.viewBox;var K=y.computedFontSize||(y.computedFontSize=new Cufon.CSS.Size(C(AF,y.get("fontSize"))+"px",AE.baseSize));var v=y.computedLSpacing;if(v==undefined){v=y.get("letterSpacing");y.computedLSpacing=v=(v=="normal")?0:~~K.convertFrom(A(AF,v))}var W,L;if(I){W=h;L=h.firstChild}else{W=document.createElement("span");W.className="cufon cufon-vml";W.alt=d;L=document.createElement("span");L.className="cufon-vml-canvas";W.appendChild(L);if(a.printable){var AB=document.createElement("span");AB.className="cufon-alt";AB.appendChild(document.createTextNode(d));W.appendChild(AB)}if(!w){W.appendChild(document.createElement("cvml:shape"))}}var AK=W.style;var q=L.style;var G=K.convert(f.height),AH=Math.ceil(G);var u=AH/G;var t=f.minX,s=f.minY;q.height=AH;q.top=Math.round(K.convert(s-AE.ascent));q.left=Math.round(K.convert(t));AK.height=K.convert(AE.height)+"px";var P=a.enableTextDecoration?Cufon.CSS.textDecoration(AF,y):{};var c=y.get("color");var AJ=Cufon.CSS.textTransform(d,y).split(""),V;var J=AE.glyphs,b,M,AA;var F=0,m=[],r=0,R;var T,e=a.textShadow;for(var AD=0,AC=0,z=AJ.length;AD<z;++AD){b=J[V=AJ[AD]]||AE.missingGlyph;if(!b){continue}if(M){F-=AA=M[V]||0;m[AC-1]-=AA}F+=R=m[AC++]=~~(b.w||AE.w)+v;M=b.k}if(R===undefined){return null}var U=-t+F+(f.width-R);var AI=K.convert(U*u),x=Math.round(AI);var p=U+","+f.height,H;var g="r"+p+"ns";var S=a.textGradient&&D(a.textGradient);for(AD=0,AC=0;AD<z;++AD){b=J[AJ[AD]]||AE.missingGlyph;if(!b){continue}if(I){T=L.childNodes[AC];while(T.firstChild){T.removeChild(T.firstChild)}}else{T=document.createElement("cvml:shape");L.appendChild(T)}T.stroked="f";T.coordsize=p;T.coordorigin=H=(t-r)+","+s;T.path=(b.d?"m"+b.d+"xe":"")+"m"+H+g;T.fillcolor=c;if(S){T.appendChild(S.cloneNode(false))}var AG=T.style;AG.width=x;AG.height=AH;if(e){var O=e[0],N=e[1];var Z=Cufon.CSS.color(O.color),X;var o=document.createElement("cvml:shadow");o.on="t";o.color=Z.color;o.offset=O.offX+","+O.offY;if(N){X=Cufon.CSS.color(N.color);o.type="double";o.color2=X.color;o.offset2=N.offX+","+N.offY}o.opacity=Z.opacity||(X&&X.opacity)||1;T.appendChild(o)}r+=m[AC++]}var n=T.nextSibling,Q,Y;if(a.hover){if(!n){n=document.createElement("cvml:rect");n.stroked="f";n.className="cufon-vml-cover";Q=document.createElement("cvml:fill");Q.opacity=0;n.appendChild(Q);L.appendChild(n)}Y=n.style;Y.width=x;Y.height=AH}else{if(n){L.removeChild(n)}}AK.width=Math.max(Math.ceil(K.convert(F*u)),0);return W}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1989 Adobe Systems Incorporated. All Rights Reserved.Sabon is a
 * registered trademark of Linotype AG and/or its subsidiaries.
 * 
 * Trademark:
 * Sabon is a registered trademark of Linotype AG and/or its subsidiaries.
 * 
 * Description:
 * The digitally encoded machine readable software for producing the Typefaces
 * licensed to you is copyrighted (c) 1989 Adobe Systems. All Rights Reserved. This
 * software is the property of Adobe Systems Incorporated and its licensors, and
 * may not be reproduced, used, displayed, modified, disclosed or transferred
 * without the express written approval of Adobe. The digitally encoded machine
 * readable outline data for producing the Typefaces licensed to you is copyrighted
 * (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is
 * the property of Linotype AG and/or its subsidiaries and may not be reproduced,
 * used, displayed, modified, disclosed or transferred without the express written
 * approval of Linotype AG and/or its subsidiaries.
 * 
 * Vendor URL:
 * http://www.linotypelibrary.com
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"80,-150r-7,52r47,0r7,-52r-47,0xm179,-78r-40,0r-11,78r-23,0r12,-78r-47,0r-11,78r-22,0r11,-78r-38,0r0,-20r41,0r7,-52r-38,0r0,-20r41,0r11,-78r22,0r-11,78r47,0r11,-78r22,0r-11,78r38,0r0,20r-41,0r-8,52r38,0r0,20"},{"d":"110,-242v-27,-3,-27,11,-15,27r49,66v18,-28,44,-50,57,-84v0,-10,-12,-8,-24,-9r0,-9r87,0r0,9v-29,0,-40,14,-53,30r-58,74r84,110v9,9,17,19,35,19r0,9r-93,0v-6,-19,34,1,14,-27r-61,-84v-21,32,-47,59,-64,94v2,9,18,6,28,8r0,9r-88,0r0,-9v32,-1,41,-18,57,-38r58,-75r-82,-108v-6,-7,-17,-12,-31,-12r0,-9r100,0r0,9","w":280},{"d":"107,-154v19,0,43,-7,59,-3r0,137v0,10,14,6,24,7r0,7v-18,1,-38,11,-53,10r0,-29v-21,14,-32,30,-64,30v-59,-1,-34,-84,-40,-141v-1,-9,-10,-13,-21,-14r0,-7v16,0,37,-4,50,0r1,112v0,44,56,32,74,9r0,-97v-4,-10,-20,-11,-30,-15r0,-6"},{"d":"87,-18v0,12,-12,25,-24,23v-12,2,-23,-12,-23,-23v0,-12,11,-24,23,-24v12,0,24,12,24,24xm59,-251v72,0,107,141,19,149v-15,1,-14,17,-14,34r-9,0r0,-64v30,-3,59,-14,59,-47v-1,-29,-26,-45,-56,-38v-12,0,-17,-7,-18,-18v-1,-11,8,-16,19,-16","w":159},{"d":"129,-67v0,-53,-42,-70,-78,-89r34,-92r91,0r-7,28r-81,0r-15,38v40,21,85,40,85,99v0,54,-35,88,-90,88v-22,0,-48,-6,-51,-28v0,-7,4,-13,11,-11v19,4,18,30,47,28v35,-3,54,-25,54,-61"},{"d":"167,-15v48,3,64,-16,77,-48r8,2r-17,61r-227,0r181,-237v-61,6,-154,-21,-161,38r-9,0v3,-19,10,-37,11,-58v11,-2,10,7,19,6r193,0r-180,236r105,0","w":259},{"d":"115,-120v3,-32,-40,-44,-59,-22v-7,8,-12,18,-14,31r63,0v8,0,9,-4,10,-9xm85,-165v36,-3,71,31,57,66r-101,0v-4,43,13,81,53,83v22,1,36,-12,49,-24r5,5v-17,19,-33,40,-67,40v-47,0,-69,-35,-69,-78v0,-54,27,-89,73,-92","w":159},{"d":"74,-125v0,12,-12,25,-24,23v-12,2,-24,-11,-24,-23v0,-12,12,-24,24,-24v12,0,24,12,24,24xm45,-42v44,0,43,67,18,89v-12,10,-25,18,-42,22r-2,-9v21,-6,40,-16,41,-42v1,-28,-41,-8,-41,-38v0,-16,12,-21,26,-22","w":100},{"d":"10,-9v13,-1,24,2,23,-12r0,-96v2,-15,-9,-18,-20,-23v4,-19,31,-12,47,-25v4,5,1,19,2,27v18,-12,35,-27,63,-27v61,1,41,87,41,144v0,14,11,11,24,12r0,9r-77,0r0,-9v13,-1,25,2,24,-12v-5,-47,20,-127,-33,-124v-16,1,-31,10,-42,17r0,107v1,13,12,11,25,12r0,9r-77,0r0,-9"},{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},{"d":"74,-18v0,12,-12,25,-24,23v-12,2,-24,-11,-24,-23v0,-12,12,-24,24,-24v12,0,24,12,24,24","w":100},{"d":"100,69v-65,9,-52,-61,-53,-119v0,-26,-6,-38,-27,-44v55,-10,3,-113,41,-153v9,-9,22,-9,39,-10r0,5v-64,8,6,142,-58,159v42,6,27,67,29,112v1,26,6,42,29,45r0,5","w":119},{"d":"71,-155v-7,0,-9,-2,-9,-9v-2,-25,-8,-51,-6,-76v0,-16,30,-14,30,0v0,27,-4,51,-7,76v0,6,-2,9,-8,9xm130,-155v-7,0,-9,-2,-9,-9v-2,-25,-8,-51,-6,-76v1,-15,30,-14,30,0v0,27,-4,51,-7,76v0,6,-2,9,-8,9"},{"d":"180,2r-159,-70r0,-23r159,-70r0,26r-132,55r132,56r0,26"},{"d":"64,-21v1,13,12,11,25,12r0,9r-77,0v-5,-18,24,-1,24,-21r0,-201v1,-18,-6,-24,-19,-28r0,-6v15,-5,32,-13,45,-19v7,78,-1,172,2,254","w":100},{"d":"29,66v46,-86,50,-230,1,-318r9,-5v52,64,70,202,21,285v-8,13,-15,27,-23,41","w":119},{"d":"30,-234v-10,-4,-7,-23,5,-23v29,14,44,42,68,61r-13,0","w":100},{"d":"30,-248r165,2r-128,251r-16,-5r115,-220r-126,0v-6,7,-4,24,-19,20"},{"d":"103,-6v36,0,51,-30,53,-67v3,-52,-52,-86,-92,-56r0,98v7,13,19,25,39,25xm185,-88v0,63,-55,108,-121,87r0,65v1,13,21,8,34,9r0,9r-91,0r0,-9v14,1,30,1,29,-12r0,-170v1,-20,-7,-27,-22,-31v5,-19,32,-15,46,-27v8,1,2,20,4,29v14,-11,30,-27,55,-27v42,0,66,35,66,77"},{"d":"102,-76r-87,0r3,-24v28,2,58,1,87,0","w":119},{"d":"91,-253v-47,86,-50,230,-1,318r-9,4v-54,-62,-70,-202,-21,-284v8,-13,14,-28,22,-42","w":119},{"d":"46,-83v-1,50,48,86,93,59v-4,-53,17,-131,-40,-129v-36,2,-53,29,-53,70xm108,73v14,0,31,3,31,-12r0,-76v-43,40,-127,14,-124,-55v3,-68,70,-117,131,-82v7,-3,15,-19,22,-13r0,229v0,10,13,9,24,9r0,9r-84,0r0,-9"},{"d":"143,-155v-39,2,-42,-56,-19,-76v10,-9,21,-15,35,-20r4,8v-17,6,-34,15,-35,36v-2,26,40,4,37,33v-1,13,-9,19,-22,19xm69,-155v-49,-1,-36,-80,-3,-88v8,-3,22,-14,23,0v-17,6,-32,15,-34,36v-3,27,36,3,36,33v0,14,-9,19,-22,19"},{"d":"110,-242v-51,-6,-28,63,-33,104r146,0v-6,-40,21,-108,-33,-104r0,-9r101,0r0,9v-20,0,-34,4,-33,26r0,181v0,21,12,26,33,26r0,9r-101,0r0,-9v54,5,27,-71,33,-114r-146,0r0,88v0,21,13,26,33,26r0,9r-101,0r0,-9v20,0,33,-4,33,-26r0,-181v2,-23,-13,-26,-33,-26r0,-9r101,0r0,9","w":300},{"d":"157,-188v0,76,-70,116,-109,159r117,0v4,-8,2,-22,18,-19r-11,48r-164,0r0,-7v49,-47,107,-87,115,-167v3,-33,-14,-56,-45,-56v-27,0,-38,20,-52,34r-7,-7v17,-25,37,-51,76,-51v40,0,62,28,62,66"},{"d":"23,65v0,-15,21,-24,32,-13r26,-58r-52,-130v-6,-9,-9,-14,-23,-14r0,-9r74,0v4,18,-28,3,-17,29r35,87v9,-30,28,-59,35,-92v0,-12,-8,-16,-20,-15r0,-9v21,1,40,0,61,0r0,9v-17,1,-24,10,-29,23r-81,191v-3,21,-40,26,-41,1","w":180,"k":{".":33,",":33}},{"w":100},{"d":"103,-16v14,-2,33,-7,35,-21v-3,-48,16,-120,-38,-116v-37,2,-54,29,-54,68v0,39,19,67,57,69xm119,-256v15,-5,32,-13,45,-19v2,0,3,2,3,5r0,248v2,8,13,6,23,6r0,7v-17,3,-38,17,-52,11v-1,-7,2,-18,-1,-23v-11,13,-32,26,-55,26v-45,-1,-67,-33,-67,-78v0,-64,59,-108,123,-85v-4,-34,13,-88,-19,-92r0,-6"},{"d":"7,-145v21,-14,34,-29,48,-51r4,0r0,37r54,0r0,19r-54,0r0,96v-2,30,31,38,48,20r6,5v-15,24,-82,41,-82,-9r0,-112r-24,0r0,-5","w":119},{"d":"32,-238v0,-21,36,-22,36,0v0,27,-36,20,-36,0xm12,-150v18,-3,35,-9,50,-15v4,62,5,145,-2,206v-8,24,-30,30,-52,41r-3,-8v23,-9,31,-25,31,-57r0,-136v1,-19,-12,-19,-24,-25r0,-6","w":100},{"d":"167,-218v14,-9,12,-28,-10,-24r0,-9r81,0r0,9v-34,0,-47,17,-65,37r-61,65r109,119v9,10,17,11,31,12r0,9r-61,0r-112,-125xm77,-35v0,19,10,26,29,26r0,9r-97,0r0,-9v20,0,33,-4,33,-26r0,-181v2,-23,-13,-26,-33,-26r0,-9r96,0r0,9v-18,0,-29,7,-28,26r0,181","w":259},{"d":"10,-9v13,-1,24,2,23,-12r0,-201v1,-19,-5,-25,-19,-28r0,-6v15,-5,33,-13,45,-19v9,39,0,97,3,142v15,-14,29,-32,56,-32v64,0,46,83,48,144v0,14,11,11,24,12r0,9r-77,0v0,-5,-1,-11,6,-9v32,2,15,-48,18,-80v3,-30,-5,-54,-35,-54v-19,0,-29,12,-40,20r0,102v1,13,12,11,25,12r0,9r-77,0r0,-9"},{"d":"98,-155v-71,5,-64,148,4,151v71,-5,65,-148,-4,-151xm102,5v-52,0,-87,-31,-87,-84v0,-51,32,-86,83,-86v53,0,87,32,87,85v0,51,-31,85,-83,85"},{"d":"138,-66v1,-43,-28,-60,-73,-56r0,-10v33,-5,62,-19,63,-56v0,-26,-15,-45,-42,-44v-23,0,-33,13,-45,25r-5,-7v18,-19,33,-40,69,-40v31,0,52,20,52,51v0,36,-28,51,-52,65v39,-1,66,19,66,57v0,53,-38,86,-98,86v-26,-1,-49,-9,-54,-30v18,-32,27,24,62,19v35,-5,56,-24,57,-60"},{"d":"180,-32r-159,0r0,-23r159,0r0,23xm180,-104r-159,0r0,-23r159,0r0,23"},{"d":"56,-155v-39,2,-42,-56,-19,-76v10,-9,21,-15,35,-20r4,8v-17,6,-34,14,-35,36v-2,26,40,4,37,33v-1,13,-9,19,-22,19","w":100,"k":{"\u2018":27}},{"d":"116,-211r-81,108r81,0r0,-108xm8,-93r123,-161r16,0r0,151r36,0r0,24r-36,0r0,79r-31,0r0,-79r-108,0r0,-14"},{"d":"114,-167v30,-10,37,-77,-6,-77v-38,0,-35,59,-6,68v6,4,6,5,12,9xm93,-147v-20,15,-41,27,-42,60v-2,60,78,87,114,43r13,-15v-24,-34,-55,-61,-85,-88xm282,-11v18,0,29,-11,39,-22r6,5v-16,19,-31,41,-64,41v-44,0,-59,-38,-79,-63v-25,23,-39,56,-87,55v-44,-1,-73,-30,-73,-72v0,-48,29,-67,61,-85v-46,-19,-34,-108,26,-102v51,-6,68,62,26,84r-14,8v29,23,54,48,76,78v17,-22,44,-50,50,-82v2,-11,-11,-11,-22,-11r0,-10r96,0r0,10v-72,1,-77,66,-118,102v22,24,35,64,77,64","w":339},{"d":"139,-80v17,1,24,-14,31,-25r13,18v-11,15,-20,33,-45,31v-38,-3,-90,-49,-108,2r-13,-18v8,-16,20,-31,45,-31v33,0,47,22,77,23"},{"d":"109,-138v17,-14,33,-28,33,-58v0,-26,-14,-48,-38,-48v-53,-2,-48,80,-11,94v6,4,11,8,16,12xm98,-6v44,1,53,-57,25,-82v-10,-9,-21,-20,-34,-26v-39,16,-50,106,9,108xm104,-254v38,0,64,20,64,57v0,36,-27,50,-50,64v25,14,53,33,53,69v0,43,-31,69,-73,69v-40,0,-68,-22,-68,-58v0,-39,28,-51,52,-67v-21,-17,-47,-29,-47,-65v0,-43,26,-69,69,-69"},{"d":"125,-44v0,49,-69,61,-106,37r-4,-41r7,-2v-3,39,68,65,74,18v-7,-47,-78,-29,-78,-86v0,-46,60,-57,96,-36r3,37r-8,0v-5,-22,-14,-36,-40,-36v-14,0,-30,9,-28,24v7,47,84,29,84,85","w":140},{"d":"294,-242v-26,-2,-34,10,-33,37r0,208r-9,0r-188,-206r0,134v-2,39,4,62,43,60r0,9r-96,0r0,-9v31,1,40,-14,39,-46r0,-145v-1,-32,-13,-41,-45,-42r0,-9r63,0v53,65,121,133,178,196r0,-143v1,-32,-10,-46,-43,-44r0,-9r91,0r0,9","w":299},{"d":"138,-12v41,0,59,-13,67,-45r8,2r-13,55r-187,0r0,-9v20,0,33,-5,33,-24r0,-183v1,-21,-13,-26,-33,-26r0,-9r101,0r0,9v-20,0,-34,4,-33,26r0,167v-2,35,22,37,57,37","w":219,"k":{"y":20,"\u2019":46,"Y":40,"W":40,"V":40,"T":33}},{"d":"149,-192v0,-41,-29,-52,-68,-47r0,101v44,3,68,-11,68,-54xm170,-63v3,-54,-35,-66,-89,-63r1,96v1,15,13,18,31,18v37,1,55,-18,57,-51xm208,-68v0,84,-110,65,-195,68r0,-9v20,0,33,-5,33,-24r0,-183v1,-21,-13,-26,-33,-26r0,-9v74,2,172,-15,172,58v0,36,-31,48,-58,58v43,2,81,22,81,67","w":219},{"d":"114,-86v26,21,34,73,79,77r0,9r-80,0r0,-9v32,2,13,-18,2,-29v-10,-10,-16,-37,-29,-17v-9,13,-24,27,-32,40v1,8,12,5,21,6r0,9r-68,0r0,-9v48,-1,53,-43,80,-65r-55,-69v-5,-6,-11,-6,-19,-7r0,-9r77,0r0,9v-29,-3,-13,17,-3,29v7,8,14,19,20,25v12,-16,27,-29,36,-47v-1,-7,-9,-7,-17,-7r0,-9r67,0r0,9v-44,2,-54,41,-79,64"},{"d":"50,-155v-7,0,-8,-3,-9,-9r-6,-76v6,-20,33,-11,31,7r-7,69v-1,6,-2,9,-9,9","w":100},{"d":"21,-125v-5,-116,124,-159,226,-112r6,50r-7,0v-10,-37,-38,-59,-85,-58v-66,2,-98,49,-101,114v-3,85,73,154,152,111v-4,-35,16,-88,-33,-80r0,-9r94,0r0,9v-36,-5,-24,41,-26,73v3,3,7,5,6,12v-27,9,-59,20,-94,20v-85,-2,-135,-51,-138,-130","w":280},{"d":"116,-246v-28,-13,-47,2,-47,35r0,52r46,0r0,19r-46,0r0,122v0,13,20,8,33,9r0,9r-90,0r0,-9v14,0,28,2,28,-12r0,-119r-25,0v0,-16,25,-9,25,-28v0,-56,27,-107,78,-107v15,0,15,31,-2,29","w":119,"k":{"\u2019":-11}},{"d":"74,-125v0,12,-12,25,-24,23v-12,2,-24,-11,-24,-23v0,-12,12,-24,24,-24v12,0,24,12,24,24xm74,-18v0,12,-12,25,-24,23v-12,2,-24,-11,-24,-23v0,-12,12,-24,24,-24v12,0,24,12,24,24","w":100},{"d":"161,-90v2,-42,-41,-32,-80,-33r0,88v0,21,12,26,33,26r0,9r-102,0r0,-9v29,1,34,-11,34,-41r0,-160v1,-25,-8,-34,-34,-32r0,-9r176,0r2,50r-9,2v-1,-47,-51,-41,-100,-41r0,102v36,-1,82,10,79,-29r8,0r0,77r-7,0","k":{"A":20,".":46,",":46}},{"d":"28,-275r24,0r0,280r-24,0r0,-280","w":79},{"d":"156,-74v3,-53,-57,-93,-92,-54v3,51,-15,124,38,124v39,0,52,-33,54,-70xm185,-89v3,73,-74,115,-136,82v-6,4,-11,11,-18,4v7,-67,4,-145,5,-219v0,-19,-6,-24,-19,-28r0,-6v15,-5,32,-13,45,-19v6,39,0,92,2,136v15,-11,30,-26,54,-26v43,0,65,33,67,76"},{"d":"20,-257v64,-7,53,62,53,120v-1,25,7,38,27,43v-54,10,-5,114,-41,154v-9,8,-22,9,-39,9r0,-5v64,-6,-6,-142,58,-158v-64,-6,7,-142,-58,-158r0,-5","w":119},{"d":"54,-138v-3,-39,19,-111,-31,-104r0,-9r62,0r96,202r98,-202r61,0r0,9v-22,0,-33,3,-32,26r4,172v0,27,11,36,40,35r0,9r-112,0r0,-9v23,0,37,-3,37,-28r-3,-172r-99,212r-8,0r-100,-204r-3,153v-1,29,8,41,37,39r0,9r-93,0r0,-9v60,4,39,-77,46,-129","w":360},{"d":"58,-251v39,-2,40,56,18,76v-10,9,-21,15,-35,20r-4,-8v17,-6,34,-15,35,-36v2,-27,-42,-3,-36,-34v0,-13,9,-18,22,-18xm131,-251v39,-2,41,56,19,76v-10,9,-21,15,-36,20r-3,-8v17,-6,32,-15,34,-36v2,-27,-39,-3,-36,-34v1,-13,10,-18,22,-18"},{"d":"100,-242v-32,-1,-40,25,-44,54v-8,60,90,74,90,16v0,-37,-10,-69,-46,-70xm103,-254v92,-2,90,136,43,185v-33,34,-69,67,-127,74r-3,-7v70,-18,122,-70,129,-146v-12,20,-28,36,-60,36v-39,-1,-60,-27,-60,-63v0,-45,29,-78,78,-79"},{"d":"0,-100r180,0r0,24r-180,0r0,-24","w":180},{"d":"128,-220v-2,-20,-16,-27,-41,-24r0,124v2,6,8,6,17,7r0,7r-62,0r0,-7v11,-1,18,-1,18,-14r0,-117v-25,-3,-39,4,-41,24r-7,0r0,-31r123,0r0,31r-7,0xm282,-113v11,-1,17,-1,17,-14r-1,-89r-54,110r-4,0r-55,-109r0,79v1,17,4,20,19,23r0,7r-47,0r0,-7v16,-3,19,-5,19,-23v0,-40,16,-105,-25,-108r0,-7r44,0r55,111r58,-111r37,0r0,7v-13,1,-19,7,-19,20r0,104v2,6,8,6,17,7r0,7r-61,0r0,-7","w":356},{"w":100},{"d":"97,-6v51,-7,51,-71,51,-127v0,-46,-4,-103,-47,-109v-52,6,-51,71,-51,127v0,47,4,103,47,109xm103,-254v59,5,78,61,78,123v0,73,-22,128,-84,136v-59,-4,-78,-62,-78,-122v0,-73,22,-129,84,-137"},{"d":"84,-18v0,12,-12,25,-24,23v-12,1,-24,-12,-24,-23v0,-11,12,-24,24,-24v12,0,24,12,24,24xm60,-242v35,0,20,59,17,86r-13,88r-8,0v-5,-50,-18,-99,-18,-150v0,-14,8,-24,22,-24","w":119},{"d":"37,-1r-16,-17r63,-62r-63,-63r17,-16r62,63r62,-63r18,16r-64,63r64,62r-17,17r-63,-62"},{"d":"113,-124v4,-4,23,-21,7,-25r-11,-1r0,-9r72,0r0,9v-43,3,-58,37,-85,56v26,27,49,57,77,82v4,3,10,2,17,3r0,9v-17,0,-36,-2,-52,0v-21,-29,-46,-53,-69,-80r-7,0v5,28,-16,78,25,71r0,9r-77,0v-4,-18,27,-1,23,-21r0,-201v1,-19,-5,-25,-19,-28r0,-6v15,-5,33,-13,45,-19v2,0,3,2,3,5r0,182v25,-4,33,-25,51,-36"},{"d":"64,-21v-1,18,22,10,38,12r0,9r-93,0r0,-9v14,-1,27,3,27,-12r0,-101v0,-14,-19,-9,-19,-22v18,-7,32,-15,44,-21v8,6,-1,29,4,38v11,-16,21,-36,46,-38v10,0,21,8,20,20v-1,24,-27,18,-40,9v-41,5,-24,72,-27,115","w":140,"k":{".":40,"-":20,",":40}},{"d":"203,-251v16,2,18,-11,31,-10r-3,57r-10,0v7,-44,-45,-31,-83,-33r0,202v-1,22,12,26,32,26r0,9r-101,0r0,-9v21,0,33,-4,33,-26r0,-202v-41,0,-88,-8,-87,33r-9,0r4,-57v13,1,14,10,30,10r163,0","w":239,"k":{"A":27,"y":31,"w":31,"u":31,";":27,"s":24,"r":24,".":40,"o":35,"i":13,"-":37,"e":31,",":40,":":31,"c":-31,"a":31}},{"d":"-4,5r84,-262r24,0r-84,262r-24,0","w":100},{"d":"204,-18v0,12,-12,25,-24,23v-12,2,-24,-11,-24,-23v0,-12,12,-24,24,-24v12,0,24,12,24,24xm84,-18v0,12,-12,25,-24,23v-12,2,-23,-12,-23,-23v0,-12,11,-24,23,-24v12,0,24,12,24,24xm323,-18v0,11,-11,25,-23,23v-12,2,-24,-11,-24,-23v0,-12,12,-24,24,-24v12,0,23,12,23,24","w":360},{"d":"82,-109r75,0r-40,-106xm110,-236v-4,-18,15,-13,20,-25r6,0r89,242v6,8,17,8,28,10r0,9r-94,0r0,-9v24,4,32,-14,21,-33r-18,-52r-85,0v-5,22,-15,43,-17,68v0,18,16,17,33,17r0,9r-87,0r0,-9v38,-1,40,-38,50,-66v20,-53,41,-103,54,-161","w":259,"k":{"y":27,"w":27,"v":27,"\u2019":44,"Y":43,"W":40,"V":45,"T":27}},{"d":"146,-245v-60,0,-86,48,-86,110v0,66,30,129,94,129v60,0,85,-49,85,-111v0,-65,-28,-128,-93,-128xm188,-1v33,16,50,62,98,54v-3,42,-71,24,-88,-2v-18,-17,-34,-35,-59,-46v-69,-10,-118,-54,-118,-129v0,-79,50,-133,129,-133v77,0,129,53,129,130v0,67,-38,108,-91,126","w":299},{"d":"131,-242v-20,0,-33,3,-33,26r0,185v1,63,-17,103,-73,108v-18,-2,-36,-5,-37,-24v0,-10,5,-17,15,-16v17,1,9,30,31,28v31,-3,29,-43,29,-74r0,-207v1,-21,-13,-26,-33,-26r0,-9r101,0r0,9","w":140},{"d":"220,-124v0,-80,-55,-125,-141,-114r0,196v-1,23,15,30,37,30v70,-1,104,-46,104,-112xm10,-9v20,-1,34,-6,34,-28r0,-174v1,-24,-10,-33,-34,-31r0,-9r105,0v84,3,144,44,144,126v0,121,-118,131,-249,125r0,-9","w":280},{"d":"126,-112v6,-16,17,-41,-12,-38r0,-9r59,0r0,9v-18,0,-23,13,-29,26r-51,129r-9,0v-21,-50,-37,-105,-62,-151v-4,-4,-8,-3,-15,-4r0,-9r73,0r0,9v-33,-4,-16,26,-9,43r25,69","w":180,"k":{".":33,",":33}},{"d":"229,-114v8,-14,10,-41,-16,-36r0,-9v21,1,41,0,62,0r0,9v-18,0,-23,12,-28,26r-50,127r-13,2r-45,-113r-43,111r-12,2v-22,-50,-38,-105,-64,-151v-4,-4,-8,-3,-15,-4r0,-9r71,0r0,9v-15,-1,-21,5,-16,18r38,97r33,-91v0,-16,-12,-23,-26,-24r0,-9r75,0v4,19,-29,-1,-15,37r33,87","w":280,"k":{".":33,",":33}},{"d":"9,-9v20,0,33,-4,33,-26r0,-181v2,-23,-13,-26,-33,-26r0,-9r101,0r0,9v-20,0,-34,5,-33,26r0,181v0,21,13,26,33,26r0,9r-101,0r0,-9","w":119},{"d":"42,-207v2,-26,-7,-36,-32,-35r0,-9v83,0,179,-12,179,71v0,52,-39,74,-95,72r0,-12v39,7,58,-22,58,-56v0,-45,-29,-69,-75,-63r0,204v0,21,13,26,34,26r0,9r-102,0r0,-9v20,0,33,-4,33,-26r0,-172","k":{"A":20,".":46,",":46}},{"d":"181,-196v-3,-45,-49,-46,-100,-44r0,102v35,-1,80,8,78,-30r7,0r0,80r-7,0v6,-45,-39,-33,-78,-35v6,44,-20,111,37,111v50,0,78,-8,88,-45r8,2r-15,55r-187,0r0,-9v29,1,34,-11,34,-41r0,-160v1,-25,-8,-34,-34,-32r0,-9r176,0r0,53","w":219},{"d":"100,-6v31,0,41,-24,44,-54v7,-62,-90,-74,-90,-16v0,37,10,70,46,70xm97,5v-91,2,-90,-134,-43,-184v33,-35,71,-66,127,-75r3,7v-69,19,-122,70,-129,147v14,-20,27,-37,60,-36v38,2,60,25,60,63v0,46,-30,76,-78,78"},{"d":"81,-66v25,0,35,-18,35,-42v0,-26,-12,-47,-37,-47v-44,0,-42,89,2,89xm35,34v2,54,110,46,110,-5v0,-30,-39,-29,-70,-28v-23,1,-41,10,-40,33xm84,-165v31,0,52,17,87,10r0,17r-36,-1v30,44,-18,96,-77,80v-16,9,-13,40,15,35v43,3,103,-8,99,37v-4,44,-42,69,-96,69v-34,0,-68,-9,-68,-40v0,-26,21,-35,42,-42v-16,-6,-32,-14,-31,-37v2,-14,24,-16,31,-24v-18,-10,-34,-22,-34,-48v0,-38,29,-56,68,-56","w":180},{"d":"258,-242v-38,5,-40,53,-51,82r-66,165r-14,0r-93,-232v-5,-12,-16,-14,-32,-15r0,-9r97,0r0,9v-48,-1,-11,52,-2,76r48,123r60,-162v11,-21,3,-40,-23,-37r0,-9r76,0r0,9","w":260,"k":{"A":38,"y":24,"u":24,";":33,"r":24,".":46,"o":31,"i":13,"-":33,"e":27,",":46,":":33,"a":31}},{"d":"192,-206v14,-12,24,-43,-12,-36r0,-9r71,0r0,9v-17,1,-22,10,-30,21r-68,93r0,93v-1,22,12,26,32,26r0,9r-100,0r0,-9v20,0,32,-4,32,-26r0,-87r-82,-113v-6,-7,-14,-6,-26,-7r0,-9r94,0v6,17,-32,2,-17,26v19,29,40,56,59,84","w":259,"k":{"A":27,"v":24,"u":24,";":33,"q":31,".":46,"p":24,"o":31,"i":13,"-":37,"e":31,",":46,":":33,"a":33}},{"d":"0,-100r360,0r0,24r-360,0r0,-24","w":360},{"d":"62,43v-3,24,23,16,45,17r0,9v-23,-3,-52,2,-71,-2r2,-324r69,0r0,10v-19,2,-45,-9,-45,17r0,273","w":119},{"d":"44,-37v0,37,52,25,65,5r0,-48v-23,10,-65,12,-65,43xm138,-35v-3,21,15,26,26,15v7,13,-18,24,-32,25v-15,2,-22,-14,-23,-26v-19,29,-92,40,-94,-9v10,-47,50,-41,94,-60v2,-32,-2,-55,-35,-55v-33,0,-19,41,-47,40v-21,-28,35,-53,67,-60v21,1,44,11,44,31r0,99","w":180},{"d":"146,-245v-60,0,-86,48,-86,110v0,66,30,129,94,129v60,0,85,-49,85,-111v0,-65,-28,-128,-93,-128xm149,5v-77,0,-128,-53,-128,-129v0,-79,50,-133,129,-133v77,0,129,53,129,130v0,79,-50,132,-130,132","w":299},{"d":"9,-9v13,-1,24,3,24,-12r0,-98v3,-21,-16,-16,-18,-31r45,-15v5,4,1,19,2,27v23,-21,88,-46,101,1v18,-12,34,-28,62,-28v61,0,38,86,42,144v1,13,11,11,24,12r0,9r-76,0v-5,-18,27,-1,24,-21v-5,-47,18,-124,-32,-124v-17,0,-31,10,-42,17r0,107v-1,14,12,11,25,12r0,9r-78,0r0,-9v13,-1,25,2,24,-12v-4,-47,18,-124,-31,-124v-18,0,-31,11,-43,17r0,107v1,13,12,11,25,12r0,9r-78,0r0,-9","w":299},{"d":"98,-165v21,0,49,4,49,25v0,8,-5,16,-14,16v-19,-5,-20,-31,-48,-29v-32,3,-45,30,-47,62v-5,61,66,89,107,53r6,6v-16,18,-39,37,-70,37v-42,0,-72,-31,-72,-74v0,-56,33,-96,89,-96","w":159},{"d":"93,-242v-22,-2,-27,7,-19,25r71,175r36,-78r-54,-118v-6,-4,-12,-3,-23,-4r0,-9r88,0v5,17,-28,0,-16,32r23,60v9,-22,29,-46,29,-71v0,-13,-10,-11,-24,-12r0,-9r73,0r0,9v-19,0,-27,9,-33,23r-37,77r44,100r66,-188v-1,-12,-14,-11,-27,-12r0,-9r69,0r0,9v-18,0,-21,12,-26,25r-86,222r-10,0r-48,-108r-51,108r-10,0r-95,-231v-6,-11,-15,-16,-32,-16r0,-9r92,0r0,9","w":360,"k":{"A":35,"y":18,"u":18,";":33,"r":18,".":46,"o":31,"i":6,"-":27,"e":27,",":46,":":33,"a":31}},{"d":"80,5r-84,-262r24,0r84,262r-24,0","w":100},{"d":"45,-42v44,0,43,67,18,89v-12,10,-25,18,-42,22r-2,-9v21,-6,40,-16,41,-42v1,-28,-41,-8,-41,-38v0,-16,12,-21,26,-22","w":100},{"d":"152,-80r-131,-55r0,-26r159,70r0,23r-159,70r0,-26"},{"d":"169,-176v-33,6,-50,36,-52,74v-1,20,7,31,24,31v31,-8,44,-41,44,-80v0,-14,-3,-24,-16,-25xm44,-116v-3,94,110,132,185,88r5,12v-23,11,-47,21,-79,21v-84,-2,-142,-47,-142,-124v0,-84,54,-138,138,-138v72,0,124,41,124,113v0,47,-23,91,-70,91v-20,0,-29,-14,-35,-27v-9,12,-23,26,-43,26v-26,0,-39,-18,-37,-47v4,-47,26,-92,75,-92v16,0,22,10,27,20r3,-15r27,0r-26,107v0,9,4,18,15,17v35,-5,50,-43,50,-80v0,-60,-46,-101,-110,-101v-72,0,-105,54,-107,129","w":288},{"d":"21,-130v0,-110,123,-152,221,-108r4,52r-9,0v-6,-40,-32,-59,-77,-59v-63,0,-102,44,-102,114v0,71,39,125,108,125v41,0,64,-26,72,-62r8,2r-8,52v-21,10,-49,19,-80,19v-87,-1,-137,-51,-137,-135","w":259},{"d":"46,-9v19,-1,43,4,43,-16r0,-196r-52,28r-4,-9v30,-15,58,-34,85,-52r4,2r0,227v-1,19,21,15,40,16r0,9r-116,0r0,-9"},{"d":"143,-9v94,0,64,-119,64,-208v0,-22,-11,-25,-33,-25r0,-9r82,0r0,9v-32,-2,-29,27,-29,58r0,104v-2,56,-35,85,-94,85v-60,0,-96,-29,-96,-90r0,-131v2,-23,-13,-26,-33,-26r0,-9r101,0r0,9v-20,0,-34,5,-33,26v4,89,-24,207,71,207","w":259},{"d":"32,-238v0,-21,36,-22,36,0v0,27,-36,20,-36,0xm64,-21v1,13,12,11,25,12r0,9r-77,0v-5,-18,24,-1,24,-21r0,-98v0,-16,-9,-19,-19,-25v3,-15,30,-12,45,-21v6,42,0,98,2,144","w":100},{"d":"128,-128v64,35,30,133,-49,133v-19,0,-37,-4,-55,-12r-7,-52r8,0v7,28,24,53,56,53v29,0,51,-16,49,-48v-5,-72,-106,-50,-106,-132v0,-64,61,-81,121,-65r5,46r-8,0v-4,-24,-19,-40,-46,-40v-44,0,-56,60,-26,83v18,13,38,23,58,34","w":180},{"d":"28,-167v1,11,10,7,24,8r93,0r-95,147r52,0v27,0,29,-18,41,-35r7,2r-10,45r-132,0v28,-53,65,-97,96,-148v-35,1,-76,-6,-79,27r-9,0r5,-46r7,0","w":159},{"d":"44,-251v39,-2,42,56,19,76v-10,9,-21,15,-35,20r-4,-8v17,-6,34,-15,35,-36v2,-26,-40,-4,-37,-34v1,-13,10,-18,22,-18","w":100,"k":{"t":13,"s":27,"\u2019":27}},{"d":"88,-159r24,0r0,68r68,0r0,23r-68,0r0,68r-24,0r0,-68r-67,0r0,-23r67,0r0,-68"},{"d":"24,-117r65,-131r22,0r65,131r-24,0r-52,-105r-51,105r-25,0"},{"d":"102,-76r-87,0r3,-24v28,2,58,1,87,0","w":119},{"d":"81,-132v44,9,80,-13,81,-53v1,-44,-36,-62,-81,-53r0,106xm199,-188v-1,35,-24,53,-51,62v28,36,48,81,83,110v6,4,14,7,23,7r0,9r-57,0v-33,-36,-57,-78,-83,-119r-33,0r0,84v0,21,12,26,33,26r0,9r-101,0r0,-9v20,0,33,-5,33,-24r0,-183v1,-21,-13,-26,-33,-26r0,-9v80,2,186,-17,186,63","w":259,"k":{"y":6,"Y":33,"W":27,"V":27,"T":11}},{"d":"58,-230v3,-24,-23,-16,-45,-17r0,-10v23,3,52,-2,71,2r-2,324r-69,0r0,-9v18,-3,45,9,45,-18r0,-272","w":119},{"d":"88,9r163,-266r16,0r-163,266r-16,0xm264,-4v42,-1,45,-101,0,-101v-42,2,-44,101,0,101xm96,-143v41,-2,46,-101,0,-101v-43,1,-45,101,0,101xm98,-254v35,0,58,23,58,58v0,37,-25,62,-62,62v-36,0,-58,-22,-58,-58v0,-37,25,-62,62,-62xm266,-114v36,0,58,22,58,57v0,37,-23,62,-62,62v-36,0,-58,-23,-58,-57v0,-37,23,-62,62,-62","w":360},{"d":"94,-245v-32,1,-44,52,-25,76v6,7,15,14,25,20r0,-96xm108,-6v35,-2,45,-54,27,-81v-6,-8,-15,-14,-27,-20r0,101xm31,-187v0,-41,25,-65,63,-70r0,-26r14,0r0,26v19,1,36,3,53,7r3,48r-9,0v-6,-27,-16,-42,-47,-43r0,101v33,14,69,29,69,76v0,45,-26,70,-69,73r0,27r-14,0r0,-27v-26,0,-44,-5,-63,-13v-1,-18,-4,-37,-8,-53r7,-2v9,31,25,57,64,57r0,-106v-31,-14,-63,-31,-63,-75"},{"d":"96,-230v-5,-22,28,-29,29,-8v-3,14,-17,28,-22,36v-12,0,-6,-18,-7,-28xm40,-219v13,-31,40,4,48,18r-4,5v-15,-5,-41,-6,-44,-23xm108,-195v13,-5,52,-20,52,5v0,29,-37,6,-52,2r0,-7xm123,-143v-2,20,-30,15,-29,-2r3,-34v15,-3,22,20,26,36xm90,-182v-7,14,-33,54,-48,21v2,-21,29,-18,42,-27"}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+87-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("GizeUH6R7TdfGn:{BH9]IiId3V6ezHdf3VA]7TsFzcoDl,R@Iebeg,c7zSxf3]O{3nIoUn:P6kMCBS}YlT`KCc4e!(}4lRP]Xc4e!+Mb!isR7JxKU,!d3~^]!+th6nz8N~6NStAhARBHNJzolFe63~^]!+9JNc4e!(}4!e4e!(t]!@}YIc4e!+M}Mn+t9i~IAGu!6Ng`s&S^cT3lz7UCBX%Pb@(J:HFKj#yDxf?Y4],ReVkhOE{od8-J6Vx]c9Y?3~^]!+IV`c9Gs~zk&cM96HBTTc4e!(}469xbSVe(ce4Cu+O}`,9c7c6E3~^]!+tOGehx^:R:AnK@uF6YUi:RGnI@G&4jgS}DC+e@uF}DU+eYuH4:UHBR7n4FgTIfz@OFU~:Y7~!dXkR{7TlKl@O?7,R?3@P-NFBkBeYfGSoKg,KfGeYflVdDBTe@7T9CuHcJB3YfGeYf3njCuH6?U~cxlH:b3nO:z~cou@xCuFBylkACuHd]zk4k7V6]3nO?CHBou@xCu:Y#3nOk7V6]3nO?CHCjAndjuFs:Ck`KUid(l3sjUVhf7id,BiObUT^jGTz?C@P{7S4DN]Dy7&:FTV6U7ceBg3MU7cedG&Pj")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":200,"face":{"font-family":"Sabon LT","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 2 0 0 2 0 3","ascent":"288","descent":"-72","x-height":"5","bbox":"-12 -283 360 82","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+2122"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1989 Adobe Systems Incorporated. All Rights Reserved.Sabon is a
 * registered trademark of Linotype AG and/or its subsidiaries.
 * 
 * Trademark:
 * Sabon is a registered trademark of Linotype AG and/or its subsidiaries.
 * 
 * Description:
 * The digitally encoded machine readable software for producing the Typefaces
 * licensed to you is copyrighted (c) 1989 Adobe Systems. All Rights Reserved. This
 * software is the property of Adobe Systems Incorporated and its licensors, and
 * may not be reproduced, used, displayed, modified, disclosed or transferred
 * without the express written approval of Adobe. The digitally encoded machine
 * readable outline data for producing the Typefaces licensed to you is copyrighted
 * (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is
 * the property of Linotype AG and/or its subsidiaries and may not be reproduced,
 * used, displayed, modified, disclosed or transferred without the express written
 * approval of Linotype AG and/or its subsidiaries.
 * 
 * Vendor URL:
 * http://www.linotypelibrary.com
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"71,-221v-24,0,-36,17,-47,31r-7,-7v15,-30,38,-55,80,-57v56,-2,77,60,53,108v-21,43,-57,74,-90,106r102,0v6,-8,3,-24,19,-21v-4,21,-7,39,-9,61r-164,0r0,-12v46,-41,102,-79,112,-156v-3,-30,-16,-53,-49,-53"},{"d":"138,-140v0,-12,-9,-10,-21,-11r0,-11v19,1,39,3,58,0v-1,3,2,11,-2,11v-11,0,-15,11,-19,18r-60,138r-10,0r-58,-143v-4,-12,-7,-13,-21,-13r0,-11v27,2,55,2,82,0r0,11v-13,0,-22,-2,-14,18r31,80v9,-27,28,-58,34,-87","w":180,"k":{".":33,",":33}},{"d":"116,-211r-34,102r67,0xm109,-244v12,-1,33,-28,41,-6r80,225v4,11,12,14,26,14r0,11r-104,0v-8,-21,35,-1,24,-32r-19,-57r-82,0v-6,22,-15,42,-19,66v1,13,17,12,31,12r0,11r-83,0v1,-3,-2,-11,2,-11v16,-1,27,-10,32,-23","w":259,"k":{"y":27,"w":27,"v":27,"\u2019":40,"Y":57,"W":40,"V":57,"T":27}},{"d":"98,-197v4,-21,-7,-54,15,-54v39,0,3,45,-9,57v-2,-1,-4,-3,-6,-3xm101,-174v10,15,42,54,6,57v-23,2,-12,-35,-13,-57v2,0,5,2,7,0xm50,-141v-26,-6,-13,-30,7,-35r28,-7v0,1,2,8,4,7v-10,11,-20,32,-39,35xm130,-195v14,-7,36,-7,35,12v-1,30,-41,9,-58,4v-1,-14,15,-12,23,-16xm86,-190v-23,-5,-66,-25,-34,-46v21,1,28,26,38,41"},{"d":"126,-65v0,-46,-34,-66,-75,-52r-2,-10v29,-11,62,-23,65,-60v3,-46,-63,-46,-80,-16r-7,-8v16,-22,39,-43,73,-43v30,0,54,16,55,46v2,40,-29,50,-52,67v40,-3,67,15,67,55v0,59,-48,91,-106,91v-26,0,-49,-7,-49,-34v3,-6,13,-6,20,-7v17,50,91,26,91,-29"},{"d":"101,-241v-39,0,-47,56,-21,78v10,9,22,17,35,23v36,-18,40,-101,-14,-101xm82,-111v-39,17,-42,103,18,103v43,0,49,-58,20,-79v-13,-9,-24,-16,-38,-24xm177,-67v6,86,-154,99,-154,14v0,-37,23,-52,50,-63v-24,-14,-44,-32,-44,-68v0,-46,32,-70,76,-70v38,0,67,18,67,58v0,34,-26,49,-49,61v28,12,52,31,54,68"},{"d":"24,-275r32,0r0,280r-32,0r0,-280","w":79},{"d":"54,-88v-4,50,39,87,77,58r0,-98v-5,-12,-20,-23,-35,-23v-32,0,-40,30,-42,63xm14,-70v-2,-71,65,-117,130,-87v7,-3,25,-27,29,-10r-1,227v-1,12,10,11,21,11r0,11r-89,0r0,-11v13,-1,28,3,27,-11r0,-79v-14,14,-26,26,-54,24v-40,-2,-61,-33,-63,-75"},{"d":"264,-105v-27,1,-26,36,-24,62v1,17,5,35,24,35v27,-1,24,-34,24,-62v0,-17,-5,-35,-24,-35xm96,-241v-26,2,-25,34,-24,62v1,18,6,36,24,36v36,0,34,-93,0,-98xm250,-259r19,0r-158,270r-20,0xm264,5v-41,0,-63,-24,-63,-62v0,-38,23,-61,63,-61v41,0,63,23,63,61v0,38,-22,62,-63,62xm96,-130v-39,0,-63,-23,-63,-62v0,-38,24,-62,63,-62v39,0,63,24,63,62v0,39,-24,62,-63,62","w":360},{"d":"17,-89v16,-38,74,-26,105,-8v22,13,40,-5,48,-20v24,25,-3,54,-32,54v-33,0,-44,-26,-78,-25v-17,0,-24,14,-30,25"},{"d":"50,-150v-41,0,-38,-61,-14,-79v12,-9,25,-18,41,-22r5,11v-25,-1,-54,35,-21,46v27,8,15,44,-11,44","w":100,"k":{"\u2018":25}},{"d":"192,1r-183,-79r0,-25r183,-80r0,33r-138,59r138,60r0,32"},{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},{"d":"146,-74v2,-47,-38,-87,-79,-59r0,96v9,9,17,24,37,23v32,-1,40,-28,42,-60xm4,71v9,0,22,1,23,-7r0,-192v1,-14,-23,-3,-22,-18v21,-6,42,-14,59,-24v6,4,2,17,3,26v38,-42,124,-22,119,49v-5,65,-51,111,-119,92r0,63v0,15,18,10,33,11r0,11r-96,0r0,-11"},{"d":"31,-23v-1,-23,31,-39,49,-20v17,18,5,49,-20,48v-17,0,-28,-12,-29,-28xm60,-244v49,8,20,81,14,116r-10,57r-7,0v-7,-47,-24,-88,-24,-139v0,-20,8,-33,27,-34","w":119},{"d":"57,-197v0,43,38,80,73,53v2,25,-29,39,-53,39v-40,0,-61,-29,-61,-69v0,-50,36,-78,86,-80v78,-3,103,93,69,157v-29,53,-84,90,-152,102r-5,-9v71,-19,129,-64,129,-150v0,-38,-11,-87,-49,-87v-25,0,-37,18,-37,44"},{"d":"27,-239v0,-12,10,-22,22,-22v12,0,23,9,22,22v0,12,-10,22,-22,22v-12,0,-21,-11,-22,-22xm8,-146v22,-5,40,-12,58,-21r3,3v-2,67,5,143,-4,203v-10,23,-34,35,-59,43r-2,-10v21,-6,25,-24,25,-51r0,-144v4,-18,-25,-3,-21,-23","w":100},{"d":"191,-38r-182,0r0,-32r182,0r0,32xm191,-111r-182,0r0,-33r182,0r0,33"},{"d":"84,-148r-7,53r40,0r7,-53r-40,0xm10,-95r38,0r7,-53r-34,0r0,-24r38,0r10,-76r28,0r-10,76r41,0r10,-76r28,0r-10,76r34,0r0,24r-38,0r-7,53r35,0r0,24r-39,0r-10,76r-28,0r10,-76r-41,0r-10,76r-28,0r11,-76r-35,0r0,-24"},{"d":"9,-183r183,80r0,25r-183,79r0,-32r138,-60r-138,-59r0,-33"},{"d":"36,-104r77,0r-1,-104xm181,-72r-28,0r0,72r-40,0r0,-72r-103,0r0,-21r120,-161r23,0r0,150r28,0r0,32"},{"d":"71,-11v25,2,37,-4,37,-30r0,-192v-42,2,-96,-12,-93,32r-10,0r6,-61v15,-1,11,11,30,11r186,0v10,-1,20,0,20,-11r8,1v-3,18,-5,36,-4,58r-11,4v5,-44,-47,-33,-86,-34r0,191v-1,25,12,33,37,31r0,11r-120,0r0,-11","w":259,"k":{"A":27,"y":40,"w":40,"u":33,";":27,"s":33,"r":33,".":33,"o":33,"i":13,"-":33,"e":33,",":33,":":27,"c":33,"a":33}},{"d":"152,-23v-1,-24,30,-38,48,-20v17,18,5,49,-20,48v-17,-1,-27,-11,-28,-28xm271,-23v-1,-23,31,-39,49,-20v17,18,5,49,-20,48v-17,0,-28,-12,-29,-28xm60,-52v15,0,29,14,29,29v-1,17,-12,28,-29,28v-17,0,-27,-11,-28,-28v-1,-15,14,-29,28,-29","w":360},{"d":"0,-100r180,0r0,29r-180,0r0,-29","w":180},{"d":"148,-181v0,-38,-22,-61,-65,-57r0,197v-1,25,13,33,40,30r0,11r-115,0v-2,-10,2,-13,14,-11v12,-2,15,-13,15,-29r0,-172v0,-20,-7,-30,-29,-28r0,-11v83,3,191,-21,188,68v-2,54,-39,77,-98,74r0,-11v39,3,50,-26,50,-61","k":{"A":20,".":46,",":46}},{"d":"233,-128v7,-13,1,-26,-17,-23r0,-11v20,2,40,3,59,0v-1,3,2,11,-2,11v-15,1,-19,14,-24,25r-54,131r-10,0r-44,-107r-47,107r-10,0r-63,-152v-3,-3,-8,-5,-16,-4r0,-11v27,2,53,2,80,0v8,18,-23,2,-14,25r33,85r31,-69v-7,-14,-8,-34,-32,-30r0,-11v29,2,57,3,85,0v8,19,-26,2,-15,29r32,79","w":280,"k":{".":27,",":27}},{"d":"15,-100r96,0r-7,29r-95,0","w":119},{"d":"78,67v-53,-62,-71,-203,-21,-284v8,-13,14,-28,22,-42r11,7v-17,47,-37,93,-37,155v0,62,19,109,37,155","w":119},{"d":"257,-240v-30,1,-29,27,-39,52r-77,193r-13,0r-92,-225v-6,-16,-12,-21,-33,-20r0,-11r108,0r0,11v-19,-2,-31,4,-24,21r63,160r62,-170v0,-12,-16,-10,-29,-11r0,-11r74,0r0,11","w":259,"k":{"A":40,"y":13,"u":20,";":33,"r":20,".":46,"o":37,"i":13,"-":33,"e":37,",":46,":":33,"a":33}},{"d":"51,-239v6,-20,41,-14,38,10r-8,70v-1,6,-3,9,-11,9v-8,0,-10,-3,-11,-9xm112,-239v1,-17,37,-15,37,0v1,29,-6,53,-8,80v-1,5,-2,9,-10,9v-8,0,-11,-2,-11,-9v-2,-27,-9,-54,-8,-80"},{"d":"105,-257r34,0r-107,262r-35,0","w":140},{"d":"17,-170v13,-2,7,8,20,8r108,0r3,5r-85,141v42,2,77,3,81,-32r9,0v-2,15,-6,31,-6,48r-140,0r87,-146v-32,1,-72,-5,-73,26r-8,0v2,-15,4,-34,4,-50","w":159},{"d":"15,-100r96,0r-7,29r-95,0","w":119},{"d":"17,-107r69,-141r28,0r69,141r-33,0r-50,-107r-50,107r-33,0"},{"d":"137,-150v-42,1,-37,-62,-13,-79v12,-9,25,-18,41,-22r5,11v-18,3,-37,10,-37,30v0,23,30,10,30,36v0,16,-11,24,-26,24xm62,-150v-41,1,-38,-62,-13,-79v12,-8,25,-18,41,-22r5,11v-18,3,-37,10,-37,30v0,23,30,10,30,36v0,15,-12,24,-26,24"},{"d":"100,-8v63,-17,50,-149,31,-208v-4,-13,-15,-27,-31,-25v-48,7,-44,77,-44,130v0,44,3,97,44,103xm15,-128v0,-66,19,-126,85,-126v68,0,85,60,85,126v0,68,-18,133,-85,133v-70,0,-85,-64,-85,-133"},{"d":"54,-150v4,-39,20,-96,-31,-90r0,-11r76,0r84,188r86,-188r74,0v4,24,-40,-3,-36,42r15,178v1,18,13,20,32,20r0,11r-111,0r0,-11v24,1,33,-6,31,-34r-11,-152r-92,202r-9,0r-87,-198r-13,158v-1,22,14,24,35,24r0,11r-91,0v-5,-21,35,-3,35,-33v0,-37,9,-78,13,-117","w":360},{"d":"215,-120v2,-85,-42,-126,-130,-117r0,196v-1,24,14,29,37,28v62,-2,91,-45,93,-107xm265,-126v0,88,-66,135,-163,125r-95,1v-5,-21,32,-4,32,-31r0,-189v0,-17,-13,-21,-32,-20r0,-11r115,0v86,2,143,41,143,125","w":280},{"d":"49,-261v12,0,23,9,22,22v0,12,-10,22,-22,22v-12,0,-21,-11,-22,-22v0,-12,10,-22,22,-22xm8,-146v22,-5,40,-12,58,-21r3,3r0,145v1,10,12,8,23,8r0,11r-84,0v-7,-19,21,-3,21,-22r0,-101v4,-18,-25,-3,-21,-23","w":100},{"d":"81,-73v-19,-24,-35,-52,-57,-74v-4,-3,-10,-4,-18,-4r0,-11r90,0v8,16,-24,6,-13,22r25,35v10,-14,24,-25,31,-41v0,-6,-12,-4,-18,-5r0,-11v23,2,46,2,69,0v3,20,-32,7,-40,30r-33,38v21,26,37,58,62,81v5,2,10,2,16,2r0,11r-90,0v-9,-18,28,-3,12,-24r-28,-38v-9,16,-34,31,-32,49v3,3,12,2,18,2r0,11r-70,0v-5,-19,25,-6,32,-22"},{"d":"179,-193v-2,-24,-9,-42,-37,-42r-57,0r0,94v33,-1,78,10,73,-29r11,0v-2,27,-2,55,0,82r-11,0v5,-40,-35,-36,-73,-35r0,92v-1,21,18,20,39,20r0,11r-117,0v-5,-21,32,-4,32,-31r0,-189v0,-17,-13,-21,-32,-20r0,-11r182,0v-1,19,0,36,0,55","k":{"A":18,".":40,",":40}},{"d":"50,-251v41,-1,38,61,14,79v-12,9,-26,18,-41,22r-5,-11v18,-3,37,-11,37,-30v0,-22,-31,-11,-31,-36v0,-15,12,-24,26,-24","w":100,"k":{"t":27,"s":33,"\u2019":25}},{"w":100},{"d":"0,-100r360,0r0,29r-360,0r0,-29","w":360},{"d":"89,-126v0,9,6,11,15,12r0,8r-68,0r0,-8v10,0,18,-4,18,-12r0,-117v-22,-2,-37,5,-39,23r-9,0r0,-31r130,0r0,31r-8,0v-3,-17,-16,-26,-39,-23r0,117xm187,-131v1,12,5,17,19,17r0,8r-48,0r0,-8v12,0,19,-5,18,-17r0,-93v0,-12,-13,-19,-25,-19r0,-8r50,0r50,104r55,-104r44,0r0,8v-14,1,-17,4,-18,17r0,95v0,12,5,15,17,17r0,8r-71,0r0,-8v12,0,19,-5,19,-17v-1,-26,2,-56,-1,-80r-53,106r-5,0r-51,-106r0,80","w":356},{"d":"69,-141v23,-21,84,-43,99,1v18,-9,32,-26,58,-27v64,-3,41,86,45,145v1,11,10,11,21,12r0,10r-83,0v-7,-18,22,-5,22,-21v0,-43,20,-119,-28,-119v-12,0,-25,6,-33,10r0,108v0,12,11,11,22,11r0,11r-84,0v-7,-18,24,-5,22,-22v-5,-43,19,-118,-28,-118v-12,0,-25,8,-33,13r0,105v0,11,11,12,23,11r0,11r-84,0v-7,-19,21,-3,21,-22r0,-101v4,-18,-25,-3,-21,-23v22,-5,40,-12,58,-21v6,4,2,17,3,26","w":299},{"d":"154,-208r-112,0v-7,7,-4,24,-20,22r8,-62r163,0r2,4r-132,252r-17,-8"},{"d":"40,-23v-1,-24,30,-38,48,-20v17,18,5,49,-20,48v-17,-1,-27,-11,-28,-28xm84,-98v-15,-1,-16,12,-16,27r-9,0r-1,-65v0,-3,1,-5,4,-5v28,0,54,-8,56,-35v1,-29,-24,-42,-55,-36v-12,0,-23,-7,-23,-21v0,-15,14,-19,26,-21v46,4,67,50,70,96v2,38,-20,53,-52,60","w":159},{"d":"42,-259v53,62,71,203,21,284v-8,13,-14,28,-22,42r-11,-6v17,-47,37,-94,37,-156v0,-62,-20,-108,-37,-155","w":119},{"d":"8,-150v21,-11,42,-33,57,-52v9,6,2,27,4,40r43,0r0,21r-43,0r0,98v-2,24,29,23,41,13r4,6v-13,33,-85,45,-85,-8r0,-109r-21,0r0,-9","w":119},{"d":"94,-241v-24,5,-34,44,-19,66v5,6,12,11,19,15r0,-81xm104,-12v30,-1,42,-45,24,-68v-6,-7,-14,-13,-24,-18r0,86xm175,-71v0,42,-28,73,-71,76r0,32r-10,0r0,-32v-26,1,-47,-7,-63,-17r-6,-54r10,-2v10,30,18,60,59,58r0,-94v-31,-17,-64,-31,-64,-79v0,-43,28,-68,64,-74r0,-20r10,0r0,20r57,5v0,18,2,35,4,51r-11,2v-3,-26,-20,-49,-50,-44r0,89v34,19,71,31,71,83"},{"d":"22,-133v-1,-24,30,-38,48,-20v18,18,4,49,-20,49v-16,0,-28,-12,-28,-29xm48,-52v45,0,41,68,16,89v-12,11,-27,20,-45,25r-6,-10v18,-5,40,-13,41,-35v1,-25,-32,-15,-32,-41v0,-14,11,-28,26,-28","w":100},{"d":"22,-23v-1,-24,30,-38,48,-20v17,18,5,49,-20,48v-17,-1,-27,-11,-28,-28","w":100},{"d":"161,-208v6,-6,26,-26,8,-31r-16,-1r0,-11r94,0v3,20,-39,9,-50,31r-69,73r92,116v7,10,18,20,33,20r0,11r-71,0v-29,-45,-64,-82,-96,-124xm85,-31v0,18,14,21,33,20r0,11r-111,0v-5,-21,32,-4,32,-31r0,-189v0,-17,-13,-21,-32,-20r0,-11r111,0v5,21,-39,3,-33,31r0,189","w":259},{"d":"202,-240v-21,-3,-18,13,-12,26r14,32v6,-16,16,-29,18,-48v1,-11,-10,-9,-20,-10xm312,-211v10,-16,7,-34,-20,-29r0,-11r67,0v-1,4,3,13,-4,11v-13,0,-17,13,-21,23r-85,222r-13,0r-48,-112r-48,112r-12,0r-102,-236v-5,-7,-12,-10,-25,-9r0,-11r97,0v-1,4,3,12,-3,11v-29,0,-12,27,-4,45r59,138r30,-70r-45,-104v-3,-8,-11,-9,-22,-9r0,-11r157,0v5,19,-26,5,-30,25r-28,62r45,105","w":360,"k":{"A":33,"y":13,"u":20,";":27,"r":20,".":40,"o":33,"i":13,"-":27,"e":27,",":40,":":27,"a":33}},{"d":"32,-239v1,-17,37,-15,37,0v0,27,-6,53,-8,80v-1,6,-3,9,-11,9v-8,0,-10,-3,-11,-9v-2,-27,-8,-54,-7,-80","w":100},{"d":"69,-19v1,10,12,8,23,8r0,11r-84,0v-7,-19,21,-3,21,-22r0,-101v4,-18,-25,-3,-21,-23v22,-5,40,-12,58,-21v6,4,2,17,3,26v17,-8,30,-26,57,-26v64,0,44,87,44,146v0,11,12,10,22,10r0,11r-83,0v-7,-17,20,-6,21,-20v-6,-43,19,-119,-27,-120v-12,0,-26,8,-34,12r0,109"},{"d":"90,-251v-26,8,-8,60,-13,89r40,0r0,21r-40,0r0,116v-1,17,14,14,32,14r0,11r-98,0r0,-11v14,-1,25,3,25,-13r0,-117r-25,0v0,-15,17,-13,25,-21v-4,-63,24,-101,71,-113v15,0,26,7,25,23v0,10,-6,20,-18,19v-13,-1,-10,-18,-24,-18","w":119,"k":{"\u2019":-17}},{"d":"102,-8v63,0,52,-143,-3,-146v-37,-2,-41,38,-41,74v0,36,8,72,44,72xm100,5v-54,0,-86,-33,-86,-86v0,-53,33,-86,86,-86v53,0,86,31,86,84v0,53,-34,88,-86,88"},{"d":"44,-11r-23,-23r56,-57r-56,-57r22,-22r57,56r57,-56r23,23r-57,56r57,57r-23,23r-57,-57"},{"d":"48,-52v45,0,41,68,16,89v-12,11,-27,20,-45,25r-6,-10v18,-5,40,-13,41,-35v1,-25,-32,-15,-32,-41v0,-14,11,-28,26,-28","w":100},{"d":"143,-71v3,-48,-39,-92,-79,-61r0,99v8,11,17,26,37,25v34,-1,40,-30,42,-63xm186,-88v4,77,-81,115,-142,80v-8,3,-13,17,-22,10v5,-75,1,-159,2,-237v-7,-7,-24,-2,-24,-15v21,-7,41,-15,60,-25r4,3r0,128v15,-10,29,-23,54,-23v46,0,66,33,68,79"},{"d":"106,-238v-35,0,-30,51,-6,61v4,3,8,5,12,7v26,-11,33,-68,-6,-68xm55,-91v-3,64,93,81,122,33v-25,-35,-55,-63,-92,-85v-14,12,-29,28,-30,52xm211,-82v15,35,75,89,110,40r7,6v-14,22,-34,44,-68,44v-42,0,-58,-31,-76,-57v-21,26,-45,54,-90,54v-46,0,-73,-28,-73,-74v0,-42,29,-63,56,-79v-44,-25,-29,-110,34,-103v51,-7,67,57,25,77r-15,9v33,18,61,45,83,74v12,-24,31,-45,38,-73v-1,-11,-11,-14,-24,-13r0,-11v34,0,69,4,101,0r0,11v-64,0,-78,60,-108,95","w":339},{"d":"42,-11v21,0,42,2,42,-19r0,-181r-49,23r-6,-11v31,-15,63,-38,89,-55r10,0r0,223v-2,22,19,20,40,20r0,11r-126,0r0,-11"},{"d":"249,-62r-13,62r-226,0r166,-233v-58,5,-144,-21,-143,41r-12,0r5,-65r10,-3v2,10,15,8,26,9r181,0r-165,233r105,0v37,1,47,-20,56,-46","w":259},{"d":"38,63v12,0,15,-14,15,-28r0,-256v1,-20,-16,-20,-35,-19r0,-11r112,0v5,21,-31,4,-31,30r0,211v-2,49,-27,86,-76,88v-24,1,-41,-8,-42,-30v0,-11,9,-20,22,-20v27,0,12,35,35,35","w":140},{"d":"146,5v-67,0,-107,-23,-107,-89r0,-130v0,-20,-10,-29,-33,-26r0,-11r112,0v2,10,-2,13,-15,11v-12,1,-19,11,-18,26v5,85,-27,201,68,201v93,0,63,-116,68,-201v1,-21,-10,-29,-33,-26r0,-11r86,0r0,11v-22,-3,-32,5,-31,26v1,106,16,219,-97,219","w":280},{"d":"17,-116v0,-51,62,-61,100,-42r-1,38r-10,2v6,-36,-52,-51,-57,-14v7,45,74,29,74,84v0,54,-61,62,-103,44r-3,-40r10,-2v2,21,13,38,35,38v13,0,30,-8,27,-23v-7,-43,-72,-30,-72,-85","w":140},{"d":"212,-57r-13,57r-192,0v-5,-21,32,-4,32,-31r0,-189v0,-17,-13,-21,-32,-20r0,-11r182,0v-1,19,0,36,0,55r-10,3v3,-48,-47,-43,-94,-42r0,94v35,1,74,5,71,-32r11,0v-2,28,-1,55,0,83r-11,3v-2,-20,-5,-36,-28,-36r-43,0v6,45,-23,119,44,107v44,2,66,-9,73,-44","w":219},{"d":"156,-188v0,-41,-27,-54,-71,-50r0,97v41,2,71,-8,71,-47xm170,-70v2,-48,-34,-61,-85,-58v7,44,-22,120,32,115v34,-3,52,-24,53,-57xm219,-71v0,89,-117,68,-212,71v-5,-21,32,-4,32,-31r0,-189v0,-17,-13,-21,-32,-20r0,-11v79,5,197,-23,197,56v0,39,-33,52,-66,59v44,2,81,20,81,65","w":240},{"d":"180,-11v20,1,35,0,35,-20r0,-90r-130,0r0,90v-1,20,15,21,35,20r0,11r-113,0v-5,-21,32,-4,32,-31r0,-189v0,-17,-13,-21,-32,-20r0,-11r113,0r0,11v-20,-1,-35,0,-35,20r0,79r130,0v-7,-39,24,-108,-35,-99r0,-11r113,0v5,21,-32,4,-32,31r0,189v0,17,13,22,32,20r0,11r-113,0r0,-11","w":299},{"d":"73,5v-68,3,-36,-87,-45,-145v-4,-8,-26,-1,-22,-17v23,2,49,-10,65,-8v-3,35,0,74,-2,112v-2,40,47,33,61,14v-1,-32,3,-70,-2,-99v-5,-8,-28,-2,-25,-19v23,-1,52,-9,69,-8v-3,42,0,90,-2,135v-1,14,7,14,21,13r0,9v-20,4,-39,5,-57,13v-8,-3,-2,-19,-4,-28v-15,12,-30,27,-57,28"},{"d":"106,-127v-11,-17,-37,-12,-37,13r0,95v1,11,19,7,33,8r0,11r-96,0v-7,-18,24,-4,23,-20r0,-98v2,-18,-9,-16,-23,-19r0,-9v22,-4,41,-12,60,-21v7,3,0,21,4,27v9,-13,21,-27,42,-27v12,0,23,6,23,21v0,16,-15,25,-29,19","w":140,"k":{".":27,"-":20,",":27}},{"d":"143,5r-35,0r-107,-262r34,0","w":140},{"d":"57,-42v-2,36,46,23,52,4r0,-43v-22,8,-51,11,-52,39xm176,-17v-12,25,-65,33,-65,-6v-15,13,-29,28,-56,28v-37,0,-52,-48,-24,-67v21,-15,52,-21,78,-31v2,-28,-2,-51,-28,-50v-18,0,-28,7,-28,26v-1,10,-30,23,-32,6v8,-52,128,-87,129,-8r0,73v-2,19,7,34,21,22","w":180},{"d":"19,-182v0,-69,66,-84,131,-69v0,17,2,35,4,51r-10,2v-3,-25,-16,-45,-42,-46v-28,-1,-48,18,-45,46v8,67,108,46,108,128v0,72,-89,92,-144,59r-6,-55r10,-2v4,33,20,58,56,58v26,0,44,-14,44,-41v0,-70,-106,-49,-106,-131","w":180},{"d":"147,-241v-60,0,-82,46,-82,105v0,66,24,126,88,126v64,0,82,-51,82,-115v0,-62,-27,-116,-88,-116xm149,5v-82,0,-134,-47,-134,-129v0,-81,53,-133,133,-133v80,0,137,43,137,125v0,85,-51,137,-136,137","w":300},{"d":"54,-88v-4,50,39,87,77,58r0,-98v-5,-12,-20,-23,-35,-23v-32,0,-40,30,-42,63xm14,-70v4,-65,51,-111,117,-92r0,-73v-7,-6,-24,-2,-24,-15v21,-6,41,-15,60,-25r5,3r0,254r21,-1r0,9v-17,0,-46,17,-61,13r0,-22v-37,46,-122,18,-118,-51"},{"d":"112,-117v8,-47,-51,-45,-59,-10v-2,5,-3,10,-4,16v20,-3,53,7,63,-6xm48,-100v-6,60,59,97,99,54r6,6v-15,22,-33,45,-69,45v-46,0,-67,-36,-70,-82v-5,-68,73,-117,122,-72v11,10,14,26,14,45r-5,4r-97,0","w":159},{"d":"81,-199v-37,-2,-50,-28,-77,-40v-13,-11,5,-29,17,-19v21,19,40,39,60,59","w":100},{"d":"80,-38v-17,15,-7,31,19,27r0,11r-93,0v-5,-18,22,-9,33,-21v28,-30,54,-63,80,-95r-74,-101v-10,-13,-17,-24,-39,-23r0,-11r114,0v9,20,-39,2,-19,31r48,66v18,-26,41,-46,55,-76v-1,-11,-15,-10,-28,-10r0,-11r95,0r0,11v-26,-2,-40,13,-53,28r-59,72r80,111v9,9,17,19,35,18r0,11r-108,0v-8,-19,34,-2,14,-30r-51,-72","w":280},{"d":"147,-241v-60,0,-82,46,-82,105v0,66,24,126,88,126v64,0,82,-51,82,-115v0,-62,-27,-116,-88,-116xm291,61v-59,58,-109,-31,-153,-56v-75,-6,-123,-50,-123,-129v0,-81,53,-133,133,-133v80,0,137,43,137,125v0,74,-40,118,-101,132v30,16,52,48,86,60v11,-1,16,-10,21,1","w":300},{"d":"120,-240v-19,-1,-34,-1,-34,19r0,186v1,22,23,20,45,21v39,1,65,-15,70,-47r11,0r-14,61r-190,0v-2,-10,2,-13,15,-11v11,-1,18,-10,17,-24r0,-185v1,-19,-13,-21,-32,-20r0,-11r112,0r0,11","w":219,"k":{"y":20,"\u2019":27,"Y":46,"W":46,"V":46,"T":33}},{"d":"80,-156v-43,0,-37,89,2,90v23,1,27,-18,27,-39v0,-24,-5,-51,-29,-51xm84,69v29,-1,58,-11,58,-38v0,-23,-23,-26,-45,-26v-28,0,-58,5,-59,32v-1,25,22,32,46,32xm9,44v0,-29,23,-33,42,-43v-23,-2,-36,-13,-36,-38r31,-22v-18,-9,-35,-25,-35,-50v0,-58,76,-68,121,-47r39,0r0,18r-27,0v21,55,-27,98,-86,82v-14,5,-9,27,8,26v45,-2,106,-12,105,37v-1,52,-42,75,-93,75v-33,0,-69,-7,-69,-38","w":180},{"d":"83,-31v0,17,13,22,32,20r0,11r-110,0v-5,-21,32,-4,32,-31r0,-189v0,-17,-13,-22,-32,-20r0,-11r110,0v5,21,-32,4,-32,31r0,189","w":119},{"d":"87,-151v-16,-3,-23,6,-15,19r32,82v10,-30,26,-60,33,-93v-1,-9,-11,-7,-21,-8r0,-11v20,2,40,3,59,0v3,17,-17,9,-20,27r-80,193v-5,10,-14,25,-28,24v-12,0,-20,-9,-20,-21v0,-18,25,-25,37,-14r18,-44r-62,-149v-3,-4,-8,-5,-15,-5r0,-11v27,2,55,2,82,0r0,11","w":180,"k":{".":33,",":33}},{"w":100},{"d":"22,-133v-1,-24,30,-38,48,-20v18,18,4,49,-20,49v-16,0,-28,-12,-28,-29xm22,-23v-1,-24,30,-38,48,-20v17,18,5,49,-20,48v-17,-1,-27,-11,-28,-28","w":100},{"d":"104,65v-70,11,-61,-55,-60,-118v-1,-26,-7,-36,-28,-43v56,-10,3,-114,43,-152v10,-10,26,-8,45,-9r0,5v-67,4,5,142,-59,157v42,5,25,65,28,110v2,23,5,47,31,46r0,4","w":119},{"d":"159,-257v37,-1,59,11,92,14v2,20,0,44,5,61r-11,1v-9,-41,-37,-60,-84,-60v-65,1,-94,44,-96,108v-2,81,55,144,137,116v-4,-33,17,-85,-32,-77r0,-11r103,0v0,5,2,13,-5,11v-33,-1,-16,45,-20,73v4,2,11,2,9,11v-32,9,-61,15,-101,15v-88,-1,-141,-48,-141,-135v0,-84,61,-124,144,-127","w":280},{"d":"144,-52v2,-41,-37,-79,-73,-53v-5,-24,28,-38,52,-38v40,0,61,29,61,69v0,50,-36,77,-86,79v-78,2,-103,-93,-69,-156v28,-54,83,-91,152,-103r5,10v-70,19,-128,64,-128,150v0,39,10,84,49,86v26,1,36,-19,37,-44"},{"d":"16,-257v40,-1,60,12,60,53v0,44,-12,101,28,108v-71,9,30,167,-88,161r0,-4v66,-3,-6,-141,59,-157v-41,-6,-29,-65,-29,-111v0,-24,-5,-45,-30,-45r0,-5","w":119},{"d":"66,39v-1,21,27,14,47,15r0,11r-78,-1r2,-321r76,0r0,11v-18,2,-47,-7,-47,16r0,269","w":119},{"d":"84,-181r32,0r0,74r75,0r0,32r-75,0r0,75r-32,0r0,-75r-75,0r0,-32r75,0r0,-74"},{"d":"78,-11v56,10,31,-62,36,-106r-86,-117v-6,-5,-13,-7,-24,-6r0,-11r110,0v9,20,-37,3,-17,31r55,76v18,-30,41,-54,55,-88v-2,-9,-16,-8,-27,-8r0,-11r76,0r0,11v-12,0,-23,8,-28,16r-67,95r0,86v-2,27,9,34,36,32r0,11r-119,0r0,-11","w":259,"k":{"A":33,"v":27,"u":27,";":33,"q":40,".":40,"p":27,"o":40,"i":20,"-":40,"e":33,",":40,":":33,"a":33}},{"d":"141,-76v27,-7,41,-38,42,-73v0,-14,-5,-22,-18,-23v-28,5,-42,31,-43,64v0,18,2,31,19,32xm48,-120v-4,91,108,127,181,85r4,17v-22,11,-45,24,-78,23v-88,-1,-142,-45,-142,-125v0,-86,53,-137,138,-137v74,0,124,40,124,112v0,49,-20,91,-70,91v-19,0,-31,-13,-35,-28v-9,13,-22,28,-45,28v-27,-1,-38,-18,-38,-47v2,-52,39,-108,96,-88r7,12r4,-13r28,0r-23,103v0,8,3,11,12,11v25,-7,37,-37,37,-68v0,-57,-35,-91,-97,-90v-67,1,-101,45,-103,114","w":288},{"d":"123,-60v0,-51,-44,-70,-87,-80r35,-108r100,0r-12,37r-87,0r-11,34v47,15,96,35,96,96v0,56,-42,86,-97,86v-21,0,-42,-5,-43,-26v-1,-7,4,-14,11,-13v19,5,18,28,47,26v31,-2,48,-21,48,-52"},{"d":"154,-257v40,-1,56,14,90,18v0,22,0,41,3,60r-11,2v-11,-37,-31,-65,-81,-64v-64,1,-90,47,-90,110v0,68,31,121,99,121v41,0,64,-27,73,-61r10,2v-4,19,-6,38,-9,58v-22,10,-49,17,-82,16v-88,-2,-141,-44,-141,-134v0,-83,58,-125,139,-128","w":259},{"d":"159,-186v0,-39,-31,-58,-73,-51r0,107v48,3,73,-9,73,-56xm8,-11v17,1,33,-2,32,-19r0,-183v1,-21,-9,-30,-32,-27r0,-11v83,5,200,-25,200,63v-1,36,-24,51,-50,63r68,102v7,7,16,11,28,12r0,11r-69,0v-29,-37,-51,-75,-75,-117r-24,0v7,41,-24,113,36,106r0,11r-114,0r0,-11","w":259,"k":{"y":13,"Y":27,"W":27,"V":27,"T":18}},{"d":"130,-110v4,-38,-43,-33,-61,-18r0,109v1,10,12,8,23,8r0,11r-84,0r0,-11v12,0,21,1,21,-11r-1,-213v-4,-7,-24,-4,-20,-19v17,-4,42,-14,58,-21r3,3r0,131v17,-8,30,-26,57,-26v64,0,44,87,44,146v0,11,12,10,22,10r0,11r-83,0v-7,-17,21,-6,21,-20r0,-90"},{"d":"42,-208v0,-22,-14,-33,-37,-32r0,-11r73,0r161,180r0,-136v0,-25,-13,-35,-39,-33r0,-11r95,0v0,6,2,13,-6,11v-26,0,-32,17,-32,45r3,200r-14,0r-186,-206r0,148v0,30,8,45,40,42r0,11r-95,0v0,-5,-2,-13,5,-11v26,0,32,-19,32,-46r0,-151","w":299},{"d":"107,-23v22,0,32,-11,44,-22r6,7v-15,22,-32,43,-68,43v-50,-1,-75,-30,-75,-80v0,-55,35,-92,91,-92v24,0,45,5,47,27v0,11,-9,20,-20,19v-21,-3,-16,-31,-42,-30v-28,1,-39,22,-38,51v1,41,16,77,55,77","w":159},{"d":"63,-251v41,-1,38,62,13,79v-12,8,-26,18,-41,22r-5,-11v18,-3,37,-10,37,-30v0,-22,-30,-10,-30,-36v0,-16,11,-24,26,-24xm138,-251v41,-1,38,62,14,79v-11,9,-26,18,-41,22r-6,-11v18,-3,38,-11,38,-30v0,-22,-31,-11,-31,-36v0,-15,12,-24,26,-24"},{"d":"8,-11v12,0,21,1,21,-11r-1,-213v-4,-7,-23,-4,-20,-19v17,-4,42,-14,58,-21r3,3r0,250v-1,12,11,11,23,11r0,11r-84,0r0,-11","w":100},{"d":"136,0v-20,-19,-44,-81,-67,-68v2,24,-11,64,22,57r0,11r-83,0r0,-11v12,0,21,1,21,-11r-1,-213v-4,-7,-23,-4,-20,-19v17,-4,42,-14,58,-21r3,3r0,187v27,-10,40,-37,61,-53v8,-10,-7,-14,-16,-13r0,-11v25,2,51,2,76,0v5,19,-28,9,-39,24v-15,11,-28,26,-41,39r71,84v5,3,8,4,14,4r0,11r-59,0"},{"d":"54,-230v2,-22,-27,-15,-48,-16r0,-11v25,2,57,-3,79,2r0,319v-22,2,-53,-1,-79,1r0,-11v18,-3,48,7,48,-15r0,-269","w":119}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+256-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("kY`8ZL]vB6;|k9nARL{fQYQ;xs]8`L;|xs%fB6Th`IM.HyvoGh`zk^GaXNtnXn-8G^)-W2-X?9t&B^v^P^TCxNCfG2QsxNCfG2tyCN?~k{`?Qnw+@n-8G2z5`{&?R$QwG6Gw$CT(@t`?R$QwG$n?R$)wH$z?R$QwG$T?R$Q-G^%~]yM(R9EA!,~x%s&LZ8-8G2z,]f-o%^{B0nIyTC%QRx%?xY{$$sTnH{5T$YR%@0)V@v?sXI.q6C)8E8%m$L]?R$QwG6T.B8vo!h]wZYnvk9Qok0-(P$).?28o!h).Z28w!L-nZLRvB9-hP6Q|`o&hZNnwBNG;@3vAB6HmHo&+Byv+xo_:WhR)z92t{YNQ%k!G]WPET0$CI6xH`BZ?R@X_5o^,nLhm(Dq.~|+w-fyv8s3a&VAM;U:3R8w|k$MmPym|k8w|Hs;.R68oB6{?!LI,Rxw|k8w|x9(?!L]+ZNI~HLn5x9&n`NIM!o~?!hRqH3%?!L;f`3-3Bs]fx9&+?LRM!o~?!nwDx9&3Bs]fx9&+?L?(%9;(!hTn?3EmZY;^HxT(Zsa|BY;yRY&5Z6C(k6`+?o_AB$-.Wf.qB0nh6s]ZBI8RPxzZBI8;k0_(")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":200,"face":{"font-family":"Sabon LT","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 2 0 0 2 0 3","ascent":"288","descent":"-72","x-height":"5","bbox":"-19 -277 360 82.0475","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+2122"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1989 Adobe Systems Incorporated. All Rights Reserved.Sabon is a
 * registered trademark of Linotype AG and/or its subsidiaries.
 * 
 * Trademark:
 * Sabon is a registered trademark of Linotype AG and/or its subsidiaries.
 * 
 * Description:
 * The digitally encoded machine readable software for producing the Typefaces
 * licensed to you is copyrighted (c) 1989 Adobe Systems. All Rights Reserved. This
 * software is the property of Adobe Systems Incorporated and its licensors, and
 * may not be reproduced, used, displayed, modified, disclosed or transferred
 * without the express written approval of Adobe. The digitally encoded machine
 * readable outline data for producing the Typefaces licensed to you is copyrighted
 * (c) 1981 Linotype AG and/or its subsidiaries. All Rights Reserved. This data is
 * the property of Linotype AG and/or its subsidiaries and may not be reproduced,
 * used, displayed, modified, disclosed or transferred without the express written
 * approval of Linotype AG and/or its subsidiaries.
 * 
 * Vendor URL:
 * http://www.linotypelibrary.com
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"52,-227v30,-40,122,-36,116,29v-8,86,-81,118,-125,169r111,0v6,-7,7,-25,20,-19r-14,48r-153,0r1,-13r51,-47v31,-32,72,-69,76,-126v2,-27,-13,-46,-39,-46v-27,0,-39,16,-54,29v-12,-9,4,-16,10,-24"},{"d":"33,5v-19,1,-15,-27,-11,-41r32,-108r-35,0r4,-15r35,0r14,-45r29,0r-15,45r39,0r-5,15r-38,0v-10,39,-25,73,-33,115v13,22,39,-14,51,-24r5,7v-19,18,-38,48,-72,51","w":119},{"d":"21,-98r84,0r-5,24r-86,0","w":119},{"d":"110,-244v-60,-3,-70,120,-6,118v14,0,23,-5,32,-12v-2,23,-31,26,-52,29v-33,-3,-54,-24,-54,-61v0,-50,33,-82,82,-84v71,-3,88,85,57,141v-29,55,-82,100,-151,113r-3,-8v81,-20,138,-84,138,-177v0,-31,-11,-58,-43,-59"},{"d":"24,-117r65,-131r22,0r65,131r-24,0r-52,-105r-51,105r-25,0"},{"d":"248,-257r17,0r-161,265r-17,0xm266,-106v-29,2,-41,35,-41,66v0,19,5,36,24,36v32,0,42,-35,42,-65v0,-19,-5,-39,-25,-37xm103,-244v-32,1,-42,36,-42,66v0,19,6,36,25,36v30,0,39,-34,41,-65v1,-19,-4,-38,-24,-37xm86,-133v-32,0,-51,-22,-51,-55v0,-40,29,-66,68,-66v34,0,51,21,51,55v0,39,-27,66,-68,66xm250,5v-33,0,-52,-22,-52,-54v0,-40,30,-67,69,-67v33,0,51,23,51,55v0,39,-28,66,-68,66","w":360},{"d":"40,-49v-4,41,43,34,61,12v20,-24,56,-65,35,-104v-5,-5,-11,-7,-19,-7v-46,0,-72,52,-77,99xm57,-125v19,-21,79,-65,100,-19r9,-24r21,-7r-61,244v8,4,27,0,23,13r-81,0r2,-9r28,-4r34,-129v-22,25,-44,65,-87,65v-51,0,-28,-79,-10,-103v7,-9,14,-19,22,-27"},{"d":"41,43v-7,19,15,18,35,17r-2,9r-58,0r62,-326v18,0,36,2,53,0r-1,10v-17,1,-32,-3,-36,15","w":119},{"d":"45,-134v-14,1,-23,16,-30,24r-5,-6v14,-17,30,-43,54,-49v18,0,16,18,12,33v-3,16,-12,35,-13,49v16,-27,32,-70,66,-82v16,2,13,39,-4,39v-53,0,-56,66,-76,105v-5,10,1,29,-19,26v-4,0,-16,-3,-11,-9r33,-121v0,-4,-3,-9,-7,-9","w":140,"k":{".":40,"-":20,",":40}},{"d":"13,-18r56,-233v-5,-5,-19,-5,-16,-15v20,0,37,-9,53,-8r-50,190v25,-32,51,-71,98,-81v52,10,14,86,-1,112v-13,22,-25,49,-54,53v-19,-2,-2,-24,1,-33r25,0v11,-25,24,-54,26,-89v2,-31,-30,-19,-43,-6v-32,32,-61,69,-71,122v-7,11,-37,5,-24,-12"},{"d":"22,-2v-1,11,-19,9,-17,-2v0,-8,1,-11,6,-16r104,-106v-28,3,-64,-33,-78,-1v4,7,6,19,-5,19v-24,-20,16,-51,40,-57v24,0,45,28,68,15v-4,-14,15,-25,17,-9v-32,47,-76,79,-112,121v32,1,45,39,75,39v25,0,-8,-34,14,-36v5,0,11,7,10,13v-4,24,-17,45,-42,47v-31,-4,-43,-42,-73,-46v-11,-2,-11,12,-7,19","w":159},{"d":"158,-66v3,65,-80,87,-130,58v-6,5,-8,13,-20,11r10,-76r7,0v-16,73,100,92,100,23v0,-64,-77,-73,-80,-140v-3,-62,62,-78,116,-58v5,0,7,-4,14,-3r-12,63r-7,0v4,-36,-12,-57,-44,-57v-24,1,-39,14,-39,38v0,64,81,72,85,141","w":180},{"d":"141,-251v28,6,7,52,7,75v0,12,-12,12,-13,0r-7,-60v0,-9,3,-15,13,-15xm95,-251v29,4,7,50,7,75v0,12,-12,12,-13,0r-7,-60v0,-9,3,-16,13,-15"},{"d":"127,-49v23,-32,43,-119,-30,-103v-5,1,-10,2,-13,4v-9,41,-27,76,-27,120v0,35,44,24,55,2v4,-8,10,-15,15,-23xm181,-120v-7,73,-63,146,-133,115r-18,70r29,5v-4,16,-36,5,-58,12r-2,-3r55,-218r-43,17r2,-14v14,-6,29,-12,44,-16r11,-43r30,-8r-11,45v36,-12,99,-10,94,38"},{"d":"249,-48v-5,8,-8,29,8,19v9,-6,17,-12,24,-20v5,18,-30,46,-57,49v-15,1,-13,-16,-9,-29r33,-98v-6,-23,-34,5,-42,11v-35,29,-56,67,-73,112v-3,8,-21,5,-25,0v13,-42,30,-78,39,-123v-17,-26,-48,17,-60,29v-24,25,-41,57,-52,94v-4,5,-22,6,-25,-1r40,-124v-10,-19,-28,8,-36,17v-14,-12,15,-26,22,-36v8,-12,44,-29,47,-4v-3,26,-19,49,-22,72v25,-31,57,-77,103,-85v19,-3,16,18,12,32r-17,53v30,-29,58,-75,108,-85v18,0,15,20,11,33","w":299},{"d":"42,-248r163,0r-154,256r-14,-8r134,-220r-123,0v-5,6,-4,18,-18,16"},{"w":100},{"d":"75,-31v-6,21,12,23,33,22r-1,9r-100,0v1,-18,30,-2,35,-31r35,-194v0,-17,-13,-17,-31,-17r2,-9r156,0r-4,49r-7,0v5,-43,-37,-40,-81,-38r-18,102v38,-2,85,11,87,-34r8,0r-15,87r-8,0v6,-20,0,-38,-22,-38r-54,0","k":{"A":20,".":46,",":46}},{"d":"66,-18v0,11,-12,25,-24,23v-12,2,-24,-11,-24,-23v0,-12,12,-24,24,-24v12,0,24,13,24,24xm85,-124v0,12,-12,24,-24,24v-12,0,-24,-13,-24,-24v0,-11,12,-24,24,-24v12,0,24,12,24,24","w":100},{"d":"66,-231v0,-8,7,-17,16,-17v10,0,17,8,17,17v0,22,-33,19,-33,0xm53,-131v-12,-19,-26,28,-35,13v13,-19,30,-44,57,-47v17,-2,9,21,6,30v-10,36,-26,69,-33,106v12,20,25,-30,37,-13v-13,18,-30,44,-57,47v-18,2,-15,-20,-10,-32","w":100},{"d":"67,-18v0,11,-11,25,-23,23v-12,2,-24,-11,-24,-23v0,-12,12,-24,24,-24v12,0,23,12,23,24xm93,-242v30,4,10,49,4,66r-42,108r-7,0r14,-109v3,-26,6,-61,31,-65","w":119},{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},{"d":"59,-74v41,-2,79,-16,87,-52v-7,-34,-54,-8,-62,8v-11,11,-20,29,-25,44xm180,-13v-7,33,-69,17,-78,-5v-15,-16,-24,-38,-44,-49r-18,65v0,7,-15,9,-22,5v-3,-2,-3,-4,-3,-6r60,-244v-6,-5,-20,-5,-17,-16v18,-3,36,-11,53,-11r-41,160v16,-22,41,-47,75,-51v16,-2,28,11,27,27v-3,43,-47,55,-80,69v31,14,41,72,88,56"},{"d":"113,-155v-49,2,-67,51,-67,100v0,30,11,51,42,51v49,0,66,-53,66,-100v0,-29,-10,-53,-41,-51xm88,5v-45,0,-71,-27,-71,-72v0,-57,40,-98,97,-98v43,0,69,30,69,74v0,56,-38,96,-95,96"},{"d":"242,-143v0,-71,-50,-102,-128,-96r-38,205v-4,23,23,22,46,22v79,-2,120,-53,120,-131xm277,-138v0,133,-123,147,-269,138v1,-18,38,-1,36,-35r34,-192v-1,-15,-16,-14,-32,-15r2,-9r96,0v82,1,133,35,133,113","w":299},{"d":"154,-12v37,0,54,-21,63,-51r9,0r-19,63r-195,0r1,-9v26,2,33,-11,37,-33r32,-180v3,-18,-13,-21,-32,-20r2,-9r101,0r-2,9v-22,-2,-33,4,-36,23r-38,207r77,0","w":240,"k":{"y":20,"\u2019":46,"Y":40,"W":40,"V":40,"T":33}},{"d":"33,-275r24,0r0,280r-24,0r0,-280","w":79},{"d":"180,2r-159,-70r0,-23r159,-70r0,26r-132,55r132,56r0,26"},{"d":"130,-44v-7,27,2,39,33,35r-2,9r-104,0r1,-9v25,1,35,-5,38,-28r36,-200r-61,0v-26,0,-33,21,-38,41r-10,0r14,-61v53,13,131,2,196,6v11,1,15,-7,25,-6r-6,62r-9,0v2,-26,-2,-42,-28,-42r-50,0","w":240,"k":{"A":24,"y":31,"w":33,"u":27,";":27,"s":20,"r":20,".":40,"o":31,"i":13,"-":33,"e":27,",":40,":":27,"c":27,"a":27}},{"d":"118,-171v-43,-11,-67,39,-62,84v20,-28,47,-48,67,-76v0,-3,-2,-6,-5,-8xm190,-139v-2,22,24,11,24,30v-9,24,-43,11,-41,-14v3,-34,30,-56,64,-58v38,-2,40,38,70,45v30,-5,-16,-43,14,-47v9,-1,15,10,15,19v-2,27,-23,42,-48,45v-14,1,-24,-14,-32,-20v-5,84,-44,144,-132,144v-57,0,-91,-35,-91,-92v0,-56,41,-107,95,-107v10,0,18,3,23,9v14,-18,51,-36,38,-69v-1,-8,6,-13,14,-13v33,13,-10,53,-20,64r-89,85v-11,15,-28,26,-30,49v5,32,32,48,66,48v76,0,113,-50,117,-126v-11,-18,-55,-22,-57,8","w":339},{"d":"66,-18v0,11,-12,25,-24,23v-12,2,-24,-11,-24,-23v0,-12,12,-24,24,-24v12,0,24,13,24,24","w":100},{"d":"80,-18v0,12,-12,25,-24,23v-12,2,-24,-11,-24,-23v0,-12,12,-24,24,-24v12,0,24,13,24,24xm132,-206v3,-31,-33,-24,-54,-20v-6,1,-11,-5,-11,-11v0,-12,9,-14,22,-14v58,0,80,84,27,103v-25,10,-64,9,-64,40v0,19,23,24,39,21v6,-1,7,4,8,9v0,7,-4,15,-12,14v-30,-4,-47,-30,-50,-58v-7,-63,91,-30,95,-84","w":159},{"d":"4,-100r360,0r-8,24r-360,0","w":360},{"d":"175,-44v-9,26,-52,78,-72,27r-15,-47v-21,25,-32,59,-68,69v-29,0,-21,-38,-1,-42v7,3,0,17,12,16v28,-6,37,-36,54,-54v-8,-22,-8,-56,-32,-61v-13,0,-21,15,-25,23r-7,-4v4,-38,60,-71,74,-19r10,32v20,-22,30,-54,67,-59v28,3,13,36,-2,41v-7,-3,-2,-14,-14,-13v-23,4,-34,28,-47,44v10,23,8,59,31,69v17,-1,21,-16,30,-26"},{"d":"76,-38v-6,25,8,32,34,29r-2,9r-100,0v1,-18,31,-2,34,-30v7,-67,29,-134,33,-201v-4,-10,-18,-11,-33,-11r2,-9v71,3,170,-19,168,56v-1,55,-49,78,-106,73r2,-10v44,1,69,-19,69,-62v1,-39,-25,-49,-65,-45","w":219,"k":{"A":27,".":46,",":46}},{"d":"101,-19v-25,44,-124,23,-88,-26r5,0v5,22,29,31,55,28v43,-6,12,-40,-5,-48v-15,-13,-39,-19,-38,-48v9,-29,32,-47,65,-52v24,-4,43,23,24,38v-14,-3,-19,-20,-39,-18v-14,1,-26,6,-27,20v7,40,87,43,56,97v-2,3,-5,6,-8,9","w":140},{"d":"69,-251v12,-1,13,10,12,21r-6,54v0,12,-12,12,-13,0r-7,-60v1,-9,4,-15,14,-15","w":100},{"d":"88,-159r24,0r0,68r68,0r0,23r-68,0r0,68r-24,0r0,-68r-67,0r0,-23r67,0r0,-68"},{"d":"226,-216v11,-19,-5,-29,-27,-26r2,-9r79,0r-2,9v-18,0,-23,6,-30,18r-118,229r-13,0r-49,-233v-4,-11,-15,-14,-31,-14r2,-9r94,0v2,18,-35,2,-30,24r38,185","w":259,"k":{"A":33,"y":20,"u":20,";":40,"r":20,".":46,"o":31,"i":13,"-":33,"e":27,",":46,":":40,"a":27}},{"d":"93,-109r75,0r-17,-107xm56,-33v-11,18,2,27,22,24r-2,9r-75,0r2,-9v18,0,25,-12,32,-24r124,-220v6,1,12,-7,15,-2r39,223v2,15,9,24,26,23r-1,9r-85,0v-3,-17,30,-1,27,-23r-10,-71r-85,0","w":259,"k":{"y":27,"w":20,"v":20,"\u2019":44,"Y":33,"W":44,"V":44,"T":27}},{"d":"82,-230v9,-19,-14,-18,-34,-17r1,-10r59,0r-60,324v-12,5,-36,1,-56,2r2,-9v18,0,33,3,36,-15","w":119},{"d":"98,-4v60,3,70,-120,6,-118v-14,0,-23,4,-32,11v2,-22,32,-25,53,-28v34,2,53,25,53,61v0,49,-32,81,-82,83v-72,3,-86,-84,-57,-140v29,-55,82,-100,151,-113r3,8v-81,20,-138,83,-138,176v0,31,11,59,43,60"},{"d":"125,-67v0,-46,-32,-70,-63,-89r37,-92r91,0r-10,28r-80,0r-15,39v32,23,64,48,68,99v5,72,-82,112,-138,70r-3,-15r15,-5v11,18,20,28,46,28v34,0,52,-29,52,-63"},{"d":"85,-124v0,12,-12,24,-24,24v-12,0,-24,-13,-24,-24v0,-11,12,-24,24,-24v12,0,24,12,24,24xm42,-42v40,1,30,66,5,77v-12,9,-27,16,-47,15r-3,-7v25,-3,52,-12,48,-40v-7,-9,-26,-6,-26,-24v0,-15,9,-21,23,-21","w":100},{"d":"89,-150r-8,52r47,0r8,-52r-47,0xm185,-78r-37,0r-12,78r-22,0r11,-78r-46,0r-11,78r-23,0r12,-78r-38,0r3,-20r37,0r8,-52r-38,0r3,-20r37,0r12,-78r22,0r-12,78r47,0r11,-78r22,0r-11,78r38,0r-3,20r-37,0r-8,52r38,0"},{"d":"75,-217v7,-20,-5,-29,-28,-25r2,-9r93,0v-1,19,-29,3,-34,30r-17,93v35,-3,40,-31,62,-47v15,-19,36,-37,47,-59v1,-9,-9,-8,-18,-8r2,-9r74,0r-1,9v-26,-1,-38,16,-51,29r-78,79r79,108v8,8,15,18,31,17r-2,9v-32,-1,-57,6,-69,-24r-68,-93v-1,-2,-6,-2,-10,-2r-16,102v3,8,17,8,30,8r-2,9r-93,0v-1,-9,7,-10,16,-10v15,-1,18,-22,20,-35","w":259},{"d":"80,-14v30,-2,49,-22,65,-39r5,7v-23,23,-44,50,-89,51v-29,1,-46,-21,-44,-49v4,-72,56,-106,120,-121v8,1,19,5,18,15v-2,29,-31,15,-46,7v-40,7,-63,54,-63,96v0,20,13,34,34,33","w":159},{"d":"66,-167v-46,-10,-16,-82,17,-81v11,-2,25,-7,27,4v-23,0,-47,7,-47,29v0,16,26,7,26,25v0,14,-9,23,-23,23","w":100,"k":{"\u2018":29}},{"d":"232,-9v-26,-9,-44,17,-80,14v-75,-6,-118,-46,-120,-121v-2,-110,119,-171,214,-124v7,1,10,-12,15,-4r-12,63v-12,0,-4,-17,-8,-25v-6,-22,-31,-41,-60,-39v-73,3,-112,57,-112,129v0,62,21,110,83,110v50,0,71,-29,86,-66r8,2","w":259},{"d":"58,69v-51,-85,-14,-218,32,-275v13,-16,24,-34,37,-51r8,4v-54,76,-103,194,-68,318","w":119},{"d":"-12,49v19,-2,9,31,29,19v10,-11,13,-28,18,-48r47,-251v-1,-12,-19,-11,-33,-11r1,-9v32,2,63,0,95,0v-1,17,-33,2,-32,32r-40,200v-16,42,-24,94,-74,101v-22,4,-36,-30,-11,-33","w":140},{"d":"24,36v0,-45,40,-109,-5,-130v73,-16,2,-162,110,-163r-2,5v-68,13,-15,136,-87,159v49,16,5,83,8,129v1,17,6,25,22,28r-1,5v-27,1,-45,-6,-45,-33","w":119},{"d":"108,-38v-11,28,10,32,39,29r-2,9r-117,0r2,-9v20,-1,40,4,42,-14r36,-198r-57,29r-5,-9r96,-53r3,2"},{"d":"76,-46v-6,25,-5,43,27,37r-2,9r-94,0v3,-17,39,-4,36,-40r33,-191v-1,-13,-16,-11,-30,-11r2,-9v32,2,63,0,95,0v0,18,-34,2,-34,28v-7,26,-11,57,-16,85r135,0v5,-31,13,-61,15,-93v-2,-12,-16,-11,-30,-11r2,-9v32,2,63,0,95,0v0,18,-35,0,-34,28r-37,197v-3,19,13,17,30,17r-2,9r-94,0v-1,-18,29,-2,33,-25r18,-98r-133,0","w":299},{"d":"52,-127v-9,-17,-32,-13,-33,6v-1,7,6,14,-1,16r-8,-5v1,-30,11,-53,39,-55v54,12,46,93,57,147v17,-33,49,-72,35,-125v0,-12,6,-22,17,-22v29,9,7,54,-2,74v-29,65,-63,127,-116,167v-12,9,-34,9,-35,-8v-1,-24,27,-8,42,-16v13,-7,25,-26,36,-37v-4,-53,-11,-106,-31,-142","w":180,"k":{".":33,",":33}},{"d":"152,-80r-131,-55r0,-26r159,70r0,23r-159,70r0,-26"},{"d":"166,-264v-2,38,-48,-12,-62,40r-17,65r40,0r-5,15r-39,0r-60,220v-7,1,-18,8,-23,4r55,-224r-32,0r4,-15r32,0v15,-54,34,-105,92,-116v8,-1,15,4,15,11","w":119,"k":{"\u2019":-11}},{"d":"150,-27v17,2,26,-30,37,-17v-17,15,-31,44,-62,44v-21,0,-11,-26,-6,-39r21,-64v-35,36,-57,87,-112,103v-16,1,-18,-17,-11,-30v10,-34,25,-63,32,-100v0,-3,-1,-6,-4,-6v-14,2,-22,15,-30,24v-9,-20,33,-45,57,-53v16,0,13,21,7,31r-33,102v54,-5,87,-85,115,-129v7,-10,20,1,24,7r-40,122v0,3,1,5,5,5"},{"d":"112,-63v0,0,1,-2,1,0r-1,0xm111,-148v-48,9,-73,53,-80,102v-2,13,6,26,19,25v46,-13,70,-59,79,-108v1,-10,-9,-21,-18,-19xm10,-55v21,-53,73,-131,134,-98v3,-8,12,-26,24,-15r-38,138v0,2,1,6,4,5v17,2,21,-30,33,-16v-18,15,-28,44,-58,46v-19,1,-10,-24,-6,-36r10,-33v-22,27,-39,65,-81,69v-32,3,-32,-35,-22,-60","w":180},{"d":"174,-245v-75,0,-107,64,-107,139v0,61,27,100,88,100v73,0,107,-65,107,-137v0,-59,-27,-102,-88,-102xm153,5v-75,0,-121,-42,-121,-118v0,-86,55,-144,142,-144v72,0,123,42,123,114v0,90,-55,148,-144,148","w":320},{"d":"-6,5r107,-262r24,0r-107,262r-24,0","w":100},{"d":"153,-12v42,4,51,-19,62,-48r9,0r-17,60r-200,0v1,-17,37,-3,35,-33r35,-195v-1,-11,-15,-15,-31,-14r2,-9r175,0r-4,50r-7,0v7,-53,-53,-36,-100,-39r-18,102v38,-2,85,12,86,-33r6,0r-15,82v-12,1,4,-27,-11,-30v-14,-6,-47,-4,-69,-4r-15,94v1,29,50,14,77,17","w":240},{"d":"174,-245v-75,0,-107,64,-107,139v0,61,27,100,88,100v73,0,107,-65,107,-137v0,-59,-27,-102,-88,-102xm284,38v-47,92,-183,7,-264,-2r0,-7r113,-25v-62,-9,-101,-47,-101,-117v0,-86,55,-142,142,-144v89,-2,145,74,115,165v-26,79,-114,103,-204,119v53,13,99,36,163,38v25,1,6,-37,27,-37v6,0,9,4,9,10","w":320},{"d":"183,-194v1,-39,-28,-46,-67,-46r-19,105v49,2,85,-13,86,-59xm79,-214v8,-22,-7,-31,-32,-28r2,-9v72,2,167,-15,167,55v0,45,-35,61,-75,67v33,30,47,77,74,111v7,5,15,11,27,9r-2,9v-28,-1,-56,6,-65,-19v-23,-35,-40,-76,-68,-106r-12,-1r-17,103v1,16,19,13,34,14r-2,9r-98,0v0,-18,36,-3,35,-35","w":259,"k":{"y":20,"Y":33,"W":33,"V":33,"T":20}},{"w":100},{"d":"197,-18v0,12,-12,25,-24,23v-12,1,-24,-12,-24,-23v0,-11,12,-24,24,-24v12,0,24,12,24,24xm317,-18v0,12,-12,25,-24,23v-12,2,-24,-11,-24,-23v0,-12,12,-24,24,-24v12,0,24,12,24,24xm77,-18v0,12,-12,25,-24,23v-12,2,-23,-12,-23,-23v0,-12,11,-24,23,-24v12,0,24,12,24,24","w":360},{"d":"73,-251v36,2,26,61,3,70v-9,9,-26,14,-43,14r-4,-8v23,0,47,-7,47,-28v0,-17,-25,-8,-26,-26v0,-14,9,-22,23,-22","w":100,"k":{"t":13,"s":27,"\u2019":29}},{"d":"139,-220v-2,-20,-16,-27,-41,-24r0,124v1,7,9,6,17,7r0,7r-62,0r0,-7v12,0,18,-1,18,-14r0,-117v-25,-3,-39,4,-41,24r-8,0r0,-31r124,0r0,31r-7,0xm292,-113v12,0,18,-1,18,-14r-1,-89r-54,110r-4,0r-55,-109r0,79v1,17,4,20,19,23r0,7r-47,0r0,-7v15,-3,18,-6,19,-23v-5,-39,16,-105,-25,-108r0,-7r44,0r55,111r58,-111r37,0r0,7v-13,1,-19,7,-19,20r0,104v1,7,9,6,17,7r0,7r-62,0r0,-7","w":356},{"d":"76,-35v-6,23,7,28,29,26r-2,9r-95,0v2,-17,36,-2,36,-35v0,-68,29,-134,33,-201v-5,-7,-17,-6,-29,-6r2,-9r95,0v1,18,-30,1,-34,25","w":140},{"d":"84,-63v30,0,44,-32,44,-62v0,-18,-8,-30,-25,-30v-32,0,-46,30,-46,60v0,18,8,32,27,32xm72,71v35,3,74,-31,35,-51r-46,-24v-16,9,-41,17,-44,39v2,27,28,34,55,36xm145,-146v34,45,-15,104,-77,91v-6,4,-18,16,-5,21v29,21,78,22,85,65v-3,38,-42,51,-80,51v-33,0,-74,-5,-74,-41v0,-31,34,-39,56,-49v-7,-5,-20,-8,-20,-20v0,-17,19,-23,29,-31v-58,-24,-22,-106,40,-106v27,0,49,22,72,6v7,-5,12,2,12,9v-2,24,-24,5,-38,4","w":180},{"d":"9,-124v18,-14,32,-41,61,-41v17,0,11,22,7,34r-28,101v9,32,50,-1,60,-14v20,-27,39,-50,36,-99v0,-13,4,-22,16,-22v29,11,3,57,-6,74v-21,40,-48,72,-87,92v-31,16,-58,-7,-44,-44v10,-28,20,-55,25,-86v-9,-28,-32,23,-40,5","w":180,"k":{".":33,",":33}},{"d":"180,-199v1,-36,-33,-43,-67,-40r-19,100v51,7,86,-12,86,-60xm174,-79v0,-44,-39,-50,-82,-46v-4,35,-18,73,-15,106v44,22,97,-8,97,-60xm209,-76v0,89,-110,75,-201,76v1,-19,41,0,36,-37r34,-189v3,-16,-16,-15,-32,-16r2,-9v70,3,168,-17,168,53v0,43,-35,57,-71,65v36,4,64,17,64,57","w":240},{"d":"37,-1r-16,-17r63,-62r-63,-63r17,-16r62,63r62,-63r18,16r-64,63r64,62r-17,17r-63,-62"},{"d":"120,-245v-35,-3,-52,35,-33,62v5,8,11,16,18,24xm89,-4v36,0,57,-42,37,-74v-6,-9,-12,-17,-20,-25xm76,4v-14,-2,-29,-7,-40,-12v-7,3,-10,11,-20,11r10,-76r7,0v0,38,11,65,45,69r19,-109v-18,-21,-44,-38,-44,-76v0,-43,25,-68,69,-68r5,-27r11,0r-5,27v17,4,33,12,50,5r-12,64r-8,0v4,-29,-4,-55,-32,-56r-17,95v20,25,51,41,51,84v0,45,-32,69,-78,70r-5,27r-11,0"},{"d":"10,-120v16,-16,35,-41,61,-45v9,-2,15,9,12,20v-12,38,-26,73,-35,114v0,6,1,8,7,8v34,-12,59,-43,80,-68v9,-27,12,-67,42,-73v26,11,-4,47,-12,60v-5,24,-13,46,-16,72v19,42,67,-15,79,-36v12,-21,22,-48,15,-78v0,-8,9,-19,17,-18v33,10,4,61,-7,78v-27,41,-50,86,-109,91v-39,3,-17,-53,-14,-74v-30,25,-53,64,-97,74v-18,-1,-15,-23,-11,-40v8,-32,21,-59,26,-93v-10,-22,-30,30,-38,8","w":280,"k":{".":33,",":33}},{"d":"60,-34v-7,19,5,29,27,25r-2,9r-80,0v-1,-17,28,-3,34,-25r51,-197v-6,-16,-16,-20,-37,-20r1,-9r66,0r48,203r104,-203r63,0v-2,3,0,10,-6,9v-21,0,-26,8,-28,25r-11,182v-2,23,8,26,30,26r-1,9r-99,0v-1,-10,9,-9,19,-10v13,-2,17,-10,18,-25r12,-178r-109,213r-12,0r-49,-201","w":339},{"d":"172,-15v40,2,51,-24,61,-51r8,0r-17,66r-216,0r0,-3r197,-235v-65,3,-145,-16,-155,41r-8,0r16,-54r195,0r0,3r-195,233r114,0","w":259},{"d":"160,-251v36,2,26,61,3,70v-9,9,-26,14,-43,14r-4,-8v23,0,47,-7,47,-28v0,-17,-26,-8,-26,-26v0,-14,9,-22,23,-22xm89,-251v36,2,26,61,3,70v-9,9,-26,14,-43,14r-4,-8v23,0,47,-7,47,-28v0,-17,-26,-8,-26,-26v0,-14,9,-22,23,-22"},{"d":"144,-70v16,-50,42,-159,-19,-172v-63,15,-75,99,-75,170v0,33,4,68,38,68v35,0,47,-37,56,-66xm117,-2v-86,37,-115,-80,-83,-158v18,-43,37,-89,91,-94v101,11,66,188,18,231v-9,8,-16,16,-26,21"},{"d":"64,-53v-7,27,-3,50,31,44r-1,9r-87,0v-1,-18,36,-3,36,-32v13,-57,22,-123,33,-182v-6,-16,-22,-27,-43,-28r2,-9v19,2,38,0,57,0r137,204r28,-174v1,-20,-14,-21,-33,-21r2,-9v28,2,54,0,82,0v-1,17,-35,5,-33,36r-34,184v6,9,13,21,25,24v0,15,-27,1,-44,7r-134,-198","w":299},{"d":"4,-100r180,0r-8,24r-180,0","w":180},{"d":"150,-167v-46,-8,-15,-82,17,-81v11,-2,25,-7,27,4v-23,0,-47,7,-47,29v0,16,26,7,26,25v0,14,-9,25,-23,23xm79,-167v-46,-10,-16,-82,17,-81v11,-2,25,-7,27,4v-23,0,-47,7,-47,29v0,16,26,7,26,25v0,14,-9,23,-23,23"},{"d":"120,-242v-54,1,-44,72,-15,94v8,6,7,8,13,14v21,-15,41,-32,41,-65v0,-25,-14,-43,-39,-43xm95,-114v-24,14,-47,30,-47,67v0,23,16,41,40,41v42,0,58,-51,33,-80v-7,-9,-17,-20,-26,-28xm162,-62v5,78,-136,93,-138,15v-1,-45,34,-59,65,-74v-17,-16,-34,-34,-36,-67v-5,-78,130,-89,130,-14v0,41,-30,57,-58,72v17,19,35,32,37,68"},{"d":"32,-113v-2,-117,126,-172,232,-127v4,-2,8,-4,13,-2r-10,61r-7,0v2,-46,-28,-64,-71,-64v-73,0,-120,58,-120,131v0,69,48,128,121,102v23,-8,28,-48,25,-75v-5,-9,-20,-7,-34,-7r2,-10r97,0v1,16,-26,5,-30,27v-4,20,-7,42,-11,63v-23,9,-55,20,-86,19v-74,-2,-120,-43,-121,-118","w":299},{"d":"-11,66v52,-77,103,-193,67,-318r9,-5v36,58,32,163,-1,223v-20,36,-44,71,-68,103","w":119},{"d":"180,-32r-159,0r0,-23r159,0r0,23xm180,-104r-159,0r0,-23r159,0r0,23"},{"d":"114,-150v-47,9,-67,53,-72,103v-2,19,7,33,26,33v45,-10,63,-57,72,-104v-1,-18,-7,-32,-26,-32xm20,-73v22,-50,67,-108,130,-84r17,-90v-6,-6,-24,-7,-19,-17v19,-2,39,-9,56,-10r-58,245v10,17,30,-11,37,-20r5,5v-16,18,-31,46,-61,49v-22,-4,-4,-36,-2,-50v-20,21,-37,48,-77,50v-38,1,-41,-48,-28,-78"},{"d":"82,-215v-20,0,-20,-33,0,-33v9,0,17,6,17,16v0,9,-8,17,-17,17xm75,-165v21,2,7,28,3,40r-48,165v-11,17,-22,33,-41,42v-7,-11,5,-11,10,-20v24,-58,36,-131,54,-193v-12,-19,-26,28,-35,13v13,-19,30,-42,57,-47","w":100},{"d":"58,-82v-11,23,-26,72,9,78v56,-11,89,-63,89,-121v0,-39,-50,-22,-65,-4v-11,13,-25,30,-33,47xm55,-266v17,0,39,-11,53,-8r-46,161v21,-22,43,-52,82,-52v28,0,40,18,40,46v0,67,-55,117,-122,124v-37,3,-48,-30,-39,-65r48,-189v-5,-6,-19,-6,-16,-17"},{"d":"48,-111v7,-12,5,-33,-12,-21v-8,5,-18,26,-25,13v16,-18,32,-43,62,-46v16,-1,13,19,9,30v-6,17,-16,38,-18,54v26,-31,58,-77,106,-84v18,-2,14,21,10,33r-34,98v0,5,2,7,7,7v15,-2,24,-16,31,-25v9,18,-30,49,-57,52v-20,2,-14,-21,-9,-34r33,-95v-35,-21,-67,39,-87,65v-13,17,-19,38,-26,60v-5,5,-21,5,-25,-1"},{"d":"30,5v-18,2,-14,-22,-11,-35r51,-217v-6,-6,-25,-7,-20,-17v18,-1,41,-11,55,-9r-57,242v1,3,1,8,5,8v11,-5,21,-19,27,-28r5,7v-14,17,-27,46,-55,49","w":100},{"d":"136,-213r-99,106r80,0xm113,-83r-104,0r1,-13r147,-158r17,0r-28,147r40,0r-5,24r-39,0r-15,83r-30,0"},{"d":"21,-98r84,0r-5,24r-86,0","w":119},{"d":"330,-212v11,-16,9,-35,-20,-30r2,-9v23,2,45,-1,69,0v2,12,-14,8,-19,16r-124,240r-10,0r-31,-114r-66,114r-10,0r-55,-234v-4,-11,-12,-13,-27,-13r2,-9r84,0v1,17,-38,3,-22,34r40,177r50,-86r-28,-103v-4,-11,-12,-13,-27,-13r1,-9r78,0v4,15,-22,4,-18,21r16,65v11,-22,29,-42,34,-68v2,-10,-9,-8,-20,-9r2,-9r67,0v-3,16,-35,9,-37,34r-41,69r27,108","w":360,"k":{"A":27,"y":13,"u":13,";":27,"r":13,".":46,"o":24,"i":6,"-":27,"e":20,",":46,":":27,"a":24}},{"d":"42,-42v40,1,30,66,5,77v-12,9,-27,16,-47,15r-3,-7v25,-3,52,-12,48,-40v-7,-9,-26,-6,-26,-24v0,-15,9,-21,23,-21","w":100},{"d":"64,-4v67,6,90,-119,17,-122r-15,0r2,-9v35,-4,69,-21,69,-58v0,-26,-12,-44,-38,-44v-21,0,-30,12,-45,21r-6,-6v18,-16,36,-32,68,-32v31,0,51,18,52,47v2,44,-35,56,-63,72v31,5,56,20,55,57v1,68,-90,105,-150,69r-4,-19r15,-4v8,18,20,27,43,28"},{"d":"224,-47v-17,67,-177,75,-174,-13v2,-58,25,-106,25,-163v0,-18,-15,-20,-34,-19r1,-9r105,0v-2,18,-33,3,-38,31v-8,50,-20,103,-25,157v-6,63,97,70,118,24v22,-50,37,-118,37,-181v0,-19,-15,-22,-36,-22r2,-9r83,0v1,16,-25,8,-30,30v-12,56,-20,121,-34,174","w":280},{"d":"74,-31v-14,10,-6,27,15,22r-2,9r-82,0v1,-16,24,-8,36,-21r91,-100r-63,-112v-6,-8,-18,-9,-32,-9r2,-9r96,0v2,16,-36,1,-19,32r40,73v22,-31,53,-53,70,-89v-4,-6,-14,-8,-25,-7r2,-9r79,0v0,14,-28,10,-35,24r-85,93v23,38,43,83,69,118v5,6,14,8,25,7r-2,9r-94,0v-3,-15,25,-4,25,-18v-10,-31,-32,-61,-46,-90","w":280},{"d":"139,-80v17,1,24,-14,31,-25r13,18v-11,15,-20,33,-45,31v-38,-3,-90,-49,-108,2r-13,-18v8,-16,20,-31,45,-31v33,0,47,22,77,23"},{"d":"130,-194v15,-5,51,-22,51,4v0,25,-37,7,-51,3r0,-7xm124,-183v11,15,38,45,6,51v-19,2,-17,-39,-8,-50v1,0,2,-1,2,-1xm79,-153v-23,-4,-14,-29,5,-31v10,-1,25,-11,29,0v-9,11,-19,27,-34,31xm121,-203v3,-17,-5,-47,14,-48v35,6,1,43,-8,50xm111,-197v-17,-8,-50,-9,-39,-35v20,-18,33,16,43,30v-2,0,-4,3,-4,5"},{"d":"211,-222v12,-16,-3,-23,-23,-20r1,-9r70,0r-2,9v-14,0,-21,13,-27,22r-80,117v-4,28,-13,54,-13,84v4,11,19,9,34,10r-1,9r-102,0r1,-9v19,0,35,-1,35,-22r14,-72r-55,-126v-4,-9,-17,-14,-30,-13r2,-9r91,0r-1,9v-12,0,-31,-3,-25,13r46,109","w":240,"k":{"A":27,"v":20,"u":20,";":33,"q":27,".":46,"p":20,"o":27,"i":13,"-":33,"e":27,",":46,":":33,"a":27}},{"d":"176,-176v-32,7,-50,35,-52,74v-1,20,7,31,24,31v31,-7,44,-41,44,-80v0,-14,-3,-24,-16,-25xm51,-116v-3,94,110,132,186,88r4,12v-22,11,-47,21,-79,21v-84,-2,-142,-47,-142,-124v0,-84,54,-138,138,-138v72,0,124,41,124,113v0,48,-24,91,-70,91v-20,0,-29,-14,-35,-27v-16,34,-87,37,-79,-21v6,-47,25,-92,74,-92v16,0,22,10,27,20r4,-15r26,0r-26,107v0,9,4,18,15,17v36,-4,50,-43,50,-80v0,-60,-46,-101,-110,-101v-72,0,-105,54,-107,129","w":288},{"d":"123,-138v0,-19,-23,-18,-35,-7v-18,16,-34,42,-42,66v39,-3,75,-18,77,-59xm42,-42v6,51,76,20,92,-6r5,7v-22,22,-44,46,-82,46v-30,0,-44,-19,-44,-48v0,-64,41,-122,104,-122v61,0,29,66,-4,78v-20,8,-45,15,-68,18v-3,9,-3,16,-3,27","w":159},{"d":"87,5r-84,-262r24,0r84,262r-24,0","w":100},{"d":"56,-257v102,-3,-14,143,51,163v-75,15,-1,164,-111,163r1,-5v62,-12,26,-113,71,-151v3,-4,13,-3,17,-7v-48,-14,-6,-86,-7,-128v0,-18,-7,-27,-23,-30","w":119},{"d":"42,-231v-14,-7,-11,-32,7,-25v17,19,32,40,49,59v-28,-2,-36,-25,-56,-34","w":100}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+449-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("T=#ZN(J40I!6T)u]W(g8M=M!*_JZ#(!6*_k80IvF#{xC:l42YFv1WPDA:ISR*2{5IekrhuJ1MFUQJ8U=j(@,*_Q-v;5xXgS(7s!1WPMAYPvzOwYFTZ#U*P:Zj8J7:Z5ZYsD5j;Yr~FC5~w@+#F{,PZA-v{g~*wOAY=;A*wO8Y[M_*wO8Y[;R*wO8YPM8~IW_Su5ZY[U@J8veP{y1WPMAYISAPu5ZYsD5YZ5ZYsD5:l,wTPZ@0(k6N[SQ{8Al{{,+TuuD#{51oID27FJAN=u4T)M2T~5yXPDC1[Z27FDCN[ZA7(5uN(W40)5FXIM6#2RFNwuA0wY!he4]0I:r:2R-0l4-*2}cjFWeWZA6TPxrXlr6TZA6:_!CWIZ20Ig17({@W*A6TZA6*)y17(J-Nw{Q:(u,*)Ru#w{x72Q17FWn:ek17(!8#e5e0_J8*)R-1(Wx72Q17uA?*)Re0_J8*)R-1(1yk)!y7Fvu1eSrN=!s:*vyN_z60=!lW=R,NIOyTI#-12}]0P5Cj8Cn0~uFI_JN0{ZWX*UN0{Z!DU)[;g=wMkT7YJjXSv~PO{I*:#0N1Who},2s@u(Fry?nCQ6-A58l4Z_ezRt]x!+cT~}y")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":200,"face":{"font-family":"Sabon LT","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 2 0 0 9 0 3","ascent":"288","descent":"-72","x-height":"5","bbox":"-25.307 -284 381.172 82.3266","underline-thickness":"18","underline-position":"-27","unicode-range":"U+0020-U+2122"}}));
;
// JavaScript Document
$(document).ready(function() {
	Cufon.replace('h1', { fontFamily: 'Sabon LT' });
	Cufon.replace('h2', { fontFamily: 'Sabon LT' });
});
;
// JavaScript Document
$(document).ready(function() {
	var cookie_name = "DisplayPledgeColorbox";
	if ($("#pledge").length > 0) {
		if (!(document.cookie) || (document.cookie.indexOf(cookie_name) == -1)) {
			var expiration_date = new Date();
			expiration_date.setTime(expiration_date.getTime() + (24 * 60 * 60 * 1000)); // 24 hours * 60 minutes * 60 seconds * 1000 milliseconds
			document.cookie = cookie_name + "=" +"; expires=" + expiration_date.toGMTString();
			
			$.fn.colorbox({width:"50%", inline:true, href:"#pledge"}); //Display the Pledge colorbox
		}
	}
});
;

