/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();
/*
 * jQuery UI 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI
 */
jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7.2",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return}for(var m=0;m<n.length;m++){if(j.options[n[m][0]]){n[m][1].apply(j.element,k)}}}},contains:function(k,j){return document.compareDocumentPosition?k.compareDocumentPosition(j)&16:k!==j&&k.contains(j)},hasScroll:function(m,k){if(c(m).css("overflow")=="hidden"){return false}var j=(k&&k=="left")?"scrollLeft":"scrollTop",l=false;if(m[j]>0){return true}m[j]=1;l=(m[j]>0);m[j]=0;return l},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l))},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)))};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""))}):e.call(this,j))}}c.fn.extend({remove:function(){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")});return i.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return !!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return !(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return !this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;
/*
 * jQuery UI Accordion 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Accordion
 *
 * Depends:
 *	ui.core.js
 */
(function(a){a.widget("ui.accordion",{_init:function(){var d=this.options,b=this;this.running=0;if(d.collapsible==a.ui.accordion.defaults.collapsible&&d.alwaysOpen!=a.ui.accordion.defaults.alwaysOpen){d.collapsible=!d.alwaysOpen}if(d.navigation){var c=this.element.find("a").filter(d.navigationFilter);if(c.length){if(c.filter(d.header).length){this.active=c}else{this.active=c.parent().parent().prev();c.addClass("ui-accordion-content-active")}}}this.element.addClass("ui-accordion ui-widget ui-helper-reset");if(this.element[0].nodeName=="UL"){this.element.children("li").addClass("ui-accordion-li-fix")}this.headers=this.element.find(d.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){a(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){a(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){a(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){a(this).removeClass("ui-state-focus")});this.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");this.active=this._findActive(this.active||d.active).toggleClass("ui-state-default").toggleClass("ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");this.active.next().addClass("ui-accordion-content-active");a("<span/>").addClass("ui-icon "+d.icons.header).prependTo(this.headers);this.active.find(".ui-icon").toggleClass(d.icons.header).toggleClass(d.icons.headerSelected);if(a.browser.msie){this.element.find("a").css("zoom","1")}this.resize();this.element.attr("role","tablist");this.headers.attr("role","tab").bind("keydown",function(e){return b._keydown(e)}).next().attr("role","tabpanel");this.headers.not(this.active||"").attr("aria-expanded","false").attr("tabIndex","-1").next().hide();if(!this.active.length){this.headers.eq(0).attr("tabIndex","0")}else{this.active.attr("aria-expanded","true").attr("tabIndex","0")}if(!a.browser.safari){this.headers.find("a").attr("tabIndex","-1")}if(d.event){this.headers.bind((d.event)+".accordion",function(e){return b._clickHandler.call(b,e,this)})}},destroy:function(){var c=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role").unbind(".accordion").removeData("accordion");this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("tabindex");this.headers.find("a").removeAttr("tabindex");this.headers.children(".ui-icon").remove();var b=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active");if(c.autoHeight||c.fillHeight){b.css("height","")}},_setData:function(b,c){if(b=="alwaysOpen"){b="collapsible";c=!c}a.widget.prototype._setData.apply(this,arguments)},_keydown:function(e){var g=this.options,f=a.ui.keyCode;if(g.disabled||e.altKey||e.ctrlKey){return}var d=this.headers.length;var b=this.headers.index(e.target);var c=false;switch(e.keyCode){case f.RIGHT:case f.DOWN:c=this.headers[(b+1)%d];break;case f.LEFT:case f.UP:c=this.headers[(b-1+d)%d];break;case f.SPACE:case f.ENTER:return this._clickHandler({target:e.target},e.target)}if(c){a(e.target).attr("tabIndex","-1");a(c).attr("tabIndex","0");c.focus();return false}return true},resize:function(){var e=this.options,d;if(e.fillSpace){if(a.browser.msie){var b=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}d=this.element.parent().height();if(a.browser.msie){this.element.parent().css("overflow",b)}this.headers.each(function(){d-=a(this).outerHeight()});var c=0;this.headers.next().each(function(){c=Math.max(c,a(this).innerHeight()-a(this).height())}).height(Math.max(0,d-c)).css("overflow","auto")}else{if(e.autoHeight){d=0;this.headers.next().each(function(){d=Math.max(d,a(this).outerHeight())}).height(d)}}},activate:function(b){var c=this._findActive(b)[0];this._clickHandler({target:c},c)},_findActive:function(b){return b?typeof b=="number"?this.headers.filter(":eq("+b+")"):this.headers.not(this.headers.not(b)):b===false?a([]):this.headers.filter(":eq(0)")},_clickHandler:function(b,f){var d=this.options;if(d.disabled){return false}if(!b.target&&d.collapsible){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");var h=this.active.next(),e={options:d,newHeader:a([]),oldHeader:d.active,newContent:a([]),oldContent:h},c=(this.active=a([]));this._toggle(c,h,e);return false}var g=a(b.currentTarget||f);var i=g[0]==this.active[0];if(this.running||(!d.collapsible&&i)){return false}this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");if(!i){g.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").find(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected);g.next().addClass("ui-accordion-content-active")}var c=g.next(),h=this.active.next(),e={options:d,newHeader:i&&d.collapsible?a([]):g,oldHeader:this.active,newContent:i&&d.collapsible?a([]):c.find("> *"),oldContent:h.find("> *")},j=this.headers.index(this.active[0])>this.headers.index(g[0]);this.active=i?a([]):g;this._toggle(c,h,e,i,j);return false},_toggle:function(b,i,g,j,k){var d=this.options,m=this;this.toShow=b;this.toHide=i;this.data=g;var c=function(){if(!m){return}return m._completed.apply(m,arguments)};this._trigger("changestart",null,this.data);this.running=i.size()===0?b.size():i.size();if(d.animated){var f={};if(d.collapsible&&j){f={toShow:a([]),toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}else{f={toShow:b,toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}if(!d.proxied){d.proxied=d.animated}if(!d.proxiedDuration){d.proxiedDuration=d.duration}d.animated=a.isFunction(d.proxied)?d.proxied(f):d.proxied;d.duration=a.isFunction(d.proxiedDuration)?d.proxiedDuration(f):d.proxiedDuration;var l=a.ui.accordion.animations,e=d.duration,h=d.animated;if(!l[h]){l[h]=function(n){this.slide(n,{easing:h,duration:e||700})}}l[h](f)}else{if(d.collapsible&&j){b.toggle()}else{i.hide();b.show()}c(true)}i.prev().attr("aria-expanded","false").attr("tabIndex","-1").blur();b.prev().attr("aria-expanded","true").attr("tabIndex","0").focus()},_completed:function(b){var c=this.options;this.running=b?0:--this.running;if(this.running){return}if(c.clearStyle){this.toShow.add(this.toHide).css({height:"",overflow:""})}this._trigger("change",null,this.data)}});a.extend(a.ui.accordion,{version:"1.7.2",defaults:{active:null,alwaysOpen:true,animated:"slide",autoHeight:true,clearStyle:false,collapsible:false,event:"click",fillSpace:false,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:false,navigationFilter:function(){return this.href.toLowerCase()==location.href.toLowerCase()}},animations:{slide:function(j,h){j=a.extend({easing:"swing",duration:300},j,h);if(!j.toHide.size()){j.toShow.animate({height:"show"},j);return}if(!j.toShow.size()){j.toHide.animate({height:"hide"},j);return}var c=j.toShow.css("overflow"),g,d={},f={},e=["height","paddingTop","paddingBottom"],b;var i=j.toShow;b=i[0].style.width;i.width(parseInt(i.parent().width(),10)-parseInt(i.css("paddingLeft"),10)-parseInt(i.css("paddingRight"),10)-(parseInt(i.css("borderLeftWidth"),10)||0)-(parseInt(i.css("borderRightWidth"),10)||0));a.each(e,function(k,m){f[m]="hide";var l=(""+a.css(j.toShow[0],m)).match(/^([\d+-.]+)(.*)$/);d[m]={value:l[1],unit:l[2]||"px"}});j.toShow.css({height:0,overflow:"hidden"}).show();j.toHide.filter(":hidden").each(j.complete).end().filter(":visible").animate(f,{step:function(k,l){if(l.prop=="height"){g=(l.now-l.start)/(l.end-l.start)}j.toShow[0].style[l.prop]=(g*d[l.prop].value)+d[l.prop].unit},duration:j.duration,easing:j.easing,complete:function(){if(!j.autoHeight){j.toShow.css("height","")}j.toShow.css("width",b);j.toShow.css({overflow:c});j.complete()}})},bounceslide:function(b){this.slide(b,{easing:b.down?"easeOutBounce":"swing",duration:b.down?1000:200})},easeslide:function(b){this.slide(b,{easing:"easeinout",duration:700})}}})})(jQuery);;
/*
 * jQuery UI Slider 1.7.2
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Slider
 *
 * Depends:
 *	ui.core.js
 */
