/*
 * Inkreel JavaScript compilation - July 2009
 * Includes:
 * - JQuery core 1.3.2
 * - JQuery UI 1.7.2 core, effects (Webkit fix, "borderColor" added)
 * - LiveQuery
 * - Real Simple Validation
 * - Cufon & fonts (Kievit Medium/Book/Bold, Helvetica Neue Roman) restricted to 127.0.0.1 and inkreel.com
 * - popup
 * - parseUri, Ajax history
 * - Tooltip
 * - hoverFlow
 */

/*
 * 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")}})})();

/*
 * jQuery UI 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI
 */
jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7.2",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return}for(var m=0;m<n.length;m++){if(j.options[n[m][0]]){n[m][1].apply(j.element,k)}}}},contains:function(k,j){return document.compareDocumentPosition?k.compareDocumentPosition(j)&16:k!==j&&k.contains(j)},hasScroll:function(m,k){if(c(m).css("overflow")=="hidden"){return false}var j=(k&&k=="left")?"scrollLeft":"scrollTop",l=false;if(m[j]>0){return true}m[j]=1;l=(m[j]>0);m[j]=0;return l},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l))},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)))};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""))}):e.call(this,j))}}c.fn.extend({remove:function(){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")});return i.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return !!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return !(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return !this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;

/*
 * jQuery UI Effects 1.7
 * Fixed for Webkit by Charles Phillips
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Effects/
 */
;jQuery.effects || (function($) {

$.effects = {
	version: "1.7",

	// Saves a set of properties in a data storage
	save: function(element, set) {
		for(var i=0; i < set.length; i++) {
			if(set[i] !== null) element.data("ec.storage."+set[i], element[0].style[set[i]]);
		}
	},

	// Restores a set of previously saved properties from a data storage
	restore: function(element, set) {
		for(var i=0; i < set.length; i++) {
			if(set[i] !== null) element.css(set[i], element.data("ec.storage."+set[i]));
		}
	},

	setMode: function(el, mode) {
		if (mode == 'toggle') mode = el.is(':hidden') ? 'show' : 'hide'; // Set for toggle
		return mode;
	},

	getBaseline: function(origin, original) { // Translates a [top,left] array into a baseline value
		// this should be a little more flexible in the future to handle a string & hash
		var y, x;
		switch (origin[0]) {
			case 'top': y = 0; break;
			case 'middle': y = 0.5; break;
			case 'bottom': y = 1; break;
			default: y = origin[0] / original.height;
		};
		switch (origin[1]) {
			case 'left': x = 0; break;
			case 'center': x = 0.5; break;
			case 'right': x = 1; break;
			default: x = origin[1] / original.width;
		};
		return {x: x, y: y};
	},

	// Wraps the element around a wrapper that copies position properties
	createWrapper: function(element) {

		//if the element is already wrapped, return it
		if (element.parent().is('.ui-effects-wrapper'))
			return element.parent();

		//Cache width,height and float properties of the element, and create a wrapper around it
		var props = { width: element.outerWidth(true), height: element.outerHeight(true), 'float': element.css('float') };
		element.wrap('<div class="ui-effects-wrapper" style="font-size:100%;background:transparent;border:none;margin:0;padding:0"></div>');
		var wrapper = element.parent();

		//Transfer the positioning of the element to the wrapper
		if (element.css('position') == 'static') {
			wrapper.css({ position: 'relative' });
			element.css({ position: 'relative'} );
		} else {
			var top = element.css('top'); if(isNaN(parseInt(top,10))) top = 'auto';
			var left = element.css('left'); if(isNaN(parseInt(left,10))) left = 'auto';
			wrapper.css({ position: element.css('position'), top: top, left: left, zIndex: element.css('z-index') }).show();
			element.css({position: 'relative', top: 0, left: 0 });
		}

		wrapper.css(props);
		return wrapper;
	},

	removeWrapper: function(element) {
		if (element.parent().is('.ui-effects-wrapper'))
			return element.parent().replaceWith(element);
		return element;
	},

	setTransition: function(element, list, factor, value) {
		value = value || {};
		$.each(list, function(i, x){
			unit = element.cssUnit(x);
			if (unit[0] > 0) value[x] = unit[0] * factor + unit[1];
		});
		return value;
	},

	//Base function to animate from one class to another in a seamless transition
	animateClass: function(value, duration, easing, callback) {

		var cb = (typeof easing == "function" ? easing : (callback ? callback : null));
		var ea = (typeof easing == "string" ? easing : null);

		return this.each(function() {

			var offset = {}; var that = $(this); var oldStyleAttr = that.attr("style") || '';
			if(typeof oldStyleAttr == 'object') oldStyleAttr = oldStyleAttr["cssText"]; /* Stupidly in IE, style is a object.. */
			if(value.toggle) { that.hasClass(value.toggle) ? value.remove = value.toggle : value.add = value.toggle; }

			//Let's get a style offset
			var oldStyle = $.extend({}, (document.defaultView ? document.defaultView.getComputedStyle(this,null) : this.currentStyle));
			if (0 in oldStyle) { //performance check for integer indices in WebKit browsers [charles@doublerebel.com]
				for (var val in oldStyle) { //WebKit fix
					if (parseInt(val, 10) == val)  { //if the extend created indexes, as in when copying WebKit's broken getComputedStyle 'object', fix these properties
						oldStyle[oldStyle[val]] = document.defaultView.getComputedStyle(this,null)[oldStyle[val]];
						delete oldStyle[val]; //remove old undefined incorrect properties
					}
				}
			}
			if(value.add) that.addClass(value.add); if(value.remove) that.removeClass(value.remove);
			var newStyle = $.extend({}, (document.defaultView ? document.defaultView.getComputedStyle(this,null) : this.currentStyle));
			if (0 in newStyle) { //performance check for integer indices in WebKit browsers [charles@doublerebel.com]
				for (var val in newStyle) { //WebKit fix
					if (parseInt(val, 10) == val)  { //if the extend created indexes, as in when copying WebKit's broken getComputedStyle 'object', fix these properties
						newStyle[newStyle[val]] = document.defaultView.getComputedStyle(this,null)[newStyle[val]];
						delete newStyle[val]; //remove old undefined incorrect properties
					}
				}
			}
			if(value.add) that.removeClass(value.add); if(value.remove) that.addClass(value.remove);

			// The main function to form the object for animation
			for(var n in newStyle) {
				if( typeof newStyle[n] != "function" && newStyle[n] /* No functions and null properties */
				&& n.indexOf("Moz") == -1 && n.indexOf("length") == -1 /* No mozilla spezific render properties. */
				&& n.indexOf("webk") == -1 /* No WebKit-specific ones either */
				&& n.indexOf("scrollbarBase") == -1 && n != "margin" /* No IE bug ridiculousness [scrollbarBaseColor returns NaN; the margin property throws an error in the Dean Edwards styleLeft fix in curCSS()] */
				&& newStyle[n] != oldStyle[n] /* Only values that have changed are used for the animation */
				&& (n.match(/color/i) || (!n.match(/color/i) && !isNaN(parseInt(newStyle[n],10)))) /* Only things that can be parsed to integers or colors */
				&& (oldStyle.position != "static" || (oldStyle.position == "static" && !n.match(/left|top|bottom|right/))) /* No need for positions when dealing with static positions */
				) offset[n] = newStyle[n];
			}
			
			that.animate(offset, duration, ea, function() { // Animate the newly constructed offset object
				// Change style attribute back to original. For stupid IE, we need to clear the damn object.
				if(typeof $(this).attr("style") == 'object') { $(this).attr("style")["cssText"] = ""; $(this).attr("style")["cssText"] = oldStyleAttr; } else $(this).attr("style", oldStyleAttr);
				if(value.add) $(this).addClass(value.add); if(value.remove) $(this).removeClass(value.remove);
				if(cb) cb.apply(this, arguments);
			});

		});
	}
};


function _normalizeArguments(a, m) {

	var o = a[1] && a[1].constructor == Object ? a[1] : {}; if(m) o.mode = m;
	var speed = a[1] && a[1].constructor != Object ? a[1] : (o.duration ? o.duration : a[2]); //either comes from options.duration or the secon/third argument
		speed = $.fx.off ? 0 : typeof speed === "number" ? speed : $.fx.speeds[speed] || $.fx.speeds._default;
	var callback = o.callback || ( $.isFunction(a[1]) && a[1] ) || ( $.isFunction(a[2]) && a[2] ) || ( $.isFunction(a[3]) && a[3] );

	return [a[0], o, speed, callback];
	
}

//Extend the methods of jQuery
$.fn.extend({

	//Save old methods
	_show: $.fn.show,
	_hide: $.fn.hide,
	__toggle: $.fn.toggle,
	_addClass: $.fn.addClass,
	_removeClass: $.fn.removeClass,
	_toggleClass: $.fn.toggleClass,

	// New effect methods
	effect: function(fx, options, speed, callback) {
		return $.effects[fx] ? $.effects[fx].call(this, {method: fx, options: options || {}, duration: speed, callback: callback }) : null;
	},

	show: function() {
		if(!arguments[0] || (arguments[0].constructor == Number || (/(slow|normal|fast)/).test(arguments[0])))
			return this._show.apply(this, arguments);
		else {
			return this.effect.apply(this, _normalizeArguments(arguments, 'show'));
		}
	},

	hide: function() {
		if(!arguments[0] || (arguments[0].constructor == Number || (/(slow|normal|fast)/).test(arguments[0])))
			return this._hide.apply(this, arguments);
		else {
			return this.effect.apply(this, _normalizeArguments(arguments, 'hide'));
		}
	},

	toggle: function(){
		if(!arguments[0] || (arguments[0].constructor == Number || (/(slow|normal|fast)/).test(arguments[0])) || (arguments[0].constructor == Function))
			return this.__toggle.apply(this, arguments);
		else {
			return this.effect.apply(this, _normalizeArguments(arguments, 'toggle'));
		}
	},

	addClass: function(classNames, speed, easing, callback) {
		return speed ? $.effects.animateClass.apply(this, [{ add: classNames },speed,easing,callback]) : this._addClass(classNames);
	},
	removeClass: function(classNames,speed,easing,callback) {
		return speed ? $.effects.animateClass.apply(this, [{ remove: classNames },speed,easing,callback]) : this._removeClass(classNames);
	},
	toggleClass: function(classNames,speed,easing,callback) {
		return ( (typeof speed !== "boolean") && speed ) ? $.effects.animateClass.apply(this, [{ toggle: classNames },speed,easing,callback]) : this._toggleClass(classNames, speed);
	},
	morph: function(remove,add,speed,easing,callback) {
		return $.effects.animateClass.apply(this, [{ add: add, remove: remove },speed,easing,callback]);
	},
	switchClass: function() {
		return this.morph.apply(this, arguments);
	},

	// helper functions
	cssUnit: function(key) {
		var style = this.css(key), val = [];
		$.each( ['em','px','%','pt'], function(i, unit){
			if(style.indexOf(unit) > 0)
				val = [parseFloat(style), unit];
		});
		return val;
	}
});

/*
 * jQuery Color Animations
 * Copyright 2007 John Resig
 * Released under the MIT and GPL licenses.
 */

/* Still throws errors in IE7 on Vista
// We override the animation for all of these color styles
$.each(['backgroundColor', 'borderBottomColor', 'borderLeftColor', 'borderRightColor', 'borderTopColor', 'color', 'outlineColor'], function(i,attr){
		$.fx.step[attr] = function(fx) {
				if ( fx.state == 0 ) {
						fx.start = getColor( fx.elem, attr );
						fx.end = getRGB( fx.end );
				}

				fx.elem.style[attr] = "rgb(" + [
						Math.max(Math.min( parseInt((fx.pos * (fx.end[0] - fx.start[0])) + fx.start[0],10), 255), 0),
						Math.max(Math.min( parseInt((fx.pos * (fx.end[1] - fx.start[1])) + fx.start[1],10), 255), 0),
						Math.max(Math.min( parseInt((fx.pos * (fx.end[2] - fx.start[2])) + fx.start[2],10), 255), 0)
				].join(",") + ")";
			};
}); // */

// We override the animation for all of these color styles
$.each(['backgroundColor', 'borderColor', 'borderBottomColor', 'borderLeftColor', 'borderRightColor', 'borderTopColor', 'color', 'outlineColor'], function(i,attr){
		$.fx.step[attr] = function(fx) {
				if ( fx.state == 0 ) {
						fx.start = getColor( fx.elem, attr );
						fx.end = getRGB( fx.end );
				}
				var rgb = "rgb(" + [
						Math.max(Math.min( parseInt((fx.pos * (fx.end[0] - fx.start[0])) + fx.start[0],10), 255), 0),
						Math.max(Math.min( parseInt((fx.pos * (fx.end[1] - fx.start[1])) + fx.start[1],10), 255), 0),
						Math.max(Math.min( parseInt((fx.pos * (fx.end[2] - fx.start[2])) + fx.start[2],10), 255), 0)
				].join(",") + ")";
				if ( (typeof fx.elem.style[attr] !== undefined) && !(/N/.test(rgb)) ) { fx.elem.style[attr] = rgb; } //Prevent Firefox & IE from hitting edge-case undefined errors [charles@doublerebel.com]
			};
});


// Color Conversion functions from highlightFade
// By Blair Mitchelmore
// http://jquery.offput.ca/highlightFade/

// Parse strings looking for color tuples [255,255,255]
function getRGB(color) {
		var result;

		// Check if we're already dealing with an array of colors
		if ( color && color.constructor == Array && color.length == 3 )
				return color;

		// Look for rgb(num,num,num)
		if (result = /rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(color))
				return [parseInt(result[1],10), parseInt(result[2],10), parseInt(result[3],10)];

		// Look for rgb(num%,num%,num%)
		if (result = /rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(color))
				return [parseFloat(result[1])*2.55, parseFloat(result[2])*2.55, parseFloat(result[3])*2.55];

		// Look for #a0b1c2
		if (result = /#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(color))
				return [parseInt(result[1],16), parseInt(result[2],16), parseInt(result[3],16)];

		// Look for #fff
		if (result = /#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(color))
				return [parseInt(result[1]+result[1],16), parseInt(result[2]+result[2],16), parseInt(result[3]+result[3],16)];

		// Look for rgba(0, 0, 0, 0) == transparent in Safari 3
		if (result = /rgba\(0, 0, 0, 0\)/.exec(color))
				return colors['transparent'];

		// Otherwise, we're most likely dealing with a named color
		return colors[$.trim(color).toLowerCase()];
}

function getColor(elem, attr) {
		var color;

		do {
				color = $.curCSS(elem, attr);

				// Keep going until we find an element that has color, or we hit the body
				if ( color != '' && color != 'transparent' || $.nodeName(elem, "body") )
						break;

				attr = "backgroundColor";
		} while ( elem = elem.parentNode );

		return getRGB(color);
};

// Some named colors to work with
// From Interface by Stefan Petre
// http://interface.eyecon.ro/

var colors = {
	aqua:[0,255,255],
	azure:[240,255,255],
	beige:[245,245,220],
	black:[0,0,0],
	blue:[0,0,255],
	brown:[165,42,42],
	cyan:[0,255,255],
	darkblue:[0,0,139],
	darkcyan:[0,139,139],
	darkgrey:[169,169,169],
	darkgreen:[0,100,0],
	darkkhaki:[189,183,107],
	darkmagenta:[139,0,139],
	darkolivegreen:[85,107,47],
	darkorange:[255,140,0],
	darkorchid:[153,50,204],
	darkred:[139,0,0],
	darksalmon:[233,150,122],
	darkviolet:[148,0,211],
	fuchsia:[255,0,255],
	gold:[255,215,0],
	green:[0,128,0],
	indigo:[75,0,130],
	khaki:[240,230,140],
	lightblue:[173,216,230],
	lightcyan:[224,255,255],
	lightgreen:[144,238,144],
	lightgrey:[211,211,211],
	lightpink:[255,182,193],
	lightyellow:[255,255,224],
	lime:[0,255,0],
	magenta:[255,0,255],
	maroon:[128,0,0],
	navy:[0,0,128],
	olive:[128,128,0],
	orange:[255,165,0],
	pink:[255,192,203],
	purple:[128,0,128],
	violet:[128,0,128],
	red:[255,0,0],
	silver:[192,192,192],
	white:[255,255,255],
	yellow:[255,255,0],
	transparent: [255,255,255]
};

/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - jQuery Easing
 *
 * Open source under the BSD License.
 *
 * Copyright 2008 George McGinley Smith
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this list of
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list
 * of conditions and the following disclaimer in the documentation and/or other materials
 * provided with the distribution.
 *
 * Neither the name of the author nor the names of contributors may be used to endorse
 * or promote products derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 *
*/

// t: current time, b: begInnIng value, c: change In value, d: duration
$.easing.jswing = $.easing.swing;

$.extend($.easing,
{
	def: 'easeOutQuad',
	swing: function (x, t, b, c, d) {
		//alert($.easing.default);
		return $.easing[$.easing.def](x, t, b, c, d);
	},
	easeInQuad: function (x, t, b, c, d) {
		return c*(t/=d)*t + b;
	},
	easeOutQuad: function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	},
	easeInOutQuad: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t + b;
		return -c/2 * ((--t)*(t-2) - 1) + b;
	},
	easeInCubic: function (x, t, b, c, d) {
		return c*(t/=d)*t*t + b;
	},
	easeOutCubic: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t + 1) + b;
	},
	easeInOutCubic: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t + b;
		return c/2*((t-=2)*t*t + 2) + b;
	},
	easeInQuart: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t + b;
	},
	easeOutQuart: function (x, t, b, c, d) {
		return -c * ((t=t/d-1)*t*t*t - 1) + b;
	},
	easeInOutQuart: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
		return -c/2 * ((t-=2)*t*t*t - 2) + b;
	},
	easeInQuint: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t*t + b;
	},
	easeOutQuint: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t*t*t + 1) + b;
	},
	easeInOutQuint: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
		return c/2*((t-=2)*t*t*t*t + 2) + b;
	},
	easeInSine: function (x, t, b, c, d) {
		return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
	},
	easeOutSine: function (x, t, b, c, d) {
		return c * Math.sin(t/d * (Math.PI/2)) + b;
	},
	easeInOutSine: function (x, t, b, c, d) {
		return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
	},
	easeInExpo: function (x, t, b, c, d) {
		return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
	},
	easeOutExpo: function (x, t, b, c, d) {
		return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
	},
	easeInOutExpo: function (x, t, b, c, d) {
		if (t==0) return b;
		if (t==d) return b+c;
		if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
		return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
	},
	easeInCirc: function (x, t, b, c, d) {
		return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
	},
	easeOutCirc: function (x, t, b, c, d) {
		return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
	},
	easeInOutCirc: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
		return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
	},
	easeInElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	},
	easeOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
	},
	easeInOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
	},
	easeInBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*(t/=d)*t*((s+1)*t - s) + b;
	},
	easeOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	},
	easeInOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
	},
	easeInBounce: function (x, t, b, c, d) {
		return c - $.easing.easeOutBounce (x, d-t, 0, c, d) + b;
	},
	easeOutBounce: function (x, t, b, c, d) {
		if ((t/=d) < (1/2.75)) {
			return c*(7.5625*t*t) + b;
		} else if (t < (2/2.75)) {
			return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
		} else if (t < (2.5/2.75)) {
			return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
		} else {
			return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
		}
	},
	easeInOutBounce: function (x, t, b, c, d) {
		if (t < d/2) return $.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
		return $.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
	}
});

/*
 *
 * TERMS OF USE - EASING EQUATIONS
 *
 * Open source under the BSD License.
 *
 * Copyright 2001 Robert Penner
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * Redistributions of source code must retain the above copyright notice, this list of
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list
 * of conditions and the following disclaimer in the documentation and/or other materials
 * provided with the distribution.
 *
 * Neither the name of the author nor the names of contributors may be used to endorse
 * or promote products derived from this software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 * GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
 * OF THE POSSIBILITY OF SUCH DAMAGE.
 *
 */

})(jQuery);

/*! Copyright (c) 2008 Brandon Aaron (http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) 
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * Version: 1.0.3
 * Requires jQuery 1.1.3+
 * Docs: http://docs.jquery.com/Plugins/livequery
 */

(function($) {
	
$.extend($.fn, {
	livequery: function(type, fn, fn2) {
		var self = this, q;
		
		// Handle different call patterns
		if ($.isFunction(type))
			fn2 = fn, fn = type, type = undefined;
			
		// See if Live Query already exists
		$.each( $.livequery.queries, function(i, query) {
			if ( self.selector == query.selector && self.context == query.context &&
				type == query.type && (!fn || fn.$lqguid == query.fn.$lqguid) && (!fn2 || fn2.$lqguid == query.fn2.$lqguid) )
					// Found the query, exit the each loop
					return (q = query) && false;
		});
		
		// Create new Live Query if it wasn't found
		q = q || new $.livequery(this.selector, this.context, type, fn, fn2);
		
		// Make sure it is running
		q.stopped = false;
		
		// Run it immediately for the first time
		q.run();
		
		// Contnue the chain
		return this;
	},
	
	expire: function(type, fn, fn2) {
		var self = this;
		
		// Handle different call patterns
		if ($.isFunction(type))
			fn2 = fn, fn = type, type = undefined;
			
		// Find the Live Query based on arguments and stop it
		$.each( $.livequery.queries, function(i, query) {
			if ( self.selector == query.selector && self.context == query.context && 
				(!type || type == query.type) && (!fn || fn.$lqguid == query.fn.$lqguid) && (!fn2 || fn2.$lqguid == query.fn2.$lqguid) && !this.stopped )
					$.livequery.stop(query.id);
		});
		
		// Continue the chain
		return this;
	}
});

$.livequery = function(selector, context, type, fn, fn2) {
	this.selector = selector;
	this.context  = context || document;
	this.type     = type;
	this.fn       = fn;
	this.fn2      = fn2;
	this.elements = [];
	this.stopped  = false;
	
	// The id is the index of the Live Query in $.livequery.queries
	this.id = $.livequery.queries.push(this)-1;
	
	// Mark the functions for matching later on
	fn.$lqguid = fn.$lqguid || $.livequery.guid++;
	if (fn2) fn2.$lqguid = fn2.$lqguid || $.livequery.guid++;
	
	// Return the Live Query
	return this;
};

$.livequery.prototype = {
	stop: function() {
		var query = this;
		
		if ( this.type )
			// Unbind all bound events
			this.elements.unbind(this.type, this.fn);
		else if (this.fn2)
			// Call the second function for all matched elements
			this.elements.each(function(i, el) {
				query.fn2.apply(el);
			});
			
		// Clear out matched elements
		this.elements = [];
		
		// Stop the Live Query from running until restarted
		this.stopped = true;
	},
	
	run: function() {
		// Short-circuit if stopped
		if ( this.stopped ) return;
		var query = this;
		
		var oEls = this.elements,
			els  = $(this.selector, this.context),
			nEls = els.not(oEls);
		
		// Set elements to the latest set of matched elements
		this.elements = els;
		
		if (this.type) {
			// Bind events to newly matched elements
			nEls.bind(this.type, this.fn);
			
			// Unbind events to elements no longer matched
			if (oEls.length > 0)
				$.each(oEls, function(i, el) {
					if ( $.inArray(el, els) < 0 )
						$.event.remove(el, query.type, query.fn);
				});
		}
		else {
			// Call the first function for newly matched elements
			nEls.each(function() {
				query.fn.apply(this);
			});
			
			// Call the second function for elements no longer matched
			if ( this.fn2 && oEls.length > 0 )
				$.each(oEls, function(i, el) {
					if ( $.inArray(el, els) < 0 )
						query.fn2.apply(el);
				});
		}
	}
};

$.extend($.livequery, {
	guid: 0,
	queries: [],
	queue: [],
	running: false,
	timeout: null,
	
	checkQueue: function() {
		if ( $.livequery.running && $.livequery.queue.length ) {
			var length = $.livequery.queue.length;
			// Run each Live Query currently in the queue
			while ( length-- )
				$.livequery.queries[ $.livequery.queue.shift() ].run();
		}
	},
	
	pause: function() {
		// Don't run anymore Live Queries until restarted
		$.livequery.running = false;
	},
	
	play: function() {
		// Restart Live Queries
		$.livequery.running = true;
		// Request a run of the Live Queries
		$.livequery.run();
	},
	
	registerPlugin: function() {
		$.each( arguments, function(i,n) {
			// Short-circuit if the method doesn't exist
			if (!$.fn[n]) return;
			
			// Save a reference to the original method
			var old = $.fn[n];
			
			// Create a new method
			$.fn[n] = function() {
				// Call the original method
				var r = old.apply(this, arguments);
				
				// Request a run of the Live Queries
				$.livequery.run();
				
				// Return the original methods result
				return r;
			}
		});
	},
	
	run: function(id) {
		if (id != undefined) {
			// Put the particular Live Query in the queue if it doesn't already exist
			if ( $.inArray(id, $.livequery.queue) < 0 )
				$.livequery.queue.push( id );
		}
		else
			// Put each Live Query in the queue if it doesn't already exist
			$.each( $.livequery.queries, function(id) {
				if ( $.inArray(id, $.livequery.queue) < 0 )
					$.livequery.queue.push( id );
			});
		
		// Clear timeout if it already exists
		if ($.livequery.timeout) clearTimeout($.livequery.timeout);
		// Create a timeout to check the queue and actually run the Live Queries
		$.livequery.timeout = setTimeout($.livequery.checkQueue, 20);
	},
	
	stop: function(id) {
		if (id != undefined)
			// Stop are particular Live Query
			$.livequery.queries[ id ].stop();
		else
			// Stop all Live Queries
			$.each( $.livequery.queries, function(id) {
				$.livequery.queries[ id ].stop();
			});
	}
});

// Register core DOM manipulation methods
$.livequery.registerPlugin('append', 'prepend', 'after', 'before', 'wrap', 'attr', 'removeAttr', 'addClass', 'removeClass', 'toggleClass', 'empty', 'remove');

// Run Live Queries when the Document is ready
$(function() { $.livequery.play(); });


// Save a reference to the original init method
var init = $.prototype.init;

// Create a new init method that exposes two new properties: selector and context
$.prototype.init = function(a,c) {
	// Call the original init and save the result
	var r = init.apply(this, arguments);
	
	// Copy over properties if they exist already
	if (a && a.selector)
		r.context = a.context, r.selector = a.selector;
		
	// Set properties
	if ( typeof a == 'string' )
		r.context = c || document, r.selector = a;
	
	// Return the result
	return r;
};

// Give the init function the jQuery prototype for later instantiation (needed after Rev 4091)
$.prototype.init.prototype = $.prototype;
	
})(jQuery);

//JQuery Real Simple Validation
(function($){var options={};var returnHash=[];$.fn.RSV=function(params){options=$.extend({},$.fn.RSV.defaults,params);return this.each(function(){$(this).bind('submit',{currForm:this,options:options},$(this).RSV.validate);});};$.fn.RSV.defaults={rules:[],displayType:"alert-all",errorFieldClass:null,errorTextIntro:"Please fix the following error(s) and resubmit:",errorJSItemBullet:"* ",errorHTMLItemBullet:"&bull; ",errorTargetElementId:"rsvErrors",customErrorHandler:null,onCompleteHandler:null};$.fn.RSV.validate=function(event)
{options=event.data.options;var form=event.data.currForm;var rules=options.rules;returnHash=[];for(var i=0;i<rules.length;i++)
{var row=rules[i].replace(/\\,/ig,"%%C%%");row=row.split(",");var satisfiesIfConditions=true;while(row[0].match("^if:"))
{var cond=row[0];cond=cond.replace("if:","");var comparison="equal";var parts=[];if(cond.search("!=")!=-1)
{parts=cond.split("!=");comparison="not_equal";}
else
parts=cond.split("=");var fieldToCheck=parts[0];var valueToCheck=parts[1];var fieldnameValue="";if(form[fieldToCheck].type==undefined)
{for(var j=0;j<form[fieldToCheck].length;j++)
{if(form[fieldToCheck][j].checked)
fieldnameValue=form[fieldToCheck][j].value;}}
else if(form[fieldToCheck].type=="checkbox")
{if(form[fieldToCheck].checked)
fieldnameValue=form[parts[0]].value;}
else
fieldnameValue=form[parts[0]].value;if(comparison=="equal"&&fieldnameValue!=valueToCheck)
{satisfiesIfConditions=false;break;}
else if(comparison=="not_equal"&&fieldnameValue==valueToCheck)
{satisfiesIfConditions=false;break;}
else
row.shift();}
if(!satisfiesIfConditions)
continue;var requirement=row[0];var fieldName=row[1];var fieldName2,fieldName3,errorMessage,lengthRequirements,date_flag;if(requirement!="function"&&form[fieldName]==undefined)
{alert("RSV Error: the field \""+fieldName+"\" doesn't exist! Please check your form and settings.");return false;}
if(requirement!="function"&&options.errorFieldClass)
{if(form[fieldName].type==undefined)
{for(var j=0;j<form[fieldName].length;j++)
{if($(form[fieldName][j]).hasClass(options.errorFieldClass))
$(form[fieldName][j]).removeClass(options.errorFieldClass);}}
else
{if($(form[fieldName]).hasClass(options.errorFieldClass))
$(form[fieldName]).removeClass(options.errorFieldClass);}}
if(row.length==6)
{fieldName2=row[2];fieldName3=row[3];date_flag=row[4];errorMessage=row[5];}
else if(row.length==5)
{fieldName2=row[2];fieldName3=row[3];errorMessage=row[4];}
else if(row.length==4)
{fieldName2=row[2];errorMessage=row[3];}
else
errorMessage=row[2];if(requirement.match("^length"))
{lengthRequirements=requirement;requirement="length";}
if(requirement.match("^range"))
{rangeRequirements=requirement;requirement="range";}
switch(requirement)
{case"required":if(form[fieldName].type==undefined)
{var oneIsChecked=false;for(var j=0;j<form[fieldName].length;j++)
{if(form[fieldName][j].checked)
oneIsChecked=true;}
if(!oneIsChecked)
{if(!processError(form[fieldName],errorMessage))
return false;}}
else if(form[fieldName].type=="select-multiple")
{var oneIsSelected=false;for(var k=0;k<form[fieldName].length;k++)
{if(form[fieldName][k].selected)
oneIsSelected=true;}
if(!oneIsSelected||form[fieldName].length==0)
{if(!processError(form[fieldName],errorMessage))
return false;}}
else if(form[fieldName].type=="checkbox")
{if(!form[fieldName].checked)
{if(!processError(form[fieldName],errorMessage))
return false;}}
else if(!form[fieldName].value)
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"digits_only":if(form[fieldName].value&&form[fieldName].value.match(/\D/))
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"letters_only":if(form[fieldName].value&&form[fieldName].value.match(/[^a-zA-Z]/))
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"is_alpha":if(form[fieldName].value&&form[fieldName].value.match(/\W/))
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"equals_original":if(form[fieldName].value&&form[fieldName].value.match(form[fieldName].title))
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"custom_alpha":var conversion={"L":"[A-Z]","V":"[AEIOU]","l":"[a-z]","v":"[aeiou]","D":"[a-zA-Z]","F":"[aeiouAEIOU]","C":"[BCDFGHJKLMNPQRSTVWXYZ]","x":"[0-9]","c":"[bcdfghjklmnpqrstvwxyz]","X":"[1-9]","E":"[bcdfghjklmnpqrstvwxyzBCDFGHJKLMNPQRSTVWXYZ]"};var reg_exp_str="";for(var j=0;j<fieldName2.length;j++)
{if(conversion[fieldName2.charAt(j)])
reg_exp_str+=conversion[fieldName2.charAt(j)];else
reg_exp_str+=fieldName2.charAt(j);}
var reg_exp=new RegExp(reg_exp_str);if(form[fieldName].value&&reg_exp.exec(form[fieldName].value)==null)
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"reg_exp":var reg_exp_str=fieldName2.replace(/%%C%%/ig, ",");if(row.length==5)
var reg_exp=new RegExp(reg_exp_str,fieldName3);else
var reg_exp=new RegExp(reg_exp_str);if(form[fieldName].value&&reg_exp.exec(form[fieldName].value)==null)
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"length":comparison_rule="";rule_string="";if(lengthRequirements.match(/length=/))
{comparison_rule="equal";rule_string=lengthRequirements.replace("length=","");}
else if(lengthRequirements.match(/length>=/))
{comparison_rule="greater_than_or_equal";rule_string=lengthRequirements.replace("length>=","");}
else if(lengthRequirements.match(/length>/))
{comparison_rule="greater_than";rule_string=lengthRequirements.replace("length>","");}
else if(lengthRequirements.match(/length<=/))
{comparison_rule="less_than_or_equal";rule_string=lengthRequirements.replace("length<=","");}
else if(lengthRequirements.match(/length</))
{comparison_rule="less_than";rule_string=lengthRequirements.replace("length<","");}
switch(comparison_rule)
{case"greater_than_or_equal":if(!(form[fieldName].value.length>=parseInt(rule_string)))
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"greater_than":if(!(form[fieldName].value.length>parseInt(rule_string)))
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"less_than_or_equal":if(!(form[fieldName].value.length<=parseInt(rule_string)))
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"less_than":if(!(form[fieldName].value.length<parseInt(rule_string)))
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"equal":var range_or_exact_number=rule_string.match(/[^_]+/);var fieldCount=range_or_exact_number[0].split("-");if(fieldCount.length==2)
{if(form[fieldName].value.length<fieldCount[0]||form[fieldName].value.length>fieldCount[1])
{if(!processError(form[fieldName],errorMessage))
return false;}}
else
{if(form[fieldName].value.length!=fieldCount[0])
{if(!processError(form[fieldName],errorMessage))
return false;}}
break;}
break;case"valid_email":if(form[fieldName].value&&!isValidEmail(form[fieldName].value))
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"valid_date":var isLaterDate=false;if(date_flag=="later_date")
isLaterDate=true;else if(date_flag=="any_date")
isLaterDate=false;if(!isValidDate(form[fieldName].value,form[fieldName2].value,form[fieldName3].value,isLaterDate))
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"same_as":if(form[fieldName].value!=form[fieldName2].value)
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"range":comparison_rule="";rule_string="";if(rangeRequirements.match(/range=/))
{comparison_rule="equal";rule_string=rangeRequirements.replace("range=","");}
else if(rangeRequirements.match(/range>=/))
{comparison_rule="greater_than_or_equal";rule_string=rangeRequirements.replace("range>=","");}
else if(rangeRequirements.match(/range>/))
{comparison_rule="greater_than";rule_string=rangeRequirements.replace("range>","");}
else if(rangeRequirements.match(/range<=/))
{comparison_rule="less_than_or_equal";rule_string=rangeRequirements.replace("range<=","");}
else if(rangeRequirements.match(/range</))
{comparison_rule="less_than";rule_string=rangeRequirements.replace("range<","");}
switch(comparison_rule)
{case"greater_than_or_equal":if(!(form[fieldName].value>=Number(rule_string)))
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"greater_than":if(!(form[fieldName].value>Number(rule_string)))
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"less_than_or_equal":if(!(form[fieldName].value<=Number(rule_string)))
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"less_than":if(!(form[fieldName].value<Number(rule_string)))
{if(!processError(form[fieldName],errorMessage))
return false;}
break;case"equal":var rangeValues=rule_string.split("-");if((form[fieldName].value<Number(rangeValues[0]))||(form[fieldName].value>Number(rangeValues[1])))
{if(!processError(form[fieldName],errorMessage))
return false;}
break;}
break;case"function":custom_function=fieldName;eval("var result = "+custom_function+"()");if(result.constructor.toString().indexOf("Array")!=-1)
{for(var j=0;j<result.length;j++)
{if(!processError(result[j][0],result[j][1]))
return false;}}
break;default:alert("Unknown requirement flag in validateFields(): "+requirement);return false;}}
if(typeof options.customErrorHandler=='function')
return options.customErrorHandler(form,returnHash);else if(options.displayType=="alert-all")
{var errorStr=options.errorTextIntro+"\n\n";for(var i=0;i<returnHash.length;i++)
{errorStr+=options.errorJSItemBullet+returnHash[i][1]+"\n";styleField(returnHash[i][0],i==0);}
if(returnHash.length>0)
{alert(errorStr);return false;}}
else if(options.displayType=="display-html")
{var success=displayHTMLErrors(form,returnHash);if(!success)
return false;}
if(typeof options.onCompleteHandler=='function')
return options.onCompleteHandler();else
return true;}
function processError(obj,message)
{message=message.replace(/%%C%%/ig,",");var continueProcessing=true;switch(options.displayType)
{case"alert-one":alert(message);styleField(obj,true);continueProcessing=false;break;case"alert-all":case"display-html":returnHash.push([obj,message]);break;}
return continueProcessing;}
function displayHTMLErrors(f,errorInfo)
{var errorHTML=options.errorTextIntro+"<br /><br />";for(var i=0;i<errorInfo.length;i++)
{errorHTML+=options.errorHTMLItemBullet+errorInfo[i][1]+"<br />";styleField(errorInfo[i][0],i==0);}
if(errorInfo.length>0)
{$("#"+options.errorTargetElementId).css("display","block");$("#"+options.errorTargetElementId).html(errorHTML);return false;}
return true;}
function styleField(field,focus)
{if(field.type==undefined)
{if(focus)
field[0].focus();for(var i=0;i<field.length;i++)
{if(!$(field[i]).hasClass(options.errorFieldClass))
$(field[i]).addClass(options.errorFieldClass);}}
else
{if(options.errorFieldClass)
$(field).addClass(options.errorFieldClass);if(focus)
field.focus();}}
function isValidEmail(str)
{var s=$.trim(str);var at="@";var dot=".";var lat=s.indexOf(at);var lstr=s.length;var ldot=s.indexOf(dot);if(s.indexOf(at)==-1||(s.indexOf(at)==-1||s.indexOf(at)==0||s.indexOf(at)==lstr)||(s.indexOf(dot)==-1||s.indexOf(dot)==0||s.indexOf(dot)==lstr)||(s.indexOf(at,(lat+1))!=-1)||(s.substring(lat-1,lat)==dot||s.substring(lat+1,lat+2)==dot)||(s.indexOf(dot,(lat+2))==-1)||(s.indexOf(" ")!=-1))
{return false;}
return true;}
function isValidDate(month,day,year,isLaterDate)
{var daysInMonth;if((year%4==0)&&((year%100!=0)||(year%400==0)))
daysInMonth=[31,29,31,30,31,30,31,31,30,31,30,31];else
daysInMonth=[31,28,31,30,31,30,31,31,30,31,30,31];if(!month||!day||!year)return false;if(1>month||month>12)return false;if(year<0)return false;if(1>day||day>daysInMonth[month-1])return false;if(isLaterDate)
{var today=new Date();var currMonth=today.getMonth()+1;var currDay=today.getDate();var currYear=today.getFullYear();if(String(currMonth).length==1)currMonth="0"+currMonth;if(String(currDay).length==1)currDay="0"+currDay;var currDate=String(currYear)+String(currMonth)+String(currDay);if(String(month).length==1)month="0"+month;if(String(day).length==1)day="0"+day;incomingDate=String(year)+String(month)+String(day);if(Number(currDate)>Number(incomingDate))
return false;}
return true;}})(jQuery);

/* Cufon - Copyright (c) 2009 Simo Kinnunen. Licensed under the MIT license. */
var Cufon = (function() {
	
	var api = function() {	
		return api.replace.apply(null, arguments);
	};
	
	var DOM = api.DOM = {
			
		ready: (function() {
		
			var complete = false, readyStatus = { loaded: 1, complete: 1 };
		
			var queue = [], perform = function() {
				if (complete) return;
				complete = true;
				for (var fn; fn = queue.shift(); fn());
			};
			
			// Gecko, Opera, WebKit r26101+
			
			if (document.addEventListener) {
				document.addEventListener('DOMContentLoaded', perform, false);
				window.addEventListener('pageshow', perform, false); // For cached Gecko pages
			}
			
			// Old WebKit, Internet Explorer
			
			if (!window.opera && document.readyState) (function() {
				readyStatus[document.readyState] ? perform() : setTimeout(arguments.callee, 10);
			})();
			
			// Internet Explorer
			
			if (document.readyState && document.createStyleSheet) (function() {
				try {
					document.body.doScroll('left');
					perform();
				}
				catch (e) {
					setTimeout(arguments.callee, 1);
				}
			})();
			
			addEvent(window, 'load', perform); // Fallback
			
			return function(listener) {
				if (!arguments.length) perform();
				else complete ? listener() : queue.push(listener);
			};
			
		})()
		
	};

	var CSS = api.CSS = {
	
		Size: function(value, base) {
		
			this.value = parseFloat(value);
			this.unit = String(value).match(/[a-z%]*$/)[0] || 'px';
		
			this.convert = function(value) {
				return value / base * this.value;
			};
			
			this.convertFrom = function(value) {
				return value / this.value * base;
			};
			
			this.toString = function() {
				return this.value + this.unit;
			};

		},
		
		color: cached(function(value) {
			var parsed = {};
			parsed.color = value.replace(/^rgba\((.*?),\s*([\d.]+)\)/, function($0, $1, $2) {
				parsed.opacity = parseFloat($2);
				return 'rgb(' + $1 + ')';
			});
			return parsed;
		}),
	
		getStyle: function(el) {
			var view = document.defaultView;
			if (view && view.getComputedStyle) return new Style(view.getComputedStyle(el, null));
			if (el.currentStyle) return new Style(el.currentStyle);
			return new Style(el.style);
		},
		
		gradient: cached(function(value) {
			var gradient = {
				id: value,
				type: value.match(/^-([a-z]+)-gradient\(/)[1],
				stops: []
			}, colors = value.substr(value.indexOf('(')).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);
			for (var i = 0, l = colors.length, stop; i < l; ++i) {
				stop = colors[i].split('=', 2).reverse();
				gradient.stops.push([ stop[1] || i / (l - 1), stop[0] ]);
			}
			return gradient;
		}),
		
		quotedList: cached(function(value) {
			// doesn't work properly with empty quoted strings (""), but
			// it's not worth the extra code.
			var list = [], re = /\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g, match;
			while (match = re.exec(value)) list.push(match[3] || match[1]);
			return list;
		}),
		
		recognizesMedia: cached(function(media) {
			var el = document.createElement('style'), container, supported;
			el.type = 'text/css';
			el.media = media;
			container = elementsByTagName('head')[0];
			container.insertBefore(el, container.firstChild);
			supported = !!(el.sheet || el.styleSheet);
			container.removeChild(el);
			return supported;
		}),

		supports: function(property, value) {
			var checker = document.createElement('span').style;
			if (checker[property] === undefined) return false;
			checker[property] = value;
			return checker[property] === value;
		},
		
		textAlign: function(word, style, position, wordCount) {
			if (style.get('textAlign') == 'right') {
				if (position > 0) word = ' ' + word;
			}
			else if (position < wordCount - 1) word += ' ';
			return word;
		},
		
		textDecoration: function(el, style) {
			if (!style) style = this.getStyle(el);
			var types = {
				underline: null,
				overline: null,
				'line-through': null
			};
			for (var search = el; search.parentNode && search.parentNode.nodeType == 1; ) {
				var foundAll = true;
				for (var type in types) {
					if (!hasOwnProperty(types, type) || types[type]) continue;
					if (style.get('textDecoration').indexOf(type) != -1) types[type] = style.get('color');
					foundAll = false;
				}
				if (foundAll) break; // this is rather unlikely to happen
				style = this.getStyle(search = search.parentNode);
			}
			return types;
		},
		
		textShadow: cached(function(value) {
			if (value == 'none') return null;
			var shadows = [], currentShadow = {}, result, offCount = 0;
			var re = /(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;
			while (result = re.exec(value)) {
				if (result[0] == ',') {
					shadows.push(currentShadow);
					currentShadow = {}, offCount = 0;
				}
				else if (result[1]) {
					currentShadow.color = result[1];
				}
				else {
					currentShadow[[ 'offX', 'offY', 'blur' ][offCount++]] = result[2];
				}
			}
			shadows.push(currentShadow);
			return shadows;
		}),
		
		textTransform: function(text, style) {
			return text[{
				uppercase: 'toUpperCase',
				lowercase: 'toLowerCase'
			}[style.get('textTransform')] || 'toString']();
		},
		
		whiteSpace: (function() {
			var ignore = {
				inline: 1,
				'inline-block': 1,
				'run-in': 1
			};
			return function(text, style, node) {
				if (ignore[style.get('display')]) return text;
				if (!node.previousSibling) text = text.replace(/^\s+/, '');
				if (!node.nextSibling) text = text.replace(/\s+$/, '');
				return text;
			};
		})()
		
	};
	
	CSS.ready = (function() {
		
		// don't do anything in Safari 2 (it doesn't recognize any media type)
		var complete = !CSS.recognizesMedia('all'), hasLayout = false;
		
		var queue = [], perform = function() {
			complete = true;
			for (var fn; fn = queue.shift(); fn());
		};
		
		var linkElements = elementsByTagName('link'), watch = {
			stylesheet: 1
		};
		
		function allStylesLoaded() {
			var sheet, i, link;
			for (i = 0; link = linkElements[i]; ++i) {
				if (link.disabled || !watch[link.rel.toLowerCase()] || !CSS.recognizesMedia(link.media || 'screen')) continue;
				sheet = link.sheet || link.styleSheet;
				// in Opera sheet.disabled is true when it's still loading,
				// even though link.disabled is false. they stay in sync if
				// set manually.
				if (!sheet || sheet.disabled) return false;
			}
			return true;
		}
		
		DOM.ready(function() {
			// getComputedStyle returns null in Gecko if used in an iframe with display: none
			if (!hasLayout) hasLayout = CSS.getStyle(document.body).isUsable();
			if (complete || (hasLayout && allStylesLoaded())) perform();
			else setTimeout(arguments.callee, 10);
		});
		
		return function(listener) {
			if (complete) listener();
			else queue.push(listener);
		};
		
	})();
	
	function Font(data) {
		
		var face = this.face = data.face;
		this.glyphs = data.glyphs;
		this.w = data.w;
		this.baseSize = parseInt(face['units-per-em'], 10);
		
		this.family = face['font-family'].toLowerCase();
		this.weight = face['font-weight'];
		this.style = face['font-style'] || 'normal';
		
		this.viewBox = (function () {
			var parts = face.bbox.split(/\s+/);
			var box = {
				minX: parseInt(parts[0], 10),
				minY: parseInt(parts[1], 10),
				maxX: parseInt(parts[2], 10),
				maxY: parseInt(parts[3], 10)
			};
			box.width = box.maxX - box.minX,
			box.height = box.maxY - box.minY;
			box.toString = function() {
				return [ this.minX, this.minY, this.width, this.height ].join(' ');
			};
			return box;
		})();
		
		this.ascent = -parseInt(face.ascent, 10);
		this.descent = -parseInt(face.descent, 10);
		
		this.height = -this.ascent + this.descent;
		
	}
	
	function FontFamily() {

		var styles = {}, mapping = {
			oblique: 'italic',
			italic: 'oblique'
		};
		
		this.add = function(font) {
			(styles[font.style] || (styles[font.style] = {}))[font.weight] = font;
		};
		
		this.get = function(style, weight) {
			var weights = styles[style] || styles[mapping[style]]
				|| styles.normal || styles.italic || styles.oblique;
			if (!weights) return null;
			// we don't have to worry about "bolder" and "lighter"
			// because IE's currentStyle returns a numeric value for it,
			// and other browsers use the computed value anyway
			weight = {
				normal: 400,
				bold: 700
			}[weight] || parseInt(weight, 10);
			if (weights[weight]) return weights[weight];
			// http://www.w3.org/TR/CSS21/fonts.html#propdef-font-weight
			// Gecko uses x99/x01 for lighter/bolder
			var up = {
				1: 1,
				99: 0
			}[weight % 100], alts = [], min, max;
			if (up === undefined) up = weight > 400;
			if (weight == 500) weight = 400;
			for (var alt in weights) {
				if (!hasOwnProperty(weights, alt)) continue;
				alt = parseInt(alt, 10);
				if (!min || alt < min) min = alt;
				if (!max || alt > max) max = alt;
				alts.push(alt);
			}
			if (weight < min) weight = min;
			if (weight > max) weight = max;
			alts.sort(function(a, b) {
				return (up
					? (a > weight && b > weight) ? a < b : a > b
					: (a < weight && b < weight) ? a > b : a < b) ? -1 : 1;
			});
			return weights[alts[0]];
		};
	
	}
	
	function HoverHandler() {
		
		function contains(node, anotherNode) {
			if (node.contains) return node.contains(anotherNode);
			return node.compareDocumentPosition(anotherNode) & 16;
		}
		
		function onOverOut(e) {
			var related = e.relatedTarget;
			if (!related || contains(this, related)) return;
			trigger(this);
		}
		
		function onEnterLeave(e) {
			trigger(this);
		}

		function trigger(el) {
			// A timeout is needed so that the event can actually "happen"
			// before replace is triggered. This ensures that styles are up
			// to date.
			setTimeout(function() {
				api.replace(el, sharedStorage.get(el).options, true);
			}, 10);
		}
		
		this.attach = function(el) {
			if (el.onmouseenter === undefined) {
				addEvent(el, 'mouseover', onOverOut);
				addEvent(el, 'mouseout', onOverOut);
			}
			else {
				addEvent(el, 'mouseenter', onEnterLeave);
				addEvent(el, 'mouseleave', onEnterLeave);
			}
		};
		
	}
	
	function ReplaceHistory() {
		
		var list = [], map = {};
		
		function filter(keys) {
			var values = [], key;
			for (var i = 0; key = keys[i]; ++i) values[i] = list[map[key]];
			return values;
		}
		
		this.add = function(key, args) {
			map[key] = list.push(args) - 1;
		};
		
		this.repeat = function() {
			var snapshot = arguments.length ? filter(arguments) : list, args;
			for (var i = 0; args = snapshot[i++];) api.replace(args[0], args[1], true);
		};
		
	}
	
	function Storage() {
		
		var map = {}, at = 0;
		
		function identify(el) {
			return el.cufid || (el.cufid = ++at);
		}
		
		this.get = function(el) {
			var id = identify(el);
			return map[id] || (map[id] = {});
		};
		
	}
	
	function Style(style) {
		
		var custom = {}, sizes = {};
		
		this.extend = function(styles) {
			for (var property in styles) {
				if (hasOwnProperty(styles, property)) custom[property] = styles[property];
			}
			return this;
		};
		
		this.get = function(property) {
			return custom[property] != undefined ? custom[property] : style[property];
		};
		
		this.getSize = function(property, base) {
			return sizes[property] || (sizes[property] = new CSS.Size(this.get(property), base));
		};
		
		this.isUsable = function() {
			return !!style;
		};
		
	}
	
	function addEvent(el, type, listener) {
		if (el.addEventListener) {
			el.addEventListener(type, listener, false);
		}
		else if (el.attachEvent) {
			el.attachEvent('on' + type, function() {
				return listener.call(el, window.event);
			});
		}
	}
	
	function attach(el, options) {
		var storage = sharedStorage.get(el);
		if (storage.options) return el;
		if (options.hover && options.hoverables[el.nodeName.toLowerCase()]) {
			hoverHandler.attach(el);
		}
		storage.options = options;
		return el;
	}
	
	function cached(fun) {
		var cache = {};
		return function(key) {
			if (!hasOwnProperty(cache, key)) cache[key] = fun.apply(null, arguments);
			return cache[key];
		};	
	}
	
	function getFont(el, style) {
		if (!style) style = CSS.getStyle(el);
		var families = CSS.quotedList(style.get('fontFamily').toLowerCase()), family;
		for (var i = 0, l = families.length; i < l; ++i) {
			family = families[i];
			if (fonts[family]) return fonts[family].get(style.get('fontStyle'), style.get('fontWeight'));
		}
		return null;
	}
	
	function elementsByTagName(query) {
		return document.getElementsByTagName(query);
	}
	
	function hasOwnProperty(obj, property) {
		return obj.hasOwnProperty(property);
	}
	
	function merge() {
		var merged = {}, args, key;
		for (var i = 0, l = arguments.length; args = arguments[i], i < l; ++i) {
			for (key in args) {
				if (hasOwnProperty(args, key)) merged[key] = args[key];
			}
		}
		return merged;
	}
	
	function process(font, text, style, options, node, el) {
		var separate = options.separate;
		if (separate == 'none') return engines[options.engine].apply(null, arguments);
		var fragment = document.createDocumentFragment(), processed;
		var parts = text.split(separators[separate]), needsAligning = (separate == 'words');
		if (needsAligning && HAS_BROKEN_REGEXP) {
			// @todo figure out a better way to do this
			if (/^\s/.test(text)) parts.unshift('');
			if (/\s$/.test(text)) parts.push('');
		}
		for (var i = 0, l = parts.length; i < l; ++i) {
			processed = engines[options.engine](font,
				needsAligning ? CSS.textAlign(parts[i], style, i, l) : parts[i],
				style, options, node, el, i < l - 1);
			if (processed) fragment.appendChild(processed);
		}
		return fragment;
	}
	
	function replaceElement(el, options) {
		var font, style, node, nodeType, nextNode, redraw;
		for (node = attach(el, options).firstChild; node; node = nextNode) {
			nodeType = node.nodeType;
			nextNode = node.nextSibling;
			redraw = false;
			if (nodeType == 1) {
				if (!node.firstChild) continue;
				if (!/cufon/.test(node.className)) {
					arguments.callee(node, options);
					continue;
				}
				else redraw = true;
			}
			else if (nodeType != 3) continue;
			if (!style) style = CSS.getStyle(el).extend(options);
			if (!font) font = getFont(el, style);
			if (!font) continue;
			if (redraw) {
				engines[options.engine](font, null, style, options, node, el);
				continue;
			}
			var text = CSS.whiteSpace(node.data, style, node);
			if (text === '') continue;
			var processed = process(font, text, style, options, node, el);
			if (processed) node.parentNode.replaceChild(processed, node);
			else node.parentNode.removeChild(node);
		}
	}
	
	var HAS_BROKEN_REGEXP = ' '.split(/\s+/).length == 0;
	
	var sharedStorage = new Storage();
	var hoverHandler = new HoverHandler();
	var replaceHistory = new ReplaceHistory();
	
	var engines = {}, fonts = {}, defaultOptions = {
		enableTextDecoration: false,
		engine: null,
		//fontScale: 1,
		//fontScaling: false,
		hover: false,
		hoverables: {
			a: true
		},
		printable: true,
		//rotation: 0,
		//selectable: false,
		selector: (
				window.Sizzle
			||	(window.jQuery && function(query) { return jQuery(query); }) // avoid noConflict issues
			||	(window.dojo && dojo.query)
			||	(window.$$ && function(query) { return $$(query); })
			||	(window.$ && function(query) { return $(query); })
			||	(document.querySelectorAll && function(query) { return document.querySelectorAll(query); })
			||	elementsByTagName
		),
		separate: 'words', // 'none' and 'characters' are also accepted
		textShadow: 'none'
	};
	
	var separators = {
		words: /[^\S\u00a0]+/,
		characters: ''
	};
	
	api.now = function() {
		DOM.ready();
		return api;
	};
	
	api.refresh = function() {
		replaceHistory.repeat.apply(replaceHistory, arguments);
		return api;
	};
	
	api.registerEngine = function(id, engine) {
		if (!engine) return api;
		engines[id] = engine;
		return api.set('engine', id);
	};
	
	api.registerFont = function(data) {
		var font = new Font(data), family = font.family;
		if (!fonts[family]) fonts[family] = new FontFamily();
		fonts[family].add(font);
		return api.set('fontFamily', '"' + family + '"');
	};
	
	api.replace = function(elements, options, ignoreHistory) {
		options = merge(defaultOptions, options);
		if (!options.engine) return api; // there's no browser support so we'll just stop here
		if (typeof options.textShadow == 'string')
			options.textShadow = CSS.textShadow(options.textShadow);
		if (typeof options.color == 'string' && /^-/.test(options.color))
			options.textGradient = CSS.gradient(options.color);
		if (!ignoreHistory) replaceHistory.add(elements, arguments);
		if (elements.nodeType || typeof elements == 'string') elements = [ elements ];
		CSS.ready(function() {
			for (var i = 0, l = elements.length; i < l; ++i) {
				var el = elements[i];
				if (typeof el == 'string') api.replace(options.selector(el), options, true);
				else replaceElement(el, options);
			}
		});
		return api;
	};
	
	api.set = function(option, value) {
		defaultOptions[option] = value;
		return api;
	};
	
	return api;
	
})();

Cufon.registerEngine('canvas', (function() {

	// Safari 2 doesn't support .apply() on native methods
	
	var check = document.createElement('canvas');
	if (!check || !check.getContext || !check.getContext.apply) return;
	check = null;
	
	var HAS_INLINE_BLOCK = Cufon.CSS.supports('display', 'inline-block');
	
	// Firefox 2 w/ non-strict doctype (almost standards mode)
	var HAS_BROKEN_LINEHEIGHT = !HAS_INLINE_BLOCK && (document.compatMode == 'BackCompat' || /frameset|transitional/i.test(document.doctype.publicId));
	
	var styleSheet = document.createElement('style');
	styleSheet.type = 'text/css';
	styleSheet.appendChild(document.createTextNode((
		'.cufon-canvas{text-indent:0;}' +
		'@media screen,projection{' +
			'.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;' + 
			(HAS_BROKEN_LINEHEIGHT
				? ''
				: 'font-size:1px;line-height:1px;') +
			'}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;}' +
			(HAS_INLINE_BLOCK
				? '.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(styleSheet);

	function generateFromVML(path, context) {
		var atX = 0, atY = 0;
		var code = [], re = /([mrvxe])([^a-z]*)/g, match;
		generate: for (var i = 0; match = re.exec(path); ++i) {
			var c = match[2].split(',');
			switch (match[1]) {
				case 'v':
					code[i] = { m: 'bezierCurveTo', a: [ atX + ~~c[0], atY + ~~c[1], atX + ~~c[2], atY + ~~c[3], atX += ~~c[4], atY += ~~c[5] ] };
					break;
				case 'r':
					code[i] = { m: 'lineTo', a: [ atX += ~~c[0], atY += ~~c[1] ] };
					break;
				case 'm':
					code[i] = { m: 'moveTo', a: [ atX = ~~c[0], atY = ~~c[1] ] };
					break;
				case 'x':
					code[i] = { m: 'closePath' };
					break;
				case 'e':
					break generate;
			}
			context[code[i].m].apply(context, code[i].a);
		}
		return code;
	}
	
	function interpret(code, context) {
		for (var i = 0, l = code.length; i < l; ++i) {
			var line = code[i];
			context[line.m].apply(context, line.a);
		}
	}
	
	return function(font, text, style, options, node, el) {
		
		var redraw = (text === null);
		
		if (redraw) text = node.alt;
		
		var viewBox = font.viewBox;
		
		var size = style.getSize('fontSize', font.baseSize);
		
		var letterSpacing = style.get('letterSpacing');
		letterSpacing = (letterSpacing == 'normal') ? 0 : size.convertFrom(parseInt(letterSpacing, 10));
		
		var expandTop = 0, expandRight = 0, expandBottom = 0, expandLeft = 0;
		var shadows = options.textShadow, shadowOffsets = [];
		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				var x = size.convertFrom(parseFloat(shadow.offX));
				var y = size.convertFrom(parseFloat(shadow.offY));
				shadowOffsets[i] = [ x, y ];
				if (y < expandTop) expandTop = y;
				if (x > expandRight) expandRight = x;
				if (y > expandBottom) expandBottom = y;
				if (x < expandLeft) expandLeft = x;
			}
		}
		
		var chars = Cufon.CSS.textTransform(text, style).split(''), chr;
		
		var glyphs = font.glyphs, glyph, kerning, k;
		var width = 0, advance, jumps = [];
		
		for (var i = 0, j = 0, l = chars.length; i < l; ++i) {
			glyph = glyphs[chr = chars[i]] || font.missingGlyph;
			if (!glyph) continue;
			if (kerning) {
				width -= k = kerning[chr] || 0;
				jumps[j - 1] -= k;
			}
			width += advance = jumps[j++] = ~~(glyph.w || font.w) + letterSpacing;
			kerning = glyph.k;
		}
		
		if (advance === undefined) return null; // there's nothing to render
		
		expandRight += viewBox.width - advance;
		expandLeft += viewBox.minX;
		
		var wrapper, canvas;
		
		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('span');
			wrapper.className = 'cufon cufon-canvas';
			wrapper.alt = text;
			
			canvas = document.createElement('canvas');
			wrapper.appendChild(canvas);
			
			if (options.printable) {
				var print = document.createElement('span');
				print.className = 'cufon-alt';
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}
		}
		
		var wStyle = wrapper.style;
		var cStyle = canvas.style;
		
		var height = size.convert(viewBox.height);
		var roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		
		canvas.width = Math.ceil(size.convert(width * roundingFactor + expandRight - expandLeft));
		canvas.height = Math.ceil(size.convert(viewBox.height - expandTop + expandBottom));
		
		// minY has no part in canvas.height
		expandTop += viewBox.minY;
		
		cStyle.top = Math.round(size.convert(expandTop - font.ascent)) + 'px';
		cStyle.left = Math.round(size.convert(expandLeft)) + 'px';
		
		var wrapperWidth = Math.ceil(size.convert(width * roundingFactor)) + 'px';
		
		if (HAS_INLINE_BLOCK) {
			wStyle.width = wrapperWidth;
			wStyle.height = size.convert(font.height) + 'px';
		}
		else {
			wStyle.paddingLeft = wrapperWidth;
			wStyle.paddingBottom = (size.convert(font.height) - 1) + 'px';
		}
		
		var g = canvas.getContext('2d'), scale = height / viewBox.height;
		
		// proper horizontal scaling is performed later
		g.scale(scale, scale * roundingFactor);
		g.translate(-expandLeft, -expandTop);
		
		g.lineWidth = font.face['underline-thickness'];
		
		g.save();
		
		function line(y, color) {
			g.strokeStyle = color;
			
			g.beginPath();
			
			g.moveTo(0, y);
			g.lineTo(width, y);
			
			g.stroke();
		}
		
		var textDecoration = options.enableTextDecoration ? Cufon.CSS.textDecoration(el, style) : {};
		
		if (textDecoration.underline) line(-font.face['underline-position'], textDecoration.underline);
		if (textDecoration.overline) line(font.ascent, textDecoration.overline);
		
		function renderText() {
			g.scale(roundingFactor, 1);
			for (var i = 0, j = 0, l = chars.length; i < l; ++i) {
				var glyph = glyphs[chars[i]] || font.missingGlyph;
				if (!glyph) continue;
				if (glyph.d) {
					g.beginPath();
					if (glyph.code) interpret(glyph.code, g);
					else glyph.code = generateFromVML('m' + glyph.d, g);
					g.fill();
				}
				g.translate(jumps[j++], 0);
			}
			g.restore();
		}
		
		if (shadows) {
			for (var i = shadows.length; i--;) {
				var shadow = shadows[i];
				g.save();
				g.fillStyle = shadow.color;
				g.translate.apply(g, shadowOffsets[i]);
				renderText();
			}
		}
		
		var gradient = options.textGradient;
		if (gradient) {
			var stops = gradient.stops, fill = g.createLinearGradient(0, viewBox.minY, 0, viewBox.maxY);
			for (var i = 0, l = stops.length; i < l; ++i) {
				fill.addColorStop.apply(fill, stops[i]);
			}
			g.fillStyle = fill;
		}
		else g.fillStyle = style.get('color');
		
		renderText();
		
		if (textDecoration['line-through']) line(-font.descent, textDecoration['line-through']);
		
		return wrapper;
			
	};
	
})());

Cufon.registerEngine('vml', (function() {

	if (!document.namespaces) return;
	
	if (document.namespaces.cvml == null) {
		document.namespaces.add('cvml', 'urn:schemas-microsoft-com:vml');
	}
	
	var check = document.createElement('cvml:shape');
	check.style.behavior = 'url(#default#VML)';
	if (!check.coordsize) return; // VML isn't supported
	check = null;
	
	document.write(('<style type="text/css">' +
		'.cufon-vml-canvas{text-indent:0;}' +
		'@media screen{' + 
			'cvml\\:shape,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}' + // ignore !important here
		'}' +
		'@media print{' + 
			'.cufon-vml *{display:none;}' +
			'.cufon-vml .cufon-alt{display:inline;}' +
		'}' +
	'</style>').replace(/;/g, '!important;'));

	function getFontSizeInPixels(el, value) {
		return getSizeInPixels(el, /(?:em|ex|%)$/i.test(value) ? '1em' : value);
	}
	
	// Original by Dead Edwards.
	// Combined with getFontSizeInPixels it also works with relative units.
	function getSizeInPixels(el, value) {
		if (/px$/i.test(value)) return parseFloat(value);
		var style = el.style.left, runtimeStyle = el.runtimeStyle.left;
		el.runtimeStyle.left = el.currentStyle.left;
		el.style.left = value;
		var result = el.style.pixelLeft;
		el.style.left = style;
		el.runtimeStyle.left = runtimeStyle;
		return result;
	}
	
	var fills = {};
	
	function gradientFill(gradient) {
		var id = gradient.id;
		if (!fills[id]) {
			var stops = gradient.stops, fill = document.createElement('cvml:fill'), colors = [];
			fill.type = 'gradient';
			fill.angle = 180;
			fill.focus = '0';
			fill.method = 'sigma';
			fill.color = stops[0][1];
			for (var j = 1, k = stops.length - 1; j < k; ++j) {
				colors.push(stops[j][0] * 100 + '% ' + stops[j][1]);
			}
			fill.colors = colors.join(',');
			fill.color2 = stops[k][1];
			fills[id] = fill;
		}
		return fills[id];
	}
	
	return function(font, text, style, options, node, el, hasNext) {
		
		var redraw = (text === null);
		
		if (redraw) text = node.alt;
		
		// @todo word-spacing, text-decoration
	
		var viewBox = font.viewBox;
		
		var size = style.computedFontSize || (style.computedFontSize = new Cufon.CSS.Size(getFontSizeInPixels(el, style.get('fontSize')) + 'px', font.baseSize));
		
		var letterSpacing = style.computedLSpacing;
		
		if (letterSpacing == undefined) {
			letterSpacing = style.get('letterSpacing');
			style.computedLSpacing = letterSpacing = (letterSpacing == 'normal') ? 0 : ~~size.convertFrom(getSizeInPixels(el, letterSpacing));
		}
		
		var wrapper, canvas;
		
		if (redraw) {
			wrapper = node;
			canvas = node.firstChild;
		}
		else {
			wrapper = document.createElement('span');
			wrapper.className = 'cufon cufon-vml';
			wrapper.alt = text;
			
			canvas = document.createElement('span');
			canvas.className = 'cufon-vml-canvas';
			wrapper.appendChild(canvas);
			
			if (options.printable) {
				var print = document.createElement('span');
				print.className = 'cufon-alt';
				print.appendChild(document.createTextNode(text));
				wrapper.appendChild(print);
			}
			
			// ie6, for some reason, has trouble rendering the last VML element in the document.
			// we can work around this by injecting a dummy element where needed.
			// @todo find a better solution
			if (!hasNext) wrapper.appendChild(document.createElement('cvml:shape'));
		}
		
		var wStyle = wrapper.style;
		var cStyle = canvas.style;
		
		var height = size.convert(viewBox.height), roundedHeight = Math.ceil(height);
		var roundingFactor = roundedHeight / height;
		var minX = viewBox.minX, minY = viewBox.minY;
		
		cStyle.height = roundedHeight;
		cStyle.top = Math.round(size.convert(minY - font.ascent));
		cStyle.left = Math.round(size.convert(minX));
		
		wStyle.height = size.convert(font.height) + 'px';
		
		var textDecoration = options.enableTextDecoration ? Cufon.CSS.textDecoration(el, style) : {};
		
		var color = style.get('color');
		var chars = Cufon.CSS.textTransform(text, style).split(''), chr;
		
		var glyphs = font.glyphs, glyph, kerning, k;
		var width = 0, jumps = [], offsetX = 0, advance;
		
		var shape, shadows = options.textShadow;
		
		// pre-calculate width
		for (var i = 0, j = 0, l = chars.length; i < l; ++i) {
			glyph = glyphs[chr = chars[i]] || font.missingGlyph;
			if (!glyph) continue;
			if (kerning) {
				width -= k = kerning[chr] || 0;
				jumps[j - 1] -= k;
			}
			width += advance = jumps[j++] = ~~(glyph.w || font.w) + letterSpacing;
			kerning = glyph.k;
		}
		
		if (advance === undefined) return null;
		
		var fullWidth = -minX + width + (viewBox.width - advance);
	
		var shapeWidth = size.convert(fullWidth * roundingFactor), roundedShapeWidth = Math.round(shapeWidth);
		
		var coordSize = fullWidth + ',' + viewBox.height, coordOrigin;
		var stretch = 'r' + coordSize + 'ns';
		
		var fill = options.textGradient && gradientFill(options.textGradient);
		
		for (i = 0, j = 0; i < l; ++i) {
			
			glyph = glyphs[chars[i]] || font.missingGlyph;
			if (!glyph) continue;
			
			if (redraw) {
				// some glyphs may be missing so we can't use i
				shape = canvas.childNodes[j];
				while (shape.firstChild) shape.removeChild(shape.firstChild); // shadow, fill
			}
			else { 
				shape = document.createElement('cvml:shape');
				canvas.appendChild(shape);
			}
			
			shape.stroked = 'f';
			shape.coordsize = coordSize;
			shape.coordorigin = coordOrigin = (minX - offsetX) + ',' + minY;
			shape.path = (glyph.d ? 'm' + glyph.d + 'xe' : '') + 'm' + coordOrigin + stretch;
			shape.fillcolor = color;
			
			if (fill) shape.appendChild(fill.cloneNode(false));
			
			// it's important to not set top/left or IE8 will grind to a halt
			var sStyle = shape.style;
			sStyle.width = roundedShapeWidth;
			sStyle.height = roundedHeight;
			
			if (shadows) {
				// due to the limitations of the VML shadow element there
				// can only be two visible shadows. opacity is shared
				// for all shadows.
				var shadow1 = shadows[0], shadow2 = shadows[1];
				var color1 = Cufon.CSS.color(shadow1.color), color2;
				var shadow = document.createElement('cvml:shadow');
				shadow.on = 't';
				shadow.color = color1.color;
				shadow.offset = shadow1.offX + ',' + shadow1.offY;
				if (shadow2) {
					color2 = Cufon.CSS.color(shadow2.color);
					shadow.type = 'double';
					shadow.color2 = color2.color;
					shadow.offset2 = shadow2.offX + ',' + shadow2.offY;
				}
				shadow.opacity = color1.opacity || (color2 && color2.opacity) || 1;
				shape.appendChild(shadow);
			}
			
			offsetX += jumps[j++];
		}
		
		wStyle.width = Math.max(Math.ceil(size.convert(width * roundingFactor)), 0);
		
		return wrapper;
		
	};
	
})());

Cufon.registerFont((function(f){_cufon_bridge_={p:[{"d":"204,-389r-97,-91r79,0r66,91r-48,0","w":360},{"d":"16,0r119,-181r-112,-165r60,0r83,124r79,-124r55,0r-108,162r126,184r-60,0r-97,-143r-90,143r-55,0","w":332,"k":{"x":-4,"q":7,"o":11,"g":7,"f":5,"e":11,"d":7,"c":9,"\\":25,"@":4,"\/":7,"-":22}},{"d":"81,6v-24,0,-44,-20,-44,-44v0,-24,20,-43,44,-43v24,0,44,19,44,43v0,24,-20,44,-44,44xm81,-264v-24,0,-44,-19,-44,-43v0,-24,20,-44,44,-44v24,0,44,20,44,44v0,24,-20,43,-44,43","w":162},{"d":"59,0r0,-346r53,0r0,50v31,-39,70,-58,112,-58v73,0,101,48,101,108r0,246r-52,0r0,-236v0,-43,-15,-71,-61,-71v-39,0,-76,30,-100,64r0,243r-53,0","w":381,"k":{"y":4,"w":4,"v":4,"\\":29,"\/":7}},{"d":"19,0r0,-20v56,-48,206,-160,206,-231v0,-75,-120,-70,-158,-15r-30,-34v63,-76,244,-80,244,44v0,79,-118,169,-171,214v55,-6,142,-2,205,-3r0,45r-296,0","w":345,"k":{"<":14,"9":14,"8":14,"7":7,"5":11,"3":14,"1":7,"-":14,"+":14,"'":22,"%":22,"#":7,"\"":22}},{"d":"69,0r0,-480r130,0v100,0,160,47,160,128v0,83,-64,117,-135,127v49,47,121,162,169,225r-66,0r-97,-136v-62,-82,-59,-85,-105,-85r0,221r-56,0xm125,-267r72,0v71,0,104,-31,104,-84v0,-77,-87,-87,-176,-81r0,165","w":410,"k":{"y":7,"w":7,"v":7,"u":11,"q":4,"o":7,"j":4,"i":4,"g":11,"e":11,"d":7,"c":11,"Y":6,"W":4,"V":4,"U":7,"T":6,"Q":9,"O":9,"@":4,"?":11,"-":22}},{"w":162},{"d":"82,143r-45,-23r197,-419r-222,0r0,-47r280,0r0,38","w":321,"k":{"<":22,"8":14,"5":14,"4":58,"2":7,"\/":50,".":36,",":36}},{"d":"274,9v-148,0,-236,-116,-236,-248v0,-132,87,-249,235,-249v148,0,236,116,236,248v0,132,-87,249,-235,249xm273,-38v114,0,177,-93,177,-201v0,-108,-62,-202,-176,-202v-114,0,-177,93,-177,201v0,108,62,202,176,202","w":547,"k":{"z":7,"x":7,"i":7,"a":7,"\\":7,"Z":12,"Y":14,"X":18,"W":7,"V":11,"U":4,"T":12,"S":10,"M":4,"A":14,"?":7,"\/":29,".":22,",":22}},{"d":"68,0r0,-480r55,0r226,325v23,32,35,58,46,71v-1,-9,-3,-30,-3,-65r0,-331r52,0r0,480r-52,0r-236,-342v-15,-20,-28,-49,-39,-62v7,124,1,273,3,404r-52,0","w":511,"k":{"u":7}},{"d":"192,9v-109,0,-163,-82,-163,-184v0,-102,63,-179,155,-179v94,-1,144,74,135,180r-234,0v1,73,31,137,109,137v48,0,80,-22,95,-31r22,41v-17,12,-56,36,-119,36xm88,-216r178,0v-1,-49,-23,-93,-83,-93v-55,0,-86,39,-95,93","w":352,"k":{"\u00bb":-7,"x":4,"f":-4,"\\":29,"\/":7}},{"d":"172,171v-77,0,-138,-29,-138,-97v0,-39,24,-70,59,-89v-43,-16,-38,-88,4,-105v-39,-22,-61,-62,-61,-108v0,-91,94,-148,192,-118r113,0r0,42r-54,0v70,95,-14,234,-151,199v-43,21,-21,56,26,56v76,0,180,-2,180,105v0,71,-81,115,-170,115xm174,129v68,0,115,-29,115,-71v0,-80,-94,-48,-157,-62v-69,39,-67,134,42,133xm174,-144v53,0,84,-36,84,-84v0,-48,-31,-83,-84,-83v-53,0,-84,35,-84,83v0,48,31,84,84,84","w":363,"k":{"y":-7,"u":4,"t":-6,"j":-14,"g":5,"f":-4,"\\":36,"?":12,"\/":-7,".":7,"-":12,",":7,"!":4}},{"d":"115,0r0,-297r-80,28r-11,-44v47,-12,81,-37,144,-33r0,346r-53,0","w":232,"k":{"'":7,"\"":7}},{"d":"90,-410v-22,0,-39,-17,-39,-39v0,-22,17,-39,39,-39v22,0,39,17,39,39v0,22,-17,39,-39,39xm63,0r0,-346r54,0r0,346r-54,0","w":180,"k":{"\/":7}},{"d":"130,9v-58,0,-98,-37,-98,-93v0,-96,105,-121,199,-119v4,-63,-8,-104,-69,-104v-32,0,-59,10,-90,37r-28,-37v70,-74,240,-69,240,67v0,76,-6,180,8,240r-53,0v-2,-9,-4,-31,-5,-42v-23,29,-62,51,-104,51xm139,-37v39,0,70,-19,92,-49r0,-78v-78,-2,-144,15,-143,78v0,36,30,49,51,49","w":339,"k":{"y":4,"v":4,"u":4,"t":4,"g":4,"\\":36,"?":7}},{"d":"59,0r0,-346r53,0r0,49v15,-19,46,-57,105,-57v50,0,77,26,89,58v27,-30,62,-58,112,-58v70,0,97,47,97,108r0,246r-53,0r0,-236v0,-42,-13,-71,-57,-71v-42,0,-75,33,-92,54r0,253r-52,0r0,-236v0,-43,-16,-71,-56,-71v-50,0,-86,53,-93,63r0,244r-53,0","w":570,"k":{"w":4,"v":4,"\\":29,"\/":7}},{"d":"150,0r0,-432r-136,0r0,-48r329,0r0,48r-136,0r0,432r-57,0","w":357,"k":{"\u00bb":22,"z":47,"y":47,"x":43,"w":43,"v":33,"u":43,"t":14,"s":46,"r":36,"q":47,"p":36,"o":47,"n":36,"m":36,"j":7,"i":14,"g":50,"f":14,"e":50,"d":43,"c":50,"a":58,"\\":-22,"Y":-14,"X":-9,"W":-14,"V":-11,"T":-11,"S":4,"Q":12,"O":12,"M":7,"G":14,"C":10,"A":29,"@":29,"?":-7,";":36,":":36,"\/":50,".":58,"-":36,",":58}},{"d":"72,0r0,-304r-58,0r0,-42r58,0v-9,-108,27,-181,126,-181v34,0,52,6,58,9r-14,46v-4,-2,-21,-9,-45,-9v-63,0,-78,62,-72,135r87,0r0,42r-87,0r0,304r-53,0","w":228,"k":{"}":-43,"y":-4,"w":-7,"v":-7,"u":11,"s":7,"r":11,"q":4,"p":11,"o":4,"n":11,"m":11,"g":14,"e":18,"d":7,"c":11,"a":7,"]":-43,"\\":-43,"?":-18,"\/":25,".":29,"-":11,",":29,")":-43,"!":-4}},{"d":"135,10v5,97,-64,145,-150,120r9,-49v50,16,84,-8,84,-80r0,-481r57,0r0,490","w":203,"k":{"w":7,"v":7,"i":7,"g":4}},{"d":"18,116r0,-41r94,0r0,-552r-94,0r0,-41r145,0r0,634r-145,0","w":220},{"d":"99,6v-22,0,-41,-18,-41,-41v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,23,-19,41,-41,41xm78,-143r-12,-337r65,0r-11,337r-42,0","w":198},{"d":"113,46v7,85,-54,137,-136,115r9,-44v49,13,74,-15,74,-80r0,-383r53,0r0,392xm86,-410v-22,0,-39,-17,-39,-39v0,-22,17,-39,39,-39v22,0,39,17,39,39v0,22,-17,39,-39,39","w":172},{"d":"189,9v-113,0,-157,-107,-157,-203v0,-173,102,-294,280,-294r11,44v-134,0,-220,72,-232,197v24,-22,64,-37,104,-37v89,0,142,57,142,141v0,81,-57,152,-148,152xm192,-37v59,0,90,-50,90,-98v0,-65,-30,-105,-93,-105v-48,0,-78,19,-100,36v-9,94,25,167,103,167","w":366,"k":{">":14,"7":11,"3":18,"2":7,"1":18,"\/":22}},{"d":"71,-76r16,-104r-70,0r7,-42r70,0r12,-80r-70,0r6,-43r70,0r14,-94r42,0r-14,94r73,0r14,-94r43,0r-15,94r70,0r-7,43r-69,0r-12,80r69,0r-7,42r-68,0r-15,104r-43,0r15,-104r-72,0r-16,104r-43,0xm136,-222r73,0r12,-80r-73,0","w":355,"k":{"9":4,"8":7,"7":-29,"4":58,"1":-14,"0":7}},{"d":"44,-207r148,-273r36,0r148,273r-48,0r-118,-217r-118,217r-48,0","w":420},{"d":"18,116r0,-41r48,0v34,0,41,-22,41,-57r0,-134v-1,-54,32,-75,72,-88v-42,-12,-72,-39,-72,-93r0,-126v0,-35,-8,-54,-41,-54r-48,0r0,-41v75,-3,140,-3,140,77r0,137v0,47,30,78,80,79r0,40v-48,1,-80,29,-80,78r0,146v-4,80,-64,80,-140,77","w":257},{"d":"261,0r-148,-193r143,-153r62,0r-144,153r151,193r-64,0xm57,0r0,-518r52,0r0,518r-52,0","w":336,"k":{"z":-4,"q":4,"o":7,"g":6,"e":7,"d":7,"c":7,"\\":7,"@":4,"?":7,"-":25}},{"d":"192,9v-109,0,-163,-82,-163,-184v0,-102,63,-179,155,-179v94,-1,144,74,135,180r-234,0v1,73,31,137,109,137v48,0,80,-22,95,-31r22,41v-17,12,-56,36,-119,36xm88,-216r178,0v-1,-49,-23,-93,-83,-93v-55,0,-86,39,-95,93xm158,-389r67,-91r78,0r-97,91r-48,0","w":352},{"d":"146,0r-131,-480r61,0r82,321v10,35,14,80,18,83v1,-4,11,-48,21,-83r92,-321r58,0r91,319v12,37,17,81,21,84v23,-123,70,-279,100,-403r55,0r-132,480r-51,0r-93,-324v-13,-38,-15,-90,-22,-92v-1,4,-12,52,-24,92r-95,324r-51,0","w":630,"k":{"\u00bb":14,"z":11,"y":7,"x":7,"w":4,"v":7,"u":14,"s":14,"r":18,"q":14,"p":18,"o":25,"n":18,"m":18,"j":11,"i":7,"g":25,"e":25,"d":22,"c":32,"a":22,"\\":-7,"Y":-7,"W":-7,"V":-7,"T":-14,"Q":4,"O":7,"M":7,"G":7,"C":4,"A":30,"@":14,";":11,":":11,"\/":47,".":58,"-":22,",":58}},{"d":"126,-153v-72,0,-102,-54,-102,-100v0,-46,31,-101,103,-101v72,0,101,53,101,99v0,46,-30,102,-102,102xm127,-188v40,0,57,-28,57,-65v0,-37,-18,-67,-58,-67v-40,0,-58,28,-58,65v0,37,19,67,59,67xm410,9v-72,0,-101,-54,-101,-100v0,-46,31,-101,103,-101v72,0,101,53,101,99v0,46,-31,102,-103,102xm412,-26v40,0,57,-28,57,-65v0,-37,-19,-67,-59,-67v-40,0,-57,28,-57,65v0,37,19,67,59,67xm145,0r206,-346r46,0r-207,346r-45,0","w":537},{"d":"189,9v-117,0,-160,-100,-160,-181v0,-81,40,-182,157,-182v117,0,165,99,165,180v0,81,-45,183,-162,183xm189,-37v72,0,106,-61,106,-135v0,-74,-37,-137,-109,-137v-72,0,-101,61,-101,135v0,74,32,137,104,137","w":380,"k":{"z":4,"y":4,"x":11,"v":7,"f":4,"\\":22,"\/":22,".":7,",":7}},{"d":"179,46v-24,73,-70,138,-171,117r7,-43v62,10,95,-17,114,-77r16,-45r-130,-344r59,0r100,276r96,-276r56,0","w":337,"k":{"y":-6,"w":-7,"v":-7,"t":-7,"q":7,"p":4,"o":4,"l":4,"k":7,"h":7,"g":7,"f":-7,"e":4,"d":4,"b":7,"\\":22,"?":7,";":-4,":":-4,"\/":36,".":43,",":43,"!":4}},{"d":"69,0r0,-480r112,0v189,0,272,96,272,234v0,138,-83,246,-275,246r-109,0xm125,-46v167,12,269,-47,269,-198v0,-149,-100,-200,-269,-189r0,387","w":488,"k":{"z":7,"x":7,"i":7,"a":4,"Z":12,"Y":14,"X":13,"W":7,"V":11,"T":14,"A":25,"\/":25,".":14,",":14}},{"d":"287,-128v-78,0,-104,-51,-157,-51v-29,0,-48,15,-64,29r-26,-32v22,-19,56,-43,94,-43v66,0,90,50,157,50v23,0,47,-12,68,-29r25,32v-26,25,-62,44,-97,44","w":423},{"d":"73,0r0,-480r57,0r0,480r-57,0","w":203,"k":{"w":7,"v":7,"i":11,"g":7}},{"d":"161,9v-58,0,-86,-34,-86,-92r0,-221r-57,0r0,-42r57,0r0,-98r52,0r0,98r88,0r0,42r-88,0r0,216v0,35,11,51,41,51v22,0,41,-11,47,-15r19,40v-10,6,-36,21,-73,21","w":250,"k":{"w":-7,"v":-7,"u":4,"g":13,"f":4,"e":4,"c":4,"a":-7,"\\":14,".":-7,"-":14,",":-7}},{"d":"-1,114r0,-43r286,0r0,43r-286,0","w":284},{"d":"183,9v-98,0,-143,-64,-143,-126v0,-49,34,-98,99,-135v-64,-39,-86,-77,-86,-119v0,-69,61,-117,129,-117v89,0,135,53,135,114v0,45,-31,82,-94,118v71,40,105,84,105,136v0,78,-61,129,-145,129xm185,-37v57,0,88,-39,88,-84v0,-35,-24,-69,-97,-109v-57,37,-82,70,-82,110v0,48,36,83,91,83xm186,-279v54,-32,77,-62,77,-91v0,-40,-27,-73,-77,-73v-47,0,-79,30,-79,72v0,30,19,57,79,92","w":367,"k":{"3":25,"2":11,"1":7,"\/":29,"%":14}},{"d":"3,127v60,-62,126,-172,126,-316v0,-134,-47,-239,-126,-329r50,0v83,90,131,206,131,329v0,122,-52,237,-131,316r-50,0"},{"d":"69,0r0,-480r120,0v96,0,169,47,169,139v0,113,-97,158,-233,147r0,194r-56,0xm125,-241r56,0v84,0,119,-35,119,-98v0,-55,-31,-93,-116,-93r-59,0r0,191","w":390,"k":{"u":11,"s":7,"r":4,"q":13,"p":4,"o":14,"n":4,"m":4,"i":29,"g":7,"e":22,"d":17,"c":18,"a":7,"\\":-7,"Z":14,"X":9,"V":4,"M":16,"A":47,"@":7,"\/":58,".":79,"-":14,",":79}},{"d":"128,-40r-96,-136r96,-137r56,0r-95,137r95,136r-56,0xm256,-40r-95,-136r95,-137r56,0r-95,137r95,136r-56,0","w":342,"k":{"g":7,"Y":22,"X":7,"W":14,"V":14,"T":22}},{"d":"251,9v-131,0,-186,-76,-186,-188r0,-301r56,0r0,294v0,99,41,146,131,146v86,0,127,-55,127,-136r0,-304r53,0r0,298v0,117,-56,191,-181,191","w":496,"k":{"z":7,"y":7,"x":7,"w":7,"v":7,"u":7,"t":7,"s":7,"r":7,"p":7,"o":7,"n":7,"m":7,"l":4,"j":11,"i":7,"g":11,"e":7,"d":7,"c":7,"a":7,"S":11,"Q":4,"O":4,"M":4,"J":4,"G":4,"A":14,"?":4,"\/":40,".":14,",":14,"!":4}},{"d":"264,156r0,-183v-15,16,-47,36,-86,36v-94,0,-149,-74,-149,-180v0,-105,75,-183,174,-183v68,0,108,22,114,26r0,484r-53,0xm188,-39v39,0,71,-28,76,-34r0,-224v-6,-3,-25,-12,-62,-12v-78,0,-117,66,-117,136v0,73,28,134,103,134","w":375,"k":{"x":4,"w":7,"v":7,"u":7,"p":7,"l":7,"k":11,"h":11,"b":11,"\\":29}},{"d":"186,9v-102,0,-157,-87,-157,-182v0,-118,73,-181,159,-181v57,0,89,21,106,34r-25,40v-18,-14,-42,-29,-82,-29v-71,0,-102,59,-102,135v0,73,32,137,104,137v43,0,74,-21,84,-29r21,40v-14,12,-48,35,-108,35","w":316,"k":{"\u00bb":-7,"z":-4,"y":-4,"w":-4,"v":-4,"t":-4,"o":4,"f":-7,"a":-4,"\\":7,";":-7,":":-7,".":-4,",":-4,"!":-4}},{"d":"31,-40r95,-136r-95,-137r55,0r96,137r-96,136r-55,0xm159,-40r95,-136r-95,-137r55,0r96,137r-96,136r-55,0","w":342,"k":{"z":20,"y":18,"x":29,"w":11,"v":14,"f":7,"a":7,"Z":14,"Y":50,"X":29,"W":22,"V":29,"U":7,"T":50,"S":18,"A":7}},{"d":"197,0r-184,-480r60,0r124,331v16,38,20,72,30,84r148,-415r56,0r-179,480r-55,0","w":443,"k":{"\u00bb":14,"z":18,"y":7,"x":14,"w":7,"v":7,"u":22,"s":29,"r":22,"q":27,"p":22,"o":32,"n":22,"m":22,"j":14,"i":7,"g":36,"f":7,"e":40,"d":32,"c":40,"a":25,"\\":-7,"Y":-7,"X":-7,"W":-7,"T":-11,"Q":11,"O":11,"M":7,"J":4,"G":14,"C":7,"A":22,"@":22,";":22,":":22,"\/":50,".":65,"-":29,",":65,"!":4}},{"d":"449,117v-65,0,-118,-27,-183,-108v-143,-4,-228,-118,-228,-248v0,-132,87,-249,235,-249v148,0,236,116,236,248v0,114,-67,219,-181,243v36,45,67,68,122,68v28,0,49,-14,58,-21r21,42v-15,13,-43,25,-80,25xm273,-38v114,0,177,-93,177,-201v0,-108,-62,-202,-176,-202v-114,0,-177,93,-177,201v0,108,62,202,176,202","w":547,"k":{"x":7,"a":4,"\\":7,"Z":14,"Y":22,"X":19,"W":4,"V":11,"U":4,"T":12,"S":7,"M":4,"J":-29,"A":14,"?":7,".":22,",":22}},{"d":"79,6v-24,0,-44,-19,-44,-43v0,-24,20,-44,44,-44v24,0,44,20,44,44v0,24,-20,43,-44,43","w":158},{"d":"69,0r0,-480r251,0r0,48r-195,0r0,154r170,0r0,48r-170,0r0,230r-56,0","w":352,"k":{"z":22,"y":7,"x":22,"w":4,"v":11,"u":18,"s":7,"r":14,"q":7,"p":14,"o":9,"n":14,"m":14,"i":7,"g":11,"e":11,"d":11,"c":11,"a":14,"\\":-14,"Q":4,"O":4,"M":11,"G":4,"C":4,"A":36,";":7,":":7,"\/":29,".":43,",":43}},{"d":"246,127r0,-127r-224,0r0,-35r233,-311r43,0r0,301r80,0r0,45r-80,0r0,127r-52,0xm81,-45r165,0r0,-216r-2,0","w":403,"k":{"=":14,"<":22,"9":7,"5":7,"3":22,"2":4,"1":22,"0":14,"-":29,"+":22,"'":22,"%":36,"#":29,"\"":22}},{"d":"81,180r0,-720r43,0r0,720r-43,0","w":204},{"d":"139,9v-50,0,-87,-18,-109,-33r23,-40v13,9,43,28,85,28v43,0,71,-18,71,-50v0,-32,-27,-45,-77,-67v-54,-23,-95,-47,-95,-106v0,-53,41,-95,110,-95v57,0,91,24,102,33r-26,38v-12,-9,-38,-26,-77,-26v-37,0,-57,18,-57,48v0,32,28,46,66,62v56,24,107,48,107,106v0,63,-47,102,-123,102","w":293,"k":{"y":4,"g":7,"b":7,"a":-4,"\\":29,"\/":11,"-":17}},{"d":"47,0r173,-480r51,0r-174,480r-50,0","w":289,"k":{"z":22,"y":22,"x":29,"w":18,"v":14,"u":40,"t":11,"s":40,"r":40,"q":36,"p":40,"o":36,"n":40,"m":40,"g":47,"f":4,"e":32,"d":32,"c":47,"a":43,"Y":-7,"W":-7,"V":-7,"T":-14,"Q":14,"O":14,"M":11,"G":18,"C":14,"A":36,"9":43,"8":22,"6":22,"5":50,"4":94,"3":29,"2":32,"1":14,"0":43}},{"d":"39,-184r0,-46r145,0r0,46r-145,0","k":{"z":7,"x":14,"s":-4,"a":6,"Y":36,"X":29,"W":22,"V":29,"T":36,"S":22,"M":7,"A":14,"4":43,"3":14,"2":14}},{"d":"59,0r0,-346r53,0r0,54v11,-31,76,-81,128,-55r-13,50v-4,-2,-12,-5,-30,-5v-52,0,-81,59,-85,70r0,232r-53,0","w":248,"k":{"\u00bb":-7,"y":-11,"x":-7,"w":-7,"v":-7,"t":-7,"k":-4,"h":-4,"g":7,"f":-7,"e":4,"c":6,"b":-4,"?":7,";":-7,":":-7,"\/":36,".":43,"-":14,",":43}},{"d":"59,158r0,-504r53,0r0,38v18,-22,50,-46,100,-46v84,0,140,66,140,180v0,109,-64,183,-153,183v-49,0,-74,-19,-87,-31r0,180r-53,0xm194,-37v66,0,102,-57,102,-135v0,-77,-29,-135,-95,-135v-48,0,-80,36,-89,49r0,190v16,14,40,31,82,31","w":380,"k":{"v":4,"f":4,"\\":25,"\/":14,".":7,",":7}},{"d":"25,-110r0,-46r280,0r0,46r-280,0xm25,-228r0,-45r280,0r0,45r-280,0","w":330},{"d":"204,9v-122,0,-175,-99,-175,-181v0,-82,54,-182,176,-182v122,0,177,96,177,180v0,82,-56,183,-178,183xm205,-37v80,0,120,-60,120,-135v0,-75,-41,-137,-121,-137v-80,0,-119,60,-119,135v0,75,40,137,120,137","w":410,"k":{"7":4,"4":14,"3":7,"\/":22,"'":7,"#":-7,"\"":7}},{"d":"39,97v19,-26,29,-54,29,-74v0,-26,-31,-31,-31,-65v0,-22,17,-39,40,-39v26,0,48,21,48,57v0,38,-18,83,-49,121r-37,0","w":158},{"d":"48,-320r-17,-160r66,0r-8,160r-41,0xm146,-320r-8,-160r66,0r-16,160r-42,0","w":235,"k":{"9":7,"7":-14,"5":11,"4":72,"0":7}},{"d":"274,-29v0,101,-103,184,-242,160r10,-44v84,14,177,-24,176,-113v-1,-92,-76,-116,-168,-106r14,-214r202,0r0,43r-154,0r-8,126v118,0,170,70,170,148","w":302,"k":{"7":-7,"4":-7,"2":-7,"0":4,"\/":-14,"-":14,"+":14}},{"d":"143,0r-131,-346r57,0r100,277r97,-277r54,0r-128,346r-49,0","w":332,"k":{"y":-7,"w":-7,"v":-7,"t":-7,"q":4,"o":7,"g":7,"f":-7,"e":4,"d":4,"c":4,"\\":18,"?":4,";":-4,":":-4,"\/":22,".":36,",":36}},{"d":"45,134r-10,-43v127,0,227,-65,239,-189v-97,80,-244,18,-244,-108v0,-81,64,-148,151,-148v116,0,153,109,153,203v0,172,-105,285,-289,285xm178,-107v36,0,73,-11,100,-33v9,-92,-25,-169,-100,-169v-49,0,-92,40,-92,102v0,58,29,100,92,100","w":367,"k":{"3":14,"\/":7,"'":14,"#":-7,"\"":14}},{"d":"104,-235r-33,-25r61,-82r-98,-30r13,-39r96,34r-3,-103r46,0r-2,103r96,-34r14,39r-99,30r61,82r-33,25r-60,-86","w":326},{"d":"115,0r-103,-346r58,0r73,262r2,0r81,-262r51,0r83,262r74,-262r53,0r-103,346r-48,0r-85,-269r-2,0r-86,269r-48,0","w":502,"k":{"y":-7,"w":-7,"v":-7,"t":-7,"q":4,"g":7,"f":-7,"e":4,"d":4,"c":4,"\\":18,"?":7,";":-4,":":-4,"\/":25,".":32,",":32}},{"d":"46,-320r-13,-160r69,0r-13,160r-43,0","w":134,"k":{"9":7,"7":-14,"5":11,"4":72,"0":7}},{"d":"184,-14r0,-155r-154,0r0,-44r154,0r0,-147r49,0r0,147r150,0r0,44r-150,0r0,155r-49,0","w":413,"k":{"7":7,"4":22,"3":14,"2":14}},{"d":"60,-19r-29,-31r144,-127r-144,-127r29,-33r180,158","w":259,"k":{"7":14,"4":29,"3":14,"2":14}},{"w":162},{"d":"57,0r0,-518r52,0r0,222v15,-19,53,-58,113,-58v73,0,101,48,101,108r0,246r-52,0r0,-236v0,-43,-15,-71,-61,-71v-53,0,-94,54,-101,64r0,243r-52,0","w":379,"k":{"y":4,"v":7,"\\":29,"\/":7}},{"d":"171,9v-83,0,-142,-66,-142,-181v0,-147,135,-230,240,-152r0,-194r53,0r0,447v0,24,4,53,8,71r-52,0v-2,-7,-6,-27,-7,-40v-24,30,-58,49,-100,49xm182,-39v31,0,65,-17,87,-47r0,-191v-22,-20,-48,-32,-83,-32v-66,0,-101,57,-101,135v0,78,28,135,97,135","w":376,"k":{"g":4,"\/":7}},{"d":"132,-166r183,0r-90,-247r-2,0xm15,0r184,-480r54,0r185,480r-61,0r-44,-119r-219,0r-43,119r-56,0","w":451,"k":{"y":22,"w":18,"v":14,"u":4,"t":11,"i":7,"g":9,"c":4,"\\":29,"Z":-4,"Y":36,"W":18,"V":22,"U":11,"T":29,"Q":14,"O":14,"G":11,"C":17,".":-7,"-":14,",":-7}},{"d":"39,0r65,-480r53,0r150,415r149,-415r54,0r65,480r-57,0r-49,-381r-2,0v-5,17,-10,36,-21,66r-114,315r-54,0r-141,-381r-46,381r-52,0","w":613,"k":{"y":11,"w":7,"v":7,"u":7,"t":4,"s":4,"i":4,"g":4,"\\":7,"Y":14,"W":7,"V":7,"U":4,"T":7,"S":4,"Q":4,"O":4,"G":7,"C":12,"?":7,"-":7}},{"d":"33,0r0,-40r262,-393r-250,0r0,-47r316,0r0,37r-265,397r274,0r0,46r-337,0","w":403,"k":{"y":19,"w":22,"v":16,"u":13,"t":9,"s":7,"q":12,"o":17,"j":4,"i":7,"g":14,"f":7,"e":14,"d":11,"c":13,"a":4,"T":4,"Q":14,"O":12,"M":6,"G":16,"C":22,"A":4,"-":25}},{"d":"240,116v-76,3,-140,2,-140,-78r0,-145v0,-47,-30,-77,-80,-78r0,-40v48,-1,80,-30,80,-79r0,-137v4,-80,64,-80,140,-77r0,41r-48,0v-34,0,-41,22,-41,57r0,126v1,54,-32,75,-72,88v42,12,72,38,72,92r0,135v0,35,8,54,41,54r48,0r0,41","w":257,"k":{"y":-18,"j":-43,"J":-43}},{"d":"69,0r0,-480r56,0r0,204r272,0r0,-204r56,0r0,480r-56,0r0,-229r-272,0r0,229r-56,0","w":522,"k":{"i":7}},{"d":"41,97v18,-24,30,-52,30,-74v0,-26,-32,-31,-32,-65v0,-22,17,-39,40,-39v26,0,48,21,48,57v0,40,-20,85,-49,121r-37,0xm81,-264v-24,0,-44,-19,-44,-43v0,-24,20,-44,44,-44v24,0,44,20,44,44v0,24,-20,43,-44,43","w":162},{"d":"128,89r0,-80v-44,-4,-76,-18,-98,-35r23,-41v34,38,171,49,170,-19v0,-39,-51,-51,-100,-73v-44,-19,-86,-45,-86,-101v0,-48,35,-84,91,-92r0,-75r51,0r0,74v37,4,66,19,85,33r-25,39v-31,-32,-151,-47,-150,19v0,34,39,49,82,67v50,21,105,44,105,102v0,54,-34,91,-97,100r0,82r-51,0","w":293,"k":{"7":-11}},{"d":"58,116r0,-634r144,0r0,41r-93,0r0,552r93,0r0,41r-144,0","w":220,"k":{"y":-18,"j":-43,"J":-43}},{"d":"268,-120v0,-123,-222,-102,-222,-246v0,-78,67,-122,140,-122v71,0,110,26,126,38r-28,42v-17,-13,-49,-33,-99,-33v-48,0,-83,28,-83,72v0,48,38,71,86,93v63,30,137,62,137,156v0,76,-64,129,-157,129v-73,0,-119,-32,-136,-49r28,-41v11,10,46,43,110,43v59,0,98,-40,98,-82","w":359,"k":{"z":4,"y":11,"x":4,"w":7,"v":7,"Y":4,"W":4,"V":4,"U":4,"@":-6,"\/":7,"-":7}},{"d":"272,9v-150,0,-234,-120,-234,-250v0,-130,87,-247,235,-247v61,0,100,14,135,36r-29,42v-28,-19,-63,-31,-108,-31v-115,0,-174,94,-174,198v0,105,57,204,177,204v52,0,89,-17,117,-41r26,40v-25,23,-78,49,-145,49","w":442,"k":{"z":4,"y":18,"x":7,"w":14,"v":22,"u":4,"t":14,"q":4,"o":7,"i":4,"g":7,"e":12,"d":4,"\\":-7,"Z":-4,"U":4,"T":-4,"Q":16,"O":16,"G":12,"C":12,"-":22}},{"d":"188,9v-101,0,-161,-60,-161,-131v0,-60,30,-97,100,-136v-40,-44,-60,-77,-60,-119v0,-67,54,-111,127,-111v68,0,118,41,118,101v0,53,-34,91,-108,133r126,134v19,-30,32,-68,39,-109r51,9v-9,52,-29,99,-57,136r79,84r-70,0r-44,-46v-39,35,-87,55,-140,55xm176,-284v59,-33,82,-63,82,-101v0,-32,-25,-59,-65,-59v-42,0,-69,27,-69,64v0,29,13,54,52,96xm189,-39v42,0,78,-15,107,-41r-140,-147v-46,26,-72,57,-72,102v0,48,37,86,105,86","w":450},{"d":"174,0r0,-181r-161,-299r63,0r128,245r129,-245r54,0r-157,299r0,181r-56,0","w":399,"k":{"\u00bb":22,"z":32,"y":25,"x":22,"w":22,"v":14,"u":36,"t":11,"s":45,"r":34,"q":43,"p":34,"o":44,"n":34,"m":34,"j":7,"i":7,"g":49,"f":11,"e":48,"d":43,"c":52,"a":43,"\\":-7,"W":-7,"V":-7,"T":-14,"S":7,"Q":22,"O":14,"M":14,"J":6,"G":17,"C":12,"A":36,"@":38,";":32,":":32,"\/":61,".":72,"-":36,",":72}},{"d":"170,127v-83,-90,-130,-206,-130,-329v0,-121,52,-237,130,-316r50,0v-60,62,-126,172,-126,316v0,134,47,239,126,329r-50,0","k":{"y":-18,"j":-43,"J":-43}},{"d":"171,9v-48,0,-91,-13,-114,-27r0,-500r52,0r0,200v20,-21,54,-36,87,-36v94,0,149,73,149,180v0,105,-73,183,-174,183xm171,-37v78,0,118,-66,118,-136v0,-73,-28,-134,-103,-134v-29,0,-61,17,-77,34r0,225v14,6,35,11,62,11","w":373,"k":{"\\":22,"\/":22,".":7,",":7}},{"d":"69,0r0,-480r56,0r0,432r189,0r0,48r-245,0","w":340,"k":{"y":25,"x":7,"w":22,"v":32,"u":11,"t":14,"s":7,"q":7,"o":11,"j":7,"i":7,"g":7,"f":7,"e":11,"d":12,"c":11,"\\":22,"Y":45,"W":36,"V":43,"U":13,"T":42,"Q":25,"O":25,"G":11,"C":22,"?":11,".":-7,"-":43,",":-7}},{"d":"199,-19r-180,-158r180,-160r30,30r-144,128r144,126","w":259,"k":{"7":-14,"2":-14}},{"d":"78,-139v0,-69,-5,-98,53,-132v38,-23,68,-42,68,-92v0,-79,-86,-95,-147,-64r-20,-42v26,-13,55,-19,82,-19v93,0,142,51,142,122v0,76,-55,110,-91,129v-42,22,-36,47,-36,98r-51,0xm104,6v-22,0,-41,-18,-41,-41v0,-22,19,-41,41,-41v22,0,41,19,41,41v0,23,-19,41,-41,41","w":291},{"d":"157,9v-73,0,-102,-48,-102,-108r0,-247r52,0r0,237v0,43,15,70,62,70v53,0,93,-53,100,-63r0,-244r52,0v3,111,-7,249,7,346r-54,0v-1,-9,-4,-34,-5,-51v-16,22,-52,60,-112,60","w":380,"k":{"\\":22,"\/":11}},{"d":"278,-17v0,116,-121,168,-243,149r8,-44v82,14,179,-19,179,-98v0,-73,-57,-99,-139,-99r0,-40v53,-1,124,-39,124,-99v0,-37,-24,-60,-68,-60v-32,0,-58,13,-85,37r-27,-34v27,-29,70,-49,114,-49v79,0,122,48,122,101v0,57,-53,104,-97,115v59,9,112,55,112,121","w":308,"k":{"8":7,"6":-4,"3":4,"2":-7,"\/":-14,"'":7,"%":7,"\"":7}},{"d":"30,0r0,-33r176,-270r-166,0r0,-43r230,0r0,36r-176,268r179,0r0,42r-243,0","w":304,"k":{"w":-4,"v":-4,"o":4,"k":4,"g":12,"e":7,"d":7,"c":7,"\\":14,".":4,"-":7,",":4}},{"d":"18,0r152,-248r-144,-232r64,0r116,186r109,-186r59,0r-140,232r155,248r-64,0r-127,-203r-121,203r-59,0","w":406,"k":{"\u00bb":7,"y":14,"w":7,"v":7,"u":7,"t":7,"q":7,"o":14,"j":7,"g":18,"f":7,"e":14,"d":14,"c":14,"a":4,"Q":22,"O":18,"G":18,"C":9,"@":7,"-":29}},{"d":"60,0r0,-518r53,0r0,518r-53,0","w":173,"k":{"p":7,"l":-6,"g":4}},{"d":"234,116r-229,-634r50,0r229,634r-50,0","w":289,"k":{"z":4,"x":7,"w":29,"v":36,"u":18,"t":14,"s":11,"r":7,"q":7,"o":11,"n":7,"m":7,"l":11,"k":7,"j":-36,"i":11,"h":7,"f":14,"e":11,"d":11,"c":11,"b":7,"Y":36,"W":36,"V":36,"U":29,"T":29,"Q":29,"O":29,"J":-43,"G":22,"C":29}},{"d":"69,0r0,-480r246,0r0,48r-190,0r0,154r167,0r0,48r-167,0r0,182r195,0r0,48r-251,0","w":362,"k":{"\u00bb":-7,"z":4,"y":7,"w":11,"v":14,"u":11,"r":4,"q":4,"p":4,"o":7,"n":4,"m":4,"i":4,"g":7,"e":4,"d":4,"c":11,"\\":-14,"S":-4}},{"d":"266,66v-148,0,-237,-108,-237,-239v0,-142,110,-273,261,-273v153,0,235,121,235,216v0,91,-52,170,-125,170v-49,0,-74,-35,-77,-80v-19,47,-57,80,-101,80v-44,0,-67,-42,-67,-83v0,-92,50,-191,152,-191v30,0,64,10,85,15r-28,169v0,27,16,50,38,50v48,0,82,-58,82,-125v0,-105,-87,-181,-194,-181v-109,0,-214,104,-214,231v0,114,73,200,198,200v42,0,84,-11,107,-21r16,37v-27,11,-76,25,-131,25xm235,-104v61,-2,95,-116,108,-186v-85,-32,-135,49,-136,140v0,21,8,46,28,46","w":550,"k":{"z":4,"x":7,"a":4,"Z":13,"Y":25,"X":14,"W":6,"V":17,"T":25,"S":17,"A":14}},{"d":"69,0r0,-480v135,-3,284,-12,284,120v0,57,-35,91,-86,107v59,10,107,52,107,118v0,98,-73,135,-180,135r-125,0xm125,-47r67,0v85,0,123,-26,123,-86v0,-58,-30,-95,-118,-95r-72,0r0,181xm125,-274v88,4,179,-2,170,-82v7,-76,-85,-81,-170,-77r0,159","w":411,"k":{"z":7,"y":7,"x":7,"w":7,"v":7,"j":4,"i":7,"g":6,"e":4,"Z":6,"Y":12,"X":9,"W":9,"V":11,"T":12,"A":12,"\/":14}},{"d":"276,9v-152,0,-238,-122,-238,-250v0,-130,88,-247,241,-247v63,0,113,15,152,45r-30,41v-37,-30,-73,-39,-123,-39v-125,0,-181,95,-181,198v0,104,56,204,181,204v53,0,95,-11,119,-29r0,-135r-103,0r0,-48r159,0r0,210v-36,30,-99,50,-177,50","w":509,"k":{"z":7,"y":14,"x":11,"w":11,"v":13,"u":7,"r":4,"p":4,"n":4,"m":4,"\\":7,"Z":7,"Y":14,"X":4,"W":11,"V":14,"U":4,"T":14,"A":4,"\/":14}},{"d":"328,0r-201,-250r193,-230r65,0r-193,227r206,253r-70,0xm69,0r0,-480r56,0r0,480r-56,0","w":409,"k":{"y":22,"w":13,"v":14,"u":18,"t":14,"s":11,"r":7,"q":13,"p":7,"o":14,"n":7,"m":7,"j":4,"i":12,"g":14,"f":7,"e":18,"d":13,"c":12,"a":7,"\\":-14,"Q":22,"O":22,"G":18,"C":24,"@":7,"-":36}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+155-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);})("zCR$1TwYaEu|z0#5STJ9:C:uoGw$RTu|oGp9aE{dR?_e8sYO8qnt12pl:!S,&T?dUE#]1?{Tl#Y]a282od$Loq(xUC(}?9?>Q({rlo{4%0#@oq(xUCJO?oJ2oq(xUCpO?#N|{2{_c$jI0!NJCq:pzbUw%,@{l&(?Eo8Ra1cSQ4n]O2g#TdHBXLe7|>x;9sY$G~[}t5_ur-x>bopx,&jeo0:$S2gXS9cL,#;$U!I]UC]g@($aQYn5pJ7&@9RRzCpU,!u$U~B81J;c{(I0{YeObdwx1C#Yz0:Ozl;B,&jec!$Obdje1!$xbT;#1TSYa0;d,E:|RO}d1q#xaqUuQ~Y5aE8Hb$[H,sB~S~ScbOg-z!_tU&:~o0[xo0[xo0[;4C#|a~p#RE;cbTw>1o;~S~ScbT#|a~p#RE;cbTw>1lggb9}YRowYzC;>8GJYaEu|bT]>c~{|8E$#zl#T1~:H%Gg_1!eLzGgBR$72EG#So&$xEG#S4lgHzljn")}catch(e){}delete _cufon_bridge_;return f})({"w":222,"face":{"font-family":"Kievit","font-weight":400,"font-stretch":"normal","units-per-em":"720","panose-1":"2 0 5 3 4 0 0 2 0 4","ascent":"547","descent":"-173","x-height":"9","bbox":"-23 -540 614 180","underline-thickness":"14.4","underline-position":"-81.36","stemh":"45","stemv":"56","unicode-range":"U+0020-U+00E9"}}));

Cufon.registerFont((function(f){_cufon_bridge_={p:[{"d":"190,9v-117,0,-163,-99,-163,-182v0,-82,44,-182,162,-182v117,0,167,98,167,181v0,82,-48,183,-166,183xm192,-42v68,0,99,-58,99,-131v0,-72,-35,-132,-103,-132v-69,0,-96,58,-96,131v0,73,31,132,100,132","w":383,"k":{"z":4,"y":4,"x":12,"v":8,"f":4,"\\":22,"\/":22,".":7,",":7}},{"d":"58,0r0,-518r62,0r0,518r-62,0","w":178,"k":{"p":6,"l":-6,"g":4}},{"d":"85,6v-27,0,-48,-21,-48,-48v0,-26,21,-47,48,-47v27,0,47,21,47,47v0,27,-20,48,-47,48xm85,-257v-27,0,-48,-22,-48,-48v0,-27,21,-47,48,-47v27,0,47,20,47,47v0,26,-20,48,-47,48","w":170},{"d":"64,-19r-34,-34r141,-125r-141,-123r34,-37r181,158","w":264,"k":{"7":14,"4":30,"3":17,"2":16}},{"w":157},{"d":"67,0r0,-480r253,0r0,55r-188,0r0,145r165,0r0,54r-165,0r0,171r193,0r0,55r-258,0","w":365,"k":{"\u00bb":-6,"z":4,"y":9,"w":12,"v":15,"u":12,"r":4,"q":4,"p":4,"o":8,"n":4,"m":4,"i":4,"g":8,"e":4,"d":4,"c":11,"\\":-14,"S":-4}},{"d":"71,0r0,-299r-57,0r0,-47r57,0v-9,-108,28,-181,128,-181v37,0,57,7,63,11r-16,50v-4,-2,-21,-8,-45,-8v-61,0,-75,58,-69,128r87,0r0,47r-87,0r0,299r-61,0","w":234,"k":{"}":-42,"y":-2,"w":-6,"v":-6,"u":10,"s":6,"r":10,"q":4,"p":10,"o":5,"n":10,"m":10,"g":14,"e":17,"d":7,"c":12,"a":8,"]":-42,"\\":-44,"?":-20,"\/":27,".":32,"-":10,",":32,")":-42,"!":-4}},{"d":"37,0r66,-480r61,0r144,408r2,0v6,-23,14,-49,28,-87r116,-321r62,0r64,480r-65,0r-49,-369v-4,16,-10,36,-21,67r-107,302r-64,0r-131,-369r-2,0r-44,369r-60,0","w":617,"k":{"y":12,"w":8,"v":8,"u":7,"t":6,"s":3,"i":4,"g":4,"\\":7,"Y":16,"W":8,"V":9,"U":4,"T":8,"S":3,"Q":4,"O":4,"G":7,"C":11,"?":6,"-":6}},{"d":"76,-143v-1,-68,-2,-99,53,-131v37,-22,65,-40,65,-87v0,-76,-87,-91,-144,-59r-22,-47v26,-14,57,-21,89,-21v94,0,142,52,142,122v0,73,-51,107,-86,126v-41,23,-40,45,-39,97r-58,0xm107,6v-25,0,-46,-20,-46,-45v0,-24,21,-44,46,-44v24,0,44,20,44,44v0,25,-20,45,-44,45","w":293},{"d":"279,-30v0,106,-113,186,-249,160r11,-50v81,16,174,-20,174,-107v0,-92,-77,-111,-167,-101r15,-218r208,0r0,48r-153,0r-7,119v116,0,168,68,168,149","w":307,"k":{"7":-7,"4":-6,"2":-7,"0":4,"\/":-14,"-":14,"+":14}},{"d":"165,9v-63,0,-91,-35,-91,-95r0,-213r-57,0r0,-47r57,0r0,-100r61,0r0,100r86,0r0,47r-86,0r0,205v0,35,9,51,39,51v22,0,41,-11,47,-15r19,46v-11,7,-36,21,-75,21","w":256,"k":{"w":-6,"v":-6,"u":3,"g":12,"f":4,"e":4,"c":4,"a":-6,"\\":14,".":-7,"-":13,",":-7}},{"d":"171,9v-84,0,-144,-66,-144,-182v0,-146,136,-229,241,-153r0,-192r60,0r0,442v0,27,6,57,10,76r-62,0v-2,-7,-5,-27,-6,-40v-24,30,-57,49,-99,49xm185,-45v30,0,62,-17,83,-45r0,-184v-21,-19,-46,-30,-79,-30v-63,0,-96,54,-96,130v0,76,26,129,92,129","w":381,"k":{"g":3,"\/":6}},{"d":"189,9v-104,0,-162,-85,-162,-183v0,-118,75,-181,165,-181v57,0,88,20,105,33r-26,45v-18,-13,-39,-28,-79,-28v-68,0,-100,57,-100,130v0,72,31,133,101,133v42,0,73,-20,83,-28r23,45v-14,12,-49,34,-110,34","w":319,"k":{"\u00bb":-9,"}":-1,"z":-4,"y":-4,"w":-4,"v":-4,"t":-4,"o":4,"f":-8,"a":-4,"]":-1,"\\":6,"?":-1,";":-7,":":-7,".":-3,",":-4,")":-1,"!":-4}},{"d":"17,0r152,-248r-144,-232r74,0r111,179r105,-179r67,0r-140,232r155,248r-74,0r-122,-196r-116,196r-68,0","w":414,"k":{"\u00bb":6,"y":17,"w":10,"v":10,"u":9,"t":9,"q":9,"o":16,"j":7,"g":19,"f":9,"e":16,"d":15,"c":16,"a":5,"Q":22,"O":19,"G":19,"C":12,"@":9,"-":31}},{"d":"18,116r0,-47r93,0r0,-541r-93,0r0,-46r152,0r0,634r-152,0","w":225},{"d":"67,0r0,-480r119,0v189,0,272,96,272,234v0,138,-84,246,-276,246r-115,0xm132,-53v161,12,258,-45,258,-191v0,-144,-95,-192,-258,-182r0,373","w":492,"k":{"z":6,"x":8,"i":7,"a":5,"Z":12,"Y":15,"X":14,"W":7,"V":12,"T":14,"A":24,"\/":24,".":15,",":15}},{"d":"253,9v-132,0,-190,-75,-190,-190r0,-299r65,0r0,292v0,96,39,141,126,141v84,0,123,-54,123,-132r0,-301r60,0r0,295v0,120,-58,194,-184,194","w":500,"k":{"z":8,"y":8,"x":8,"w":8,"v":8,"u":8,"t":8,"s":8,"r":8,"p":8,"o":8,"n":8,"m":8,"l":4,"j":11,"i":8,"g":11,"e":8,"d":7,"c":8,"a":9,"S":10,"Q":4,"O":4,"M":4,"J":5,"G":3,"A":14,"?":3,"\/":39,".":14,",":14,"!":3}},{"d":"67,0r0,-480r127,0v98,0,172,48,172,142v0,114,-98,159,-234,149r0,189r-65,0xm132,-243v94,6,168,-12,168,-94v0,-53,-30,-89,-111,-89r-57,0r0,183","w":397,"k":{"u":11,"s":6,"r":4,"q":13,"p":4,"o":14,"n":4,"m":4,"i":27,"g":7,"e":20,"d":16,"c":17,"a":8,"\\":-6,"Z":14,"X":10,"V":4,"M":17,"A":47,"@":7,"\/":57,".":79,"-":13,",":79}},{"d":"173,171v-81,0,-142,-28,-142,-96v0,-39,24,-70,59,-89v-45,-17,-36,-91,5,-108v-39,-22,-61,-60,-61,-106v0,-91,99,-151,197,-118r115,0r0,45r-52,0v68,97,-18,228,-156,195v-39,24,-21,54,32,54v75,0,177,-1,177,106v0,72,-80,117,-174,117xm176,125v66,0,109,-27,109,-67v0,-73,-93,-46,-151,-59v-64,38,-63,126,42,126xm176,-148v50,0,80,-33,80,-80v0,-47,-30,-80,-80,-80v-50,0,-80,33,-80,80v0,47,30,80,80,80","w":367,"k":{"y":-7,"u":3,"t":-6,"j":-16,"g":4,"f":-4,"\\":35,"?":10,"\/":-8,".":9,"-":11,",":9,"!":3}},{"d":"197,0r-185,-480r70,0r119,322r29,84r144,-406r64,0r-178,480r-63,0","w":450,"k":{"\u00bb":15,"z":19,"y":9,"x":16,"w":8,"v":9,"u":23,"t":2,"s":30,"r":23,"q":30,"p":23,"o":35,"n":23,"m":23,"j":14,"i":9,"g":37,"f":7,"e":40,"d":34,"c":40,"a":28,"\\":-7,"Y":-8,"X":-6,"W":-7,"T":-12,"Q":12,"O":12,"M":9,"J":5,"G":14,"C":8,"A":24,"@":24,"?":-2,";":23,":":23,"\/":50,".":66,"-":30,",":66,"!":3}},{"d":"48,134r-12,-50v124,0,225,-62,236,-180v-96,78,-243,18,-243,-110v0,-84,66,-149,155,-149v118,0,157,109,157,205v0,171,-107,284,-293,284xm181,-112v35,0,70,-9,95,-31v6,-90,-23,-162,-95,-162v-47,0,-87,38,-87,98v0,55,28,95,87,95","w":372,"k":{"3":14,"\/":8,"'":16,"#":-7,"\"":16}},{"d":"202,-389r-98,-92r88,0r64,92r-54,0","w":360},{"d":"140,-167r173,0r-85,-238r-2,0v-20,71,-60,166,-86,238xm14,0r184,-480r63,0r185,480r-71,0r-42,-113r-213,0r-41,113r-65,0","w":458,"k":{"y":24,"w":19,"v":17,"u":4,"t":13,"o":2,"i":6,"g":9,"c":5,"\\":31,"Z":-3,"Y":37,"W":19,"V":24,"U":11,"T":30,"Q":15,"O":15,"G":12,"C":17,".":-6,"-":15,",":-6}},{"d":"108,-230r-39,-28r61,-80r-97,-30r16,-45r94,34r-3,-101r52,0r-3,101r95,-34r16,45r-98,30r62,80r-39,28r-59,-85","w":332},{"d":"67,0r0,-480v137,-2,292,-15,292,120v0,59,-34,92,-85,108v58,10,106,51,106,117v0,98,-74,135,-182,135r-131,0xm132,-53r65,0v79,0,115,-24,115,-82v0,-55,-29,-89,-111,-89r-69,0r0,171xm132,-275v84,4,161,-2,161,-79v0,-72,-81,-77,-161,-73r0,152","w":416,"k":{"z":7,"y":7,"x":8,"w":6,"v":7,"j":4,"i":7,"g":6,"e":3,"Z":5,"Y":12,"X":9,"W":8,"V":10,"T":11,"A":11,"\/":14}},{"d":"185,9v-100,0,-148,-61,-148,-126v0,-50,34,-98,98,-134v-63,-37,-85,-75,-85,-118v0,-71,63,-119,134,-119v90,0,139,52,139,116v0,45,-31,81,-92,116v69,39,102,82,102,135v0,79,-62,130,-148,130xm186,-42v55,0,84,-37,84,-80v0,-33,-23,-66,-93,-103v-54,35,-78,66,-78,104v0,45,34,79,87,79xm188,-282v50,-30,73,-60,73,-87v0,-38,-26,-69,-73,-69v-45,0,-75,29,-75,69v0,29,19,55,75,87","w":371,"k":{"3":24,"2":11,"1":7,"\/":29,"%":14}},{"d":"120,42v7,91,-58,141,-146,119r11,-51v46,14,73,-13,73,-78r0,-378r62,0r0,388xm89,-408v-24,0,-44,-19,-44,-42v0,-24,20,-42,44,-42v24,0,42,18,42,42v0,23,-18,42,-42,42","w":177},{"d":"33,0r0,-45r254,-381r-242,0r0,-54r319,0r0,43r-257,384r265,0r0,53r-339,0","w":405,"k":{"y":18,"w":21,"v":16,"u":12,"t":10,"s":7,"q":11,"o":17,"j":3,"i":6,"g":14,"f":6,"e":14,"d":9,"c":12,"a":3,"T":3,"Q":13,"O":12,"M":5,"G":15,"C":21,"A":3,"?":-1,"-":22}},{"d":"125,89r0,-80v-44,-4,-76,-19,-98,-35r26,-46v31,36,168,49,167,-15v0,-37,-51,-49,-100,-71v-44,-19,-85,-45,-85,-100v0,-48,35,-86,90,-95r0,-75r57,0r0,74v37,4,67,18,85,32r-27,44v-29,-30,-147,-46,-146,17v0,32,40,46,82,63v50,21,103,45,103,103v0,55,-34,92,-97,101r0,83r-57,0","k":{"7":-11}},{"d":"101,6v-25,0,-46,-20,-46,-45v0,-24,21,-44,46,-44v24,0,44,20,44,44v0,25,-20,45,-44,45xm76,-147r-13,-333r75,0r-13,333r-49,0","w":202},{"d":"92,-408v-24,0,-42,-19,-42,-42v0,-24,18,-42,42,-42v24,0,43,18,43,42v0,23,-19,42,-43,42xm61,0r0,-346r62,0r0,346r-62,0","w":184,"k":{"\/":6}},{"d":"71,0r0,-480r66,0r0,480r-66,0","w":208,"k":{"w":8,"v":8,"i":12,"g":7}},{"d":"48,-317r-18,-163r72,0r-8,163r-46,0xm150,-317r-8,-163r72,0r-17,163r-47,0","w":243,"k":{"9":8,"7":-14,"5":12,"4":76,"0":9}},{"d":"29,-40r93,-136r-93,-138r63,0r94,138r-94,136r-63,0xm163,-40r93,-136r-93,-138r63,0r95,138r-95,136r-63,0","w":351,"k":{"z":19,"y":19,"x":29,"w":12,"v":15,"f":6,"a":6,"Z":14,"Y":50,"X":29,"W":22,"V":30,"U":7,"T":49,"S":17,"A":9}},{"d":"174,9v-52,0,-96,-13,-119,-27r0,-500r61,0r0,199v19,-21,52,-36,86,-36v94,0,149,70,149,180v0,108,-75,184,-177,184xm175,-42v73,0,111,-62,111,-132v0,-71,-26,-128,-97,-128v-28,0,-59,16,-73,32r0,217v13,6,33,11,59,11","w":378,"k":{"\\":22,"\/":22,".":7,",":7}},{"d":"125,-40r-95,-136r95,-138r63,0r-93,138r93,136r-63,0xm259,-40r-94,-136r94,-138r64,0r-93,138r93,136r-64,0","w":351,"k":{"w":-1,"v":-1,"t":-1,"g":6,"Y":23,"X":6,"W":14,"V":15,"T":22,"S":-1}},{"d":"276,9v-150,0,-239,-117,-239,-248v0,-132,87,-249,237,-249v150,0,239,116,239,248v0,131,-87,249,-237,249xm274,-45v111,0,170,-90,170,-194v0,-104,-57,-195,-168,-195v-111,0,-171,90,-171,194v0,104,58,195,169,195","w":549,"k":{"z":7,"x":8,"i":7,"a":8,"\\":7,"Z":12,"Y":15,"X":19,"W":7,"V":12,"U":4,"T":11,"S":9,"M":4,"A":14,"?":7,"\/":30,".":22,",":22}},{"d":"114,0r-102,-346r66,0r71,253r77,-253r58,0r77,254r2,0r70,-254r62,0r-103,346r-55,0r-84,-262r-85,262r-54,0","w":509,"k":{"y":-6,"w":-7,"v":-7,"t":-7,"q":4,"g":7,"f":-7,"e":4,"d":4,"c":4,"\\":17,"?":6,";":-3,":":-3,"\/":24,".":34,",":34}},{"d":"140,9v-52,0,-91,-18,-113,-33r26,-45v13,9,44,28,85,28v42,0,68,-16,68,-46v0,-30,-29,-43,-79,-65v-53,-23,-92,-48,-92,-106v0,-55,43,-97,114,-97v58,0,92,23,104,32r-27,44v-12,-9,-39,-26,-76,-26v-37,0,-56,17,-56,44v0,31,28,42,67,59v55,23,105,49,105,107v0,65,-48,104,-126,104","k":{"y":4,"g":6,"b":6,"a":-4,"\\":28,"\/":9,"-":15}},{"d":"19,0r0,-24v58,-48,203,-156,203,-224v1,-73,-118,-66,-154,-15r-33,-39v63,-75,252,-80,252,46v0,78,-111,163,-166,208v54,-6,139,-2,200,-3r0,51r-302,0","w":349,"k":{"<":14,"9":13,"8":14,"7":7,"5":11,"3":14,"1":7,"-":14,"+":14,"'":22,"%":20,"#":7,"\"":22}},{"d":"263,156r0,-183v-15,16,-47,36,-86,36v-94,0,-149,-72,-149,-180v0,-108,76,-184,176,-184v71,0,111,22,120,26r0,485r-61,0xm190,-45v37,0,68,-26,73,-32r0,-216v-6,-2,-24,-11,-59,-11v-73,0,-111,61,-111,131v0,71,26,128,97,128","w":380,"k":{"x":4,"w":6,"v":6,"u":6,"p":6,"l":6,"k":9,"j":-3,"h":9,"b":9,"\\":28}},{"d":"55,0r0,-518r61,0r0,324r140,-152r71,0r-141,153r147,193r-74,0r-143,-192r0,192r-61,0","w":344,"k":{"z":-4,"q":5,"o":8,"g":7,"e":9,"d":8,"c":9,"\\":7,"@":5,"?":6,"-":24}},{"d":"192,9v-116,0,-162,-106,-162,-204v0,-172,105,-293,285,-293r13,50v-130,-1,-217,66,-229,187v24,-21,62,-35,102,-35v88,0,142,57,142,143v0,84,-58,152,-151,152xm194,-42v55,0,85,-47,85,-95v0,-62,-29,-99,-88,-99v-45,0,-74,17,-95,34v-8,88,24,160,98,160","w":371,"k":{">":14,"7":10,"3":18,"2":7,"1":17,"\/":22}},{"d":"57,0r0,-346r60,0r0,52v14,-24,44,-61,92,-61v22,0,34,5,39,7r-15,57v-4,-2,-13,-6,-32,-6v-50,0,-78,55,-84,67r0,230r-60,0","w":254,"k":{"\u00bb":-6,"y":-10,"x":-6,"w":-8,"v":-8,"t":-8,"k":-3,"h":-3,"g":6,"f":-8,"e":4,"c":6,"b":-3,"?":6,";":-6,":":-6,"\/":36,".":44,"-":13,",":44}},{"d":"30,0r0,-37r171,-261r-161,0r0,-48r235,0r0,39r-171,259r174,0r0,48r-248,0","w":309,"k":{"w":-3,"v":-3,"o":4,"k":3,"g":12,"e":8,"d":7,"c":8,"\\":14,".":3,"-":7,",":4}},{"d":"87,143r-52,-26r193,-411r-216,0r0,-53r285,0r0,40","w":325,"k":{"@":4,"<":24,"8":14,"5":16,"4":58,"2":7,"\/":53,".":40,",":40}},{"d":"142,0r-131,-346r66,0r95,267r92,-267r63,0r-128,346r-57,0","w":339,"k":{"y":-7,"w":-7,"v":-7,"t":-7,"q":5,"o":8,"g":8,"f":-7,"e":5,"d":4,"c":5,"\\":17,"?":3,";":-3,":":-3,"\/":23,".":37,"-":2,",":37}},{"d":"57,158r0,-504r60,0r0,36v18,-22,51,-45,100,-45v85,0,141,67,141,181v0,109,-64,183,-154,183v-48,0,-74,-18,-87,-30r0,179r-60,0xm196,-42v63,0,96,-55,96,-131v0,-75,-28,-129,-90,-129v-45,0,-76,34,-85,46r0,183v15,14,39,31,79,31","w":385,"k":{"x":2,"v":4,"f":3,"\\":25,"\/":14,".":6,",":6}},{"d":"285,-126v-76,0,-101,-49,-155,-49v-30,0,-49,15,-64,29r-29,-38v21,-19,57,-44,98,-44v66,0,88,49,154,49v24,0,50,-13,69,-30r28,37v-25,25,-63,46,-101,46","w":422},{"d":"447,119v-67,0,-121,-27,-188,-112v-140,-7,-222,-119,-222,-246v0,-132,87,-249,237,-249v150,0,239,116,239,248v0,113,-66,217,-180,242v34,44,63,65,116,65v28,0,49,-13,58,-20r23,47v-15,12,-44,25,-83,25xm274,-45v111,0,170,-90,170,-194v0,-104,-57,-195,-168,-195v-111,0,-171,90,-171,194v0,104,58,195,169,195","w":549,"k":{"x":8,"j":-2,"a":4,"\\":7,"Z":14,"Y":22,"X":20,"W":4,"V":12,"U":4,"T":11,"S":6,"M":4,"J":-27,"A":14,"?":7,".":22,",":22}},{"d":"195,9v-111,0,-168,-81,-168,-185v0,-103,66,-179,159,-179v97,-1,148,75,138,185r-231,0v2,69,31,128,105,128v48,0,79,-20,94,-29r24,44v-19,12,-57,36,-121,36xm95,-217r169,0v-1,-47,-22,-88,-79,-88v-53,0,-81,36,-90,88","w":357,"k":{"\u00bb":-6,"x":5,"f":-3,"\\":29,"\/":8}},{"d":"130,9v-58,0,-100,-37,-100,-95v0,-96,105,-121,200,-119v4,-60,-8,-98,-67,-98v-33,0,-60,12,-90,37r-31,-41v32,-30,74,-48,126,-48v80,0,122,36,122,117v0,75,-5,181,9,238r-61,0v-3,-9,-4,-30,-5,-41v-22,28,-60,50,-103,50xm94,-88v8,79,109,43,136,0r0,-75v-75,-2,-142,16,-136,75","w":344,"k":{"y":4,"v":4,"u":3,"t":3,"g":3,"\\":36,"?":6}},{"d":"2,126v60,-62,125,-171,125,-316v0,-137,-50,-243,-125,-328r59,0v78,85,130,199,130,326v0,128,-55,243,-130,318r-59,0","w":228},{"d":"45,-317r-13,-163r74,0r-13,163r-48,0","w":138,"k":{"9":8,"7":-14,"5":12,"4":76,"0":9}},{"d":"15,0r120,-181r-113,-165r69,0r80,118r74,-118r63,0r-108,162r125,184r-69,0r-93,-138r-85,138r-63,0","w":339,"k":{"x":-3,"q":9,"o":12,"g":9,"f":5,"e":13,"d":8,"c":11,"\\":26,"@":6,"\/":6,"-":23}},{"d":"77,180r0,-720r51,0r0,720r-51,0","w":204},{"d":"18,116r0,-47r47,0v33,0,40,-21,40,-55r0,-130v-1,-54,32,-75,71,-88v-42,-12,-71,-39,-71,-93r0,-121v0,-35,-6,-54,-39,-54r-48,0r0,-46v79,-3,146,-3,146,80r0,132v0,47,30,77,81,78r0,46v-50,1,-81,29,-81,78r0,141v-3,83,-67,82,-146,79","w":264},{"d":"55,0r0,-518r61,0r0,220v15,-19,52,-57,112,-57v73,0,102,49,102,109r0,246r-61,0r0,-234v0,-42,-15,-68,-59,-68v-50,0,-87,50,-94,60r0,242r-61,0","w":383,"k":{"y":4,"v":7,"\\":28,"\/":6}},{"d":"284,-17v0,116,-125,168,-251,149r9,-51v78,16,177,-15,177,-93v0,-69,-55,-94,-135,-94r0,-45v53,-1,120,-37,120,-95v0,-35,-23,-57,-66,-57v-32,0,-58,13,-83,36r-31,-40v27,-28,72,-48,120,-48v81,0,125,48,125,102v0,58,-53,103,-96,115v58,8,111,54,111,121","w":312,"k":{"8":7,"6":-4,"3":4,"2":-8,"\/":-14,"'":8,"%":7,"\"":8}},{"d":"270,66v-150,0,-240,-106,-240,-239v0,-142,111,-275,264,-275v156,0,238,119,238,218v0,93,-54,171,-130,171v-52,0,-70,-37,-77,-77v-19,44,-55,76,-99,76v-45,0,-69,-41,-69,-83v0,-94,51,-192,153,-192v32,0,67,10,89,16r-19,104v-11,51,-20,111,27,111v46,0,80,-54,80,-121v0,-106,-84,-179,-193,-179v-109,0,-212,102,-212,229v0,114,71,197,196,197v42,0,83,-11,106,-21r18,41v-27,11,-77,24,-132,24xm242,-108v58,-1,90,-107,102,-179v-81,-31,-129,47,-129,135v0,20,8,44,27,44","w":557,"k":{"z":3,"x":8,"w":-1,"f":-1,"a":4,"Z":12,"Y":25,"X":15,"W":6,"V":17,"T":22,"S":14,"C":-1,"A":14}},{"d":"129,-150v-74,0,-106,-54,-106,-102v0,-48,33,-103,107,-103v73,0,105,53,105,102v0,48,-33,103,-106,103xm130,-189v38,0,54,-28,54,-63v0,-35,-18,-64,-55,-64v-38,0,-55,28,-55,63v0,35,18,64,56,64xm425,9v-73,0,-105,-55,-105,-103v0,-48,33,-103,106,-103v74,0,105,53,105,102v0,48,-32,104,-106,104xm426,-30v38,0,54,-29,54,-64v0,-35,-17,-64,-55,-64v-37,0,-54,28,-54,63v0,35,18,65,55,65xm149,0r208,-347r52,0r-207,347r-53,0","w":554},{"d":"156,-389r64,-92r88,0r-98,92r-54,0xm195,9v-111,0,-168,-81,-168,-185v0,-103,66,-179,159,-179v97,-1,148,75,138,185r-231,0v2,69,31,128,105,128v48,0,79,-20,94,-29r24,44v-19,12,-57,36,-121,36xm95,-217r169,0v-1,-47,-22,-88,-79,-88v-53,0,-81,36,-90,88","w":357},{"d":"179,-15r0,-151r-149,0r0,-50r149,0r0,-143r56,0r0,143r146,0r0,50r-146,0r0,151r-56,0","w":411,"k":{"7":7,"4":20,"3":14,"2":14}},{"d":"246,116v-79,3,-146,3,-146,-80r0,-140v0,-47,-30,-77,-80,-78r0,-46v50,-1,80,-29,80,-78r0,-133v3,-83,68,-82,146,-79r0,46r-47,0v-33,0,-40,22,-40,56r0,122v1,54,-31,75,-70,88v42,12,70,38,70,92r0,130v-6,57,36,55,87,53r0,47","w":264,"k":{"y":-17,"j":-43,"T":-1,"J":-45}},{"d":"42,99v18,-25,29,-54,29,-75v0,-29,-34,-33,-34,-69v0,-24,19,-43,44,-43v28,0,51,22,51,61v0,40,-18,88,-49,126r-41,0","w":167},{"d":"278,9v-154,0,-241,-121,-241,-250v0,-130,89,-247,245,-247v65,0,114,14,152,44r-32,49v-36,-28,-72,-39,-122,-39v-120,0,-175,90,-175,191v0,102,54,197,174,197v50,0,90,-10,112,-27r0,-127r-100,0r0,-53r165,0r0,213v-36,29,-97,49,-178,49","w":509,"k":{"z":6,"y":15,"x":11,"w":11,"v":14,"u":6,"r":3,"p":3,"n":3,"m":3,"\\":7,"Z":6,"Y":14,"X":4,"W":11,"V":14,"U":4,"T":14,"A":3,"\/":14}},{"d":"145,0r-131,-480r71,0r77,307v11,37,12,83,19,84v1,-3,11,-49,21,-85r87,-306r65,0r86,304v13,39,15,85,22,86v20,-120,66,-271,95,-390r64,0r-132,480r-60,0r-88,-312v-12,-38,-18,-90,-22,-92v-1,3,-11,52,-23,92r-92,312r-59,0","w":635,"k":{"\u00bb":14,"z":12,"y":8,"x":9,"w":4,"v":8,"u":16,"s":16,"r":19,"q":17,"p":19,"o":26,"n":19,"m":19,"j":10,"i":8,"g":26,"e":27,"d":23,"c":33,"a":24,"\\":-8,"Y":-7,"W":-8,"V":-7,"T":-14,"Q":4,"O":7,"M":8,"G":8,"C":4,"A":31,"@":16,"?":-1,";":13,":":13,"\/":46,".":58,"-":22,",":58}},{"d":"205,9v-124,0,-178,-98,-178,-182v0,-83,56,-182,180,-182v123,0,178,96,178,181v0,84,-57,183,-180,183xm207,-42v75,0,113,-58,113,-131v0,-73,-40,-131,-115,-131v-76,0,-112,57,-112,130v0,73,38,132,114,132","w":412,"k":{"7":4,"4":14,"3":7,"\/":23,"'":9,"#":-7,"\"":9}},{"d":"57,0r0,-346r60,0r0,48v30,-37,69,-57,113,-57v73,0,102,49,102,109r0,246r-61,0r0,-234v0,-42,-15,-68,-59,-68v-37,0,-72,29,-95,60r0,242r-60,0","w":385,"k":{"y":4,"w":4,"v":4,"\\":28,"\/":6}},{"d":"168,126v-78,-85,-131,-200,-131,-328v0,-126,56,-241,131,-316r58,0v-58,60,-124,170,-124,315v0,137,48,242,124,329r-58,0","w":227,"k":{"y":-19,"j":-44,"J":-45}},{"d":"149,0r0,-425r-135,0r0,-55r336,0r0,55r-135,0r0,425r-66,0","w":363,"k":{"\u00bb":22,"}":-1,"z":43,"y":45,"x":42,"w":42,"v":33,"u":42,"t":14,"s":46,"r":35,"q":47,"p":35,"o":48,"n":35,"m":35,"j":6,"i":14,"g":49,"f":13,"e":51,"d":44,"c":51,"a":55,"]":-1,"\\":-22,"Y":-14,"X":-9,"W":-14,"V":-12,"T":-12,"S":3,"Q":11,"O":11,"M":8,"G":13,"C":9,"A":30,"@":30,"?":-10,";":35,":":35,"\/":49,".":58,"-":37,",":58}},{"w":157},{"d":"71,-73r15,-102r-69,0r7,-47r70,0r11,-77r-69,0r8,-47r68,0r14,-93r47,0r-15,93r70,0r15,-93r46,0r-13,93r67,0r-7,47r-67,0r-12,77r68,0r-8,47r-67,0r-15,102r-47,0r15,-102r-70,0r-15,102r-47,0xm140,-222r70,0r12,-77r-71,0","w":360,"k":{"9":4,"8":7,"7":-27,"4":55,"1":-14,"0":7}},{"d":"42,13r179,-497r59,0r-180,497r-58,0","k":{"z":22,"y":22,"x":28,"w":17,"v":14,"u":38,"t":10,"s":38,"r":37,"q":37,"p":37,"o":37,"n":37,"m":37,"g":46,"f":3,"e":35,"d":35,"c":48,"a":44,"Y":-7,"W":-7,"V":-7,"T":-14,"Q":14,"O":14,"M":11,"G":17,"C":14,"A":37,"9":44,"8":21,"6":23,"5":52,"4":95,"3":30,"2":33,"1":17,"0":45}},{"d":"55,116r0,-634r152,0r0,46r-93,0r0,541r93,0r0,47r-152,0","w":225,"k":{"y":-17,"j":-43,"T":-1,"J":-45}},{"d":"84,6v-27,0,-48,-20,-48,-47v0,-26,21,-47,48,-47v27,0,48,21,48,47v0,27,-21,47,-48,47","w":167},{"d":"233,116r-229,-634r59,0r229,634r-59,0","k":{"z":3,"y":-1,"x":7,"w":28,"v":36,"u":17,"t":17,"s":9,"r":6,"q":9,"o":12,"n":6,"m":6,"l":10,"k":6,"j":-38,"i":9,"h":6,"g":-1,"f":15,"e":12,"d":12,"c":11,"b":7,"Y":40,"W":37,"V":40,"U":29,"T":30,"Q":29,"O":29,"J":-45,"G":22,"C":29}},{"d":"187,45v-23,79,-79,138,-181,118r9,-50v60,10,98,-15,114,-73r16,-43r-131,-343r68,0r94,266r3,0r90,-266r64,0","w":344,"k":{"y":-6,"w":-7,"v":-7,"t":-6,"q":9,"p":3,"o":4,"l":4,"k":6,"h":6,"g":8,"f":-7,"e":5,"d":5,"b":6,"\\":21,"?":7,";":-3,":":-3,"\/":37,".":45,",":45,"!":3}},{"d":"38,-180r0,-52r149,0r0,52r-149,0","w":225,"k":{"z":6,"x":16,"s":-3,"a":5,"Y":38,"X":31,"W":22,"V":30,"T":36,"S":20,"M":6,"A":15,"4":41,"3":14,"2":14}},{"d":"245,127r0,-127r-224,0r0,-40r233,-306r51,0r0,296r79,0r0,50r-79,0r0,127r-60,0xm89,-50r156,0r0,-204r-2,0","w":408,"k":{"=":14,"<":22,"9":9,"5":7,"3":22,"2":4,"1":22,"0":14,"-":29,"+":21,"'":24,"%":36,"#":29,"\"":24}},{"d":"67,0r0,-480r65,0r0,201r260,0r0,-201r66,0r0,480r-66,0r0,-225r-260,0r0,225r-65,0","w":524,"k":{"i":7}},{"d":"66,0r0,-480r64,0r216,310v25,35,37,61,47,73v-7,-110,-1,-264,-3,-383r60,0r0,480r-60,0r-227,-327v-19,-24,-27,-53,-40,-64v7,119,1,265,3,391r-60,0","w":516,"k":{"u":7}},{"d":"168,9v-74,0,-120,-32,-138,-49r31,-46v11,10,46,41,109,41v57,0,94,-37,94,-77v0,-55,-55,-77,-110,-104v-59,-29,-110,-62,-110,-138v0,-79,66,-124,142,-124v73,0,112,26,129,39r-30,47v-17,-13,-50,-32,-98,-32v-46,0,-80,26,-80,68v0,46,39,66,87,88v63,30,134,63,134,155v0,78,-64,132,-160,132","w":361,"k":{"z":4,"y":12,"x":6,"w":8,"v":9,"Y":5,"W":4,"V":4,"U":4,"@":-5,"\/":8,"-":6}},{"d":"42,-207r147,-273r42,0r147,273r-55,0r-113,-208r-112,208r-56,0","w":420},{"d":"189,9v-103,0,-162,-59,-162,-132v0,-60,31,-97,99,-135v-38,-43,-58,-77,-58,-119v0,-68,54,-111,130,-111v71,0,121,42,121,102v0,53,-34,90,-107,132r118,127v18,-30,32,-65,39,-105r56,10v-9,51,-29,99,-57,136r80,86r-79,0r-41,-44v-39,33,-86,53,-139,53xm181,-287v55,-32,78,-61,78,-97v0,-30,-24,-56,-62,-56v-40,0,-65,25,-65,61v0,27,13,52,49,92xm192,-44v40,0,73,-14,100,-38r-133,-141v-43,25,-68,55,-68,97v0,47,36,82,101,82","w":455},{"d":"68,0r0,-480r64,0r0,426r188,0r0,54r-252,0","w":346,"k":{"y":27,"x":8,"w":23,"v":34,"u":11,"t":17,"s":7,"q":7,"o":11,"j":7,"i":8,"g":8,"f":9,"e":12,"d":12,"c":12,"\\":24,"Y":47,"W":35,"V":44,"U":14,"T":42,"Q":25,"O":25,"G":12,"C":21,"?":10,".":-6,"-":41,",":-6}},{"d":"116,0r0,-291r-81,27r-13,-50v50,-12,87,-37,154,-32r0,346r-60,0","w":239,"k":{"'":7,"\"":7}},{"d":"57,0r0,-346r60,0r0,47v16,-19,47,-56,106,-56v50,0,77,26,89,58v27,-30,61,-58,111,-58v71,0,98,47,98,109r0,246r-61,0r0,-234v0,-40,-12,-68,-54,-68v-40,0,-70,32,-86,52r0,250r-62,0r0,-234v0,-42,-14,-68,-52,-68v-48,0,-82,49,-89,59r0,243r-60,0","w":575,"k":{"w":4,"v":4,"\\":28,"\/":6}},{"d":"67,0r0,-480r65,0r0,229r188,-229r75,0r-190,226r203,254r-80,0r-196,-248r0,248r-65,0","w":418,"k":{"y":24,"w":15,"v":17,"u":19,"t":16,"s":11,"r":8,"q":14,"p":7,"o":16,"n":8,"m":8,"j":4,"i":12,"g":15,"f":8,"e":19,"d":14,"c":14,"a":8,"\\":-14,"Q":23,"O":23,"G":19,"C":24,"@":9,"?":-1,"-":35}},{"d":"-1,118r0,-50r291,0r0,50r-291,0","w":289},{"d":"156,9v-74,0,-103,-49,-103,-110r0,-245r61,0r0,234v0,42,14,67,59,67v49,0,86,-50,93,-60r0,-241r62,0r0,268v0,32,3,63,7,78r-61,0v-2,-9,-5,-33,-6,-50v-17,22,-53,59,-112,59","w":384,"k":{"\\":21,"\/":9}},{"d":"200,-19r-181,-158r181,-161r34,34r-140,125r140,123","w":264,"k":{"7":-14,"2":-14}},{"d":"44,99v17,-24,29,-53,29,-75v0,-29,-33,-33,-33,-69v0,-24,19,-43,44,-43v28,0,51,22,51,61v0,42,-21,90,-50,126r-41,0xm85,-257v-27,0,-48,-22,-48,-48v0,-27,21,-47,48,-47v27,0,47,20,47,47v0,26,-20,48,-47,48","w":170},{"d":"26,-105r0,-51r281,0r0,51r-281,0xm26,-226r0,-51r281,0r0,51r-281,0","w":333},{"d":"273,9v-152,0,-236,-120,-236,-250v0,-130,87,-247,237,-247v61,0,101,14,136,37r-31,48v-27,-19,-61,-31,-106,-31v-111,0,-168,90,-168,191v0,102,55,197,169,197v52,0,89,-17,116,-40r29,46v-24,23,-78,49,-146,49","w":443,"k":{"\u00bb":-1,"}":-2,"z":3,"y":19,"x":7,"w":15,"v":22,"u":4,"t":14,"q":3,"o":6,"i":3,"g":7,"e":11,"d":3,"]":-2,"\\":-7,"Z":-4,"U":4,"T":-5,"Q":15,"O":15,"G":12,"C":12,"?":-3,"-":21,")":-1}},{"d":"67,0r0,-480r256,0r0,55r-191,0r0,147r167,0r0,53r-167,0r0,225r-65,0","w":355,"k":{"z":20,"y":8,"x":22,"w":4,"v":12,"u":18,"s":8,"r":14,"q":8,"p":14,"o":9,"n":14,"m":14,"i":8,"g":11,"e":10,"d":12,"c":10,"a":15,"\\":-14,"Q":4,"O":4,"M":11,"J":2,"G":4,"C":4,"A":35,"?":-1,";":7,":":7,"\/":30,".":42,",":42}},{"d":"143,9v7,103,-74,149,-161,122r10,-55v50,15,86,-5,86,-77r0,-479r65,0r0,489","w":210,"k":{"w":7,"v":8,"i":8,"g":4}},{"d":"67,0r0,-480r137,0v102,0,162,47,162,130v0,83,-62,116,-130,128v49,47,118,160,165,222r-75,0r-95,-136v-58,-79,-54,-81,-99,-81r0,217r-65,0xm132,-268r69,0v68,0,99,-29,99,-80v0,-74,-82,-84,-168,-78r0,158","w":417,"k":{"y":8,"w":8,"v":8,"u":12,"q":5,"o":9,"j":5,"i":3,"g":12,"e":12,"d":9,"c":12,"Y":8,"W":5,"V":6,"U":8,"T":6,"Q":9,"O":9,"J":2,"@":5,"?":9,"-":22}},{"d":"172,0r0,-181r-160,-299r72,0r124,237r123,-237r63,0r-156,299r0,181r-66,0","w":405,"k":{"\u00bb":23,"z":33,"y":26,"x":24,"w":23,"v":17,"u":37,"t":12,"s":45,"r":35,"q":45,"p":35,"o":47,"n":35,"m":35,"j":7,"i":8,"g":50,"f":12,"e":51,"d":45,"c":54,"a":45,"\\":-8,"Y":-1,"W":-7,"V":-8,"T":-14,"S":8,"Q":22,"O":16,"M":16,"J":7,"G":19,"C":14,"A":37,"@":40,"?":-1,";":34,":":34,"\/":62,".":72,"-":38,",":72}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+375-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);})("5MO=Y`93D!L~5QA[(`EvVMVLzG9=O`L~zGavD!y|O$Znq:3BYG1#oBJEOc389zycq=s(yE$NO=qPq;;jNHsj!BNsD?ARVAf=gIJBq`aR(T01q!ao(2gvR!nGR|K2(|J_?!$s5.(Wku=Kg30Azu?1gM?P52nny=R1YBs?zu?1gM;1V=1}!vPRzuc79;sr?=W`TIE7.=L=oInLN3O5?AcB@|91YMA35QVB5.f+oT0nRI=B@|0nYI=1@`fAY`(3DQf|o!V~OBP|YuA1DugL^23[D!qK@=WKo:+2(2(R@Bc85IZ#gTV2zQW1zQW1zQWfkMA~D2aAO!fR@`9}Yzf2(2(R@`A~D2aAO!fR@`9}Y.0JQI;EMuVa5@g9roNy.T?$!zqODYR(^klsBHcA`|K+jXn7~}1fv:3=G2WP#[ZL_8cc@vP3Oz935Mf}qGE3D!L~@`s}R2y~q!=A5.A`Y2VKrGcZYInX5Gc+O=7H!GA(zT=1!GA(k.cK5.0l")}catch(e){}delete _cufon_bridge_;return f})({"w":295,"face":{"font-family":"Kievit Book","font-weight":500,"font-stretch":"normal","units-per-em":"720","panose-1":"2 0 5 3 4 0 0 2 0 4","ascent":"547","descent":"-173","x-height":"9","bbox":"-26 -540 621 180","underline-thickness":"14.4","underline-position":"-81.36","stemh":"50","stemv":"62","unicode-range":"U+0020-U+00E9"}}));

Cufon.registerFont((function(f){_cufon_bridge_={p:[{"d":"19,116r0,-58r90,0r0,-519r-90,0r0,-57r164,0r0,634r-164,0","w":234},{"d":"243,127r0,-127r-224,0r0,-49r234,-299r66,0r0,288r77,0r0,60r-77,0r0,127r-76,0xm102,-60r141,0r0,-182r-2,0","w":420,"k":{"=":14,"<":24,"9":11,"7":2,"6":4,"5":7,"3":22,"2":4,"1":24,"0":12,".":2,"-":29,",":2,"+":20,"'":30,"%":36,"#":29,"\"":30}},{"d":"159,5v8,113,-90,161,-182,127r13,-66v49,14,87,-2,87,-72r0,-474r82,0r0,485","w":222,"k":{"z":4,"y":4,"x":4,"w":7,"v":9,"u":4,"t":4,"s":4,"r":2,"q":2,"p":2,"o":4,"n":2,"m":2,"l":4,"k":2,"i":9,"h":2,"g":5,"e":2,"d":2,"c":2,"b":2,"a":2,"J":-2}},{"d":"27,-96r0,-62r284,0r0,62r-284,0xm27,-224r0,-60r284,0r0,60r-284,0","w":338,"k":{"3":2}},{"d":"64,0r0,-480r264,0r0,68r-183,0r0,133r161,0r0,66r-161,0r0,213r-81,0","w":360,"k":{"z":17,"y":9,"x":22,"w":6,"v":12,"u":18,"t":2,"s":9,"r":14,"q":9,"p":14,"o":9,"n":14,"m":14,"l":2,"k":2,"j":2,"i":9,"h":2,"g":11,"e":9,"d":12,"c":9,"b":2,"a":17,"\\":-14,"Q":4,"O":4,"M":11,"J":6,"G":4,"C":4,"A":35,"@":2,"?":-4,";":7,":":7,"\/":31,".":41,",":41}},{"d":"68,0r0,-290r-55,0r0,-58r55,0v-9,-108,32,-178,133,-179v43,0,66,9,73,13r-19,60v-5,-2,-22,-9,-47,-9v-55,0,-68,52,-63,115r85,0r0,58r-85,0r0,290r-77,0","w":247,"k":{"}":-39,"z":4,"x":2,"w":-4,"v":-3,"u":9,"s":6,"r":9,"q":6,"p":9,"o":7,"n":9,"m":9,"l":-2,"k":-2,"j":2,"i":2,"h":-2,"g":12,"e":17,"d":7,"c":12,"b":-2,"a":9,"]":-39,"\\":-45,"@":4,"?":-24,";":4,":":4,"\/":31,".":37,"-":9,",":37,")":-41,"!":-5}},{"d":"64,0r0,-480r130,0v189,0,273,96,273,234v0,138,-85,246,-276,246r-127,0xm145,-66v148,10,237,-40,237,-177v0,-136,-86,-181,-237,-171r0,348","w":499,"k":{"z":5,"x":9,"i":7,"a":7,"\\":4,"Z":14,"Y":16,"X":16,"W":8,"V":14,"T":13,"J":2,"A":24,"?":4,"\/":24,".":17,",":17}},{"d":"232,116r-229,-634r73,0r229,634r-73,0","w":308,"k":{"z":2,"y":-4,"x":7,"w":27,"v":36,"u":16,"t":20,"s":7,"r":5,"q":11,"o":12,"n":5,"m":5,"l":9,"k":5,"j":-42,"i":7,"h":5,"g":-4,"f":16,"e":12,"d":12,"c":11,"b":7,"Y":48,"X":2,"W":38,"V":48,"U":29,"T":31,"Q":29,"O":29,"J":-50,"G":24,"C":29}},{"d":"29,0r0,-44r163,-245r-155,0r0,-59r248,0r0,46r-163,243r165,0r0,59r-258,0","w":318,"k":{"w":-2,"o":5,"k":2,"g":12,"e":9,"d":7,"c":9,"\\":14,"@":2,".":2,"-":7,",":4}},{"d":"130,9v-58,0,-103,-37,-103,-97v0,-95,103,-124,200,-122v3,-54,-7,-84,-63,-84v-35,0,-64,13,-89,35r-36,-49v31,-28,75,-49,133,-49v86,0,131,37,131,123v1,73,-4,180,9,234r-76,0v-2,-9,-5,-29,-6,-40v-20,26,-55,49,-100,49xm104,-92v5,70,101,40,123,3r0,-70v-68,-2,-127,14,-123,67","w":352,"k":{"y":4,"v":6,"u":2,"t":2,"g":2,"\\":36,"?":5}},{"d":"48,101v17,-23,30,-52,30,-76v0,-33,-38,-36,-38,-78v0,-27,22,-47,51,-47v32,0,59,25,59,68v0,46,-23,96,-51,133r-51,0xm93,-246v-30,0,-55,-24,-55,-54v0,-30,25,-54,55,-54v30,0,55,24,55,54v0,30,-25,54,-55,54"},{"d":"96,-402v-28,0,-50,-22,-50,-49v0,-27,22,-49,50,-49v29,0,50,22,50,49v0,27,-21,49,-50,49xm58,0r0,-348r77,0r0,348r-77,0","w":192,"k":{"\\":-2,"\/":5}},{"d":"172,9v-145,0,-89,-173,-100,-299r-56,0r0,-58r56,0r0,-101r76,0r0,101r85,0r0,58r-85,0r0,185v-11,62,60,54,84,36r21,57v-13,7,-40,21,-81,21","w":265,"k":{"\u00bb":-2,"w":-4,"v":-4,"u":2,"g":12,"f":4,"e":4,"c":4,"a":-5,"\\":12,"@":4,".":-7,"-":10,",":-7}},{"d":"68,0r0,-480r82,0r0,480r-82,0","w":219,"k":{"z":4,"y":4,"x":4,"w":9,"v":9,"u":4,"t":4,"s":4,"r":2,"q":4,"p":2,"o":4,"n":2,"m":2,"l":4,"k":2,"j":4,"i":12,"h":2,"g":7,"f":2,"e":2,"d":2,"c":2,"b":2,"J":2}},{"d":"181,9v-60,0,-107,-15,-131,-28r0,-499r77,0r0,197v19,-19,51,-36,86,-36v91,0,149,67,149,181v0,113,-77,185,-181,185xm181,-53v65,0,100,-52,100,-123v0,-68,-25,-118,-87,-118v-27,0,-54,16,-67,30r0,202v12,5,30,9,54,9","w":387,"k":{"y":2,"x":4,"v":2,"\\":23,"\/":24,".":7,",":7}},{"d":"143,0r-129,-480r87,0r70,282v10,37,14,84,18,86v1,-3,11,-50,21,-87r77,-281r81,0r76,279v11,38,17,87,21,88v18,-106,62,-259,89,-367r78,0r-132,480r-74,0r-80,-292v-12,-39,-17,-89,-21,-90v-1,2,-12,50,-23,90r-84,292r-75,0","w":645,"k":{"\u00bb":14,"z":13,"y":9,"x":13,"w":6,"v":9,"u":18,"t":4,"s":18,"r":20,"q":21,"p":20,"o":27,"n":20,"m":20,"j":9,"i":9,"g":27,"f":2,"e":29,"d":26,"c":34,"a":27,"\\":-9,"Y":-7,"W":-9,"V":-7,"T":-14,"Q":5,"O":7,"M":9,"J":4,"G":9,"C":6,"A":32,"@":19,"?":-4,";":17,":":17,"\/":45,".":58,"-":23,",":58}},{"d":"19,116r0,-58r45,0v32,0,39,-20,39,-52r0,-123v-1,-54,30,-74,68,-87v-40,-12,-68,-38,-68,-92r0,-114v7,-57,-35,-52,-84,-51r0,-57v84,-3,157,-6,157,84r0,124v0,46,28,75,82,76r0,58v-53,1,-82,27,-82,75r0,133v-4,89,-73,87,-157,84","w":276},{"d":"65,0r0,-480r81,0r0,414r183,0r0,66r-264,0","w":357,"k":{"}":2,"y":31,"x":9,"w":25,"v":36,"u":11,"t":20,"s":7,"r":2,"q":7,"p":2,"o":11,"n":2,"m":2,"l":2,"k":2,"j":7,"i":9,"h":2,"g":9,"f":12,"e":12,"d":12,"c":12,"b":2,"]":2,"\\":28,"Y":50,"X":2,"W":35,"V":45,"U":17,"T":43,"S":2,"Q":25,"O":25,"J":3,"G":12,"C":19,"@":4,"?":9,".":-5,"-":37,",":-5,")":2,"!":4}},{"d":"52,0r0,-348r75,0r0,46v28,-34,66,-55,112,-55v75,0,104,49,104,111r0,246r-77,0r0,-230v0,-39,-13,-62,-53,-62v-35,0,-65,27,-84,53r0,239r-77,0","w":392,"k":{"y":6,"x":2,"w":5,"v":6,"\\":27,"\/":5}},{"d":"196,0r-185,-480r88,0r111,307v15,37,19,73,28,82v4,-12,13,-45,26,-82r107,-307r81,0r-178,480r-78,0","w":462,"k":{"\u00bb":17,"z":22,"y":11,"x":18,"w":9,"v":11,"u":26,"t":6,"s":33,"r":25,"q":33,"p":25,"o":38,"n":25,"m":25,"j":12,"i":11,"g":37,"f":7,"e":42,"d":37,"c":42,"a":33,"\\":-7,"Z":2,"Y":-9,"X":-6,"W":-7,"V":-2,"T":-12,"Q":13,"O":13,"M":12,"J":7,"G":14,"C":9,"A":30,"@":28,"?":-6,";":25,":":25,"\/":50,".":67,"-":31,",":67,"!":2}},{"d":"197,-390r-98,-94r103,0r62,94r-67,0","w":360},{"w":149,"k":{"T":6}},{"d":"202,41v-26,89,-89,145,-198,122r11,-61v58,10,102,-12,114,-67r15,-40r-131,-343r83,0r88,251r2,0r82,-251r79,0","w":356,"k":{"y":-5,"w":-8,"v":-7,"t":-6,"s":2,"q":11,"p":2,"o":6,"l":4,"k":6,"h":6,"g":9,"f":-7,"e":8,"d":7,"c":5,"b":6,"a":3,"\\":19,"@":6,"?":7,"\/":38,".":48,"-":4,",":48,"!":2}},{"d":"1,124v58,-63,122,-169,122,-318v0,-142,-56,-248,-122,-324r74,0v71,75,129,187,129,323v0,138,-62,251,-129,319r-74,0","w":237},{"d":"52,116r0,-634r164,0r0,57r-91,0r0,519r91,0r0,58r-164,0","w":234,"k":{"y":-16,"j":-43,"T":-4,"J":-48}},{"d":"63,0r0,-480r81,0r197,283v27,37,40,66,49,76v-6,-101,-2,-248,-3,-359r75,0r0,480r-75,0r-209,-300v-22,-29,-34,-56,-44,-67v7,110,1,250,3,367r-74,0","w":524,"k":{"z":2,"y":2,"x":2,"v":2,"u":7,"t":2,"r":2,"o":2,"n":2,"m":2,"i":2,"e":2,"c":2}},{"d":"174,171v-88,0,-147,-29,-147,-95v0,-39,24,-68,59,-87v-46,-19,-35,-96,6,-113v-40,-22,-62,-60,-62,-106v0,-93,105,-150,207,-118r121,0r0,53r-51,0v62,100,-28,219,-166,188v-12,6,-18,14,-18,24v0,19,21,24,61,26v74,3,172,2,172,107v0,73,-78,121,-182,121xm178,117v63,0,101,-25,101,-60v1,-64,-89,-41,-142,-53v-56,35,-54,113,41,113xm179,-157v45,0,72,-29,72,-73v0,-45,-27,-73,-72,-73v-46,0,-73,28,-73,73v0,44,27,73,73,73","w":376,"k":{"y":-7,"v":-2,"u":2,"t":-6,"o":2,"j":-19,"g":4,"f":-4,"e":2,"c":2,"a":2,"\\":32,"@":4,"?":8,"\/":-9,".":14,"-":9,",":11,"!":2}},{"d":"64,0r0,-480v140,0,307,-21,307,120v1,61,-35,93,-86,109v58,9,106,49,106,117v0,98,-75,134,-184,134r-143,0xm144,-64v82,3,164,0,164,-74v0,-50,-28,-79,-100,-79r-64,0r0,153xm144,-279v75,4,153,-2,145,-70v6,-66,-72,-70,-145,-66r0,136","w":423,"k":{"z":7,"y":7,"x":9,"w":6,"v":7,"t":2,"j":4,"i":7,"g":6,"e":2,"\\":2,"Z":4,"Y":11,"X":8,"W":7,"V":9,"T":9,"A":9,"?":-2,"\/":14}},{"d":"168,9v-86,0,-143,-66,-143,-183v0,-147,134,-228,239,-156r0,-188r77,0r0,431v0,35,5,66,10,87r-76,0v-3,-8,-6,-27,-7,-39v-24,29,-57,48,-100,48xm189,-55v30,0,58,-17,75,-41r0,-173v-18,-17,-39,-26,-70,-26v-56,0,-87,48,-87,121v0,72,24,119,82,119","w":390,"k":{"}":-2,"g":2,"]":-2,"\/":5}},{"d":"256,9v-135,0,-196,-72,-196,-192r0,-297r82,0r0,289v0,89,34,132,116,132v78,0,113,-49,113,-124r0,-297r75,0r0,291v0,125,-62,198,-190,198","w":506,"k":{"z":9,"y":9,"x":9,"w":9,"v":9,"u":9,"t":9,"s":9,"r":9,"q":3,"p":9,"o":9,"n":9,"m":9,"l":5,"k":2,"j":11,"i":9,"h":2,"g":11,"e":9,"d":8,"c":9,"b":2,"a":11,"S":9,"Q":4,"O":4,"M":6,"J":7,"G":2,"A":14,"@":4,"?":2,";":2,":":2,"\/":38,".":14,",":14,"!":2}},{"d":"199,9v-114,0,-174,-78,-174,-185v0,-107,70,-181,165,-181v104,0,157,79,144,194r-227,0v4,62,30,112,98,112v48,0,77,-18,93,-27r27,52v-20,12,-58,35,-126,35xm107,-217r153,0v-1,-44,-20,-82,-71,-82v-47,0,-73,33,-82,82","w":364,"k":{"\u00bb":-5,"z":2,"y":5,"x":6,"v":4,"f":-2,"\\":29,"?":2,"\/":9,".":4,",":2}},{"d":"14,0r119,-181r-114,-167r87,0v0,0,69,104,72,108r66,-108r79,0r-108,163r124,185r-86,0r-84,-126r-77,126r-78,0","w":352,"k":{"y":2,"x":-2,"w":2,"u":4,"q":10,"p":2,"o":13,"g":11,"f":6,"e":17,"d":9,"c":15,"a":2,"\\":27,"@":9,"?":2,";":2,":":2,"\/":5,".":2,"-":26,",":2}},{"d":"190,9v-107,0,-165,-59,-165,-133v0,-62,32,-100,100,-137v-36,-41,-55,-73,-55,-113v0,-69,57,-114,135,-114v77,0,128,44,128,104v0,53,-35,90,-105,131r105,113v16,-27,28,-61,34,-97r68,12v-9,51,-29,98,-58,136r82,89r-96,0r-37,-40v-38,30,-85,49,-136,49xm192,-294v49,-29,68,-54,68,-86v0,-28,-22,-51,-55,-51v-35,0,-57,22,-57,54v0,26,13,49,44,83xm105,-128v0,81,131,95,179,42r-120,-130v-38,23,-59,51,-59,88","w":465},{"d":"25,-39r90,-137r-90,-139r79,0r90,139r-90,137r-79,0xm171,-39r90,-137r-90,-139r78,0r92,139r-92,137r-78,0","w":367,"k":{"z":19,"y":19,"x":29,"w":12,"v":16,"f":5,"a":5,"Z":13,"Y":50,"X":29,"W":24,"V":33,"U":7,"T":47,"S":17,"J":2,"A":11}},{"d":"153,9v-76,0,-104,-49,-104,-111r0,-246r76,0r0,230v0,39,14,61,54,61v44,0,77,-43,84,-52r0,-239r76,0v3,112,-8,253,9,348r-77,0v-2,-9,-5,-33,-6,-49v-17,23,-53,58,-112,58","w":391,"k":{"\\":19,"\/":7}},{"d":"64,0r0,-480r147,0v107,0,168,48,168,134v0,82,-59,116,-121,129v49,45,112,156,158,217r-91,0r-92,-136v-51,-69,-49,-72,-88,-72r0,208r-81,0xm145,-269r63,0v62,0,90,-26,90,-74v0,-69,-75,-77,-153,-72r0,146","w":430,"k":{"z":2,"y":9,"w":9,"v":9,"u":12,"t":4,"r":2,"q":8,"p":2,"o":12,"n":2,"m":2,"j":7,"i":2,"g":12,"f":4,"e":14,"d":11,"c":14,"a":2,"\\":2,"Z":2,"Y":12,"W":7,"V":10,"U":9,"T":7,"Q":9,"O":9,"J":6,"G":4,"C":4,"@":7,"?":7,"\/":2,".":2,"-":22,",":2}},{"d":"152,-390r63,-94r103,0r-99,94r-67,0xm199,9v-114,0,-174,-78,-174,-185v0,-107,70,-181,165,-181v104,0,157,79,144,194r-227,0v4,62,30,112,98,112v48,0,77,-18,93,-27r27,52v-20,12,-58,35,-126,35xm107,-217r153,0v-1,-44,-20,-82,-71,-82v-47,0,-73,33,-82,82","w":364},{"d":"194,9v-120,0,-169,-97,-169,-183v0,-86,47,-183,167,-183v120,0,172,95,172,181v0,85,-50,185,-170,185xm194,-52v63,0,89,-52,89,-122v0,-69,-29,-123,-92,-123v-62,0,-85,52,-85,121v0,69,26,124,88,124","w":388,"k":{"z":5,"y":6,"x":13,"v":9,"f":4,"\\":23,"?":2,"\/":22,".":7,",":7}},{"d":"141,9v-57,0,-95,-18,-117,-33r28,-55v13,9,46,29,86,29v40,0,63,-15,63,-41v0,-27,-33,-36,-83,-59v-51,-23,-86,-50,-86,-105v0,-60,47,-102,121,-102v59,0,94,21,108,30r-30,53v-17,-22,-128,-41,-128,15v0,28,30,37,69,53v56,23,102,48,102,107v0,68,-52,108,-133,108","w":298,"k":{"y":4,"x":2,"g":6,"b":5,"a":-4,"\\":27,"\/":7,"-":12}},{"d":"277,68v-153,0,-246,-105,-246,-242v0,-142,113,-277,269,-277v161,0,245,114,245,221v0,96,-56,172,-137,172v-51,1,-73,-32,-78,-71v-19,40,-54,70,-98,70v-45,0,-71,-40,-71,-85v0,-98,55,-192,154,-192v37,0,73,11,96,18r-27,168v0,22,12,40,31,40v42,0,76,-49,76,-115v0,-107,-79,-175,-191,-175v-109,0,-208,97,-208,224v0,116,68,193,193,193v42,0,83,-11,106,-21r20,48v-27,11,-79,24,-134,24xm254,-115v53,0,80,-97,94,-167v-77,-28,-119,43,-120,126v0,20,7,41,26,41","w":569,"k":{"z":2,"x":9,"w":-4,"v":-2,"f":-4,"a":4,"Z":12,"Y":25,"X":17,"W":6,"V":16,"T":17,"S":12,"J":2,"C":-4,"A":14,"7":-2,"4":6,"1":-2}},{"d":"283,-123v-73,0,-96,-45,-151,-45v-31,0,-50,15,-64,28r-36,-45v21,-20,58,-48,105,-48v66,0,85,46,150,46v27,0,50,-15,67,-30r36,46v-24,24,-62,48,-107,48","w":421},{"d":"55,0r0,-518r77,0r0,518r-77,0","w":187,"k":{"p":5,"l":-4,"g":4,"\\":-2,"\/":2}},{"d":"50,0r0,-518r77,0r0,319r129,-149r86,0r-136,154r141,194r-90,0r-130,-184r0,184r-77,0","w":356,"k":{"z":-3,"q":7,"o":9,"g":8,"e":10,"d":9,"c":10,"\\":7,"@":7,"?":5,";":2,":":2,"\/":2,"-":23}},{"d":"37,-207r147,-273r52,0r146,273r-70,0r-102,-193r-102,193r-71,0","w":420},{"d":"47,-311r-19,-169r82,0r-9,169r-54,0xm158,-311r-10,-169r82,0r-18,169r-54,0","w":258,"k":{"9":9,"7":-12,"5":12,"4":84,"1":-2,"0":12}},{"d":"34,0r65,-480r79,0r134,395r136,-395r78,0r66,480r-83,0r-43,-346r-2,0v-31,110,-80,236,-116,346r-79,0r-98,-278v-9,-22,-11,-49,-23,-68v-1,14,-2,38,-6,70r-34,276r-74,0","w":624,"k":{"y":12,"w":9,"v":9,"u":7,"t":9,"s":2,"o":2,"i":5,"g":4,"f":2,"e":2,"c":2,"\\":7,"Y":19,"W":9,"V":12,"U":6,"T":9,"S":2,"Q":4,"O":4,"J":2,"G":7,"C":10,"?":6,"-":5}},{"d":"92,7v-31,0,-55,-24,-55,-54v0,-30,24,-53,55,-53v30,0,55,23,55,53v0,30,-25,54,-55,54","w":183},{"d":"52,0r0,-348r75,0r0,46v17,-20,48,-55,106,-55v50,0,78,24,90,57v28,-32,61,-57,111,-57v72,0,99,48,99,111r0,246r-77,0r0,-230v0,-38,-11,-62,-48,-62v-35,0,-63,27,-78,46r0,246r-76,0r0,-230v0,-39,-13,-62,-47,-62v-42,0,-71,43,-78,52r0,240r-77,0","w":582,"k":{"y":4,"x":2,"w":5,"v":6,"\\":27,"\/":5}},{"d":"16,0r152,-247r-145,-233r93,0r101,166r96,-166r84,0r-140,232r154,248r-92,0r-112,-182r-108,182r-83,0","w":426,"k":{"\u00bb":5,"z":2,"y":21,"x":2,"w":15,"v":16,"u":11,"t":14,"s":2,"r":2,"q":12,"p":2,"o":19,"n":2,"m":2,"j":7,"i":4,"g":19,"f":11,"e":19,"d":17,"c":19,"a":7,"Q":24,"O":22,"J":4,"G":21,"C":14,"@":12,";":4,":":4,"-":35}},{"d":"171,-17r0,-143r-141,0r0,-60r141,0r0,-138r68,0r0,138r139,0r0,60r-139,0r0,143r-68,0","w":407,"k":{"7":7,"4":18,"3":14,"2":13,"1":2}},{"d":"295,-19v0,118,-133,172,-265,150r12,-62v72,16,172,-10,172,-84v0,-62,-54,-84,-130,-84r0,-56v51,-1,116,-34,116,-87v0,-70,-110,-61,-142,-18r-37,-49v28,-27,72,-48,129,-48v84,0,130,47,130,104v1,61,-55,101,-96,115v57,7,111,50,111,119","w":319,"k":{"8":7,"6":-4,"3":4,"2":-9,"\/":-14,"'":9,"%":7,"\"":9}},{"d":"17,0r0,-33v63,-48,200,-147,200,-211v-1,-71,-116,-56,-148,-12r-39,-48v63,-74,271,-81,270,48v0,77,-100,151,-160,196v52,-4,133,-2,191,-2r0,62r-314,0","w":357,"k":{"<":12,"9":12,"8":14,"7":7,"5":11,"3":14,"1":7,"-":12,"+":12,"'":22,"%":18,"#":7,"\"":22}},{"d":"443,122v-70,0,-127,-27,-196,-117v-135,-12,-212,-122,-212,-244v0,-131,86,-249,241,-249v296,0,321,434,64,489v31,40,58,59,106,59v27,0,48,-13,57,-20r28,55v-14,12,-46,27,-88,27xm276,-58v105,0,157,-84,157,-181v0,-98,-51,-183,-155,-183v-104,0,-158,83,-158,181v0,98,52,183,156,183","w":552,"k":{"z":2,"x":9,"j":-6,"i":2,"a":6,"\\":7,"Z":14,"Y":22,"X":22,"W":5,"V":13,"U":4,"T":10,"S":6,"M":4,"J":-25,"A":14,"?":7,".":22,",":22}},{"d":"93,7v-30,0,-55,-25,-55,-55v0,-30,25,-53,55,-53v30,0,55,23,55,53v0,30,-25,55,-55,55xm93,-246v-30,0,-55,-24,-55,-54v0,-30,25,-54,55,-54v30,0,55,24,55,54v0,30,-25,54,-55,54"},{"d":"111,0r-101,-348r82,0r64,240r69,-240r72,0r70,241r2,0r63,-241r76,0r-101,348r-69,0r-78,-250r-2,0r-78,250r-69,0","w":520,"k":{"\u00bb":-2,"y":-6,"w":-7,"v":-7,"t":-6,"q":5,"o":2,"g":7,"f":-7,"e":5,"d":5,"c":5,"a":2,"\\":16,"@":4,"?":5,"\/":24,".":36,"-":4,",":36}},{"d":"140,0r-131,-348r83,0r84,252r2,0r84,-252r79,0r-129,348r-72,0","w":350,"k":{"y":-7,"x":-2,"w":-7,"v":-7,"t":-6,"s":2,"q":8,"o":9,"g":10,"f":-7,"e":7,"d":6,"c":7,"a":2,"\\":14,"@":6,"?":2,"\/":26,".":40,"-":6,",":40}},{"d":"146,0r0,-412r-134,0r0,-68r349,0r0,68r-133,0r0,412r-82,0","w":373,"k":{"\u00bb":24,"}":-4,"z":37,"y":43,"x":39,"w":39,"v":34,"u":39,"t":12,"s":46,"r":34,"q":48,"p":34,"o":50,"n":34,"m":34,"j":5,"i":12,"g":46,"f":10,"e":53,"d":45,"c":53,"a":52,"]":-4,"\\":-22,"Y":-14,"X":-9,"W":-14,"V":-12,"T":-13,"Q":10,"O":10,"M":9,"J":4,"G":10,"C":7,"A":30,"@":31,"?":-16,";":32,":":32,"\/":46,".":59,"-":37,",":59,")":-2}},{"d":"32,36r190,-528r74,0r-191,528r-73,0","w":308,"k":{"z":23,"y":22,"x":27,"w":14,"v":14,"u":35,"t":9,"s":36,"r":34,"q":38,"p":34,"o":38,"n":34,"m":34,"g":45,"f":2,"e":38,"d":39,"c":48,"a":45,"Y":-7,"W":-7,"V":-7,"T":-14,"Q":12,"O":12,"M":11,"J":2,"G":17,"C":14,"A":40,"9":45,"8":20,"7":6,"6":26,"5":54,"4":97,"3":33,"2":34,"1":20,"0":49}},{"d":"163,124v-70,-76,-129,-187,-129,-326v0,-135,61,-248,129,-316r73,0v-53,57,-121,164,-121,314v0,142,50,247,121,328r-73,0","w":237,"k":{"y":-19,"j":-45,"T":-2,"J":-48}},{"d":"121,89r0,-81v-45,-4,-77,-19,-97,-34r28,-55v26,31,161,51,160,-10v0,-32,-51,-40,-99,-63v-45,-21,-81,-48,-81,-102v0,-50,33,-87,89,-98r0,-75r67,0r0,73v39,4,67,19,84,31r-29,53v-27,-26,-140,-43,-141,13v0,29,41,39,81,56v52,21,101,46,101,104v0,57,-34,94,-96,105r0,83r-67,0","w":300,"k":{"7":-11}},{"d":"69,-69r15,-97r-67,0r10,-56r66,0r10,-70r-66,0r9,-56r66,0r13,-91r56,0r-14,91r64,0r15,-91r55,0r-14,91r64,0r-10,56r-63,0r-9,70r63,0r-9,56r-64,0r-13,97r-56,0r14,-97r-64,0r-15,97r-56,0xm148,-221r66,0r11,-71r-67,0","w":368,"k":{"9":4,"8":7,"7":-23,"4":51,"1":-12,"0":7}},{"d":"45,-311r-15,-169r84,0r-14,169r-55,0","w":144,"k":{"9":9,"7":-12,"5":12,"4":84,"1":-2,"0":12}},{"d":"46,101v17,-24,30,-54,30,-76v0,-33,-38,-36,-38,-78v0,-27,22,-47,51,-47v32,0,59,25,59,68v0,45,-22,95,-52,133r-50,0","w":183},{"d":"37,-173r0,-63r156,0r0,63r-156,0","w":230,"k":{"z":5,"y":4,"x":18,"w":2,"v":4,"s":-2,"a":4,"Z":2,"Y":42,"X":35,"W":23,"V":31,"T":36,"S":17,"M":5,"J":4,"A":17,"4":37,"3":14,"2":13}},{"d":"275,9v-158,0,-240,-119,-240,-249v0,-130,85,-248,241,-248v62,0,103,13,140,37r-38,60v-27,-18,-59,-29,-104,-29v-101,0,-154,82,-154,177v0,98,51,183,156,183v52,0,87,-17,113,-38r35,57v-25,23,-81,50,-149,50","w":444,"k":{"\u00bb":-4,"}":-6,"z":2,"y":19,"x":7,"w":16,"v":22,"u":5,"t":14,"q":2,"o":6,"i":2,"g":7,"f":2,"e":10,"d":2,"c":2,"]":-6,"\\":-7,"Z":-5,"X":-2,"V":-2,"U":4,"T":-6,"S":-2,"Q":14,"O":14,"M":-2,"G":12,"C":12,"?":-9,".":-2,"-":19,",":-2,")":-4,"!":-2}},{"d":"195,9v-120,0,-168,-104,-168,-207v0,-171,110,-290,293,-290r16,62v-121,-1,-211,58,-223,169v23,-19,58,-32,97,-32v87,0,146,55,146,144v0,89,-66,154,-161,154xm198,-52v50,0,76,-41,76,-86v0,-58,-27,-91,-79,-91v-40,0,-67,14,-86,30v-5,82,22,147,89,147","w":380,"k":{">":14,"7":9,"4":2,"3":18,"2":7,"1":14,"\/":24,".":2,",":2,"'":4,"\"":4}},{"d":"207,9v-127,0,-182,-97,-182,-183v0,-85,57,-183,184,-183v127,0,183,95,183,181v0,86,-58,185,-185,185xm209,-54v67,0,101,-49,101,-120v0,-70,-36,-120,-103,-120v-66,0,-100,47,-100,118v0,71,35,122,102,122","w":416,"k":{">":2,"7":4,"4":14,"3":7,"2":2,"\/":26,".":4,",":4,"'":12,"#":-7,"\"":12}},{"d":"71,-17r-41,-42r133,-120r-135,-118r42,-45r183,161","w":272,"k":{"7":12,"5":2,"4":30,"3":21,"2":18,"1":2}},{"d":"118,-39r-91,-137r91,-139r79,0r-90,139r90,137r-79,0xm264,-39r-91,-137r91,-139r79,0r-90,139r90,137r-79,0","w":367,"k":{"w":-4,"v":-4,"t":-4,"g":6,"f":-2,"Y":26,"X":5,"W":14,"V":17,"T":24,"S":-4}},{"d":"64,0r0,-480r81,0r0,221r177,-221r91,0r-183,224r194,256r-98,0r-181,-240r0,240r-81,0","w":434,"k":{"z":2,"y":27,"x":2,"w":19,"v":23,"u":19,"t":19,"s":11,"r":9,"q":16,"p":7,"o":19,"n":9,"m":9,"j":5,"i":12,"g":17,"f":9,"e":22,"d":17,"c":17,"a":9,"\\":-12,"U":2,"Q":25,"O":25,"J":2,"G":22,"C":27,"@":11,"?":-4,";":2,":":2,"\/":2,"-":34}},{"d":"170,0r0,-181r-160,-299r91,0r114,223r113,-223r79,0r-156,299r0,181r-81,0","w":416,"k":{"\u00bb":26,"z":34,"y":27,"x":27,"w":25,"v":20,"u":40,"t":14,"s":46,"r":37,"q":49,"p":37,"o":53,"n":37,"m":37,"j":7,"i":9,"g":52,"f":12,"e":55,"d":49,"c":58,"a":48,"\\":-9,"Y":-4,"W":-7,"V":-9,"T":-14,"S":9,"Q":22,"O":17,"M":18,"J":9,"G":21,"C":17,"A":40,"@":43,"?":-4,";":36,":":36,"\/":63,".":72,"-":42,",":72}},{"d":"134,-143v-154,-1,-152,-213,1,-214v77,0,113,52,113,105v0,53,-37,109,-114,109xm135,-191v35,0,48,-27,48,-59v0,-32,-14,-60,-49,-60v-35,0,-49,26,-49,58v0,32,15,61,50,61xm451,9v-151,-1,-150,-214,2,-214v78,0,113,52,113,105v0,53,-37,109,-115,109xm453,-39v35,0,48,-27,48,-59v0,-32,-14,-60,-49,-60v-35,0,-49,26,-49,58v0,32,15,61,50,61xm158,0r208,-348r65,0r-209,348r-64,0","w":586},{"d":"70,180r0,-720r65,0r0,720r-65,0","w":205},{"d":"258,116v-84,3,-158,5,-158,-84r0,-133v0,-46,-28,-74,-81,-75r0,-58v53,-1,81,-28,81,-76r0,-125v3,-89,74,-86,158,-83r0,57r-46,0v-32,0,-38,21,-38,53r0,114v1,54,-31,75,-68,88v40,12,68,38,68,92r0,121v-7,57,35,52,84,51r0,58","w":276,"k":{"y":-16,"j":-43,"T":-4,"J":-48}},{"d":"64,0r0,-480r263,0r0,68r-182,0r0,128r160,0r0,65r-160,0r0,151r187,0r0,68r-268,0","w":372,"k":{"\u00bb":-5,"z":5,"y":11,"x":4,"w":13,"v":17,"u":12,"t":4,"r":5,"q":5,"p":5,"o":9,"n":5,"m":5,"j":2,"i":6,"g":9,"f":2,"e":6,"d":5,"c":11,"a":4,"\\":-12,"S":-4,"J":2,"?":-2,".":-2,"-":2,",":-2}},{"d":"63,0r0,-480r141,0v101,0,177,48,177,146v0,117,-98,163,-236,153r0,181r-82,0xm145,-245v87,6,161,-11,154,-87v8,-70,-68,-90,-154,-83r0,170","w":409,"k":{"x":2,"u":11,"s":5,"r":6,"q":12,"p":6,"o":13,"n":6,"m":6,"i":22,"g":7,"e":18,"d":15,"c":16,"a":9,"\\":-5,"Z":13,"Y":4,"X":13,"V":5,"M":17,"J":4,"A":46,"@":7,"\/":55,".":79,"-":10,",":79}},{"d":"96,144r-64,-32r186,-396r-205,0r0,-64r292,0r0,45","w":334,"k":{">":2,"=":6,"<":27,";":4,":":4,"9":6,"8":13,"6":4,"5":18,"4":58,"2":7,"0":6,"\/":57,".":48,"-":4,",":48,"+":6,"'":2,"\"":2}},{"d":"189,9v-103,0,-157,-59,-157,-127v0,-51,34,-96,96,-131v-59,-35,-82,-71,-82,-116v0,-73,65,-123,142,-123v92,0,146,50,146,118v0,45,-31,80,-89,114v66,36,100,78,100,134v0,81,-65,131,-156,131xm189,-52v50,0,77,-31,77,-70v0,-32,-22,-60,-85,-95v-49,31,-71,59,-71,95v0,40,30,70,79,70xm192,-287v45,-27,64,-54,64,-79v0,-35,-23,-62,-65,-62v-40,0,-66,25,-66,60v0,28,17,52,67,81","w":378,"k":{"5":2,"3":22,"2":11,"1":7,"\/":29,".":2,",":2,"%":14}},{"d":"115,-219r-49,-35r61,-78r-95,-28r20,-55r91,34r-4,-99r65,0r-5,99r92,-34r20,55r-96,28r62,78r-49,35r-57,-83","w":342},{"d":"52,0r0,-348r77,0r0,50v14,-24,44,-59,90,-59v24,0,36,5,42,9r-18,68v-5,-3,-15,-7,-34,-7v-47,0,-74,48,-80,61r0,226r-77,0","w":266,"k":{"\u00bb":-5,"y":-9,"x":-5,"w":-9,"v":-9,"t":-9,"o":2,"k":-2,"h":-2,"g":5,"f":-9,"e":6,"c":7,"b":-2,"@":2,"?":3,";":-5,":":-5,"\/":36,".":45,"-":10,",":45}},{"d":"290,-32v0,113,-122,188,-263,162r13,-62v74,17,169,-13,169,-96v0,-85,-81,-104,-164,-92r15,-228r222,0r0,59r-152,0r-8,105v112,1,168,67,168,152","w":316,"k":{"<":4,"7":-7,"4":-6,"2":-7,"1":-2,"0":4,"\/":-14,"-":12,"+":12}},{"d":"33,0r0,-54r238,-359r-227,0r0,-67r325,0r0,52r-241,362r249,0r0,66r-344,0","w":407,"k":{"y":17,"w":19,"v":15,"u":10,"t":11,"s":7,"q":9,"o":15,"j":2,"i":6,"g":12,"f":5,"e":12,"d":7,"c":12,"a":2,"\\":-2,"Q":12,"O":10,"M":4,"G":14,"C":18,"A":2,"?":-4,"-":17}},{"d":"74,-150v-2,-66,1,-100,51,-129v35,-21,59,-39,59,-80v0,-70,-89,-77,-136,-49r-27,-58v25,-13,59,-22,99,-22v98,0,146,53,146,123v0,67,-44,100,-78,120v-41,25,-48,41,-45,95r-69,0xm109,6v-30,0,-51,-23,-51,-51v0,-27,21,-50,51,-50v30,0,52,23,52,50v0,28,-22,51,-52,51","w":294},{"d":"278,9v-155,0,-243,-118,-243,-248v0,-131,86,-249,241,-249v156,0,242,117,242,247v0,131,-85,250,-240,250xm276,-58v105,0,157,-84,157,-181v0,-98,-51,-183,-155,-183v-104,0,-158,83,-158,181v0,98,52,183,156,183","w":552,"k":{"z":7,"x":9,"i":7,"a":9,"\\":7,"Z":13,"Y":17,"X":22,"W":7,"V":13,"U":4,"T":10,"S":8,"M":4,"J":4,"A":14,"?":7,"\/":30,".":22,",":22}},{"d":"169,9v-76,0,-123,-32,-142,-49r36,-56v11,9,46,38,106,38v53,0,86,-31,86,-67v0,-50,-53,-67,-108,-95v-59,-29,-107,-62,-107,-140v0,-81,67,-128,148,-128v75,0,116,25,134,39r-35,58v-17,-12,-51,-31,-96,-31v-43,0,-73,23,-73,61v0,42,38,58,87,80v63,30,130,62,130,153v0,82,-65,137,-166,137","w":366,"k":{"z":5,"y":14,"x":9,"w":9,"v":12,"u":2,"t":4,"s":2,"r":2,"p":2,"n":2,"m":2,"i":4,"g":2,"f":4,"Z":2,"Y":8,"X":4,"W":5,"V":6,"U":5,"J":4,"A":2,"@":-4,"\/":9,".":2,"-":5,",":2}},{"d":"52,158r0,-506r75,0r0,36v19,-22,50,-45,99,-45v86,0,142,66,142,182v0,110,-65,184,-156,184v-45,0,-71,-17,-83,-28r0,177r-77,0xm199,-53v56,0,88,-48,88,-121v0,-71,-27,-120,-82,-120v-41,0,-68,30,-76,42r0,172v14,12,34,27,70,27","w":393,"k":{"y":4,"x":6,"v":5,"f":2,"\\":25,"?":2,"\/":14,".":5,",":5}},{"d":"195,9v-107,0,-170,-80,-170,-183v0,-118,76,-183,173,-183v57,0,90,19,107,31r-29,54v-17,-12,-40,-25,-77,-25v-63,0,-93,51,-93,121v0,69,30,123,95,123v42,0,69,-18,80,-24r25,53v-14,12,-48,33,-111,33","w":324,"k":{"\u00bb":-11,"}":-4,"z":-5,"y":-4,"w":-4,"v":-4,"t":-4,"s":-2,"o":5,"f":-9,"a":-4,"]":-4,"\\":6,"@":2,"?":-4,";":-7,":":-7,".":-2,"-":2,",":-5,")":-4,"!":-4}},{"w":149,"k":{"T":6}},{"d":"117,0r0,-281r-82,26r-16,-61v55,-13,99,-38,173,-32r0,348r-75,0","w":250,"k":{"\/":4,"'":7,"\"":7}},{"d":"64,0r0,-480r81,0r0,196r240,0r0,-196r82,0r0,480r-82,0r0,-217r-240,0r0,217r-81,0","w":529,"k":{"z":2,"y":2,"x":2,"w":2,"v":2,"i":7}},{"d":"50,0r0,-518r77,0r0,215v17,-19,52,-54,111,-54v75,0,103,49,103,111r0,246r-76,0r0,-230v0,-39,-13,-62,-53,-62v-44,0,-78,44,-85,53r0,239r-77,0","w":390,"k":{"y":6,"x":2,"w":2,"v":8,"\\":27,"\/":5}},{"d":"104,6v-30,0,-51,-23,-51,-51v0,-27,21,-50,51,-50v30,0,52,23,52,50v0,28,-22,51,-52,51xm74,-154r-15,-326r91,0r-15,326r-61,0","w":209},{"d":"281,9v-159,0,-246,-120,-246,-249v0,-131,91,-248,252,-248v68,0,116,16,154,44r-38,60v-33,-25,-68,-36,-118,-36v-113,0,-165,81,-165,177v0,98,50,185,162,185v45,0,80,-10,99,-24r0,-112r-95,0r0,-65r174,0r0,220v-35,26,-93,48,-179,48","w":510,"k":{"z":5,"y":16,"x":11,"w":11,"v":16,"u":5,"r":2,"p":2,"n":2,"m":2,"i":2,"\\":7,"Z":5,"Y":15,"X":4,"W":10,"V":15,"U":4,"T":12,"J":2,"A":2,"\/":14}},{"d":"-1,125r0,-61r301,0r0,61r-301,0","w":299},{"d":"53,133r-16,-61v116,0,220,-54,232,-164v-95,72,-243,16,-243,-113v0,-89,72,-152,163,-152v123,0,165,105,165,207v0,171,-109,283,-301,283xm186,-120v32,0,64,-10,87,-29v7,-78,-21,-149,-87,-148v-43,0,-79,34,-79,89v0,53,27,88,79,88","w":382,"k":{"7":2,"3":14,"\/":9,"'":18,"#":-7,"\"":18}},{"d":"155,-169r155,0r-78,-220v-17,60,-54,156,-77,220xm13,0r183,-480r78,0r187,480r-89,0r-37,-103r-204,0r-37,103r-81,0","w":472,"k":{"y":28,"w":22,"v":23,"u":6,"t":17,"q":4,"p":2,"o":6,"l":2,"k":2,"j":4,"i":5,"h":2,"g":10,"f":4,"e":4,"d":4,"c":7,"b":2,"a":3,"\\":35,"Z":-2,"Y":37,"W":22,"V":30,"U":12,"T":30,"Q":16,"O":16,"J":2,"G":14,"C":19,"@":4,"?":2,".":-5,"-":17,",":-5,"!":2}},{"d":"22,167v-30,0,-46,-5,-52,-7r13,-61v46,13,72,-8,72,-75r0,-372r77,0r0,383v0,80,-31,132,-110,132xm93,-402v-28,0,-50,-22,-50,-49v0,-27,22,-49,50,-49v29,0,50,22,50,49v0,27,-21,49,-50,49","k":{"w":2,"j":-2,"g":2,"\\":-2}},{"d":"202,-17r-183,-161r183,-164r41,42r-134,120r134,118","w":272,"k":{"7":-14,"2":-14,"1":-2}},{"d":"261,157r0,-184v-16,17,-47,36,-86,36v-91,0,-149,-67,-149,-181v0,-113,79,-185,181,-185v75,0,119,20,131,26r0,488r-77,0xm194,-54v34,0,62,-24,67,-30r0,-202v-6,-2,-24,-9,-54,-9v-66,0,-100,51,-100,122v0,69,24,119,87,119","w":388,"k":{"x":4,"w":5,"v":6,"u":5,"p":5,"l":5,"k":7,"j":-9,"h":7,"b":7,"\\":27,"?":2}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+243-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);})("l*bL~W?}I_#Cl)dv`W,%1*1#H$?LbW#CH$P%I_XNbx8|yp}jH:Xl0VbWX,zqFWOvIHXPyd`#:*S_y)!SlxkZb}PEx_x[PdzLrc!jyNx^H3VDr*VS~.?{TWz;HdDj:^Sk_)|prdOR`.bVH)8KP)rN5)Lc?U{]H3VDr*,j^LEdT3k,Vcq[lN1L_U#0V.!UH3VDr*ODrVnK1V`TZV,f03Oj5N?D~*d}l)1jl^{!)cO,*31Pl5r?Z0hX^:Vx_HybI~q`FT7njUEdWNKBf;|kC6Dz%p}L$.[SRv8#]QzB0:{|qcLj5N{|~cLD5Wzd~W`}I)zN0_1CbjSN~3dDI3r#F.}vI_yK5L[K0pB.`.`q5jEQlc8Rr:1.H)[DH)[DH)[zT*dCI.Pdb_zq5W?6~Hz.`.`q5WdCI.Pdb_zq5W?6~^EE5%S}bH?}l*z6y$,}I_#C5Wn6q.XCy_Ldl^dW~.1KZ$E8~c|;l$EBbLkU_$d`H:LD_$d`T^EKl^{7")}catch(e){}delete _cufon_bridge_;return f})({"w":186,"face":{"font-family":"Kievit Medium","font-weight":500,"font-stretch":"normal","units-per-em":"720","panose-1":"2 0 5 3 4 0 0 2 0 4","ascent":"547","descent":"-173","x-height":"9","bbox":"-30 -540 632 180","underline-thickness":"14.4","underline-position":"-81.36","stemh":"58","stemv":"76","unicode-range":"U+0020-U+00E9"}}));

Cufon.registerFont((function(f){_cufon_bridge_={p:[{"d":"33,0r0,-66r220,-331r-211,0r0,-83r334,0r0,65r-222,332r228,0r0,83r-349,0","w":411,"k":{"y":17,"w":17,"v":15,"u":8,"t":12,"s":7,"q":7,"o":14,"i":5,"g":10,"f":3,"e":10,"d":5,"c":10,"\\":-4,"Q":9,"O":8,"M":3,"G":12,"C":15,"?":-6,"-":11}},{"d":"197,9v-122,0,-175,-93,-175,-183v0,-90,53,-185,175,-185v122,0,177,92,177,182v0,89,-54,186,-177,186xm199,-64v55,0,74,-44,74,-110v0,-66,-23,-114,-78,-114v-54,0,-72,45,-72,111v0,66,22,113,76,113","w":396,"k":{"z":6,"y":8,"x":15,"v":9,"f":4,"\\":24,"?":4,"\/":22,".":7,",":7}},{"d":"32,-207r144,-273r67,0r145,273r-88,0r-90,-174r-90,174r-88,0","w":420},{"d":"158,121v-59,-64,-128,-172,-128,-324v0,-146,69,-257,128,-315r91,0v-48,53,-117,160,-117,313v0,148,54,251,117,326r-91,0","w":249,"k":{"y":-20,"j":-48,"g":-2,"T":-4,"J":-51}},{"d":"189,9v-71,0,-120,-16,-144,-28r0,-499r96,0r0,195v18,-18,49,-36,86,-36v88,0,149,60,149,181v0,120,-81,187,-187,187xm141,-74v71,25,133,-10,133,-104v0,-66,-22,-106,-74,-106v-26,0,-48,15,-59,27r0,183","w":398,"k":{"y":4,"x":6,"v":4,"\\":24,"\/":26,".":7,",":7}},{"d":"287,71v-157,0,-254,-104,-254,-245v0,-142,113,-281,274,-281v167,0,254,108,254,225v0,102,-59,172,-146,172v-55,0,-71,-29,-80,-62v-18,34,-51,61,-95,61v-46,0,-74,-39,-74,-86v0,-103,58,-192,154,-192v42,0,83,10,107,19r-27,168v0,19,10,31,26,31v38,0,71,-40,71,-106v0,-109,-74,-170,-190,-170v-108,0,-202,92,-202,219v0,116,64,186,189,186v42,0,82,-11,105,-21r23,57v-27,11,-80,25,-135,25xm269,-124v44,2,70,-81,82,-150v-68,-27,-105,38,-105,115v0,19,5,35,23,35","w":584,"k":{"y":-2,"x":9,"w":-8,"v":-4,"f":-6,"a":4,"Z":10,"Y":25,"X":19,"W":5,"V":15,"T":11,"S":7,"J":4,"C":-8,"A":14,"7":-4,"4":12,"1":-4}},{"d":"147,-390r60,-97r123,0r-100,97r-83,0xm205,9v-117,0,-183,-74,-183,-186v0,-111,76,-182,173,-182v110,0,164,83,151,206r-221,0v4,52,31,90,89,90v48,0,74,-15,91,-24r31,62v-23,13,-59,34,-131,34xm123,-218r131,0v-1,-40,-16,-72,-60,-72v-41,0,-64,27,-71,72","w":373},{"d":"130,9v-60,0,-106,-36,-106,-99v1,-95,99,-127,199,-125v3,-46,-6,-70,-57,-69v-38,0,-68,16,-89,33r-42,-58v28,-26,76,-50,142,-50v96,0,141,36,141,129v0,71,-3,181,10,230r-94,0v-3,-9,-5,-26,-6,-37v-19,23,-53,46,-98,46xm116,-98v3,59,89,37,107,6r0,-64v-59,-2,-109,14,-107,58","w":361,"k":{"y":4,"v":8,"j":-3,"\\":36,"?":3}},{"d":"192,-390r-101,-97r124,0r59,97r-82,0","w":360},{"d":"41,147v-34,0,-56,-6,-71,-12r16,-82v46,15,90,3,90,-65r0,-468r103,0r0,481v0,95,-53,146,-138,146","w":238,"k":{"z":6,"y":6,"x":6,"w":7,"v":9,"u":6,"t":8,"s":6,"r":4,"q":4,"p":4,"o":6,"n":4,"m":4,"l":6,"k":4,"i":12,"h":4,"g":6,"e":4,"d":4,"c":4,"b":4,"a":4,"J":-4}},{"d":"175,172v-96,0,-154,-31,-154,-94v0,-39,24,-66,59,-85v-48,-23,-33,-102,8,-120v-40,-22,-62,-59,-62,-105v0,-96,111,-149,218,-119r128,0r0,63r-49,0v53,106,-39,205,-178,180v-9,5,-13,11,-13,20v0,19,20,22,70,25v73,4,165,4,165,108v0,74,-77,127,-192,127xm181,108v58,0,91,-22,91,-52v0,-51,-85,-32,-132,-44v-45,30,-39,96,41,96xm182,-167v40,0,64,-25,64,-65v0,-41,-24,-65,-64,-65v-40,0,-63,24,-63,65v0,40,23,65,63,65","w":386,"k":{"y":-6,"w":-2,"v":-4,"t":-6,"s":-2,"o":4,"j":-22,"f":-4,"e":4,"c":4,"a":4,"\\":28,"@":6,"?":5,"\/":-12,".":19,"-":5,",":13}},{"w":139,"k":{"T":10}},{"d":"101,-396v-34,0,-59,-27,-59,-58v0,-30,25,-56,59,-56v34,0,59,26,59,56v0,31,-25,58,-59,58xm53,0r0,-351r96,0r0,351r-96,0","w":201,"k":{"g":3,"\\":-4,"\/":3}},{"d":"-1,132r0,-74r313,0r0,74r-313,0","w":311},{"d":"60,0r0,-480r276,0r0,84r-176,0r0,108r155,0r0,79r-155,0r0,125r181,0r0,84r-281,0","w":381,"k":{"\u00bb":-3,"z":6,"y":13,"x":8,"w":15,"v":19,"u":13,"t":6,"r":6,"q":6,"p":6,"o":12,"n":6,"m":6,"j":4,"i":8,"g":9,"f":4,"e":8,"d":6,"c":11,"a":6,"\\":-10,"S":-4,"J":4,"?":-4,".":-4,"-":4,",":-4}},{"d":"103,7v-35,0,-64,-27,-64,-62v0,-35,29,-62,64,-62v35,0,63,27,63,62v0,35,-28,62,-63,62xm103,-232v-35,0,-64,-27,-64,-62v0,-35,29,-62,64,-62v35,0,63,27,63,62v0,35,-28,62,-63,62","w":205},{"d":"47,116r0,-634r180,0r0,71r-89,0r0,492r89,0r0,71r-180,0","w":245,"k":{"y":-14,"j":-43,"T":-8,"J":-51}},{"d":"28,0r0,-52r153,-227r-146,0r0,-72r262,0r0,56r-152,223r154,0r0,72r-271,0","w":329,"k":{"o":6,"g":12,"e":10,"d":7,"c":10,"\\":14,"@":4,"-":7,",":4}},{"d":"60,0r0,-480r160,0v112,0,177,49,177,139v1,79,-56,116,-112,130v47,40,108,151,150,211r-112,0r-88,-137v-42,-58,-40,-60,-74,-60r0,197r-101,0xm161,-269v70,4,142,-4,135,-67v6,-62,-64,-70,-135,-66r0,133","w":446,"k":{"z":4,"y":12,"w":9,"v":12,"u":13,"t":8,"r":4,"q":12,"p":4,"o":15,"n":4,"m":4,"j":9,"g":13,"f":6,"e":17,"d":13,"c":17,"a":4,"\\":4,"Z":4,"Y":15,"W":9,"V":16,"U":12,"T":8,"Q":10,"O":10,"J":10,"G":6,"C":6,"@":9,"?":5,"\/":4,".":4,"-":22,",":4}},{"d":"45,0r0,-518r96,0r0,210v18,-19,52,-51,110,-51v77,0,105,48,105,113r0,246r-96,0r0,-226v0,-35,-12,-53,-46,-53v-37,0,-66,35,-73,44r0,235r-96,0","w":400,"k":{"y":9,"x":4,"w":4,"v":9,"\\":24,"\/":3}},{"d":"60,0r0,-480r275,0r0,84r-174,0r0,117r153,0r0,80r-153,0r0,199r-101,0","w":367,"k":{"z":14,"y":9,"x":22,"w":8,"v":13,"u":18,"t":4,"s":9,"r":14,"q":12,"p":14,"o":10,"n":14,"m":14,"l":4,"k":4,"j":4,"i":12,"h":4,"g":11,"e":9,"d":13,"c":9,"b":4,"a":19,"\\":-14,"Q":4,"O":4,"M":12,"J":10,"G":4,"C":4,"A":34,"@":4,"?":-8,";":7,":":7,"\/":33,".":39,",":39}},{"d":"59,0r0,-480r102,0r173,249v31,41,43,75,52,81v-6,-87,-2,-231,-3,-330r92,0r0,480r-93,0r-186,-266v-28,-36,-37,-65,-48,-72v6,96,2,233,3,338r-92,0","w":534,"k":{"z":4,"y":4,"x":4,"v":4,"u":7,"t":4,"r":4,"o":4,"n":4,"m":4,"i":4,"e":4,"c":4}},{"w":139,"k":{"T":10}},{"d":"203,9v-112,0,-181,-75,-181,-184v0,-118,78,-184,184,-184v57,0,90,17,107,28r-31,65v-16,-10,-38,-21,-73,-21v-56,0,-86,44,-86,109v0,65,28,112,88,112v40,0,65,-15,76,-21r29,64v-17,11,-49,32,-113,32","w":329,"k":{"\u00bb":-13,"}":-6,"z":-6,"y":-4,"x":-2,"w":-4,"v":-4,"t":-4,"s":-4,"o":6,"j":-2,"f":-9,"a":-4,"]":-6,"\\":5,"@":4,"?":-6,";":-7,":":-7,"-":4,",":-6,")":-8,"!":-4}},{"d":"51,0r0,-518r96,0r0,518r-96,0","w":198,"k":{"p":3,"l":-3,"g":5,"\\":-4,"\/":4}},{"d":"47,158r0,-509r93,0r0,37v19,-24,50,-45,98,-45v89,0,142,66,142,183v0,111,-66,185,-157,185v-43,0,-68,-15,-80,-26r0,175r-96,0xm203,-66v49,0,76,-41,76,-110v0,-66,-23,-107,-70,-107v-36,0,-59,26,-66,36r0,158v12,11,30,23,60,23","w":402,"k":{"y":6,"x":10,"v":6,"d":-2,"\\":25,"?":4,"\/":14,".":3,",":3}},{"d":"19,65r205,-566r93,0r-205,566r-93,0","w":324,"k":{"z":24,"y":22,"x":27,"w":12,"v":14,"u":32,"t":9,"s":34,"r":30,"q":40,"p":30,"o":40,"n":30,"m":30,"g":45,"e":42,"d":45,"c":49,"a":48,"Y":-7,"W":-7,"V":-7,"T":-14,"Q":10,"O":10,"M":11,"J":4,"G":16,"C":14,"A":44,"9":48,"8":19,"7":12,"6":30,"5":56,"4":99,"3":37,"2":35,"1":24,"0":53}},{"d":"138,0r-131,-351r104,0r74,232r75,-232r97,0r-129,351r-90,0","w":365,"k":{"\u00bb":-2,"y":-7,"x":-4,"w":-7,"v":-7,"t":-6,"s":4,"q":12,"o":9,"g":12,"f":-7,"e":9,"d":8,"c":9,"a":4,"\\":12,"@":12,"\/":30,".":44,"-":12,",":44}},{"d":"261,9v-139,0,-204,-70,-204,-195r0,-294r101,0r0,286v0,82,30,119,106,119v71,0,100,-43,100,-113r0,-292r94,0r0,285v0,131,-66,204,-197,204","w":514,"k":{"z":12,"y":9,"x":12,"w":9,"v":9,"u":12,"t":9,"s":9,"r":12,"q":5,"p":9,"o":9,"n":12,"m":12,"l":6,"k":4,"j":11,"i":12,"h":4,"g":11,"e":9,"d":8,"c":9,"b":4,"a":13,"Z":3,"S":8,"Q":4,"O":4,"M":8,"J":9,"A":13,"@":6,";":4,":":4,"\/":37,".":14,",":14}},{"d":"125,-205r-63,-44r63,-74r-94,-27r25,-68r87,34r-5,-96r79,0r-5,96r87,-34r26,68r-95,27r64,74r-64,44r-52,-82","w":354},{"d":"19,116r0,-71r44,0v30,0,37,-19,37,-49r0,-113v-1,-53,30,-74,66,-87v-39,-12,-66,-38,-66,-91r0,-104v7,-55,-35,-49,-81,-48r0,-71v91,-3,169,-8,173,89v3,91,-24,192,82,188r0,72v-56,1,-82,26,-82,73r0,123v-4,97,-82,92,-173,89","w":292},{"d":"47,0r0,-351r93,0r0,44v25,-30,62,-52,112,-52v76,0,105,48,105,113r0,246r-96,0r0,-226v0,-35,-11,-53,-46,-53v-31,0,-58,25,-72,44r0,235r-96,0","k":{"y":9,"x":4,"w":6,"v":7,"\\":24,"\/":3}},{"d":"101,135v-40,0,-63,-3,-75,-5r14,-77v7,3,31,7,55,7v64,0,112,-27,112,-79v0,-53,-50,-72,-122,-72r0,-69v50,-1,109,-31,109,-77v0,-65,-108,-51,-134,-14r-44,-61v29,-24,74,-47,140,-47v89,0,138,46,138,107v1,62,-56,99,-96,113v55,6,112,48,112,119v0,96,-87,155,-209,155","w":329,"k":{"@":4,"8":7,"6":-4,"4":-2,"3":4,"2":-9,"\/":-14,"'":12,"%":7,"\"":12}},{"d":"28,-86r0,-73r288,0r0,73r-288,0xm28,-220r0,-74r288,0r0,74r-288,0","w":344,"k":{"3":4}},{"d":"181,9v-154,0,-102,-158,-111,-288r-56,0r0,-72r56,0r0,-101r95,0r0,101r82,0r0,72r-82,0r0,159v-11,62,56,54,81,37r23,71v-14,8,-44,21,-88,21","w":278,"k":{"\u00bb":-4,"g":10,"f":4,"e":4,"c":4,"a":-3,"\\":10,"@":6,".":-7,"-":6,",":-7}},{"d":"194,0r-185,-480r110,0r101,288v15,37,18,73,26,80v3,-9,12,-44,24,-80r97,-288r102,0r-178,480r-97,0","w":478,"k":{"\u00bb":19,"z":24,"y":13,"x":20,"w":12,"v":13,"u":30,"t":10,"s":37,"r":27,"q":38,"p":27,"o":42,"n":27,"m":27,"j":10,"i":13,"g":38,"f":7,"e":44,"d":40,"c":44,"a":40,"\\":-7,"Z":4,"Y":-12,"X":-5,"W":-7,"V":-4,"T":-13,"Q":15,"O":15,"M":17,"J":9,"G":14,"C":12,"A":37,"@":34,"?":-12,";":27,":":27,"\/":50,".":69,"-":33,",":69}},{"d":"143,9v-63,0,-102,-19,-124,-33r32,-67v14,20,143,51,144,-3v0,-24,-38,-30,-88,-54v-49,-23,-79,-51,-79,-104v0,-66,52,-107,131,-107v60,0,96,19,112,28r-33,65v-16,-19,-124,-39,-124,9v0,24,32,30,72,46v55,23,96,48,96,107v0,73,-53,113,-139,113","w":302,"k":{"y":4,"x":4,"q":-2,"o":-2,"g":5,"e":-2,"d":-2,"b":3,"a":-4,"\\":27,";":-2,":":-2,"\/":5,".":-2,"-":8,",":-2}},{"d":"68,-63r13,-90r-64,0r12,-69r63,0r9,-61r-64,0r11,-69r63,0r14,-87r66,0r-14,87r58,0r13,-87r67,0r-14,87r60,0r-12,69r-58,0r-9,61r59,0r-11,69r-59,0r-13,90r-66,0r13,-90r-57,0r-14,90r-66,0xm156,-220r61,0r10,-64r-61,0","w":378,"k":{"9":4,"8":7,"7":-19,"4":45,"1":-10,"0":7}},{"d":"47,0r0,-351r96,0r0,48v15,-26,43,-56,88,-56v26,0,40,5,48,9r-23,84v-6,-4,-17,-8,-37,-8v-42,0,-67,37,-76,53r0,221r-96,0","w":280,"k":{"\u00bb":-3,"y":-9,"x":-3,"w":-9,"v":-9,"t":-9,"o":4,"g":3,"f":-12,"e":8,"c":9,"@":4,";":-3,":":-3,"\/":36,".":48,"-":6,",":48}},{"d":"240,127r0,-127r-223,0r0,-60r234,-291r85,0r0,278r74,0r0,73r-74,0r0,127r-96,0xm120,-73r120,0r-1,-154","w":434,"k":{"@":6,"=":14,"<":26,"9":13,"7":4,"6":6,"5":7,"3":22,"2":4,"1":26,"0":10,".":4,"-":29,",":4,"+":19,"'":37,"%":36,"#":29,"\"":37}},{"d":"161,-19r0,-134r-131,0r0,-73r131,0r0,-130r82,0r0,130r131,0r0,73r-131,0r0,134r-82,0","w":403,"k":{"7":7,"4":16,"3":14,"2":12,"1":4}},{"d":"47,0r0,-351r93,0r0,44v18,-20,50,-52,106,-52v50,0,77,22,90,55v30,-33,62,-55,112,-55v74,0,100,48,100,113r0,246r-96,0r0,-226v0,-35,-10,-53,-42,-53v-30,0,-51,22,-65,39r0,240r-96,0r0,-226v0,-35,-12,-53,-41,-53v-35,0,-58,34,-65,43r0,236r-96,0","w":592,"k":{"y":7,"x":4,"w":6,"v":7,"\\":24,"\/":3}},{"d":"205,9v-117,0,-183,-74,-183,-186v0,-111,76,-182,173,-182v110,0,164,83,151,206r-221,0v4,52,31,90,89,90v48,0,74,-15,91,-24r31,62v-23,13,-59,34,-131,34xm123,-218r131,0v-1,-40,-16,-72,-60,-72v-41,0,-64,27,-71,72","w":373,"k":{"\u00bb":-3,"z":4,"y":9,"x":9,"w":3,"v":7,"d":-2,"\\":29,"?":4,"\/":12,".":6,",":4}},{"d":"192,9v-111,0,-169,-58,-169,-134v0,-64,33,-102,99,-138v-32,-38,-50,-70,-50,-109v0,-71,60,-116,143,-116v84,0,134,46,134,106v0,53,-36,90,-102,129r88,96v14,-25,24,-54,30,-86r82,14v-9,50,-28,96,-58,135r83,94r-116,0r-31,-35v-38,27,-85,44,-133,44xm204,-302v42,-26,57,-48,57,-75v0,-24,-18,-43,-46,-43v-69,0,-56,80,-11,118xm122,-132v0,72,108,84,153,41r-105,-116v-31,21,-48,43,-48,75","w":478},{"d":"304,-35v0,123,-138,194,-282,163r18,-76v65,20,162,-4,162,-82v0,-81,-85,-92,-160,-80r15,-241r237,0r0,74r-151,0r-5,88v106,2,166,63,166,154","w":327,"k":{"<":6,"7":-7,"4":-5,"2":-7,"1":-4,"0":4,"\/":-14,"-":10,"+":10}},{"d":"258,157r0,-185v-17,18,-46,37,-85,37v-88,0,-149,-62,-149,-182v0,-120,81,-186,186,-186v81,0,127,19,144,26r0,490r-96,0xm199,-67v30,0,53,-20,59,-27r0,-182v-6,-2,-21,-8,-47,-8v-55,0,-86,40,-86,111v0,66,22,106,74,106","w":398,"k":{"y":-2,"x":4,"w":3,"v":5,"u":3,"p":3,"l":3,"k":5,"j":-16,"h":5,"g":-2,"b":5,"\\":24,"?":4}},{"d":"281,-119v-71,0,-89,-42,-146,-42v-32,0,-52,18,-64,30r-44,-57v19,-19,58,-51,112,-51v66,0,83,42,146,42v28,0,52,-17,66,-30r43,56v-21,22,-61,52,-113,52","w":421},{"d":"64,0r0,-480r102,0r0,480r-102,0","w":233,"k":{"z":8,"y":8,"x":8,"w":9,"v":12,"u":8,"t":8,"s":6,"r":4,"q":6,"p":4,"o":6,"n":4,"m":4,"l":6,"k":4,"j":6,"i":13,"h":4,"g":7,"f":4,"e":4,"d":4,"c":4,"b":4,"J":4}},{"d":"45,0r0,-518r96,0r0,309r116,-142r104,0r-129,157r132,194r-111,0r-112,-171r0,171r-96,0","w":372,"k":{"z":-2,"y":-2,"x":-2,"t":-2,"q":9,"o":12,"g":9,"e":13,"d":9,"c":13,"\\":7,"@":9,"?":3,";":4,":":4,"\/":4,"-":21}},{"d":"438,126v-74,0,-134,-27,-207,-123v-128,-20,-200,-126,-200,-242v0,-130,87,-249,248,-249v302,0,327,429,69,489v30,54,108,61,152,30r32,67v-14,12,-47,28,-94,28xm279,-73v96,0,139,-77,139,-166v0,-89,-41,-167,-137,-167v-96,0,-142,75,-142,164v0,90,44,169,140,169","w":556,"k":{"z":4,"x":12,"j":-12,"i":4,"a":8,"\\":7,"Z":14,"Y":22,"X":24,"W":6,"V":15,"U":5,"T":9,"S":5,"M":4,"J":-23,"A":14,"?":7,".":22,",":22}},{"d":"230,116r-229,-634r93,0r229,634r-93,0","w":324,"k":{"y":-8,"x":7,"w":24,"v":36,"u":14,"t":24,"s":5,"r":3,"q":13,"o":13,"n":3,"m":3,"l":9,"k":3,"j":-48,"i":5,"h":3,"g":-8,"f":17,"e":13,"d":13,"c":11,"b":7,"Y":56,"X":4,"W":40,"V":56,"U":29,"T":33,"Q":29,"O":29,"J":-55,"G":26,"C":29}},{"d":"54,104v15,-23,30,-53,30,-77v0,-40,-43,-40,-43,-88v0,-32,26,-55,58,-55v37,0,69,29,69,79v0,50,-26,104,-53,141r-61,0xm103,-232v-35,0,-64,-27,-64,-62v0,-35,29,-62,64,-62v35,0,63,27,63,62v0,35,-28,62,-63,62","w":205},{"d":"107,0r-99,-351r103,0r53,224r2,0r59,-224r89,0r61,225r55,-225r96,0r-100,351r-87,0r-73,-235r-72,235r-87,0","w":534,"k":{"\u00bb":-4,"y":-5,"w":-7,"v":-7,"t":-6,"q":6,"o":4,"g":7,"f":-7,"e":6,"d":6,"c":6,"a":4,"\\":14,"@":8,"?":3,"\/":23,".":38,"-":8,",":38}},{"d":"46,-304r-20,-176r95,0r-10,176r-65,0xm167,-304r-11,-176r95,0r-20,176r-64,0","w":277,"k":{"9":12,"7":-10,"5":13,"4":92,"1":-4,"0":15}},{"d":"15,0r0,-43v68,-49,197,-137,197,-195v-1,-70,-115,-46,-141,-8r-47,-60v61,-73,291,-83,291,49v0,76,-84,139,-149,184v47,-5,123,-2,178,-3r0,76r-329,0","w":366,"k":{"@":4,"<":10,"9":10,"8":14,"7":7,"5":11,"3":14,"1":7,"-":10,"+":10,"'":22,"%":16,"#":7,"\"":22}},{"d":"149,9v-77,0,-105,-50,-105,-114r0,-246r96,0r0,226v0,35,11,54,46,54v37,0,65,-35,72,-44r0,-236r96,0v2,112,-8,260,10,351r-95,0v-3,-9,-6,-33,-7,-47v-19,24,-55,56,-113,56","k":{"\\":17,"\/":5}},{"d":"102,7v-35,0,-64,-27,-64,-62v0,-35,29,-61,64,-61v35,0,64,26,64,61v0,35,-29,62,-64,62","w":204},{"d":"143,0r0,-396r-133,0r0,-84r367,0r0,84r-132,0r0,396r-102,0","w":386,"k":{"\u00bb":26,"}":-8,"z":29,"y":41,"x":35,"w":35,"v":35,"u":35,"t":10,"s":47,"r":32,"q":48,"p":32,"o":53,"n":32,"m":32,"j":3,"i":10,"g":42,"f":6,"e":55,"d":46,"c":55,"a":48,"]":-8,"\\":-22,"Y":-14,"X":-8,"W":-14,"V":-13,"T":-15,"Q":9,"O":9,"M":12,"J":6,"G":6,"C":4,"A":31,"@":33,"?":-23,";":30,":":30,"\/":42,".":60,"-":38,",":60,")":-4}},{"d":"220,37v-29,100,-102,149,-218,125r14,-76v5,1,13,4,34,4v66,2,75,-50,93,-97r-132,-344r102,0r79,231r2,0r72,-231r98,0","w":372,"k":{"y":-4,"x":-2,"w":-9,"v":-7,"t":-5,"s":4,"q":13,"o":8,"l":4,"k":5,"h":5,"g":12,"f":-7,"e":12,"d":9,"c":9,"b":5,"a":5,"\\":17,"@":10,"?":7,"\/":40,".":51,"-":8,",":51}},{"d":"30,0r66,-480r98,0r97,296v14,35,17,72,26,83v4,-13,13,-48,25,-83r99,-296r98,0r67,480r-104,0r-40,-318r-101,318r-100,0r-82,-248v-11,-30,-13,-63,-21,-70v-1,11,-2,39,-6,71r-31,247r-91,0","w":635,"k":{"y":13,"w":9,"v":12,"u":7,"t":14,"o":4,"i":6,"g":4,"f":4,"e":4,"c":4,"\\":7,"Y":22,"W":9,"V":15,"U":8,"T":12,"Q":4,"O":4,"J":4,"G":7,"C":9,"?":5,"-":3}},{"d":"58,0r0,-480r158,0v104,0,184,49,184,152v0,118,-99,166,-239,157r0,171r-103,0xm161,-248v78,5,136,-9,136,-79v0,-65,-59,-81,-136,-75r0,154","w":425,"k":{"x":4,"w":-2,"u":11,"s":3,"r":8,"q":12,"p":8,"o":12,"n":8,"m":8,"i":17,"g":7,"e":16,"d":14,"c":14,"a":9,"\\":-3,"Z":12,"Y":6,"X":16,"V":6,"M":19,"J":8,"A":45,"@":7,"\/":53,".":79,"-":6,",":79}},{"d":"61,180r0,-720r84,0r0,720r-84,0","w":205},{"d":"109,7v-35,0,-61,-28,-61,-60v0,-32,26,-58,61,-58v35,0,61,26,61,58v0,32,-26,60,-61,60xm71,-162r-18,-318r113,0r-18,318r-77,0","w":218},{"d":"211,9v-131,0,-188,-95,-188,-183v0,-88,58,-185,189,-185v130,0,188,93,188,182v0,88,-59,186,-189,186xm212,-68v55,0,85,-39,85,-106v0,-67,-30,-109,-86,-109v-56,0,-86,39,-86,106v0,67,30,109,87,109","w":421,"k":{">":4,"7":4,"4":14,"3":7,"2":4,"\/":30,".":8,",":8,"'":15,"#":-7,"\"":15}},{"d":"141,0r-129,-480r108,0r61,251v10,38,15,88,18,88v1,-1,12,-53,21,-91r65,-248r100,0r64,247r21,91v16,-95,55,-240,79,-338r98,0r-131,480r-94,0r-69,-266r-21,-89v-1,1,-11,49,-22,89r-75,266r-94,0","w":658,"k":{"\u00bb":14,"z":15,"y":9,"x":17,"w":8,"v":9,"u":20,"t":6,"s":20,"r":22,"q":27,"p":22,"o":30,"n":22,"m":22,"j":9,"i":12,"g":30,"f":4,"e":31,"d":30,"c":35,"a":32,"\\":-12,"Y":-7,"X":-3,"W":-9,"V":-7,"T":-14,"Q":6,"O":7,"M":9,"J":8,"G":9,"C":8,"A":33,"@":22,"?":-8,";":21,":":21,"\/":45,".":58,"-":24,",":58}},{"d":"204,-14r-185,-165r184,-167r51,52r-124,113r126,111","w":281,"k":{"7":-14,"2":-14,"1":-4}},{"d":"78,-14r-50,-53r125,-112r-127,-112r52,-55r185,164","w":281,"k":{"7":10,"5":4,"4":31,"3":27,"2":20,"1":4}},{"d":"281,9v-161,0,-250,-118,-250,-248v0,-130,87,-249,248,-249v161,0,247,117,247,246v0,130,-84,251,-245,251xm279,-73v96,0,139,-77,139,-166v0,-89,-41,-167,-137,-167v-96,0,-142,75,-142,164v0,90,44,169,140,169","w":556,"k":{"z":7,"x":12,"i":7,"a":9,"\\":7,"Z":14,"Y":19,"X":24,"W":7,"V":15,"U":5,"T":9,"S":6,"M":4,"J":6,"A":14,"?":7,"\/":31,".":22,",":22}},{"d":"27,168v-35,0,-54,-5,-63,-9r17,-74v44,12,70,-2,70,-71r0,-365r97,0r0,375v0,87,-34,144,-121,144xm99,-396v-34,0,-59,-27,-59,-58v0,-30,25,-56,59,-56v35,0,59,26,59,56v0,31,-24,58,-59,58","w":198,"k":{"w":4,"j":-4,"g":4,"\\":-4}},{"d":"43,-304r-16,-176r98,0r-16,176r-66,0","w":151,"k":{"9":12,"7":-10,"5":13,"4":92,"1":-4,"0":15}},{"d":"140,-135v-82,0,-123,-53,-123,-111v0,-58,42,-113,124,-113v82,0,123,51,123,110v0,58,-42,114,-124,114xm141,-193v32,0,41,-24,41,-53v0,-29,-12,-55,-42,-55v-31,0,-41,22,-41,52v0,29,11,56,42,56xm485,9v-82,0,-122,-53,-122,-112v0,-58,42,-113,124,-113v81,0,121,51,121,111v0,58,-42,114,-123,114xm487,-50v32,0,40,-24,40,-53v0,-29,-12,-55,-42,-55v-31,0,-41,23,-41,53v0,28,12,55,43,55xm168,0r211,-351r80,0r-211,351r-80,0","w":625},{"d":"60,0r0,-480r101,0r0,209r163,-209r112,0r-176,223r184,257r-120,0r-163,-230r0,230r-101,0","w":453,"k":{"z":4,"y":32,"x":4,"w":24,"v":30,"u":20,"t":24,"s":11,"r":12,"q":18,"p":7,"o":22,"n":12,"m":12,"j":6,"i":13,"g":19,"f":12,"e":24,"d":20,"c":21,"a":10,"\\":-10,"U":4,"Q":27,"O":27,"J":4,"G":26,"C":29,"@":13,"?":-6,";":4,":":4,"\/":4,"-":32}},{"d":"71,-199v-12,-82,100,-86,100,-157v0,-65,-90,-62,-126,-36r-33,-71v25,-14,60,-25,112,-25v102,0,150,54,150,124v0,60,-35,91,-67,113v-40,27,-57,36,-52,90r-84,0r0,-38xm114,7v-35,0,-61,-28,-61,-60v0,-32,26,-58,61,-58v35,0,60,26,60,58v0,32,-25,60,-60,60","w":297},{"d":"52,104v15,-24,29,-53,29,-77v0,-40,-42,-40,-42,-88v0,-32,26,-55,58,-55v37,0,69,29,69,79v0,49,-24,103,-53,141r-61,0","w":204},{"d":"60,132r-20,-75v105,0,213,-45,224,-144v-94,65,-242,13,-242,-117v0,-94,77,-155,173,-155v129,0,174,102,174,210v0,171,-110,281,-309,281xm125,-209v0,87,96,94,144,52v2,-69,-18,-130,-77,-130v-39,0,-67,30,-67,78","w":394,"k":{"7":4,"3":14,"\/":12,"'":20,"#":-7,"\"":20}},{"d":"167,0r0,-181r-159,-299r113,0r102,204r101,-204r99,0r-154,299r0,181r-102,0","w":430,"k":{"\u00bb":30,"z":35,"y":30,"x":32,"w":27,"v":24,"u":42,"t":17,"s":48,"r":39,"q":53,"p":39,"o":60,"n":39,"m":39,"j":7,"i":9,"g":54,"f":13,"e":61,"d":53,"c":63,"a":51,"\\":-9,"Y":-6,"W":-7,"V":-12,"T":-14,"S":9,"Q":23,"O":20,"M":20,"J":13,"G":24,"C":22,"A":43,"@":47,"?":-8,";":38,":":38,"\/":66,".":72,"-":48,",":72}},{"d":"109,-38r-86,-138r86,-139r98,0r-85,139r85,138r-98,0xm269,-38r-86,-138r86,-139r98,0r-85,139r85,138r-98,0","w":388,"k":{"w":-6,"v":-6,"t":-6,"s":-2,"g":5,"f":-4,"Y":30,"X":3,"W":14,"V":19,"T":26,"S":-6}},{"d":"273,116v-91,3,-168,8,-172,-89v-4,-93,26,-200,-82,-196r0,-72v55,-1,82,-26,82,-73r0,-116v3,-97,81,-90,172,-88r0,71r-45,0v-62,2,-36,98,-36,154v0,53,-30,74,-65,87v38,12,65,38,65,91r0,111v-7,55,34,50,81,49r0,71","w":292,"k":{"y":-14,"j":-43,"T":-8,"J":-51}},{"d":"65,0r0,-279r-53,0r0,-72r53,0v-8,-107,36,-175,138,-176v51,0,76,12,85,17r-22,72v-6,-3,-23,-11,-49,-11v-49,0,-59,43,-56,98r83,0r0,72r-83,0r0,279r-96,0","w":262,"k":{"}":-35,"z":7,"y":4,"x":4,"u":9,"s":5,"r":9,"q":8,"p":9,"o":9,"n":9,"m":9,"l":-4,"k":-4,"j":4,"i":4,"h":-4,"g":9,"e":16,"d":7,"c":13,"b":-4,"a":9,"]":-35,"\\":-45,"@":8,"?":-28,";":8,":":8,"\/":35,".":45,"-":9,",":45,")":-39,"!":-6}},{"d":"115,89r0,-82v-45,-5,-77,-19,-96,-32r32,-68v18,12,52,30,92,30v43,0,61,-12,61,-31v0,-28,-51,-34,-99,-56v-46,-22,-78,-49,-78,-102v0,-53,33,-90,88,-102r0,-77r80,0r0,73v40,4,68,17,84,28r-34,65v-22,-23,-131,-40,-132,8v0,24,40,32,80,48v52,21,98,47,98,105v0,59,-35,96,-96,108r0,85r-80,0","w":306,"k":{"7":-11}},{"d":"37,-164r0,-78r164,0r0,78r-164,0","w":237,"k":{"z":3,"y":6,"x":20,"w":4,"v":8,"a":3,"Z":4,"Y":48,"X":41,"W":24,"V":33,"T":36,"S":14,"M":3,"J":8,"A":19,"4":31,"3":14,"2":12}},{"d":"193,9v-107,0,-166,-55,-166,-129v0,-53,33,-94,92,-126v-55,-32,-79,-67,-79,-115v0,-76,68,-127,152,-127v96,0,156,46,156,122v0,44,-31,78,-86,110v63,33,97,72,97,132v0,84,-70,133,-166,133xm193,-63v44,0,67,-27,67,-61v0,-29,-21,-53,-76,-83v-42,26,-61,52,-61,84v0,35,26,60,70,60xm197,-292v37,-24,54,-48,54,-71v0,-31,-20,-55,-56,-55v-36,0,-57,23,-57,53v0,26,17,49,59,73","w":385,"k":{"5":4,"3":19,"2":11,"1":7,"\/":29,".":4,",":4,"%":14}},{"d":"60,0r0,-480r144,0v189,0,275,96,275,234v0,138,-87,246,-278,246r-141,0xm161,-81v133,9,211,-36,211,-162v0,-123,-76,-164,-211,-155r0,317","w":508,"k":{"z":3,"x":12,"i":7,"a":9,"\\":8,"Z":17,"Y":17,"X":19,"W":9,"V":16,"T":12,"J":4,"A":23,"?":6,"\/":23,".":19,",":19}},{"d":"20,-38r87,-139r-87,-138r98,0r86,138r-86,139r-98,0xm181,-38r85,-139r-85,-138r97,0r87,138r-87,139r-97,0","w":388,"k":{"z":17,"y":20,"x":29,"w":13,"v":17,"f":3,"a":3,"Z":12,"Y":50,"X":29,"W":26,"V":37,"U":7,"T":45,"S":16,"J":4,"A":13}},{"d":"284,9v-165,0,-253,-119,-253,-249v0,-130,95,-248,261,-248v72,0,121,16,158,43r-45,76v-30,-22,-65,-35,-115,-35v-102,0,-151,70,-151,161v0,92,44,169,145,169v39,0,68,-8,85,-19r0,-95r-89,0r0,-78r186,0r0,229v-34,23,-90,46,-182,46","w":511,"k":{"z":3,"y":17,"x":11,"w":11,"v":18,"u":3,"i":4,"\\":7,"Z":3,"Y":16,"X":5,"W":9,"V":16,"U":4,"T":10,"S":-3,"J":4,"\/":14}},{"d":"12,0r119,-181r-115,-170r108,0r63,96r56,-96r99,0r-109,165r124,186r-108,0r-73,-112r-66,112r-98,0","w":367,"k":{"y":4,"w":4,"u":6,"q":13,"p":4,"o":15,"g":13,"f":6,"e":21,"d":12,"c":20,"a":4,"\\":27,"@":14,"?":4,";":4,":":4,"\/":3,".":4,"-":30,",":4}},{"d":"166,9v-88,0,-144,-66,-144,-183v0,-147,132,-228,239,-161r0,-183r95,0r0,418v0,42,5,77,10,100r-94,0v-3,-9,-6,-27,-7,-38v-24,29,-55,47,-99,47xm195,-68v28,0,52,-17,66,-35r0,-158v-15,-14,-35,-23,-62,-23v-49,0,-75,41,-75,110v0,67,22,106,71,106","k":{"}":-4,"]":-4,"\/":3}},{"d":"60,0r0,-480r101,0r0,189r215,0r0,-189r101,0r0,480r-101,0r0,-207r-215,0r0,207r-101,0","w":536,"k":{"z":4,"y":4,"x":4,"w":4,"v":4,"i":7}},{"d":"171,9v-78,0,-128,-31,-149,-48r44,-70v11,8,47,36,102,36v48,0,77,-25,77,-56v0,-42,-51,-55,-107,-83v-59,-29,-103,-65,-103,-143v0,-82,68,-133,154,-133v78,0,121,25,141,40r-41,71v-26,-27,-158,-54,-158,21v0,37,39,49,89,72v63,29,123,61,123,150v0,87,-65,143,-172,143","w":371,"k":{"z":6,"y":17,"x":14,"w":12,"v":15,"u":4,"t":8,"s":4,"r":4,"p":4,"n":4,"m":4,"i":6,"g":4,"f":6,"a":3,"Z":4,"Y":12,"X":6,"W":6,"V":8,"U":6,"J":6,"A":4,"@":-3,"\/":9,".":4,"-":3,",":4}},{"d":"173,-171r134,0r-41,-115v-16,-41,-20,-73,-27,-83v-11,46,-47,145,-66,198xm11,0r183,-480r98,0r188,480r-111,0r-33,-90r-191,0r-32,90r-102,0","w":489,"k":{"y":34,"w":24,"v":30,"u":8,"t":23,"q":6,"p":4,"o":10,"l":4,"k":4,"j":6,"i":3,"h":4,"g":12,"f":8,"e":8,"d":6,"c":9,"b":4,"a":5,"\\":41,"Y":39,"W":26,"V":36,"U":12,"T":31,"Q":17,"O":17,"J":4,"G":18,"C":20,"@":6,"?":4,".":-3,"-":19,",":-3,"!":4}},{"d":"61,0r0,-480r102,0r0,398r179,0r0,82r-281,0","w":370,"k":{"}":4,"y":35,"x":9,"w":27,"v":38,"u":11,"t":24,"s":7,"r":4,"q":7,"p":4,"o":11,"n":4,"m":4,"l":4,"k":4,"j":7,"i":12,"h":4,"g":12,"f":15,"e":13,"d":12,"c":13,"b":4,"]":4,"\\":34,"Y":54,"X":4,"W":34,"V":48,"U":20,"T":45,"S":4,"Q":25,"O":25,"J":5,"G":13,"C":17,"@":6,"?":9,".":-3,"-":31,",":-3,")":4,"!":6}},{"d":"14,0r152,-246r-145,-234r115,0r91,150r85,-150r102,0r-138,232r154,248r-115,0r-101,-166r-97,166r-103,0","w":443,"k":{"\u00bb":3,"z":4,"y":27,"x":4,"w":22,"v":23,"u":13,"t":19,"s":4,"r":4,"q":15,"p":4,"o":22,"n":4,"m":4,"j":7,"i":6,"g":20,"f":13,"e":22,"d":19,"c":22,"a":9,"Q":26,"O":24,"J":6,"G":23,"C":19,"@":15,";":8,":":8,"-":41}},{"d":"19,116r0,-71r88,0r0,-492r-88,0r0,-71r180,0r0,634r-180,0","w":245},{"d":"117,0r0,-268r-83,25r-20,-75r125,-33r73,0r0,351r-95,0","w":264,"k":{"\/":8,"'":7,"\"":7}},{"d":"200,9v-127,0,-176,-102,-176,-211v0,-169,115,-286,302,-286r21,76v-109,-1,-206,49,-217,147v22,-17,55,-28,93,-28v85,0,147,52,147,145v0,94,-73,157,-170,157xm203,-65v42,0,66,-34,66,-76v0,-93,-101,-93,-144,-53v-3,70,20,129,78,129","w":392,"k":{">":14,"7":9,"4":4,"3":18,"2":7,"1":12,"\/":26,".":4,",":4,"'":8,"\"":8}},{"d":"60,0r0,-480v145,2,323,-27,325,120v1,64,-37,93,-85,112v57,9,105,47,105,115v0,152,-189,134,-345,133xm160,-78v70,3,142,1,142,-64v0,-66,-69,-73,-142,-68r0,132xm160,-282v65,4,132,-3,125,-62v5,-57,-62,-61,-125,-58r0,120","w":433,"k":{"z":7,"y":7,"x":12,"w":5,"v":7,"t":4,"j":4,"i":7,"g":6,"\\":4,"Z":3,"Y":10,"X":8,"W":6,"V":9,"T":5,"A":5,"?":-4,"\/":14}},{"d":"1,121v55,-63,117,-165,117,-318v0,-149,-61,-256,-117,-321r91,0v61,63,129,171,129,318v0,152,-71,262,-129,321r-91,0","w":250},{"d":"108,145r-80,-39r177,-379r-191,0r0,-78r302,0r0,51","w":344,"k":{"@":18,">":4,"=":10,"<":32,";":8,":":8,"9":10,"8":12,"6":6,"5":20,"4":58,"2":7,"0":12,"\/":63,".":56,"-":8,",":56,"+":10,"'":4,"\"":4}},{"d":"277,9v-163,0,-246,-119,-246,-249v0,-130,86,-248,248,-248v63,0,107,14,144,38r-46,74v-27,-17,-56,-28,-100,-28v-90,0,-138,72,-138,161v0,91,46,167,140,167v52,0,83,-18,108,-37r42,71v-24,22,-82,51,-152,51","w":444,"k":{"\u00bb":-8,"}":-10,"y":20,"x":7,"w":17,"v":22,"u":6,"t":14,"o":5,"g":7,"f":4,"e":9,"c":4,"]":-10,"\\":-7,"Z":-6,"X":-4,"W":-3,"V":-4,"U":4,"T":-8,"S":-4,"Q":13,"O":13,"M":-4,"G":12,"C":12,"?":-16,".":-4,"-":17,",":-4,")":-8,"!":-4}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+316-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);})("j8F!~UD-gAeRj*W0SUv}q8qeBuD!FUeRBub}gAdMFfZKY2-PAUe`j8bLB&yos8y|YAOjF!t!s?O@s8W9d+m~`Wb4di7=YutoB*eufQme~IseSvF2qaq-ju!WbIft9iW6yfthXaShqIb!]Wd|+fOZq+OB%?|%gPhWQ2ZKXfWhS+LoYAb0FP#zX)dhS+LoYUb&`8dqy-vsAv-tDiqmD-sP]MDo~8W-j*qPjQtm%+LKh?!P]MLK~?!o]UtW~US-g*tM%AqRFP|M~&Wog&se`a-0gAY4]!74%2maSaSh]Pilj?ZLO*?)v8&qbj]sDX%#dQ+yfABYFg~hS`9=@PIiWUM4mT6KzRCot}2-!ua7|H0ZenlHs+qaB*7oB*7oB*7t98WRgabWFAth]UDC~BtaSaSh]UWRgabWFAth]UDC~Qii]}|-FBD-j8tCYuv-gAeR]U@ChadRYA!WjQWU~aq4XuiZ~?K6juimF!zIAuWSB+!oAuWS9Qi4jQL=")}catch(e){}delete _cufon_bridge_;return f})({"w":401,"face":{"font-family":"Kievit Bold","font-weight":700,"font-stretch":"normal","units-per-em":"720","panose-1":"2 0 5 3 5 0 0 2 0 4","ascent":"547","descent":"-173","x-height":"9","bbox":"-36 -540 647 180","underline-thickness":"14.4","underline-position":"-81.36","stemh":"71","stemv":"96","unicode-range":"U+0020-U+00E9"}}));

Cufon.registerFont((function(f){_cufon_bridge_={p:[{"d":"44,0r61,0r0,-166v0,-24,2,-44,7,-63v5,-19,12,-34,23,-47v11,-13,25,-23,42,-30v17,-7,39,-10,63,-10r0,-65v-33,-1,-60,6,-82,20v-22,14,-40,37,-55,67r-1,0r0,-78r-58,0r0,372","w":239,"k":{"q":13,"o":13,"n":-13,"g":20,"e":13,"d":13,"c":13,".":66,"-":40,",":66}},{"d":"354,-372r-61,0r0,210v0,17,-2,32,-7,46v-5,14,-11,27,-20,38v-9,11,-21,18,-35,24v-14,6,-29,9,-48,9v-24,0,-43,-8,-56,-21v-13,-13,-20,-31,-20,-54r0,-252r-61,0r0,245v0,20,2,38,6,55v4,17,11,30,21,42v10,12,24,22,40,29v16,7,37,10,61,10v27,0,51,-6,71,-17v20,-11,37,-28,50,-51r2,0r0,59r57,0r0,-372"},{"d":"287,-82r0,-62r-72,-56r72,-56r0,-62r-110,86r0,64xm145,-82r0,-62r-72,-56r72,-56r0,-62r-109,86r0,64","w":333},{"d":"78,-423r46,0r-62,-103r-79,0","w":159},{"d":"46,0r61,0r0,-232v0,-7,2,-16,6,-27v4,-11,9,-21,17,-31v8,-10,19,-19,31,-26v12,-7,28,-11,46,-11v13,0,24,2,33,6v9,4,17,11,22,18v5,7,9,16,11,26v2,10,3,21,3,33r0,244r62,0r0,-232v0,-29,8,-52,26,-69v18,-17,41,-26,71,-26v15,0,27,3,36,7v9,4,17,10,22,17v5,7,9,17,11,27v2,10,3,20,3,32r0,244r61,0r0,-273v0,-19,-3,-35,-9,-49v-6,-14,-14,-25,-25,-34v-11,-9,-24,-15,-39,-19v-15,-4,-32,-6,-51,-6v-24,0,-46,6,-67,17v-21,11,-37,26,-49,46v-8,-23,-21,-38,-40,-48v-19,-10,-40,-15,-63,-15v-52,0,-92,21,-120,63r-1,0r0,-54r-58,0r0,372","w":614},{"d":"50,0r61,0r0,-372r-61,0r0,372xm111,-514r-61,0r0,75r61,0r0,-75","w":159},{"d":"362,-253v-2,-22,-8,-41,-17,-57v-9,-16,-21,-29,-35,-40v-14,-11,-31,-18,-49,-23v-18,-5,-38,-8,-59,-8v-30,0,-56,6,-78,16v-22,10,-40,24,-55,42v-15,18,-25,39,-32,63v-7,24,-11,51,-11,79v0,28,4,53,11,76v7,23,18,43,33,60v15,17,33,31,55,40v22,9,47,14,75,14v47,0,84,-14,112,-39v28,-25,45,-60,52,-106r-62,0v-4,28,-15,51,-32,67v-17,16,-41,24,-71,24v-20,0,-36,-4,-50,-12v-14,-8,-24,-17,-33,-30v-9,-13,-15,-28,-19,-44v-4,-16,-6,-33,-6,-50v0,-19,1,-37,5,-55v4,-18,11,-33,20,-46v9,-13,20,-25,35,-33v15,-8,34,-12,56,-12v25,0,45,7,61,20v16,13,26,30,31,54r63,0","w":386},{"d":"17,143r51,0v9,0,18,-3,27,-7v9,-4,18,-10,25,-18v7,-8,13,-17,18,-29v5,-12,7,-26,7,-41r0,-131v0,-12,2,-24,5,-34v3,-10,8,-20,14,-27v6,-7,12,-13,19,-17v7,-4,14,-6,22,-6r0,-49v-8,0,-15,-2,-22,-6v-7,-4,-13,-10,-19,-17v-6,-7,-11,-16,-14,-27v-3,-11,-5,-22,-5,-35r0,-131v0,-15,-2,-29,-7,-41v-5,-12,-11,-21,-18,-29v-7,-8,-16,-14,-25,-18v-9,-4,-18,-6,-27,-6r-51,0r0,43r36,0v7,0,14,1,18,5v4,4,7,9,10,15v3,6,4,12,5,20v1,8,2,15,2,23r0,131v0,18,2,33,7,45v5,12,11,22,18,29v7,7,14,13,21,16v7,3,12,6,16,6r0,2v-4,1,-9,3,-16,7v-7,4,-14,10,-21,18v-7,8,-13,17,-18,29v-5,12,-7,26,-7,43r0,131v0,8,-1,16,-2,23v-1,7,-2,14,-5,20v-3,6,-6,10,-10,14v-4,4,-11,5,-18,5r-36,0r0,44","w":239},{"d":"60,0r80,0r0,-80r-80,0r0,80","w":200},{"d":"303,-118v-5,24,-16,43,-33,55v-17,12,-38,18,-63,18v-20,0,-38,-3,-53,-10v-15,-7,-27,-16,-37,-27v-10,-11,-17,-24,-21,-39v-4,-15,-5,-31,-5,-47r278,0v1,-23,-1,-46,-6,-71v-5,-25,-14,-48,-27,-69v-13,-21,-31,-38,-53,-52v-22,-14,-49,-21,-82,-21v-25,0,-49,5,-70,15v-21,10,-40,23,-56,40v-16,17,-27,37,-36,61v-9,24,-13,50,-13,78v1,28,6,54,13,78v7,24,18,45,33,62v15,17,33,31,55,41v22,10,47,15,77,15v42,0,78,-11,106,-33v28,-22,46,-53,54,-94r-61,0xm91,-222v1,-14,4,-27,9,-40v5,-13,13,-24,22,-34v9,-10,19,-17,32,-23v13,-6,27,-8,43,-8v15,0,29,2,42,8v13,6,25,14,34,23v9,9,16,20,22,33v6,13,9,27,10,41r-214,0","w":386},{"d":"55,0r65,0r0,-413r2,0r268,413r75,0r0,-514r-65,0r0,417r-1,0r-271,-417r-73,0r0,514","w":519},{"d":"46,0r61,0r0,-210v0,-17,2,-33,7,-47v5,-14,12,-26,21,-37v9,-11,20,-18,34,-24v14,-6,29,-9,48,-9v24,0,43,7,56,20v13,13,20,32,20,55r0,252r61,0r0,-245v0,-20,-2,-38,-6,-55v-4,-17,-11,-31,-21,-43v-10,-12,-24,-21,-40,-28v-16,-7,-37,-10,-61,-10v-27,0,-51,6,-71,17v-20,11,-37,28,-50,51r-1,0r0,-59r-58,0r0,372"},{"d":"336,-189v0,18,-2,36,-6,53v-4,17,-9,33,-18,46v-9,13,-21,24,-35,32v-14,8,-31,13,-52,13v-21,0,-39,-4,-54,-12v-15,-8,-28,-19,-37,-32v-9,-13,-16,-28,-20,-45v-4,-17,-7,-34,-7,-52v0,-17,2,-35,6,-52v4,-17,11,-32,20,-45v9,-13,21,-24,35,-32v14,-8,32,-12,53,-12v20,0,37,4,52,12v15,8,27,18,36,31v9,13,15,27,20,44v5,17,7,34,7,51xm48,143r61,0r0,-193r2,0v7,11,15,21,25,28v10,7,20,13,31,18v11,5,22,8,33,10v11,2,21,3,31,3v28,0,54,-6,75,-16v21,-10,39,-24,53,-42v14,-18,25,-37,32,-61v7,-24,10,-49,10,-75v0,-26,-4,-51,-11,-75v-7,-24,-18,-44,-32,-62v-14,-18,-32,-32,-53,-43v-21,-11,-46,-16,-75,-16v-26,0,-50,5,-72,14v-22,9,-37,24,-47,45r-2,0r0,-50r-61,0r0,515","w":426},{"d":"276,-130v0,9,-2,18,-6,28v-4,10,-11,19,-20,27v-9,8,-21,15,-35,21v-14,6,-32,9,-52,9v-10,0,-19,-1,-28,-3v-9,-2,-16,-6,-22,-10v-6,-4,-12,-10,-16,-17v-4,-7,-6,-15,-6,-25v0,-12,2,-21,6,-29v4,-8,9,-14,16,-19v7,-5,15,-9,24,-12v9,-3,19,-5,29,-7v10,-2,20,-4,31,-5v11,-1,21,-2,31,-4v10,-2,18,-4,27,-6v9,-2,15,-6,21,-10r0,62xm376,-49v-7,2,-13,4,-19,4v-10,0,-15,-3,-17,-10v-2,-7,-2,-18,-2,-32r0,-192v0,-22,-5,-39,-13,-52v-8,-13,-19,-25,-32,-32v-13,-7,-28,-12,-45,-14v-17,-2,-33,-4,-50,-4v-21,0,-40,3,-59,7v-19,4,-36,11,-50,21v-14,10,-25,22,-34,38v-9,16,-14,36,-15,59r62,0v1,-27,11,-46,28,-56v17,-10,38,-15,64,-15v10,0,20,1,30,2v10,1,18,5,26,9v8,4,15,11,20,19v5,8,7,19,7,32v0,12,-3,20,-10,26v-7,6,-15,11,-27,14v-12,3,-25,5,-40,7v-15,2,-31,5,-48,8v-16,3,-32,6,-47,11v-15,5,-28,11,-40,19v-12,8,-21,19,-28,32v-7,13,-11,31,-11,52v0,19,4,35,10,48v6,13,15,25,26,33v11,8,24,14,39,18v15,4,31,6,48,6v26,0,50,-5,72,-14v22,-9,42,-24,59,-44v0,20,5,35,14,44v9,9,22,14,38,14v18,0,33,-3,44,-10r0,-48","w":386},{"d":"36,-190r51,0r128,-259r131,259r50,0r-157,-312r-46,0","w":432},{"d":"16,0r409,0r0,-58r-328,0r319,-398r0,-58r-376,0r0,58r296,0r-320,398r0,58","w":439},{"d":"46,0r61,0r0,-210v0,-17,2,-33,7,-47v5,-14,12,-26,21,-37v9,-11,20,-18,34,-24v14,-6,29,-9,48,-9v24,0,43,7,56,20v13,13,20,32,20,55r0,252r61,0r0,-245v0,-20,-2,-38,-6,-55v-4,-17,-11,-31,-21,-43v-10,-12,-24,-21,-40,-28v-16,-7,-37,-10,-61,-10v-11,0,-22,2,-34,4v-12,2,-23,6,-34,11v-11,5,-20,12,-29,20v-9,8,-15,17,-20,28r-2,0r0,-196r-61,0r0,514"},{"d":"534,-372r-64,0r-83,304r-2,0r-78,-304r-67,0r-74,304r-2,0r-84,-304r-68,0r120,372r66,0r75,-296r1,0r76,296r65,0","w":545,"k":{".":40,",":40}},{"d":"56,0r69,0r0,-210r157,0v51,0,90,-13,117,-40v27,-27,40,-64,40,-112v0,-48,-13,-85,-40,-112v-27,-27,-66,-40,-117,-40r-226,0r0,514xm125,-456r133,0v39,0,68,8,86,24v18,16,27,39,27,70v0,31,-9,54,-27,70v-18,16,-47,24,-86,24r-133,0r0,-188","w":466,"k":{"A":53,".":129,",":129}},{"d":"186,-526r-134,0r0,669r134,0r0,-49r-77,0r0,-571r77,0r0,-49","w":186},{"d":"0,90r360,0r0,-36r-360,0r0,36","w":360},{"d":"379,-514r-61,0r0,191r-2,0v-7,-11,-15,-20,-25,-27v-10,-7,-20,-13,-31,-18v-11,-5,-22,-8,-33,-10v-11,-2,-21,-3,-31,-3v-28,0,-54,6,-75,16v-21,10,-39,24,-53,42v-14,18,-25,38,-32,61v-7,23,-10,49,-10,75v0,26,4,51,11,75v7,24,18,44,32,62v14,18,32,32,53,43v21,11,46,16,75,16v26,0,50,-5,72,-14v22,-9,37,-24,47,-45r2,0r0,50r61,0r0,-514xm91,-183v0,-18,1,-36,5,-53v4,-17,10,-33,19,-46v9,-13,20,-25,34,-33v14,-8,32,-12,53,-12v21,0,39,4,54,12v15,8,28,18,37,31v9,13,16,28,20,45v4,17,7,35,7,53v0,17,-2,34,-6,51v-4,17,-11,32,-20,45v-9,13,-22,24,-36,32v-14,8,-31,13,-52,13v-20,0,-37,-4,-52,-12v-15,-8,-27,-18,-36,-31v-9,-13,-15,-27,-20,-44v-5,-17,-7,-34,-7,-51","w":426},{"d":"56,0r69,0r0,-235r270,0r0,235r69,0r0,-514r-69,0r0,221r-270,0r0,-221r-69,0r0,514","w":519},{"d":"354,-372r-65,0r-104,304r-1,0r-109,-304r-69,0r147,370r-25,63v-6,11,-12,19,-20,25v-8,6,-18,9,-30,9v-6,0,-13,-1,-19,-3v-9,-3,-8,-3,-17,-6r0,57v7,2,14,4,21,5v7,1,14,1,21,1v13,0,25,-1,36,-5v11,-4,20,-10,28,-18v8,-8,16,-18,23,-30v7,-12,14,-28,21,-46","w":360,"k":{".":53,",":53}},{"d":"467,-514r-69,0r0,328v0,46,-11,81,-34,105v-23,24,-56,36,-100,36v-46,0,-80,-12,-105,-36v-25,-24,-37,-59,-37,-105r0,-328r-69,0r0,328v0,34,5,64,15,89v10,25,23,46,41,62v18,16,40,28,66,36v26,8,56,11,89,11v64,0,115,-17,150,-50v35,-33,53,-83,53,-148r0,-328","w":519},{"d":"206,-274v17,0,32,3,45,9v13,6,24,15,33,25v9,10,15,23,19,37v4,14,6,29,6,45v0,15,-2,30,-7,43v-5,13,-11,25,-20,36v-9,11,-19,19,-32,25v-13,6,-28,9,-44,9v-17,0,-32,-3,-45,-9v-13,-6,-24,-14,-33,-24v-9,-10,-16,-22,-21,-36v-5,-14,-7,-29,-7,-45v0,-16,2,-31,7,-45v5,-14,11,-27,20,-37v9,-10,21,-18,34,-24v13,-6,28,-9,45,-9xm359,-380v-4,-42,-18,-74,-43,-97v-25,-23,-59,-33,-101,-33v-36,0,-66,8,-90,23v-24,15,-44,36,-58,61v-14,25,-25,54,-31,87v-6,33,-9,67,-9,102v0,27,2,55,6,84v4,29,13,55,25,79v12,24,31,43,54,59v23,16,53,24,91,24v32,0,59,-6,81,-17v22,-11,40,-24,53,-41v13,-17,22,-35,28,-55v6,-20,9,-40,9,-59v0,-24,-4,-45,-11,-65v-7,-20,-18,-38,-31,-53v-13,-15,-30,-27,-49,-35v-19,-8,-42,-12,-66,-12v-28,0,-52,5,-73,16v-21,11,-40,27,-54,51r-1,-2v0,-20,2,-40,5,-63v3,-23,9,-44,18,-63v9,-19,21,-35,37,-48v16,-13,37,-19,63,-19v24,0,44,6,59,20v15,14,24,33,27,56r61,0"},{"d":"0,143r135,0r0,-669r-135,0r0,49r77,0r0,571r-77,0r0,49","w":186},{"d":"56,0r69,0r0,-180r85,-80r186,260r86,0r-225,-307r217,-207r-89,0r-260,256r0,-256r-69,0r0,514","w":480},{"d":"658,-514r-68,0r-105,428r-1,0r-114,-428r-74,0r-115,428r-2,0r-101,-428r-69,0r131,514r72,0r118,-432r2,0r117,432r72,0","w":666,"k":{"u":13,"r":13,"o":41,"e":41,"a":27,"A":17,";":13,":":13,".":53,",":53}},{"d":"194,143v-34,-55,-58,-111,-73,-165v-15,-54,-22,-112,-22,-172v0,-59,7,-116,21,-170v14,-54,39,-108,74,-162r-47,0v-37,49,-65,102,-84,160v-19,58,-29,115,-29,172v0,63,10,121,30,175v20,54,48,108,83,162r47,0","w":186},{"d":"50,0r61,0r0,-141r57,-53r128,194r78,0r-159,-237r148,-135r-82,0r-170,162r0,-304r-61,0r0,514","w":373},{"d":"196,-50v-20,0,-38,-4,-51,-12v-13,-8,-24,-19,-32,-33v-8,-14,-14,-29,-17,-46v-3,-17,-5,-34,-5,-51v0,-18,2,-35,6,-51v4,-16,10,-31,19,-43v9,-12,20,-23,34,-30v14,-7,31,-11,51,-11v19,0,36,4,49,12v13,8,25,17,33,30v8,13,14,27,18,43v4,16,6,32,6,48v0,17,-2,35,-6,52v-4,17,-10,33,-19,47v-9,14,-21,25,-35,33v-14,8,-31,12,-51,12xm367,-372r-57,0r0,53r-1,0v-11,-21,-26,-36,-46,-46v-20,-10,-41,-16,-65,-16v-32,0,-59,6,-81,18v-22,12,-41,29,-54,48v-13,19,-22,40,-28,63v-6,23,-9,46,-9,68v0,25,3,49,10,72v7,23,18,43,32,60v14,17,31,31,52,41v21,10,44,15,72,15v12,0,23,-1,35,-4v12,-3,23,-7,33,-13v10,-6,20,-12,28,-20v8,-8,15,-18,20,-30r2,0r0,24v0,21,-3,41,-7,58v-4,17,-10,32,-19,44v-9,12,-21,22,-35,29v-14,7,-31,10,-51,10v-10,0,-21,-1,-32,-3v-11,-2,-21,-5,-30,-10v-9,-5,-18,-11,-24,-19v-6,-8,-10,-17,-10,-28r-62,0v1,20,6,37,16,51v10,14,22,25,37,34v15,9,30,14,48,18v18,4,36,6,53,6v59,0,103,-16,131,-46v28,-30,42,-76,42,-137r0,-340","w":413},{"d":"486,-359v-4,-27,-12,-52,-24,-73v-12,-21,-28,-38,-47,-52v-19,-14,-40,-25,-64,-32v-24,-7,-50,-10,-77,-10v-40,0,-75,7,-105,21v-30,14,-56,34,-76,58v-20,24,-35,53,-46,86v-11,33,-16,68,-16,105v0,37,5,73,15,106v10,33,24,60,44,84v20,24,44,43,74,57v30,14,65,21,105,21v65,0,117,-18,155,-54v38,-36,60,-88,67,-152r-68,0v-1,21,-6,41,-13,59v-7,18,-17,35,-30,48v-13,13,-28,23,-46,30v-18,7,-37,12,-60,12v-31,0,-57,-6,-79,-18v-22,-12,-40,-27,-54,-46v-14,-19,-25,-42,-32,-68v-7,-26,-10,-55,-10,-84v0,-27,3,-52,10,-77v7,-25,18,-48,32,-67v14,-19,32,-34,54,-46v22,-12,48,-18,79,-18v18,0,34,2,50,7v16,5,30,12,43,21v13,9,23,20,32,34v9,14,15,30,19,48r68,0","w":519},{"d":"173,0r68,0r0,-456r172,0r0,-58r-412,0r0,58r172,0r0,456","w":413,"k":{"y":80,"w":80,"u":66,"s":80,"r":66,"o":80,"e":80,"c":80,"a":80,"A":66,";":80,":":80,".":80,"-":93,",":80}},{"d":"418,-364v-1,-28,-6,-53,-16,-73v-10,-20,-24,-37,-41,-50v-17,-13,-36,-24,-59,-30v-23,-6,-47,-9,-73,-9v-24,0,-47,3,-69,9v-22,6,-42,15,-60,27v-18,12,-31,28,-42,47v-11,19,-16,41,-16,67v0,24,6,43,15,58v9,15,21,29,37,39v16,10,33,18,53,24v20,6,39,11,60,15v21,4,41,9,61,14v20,5,37,10,52,17v15,7,28,16,37,27v9,11,15,25,15,43v0,19,-4,34,-12,46v-8,12,-18,22,-30,29v-12,7,-26,11,-42,14v-16,3,-32,5,-47,5v-20,0,-38,-3,-56,-8v-18,-5,-34,-12,-48,-22v-14,-10,-25,-22,-33,-38v-8,-16,-13,-34,-13,-56r-64,0v0,31,6,58,17,81v11,23,27,41,46,56v19,15,41,26,67,33v26,7,53,11,82,11v24,0,47,-2,71,-8v24,-6,45,-15,64,-27v19,-12,36,-29,48,-48v12,-19,18,-43,18,-70v0,-25,-5,-46,-14,-63v-9,-17,-22,-31,-37,-42v-15,-11,-33,-21,-53,-27v-20,-6,-39,-11,-60,-16v-21,-5,-41,-10,-61,-14v-20,-4,-37,-9,-53,-15v-16,-6,-28,-14,-37,-24v-9,-10,-14,-23,-14,-39v0,-17,4,-31,10,-42v6,-11,15,-20,26,-27v11,-7,23,-11,37,-14v14,-3,28,-5,42,-5v36,0,65,8,88,25v23,17,36,43,40,80r64,0","w":466},{"d":"56,0r69,0r0,-235r236,0r0,-58r-236,0r0,-163r269,0r0,-58r-338,0r0,514","w":413,"k":{"A":40,".":113,",":113}},{"d":"296,-107v-12,19,-29,34,-47,45v-18,11,-39,17,-63,17v-12,0,-24,-3,-36,-7v-12,-4,-22,-10,-31,-17v-9,-7,-16,-17,-22,-28v-6,-11,-8,-22,-8,-35v0,-15,2,-29,7,-40v5,-11,11,-22,19,-31v8,-9,18,-18,29,-25v11,-7,22,-13,34,-20xm384,0r80,0r-100,-116r14,-31v4,-9,7,-18,10,-27v3,-9,4,-18,6,-29v2,-11,4,-25,5,-40r-58,0v-1,27,-7,54,-17,80r-93,-113v12,-7,24,-15,36,-24v12,-9,22,-19,31,-30v9,-11,17,-23,22,-36v5,-13,8,-28,8,-43v0,-17,-4,-33,-11,-46v-7,-13,-16,-24,-28,-33v-12,-9,-25,-16,-40,-20v-15,-4,-30,-6,-46,-6v-19,0,-36,3,-50,9v-14,6,-26,13,-36,23v-10,10,-17,21,-22,34v-5,13,-8,26,-8,40v0,13,2,24,5,35v3,11,7,21,13,30v6,9,11,18,18,27r21,29v-16,9,-31,17,-46,27v-15,10,-28,22,-39,34v-11,12,-20,26,-26,41v-6,15,-9,33,-9,53v0,11,1,24,5,40v4,16,11,31,23,46v12,15,28,27,49,38v21,11,48,17,83,17v14,0,28,-2,42,-5v14,-3,28,-8,41,-14v13,-6,24,-13,35,-22v11,-9,20,-20,28,-32xm198,-316v-9,-11,-8,-11,-17,-22v-6,-7,-11,-15,-16,-22v-5,-7,-9,-14,-12,-22v-3,-8,-5,-15,-5,-23v0,-19,7,-33,19,-42v12,-9,26,-13,40,-13v18,0,33,5,44,16v11,11,15,24,15,39v0,11,-2,21,-6,30v-4,9,-10,17,-17,24v-7,7,-14,13,-22,19v-12,9,-12,9,-23,16","w":453},{"d":"30,-251v0,19,1,39,2,59v1,20,3,40,7,59v4,19,9,37,16,54v7,17,18,32,30,45v12,13,28,23,47,31v19,8,42,12,68,12v26,0,49,-4,68,-12v19,-8,35,-18,47,-31v12,-13,23,-28,30,-45v7,-17,12,-35,16,-54v4,-19,7,-39,8,-59v1,-20,1,-40,1,-59v0,-28,-1,-58,-4,-88v-3,-30,-10,-59,-21,-84v-11,-25,-28,-46,-51,-63v-23,-17,-54,-24,-94,-24v-40,0,-71,7,-94,24v-23,17,-40,38,-51,63v-11,25,-18,54,-21,84v-3,30,-4,60,-4,88xm95,-251r0,-42v0,0,2,-30,4,-45v2,-15,5,-30,9,-44v4,-14,10,-27,18,-38v8,-11,18,-19,30,-26v12,-7,27,-10,44,-10v17,0,32,3,44,10v12,7,22,15,30,26v8,11,14,24,18,38v4,14,7,29,9,44v2,15,4,30,4,45r0,42v0,19,-1,40,-2,64v-1,24,-5,46,-11,67v-6,21,-17,39,-31,53v-14,14,-35,22,-61,22v-26,0,-46,-8,-60,-22v-14,-14,-26,-32,-32,-53v-6,-21,-10,-43,-11,-67v-1,-24,-2,-45,-2,-64"},{"d":"510,1r-68,-54v26,-25,45,-55,58,-91v13,-36,20,-74,20,-113v0,-35,-6,-69,-16,-101v-10,-32,-25,-61,-46,-86v-21,-25,-46,-45,-77,-60v-31,-15,-66,-22,-107,-22v-41,0,-77,7,-108,22v-31,15,-56,35,-77,60v-21,25,-36,54,-46,86v-10,32,-16,66,-16,101v0,35,6,69,16,101v10,32,25,61,46,86v21,25,46,45,77,60v31,15,67,22,108,22v48,0,88,-10,123,-31r78,64xm288,-105r57,45v-22,10,-46,15,-71,15v-31,0,-58,-7,-81,-19v-23,-12,-41,-28,-55,-48v-14,-20,-25,-43,-32,-68v-7,-25,-10,-51,-10,-77v0,-26,3,-52,10,-77v7,-25,18,-48,32,-68v14,-20,32,-36,55,-48v23,-12,50,-19,81,-19v31,0,57,7,80,19v23,12,42,28,56,48v14,20,24,43,31,68v7,25,10,51,10,77v0,31,-4,62,-14,91v-10,29,-25,54,-45,74r-68,-55","w":547},{"d":"71,0r61,0r0,-318r72,0r0,-54r-72,0r0,-52v0,-16,5,-27,13,-33v8,-6,19,-9,34,-9v5,0,12,0,18,1v6,1,12,2,17,4r0,-53v-6,-2,-13,-3,-20,-4v-7,-1,-14,-2,-20,-2v-34,0,-58,8,-76,24v-18,16,-27,38,-27,68r0,56r-62,0r0,54r62,0r0,318","w":213,"k":{"f":13}},{"d":"73,0r50,0r21,-148r89,0r-21,148r50,0r21,-148r73,0r0,-49r-66,0r15,-108r71,0r0,-49r-64,0r21,-148r-50,0r-21,148r-89,0r21,-148r-50,0r-21,148r-80,0r0,49r74,0r-15,108r-78,0r0,49r70,0xm256,-305r-16,108r-89,0r15,-108r90,0"},{"d":"131,-484r-61,0r0,112r-64,0r0,54r64,0r0,237v0,17,2,30,5,41v3,11,8,19,15,25v7,6,17,10,28,12v11,2,24,3,40,3r47,0r0,-54r-28,0v-10,0,-17,0,-23,-1v-6,-1,-11,-3,-14,-5v-3,-2,-6,-6,-7,-10v-1,-4,-2,-10,-2,-17r0,-231r74,0r0,-54r-74,0r0,-112","w":226},{"d":"150,-423r46,0r94,-103r-78,0xm303,-118v-5,24,-16,43,-33,55v-17,12,-38,18,-63,18v-20,0,-38,-3,-53,-10v-15,-7,-27,-16,-37,-27v-10,-11,-17,-24,-21,-39v-4,-15,-5,-31,-5,-47r278,0v1,-23,-1,-46,-6,-71v-5,-25,-14,-48,-27,-69v-13,-21,-31,-38,-53,-52v-22,-14,-49,-21,-82,-21v-25,0,-49,5,-70,15v-21,10,-40,23,-56,40v-16,17,-27,37,-36,61v-9,24,-13,50,-13,78v1,28,6,54,13,78v7,24,18,45,33,62v15,17,33,31,55,41v22,10,47,15,77,15v42,0,78,-11,106,-33v28,-22,46,-53,54,-94r-61,0xm91,-222v1,-14,4,-27,9,-40v5,-13,13,-24,22,-34v9,-10,19,-17,32,-23v13,-6,27,-8,43,-8v15,0,29,2,42,8v13,6,25,14,34,23v9,9,16,20,22,33v6,13,9,27,10,41r-214,0","w":386},{"d":"16,0r314,0r0,-54r-238,0r228,-276r0,-42r-290,0r0,54r210,0r-224,271r0,47","w":345},{"d":"78,-328r49,0r0,-186r-49,0r0,186xm179,-328r49,0r0,-186r-49,0r0,186","w":306},{"d":"356,-230v-6,9,-7,9,-13,19v-4,6,-9,13,-14,18v-5,5,-10,10,-16,13v-6,3,-13,5,-20,5v-10,0,-21,-3,-34,-10v-13,-7,-26,-13,-39,-19v-14,-6,-28,-11,-41,-16v-13,-5,-27,-7,-39,-7v-12,0,-23,2,-32,6v-9,4,-18,8,-25,14v-7,6,-13,12,-19,19v-6,7,-10,15,-14,23r26,36v3,-6,5,-13,9,-19v4,-6,8,-13,13,-18v5,-5,11,-10,17,-13v6,-3,13,-5,21,-5v17,0,32,3,45,9v13,6,26,12,38,19v12,7,24,12,36,17v12,5,24,7,37,7v11,0,21,-1,30,-5v9,-4,17,-8,24,-14v7,-6,13,-13,19,-20v6,-7,12,-15,17,-23","w":432},{"d":"6,0r75,0r103,-154r104,154r78,0r-144,-201r129,-171r-74,0r-93,130r-89,-130r-78,0r129,176","w":372},{"d":"26,-186v0,27,3,53,11,77v8,24,20,43,35,61v15,18,35,32,57,42v22,10,48,15,78,15v29,0,54,-5,77,-15v23,-10,42,-24,57,-42v15,-18,27,-37,35,-61v8,-24,11,-50,11,-77v0,-27,-3,-52,-11,-76v-8,-24,-20,-44,-35,-62v-15,-18,-34,-32,-57,-42v-23,-10,-48,-15,-77,-15v-30,0,-56,5,-78,15v-22,10,-42,24,-57,42v-15,18,-27,38,-35,62v-8,24,-11,49,-11,76xm91,-186v0,-23,3,-42,9,-60v6,-18,14,-32,25,-44v11,-12,23,-22,37,-28v14,-6,29,-9,45,-9v16,0,31,3,45,9v14,6,26,16,37,28v11,12,19,26,25,44v6,18,9,37,9,60v0,23,-3,42,-9,60v-6,18,-14,32,-25,44v-11,12,-23,21,-37,27v-14,6,-29,10,-45,10v-16,0,-31,-4,-45,-10v-14,-6,-26,-15,-37,-27v-11,-12,-19,-26,-25,-44v-6,-18,-9,-37,-9,-60","w":413},{"d":"222,-526r-50,0v-9,0,-18,2,-27,6v-9,4,-18,10,-25,18v-7,8,-13,17,-18,29v-5,12,-8,26,-8,41r0,131v0,12,-2,24,-5,35v-3,11,-7,20,-13,27v-6,7,-12,13,-19,17v-7,4,-14,6,-22,6r0,49v15,0,29,7,41,22v12,15,18,36,18,62r0,131v0,15,3,29,8,41v5,12,11,21,18,29v7,8,16,14,25,18v9,4,18,7,27,7r50,0r0,-44r-36,0v-7,0,-13,-1,-17,-5v-4,-4,-7,-8,-10,-14v-3,-6,-5,-14,-6,-21v-1,-7,-1,-15,-1,-22r0,-131v0,-18,-3,-34,-8,-46v-5,-12,-10,-22,-17,-29v-7,-7,-14,-13,-21,-16v-7,-3,-13,-6,-17,-6r0,-2v4,-1,10,-3,17,-7v7,-4,14,-9,21,-17v7,-8,12,-18,17,-30v5,-12,8,-25,8,-42r0,-132v0,-8,0,-16,1,-23v1,-7,3,-14,6,-20v3,-6,6,-10,10,-14v4,-4,10,-5,17,-5r36,0r0,-43","w":239},{"d":"27,-257v0,35,6,69,16,101v10,32,25,61,46,86v21,25,46,45,77,60v31,15,67,22,108,22v41,0,76,-7,107,-22v31,-15,56,-35,77,-60v21,-25,36,-54,46,-86v10,-32,16,-66,16,-101v0,-35,-6,-69,-16,-101v-10,-32,-25,-61,-46,-86v-21,-25,-46,-45,-77,-60v-31,-15,-66,-22,-107,-22v-41,0,-77,7,-108,22v-31,15,-56,35,-77,60v-21,25,-36,54,-46,86v-10,32,-16,66,-16,101xm96,-257v0,-26,3,-52,10,-77v7,-25,18,-48,32,-68v14,-20,32,-36,55,-48v23,-12,50,-19,81,-19v31,0,57,7,80,19v23,12,42,28,56,48v14,20,24,43,31,68v7,25,10,51,10,77v0,26,-3,52,-10,77v-7,25,-17,48,-31,68v-14,20,-33,36,-56,48v-23,12,-49,19,-80,19v-31,0,-58,-7,-81,-19v-23,-12,-41,-28,-55,-48v-14,-20,-25,-43,-32,-68v-7,-25,-10,-51,-10,-77","w":547},{"d":"157,-240v12,-1,24,-2,37,-2v15,0,29,2,42,6v13,4,25,11,35,19v10,8,17,19,23,31v6,12,8,26,8,42v0,15,-3,29,-9,41v-6,12,-14,23,-24,31v-10,8,-22,15,-35,20v-13,5,-27,7,-42,7v-35,0,-62,-11,-80,-32v-18,-21,-28,-48,-29,-81r-61,0v0,26,3,50,11,71v8,21,19,38,34,52v15,14,33,25,54,32v21,7,45,12,71,12v24,0,47,-3,68,-10v21,-7,39,-17,55,-30v16,-13,29,-30,38,-49v9,-19,14,-42,14,-67v0,-31,-7,-57,-22,-80v-15,-23,-39,-37,-70,-44r0,-1v20,-9,36,-23,50,-41v14,-18,21,-38,21,-61v0,-24,-4,-44,-12,-61v-8,-17,-19,-31,-33,-42v-14,-11,-30,-19,-49,-25v-19,-6,-40,-8,-62,-8v-25,0,-48,4,-67,12v-19,8,-36,20,-49,34v-13,14,-23,31,-30,51v-7,20,-11,43,-12,67r62,0v0,-15,1,-29,5,-42v4,-13,10,-25,18,-35v8,-10,18,-18,30,-24v12,-6,26,-9,43,-9v26,0,48,6,65,20v17,14,26,35,26,62v0,14,-3,26,-8,36v-5,10,-12,19,-21,26v-9,7,-19,12,-31,16v-12,4,-24,5,-37,5r-13,0v-4,0,-9,-1,-14,-1r0,52"},{"d":"93,-330v0,-15,1,-30,5,-45v4,-15,9,-29,17,-41v8,-12,19,-22,32,-29v13,-7,27,-11,45,-11v13,0,26,2,38,6v12,4,23,11,32,19v9,8,16,18,21,29v5,11,8,24,8,38v0,18,-2,33,-8,46v-6,13,-14,26,-25,38v-11,12,-25,23,-41,34v-16,11,-34,24,-56,37v-18,11,-36,22,-52,34v-16,12,-30,26,-43,42v-13,16,-23,35,-32,56v-9,21,-15,47,-17,77r334,0r0,-54r-262,0v3,-16,9,-30,18,-42v9,-12,21,-23,34,-34v13,-11,27,-21,43,-30r48,-29v16,-10,31,-20,46,-31v15,-11,28,-23,40,-37v12,-14,20,-30,27,-47v7,-17,11,-37,11,-60v0,-24,-5,-45,-13,-63v-8,-18,-20,-34,-34,-46v-14,-12,-32,-22,-51,-28v-19,-6,-40,-9,-62,-9v-27,0,-51,4,-72,13v-21,9,-39,22,-53,38v-14,16,-24,35,-31,57v-7,22,-9,46,-8,72r61,0"},{"d":"55,154r49,0r0,-720r-49,0r0,720","w":159},{"d":"302,-510r-49,0r-233,331r0,59r224,0r0,120r58,0r0,-120r69,0r0,-54r-69,0r0,-336xm73,-174r170,-249r1,0r0,249r-171,0"},{"d":"22,-117v1,23,6,42,15,58v9,16,20,29,34,39v14,10,32,17,50,22v18,5,38,7,59,7v19,0,38,-2,57,-6v19,-4,36,-11,51,-20v15,-9,27,-21,36,-36v9,-15,14,-34,14,-56v0,-18,-3,-32,-10,-44v-7,-12,-16,-22,-27,-30v-11,-8,-24,-14,-39,-19v-15,-5,-30,-10,-45,-13v-22,-5,-21,-4,-43,-9v-14,-3,-27,-7,-39,-12v-12,-5,-22,-10,-29,-17v-7,-7,-11,-15,-11,-26v0,-9,2,-17,7,-23v5,-6,11,-11,19,-15v8,-4,17,-7,26,-8v9,-1,18,-2,27,-2v10,0,20,1,30,3v10,2,19,6,27,11v8,5,14,11,20,19v6,8,9,18,10,30r61,0v-1,-23,-7,-42,-15,-57v-8,-15,-18,-27,-32,-36v-14,-9,-30,-14,-48,-18v-18,-4,-37,-6,-58,-6v-16,0,-32,2,-49,6v-17,4,-32,11,-45,19v-13,8,-24,20,-32,33v-8,13,-13,29,-13,48v0,18,4,33,11,45v7,12,15,21,27,29v12,8,25,14,39,19v14,5,30,9,45,12r45,10v15,3,28,7,39,12v11,5,20,11,27,18v7,7,11,17,11,29v0,12,-3,22,-9,29v-6,7,-13,13,-22,17v-9,4,-18,6,-29,7v-11,1,-20,3,-30,3v-12,0,-25,-2,-37,-4v-12,-2,-22,-6,-31,-12v-9,-6,-17,-13,-23,-22v-6,-9,-9,-20,-9,-34r-62,0","w":360},{"d":"366,-502r-330,0r0,58r268,0v-27,28,-52,59,-75,93v-23,34,-44,69,-62,107v-18,38,-33,77,-44,118v-11,41,-18,83,-21,126r69,0v2,-40,9,-81,20,-123v11,-42,25,-83,43,-123v18,-40,37,-78,60,-113v23,-35,46,-65,72,-90r0,-53"},{"d":"40,143v37,-49,65,-103,84,-161v19,-58,29,-114,29,-171v0,-32,-3,-62,-8,-91v-5,-29,-13,-57,-23,-85v-10,-28,-22,-54,-36,-81v-14,-27,-29,-53,-46,-80r-47,0v34,55,58,110,73,164v15,54,22,113,22,173v0,59,-8,115,-22,169v-14,54,-38,109,-73,163r47,0","w":186},{"d":"60,0r80,0r0,-80r-80,0r0,80xm140,-372r-80,0r0,80r80,0r0,-80","w":200},{"d":"-13,12r53,0r213,-538r-53,0","w":239},{"d":"56,0r341,0r0,-58r-272,0r0,-456r-69,0r0,514","k":{"y":27,"Y":80,"W":40,"V":66,"T":66}},{"d":"294,-340v0,15,-2,30,-7,43v-5,13,-12,26,-21,36v-9,10,-20,18,-33,24v-13,6,-27,9,-43,9v-15,0,-29,-3,-41,-9v-12,-6,-22,-14,-31,-24v-9,-10,-16,-21,-21,-34v-5,-13,-8,-27,-8,-41v0,-16,2,-31,6,-45v4,-14,9,-27,17,-38v8,-11,18,-20,31,-27v13,-7,28,-10,46,-10v17,0,33,3,46,9v13,6,23,14,32,25v9,11,16,24,21,38v5,14,6,28,6,44xm35,-123v2,22,8,41,16,57v8,16,20,31,33,42v13,11,29,18,47,24v18,6,37,9,59,9v62,0,107,-24,135,-72v28,-48,42,-115,42,-203v0,-48,-5,-88,-14,-120v-9,-32,-22,-57,-38,-75v-16,-18,-34,-31,-55,-38v-21,-7,-44,-11,-68,-11v-24,0,-46,4,-67,12v-21,8,-39,19,-54,34v-15,15,-26,33,-34,53v-8,20,-13,43,-13,67v0,25,4,48,11,69v7,21,17,39,31,54v14,15,31,27,51,35v20,8,43,12,69,12v25,0,48,-6,69,-19v21,-13,37,-29,49,-51r1,1v-2,66,-12,116,-31,149v-19,33,-47,49,-84,49v-24,0,-45,-8,-63,-21v-18,-13,-29,-32,-31,-57r-61,0"},{"w":200},{"d":"59,0r68,0r0,-514r-68,0r0,514","w":186},{"d":"336,-189v0,18,-2,36,-6,53v-4,17,-9,33,-18,46v-9,13,-21,24,-35,32v-14,8,-31,13,-52,13v-21,0,-39,-4,-54,-12v-15,-8,-28,-19,-37,-32v-9,-13,-16,-28,-20,-45v-4,-17,-7,-34,-7,-52v0,-17,2,-35,6,-52v4,-17,11,-32,20,-45v9,-13,21,-24,35,-32v14,-8,32,-12,53,-12v20,0,37,4,52,12v15,8,27,18,36,31v9,13,15,27,20,44v5,17,7,34,7,51xm48,0r61,0r0,-50r2,0v7,11,15,21,25,28v10,7,20,13,31,18v11,5,22,8,33,10v11,2,21,3,31,3v28,0,54,-6,75,-16v21,-10,39,-24,53,-42v14,-18,25,-37,32,-61v7,-24,10,-49,10,-75v0,-26,-4,-51,-11,-75v-7,-24,-18,-44,-32,-62v-14,-18,-32,-32,-53,-43v-21,-11,-46,-16,-75,-16v-26,0,-50,5,-72,14v-22,9,-37,24,-47,45r-2,0r0,-192r-61,0r0,514","w":426},{"d":"36,-171r208,0r0,-58r-208,0r0,58","w":280},{"d":"60,0r42,0v0,6,0,12,-1,19v-1,7,-4,14,-7,21v-3,7,-7,13,-13,18v-6,5,-13,9,-21,12r0,36v28,-8,49,-22,61,-42v12,-20,19,-44,19,-71r0,-73r-80,0r0,80","w":200},{"d":"47,-318r0,62r72,56r-72,56r0,62r109,-86r0,-64xm188,-318r0,62r72,56r-72,56r0,62r109,-86r0,-64","w":333},{"d":"318,-514r-69,0r0,376v0,28,-6,50,-18,67v-12,17,-33,26,-64,26v-17,0,-30,-3,-41,-8v-11,-5,-20,-12,-26,-21v-6,-9,-10,-21,-12,-33v-2,-12,-4,-26,-4,-41r0,-21r-68,0r0,31v0,48,13,86,39,112v26,26,63,38,111,38v29,0,53,-4,72,-12v19,-8,35,-19,47,-32v12,-13,20,-28,25,-45v5,-17,8,-34,8,-51r0,-386","w":373},{"d":"58,0r64,0r0,-428r2,0r160,428r59,0r160,-428r2,0r0,428r65,0r0,-514r-94,0r-163,432r-162,-432r-93,0r0,514","w":627},{"d":"135,16r62,0r387,-536r-61,0xm422,-134v0,20,2,39,6,56v4,17,11,32,20,45v9,13,21,23,36,30v15,7,33,12,55,12v21,0,37,-5,52,-13v15,-8,27,-19,36,-32v9,-13,17,-28,21,-46v4,-18,6,-35,6,-54v0,-20,-2,-38,-6,-56v-4,-18,-9,-33,-18,-46v-9,-13,-21,-23,-36,-31v-15,-8,-33,-11,-55,-11v-22,0,-41,4,-56,12v-15,8,-27,19,-36,32v-9,13,-15,29,-19,47v-4,18,-6,36,-6,55xm476,-135v0,-11,1,-23,2,-35v1,-12,4,-24,9,-34v5,-10,11,-19,19,-26v8,-7,20,-10,33,-10v13,0,24,3,32,10v8,7,15,16,19,26v4,10,7,22,8,34v1,12,2,23,2,34v0,11,-1,23,-2,35v-1,12,-4,24,-9,34v-5,10,-12,19,-20,26v-8,7,-20,10,-33,10v-13,0,-24,-3,-32,-10v-8,-7,-14,-16,-18,-26v-4,-10,-7,-22,-8,-34v-1,-12,-2,-23,-2,-34xm66,-364v0,20,2,38,6,55v4,17,11,32,20,45v9,13,21,24,36,31v15,7,33,11,55,11v21,0,38,-4,53,-12v15,-8,27,-19,36,-32v9,-13,16,-28,20,-46v4,-18,6,-35,6,-54v0,-20,-1,-38,-5,-56v-4,-18,-10,-33,-19,-46v-9,-13,-21,-23,-36,-31v-15,-8,-33,-11,-55,-11v-22,0,-41,3,-56,11v-15,8,-27,19,-36,32v-9,13,-15,29,-19,47v-4,18,-6,37,-6,56xm120,-366v0,-11,1,-22,2,-34v1,-12,4,-25,9,-35v5,-10,11,-18,19,-25v8,-7,20,-11,33,-11v13,0,24,4,32,11v8,7,15,15,19,25v4,10,7,22,8,34v1,12,2,24,2,35v0,11,-1,23,-2,35v-1,12,-4,24,-9,34v-5,10,-12,19,-20,26v-8,7,-19,10,-32,10v-13,0,-24,-4,-32,-11v-8,-7,-15,-16,-19,-26v-4,-10,-7,-22,-8,-34v-1,-12,-2,-23,-2,-34","w":720},{"d":"145,-514r-38,0r0,81r-77,-29r-13,35r77,27r-47,66r32,22r47,-69r50,69r29,-22r-47,-66r78,-27r-14,-35r-77,29r0,-81","w":253},{"d":"50,0r61,0r0,-514r-61,0r0,514","w":159},{"d":"33,6r366,-166r0,-44r-366,-166r0,49r306,139r-306,139r0,49","w":432},{"d":"125,-277r0,-179r169,0v32,0,56,7,70,24v14,17,22,38,22,63v0,19,-4,34,-10,46v-6,12,-15,21,-26,28v-11,7,-24,12,-38,14v-14,2,-29,4,-45,4r-142,0xm56,0r69,0r0,-220r167,0v16,0,30,3,40,8v10,5,18,12,24,20v6,8,11,19,14,30v3,11,5,23,7,35v2,12,5,25,5,38v0,13,1,26,1,37v0,11,1,21,3,30v2,9,5,17,10,22r76,0v-7,-9,-12,-19,-16,-30v-4,-11,-6,-23,-8,-35v-2,-12,-2,-25,-3,-38v-1,-13,-2,-27,-3,-39v-1,-12,-4,-24,-6,-36v-2,-12,-6,-22,-12,-31v-6,-9,-14,-17,-23,-24v-9,-7,-21,-12,-36,-15r0,-1v31,-9,54,-24,68,-48v14,-24,21,-51,21,-82v0,-41,-13,-75,-41,-99v-28,-24,-67,-36,-115,-36r-242,0r0,514","w":493,"k":{"Y":27,"W":13,"V":13,"T":13}},{"d":"240,-364r-48,0r0,157r-157,0r0,49r157,0r0,158r48,0r0,-158r157,0r0,-49r-157,0r0,-157","w":432},{"d":"379,-372r-61,0r0,49r-2,0v-7,-11,-15,-20,-25,-27v-10,-7,-20,-13,-31,-18v-11,-5,-22,-8,-33,-10v-11,-2,-21,-3,-31,-3v-28,0,-54,6,-75,16v-21,10,-39,24,-53,42v-14,18,-25,38,-32,61v-7,23,-10,49,-10,75v0,26,4,51,11,75v7,24,18,44,32,62v14,18,32,32,53,43v21,11,46,16,75,16v26,0,50,-5,72,-14v22,-9,37,-24,47,-45r2,0r0,193r61,0r0,-515xm91,-183v0,-18,1,-36,5,-53v4,-17,10,-33,19,-46v9,-13,20,-25,34,-33v14,-8,32,-12,53,-12v21,0,39,4,54,12v15,8,28,18,37,31v9,13,16,28,20,45v4,17,7,35,7,53v0,17,-2,34,-6,51v-4,17,-11,32,-20,45v-9,13,-22,24,-36,32v-14,8,-31,13,-52,13v-20,0,-37,-4,-52,-12v-15,-8,-27,-18,-36,-31v-9,-13,-15,-27,-20,-44v-5,-17,-7,-34,-7,-51","w":426},{"d":"350,-372r-64,0r-102,310r-1,0r-105,-310r-68,0r138,372r66,0","w":360,"k":{".":53,",":53}},{"d":"94,-144v0,-15,2,-28,8,-40v6,-12,13,-22,23,-31v10,-9,21,-15,34,-20v13,-5,28,-7,43,-7v14,0,27,3,40,8v13,5,24,11,34,20v10,9,16,19,22,31v6,12,9,24,9,38v0,14,-3,28,-8,40v-5,12,-12,22,-21,31v-9,9,-21,16,-34,21v-13,5,-27,8,-42,8v-32,0,-58,-9,-78,-27v-20,-18,-30,-41,-30,-72xm47,-380v0,23,6,45,19,64v13,19,30,33,52,42v-29,10,-51,26,-66,48v-15,22,-23,49,-23,79v0,26,4,49,13,68v9,19,21,36,37,49v16,13,34,23,55,29v21,6,44,10,68,10v24,0,46,-4,67,-11v21,-7,38,-17,53,-30v15,-13,27,-30,36,-49v9,-19,14,-42,14,-66v0,-32,-8,-58,-23,-80v-15,-22,-37,-37,-68,-47v21,-10,38,-24,51,-43v13,-19,19,-40,19,-63v0,-16,-2,-32,-8,-48v-6,-16,-15,-30,-27,-42v-12,-12,-28,-22,-48,-29v-20,-7,-43,-11,-71,-11v-20,0,-39,2,-57,8v-18,6,-34,14,-48,25v-14,11,-25,25,-33,41v-8,16,-12,35,-12,56xm112,-378v0,-13,2,-24,7,-34v5,-10,11,-17,19,-24v8,-7,17,-12,28,-15v11,-3,23,-5,35,-5v25,0,45,6,61,19v16,13,25,33,25,59v0,26,-8,46,-24,60v-16,14,-37,22,-61,22v-12,0,-24,-2,-35,-5v-11,-3,-21,-8,-29,-15v-8,-7,-14,-16,-19,-26v-5,-10,-7,-22,-7,-36"},{"d":"397,-279r-362,0r0,49r362,0r0,-49xm35,-85r362,0r0,-49r-362,0r0,49","w":432},{"d":"-1,0r77,0r143,-212r138,212r84,0r-181,-264r170,-250r-76,0r-134,201r-129,-201r-82,0r170,250","w":439},{"d":"465,-514r-78,0r-150,245r-154,-245r-82,0r199,304r0,210r69,0r0,-210","w":466,"k":{"v":40,"u":53,"q":66,"p":53,"o":80,"i":27,"e":80,"a":66,"A":53,";":66,":":66,".":100,"-":80,",":100}},{"d":"127,-514r-68,0r0,158r18,224r32,0r18,-224r0,-158xm53,0r80,0r0,-80r-80,0r0,80","w":186},{"d":"56,0r177,0v43,0,79,-6,110,-18v31,-12,57,-29,77,-52v20,-23,35,-51,45,-84v10,-33,15,-72,15,-115v0,-83,-22,-145,-65,-185v-43,-40,-103,-60,-182,-60r-177,0r0,514xm125,-456r115,0v32,0,58,4,80,13v22,9,39,22,53,39v14,17,23,38,29,62v6,24,9,51,9,82v0,32,-4,59,-10,81v-6,22,-14,41,-24,56v-10,15,-22,26,-35,35v-13,9,-25,15,-38,20v-13,5,-25,8,-37,9v-12,1,-21,1,-29,1r-113,0r0,-398","w":506},{"d":"181,-300v-12,-3,-23,-8,-33,-12v-10,-4,-20,-9,-27,-15v-7,-6,-13,-13,-17,-22v-4,-9,-6,-20,-6,-33v0,-27,8,-48,24,-62v16,-14,36,-23,59,-25r0,169xm220,-226v13,4,25,8,37,13v12,5,22,9,30,16v8,7,14,15,19,25v5,10,7,21,7,34v0,15,-2,29,-7,40v-5,11,-11,21,-19,28v-8,7,-19,13,-30,17v-11,4,-24,7,-37,8r0,-181xm18,-157v4,50,20,89,49,118v29,29,66,46,114,51r0,59r39,0r0,-59v23,-2,45,-6,64,-14v19,-8,35,-19,49,-32v14,-13,25,-30,33,-48v8,-18,12,-39,12,-62v0,-22,-5,-41,-13,-57v-8,-16,-18,-28,-30,-39v-12,-11,-25,-19,-38,-25v-13,-6,-24,-11,-33,-13r-44,-11r0,-178v44,8,71,36,81,84r61,0v-10,-42,-26,-75,-49,-99v-23,-24,-54,-39,-93,-44r0,-48r-39,0r0,48v-21,1,-40,5,-58,13v-18,8,-34,19,-47,32v-13,13,-23,28,-31,46v-8,18,-12,38,-12,60v0,21,3,39,9,54v6,15,15,27,27,38v12,11,28,20,46,27v18,7,41,14,66,20r0,191v-29,-5,-53,-17,-72,-36v-19,-19,-29,-44,-30,-76r-61,0"},{"d":"125,-235r156,0v14,0,29,1,42,4v13,3,25,7,35,13v10,6,19,15,25,26v6,11,9,25,9,42v0,28,-9,51,-26,68v-17,17,-40,24,-70,24r-171,0r0,-177xm56,0r249,0v25,0,48,-5,67,-13v19,-8,36,-19,49,-33v13,-14,23,-29,30,-47v7,-18,10,-36,10,-55v0,-32,-8,-58,-25,-80v-17,-22,-41,-36,-73,-43r0,-2v24,-10,43,-24,56,-44v13,-20,20,-44,20,-71v0,-25,-5,-47,-17,-65v-12,-18,-26,-32,-43,-42v-8,-5,-17,-9,-28,-11v-11,-2,-23,-5,-35,-6v-12,-1,-25,-2,-37,-2r-36,0r-187,0r0,514xm125,-456r136,0v15,0,29,0,42,2v13,2,25,5,35,11v10,6,18,14,24,25v6,11,9,25,9,43v0,27,-9,47,-26,61v-17,14,-45,21,-84,21r-136,0r0,-163","w":493},{"d":"111,-372r-61,0r0,409v0,19,-3,33,-8,40v-5,7,-14,12,-27,12r-13,0v-4,0,-8,-1,-12,-2r0,53v5,1,11,2,16,2v5,0,11,1,16,1v27,0,49,-8,65,-23v16,-15,24,-39,24,-72r0,-420xm111,-514r-61,0r0,75r61,0r0,-75","w":159},{"d":"441,-514r-71,0r-148,446r-2,0r-147,-446r-74,0r182,514r77,0","w":439,"k":{"y":13,"u":27,"r":27,"o":40,"i":13,"e":40,"a":40,"A":33,";":33,":":33,".":93,"-":40,",":93}},{"d":"40,-526r-53,0r213,538r53,0","w":239},{"d":"459,0r43,0r0,-271r-226,0r0,58r165,0v1,24,-2,46,-9,66v-7,20,-18,38,-32,53v-14,15,-32,27,-53,36v-21,9,-45,13,-71,13v-29,0,-54,-6,-76,-17v-22,-11,-40,-27,-55,-46v-15,-19,-26,-40,-34,-65v-8,-25,-12,-51,-12,-78v0,-27,3,-54,10,-80v7,-26,18,-50,32,-70v14,-20,32,-37,54,-49v22,-12,50,-19,81,-19v19,0,37,2,54,7v17,5,33,12,46,21v13,9,25,21,34,35v9,14,15,31,18,50r69,0v-5,-30,-14,-56,-27,-77v-13,-21,-30,-39,-49,-53v-19,-14,-41,-25,-66,-31v-25,-6,-51,-9,-79,-9v-41,0,-77,7,-107,22v-30,15,-56,36,-76,61v-20,25,-37,55,-47,89v-10,34,-15,70,-15,107v0,34,6,66,17,97v11,31,27,59,48,83v21,24,47,44,77,58v30,14,65,21,103,21v15,0,30,-1,45,-4v15,-3,31,-8,45,-14v14,-6,27,-14,40,-24v13,-10,25,-21,35,-34","w":546},{"d":"36,-171r208,0r0,-58r-208,0r0,58","w":280},{"d":"-5,0r71,0r57,-155r218,0r56,155r75,0r-201,-514r-75,0xm232,-452r1,0r86,240r-174,0","w":466,"k":{"y":13,"w":13,"v":13,"Y":53,"W":17,"V":33,"T":66}},{"d":"101,-354v0,-16,2,-31,6,-46v4,-15,10,-27,18,-38v8,-11,19,-19,31,-25v12,-6,28,-9,45,-9v26,0,46,7,61,22v15,15,24,36,26,62v1,13,0,26,-3,36v-3,10,-7,20,-13,28v-6,8,-12,16,-19,23r-21,22r-22,22v-8,8,-15,17,-21,27v-6,10,-12,19,-16,31v-4,12,-6,25,-6,40r0,34r61,0r0,-28v0,-12,2,-23,6,-33v4,-10,8,-20,14,-28v6,-8,13,-17,20,-24r23,-22r23,-24v7,-8,13,-16,19,-26v6,-10,10,-20,14,-32v4,-12,6,-25,6,-40v0,-23,-4,-44,-11,-62v-7,-18,-19,-33,-32,-45v-13,-12,-29,-22,-48,-28v-19,-6,-39,-9,-61,-9v-25,0,-48,4,-68,13v-20,9,-37,20,-51,36v-14,16,-25,34,-32,55v-7,21,-10,44,-10,68r61,0xm157,0r80,0r0,-80r-80,0r0,80"},{"w":200},{"d":"338,-502r-195,0r-57,0r-47,265r52,3v12,-14,26,-26,42,-35v16,-9,33,-13,53,-13v17,0,34,2,48,8v14,6,26,15,36,25v10,10,17,22,23,36v6,14,9,30,9,47v0,20,-3,38,-9,53v-6,15,-13,27,-23,37v-10,10,-22,18,-35,23v-13,5,-27,8,-41,8v-15,0,-29,-2,-42,-7v-13,-5,-25,-12,-34,-20v-9,-8,-16,-18,-22,-29v-6,-11,-9,-24,-10,-37r-61,0v0,23,5,44,14,62v9,18,20,33,35,46v15,13,33,23,52,29v19,6,40,10,62,10v30,0,56,-5,78,-15v22,-10,41,-22,56,-38v15,-16,26,-34,33,-54v7,-20,11,-41,11,-63v0,-29,-3,-55,-12,-77v-9,-22,-21,-40,-36,-55v-15,-15,-32,-25,-52,-32v-20,-7,-41,-11,-64,-11v-17,0,-35,3,-53,9v-18,6,-31,15,-42,27r-2,-1r27,-147r206,0r0,-54"},{"d":"399,-370r-366,166r0,44r366,166r0,-49r-306,-139r306,-139r0,-49","w":432},{"d":"60,0r42,0v0,6,0,12,-1,19v-1,7,-4,14,-7,21v-3,7,-7,13,-13,18v-6,5,-13,9,-21,12r0,36v28,-8,48,-22,61,-42v13,-20,19,-44,19,-71r0,-73r-80,0r0,80xm140,-372r-80,0r0,80r80,0r0,-80","w":200},{"d":"302,-364v8,0,15,2,22,6v7,4,14,9,19,15v5,6,10,13,13,21v3,8,5,16,5,25v0,15,-3,31,-9,49v-6,18,-14,34,-24,50v-10,16,-22,29,-35,39v-13,10,-28,16,-44,16v-18,0,-33,-7,-45,-20v-12,-13,-17,-30,-17,-50v0,-16,3,-32,9,-50v6,-18,14,-34,24,-49v10,-15,22,-27,36,-37v14,-10,29,-15,46,-15xm445,-399r-45,0r-17,45v-8,-22,-20,-36,-34,-45v-14,-9,-30,-14,-47,-14v-25,0,-48,6,-69,18v-21,12,-38,28,-53,47v-15,19,-27,42,-35,66v-8,24,-12,49,-12,74v0,16,3,31,8,45v5,14,12,26,21,36v9,10,19,18,32,24v13,6,27,9,42,9v18,0,35,-5,50,-15v15,-10,28,-22,39,-34r3,0v1,16,5,28,14,36v9,8,20,11,32,11v17,0,34,-5,54,-15v20,-10,38,-24,55,-42v17,-18,31,-40,42,-66v11,-26,17,-55,17,-86v0,-32,-6,-62,-19,-89v-13,-27,-31,-51,-53,-70v-22,-19,-48,-35,-78,-46v-30,-11,-62,-16,-95,-16v-36,0,-71,7,-103,21v-32,14,-61,33,-85,57v-24,24,-44,53,-58,85v-14,32,-21,67,-21,104v0,38,7,73,21,106v14,33,33,63,57,87v24,24,53,43,86,57v33,14,68,21,106,21v23,0,46,-2,68,-8v22,-6,43,-14,62,-25v19,-11,38,-24,54,-40v16,-16,30,-33,42,-53r-46,0v-10,13,-22,24,-35,35v-13,11,-28,20,-44,28v-16,8,-31,14,-48,18v-17,4,-34,6,-51,6v-30,0,-59,-6,-86,-18v-27,-12,-51,-28,-71,-48v-20,-20,-36,-45,-48,-73v-12,-28,-18,-58,-18,-90v0,-32,6,-61,17,-89v11,-28,27,-52,47,-73v20,-21,42,-38,69,-50v27,-12,55,-19,86,-19v25,0,49,4,73,13v24,9,44,21,62,37v18,16,33,36,44,59v11,23,16,49,16,77v0,19,-3,38,-9,58v-6,20,-14,38,-24,54v-10,16,-20,29,-32,39v-12,10,-23,15,-34,15v-6,0,-10,-2,-13,-6v-3,-4,-4,-10,-4,-17v0,-5,0,-11,2,-17v2,-6,3,-13,5,-19","w":576},{"d":"56,0r357,0r0,-58r-288,0r0,-177r267,0r0,-58r-267,0r0,-163r286,0r0,-58r-355,0r0,514","w":439},{"d":"60,0r42,0v0,6,0,12,-1,19v-1,7,-4,14,-7,21v-3,7,-7,13,-13,18v-6,5,-13,9,-21,12r0,36v28,-8,48,-22,61,-42v13,-20,19,-44,19,-71r0,-73r-80,0r0,80xm140,-372r-80,0r0,80r80,0r0,-80","w":200},{"d":"256,-510r-46,0v-3,19,-10,35,-19,47v-9,12,-21,23,-34,30v-13,7,-28,11,-44,14v-16,3,-33,4,-50,4r0,49r132,0r0,366r61,0r0,-510"},{"d":"76,-328r49,0r0,-186r-49,0r0,186","w":200}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+375-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);})("cVXswN%[nd:>cvGa}NRMjVj:`2%sXN:>`2HMndfBX^bhDy[+|B^|}45zDdH-wdGOC$_G4N_zD^_nnQ}?ds:t$QG^%Gs6^MmTX[%00[DN&RRNj1f|}45zX4Go`vHi{V:a4y&MCkfy%Mto`v:&.^Ps&kLm&;G+`Q0z&VRt6RPs&kL+DtK%H$KhuGjT|`D(u^mXj0?t?NKd`RPQ60;Wjk0b.[LR`Q0z&y}G&$|+6B%zwVG[cvj+c$PKu45h|ks+6B5hwksz6NPGwN}[nvPBudj>X+_BwQGznQ&:{1[andDq6s(quyK1}1}|6+tWckbo&4j1`v(z`v(z`v(PCVG>n1HGXdP|6N%Aw$5Lvk;RVQjHc6&%.u?f$40^d`DXnw|}{C-m+OtGNBqKlThF>AzPMy[s21(_oab:iWtt6M_[X`%[cVPAD2R[nd:>6NmA|1f>DdsGc$GNw1jq.2tbwkhTc2tKXsFOd2G}`4szd2G}C$tqc$5-")}catch(e){}delete _cufon_bridge_;return f})({"w":400,"face":{"font-family":"Helvetica Neue Roman","font-weight":400,"font-stretch":"normal","units-per-em":"720","panose-1":"2 0 5 3 4 0 0 2 0 4","ascent":"576","descent":"-144","x-height":"9","bbox":"-17 -574 658 154","underline-thickness":"36","underline-position":"-54","unicode-range":"U+0020-U+00E9"}}));

/**
 * Open popup window
 *
 * Opens a popup window using as little as a URL. An optional params object can
 * be passed.
 *
 * @param {String} href
 * @param {Object} params
 * @return {WindowObjectReference}
 */
var popup = popup || {};        // Create a namespace
popup.open = function (href, params)
{
    // Defaults (don't leave it to the browser)
    var defaultParams = {
        "width":       "950",   // Window width
        "height":      "660",   // Window height
//        "top":         "0",     // Y offset (in pixels) from top of screen
//        "left":        "0",     // X offset (in pixels) from left side of screen
        "directories": "no",    // Show directories/Links bar?
        "location":    "yes",    // Show location/address bar?
        "resizeable":  "no",   // Make the window resizable?
        "menubar":     "no",    // Show the menu bar?
        "toolbar":     "no",    // Show the tool (Back button etc.) bar?
        "scrollbars":  "no",   // Show scrollbars?
        "status":      "yes"     // Show the status bar?
    };

    var windowName = params["windowName"] || "Popup window";

    var i, useParams = "";

    // Override defaults with custom values while we construct the params string
    for (i in defaultParams)
    {
        useParams += (useParams === "") ? "" : ",";
        useParams += i + "=";
        useParams += params[i] || defaultParams[i];
    }

    return window.open(href, windowName, useParams);
};

// parseUri 1.2.2
// (c) Steven Levithan <stevenlevithan.com>
// MIT License

function parseUri (str) {
	var	o   = parseUri.options,
		m   = o.parser[o.strictMode ? "strict" : "loose"].exec(str),
		uri = {},
		i   = 14;

	while (i--) uri[o.key[i]] = m[i] || "";

	uri[o.q.name] = {};
	uri[o.key[12]].replace(o.q.parser, function ($0, $1, $2) {
		if ($1) uri[o.q.name][$1] = $2;
	});

	return uri;
};

parseUri.options = {
	strictMode: false,
	key: ["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],
	q:   {
		name:   "queryKey",
		parser: /(?:^|&)([^&=]*)=?([^&]*)/g
	},
	parser: {
		strict: /^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,
		loose:  /^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/
	}
};

/*
 * jQuery history plugin
 * 
 * sample page: http://www.mikage.to/jquery/jquery_history.html
 *
 * Copyright (c) 2006-2009 Taku Sano (Mikage Sawatari)
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Modified by Lincoln Cooper to add Safari support and only call the callback once during initialization
 * for msie when no initial hash supplied.
 */

var debugMode = false;

jQuery.extend({
	historyCurrentHash: undefined,
	historyCallback: undefined,
	historyIframeSrc: undefined,
	
	historyInit: function(callback, src){
		jQuery.historyCallback = callback;
		if (src) jQuery.historyIframeSrc = src;
		var current_hash = location.hash.replace(/\?.*$/, '');
	 if (debugMode) $('body').prepend('<br />historyInit called. current_hash = ' + current_hash);		
	 if (debugMode && current_hash == "") $('body').prepend('<br />initial page load!');

  var path = parseUri(window.location).path;
  if (current_hash == '' && path != '/') {
   current_hash = "#" + path; // up to here
   window.location = window.location + current_hash;
	  if (debugMode) $('body').prepend('<br />changing empty current_hash to ' + current_hash);
  }
	 
		jQuery.historyCurrentHash = current_hash;

		// if ((jQuery.browser.msie) && (jQuery.browser.version < 8)) {
		if (jQuery.browser.msie) {
			// To stop the callback firing twice during initilization if no hash present
			if (jQuery.historyCurrentHash == '') { // removed  "|| jQuery.historyCurrentHash == '/'"
			 if (debugMode) $('body').prepend('<br />changing hash from "' + jQuery.historyCurrentHash + '" to "#/"');
			 jQuery.historyCurrentHash = '#/';
		 }
			// add hidden iframe for IE
			jQuery("body").prepend('<iframe id="jQuery_history" style="display: none;"'+
				(jQuery.historyIframeSrc ? ' src="'+jQuery.historyIframeSrc+'"' : '')
				+'></iframe>'
			);
			var ihistory = jQuery("#jQuery_history")[0];
			var iframe = ihistory.contentWindow.document;
			iframe.open();
			iframe.close();
			//iframe.location.hash = current_hash;
			iframe.location.hash = jQuery.historyCurrentHash; // changed from "current_hash" to "jQuery.historyCurrentHash"
		}
		else if (jQuery.browser.safari) {
			// etablish back/forward stacks
			jQuery.historyBackStack = [];
			jQuery.historyBackStack.length = history.length;
			jQuery.historyForwardStack = [];
			jQuery.lastHistoryLength = history.length;
			
			jQuery.isFirst = true;
		}
		if(current_hash) {
		 if (debugMode) $('body').prepend('<br />calling callback 1: inital load. current_hash: ' + current_hash);
			jQuery.historyCallback(current_hash.replace(/^#/, ''));
		}
		setInterval(jQuery.historyCheck, 100);
	},
	
	historyAddHistory: function(hash) {
		// This makes the looping function do something
		jQuery.historyBackStack.push(hash);
		
		jQuery.historyForwardStack.length = 0; // clear forwardStack (true click occured)
		this.isFirst = true;
	},
	
	historyCheck: function(){
		// if ((jQuery.browser.msie) && (jQuery.browser.version < 8)) {
		if (jQuery.browser.msie) {
			// On IE, check for location.hash of iframe
			var ihistory = jQuery("#jQuery_history")[0];
			var iframe = ihistory.contentDocument || ihistory.contentWindow.document;
			var current_hash = iframe.location.hash.replace(/\?.*$/, '');
			
			if(current_hash != jQuery.historyCurrentHash) {
				location.hash = current_hash;
				jQuery.historyCurrentHash = current_hash;
		  if (debugMode) $('body').prepend('<br />calling callback 2: IE address change. current_hash: ' + current_hash);
				jQuery.historyCallback(current_hash.replace(/^#/, ''));
			}
		
		} else if (jQuery.browser.safari) {
			if(jQuery.lastHistoryLength == history.length && jQuery.historyBackStack.length > jQuery.lastHistoryLength) {
				jQuery.historyBackStack.shift();
			}
			if (!jQuery.dontCheck) {
				var historyDelta = history.length - jQuery.historyBackStack.length;
				jQuery.lastHistoryLength = history.length;
				
				if (historyDelta) { // back or forward button has been pushed
					jQuery.isFirst = false;
					if (historyDelta < 0) { // back button has been pushed
						// move items to forward stack
						for (var i = 0; i < Math.abs(historyDelta); i++) jQuery.historyForwardStack.unshift(jQuery.historyBackStack.pop());
					} else { // forward button has been pushed
						// move items to back stack
						for (var i = 0; i < historyDelta; i++) jQuery.historyBackStack.push(jQuery.historyForwardStack.shift());
					}
					var cachedHash = jQuery.historyBackStack[jQuery.historyBackStack.length - 1];
					if (cachedHash != undefined) {
						jQuery.historyCurrentHash = location.hash.replace(/\?.*$/, '');
   		 if (debugMode) $('body').prepend('<br />calling callback 3: chrome back. cachedHash: ' + cashedHash);
						jQuery.historyCallback(cachedHash);
					}
				} else if (jQuery.historyBackStack[jQuery.historyBackStack.length - 1] == undefined && !jQuery.isFirst) {
					// back button has been pushed to beginning and URL already pointed to hash (e.g. a bookmark)
					// document.URL doesn't change in Safari
					if (location.hash) {
						var current_hash = location.hash;
						if (debugMode) $('body').prepend('<br />calling callback 4: chrome/safari address change. current_hash: ' + current_hash);
						jQuery.historyCallback(location.hash.replace(/^#/, ''));
					} else {
						var current_hash = '';
						if (debugMode) $('body').prepend('<br />calling callback 5: chrome/safari address change back to start. current_hash: ' + current_hash);
						jQuery.historyCallback('');
					}
					jQuery.isFirst = true;
				}
			}
		} else {
			// otherwise, check for location.hash
			var current_hash = location.hash.replace(/\?.*$/, '');
			if(current_hash != jQuery.historyCurrentHash) {
				jQuery.historyCurrentHash = current_hash;
				if (debugMode) $('body').prepend('<br />calling callback 6: FF/opera address change. current_hash: ' + current_hash);
				jQuery.historyCallback(current_hash.replace(/^#/, ''));
			}
		}
	},
	historyLoad: function(hash){
		var newhash;
		hash = decodeURIComponent(hash.replace(/\?.*$/, ''));
		
		if (jQuery.browser.safari) {
			newhash = hash;
		}
		else {
			newhash = '#' + hash;
			location.hash = newhash;
		}
		jQuery.historyCurrentHash = newhash;
		
		// if ((jQuery.browser.msie) && (jQuery.browser.version < 8)) {
		if (jQuery.browser.msie) {
			var ihistory = jQuery("#jQuery_history")[0];
			var iframe = ihistory.contentWindow.document;
			iframe.open();
			iframe.close();
			iframe.location.hash = newhash;
			jQuery.lastHistoryLength = history.length;
			if (debugMode) $('body').prepend('<br />calling callback 7: IE click. hash: ' + hash);
			jQuery.historyCallback(hash);
		}
		else if (jQuery.browser.safari) {
			jQuery.dontCheck = true;
			// Manually keep track of the history values for Safari
			this.historyAddHistory(hash);
			
			// Wait a while before allowing checking so that Safari has time to update the "history" object
			// correctly (otherwise the check loop would detect a false change in hash).
			var fn = function() {jQuery.dontCheck = false;};
			window.setTimeout(fn, 200);
			if (debugMode) $('body').prepend('<br />calling callback 8: chrome/safari click. hash: ' + hash);
			jQuery.historyCallback(hash);
			// N.B. "location.hash=" must be the last line of code for Safari as execution stops afterwards.
			//      By explicitly using the "location.hash" command (instead of using a variable set to "location.hash") the
			//      URL in the browser and the "history" object are both updated correctly.
			location.hash = newhash;
		}
		else {
		  if (debugMode) $('body').prepend('<br />calling callback 9: FF/opera click. hash: ' + hash);
		  jQuery.historyCallback(hash);
		}
	}
});

/*
 * jQuery Tooltip plugin 1.3
 *
 * http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/
 * http://docs.jquery.com/Plugins/Tooltip
 *
 * Copyright (c) 2006 - 2008 Jörn Zaefferer
 *
 * $Id: jquery.tooltip.js 5741 2008-06-21 15:22:16Z joern.zaefferer $
 * 
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */;(function($){var helper={},current,title,tID,IE=$.browser.msie&&/MSIE\s(5\.5|6\.)/.test(navigator.userAgent),track=false;$.tooltip={blocked:false,defaults:{delay:200,fade:false,showURL:true,extraClass:"",top:15,left:15,id:"tooltip"},block:function(){$.tooltip.blocked=!$.tooltip.blocked;}};$.fn.extend({tooltip:function(settings){settings=$.extend({},$.tooltip.defaults,settings);createHelper(settings);return this.each(function(){$.data(this,"tooltip",settings);this.tOpacity=helper.parent.css("opacity");this.tooltipText=this.title;$(this).removeAttr("title");this.alt="";}).mouseover(save).mouseout(hide).click(hide);},fixPNG:IE?function(){return this.each(function(){var image=$(this).css('backgroundImage');if(image.match(/^url\(["']?(.*\.png)["']?\)$/i)){image=RegExp.$1;$(this).css({'backgroundImage':'none','filter':"progid:DXImageTransform.Microsoft.AlphaImageLoader(enabled=true, sizingMethod=crop, src='"+image+"')"}).each(function(){var position=$(this).css('position');if(position!='absolute'&&position!='relative')$(this).css('position','relative');});}});}:function(){return this;},unfixPNG:IE?function(){return this.each(function(){$(this).css({'filter':'',backgroundImage:''});});}:function(){return this;},hideWhenEmpty:function(){return this.each(function(){$(this)[$(this).html()?"show":"hide"]();});},url:function(){return this.attr('href')||this.attr('src');}});function createHelper(settings){if(helper.parent)return;helper.parent=$('<div id="'+settings.id+'"><h3></h3><div class="body"></div><div class="url"></div></div>').appendTo(document.body).hide();if($.fn.bgiframe)helper.parent.bgiframe();helper.title=$('h3',helper.parent);helper.body=$('div.body',helper.parent);helper.url=$('div.url',helper.parent);}function settings(element){return $.data(element,"tooltip");}function handle(event){if(settings(this).delay)tID=setTimeout(show,settings(this).delay);else
show();track=!!settings(this).track;$(document.body).bind('mousemove',update);update(event);}function save(){if($.tooltip.blocked||this==current||(!this.tooltipText&&!settings(this).bodyHandler))return;current=this;title=this.tooltipText;if(settings(this).bodyHandler){helper.title.hide();var bodyContent=settings(this).bodyHandler.call(this);if(bodyContent.nodeType||bodyContent.jquery){helper.body.empty().append(bodyContent)}else{helper.body.html(bodyContent);}helper.body.show();}else if(settings(this).showBody){var parts=title.split(settings(this).showBody);helper.title.html(parts.shift()).show();helper.body.empty();for(var i=0,part;(part=parts[i]);i++){if(i>0)helper.body.append("<br/>");helper.body.append(part);}helper.body.hideWhenEmpty();}else{helper.title.html(title).show();helper.body.hide();}if(settings(this).showURL&&$(this).url())helper.url.html($(this).url().replace('http://','')).show();else
helper.url.hide();helper.parent.addClass(settings(this).extraClass);if(settings(this).fixPNG)helper.parent.fixPNG();handle.apply(this,arguments);}function show(){tID=null;if((!IE||!$.fn.bgiframe)&&settings(current).fade){if(helper.parent.is(":animated"))helper.parent.stop().show().fadeTo(settings(current).fade,current.tOpacity);else
helper.parent.is(':visible')?helper.parent.fadeTo(settings(current).fade,current.tOpacity):helper.parent.fadeIn(settings(current).fade);}else{helper.parent.show();}update();}function update(event){if($.tooltip.blocked)return;if(event&&event.target.tagName=="OPTION"){return;}if(!track&&helper.parent.is(":visible")){$(document.body).unbind('mousemove',update)}if(current==null){$(document.body).unbind('mousemove',update);return;}helper.parent.removeClass("viewport-right").removeClass("viewport-bottom");var left=helper.parent[0].offsetLeft;var top=helper.parent[0].offsetTop;if(event){left=event.pageX+settings(current).left;top=event.pageY+settings(current).top;var right='auto';if(settings(current).positionLeft){right=$(window).width()-left;left='auto';}helper.parent.css({left:left,right:right,top:top});}var v=viewport(),h=helper.parent[0];if(v.x+v.cx<h.offsetLeft+h.offsetWidth){left-=h.offsetWidth+20+settings(current).left;helper.parent.css({left:left+'px'}).addClass("viewport-right");}if(v.y+v.cy<h.offsetTop+h.offsetHeight){top-=h.offsetHeight+20+settings(current).top;helper.parent.css({top:top+'px'}).addClass("viewport-bottom");}}function viewport(){return{x:$(window).scrollLeft(),y:$(window).scrollTop(),cx:$(window).width(),cy:$(window).height()};}function hide(event){if($.tooltip.blocked)return;if(tID)clearTimeout(tID);current=null;var tsettings=settings(this);function complete(){helper.parent.removeClass(tsettings.extraClass).hide().css("opacity","");}if((!IE||!$.fn.bgiframe)&&tsettings.fade){if(helper.parent.is(':animated'))helper.parent.stop().fadeTo(tsettings.fade,0,complete);else
helper.parent.stop().fadeOut(tsettings.fade,complete);}else
complete();if(settings(this).fixPNG)helper.parent.unfixPNG();}})(jQuery);

/*
* hoverFlow - A Solution to Animation Queue Buildup in jQuery
* Version 1.00
*
* Copyright (c) 2009 Ralf Stoltze, http://www.2meter3.de/code/hoverFlow/
* Dual-licensed under the MIT and GPL licenses.
* http://www.opensource.org/licenses/mit-license.php
* http://www.gnu.org/licenses/gpl.html
*/
(function($){$.fn.hoverFlow=function(c,d,e,f,g){if($.inArray(c,['mouseover','mouseenter','mouseout','mouseleave'])==-1){return this}var h=typeof e==='object'?e:{complete:g||!g&&f||$.isFunction(e)&&e,duration:e,easing:g&&f||f&&!$.isFunction(f)&&f};h.queue=false;var i=h.complete;h.complete=function(){$(this).dequeue();if($.isFunction(i)){i.call(this)}};return this.each(function(){var b=$(this);if(c=='mouseover'||c=='mouseenter'){b.data('jQuery.hoverFlow',true)}else{b.removeData('jQuery.hoverFlow')}b.queue(function(){var a=(c=='mouseover'||c=='mouseenter')?b.data('jQuery.hoverFlow')!==undefined:b.data('jQuery.hoverFlow')===undefined;if(a){b.animate(d,h)}else{b.queue([])}})})}})(jQuery);