/*
 * 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 Effects 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/Effects/
 */
jQuery.effects||(function(d){d.effects={version:"1.7.2",save:function(g,h){for(var f=0;f<h.length;f++){if(h[f]!==null){g.data("ec.storage."+h[f],g[0].style[h[f]])}}},restore:function(g,h){for(var f=0;f<h.length;f++){if(h[f]!==null){g.css(h[f],g.data("ec.storage."+h[f]))}}},setMode:function(f,g){if(g=="toggle"){g=f.is(":hidden")?"show":"hide"}return g},getBaseline:function(g,h){var i,f;switch(g[0]){case"top":i=0;break;case"middle":i=0.5;break;case"bottom":i=1;break;default:i=g[0]/h.height}switch(g[1]){case"left":f=0;break;case"center":f=0.5;break;case"right":f=1;break;default:f=g[1]/h.width}return{x:f,y:i}},createWrapper:function(f){if(f.parent().is(".ui-effects-wrapper")){return f.parent()}var g={width:f.outerWidth(true),height:f.outerHeight(true),"float":f.css("float")};f.wrap('<div class="ui-effects-wrapper" style="font-size:100%;background:transparent;border:none;margin:0;padding:0"></div>');var j=f.parent();if(f.css("position")=="static"){j.css({position:"relative"});f.css({position:"relative"})}else{var i=f.css("top");if(isNaN(parseInt(i,10))){i="auto"}var h=f.css("left");if(isNaN(parseInt(h,10))){h="auto"}j.css({position:f.css("position"),top:i,left:h,zIndex:f.css("z-index")}).show();f.css({position:"relative",top:0,left:0})}j.css(g);return j},removeWrapper:function(f){if(f.parent().is(".ui-effects-wrapper")){return f.parent().replaceWith(f)}return f},setTransition:function(g,i,f,h){h=h||{};d.each(i,function(k,j){unit=g.cssUnit(j);if(unit[0]>0){h[j]=unit[0]*f+unit[1]}});return h},animateClass:function(h,i,k,j){var f=(typeof k=="function"?k:(j?j:null));var g=(typeof k=="string"?k:null);return this.each(function(){var q={};var o=d(this);var p=o.attr("style")||"";if(typeof p=="object"){p=p.cssText}if(h.toggle){o.hasClass(h.toggle)?h.remove=h.toggle:h.add=h.toggle}var l=d.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(h.add){o.addClass(h.add)}if(h.remove){o.removeClass(h.remove)}var m=d.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(h.add){o.removeClass(h.add)}if(h.remove){o.addClass(h.remove)}for(var r in m){if(typeof m[r]!="function"&&m[r]&&r.indexOf("Moz")==-1&&r.indexOf("length")==-1&&m[r]!=l[r]&&(r.match(/color/i)||(!r.match(/color/i)&&!isNaN(parseInt(m[r],10))))&&(l.position!="static"||(l.position=="static"&&!r.match(/left|top|bottom|right/)))){q[r]=m[r]}}o.animate(q,i,g,function(){if(typeof d(this).attr("style")=="object"){d(this).attr("style")["cssText"]="";d(this).attr("style")["cssText"]=p}else{d(this).attr("style",p)}if(h.add){d(this).addClass(h.add)}if(h.remove){d(this).removeClass(h.remove)}if(f){f.apply(this,arguments)}})})}};function c(g,f){var i=g[1]&&g[1].constructor==Object?g[1]:{};if(f){i.mode=f}var h=g[1]&&g[1].constructor!=Object?g[1]:(i.duration?i.duration:g[2]);h=d.fx.off?0:typeof h==="number"?h:d.fx.speeds[h]||d.fx.speeds._default;var j=i.callback||(d.isFunction(g[1])&&g[1])||(d.isFunction(g[2])&&g[2])||(d.isFunction(g[3])&&g[3]);return[g[0],i,h,j]}d.fn.extend({_show:d.fn.show,_hide:d.fn.hide,__toggle:d.fn.toggle,_addClass:d.fn.addClass,_removeClass:d.fn.removeClass,_toggleClass:d.fn.toggleClass,effect:function(g,f,h,i){return d.effects[g]?d.effects[g].call(this,{method:g,options:f||{},duration:h,callback:i}):null},show:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))){return this._show.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"show"))}},hide:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))){return this._hide.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"hide"))}},toggle:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))||(d.isFunction(arguments[0])||typeof arguments[0]=="boolean")){return this.__toggle.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"toggle"))}},addClass:function(g,f,i,h){return f?d.effects.animateClass.apply(this,[{add:g},f,i,h]):this._addClass(g)},removeClass:function(g,f,i,h){return f?d.effects.animateClass.apply(this,[{remove:g},f,i,h]):this._removeClass(g)},toggleClass:function(g,f,i,h){return((typeof f!=="boolean")&&f)?d.effects.animateClass.apply(this,[{toggle:g},f,i,h]):this._toggleClass(g,f)},morph:function(f,h,g,j,i){return d.effects.animateClass.apply(this,[{add:h,remove:f},g,j,i])},switchClass:function(){return this.morph.apply(this,arguments)},cssUnit:function(f){var g=this.css(f),h=[];d.each(["em","px","%","pt"],function(j,k){if(g.indexOf(k)>0){h=[parseFloat(g),k]}});return h}});d.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(g,f){d.fx.step[f]=function(h){if(h.state==0){h.start=e(h.elem,f);h.end=b(h.end)}h.elem.style[f]="rgb("+[Math.max(Math.min(parseInt((h.pos*(h.end[0]-h.start[0]))+h.start[0],10),255),0),Math.max(Math.min(parseInt((h.pos*(h.end[1]-h.start[1]))+h.start[1],10),255),0),Math.max(Math.min(parseInt((h.pos*(h.end[2]-h.start[2]))+h.start[2],10),255),0)].join(",")+")"}});function b(g){var f;if(g&&g.constructor==Array&&g.length==3){return g}if(f=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(g)){return[parseInt(f[1],10),parseInt(f[2],10),parseInt(f[3],10)]}if(f=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(g)){return[parseFloat(f[1])*2.55,parseFloat(f[2])*2.55,parseFloat(f[3])*2.55]}if(f=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(g)){return[parseInt(f[1],16),parseInt(f[2],16),parseInt(f[3],16)]}if(f=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(g)){return[parseInt(f[1]+f[1],16),parseInt(f[2]+f[2],16),parseInt(f[3]+f[3],16)]}if(f=/rgba\(0, 0, 0, 0\)/.exec(g)){return a.transparent}return a[d.trim(g).toLowerCase()]}function e(h,f){var g;do{g=d.curCSS(h,f);if(g!=""&&g!="transparent"||d.nodeName(h,"body")){break}f="backgroundColor"}while(h=h.parentNode);return b(g)}var a={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]};d.easing.jswing=d.easing.swing;d.extend(d.easing,{def:"easeOutQuad",swing:function(g,h,f,j,i){return d.easing[d.easing.def](g,h,f,j,i)},easeInQuad:function(g,h,f,j,i){return j*(h/=i)*h+f},easeOutQuad:function(g,h,f,j,i){return -j*(h/=i)*(h-2)+f},easeInOutQuad:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h+f}return -j/2*((--h)*(h-2)-1)+f},easeInCubic:function(g,h,f,j,i){return j*(h/=i)*h*h+f},easeOutCubic:function(g,h,f,j,i){return j*((h=h/i-1)*h*h+1)+f},easeInOutCubic:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h+f}return j/2*((h-=2)*h*h+2)+f},easeInQuart:function(g,h,f,j,i){return j*(h/=i)*h*h*h+f},easeOutQuart:function(g,h,f,j,i){return -j*((h=h/i-1)*h*h*h-1)+f},easeInOutQuart:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h*h+f}return -j/2*((h-=2)*h*h*h-2)+f},easeInQuint:function(g,h,f,j,i){return j*(h/=i)*h*h*h*h+f},easeOutQuint:function(g,h,f,j,i){return j*((h=h/i-1)*h*h*h*h+1)+f},easeInOutQuint:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h*h*h+f}return j/2*((h-=2)*h*h*h*h+2)+f},easeInSine:function(g,h,f,j,i){return -j*Math.cos(h/i*(Math.PI/2))+j+f},easeOutSine:function(g,h,f,j,i){return j*Math.sin(h/i*(Math.PI/2))+f},easeInOutSine:function(g,h,f,j,i){return -j/2*(Math.cos(Math.PI*h/i)-1)+f},easeInExpo:function(g,h,f,j,i){return(h==0)?f:j*Math.pow(2,10*(h/i-1))+f},easeOutExpo:function(g,h,f,j,i){return(h==i)?f+j:j*(-Math.pow(2,-10*h/i)+1)+f},easeInOutExpo:function(g,h,f,j,i){if(h==0){return f}if(h==i){return f+j}if((h/=i/2)<1){return j/2*Math.pow(2,10*(h-1))+f}return j/2*(-Math.pow(2,-10*--h)+2)+f},easeInCirc:function(g,h,f,j,i){return -j*(Math.sqrt(1-(h/=i)*h)-1)+f},easeOutCirc:function(g,h,f,j,i){return j*Math.sqrt(1-(h=h/i-1)*h)+f},easeInOutCirc:function(g,h,f,j,i){if((h/=i/2)<1){return -j/2*(Math.sqrt(1-h*h)-1)+f}return j/2*(Math.sqrt(1-(h-=2)*h)+1)+f},easeInElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l)==1){return f+m}if(!k){k=l*0.3}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}return -(h*Math.pow(2,10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k))+f},easeOutElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l)==1){return f+m}if(!k){k=l*0.3}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}return h*Math.pow(2,-10*i)*Math.sin((i*l-j)*(2*Math.PI)/k)+m+f},easeInOutElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l/2)==2){return f+m}if(!k){k=l*(0.3*1.5)}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}if(i<1){return -0.5*(h*Math.pow(2,10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k))+f}return h*Math.pow(2,-10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k)*0.5+m+f},easeInBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}return k*(h/=j)*h*((i+1)*h-i)+f},easeOutBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}return k*((h=h/j-1)*h*((i+1)*h+i)+1)+f},easeInOutBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}if((h/=j/2)<1){return k/2*(h*h*(((i*=(1.525))+1)*h-i))+f}return k/2*((h-=2)*h*(((i*=(1.525))+1)*h+i)+2)+f},easeInBounce:function(g,h,f,j,i){return j-d.easing.easeOutBounce(g,i-h,0,j,i)+f},easeOutBounce:function(g,h,f,j,i){if((h/=i)<(1/2.75)){return j*(7.5625*h*h)+f}else{if(h<(2/2.75)){return j*(7.5625*(h-=(1.5/2.75))*h+0.75)+f}else{if(h<(2.5/2.75)){return j*(7.5625*(h-=(2.25/2.75))*h+0.9375)+f}else{return j*(7.5625*(h-=(2.625/2.75))*h+0.984375)+f}}}},easeInOutBounce:function(g,h,f,j,i){if(h<i/2){return d.easing.easeInBounce(g,h*2,0,j,i)*0.5+f}return d.easing.easeOutBounce(g,h*2-i,0,j,i)*0.5+j*0.5+f}})})(jQuery);;/*
 * jQuery UI Effects Highlight 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/Effects/Highlight
 *
 * Depends:
 *	effects.core.js
 */
(function(a){a.effects.highlight=function(b){return this.queue(function(){var e=a(this),d=["backgroundImage","backgroundColor","opacity"];var h=a.effects.setMode(e,b.options.mode||"show");var c=b.options.color||"#ffff99";var g=e.css("backgroundColor");a.effects.save(e,d);e.show();e.css({backgroundImage:"none",backgroundColor:c});var f={backgroundColor:g};if(h=="hide"){f.opacity=0}e.animate(f,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(h=="hide"){e.hide()}a.effects.restore(e,d);if(h=="show"&&a.browser.msie){this.style.removeAttribute("filter")}if(b.callback){b.callback.apply(this,arguments)}e.dequeue()}})})}})(jQuery);;/**
 * Cookie plugin
 *
 * Copyright (c) 2006 Klaus Hartl (stilbuero.de)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 *
 */
jQuery.cookie=function(name,value,options){if(typeof value!='undefined'){options=options||{};if(value===null){value='';options=$.extend({},options);options.expires=-1;}var expires='';if(options.expires&&(typeof options.expires=='number'||options.expires.toUTCString)){var date;if(typeof options.expires=='number'){date=new Date();date.setTime(date.getTime()+(options.expires*24*60*60*1000));}else{date=options.expires;}expires='; expires='+date.toUTCString();}var path=options.path?'; path='+(options.path):'';var domain=options.domain?'; domain='+(options.domain):'';var secure=options.secure?'; secure':'';document.cookie=[name,'=',encodeURIComponent(value),expires,path,domain,secure].join('');}else{var cookieValue=null;if(document.cookie&&document.cookie!=''){var cookies=document.cookie.split(';');for(var i=0;i<cookies.length;i++){var cookie=jQuery.trim(cookies[i]);if(cookie.substring(0,name.length+1)==(name+'=')){cookieValue=decodeURIComponent(cookie.substring(name.length+1));break;}}}return cookieValue;}};/* ------------------------------------------------------------------------
	Class: prettyPhoto
	Use: Lightbox clone for jQuery
	Author: Stephane Caron (http://www.no-margin-for-errors.com)
	Version: 2.4.3
------------------------------------------------------------------------- */