(function(a){a.widget("ui.slider",a.extend({},a.ui.mouse,{_init:function(){var b=this,c=this.options;this._keySliding=false;this._handleIndex=null;this._detectOrientation();this._mouseInit();this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget ui-widget-content ui-corner-all");this.range=a([]);if(c.range){if(c.range===true){this.range=a("<div></div>");if(!c.values){c.values=[this._valueMin(),this._valueMin()]}if(c.values.length&&c.values.length!=2){c.values=[c.values[0],c.values[0]]}}else{this.range=a("<div></div>")}this.range.appendTo(this.element).addClass("ui-slider-range");if(c.range=="min"||c.range=="max"){this.range.addClass("ui-slider-range-"+c.range)}this.range.addClass("ui-widget-header")}if(a(".ui-slider-handle",this.element).length==0){a('<a href="#"></a>').appendTo(this.element).addClass("ui-slider-handle")}if(c.values&&c.values.length){while(a(".ui-slider-handle",this.element).length<c.values.length){a('<a href="#"></a>').appendTo(this.element).addClass("ui-slider-handle")}}this.handles=a(".ui-slider-handle",this.element).addClass("ui-state-default ui-corner-all");this.handle=this.handles.eq(0);this.handles.add(this.range).filter("a").click(function(d){d.preventDefault()}).hover(function(){if(!c.disabled){a(this).addClass("ui-state-hover")}},function(){a(this).removeClass("ui-state-hover")}).focus(function(){if(!c.disabled){a(".ui-slider .ui-state-focus").removeClass("ui-state-focus");a(this).addClass("ui-state-focus")}else{a(this).blur()}}).blur(function(){a(this).removeClass("ui-state-focus")});this.handles.each(function(d){a(this).data("index.ui-slider-handle",d)});this.handles.keydown(function(i){var f=true;var e=a(this).data("index.ui-slider-handle");if(b.options.disabled){return}switch(i.keyCode){case a.ui.keyCode.HOME:case a.ui.keyCode.END:case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:f=false;if(!b._keySliding){b._keySliding=true;a(this).addClass("ui-state-active");b._start(i,e)}break}var g,d,h=b._step();if(b.options.values&&b.options.values.length){g=d=b.values(e)}else{g=d=b.value()}switch(i.keyCode){case a.ui.keyCode.HOME:d=b._valueMin();break;case a.ui.keyCode.END:d=b._valueMax();break;case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:if(g==b._valueMax()){return}d=g+h;break;case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:if(g==b._valueMin()){return}d=g-h;break}b._slide(i,e,d);return f}).keyup(function(e){var d=a(this).data("index.ui-slider-handle");if(b._keySliding){b._stop(e,d);b._change(e,d);b._keySliding=false;a(this).removeClass("ui-state-active")}});this._refreshValue()},destroy:function(){this.handles.remove();this.range.remove();this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider");this._mouseDestroy()},_mouseCapture:function(d){var e=this.options;if(e.disabled){return false}this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()};this.elementOffset=this.element.offset();var h={x:d.pageX,y:d.pageY};var j=this._normValueFromMouse(h);var c=this._valueMax()-this._valueMin()+1,f;var k=this,i;this.handles.each(function(l){var m=Math.abs(j-k.values(l));if(c>m){c=m;f=a(this);i=l}});if(e.range==true&&this.values(1)==e.min){f=a(this.handles[++i])}this._start(d,i);k._handleIndex=i;f.addClass("ui-state-active").focus();var g=f.offset();var b=!a(d.target).parents().andSelf().is(".ui-slider-handle");this._clickOffset=b?{left:0,top:0}:{left:d.pageX-g.left-(f.width()/2),top:d.pageY-g.top-(f.height()/2)-(parseInt(f.css("borderTopWidth"),10)||0)-(parseInt(f.css("borderBottomWidth"),10)||0)+(parseInt(f.css("marginTop"),10)||0)};j=this._normValueFromMouse(h);this._slide(d,i,j);return true},_mouseStart:function(b){return true},_mouseDrag:function(d){var b={x:d.pageX,y:d.pageY};var c=this._normValueFromMouse(b);this._slide(d,this._handleIndex,c);return false},_mouseStop:function(b){this.handles.removeClass("ui-state-active");this._stop(b,this._handleIndex);this._change(b,this._handleIndex);this._handleIndex=null;this._clickOffset=null;return false},_detectOrientation:function(){this.orientation=this.options.orientation=="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(d){var c,h;if("horizontal"==this.orientation){c=this.elementSize.width;h=d.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)}else{c=this.elementSize.height;h=d.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)}var f=(h/c);if(f>1){f=1}if(f<0){f=0}if("vertical"==this.orientation){f=1-f}var e=this._valueMax()-this._valueMin(),i=f*e,b=i%this.options.step,g=this._valueMin()+i-b;if(b>(this.options.step/2)){g+=this.options.step}return parseFloat(g.toFixed(5))},_start:function(d,c){var b={handle:this.handles[c],value:this.value()};if(this.options.values&&this.options.values.length){b.value=this.values(c);b.values=this.values()}this._trigger("start",d,b)},_slide:function(f,e,d){var g=this.handles[e];if(this.options.values&&this.options.values.length){var b=this.values(e?0:1);if((this.options.values.length==2&&this.options.range===true)&&((e==0&&d>b)||(e==1&&d<b))){d=b}if(d!=this.values(e)){var c=this.values();c[e]=d;var h=this._trigger("slide",f,{handle:this.handles[e],value:d,values:c});var b=this.values(e?0:1);if(h!==false){this.values(e,d,(f.type=="mousedown"&&this.options.animate),true)}}}else{if(d!=this.value()){var h=this._trigger("slide",f,{handle:this.handles[e],value:d});if(h!==false){this._setData("value",d,(f.type=="mousedown"&&this.options.animate))}}}},_stop:function(d,c){var b={handle:this.handles[c],value:this.value()};if(this.options.values&&this.options.values.length){b.value=this.values(c);b.values=this.values()}this._trigger("stop",d,b)},_change:function(d,c){var b={handle:this.handles[c],value:this.value()};if(this.options.values&&this.options.values.length){b.value=this.values(c);b.values=this.values()}this._trigger("change",d,b)},value:function(b){if(arguments.length){this._setData("value",b);this._change(null,0)}return this._value()},values:function(b,e,c,d){if(arguments.length>1){this.options.values[b]=e;this._refreshValue(c);if(!d){this._change(null,b)}}if(arguments.length){if(this.options.values&&this.options.values.length){return this._values(b)}else{return this.value()}}else{return this._values()}},_setData:function(b,d,c){a.widget.prototype._setData.apply(this,arguments);switch(b){case"disabled":if(d){this.handles.filter(".ui-state-focus").blur();this.handles.removeClass("ui-state-hover");this.handles.attr("disabled","disabled")}else{this.handles.removeAttr("disabled")}case"orientation":this._detectOrientation();this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation);this._refreshValue(c);break;case"value":this._refreshValue(c);break}},_step:function(){var b=this.options.step;return b},_value:function(){var b=this.options.value;if(b<this._valueMin()){b=this._valueMin()}if(b>this._valueMax()){b=this._valueMax()}return b},_values:function(b){if(arguments.length){var c=this.options.values[b];if(c<this._valueMin()){c=this._valueMin()}if(c>this._valueMax()){c=this._valueMax()}return c}else{return this.options.values}},_valueMin:function(){var b=this.options.min;return b},_valueMax:function(){var b=this.options.max;return b},_refreshValue:function(c){var f=this.options.range,d=this.options,l=this;if(this.options.values&&this.options.values.length){var i,h;this.handles.each(function(p,n){var o=(l.values(p)-l._valueMin())/(l._valueMax()-l._valueMin())*100;var m={};m[l.orientation=="horizontal"?"left":"bottom"]=o+"%";a(this).stop(1,1)[c?"animate":"css"](m,d.animate);if(l.options.range===true){if(l.orientation=="horizontal"){(p==0)&&l.range.stop(1,1)[c?"animate":"css"]({left:o+"%"},d.animate);(p==1)&&l.range[c?"animate":"css"]({width:(o-lastValPercent)+"%"},{queue:false,duration:d.animate})}else{(p==0)&&l.range.stop(1,1)[c?"animate":"css"]({bottom:(o)+"%"},d.animate);(p==1)&&l.range[c?"animate":"css"]({height:(o-lastValPercent)+"%"},{queue:false,duration:d.animate})}}lastValPercent=o})}else{var j=this.value(),g=this._valueMin(),k=this._valueMax(),e=k!=g?(j-g)/(k-g)*100:0;var b={};b[l.orientation=="horizontal"?"left":"bottom"]=e+"%";this.handle.stop(1,1)[c?"animate":"css"](b,d.animate);(f=="min")&&(this.orientation=="horizontal")&&this.range.stop(1,1)[c?"animate":"css"]({width:e+"%"},d.animate);(f=="max")&&(this.orientation=="horizontal")&&this.range[c?"animate":"css"]({width:(100-e)+"%"},{queue:false,duration:d.animate});(f=="min")&&(this.orientation=="vertical")&&this.range.stop(1,1)[c?"animate":"css"]({height:e+"%"},d.animate);(f=="max")&&(this.orientation=="vertical")&&this.range[c?"animate":"css"]({height:(100-e)+"%"},{queue:false,duration:d.animate})}}}));a.extend(a.ui.slider,{getter:"value values",version:"1.7.2",eventPrefix:"slide",defaults:{animate:false,delay:0,distance:0,max:100,min:0,orientation:"horizontal",range:false,step:1,value:0,values:null}})})(jQuery);;
/*
 * jCarousel - Riding carousels with jQuery
 *   http://sorgalla.com/jcarousel/
 *
 * Copyright (c) 2006 Jan Sorgalla (http://sorgalla.com)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * Built on top of the jQuery library
 *   http://jquery.com
 *
 * Inspired by the "Carousel Component" by Bill Scott
 *   http://billwscott.com/carousel/
 */
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(9($){$.1s.A=9(o){z 4.14(9(){2H r(4,o)})};8 q={W:F,23:1,1G:1,u:7,15:3,16:7,1H:\'2I\',24:\'2J\',1i:0,B:7,1j:7,1I:7,25:7,26:7,27:7,28:7,29:7,2a:7,2b:7,1J:\'<N></N>\',1K:\'<N></N>\',2c:\'2d\',2e:\'2d\',1L:7,1M:7};$.A=9(e,o){4.5=$.17({},q,o||{});4.Q=F;4.D=7;4.H=7;4.t=7;4.R=7;4.S=7;4.O=!4.5.W?\'1N\':\'2f\';4.E=!4.5.W?\'2g\':\'2h\';8 a=\'\',1d=e.J.1d(\' \');1k(8 i=0;i<1d.K;i++){6(1d[i].2i(\'A-2j\')!=-1){$(e).1t(1d[i]);8 a=1d[i];1l}}6(e.2k==\'2K\'||e.2k==\'2L\'){4.t=$(e);4.D=4.t.18();6(4.D.1m(\'A-H\')){6(!4.D.18().1m(\'A-D\'))4.D=4.D.B(\'<N></N>\');4.D=4.D.18()}X 6(!4.D.1m(\'A-D\'))4.D=4.t.B(\'<N></N>\').18()}X{4.D=$(e);4.t=$(e).2M(\'>2l,>2m,N>2l,N>2m\')}6(a!=\'\'&&4.D.18()[0].J.2i(\'A-2j\')==-1)4.D.B(\'<N 2N=" \'+a+\'"></N>\');4.H=4.t.18();6(!4.H.K||!4.H.1m(\'A-H\'))4.H=4.t.B(\'<N></N>\').18();4.S=$(\'.A-11\',4.D);6(4.S.u()==0&&4.5.1K!=7)4.S=4.H.1u(4.5.1K).11();4.S.V(4.J(\'A-11\'));4.R=$(\'.A-19\',4.D);6(4.R.u()==0&&4.5.1J!=7)4.R=4.H.1u(4.5.1J).11();4.R.V(4.J(\'A-19\'));4.H.V(4.J(\'A-H\'));4.t.V(4.J(\'A-t\'));4.D.V(4.J(\'A-D\'));8 b=4.5.16!=7?1n.1O(4.1o()/4.5.16):7;8 c=4.t.2O(\'1v\');8 d=4;6(c.u()>0){8 f=0,i=4.5.1G;c.14(9(){d.1P(4,i++);f+=d.T(4,b)});4.t.y(4.O,f+\'U\');6(!o||o.u===L)4.5.u=c.u()}4.D.y(\'1w\',\'1x\');4.R.y(\'1w\',\'1x\');4.S.y(\'1w\',\'1x\');4.2n=9(){d.19()};4.2o=9(){d.11()};4.1Q=9(){d.2p()};6(4.5.1j!=7)4.5.1j(4,\'2q\');6($.2r.2s){4.1e(F,F);$(2t).1y(\'2P\',9(){d.1z()})}X 4.1z()};8 r=$.A;r.1s=r.2Q={A:\'0.2.3\'};r.1s.17=r.17=$.17;r.1s.17({1z:9(){4.C=7;4.G=7;4.Y=7;4.12=7;4.1a=F;4.1f=7;4.P=7;4.Z=F;6(4.Q)z;4.t.y(4.E,4.1A(4.5.1G)+\'U\');8 p=4.1A(4.5.23);4.Y=4.12=7;4.1p(p,F);$(2t).1R(\'2u\',4.1Q).1y(\'2u\',4.1Q)},2v:9(){4.t.2w();4.t.y(4.E,\'2R\');4.t.y(4.O,\'2S\');6(4.5.1j!=7)4.5.1j(4,\'2v\');4.1z()},2p:9(){6(4.P!=7&&4.Z)4.t.y(4.E,r.I(4.t.y(4.E))+4.P);4.P=7;4.Z=F;6(4.5.1I!=7)4.5.1I(4);6(4.5.16!=7){8 a=4;8 b=1n.1O(4.1o()/4.5.16),O=0,E=0;$(\'1v\',4.t).14(9(i){O+=a.T(4,b);6(i+1<a.C)E=O});4.t.y(4.O,O+\'U\');4.t.y(4.E,-E+\'U\')}4.15(4.C,F)},2T:9(){4.Q=1g;4.1e()},2U:9(){4.Q=F;4.1e()},u:9(s){6(s!=L){4.5.u=s;6(!4.Q)4.1e()}z 4.5.u},2V:9(i,a){6(a==L||!a)a=i;6(4.5.u!==7&&a>4.5.u)a=4.5.u;1k(8 j=i;j<=a;j++){8 e=4.M(j);6(!e.K||e.1m(\'A-1b-1B\'))z F}z 1g},M:9(i){z $(\'.A-1b-\'+i,4.t)},2x:9(i,s){8 e=4.M(i),1S=0,2x=0;6(e.K==0){8 c,e=4.1C(i),j=r.I(i);1q(c=4.M(--j)){6(j<=0||c.K){j<=0?4.t.2y(e):c.1T(e);1l}}}X 1S=4.T(e);e.1t(4.J(\'A-1b-1B\'));1U s==\'2W\'?e.2X(s):e.2w().2Y(s);8 a=4.5.16!=7?1n.1O(4.1o()/4.5.16):7;8 b=4.T(e,a)-1S;6(i>0&&i<4.C)4.t.y(4.E,r.I(4.t.y(4.E))-b+\'U\');4.t.y(4.O,r.I(4.t.y(4.O))+b+\'U\');z e},1V:9(i){8 e=4.M(i);6(!e.K||(i>=4.C&&i<=4.G))z;8 d=4.T(e);6(i<4.C)4.t.y(4.E,r.I(4.t.y(4.E))+d+\'U\');e.1V();4.t.y(4.O,r.I(4.t.y(4.O))-d+\'U\')},19:9(){4.1D();6(4.P!=7&&!4.Z)4.1W(F);X 4.15(((4.5.B==\'1X\'||4.5.B==\'G\')&&4.5.u!=7&&4.G==4.5.u)?1:4.C+4.5.15)},11:9(){4.1D();6(4.P!=7&&4.Z)4.1W(1g);X 4.15(((4.5.B==\'1X\'||4.5.B==\'C\')&&4.5.u!=7&&4.C==1)?4.5.u:4.C-4.5.15)},1W:9(b){6(4.Q||4.1a||!4.P)z;8 a=r.I(4.t.y(4.E));!b?a-=4.P:a+=4.P;4.Z=!b;4.Y=4.C;4.12=4.G;4.1p(a)},15:9(i,a){6(4.Q||4.1a)z;4.1p(4.1A(i),a)},1A:9(i){6(4.Q||4.1a)z;i=r.I(i);6(4.5.B!=\'1c\')i=i<1?1:(4.5.u&&i>4.5.u?4.5.u:i);8 a=4.C>i;8 b=r.I(4.t.y(4.E));8 f=4.5.B!=\'1c\'&&4.C<=1?1:4.C;8 c=a?4.M(f):4.M(4.G);8 j=a?f:f-1;8 e=7,l=0,p=F,d=0;1q(a?--j>=i:++j<i){e=4.M(j);p=!e.K;6(e.K==0){e=4.1C(j).V(4.J(\'A-1b-1B\'));c[a?\'1u\':\'1T\'](e)}c=e;d=4.T(e);6(p)l+=d;6(4.C!=7&&(4.5.B==\'1c\'||(j>=1&&(4.5.u==7||j<=4.5.u))))b=a?b+d:b-d}8 g=4.1o();8 h=[];8 k=0,j=i,v=0;8 c=4.M(i-1);1q(++k){e=4.M(j);p=!e.K;6(e.K==0){e=4.1C(j).V(4.J(\'A-1b-1B\'));c.K==0?4.t.2y(e):c[a?\'1u\':\'1T\'](e)}c=e;8 d=4.T(e);6(d==0){2Z(\'30: 31 1N/2f 32 1k 33. 34 35 36 37 38 39. 3a...\');z 0}6(4.5.B!=\'1c\'&&4.5.u!==7&&j>4.5.u)h.3b(e);X 6(p)l+=d;v+=d;6(v>=g)1l;j++}1k(8 x=0;x<h.K;x++)h[x].1V();6(l>0){4.t.y(4.O,4.T(4.t)+l+\'U\');6(a){b-=l;4.t.y(4.E,r.I(4.t.y(4.E))-l+\'U\')}}8 n=i+k-1;6(4.5.B!=\'1c\'&&4.5.u&&n>4.5.u)n=4.5.u;6(j>n){k=0,j=n,v=0;1q(++k){8 e=4.M(j--);6(!e.K)1l;v+=4.T(e);6(v>=g)1l}}8 o=n-k+1;6(4.5.B!=\'1c\'&&o<1)o=1;6(4.Z&&a){b+=4.P;4.Z=F}4.P=7;6(4.5.B!=\'1c\'&&n==4.5.u&&(n-k+1)>=1){8 m=r.10(4.M(n),!4.5.W?\'1r\':\'1Y\');6((v-m)>g)4.P=v-g-m}1q(i-->o)b+=4.T(4.M(i));4.Y=4.C;4.12=4.G;4.C=o;4.G=n;z b},1p:9(p,a){6(4.Q||4.1a)z;4.1a=1g;8 b=4;8 c=9(){b.1a=F;6(p==0)b.t.y(b.E,0);6(b.5.B==\'1X\'||b.5.B==\'G\'||b.5.u==7||b.G<b.5.u)b.2z();b.1e();b.1Z(\'2A\')};4.1Z(\'3c\');6(!4.5.1H||a==F){4.t.y(4.E,p+\'U\');c()}X{8 o=!4.5.W?{\'2g\':p}:{\'2h\':p};4.t.1p(o,4.5.1H,4.5.24,c)}},2z:9(s){6(s!=L)4.5.1i=s;6(4.5.1i==0)z 4.1D();6(4.1f!=7)z;8 a=4;4.1f=3d(9(){a.19()},4.5.1i*3e)},1D:9(){6(4.1f==7)z;3f(4.1f);4.1f=7},1e:9(n,p){6(n==L||n==7){8 n=!4.Q&&4.5.u!==0&&((4.5.B&&4.5.B!=\'C\')||4.5.u==7||4.G<4.5.u);6(!4.Q&&(!4.5.B||4.5.B==\'C\')&&4.5.u!=7&&4.G>=4.5.u)n=4.P!=7&&!4.Z}6(p==L||p==7){8 p=!4.Q&&4.5.u!==0&&((4.5.B&&4.5.B!=\'G\')||4.C>1);6(!4.Q&&(!4.5.B||4.5.B==\'G\')&&4.5.u!=7&&4.C==1)p=4.P!=7&&4.Z}8 a=4;4.R[n?\'1y\':\'1R\'](4.5.2c,4.2n)[n?\'1t\':\'V\'](4.J(\'A-19-1E\')).20(\'1E\',n?F:1g);4.S[p?\'1y\':\'1R\'](4.5.2e,4.2o)[p?\'1t\':\'V\'](4.J(\'A-11-1E\')).20(\'1E\',p?F:1g);6(4.R.K>0&&(4.R[0].1h==L||4.R[0].1h!=n)&&4.5.1L!=7){4.R.14(9(){a.5.1L(a,4,n)});4.R[0].1h=n}6(4.S.K>0&&(4.S[0].1h==L||4.S[0].1h!=p)&&4.5.1M!=7){4.S.14(9(){a.5.1M(a,4,p)});4.S[0].1h=p}},1Z:9(a){8 b=4.Y==7?\'2q\':(4.Y<4.C?\'19\':\'11\');4.13(\'25\',a,b);6(4.Y!==4.C){4.13(\'26\',a,b,4.C);4.13(\'27\',a,b,4.Y)}6(4.12!==4.G){4.13(\'28\',a,b,4.G);4.13(\'29\',a,b,4.12)}4.13(\'2a\',a,b,4.C,4.G,4.Y,4.12);4.13(\'2b\',a,b,4.Y,4.12,4.C,4.G)},13:9(a,b,c,d,e,f,g){6(4.5[a]==L||(1U 4.5[a]!=\'2B\'&&b!=\'2A\'))z;8 h=1U 4.5[a]==\'2B\'?4.5[a][b]:4.5[a];6(!$.3g(h))z;8 j=4;6(d===L)h(j,c,b);X 6(e===L)4.M(d).14(9(){h(j,4,d,c,b)});X{1k(8 i=d;i<=e;i++)6(i!==7&&!(i>=f&&i<=g))4.M(i).14(9(){h(j,4,i,c,b)})}},1C:9(i){z 4.1P(\'<1v></1v>\',i)},1P:9(e,i){8 a=$(e).V(4.J(\'A-1b\')).V(4.J(\'A-1b-\'+i));a.20(\'3h\',i);z a},J:9(c){z c+\' \'+c+(!4.5.W?\'-3i\':\'-W\')},T:9(e,d){8 a=e.2C!=L?e[0]:e;8 b=!4.5.W?a.1F+r.10(a,\'2D\')+r.10(a,\'1r\'):a.2E+r.10(a,\'2F\')+r.10(a,\'1Y\');6(d==L||b==d)z b;8 w=!4.5.W?d-r.10(a,\'2D\')-r.10(a,\'1r\'):d-r.10(a,\'2F\')-r.10(a,\'1Y\');$(a).y(4.O,w+\'U\');z 4.T(a)},1o:9(){z!4.5.W?4.H[0].1F-r.I(4.H.y(\'3j\'))-r.I(4.H.y(\'3k\')):4.H[0].2E-r.I(4.H.y(\'3l\'))-r.I(4.H.y(\'3m\'))},3n:9(i,s){6(s==L)s=4.5.u;z 1n.3o((((i-1)/s)-1n.3p((i-1)/s))*s)+1}});r.17({3q:9(d){z $.17(q,d||{})},10:9(e,p){6(!e)z 0;8 a=e.2C!=L?e[0]:e;6(p==\'1r\'&&$.2r.2s){8 b={\'1w\':\'1x\',\'3r\':\'3s\',\'1N\':\'1i\'},21,22;$.2G(a,b,9(){21=a.1F});b[\'1r\']=0;$.2G(a,b,9(){22=a.1F});z 22-21}z r.I($.y(a,p))},I:9(v){v=3t(v);z 3u(v)?0:v}})})(3v);',62,218,'||||this|options|if|null|var|function||||||||||||||||||||list|size||||css|return|jcarousel|wrap|first|container|lt|false|last|clip|intval|className|length|undefined|get|div|wh|tail|locked|buttonNext|buttonPrev|dimension|px|addClass|vertical|else|prevFirst|inTail|margin|prev|prevLast|callback|each|scroll|visible|extend|parent|next|animating|item|circular|split|buttons|timer|true|jcarouselstate|auto|initCallback|for|break|hasClass|Math|clipping|animate|while|marginRight|fn|removeClass|before|li|display|block|bind|setup|pos|placeholder|create|stopAuto|disabled|offsetWidth|offset|animation|reloadCallback|buttonNextHTML|buttonPrevHTML|buttonNextCallback|buttonPrevCallback|width|ceil|format|funcResize|unbind|old|after|typeof|remove|scrollTail|both|marginBottom|notify|attr|oWidth|oWidth2|start|easing|itemLoadCallback|itemFirstInCallback|itemFirstOutCallback|itemLastInCallback|itemLastOutCallback|itemVisibleInCallback|itemVisibleOutCallback|buttonNextEvent|click|buttonPrevEvent|height|left|top|indexOf|skin|nodeName|ul|ol|funcNext|funcPrev|reload|init|browser|safari|window|resize|reset|empty|add|prepend|startAuto|onAfterAnimation|object|jquery|marginLeft|offsetHeight|marginTop|swap|new|normal|swing|UL|OL|find|class|children|load|prototype|0px|10px|lock|unlock|has|string|html|append|alert|jCarousel|No|set|items|This|will|cause|an|infinite|loop|Aborting|push|onBeforeAnimation|setTimeout|1000|clearTimeout|isFunction|jcarouselindex|horizontal|borderLeftWidth|borderRightWidth|borderTopWidth|borderBottomWidth|index|round|floor|defaults|float|none|parseInt|isNaN|jQuery'.split('|'),0,{}));
/*
 * jquery.tools 1.1.2 - The missing UI library for the Web
 * 
 * [tools.tabs-1.0.4, tools.scrollable-1.1.2, tools.scrollable.circular-0.5.1, tools.scrollable.autoscroll-1.0.1, tools.scrollable.navigator-1.0.2]
 * 
 * Copyright (c) 2009 Tero Piirainen
 * http://flowplayer.org/tools/
 *
 * Dual licensed under MIT and GPL 2+ licenses
 * http://www.opensource.org/licenses
 * 
 * -----
 * 
 * File generated: Mon Oct 19 07:57:52 GMT+00:00 2009
 */
//(function(b){b.tools=b.tools||{};b.tools.scrollable={version:"1.1.2",conf:{size:5,vertical:false,speed:400,keyboard:true,keyboardSteps:null,disabledClass:"disabled",hoverClass:null,clickable:true,activeClass:"active",easing:"swing",loop:false,items:".items",item:null,prev:".prev",next:".next",prevPage:".prevPage",nextPage:".nextPage",api:false}};var c;function a(o,m){var r=this,p=b(this),d=!m.vertical,e=o.children(),k=0,i;if(!c){c=r}b.each(m,function(s,t){if(b.isFunction(t)){p.bind(s,t)}});if(e.length>1){e=b(m.items,o)}function l(t){var s=b(t);return m.globalNav?s:o.parent().find(t)}o.data("finder",l);var f=l(m.prev),h=l(m.next),g=l(m.prevPage),n=l(m.nextPage);b.extend(r,{getIndex:function(){return k},getClickIndex:function(){var s=r.getItems();return s.index(s.filter("."+m.activeClass))},getConf:function(){return m},getSize:function(){return r.getItems().size()},getPageAmount:function(){return Math.ceil(this.getSize()/m.size)},getPageIndex:function(){return Math.ceil(k/m.size)},getNaviButtons:function(){return f.add(h).add(g).add(n)},getRoot:function(){return o},getItemWrap:function(){return e},getItems:function(){return e.children(m.item)},getVisibleItems:function(){return r.getItems().slice(k,k+m.size)},seekTo:function(s,w,t){if(s<0){s=0}if(k===s){return r}if(b.isFunction(w)){t=w}if(s>r.getSize()-m.size){return m.loop?r.begin():this.end()}var u=r.getItems().eq(s);if(!u.length){return r}var v=b.Event("onBeforeSeek");p.trigger(v,[s]);if(v.isDefaultPrevented()){return r}if(w===undefined||b.isFunction(w)){w=m.speed}function x(){if(t){t.call(r,s)}p.trigger("onSeek",[s])}if(d){e.animate({left:-u.position().left},w,m.easing,x)}else{e.animate({top:-u.position().top},w,m.easing,x)}c=r;k=s;v=b.Event("onStart");p.trigger(v,[s]);if(v.isDefaultPrevented()){return r}f.add(g).toggleClass(m.disabledClass,s===0);h.add(n).toggleClass(m.disabledClass,s>=r.getSize()-m.size);return r},move:function(u,t,s){i=u>0;return this.seekTo(k+u,t,s)},next:function(t,s){return this.move(1,t,s)},prev:function(t,s){return this.move(-1,t,s)},movePage:function(w,v,u){i=w>0;var s=m.size*w;var t=k%m.size;if(t>0){s+=(w>0?-t:m.size-t)}return this.move(s,v,u)},prevPage:function(t,s){return this.movePage(-1,t,s)},nextPage:function(t,s){return this.movePage(1,t,s)},setPage:function(t,u,s){return this.seekTo(t*m.size,u,s)},begin:function(t,s){i=false;return this.seekTo(0,t,s)},end:function(t,s){i=true;var u=this.getSize()-m.size;return u>0?this.seekTo(u,t,s):r},reload:function(){p.trigger("onReload");return r},focus:function(){c=r;return r},click:function(u){var v=r.getItems().eq(u),s=m.activeClass,t=m.size;if(u<0||u>=r.getSize()){return r}if(t==1){if(m.loop){return r.next()}if(u===0||u==r.getSize()-1){i=(i===undefined)?true:!i}return i===false?r.prev():r.next()}if(t==2){if(u==k){u--}r.getItems().removeClass(s);v.addClass(s);return r.seekTo(u,time,fn)}if(!v.hasClass(s)){r.getItems().removeClass(s);v.addClass(s);var x=Math.floor(t/2);var w=u-x;if(w>r.getSize()-t){w=r.getSize()-t}if(w!==u){return r.seekTo(w)}}return r},bind:function(s,t){p.bind(s,t);return r},unbind:function(s){p.unbind(s);return r}});b.each("onBeforeSeek,onStart,onSeek,onReload".split(","),function(s,t){r[t]=function(u){return r.bind(t,u)}});f.addClass(m.disabledClass).click(function(){r.prev()});h.click(function(){r.next()});n.click(function(){r.nextPage()});if(r.getSize()<m.size){h.add(n).addClass(m.disabledClass)}g.addClass(m.disabledClass).click(function(){r.prevPage()});var j=m.hoverClass,q="keydown."+Math.random().toString().substring(10);r.onReload(function(){if(j){r.getItems().hover(function(){b(this).addClass(j)},function(){b(this).removeClass(j)})}if(m.clickable){r.getItems().each(function(s){b(this).unbind("click.scrollable").bind("click.scrollable",function(t){if(b(t.target).is("a")){return}return r.click(s)})})}if(m.keyboard){b(document).unbind(q).bind(q,function(t){if(t.altKey||t.ctrlKey){return}if(m.keyboard!="static"&&c!=r){return}var u=m.keyboardSteps;if(d&&(t.keyCode==37||t.keyCode==39)){r.move(t.keyCode==37?-u:u);return t.preventDefault()}if(!d&&(t.keyCode==38||t.keyCode==40)){r.move(t.keyCode==38?-u:u);return t.preventDefault()}return true})}else{b(document).unbind(q)}});r.reload()}b.fn.scrollable=function(d){var e=this.eq(typeof d=="number"?d:0).data("scrollable");if(e){return e}var f=b.extend({},b.tools.scrollable.conf);d=b.extend(f,d);d.keyboardSteps=d.keyboardSteps||d.size;this.each(function(){e=new a(b(this),d);b(this).data("scrollable",e)});return d.api?e:this}})(jQuery);
//(function(b){var a=b.tools.scrollable;a.plugins=a.plugins||{};a.plugins.circular={version:"0.5.1",conf:{api:false,clonedClass:"cloned"}};b.fn.circular=function(e){var d=b.extend({},a.plugins.circular.conf),c;b.extend(d,e);this.each(function(){var i=b(this).scrollable(),n=i.getItems(),k=i.getConf(),f=i.getItemWrap(),j=0;if(i){c=i}if(n.length<k.size){return false}n.slice(0,k.size).each(function(o){b(this).clone().appendTo(f).click(function(){i.click(n.length+o)}).addClass(d.clonedClass)});var l=b.makeArray(n.slice(-k.size)).reverse();b(l).each(function(o){b(this).clone().prependTo(f).click(function(){i.click(-o-1)}).addClass(d.clonedClass)});var m=f.children(k.item);var h=k.hoverClass;if(h){m.hover(function(){b(this).addClass(h)},function(){b(this).removeClass(h)})}function g(o){var p=m.eq(o);if(k.vertical){f.css({top:-p.position().top})}else{f.css({left:-p.position().left})}}g(k.size);b.extend(i,{move:function(s,r,p,q){var u=j+s+k.size;var t=u>i.getSize()-k.size;if(u<=0||t){var o=j+k.size+(t?-n.length:n.length);g(o);u=o+s}if(q){m.removeClass(k.activeClass).eq(u+Math.floor(k.size/2)).addClass(k.activeClass)}if(u===j+k.size){return self}return i.seekTo(u,r,p)},begin:function(p,o){return this.seekTo(k.size,p,o)},end:function(p,o){return this.seekTo(n.length,p,o)},click:function(p,r,q){if(!k.clickable){return self}if(k.size==1){return this.next()}var s=p-j,o=k.activeClass;s-=Math.floor(k.size/2);return this.move(s,r,q,true)},getIndex:function(){return j},setPage:function(p,q,o){return this.seekTo(p*k.size+k.size,q,o)},getPageAmount:function(){return Math.ceil(n.length/k.size)},getPageIndex:function(){if(j<0){return this.getPageAmount()-1}if(j>=n.length){return 0}var o=(j+k.size)/k.size-1;return o},getVisibleItems:function(){var o=j+k.size;return m.slice(o,o+k.size)}});i.onStart(function(p,o){j=o-k.size;return false});i.getNaviButtons().removeClass(k.disabledClass)});return d.api?c:this}})(jQuery);
//(function(b){var a=b.tools.scrollable;a.plugins=a.plugins||{};a.plugins.autoscroll={version:"1.0.1",conf:{autoplay:true,interval:3000,autopause:true,steps:1,api:false}};b.fn.autoscroll=function(d){if(typeof d=="number"){d={interval:d}}var e=b.extend({},a.plugins.autoscroll.conf),c;b.extend(e,d);this.each(function(){var g=b(this).scrollable();if(g){c=g}var i,f,h=true;g.play=function(){if(i){return}h=false;i=setInterval(function(){g.move(e.steps)},e.interval);g.move(e.steps)};g.pause=function(){i=clearInterval(i)};g.stop=function(){g.pause();h=true};if(e.autopause){g.getRoot().add(g.getNaviButtons()).hover(function(){g.pause();clearInterval(f)},function(){if(!h){f=setTimeout(g.play,e.interval)}})}if(e.autoplay){setTimeout(g.play,e.interval)}});return e.api?c:this}})(jQuery);
//(function(b){var a=b.tools.scrollable;a.plugins=a.plugins||{};a.plugins.navigator={version:"1.0.2",conf:{navi:".navi",naviItem:null,activeClass:"active",indexed:false,api:false,idPrefix:null}};b.fn.navigator=function(d){var e=b.extend({},a.plugins.navigator.conf),c;if(typeof d=="string"){d={navi:d}}d=b.extend(e,d);this.each(function(){var i=b(this).scrollable(),f=i.getRoot(),l=f.data("finder").call(null,d.navi),g=null,k=i.getNaviButtons();if(i){c=i}i.getNaviButtons=function(){return k.add(l)};function j(){if(!l.children().length||l.data("navi")==i){l.empty();l.data("navi",i);for(var m=0;m<i.getPageAmount();m++){l.append(b("<"+(d.naviItem||"a")+"/>"))}g=l.children().each(function(n){var o=b(this);o.click(function(p){i.setPage(n);return p.preventDefault()});if(d.indexed){o.text(n)}if(d.idPrefix){o.attr("id",d.idPrefix+n)}})}else{g=d.naviItem?l.find(d.naviItem):l.children();g.each(function(n){var o=b(this);o.click(function(p){i.setPage(n);return p.preventDefault()})})}g.eq(0).addClass(d.activeClass)}i.onStart(function(o,n){var m=d.activeClass;g.removeClass(m).eq(i.getPageIndex()).addClass(m)});i.onReload(function(){j()});j();var h=g.filter("[href="+location.hash+"]");if(h.length){i.move(g.index(h))}});return d.api?c:this}})(jQuery);
/*
 * jQuery.ScrollTo - Easy element scrolling using jQuery.
 * Copyright (c) 2007-2009 Ariel Flesler - aflesler(at)gmail(dot)com | http://flesler.blogspot.com
 * Dual licensed under MIT and GPL.
 * Date: 5/25/2009
 * @author Ariel Flesler
 * @version 1.4.2
 *
 * http://flesler.blogspot.com/2007/10/jqueryscrollto.html
 */
(function(d){var k=d.scrollTo=function(a,i,e){d(window).scrollTo(a,i,e)};k.defaults={axis:'xy',duration:parseFloat(d.fn.jquery)>=1.3?0:1};k.window=function(a){return d(window)._scrollable()};d.fn._scrollable=function(){return this.map(function(){var a=this,i=!a.nodeName||d.inArray(a.nodeName.toLowerCase(),['iframe','#document','html','body'])!=-1;if(!i)return a;var e=(a.contentWindow||a).document||a.ownerDocument||a;return d.browser.safari||e.compatMode=='BackCompat'?e.body:e.documentElement})};d.fn.scrollTo=function(n,j,b){if(typeof j=='object'){b=j;j=0}if(typeof b=='function')b={onAfter:b};if(n=='max')n=9e9;b=d.extend({},k.defaults,b);j=j||b.speed||b.duration;b.queue=b.queue&&b.axis.length>1;if(b.queue)j/=2;b.offset=p(b.offset);b.over=p(b.over);return this._scrollable().each(function(){var q=this,r=d(q),f=n,s,g={},u=r.is('html,body');switch(typeof f){case'number':case'string':if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(f)){f=p(f);break}f=d(f,this);case'object':if(f.is||f.style)s=(f=d(f)).offset()}d.each(b.axis.split(''),function(a,i){var e=i=='x'?'Left':'Top',h=e.toLowerCase(),c='scroll'+e,l=q[c],m=k.max(q,i);if(s){g[c]=s[h]+(u?0:l-r.offset()[h]);if(b.margin){g[c]-=parseInt(f.css('margin'+e))||0;g[c]-=parseInt(f.css('border'+e+'Width'))||0}g[c]+=b.offset[h]||0;if(b.over[h])g[c]+=f[i=='x'?'width':'height']()*b.over[h]}else{var o=f[h];g[c]=o.slice&&o.slice(-1)=='%'?parseFloat(o)/100*m:o}if(/^\d+$/.test(g[c]))g[c]=g[c]<=0?0:Math.min(g[c],m);if(!a&&b.queue){if(l!=g[c])t(b.onAfterFirst);delete g[c]}});t(b.onAfter);function t(a){r.animate(g,j,b.easing,a&&function(){a.call(this,n,b)})}}).end()};k.max=function(a,i){var e=i=='x'?'Width':'Height',h='scroll'+e;if(!d(a).is('html,body'))return a[h]-d(a)[e.toLowerCase()]();var c='client'+e,l=a.ownerDocument.documentElement,m=a.ownerDocument.body;return Math.max(l[h],m[h])-Math.min(l[c],m[c])};function p(a){return typeof a=='object'?a:{top:a,left:a}}})(jQuery);
/*
 * ColorBox v1.3.3 - a full featured, light-weight, customizable lightbox based on jQuery 1.3
 */
(function(c){var s="colorbox",B="hover",o=true,g=false,e,E=!c.support.opacity,N=E&&!window.XMLHttpRequest,O="click.colorbox",fa="cbox_open",J="cbox_load",P="cbox_complete",Q="cbox_cleanup",aa="cbox_closed",R="resize.cbox_resize",u,j,x,p,S,T,U,V,h,r,n,K,L,ba,W,y,F,G,M,C,D,z,A,m,k,a,H,I,X,Y={transition:"elastic",speed:350,width:g,height:g,innerWidth:g,innerHeight:g,initialWidth:"400",initialHeight:"400",maxWidth:g,maxHeight:g,scalePhotos:o,scrolling:o,inline:g,html:g,iframe:g,photo:g,href:g,title:g, rel:g,opacity:0.9,preloading:o,current:"image {current} of {total}",previous:"previous",next:"next",close:"close",open:g,overlayClose:o,slideshow:g,slideshowAuto:o,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",preloadIMG:o};function v(b,d){d=d==="x"?document.documentElement.clientWidth:document.documentElement.clientHeight;return typeof b==="string"?Math.round(b.match(/%/)?d/100*parseInt(b,10):parseInt(b,10)):b}function Z(b){return a.photo||b.match(/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i)} function ca(){for(var b in a)if(typeof a[b]==="function")a[b]=a[b].call(m)}e=c.fn.colorbox=function(b,d){this.length?this.each(function(){var i=c(this).data(s)?c.extend({},c(this).data(s),b):c.extend({},Y,b);c(this).data(s,i).addClass("cboxelement")}):c(this).data(s,c.extend({},Y,b));c(this).unbind(O).bind(O,function(i){m=this;a=c(m).data(s);ca();X=d||g;var l=a.rel||m.rel;if(l&&l!=="nofollow"){h=c(".cboxelement").filter(function(){var f=c(this).data(s).rel||this.rel;return f===l});k=h.index(m);if(k< 0){h=h.add(m);k=h.length-1}}else{h=c(m);k=0}if(!H){I=H=o;c().bind("keydown.cbox_close",function(f){if(f.keyCode===27){f.preventDefault();e.close()}}).bind("keydown.cbox_arrows",function(f){if(f.keyCode===37){f.preventDefault();G.click()}else if(f.keyCode===39){f.preventDefault();F.click()}});a.overlayClose&&u.css({cursor:"pointer"}).one("click",e.close);m.blur();c.event.trigger(fa);M.html(a.close);u.css({opacity:a.opacity}).show();a.w=v(a.initialWidth,"x");a.h=v(a.initialHeight,"y");e.position(0); N&&r.bind("resize.cboxie6 scroll.cboxie6",function(){u.css({width:r.width(),height:r.height(),top:r.scrollTop(),left:r.scrollLeft()})}).trigger("scroll.cboxie6")}e.slideshow();e.load();i.preventDefault()});b&&b.open&&c(this).triggerHandler(O);return this};e.init=function(){function b(d){return c('<div id="cbox'+d+'"/>')}r=c(window);j=c('<div id="colorbox"/>');u=b("Overlay").hide();x=b("Wrapper");p=b("Content").append(n=b("LoadedContent").css({width:0,height:0}),K=b("LoadingOverlay"),L=b("LoadingGraphic"), ba=b("Title"),W=b("Current"),y=b("Slideshow"),F=b("Next"),G=b("Previous"),M=b("Close"));x.append(c("<div/>").append(b("TopLeft"),S=b("TopCenter"),b("TopRight")),c("<div/>").append(T=b("MiddleLeft"),p,U=b("MiddleRight")),c("<div/>").append(b("BottomLeft"),V=b("BottomCenter"),b("BottomRight"))).children().children().css({"float":"left"});c("body").prepend(u,j.append(x));if(E){j.addClass("cboxIE");N&&u.css("position","absolute")}p.children().addClass(B).mouseover(function(){c(this).addClass(B)}).mouseout(function(){c(this).removeClass(B)}).hide(); C=S.height()+V.height()+p.outerHeight(o)-p.height();D=T.width()+U.width()+p.outerWidth(o)-p.width();z=n.outerHeight(o);A=n.outerWidth(o);j.css({"padding-bottom":C,"padding-right":D}).hide();F.click(e.next);G.click(e.prev);M.click(e.close);p.children().removeClass(B)};e.position=function(b,d){var i=document.documentElement.clientHeight;i=Math.max(i-a.h-z-C,0)/2+r.scrollTop();var l=Math.max(document.documentElement.clientWidth-a.w-A-D,0)/2+r.scrollLeft();b=j.width()===a.w+A&&j.height()===a.h+z?0:b; x[0].style.width=x[0].style.height="9999px";function f(q){S[0].style.width=V[0].style.width=p[0].style.width=q.style.width;L[0].style.height=K[0].style.height=p[0].style.height=T[0].style.height=U[0].style.height=q.style.height}j.dequeue().animate({width:a.w+A,height:a.h+z,top:i,left:l},{duration:b,complete:function(){f(this);I=g;x[0].style.width=a.w+A+D+"px";x[0].style.height=a.h+z+C+"px";d&&d()},step:function(){f(this)}})};e.resize=function(b){if(H){function d(w){e.position(w,function(){if(H){if(E){q&& n.fadeIn(100);j[0].style.removeAttribute("filter")}p.children().show();if(a.iframe)n.append("<iframe id='cboxIframe'"+(a.scrolling?" ":"scrolling='no'")+" name='iframe_"+(new Date).getTime()+"' frameborder=0 src='"+(a.href||m.href)+"' />");K.hide();L.hide();y.hide();if(h.length>1){W.html(a.current.replace(/\{current\}/,k+1).replace(/\{total\}/,h.length));F.html(a.next);G.html(a.previous);a.slideshow&&y.show()}else{W.hide();F.hide();G.hide()}ba.html(a.title||m.title);c.event.trigger(P);X&&X.call(m); a.transition==="fade"&&j.fadeTo(t,1,function(){E&&j[0].style.removeAttribute("filter")});r.bind(R,function(){e.position(0)})}})}function i(){a.h=a.h||n.height();return a.h}function l(){a.w=a.w||n.width();return a.w}var f,q,t=a.transition==="none"?0:a.speed;r.unbind(R);if(b){n.remove();n=c('<div id="cboxLoadedContent"/>').html(b);n.hide().appendTo(u).css({width:l(),overflow:a.scrolling?"auto":"hidden"}).css({height:i()}).prependTo(p);c("#cboxPhoto").css({cssFloat:"none"});N&&c("select:not(#colorbox select)").filter(function(){return this.style.visibility!== "hidden"}).css({visibility:"hidden"}).one(Q,function(){this.style.visibility="inherit"});a.transition==="fade"&&j.fadeTo(t,0,function(){d(0)})||d(t);if(a.preloading&&h.length>1){b=k>0?h[k-1]:h[h.length-1];f=k<h.length-1?h[k+1]:h[0];f=c(f).data(s).href||f.href;b=c(b).data(s).href||b.href;Z(f)&&c("<img />").attr("src",f);Z(b)&&c("<img />").attr("src",b)}}else b=setTimeout(function(){var w=n.wrapInner("<div style='overflow:auto'></div>").children();a.h=w.height();n.css({height:a.h});w.replaceWith(w.children()); e.position(t)},1)}};e.load=function(){var b,d,i,l=e.resize;I=o;function f(q){var t=c(q),w=t.find("img"),$=w.length;function da(){var ea=new Image;$-=1;if($>=0&&a.preloadIMG){ea.onload=da;ea.src=w[$].src}else l(t)}da()}m=h[k];a=c(m).data(s);ca();c.event.trigger(J);a.h=a.height?v(a.height,"y")-z-C:a.innerHeight?v(a.innerHeight,"y"):g;a.w=a.width?v(a.width,"x")-A-D:a.innerWidth?v(a.innerWidth,"x"):g;a.mw=a.w;a.mh=a.h;if(a.maxWidth){a.mw=v(a.maxWidth,"x")-A-D;a.mw=a.w&&a.w<a.mw?a.w:a.mw}if(a.maxHeight){a.mh= v(a.maxHeight,"y")-z-C;a.mh=a.h&&a.h<a.mh?a.h:a.mh}b=a.href||c(m).attr("href");K.show();L.show();M.show();if(a.inline){c('<div id="cboxInlineTemp" />').hide().insertBefore(c(b)[0]).bind(J+" "+Q,function(){c(this).replaceWith(n.children())});l(c(b))}else if(a.iframe)l(" ");else if(a.html)f(a.html);else if(Z(b)){d=new Image;d.onload=function(){var q;d.onload=null;d.id="cboxPhoto";c(d).css({margin:"auto",border:"none",display:"block",cssFloat:"left"});if(a.scalePhotos){i=function(){d.height-=d.height* q;d.width-=d.width*q};if(a.mw&&d.width>a.mw){q=(d.width-a.mw)/d.width;i()}if(a.mh&&d.height>a.mh){q=(d.height-a.mh)/d.height;i()}}if(a.h)d.style.marginTop=Math.max(a.h-d.height,0)/2+"px";l(d);h.length>1&&c(d).css({cursor:"pointer"}).click(e.next);if(E)d.style.msInterpolationMode="bicubic"};d.src=b}else c("<div />").load(b,function(q,t){t==="success"?f(this):l(c("<p>Request unsuccessful.</p>"))})};e.next=function(){if(!I){k=k<h.length-1?k+1:0;e.load()}};e.prev=function(){if(!I){k=k>0?k-1:h.length- 1;e.load()}};e.slideshow=function(){var b,d,i="cboxSlideshow_";y.bind(aa,function(){y.unbind();clearTimeout(d);j.removeClass(i+"off "+i+"on")});function l(){y.text(a.slideshowStop).bind(P,function(){d=setTimeout(e.next,a.slideshowSpeed)}).bind(J,function(){clearTimeout(d)}).one("click",function(){b();c(this).removeClass(B)});j.removeClass(i+"off").addClass(i+"on")}b=function(){clearTimeout(d);y.text(a.slideshowStart).unbind(P+" "+J).one("click",function(){l();d=setTimeout(e.next,a.slideshowSpeed); c(this).removeClass(B)});j.removeClass(i+"on").addClass(i+"off")};if(a.slideshow&&h.length>1)a.slideshowAuto?l():b()};e.close=function(){c.event.trigger(Q);H=g;c().unbind("keydown.cbox_close keydown.cbox_arrows");r.unbind(R+" resize.cboxie6 scroll.cboxie6");u.css({cursor:"auto"}).fadeOut("fast");j.stop(o,g).fadeOut("fast",function(){n.remove();j.css({opacity:1});p.children().hide();c.event.trigger(aa)})};e.element=function(){return c(m)};e.settings=Y;c(e.init)})(jQuery);
/*
 * jquery.innerfade.js
 * 
 * Datum: 2008-02-14
 * Firma: Medienfreunde Hofmann & Baldes GbR
 * Author: Torsten Baldes
 * Mail: t.baldes@medienfreunde.com
 * Web: http://medienfreunde.com
 * 
 * based on the work of Matt Oakes http://portfolio.gizone.co.uk/applications/slideshow/
 * and Ralf S. Engelschall http://trainofthoughts.org/
 */
(function($) {

    $.fn.innerfade = function(options) {
        return this.each(function() {   
            $.innerfade(this, options);
        });
    };

    $.innerfade = function(container, options) {
        var settings = {
        		'animationtype':    'fade',
            'speed':            'normal',
            'type':             'sequence',
            'timeout':          2000,
            'containerheight':  'auto',
            'runningclass':     'innerfade',
            'children':         null
        };
        if (options)
            $.extend(settings, options);
        if (settings.children === null)
            var elements = $(container).children();
        else
            var elements = $(container).children(settings.children);
        if (elements.length > 1) {
            $(container).css('position', 'relative').css('height', settings.containerheight).addClass(settings.runningclass);
            for (var i = 0; i < elements.length; i++) {
                $(elements[i]).css('z-index', String(elements.length-i)).css('position', 'absolute').hide();
            };
            if (settings.type == "sequence") {
                setTimeout(function() {
                    $.innerfade.next(elements, settings, 1, 0);
                }, settings.timeout);
                $(elements[0]).show();
            } else if (settings.type == "random") {
            		var last = Math.floor ( Math.random () * ( elements.length ) );
                setTimeout(function() {
                    do { 
												current = Math.floor ( Math.random ( ) * ( elements.length ) );
										} while (last == current );             
										$.innerfade.next(elements, settings, current, last);
                }, settings.timeout);
                $(elements[last]).show();
						} else if ( settings.type == 'random_start' ) {
								settings.type = 'sequence';
								var current = Math.floor ( Math.random () * ( elements.length ) );
								setTimeout(function(){
									$.innerfade.next(elements, settings, (current + 1) %  elements.length, current);
								}, settings.timeout);
								$(elements[current]).show();
						}	else {
							alert('Innerfade-Type must either be \'sequence\', \'random\' or \'random_start\'');
						}
				}
    };

    $.innerfade.next = function(elements, settings, current, last) {
        if (settings.animationtype == 'slide') {
            $(elements[last]).slideUp(settings.speed);
            $(elements[current]).slideDown(settings.speed);
        } else if (settings.animationtype == 'fade') {
            $(elements[last]).fadeOut(settings.speed);
            $(elements[current]).fadeIn(settings.speed, function() {
							removeFilter($(this)[0]);
						});
        } else
            alert('Innerfade-animationtype must either be \'slide\' or \'fade\'');
        if (settings.type == "sequence") {
            if ((current + 1) < elements.length) {
                current = current + 1;
                last = current - 1;
            } else {
                current = 0;
                last = elements.length - 1;
            }
        } else if (settings.type == "random") {
            last = current;
            while (current == last)
                current = Math.floor(Math.random() * elements.length);
        } else
            alert('Innerfade-Type must either be \'sequence\', \'random\' or \'random_start\'');
        setTimeout((function() {
            $.innerfade.next(elements, settings, current, last);
        }), settings.timeout);
    };

})(jQuery);

// **** remove Opacity-Filter in ie ****
function removeFilter(element) {
	if(element.style.removeAttribute){
		element.style.removeAttribute('filter');
	}
}
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990 as an unpublished work by Bitstream Inc.  All rights reserved. 
 * Confidential.
 */
Cufon.registerFont({"w":203,"face":{"font-family":"ITC Avant Garde Gothic","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-24 -347 382.55 85","underline-thickness":"19.8","underline-position":"-31.32","stemh":"24","stemv":"24","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":101},"!":{"d":"64,0r-25,0r0,-47r25,0r0,47xm64,-67r-25,0r0,-189r25,0r0,189","w":103},"\"":{"d":"35,-252r0,97r-18,0r0,-97r18,0xm83,-252r0,97r-18,0r0,-97r18,0","w":100},"#":{"d":"161,-256r-29,85r46,0r30,-85r23,0r-30,85r55,0r-6,19r-56,0r-17,49r60,0r-7,19r-60,0r-30,84r-22,0r30,-84r-47,0r-30,84r-23,0r30,-84r-57,0r6,-19r58,0r17,-49r-62,0r6,-19r63,0r30,-85r22,0xm171,-152r-46,0r-17,49r46,0","w":276},"$":{"d":"27,-76r24,0v-1,35,16,53,50,53v32,0,51,-19,51,-47v0,-36,-23,-42,-60,-54v-39,-13,-59,-27,-59,-64v0,-33,23,-62,56,-66r0,-37r25,0r0,37v35,4,55,27,57,64r-25,0v0,-26,-17,-43,-43,-43v-29,0,-45,18,-45,44v0,33,27,41,66,51v78,19,63,134,-10,137r0,43r-25,0r0,-43v-37,-4,-62,-34,-62,-75"},"%":{"d":"174,-58v0,-35,28,-63,63,-63v35,0,63,28,63,63v0,35,-28,63,-63,63v-35,0,-63,-28,-63,-63xm196,-58v0,22,18,40,40,40v22,0,40,-18,40,-40v0,-22,-18,-40,-40,-40v-22,0,-40,18,-40,40xm216,-261r21,0r-137,266r-21,0xm16,-198v0,-35,28,-63,63,-63v35,0,63,28,63,63v0,35,-28,63,-63,63v-35,0,-63,-28,-63,-63xm39,-198v0,22,17,40,39,40v22,0,40,-18,40,-40v0,-22,-18,-39,-40,-39v-22,0,-39,17,-39,39","w":315},"&":{"d":"175,-49v-28,79,-151,67,-152,-23v0,-30,17,-59,48,-73v-51,-34,-32,-115,33,-116v32,0,59,28,59,60v0,26,-17,48,-49,62r52,48r31,-79r27,0r-39,97r58,53r-16,19xm156,-65r-68,-64v-56,19,-49,109,11,109v23,0,40,-15,57,-45xm98,-155v27,-10,39,-26,39,-47v0,-20,-16,-35,-34,-35v-19,0,-35,13,-35,37v0,18,11,30,30,45","w":249},"(":{"d":"76,-261r0,28v-48,38,-29,124,-29,199v0,36,3,62,29,83r0,29v-69,-29,-53,-137,-54,-232v0,-53,18,-88,54,-107","w":95},")":{"d":"19,-261v69,28,52,137,54,231v0,53,-18,89,-54,108r0,-29v48,-38,29,-123,29,-198v0,-36,-3,-63,-29,-84r0,-28","w":95},"*":{"d":"90,-172r-32,46r-19,-13r35,-44r-52,-15r6,-21r52,17r0,-54r20,0r0,54r50,-17r8,21r-53,15r36,44r-19,13","w":180},"+":{"d":"159,-215r0,99r96,0r0,17r-96,0r0,99r-18,0r0,-99r-96,0r0,-17r96,0r0,-99r18,0","w":299},",":{"d":"44,28r-26,0r28,-75r25,0","w":101},"-":{"d":"99,-108r0,23r-82,0r0,-23r82,0","w":115},".":{"d":"63,0r-25,0r0,-47r25,0r0,47","w":101},"\/":{"d":"13,33r-22,0r88,-289r21,0","w":100},"0":{"d":"102,5v-49,0,-87,-35,-87,-95r0,-76v-5,-55,36,-95,87,-95v51,0,86,32,86,94r0,78v3,60,-36,94,-86,94xm40,-85v0,45,26,68,62,68v37,0,61,-23,61,-67r0,-88v0,-44,-25,-67,-61,-67v-36,0,-62,23,-62,68r0,86"},"1":{"d":"119,0r-27,0r0,-234r-44,0r0,-22r71,0r0,256"},"2":{"d":"182,0r-159,0r0,-25r91,-86v27,-26,44,-44,44,-71v0,-31,-21,-56,-55,-56v-35,0,-57,27,-55,68r-25,0v-2,-56,34,-91,82,-91v42,0,78,34,78,81v0,69,-87,111,-126,155r125,0r0,25"},"3":{"d":"19,-78v8,1,22,-3,26,2v0,35,24,59,54,59v33,0,58,-24,58,-59v0,-43,-31,-65,-80,-59r0,-22v36,5,62,-9,62,-41v0,-24,-17,-41,-38,-41v-25,0,-41,15,-41,43r-23,0v2,-40,27,-65,65,-65v59,0,86,80,38,111v72,32,48,155,-39,155v-50,0,-81,-31,-82,-83"},"4":{"d":"160,0r-25,0r0,-49r-120,0r0,-23r116,-184r29,0r0,184r28,0r0,23r-28,0r0,49xm136,-72r1,-154r-95,154r94,0"},"5":{"d":"15,-78r25,0v2,35,31,60,62,60v34,0,61,-28,61,-67v0,-65,-88,-88,-117,-35r-19,-9r22,-127r116,0r0,25r-94,0r-13,72v56,-42,131,5,131,74v0,50,-40,90,-88,90v-45,0,-82,-33,-86,-83"},"6":{"d":"109,-256r31,0r-59,93v60,-17,108,23,108,81v0,50,-37,87,-88,87v-52,0,-86,-39,-86,-84v0,-71,65,-122,94,-177xm103,-145v-36,0,-62,28,-62,63v0,37,28,65,62,65v32,0,59,-25,59,-64v0,-38,-25,-64,-59,-64"},"7":{"d":"75,0r-28,0r101,-231r-112,0r0,-25r141,0r0,23"},"8":{"d":"59,-143v-54,-32,-23,-118,42,-118v68,0,96,86,43,118v72,34,39,148,-44,148v-78,0,-111,-113,-41,-148xm45,-73v0,34,26,56,55,56v34,0,58,-26,58,-58v0,-34,-23,-56,-56,-56v-34,0,-57,21,-57,58xm57,-197v0,26,17,43,43,43v31,0,48,-16,48,-43v0,-24,-19,-41,-46,-41v-26,0,-45,17,-45,41"},"9":{"d":"94,0r-31,0r60,-93v-60,17,-108,-22,-108,-81v0,-50,36,-87,87,-87v52,0,87,39,87,84v0,70,-66,121,-95,177xm100,-111v36,0,62,-29,62,-64v0,-37,-28,-64,-62,-64v-32,0,-59,25,-59,64v0,38,25,64,59,64"},":":{"d":"64,0r-25,0r0,-47r25,0r0,47xm64,-147r-25,0r0,-46r25,0r0,46","w":103},";":{"d":"64,-193r0,46r-25,0r0,-46r25,0xm44,28r-26,0r28,-75r25,0","w":103},"<":{"d":"253,-180r-179,73r179,72r0,20r-207,-85r0,-14r207,-85r0,19","w":299},"=":{"d":"255,-149r0,18r-210,0r0,-18r210,0xm255,-83r0,17r-210,0r0,-17r210,0","w":299},">":{"d":"253,-114r0,14r-207,85r0,-20r180,-72r-180,-73r0,-19","w":299},"?":{"d":"71,0r0,-47r25,0r0,47r-25,0xm156,-185v0,61,-62,61,-60,115r-25,0v0,-22,9,-43,27,-62v15,-17,32,-24,32,-54v0,-31,-19,-49,-47,-49v-30,0,-48,20,-49,57r-26,0v1,-51,32,-83,77,-83v43,0,71,32,71,76","w":166},"@":{"d":"160,-37v43,0,57,-49,64,-89v-4,-22,-19,-35,-38,-35v-37,0,-63,36,-63,83v0,26,14,41,37,41xm339,-137v0,59,-37,114,-97,115v-25,0,-37,-12,-33,-32v-23,50,-107,40,-107,-26v0,-55,37,-96,82,-96v22,0,36,10,44,29r11,-22r16,0r-27,115v0,10,7,16,19,16v46,-3,73,-50,73,-100v0,-58,-50,-102,-125,-102v-89,0,-154,68,-154,150v0,122,163,159,250,91r7,10v-98,81,-277,30,-277,-105v0,-88,78,-162,175,-162v79,0,143,49,143,119","w":360},"A":{"d":"153,-103r-48,-129r-48,129r96,0xm18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0","w":214},"B":{"d":"24,-256v70,-3,132,2,132,68v0,23,-10,40,-28,50v27,12,42,32,42,62v0,75,-68,80,-146,76r0,-256xm48,-231r0,86v46,1,82,-3,82,-44v0,-38,-37,-44,-82,-42xm48,-121r0,97v50,3,96,-2,96,-48v0,-46,-45,-52,-96,-49","w":183},"C":{"d":"11,-130v0,-69,59,-131,130,-131v51,0,93,25,117,71r-30,0v-21,-29,-47,-46,-87,-46v-58,0,-104,50,-104,107v0,105,135,149,189,66r30,0v-23,44,-64,68,-113,68v-76,0,-132,-59,-132,-135","w":270},"D":{"d":"229,-129v2,79,-58,138,-144,129r-61,0r0,-256r72,0v84,-5,132,54,133,127xm202,-129v0,-61,-42,-108,-107,-102r-46,0r0,207v93,8,153,-18,153,-105","w":240},"E":{"d":"49,-141r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-256r133,0r0,25r-108,0r0,90","w":180},"F":{"d":"24,0r0,-256r126,0r0,25r-101,0r0,90r101,0r0,25r-101,0r0,116r-25,0","w":174},"G":{"d":"11,-130v0,-70,59,-131,133,-131v50,0,90,25,114,69r-30,0v-24,-30,-50,-45,-85,-45v-61,0,-106,51,-106,108v0,64,47,110,106,110v46,0,87,-32,99,-81r-129,0r0,-23r159,0v-4,76,-60,128,-131,128v-73,0,-130,-58,-130,-135","w":283},"H":{"d":"49,0r-25,0r0,-256r25,0r0,115r122,0r0,-115r25,0r0,256r-25,0r0,-117r-122,0r0,117","w":219},"I":{"d":"49,0r-26,0r0,-256r26,0r0,256","w":72},"J":{"d":"138,-256v-8,102,34,261,-70,261v-37,0,-63,-25,-63,-67r25,0v1,26,19,42,40,42v39,0,43,-28,43,-74r0,-162r25,0","w":160},"K":{"d":"48,-79r0,79r-25,0r0,-256r25,0r0,142r119,-142r30,0r-104,124r102,132r-31,0r-87,-113","w":193},"L":{"d":"139,0r-115,0r0,-256r25,0r0,231r90,0r0,25","w":148},"M":{"d":"25,0r0,-256r37,0r89,223r88,-223r37,0r0,256r-24,0r0,-226r-90,226r-23,0r-90,-226r0,226r-24,0","w":297},"N":{"d":"194,-31r-3,-225r25,0r0,256r-31,0r-140,-226r3,226r-25,0r0,-256r30,0","w":240},"O":{"d":"272,-130v0,75,-59,135,-131,135v-73,0,-130,-59,-130,-135v0,-69,60,-131,130,-131v72,0,131,61,131,131xm141,-237v-59,-1,-105,54,-104,108v0,63,47,110,106,110v58,0,103,-48,103,-111v0,-57,-46,-107,-105,-107","w":283},"P":{"d":"171,-183v0,61,-52,83,-125,75r0,108r-25,0r0,-256r54,0v62,-4,96,24,96,73xm46,-231r0,98v50,2,98,0,98,-48v0,-49,-46,-52,-98,-50","w":181},"Q":{"d":"191,-31v-42,-47,-80,-70,-141,-44v29,50,84,71,141,44xm211,-46v69,-62,27,-193,-70,-191v-68,2,-119,66,-100,139v73,-29,120,-3,170,52xm11,-130v0,-69,60,-131,130,-131v73,0,131,55,131,136v0,38,-13,68,-41,94v13,8,26,10,44,10r0,23v-26,3,-41,-3,-64,-17v-87,56,-200,-11,-200,-115","w":283},"R":{"d":"157,-174v1,-53,-51,-63,-112,-57r0,231r-25,0r0,-256r69,0v54,-4,95,32,95,81v0,39,-26,72,-62,75r62,100r-30,0r-76,-123v45,5,79,-13,79,-51","w":200},"S":{"d":"10,-73r25,0v1,32,19,52,46,52v30,0,49,-21,49,-52v0,-37,-23,-47,-60,-55v-79,-18,-63,-133,15,-133v38,0,62,24,65,68r-24,0v-3,-28,-18,-44,-41,-44v-40,0,-59,55,-28,75v32,20,98,28,98,84v0,49,-29,83,-74,83v-41,0,-70,-31,-71,-78","w":167},"T":{"d":"78,0r-25,0r0,-231r-51,0r0,-25r128,0r0,25r-52,0r0,231","w":131},"U":{"d":"45,-99v-5,48,17,81,57,81v87,1,47,-154,56,-238r25,0v-6,104,31,261,-80,261v-116,0,-76,-156,-83,-261r25,0r0,157"},"V":{"d":"-7,-256r25,0r81,218r81,-218r26,0r-97,256r-20,0","w":200},"W":{"d":"158,-256r52,210r64,-210r24,0r-79,256r-21,0r-51,-209r-52,209r-21,0r-79,-256r24,0r64,210r52,-210r23,0","w":292},"X":{"d":"30,0r-31,0r89,-129r-87,-127r31,0r71,106r70,-106r31,0r-87,127r89,129r-32,0r-71,-109","w":204},"Y":{"d":"98,-94r0,94r-25,0r0,-94r-82,-162r29,0r66,133r66,-133r28,0","w":172},"Z":{"d":"126,-231r-112,0r0,-25r142,0r0,24r-120,207r122,0r0,25r-151,0r0,-24","w":164},"[":{"d":"82,51r0,21r-59,0r0,-328r59,0r0,21r-34,0r0,286r34,0","w":95},"\\":{"d":"87,33r-87,-289r21,0r88,289r-22,0","w":100},"]":{"d":"13,51r34,0r0,-286r-34,0r0,-21r59,0r0,328r-59,0r0,-21","w":95},"^":{"d":"192,-256r93,98r-25,0r-80,-80r-81,80r-25,0r94,-98r24,0","w":360},"_":{"d":"180,67r0,18r-180,0r0,-18r180,0","w":180},"a":{"d":"183,-31v-15,22,-43,36,-74,36v-58,0,-99,-46,-99,-101v0,-91,123,-139,173,-66r0,-31r24,0r0,193r-24,0r0,-31xm183,-98v0,-42,-35,-77,-72,-77v-40,0,-75,33,-75,80v0,45,35,77,74,77v37,0,73,-34,73,-80","w":226},"b":{"d":"44,-95v0,42,35,77,72,77v40,0,75,-33,75,-80v0,-45,-35,-77,-74,-77v-40,0,-73,35,-73,80xm44,-256r0,95v53,-73,173,-27,173,64v0,90,-119,139,-173,68r0,29r-25,0r0,-256r25,0","w":226},"c":{"d":"175,-134v-31,-69,-139,-45,-139,38v0,82,111,106,139,36r27,0v-15,42,-48,65,-92,65v-58,0,-100,-47,-100,-101v0,-57,45,-103,101,-103v41,0,75,23,91,65r-27,0","w":218},"d":{"d":"183,-163r0,-93r24,0r0,256r-24,0r0,-29v-54,69,-173,24,-173,-68v0,-89,121,-137,173,-66xm183,-95v0,-46,-36,-80,-73,-80v-39,0,-74,32,-74,77v0,47,35,80,75,80v37,0,72,-35,72,-77","w":226},"e":{"d":"182,-110v-10,-86,-138,-86,-146,0r146,0xm210,-89r-175,0v2,78,112,97,140,28r28,0v-18,43,-51,66,-93,66v-58,0,-101,-48,-101,-102v0,-58,42,-102,102,-102v58,0,100,44,99,110","w":218},"f":{"d":"54,0r-24,0r0,-172r-26,0r0,-21r25,0v-2,-46,20,-67,66,-66r0,22v-32,0,-42,13,-41,44r41,0r0,21r-41,0r0,172","w":99},"g":{"d":"36,-98v0,48,35,79,73,79v37,0,73,-34,73,-76v0,-46,-35,-80,-73,-80v-39,0,-73,32,-73,77xm53,16v27,64,141,35,129,-50v-50,77,-173,27,-173,-63v0,-91,122,-139,173,-65r0,-31r24,0r0,161v0,70,-38,108,-95,108v-44,0,-78,-24,-87,-60r29,0","w":225},"h":{"d":"102,-174v-76,0,-56,98,-58,174r-25,0r0,-256r25,0r0,85v14,-17,34,-26,59,-26v93,0,78,107,78,197r-24,0v-5,-71,24,-174,-55,-174","w":200},"i":{"d":"20,0r0,-193r25,0r0,193r-25,0xm45,-216r-25,0r0,-40r25,0r0,40","w":65},"j":{"d":"45,-193r0,194v0,44,-10,63,-49,61r0,-23v24,0,24,-9,24,-35r0,-197r25,0xm45,-216r-25,0r0,-40r25,0r0,40","w":65},"k":{"d":"45,0r-25,0r0,-256r25,0r0,152r70,-89r28,0r-70,89r85,104r-31,0r-82,-101r0,101","w":149},"l":{"d":"20,0r0,-256r25,0r0,256r-25,0","w":65},"m":{"d":"102,-174v-76,0,-56,98,-58,174r-25,0r0,-193r25,0r0,22v29,-38,107,-32,128,8v16,-22,39,-34,68,-34v90,0,75,109,75,197r-23,0v-5,-70,22,-174,-54,-174v-75,0,-56,99,-58,174r-23,0v-4,-70,21,-174,-55,-174","w":335},"n":{"d":"102,-174v-76,0,-56,98,-58,174r-24,0r0,-193r24,0r0,22v15,-18,35,-26,61,-26v54,0,76,35,76,96r0,101r-24,0v-5,-70,23,-174,-55,-174","w":200},"o":{"d":"9,-96v0,-58,47,-103,99,-103v57,0,101,46,101,100v0,57,-44,104,-100,104v-58,0,-100,-47,-100,-101xm35,-97v0,45,32,79,74,79v41,0,74,-33,74,-79v0,-46,-33,-79,-76,-79v-37,0,-72,32,-72,79","w":218},"p":{"d":"44,-98v0,46,36,80,73,80v39,0,74,-32,74,-77v0,-47,-35,-80,-75,-80v-38,0,-72,36,-72,77xm19,-193r25,0r0,31v14,-22,42,-36,72,-36v59,0,101,45,101,102v0,89,-124,138,-173,65r0,94r-25,0r0,-256","w":226},"q":{"d":"183,-98v0,-42,-35,-77,-72,-77v-40,0,-75,33,-75,80v0,45,35,77,74,77v37,0,73,-34,73,-80xm183,-193r24,0r0,256r-24,0r0,-92v-52,69,-173,23,-173,-67v0,-91,123,-139,173,-66r0,-31","w":226},"r":{"d":"45,0r-26,0r0,-193r24,0r0,22v13,-18,26,-25,45,-25r0,27v-72,4,-34,105,-43,169","w":90},"s":{"d":"103,-50v1,-51,-87,-34,-87,-94v0,-30,25,-54,56,-54v33,0,54,19,55,53r-27,0v-1,-19,-11,-29,-29,-29v-30,-1,-40,43,-14,54v33,14,73,22,73,67v0,33,-25,58,-61,58v-36,0,-60,-25,-61,-66v8,1,19,-2,25,1v-4,49,68,56,70,10","w":140},"t":{"d":"37,0r0,-168r-37,0r0,-25r37,0r0,-63r25,0r0,63r36,0r0,25r-36,0r0,168r-25,0","w":98},"u":{"d":"99,-18v75,0,56,-99,58,-175r24,0r0,193r-24,0r0,-21v-15,19,-33,26,-59,26v-97,0,-77,-107,-79,-198r25,0v5,71,-23,175,55,175","w":200},"v":{"d":"95,0r-22,0r-76,-193r26,0r62,156r63,-156r27,0","w":171},"w":{"d":"179,-49r46,-144r27,0r-66,193r-16,0r-45,-147r-45,147r-16,0r-65,-193r26,0r47,144r44,-144r18,0","w":249},"x":{"d":"30,-193r45,73r48,-73r29,0r-63,92r63,101r-29,0r-49,-81r-52,81r-27,0r65,-100r-57,-93r27,0","w":149},"y":{"d":"-6,-193r29,0r59,157r63,-157r29,0r-105,256r-26,0r26,-63","w":165},"z":{"d":"137,0r-133,0r0,-23r100,-147r-89,0r0,-23r117,0r0,26r-99,142r104,0r0,25","w":145},"{":{"d":"150,-241v-90,-17,-6,135,-80,148v42,7,34,56,34,103v0,36,10,46,46,44r0,19v-71,9,-69,-42,-67,-108v1,-39,-14,-51,-52,-49r0,-19v55,9,54,-39,52,-91v-1,-52,14,-68,67,-66r0,19","w":180},"|":{"d":"100,-275r0,360r-19,0r0,-360r19,0","w":180},"}":{"d":"30,-260v73,-9,70,43,68,108v-1,39,14,51,52,49r0,19v-56,-9,-54,40,-52,92v2,53,-15,67,-68,65r0,-19v90,19,6,-135,81,-147v-42,-8,-35,-55,-35,-103v0,-36,-10,-47,-46,-45r0,-19","w":180},"~":{"d":"99,-128v37,0,66,24,102,24v22,0,43,-10,68,-28r0,20v-54,48,-109,1,-170,1v-21,0,-42,10,-68,28r0,-20v24,-17,47,-25,68,-25","w":299},"\u00a1":{"d":"39,-189r25,0r0,189r-25,0r0,-189xm39,-256r25,0r0,47r-25,0r0,-47","w":103},"\u00a2":{"d":"171,-160v-10,-31,-32,-47,-64,-47v-37,0,-69,33,-69,80v0,83,113,110,133,31r26,0v-14,42,-41,66,-79,70r0,40r-24,0r0,-40v-49,-7,-82,-52,-82,-101v0,-51,33,-93,82,-101r0,-37r24,0r0,36v41,5,67,28,79,69r-26,0"},"\u00a3":{"d":"192,-93v11,58,-22,93,-80,93r-91,0r0,-22r39,0v23,-28,17,-68,-4,-96r-44,0r0,-25r25,0v-23,-60,13,-118,75,-118v40,0,69,24,77,67r-23,0v-6,-28,-27,-44,-54,-44v-51,-1,-70,52,-48,95r87,0r0,25r-67,0v18,31,19,65,1,96v58,7,99,-15,82,-71r25,0"},"\u00a5":{"d":"150,-166r32,0r0,19r-43,0r-15,30r58,0r0,19r-68,0r0,98r-25,0r0,-98r-69,0r0,-19r59,0r-15,-30r-44,0r0,-19r33,0r-45,-88r28,0r66,131r65,-131r28,0"},"\u00a7":{"d":"30,-22v7,1,20,-3,24,2v0,24,12,37,34,37v20,0,32,-11,32,-29v0,-50,-101,-57,-101,-110v0,-23,12,-40,35,-52v-36,-26,-14,-89,37,-87v35,2,56,21,55,59r-23,0v6,-46,-66,-51,-63,-9v3,49,100,53,100,111v0,21,-11,37,-34,49v39,31,13,92,-39,90v-37,-2,-59,-23,-57,-61xm44,-128v1,30,47,47,68,63v34,-20,28,-51,-5,-71r-39,-24v-16,6,-24,18,-24,32","w":180},"\u00a4":{"d":"63,-213v26,-21,66,-21,92,0r36,-36r12,12r-36,36v20,27,20,64,0,91r36,36r-12,12r-36,-36v-27,21,-65,21,-92,0r-36,36r-11,-12r36,-36v-21,-27,-21,-64,0,-91r-36,-36r11,-12xm166,-156v0,-31,-25,-56,-57,-56v-31,0,-57,25,-57,56v0,31,26,57,57,57v32,0,57,-26,57,-57","w":218},"'":{"d":"35,-252r0,97r-18,0r0,-97r18,0","w":51},"\u00ab":{"d":"63,-40r-43,-56r43,-57r24,0r-43,57r43,56r-24,0xm117,-40r-44,-56r44,-57r24,0r-43,57r43,56r-24,0","w":164},"\u00b7":{"d":"35,-128v0,-9,7,-17,16,-17v9,0,16,8,16,17v0,9,-7,16,-16,16v-9,0,-16,-7,-16,-16","w":101},"\u00b6":{"d":"165,-248r-22,0r0,248r-14,0r0,-248r-34,0r0,248r-14,0r0,-138v-41,-2,-66,-26,-66,-61v0,-36,27,-61,69,-61r81,0r0,12","w":180},"\u00bb":{"d":"48,-40r-25,0r44,-56r-44,-57r25,0r43,57xm101,-40r-24,0r43,-56r-43,-57r24,0r43,57","w":164},"\u00bf":{"d":"93,-256r0,47r-25,0r0,-47r25,0xm8,-70v0,-62,61,-62,60,-116r25,0v0,22,-9,43,-27,62v-15,17,-31,24,-31,54v0,31,18,49,46,49v30,0,48,-20,49,-57r26,0v-1,51,-31,83,-76,83v-43,0,-72,-31,-72,-75","w":166},"`":{"d":"96,-219r-47,-62r26,0r37,62r-16,0","w":180},"\u00b4":{"d":"84,-219r-16,0r37,-62r26,0","w":180},"\u00af":{"d":"45,-237r0,-20r90,0r0,20r-90,0","w":180},"\u00a8":{"d":"45,-231r0,-29r25,0r0,29r-25,0xm110,-231r0,-29r25,0r0,29r-25,0","w":180},"\u00b8":{"d":"90,19v27,-1,42,11,42,31v0,36,-55,35,-84,24r0,-14v26,6,61,14,64,-10v2,-16,-14,-19,-33,-18r0,-32r11,0r0,19","w":180},"\u00c6":{"d":"64,-85r-58,85r-30,0r176,-256r145,0r0,25r-108,0r0,90r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-85r-100,0xm82,-110r83,0r1,-121r-3,0","w":318},"\u00aa":{"d":"138,-142v-36,49,-130,19,-130,-46v0,-64,93,-96,130,-46r0,-22r18,0r0,135r-18,0r0,-21xm138,-189v0,-30,-27,-54,-55,-54v-30,0,-56,23,-56,56v0,31,26,54,55,54v28,0,56,-24,56,-56","w":170},"\u00d8":{"d":"50,-33v-83,-79,-22,-228,93,-228v28,0,52,8,75,25r30,-37r17,14r-31,37v82,74,20,227,-93,227v-28,0,-50,-7,-75,-25r-36,44r-17,-14xm217,-202r-135,163v70,52,164,-5,164,-90v0,-28,-10,-52,-29,-73xm66,-53r136,-163v-67,-55,-164,8,-164,87v0,30,10,57,28,76","w":283},"\u00ba":{"d":"7,-188v0,-40,35,-72,74,-72v43,0,76,32,76,70v0,40,-33,73,-75,73v-44,0,-75,-33,-75,-71xm27,-188v0,31,23,54,55,54v31,0,55,-23,55,-55v0,-32,-24,-55,-56,-55v-28,0,-54,23,-54,56","w":163},"\u00e6":{"d":"183,-98v0,-42,-35,-77,-72,-77v-40,0,-75,33,-75,80v0,45,35,77,74,77v37,0,73,-34,73,-80xm356,-110v-12,-86,-136,-85,-146,0r146,0xm207,0r-24,0r0,-27v-56,67,-173,20,-173,-69v0,-89,114,-138,173,-70r0,-27r24,0r0,28v56,-65,185,-28,175,77r-173,0v2,76,111,95,139,28r28,0v-25,71,-120,87,-169,33r0,27","w":391},"\u00f8":{"d":"150,-163v-48,-33,-115,2,-115,66v0,19,6,36,17,51xm67,-32v49,37,116,-4,116,-66v0,-19,-5,-35,-17,-51xm20,24r-15,-14r31,-37v-60,-59,-11,-172,73,-172v21,0,40,6,56,18r30,-36r16,13r-30,36v60,60,15,176,-74,173v-21,0,-38,-5,-56,-18","w":218},"\u00df":{"d":"20,0v8,-99,-35,-258,73,-258v68,0,101,90,47,116v37,9,60,33,60,69v0,44,-34,78,-80,78v-37,0,-61,-18,-75,-56r0,51r-25,0xm92,-235v-71,0,-41,106,-47,172r24,0v11,65,103,54,105,-5v2,-39,-34,-56,-85,-53v1,-6,-2,-16,1,-20v32,0,50,-19,50,-47v0,-28,-20,-47,-48,-47","w":210},"\u00c1":{"d":"153,-103r-48,-129r-48,129r96,0xm18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm99,-281r-16,0r37,-62r26,0","w":214},"\u00c2":{"d":"57,-281r35,-61r26,0r36,61r-16,0r-33,-46r-32,46r-16,0xm153,-103r-48,-129r-48,129r96,0xm18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0","w":214},"\u00c4":{"d":"153,-103r-48,-129r-48,129r96,0xm18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm60,-293r0,-29r25,0r0,29r-25,0xm125,-293r0,-29r25,0r0,29r-25,0","w":214},"\u00c0":{"d":"153,-103r-48,-129r-48,129r96,0xm18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm111,-281r-47,-62r26,0r37,62r-16,0","w":214},"\u00c5":{"d":"18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0xm153,-103r-48,-129r-48,129r96,0xm65,-306v0,-22,18,-41,40,-41v22,0,41,19,41,41v0,22,-19,40,-41,40v-23,0,-40,-18,-40,-40xm81,-306v0,14,11,24,25,24v14,0,25,-10,25,-24v0,-14,-11,-26,-25,-26v-14,0,-25,12,-25,26","w":214},"\u00c3":{"d":"156,-325v-9,40,-39,33,-71,24v-7,0,-13,4,-17,13r-14,0v8,-38,40,-36,71,-24v8,0,12,-4,16,-13r15,0xm153,-103r-48,-129r-48,129r96,0xm18,0r-27,0r99,-256r31,0r99,256r-27,0r-31,-80r-114,0","w":214},"\u00c7":{"d":"11,-130v0,-69,59,-131,130,-131v51,0,93,25,117,71r-30,0v-21,-29,-47,-46,-87,-46v-58,0,-104,50,-104,107v0,105,135,149,189,66r30,0v-23,44,-64,68,-113,68v-76,0,-132,-59,-132,-135xm141,19v27,-1,42,11,42,31v0,36,-55,35,-84,24r0,-14v26,6,61,14,64,-10v2,-16,-14,-19,-33,-18r0,-32r11,0r0,19","w":270},"\u00c9":{"d":"49,-141r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-256r133,0r0,25r-108,0r0,90xm87,-281r-16,0r37,-62r26,0","w":180},"\u00ca":{"d":"44,-281r36,-61r26,0r35,61r-16,0r-32,-46r-33,46r-16,0xm49,-141r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-256r133,0r0,25r-108,0r0,90","w":180},"\u00cb":{"d":"49,-141r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-256r133,0r0,25r-108,0r0,90xm48,-293r0,-29r25,0r0,29r-25,0xm113,-293r0,-29r25,0r0,29r-25,0","w":180},"\u00c8":{"d":"49,-141r108,0r0,25r-108,0r0,91r108,0r0,25r-133,0r0,-256r133,0r0,25r-108,0r0,90xm99,-281r-47,-62r26,0r37,62r-16,0","w":180},"\u00cd":{"d":"49,0r-26,0r0,-256r26,0r0,256xm30,-281r-16,0r37,-62r26,0","w":72},"\u00ce":{"d":"-12,-281r35,-61r27,0r35,61r-16,0r-33,-46r-32,46r-16,0xm49,0r-26,0r0,-256r26,0r0,256","w":72},"\u00cf":{"d":"49,0r-26,0r0,-256r26,0r0,256xm-9,-293r0,-29r25,0r0,29r-25,0xm56,-293r0,-29r25,0r0,29r-25,0","w":72},"\u00cc":{"d":"49,0r-26,0r0,-256r26,0r0,256xm42,-281r-47,-62r26,0r37,62r-16,0","w":72},"\u00d1":{"d":"171,-325v-9,40,-39,33,-71,24v-7,0,-12,4,-16,13r-15,0v8,-38,40,-36,71,-24v8,0,13,-4,17,-13r14,0xm194,-31r-3,-225r25,0r0,256r-31,0r-140,-226r3,226r-25,0r0,-256r30,0","w":240},"\u00d3":{"d":"272,-130v0,75,-59,135,-131,135v-73,0,-130,-59,-130,-135v0,-69,60,-131,130,-131v72,0,131,61,131,131xm141,-237v-59,-1,-105,54,-104,108v0,63,47,110,106,110v58,0,103,-48,103,-111v0,-57,-46,-107,-105,-107xm136,-281r-16,0r37,-62r26,0","w":283},"\u00d4":{"d":"93,-281r36,-61r26,0r35,61r-16,0r-32,-46r-33,46r-16,0xm272,-130v0,75,-59,135,-131,135v-73,0,-130,-59,-130,-135v0,-69,60,-131,130,-131v72,0,131,61,131,131xm141,-237v-59,-1,-105,54,-104,108v0,63,47,110,106,110v58,0,103,-48,103,-111v0,-57,-46,-107,-105,-107","w":283},"\u00d6":{"d":"272,-130v0,75,-59,135,-131,135v-73,0,-130,-59,-130,-135v0,-69,60,-131,130,-131v72,0,131,61,131,131xm141,-237v-59,-1,-105,54,-104,108v0,63,47,110,106,110v58,0,103,-48,103,-111v0,-57,-46,-107,-105,-107xm97,-293r0,-29r25,0r0,29r-25,0xm162,-293r0,-29r25,0r0,29r-25,0","w":283},"\u00d2":{"d":"272,-130v0,75,-59,135,-131,135v-73,0,-130,-59,-130,-135v0,-69,60,-131,130,-131v72,0,131,61,131,131xm141,-237v-59,-1,-105,54,-104,108v0,63,47,110,106,110v58,0,103,-48,103,-111v0,-57,-46,-107,-105,-107xm148,-281r-47,-62r26,0r37,62r-16,0","w":283},"\u00d5":{"d":"193,-325v-9,40,-40,33,-72,24v-7,0,-12,4,-16,13r-14,0v7,-39,39,-36,70,-24v8,0,13,-4,17,-13r15,0xm272,-130v0,75,-59,135,-131,135v-73,0,-130,-59,-130,-135v0,-69,60,-131,130,-131v72,0,131,61,131,131xm141,-237v-59,-1,-105,54,-104,108v0,63,47,110,106,110v58,0,103,-48,103,-111v0,-57,-46,-107,-105,-107","w":283},"\u00da":{"d":"45,-99v-5,48,17,81,57,81v87,1,47,-154,56,-238r25,0v-6,104,31,261,-80,261v-116,0,-76,-156,-83,-261r25,0r0,157xm96,-281r-16,0r37,-62r26,0"},"\u00db":{"d":"53,-281r36,-61r26,0r35,61r-16,0r-32,-46r-33,46r-16,0xm45,-99v-5,48,17,81,57,81v87,1,47,-154,56,-238r25,0v-6,104,31,261,-80,261v-116,0,-76,-156,-83,-261r25,0r0,157"},"\u00dc":{"d":"45,-99v-5,48,17,81,57,81v87,1,47,-154,56,-238r25,0v-6,104,31,261,-80,261v-116,0,-76,-156,-83,-261r25,0r0,157xm57,-293r0,-29r25,0r0,29r-25,0xm122,-293r0,-29r25,0r0,29r-25,0"},"\u00d9":{"d":"45,-99v-5,48,17,81,57,81v87,1,47,-154,56,-238r25,0v-6,104,31,261,-80,261v-116,0,-76,-156,-83,-261r25,0r0,157xm108,-281r-47,-62r26,0r37,62r-16,0"},"\u00e1":{"d":"183,-31v-15,22,-43,36,-74,36v-58,0,-99,-46,-99,-101v0,-91,123,-139,173,-66r0,-31r24,0r0,193r-24,0r0,-31xm183,-98v0,-42,-35,-77,-72,-77v-40,0,-75,33,-75,80v0,45,35,77,74,77v37,0,73,-34,73,-80xm106,-219r-16,0r37,-62r26,0","w":226},"\u00e2":{"d":"63,-219r35,-62r27,0r35,62r-16,0r-32,-47r-33,47r-16,0xm183,-31v-15,22,-43,36,-74,36v-58,0,-99,-46,-99,-101v0,-91,123,-139,173,-66r0,-31r24,0r0,193r-24,0r0,-31xm183,-98v0,-42,-35,-77,-72,-77v-40,0,-75,33,-75,80v0,45,35,77,74,77v37,0,73,-34,73,-80","w":226},"\u00e4":{"d":"183,-31v-15,22,-43,36,-74,36v-58,0,-99,-46,-99,-101v0,-91,123,-139,173,-66r0,-31r24,0r0,193r-24,0r0,-31xm183,-98v0,-42,-35,-77,-72,-77v-40,0,-75,33,-75,80v0,45,35,77,74,77v37,0,73,-34,73,-80xm67,-231r0,-29r25,0r0,29r-25,0xm132,-231r0,-29r25,0r0,29r-25,0","w":226},"\u00e0":{"d":"183,-31v-15,22,-43,36,-74,36v-58,0,-99,-46,-99,-101v0,-91,123,-139,173,-66r0,-31r24,0r0,193r-24,0r0,-31xm183,-98v0,-42,-35,-77,-72,-77v-40,0,-75,33,-75,80v0,45,35,77,74,77v37,0,73,-34,73,-80xm118,-219r-47,-62r26,0r37,62r-16,0","w":226},"\u00e5":{"d":"183,-98v0,-42,-35,-77,-72,-77v-40,0,-75,33,-75,80v0,45,35,77,74,77v37,0,73,-34,73,-80xm183,-31v-15,22,-43,36,-74,36v-58,0,-99,-46,-99,-101v0,-91,123,-139,173,-66r0,-31r24,0r0,193r-24,0r0,-31xm73,-248v0,-22,18,-40,40,-40v22,0,41,18,41,40v0,22,-19,40,-41,40v-23,0,-40,-18,-40,-40xm89,-248v0,14,11,25,25,25v14,0,25,-11,25,-25v0,-14,-11,-26,-25,-26v-14,0,-25,12,-25,26","w":226},"\u00e3":{"d":"162,-264v-8,41,-40,35,-71,24v-7,0,-12,4,-16,13r-14,0v7,-38,39,-33,70,-24v8,0,13,-4,17,-13r14,0xm183,-31v-15,22,-43,36,-74,36v-58,0,-99,-46,-99,-101v0,-91,123,-139,173,-66r0,-31r24,0r0,193r-24,0r0,-31xm183,-98v0,-42,-35,-77,-72,-77v-40,0,-75,33,-75,80v0,45,35,77,74,77v37,0,73,-34,73,-80","w":226},"\u00e7":{"d":"175,-134v-31,-69,-139,-45,-139,38v0,82,111,106,139,36r27,0v-15,42,-48,65,-92,65v-58,0,-100,-47,-100,-101v0,-57,45,-103,101,-103v41,0,75,23,91,65r-27,0xm109,19v27,-1,42,11,42,31v0,36,-55,35,-84,24r0,-14v26,6,61,14,64,-10v2,-16,-14,-19,-33,-18r0,-32r11,0r0,19","w":218},"\u00e9":{"d":"182,-110v-10,-86,-138,-86,-146,0r146,0xm210,-89r-175,0v2,78,112,97,140,28r28,0v-18,43,-51,66,-93,66v-58,0,-101,-48,-101,-102v0,-58,42,-102,102,-102v58,0,100,44,99,110xm105,-219r-16,0r37,-62r26,0","w":218},"\u00ea":{"d":"63,-219r35,-62r27,0r35,62r-16,0r-33,-47r-32,47r-16,0xm182,-110v-10,-86,-138,-86,-146,0r146,0xm210,-89r-175,0v2,78,112,97,140,28r28,0v-18,43,-51,66,-93,66v-58,0,-101,-48,-101,-102v0,-58,42,-102,102,-102v58,0,100,44,99,110","w":218},"\u00eb":{"d":"182,-110v-10,-86,-138,-86,-146,0r146,0xm210,-89r-175,0v2,78,112,97,140,28r28,0v-18,43,-51,66,-93,66v-58,0,-101,-48,-101,-102v0,-58,42,-102,102,-102v58,0,100,44,99,110xm66,-231r0,-29r25,0r0,29r-25,0xm131,-231r0,-29r25,0r0,29r-25,0","w":218},"\u00e8":{"d":"182,-110v-10,-86,-138,-86,-146,0r146,0xm210,-89r-175,0v2,78,112,97,140,28r28,0v-18,43,-51,66,-93,66v-58,0,-101,-48,-101,-102v0,-58,42,-102,102,-102v58,0,100,44,99,110xm117,-219r-47,-62r26,0r37,62r-16,0","w":218},"\u00ed":{"d":"20,0r0,-193r25,0r0,193r-25,0xm27,-219r-16,0r37,-62r26,0","w":65},"\u00ee":{"d":"-16,-219r35,-62r27,0r35,62r-16,0r-32,-47r-33,47r-16,0xm20,0r0,-193r25,0r0,193r-25,0","w":65},"\u00ef":{"d":"20,0r0,-193r25,0r0,193r-25,0xm-12,-231r0,-29r25,0r0,29r-25,0xm53,-231r0,-29r25,0r0,29r-25,0","w":65},"\u00ec":{"d":"20,0r0,-193r25,0r0,193r-25,0xm39,-219r-47,-62r26,0r37,62r-16,0","w":65},"\u00f1":{"d":"153,-264v-8,41,-40,35,-71,24v-7,0,-12,4,-16,13r-14,0v7,-38,39,-33,70,-24v8,0,13,-4,17,-13r14,0xm102,-174v-76,0,-56,98,-58,174r-24,0r0,-193r24,0r0,22v15,-18,35,-26,61,-26v54,0,76,35,76,96r0,101r-24,0v-5,-70,23,-174,-55,-174","w":200},"\u00f3":{"d":"9,-96v0,-58,47,-103,99,-103v57,0,101,46,101,100v0,57,-44,104,-100,104v-58,0,-100,-47,-100,-101xm35,-97v0,45,32,79,74,79v41,0,74,-33,74,-79v0,-46,-33,-79,-76,-79v-37,0,-72,32,-72,79xm105,-219r-16,0r37,-62r26,0","w":218},"\u00f4":{"d":"62,-219r36,-62r26,0r35,62r-16,0r-32,-47r-33,47r-16,0xm9,-96v0,-58,47,-103,99,-103v57,0,101,46,101,100v0,57,-44,104,-100,104v-58,0,-100,-47,-100,-101xm35,-97v0,45,32,79,74,79v41,0,74,-33,74,-79v0,-46,-33,-79,-76,-79v-37,0,-72,32,-72,79","w":218},"\u00f6":{"d":"9,-96v0,-58,47,-103,99,-103v57,0,101,46,101,100v0,57,-44,104,-100,104v-58,0,-100,-47,-100,-101xm35,-97v0,45,32,79,74,79v41,0,74,-33,74,-79v0,-46,-33,-79,-76,-79v-37,0,-72,32,-72,79xm66,-231r0,-29r25,0r0,29r-25,0xm131,-231r0,-29r25,0r0,29r-25,0","w":218},"\u00f2":{"d":"9,-96v0,-58,47,-103,99,-103v57,0,101,46,101,100v0,57,-44,104,-100,104v-58,0,-100,-47,-100,-101xm35,-97v0,45,32,79,74,79v41,0,74,-33,74,-79v0,-46,-33,-79,-76,-79v-37,0,-72,32,-72,79xm117,-219r-47,-62r26,0r37,62r-16,0","w":218},"\u00f5":{"d":"162,-264v-9,41,-40,35,-72,24v-7,0,-12,4,-16,13r-14,0v7,-38,39,-34,70,-24v8,0,13,-4,17,-13r15,0xm9,-96v0,-58,47,-103,99,-103v57,0,101,46,101,100v0,57,-44,104,-100,104v-58,0,-100,-47,-100,-101xm35,-97v0,45,32,79,74,79v41,0,74,-33,74,-79v0,-46,-33,-79,-76,-79v-37,0,-72,32,-72,79","w":218},"\u00fa":{"d":"99,-18v75,0,56,-99,58,-175r24,0r0,193r-24,0r0,-21v-15,19,-33,26,-59,26v-97,0,-77,-107,-79,-198r25,0v5,71,-23,175,55,175xm93,-219r-16,0r37,-62r26,0","w":200},"\u00fb":{"d":"51,-219r35,-62r27,0r35,62r-16,0r-33,-47r-32,47r-16,0xm99,-18v75,0,56,-99,58,-175r24,0r0,193r-24,0r0,-21v-15,19,-33,26,-59,26v-97,0,-77,-107,-79,-198r25,0v5,71,-23,175,55,175","w":200},"\u00fc":{"d":"99,-18v75,0,56,-99,58,-175r24,0r0,193r-24,0r0,-21v-15,19,-33,26,-59,26v-97,0,-77,-107,-79,-198r25,0v5,71,-23,175,55,175xm54,-231r0,-29r25,0r0,29r-25,0xm119,-231r0,-29r25,0r0,29r-25,0","w":200},"\u00f9":{"d":"99,-18v75,0,56,-99,58,-175r24,0r0,193r-24,0r0,-21v-15,19,-33,26,-59,26v-97,0,-77,-107,-79,-198r25,0v5,71,-23,175,55,175xm105,-219r-47,-62r26,0r37,62r-16,0","w":200},"\u00ff":{"d":"-6,-193r29,0r59,157r63,-157r29,0r-105,256r-26,0r26,-63xm38,-231r0,-29r25,0r0,29r-25,0xm103,-231r0,-29r25,0r0,29r-25,0","w":165},"\u00a9":{"d":"21,-127v0,-67,59,-129,129,-129v70,0,129,58,129,129v0,70,-62,129,-129,129v-68,0,-129,-60,-129,-129xm150,-13v59,0,115,-51,115,-114v0,-62,-54,-115,-115,-115v-63,0,-115,55,-115,115v0,60,54,114,115,114xm189,-161v-4,-19,-19,-29,-39,-29v-28,0,-45,22,-45,63v0,69,72,84,86,29r20,0v-3,29,-28,50,-62,50v-41,0,-67,-29,-67,-80v0,-86,114,-107,127,-33r-20,0","w":299},"\u00ac":{"d":"255,-151r0,88r-17,0r0,-70r-193,0r0,-18r210,0","w":299},"\u00ae":{"d":"21,-127v0,-67,59,-129,129,-129v70,0,129,59,129,129v0,70,-62,129,-129,129v-69,0,-129,-60,-129,-129xm150,-13v59,0,115,-51,115,-114v0,-63,-53,-115,-115,-115v-63,0,-115,56,-115,115v0,60,54,114,115,114xm99,-203v50,-1,116,-6,116,41v0,21,-13,36,-35,39r33,68r-25,0r-32,-65r-34,0r0,65r-23,0r0,-148xm192,-161v4,-29,-38,-28,-70,-27r0,53v32,0,74,3,70,-26","w":299},"\u00d0":{"d":"232,-127v0,73,-60,135,-139,127r-67,0r0,-117r-27,0r0,-23r27,0r0,-116r77,0v78,0,129,54,129,129xm205,-129v1,-80,-62,-112,-154,-102r0,91r63,0r0,23r-63,0r0,93v92,8,153,-16,154,-105","w":242},"\u00de":{"d":"46,-206v72,-8,125,14,125,72v0,55,-52,84,-125,76r0,58r-25,0r0,-256r25,0r0,50xm143,-133v0,-48,-46,-51,-97,-48r0,97v51,3,97,-3,97,-49","w":181},"\u00dd":{"d":"98,-94r0,94r-25,0r0,-94r-82,-162r29,0r66,133r66,-133r28,0xm80,-281r-16,0r37,-62r26,0","w":172},"\u00a6":{"d":"100,-252r0,134r-19,0r0,-134r19,0xm100,-72r0,134r-19,0r0,-134r19,0","w":180},"\u00b0":{"d":"59,-255v27,0,49,22,49,49v0,27,-22,49,-49,49v-27,0,-49,-22,-49,-49v0,-27,22,-49,49,-49xm96,-206v0,-20,-17,-37,-37,-37v-20,0,-36,17,-36,37v0,21,16,36,36,36v21,0,37,-16,37,-36","w":118},"\u00f7":{"d":"150,-188v10,0,19,9,19,19v0,10,-8,19,-19,19v-11,0,-19,-9,-19,-19v0,-10,9,-19,19,-19xm255,-116r0,17r-210,0r0,-17r210,0xm150,-64v10,0,19,9,19,19v0,10,-8,18,-19,18v-10,0,-19,-8,-19,-18v0,-10,9,-19,19,-19","w":299},"\u00f0":{"d":"173,-161v-8,-22,-22,-40,-40,-54r-47,17r-7,-14r39,-15v-6,-4,-15,-9,-28,-15r8,-16v14,6,28,13,43,23r51,-18r6,14r-42,15v35,32,53,75,53,120v0,68,-44,109,-100,109v-58,0,-100,-45,-100,-95v-2,-79,103,-126,164,-71xm108,-165v-37,0,-72,31,-72,74v0,41,31,73,73,73v41,0,74,-31,74,-75v0,-40,-32,-72,-75,-72","w":218},"\u00d7":{"d":"150,-120r85,-84r12,12r-84,85r84,84r-12,13r-85,-85r-84,85r-12,-13r84,-84r-84,-85r12,-12","w":299},"\u00bd":{"d":"75,-113r-17,0r0,-131r-28,0r0,-12r45,0r0,143xm89,5r-21,0r159,-266r21,0xm303,0r-100,0r0,-14v25,-26,77,-50,85,-88v0,-17,-14,-32,-35,-32v-22,0,-35,15,-34,39r-16,0v-1,-32,20,-52,51,-52v50,1,63,57,24,89r-54,44r79,0r0,14","w":316},"\u00bc":{"d":"75,-113r-17,0r0,-131r-28,0r0,-12r45,0r0,143xm89,5r-21,0r159,-266r21,0xm289,0r-15,0r0,-28r-76,0r0,-12r73,-103r18,0r0,103r18,0r0,12r-18,0r0,28xm274,-40r1,-87r-60,87r59,0","w":316},"\u00b9":{"d":"78,-102r-17,0r0,-141r-30,0r0,-13r47,0r0,154","w":134},"\u00b1":{"d":"159,-206r0,62r96,0r0,17r-96,0r0,61r-18,0r0,-61r-96,0r0,-17r96,0r0,-62r18,0xm255,-26r0,17r-210,0r0,-17r210,0","w":299},"\u00fe":{"d":"44,-31r0,94r-25,0r0,-319r25,0r0,94v14,-22,42,-36,72,-36v59,0,101,46,101,100v0,94,-123,139,-173,67xm116,-175v-38,0,-72,35,-72,78v0,44,35,79,73,79v39,0,74,-32,74,-77v0,-48,-35,-80,-75,-80","w":226},"\u00be":{"d":"12,-156v5,1,13,-2,16,1v0,19,16,33,35,33v21,0,36,-13,36,-33v1,-24,-19,-36,-50,-34r0,-12v40,12,54,-43,15,-46v-15,0,-26,10,-26,25r-15,0v1,-22,17,-37,41,-37v36,-1,55,44,25,62v46,18,27,87,-26,87v-31,0,-50,-17,-51,-46xm89,5r-21,0r159,-266r21,0xm289,0r-15,0r0,-28r-76,0r0,-12r73,-103r18,0r0,103r18,0r0,12r-18,0r0,28xm274,-40r1,-87r-60,87r59,0","w":316},"\u00b3":{"d":"13,-149v5,1,14,-2,17,1v0,21,16,36,36,36v22,0,38,-15,38,-36v1,-26,-20,-38,-53,-36v0,0,-2,-14,7,-12v42,7,43,-50,9,-50v-16,0,-27,9,-27,26r-16,0v1,-24,18,-39,43,-39v38,-1,59,46,26,66v48,20,30,94,-26,94v-33,0,-54,-19,-54,-50","w":134},"\u00b2":{"d":"120,-102r-105,0r0,-15v26,-28,81,-54,89,-94v0,-18,-14,-34,-36,-34v-24,0,-38,16,-36,41r-17,0v-1,-34,22,-55,54,-55v52,0,66,59,25,94r-57,48r83,0r0,15","w":134},"\u00fd":{"d":"-6,-193r29,0r59,157r63,-157r29,0r-105,256r-26,0r26,-63xm77,-219r-16,0r37,-62r26,0","w":165},"\u00a0":{"w":101}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990 as an unpublished work by Bitstream Inc.  All rights reserved. 
 * Confidential.
 */
Cufon.registerFont({"w":209,"face":{"font-family":"ITC Avant Garde Gothic","font-weight":600,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 7 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-22 -344 366.094 85","underline-thickness":"34.2","underline-position":"-34.2","stemh":"44","stemv":"44","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":104},"!":{"d":"77,0r-45,0r0,-48r45,0r0,48xm77,-70r-45,0r0,-186r45,0r0,186","w":110},"\"":{"d":"15,-252r29,0r0,98r-29,0r0,-98xm69,-252r29,0r0,98r-29,0r0,-98","w":113},"#":{"d":"129,-257r34,0r-27,77r44,0r27,-77r33,0r-27,77r52,0r-11,30r-51,0r-16,45r54,0r-11,30r-54,0r-27,76r-33,0r27,-76r-44,0r-28,76r-34,0r28,-76r-53,0r11,-30r52,0r16,-45r-55,0r10,-30r56,0xm125,-150r-16,45r45,0r16,-45r-45,0","w":276},"$":{"d":"73,-80v1,22,11,34,31,34v18,0,30,-13,30,-32v0,-23,-13,-31,-40,-36v-80,-16,-78,-120,-8,-139r0,-38r42,0r0,39v31,8,48,31,50,66r-44,0v-1,-15,-12,-25,-27,-25v-24,0,-40,27,-24,42v11,10,30,12,50,18v72,20,63,131,-5,147r0,46r-42,0r0,-44v-39,-9,-60,-38,-60,-78r47,0"},"%":{"d":"237,5v-34,0,-63,-29,-63,-63v0,-34,29,-63,63,-63v34,0,63,30,63,63v0,33,-29,63,-63,63xm207,-58v0,17,13,30,30,30v17,0,29,-13,29,-30v0,-17,-12,-29,-29,-29v-17,0,-30,12,-30,29xm212,-261r29,0r-137,266r-28,0xm49,-198v0,17,13,29,30,29v17,0,29,-12,29,-29v0,-17,-12,-30,-29,-30v-17,0,-30,13,-30,30xm79,-135v-34,0,-63,-30,-63,-63v0,-33,29,-63,63,-63v34,0,63,30,63,63v0,33,-29,63,-63,63","w":315},"&":{"d":"87,-169v28,-10,32,-47,2,-51v-27,2,-27,40,-2,51xm124,-72r-43,-40v-38,14,-37,73,3,73v17,0,30,-11,40,-33xm157,-43v-30,76,-150,55,-148,-29v0,-29,14,-51,45,-73v-50,-37,-24,-116,37,-116v32,0,59,28,59,60v0,22,-13,43,-39,59r37,34r23,-62r46,0r-37,89r59,51r-31,34","w":234},"(":{"d":"93,-261r0,49v-48,27,-30,105,-30,171v0,33,5,54,30,70r0,49v-50,-18,-76,-55,-76,-108r0,-124v0,-53,26,-89,76,-107","w":106},")":{"d":"14,-261v50,18,76,54,76,107r0,124v0,53,-26,90,-76,108r0,-49v47,-27,29,-106,29,-171v0,-33,-4,-54,-29,-70r0,-49","w":106},"*":{"d":"90,-159r-32,44r-25,-18r34,-43r-50,-14r9,-30r49,16r0,-52r30,0r0,52r48,-16r10,30r-50,13r33,44r-25,19","w":180},"+":{"d":"135,-215r30,0r0,93r90,0r0,29r-90,0r0,93r-30,0r0,-93r-90,0r0,-29r90,0r0,-93","w":299},",":{"d":"75,-48v1,48,5,97,-45,94r0,-26v12,-1,15,-7,15,-20r-15,0r0,-48r45,0","w":104},"-":{"d":"107,-117r0,41r-91,0r0,-41r91,0","w":122},".":{"d":"75,0r-45,0r0,-48r45,0r0,48","w":104},"\/":{"d":"17,33r-25,0r84,-289r24,0","w":100},"0":{"d":"104,5v-50,-2,-89,-34,-89,-95r0,-76v-4,-56,37,-97,90,-95v50,2,89,34,89,95r0,76v4,56,-37,97,-90,95xm144,-91v0,-53,14,-124,-39,-124v-53,0,-40,74,-40,125v0,33,12,49,39,49v28,0,40,-17,40,-50"},"1":{"d":"137,0r-48,0r0,-218r-45,0r0,-38r93,0r0,256"},"2":{"d":"188,0r-169,0r0,-48r93,-87v18,-17,27,-33,27,-47v0,-19,-14,-33,-34,-33v-23,0,-33,17,-32,43v-16,-1,-36,2,-50,-1v0,-53,34,-88,84,-88v83,2,105,95,44,150r-72,65r109,0r0,46"},"3":{"d":"145,-149v79,30,41,159,-41,154v-53,-3,-84,-32,-84,-87v15,2,37,-4,48,2v0,24,14,39,35,39v23,0,39,-17,39,-44v0,-28,-22,-43,-55,-39r0,-43v22,4,39,-6,38,-26v0,-15,-8,-23,-22,-23v-12,0,-19,8,-20,24r-44,0v0,-42,27,-69,67,-69v60,0,88,81,39,112"},"4":{"d":"172,0r-44,0r0,-39r-113,0r0,-42r111,-175r46,0r0,175r21,0r0,42r-21,0r0,39xm128,-81r0,-107r-68,107r68,0"},"5":{"d":"193,-87v0,49,-42,92,-91,92v-48,0,-86,-34,-90,-85r48,0v3,23,21,39,42,39v23,0,41,-19,41,-46v0,-43,-58,-60,-77,-26r-42,-10r24,-133r121,0r0,44r-88,0r-8,44v58,-30,120,19,120,81"},"6":{"d":"104,5v-47,0,-92,-42,-90,-87v3,-67,64,-122,92,-174r52,0r-58,88v54,-14,95,27,95,83v0,47,-42,90,-91,90xm63,-87v0,26,19,46,41,46v24,0,42,-17,42,-44v0,-26,-18,-45,-41,-45v-24,0,-42,20,-42,43"},"7":{"d":"91,0r-51,0r95,-211r-100,0r0,-45r147,0r0,48"},"8":{"d":"60,-143v-56,-32,-23,-118,44,-118v70,0,102,86,44,118v75,33,42,148,-45,148v-81,0,-118,-113,-43,-148xm69,-76v0,22,16,37,35,37v21,0,36,-16,36,-37v0,-23,-15,-37,-37,-37v-20,0,-34,14,-34,37xm81,-192v0,14,9,25,23,25v15,0,25,-9,25,-25v0,-15,-10,-26,-24,-26v-14,0,-24,10,-24,26"},"9":{"d":"105,-261v47,0,92,41,90,87v-3,67,-63,122,-92,174r-52,0r58,-87v-55,11,-95,-29,-95,-84v0,-47,42,-90,91,-90xm147,-169v0,-26,-20,-46,-42,-46v-24,0,-42,18,-42,45v0,26,18,44,41,44v24,0,43,-20,43,-43"},":":{"d":"77,0r-45,0r0,-48r45,0r0,48xm77,-137r-45,0r0,-48r45,0r0,48","w":110},";":{"d":"77,-137r-45,0r0,-48r45,0r0,48xm77,-48v1,48,5,97,-45,94r0,-26v13,-1,16,-7,16,-20r-16,0r0,-48r45,0","w":110},"<":{"d":"253,-207r0,33r-164,67r164,67r0,32r-207,-85r0,-28","w":299},"=":{"d":"45,-158r210,0r0,29r-210,0r0,-29xm45,-86r210,0r0,29r-210,0r0,-29","w":299},">":{"d":"46,-207r207,86r0,28r-207,85r0,-32r165,-67r-165,-67r0,-33","w":299},"?":{"d":"68,0r0,-48r45,0r0,48r-45,0xm173,-182v1,58,-61,58,-60,112r-45,0v0,-40,27,-61,48,-88v16,-21,2,-58,-27,-58v-18,0,-31,14,-31,38r-47,0v0,-50,35,-83,81,-83v47,0,81,33,81,79","w":183},"@":{"d":"217,-124v-3,-20,-15,-31,-33,-31v-30,0,-54,34,-54,77v0,57,69,39,77,-6xm343,-134v0,57,-40,113,-100,114v-25,0,-37,-9,-37,-30v-25,49,-108,38,-108,-29v0,-56,38,-98,83,-98v21,0,34,8,43,25r10,-19r27,0r-27,112v0,9,7,14,17,14v34,-3,63,-49,63,-89v0,-58,-47,-100,-119,-100v-88,0,-149,65,-149,143v0,118,159,153,243,87r12,17v-98,83,-289,30,-284,-105v4,-98,81,-167,179,-167v83,0,147,50,147,125","w":360},"A":{"d":"58,-54r-19,54r-52,0r99,-256r43,0r98,256r-53,0r-21,-54r-95,0xm137,-101r-30,-83r-31,83r61,0","w":216},"B":{"d":"139,-138v77,33,33,155,-53,138r-64,0r0,-256v73,-6,145,5,143,68v0,24,-9,41,-26,50xm71,-45v33,2,59,-4,59,-31v0,-28,-24,-39,-59,-36r0,67xm71,-153v28,1,46,-8,46,-30v0,-21,-17,-29,-46,-28r0,58","w":185},"C":{"d":"11,-130v0,-69,59,-131,130,-131v56,0,96,27,121,81r-61,0v-14,-19,-35,-30,-61,-30v-43,-2,-77,40,-77,81v0,76,94,111,136,56r61,0v-24,52,-64,78,-119,78v-70,0,-130,-60,-130,-135","w":270},"D":{"d":"237,-127v0,73,-46,127,-129,127r-87,0r0,-256r86,0v80,-4,130,49,130,129xm72,-44v72,5,115,-13,114,-84v-1,-65,-44,-91,-114,-84r0,168","w":246},"E":{"d":"159,0r-138,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45","w":180},"F":{"d":"21,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,108r-50,0","w":173},"G":{"d":"10,-130v0,-70,61,-131,135,-131v55,0,95,27,117,79r-60,0v-42,-56,-139,-20,-139,54v0,85,123,112,151,35r-101,0r0,-43r160,0v5,85,-60,141,-132,141v-71,0,-131,-61,-131,-135","w":283},"H":{"d":"71,-104r0,104r-50,0r0,-256r50,0r0,104r83,0r0,-104r50,0r0,256r-50,0r0,-104r-83,0","w":225},"I":{"d":"22,0r0,-256r50,0r0,256r-50,0","w":93},"J":{"d":"141,-87v4,56,-23,92,-71,92v-45,0,-70,-25,-70,-74v16,1,36,-2,50,1v0,15,7,23,19,23v17,0,22,-15,22,-46r0,-165r50,0r0,169","w":162},"K":{"d":"71,0r-50,0r0,-256r50,0r0,256xm72,-127r77,-129r56,0r-82,127r82,129r-56,0","w":200},"L":{"d":"151,0r-130,0r0,-256r50,0r0,211r80,0r0,45","w":158},"M":{"d":"71,0r-50,0r0,-256r66,0r66,186r64,-186r67,0r0,256r-50,0r2,-186r-65,186r-37,0r-65,-186","w":304},"N":{"d":"71,0r-50,0r0,-256r48,0r106,163r0,-163r49,0r0,256r-47,0r-106,-168r0,168","w":245},"O":{"d":"142,5v-74,0,-132,-60,-132,-134v0,-77,63,-132,133,-132v68,0,130,63,130,131v0,74,-59,135,-131,135xm63,-130v0,45,38,83,79,83v44,0,79,-34,79,-83v0,-44,-35,-79,-78,-79v-45,0,-80,35,-80,79","w":283},"P":{"d":"85,-256v64,-5,93,28,95,77v2,54,-42,86,-109,81r0,98r-50,0r0,-256r64,0xm71,-141v33,3,57,-8,57,-35v0,-27,-23,-37,-57,-35r0,70","w":185},"Q":{"d":"142,-261v108,0,177,139,101,218v10,5,21,6,35,6r0,41v-26,1,-44,-5,-68,-18v-88,55,-200,-18,-200,-116v0,-69,60,-131,132,-131xm77,-82v22,30,58,44,97,28v-36,-21,-58,-32,-97,-28xm203,-78v43,-47,3,-136,-62,-133v-48,2,-87,45,-77,95v56,-14,95,3,139,38","w":283},"R":{"d":"82,-256v68,-5,111,24,112,80v0,40,-23,69,-61,77r64,99r-59,0r-67,-119r0,119r-50,0r0,-256r61,0xm71,-131v44,2,73,-13,73,-44v0,-34,-32,-41,-73,-39r0,83","w":204},"S":{"d":"6,-80r45,0v-1,24,12,40,31,40v20,0,33,-13,33,-34v0,-27,-14,-32,-43,-38v-87,-17,-68,-149,15,-149v41,0,67,27,70,74v-14,-2,-35,4,-45,-2v0,-17,-11,-28,-27,-28v-23,0,-35,30,-21,47v10,11,28,12,48,19v35,12,51,34,51,69v0,53,-32,87,-80,87v-45,0,-76,-34,-77,-85","w":172},"T":{"d":"149,-256r0,45r-49,0r0,211r-50,0r0,-211r-48,0r0,-45r147,0","w":150},"U":{"d":"104,5v-53,0,-83,-40,-83,-99r0,-162r50,0r0,148v0,42,7,61,33,61v26,0,32,-19,32,-61r0,-148r50,0r0,162v5,61,-28,99,-82,99","w":207},"V":{"d":"120,0r-36,0r-92,-256r54,0r56,171r56,-171r53,0","w":204},"W":{"d":"-5,-256r51,0r42,166r46,-166r35,0r46,166r42,-166r52,0r-75,256r-40,0r-42,-160r-44,160r-39,0","w":303},"X":{"d":"105,-90r-51,90r-57,0r82,-129r-80,-127r57,0r49,89r50,-89r56,0r-79,127r81,129r-56,0","w":210},"Y":{"d":"113,-92r0,92r-50,0r0,-92r-73,-164r55,0r44,110r44,-110r55,0","w":177},"Z":{"d":"166,0r-161,0r0,-44r101,-164r-94,0r0,-48r151,0r0,41r-103,167r106,0r0,48","w":171},"[":{"d":"65,-216r0,248r33,0r0,40r-78,0r0,-328r78,0r0,40r-33,0","w":106},"\\":{"d":"84,33r-84,-289r24,0r84,289r-24,0","w":100},"]":{"d":"42,-216r-34,0r0,-40r79,0r0,328r-79,0r0,-40r34,0r0,-248","w":106},"^":{"d":"161,-257r38,0r87,99r-36,0r-70,-70r-70,70r-37,0","w":360},"_":{"d":"0,55r180,0r0,30r-180,0r0,-30","w":180},"a":{"d":"8,-98v0,-80,110,-137,160,-72r0,-23r44,0r0,193r-43,0r0,-24v-11,19,-30,28,-60,28v-58,0,-101,-44,-101,-102xm54,-98v0,33,26,57,56,57v28,0,54,-25,54,-55v0,-32,-27,-58,-55,-58v-30,0,-55,25,-55,56","w":231},"b":{"d":"221,-97v0,78,-96,135,-160,81r0,16r-44,0r0,-256r44,0r0,78v63,-52,160,4,160,81xm63,-96v0,32,24,56,53,56v34,0,59,-24,59,-56v0,-31,-26,-58,-57,-58v-31,0,-55,25,-55,58","w":231},"c":{"d":"9,-96v0,-57,47,-103,102,-103v47,0,85,28,96,74r-48,0v-23,-50,-104,-33,-104,28v0,59,86,79,104,26r48,0v-12,48,-47,76,-96,76v-56,0,-102,-47,-102,-101","w":218},"d":{"d":"10,-97v0,-75,97,-134,160,-81r0,-78r45,0r0,256r-45,0r0,-16v-63,53,-160,-4,-160,-81xm168,-96v0,-33,-24,-58,-55,-58v-31,0,-56,27,-56,58v0,32,25,56,59,56v29,0,52,-24,52,-56","w":231},"e":{"d":"108,-199v57,1,108,45,102,117r-155,0v0,50,80,60,100,20r48,0v-17,42,-50,67,-93,67v-55,0,-101,-47,-101,-101v0,-55,47,-104,99,-103xm162,-118v-12,-53,-93,-52,-105,0r105,0","w":218},"f":{"d":"105,-193r0,40r-33,0r0,153r-43,0r0,-153r-23,0r0,-40r21,0v-3,-49,25,-68,78,-66r0,40v-22,-1,-34,6,-32,26r32,0","w":106},"g":{"d":"53,-100v0,35,27,59,59,59v30,0,57,-26,57,-57v0,-34,-27,-60,-58,-60v-32,0,-58,25,-58,58xm173,-26v-52,55,-165,13,-165,-71v0,-87,107,-135,165,-73r0,-23r40,0r0,161v12,123,-165,145,-193,42r43,0v26,49,116,29,110,-36","w":231},"h":{"d":"64,-256r0,85v41,-53,127,-22,127,60r0,111r-45,0v-4,-56,18,-153,-40,-153v-58,0,-39,95,-42,153r-44,0r0,-256r44,0"},"i":{"d":"20,0r0,-193r44,0r0,193r-44,0xm64,-213r-44,0r0,-43r44,0r0,43","w":84},"j":{"d":"64,-213r-43,0r0,-43r43,0r0,43xm64,-193r0,186v2,55,-15,74,-67,69v2,-13,-4,-34,2,-43v21,0,22,-9,22,-35r0,-177r43,0","w":88},"k":{"d":"63,0r-43,0r0,-256r43,0r0,152r63,-89r51,0r-67,91r80,102r-56,0r-71,-98r0,98","w":178},"l":{"d":"20,0r0,-256r44,0r0,256r-44,0","w":84},"m":{"d":"64,-193r0,22v28,-41,97,-31,120,8v39,-62,131,-36,131,52r0,111r-44,0v-4,-56,18,-153,-39,-153v-57,0,-39,95,-42,153r-44,0v-4,-56,19,-153,-40,-153v-58,0,-39,95,-42,153r-44,0r0,-193r44,0","w":334},"n":{"d":"64,-171v46,-59,127,-13,127,69r0,102r-45,0v-4,-56,19,-153,-40,-153v-58,0,-39,95,-42,153r-44,0r0,-193r44,0r0,22"},"o":{"d":"109,5v-55,0,-101,-49,-101,-103v0,-54,47,-101,100,-101v56,0,103,47,103,100v1,57,-45,104,-102,104xm55,-98v0,36,21,58,54,58v33,0,55,-22,55,-59v0,-33,-24,-56,-55,-56v-32,0,-54,24,-54,57","w":219},"p":{"d":"221,-96v0,77,-97,133,-160,81r0,78r-44,0r0,-256r44,0r0,16v64,-53,160,2,160,81xm63,-98v0,33,24,58,55,58v31,0,57,-26,57,-57v0,-32,-25,-57,-59,-57v-29,0,-53,24,-53,56","w":231},"q":{"d":"10,-96v0,-77,96,-135,160,-81r0,-16r45,0r0,256r-45,0r0,-78v-62,52,-160,-5,-160,-81xm168,-98v0,-32,-23,-56,-52,-56v-34,0,-59,25,-59,57v0,31,25,57,56,57v31,0,55,-25,55,-58","w":231},"r":{"d":"110,-154v-74,0,-39,91,-47,154r-45,0r0,-193r42,0r0,22v13,-17,29,-25,50,-25r0,42","w":108},"s":{"d":"8,-64v13,2,32,-4,41,2v-3,34,43,39,46,8v2,-24,-49,-33,-57,-42v-42,-30,-15,-102,38,-102v34,0,55,21,57,57v-12,-2,-32,4,-40,-2v0,-13,-7,-19,-19,-19v-10,0,-17,8,-17,18v0,15,11,21,36,28v67,20,50,121,-21,121v-37,0,-62,-26,-64,-69","w":146},"t":{"d":"34,0r0,-153r-30,0r0,-40r30,0r0,-63r45,0r0,63r30,0r0,40r-30,0r0,153r-45,0","w":110},"u":{"d":"146,0r0,-21v-41,53,-127,22,-127,-60r0,-112r45,0v4,57,-18,154,40,154v58,0,38,-96,42,-154r44,0r0,193r-44,0"},"v":{"d":"104,0r-35,0r-74,-193r48,0r45,128r47,-128r46,0","w":174},"w":{"d":"126,-117r-32,117r-30,0r-67,-193r49,0r31,111r34,-111r33,0r33,111r31,-111r49,0r-68,193r-29,0","w":253},"x":{"d":"81,-62r-40,62r-50,0r66,-100r-58,-93r50,0r34,55r34,-55r53,0r-62,91r62,102r-51,0","w":164},"y":{"d":"-4,-193r48,0r47,135r52,-135r47,0r-105,256r-46,0r27,-68","w":184},"z":{"d":"6,0r0,-41r87,-111r-80,0r0,-41r128,0r0,48r-81,102r86,0r0,43r-140,0","w":151},"{":{"d":"77,-198v-3,-53,24,-64,77,-62r0,32v-82,-21,-1,129,-77,135v44,7,36,50,36,97v0,31,9,40,41,38r0,31v-51,2,-80,-7,-77,-61v2,-48,6,-99,-49,-90r0,-31v53,8,52,-39,49,-89","w":180},"|":{"d":"75,-275r31,0r0,360r-31,0r0,-360","w":180},"}":{"d":"103,12v3,52,-25,63,-76,61r0,-31v82,16,-1,-127,76,-135v-45,-7,-36,-51,-36,-98v0,-31,-11,-41,-40,-37r0,-32v52,-2,79,10,76,62v-2,47,-6,98,49,89r0,31v-53,-8,-52,40,-49,90","w":180},"~":{"d":"31,-109v54,-47,112,-2,171,-2v21,0,43,-9,67,-27r0,33v-51,47,-113,1,-170,1v-21,0,-42,10,-68,28r0,-33","w":299},"\u00a1":{"d":"32,-256r45,0r0,49r-45,0r0,-49xm32,-186r45,0r0,186r-45,0r0,-186","w":110},"\u00a2":{"d":"150,-154v-18,-55,-92,-37,-92,27v0,62,74,83,92,26r47,0v-8,39,-32,64,-71,75r0,40r-39,0r0,-40v-45,-13,-75,-53,-75,-101v0,-49,29,-87,75,-100r0,-38r39,0r0,37v38,8,63,34,71,74r-47,0"},"\u00a3":{"d":"154,-113r-53,0v13,22,19,46,7,71v32,7,53,-22,44,-56r45,0v12,69,-33,110,-108,100r-73,-2r0,-42r41,0v18,-18,11,-51,-8,-71r-38,0r0,-41r18,0v-17,-57,25,-107,80,-107v45,0,75,25,83,67r-52,0v-7,-34,-68,-25,-65,10v0,8,3,17,9,30r70,0r0,41"},"\u00a5":{"d":"203,-255r-32,70r26,0r0,31r-40,0r-14,29r54,0r0,31r-69,0r0,94r-48,0r0,-94r-69,0r0,-31r54,0r-13,-29r-41,0r0,-31r27,0r-32,-70r52,0r47,112r46,-112r52,0"},"\u00a7":{"d":"20,-23r44,0v-3,34,52,36,52,6v-10,-42,-107,-44,-107,-100v0,-21,11,-37,31,-47v-40,-35,-9,-97,49,-97v42,0,66,22,66,60r-41,0v0,-16,-9,-24,-26,-24v-15,0,-23,7,-23,18v10,34,106,43,106,95v0,21,-11,37,-31,46v42,36,13,107,-49,107v-45,0,-69,-22,-71,-64xm116,-81v22,-12,16,-31,-7,-43r-46,-24v-40,35,29,52,53,67","w":180},"\u00a4":{"d":"30,-251r35,35v24,-19,64,-19,88,0r36,-35r17,16r-36,36v19,25,18,62,0,87r36,36r-17,16r-36,-36v-24,20,-64,20,-88,0r-35,36r-17,-16r36,-36v-18,-25,-19,-62,0,-87r-36,-36xm109,-207v-28,0,-51,23,-51,51v0,28,23,51,51,51v28,0,52,-23,52,-51v0,-28,-24,-51,-52,-51","w":218},"'":{"d":"15,-252r29,0r0,98r-29,0r0,-98","w":58},"\u00ab":{"d":"101,-153r-43,57r43,56r-35,0r-44,-56r44,-57r35,0xm169,-153r-43,57r43,56r-35,0r-43,-56r43,-57r35,0","w":195},"\u00b7":{"d":"28,-128v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-10,-24,-24","w":104},"\u00b6":{"d":"170,-260r0,17r-20,0r0,243r-23,0r0,-243r-30,0r0,243r-22,0r0,-138v-40,-1,-65,-26,-65,-61v0,-36,26,-61,68,-61r92,0","w":180},"\u00bb":{"d":"27,-153r35,0r43,57r-43,56r-35,0r43,-56xm95,-153r35,0r43,57r-43,56r-35,0r43,-56","w":195},"\u00bf":{"d":"122,-261r0,49r-45,0r0,-49r45,0xm17,-78v-1,-59,61,-59,60,-113r45,0v1,41,-27,61,-48,88v-17,21,-2,58,28,58v18,0,30,-14,30,-38r48,0v0,50,-35,83,-81,83v-47,0,-82,-32,-82,-78","w":183},"`":{"d":"116,-219r-23,0r-52,-61r39,0","w":180},"\u00b4":{"d":"64,-219r36,-61r39,0r-52,61r-23,0","w":180},"\u00af":{"d":"41,-236r0,-26r98,0r0,26r-98,0","w":180},"\u00a8":{"d":"41,-228r0,-40r36,0r0,40r-36,0xm103,-228r0,-40r36,0r0,40r-36,0","w":180},"\u00b8":{"d":"44,76r0,-21v19,5,35,8,45,8v13,0,19,-4,19,-13v0,-12,-16,-15,-33,-14r0,-36r16,0r0,17v29,-1,45,9,44,33v-1,39,-52,39,-91,26","w":180},"\u00c6":{"d":"141,-116r0,-91r-6,0r-44,91r50,0xm141,0r0,-68r-73,0r-33,68r-57,0r137,-256r164,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45r-138,0","w":299},"\u00aa":{"d":"6,-189v-5,-59,85,-97,120,-50r0,-17r33,0r0,135r-32,0r0,-16v-35,44,-129,5,-121,-52xm41,-189v0,23,19,40,42,40v21,0,40,-18,40,-39v0,-23,-20,-40,-41,-40v-22,0,-41,17,-41,39","w":173},"\u00d8":{"d":"241,-215v75,81,8,220,-102,220v-26,0,-48,-7,-70,-22r-40,45r-29,-25r40,-47v-72,-84,-6,-217,102,-217v26,0,48,7,68,20r37,-42r30,26xm103,-57v69,42,154,-48,103,-119xm177,-201v-71,-36,-148,48,-101,116","w":283},"\u00ba":{"d":"82,-117v-41,0,-76,-33,-76,-72v-1,-39,36,-71,75,-71v40,0,77,32,77,70v0,42,-34,73,-76,73xm41,-189v0,25,16,41,41,41v24,0,41,-16,41,-42v0,-23,-18,-39,-41,-39v-24,0,-41,17,-41,40","w":164},"\u00e6":{"d":"54,-98v0,33,26,57,56,57v28,0,54,-25,54,-55v0,-32,-27,-58,-55,-58v-30,0,-55,25,-55,56xm317,-118v-12,-52,-93,-51,-105,0r105,0xm8,-98v0,-82,117,-141,162,-66r0,-29r34,0r0,29v51,-73,175,-21,161,82r-154,0v0,49,77,60,99,21r49,0v-18,66,-122,96,-155,31r0,30r-34,0r0,-30v-11,23,-30,34,-59,34v-60,0,-103,-44,-103,-102","w":373},"\u00f8":{"d":"87,-44v51,21,95,-33,70,-83xm33,-31v-73,-79,28,-215,128,-154r28,-33r27,21r-29,35v57,62,5,167,-78,167v-19,0,-36,-5,-51,-14r-28,34r-26,-22xm132,-150v-49,-23,-96,32,-70,83","w":219},"\u00df":{"d":"95,-150v23,0,36,-14,36,-37v0,-22,-15,-36,-33,-36v-57,1,-26,102,-34,155r24,0v4,50,76,40,77,-4v1,-31,-29,-42,-70,-40r0,-38xm20,0v8,-101,-35,-260,76,-260v68,0,103,75,57,117v37,10,56,35,56,70v0,83,-121,107,-145,32r0,41r-44,0","w":216},"\u00c1":{"d":"58,-54r-19,54r-52,0r99,-256r43,0r98,256r-53,0r-21,-54r-95,0xm137,-101r-30,-83r-31,83r61,0xm82,-281r36,-61r39,0r-52,61r-23,0","w":216},"\u00c2":{"d":"56,-280r33,-62r38,0r34,62r-23,0r-30,-37r-29,37r-23,0xm58,-54r-19,54r-52,0r99,-256r43,0r98,256r-53,0r-21,-54r-95,0xm137,-101r-30,-83r-31,83r61,0","w":216},"\u00c4":{"d":"58,-54r-19,54r-52,0r99,-256r43,0r98,256r-53,0r-21,-54r-95,0xm137,-101r-30,-83r-31,83r61,0xm59,-290r0,-40r36,0r0,40r-36,0xm121,-290r0,-40r36,0r0,40r-36,0","w":216},"\u00c0":{"d":"58,-54r-19,54r-52,0r99,-256r43,0r98,256r-53,0r-21,-54r-95,0xm137,-101r-30,-83r-31,83r61,0xm134,-281r-23,0r-52,-61r39,0","w":216},"\u00c5":{"d":"58,-54r-19,54r-52,0r99,-254r43,0r98,254r-53,0r-21,-54r-95,0xm137,-101r-30,-83r-31,83r61,0xm89,-304v0,10,9,19,19,19v10,0,18,-9,18,-19v0,-10,-8,-19,-18,-19v-10,0,-19,9,-19,19xm67,-304v0,-22,19,-40,41,-40v22,0,40,18,40,40v0,22,-18,40,-40,40v-22,0,-41,-18,-41,-40","w":216},"\u00c3":{"d":"161,-332v-5,45,-38,44,-73,32v-8,0,-12,4,-15,12r-18,0v6,-46,40,-40,74,-30v7,0,13,-5,15,-14r17,0xm58,-54r-19,54r-52,0r99,-256r43,0r98,256r-53,0r-21,-54r-95,0xm137,-101r-30,-83r-31,83r61,0","w":216},"\u00c7":{"d":"11,-130v0,-69,59,-131,130,-131v56,0,96,27,121,81r-61,0v-14,-19,-35,-30,-61,-30v-43,-2,-77,40,-77,81v0,76,94,111,136,56r61,0v-24,52,-64,78,-119,78v-70,0,-130,-60,-130,-135xm95,76r0,-21v19,5,35,8,45,8v13,0,19,-4,19,-13v0,-12,-16,-15,-33,-14r0,-36r16,0r0,17v29,-1,45,9,44,33v-1,39,-52,39,-91,26","w":270},"\u00c9":{"d":"159,0r-138,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45xm64,-281r36,-61r39,0r-52,61r-23,0","w":180},"\u00ca":{"d":"38,-280r33,-62r38,0r33,62r-23,0r-29,-37r-30,37r-22,0xm159,0r-138,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45","w":180},"\u00cb":{"d":"159,0r-138,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45xm41,-290r0,-40r36,0r0,40r-36,0xm103,-290r0,-40r36,0r0,40r-36,0","w":180},"\u00c8":{"d":"159,0r-138,0r0,-256r138,0r0,45r-88,0r0,58r88,0r0,45r-88,0r0,63r88,0r0,45xm116,-281r-23,0r-52,-61r39,0","w":180},"\u00cd":{"d":"22,0r0,-256r50,0r0,256r-50,0xm21,-281r36,-61r39,0r-52,61r-23,0","w":93},"\u00ce":{"d":"-5,-280r33,-62r38,0r33,62r-23,0r-29,-37r-30,37r-22,0xm22,0r0,-256r50,0r0,256r-50,0","w":93},"\u00cf":{"d":"22,0r0,-256r50,0r0,256r-50,0xm-2,-290r0,-40r36,0r0,40r-36,0xm60,-290r0,-40r36,0r0,40r-36,0","w":93},"\u00cc":{"d":"22,0r0,-256r50,0r0,256r-50,0xm73,-281r-23,0r-52,-61r39,0","w":93},"\u00d1":{"d":"176,-332v-5,45,-38,44,-73,32v-8,0,-13,4,-16,12r-17,0v6,-46,39,-41,73,-30v7,0,13,-5,15,-14r18,0xm71,0r-50,0r0,-256r48,0r106,163r0,-163r49,0r0,256r-47,0r-106,-168r0,168","w":245},"\u00d3":{"d":"142,5v-74,0,-132,-60,-132,-134v0,-77,63,-132,133,-132v68,0,130,63,130,131v0,74,-59,135,-131,135xm63,-130v0,45,38,83,79,83v44,0,79,-34,79,-83v0,-44,-35,-79,-78,-79v-45,0,-80,35,-80,79xm116,-281r36,-61r39,0r-52,61r-23,0","w":283},"\u00d4":{"d":"90,-280r33,-62r38,0r33,62r-23,0r-29,-37r-30,37r-22,0xm142,5v-74,0,-132,-60,-132,-134v0,-77,63,-132,133,-132v68,0,130,63,130,131v0,74,-59,135,-131,135xm63,-130v0,45,38,83,79,83v44,0,79,-34,79,-83v0,-44,-35,-79,-78,-79v-45,0,-80,35,-80,79","w":283},"\u00d6":{"d":"142,5v-74,0,-132,-60,-132,-134v0,-77,63,-132,133,-132v68,0,130,63,130,131v0,74,-59,135,-131,135xm63,-130v0,45,38,83,79,83v44,0,79,-34,79,-83v0,-44,-35,-79,-78,-79v-45,0,-80,35,-80,79xm93,-290r0,-40r36,0r0,40r-36,0xm155,-290r0,-40r36,0r0,40r-36,0","w":283},"\u00d2":{"d":"142,5v-74,0,-132,-60,-132,-134v0,-77,63,-132,133,-132v68,0,130,63,130,131v0,74,-59,135,-131,135xm63,-130v0,45,38,83,79,83v44,0,79,-34,79,-83v0,-44,-35,-79,-78,-79v-45,0,-80,35,-80,79xm168,-281r-23,0r-52,-61r39,0","w":283},"\u00d5":{"d":"195,-332v-5,45,-38,44,-73,32v-8,0,-12,4,-15,12r-18,0v6,-45,39,-41,73,-30v7,0,13,-5,15,-14r18,0xm142,5v-74,0,-132,-60,-132,-134v0,-77,63,-132,133,-132v68,0,130,63,130,131v0,74,-59,135,-131,135xm63,-130v0,45,38,83,79,83v44,0,79,-34,79,-83v0,-44,-35,-79,-78,-79v-45,0,-80,35,-80,79","w":283},"\u00da":{"d":"104,5v-53,0,-83,-40,-83,-99r0,-162r50,0r0,148v0,42,7,61,33,61v26,0,32,-19,32,-61r0,-148r50,0r0,162v5,61,-28,99,-82,99xm78,-281r36,-61r39,0r-52,61r-23,0","w":207},"\u00db":{"d":"51,-280r34,-62r38,0r33,62r-23,0r-29,-37r-30,37r-23,0xm104,5v-53,0,-83,-40,-83,-99r0,-162r50,0r0,148v0,42,7,61,33,61v26,0,32,-19,32,-61r0,-148r50,0r0,162v5,61,-28,99,-82,99","w":207},"\u00dc":{"d":"104,5v-53,0,-83,-40,-83,-99r0,-162r50,0r0,148v0,42,7,61,33,61v26,0,32,-19,32,-61r0,-148r50,0r0,162v5,61,-28,99,-82,99xm55,-290r0,-40r36,0r0,40r-36,0xm117,-290r0,-40r36,0r0,40r-36,0","w":207},"\u00d9":{"d":"104,5v-53,0,-83,-40,-83,-99r0,-162r50,0r0,148v0,42,7,61,33,61v26,0,32,-19,32,-61r0,-148r50,0r0,162v5,61,-28,99,-82,99xm130,-281r-23,0r-52,-61r39,0","w":207},"\u00e1":{"d":"8,-98v0,-80,110,-137,160,-72r0,-23r44,0r0,193r-43,0r0,-24v-11,19,-30,28,-60,28v-58,0,-101,-44,-101,-102xm54,-98v0,33,26,57,56,57v28,0,54,-25,54,-55v0,-32,-27,-58,-55,-58v-30,0,-55,25,-55,56xm90,-219r36,-61r39,0r-52,61r-23,0","w":231},"\u00e2":{"d":"64,-219r33,-61r38,0r33,61r-23,0r-29,-37r-30,37r-22,0xm8,-98v0,-80,110,-137,160,-72r0,-23r44,0r0,193r-43,0r0,-24v-11,19,-30,28,-60,28v-58,0,-101,-44,-101,-102xm54,-98v0,33,26,57,56,57v28,0,54,-25,54,-55v0,-32,-27,-58,-55,-58v-30,0,-55,25,-55,56","w":231},"\u00e4":{"d":"8,-98v0,-80,110,-137,160,-72r0,-23r44,0r0,193r-43,0r0,-24v-11,19,-30,28,-60,28v-58,0,-101,-44,-101,-102xm54,-98v0,33,26,57,56,57v28,0,54,-25,54,-55v0,-32,-27,-58,-55,-58v-30,0,-55,25,-55,56xm67,-228r0,-40r36,0r0,40r-36,0xm129,-228r0,-40r36,0r0,40r-36,0","w":231},"\u00e0":{"d":"8,-98v0,-80,110,-137,160,-72r0,-23r44,0r0,193r-43,0r0,-24v-11,19,-30,28,-60,28v-58,0,-101,-44,-101,-102xm54,-98v0,33,26,57,56,57v28,0,54,-25,54,-55v0,-32,-27,-58,-55,-58v-30,0,-55,25,-55,56xm142,-219r-23,0r-52,-61r39,0","w":231},"\u00e5":{"d":"54,-98v0,33,26,57,56,57v28,0,54,-25,54,-55v0,-32,-27,-58,-55,-58v-30,0,-55,25,-55,56xm8,-98v0,-80,110,-137,160,-72r0,-23r44,0r0,193r-43,0r0,-24v-11,19,-30,28,-60,28v-58,0,-101,-44,-101,-102xm69,-249v0,-22,18,-40,40,-40v22,0,40,18,40,40v0,22,-18,41,-40,41v-22,0,-40,-19,-40,-41xm90,-249v0,10,9,19,19,19v10,0,19,-9,19,-19v0,-10,-9,-18,-19,-18v-10,0,-19,8,-19,18","w":231},"\u00e3":{"d":"169,-270v-5,45,-37,44,-73,32v-8,0,-12,4,-15,12r-18,0v7,-46,36,-41,73,-31v7,0,13,-4,15,-13r18,0xm8,-98v0,-80,110,-137,160,-72r0,-23r44,0r0,193r-43,0r0,-24v-11,19,-30,28,-60,28v-58,0,-101,-44,-101,-102xm54,-98v0,33,26,57,56,57v28,0,54,-25,54,-55v0,-32,-27,-58,-55,-58v-30,0,-55,25,-55,56","w":231},"\u00e7":{"d":"9,-96v0,-57,47,-103,102,-103v47,0,85,28,96,74r-48,0v-23,-50,-104,-33,-104,28v0,59,86,79,104,26r48,0v-12,48,-47,76,-96,76v-56,0,-102,-47,-102,-101xm65,76r0,-21v19,5,35,8,45,8v13,0,19,-4,19,-13v0,-12,-16,-15,-33,-14r0,-36r16,0r0,17v29,-1,45,9,44,33v-1,39,-52,39,-91,26","w":218},"\u00e9":{"d":"108,-199v57,1,108,45,102,117r-155,0v0,50,80,60,100,20r48,0v-17,42,-50,67,-93,67v-55,0,-101,-47,-101,-101v0,-55,47,-104,99,-103xm162,-118v-12,-53,-93,-52,-105,0r105,0xm83,-219r36,-61r39,0r-52,61r-23,0","w":218},"\u00ea":{"d":"57,-219r33,-61r38,0r33,61r-23,0r-29,-37r-29,37r-23,0xm108,-199v57,1,108,45,102,117r-155,0v0,50,80,60,100,20r48,0v-17,42,-50,67,-93,67v-55,0,-101,-47,-101,-101v0,-55,47,-104,99,-103xm162,-118v-12,-53,-93,-52,-105,0r105,0","w":218},"\u00eb":{"d":"108,-199v57,1,108,45,102,117r-155,0v0,50,80,60,100,20r48,0v-17,42,-50,67,-93,67v-55,0,-101,-47,-101,-101v0,-55,47,-104,99,-103xm162,-118v-12,-53,-93,-52,-105,0r105,0xm60,-228r0,-40r36,0r0,40r-36,0xm122,-228r0,-40r36,0r0,40r-36,0","w":218},"\u00e8":{"d":"108,-199v57,1,108,45,102,117r-155,0v0,50,80,60,100,20r48,0v-17,42,-50,67,-93,67v-55,0,-101,-47,-101,-101v0,-55,47,-104,99,-103xm162,-118v-12,-53,-93,-52,-105,0r105,0xm135,-219r-23,0r-52,-61r39,0","w":218},"\u00ed":{"d":"20,0r0,-193r44,0r0,193r-44,0xm16,-219r36,-61r39,0r-52,61r-23,0","w":84},"\u00ee":{"d":"-10,-219r33,-61r38,0r33,61r-23,0r-29,-37r-29,37r-23,0xm20,0r0,-193r44,0r0,193r-44,0","w":84},"\u00ef":{"d":"20,0r0,-193r44,0r0,193r-44,0xm-7,-228r0,-40r36,0r0,40r-36,0xm55,-228r0,-40r36,0r0,40r-36,0","w":84},"\u00ec":{"d":"20,0r0,-193r44,0r0,193r-44,0xm68,-219r-23,0r-52,-61r39,0","w":84},"\u00f1":{"d":"158,-270v-5,45,-37,44,-73,32v-8,0,-12,4,-15,12r-18,0v7,-46,36,-41,73,-31v7,0,13,-4,15,-13r18,0xm64,-171v46,-59,127,-13,127,69r0,102r-45,0v-4,-56,19,-153,-40,-153v-58,0,-39,95,-42,153r-44,0r0,-193r44,0r0,22"},"\u00f3":{"d":"109,5v-55,0,-101,-49,-101,-103v0,-54,47,-101,100,-101v56,0,103,47,103,100v1,57,-45,104,-102,104xm55,-98v0,36,21,58,54,58v33,0,55,-22,55,-59v0,-33,-24,-56,-55,-56v-32,0,-54,24,-54,57xm84,-219r36,-61r39,0r-52,61r-23,0","w":219},"\u00f4":{"d":"58,-219r33,-61r38,0r33,61r-23,0r-29,-37r-30,37r-22,0xm109,5v-55,0,-101,-49,-101,-103v0,-54,47,-101,100,-101v56,0,103,47,103,100v1,57,-45,104,-102,104xm55,-98v0,36,21,58,54,58v33,0,55,-22,55,-59v0,-33,-24,-56,-55,-56v-32,0,-54,24,-54,57","w":219},"\u00f6":{"d":"109,5v-55,0,-101,-49,-101,-103v0,-54,47,-101,100,-101v56,0,103,47,103,100v1,57,-45,104,-102,104xm55,-98v0,36,21,58,54,58v33,0,55,-22,55,-59v0,-33,-24,-56,-55,-56v-32,0,-54,24,-54,57xm61,-228r0,-40r36,0r0,40r-36,0xm123,-228r0,-40r36,0r0,40r-36,0","w":219},"\u00f2":{"d":"109,5v-55,0,-101,-49,-101,-103v0,-54,47,-101,100,-101v56,0,103,47,103,100v1,57,-45,104,-102,104xm55,-98v0,36,21,58,54,58v33,0,55,-22,55,-59v0,-33,-24,-56,-55,-56v-32,0,-54,24,-54,57xm136,-219r-23,0r-52,-61r39,0","w":219},"\u00f5":{"d":"163,-270v-5,45,-37,44,-73,32v-8,0,-12,4,-15,12r-18,0v7,-47,37,-40,73,-31v7,0,13,-4,15,-13r18,0xm109,5v-55,0,-101,-49,-101,-103v0,-54,47,-101,100,-101v56,0,103,47,103,100v1,57,-45,104,-102,104xm55,-98v0,36,21,58,54,58v33,0,55,-22,55,-59v0,-33,-24,-56,-55,-56v-32,0,-54,24,-54,57","w":219},"\u00fa":{"d":"146,0r0,-21v-41,53,-127,22,-127,-60r0,-112r45,0v4,57,-18,154,40,154v58,0,38,-96,42,-154r44,0r0,193r-44,0xm79,-219r36,-61r39,0r-52,61r-23,0"},"\u00fb":{"d":"53,-219r33,-61r38,0r33,61r-23,0r-29,-37r-29,37r-23,0xm146,0r0,-21v-41,53,-127,22,-127,-60r0,-112r45,0v4,57,-18,154,40,154v58,0,38,-96,42,-154r44,0r0,193r-44,0"},"\u00fc":{"d":"146,0r0,-21v-41,53,-127,22,-127,-60r0,-112r45,0v4,57,-18,154,40,154v58,0,38,-96,42,-154r44,0r0,193r-44,0xm56,-228r0,-40r36,0r0,40r-36,0xm118,-228r0,-40r36,0r0,40r-36,0"},"\u00f9":{"d":"146,0r0,-21v-41,53,-127,22,-127,-60r0,-112r45,0v4,57,-18,154,40,154v58,0,38,-96,42,-154r44,0r0,193r-44,0xm131,-219r-23,0r-52,-61r39,0"},"\u00ff":{"d":"-4,-193r48,0r47,135r52,-135r47,0r-105,256r-46,0r27,-68xm43,-228r0,-40r36,0r0,40r-36,0xm105,-228r0,-40r36,0r0,40r-36,0","w":184},"\u00a9":{"d":"20,-129v0,-67,58,-129,130,-129v69,0,130,59,130,129v0,72,-62,131,-130,131v-68,0,-130,-61,-130,-131xm261,-129v0,-60,-51,-110,-111,-110v-60,0,-111,53,-111,110v0,59,52,111,111,111v58,0,111,-50,111,-111xm212,-159r-29,0v-3,-17,-15,-27,-34,-27v-22,0,-37,20,-37,57v0,60,61,76,72,27r29,0v-2,31,-27,52,-63,52v-42,0,-70,-29,-70,-77v0,-49,29,-80,71,-80v35,0,59,19,61,48","w":299},"\u00ac":{"d":"45,-152r210,0r0,89r-29,0r0,-59r-181,0r0,-30","w":299},"\u00ae":{"d":"20,-129v0,-69,59,-129,130,-129v70,0,130,58,130,129v0,72,-62,131,-130,131v-69,0,-130,-62,-130,-131xm261,-127v0,-61,-51,-112,-111,-112v-60,0,-111,53,-111,110v0,58,52,111,109,111v60,0,113,-49,113,-109xm97,-204v50,-1,118,-4,118,40v0,21,-12,35,-33,40r33,66r-35,0r-29,-61r-23,0r0,61r-31,0r0,-146xm128,-184r0,46v26,1,58,0,55,-23v3,-23,-28,-24,-55,-23","w":299},"\u00d0":{"d":"242,-127v0,73,-46,127,-129,127r-87,0r0,-107r-26,0r0,-42r26,0r0,-107r86,0v80,-4,130,49,130,129xm77,-44v72,5,115,-13,114,-84v-1,-65,-44,-91,-114,-84r0,63r53,0r0,42r-53,0r0,63","w":251},"\u00de":{"d":"71,-211v70,-7,108,22,109,77v1,53,-42,87,-109,81r0,53r-50,0r0,-256r50,0r0,45xm71,-96v33,3,57,-8,57,-35v0,-27,-23,-37,-57,-35r0,70","w":185},"\u00dd":{"d":"113,-92r0,92r-50,0r0,-92r-73,-164r55,0r44,110r44,-110r55,0xm63,-281r36,-61r39,0r-52,61r-23,0","w":177},"\u00a6":{"d":"75,-252r31,0r0,134r-31,0r0,-134xm75,-72r31,0r0,134r-31,0r0,-134","w":180},"\u00b0":{"d":"59,-257v28,0,52,24,52,53v0,28,-23,51,-52,51v-29,0,-51,-22,-51,-51v0,-29,22,-53,51,-53xm59,-237v-18,0,-32,14,-32,32v0,18,14,33,32,33v18,0,33,-15,33,-33v0,-18,-15,-32,-33,-32","w":118},"\u00f7":{"d":"150,-198v13,0,24,11,24,24v0,13,-10,24,-24,24v-14,0,-24,-11,-24,-24v0,-13,11,-24,24,-24xm45,-122r210,0r0,29r-210,0r0,-29xm150,-64v13,0,24,11,24,24v0,13,-10,23,-24,23v-14,0,-24,-10,-24,-23v0,-13,11,-24,24,-24","w":299},"\u00f0":{"d":"18,-85v0,-62,78,-114,134,-74v-8,-17,-17,-29,-27,-39r-52,18r-11,-27r35,-13v-6,-4,-14,-7,-21,-10r14,-28v15,6,30,15,45,25r50,-18r12,27r-36,14v27,32,41,71,41,115v0,62,-39,100,-93,100v-49,0,-91,-41,-91,-90xm108,-135v-27,0,-48,20,-48,49v0,31,20,51,50,51v30,0,49,-20,49,-52v0,-29,-21,-48,-51,-48","w":218},"\u00d7":{"d":"71,-209r81,81r81,-81r20,21r-81,81r81,80r-20,21r-81,-81r-81,81r-21,-21r81,-80r-81,-81","w":299},"\u00bd":{"d":"86,-113r-30,0r0,-122r-28,0r0,-21r58,0r0,143xm226,-261r26,0r-154,266r-26,0xm310,0r-106,0r0,-27v23,-23,65,-42,75,-75v0,-10,-9,-18,-21,-18v-14,0,-21,8,-20,24v-10,-1,-24,2,-32,-1v0,-30,22,-49,53,-49v52,1,67,53,28,84r-45,36r68,0r0,26","w":323},"\u00bc":{"d":"86,-113r-30,0r0,-122r-28,0r0,-21r58,0r0,143xm226,-261r26,0r-154,266r-26,0xm300,0r-27,0r0,-22r-71,0r0,-24r69,-97r29,0r0,97r14,0r0,24r-14,0r0,22xm273,-46r0,-59r-43,59r43,0","w":323},"\u00b9":{"d":"90,-102r-31,0r0,-131r-30,0r0,-23r61,0r0,154","w":137},"\u00b1":{"d":"135,-212r30,0r0,59r90,0r0,29r-90,0r0,58r-30,0r0,-58r-90,0r0,-29r90,0r0,-59xm45,-32r210,0r0,29r-210,0r0,-29","w":299},"\u00fe":{"d":"63,-98v0,33,24,58,55,58v32,0,57,-26,57,-57v0,-32,-25,-57,-59,-57v-28,0,-53,24,-53,56xm221,-96v0,77,-97,133,-160,81r0,78r-44,0r0,-319r44,0r0,79v64,-53,160,2,160,81","w":231},"\u00be":{"d":"91,-196v51,15,24,90,-25,86v-33,-2,-53,-18,-53,-49v9,1,23,-2,30,1v0,14,9,23,22,23v14,0,24,-10,24,-25v0,-15,-15,-26,-34,-22r0,-24v25,6,34,-26,10,-28v-8,0,-13,5,-13,14r-28,0v0,-24,18,-39,43,-39v37,-1,55,46,24,63xm226,-261r26,0r-154,266r-26,0xm300,0r-27,0r0,-22r-71,0r0,-24r69,-97r29,0r0,97r14,0r0,24r-14,0r0,22xm273,-46r0,-59r-43,59r43,0","w":323},"\u00b3":{"d":"96,-192v52,18,25,96,-27,93v-35,-2,-56,-20,-56,-53v10,2,26,-3,32,2v0,14,9,23,23,23v15,0,26,-10,26,-26v0,-17,-14,-25,-36,-24r0,-25v26,6,33,-28,10,-30v-8,0,-13,6,-13,15r-29,0v0,-25,18,-42,44,-42v38,0,58,48,26,67","w":137},"\u00b2":{"d":"124,-102r-111,0r0,-29v23,-25,68,-45,78,-80v0,-11,-9,-20,-22,-20v-14,0,-22,10,-21,25r-33,0v0,-32,22,-52,55,-52v54,0,72,55,30,89r-48,39r72,0r0,28","w":137},"\u00fd":{"d":"-4,-193r48,0r47,135r52,-135r47,0r-105,256r-46,0r27,-68xm66,-219r36,-61r39,0r-52,61r-23,0","w":184},"\u00a0":{"w":104}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990 as an unpublished work by Bitstream Inc.  All rights reserved. 
 * Confidential.
 */
Cufon.registerFont({"w":214,"face":{"font-family":"ITC Avant Garde Gothic","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-17 -347 359.666 85","underline-thickness":"43.2","underline-position":"-38.88","stemh":"54","stemv":"53","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":106},"!":{"d":"85,0r-57,0r0,-59r57,0r0,59xm86,-84r-58,0r0,-172r58,0r0,172","w":113},"\"":{"d":"14,-253r34,0r0,99r-34,0r0,-99xm71,-253r34,0r0,99r-34,0r0,-99","w":119},"#":{"d":"125,-257r38,0r-25,73r42,0r26,-73r39,0r-26,73r50,0r-13,35r-49,0r-15,42r51,0r-13,36r-51,0r-26,73r-39,0r26,-73r-42,0r-27,73r-38,0r25,-73r-50,0r13,-36r50,0r15,-42r-53,0r13,-35r53,0xm125,-149r-16,42r44,0r15,-42r-43,0","w":276},"$":{"d":"128,-1r0,42r-41,0r0,-41v-40,-7,-63,-33,-66,-75r64,0v1,14,9,22,22,22v12,0,20,-8,20,-21v0,-36,-70,-34,-88,-60v-33,-47,-13,-114,48,-121r0,-39r41,0r0,39v36,5,56,30,56,70r-58,0v0,-14,-8,-22,-20,-22v-13,0,-20,9,-20,21v0,15,13,24,39,31v90,25,89,134,3,154"},"%":{"d":"203,-261r32,0r-136,266r-33,0xm206,-58v0,13,10,24,23,24v13,0,24,-11,24,-24v0,-13,-11,-23,-24,-23v-13,0,-23,10,-23,23xm230,5v-34,0,-63,-29,-63,-63v0,-34,30,-63,63,-63v33,0,63,29,63,63v0,34,-29,63,-63,63xm49,-198v0,13,10,23,23,23v13,0,23,-10,23,-23v0,-13,-10,-23,-23,-23v-13,0,-23,10,-23,23xm72,-135v-34,0,-63,-30,-63,-63v0,-33,29,-63,63,-63v34,0,63,29,63,63v0,34,-29,63,-63,63","w":304},"&":{"d":"168,-24v-47,53,-159,30,-159,-46v0,-27,15,-47,46,-69v-45,-47,-19,-122,47,-122v73,0,90,85,34,122r29,29r18,-40r58,0v-13,36,-27,64,-38,82r34,34r-39,40xm103,-168v15,-13,24,-41,0,-45v-25,3,-17,32,0,45xm130,-65r-39,-39v-30,13,-29,53,6,55v12,0,21,-6,33,-16","w":249},"(":{"d":"111,79v-58,1,-101,-56,-95,-118v7,-75,-18,-147,27,-192v19,-19,41,-30,68,-30r0,53v-64,-3,-41,102,-41,162v0,49,3,71,41,72r0,53","w":112},")":{"d":"2,-261v58,-2,101,57,94,118v-8,74,17,148,-26,192v-19,19,-41,30,-68,30r0,-53v64,4,41,-103,41,-162v0,-49,-3,-70,-41,-72r0,-53","w":112},"*":{"d":"90,-147r-30,44r-34,-24r34,-42r-49,-14r13,-39r47,17r0,-51r38,0r0,51r47,-17r13,39r-49,14r34,42r-34,24","w":180},"+":{"d":"132,-215r36,0r0,90r87,0r0,35r-87,0r0,90r-36,0r0,-90r-87,0r0,-35r87,0r0,-90","w":299},",":{"d":"25,58r0,-29v19,5,26,-7,24,-29r-24,0r0,-59r57,0v1,58,10,130,-57,117","w":106},"-":{"d":"111,-71r-97,0r0,-51r97,0r0,51","w":126},".":{"d":"83,0r-59,0r0,-59r59,0r0,59","w":106},"\/":{"d":"23,33r-34,0r82,-289r34,0","w":100},"0":{"d":"108,-52v46,0,30,-75,30,-118v0,-22,-12,-34,-30,-34v-47,-1,-31,74,-31,118v0,23,12,34,31,34xm199,-86v0,53,-40,91,-92,91v-53,0,-92,-38,-92,-91r0,-84v0,-53,40,-91,92,-91v52,0,92,38,92,91r0,84"},"1":{"d":"147,0r-60,0r0,-208r-45,0r0,-48r105,0r0,256"},"2":{"d":"197,0r-177,0r0,-54v75,-45,113,-87,113,-123v0,-18,-10,-29,-25,-29v-18,-1,-27,18,-26,43r-63,0v0,-59,35,-97,89,-97v56,0,90,31,90,76v0,41,-30,88,-90,127r89,0r0,57"},"3":{"d":"17,-77r63,0v-1,18,9,27,28,27v17,0,27,-10,27,-26v0,-23,-26,-32,-56,-28r0,-49v27,4,47,-8,47,-31v0,-15,-8,-24,-21,-24v-13,0,-20,9,-19,25v-20,-1,-44,2,-62,-1v0,-47,32,-77,82,-77v75,0,107,97,41,123v89,26,49,143,-39,143v-58,0,-91,-29,-91,-82"},"4":{"d":"125,-95r2,-85r-55,85r53,0xm181,0r-60,0r0,-46r-110,0r0,-49r110,-161r60,0r0,159r25,0r0,51r-25,0r0,46"},"5":{"d":"9,-69r66,0v14,30,65,17,65,-20v0,-37,-60,-46,-69,-9r-52,-15r23,-143r140,0r0,51r-90,0r-8,39v57,-30,120,14,120,79v0,57,-37,92,-101,92v-50,0,-83,-26,-94,-74"},"6":{"d":"72,-90v0,19,14,35,33,35v20,0,36,-16,36,-36v0,-20,-14,-35,-34,-35v-22,0,-35,15,-35,36xm108,5v-54,0,-96,-43,-97,-96v0,-34,15,-55,32,-80r56,-85r70,0r-58,81v54,-11,93,27,93,83v0,55,-41,97,-96,97"},"7":{"d":"131,-199r-107,0r0,-57r167,0r0,57r-87,199r-67,0"},"8":{"d":"84,-184v0,13,9,23,22,23v14,0,24,-10,24,-23v0,-14,-9,-24,-23,-24v-14,0,-23,10,-23,24xm57,-140v-57,-32,-23,-121,50,-121v76,0,107,87,50,122v27,8,43,32,43,63v0,46,-37,81,-92,81v-96,0,-128,-114,-51,-145xm75,-82v0,18,14,30,33,30v19,0,32,-12,32,-29v0,-18,-13,-31,-34,-31v-17,0,-31,12,-31,30"},"9":{"d":"107,-259v54,0,97,43,97,96v0,34,-15,55,-32,80r-56,85r-70,0r59,-81v-54,11,-93,-27,-93,-83v0,-55,40,-97,95,-97xm144,-164v0,-19,-14,-35,-33,-35v-20,0,-36,16,-36,36v0,20,13,34,33,34v22,0,36,-14,36,-35"},":":{"d":"85,0r-58,0r0,-59r58,0r0,59xm85,-125r-58,0r0,-60r58,0r0,60","w":113},";":{"d":"28,58r0,-29v18,4,24,-6,23,-29r-23,0r0,-59r56,0v0,57,11,130,-56,117xm27,-125r0,-60r58,0r0,60r-58,0","w":113},"<":{"d":"253,-210r0,39r-157,64r157,64r0,38r-207,-85r0,-35","w":299},"=":{"d":"45,-163r210,0r0,35r-210,0r0,-35xm45,-87r210,0r0,35r-210,0r0,-35","w":299},">":{"d":"46,-210r207,85r0,35r-207,85r0,-38r158,-64r-158,-64r0,-39","w":299},"?":{"d":"178,-185v0,45,-62,71,-66,105r-61,0v-7,-42,60,-68,60,-104v0,-13,-9,-20,-22,-20v-15,-1,-22,13,-21,33r-62,0v-2,-54,36,-89,90,-90v48,0,82,32,82,76xm111,0r-58,0r0,-59r58,0r0,59","w":192},"@":{"d":"214,-123v-3,-19,-14,-29,-31,-29v-26,0,-49,33,-49,74v0,22,9,33,27,33v34,0,47,-45,53,-78xm345,-134v0,58,-41,113,-102,115v-25,0,-38,-10,-38,-29v-26,48,-109,36,-109,-31v0,-57,38,-99,85,-99v19,0,32,8,41,23r10,-17r31,0r-27,112v0,8,6,12,17,12v37,0,60,-49,59,-87v0,-55,-46,-96,-117,-96v-87,0,-147,63,-147,139v0,116,157,152,240,85r14,21v-100,83,-286,32,-286,-105v0,-100,82,-169,180,-169v84,0,149,50,149,126","w":360},"A":{"d":"66,-37r-13,37r-68,0r98,-256r51,0r98,256r-69,0r-13,-37r-84,0xm134,-90r-26,-82r-25,82r51,0","w":216},"B":{"d":"199,-79v-1,53,-39,79,-101,79r-78,0r0,-256v74,-1,167,-9,167,63v0,27,-10,44,-32,55v30,9,44,28,44,59xm81,-54v28,0,56,3,56,-26v0,-30,-26,-29,-56,-28r0,54xm81,-157v25,0,49,1,49,-21v0,-24,-24,-25,-49,-24r0,45","w":210},"C":{"d":"9,-131v0,-69,61,-130,132,-130v60,0,110,39,127,102r-67,0v-28,-64,-128,-40,-128,29v0,73,95,99,126,35r68,0v-17,62,-65,100,-127,100v-73,0,-131,-61,-131,-136","w":277},"D":{"d":"241,-127v0,72,-53,127,-125,127r-96,0r0,-256r88,0v81,-4,133,49,133,129xm83,-56v61,4,96,-13,96,-73v0,-55,-36,-77,-96,-72r0,145","w":250},"E":{"d":"159,0r-139,0r0,-256r139,0r0,57r-77,0r0,41r77,0r0,57r-77,0r0,44r77,0r0,57","w":178},"F":{"d":"20,0r0,-256r139,0r0,57r-77,0r0,41r77,0r0,57r-77,0r0,101r-62,0","w":176},"G":{"d":"9,-131v0,-69,61,-130,132,-130v55,0,102,33,123,88r-71,0v-39,-49,-120,-19,-120,43v0,72,94,98,125,37r-73,0r0,-51r145,0v10,88,-56,148,-130,149v-73,1,-131,-61,-131,-136","w":280},"H":{"d":"147,0r0,-98r-64,0r0,98r-63,0r0,-256r63,0r0,97r64,0r0,-97r63,0r0,256r-63,0","w":230},"I":{"d":"83,0r-63,0r0,-256r63,0r0,256","w":103},"J":{"d":"165,-256v-6,109,33,266,-83,261v-51,-2,-80,-31,-80,-87v20,1,44,-2,62,1v0,17,7,26,20,26v14,0,18,-10,18,-31r0,-170r63,0","w":184},"K":{"d":"83,0r-63,0r0,-256r63,0r0,121r76,-121r69,0r-84,130r82,126r-76,0r-67,-111r0,111","w":217},"L":{"d":"155,0r-135,0r0,-256r62,0r0,199r73,0r0,57","w":157},"M":{"d":"80,0r-60,0r0,-256r86,0r49,157r49,-157r85,0r0,256r-59,0r0,-169r-53,169r-45,0r-52,-169r0,169","w":309},"N":{"d":"83,0r-62,0r0,-256r56,0r94,142r0,-142r63,0r0,256r-55,0r-96,-143r0,143","w":254},"O":{"d":"142,5v-74,0,-132,-61,-132,-136v0,-69,61,-130,132,-130v69,0,131,62,131,131v0,74,-59,135,-131,135xm75,-130v0,40,32,71,67,71v37,0,66,-29,66,-71v0,-37,-29,-67,-65,-67v-38,0,-68,30,-68,67","w":283},"P":{"d":"205,-170v-1,62,-46,96,-122,88r0,82r-62,0r0,-256r84,0v62,-4,100,31,100,86xm84,-138v33,1,57,-4,57,-31v0,-27,-25,-32,-57,-30r0,61","w":216},"Q":{"d":"142,-261v99,0,171,122,108,208v10,6,18,7,32,7r0,52v-34,3,-53,0,-71,-21v-91,58,-201,-17,-201,-116v0,-70,61,-130,132,-130xm166,-59v-16,-29,-48,-50,-85,-37v21,33,45,47,85,37xm199,-92v25,-46,-6,-105,-56,-105v-35,0,-62,23,-68,60v50,-26,93,1,124,45","w":283},"R":{"d":"105,-256v112,-19,134,144,42,168r63,88r-78,0r-49,-82r0,82r-62,0r0,-256r84,0xm83,-138v33,1,58,-4,58,-31v0,-27,-26,-32,-58,-30r0,61","w":218},"S":{"d":"9,-84r60,0v-8,41,46,44,47,12v0,-23,-16,-26,-45,-37v-88,-32,-69,-154,29,-152v47,0,80,30,78,79r-58,0v0,-16,-8,-25,-23,-25v-12,0,-20,8,-20,19v0,19,18,26,52,40v83,35,55,154,-33,153v-59,0,-89,-30,-87,-89","w":192},"T":{"d":"112,0r-63,0r0,-197r-48,0r0,-59r159,0r0,59r-48,0r0,197","w":158},"U":{"d":"20,-256r63,0r0,158v0,29,9,43,30,43v22,0,32,-14,32,-43r0,-158r63,0r0,160v0,63,-38,100,-95,100v-58,0,-93,-36,-93,-100r0,-160","w":228},"V":{"d":"138,0r-67,0r-80,-256r65,0r48,171r49,-171r64,0","w":210},"W":{"d":"120,0r-58,0r-69,-256r67,0r35,147r36,-147r56,0r36,147r35,-147r67,0r-69,256r-58,0r-39,-143","w":318},"X":{"d":"57,0r-69,0r85,-133r-73,-123r72,0r46,79r48,-79r69,0r-84,130r80,126r-75,0r-50,-81","w":223},"Y":{"d":"123,0r-63,0r0,-95r-73,-161r69,0r37,94r39,-94r66,0r-75,161r0,95","w":185},"Z":{"d":"168,0r-162,0r0,-46r94,-154r-92,0r0,-56r161,0r0,56r-88,144r87,0r0,56","w":177},"[":{"d":"102,31r0,41r-84,0r0,-328r84,0r0,40r-30,0r0,247r30,0","w":112},"\\":{"d":"82,33r-82,-289r34,0r82,289r-34,0","w":100},"]":{"d":"10,31r31,0r0,-247r-31,0r0,-40r84,0r0,328r-84,0r0,-41","w":112},"^":{"d":"158,-257r44,0r85,99r-42,0r-65,-65r-66,65r-41,0","w":360},"_":{"d":"0,49r180,0r0,36r-180,0r0,-36","w":180},"a":{"d":"8,-98v0,-73,97,-134,149,-74r0,-21r57,0r0,193r-55,0r0,-22v-57,58,-151,-1,-151,-76xm64,-98v0,27,21,48,50,48v24,0,45,-20,45,-47v0,-28,-20,-49,-47,-49v-27,0,-48,22,-48,48","w":233},"b":{"d":"226,-98v0,74,-95,134,-152,76r0,22r-55,0r0,-256r57,0r0,84v50,-58,150,0,150,74xm74,-97v0,27,21,47,45,47v29,0,50,-21,50,-48v0,-26,-21,-48,-48,-48v-27,0,-47,21,-47,49","w":233},"c":{"d":"8,-98v0,-54,46,-101,100,-101v49,0,85,27,100,76r-60,0v-18,-35,-84,-23,-84,25v0,48,59,64,83,29r61,0v-14,46,-52,74,-99,74v-56,0,-101,-48,-101,-103","w":217},"d":{"d":"64,-98v0,27,21,48,50,48v24,0,45,-20,45,-47v0,-28,-20,-49,-47,-49v-27,0,-48,22,-48,48xm8,-98v0,-73,97,-134,149,-74r0,-84r57,0r0,256r-55,0r0,-22v-57,58,-151,-1,-151,-76","w":233},"e":{"d":"64,-117r91,0v-9,-42,-85,-40,-91,0xm8,-98v0,-54,47,-102,100,-101v64,0,106,46,104,122r-146,0v4,31,51,43,74,21r63,0v-19,40,-51,61,-94,61v-56,0,-101,-48,-101,-103","w":219},"f":{"d":"25,-150r-21,0r0,-43r21,0v-4,-50,26,-72,79,-67v-2,12,3,31,-2,39v-19,-1,-22,8,-21,28r23,0r0,43r-23,0r0,150r-56,0r0,-150","w":112},"g":{"d":"70,-98v0,27,21,48,47,48v25,0,45,-20,45,-47v0,-28,-21,-48,-44,-48v-28,0,-48,21,-48,47xm214,-20v6,64,-37,102,-97,102v-51,0,-86,-27,-93,-67r63,0v19,39,83,19,72,-35v-57,52,-143,0,-143,-78v0,-73,92,-134,143,-74r0,-21r55,0r0,173","w":233},"h":{"d":"75,0r-56,0r0,-256r54,0r0,87v31,-51,120,-30,120,42r0,127r-57,0r0,-105v0,-27,-5,-39,-27,-39v-55,1,-28,93,-34,144","w":211},"i":{"d":"78,-211r-56,0r0,-45r56,0r0,45xm78,0r-56,0r0,-193r56,0r0,193","w":100},"j":{"d":"78,-9v2,62,-19,81,-80,78r0,-46v22,0,24,-8,24,-33r0,-183r56,0r0,184xm78,-211r-56,0r0,-45r56,0r0,45","w":100},"k":{"d":"22,-256r55,0r0,136r58,-73r68,0r-76,86r71,107r-69,0r-52,-89r0,89r-55,0r0,-256","w":191},"l":{"d":"22,-256r56,0r0,256r-56,0r0,-256","w":100},"m":{"d":"72,0r-54,0r0,-193r52,0r0,26v22,-41,84,-40,106,1v38,-53,128,-37,128,39r0,127r-56,0r0,-105v0,-27,-6,-39,-27,-39v-55,1,-26,93,-33,144r-56,0r0,-105v0,-27,-6,-39,-27,-39v-55,1,-26,93,-33,144","w":321},"n":{"d":"75,0r-56,0r0,-193r54,0r-1,26v29,-52,121,-33,121,40r0,127r-57,0r0,-105v0,-27,-5,-39,-27,-39v-55,1,-28,93,-34,144","w":211},"o":{"d":"64,-96v0,26,20,47,45,47v25,0,46,-21,46,-47v0,-27,-21,-48,-46,-48v-25,0,-45,21,-45,48xm109,5v-56,0,-101,-47,-101,-102v0,-54,47,-101,100,-101v56,0,104,47,104,100v0,58,-46,103,-103,103","w":219},"p":{"d":"74,-97v0,28,20,49,47,49v27,0,48,-22,48,-48v0,-27,-21,-48,-50,-48v-24,0,-45,20,-45,47xm226,-96v0,73,-98,134,-150,74r0,85r-57,0r0,-256r54,0r0,22v56,-60,153,0,153,75","w":233},"q":{"d":"9,-96v-7,-75,96,-135,152,-75r-1,-22r55,0r0,256r-57,0r0,-85v-51,60,-157,0,-149,-74xm66,-96v0,26,20,48,47,48v27,0,48,-21,48,-49v0,-27,-22,-47,-46,-47v-29,0,-49,21,-49,48","w":233},"r":{"d":"19,-193r54,0r0,26v9,-19,25,-29,48,-29v-1,17,2,37,-1,52v-70,-6,-36,88,-44,144r-57,0r0,-193","w":126},"s":{"d":"8,-58v17,2,40,-4,53,2v0,11,9,19,21,19v12,0,20,-6,20,-17v0,-16,-15,-17,-40,-23v-77,-18,-60,-122,24,-122v40,0,66,22,68,59r-52,0v0,-25,-35,-22,-34,-2v0,13,11,17,31,22v40,11,60,26,60,58v0,39,-31,67,-78,67v-43,0,-69,-24,-73,-63","w":169},"t":{"d":"27,-151r-24,0r0,-42r24,0r0,-63r58,0r0,63r25,0r0,42r-25,0r0,151r-58,0r0,-151","w":112},"u":{"d":"137,-193r56,0r0,193r-53,0r0,-26v-30,53,-122,33,-122,-40r0,-127r57,0r0,104v0,27,6,40,28,40v55,-1,28,-93,34,-144","w":211},"v":{"d":"119,0r-57,0r-69,-193r62,0r36,125r38,-125r60,0","w":181},"w":{"d":"223,0r-52,0r-33,-113r-33,113r-51,0r-59,-193r58,0r29,115r31,-115r50,0r31,115r30,-115r58,0","w":270},"x":{"d":"54,0r-64,0r72,-105r-63,-88r69,0r33,49r31,-49r61,0r-63,93r74,100r-71,0r-40,-60","w":196},"y":{"d":"94,63r-57,0r29,-75r-71,-181r63,0r37,112r41,-112r61,0","w":191},"z":{"d":"150,0r-145,0r0,-40r80,-103r-80,0r0,-50r144,0r0,45r-71,98r72,0r0,50","w":159},"{":{"d":"74,-200v-3,-53,28,-62,81,-60r0,37v-79,-15,2,124,-75,130v45,6,37,47,37,94v0,29,8,36,38,35r0,37v-52,2,-84,-7,-81,-60v2,-45,7,-97,-46,-88r0,-37v49,11,49,-40,46,-88","w":180},"|":{"d":"72,-275r36,0r0,360r-36,0r0,-360","w":180},"}":{"d":"106,13v3,54,-28,62,-81,60r0,-37v80,16,-1,-123,75,-129v-45,-6,-36,-49,-36,-95v0,-29,-9,-36,-39,-35r0,-37v52,-2,85,6,81,60v-3,46,-6,100,47,88r0,37v-52,-8,-50,40,-47,88","w":180},"~":{"d":"31,-112v55,-48,111,-2,172,-2v21,0,42,-9,66,-27r0,39v-23,16,-45,24,-67,24v-66,0,-117,-45,-171,5r0,-39","w":299},"\u00a1":{"d":"28,-256r57,0r0,59r-57,0r0,-59xm28,-172r58,0r0,172r-58,0r0,-172","w":113},"\u00a2":{"d":"147,-101r61,0v-12,39,-39,64,-79,72r0,39r-45,0r0,-40v-101,-22,-100,-176,2,-198r0,-41r43,0r0,40v37,6,65,31,79,73r-60,0v-21,-33,-84,-21,-84,27v0,46,60,63,83,28"},"\u00a3":{"d":"18,0r0,-51v36,7,56,-16,42,-50r-47,0r0,-46r23,0v-27,-57,17,-113,80,-113v48,0,80,30,83,81r-56,0v0,-18,-11,-28,-26,-28v-30,0,-36,35,-20,60r57,0r0,46r-40,0v10,17,7,39,-5,51v34,2,61,-5,50,-37r51,0v16,61,-27,87,-99,87r-93,0"},"\u00a5":{"d":"211,-255r-27,58r22,0r0,38r-39,0r-13,27r52,0r0,38r-69,0r0,94r-60,0r0,-94r-69,0r0,-38r52,0r-12,-27r-40,0r0,-38r22,0r-26,-58r67,0r38,98r39,-98r63,0"},"\u00a7":{"d":"15,-23r50,0v-3,32,47,37,49,10v1,-19,-40,-25,-57,-34v-57,-17,-74,-86,-20,-111v-43,-38,-17,-103,53,-103v45,0,71,25,73,64r-51,0v5,-30,-43,-35,-44,-9v-2,17,38,31,56,37v57,19,72,89,19,110v46,35,19,102,-50,102v-51,0,-78,-23,-78,-66xm112,-79v25,-11,20,-30,-4,-41r-41,-19v-22,11,-23,31,-1,40","w":180},"\u00a4":{"d":"30,-253r36,36v23,-19,62,-18,87,0r35,-36r19,19r-36,36v18,24,17,60,0,85r36,36r-19,18r-35,-35v-23,17,-64,18,-87,0r-36,35r-18,-18r36,-36v-18,-24,-19,-61,0,-85r-36,-36xm109,-204v-27,0,-48,22,-48,48v0,27,21,49,48,49v27,0,49,-22,49,-49v0,-26,-22,-48,-49,-48","w":218},"'":{"d":"14,-253r34,0r0,99r-34,0r0,-99","w":61},"\u00ab":{"d":"106,-46r-43,0r-36,-53r36,-52r43,0r-35,52xm174,-46r-43,0r-35,-53r35,-52r43,0r-35,52","w":201},"\u00b7":{"d":"21,-128v0,-18,14,-33,32,-33v18,0,33,15,33,33v0,18,-15,33,-33,33v-18,0,-32,-15,-32,-33","w":106},"\u00b6":{"d":"173,-260r0,20r-20,0r0,240r-27,0r0,-240r-28,0r0,240r-26,0r0,-138v-40,-1,-65,-26,-65,-61v0,-36,27,-61,69,-61r97,0","w":180},"\u00bb":{"d":"96,-46r35,-53r-35,-52r43,0r35,52r-35,53r-43,0xm27,-46r36,-53r-36,-52r44,0r35,52r-35,53r-44,0","w":201},"\u00bf":{"d":"80,-256r58,0r0,59r-58,0r0,-59xm13,-71v0,-45,62,-71,66,-105r61,0v7,42,-60,68,-59,104v0,13,8,21,21,21v15,0,22,-14,21,-34r62,0v2,54,-36,89,-90,90v-48,0,-82,-32,-82,-76","w":192},"`":{"d":"39,-283r45,0r34,65r-24,0","w":180},"\u00b4":{"d":"141,-283r-55,65r-24,0r34,-65r45,0","w":180},"\u00af":{"d":"40,-236r0,-28r100,0r0,28r-100,0","w":180},"\u00a8":{"d":"40,-228r0,-43r39,0r0,43r-39,0xm101,-228r0,-43r39,0r0,43r-39,0","w":180},"\u00b8":{"d":"43,74r0,-22v21,5,35,8,45,8v12,0,18,-4,18,-13v0,-12,-17,-13,-31,-11r0,-36r17,0r0,15v29,-1,45,11,44,33v0,40,-53,37,-93,26","w":180},"\u00c6":{"d":"163,-49r-82,0r-24,49r-74,0r139,-256r180,0r0,56r-76,0r0,42r76,0r0,58r-76,0r0,44r76,0r0,56r-139,0r0,-49xm163,-100r0,-100r-6,0r-49,100r55,0","w":322},"\u00aa":{"d":"6,-189v0,-51,74,-94,112,-52r0,-15r43,0r0,135r-41,0r0,-15v-43,40,-114,1,-114,-53xm48,-189v0,19,16,33,38,33v18,0,34,-14,34,-33v0,-19,-16,-33,-36,-33v-20,0,-36,15,-36,33","w":174},"\u00d8":{"d":"244,-212v71,84,4,217,-105,217v-27,0,-51,-8,-74,-24r-39,41r-31,-28r40,-43v-64,-86,3,-216,106,-212v26,0,49,7,71,21r34,-36r31,28xm81,-99r87,-93v-57,-22,-112,33,-87,93xm199,-164r-89,97v59,36,124,-36,89,-97","w":283},"\u00ba":{"d":"48,-188v0,19,15,33,34,33v19,0,34,-14,34,-33v0,-18,-15,-34,-34,-34v-19,0,-34,16,-34,34xm82,-117v-41,0,-76,-32,-76,-72v0,-39,37,-71,75,-71v42,0,78,34,78,71v1,40,-36,72,-77,72","w":164},"\u00e6":{"d":"8,-98v-7,-72,90,-132,144,-76r0,-19r47,0r0,19v65,-58,170,-5,160,98r-146,0v5,31,51,41,75,20r63,0v-23,59,-106,85,-152,36r0,20r-47,0r0,-20v-54,55,-153,-6,-144,-78xm63,-98v0,27,20,48,48,48v23,0,44,-20,44,-47v0,-28,-21,-48,-44,-48v-28,0,-48,21,-48,47xm212,-114r90,0v-4,-43,-87,-42,-90,0","w":366},"\u00f8":{"d":"26,-39v-61,-86,41,-202,137,-144r29,-30r24,24r-27,29v54,62,6,165,-81,165v-22,0,-42,-6,-59,-19r-31,32r-24,-23xm149,-121r-62,66v41,21,84,-23,62,-66xm66,-79r58,-62v-40,-10,-72,21,-58,62","w":219},"\u00df":{"d":"75,-21r0,21r-58,0r0,-164v0,-63,32,-96,94,-96v74,0,109,76,57,114v37,5,58,31,58,68v0,72,-106,110,-151,57xm75,-72r44,0v1,12,9,19,21,19v15,0,24,-9,24,-24v0,-32,-34,-31,-70,-31r0,-49v42,6,49,-49,11,-49v-50,0,-23,88,-30,134","w":237},"\u00c1":{"d":"66,-37r-13,37r-68,0r98,-256r51,0r98,256r-69,0r-13,-37r-84,0xm134,-90r-26,-82r-25,82r51,0xm159,-345r-55,65r-24,0r34,-65r45,0","w":216},"\u00c2":{"d":"53,-279r34,-66r42,0r35,66r-25,0r-31,-39r-31,39r-24,0xm66,-37r-13,37r-68,0r98,-256r51,0r98,256r-69,0r-13,-37r-84,0xm134,-90r-26,-82r-25,82r51,0","w":216},"\u00c4":{"d":"66,-37r-13,37r-68,0r98,-256r51,0r98,256r-69,0r-13,-37r-84,0xm134,-90r-26,-82r-25,82r51,0xm58,-290r0,-43r39,0r0,43r-39,0xm119,-290r0,-43r39,0r0,43r-39,0","w":216},"\u00c0":{"d":"66,-37r-13,37r-68,0r98,-256r51,0r98,256r-69,0r-13,-37r-84,0xm134,-90r-26,-82r-25,82r51,0xm57,-345r45,0r34,65r-24,0","w":216},"\u00c5":{"d":"66,-37r-13,37r-68,0r98,-254r51,0r98,254r-69,0r-13,-37r-84,0xm134,-90r-26,-82r-25,82r51,0xm91,-305v0,24,35,20,35,0v0,-9,-8,-17,-17,-17v-9,0,-18,8,-18,17xm67,-305v0,-23,18,-42,41,-42v23,0,42,19,42,42v0,23,-19,41,-42,41v-23,0,-41,-18,-41,-41","w":216},"\u00c3":{"d":"164,-336v-8,50,-39,47,-77,34v-8,0,-12,4,-15,14r-19,0v7,-49,39,-43,77,-33v8,0,12,-5,15,-15r19,0xm66,-37r-13,37r-68,0r98,-256r51,0r98,256r-69,0r-13,-37r-84,0xm134,-90r-26,-82r-25,82r51,0","w":216},"\u00c7":{"d":"9,-131v0,-69,61,-130,132,-130v60,0,110,39,127,102r-67,0v-28,-64,-128,-40,-128,29v0,73,95,99,126,35r68,0v-17,62,-65,100,-127,100v-73,0,-131,-61,-131,-136xm92,74r0,-22v21,5,35,8,45,8v12,0,18,-4,18,-13v0,-12,-17,-13,-31,-11r0,-36r17,0r0,15v29,-1,45,11,44,33v0,40,-53,37,-93,26","w":277},"\u00c9":{"d":"159,0r-139,0r0,-256r139,0r0,57r-77,0r0,41r77,0r0,57r-77,0r0,44r77,0r0,57xm140,-345r-55,65r-24,0r34,-65r45,0","w":178},"\u00ca":{"d":"34,-279r34,-66r42,0r35,66r-25,0r-31,-39r-31,39r-24,0xm159,0r-139,0r0,-256r139,0r0,57r-77,0r0,41r77,0r0,57r-77,0r0,44r77,0r0,57","w":178},"\u00cb":{"d":"159,0r-139,0r0,-256r139,0r0,57r-77,0r0,41r77,0r0,57r-77,0r0,44r77,0r0,57xm39,-290r0,-43r39,0r0,43r-39,0xm100,-290r0,-43r39,0r0,43r-39,0","w":178},"\u00c8":{"d":"159,0r-139,0r0,-256r139,0r0,57r-77,0r0,41r77,0r0,57r-77,0r0,44r77,0r0,57xm38,-345r45,0r34,65r-24,0","w":178},"\u00cd":{"d":"83,0r-63,0r0,-256r63,0r0,256xm103,-345r-55,65r-24,0r34,-65r45,0","w":103},"\u00ce":{"d":"-4,-279r35,-66r42,0r34,66r-25,0r-30,-39r-31,39r-25,0xm83,0r-63,0r0,-256r63,0r0,256","w":103},"\u00cf":{"d":"83,0r-63,0r0,-256r63,0r0,256xm2,-290r0,-43r39,0r0,43r-39,0xm63,-290r0,-43r39,0r0,43r-39,0","w":103},"\u00cc":{"d":"83,0r-63,0r0,-256r63,0r0,256xm1,-345r45,0r34,65r-24,0","w":103},"\u00d1":{"d":"183,-336v-8,50,-39,47,-77,34v-8,0,-12,4,-15,14r-20,0v7,-49,39,-43,77,-33v8,0,12,-5,15,-15r20,0xm83,0r-62,0r0,-256r56,0r94,142r0,-142r63,0r0,256r-55,0r-96,-143r0,143","w":254},"\u00d3":{"d":"142,5v-74,0,-132,-61,-132,-136v0,-69,61,-130,132,-130v69,0,131,62,131,131v0,74,-59,135,-131,135xm75,-130v0,40,32,71,67,71v37,0,66,-29,66,-71v0,-37,-29,-67,-65,-67v-38,0,-68,30,-68,67xm193,-345r-55,65r-24,0r34,-65r45,0","w":283},"\u00d4":{"d":"86,-279r35,-66r42,0r34,66r-25,0r-30,-39r-31,39r-25,0xm142,5v-74,0,-132,-61,-132,-136v0,-69,61,-130,132,-130v69,0,131,62,131,131v0,74,-59,135,-131,135xm75,-130v0,40,32,71,67,71v37,0,66,-29,66,-71v0,-37,-29,-67,-65,-67v-38,0,-68,30,-68,67","w":283},"\u00d6":{"d":"142,5v-74,0,-132,-61,-132,-136v0,-69,61,-130,132,-130v69,0,131,62,131,131v0,74,-59,135,-131,135xm75,-130v0,40,32,71,67,71v37,0,66,-29,66,-71v0,-37,-29,-67,-65,-67v-38,0,-68,30,-68,67xm92,-290r0,-43r39,0r0,43r-39,0xm153,-290r0,-43r39,0r0,43r-39,0","w":283},"\u00d2":{"d":"142,5v-74,0,-132,-61,-132,-136v0,-69,61,-130,132,-130v69,0,131,62,131,131v0,74,-59,135,-131,135xm75,-130v0,40,32,71,67,71v37,0,66,-29,66,-71v0,-37,-29,-67,-65,-67v-38,0,-68,30,-68,67xm91,-345r45,0r34,65r-24,0","w":283},"\u00d5":{"d":"198,-336v-8,50,-39,46,-77,34v-8,0,-13,4,-16,14r-19,0v7,-49,39,-43,77,-33v8,0,12,-5,15,-15r20,0xm142,5v-74,0,-132,-61,-132,-136v0,-69,61,-130,132,-130v69,0,131,62,131,131v0,74,-59,135,-131,135xm75,-130v0,40,32,71,67,71v37,0,66,-29,66,-71v0,-37,-29,-67,-65,-67v-38,0,-68,30,-68,67","w":283},"\u00da":{"d":"20,-256r63,0r0,158v0,29,9,43,30,43v22,0,32,-14,32,-43r0,-158r63,0r0,160v0,63,-38,100,-95,100v-58,0,-93,-36,-93,-100r0,-160xm165,-345r-55,65r-24,0r34,-65r45,0","w":228},"\u00db":{"d":"59,-279r35,-66r41,0r35,66r-25,0r-31,-39r-30,39r-25,0xm20,-256r63,0r0,158v0,29,9,43,30,43v22,0,32,-14,32,-43r0,-158r63,0r0,160v0,63,-38,100,-95,100v-58,0,-93,-36,-93,-100r0,-160","w":228},"\u00dc":{"d":"20,-256r63,0r0,158v0,29,9,43,30,43v22,0,32,-14,32,-43r0,-158r63,0r0,160v0,63,-38,100,-95,100v-58,0,-93,-36,-93,-100r0,-160xm64,-290r0,-43r39,0r0,43r-39,0xm125,-290r0,-43r39,0r0,43r-39,0","w":228},"\u00d9":{"d":"20,-256r63,0r0,158v0,29,9,43,30,43v22,0,32,-14,32,-43r0,-158r63,0r0,160v0,63,-38,100,-95,100v-58,0,-93,-36,-93,-100r0,-160xm63,-345r45,0r34,65r-24,0","w":228},"\u00e1":{"d":"8,-98v0,-73,97,-134,149,-74r0,-21r57,0r0,193r-55,0r0,-22v-57,58,-151,-1,-151,-76xm64,-98v0,27,21,48,50,48v24,0,45,-20,45,-47v0,-28,-20,-49,-47,-49v-27,0,-48,22,-48,48xm174,-283r-55,65r-24,0r34,-65r45,0","w":233},"\u00e2":{"d":"67,-218r35,-65r42,0r34,65r-25,0r-30,-38r-31,38r-25,0xm8,-98v0,-73,97,-134,149,-74r0,-21r57,0r0,193r-55,0r0,-22v-57,58,-151,-1,-151,-76xm64,-98v0,27,21,48,50,48v24,0,45,-20,45,-47v0,-28,-20,-49,-47,-49v-27,0,-48,22,-48,48","w":233},"\u00e4":{"d":"8,-98v0,-73,97,-134,149,-74r0,-21r57,0r0,193r-55,0r0,-22v-57,58,-151,-1,-151,-76xm64,-98v0,27,21,48,50,48v24,0,45,-20,45,-47v0,-28,-20,-49,-47,-49v-27,0,-48,22,-48,48xm73,-228r0,-43r39,0r0,43r-39,0xm134,-228r0,-43r39,0r0,43r-39,0","w":233},"\u00e0":{"d":"8,-98v0,-73,97,-134,149,-74r0,-21r57,0r0,193r-55,0r0,-22v-57,58,-151,-1,-151,-76xm64,-98v0,27,21,48,50,48v24,0,45,-20,45,-47v0,-28,-20,-49,-47,-49v-27,0,-48,22,-48,48xm72,-283r45,0r34,65r-24,0","w":233},"\u00e5":{"d":"64,-98v0,27,21,48,50,48v24,0,45,-20,45,-47v0,-28,-20,-49,-47,-49v-27,0,-48,22,-48,48xm8,-98v0,-73,97,-134,149,-74r0,-21r57,0r0,193r-55,0r0,-22v-57,58,-151,-1,-151,-76xm108,-267v-24,0,-20,35,0,35v9,0,18,-8,18,-17v0,-9,-9,-18,-18,-18xm67,-249v0,-23,18,-42,41,-42v23,0,42,19,42,42v0,23,-19,41,-42,41v-23,0,-41,-18,-41,-41","w":233},"\u00e3":{"d":"179,-274v-8,50,-38,46,-77,34v-8,0,-13,4,-16,14r-19,0v7,-48,39,-44,77,-33v8,0,12,-5,15,-15r20,0xm8,-98v0,-73,97,-134,149,-74r0,-21r57,0r0,193r-55,0r0,-22v-57,58,-151,-1,-151,-76xm64,-98v0,27,21,48,50,48v24,0,45,-20,45,-47v0,-28,-20,-49,-47,-49v-27,0,-48,22,-48,48","w":233},"\u00e7":{"d":"8,-98v0,-54,46,-101,100,-101v49,0,85,27,100,76r-60,0v-18,-35,-84,-23,-84,25v0,48,59,64,83,29r61,0v-14,46,-52,74,-99,74v-56,0,-101,-48,-101,-103xm62,74r0,-22v21,5,35,8,45,8v12,0,18,-4,18,-13v0,-12,-17,-13,-31,-11r0,-36r17,0r0,15v29,-1,45,11,44,33v0,40,-53,37,-93,26","w":217},"\u00e9":{"d":"64,-117r91,0v-9,-42,-85,-40,-91,0xm8,-98v0,-54,47,-102,100,-101v64,0,106,46,104,122r-146,0v4,31,51,43,74,21r63,0v-19,40,-51,61,-94,61v-56,0,-101,-48,-101,-103xm161,-283r-55,65r-24,0r34,-65r45,0","w":219},"\u00ea":{"d":"54,-218r35,-65r42,0r34,65r-25,0r-30,-38r-31,38r-25,0xm64,-117r91,0v-9,-42,-85,-40,-91,0xm8,-98v0,-54,47,-102,100,-101v64,0,106,46,104,122r-146,0v4,31,51,43,74,21r63,0v-19,40,-51,61,-94,61v-56,0,-101,-48,-101,-103","w":219},"\u00eb":{"d":"64,-117r91,0v-9,-42,-85,-40,-91,0xm8,-98v0,-54,47,-102,100,-101v64,0,106,46,104,122r-146,0v4,31,51,43,74,21r63,0v-19,40,-51,61,-94,61v-56,0,-101,-48,-101,-103xm60,-228r0,-43r39,0r0,43r-39,0xm121,-228r0,-43r39,0r0,43r-39,0","w":219},"\u00e8":{"d":"64,-117r91,0v-9,-42,-85,-40,-91,0xm8,-98v0,-54,47,-102,100,-101v64,0,106,46,104,122r-146,0v4,31,51,43,74,21r63,0v-19,40,-51,61,-94,61v-56,0,-101,-48,-101,-103xm59,-283r45,0r34,65r-24,0","w":219},"\u00ed":{"d":"78,0r-56,0r0,-193r56,0r0,193xm101,-283r-55,65r-24,0r34,-65r45,0","w":100},"\u00ee":{"d":"-5,-218r34,-65r42,0r34,65r-24,0r-31,-38r-31,38r-24,0xm78,0r-56,0r0,-193r56,0r0,193","w":100},"\u00ef":{"d":"78,0r-56,0r0,-193r56,0r0,193xm0,-228r0,-43r39,0r0,43r-39,0xm61,-228r0,-43r39,0r0,43r-39,0","w":100},"\u00ec":{"d":"78,0r-56,0r0,-193r56,0r0,193xm-1,-283r45,0r34,65r-24,0","w":100},"\u00f1":{"d":"162,-274v-8,50,-38,46,-77,34v-8,0,-13,4,-16,14r-19,0v7,-48,39,-44,77,-33v8,0,12,-5,15,-15r20,0xm75,0r-56,0r0,-193r54,0r-1,26v29,-52,121,-33,121,40r0,127r-57,0r0,-105v0,-27,-5,-39,-27,-39v-55,1,-28,93,-34,144","w":211},"\u00f3":{"d":"64,-96v0,26,20,47,45,47v25,0,46,-21,46,-47v0,-27,-21,-48,-46,-48v-25,0,-45,21,-45,48xm109,5v-56,0,-101,-47,-101,-102v0,-54,47,-101,100,-101v56,0,104,47,104,100v0,58,-46,103,-103,103xm161,-283r-55,65r-24,0r34,-65r45,0","w":219},"\u00f4":{"d":"54,-218r35,-65r42,0r34,65r-25,0r-30,-38r-31,38r-25,0xm64,-96v0,26,20,47,45,47v25,0,46,-21,46,-47v0,-27,-21,-48,-46,-48v-25,0,-45,21,-45,48xm109,5v-56,0,-101,-47,-101,-102v0,-54,47,-101,100,-101v56,0,104,47,104,100v0,58,-46,103,-103,103","w":219},"\u00f6":{"d":"64,-96v0,26,20,47,45,47v25,0,46,-21,46,-47v0,-27,-21,-48,-46,-48v-25,0,-45,21,-45,48xm109,5v-56,0,-101,-47,-101,-102v0,-54,47,-101,100,-101v56,0,104,47,104,100v0,58,-46,103,-103,103xm60,-228r0,-43r39,0r0,43r-39,0xm121,-228r0,-43r39,0r0,43r-39,0","w":219},"\u00f2":{"d":"64,-96v0,26,20,47,45,47v25,0,46,-21,46,-47v0,-27,-21,-48,-46,-48v-25,0,-45,21,-45,48xm109,5v-56,0,-101,-47,-101,-102v0,-54,47,-101,100,-101v56,0,104,47,104,100v0,58,-46,103,-103,103xm59,-283r45,0r34,65r-24,0","w":219},"\u00f5":{"d":"166,-274v-8,50,-38,46,-77,34v-8,0,-13,4,-16,14r-19,0v7,-48,39,-44,77,-33v8,0,12,-5,15,-15r20,0xm64,-96v0,26,20,47,45,47v25,0,46,-21,46,-47v0,-27,-21,-48,-46,-48v-25,0,-45,21,-45,48xm109,5v-56,0,-101,-47,-101,-102v0,-54,47,-101,100,-101v56,0,104,47,104,100v0,58,-46,103,-103,103","w":219},"\u00fa":{"d":"137,-193r56,0r0,193r-53,0r0,-26v-30,53,-122,33,-122,-40r0,-127r57,0r0,104v0,27,6,40,28,40v55,-1,28,-93,34,-144xm157,-283r-55,65r-24,0r34,-65r45,0","w":211},"\u00fb":{"d":"50,-218r35,-65r42,0r34,65r-25,0r-30,-38r-31,38r-25,0xm137,-193r56,0r0,193r-53,0r0,-26v-30,53,-122,33,-122,-40r0,-127r57,0r0,104v0,27,6,40,28,40v55,-1,28,-93,34,-144","w":211},"\u00fc":{"d":"137,-193r56,0r0,193r-53,0r0,-26v-30,53,-122,33,-122,-40r0,-127r57,0r0,104v0,27,6,40,28,40v55,-1,28,-93,34,-144xm56,-228r0,-43r39,0r0,43r-39,0xm117,-228r0,-43r39,0r0,43r-39,0","w":211},"\u00f9":{"d":"137,-193r56,0r0,193r-53,0r0,-26v-30,53,-122,33,-122,-40r0,-127r57,0r0,104v0,27,6,40,28,40v55,-1,28,-93,34,-144xm55,-283r45,0r34,65r-24,0","w":211},"\u00ff":{"d":"94,63r-57,0r29,-75r-71,-181r63,0r37,112r41,-112r61,0xm46,-228r0,-43r39,0r0,43r-39,0xm107,-228r0,-43r39,0r0,43r-39,0","w":191},"\u00a9":{"d":"19,-129v0,-69,59,-131,131,-131v71,0,131,60,131,131v0,72,-63,131,-131,131v-69,0,-131,-62,-131,-131xm259,-129v0,-60,-50,-109,-109,-109v-60,0,-109,51,-109,109v0,58,51,109,109,109v56,0,109,-49,109,-109xm213,-158r-33,0v-2,-17,-13,-26,-30,-26v-21,0,-34,20,-34,55v0,59,57,71,65,24r34,0v-2,32,-28,54,-65,54v-43,0,-70,-29,-70,-77v0,-49,28,-79,70,-79v36,0,61,19,63,49","w":299},"\u00ac":{"d":"45,-152r210,0r0,88r-35,0r0,-53r-175,0r0,-35","w":299},"\u00ae":{"d":"19,-129v2,-72,61,-131,131,-131v71,0,131,59,131,131v0,71,-63,131,-131,131v-69,0,-132,-62,-131,-131xm259,-127v0,-61,-49,-111,-109,-111v-59,0,-109,52,-109,109v0,58,52,109,109,109v55,0,109,-50,109,-107xm96,-204v51,-1,119,-5,119,42v0,19,-12,33,-32,38r32,65r-39,0r-28,-59r-17,0r0,59r-35,0r0,-145xm131,-182r0,42v23,1,49,0,47,-20v2,-20,-23,-23,-47,-22","w":299},"\u00d0":{"d":"246,-127v0,72,-53,127,-125,127r-96,0r0,-102r-26,0r0,-53r26,0r0,-101r88,0v81,-4,133,49,133,129xm88,-56v61,4,96,-13,96,-73v0,-55,-36,-77,-96,-72r0,46r45,0r0,53r-45,0r0,46","w":255},"\u00de":{"d":"205,-133v0,62,-47,96,-122,88r0,45r-62,0r0,-256r62,0r0,37v74,-7,123,22,122,86xm84,-101v33,1,57,-4,57,-31v0,-27,-25,-32,-57,-30r0,61","w":216},"\u00dd":{"d":"123,0r-63,0r0,-95r-73,-161r69,0r37,94r39,-94r66,0r-75,161r0,95xm144,-345r-55,65r-24,0r34,-65r45,0","w":185},"\u00a6":{"d":"72,-252r36,0r0,134r-36,0r0,-134xm72,-72r36,0r0,134r-36,0r0,-134","w":180},"\u00b0":{"d":"59,-257v30,0,54,23,54,53v0,29,-24,54,-54,54v-30,0,-53,-24,-53,-54v0,-30,23,-53,53,-53xm59,-235v-17,0,-31,14,-31,31v0,17,14,31,31,31v17,0,31,-14,31,-31v0,-17,-14,-31,-31,-31","w":118},"\u00f7":{"d":"150,-203v14,0,27,12,27,27v0,14,-12,26,-27,26v-15,0,-27,-11,-27,-26v0,-15,13,-27,27,-27xm45,-125r210,0r0,35r-210,0r0,-35xm150,-65v14,0,27,12,27,27v0,14,-12,26,-27,26v-15,0,-27,-11,-27,-26v0,-15,13,-27,27,-27","w":299},"\u00f0":{"d":"18,-82v0,-59,71,-109,127,-75v-8,-15,-16,-26,-25,-35r-52,18r-10,-30r36,-12v-6,-4,-13,-8,-20,-11r15,-31v18,8,34,16,47,26r56,-20r12,32r-39,15v24,30,37,68,37,112v0,61,-41,97,-93,98v-49,1,-91,-40,-91,-87xm68,-84v0,22,19,40,42,40v23,0,41,-18,41,-40v0,-22,-18,-41,-41,-41v-23,0,-42,18,-42,41","w":218},"\u00d7":{"d":"73,-211r79,79r79,-79r25,24r-79,80r79,79r-25,24r-79,-79r-79,79r-24,-24r79,-79r-79,-80","w":299},"\u00bd":{"d":"93,-113r-38,0r0,-116r-28,0r0,-27r66,0r0,143xm222,-261r33,0r-147,266r-33,0xm319,0r-111,0r0,-31v48,-25,71,-48,71,-68v0,-10,-6,-16,-16,-16v-11,0,-17,9,-16,24r-40,0v0,-33,22,-54,57,-54v85,0,64,82,-1,113r56,0r0,32","w":330},"\u00bc":{"d":"93,-113r-38,0r0,-116r-28,0r0,-27r66,0r0,143xm222,-261r33,0r-147,266r-33,0xm274,-53r1,-48r-35,48r34,0xm310,0r-39,0r0,-26r-69,0r0,-27r69,-90r39,0r0,89r15,0r0,28r-15,0r0,26","w":330},"\u00b9":{"d":"97,-102r-39,0r0,-125r-30,0r0,-29r69,0r0,154","w":141},"\u00b1":{"d":"132,-215r36,0r0,57r87,0r0,35r-87,0r0,57r-36,0r0,-57r-87,0r0,-35r87,0r0,-57xm45,-35r210,0r0,35r-210,0r0,-35","w":299},"\u00fe":{"d":"226,-96v0,73,-98,134,-150,74r0,85r-57,0r0,-319r57,0r0,85v53,-59,150,1,150,75xm74,-97v0,28,20,49,47,49v27,0,47,-22,47,-49v0,-26,-21,-47,-48,-47v-26,0,-46,20,-46,47","w":233},"\u00be":{"d":"11,-156v12,2,31,-3,39,2v0,9,6,14,18,14v11,0,17,-7,17,-16v0,-12,-17,-16,-35,-15r0,-27v18,1,30,-5,29,-18v0,-9,-5,-13,-13,-13v-9,0,-13,5,-12,14v-12,-1,-29,2,-39,-1v0,-27,21,-43,52,-43v48,0,68,54,26,69v21,5,31,17,31,33v0,27,-22,47,-56,47v-36,0,-57,-16,-57,-46xm222,-261r33,0r-147,266r-33,0xm274,-53r1,-48r-35,48r34,0xm310,0r-39,0r0,-26r-69,0r0,-27r69,-90r39,0r0,89r15,0r0,28r-15,0r0,26","w":330},"\u00b3":{"d":"11,-148v13,1,31,-2,42,1v0,9,6,15,18,15v11,0,18,-7,18,-16v1,-14,-17,-18,-37,-17r0,-29v31,7,42,-28,17,-33v-9,0,-13,5,-12,15v-13,-1,-30,2,-41,-1v0,-28,21,-46,54,-46v49,0,71,58,27,74v22,5,33,18,33,36v0,28,-23,50,-59,50v-38,0,-60,-18,-60,-49","w":141},"\u00b2":{"d":"130,-102r-117,0r0,-33v50,-27,75,-52,75,-74v0,-11,-7,-17,-17,-17v-11,0,-18,10,-17,26r-42,0v0,-36,24,-58,60,-58v90,0,66,90,-1,122r59,0r0,34","w":141},"\u00fd":{"d":"94,63r-57,0r29,-75r-71,-181r63,0r37,112r41,-112r61,0xm147,-283r-55,65r-24,0r34,-65r45,0","w":191},"\u00a0":{"w":106}}});