var $pp_pic_holder;var $ppt;(function(A){A.fn.prettyPhoto=function(W){var E=true;var K=false;var O=[];var D=0;var R;var S;var V;var Y;var F="image";var Z;var M=G();A(window).scroll(function(){M=G();C()});A(window).resize(function(){C();U()});A(document).keypress(function(c){switch(c.keyCode){case 37:if(D==1){return }N("previous");break;case 39:if(D==setCount){return }N("next");break;case 27:L();break}});W=jQuery.extend({animationSpeed:"normal",padding:40,opacity:0.8,showTitle:true,allowresize:true,counter_separator_label:"/",theme:"light_rounded",callback:function(){}},W);if(A.browser.msie&&A.browser.version==6){W.theme="light_square"}A(this).each(function(){var e=false;var d=false;var f=0;var c=0;O[O.length]=this;A(this).bind("click",function(){J(this);return false})});function J(c){Z=A(c);theRel=Z.attr("rel");galleryRegExp=/\[(?:.*)\]/;theGallery=galleryRegExp.exec(theRel);isSet=false;setCount=0;b();for(i=0;i<O.length;i++){if(A(O[i]).attr("rel").indexOf(theGallery)!=-1){setCount++;if(setCount>1){isSet=true}if(A(O[i]).attr("href")==Z.attr("href")){D=setCount;arrayPosition=i}}}X();$pp_pic_holder.find("p.currentTextHolder").text(D+W.counter_separator_label+setCount);C();A("#pp_full_res").hide();$pp_pic_holder.find(".pp_loaderIcon").show()}showimage=function(f,c,j,h,g,d,e){A(".pp_loaderIcon").hide();if(A.browser.opera){windowHeight=window.innerHeight;windowWidth=window.innerWidth}else{windowHeight=A(window).height();windowWidth=A(window).width()}$pp_pic_holder.find(".pp_content").animate({height:g},W.animationSpeed);projectedTop=M.scrollTop+((windowHeight/2)-(h/2));if(projectedTop<0){projectedTop=0+$pp_pic_holder.find(".ppt").height()}$pp_pic_holder.animate({top:projectedTop,left:((windowWidth/2)-(j/2)),width:j},W.animationSpeed,function(){$pp_pic_holder.width(j);$pp_pic_holder.find(".pp_hoverContainer,#fullResImage").height(c).width(f);$pp_pic_holder.find("#pp_full_res").fadeIn(W.animationSpeed,function(){A(this).find("object,embed").css("visibility","visible")});I();if(e){A("a.pp_expand,a.pp_contract").fadeIn(W.animationSpeed)}})};function I(){if(isSet&&F=="image"){$pp_pic_holder.find(".pp_hoverContainer").fadeIn(W.animationSpeed)}else{$pp_pic_holder.find(".pp_hoverContainer").hide()}$pp_pic_holder.find(".pp_details").fadeIn(W.animationSpeed);if(W.showTitle&&hasTitle){$ppt.css({top:$pp_pic_holder.offset().top-22,left:$pp_pic_holder.offset().left+(W.padding/2),display:"none"});$ppt.fadeIn(W.animationSpeed)}}function Q(){$pp_pic_holder.find(".pp_hoverContainer,.pp_details").fadeOut(W.animationSpeed);$pp_pic_holder.find("#pp_full_res object,#pp_full_res embed").css("visibility","hidden");$pp_pic_holder.find("#pp_full_res").fadeOut(W.animationSpeed,function(){A(".pp_loaderIcon").show();a()});$ppt.fadeOut(W.animationSpeed)}function N(c){if(c=="previous"){arrayPosition--;D--}else{arrayPosition++;D++}if(!E){E=true}Q();A("a.pp_expand,a.pp_contract").fadeOut(W.animationSpeed,function(){A(this).removeClass("pp_contract").addClass("pp_expand")})}function L(){$pp_pic_holder.find("object,embed").css("visibility","hidden");A("div.pp_pic_holder,div.ppt").fadeOut(W.animationSpeed);A("div.pp_overlay").fadeOut(W.animationSpeed,function(){A("div.pp_overlay,div.pp_pic_holder,div.ppt").remove();if(A.browser.msie&&A.browser.version==6){A("select").css("visibility","visible")}W.callback()});E=true}function H(){if(D==setCount){$pp_pic_holder.find("a.pp_next").css("visibility","hidden");$pp_pic_holder.find("a.pp_arrow_next").addClass("disabled").unbind("click")}else{$pp_pic_holder.find("a.pp_next").css("visibility","visible");$pp_pic_holder.find("a.pp_arrow_next.disabled").removeClass("disabled").bind("click",function(){N("next");return false})}if(D==1){$pp_pic_holder.find("a.pp_previous").css("visibility","hidden");$pp_pic_holder.find("a.pp_arrow_previous").addClass("disabled").unbind("click")}else{$pp_pic_holder.find("a.pp_previous").css("visibility","visible");$pp_pic_holder.find("a.pp_arrow_previous.disabled").removeClass("disabled").bind("click",function(){N("previous");return false})}$pp_pic_holder.find("p.currentTextHolder").text(D+W.counter_separator_label+setCount);Z=(isSet)?A(O[arrayPosition]):Z;b();if(Z.attr("title")){$pp_pic_holder.find(".pp_description").show().html(unescape(Z.attr("title")))}else{$pp_pic_holder.find(".pp_description").hide().text("")}if(Z.find("img").attr("alt")&&W.showTitle){hasTitle=true;$ppt.html(unescape(Z.find("img").attr("alt")))}else{hasTitle=false}}function P(d,c){hasBeenResized=false;T(d,c);imageWidth=d;imageHeight=c;windowHeight=A(window).height();windowWidth=A(window).width();if(((Y>windowWidth)||(V>windowHeight))&&E&&W.allowresize&&!K){hasBeenResized=true;notFitting=true;while(notFitting){if((Y>windowWidth)){imageWidth=(windowWidth-200);imageHeight=(c/d)*imageWidth}else{if((V>windowHeight)){imageHeight=(windowHeight-200);imageWidth=(d/c)*imageHeight}else{notFitting=false}}V=imageHeight;Y=imageWidth}T(imageWidth,imageHeight)}return{width:imageWidth,height:imageHeight,containerHeight:V,containerWidth:Y,contentHeight:R,contentWidth:S,resized:hasBeenResized}}function T(d,c){$pp_pic_holder.find(".pp_details").width(d).find(".pp_description").width(d-parseFloat($pp_pic_holder.find("a.pp_close").css("width")));R=c+$pp_pic_holder.find(".pp_details").height()+parseFloat($pp_pic_holder.find(".pp_details").css("marginTop"))+parseFloat($pp_pic_holder.find(".pp_details").css("marginBottom"));S=d;V=R+$pp_pic_holder.find(".ppt").height()+$pp_pic_holder.find(".pp_top").height()+$pp_pic_holder.find(".pp_bottom").height();Y=d+W.padding}function b(){if(Z.attr("href").match(/youtube\.com\/watch/i)){F="youtube"}else{if(Z.attr("href").indexOf(".mov")!=-1){F="quicktime"}else{if(Z.attr("href").indexOf(".swf")!=-1){F="flash"}else{if(Z.attr("href").indexOf("iframe")!=-1){F="iframe"}else{F="image"}}}}}function C(){if($pp_pic_holder){if($pp_pic_holder.size()==0){return }}else{return }if(A.browser.opera){windowHeight=window.innerHeight;windowWidth=window.innerWidth}else{windowHeight=A(window).height();windowWidth=A(window).width()}if(E){$pHeight=$pp_pic_holder.height();$pWidth=$pp_pic_holder.width();$tHeight=$ppt.height();projectedTop=(windowHeight/2)+M.scrollTop-($pHeight/2);if(projectedTop<0){projectedTop=0+$tHeight}$pp_pic_holder.css({top:projectedTop,left:(windowWidth/2)+M.scrollLeft-($pWidth/2)});$ppt.css({top:projectedTop-$tHeight,left:(windowWidth/2)+M.scrollLeft-($pWidth/2)+(W.padding/2)})}}function a(){H();if(F=="image"){imgPreloader=new Image();nextImage=new Image();if(isSet&&D>setCount){nextImage.src=A(O[arrayPosition+1]).attr("href")}prevImage=new Image();if(isSet&&O[arrayPosition-1]){prevImage.src=A(O[arrayPosition-1]).attr("href")}pp_typeMarkup='<img id="fullResImage" src="" />';$pp_pic_holder.find("#pp_full_res")[0].innerHTML=pp_typeMarkup;$pp_pic_holder.find(".pp_content").css("overflow","hidden");$pp_pic_holder.find("#fullResImage").attr("src",Z.attr("href"));imgPreloader.onload=function(){var c=P(imgPreloader.width,imgPreloader.height);imgPreloader.width=c.width;imgPreloader.height=c.height;showimage(imgPreloader.width,imgPreloader.height,c.containerWidth,c.containerHeight,c.contentHeight,c.contentWidth,c.resized)};imgPreloader.src=Z.attr("href")}else{movie_width=(parseFloat(B("width",Z.attr("href"))))?B("width",Z.attr("href")):"425";movie_height=(parseFloat(B("height",Z.attr("href"))))?B("height",Z.attr("href")):"344";if(movie_width.indexOf("%")!=-1||movie_height.indexOf("%")!=-1){movie_height=(A(window).height()*parseFloat(movie_height)/100)-100;movie_width=(A(window).width()*parseFloat(movie_width)/100)-100;parsentBased=true}else{movie_height=parseFloat(movie_height);movie_width=parseFloat(movie_width)}if(F=="quicktime"){movie_height+=13}correctSizes=P(movie_width,movie_height);if(F=="youtube"){pp_typeMarkup='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+correctSizes.width+'" height="'+correctSizes.height+'"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="http://www.youtube.com/v/'+B("v",Z.attr("href"))+'" /><embed src="http://www.youtube.com/v/'+B("v",Z.attr("href"))+'" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="'+correctSizes.width+'" height="'+correctSizes.height+'"></embed></object>'}else{if(F=="quicktime"){pp_typeMarkup='<object classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab" height="'+correctSizes.height+'" width="'+correctSizes.width+'"><param name="src" value="'+Z.attr("href")+'"><param name="autoplay" value="true"><param name="type" value="video/quicktime"><embed src="'+Z.attr("href")+'" height="'+correctSizes.height+'" width="'+correctSizes.width+'" autoplay="true" type="video/quicktime" pluginspage="http://www.apple.com/quicktime/download/"></embed></object>'}else{if(F=="flash"){flash_vars=Z.attr("href");flash_vars=flash_vars.substring(Z.attr("href").indexOf("flashvars")+10,Z.attr("href").length);filename=Z.attr("href");filename=filename.substring(0,filename.indexOf("?"));pp_typeMarkup='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+correctSizes.width+'" height="'+correctSizes.height+'"><param name="allowfullscreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="movie" value="'+filename+"?"+flash_vars+'" /><embed src="'+filename+"?"+flash_vars+'" type="application/x-shockwave-flash" allowfullscreen="true" allowscriptaccess="always" width="'+correctSizes.width+'" height="'+correctSizes.height+'"></embed></object>'}else{if(F=="iframe"){movie_url=Z.attr("href");movie_url=movie_url.substr(0,movie_url.indexOf("iframe")-1);pp_typeMarkup='<iframe src ="'+movie_url+'" width="'+(correctSizes.width-10)+'" height="'+(correctSizes.height-10)+'" frameborder="no"></iframe>'}}}}$pp_pic_holder.find("#pp_full_res")[0].innerHTML=pp_typeMarkup;showimage(correctSizes.width,correctSizes.height,correctSizes.containerWidth,correctSizes.containerHeight,correctSizes.contentHeight,correctSizes.contentWidth,correctSizes.resized)}}function G(){if(self.pageYOffset){scrollTop=self.pageYOffset;scrollLeft=self.pageXOffset}else{if(document.documentElement&&document.documentElement.scrollTop){scrollTop=document.documentElement.scrollTop;scrollLeft=document.documentElement.scrollLeft}else{if(document.body){scrollTop=document.body.scrollTop;scrollLeft=document.body.scrollLeft}}}return{scrollTop:scrollTop,scrollLeft:scrollLeft}}function U(){A("div.pp_overlay").css({height:A(document).height(),width:A(window).width()})}function X(){toInject="";toInject+="<div class='pp_overlay'></div>";if(F=="image"){pp_typeMarkup='<img id="fullResImage" src="" />'}else{pp_typeMarkup=""}toInject+='<div class="pp_pic_holder"><div class="pp_top"><div class="pp_left"></div><div class="pp_middle"></div><div class="pp_right"></div></div><div class="pp_content"><a href="#" class="pp_expand" title="Expand the image">Expand</a><div class="pp_loaderIcon"></div><div class="pp_hoverContainer"><a class="pp_next" href="#">next</a><a class="pp_previous" href="#">previous</a></div><div id="pp_full_res">'+pp_typeMarkup+'</div><div class="pp_details clearfix"><a class="pp_close" href="#">Close</a><p class="pp_description"></p><div class="pp_nav"><a href="#" class="pp_arrow_previous">Previous</a><p class="currentTextHolder">0'+W.counter_separator_label+'0</p><a href="#" class="pp_arrow_next">Next</a></div></div></div><div class="pp_bottom"><div class="pp_left"></div><div class="pp_middle"></div><div class="pp_right"></div></div></div>';toInject+='<div class="ppt"></div>';A("body").append(toInject);$pp_pic_holder=A(".pp_pic_holder");$ppt=A(".ppt");A("div.pp_overlay").css("height",A(document).height()).bind("click",function(){L()});$pp_pic_holder.css({opacity:0}).addClass(W.theme);A("a.pp_close").bind("click",function(){L();return false});A("a.pp_expand").bind("click",function(){$this=A(this);if($this.hasClass("pp_expand")){$this.removeClass("pp_expand").addClass("pp_contract");E=false}else{$this.removeClass("pp_contract").addClass("pp_expand");E=true}Q();$pp_pic_holder.find(".pp_hoverContainer, #pp_full_res, .pp_details").fadeOut(W.animationSpeed,function(){a()});return false});$pp_pic_holder.find(".pp_previous, .pp_arrow_previous").bind("click",function(){N("previous");return false});$pp_pic_holder.find(".pp_next, .pp_arrow_next").bind("click",function(){N("next");return false});$pp_pic_holder.find(".pp_hoverContainer").css({"margin-left":W.padding/2});if(!isSet){$pp_pic_holder.find(".pp_hoverContainer,.pp_nav").hide()}if(A.browser.msie&&A.browser.version==6){A("body").addClass("ie6");A("select").css("visibility","hidden")}A("div.pp_overlay").css("opacity",0).fadeTo(W.animationSpeed,W.opacity,function(){$pp_pic_holder.css("opacity",0).fadeIn(W.animationSpeed,function(){$pp_pic_holder.attr("style","left:"+$pp_pic_holder.css("left")+";top:"+$pp_pic_holder.css("top")+";");a()})})}};function B(E,D){E=E.replace(/[\[]/,"\\[").replace(/[\]]/,"\\]");var C="[\\?&]"+E+"=([^&#]*)";var G=new RegExp(C);var F=G.exec(D);if(F==null){return""}else{return F[1]}}})(jQuery);
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var L=function(){return L.replace.apply(null,arguments)};var W=L.DOM={ready:(function(){var b=false,d={loaded:1,complete:1};var a=[],c=function(){if(b){return}b=true;for(var e;e=a.shift();e()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",c,false);window.addEventListener("pageshow",c,false)}if(!window.opera&&document.readyState){(function(){d[document.readyState]?c():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");c()}catch(f){setTimeout(arguments.callee,1)}})()}P(window,"load",c);return function(e){if(!arguments.length){c()}else{b?e():a.push(e)}}})()};var M=L.CSS={Size:function(b,a){this.value=parseFloat(b);this.unit=String(b).match(/[a-z%]*$/)[0]||"px";this.convert=function(c){return c/a*this.value};this.convertFrom=function(c){return c/this.value*a};this.toString=function(){return this.value+this.unit}},color:I(function(b){var a={};a.color=b.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(d,c,e){a.opacity=parseFloat(e);return"rgb("+c+")"});return a}),fontStretch:I(function(a){if(typeof a=="number"){return a}if(/%$/.test(a)){return parseFloat(a)/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}[a]||1}),getStyle:function(b){var a=document.defaultView;if(a&&a.getComputedStyle){return new A(a.getComputedStyle(b,null))}if(b.currentStyle){return new A(b.currentStyle)}return new A(b.style)},gradient:I(function(e){var f={id:e,type:e.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},b=e.substr(e.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var d=0,a=b.length,c;d<a;++d){c=b[d].split("=",2).reverse();f.stops.push([c[1]||d/(a-1),c[0]])}return f}),quotedList:I(function(d){var c=[],b=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,a;while(a=b.exec(d)){c.push(a[3]||a[1])}return c}),recognizesMedia:I(function(g){var d=document.createElement("style"),c,b,a;d.type="text/css";d.media=g;try{d.appendChild(document.createTextNode("/**/"))}catch(f){}b=F("head")[0];b.insertBefore(d,b.firstChild);c=(d.sheet||d.styleSheet);a=c&&!c.disabled;b.removeChild(d);return a}),supports:function(c,b){var a=document.createElement("span").style;if(a[c]===undefined){return false}a[c]=b;return a[c]===b},textAlign:function(d,c,a,b){if(c.get("textAlign")=="right"){if(a>0){d=" "+d}}else{if(a<b-1){d+=" "}}return d},textDecoration:function(f,e){if(!e){e=this.getStyle(f)}var b={underline:null,overline:null,"line-through":null};for(var a=f;a.parentNode&&a.parentNode.nodeType==1;){var d=true;for(var c in b){if(!J(b,c)||b[c]){continue}if(e.get("textDecoration").indexOf(c)!=-1){b[c]=e.get("color")}d=false}if(d){break}e=this.getStyle(a=a.parentNode)}return b},textShadow:I(function(e){if(e=="none"){return null}var d=[],f={},a,b=0;var c=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(a=c.exec(e)){if(a[0]==","){d.push(f);f={};b=0}else{if(a[1]){f.color=a[1]}else{f[["offX","offY","blur"][b++]]=a[2]}}}d.push(f);return d}),textTransform:function(b,a){return b[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[a.get("textTransform")]||"toString"]()},whiteSpace:(function(){var a={inline:1,"inline-block":1,"run-in":1};return function(d,b,c){if(a[b.get("display")]){return d}if(!c.previousSibling){d=d.replace(/^\s+/,"")}if(!c.nextSibling){d=d.replace(/\s+$/,"")}return d}})()};M.ready=(function(){var a=!M.recognizesMedia("all"),d=false;var c=[],g=function(){a=true;for(var j;j=c.shift();j()){}};var h=F("link"),i=F("style");function b(j){return j.disabled||f(j.sheet,j.media||"screen")}function f(m,p){if(!M.recognizesMedia(p||"all")){return true}if(!m||m.disabled){return false}try{var q=m.cssRules,o;if(q){search:for(var k=0,j=q.length;o=q[k],k<j;++k){switch(o.type){case 2:break;case 3:if(!f(o.styleSheet,o.media.mediaText)){return false}break;default:break search}}}}catch(n){}return true}function e(){if(document.createStyleSheet){return true}var k,j;for(j=0;k=h[j];++j){if(k.rel.toLowerCase()=="stylesheet"&&!b(k)){return false}}for(j=0;k=i[j];++j){if(!b(k)){return false}}return true}W.ready(function(){if(!d){d=M.getStyle(document.body).isUsable()}if(a||(d&&e())){g()}else{setTimeout(arguments.callee,10)}});return function(j){if(a){j()}else{c.push(j)}}})();function R(b){var a=this.face=b.face;this.glyphs=b.glyphs;this.w=b.w;this.baseSize=parseInt(a["units-per-em"],10);this.family=a["font-family"].toLowerCase();this.weight=a["font-weight"];this.style=a["font-style"]||"normal";this.viewBox=(function(){var d=a.bbox.split(/\s+/);var c={minX:parseInt(d[0],10),minY:parseInt(d[1],10),maxX:parseInt(d[2],10),maxY:parseInt(d[3],10)};c.width=c.maxX-c.minX;c.height=c.maxY-c.minY;c.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return c})();this.ascent=-parseInt(a.ascent,10);this.descent=-parseInt(a.descent,10);this.height=-this.ascent+this.descent}function E(){var b={},a={oblique:"italic",italic:"oblique"};this.add=function(c){(b[c.style]||(b[c.style]={}))[c.weight]=c};this.get=function(g,h){var f=b[g]||b[a[g]]||b.normal||b.italic||b.oblique;if(!f){return null}h={normal:400,bold:700}[h]||parseInt(h,10);if(f[h]){return f[h]}var d={1:1,99:0}[h%100],j=[],e,c;if(d===undefined){d=h>400}if(h==500){h=400}for(var i in f){if(!J(f,i)){continue}i=parseInt(i,10);if(!e||i<e){e=i}if(!c||i>c){c=i}j.push(i)}if(h<e){h=e}if(h>c){h=c}j.sort(function(l,k){return(d?(l>h&&k>h)?l<k:l>k:(l<h&&k<h)?l>k:l<k)?-1:1});return f[j[0]]}}function Q(){function c(e,f){if(e.contains){return e.contains(f)}return e.compareDocumentPosition(f)&16}function a(g){var f=g.relatedTarget;if(!f||c(this,f)){return}b(this)}function d(f){b(this)}function b(e){setTimeout(function(){L.replace(e,D.get(e).options,true)},10)}this.attach=function(e){if(e.onmouseenter===undefined){P(e,"mouseover",a);P(e,"mouseout",a)}else{P(e,"mouseenter",d);P(e,"mouseleave",d)}}}function T(){var b=[],c={};function a(g){var d=[],f;for(var e=0;f=g[e];++e){d[e]=b[c[f]]}return d}this.add=function(e,d){c[e]=b.push(d)-1};this.repeat=function(){var d=arguments.length?a(arguments):b,e;for(var f=0;e=d[f++];){L.replace(e[0],e[1],true)}}}function Z(){var c={},a=0;function b(d){return d.cufid||(d.cufid=++a)}this.get=function(d){var e=b(d);return c[e]||(c[e]={})}}function A(a){var c={},b={};this.extend=function(d){for(var e in d){if(J(d,e)){c[e]=d[e]}}return this};this.get=function(d){return c[d]!=undefined?c[d]:a[d]};this.getSize=function(e,d){return b[e]||(b[e]=new M.Size(this.get(e),d))};this.isUsable=function(){return !!a}}function P(b,a,c){if(b.addEventListener){b.addEventListener(a,c,false)}else{if(b.attachEvent){b.attachEvent("on"+a,function(){return c.call(b,window.event)})}}}function U(b,a){var c=D.get(b);if(c.options){return b}if(a.hover&&a.hoverables[b.nodeName.toLowerCase()]){B.attach(b)}c.options=a;return b}function I(a){var b={};return function(c){if(!J(b,c)){b[c]=a.apply(null,arguments)}return b[c]}}function C(f,e){if(!e){e=M.getStyle(f)}var b=M.quotedList(e.get("fontFamily").toLowerCase()),d;for(var c=0,a=b.length;c<a;++c){d=b[c];if(H[d]){return H[d].get(e.get("fontStyle"),e.get("fontWeight"))}}return null}function F(a){return document.getElementsByTagName(a)}function J(b,a){return b.hasOwnProperty(a)}function G(){var a={},c,e;for(var d=0,b=arguments.length;c=arguments[d],d<b;++d){for(e in c){if(J(c,e)){a[e]=c[e]}}}return a}function N(d,n,b,o,e,c){var m=o.separate;if(m=="none"){return Y[o.engine].apply(null,arguments)}var k=document.createDocumentFragment(),g;var h=n.split(O[m]),a=(m=="words");if(a&&S){if(/^\s/.test(n)){h.unshift("")}if(/\s$/.test(n)){h.push("")}}for(var j=0,f=h.length;j<f;++j){g=Y[o.engine](d,a?M.textAlign(h[j],b,j,f):h[j],b,o,e,c,j<f-1);if(g){k.appendChild(g)}}return k}function K(b,j){var c,a,d,g,f,i;for(d=U(b,j).firstChild;d;d=f){g=d.nodeType;f=d.nextSibling;i=false;if(g==1){if(!d.firstChild){continue}if(!/cufon/.test(d.className)){arguments.callee(d,j);continue}else{i=true}}else{if(g!=3){continue}}if(!a){a=M.getStyle(b).extend(j)}if(!c){c=C(b,a)}if(!c){continue}if(i){Y[j.engine](c,null,a,j,d,b);continue}var h=M.whiteSpace(d.data,a,d);if(h===""){continue}var e=N(c,h,a,j,d,b);if(e){d.parentNode.replaceChild(e,d)}else{d.parentNode.removeChild(d)}}}var S=" ".split(/\s+/).length==0;var D=new Z();var B=new Q();var X=new T();var Y={},H={},V={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(a){return jQuery(a)})||(window.dojo&&dojo.query)||(window.$$&&function(a){return $$(a)})||(window.$&&function(a){return $(a)})||(document.querySelectorAll&&function(a){return document.querySelectorAll(a)})||F),separate:"words",textShadow:"none"};var O={words:/[^\S\u00a0]+/,characters:""};L.now=function(){W.ready();return L};L.refresh=function(){X.repeat.apply(X,arguments);return L};L.registerEngine=function(b,a){if(!a){return L}Y[b]=a;return L.set("engine",b)};L.registerFont=function(c){var a=new R(c),b=a.family;if(!H[b]){H[b]=new E()}H[b].add(a);return L.set("fontFamily",'"'+b+'"')};L.replace=function(c,b,a){b=G(V,b);if(!b.engine){return L}if(typeof b.textShadow=="string"){b.textShadow=M.textShadow(b.textShadow)}if(typeof b.color=="string"&&/^-/.test(b.color)){b.textGradient=M.gradient(b.color)}if(!a){X.add(c,arguments)}if(c.nodeType||typeof c=="string"){c=[c]}M.ready(function(){for(var e=0,d=c.length;e<d;++e){var f=c[e];if(typeof f=="string"){L.replace(b.selector(f),b,true)}else{K(f,b)}}});return L};L.set=function(a,b){V[a]=b;return L};return L})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return}B=null;var A=Cufon.CSS.supports("display","inline-block");var E=!A&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var F=document.createElement("style");F.type="text/css";F.appendChild(document.createTextNode((".cufon-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(E?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;}"+(A?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(AF,Z,w,V,d,AG){var I=(Z===null);if(I){Z=d.alt}var b=AF.viewBox;var K=w.getSize("fontSize",AF.baseSize);var u=w.get("letterSpacing");u=(u=="normal")?0:K.convertFrom(parseInt(u,10));var c=0,v=0,t=0,X=0;var a=V.textShadow,r=[];if(a){for(var AE=a.length;AE--;){var h=a[AE];var q=K.convertFrom(parseFloat(h.offX));var o=K.convertFrom(parseFloat(h.offY));r[AE]=[q,o];if(o<c){c=o}if(q>v){v=q}if(o>t){t=o}if(q<X){X=q}}}var AJ=Cufon.CSS.textTransform(Z,w).split(""),T;var J=AF.glyphs,W,M,AA;var G=0,P,f=[];for(var AE=0,AC=0,z=AJ.length;AE<z;++AE){W=J[T=AJ[AE]]||AF.missingGlyph;if(!W){continue}if(M){G-=AA=M[T]||0;f[AC-1]-=AA}G+=P=f[AC++]=~~(W.w||AF.w)+u;M=W.k}if(P===undefined){return null}v+=b.width-P;X+=b.minX;var U,L;if(I){U=d;L=d.firstChild}else{U=document.createElement("span");U.className="cufon cufon-canvas";U.alt=Z;L=document.createElement("canvas");U.appendChild(L);if(V.printable){var AB=document.createElement("span");AB.className="cufon-alt";AB.appendChild(document.createTextNode(Z));U.appendChild(AB)}}var AK=U.style;var n=L.style;var H=K.convert(b.height);var AI=Math.ceil(H);var s=AI/H;var m=s*Cufon.CSS.fontStretch(w.get("fontStretch"));var p=G*m;L.width=Math.ceil(K.convert(p+v-X));L.height=Math.ceil(K.convert(b.height-c+t));c+=b.minY;n.top=Math.round(K.convert(c-AF.ascent))+"px";n.left=Math.round(K.convert(X))+"px";var S=Math.ceil(K.convert(p))+"px";if(A){AK.width=S;AK.height=K.convert(AF.height)+"px"}else{AK.paddingLeft=S;AK.paddingBottom=(K.convert(AF.height)-1)+"px"}var AH=L.getContext("2d"),e=H/b.height;AH.scale(e,e*s);AH.translate(-X,-c);AH.lineWidth=AF.face["underline-thickness"];AH.save();function N(i,g){AH.strokeStyle=g;AH.beginPath();AH.moveTo(0,i);AH.lineTo(G,i);AH.stroke()}var O=V.enableTextDecoration?Cufon.CSS.textDecoration(AG,w):{};if(O.underline){N(-AF.face["underline-position"],O.underline)}if(O.overline){N(AF.ascent,O.overline)}function AD(){AH.scale(m,1);for(var x=0,k=0,g=AJ.length;x<g;++x){var y=J[AJ[x]]||AF.missingGlyph;if(!y){continue}if(y.d){AH.beginPath();if(y.code){C(y.code,AH)}else{y.code=D("m"+y.d,AH)}AH.fill()}AH.translate(f[k++],0)}AH.restore()}if(a){for(var AE=a.length;AE--;){var h=a[AE];AH.save();AH.fillStyle=h.color;AH.translate.apply(AH,r[AE]);AD()}}var R=V.textGradient;if(R){var Y=R.stops,Q=AH.createLinearGradient(0,b.minY,0,b.maxY);for(var AE=0,z=Y.length;AE<z;++AE){Q.addColorStop.apply(Q,Y[AE])}AH.fillStyle=Q}else{AH.fillStyle=w.get("color")}AD();if(O["line-through"]){N(-AF.descent,O["line-through"])}return U}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml")}var B=document.createElement("cvml:shape");B.style.behavior="url(#default#VML)";if(!B.coordsize){return}B=null;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:middle;}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>').replace(/;/g,"!important;"));function C(F,G){return A(F,/(?:em|ex|%)$/i.test(G)?"1em":G)}function A(I,J){if(/px$/i.test(J)){return parseFloat(J)}var H=I.style.left,G=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;I.style.left=J;var F=I.style.pixelLeft;I.style.left=H;I.runtimeStyle.left=G;return F}var E={};function D(K){var L=K.id;if(!E[L]){var I=K.stops,J=document.createElement("cvml:fill"),F=[];J.type="gradient";J.angle=180;J.focus="0";J.method="sigma";J.color=I[0][1];for(var H=1,G=I.length-1;H<G;++H){F.push(I[H][0]*100+"% "+I[H][1])}J.colors=F.join(",");J.color2=I[G][1];E[L]=J}return E[L]}return function(AF,d,z,a,h,AG,x){var I=(d===null);if(I){d=h.alt}var f=AF.viewBox;var K=z.computedFontSize||(z.computedFontSize=new Cufon.CSS.Size(C(AG,z.get("fontSize"))+"px",AF.baseSize));var w=z.computedLSpacing;if(w==undefined){w=z.get("letterSpacing");z.computedLSpacing=w=(w=="normal")?0:~~K.convertFrom(A(AG,w))}var W,L;if(I){W=h;L=h.firstChild}else{W=document.createElement("span");W.className="cufon cufon-vml";W.alt=d;L=document.createElement("span");L.className="cufon-vml-canvas";W.appendChild(L);if(a.printable){var AC=document.createElement("span");AC.className="cufon-alt";AC.appendChild(document.createTextNode(d));W.appendChild(AC)}if(!x){W.appendChild(document.createElement("cvml:shape"))}}var AL=W.style;var r=L.style;var G=K.convert(f.height),AI=Math.ceil(G);var v=AI/G;var q=v*Cufon.CSS.fontStretch(z.get("fontStretch"));var u=f.minX,t=f.minY;r.height=AI;r.top=Math.round(K.convert(t-AF.ascent));r.left=Math.round(K.convert(u));AL.height=K.convert(AF.height)+"px";var P=a.enableTextDecoration?Cufon.CSS.textDecoration(AG,z):{};var c=z.get("color");var AK=Cufon.CSS.textTransform(d,z).split(""),V;var J=AF.glyphs,b,M,AB;var F=0,m=[],s=0,R;var T,e=a.textShadow;for(var AE=0,AD=0,AA=AK.length;AE<AA;++AE){b=J[V=AK[AE]]||AF.missingGlyph;if(!b){continue}if(M){F-=AB=M[V]||0;m[AD-1]-=AB}F+=R=m[AD++]=~~(b.w||AF.w)+w;M=b.k}if(R===undefined){return null}var U=-u+F+(f.width-R);var AJ=K.convert(U*q),y=Math.round(AJ);var p=U+","+f.height,H;var g="r"+p+"ns";var S=a.textGradient&&D(a.textGradient);for(AE=0,AD=0;AE<AA;++AE){b=J[AK[AE]]||AF.missingGlyph;if(!b){continue}if(I){T=L.childNodes[AD];while(T.firstChild){T.removeChild(T.firstChild)}}else{T=document.createElement("cvml:shape");L.appendChild(T)}T.stroked="f";T.coordsize=p;T.coordorigin=H=(u-s)+","+t;T.path=(b.d?"m"+b.d+"xe":"")+"m"+H+g;T.fillcolor=c;if(S){T.appendChild(S.cloneNode(false))}var AH=T.style;AH.width=y;AH.height=AI;if(e){var O=e[0],N=e[1];var Z=Cufon.CSS.color(O.color),X;var o=document.createElement("cvml:shadow");o.on="t";o.color=Z.color;o.offset=O.offX+","+O.offY;if(N){X=Cufon.CSS.color(N.color);o.type="double";o.color2=X.color;o.offset2=N.offX+","+N.offY}o.opacity=Z.opacity||(X&&X.opacity)||1;T.appendChild(o)}s+=m[AD++]}var n=T.nextSibling,Q,Y;if(a.hover){if(!n){n=document.createElement("cvml:rect");n.stroked="f";n.className="cufon-vml-cover";Q=document.createElement("cvml:fill");Q.opacity=0;n.appendChild(Q);L.appendChild(n)}Y=n.style;Y.width=y;Y.height=AI}else{if(n){L.removeChild(n)}}AL.width=Math.max(Math.ceil(K.convert(F*q)),0);return W}})());Cufon.registerFont({"w":200,"face":{"font-family":"BD Cartoon Shout","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"7","cap-height":"16","bbox":"-14 -386 366 77","underline-thickness":"26.3672","underline-position":"-51.3281","unicode-range":"U+0020-U+F005"},"glyphs":{" ":{"w":194},"\u00a0":{"w":194},"!":{"d":"131,-337v-18,72,-37,124,-45,215v-7,20,-35,7,-56,24v-7,-68,5,-159,13,-228v1,-9,4,-13,5,-13v27,2,60,-4,83,2xm117,-54v-5,44,-58,62,-104,47v-35,-37,12,-78,59,-75v33,2,37,8,45,28","w":139,"k":{"%":12,"$":15,"#":11}},"\"":{"d":"1,-318v0,-3,28,-9,49,-4v-2,26,-5,58,-1,82v-3,5,-25,5,-41,7v-4,0,-6,-28,-7,-85xm76,-319v0,-3,28,-8,48,-3r0,82v0,3,-14,5,-42,7v-4,-9,-6,-38,-6,-86","w":139,"k":{"&":33,"$":15,"#":72,"!":33}},"#":{"d":"139,-229v9,-4,32,-5,41,0v1,14,-2,31,1,43v14,0,54,-16,49,15v-1,9,4,22,-7,21v-13,2,-34,-2,-42,5v1,16,-2,36,1,50r50,-5v1,0,3,12,5,34v-5,15,-36,4,-55,9v-1,13,2,48,-4,51v-14,-2,-28,9,-34,0v-1,-15,4,-36,-1,-48v-17,2,-38,0,-52,5v0,12,2,44,-4,45v-6,3,-21,1,-32,4v-6,-8,4,-32,-1,-50v-29,0,-52,15,-48,-32v9,-8,36,1,47,-6v-1,-17,2,-40,-2,-53v-11,3,-35,4,-47,0v2,-13,-8,-25,-2,-35r47,-1r-1,-49v6,-8,24,-3,36,-5v12,6,0,59,7,52v0,-2,17,-3,48,-4v5,-11,0,-30,0,-46xm143,-144v-14,-4,-39,1,-54,3v2,15,3,37,1,52r53,-3v2,-16,0,-35,0,-52","w":249,"k":{"%":28,"$":9,"\"":61,"!":10}},"$":{"d":"94,22v-33,-9,-74,-6,-90,-25v5,-22,6,-47,12,-67v14,6,48,34,79,21v-2,-17,1,-39,0,-59v-44,-16,-92,-32,-88,-99v3,-46,54,-73,91,-88v0,-8,-5,-28,4,-30v18,1,39,-7,32,24v33,6,75,2,88,20r-26,74v-18,-6,-38,-10,-64,-14v-1,16,-3,43,1,58v52,7,102,23,96,88v-5,51,-54,77,-102,90v-1,7,2,16,-2,20v-13,-2,-36,8,-31,-13xm97,-217v-23,2,-42,22,-16,36v3,1,9,6,15,6xm131,-101v-2,14,-4,37,-2,50v18,-8,35,-4,36,-32v-9,-11,-18,-14,-34,-18","w":241,"k":{"%":10,"!":9}},"%":{"d":"22,-207v-53,-36,-3,-133,70,-117v32,7,28,8,44,35v11,62,-61,118,-114,82xm194,-323v13,3,18,11,40,23v-58,106,-123,215,-199,307v-3,-1,-18,-10,-34,-30v73,-85,131,-201,193,-300xm55,-268v-7,4,-7,35,13,28v9,1,19,-12,19,-27v0,-10,-7,-14,-19,-13v-9,4,-13,8,-13,12xm131,-31v-16,-54,20,-119,71,-119v35,0,53,28,53,74v0,71,-101,121,-124,45xm196,-93v-22,-3,-28,34,-17,44v11,12,30,-9,29,-28v0,-9,-4,-15,-12,-16","w":272,"k":{"%":23,"$":15,"\"":23,"!":11}},"&":{"d":"198,-286v39,46,-13,102,-42,118v14,11,32,29,47,37v19,-22,17,-30,27,-55v15,11,31,13,55,28v-9,22,-19,43,-31,61v9,11,40,18,53,30v-11,17,-27,51,-45,62v-21,-9,-38,-22,-56,-34v-30,36,-125,53,-172,21v-14,-10,-33,-33,-34,-66v-1,-46,34,-73,60,-92v-52,-68,-11,-168,87,-143v22,6,38,18,51,33xm120,-263v-36,-1,-21,43,-5,50v10,2,41,-20,29,-40v-7,-7,-15,-10,-24,-10xm97,-128v-34,12,-33,60,4,62v32,-5,27,-3,46,-14v-3,-6,-21,-15,-50,-48","w":316,"k":{"%":23,"$":10,"\"":90}},"'":{"d":"33,-319v15,-4,42,-4,59,-3v0,4,-8,20,-27,45v-10,14,-15,24,-30,31v-11,-2,-24,-2,-34,-6v4,-16,25,-37,32,-67","w":98},"(":{"d":"38,30v-64,-84,-32,-277,3,-352v8,-8,28,0,38,2v-22,116,-28,224,-7,344v0,4,-12,6,-34,6","w":114},")":{"d":"17,28v0,-83,28,-85,19,-199r-10,-128v-2,-16,-12,-26,17,-26v37,0,32,34,41,68v23,87,4,227,-36,289v-7,-5,-19,-4,-31,-4","w":105},"*":{"d":"101,-164v8,11,33,3,24,25v-7,18,-14,25,-31,18v1,10,11,24,-8,23v-11,3,-20,8,-28,1v-2,-11,-1,-23,-6,-21v-8,9,-11,13,-16,13v-8,-12,-16,-18,-22,-27v6,-8,17,-11,20,-21v-8,-7,-22,-7,-25,-18v8,-5,11,-20,20,-26v5,3,11,11,16,9v0,-8,-6,-27,7,-22v13,1,36,-8,28,15v9,-2,11,-18,17,-14v7,5,15,14,23,25","w":140},"+":{"d":"64,-112v4,-8,-4,-5,-9,-5v-13,1,-41,3,-53,-1v2,-12,0,-29,-2,-40v16,-10,45,-2,71,-5v8,-5,4,-60,15,-68v16,0,38,-8,51,-4r-9,66v15,2,48,-13,66,-5r3,38v-11,7,-54,10,-75,13v-10,11,-13,48,-20,69v-4,3,-36,13,-50,6","w":210},",":{"d":"1,52r47,-107v40,6,68,-10,69,0v-19,42,-38,86,-70,116v-15,-4,-34,-3,-46,-9","w":133},"-":{"d":"166,-197v2,5,9,32,3,51r-81,11v-28,-1,-63,6,-87,1v0,-16,2,-34,-2,-47v49,-6,85,-3,144,-13v2,-2,10,-2,23,-3","w":185},"\u00ad":{"d":"166,-197v2,5,9,32,3,51r-81,11v-28,-1,-63,6,-87,1v0,-16,2,-34,-2,-47v49,-6,85,-3,144,-13v2,-2,10,-2,23,-3","w":185},".":{"d":"107,-60v12,39,-48,79,-93,51v-33,-36,6,-88,59,-81v14,1,33,16,34,30","w":116},"\/":{"d":"179,-316v8,-20,21,4,33,5v21,3,5,14,4,24v-47,104,-112,214,-184,303v-13,-10,-23,-18,-31,-22v13,-29,50,-74,67,-104v21,-37,37,-62,47,-80v18,-32,43,-75,64,-126","w":246},"0":{"d":"101,-302v149,-28,166,245,56,290v-23,10,-30,12,-53,12v-125,0,-128,-217,-52,-277v8,-10,35,-25,49,-25xm160,-163v0,-68,-62,-89,-81,-26v-13,44,-10,110,40,112v33,-11,41,-37,41,-86","w":240},"1":{"d":"9,-238v25,-11,34,-26,46,-55v32,1,54,-7,74,-14v-7,95,-20,200,-5,298v-29,1,-63,11,-89,7r9,-209v-8,11,-30,22,-44,16v5,-15,-9,-42,9,-43","w":147},"2":{"d":"0,-251v46,-72,232,-65,214,50v-7,43,-1,29,-30,67v-24,32,-63,50,-102,66v41,-4,87,-3,125,-11r4,2v-3,25,0,56,-6,77r-93,-2r-99,2v-5,-13,-3,-52,-12,-73v43,-31,134,-54,138,-116v2,-22,-12,-30,-34,-30v-44,1,-50,8,-84,28v-6,-22,-6,-39,-21,-60","w":230},"3":{"d":"157,-9v-53,19,-135,1,-157,-30v9,-14,32,-37,41,-54v22,18,98,46,102,-8v2,-21,-53,-22,-77,-14v-8,-11,-4,-47,-15,-64v29,-12,55,-15,77,-40v-31,5,-66,5,-103,5v-5,-17,-6,-46,-5,-71v65,0,129,-1,180,-15v6,16,7,45,7,75v-17,26,-66,43,-87,58v62,-11,100,16,100,79v0,32,-39,70,-63,79","w":239},"4":{"d":"106,-290v34,2,62,-9,82,-8r-14,136v1,14,-4,34,1,45v14,2,38,-10,44,1v0,16,-1,33,1,47v-12,5,-32,3,-46,7v0,20,9,46,5,62v-28,-2,-63,3,-88,-2v0,-20,5,-43,3,-61r-88,0v-7,-12,-2,-39,-6,-57v34,-35,78,-105,98,-161v2,-6,5,-9,8,-9xm112,-212v-14,35,-27,60,-52,93v8,3,37,6,42,-2v1,-34,7,-57,10,-91","w":234},"5":{"d":"51,-78v17,19,101,19,92,-27v-6,-33,-72,-29,-101,-17v10,-53,23,-97,21,-160v0,-6,7,-7,13,-7v69,0,77,-3,132,-11v10,4,-4,21,-2,26v-3,14,-2,33,-8,45r-84,5v3,18,-3,37,-4,41v122,-43,151,126,60,168v-51,23,-145,16,-170,-26v19,-29,18,-30,28,-55v13,8,21,20,23,18","w":237},"6":{"d":"7,-186v12,-65,60,-132,154,-111v8,3,26,8,32,13v-3,8,-22,29,-26,53v-4,21,-25,-8,-50,-1v-17,5,-48,31,-47,53v61,-60,175,9,139,107v-9,58,-102,96,-158,55v-3,0,-11,-9,-26,-24v-29,-31,-26,-107,-18,-145xm120,-137v-28,0,-38,14,-38,41v0,20,15,28,38,28v11,0,31,-25,28,-42v2,-13,-16,-27,-28,-27","w":225},"7":{"d":"212,-224v-59,56,-75,109,-84,208v0,4,-4,6,-8,4v-40,4,-38,2,-69,12v-9,-107,40,-168,94,-230r-143,9v-2,-28,8,-27,9,-77r208,3","w":232},"8":{"d":"193,-212v-6,13,-24,29,-37,40v45,12,80,93,34,140v-63,65,-241,20,-179,-88v12,-22,39,-38,46,-47v-26,-26,-45,-30,-39,-78v14,-104,222,-72,175,33xm99,-209v20,19,38,-6,38,-29v-7,-25,-53,-18,-53,9v0,7,5,14,15,20xm72,-94v2,37,65,31,69,3v3,-22,-10,-23,-38,-46v-21,14,-31,28,-31,43","w":227},"9":{"d":"4,-197v-10,-109,168,-142,194,-38v27,108,3,247,-126,235v-36,-4,-59,-19,-72,-41v2,-7,36,-34,34,-44v16,19,56,42,84,12v12,-12,24,-47,19,-64v-3,16,-32,43,-53,41v-55,-5,-75,-44,-80,-101xm131,-196v11,-36,-39,-52,-52,-23v-6,13,-2,53,5,51v14,15,45,2,47,-28","w":219},":":{"d":"12,-205v-1,-51,101,-79,108,-14v4,54,-104,76,-108,14xm23,-6v-50,-25,3,-92,43,-85v38,-1,59,38,33,68v-17,20,-50,30,-76,17","w":133},";":{"d":"43,-176v-9,-62,99,-87,108,-22v-1,51,-93,73,-108,22xm1,46v19,-30,29,-84,53,-108r63,-3v-11,30,-38,89,-69,119v-14,-3,-34,-4,-47,-8","w":156},"\u037e":{"d":"43,-176v-9,-62,99,-87,108,-22v-1,51,-93,73,-108,22xm1,46v19,-30,29,-84,53,-108r63,-3v-11,30,-38,89,-69,119v-14,-3,-34,-4,-47,-8","w":156},"<":{"d":"116,-311v12,7,22,15,29,27r-16,24v-23,38,-51,70,-76,106v31,34,65,82,98,126v-12,19,-30,28,-31,28v-21,-42,-80,-115,-120,-150v44,-47,83,-106,116,-161","w":173},"=":{"d":"24,-217v56,-1,107,-7,157,-13v3,0,4,9,4,27v1,9,0,15,-11,13r-146,11v-5,-7,-8,-28,-4,-38xm175,-139v18,-8,15,8,16,31v4,8,-4,10,-19,10r-137,10v-1,-12,-10,-29,-4,-38","w":223},">":{"d":"34,-311r48,75r69,86v-41,37,-90,100,-122,150v-31,-25,-33,-24,-18,-43r56,-74r31,-37r-91,-129v4,-14,19,-18,27,-28","w":174},"?":{"d":"69,-183v51,-2,90,-13,122,-37v6,-33,-62,-27,-108,-22v-31,3,-56,16,-82,24v1,-37,7,-64,20,-92v88,-25,237,-23,260,60v-5,81,-82,105,-147,119v-9,5,-3,43,-9,37v-26,-2,-63,2,-73,10r-3,-2v5,-20,9,-51,13,-81v2,0,1,-19,7,-16xm75,14v-65,0,-45,-67,-5,-75v30,-6,80,-11,77,29v-1,20,-46,46,-72,46","w":294},"@":{"d":"179,-324v119,-2,179,84,154,198v-6,28,-56,73,-101,51v-7,1,-32,-18,-38,-29v-39,43,-117,20,-105,-49v8,-45,58,-98,108,-66v1,0,2,-2,2,-7v12,7,50,-10,39,16v-9,21,-26,89,19,90v21,1,32,-21,32,-45v0,-80,-41,-111,-129,-111v-73,0,-119,74,-105,157v12,71,92,101,168,77v5,11,11,22,18,31v-113,50,-248,-11,-240,-139v6,-101,63,-172,178,-174xm163,-184v-21,3,-26,20,-26,40v0,24,31,18,35,1v4,-3,10,-44,-9,-41","w":365},"A":{"d":"58,-151r46,-154v18,-10,47,-21,80,-21v20,48,31,132,52,183v0,14,24,-1,24,15v-8,39,3,81,17,105v-19,14,-43,23,-69,30r-27,-85r-71,1r-15,82r-79,-15r18,-58r-19,3v-4,-7,-10,-51,-15,-69v0,-3,17,-5,50,-5v6,0,8,-4,8,-12xm146,-234v-9,25,-15,56,-23,83v11,2,31,3,42,1v-7,-27,-10,-59,-19,-84","w":286,"k":{"V":18}},"B":{"d":"1,-306v79,-38,305,-28,247,92v-2,5,-20,23,-30,30v37,14,65,36,65,83v0,111,-155,124,-254,97v-15,-10,4,-28,0,-64v3,-12,4,-46,4,-103v0,-76,17,-90,-27,-82v0,-15,-1,-56,-5,-53xm179,-244v3,-28,-48,-31,-76,-25v2,18,0,40,2,57v40,-1,60,-8,74,-32xm101,-70v37,-3,89,3,93,-35v3,-22,-17,-33,-37,-34r-54,-4v0,24,-4,50,-2,73","w":292},"C":{"d":"242,-20v-46,31,-147,34,-191,-2v-48,-39,-69,-122,-33,-190v35,-67,84,-113,180,-115v21,0,14,20,14,42v0,26,-2,40,-5,45v-78,-6,-125,23,-125,98v0,74,103,77,147,41v7,13,12,61,13,81","w":256,"k":{"Z":10,"Y":15,"W":32,"V":32,"U":15,"T":38,"S":21,"R":32,"Q":18,"P":27,"O":15,"J":10,"H":21,"G":10,"F":15,"E":32,"D":32,"C":15,"B":21,"A":15}},"D":{"d":"0,-289v99,-47,333,-65,333,87v0,41,-20,75,-38,100v-38,52,-138,129,-248,96v4,-73,6,-150,0,-222v-14,5,-33,6,-44,14v-1,-22,2,-49,-3,-75xm124,-79v68,-10,107,-36,121,-103v-6,-52,-24,-58,-84,-64v-39,4,-36,-3,-36,22","w":342},"E":{"d":"0,-306v68,-14,145,-18,236,-20v0,17,-12,43,-11,60v-31,6,-82,-2,-114,9v3,18,-1,40,4,51v22,-2,63,-11,80,0v-8,16,-6,43,-14,67v-14,-4,-58,-3,-67,2v2,18,-3,43,3,58v51,-4,29,-3,126,-4r-1,79r-88,-3v-41,0,-89,9,-126,5v6,-30,8,-92,10,-131v-8,-4,-24,11,-22,-8v2,-16,-5,-37,0,-50v11,0,22,-4,21,-5v-3,-16,-1,-37,-7,-50v-10,0,-17,3,-25,5","w":257},"F":{"d":"0,-296v76,-18,151,-25,256,-31v3,21,-6,33,-4,78r-144,12r2,56r76,-5v4,19,2,47,7,69v-1,3,-4,6,-7,4v-24,3,-56,-2,-76,5v-3,38,3,85,-9,114v-30,-9,-24,-10,-81,-14v-4,-27,17,-58,11,-95v-2,1,-26,8,-30,5r-1,-61v2,-7,34,-1,34,-14v0,-27,10,-68,-32,-47v-4,-19,2,-54,-2,-76","w":269,"k":{"J":47}},"G":{"d":"0,-104v0,-137,93,-222,212,-222v38,0,77,-4,99,15v-8,28,-10,43,-16,70v-100,-29,-212,17,-212,116v0,53,50,68,101,52v12,-7,46,-25,37,-31v-27,1,-66,19,-87,11v2,-12,4,-31,5,-56v57,-19,133,-26,201,-39v3,3,-9,64,-10,68v-28,1,-24,2,-33,26v-28,71,-121,117,-213,96v-46,-10,-84,-52,-84,-106","w":359},"H":{"d":"105,-326v6,37,-2,87,0,128v21,0,45,-4,57,-4v41,0,36,0,36,-29v0,-31,-3,-69,5,-95v22,0,58,0,72,6r6,225r6,85v-11,10,-56,7,-77,17v-4,1,-8,-7,-5,-11r-6,-130v-34,-1,-67,1,-93,5r1,124v-22,0,-54,0,-82,-4r6,-115v-18,-3,-28,12,-27,-7v2,-32,-20,-60,27,-59v2,-38,-1,-86,-3,-124v0,-5,9,-8,26,-8v0,-2,17,-4,51,-4","w":302},"I":{"d":"121,1v-17,4,-64,6,-87,15r-2,-234v-3,-21,-3,-78,-5,-88v30,-10,56,-18,85,-17v-4,52,-5,94,-5,129v0,80,3,137,14,195","w":142},"J":{"d":"141,-308v19,-11,41,-16,73,-19v35,135,29,379,-146,332v-35,-9,-65,-41,-67,-96v14,-12,53,-14,69,-29v11,6,4,33,12,40v7,13,14,23,31,20v15,1,35,-41,33,-53v13,-43,2,-151,-5,-195","w":248},"K":{"d":"254,-53v-11,24,-24,39,-48,64v-48,-33,-97,-82,-120,-138r-3,0r-10,109v-1,19,-19,12,-33,16v-13,4,-27,11,-39,10r7,-95r0,-134r-7,-84v14,-3,25,-8,40,-9v6,-3,20,-9,31,-11v8,21,8,89,14,120v22,-41,70,-100,116,-120v16,10,41,36,52,42v-50,27,-90,64,-124,110v32,52,75,89,124,120","w":284},"L":{"d":"0,4v13,-85,26,-198,26,-310v15,-12,48,-16,77,-20v3,0,5,1,5,3r-2,121r-11,114v20,1,68,-15,108,-10v-13,26,-21,64,-32,90v-70,2,-106,4,-106,5v-22,0,-48,9,-65,7","w":215,"k":{"Z":11,"Y":11,"V":44,"T":66,"S":28,"R":17,"P":11,"H":11,"E":17,"D":28,"B":11}},"M":{"d":"131,2v-17,-54,-25,-103,-35,-174v-11,66,-19,81,-19,177v-24,-2,-30,-11,-75,-13v8,-104,35,-210,61,-298v26,-9,40,-14,73,-20v7,45,10,132,24,190v4,13,4,30,10,41r38,-137v12,-31,20,-66,35,-94v27,2,48,12,71,19v-7,113,13,208,33,297v-2,7,-53,14,-74,16v-17,-64,-13,-110,-21,-199r-48,179v-26,5,-49,8,-73,16","w":359,"k":{"W":17,"V":17,"T":17,"R":17,"P":11,"E":17,"D":17}},"N":{"d":"4,-303v17,-10,58,-15,82,-24v14,24,24,57,38,82r45,77r10,-133v17,-13,51,-14,71,-26v1,64,-9,83,-10,197r-2,117v-13,10,-50,12,-69,21v-7,-5,-3,-35,-4,-48v-30,-43,-69,-101,-88,-149v-7,40,4,124,2,180v-10,9,-60,11,-77,20v-3,-30,4,-164,4,-239v0,-34,0,-59,-2,-75","w":262,"k":{"Z":10,"L":10}},"O":{"d":"231,-34v-57,65,-188,45,-214,-32v-20,-29,-18,-115,-5,-153v24,-72,115,-139,200,-90r49,-17v33,60,39,188,1,248v-8,13,-17,28,-31,44xm129,-79v80,8,93,-92,76,-163v-9,2,-14,8,-20,7v-9,-11,-27,-17,-50,-15v-45,21,-62,47,-58,105v3,39,18,62,52,66","w":299,"k":{"Z":19}},"P":{"d":"30,11v-4,-75,17,-173,12,-245v-27,4,-36,14,-43,7v0,-23,3,-49,1,-70v100,-34,350,-68,300,101v-24,82,-95,103,-187,120r-7,69v-11,15,-45,15,-76,18xm121,-166v43,5,99,-27,97,-72v-2,-34,-60,-28,-93,-21v0,32,-2,60,-4,93","w":321,"k":{"J":34}},"Q":{"d":"197,-7v-144,69,-258,-124,-157,-246v37,-45,74,-68,153,-72v135,-8,145,158,83,243r-21,28v0,4,14,22,40,52v1,4,-43,52,-52,56v-15,-12,-39,-53,-46,-61xm174,-253v-62,4,-92,45,-87,113v3,43,34,72,77,67r-14,-42v6,-7,35,-28,48,-36v4,6,10,35,16,34v19,-17,24,-67,15,-99v-11,-18,-32,-38,-55,-37","w":329},"R":{"d":"1,-288v80,-36,282,-77,301,40v-8,69,-54,89,-107,112v24,24,57,57,100,87v-15,26,-24,38,-45,56v-25,-16,-92,-82,-131,-121v2,33,0,70,1,105v-22,4,-61,4,-83,0r3,-106v-3,-35,1,-78,-6,-109v-5,3,-18,9,-28,8v0,-21,-1,-35,-5,-72xm117,-180v35,-10,93,-15,94,-60v-10,-15,-12,-15,-39,-19v-46,2,-45,6,-61,8v3,23,0,52,6,71","w":312},"S":{"d":"94,-207v70,30,204,6,204,104v0,113,-171,119,-278,94v7,-25,18,-51,27,-76v32,8,91,17,124,6v7,0,30,-4,34,-16v-23,-30,-136,-19,-169,-53v-30,-19,-44,-56,-32,-94v28,-91,187,-98,293,-70v-6,25,-9,53,-14,79v-41,-13,-127,-28,-172,-13v-17,-2,-47,26,-17,39","w":310},"T":{"d":"100,-232v-22,-2,-79,22,-101,16v6,-24,9,-50,11,-83v66,-19,166,-21,252,-27v1,28,-10,36,-9,69v-15,15,-55,3,-74,20v-10,55,-13,156,-14,234v-27,11,-52,9,-87,16v1,-64,22,-170,20,-231","w":275,"k":{"J":36,"G":20,"A":31}},"U":{"d":"202,-304v13,-14,45,-16,72,-22v3,0,8,17,9,50v7,146,-21,271,-152,283v-170,16,-144,-229,-87,-332v22,7,48,11,68,20v-13,50,-37,93,-37,154v0,51,9,83,60,83v69,-15,74,-148,67,-236","w":293},"V":{"d":"195,-21v-29,11,-69,17,-102,29v-4,-4,-5,-27,-8,-41r-39,-141r-46,-120v15,-12,58,-24,82,-33v26,58,41,155,61,224r65,-224v29,10,55,6,80,29r-76,211","w":296,"k":{"J":12}},"W":{"d":"220,-310v14,43,9,132,15,190r60,-208v23,5,44,8,64,18v-19,105,-59,212,-95,302v-33,3,-61,4,-89,14v-7,-17,2,-31,0,-69r-7,-109v-15,59,-34,107,-41,176v-16,4,-58,-3,-78,2v-32,-83,-43,-202,-50,-312v16,-12,52,-14,82,-20v10,66,4,139,18,210v17,-59,28,-124,51,-177v16,-7,42,-13,70,-17","w":370,"k":{"Z":23,"M":18,"J":23,"A":12}},"X":{"d":"13,-268v21,-24,32,-36,69,-59r82,138v34,-42,58,-82,88,-130v32,2,53,7,74,16r-51,78v-17,28,-35,51,-73,101r58,80v-30,33,-49,50,-55,50v-20,-19,-39,-40,-55,-65v-28,22,-58,57,-75,64v-27,-6,-53,-10,-75,-22r0,-3v44,-35,64,-57,105,-102","w":333},"Y":{"d":"70,-327v14,43,28,101,55,134v20,-36,38,-76,51,-120v13,-7,58,-7,77,-14v3,12,-9,30,-13,42v-47,124,-95,213,-171,306v-11,-11,-36,-27,-56,-40v8,-21,64,-84,68,-99v-33,-42,-66,-123,-81,-183v17,-11,47,-23,70,-26","w":259,"k":{"Z":40,"S":12,"Q":36,"O":23,"M":40,"J":84,"G":45,"C":34,"A":56}},"Z":{"d":"271,-318v-7,55,-17,108,-46,146v-29,38,-94,100,-112,115v38,5,118,-14,146,-8v-6,19,-19,52,-30,65r-227,0v0,-20,17,-43,20,-68v52,-39,125,-101,149,-166v-33,7,-85,10,-127,11v3,-25,11,-55,19,-78r129,-6","w":280},"[":{"w":100},"\\":{"d":"41,-325v30,51,62,127,95,178r90,139v-21,7,-32,43,-49,3r-65,-94v-46,-72,-77,-131,-109,-207v7,-6,24,-12,38,-19","w":239},"]":{"w":100},"^":{"w":168},"_":{"d":"2,-37r293,0v5,8,1,24,2,35v-92,7,-198,-1,-294,2v-6,-6,-4,-28,-1,-37","w":317},"`":{"w":119},"a":{"d":"200,-305r47,181v13,31,21,67,37,96v-19,11,-47,30,-70,39v-9,-28,-21,-50,-28,-80v-31,4,-57,5,-87,12v-10,9,-12,43,-17,56v-27,-2,-60,3,-83,-2r100,-303r94,-20v5,0,7,7,7,21xm148,-234v-15,25,-21,75,-32,108v16,-4,39,-2,51,-11","w":293},"b":{"d":"10,-5v12,-102,9,-196,-10,-293v60,-37,274,-52,233,66v-6,15,-34,33,-47,44v53,7,87,15,90,68v-22,94,-96,103,-194,120v-25,-1,-54,3,-72,-5xm90,-197v28,-2,68,-11,68,-44v1,-13,-27,-17,-48,-16v-49,3,-19,20,-20,60xm90,-72v50,-6,79,-12,91,-49v0,-6,-9,-12,-28,-13v-23,-1,-45,1,-60,9v0,20,-1,37,-3,53","w":287},"c":{"d":"242,-20v-46,31,-147,35,-191,-2v-47,-40,-69,-122,-33,-190v35,-67,84,-113,180,-115v21,0,14,20,14,42v0,26,-2,40,-5,45v-78,-6,-125,23,-125,98v0,74,103,77,147,41v7,13,12,61,13,81","w":273},"d":{"d":"255,-277v66,69,25,219,-48,253v-54,25,-99,36,-185,29v-6,0,-9,-2,-9,-5v5,-104,0,-218,-13,-305v31,-19,131,-25,184,-12v29,8,52,21,71,40xm121,-251v-53,-5,-23,29,-22,79r1,93v71,-2,110,-31,107,-109v-10,-40,-33,-58,-86,-63","w":306},"e":{"d":"10,-290v3,-31,33,-22,70,-26r55,-6r71,0r2,3v-9,26,-7,34,-13,64v-10,11,-104,2,-112,10r-4,49v23,2,53,-3,85,-2v6,4,-2,69,-9,69r-78,2r-1,33v-2,57,137,12,153,25v-9,18,-12,42,-22,65v-10,3,-128,6,-160,0v-22,-4,-39,-19,-42,-41v-11,-73,2,-203,5,-245","w":238},"f":{"d":"78,-9v-7,7,-58,8,-76,17v-4,-112,4,-221,12,-311v37,-20,133,-22,199,-20v0,5,-3,26,-11,62v1,10,-10,13,-18,11v-31,1,-74,1,-100,10r-3,56v22,1,50,-6,68,-1r-2,53v-12,7,-57,2,-68,8","w":224},"g":{"d":"15,-184v36,-73,84,-136,193,-142v48,-3,69,35,55,74v-3,7,-14,46,-44,42v-3,-1,-30,11,-38,2v7,-6,13,-39,-7,-36v-61,11,-86,55,-92,125v-5,56,81,67,109,30v-1,-5,4,-14,0,-16v-22,2,-47,14,-67,11v0,-16,2,-28,7,-58v39,-19,111,-20,165,-33v4,0,4,1,4,4v-5,21,-7,39,-7,55v1,9,-34,4,-33,9v-6,21,-12,74,-11,92v-16,6,-53,16,-70,25v-6,-5,5,-18,0,-22v-25,23,-81,41,-123,21v-42,-20,-64,-59,-55,-128v4,-27,9,-46,14,-55","w":309},"h":{"d":"176,-148v-29,-1,-70,8,-97,17r7,101r-81,30v-12,-93,-5,-233,12,-323v24,-5,57,-11,78,-7v-2,40,-13,88,-11,125v26,-6,53,-11,90,-14v6,-25,7,-64,10,-100v20,-8,46,-12,75,-11r-2,108r8,200r-77,16v-3,0,-3,-10,-6,-31v-4,-35,-6,-85,-6,-111","w":280},"i":{"d":"15,-249v3,-50,35,-75,90,-76v18,-1,31,14,31,31v-17,38,-40,60,-84,68v-19,3,-38,-14,-37,-23xm90,-208v8,0,17,-11,23,-5v-1,24,-2,47,-2,71v0,25,1,67,3,127v-28,9,-60,10,-87,24v-5,-58,9,-133,5,-204v15,-7,36,-5,58,-13","w":168},"j":{"d":"142,-307v19,-12,41,-17,73,-20v32,137,31,379,-147,333v-35,-9,-65,-42,-67,-97v16,-11,51,-15,69,-28v11,6,4,32,12,40v8,12,15,22,31,19v16,2,35,-40,33,-52v13,-43,1,-150,-4,-195","w":252},"k":{"d":"1,-283v-12,-45,41,-29,68,-43v11,31,6,82,11,121v25,-19,77,-89,107,-121v20,16,26,13,53,41v-23,38,-50,74,-80,106v17,43,49,95,76,133r-62,51v-33,-34,-53,-88,-80,-139v-6,7,-12,10,-15,10v1,18,-3,40,0,56v-4,23,-4,62,-9,74v-11,-6,-56,-9,-70,-16v4,-59,7,-252,1,-273","w":249},"l":{"d":"1,-307v16,-7,53,-11,77,-19v12,80,4,174,8,261v29,-2,75,-13,106,-5r-15,62r-166,11v-3,1,-10,6,-10,0r4,-153","w":198},"m":{"d":"170,-123v20,-65,35,-143,66,-204r71,14v15,-1,9,16,10,28v2,61,3,102,6,126r18,134v-7,7,-49,29,-72,28v-6,-87,-14,-103,-14,-211v-29,57,-42,136,-65,199v-14,0,-59,3,-62,-2v-8,-67,-17,-122,-37,-182r-12,128v-6,21,-1,54,-13,69v-23,-12,-38,-12,-66,-22v15,-91,37,-179,30,-289v16,-12,59,-17,87,-20v27,52,38,136,53,204","w":351},"n":{"d":"0,-9r6,-172r-6,-124v26,-14,34,-19,91,-21v21,55,60,130,98,187v9,-60,2,-101,4,-164v16,-16,37,-7,71,-22v3,57,-4,146,0,203r8,103v-14,10,-47,16,-66,26v-38,-44,-96,-144,-127,-205r-2,203v-14,2,-59,-10,-77,-14","w":282},"o":{"d":"277,-245v27,130,-41,256,-180,252v-8,1,-47,-15,-56,-25v-60,-44,-47,-169,-9,-223v34,-47,68,-86,144,-84v54,1,93,40,101,80xm124,-78v66,13,96,-80,76,-140v-5,-15,-48,-37,-72,-18v-25,12,-48,63,-48,99v0,28,19,60,44,59","w":293},"p":{"d":"79,-11v-9,12,-53,10,-77,17v2,-89,11,-85,9,-237r0,-76v30,-14,78,-16,129,-19v99,-6,175,89,112,167v-43,54,-88,58,-166,75v-4,17,-4,51,-7,73xm184,-203v5,-6,3,-43,-8,-44v-13,-18,-71,-16,-88,-8v2,28,2,70,0,97v37,-5,83,-17,96,-45","w":284},"q":{"d":"0,-134v-5,-130,63,-196,193,-191v136,5,170,197,79,280v-1,6,30,7,28,23v-3,19,-5,35,-10,45v-21,24,-64,-13,-84,-25v-24,10,-99,10,-115,-3v-51,-25,-88,-65,-91,-129xm82,-186v-17,58,20,124,80,120v-9,-21,-25,-29,-8,-35v18,-6,35,-16,50,-26v9,20,15,30,19,30v34,-36,31,-123,-14,-145v-56,-27,-123,7,-127,56","w":333},"r":{"d":"180,6v-36,-27,-54,-49,-88,-95v-3,18,-2,51,-8,79v0,3,-11,5,-33,6v-12,1,-43,-2,-42,-5v13,-36,8,-260,0,-298v66,-29,234,-35,247,50v12,77,-42,127,-92,150v17,17,58,35,80,52v-17,23,-38,45,-64,61xm91,-162v49,4,98,-21,89,-76v-14,-27,-57,-21,-92,-18v2,2,4,42,4,92","w":259},"s":{"d":"80,-225v18,46,112,25,157,54v45,12,63,81,30,116v-41,44,-75,59,-160,59v-66,0,-53,-5,-100,-21v-19,-14,6,-44,4,-72v2,-3,1,-9,6,-10v33,26,122,37,167,14v17,-16,11,-24,-21,-30v-76,-14,-164,-22,-164,-110v0,-109,172,-118,275,-88v-11,33,-16,41,-31,75v0,4,-1,6,-5,6v-32,-14,-138,-32,-158,7","w":299},"t":{"d":"13,-320r239,-13v2,0,4,2,5,4r-2,64v-25,9,-55,8,-90,13r9,236v-24,9,-67,14,-97,15r11,-242v-30,-3,-42,5,-84,6v-11,-19,5,-52,0,-78v0,-3,3,-5,9,-5","w":270},"u":{"d":"124,2v-178,28,-120,-214,-79,-310v27,-3,64,-20,87,-15v-23,51,-46,130,-52,199v-3,39,31,61,68,46v7,-3,40,-10,39,-30v-3,-56,5,-101,11,-140v2,-13,4,-54,14,-60v26,-4,56,-18,79,-16v-12,88,-38,199,-17,303v-17,13,-56,18,-78,29v-6,-7,0,-26,-7,-33v-11,12,-33,22,-65,27","w":299},"v":{"d":"122,0v-13,-29,-24,-74,-37,-106v-26,-66,-53,-114,-85,-181v25,-12,52,-24,84,-31v33,51,58,135,73,204v19,-66,42,-153,70,-204v31,5,65,17,88,29r1,3v-58,96,-91,178,-130,286r-64,0","w":328},"w":{"d":"108,-129v12,-58,24,-105,44,-159v9,-24,47,-15,77,-26v7,50,-3,122,7,175v14,-63,38,-127,62,-187v27,5,52,12,68,29r-44,109r-51,180v-13,3,-69,8,-90,13v-7,-18,-4,-95,-13,-142r-37,143v-25,-4,-57,-6,-82,1v-11,-55,-13,-131,-24,-191v-7,-37,-16,-97,-24,-121v26,-12,51,-14,88,-21v14,59,8,118,19,197","w":374},"x":{"d":"142,-221r63,-107v11,-22,64,4,76,16r-76,127v-1,2,-8,11,-19,27v20,25,79,82,88,88r-24,65v0,3,-3,5,-7,5v-38,-28,-67,-62,-102,-91v-11,15,-56,79,-76,87v-26,-3,-49,-1,-65,-17v39,-46,63,-76,94,-127v-27,-44,-58,-83,-79,-133v0,-5,3,-7,7,-7r71,-33v11,30,31,73,49,100","w":290},"y":{"d":"96,-142v-67,-27,-94,-76,-96,-163v17,-9,50,-17,76,-21v2,63,32,145,93,106v20,-13,34,-47,34,-85v24,-5,47,-3,73,-2v8,73,-42,154,-106,167v-4,45,2,113,-10,147v-18,0,-74,-8,-80,-17v8,-27,16,-91,16,-132","w":292},"z":{"d":"266,-323v-1,41,-14,75,-23,113v-40,30,-114,90,-147,145v48,-6,104,-5,156,-4v26,0,7,18,5,32r-18,47v-23,-3,-195,-11,-230,0v-14,-6,-7,-70,1,-73v29,-47,121,-132,166,-182r-70,2v-24,2,-50,9,-72,9v7,-21,1,-73,29,-77v61,-9,134,-10,203,-12","w":278},"{":{"w":120},"|":{"w":93},"}":{"w":120},"~":{"d":"196,-138v-49,52,-123,-31,-182,9r-13,-49v56,-46,127,43,183,-3v7,16,11,21,12,43","w":210},"\u00a1":{"w":119},"\u00a2":{"d":"192,-219v-61,-3,-124,19,-122,84v14,55,107,40,142,16v4,7,14,43,13,64v-15,13,-57,17,-78,20v0,14,0,36,-10,33v-14,1,-31,7,-43,3v2,-12,3,-24,3,-35v-56,-17,-95,-39,-95,-109v0,-64,49,-101,99,-124r3,-47v4,-13,35,-14,50,-10v1,14,-3,33,2,43v9,-2,41,-10,41,6v0,15,1,57,-5,56"},"\u00a3":{"d":"177,-239v-16,-34,-62,-30,-71,-5v-5,2,-15,45,-8,62v18,1,41,-5,55,0v-1,17,5,43,-20,37v-13,1,-28,0,-39,2v4,24,-5,67,-3,85v36,-10,92,-9,137,-13v2,21,-19,32,-21,61v-60,9,-123,4,-183,17v-8,-42,17,-102,6,-150v-10,0,-23,4,-30,0v3,-11,-8,-35,8,-34v22,0,27,-3,24,-19v6,-85,50,-146,143,-125v19,9,35,18,44,35v-15,15,-25,34,-42,47","w":246},"\u00a4":{},"\u00a5":{"d":"0,-283v15,-12,36,-15,54,-27v20,32,39,95,66,134r19,-1v22,-32,36,-84,55,-123v18,-1,44,-14,58,-8v-12,43,-45,86,-58,128v12,0,34,-5,42,2v-5,13,-2,27,-7,33r-59,1v-2,8,-15,12,-11,24v25,1,56,-4,77,1v-4,9,0,26,-8,31v-50,2,-69,-3,-70,6r0,80v-8,3,-37,-6,-55,1v-6,-22,1,-57,-3,-81v-24,0,-55,9,-76,5v0,-11,-2,-18,-4,-28v0,-4,13,-5,40,-6v10,-4,32,-1,41,-5v2,-35,-37,-16,-72,-18v-9,-1,-5,-22,-9,-31v15,-3,37,-3,48,-7v-23,-37,-49,-71,-68,-111","w":264},"\u00a6":{"w":93},"\u00a7":{},"\u00a8":{"w":119},"\u00a9":{"d":"285,-71v-108,134,-347,29,-269,-153v43,-100,225,-123,281,-25v28,48,20,138,-12,178xm49,-168v-9,81,39,122,118,122v108,0,137,-181,40,-216v-77,-28,-150,17,-158,94xm209,-77v-60,25,-134,-9,-125,-86v6,-57,33,-84,90,-89v32,-3,11,28,19,52v-6,5,-8,-5,-28,-4v-23,1,-41,20,-41,52v0,39,52,47,74,28v12,-1,8,26,11,47","w":333},"\u00aa":{"w":133},"\u00ab":{},"\u00ac":{"w":210},"\u00ae":{"d":"237,-28v-147,82,-292,-64,-215,-208v35,-65,156,-108,231,-53v63,25,83,148,38,212v-15,22,-34,38,-54,49xm219,-62v66,-42,62,-186,-24,-201v-85,-15,-149,31,-149,119v0,81,99,129,173,82xm138,-121v-3,17,-1,52,-7,48v-15,-4,-26,-1,-35,-5v6,-38,6,-97,2,-145v29,-20,151,-27,138,37v-8,37,-28,46,-60,59v12,13,33,20,48,32v-8,8,-19,17,-33,25v-22,-13,-34,-34,-53,-51xm135,-197v4,8,1,33,4,46v30,-1,51,-13,53,-38v-9,-22,-36,-20,-57,-8","w":333},"\u00af":{"w":198},"\u00b0":{"d":"4,-237v-29,-77,100,-122,128,-48v22,58,-37,104,-97,83v-13,-5,-24,-17,-31,-35xm96,-269v-9,-37,-57,-16,-54,14v3,31,31,35,50,10v2,-7,6,-14,4,-24","w":158},"\u00b1":{"w":197},"\u00b2":{"w":119},"\u00b3":{"w":119},"\u00b4":{"w":119},"\u00b5":{"w":207},"\u00b6":{"w":193},"\u00b7":{"w":100},"\u2219":{"w":100},"\u00b8":{"w":119},"\u00b9":{"w":119},"\u00ba":{"w":131},"\u00bb":{},"\u00bc":{"w":300},"\u00bd":{"w":300},"\u00be":{"w":300},"\u00bf":{"w":219},"\u00c0":{"w":240},"\u00c1":{"w":240},"\u00c3":{"w":240},"\u00c4":{"w":240},"\u00c5":{"w":240},"\u00c6":{"w":360},"\u00c7":{"w":259},"\u00c8":{"w":240},"\u00c9":{"w":240},"\u00ca":{"w":240},"\u00cb":{"w":240},"\u00cc":{"w":100},"\u00cd":{"w":100},"\u00cf":{"w":100},"\u00d0":{"w":259},"\u00d1":{"w":259},"\u00d2":{"w":280},"\u00d3":{"w":280},"\u00d4":{"w":280},"\u00d5":{"w":280},"\u00d6":{"w":280},"\u00d7":{"w":210},"\u00d8":{"w":280},"\u00d9":{"w":259},"\u00da":{"w":259},"\u00db":{"w":259},"\u00dc":{"w":259},"\u00dd":{"w":240},"\u00de":{"w":240},"\u00df":{"w":219},"\u00e1":{},"\u00e3":{},"\u00e4":{},"\u00e5":{},"\u00e6":{"w":320},"\u00e7":{"w":180},"\u00e8":{},"\u00e9":{},"\u00ea":{},"\u00eb":{},"\u00ec":{"w":100},"\u00ed":{"w":100},"\u00ef":{"w":100},"\u00f0":{},"\u00f1":{"d":"0,-9r6,-172r-3,-63v25,-24,55,5,106,-16v14,17,12,18,19,30v16,11,45,68,61,91v8,-38,1,-63,4,-94v4,-43,33,-30,73,-43v-10,79,-1,182,6,257v-14,10,-47,16,-66,26v-38,-44,-96,-144,-127,-205r-2,203v-14,2,-59,-10,-77,-14xm181,-270v-56,-1,-97,-42,-147,-10v-8,-15,-9,-35,-14,-50v30,-26,94,-5,120,10v26,5,44,0,63,-12v8,16,12,21,13,42v-8,9,-20,16,-35,20"},"\u00f2":{},"\u00f3":{},"\u00f4":{},"\u00f5":{},"\u00f6":{},"\u00f7":{"d":"117,-225v-57,0,-43,-65,-1,-73v26,-5,57,6,51,37v-3,19,-29,36,-50,36xm188,-195v5,1,37,-14,32,11v-3,12,8,35,-5,37r-100,11r-109,3v-5,-13,-3,-33,-6,-49r146,-8xm121,-35v-18,12,-65,7,-65,-15v-15,-25,32,-66,68,-49v28,13,23,46,-3,64","w":235},"\u00f8":{"w":219},"\u00f9":{},"\u00fa":{},"\u00fb":{},"\u00fc":{},"\u00fd":{"w":180},"\u00fe":{},"\u00ff":{"w":180},"\u0100":{"w":240},"\u0101":{},"\u0104":{"w":240},"\u0105":{},"\u0106":{"w":259},"\u0107":{"w":180},"\u0108":{"w":259},"\u0109":{"w":180},"\u010a":{"w":259},"\u010b":{"w":180},"\u010c":{"w":259},"\u010d":{"w":180},"\u010e":{"w":259},"\u010f":{"w":221},"\u0110":{"w":259},"\u0111":{},"\u0112":{"w":240},"\u0113":{},"\u0114":{"w":240},"\u0115":{},"\u0116":{"w":240},"\u0117":{},"\u0118":{"w":240},"\u0119":{},"\u011a":{"w":240},"\u011b":{},"\u011c":{"w":280},"\u011d":{},"\u011e":{"w":280},"\u011f":{},"\u0120":{"w":280},"\u0121":{},"\u0122":{"w":280},"\u0123":{},"\u0124":{"w":259},"\u0125":{},"\u0126":{"w":259},"\u0127":{},"\u0128":{"w":100},"\u0129":{"w":100},"\u012a":{"w":100},"\u012b":{"w":100},"\u012c":{"w":100},"\u012d":{"w":100},"\u012e":{"w":100},"\u012f":{"w":79},"\u0130":{"w":100},"\u0131":{"w":100},"\u0132":{"w":264},"\u0133":{"w":159},"\u0134":{"w":180},"\u0135":{"w":79},"\u0136":{"w":240},"\u0137":{"w":180},"\u0138":{"w":180},"\u0139":{},"\u013a":{"w":79},"\u013b":{},"\u013c":{"w":79},"\u013d":{},"\u013e":{"w":104},"\u013f":{},"\u0140":{"w":120},"\u0141":{},"\u0142":{"w":79},"\u0143":{"w":259},"\u0144":{},"\u0145":{"w":259},"\u0146":{},"\u0147":{"w":259},"\u0148":{},"\u0149":{"w":217},"\u014a":{"w":260},"\u014b":{},"\u014c":{"w":280},"\u014d":{},"\u014e":{"w":280},"\u014f":{},"\u0150":{"w":280},"\u0151":{},"\u0152":{"w":360},"\u0153":{"w":339},"\u0154":{"w":259},"\u0155":{"w":119},"\u0156":{"w":259},"\u0157":{"w":119},"\u0158":{"w":259},"\u0159":{"w":119},"\u015a":{"w":240},"\u015b":{"w":180},"\u015c":{"w":240},"\u015d":{"w":180},"\u0160":{"w":240},"\u0161":{"w":180},"\u0166":{"w":219},"\u0167":{"w":100},"\u0168":{"w":259},"\u0169":{},"\u016a":{"w":259},"\u016b":{},"\u016c":{"w":259},"\u016d":{},"\u016e":{"w":259},"\u016f":{},"\u0170":{"w":259},"\u0171":{},"\u0172":{"w":259},"\u0173":{},"\u0174":{"w":339},"\u0175":{"w":259},"\u0176":{"w":240},"\u0177":{"w":180},"\u0178":{"w":240},"\u0179":{"w":219},"\u017a":{"w":180},"\u017b":{"w":219},"\u017c":{"w":180},"\u017d":{"w":219},"\u017e":{"w":180},"\u017f":{"w":79},"\u0192":{},"\u01fa":{"w":240},"\u01fb":{},"\u01fc":{"w":360},"\u01fd":{"w":320},"\u01fe":{"w":280},"\u01ff":{"w":219},"\u02c6":{"w":119},"\u02c7":{"w":119},"\u02c9":{"w":119},"\u02d8":{"w":119},"\u02d9":{"w":119},"\u02da":{"w":119},"\u02db":{"w":119},"\u02dc":{"w":119},"\u02dd":{"w":119},"\u0384":{"w":119},"\u0385":{"w":119},"\u0386":{"w":240},"\u0387":{"w":100},"\u0388":{"w":282},"\u0389":{"w":301},"\u038a":{"w":138},"\u038c":{"w":278},"\u038e":{"w":307},"\u038f":{"w":270},"\u0390":{"w":79},"\u0391":{"w":240},"\u0392":{"w":240},"\u0393":{"w":198},"\u0394":{"w":240},"\u0395":{"w":240},"\u0396":{"w":219},"\u0397":{"w":259},"\u0398":{"w":280},"\u0399":{"w":100},"\u039a":{"w":240},"\u039b":{"w":240},"\u039c":{"w":299},"\u039d":{"w":259},"\u039e":{"w":233},"\u039f":{"w":280},"\u03a0":{"w":259},"\u03a1":{"w":240},"\u03a3":{"w":222},"\u03a4":{"w":219},"\u03a5":{"w":240},"\u03a6":{"w":287},"\u03a7":{"w":240},"\u03a8":{"w":300},"\u03a9":{"w":269},"\u03aa":{"w":100},"\u03ab":{"w":240},"\u03ac":{"w":208},"\u03ad":{"w":160},"\u03ae":{},"\u03af":{"w":79},"\u03b0":{"w":196},"\u03b1":{"w":208},"\u03b2":{"w":207},"\u03b3":{"w":180},"\u03b4":{},"\u03b5":{"w":160},"\u03b6":{"w":158},"\u03b7":{},"\u03b8":{},"\u03b9":{"w":79},"\u03ba":{"w":180},"\u03bb":{"w":180},"\u03bc":{"w":207},"\u03bd":{"w":180},"\u03be":{"w":161},"\u03bf":{},"\u03c0":{"w":248},"\u03c1":{"w":204},"\u03c2":{"w":173},"\u03c3":{"w":222},"\u03c4":{"w":142},"\u03c5":{"w":196},"\u03c6":{"w":233},"\u03c7":{"w":188},"\u03c8":{"w":256},"\u03c9":{"w":281},"\u03ca":{"w":79},"\u03cb":{"w":196},"\u03cc":{},"\u03cd":{"w":196},"\u03ce":{"w":281},"\u0401":{"w":240},"\u0402":{"w":311},"\u0403":{"w":194},"\u0404":{"w":258},"\u0405":{"w":240},"\u0406":{"w":100},"\u0407":{"w":100},"\u0408":{"w":180},"\u0409":{"w":380},"\u040a":{"w":363},"\u040b":{"w":307},"\u040c":{"w":209},"\u040e":{"w":228},"\u040f":{"w":258},"\u0410":{"w":240},"\u0411":{"w":236},"\u0412":{"w":240},"\u0413":{"w":194},"\u0414":{"w":243},"\u0415":{"w":240},"\u0416":{"w":332},"\u0417":{"w":217},"\u0418":{"w":258},"\u0419":{"w":258},"\u041a":{"w":209},"\u041b":{"w":236},"\u041c":{"w":299},"\u041d":{"w":259},"\u041e":{"w":280},"\u041f":{"w":258},"\u0420":{"w":240},"\u0421":{"w":259},"\u0422":{"w":219},"\u0423":{"w":228},"\u0424":{"w":273},"\u0425":{"w":240},"\u0426":{"w":266},"\u0427":{"w":239},"\u0428":{"w":329},"\u0429":{"w":337},"\u042a":{"w":284},"\u042b":{"w":318},"\u042c":{"w":236},"\u042d":{"w":258},"\u042e":{"w":363},"\u042f":{"w":259},"\u0430":{},"\u0431":{"w":206},"\u0432":{"w":191},"\u0433":{"w":131},"\u0434":{"w":210},"\u0435":{},"\u0436":{"w":240},"\u0437":{"w":165},"\u0438":{"w":201},"\u0439":{"w":201},"\u043a":{"w":157},"\u043b":{"w":210},"\u043c":{"w":247},"\u043d":{"w":198},"\u043e":{},"\u043f":{"w":194},"\u0440":{},"\u0441":{"w":180},"\u0442":{"w":164},"\u0443":{"w":180},"\u0444":{"w":296},"\u0445":{"w":180},"\u0446":{"w":206},"\u0447":{"w":187},"\u0448":{"w":288},"\u0449":{"w":296},"\u044a":{"w":225},"\u044b":{"w":258},"\u044c":{"w":187},"\u044d":{"w":183},"\u044e":{"w":270},"\u044f":{"w":194},"\u0451":{},"\u0452":{},"\u0453":{"w":131},"\u0454":{"w":183},"\u0455":{"w":180},"\u0456":{"w":79},"\u0457":{"w":100},"\u0458":{"w":79},"\u0459":{"w":326},"\u045a":{"w":292},"\u045b":{},"\u045c":{"w":157},"\u045e":{"w":180},"\u045f":{"w":198},"\u0490":{"w":175},"\u0491":{"w":148},"\u1e80":{"w":339},"\u1e81":{"w":259},"\u1e82":{"w":339},"\u1e83":{"w":259},"\u1e84":{"w":339},"\u1e85":{"w":259},"\u1ef2":{"w":240},"\u1ef3":{"w":180},"\u2015":{"w":360},"\u2017":{"w":198},"\u2018":{"d":"68,-325v17,3,42,0,48,11v-13,22,-35,69,-43,102v-21,3,-45,4,-72,3v16,-39,44,-91,67,-116","w":125},"\u2019":{"d":"46,-320v24,4,54,-8,69,-1v-16,43,-40,83,-66,114v-19,-1,-44,0,-49,-9v20,-30,30,-70,46,-104","w":126},"\u201a":{"w":79},"\u201b":{"w":79},"\u201c":{"d":"3,-208v9,-31,55,-109,69,-116v21,2,33,2,46,8v-19,39,-31,60,-43,105v-19,3,-50,5,-72,3xm225,-313v-18,29,-32,66,-45,104v-25,-3,-47,5,-70,1v14,-40,41,-83,66,-116v20,3,42,-1,49,11","w":241},"\u201d":{"d":"47,-320v24,4,54,-8,69,-1v-17,42,-39,84,-67,114v-19,-1,-43,-1,-48,-9v18,-32,31,-69,46,-104xm108,-214v9,-23,37,-73,43,-106v27,2,44,-4,71,-3v-16,46,-36,77,-65,116v-14,1,-40,-2,-49,-7","w":237},"\u201e":{"w":119},"\u2020":{},"\u2021":{},"\u2022":{"d":"2,-136v1,-58,33,-86,92,-85v81,20,37,124,-30,126v-36,1,-56,-11,-62,-41","w":156},"\u2026":{"w":360},"\u2030":{"w":360},"\u2032":{"w":67},"\u2033":{"w":127},"\u2039":{"w":119},"\u203a":{"w":119},"\u203c":{"w":180},"\u203e":{"w":119},"\u2044":{"d":"164,-307v8,-20,21,3,33,5v21,3,5,14,4,24v-46,105,-112,213,-183,303v-13,-10,-24,-18,-32,-22v14,-28,51,-74,68,-103r47,-81v18,-32,42,-75,63,-126","w":194},"\u207f":{"w":131},"\u20a3":{},"\u20a4":{},"\u20a7":{"w":393},"\u20ac":{},"\u2105":{"w":318},"\u2113":{"w":116},"\u2116":{"w":386},"\u2122":{"d":"111,-256v6,-28,5,-52,41,-52v6,18,1,63,14,91r32,-86r29,7v1,41,2,88,15,118v-7,9,-12,10,-31,13v-6,-15,-7,-54,-10,-80v-5,18,-13,33,-15,54v4,29,-25,18,-34,25v-8,-13,-10,-39,-16,-62v-4,5,-3,52,-9,64v-10,-4,-21,-5,-28,-7v0,-12,3,-40,12,-85xm17,-301v40,1,67,-8,92,-1v-2,12,8,35,-12,31v-33,2,-28,0,-28,29v0,57,21,76,-33,76v-5,-19,4,-66,3,-100v-11,0,-29,6,-37,-1v2,-16,-6,-36,15,-34","w":264},"\u2126":{"w":276},"\u212e":{"w":216},"\u215b":{"w":300},"\u215c":{"w":300},"\u215d":{"w":300},"\u215e":{"w":300},"\u2190":{"w":360},"\u2191":{"w":180},"\u2192":{"w":360},"\u2193":{"w":180},"\u2194":{"w":360},"\u2195":{"w":180},"\u21a8":{"w":180},"\u2202":{"w":177},"\u2206":{"w":220},"\u220f":{"w":296},"\u2211":{"w":256},"\u221a":{"w":197},"\u221e":{"w":256},"\u221f":{"w":352},"\u2229":{"w":258},"\u222b":{"w":98},"\u2248":{"w":197},"\u2260":{"w":197},"\u2261":{"w":210},"\u2264":{"w":197},"\u2265":{"w":197},"\u2302":{"w":217},"\u2310":{"w":210},"\u2320":{"w":217},"\u2321":{"w":217},"\u2500":{"w":255},"\u2502":{"w":225},"\u250c":{"w":255},"\u2510":{"w":255},"\u2514":{"w":255},"\u2518":{"w":255},"\u251c":{"w":255},"\u2524":{"w":255},"\u252c":{"w":255},"\u2534":{"w":255},"\u253c":{"w":255},"\u2550":{"w":255},"\u2551":{"w":255},"\u2552":{"w":255},"\u2553":{"w":255},"\u2554":{"w":255},"\u2555":{"w":255},"\u2556":{"w":255},"\u2557":{"w":255},"\u2558":{"w":255},"\u2559":{"w":255},"\u255a":{"w":255},"\u255b":{"w":255},"\u255c":{"w":255},"\u255d":{"w":255},"\u255e":{"w":255},"\u255f":{"w":255},"\u2560":{"w":255},"\u2561":{"w":255},"\u2562":{"w":255},"\u2563":{"w":255},"\u2564":{"w":255},"\u2565":{"w":255},"\u2566":{"w":255},"\u2567":{"w":255},"\u2568":{"w":255},"\u2569":{"w":255},"\u256a":{"w":255},"\u256b":{"w":255},"\u256c":{"w":255},"\u2580":{"w":255},"\u2584":{"w":255},"\u2588":{"w":255},"\u258c":{"w":255},"\u2590":{"w":255},"\u2591":{"w":255},"\u2592":{"w":255},"\u2593":{"w":262},"\u25a0":{"w":217},"\u25a1":{"w":217},"\u25aa":{"w":127},"\u25ab":{"w":127},"\u25ac":{"w":360},"\u25b2":{"w":356},"\u25ba":{"w":356},"\u25bc":{"w":356},"\u25c4":{"w":356},"\u25ca":{"w":177},"\u25cb":{"w":217},"\u25cf":{"w":217},"\u25d8":{"w":217},"\u25d9":{"w":217},"\u25e6":{"w":127},"\u263a":{"w":367},"\u263b":{"w":378},"\u263c":{"w":329},"\u2640":{"w":270},"\u2642":{"w":270},"\u2660":{"w":191},"\u2663":{"w":236},"\u2665":{"w":213},"\u2666":{"w":183},"\u266a":{"w":180},"\u266b":{"w":270},"\uf001":{"w":180},"\ufb01":{"w":180},"\uf002":{"w":180},"\ufb02":{"w":180},"\uf004":{"w":119},"\uf005":{"w":119},"\u00e2":{"d":"284,-28v-19,11,-47,30,-70,39v-9,-28,-21,-50,-28,-80v-31,4,-57,5,-87,12v-10,9,-12,43,-17,56v-27,-2,-60,3,-83,-2r94,-260v17,-12,26,-15,51,-24r49,11v40,69,48,180,91,248xm148,-234v-15,25,-21,75,-32,108v16,-4,39,-2,51,-11xm51,-302v9,-17,29,-31,36,-43r0,2v0,-11,12,-17,13,-29v14,-2,40,18,48,18v8,6,38,12,48,24v-7,11,-9,27,-14,40v-12,0,-38,-13,-54,-21v-13,1,-29,28,-41,37v-5,-12,-23,-20,-36,-28","w":293},"\u00ee":{"d":"90,-208v8,0,17,-11,23,-5v-1,24,-2,47,-2,71v0,25,1,67,3,127v-28,9,-60,10,-87,24v-5,-58,9,-133,5,-204v15,-7,36,-5,58,-13xm39,-321v15,-1,32,14,48,18r0,3v7,-4,31,13,46,18v-2,12,-9,28,-12,43v-12,0,-39,-13,-55,-21v-12,2,-28,28,-40,37v-5,-13,-27,-19,-37,-30v18,-18,40,-40,50,-68","w":168},"\u00ce":{"d":"121,1v-17,4,-64,6,-87,15r-2,-234v-2,-12,-5,-16,-5,-30v29,-10,54,-18,84,-17v-9,74,-4,203,10,266xm-7,-295v9,-17,29,-31,36,-43r0,2v0,-11,12,-17,13,-29v14,-2,40,18,48,18v8,6,38,12,48,24v-7,11,-9,27,-14,40v-12,0,-38,-13,-54,-21v-13,1,-29,28,-41,38v-5,-12,-22,-21,-36,-29","w":142},"\u0162":{"d":"100,-232v-22,-2,-79,22,-101,16v6,-24,9,-50,11,-83v66,-19,166,-21,252,-27v1,28,-10,36,-9,69v-15,15,-55,3,-74,20v-7,36,-12,122,-13,176v-30,10,-51,10,-87,21v0,-26,10,-47,12,-75xm164,-19v23,37,-37,57,-71,47v-10,-3,-20,-10,-18,-27v9,-27,65,-45,89,-20xm152,-17v35,14,-12,70,-32,82v-13,-3,-32,-1,-42,-7v23,-20,24,-79,74,-75","w":275},"\u0163":{"d":"13,-320r239,-13v2,0,4,2,5,4r-2,64v-25,9,-55,8,-90,13r9,204v-5,4,-15,4,-26,-2v-15,4,-21,5,-50,7v-8,9,-12,13,-21,10v7,-59,13,-102,9,-212r-82,8v-11,-19,5,-52,0,-78v0,-3,3,-5,9,-5xm80,15v-3,-45,90,-56,96,-13v-8,39,-85,50,-96,13xm130,68v-12,1,-55,2,-42,-11v20,-20,21,-74,70,-68v34,13,-13,64,-28,79","w":270},"\u0218":{"d":"94,-207v70,30,204,6,204,104v0,59,-56,83,-103,96v-9,-32,-79,-35,-100,-8v-18,24,-48,12,-75,6v7,-25,18,-51,27,-76v32,8,91,17,124,6v7,0,30,-4,34,-16v-23,-30,-136,-19,-169,-53v-30,-19,-44,-56,-32,-94v28,-91,187,-98,293,-70v-6,25,-9,53,-14,79v-41,-13,-127,-28,-172,-13v-17,-2,-47,26,-17,39xm179,-9v23,36,-37,59,-70,47v-11,-1,-20,-10,-19,-27v8,-28,65,-45,89,-20xm168,-7v34,15,-13,69,-33,82v-12,-4,-31,-1,-41,-7v15,-22,40,-69,74,-75","w":310},"\u0219":{"d":"132,-117v-83,0,-176,-79,-108,-158v49,-56,182,-61,273,-38v-6,25,-9,54,-14,80v-39,-15,-128,-26,-172,-13v-13,4,-29,8,-30,23v23,45,111,21,164,50v28,16,53,26,53,70v0,55,-59,92,-101,92v-9,-2,-15,-7,-19,-18v-25,-11,-57,-8,-76,5v-10,28,-52,28,-82,15v7,-25,18,-51,27,-76v32,8,91,17,124,6v7,0,30,-4,34,-16v1,-13,-41,-22,-73,-22xm179,-9v23,36,-37,59,-70,47v-11,-1,-20,-10,-19,-27v8,-28,65,-45,89,-20xm168,-7v34,15,-13,69,-33,82v-12,-4,-31,-1,-41,-7v23,-24,23,-78,74,-75","w":310},"\u0102":{"d":"58,-151v10,-27,21,-79,33,-114v1,-4,5,-8,6,-17v35,1,70,-2,92,-15v22,41,28,108,47,154v0,14,24,-1,24,15v-8,39,3,81,17,105v-19,14,-43,23,-69,30r-27,-85r-71,1r-15,82r-79,-15r18,-58r-19,3v-4,-7,-10,-51,-15,-69v0,-3,17,-5,50,-5v6,0,8,-4,8,-12xm146,-234v-9,25,-15,56,-23,83v11,2,31,3,42,1v-7,-27,-10,-59,-19,-84xm193,-384v2,5,1,24,0,56r-1,-4v-17,27,-70,35,-109,28v5,-14,-3,-40,5,-51v50,16,70,-6,105,-29","w":286},"\u0103":{"d":"98,-280v31,-6,72,6,92,-17v28,-5,23,52,33,85r48,159v2,-1,8,21,13,25v-19,11,-47,30,-70,39v-9,-28,-21,-50,-28,-80v-31,4,-57,5,-87,12v-10,9,-12,43,-17,56v-27,-2,-60,3,-83,-2xm148,-234v-15,25,-21,75,-32,108v16,-4,39,-2,51,-11xm201,-386v2,5,2,24,1,56r-1,-4v-16,26,-76,41,-109,26v2,-15,-2,-38,5,-48v50,15,70,-6,104,-30","w":293},"\u00c2":{"d":"58,-151r31,-102v8,-32,59,-32,103,-26v15,38,27,96,44,136v0,14,24,-1,24,15v-8,39,3,81,17,105v-19,14,-43,23,-69,30r-27,-85r-71,1r-15,82r-79,-15r18,-58r-19,3v-4,-7,-10,-51,-15,-69v0,-3,17,-5,50,-5v6,0,8,-4,8,-12xm146,-234v-9,25,-15,56,-23,83v11,2,31,3,42,1v-7,-27,-10,-59,-19,-84xm53,-302v9,-17,29,-31,36,-43r0,2v0,-11,12,-17,13,-29v14,-2,40,18,48,18r1,3r1,-4v4,11,38,12,46,25v-7,11,-9,27,-14,40v-16,5,-53,-36,-66,-13r-29,29v-5,-12,-23,-20,-36,-28","w":286},"\u015e":{"d":"94,-207v70,30,204,6,204,104v0,59,-56,83,-103,96v-9,-32,-79,-35,-100,-8v-18,24,-48,12,-75,6v7,-25,18,-51,27,-76v32,8,91,17,124,6v7,0,30,-4,34,-16v-23,-30,-136,-19,-169,-53v-30,-19,-44,-56,-32,-94v28,-91,187,-98,293,-70v-6,25,-9,53,-14,79v-41,-13,-127,-28,-172,-13v-17,-2,-47,26,-17,39xm90,22v-4,-46,89,-57,96,-14v-8,39,-84,50,-96,14xm168,-5v34,15,-13,69,-33,82v-12,-4,-31,-1,-41,-7v15,-21,39,-69,74,-75","w":310},"\u015f":{"d":"132,-117v-83,0,-176,-79,-108,-158v49,-56,182,-61,273,-38v-6,25,-9,54,-14,80v-39,-15,-128,-26,-172,-13v-13,4,-29,8,-30,23v23,45,111,21,164,50v28,16,53,26,53,70v0,55,-59,92,-101,92v-9,-2,-15,-7,-19,-18v-25,-11,-57,-8,-76,5v-10,28,-52,28,-82,15v7,-25,18,-51,27,-76v32,8,91,17,124,6v7,0,30,-4,34,-16v1,-13,-41,-22,-73,-22xm90,22v-4,-46,89,-57,96,-14v-8,39,-84,50,-96,14xm168,-5v34,15,-13,69,-33,82v-12,-4,-31,-1,-41,-7v23,-23,22,-79,74,-75","w":310},"\u021a":{"d":"100,-232v-22,-2,-79,22,-101,16v6,-24,9,-50,11,-83v66,-19,166,-21,252,-27v1,28,-10,36,-9,69v-15,15,-55,3,-74,20v-7,36,-12,122,-13,176v-30,10,-51,10,-87,21v0,-26,10,-47,12,-75xm164,-19v23,37,-37,57,-71,47v-10,-3,-20,-10,-18,-27v9,-27,65,-45,89,-20xm152,-17v35,14,-12,70,-32,82v-13,-3,-32,-1,-42,-7v23,-20,24,-79,74,-75","w":275},"\u021b":{"d":"13,-320r239,-13v2,0,4,2,5,4r-2,64v-25,9,-55,8,-90,13r9,204v-5,4,-15,4,-26,-2v-15,4,-21,5,-50,7v-8,9,-12,13,-21,10v7,-59,13,-102,9,-212r-82,8v-11,-19,5,-52,0,-78v0,-3,3,-5,9,-5xm80,15v-3,-45,90,-56,96,-13v-8,39,-85,50,-96,13xm130,68v-12,1,-55,2,-42,-11v20,-20,21,-74,70,-68v34,13,-13,64,-28,79","w":270},"\u2212":{"d":"166,-197v2,5,9,32,3,51r-81,11v-28,-1,-63,6,-87,1v0,-16,2,-34,-2,-47v49,-6,85,-3,144,-13v2,-2,10,-2,23,-3","w":185},"\u2013":{"d":"166,-197v2,5,9,32,3,51r-81,11v-28,-1,-63,6,-87,1v0,-16,2,-34,-2,-47v49,-6,85,-3,144,-13v2,-2,10,-2,23,-3","w":185},"\u2014":{"d":"166,-197v2,5,9,32,3,51r-81,11v-28,-1,-63,6,-87,1v0,-16,2,-34,-2,-47v49,-6,85,-3,144,-13v2,-2,10,-2,23,-3","w":185},"\u00e0":{"d":"192,-289v43,67,45,193,92,261v-19,11,-47,30,-70,39v-9,-28,-21,-50,-28,-80v-31,4,-57,5,-87,12v-10,9,-12,43,-17,56v-27,-2,-60,3,-83,-2r93,-272v39,0,71,-3,100,-14xm148,-234v-15,25,-21,75,-32,108v16,-4,39,-2,51,-11xm58,-370v24,1,52,-2,72,3v7,30,25,50,29,67r-53,5v-14,-11,-48,-69,-48,-75","w":293}}});