/*
 * 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 Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - jQuery Easing
 * 
 * Open source under the BSD License. 
 * 
 * Copyright Â© 2008 George McGinley Smith
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
*/

// t: current time, b: begInnIng value, c: change In value, d: duration
jQuery.easing['jswing'] = jQuery.easing['swing'];

jQuery.extend( jQuery.easing,
{
	def: 'easeOutQuad',
	swing: function (x, t, b, c, d) {
		//alert(jQuery.easing.default);
		return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
	},
	easeInQuad: function (x, t, b, c, d) {
		return c*(t/=d)*t + b;
	},
	easeOutQuad: function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	},
	easeInOutQuad: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t + b;
		return -c/2 * ((--t)*(t-2) - 1) + b;
	},
	easeInCubic: function (x, t, b, c, d) {
		return c*(t/=d)*t*t + b;
	},
	easeOutCubic: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t + 1) + b;
	},
	easeInOutCubic: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t + b;
		return c/2*((t-=2)*t*t + 2) + b;
	},
	easeInQuart: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t + b;
	},
	easeOutQuart: function (x, t, b, c, d) {
		return -c * ((t=t/d-1)*t*t*t - 1) + b;
	},
	easeInOutQuart: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
		return -c/2 * ((t-=2)*t*t*t - 2) + b;
	},
	easeInQuint: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t*t + b;
	},
	easeOutQuint: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t*t*t + 1) + b;
	},
	easeInOutQuint: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
		return c/2*((t-=2)*t*t*t*t + 2) + b;
	},
	easeInSine: function (x, t, b, c, d) {
		return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
	},
	easeOutSine: function (x, t, b, c, d) {
		return c * Math.sin(t/d * (Math.PI/2)) + b;
	},
	easeInOutSine: function (x, t, b, c, d) {
		return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
	},
	easeInExpo: function (x, t, b, c, d) {
		return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
	},
	easeOutExpo: function (x, t, b, c, d) {
		return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
	},
	easeInOutExpo: function (x, t, b, c, d) {
		if (t==0) return b;
		if (t==d) return b+c;
		if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
		return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
	},
	easeInCirc: function (x, t, b, c, d) {
		return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
	},
	easeOutCirc: function (x, t, b, c, d) {
		return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
	},
	easeInOutCirc: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
		return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
	},
	easeInElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	},
	easeOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
	},
	easeInOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
	},
	easeInBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*(t/=d)*t*((s+1)*t - s) + b;
	},
	easeOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	},
	easeInOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158; 
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
	},
	easeInBounce: function (x, t, b, c, d) {
		return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
	},
	easeOutBounce: function (x, t, b, c, d) {
		if ((t/=d) < (1/2.75)) {
			return c*(7.5625*t*t) + b;
		} else if (t < (2/2.75)) {
			return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
		} else if (t < (2.5/2.75)) {
			return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
		} else {
			return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
		}
	},
	easeInOutBounce: function (x, t, b, c, d) {
		if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
		return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
	}
});

/*
 *
 * TERMS OF USE - EASING EQUATIONS
 * 
 * Open source under the BSD License. 
 * 
 * Copyright Â© 2001 Robert Penner
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
 */

/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2009 M. Alsup
 * Version: 2.73 (04-NOV-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 *
 * Originally based on the work of:
 *	1) Matt Oakes
 *	2) Torsten Baldes (http://medienfreunde.com/lab/innerfade/)
 *	3) Benjamin Sterling (http://www.benjaminsterling.com/experiments/jqShuffle/)
 */
(function(i){var l="2.73";if(i.support==undefined){i.support={opacity:!(i.browser.msie)}}function a(q){if(i.fn.cycle.debug){f(q)}}function f(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "))}}i.fn.cycle=function(r,q){var s={s:this.selector,c:this.context};if(this.length===0&&r!="stop"){if(!i.isReady&&s.s){f("DOM not ready, queuing slideshow");i(function(){i(s.s,s.c).cycle(r,q)});return this}f("terminating; zero elements found by selector"+(i.isReady?"":" (DOM not ready)"));return this}return this.each(function(){var w=m(this,r,q);if(w===false){return}if(this.cycleTimeout){clearTimeout(this.cycleTimeout)}this.cycleTimeout=this.cyclePause=0;var x=i(this);var y=w.slideExpr?i(w.slideExpr,this):x.children();var u=y.get();if(u.length<2){f("terminating; too few slides: "+u.length);return}var t=k(x,y,u,w,s);if(t===false){return}var v=t.continuous?10:h(t.currSlide,t.nextSlide,t,!t.rev);if(v){v+=(t.delay||0);if(v<10){v=10}a("first timeout: "+v);this.cycleTimeout=setTimeout(function(){e(u,t,0,!t.rev)},v)}})};function m(q,t,r){if(q.cycleStop==undefined){q.cycleStop=0}if(t===undefined||t===null){t={}}if(t.constructor==String){switch(t){case"stop":q.cycleStop++;if(q.cycleTimeout){clearTimeout(q.cycleTimeout)}q.cycleTimeout=0;i(q).removeData("cycle.opts");return false;case"pause":q.cyclePause=1;return false;case"resume":q.cyclePause=0;if(r===true){t=i(q).data("cycle.opts");if(!t){f("options not found, can not resume");return false}if(q.cycleTimeout){clearTimeout(q.cycleTimeout);q.cycleTimeout=0}e(t.elements,t,1,1)}return false;case"prev":case"next":var u=i(q).data("cycle.opts");if(!u){f('options not found, "prev/next" ignored');return false}i.fn.cycle[t](u);return false;default:t={fx:t}}return t}else{if(t.constructor==Number){var s=t;t=i(q).data("cycle.opts");if(!t){f("options not found, can not advance slide");return false}if(s<0||s>=t.elements.length){f("invalid slide index: "+s);return false}t.nextSlide=s;if(q.cycleTimeout){clearTimeout(q.cycleTimeout);q.cycleTimeout=0}if(typeof r=="string"){t.oneTimeFx=r}e(t.elements,t,1,s>=t.currSlide);return false}}return t}function b(q,r){if(!i.support.opacity&&r.cleartype&&q.style.filter){try{q.style.removeAttribute("filter")}catch(s){}}}function k(y,J,u,t,E){var C=i.extend({},i.fn.cycle.defaults,t||{},i.metadata?y.metadata():i.meta?y.data():{});if(C.autostop){C.countdown=C.autostopCount||u.length}var r=y[0];y.data("cycle.opts",C);C.$cont=y;C.stopCount=r.cycleStop;C.elements=u;C.before=C.before?[C.before]:[];C.after=C.after?[C.after]:[];C.after.unshift(function(){C.busy=0});if(!i.support.opacity&&C.cleartype){C.after.push(function(){b(this,C)})}if(C.continuous){C.after.push(function(){e(u,C,0,!C.rev)})}n(C);if(!i.support.opacity&&C.cleartype&&!C.cleartypeNoBg){g(J)}if(y.css("position")=="static"){y.css("position","relative")}if(C.width){y.width(C.width)}if(C.height&&C.height!="auto"){y.height(C.height)}if(C.startingSlide){C.startingSlide=parseInt(C.startingSlide)}if(C.random){C.randomMap=[];for(var H=0;H<u.length;H++){C.randomMap.push(H)}C.randomMap.sort(function(L,w){return Math.random()-0.5});C.randomIndex=0;C.startingSlide=C.randomMap[0]}else{if(C.startingSlide>=u.length){C.startingSlide=0}}C.currSlide=C.startingSlide=C.startingSlide||0;var x=C.startingSlide;J.css({position:"absolute",top:0,left:0}).hide().each(function(w){var L=x?w>=x?u.length-(w-x):x-w:u.length-w;i(this).css("z-index",L)});i(u[x]).css("opacity",1).show();b(u[x],C);if(C.fit&&C.width){J.width(C.width)}if(C.fit&&C.height&&C.height!="auto"){J.height(C.height)}var D=C.containerResize&&!y.innerHeight();if(D){var v=0,B=0;for(var F=0;F<u.length;F++){var q=i(u[F]),K=q[0],A=q.outerWidth(),I=q.outerHeight();if(!A){A=K.offsetWidth}if(!I){I=K.offsetHeight}v=A>v?A:v;B=I>B?I:B}if(v>0&&B>0){y.css({width:v+"px",height:B+"px"})}}if(C.pause){y.hover(function(){this.cyclePause++},function(){this.cyclePause--})}if(c(C)===false){return false}var s=false;t.requeueAttempts=t.requeueAttempts||0;J.each(function(){var N=i(this);this.cycleH=(C.fit&&C.height)?C.height:N.height();this.cycleW=(C.fit&&C.width)?C.width:N.width();if(N.is("img")){var L=(i.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var O=(i.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var M=(i.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var w=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(L||O||M||w){if(E.s&&C.requeueOnImageNotLoaded&&++t.requeueAttempts<100){f(t.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){i(E.s,E.c).cycle(t)},C.requeueTimeout);s=true;return false}else{f("could not determine size of image: "+this.src,this.cycleW,this.cycleH)}}}return true});if(s){return false}C.cssBefore=C.cssBefore||{};C.animIn=C.animIn||{};C.animOut=C.animOut||{};J.not(":eq("+x+")").css(C.cssBefore);if(C.cssFirst){i(J[x]).css(C.cssFirst)}if(C.timeout){C.timeout=parseInt(C.timeout);if(C.speed.constructor==String){C.speed=i.fx.speeds[C.speed]||parseInt(C.speed)}if(!C.sync){C.speed=C.speed/2}while((C.timeout-C.speed)<250){C.timeout+=C.speed}}if(C.easing){C.easeIn=C.easeOut=C.easing}if(!C.speedIn){C.speedIn=C.speed}if(!C.speedOut){C.speedOut=C.speed}C.slideCount=u.length;C.currSlide=C.lastSlide=x;if(C.random){C.nextSlide=C.currSlide;if(++C.randomIndex==u.length){C.randomIndex=0}C.nextSlide=C.randomMap[C.randomIndex]}else{C.nextSlide=C.startingSlide>=(u.length-1)?0:C.startingSlide+1}if(!C.multiFx){var G=i.fn.cycle.transitions[C.fx];if(i.isFunction(G)){G(y,J,C)}else{if(C.fx!="custom"&&!C.multiFx){f("unknown transition: "+C.fx,"; slideshow terminating");return false}}}var z=J[x];if(C.before.length){C.before[0].apply(z,[z,z,C,true])}if(C.after.length>1){C.after[1].apply(z,[z,z,C,true])}if(C.next){i(C.next).bind(C.prevNextEvent,function(){return o(C,C.rev?-1:1)})}if(C.prev){i(C.prev).bind(C.prevNextEvent,function(){return o(C,C.rev?1:-1)})}if(C.pager){d(u,C)}j(C,u);return C}function n(q){q.original={before:[],after:[]};q.original.cssBefore=i.extend({},q.cssBefore);q.original.cssAfter=i.extend({},q.cssAfter);q.original.animIn=i.extend({},q.animIn);q.original.animOut=i.extend({},q.animOut);i.each(q.before,function(){q.original.before.push(this)});i.each(q.after,function(){q.original.after.push(this)})}function c(w){var u,s,r=i.fn.cycle.transitions;if(w.fx.indexOf(",")>0){w.multiFx=true;w.fxs=w.fx.replace(/\s*/g,"").split(",");for(u=0;u<w.fxs.length;u++){var v=w.fxs[u];s=r[v];if(!s||!r.hasOwnProperty(v)||!i.isFunction(s)){f("discarding unknown transition: ",v);w.fxs.splice(u,1);u--}}if(!w.fxs.length){f("No valid transitions named; slideshow terminating.");return false}}else{if(w.fx=="all"){w.multiFx=true;w.fxs=[];for(p in r){s=r[p];if(r.hasOwnProperty(p)&&i.isFunction(s)){w.fxs.push(p)}}}}if(w.multiFx&&w.randomizeEffects){var t=Math.floor(Math.random()*20)+30;for(u=0;u<t;u++){var q=Math.floor(Math.random()*w.fxs.length);w.fxs.push(w.fxs.splice(q,1)[0])}a("randomized fx sequence: ",w.fxs)}return true}function j(r,q){r.addSlide=function(u,v){var t=i(u),w=t[0];if(!r.autostopCount){r.countdown++}q[v?"unshift":"push"](w);if(r.els){r.els[v?"unshift":"push"](w)}r.slideCount=q.length;t.css("position","absolute");t[v?"prependTo":"appendTo"](r.$cont);if(v){r.currSlide++;r.nextSlide++}if(!i.support.opacity&&r.cleartype&&!r.cleartypeNoBg){g(t)}if(r.fit&&r.width){t.width(r.width)}if(r.fit&&r.height&&r.height!="auto"){$slides.height(r.height)}w.cycleH=(r.fit&&r.height)?r.height:t.height();w.cycleW=(r.fit&&r.width)?r.width:t.width();t.css(r.cssBefore);if(r.pager){i.fn.cycle.createPagerAnchor(q.length-1,w,i(r.pager),q,r)}if(i.isFunction(r.onAddSlide)){r.onAddSlide(t)}else{t.hide()}}}i.fn.cycle.resetState=function(r,q){q=q||r.fx;r.before=[];r.after=[];r.cssBefore=i.extend({},r.original.cssBefore);r.cssAfter=i.extend({},r.original.cssAfter);r.animIn=i.extend({},r.original.animIn);r.animOut=i.extend({},r.original.animOut);r.fxFn=null;i.each(r.original.before,function(){r.before.push(this)});i.each(r.original.after,function(){r.after.push(this)});var s=i.fn.cycle.transitions[q];if(i.isFunction(s)){s(r.$cont,i(r.elements),r)}};function e(x,q,w,y){if(w&&q.busy&&q.manualTrump){i(x).stop(true,true);q.busy=false}if(q.busy){return}var u=q.$cont[0],A=x[q.currSlide],z=x[q.nextSlide];if(u.cycleStop!=q.stopCount||u.cycleTimeout===0&&!w){return}if(!w&&!u.cyclePause&&((q.autostop&&(--q.countdown<=0))||(q.nowrap&&!q.random&&q.nextSlide<q.currSlide))){if(q.end){q.end(q)}return}if(w||!u.cyclePause){var v=q.fx;A.cycleH=A.cycleH||i(A).height();A.cycleW=A.cycleW||i(A).width();z.cycleH=z.cycleH||i(z).height();z.cycleW=z.cycleW||i(z).width();if(q.multiFx){if(q.lastFx==undefined||++q.lastFx>=q.fxs.length){q.lastFx=0}v=q.fxs[q.lastFx];q.currFx=v}if(q.oneTimeFx){v=q.oneTimeFx;q.oneTimeFx=null}i.fn.cycle.resetState(q,v);if(q.before.length){i.each(q.before,function(B,C){if(u.cycleStop!=q.stopCount){return}C.apply(z,[A,z,q,y])})}var s=function(){i.each(q.after,function(B,C){if(u.cycleStop!=q.stopCount){return}C.apply(z,[A,z,q,y])})};if(q.nextSlide!=q.currSlide){q.busy=1;if(q.fxFn){q.fxFn(A,z,q,s,y)}else{if(i.isFunction(i.fn.cycle[q.fx])){i.fn.cycle[q.fx](A,z,q,s)}else{i.fn.cycle.custom(A,z,q,s,w&&q.fastOnEvent)}}}q.lastSlide=q.currSlide;if(q.random){q.currSlide=q.nextSlide;if(++q.randomIndex==x.length){q.randomIndex=0}q.nextSlide=q.randomMap[q.randomIndex]}else{var t=(q.nextSlide+1)==x.length;q.nextSlide=t?0:q.nextSlide+1;q.currSlide=t?x.length-1:q.nextSlide-1}if(q.pager){i.fn.cycle.updateActivePagerLink(q.pager,q.currSlide)}}var r=0;if(q.timeout&&!q.continuous){r=h(A,z,q,y)}else{if(q.continuous&&u.cyclePause){r=10}}if(r>0){u.cycleTimeout=setTimeout(function(){e(x,q,0,!q.rev)},r)}}i.fn.cycle.updateActivePagerLink=function(q,r){i(q).each(function(){i(this).find("a").removeClass("activeSlide").filter("a:eq("+r+")").addClass("activeSlide")})};function h(v,s,u,r){if(u.timeoutFn){var q=u.timeoutFn(v,s,u,r);while((q-u.speed)<250){q+=u.speed}a("calculated timeout: "+q+"; speed: "+u.speed);if(q!==false){return q}}return u.timeout}i.fn.cycle.next=function(q){o(q,q.rev?-1:1)};i.fn.cycle.prev=function(q){o(q,q.rev?1:-1)};function o(r,u){var q=r.elements;var t=r.$cont[0],s=t.cycleTimeout;if(s){clearTimeout(s);t.cycleTimeout=0}if(r.random&&u<0){r.randomIndex--;if(--r.randomIndex==-2){r.randomIndex=q.length-2}else{if(r.randomIndex==-1){r.randomIndex=q.length-1}}r.nextSlide=r.randomMap[r.randomIndex]}else{if(r.random){if(++r.randomIndex==q.length){r.randomIndex=0}r.nextSlide=r.randomMap[r.randomIndex]}else{r.nextSlide=r.currSlide+u;if(r.nextSlide<0){if(r.nowrap){return false}r.nextSlide=q.length-1}else{if(r.nextSlide>=q.length){if(r.nowrap){return false}r.nextSlide=0}}}}if(i.isFunction(r.prevNextClick)){r.prevNextClick(u>0,r.nextSlide,q[r.nextSlide])}e(q,r,1,u>=0);return false}function d(r,s){var q=i(s.pager);i.each(r,function(t,u){i.fn.cycle.createPagerAnchor(t,u,q,r,s)});i.fn.cycle.updateActivePagerLink(s.pager,s.startingSlide)}i.fn.cycle.createPagerAnchor=function(u,v,s,t,w){var r;if(i.isFunction(w.pagerAnchorBuilder)){r=w.pagerAnchorBuilder(u,v)}else{r='<a href="#">'+(u+1)+"</a>"}if(!r){return}var x=i(r);if(x.parents("body").length===0){var q=[];if(s.length>1){s.each(function(){var y=x.clone(true);i(this).append(y);q.push(y[0])});x=i(q)}else{x.appendTo(s)}}x.bind(w.pagerEvent,function(A){A.preventDefault();w.nextSlide=u;var z=w.$cont[0],y=z.cycleTimeout;if(y){clearTimeout(y);z.cycleTimeout=0}if(i.isFunction(w.pagerClick)){w.pagerClick(w.nextSlide,t[w.nextSlide])}e(t,w,1,w.currSlide<u);return false});if(w.pagerEvent!="click"){x.click(function(){return false})}if(w.pauseOnPagerHover){x.hover(function(){w.$cont[0].cyclePause++},function(){w.$cont[0].cyclePause--})}};i.fn.cycle.hopsFromLast=function(t,s){var r,q=t.lastSlide,u=t.currSlide;if(s){r=u>q?u-q:t.slideCount-q}else{r=u<q?q-u:q+t.slideCount-u}return r};function g(s){function r(t){t=parseInt(t).toString(16);return t.length<2?"0"+t:t}function q(w){for(;w&&w.nodeName.toLowerCase()!="html";w=w.parentNode){var t=i.css(w,"background-color");if(t.indexOf("rgb")>=0){var u=t.match(/\d+/g);return"#"+r(u[0])+r(u[1])+r(u[2])}if(t&&t!="transparent"){return t}}return"#ffffff"}s.each(function(){i(this).css("background-color",q(this))})}i.fn.cycle.commonReset=function(v,t,u,r,s,q){i(u.elements).not(v).hide();u.cssBefore.opacity=1;u.cssBefore.display="block";if(r!==false&&t.cycleW>0){u.cssBefore.width=t.cycleW}if(s!==false&&t.cycleH>0){u.cssBefore.height=t.cycleH}u.cssAfter=u.cssAfter||{};u.cssAfter.display="none";i(v).css("zIndex",u.slideCount+(q===true?1:0));i(t).css("zIndex",u.slideCount+(q===true?0:1))};i.fn.cycle.custom=function(B,v,q,s,r){var A=i(B),w=i(v);var t=q.speedIn,z=q.speedOut,u=q.easeIn,y=q.easeOut;w.css(q.cssBefore);if(r){if(typeof r=="number"){t=z=r}else{t=z=1}u=y=null}var x=function(){w.animate(q.animIn,t,u,s)};A.animate(q.animOut,z,y,function(){if(q.cssAfter){A.css(q.cssAfter)}if(!q.sync){x()}});if(q.sync){x()}};i.fn.cycle.transitions={fade:function(r,s,q){s.not(":eq("+q.currSlide+")").css("opacity",0);q.before.push(function(v,t,u){i.fn.cycle.commonReset(v,t,u);u.cssBefore.opacity=0});q.animIn={opacity:1};q.animOut={opacity:0};q.cssBefore={top:0,left:0}}};i.fn.cycle.ver=function(){return l};i.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,prevNextEvent:"click",pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!i.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250}})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2008 M. Alsup
 * Version:	 2.72
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function(a){a.fn.cycle.transitions.none=function(c,d,b){b.fxFn=function(g,e,f,h){a(e).show();a(g).hide();h()}};a.fn.cycle.transitions.scrollUp=function(d,e,c){d.css("overflow","hidden");c.before.push(a.fn.cycle.commonReset);var b=d.height();c.cssBefore={top:b,left:0};c.cssFirst={top:0};c.animIn={top:0};c.animOut={top:-b}};a.fn.cycle.transitions.scrollDown=function(d,e,c){d.css("overflow","hidden");c.before.push(a.fn.cycle.commonReset);var b=d.height();c.cssFirst={top:0};c.cssBefore={top:-b,left:0};c.animIn={top:0};c.animOut={top:b}};a.fn.cycle.transitions.scrollLeft=function(d,e,c){d.css("overflow","hidden");c.before.push(a.fn.cycle.commonReset);var b=d.width();c.cssFirst={left:0};c.cssBefore={left:b,top:0};c.animIn={left:0};c.animOut={left:0-b}};a.fn.cycle.transitions.scrollRight=function(d,e,c){d.css("overflow","hidden");c.before.push(a.fn.cycle.commonReset);var b=d.width();c.cssFirst={left:0};c.cssBefore={left:-b,top:0};c.animIn={left:0};c.animOut={left:b}};a.fn.cycle.transitions.scrollHorz=function(c,d,b){c.css("overflow","hidden").width();b.before.push(function(h,f,g,e){a.fn.cycle.commonReset(h,f,g);g.cssBefore.left=e?(f.cycleW-1):(1-f.cycleW);g.animOut.left=e?-h.cycleW:h.cycleW});b.cssFirst={left:0};b.cssBefore={top:0};b.animIn={left:0};b.animOut={top:0}};a.fn.cycle.transitions.scrollVert=function(c,d,b){c.css("overflow","hidden");b.before.push(function(h,f,g,e){a.fn.cycle.commonReset(h,f,g);g.cssBefore.top=e?(1-f.cycleH):(f.cycleH-1);g.animOut.top=e?h.cycleH:-h.cycleH});b.cssFirst={top:0};b.cssBefore={left:0};b.animIn={top:0};b.animOut={left:0}};a.fn.cycle.transitions.slideX=function(c,d,b){b.before.push(function(g,e,f){a(f.elements).not(g).hide();a.fn.cycle.commonReset(g,e,f,false,true);f.animIn.width=e.cycleW});b.cssBefore={left:0,top:0,width:0};b.animIn={width:"show"};b.animOut={width:0}};a.fn.cycle.transitions.slideY=function(c,d,b){b.before.push(function(g,e,f){a(f.elements).not(g).hide();a.fn.cycle.commonReset(g,e,f,true,false);f.animIn.height=e.cycleH});b.cssBefore={left:0,top:0,height:0};b.animIn={height:"show"};b.animOut={height:0}};a.fn.cycle.transitions.shuffle=function(e,f,d){var c,b=e.css("overflow","visible").width();f.css({left:0,top:0});d.before.push(function(i,g,h){a.fn.cycle.commonReset(i,g,h,true,true,true)});if(!d.speedAdjusted){d.speed=d.speed/2;d.speedAdjusted=true}d.random=0;d.shuffle=d.shuffle||{left:-b,top:15};d.els=[];for(c=0;c<f.length;c++){d.els.push(f[c])}for(c=0;c<d.currSlide;c++){d.els.push(d.els.shift())}d.fxFn=function(m,j,l,g,i){var h=i?a(m):a(j);a(j).css(l.cssBefore);var k=l.slideCount;h.animate(l.shuffle,l.speedIn,l.easeIn,function(){var o=a.fn.cycle.hopsFromLast(l,i);for(var q=0;q<o;q++){i?l.els.push(l.els.shift()):l.els.unshift(l.els.pop())}if(i){for(var r=0,n=l.els.length;r<n;r++){a(l.els[r]).css("z-index",n-r+k)}}else{var s=a(m).css("z-index");h.css("z-index",parseInt(s)+1+k)}h.animate({left:0,top:0},l.speedOut,l.easeOut,function(){a(i?this:m).hide();if(g){g()}})})};d.cssBefore={display:"block",opacity:1,top:0,left:0}};a.fn.cycle.transitions.turnUp=function(c,d,b){b.before.push(function(g,e,f){a.fn.cycle.commonReset(g,e,f,true,false);f.cssBefore.top=e.cycleH;f.animIn.height=e.cycleH});b.cssFirst={top:0};b.cssBefore={left:0,height:0};b.animIn={top:0};b.animOut={height:0}};a.fn.cycle.transitions.turnDown=function(c,d,b){b.before.push(function(g,e,f){a.fn.cycle.commonReset(g,e,f,true,false);f.animIn.height=e.cycleH;f.animOut.top=g.cycleH});b.cssFirst={top:0};b.cssBefore={left:0,top:0,height:0};b.animOut={height:0}};a.fn.cycle.transitions.turnLeft=function(c,d,b){b.before.push(function(g,e,f){a.fn.cycle.commonReset(g,e,f,false,true);f.cssBefore.left=e.cycleW;f.animIn.width=e.cycleW});b.cssBefore={top:0,width:0};b.animIn={left:0};b.animOut={width:0}};a.fn.cycle.transitions.turnRight=function(c,d,b){b.before.push(function(g,e,f){a.fn.cycle.commonReset(g,e,f,false,true);f.animIn.width=e.cycleW;f.animOut.left=g.cycleW});b.cssBefore={top:0,left:0,width:0};b.animIn={left:0};b.animOut={width:0}};a.fn.cycle.transitions.zoom=function(c,d,b){b.before.push(function(g,e,f){a.fn.cycle.commonReset(g,e,f,false,false,true);f.cssBefore.top=e.cycleH/2;f.cssBefore.left=e.cycleW/2;f.animIn={top:0,left:0,width:e.cycleW,height:e.cycleH};f.animOut={width:0,height:0,top:g.cycleH/2,left:g.cycleW/2}});b.cssFirst={top:0,left:0};b.cssBefore={width:0,height:0}};a.fn.cycle.transitions.fadeZoom=function(c,d,b){b.before.push(function(g,e,f){a.fn.cycle.commonReset(g,e,f,false,false);f.cssBefore.left=e.cycleW/2;f.cssBefore.top=e.cycleH/2;f.animIn={top:0,left:0,width:e.cycleW,height:e.cycleH}});b.cssBefore={width:0,height:0};b.animOut={opacity:0}};a.fn.cycle.transitions.blindX=function(d,e,c){var b=d.css("overflow","hidden").width();c.before.push(function(h,f,g){a.fn.cycle.commonReset(h,f,g);g.animIn.width=f.cycleW;g.animOut.left=h.cycleW});c.cssBefore={left:b,top:0};c.animIn={left:0};c.animOut={left:b}};a.fn.cycle.transitions.blindY=function(d,e,c){var b=d.css("overflow","hidden").height();c.before.push(function(h,f,g){a.fn.cycle.commonReset(h,f,g);g.animIn.height=f.cycleH;g.animOut.top=h.cycleH});c.cssBefore={top:b,left:0};c.animIn={top:0};c.animOut={top:b}};a.fn.cycle.transitions.blindZ=function(e,f,d){var c=e.css("overflow","hidden").height();var b=e.width();d.before.push(function(i,g,h){a.fn.cycle.commonReset(i,g,h);h.animIn.height=g.cycleH;h.animOut.top=i.cycleH});d.cssBefore={top:c,left:b};d.animIn={top:0,left:0};d.animOut={top:c,left:b}};a.fn.cycle.transitions.growX=function(c,d,b){b.before.push(function(g,e,f){a.fn.cycle.commonReset(g,e,f,false,true);f.cssBefore.left=this.cycleW/2;f.animIn={left:0,width:this.cycleW};f.animOut={left:0}});b.cssBefore={width:0,top:0}};a.fn.cycle.transitions.growY=function(c,d,b){b.before.push(function(g,e,f){a.fn.cycle.commonReset(g,e,f,true,false);f.cssBefore.top=this.cycleH/2;f.animIn={top:0,height:this.cycleH};f.animOut={top:0}});b.cssBefore={height:0,left:0}};a.fn.cycle.transitions.curtainX=function(c,d,b){b.before.push(function(g,e,f){a.fn.cycle.commonReset(g,e,f,false,true,true);f.cssBefore.left=e.cycleW/2;f.animIn={left:0,width:this.cycleW};f.animOut={left:g.cycleW/2,width:0}});b.cssBefore={top:0,width:0}};a.fn.cycle.transitions.curtainY=function(c,d,b){b.before.push(function(g,e,f){a.fn.cycle.commonReset(g,e,f,true,false,true);f.cssBefore.top=e.cycleH/2;f.animIn={top:0,height:e.cycleH};f.animOut={top:g.cycleH/2,height:0}});b.cssBefore={left:0,height:0}};a.fn.cycle.transitions.cover=function(f,g,e){var i=e.direction||"left";var b=f.css("overflow","hidden").width();var c=f.height();e.before.push(function(j,d,h){a.fn.cycle.commonReset(j,d,h);if(i=="right"){h.cssBefore.left=-b}else{if(i=="up"){h.cssBefore.top=c}else{if(i=="down"){h.cssBefore.top=-c}else{h.cssBefore.left=b}}}});e.animIn={left:0,top:0};e.animOut={opacity:1};e.cssBefore={top:0,left:0}};a.fn.cycle.transitions.uncover=function(f,g,e){var i=e.direction||"left";var b=f.css("overflow","hidden").width();var c=f.height();e.before.push(function(j,d,h){a.fn.cycle.commonReset(j,d,h,true,true,true);if(i=="right"){h.animOut.left=b}else{if(i=="up"){h.animOut.top=-c}else{if(i=="down"){h.animOut.top=c}else{h.animOut.left=-b}}}});e.animIn={left:0,top:0};e.animOut={opacity:1};e.cssBefore={top:0,left:0}};a.fn.cycle.transitions.toss=function(e,f,d){var b=e.css("overflow","visible").width();var c=e.height();d.before.push(function(i,g,h){a.fn.cycle.commonReset(i,g,h,true,true,true);if(!h.animOut.left&&!h.animOut.top){h.animOut={left:b*2,top:-c/2,opacity:0}}else{h.animOut.opacity=0}});d.cssBefore={left:0,top:0};d.animIn={left:0}};a.fn.cycle.transitions.wipe=function(s,m,e){var q=s.css("overflow","hidden").width();var j=s.height();e.cssBefore=e.cssBefore||{};var g;if(e.clip){if(/l2r/.test(e.clip)){g="rect(0px 0px "+j+"px 0px)"}else{if(/r2l/.test(e.clip)){g="rect(0px "+q+"px "+j+"px "+q+"px)"}else{if(/t2b/.test(e.clip)){g="rect(0px "+q+"px 0px 0px)"}else{if(/b2t/.test(e.clip)){g="rect("+j+"px "+q+"px "+j+"px 0px)"}else{if(/zoom/.test(e.clip)){var o=parseInt(j/2);var f=parseInt(q/2);g="rect("+o+"px "+f+"px "+o+"px "+f+"px)"}}}}}}e.cssBefore.clip=e.cssBefore.clip||g||"rect(0px 0px 0px 0px)";var k=e.cssBefore.clip.match(/(\d+)/g);var u=parseInt(k[0]),c=parseInt(k[1]),n=parseInt(k[2]),i=parseInt(k[3]);e.before.push(function(w,h,t){if(w==h){return}var d=a(w),b=a(h);a.fn.cycle.commonReset(w,h,t,true,true,false);t.cssAfter.display="block";var r=1,l=parseInt((t.speedIn/13))-1;(function v(){var y=u?u-parseInt(r*(u/l)):0;var z=i?i-parseInt(r*(i/l)):0;var A=n<j?n+parseInt(r*((j-n)/l||1)):j;var x=c<q?c+parseInt(r*((q-c)/l||1)):q;b.css({clip:"rect("+y+"px "+x+"px "+A+"px "+z+"px)"});(r++<=l)?setTimeout(v,13):d.css("display","none")})()});e.cssBefore={display:"block",opacity:1,top:0,left:0};e.animIn={left:0};e.animOut={left:0}}})(jQuery);

ï»¿/**
 * jQuery.query - Query String Modification and Creation for jQuery
 * Written by Blair Mitchelmore (blair DOT mitchelmore AT gmail DOT com)
 * Licensed under the WTFPL (http://sam.zoy.org/wtfpl/).
 * Date: 2009/8/13
 *
 * @author Blair Mitchelmore
 * @version 2.1.7
 *
 **/
new function(settings) { 
  // Various Settings
  var $separator = settings.separator || '&';
  var $spaces = settings.spaces === false ? false : true;
  var $suffix = settings.suffix === false ? '' : '[]';
  var $prefix = settings.prefix === false ? false : true;
  var $hash = $prefix ? settings.hash === true ? "#" : "?" : "";
  var $numbers = settings.numbers === false ? false : true;
  
  jQuery.query = new function() {
    var is = function(o, t) {
      return o != undefined && o !== null && (!!t ? o.constructor == t : true);
    };
    var parse = function(path) {
      var m, rx = /\[([^[]*)\]/g, match = /^([^[]+)(\[.*\])?$/.exec(path), base = match[1], tokens = [];
      while (m = rx.exec(match[2])) tokens.push(m[1]);
      return [base, tokens];
    };
    var set = function(target, tokens, value) {
      var o, token = tokens.shift();
      if (typeof target != 'object') target = null;
      if (token === "") {
        if (!target) target = [];
        if (is(target, Array)) {
          target.push(tokens.length == 0 ? value : set(null, tokens.slice(0), value));
        } else if (is(target, Object)) {
          var i = 0;
          while (target[i++] != null);
          target[--i] = tokens.length == 0 ? value : set(target[i], tokens.slice(0), value);
        } else {
          target = [];
          target.push(tokens.length == 0 ? value : set(null, tokens.slice(0), value));
        }
      } else if (token && token.match(/^\s*[0-9]+\s*$/)) {
        var index = parseInt(token, 10);
        if (!target) target = [];
        target[index] = tokens.length == 0 ? value : set(target[index], tokens.slice(0), value);
      } else if (token) {
        var index = token.replace(/^\s*|\s*$/g, "");
        if (!target) target = {};
        if (is(target, Array)) {
          var temp = {};
          for (var i = 0; i < target.length; ++i) {
            temp[i] = target[i];
          }
          target = temp;
        }
        target[index] = tokens.length == 0 ? value : set(target[index], tokens.slice(0), value);
      } else {
        return value;
      }
      return target;
    };
    
    var queryObject = function(a) {
      var self = this;
      self.keys = {};
      
      if (a.queryObject) {
        jQuery.each(a.get(), function(key, val) {
          self.SET(key, val);
        });
      } else {
        jQuery.each(arguments, function() {
          var q = "" + this;
          q = q.replace(/^[?#]/,''); // remove any leading ? || #
          q = q.replace(/[;&]$/,''); // remove any trailing & || ;
          if ($spaces) q = q.replace(/[+]/g,' '); // replace +'s with spaces
          
          jQuery.each(q.split(/[&;]/), function(){
            var key = decodeURIComponent(this.split('=')[0] || "");
            var val = decodeURIComponent(this.split('=')[1] || "");
            
            if (!key) return;
            
            if ($numbers) {
              if (/^[+-]?[0-9]+\.[0-9]*$/.test(val)) // simple float regex
                val = parseFloat(val);
              else if (/^[+-]?[0-9]+$/.test(val)) // simple int regex
                val = parseInt(val, 10);
            }
            
            val = (!val && val !== 0) ? true : val;
            
            if (val !== false && val !== true && typeof val != 'number')
              val = val;
            
            self.SET(key, val);
          });
        });
      }
      return self;
    };
    
    queryObject.prototype = {
      queryObject: true,
      has: function(key, type) {
        var value = this.get(key);
        return is(value, type);
      },
      GET: function(key) {
        if (!is(key)) return this.keys;
        var parsed = parse(key), base = parsed[0], tokens = parsed[1];
        var target = this.keys[base];
        while (target != null && tokens.length != 0) {
          target = target[tokens.shift()];
        }
        return typeof target == 'number' ? target : target || "";
      },
      get: function(key) {
        var target = this.GET(key);
        if (is(target, Object))
          return jQuery.extend(true, {}, target);
        else if (is(target, Array))
          return target.slice(0);
        return target;
      },
      SET: function(key, val) {
        var value = !is(val) ? null : val;
        var parsed = parse(key), base = parsed[0], tokens = parsed[1];
        var target = this.keys[base];
        this.keys[base] = set(target, tokens.slice(0), value);
        return this;
      },
      set: function(key, val) {
        return this.copy().SET(key, val);
      },
      REMOVE: function(key) {
        return this.SET(key, null).COMPACT();
      },
      remove: function(key) {
        return this.copy().REMOVE(key);
      },
      EMPTY: function() {
        var self = this;
        jQuery.each(self.keys, function(key, value) {
          delete self.keys[key];
        });
        return self;
      },
      load: function(url) {
        var hash = url.replace(/^.*?[#](.+?)(?:\?.+)?$/, "$1");
        var search = url.replace(/^.*?[?](.+?)(?:#.+)?$/, "$1");
        return new queryObject(url.length == search.length ? '' : search, url.length == hash.length ? '' : hash);
      },
      empty: function() {
        return this.copy().EMPTY();
      },
      copy: function() {
        return new queryObject(this);
      },
      COMPACT: function() {
        function build(orig) {
          var obj = typeof orig == "object" ? is(orig, Array) ? [] : {} : orig;
          if (typeof orig == 'object') {
            function add(o, key, value) {
              if (is(o, Array))
                o.push(value);
              else
                o[key] = value;
            }
            jQuery.each(orig, function(key, value) {
              if (!is(value)) return true;
              add(obj, key, build(value));
            });
          }
          return obj;
        }
        this.keys = build(this.keys);
        return this;
      },
      compact: function() {
        return this.copy().COMPACT();
      },
      toString: function() {
        var i = 0, queryString = [], chunks = [], self = this;
        var encode = function(str) {
          str = str + "";
          if ($spaces) str = str.replace(/ /g, "+");
          return encodeURIComponent(str);
        };
        var addFields = function(arr, key, value) {
          if (!is(value) || value === false) return;
          var o = [encode(key)];
          if (value !== true) {
            o.push("=");
            o.push(encode(value));
          }
          arr.push(o.join(""));
        };
        var build = function(obj, base) {
          var newKey = function(key) {
            return !base || base == "" ? [key].join("") : [base, "[", key, "]"].join("");
          };
          jQuery.each(obj, function(key, value) {
            if (typeof value == 'object') 
              build(value, newKey(key));
            else
              addFields(chunks, newKey(key), value);
          });
        };
        
        build(this.keys);
        
        if (chunks.length > 0) queryString.push($hash);
        queryString.push(chunks.join($separator));
        
        return queryString.join("");
      }
    };
    
    return new queryObject(location.search, location.hash);
  };
}(jQuery.query || {}); // Pass in jQuery.query as settings object


// IE5.5+ PNG Alpha Fix v2.0 Alpha: Background Tiling Support
// (c) 2008-2009 Angus Turnbull http://www.twinhelix.com

// This is licensed under the GNU LGPL, version 2.1 or later.
// For details, see: http://creativecommons.org/licenses/LGPL/2.1/

var IEPNGFix = window.IEPNGFix || {};

IEPNGFix.tileBG = function(elm, pngSrc, ready) {
	// Params: A reference to a DOM element, the PNG src file pathname, and a
	// hidden "ready-to-run" passed when called back after image preloading.

	var data = this.data[elm.uniqueID],
		elmW = Math.max(elm.clientWidth, elm.scrollWidth),
		elmH = Math.max(elm.clientHeight, elm.scrollHeight),
		bgX = elm.currentStyle.backgroundPositionX,
		bgY = elm.currentStyle.backgroundPositionY,
		bgR = elm.currentStyle.backgroundRepeat;

	// Cache of DIVs created per element, and image preloader/data.
	if (!data.tiles) {
		data.tiles = {
			elm: elm,
			src: '',
			cache: [],
			img: new Image(),
			old: {}
		};
	}
	var tiles = data.tiles,
		pngW = tiles.img.width,
		pngH = tiles.img.height;

	if (pngSrc) {
		if (!ready && pngSrc != tiles.src) {
			// New image? Preload it with a callback to detect dimensions.
			tiles.img.onload = function() {
				this.onload = null;
				IEPNGFix.tileBG(elm, pngSrc, 1);
			};
			return tiles.img.src = pngSrc;
		}
	} else {
		// No image?
		if (tiles.src) ready = 1;
		pngW = pngH = 0;
	}
	tiles.src = pngSrc;

	if (!ready && elmW == tiles.old.w && elmH == tiles.old.h &&
		bgX == tiles.old.x && bgY == tiles.old.y && bgR == tiles.old.r) {
		return;
	}

	// Convert English and percentage positions to pixels.
	var pos = {
			top: '0%',
			left: '0%',
			center: '50%',
			bottom: '100%',
			right: '100%'
		},
		x,
		y,
		pc;
	x = pos[bgX] || bgX;
	y = pos[bgY] || bgY;
	if (pc = x.match(/(\d+)%/)) {
		x = Math.round((elmW - pngW) * (parseInt(pc[1]) / 100));
	}
	if (pc = y.match(/(\d+)%/)) {
		y = Math.round((elmH - pngH) * (parseInt(pc[1]) / 100));
	}
	x = parseInt(x);
	y = parseInt(y);

	// Handle backgroundRepeat.
	var repeatX = { 'repeat': 1, 'repeat-x': 1 }[bgR],
		repeatY = { 'repeat': 1, 'repeat-y': 1 }[bgR];
	if (repeatX) {
		x %= pngW;
		if (x > 0) x -= pngW;
	}
	if (repeatY) {
		y %= pngH;
		if (y > 0) y -= pngH;
	}

	// Go!
	this.hook.enabled = 0;
	if (!({ relative: 1, absolute: 1 }[elm.currentStyle.position])) {
		elm.style.position = 'relative';
	}
	var count = 0,
		xPos,
		maxX = repeatX ? elmW : x + 0.1,
		yPos,
		maxY = repeatY ? elmH : y + 0.1,
		d,
		s,
		isNew;
	if (pngW && pngH) {
		for (xPos = x; xPos < maxX; xPos += pngW) {
			for (yPos = y; yPos < maxY; yPos += pngH) {
				isNew = 0;
				if (!tiles.cache[count]) {
					tiles.cache[count] = document.createElement('div');
					isNew = 1;
				}
				var clipR = Math.max(0, xPos + pngW > elmW ? elmW - xPos : pngW),
					clipB = Math.max(0, yPos + pngH > elmH ? elmH - yPos : pngH);
				d = tiles.cache[count];
				s = d.style;
				s.behavior = 'none';
				s.left = (xPos - parseInt(elm.currentStyle.paddingLeft)) + 'px';
				s.top = yPos + 'px';
				s.width = clipR + 'px';
				s.height = clipB + 'px';
				s.clip = 'rect(' +
					(yPos < 0 ? 0 - yPos : 0) + 'px,' +
					clipR + 'px,' +
					clipB + 'px,' +
					(xPos < 0 ? 0 - xPos : 0) + 'px)';
				s.display = 'block';
				if (isNew) {
					s.position = 'absolute';
					s.zIndex = -999;
					if (elm.firstChild) {
						elm.insertBefore(d, elm.firstChild);
					} else {
						elm.appendChild(d);
					}
				}
				this.fix(d, pngSrc, 0);
				count++;
			}
		}
	}
	while (count < tiles.cache.length) {
		this.fix(tiles.cache[count], '', 0);
		tiles.cache[count++].style.display = 'none';
	}

	this.hook.enabled = 1;

	// Cache so updates are infrequent.
	tiles.old = {
		w: elmW,
		h: elmH,
		x: bgX,
		y: bgY,
		r: bgR
	};
};


IEPNGFix.update = function() {
	// Update all PNG backgrounds.
	for (var i in IEPNGFix.data) {
		var t = IEPNGFix.data[i].tiles;
		if (t && t.elm && t.src) {
			IEPNGFix.tileBG(t.elm, t.src);
		}
	}
};
IEPNGFix.update.timer = 0;


if (window.attachEvent && !window.opera) {
	window.attachEvent('onresize', function() {
		clearTimeout(IEPNGFix.update.timer);
		IEPNGFix.update.timer = setTimeout(IEPNGFix.update, 100);
	});
}


/* Mailing list widget, homepage bottom */
$(document).ready(function() {
    if ($('#signup_box') != undefined ) {
        $('#signup_box').focus(function() {
            $(this).attr("value", '');
        });
    };
});

$(document).ready(function() {
    function updateMenu() {
        setTimeout(function() {
            Cufon.replace('#navigation .foundry', { hover: true }, false);
        }, 10);
    }
    $('#navigation li').hover(updateMenu, updateMenu);

    $(window).bind("resize", checkChromeValid);

    function checkChromeValid(e) {
        var newWindowWidth = $(window).width();

        if (newWindowWidth < 1050) {
            $("#chrome").hide("slow");
        } else {
            $("#chrome").show("show");
        }
    }
    $('.hidden').hide();
});

var detail_tmp_var = "";

function showDetail(id, parent_id) {
    var div = $("#parent"+parent_id);
    detail_tmp_var = div.html();
    div.html(category_data(id));
}

function resetDetail(parent_id) {
    var div = $("#parent"+parent_id);
    if(detail_tmp_var == "") {
      div.html("Roll over to see more info");
    } else {
      div.html(detail_tmp_var);
    }
}

function toggle(id, text) {
    var link = $('#link_'+id);
    $('#'+id).slideToggle(400);

    if (link.text() == "Show " + text) {
        link.text("Hide " + text);
        link.addClass("on");
    } else {
        link.text("Show " + text);
        link.removeClass("on");
    }
}

function toggleDiv(div, link) {
    div.slideToggle(400);

    if (link) {
        if (link.text() == "Expand") {
            link.text("Close")
        } else {
            link.text("Expand");
        }
    }
}

function loadContent(id) {
    $('.options a').removeClass("on");

    $('#option_content > div').each(function(i, div) {
        $(div).hide();
    });

    $("#" + id).addClass("on");
    $("#" + id + "_content").show();
}


function extractImageId(url) {
    var str = $("#fullResImage").attr('src');
    if (str != null) {
        var match = /\/(\d+)\//.exec(str);
        if (match != null && match.length == 2) {
            var id = match[1];
            $("#downloadImageLink").attr('href', url + id);
            return true;
        }
        $("#downloadImageLink").attr('href', str);
    }
}


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © Copyright by The Foundry, 1996
 */
Cufon.registerFont({"w":180,"face":{"font-family":"FoundrySans","font-weight":200,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 3 3 0 0 0 0 0 0","ascent":"253","descent":"-107","x-height":"4","bbox":"-10 -333.128 352 92","underline-thickness":"21.6","underline-position":"-43.2","stemh":"17","stemv":"20","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":76},"\u00d0":{},"\u00f0":{},"\u0141":{"d":"176,0r-128,0r0,-109r-33,25r-9,-12r42,-31r0,-113r21,0r0,101r43,-31r9,11r-52,38r0,104r107,0r0,17"},"\u0142":{"d":"106,-163r-41,31r0,132r-18,0r0,-122r-33,26r-8,-11r41,-30r0,-120r18,0r0,109r34,-25","w":109},"\u0160":{},"\u0161":{},"\u00dd":{},"\u00fd":{},"\u00de":{},"\u00fe":{},"\u017d":{},"\u017e":{},"\u00bd":{},"\u00bc":{},"\u00b9":{},"\u00be":{},"\u00b3":{},"\u00b2":{},"\u00a6":{},"\u2212":{"d":"181,-88r-165,0r0,-15r165,0r0,15"},"\u00d7":{},"!":{"d":"64,-240r-2,178r-16,0r-2,-178r20,0xm41,-12v0,-8,6,-14,14,-14v8,0,14,6,14,14v0,8,-6,14,-14,14v-8,0,-14,-6,-14,-14","w":106},"\"":{"d":"86,-183r-19,0r0,-62r19,0r0,62xm37,-183r-18,0r0,-62r18,0r0,62","w":101},"#":{"d":"152,-182r-3,13r-31,0r-6,42r32,0r-2,12r-32,0r-10,74r-13,0r10,-74r-36,0r-10,74r-14,0r11,-74r-32,0r3,-12r31,0r6,-42r-31,0r2,-13r31,0r9,-67r13,0r-9,67r36,0r10,-67r13,0r-10,67r32,0xm105,-169r-36,0r-6,42r36,0","w":163},"$":{"d":"89,-136v-30,-14,-56,-27,-56,-57v0,-30,28,-52,72,-53r3,-21r14,0r-4,21v14,1,26,2,36,5r-2,15v-9,-3,-20,-4,-36,-5r-11,79v42,20,60,22,60,60v0,34,-29,57,-76,60r-4,33r-14,0r4,-33v-17,0,-34,-2,-49,-5r4,-15v16,3,32,5,47,5xm93,-158r10,-73v-30,1,-49,15,-49,36v0,14,8,22,39,37xm103,-130r-12,82v62,-9,78,-58,12,-82","w":174},"%":{"d":"180,-119v32,0,50,28,50,61v0,33,-22,63,-53,63v-31,0,-50,-27,-50,-60v-1,-36,19,-65,53,-64xm65,-245v32,0,50,27,50,61v0,33,-21,62,-53,62v-32,0,-50,-27,-50,-60v0,-34,19,-64,53,-63xm204,-238r-154,243r-11,-7r154,-244xm179,-8v24,0,36,-23,36,-50v0,-25,-13,-49,-36,-49v-24,0,-36,24,-36,49v0,27,10,50,36,50xm64,-134v24,0,36,-23,36,-50v0,-25,-12,-49,-36,-49v-24,0,-37,23,-37,49v-1,27,12,50,37,50","w":235},"&":{"d":"190,-104r15,1v-2,20,-12,41,-26,58v12,9,32,23,47,32r-11,15v-13,-7,-36,-24,-48,-34v-41,53,-149,47,-149,-28v0,-28,20,-56,54,-76v-29,-41,-22,-109,36,-109v27,0,46,18,46,43v0,25,-17,45,-58,69v23,34,44,56,71,78v13,-14,20,-30,23,-49xm81,-123v-30,21,-42,37,-42,59v2,59,81,66,115,22v-31,-25,-46,-42,-73,-81xm88,-147v34,-21,47,-36,47,-55v0,-17,-11,-27,-27,-27v-41,2,-41,52,-20,82","w":234},"'":{"d":"37,-183r-18,0r0,-62r18,0r0,62","w":53},"(":{"d":"90,-235v-52,59,-61,187,-12,253r12,19r-10,8v-45,-51,-79,-151,-37,-232v12,-23,24,-42,37,-56","w":112},")":{"d":"36,-243v46,50,79,150,37,231v-12,23,-23,42,-36,57r-11,-8v47,-51,62,-171,20,-239r-20,-33","w":112},"*":{"d":"125,-201r-1,14r-44,-1r25,40r-12,5r-22,-40r-22,42r-12,-8r26,-39r-47,3r1,-14r46,0r-26,-39r12,-6r22,41r22,-40r11,8r-24,37","w":137},"+":{"d":"182,-86r-75,0r0,74r-17,0r0,-74r-74,0r0,-18r74,0r0,-74r17,0r0,74r75,0r0,18","w":191},",":{"d":"60,-25r-9,67r-13,0r0,-67r22,0","w":92},"-":{"d":"96,-88r-80,0r0,-15r80,0r0,15","w":109},".":{"d":"38,-12v0,-8,7,-14,15,-14v8,0,14,6,14,14v0,8,-6,14,-14,14v-8,0,-15,-6,-15,-14","w":101},"\/":{"d":"145,-266r-116,298r-14,-6r116,-298","w":155},"0":{"d":"93,-245v58,0,81,57,81,123v1,66,-22,126,-81,126v-58,0,-81,-56,-81,-121v0,-68,23,-128,81,-128xm95,-12v44,0,59,-52,58,-104v-1,-52,-12,-113,-61,-113v-44,0,-61,53,-59,104v2,55,11,113,62,113"},"1":{"d":"118,0r-20,0r0,-223r-67,34r-6,-12r75,-43r18,7r0,237"},"2":{"d":"21,-226v47,-29,147,-29,140,45v-9,89,-65,107,-117,164r124,0r0,17r-147,0v-8,-24,22,-28,31,-44v34,-38,82,-68,87,-132v4,-60,-73,-59,-113,-38"},"3":{"d":"86,-135v43,2,72,20,72,55v0,66,-73,80,-142,83r0,-14v58,-3,119,-13,119,-66v0,-45,-44,-52,-93,-50r0,-13v45,1,87,-15,87,-54v0,-46,-71,-36,-102,-20r-5,-13v38,-22,131,-31,127,30v-2,37,-22,49,-63,62"},"4":{"d":"175,-65r-30,0r0,65r-19,0r0,-65r-111,0r-4,-17r117,-162r17,6r0,157r30,0r0,16xm126,-81r0,-133r-94,133r94,0"},"5":{"d":"49,-164v54,5,109,21,109,77v0,69,-69,89,-145,90r0,-14v68,0,150,-35,114,-102v-15,-28,-48,-30,-91,-34v-11,-28,7,-62,10,-93r112,0r0,17r-97,0"},"6":{"d":"36,-104v34,-61,139,-44,135,34v-2,44,-26,74,-72,75v-98,2,-98,-147,-44,-198v28,-26,62,-45,107,-49r1,15v-72,12,-119,47,-127,123xm98,-10v30,0,52,-26,51,-58v0,-31,-20,-56,-50,-56v-26,1,-52,19,-62,39v5,39,21,75,61,75"},"7":{"d":"172,-223r-124,225r-18,-10r123,-216r-133,0r0,-16r150,0"},"8":{"d":"110,-130v27,15,62,34,62,71v-1,41,-40,64,-86,64v-41,0,-74,-19,-72,-57v2,-42,35,-56,63,-75v-25,-16,-51,-26,-51,-61v0,-38,36,-56,77,-56v34,0,62,17,60,49v-2,33,-25,49,-53,65xm98,-230v-39,0,-71,39,-39,67v9,8,27,28,43,21v20,-9,40,-28,40,-52v0,-21,-20,-36,-44,-36xm88,-12v56,0,85,-55,37,-86r-34,-20v-37,21,-56,42,-56,66v0,25,25,40,53,40"},"9":{"d":"87,-245v98,-3,98,147,44,199v-27,27,-62,44,-107,49r-1,-15v72,-13,118,-48,127,-123v-16,21,-35,38,-67,38v-43,0,-68,-29,-68,-73v0,-45,27,-74,72,-75xm37,-171v0,69,94,67,111,16v-4,-38,-19,-72,-60,-74v-31,-1,-51,26,-51,58"},":":{"d":"38,-12v0,-8,7,-14,15,-14v8,0,14,6,14,14v0,8,-6,14,-14,14v-8,0,-15,-6,-15,-14xm38,-154v0,-8,7,-14,15,-14v8,0,14,6,14,14v0,8,-6,14,-14,14v-8,0,-15,-6,-15,-14","w":101},";":{"d":"67,-25r-9,67r-13,0r0,-67r22,0xm38,-154v0,-8,7,-14,15,-14v8,0,14,6,14,14v0,8,-6,14,-14,14v-8,0,-15,-6,-15,-14","w":98},"<":{"d":"167,-29r-147,-99r147,-93r0,10r-111,71r111,72r0,39xm19,-127v-1,-1,-3,-2,0,-2r0,2"},"=":{"d":"181,-113r-165,0r0,-17r165,0r0,17xm181,-60r-165,0r0,-17r165,0r0,17","w":191},">":{"d":"169,-121v-2,0,-2,0,-2,-2xm19,-182r0,-39r147,99r-147,93r0,-10r111,-71"},"?":{"d":"16,-226v38,-27,134,-32,132,33v-2,45,-34,62,-68,84r0,47r-17,0r-3,-55v34,-13,65,-34,67,-72v3,-52,-73,-44,-104,-26xm58,-12v0,-8,6,-14,14,-14v8,0,14,6,14,14v0,8,-6,14,-14,14v-8,0,-14,-6,-14,-14","w":165},"@":{"d":"43,-114v-7,104,136,130,196,70r9,11v-24,24,-55,37,-100,37v-78,0,-125,-42,-125,-118v0,-82,54,-132,135,-132v64,0,108,31,108,95v0,56,-39,90,-101,88r5,-23v-19,15,-24,24,-46,24v-23,0,-36,-18,-36,-42v0,-58,56,-110,96,-60r4,-18r16,0r-18,104v38,-6,65,-29,65,-71v0,-53,-37,-82,-91,-82v-72,0,-113,46,-117,117xm108,-108v0,43,45,32,64,9r8,-50v-28,-48,-72,-5,-72,41","w":281},"A":{"d":"230,0r-23,0r-37,-91r-105,0r-37,91r-20,0r99,-240r25,0xm165,-106r-48,-116r-47,116r95,0","w":230},"B":{"d":"125,-128v22,-2,65,22,63,57v-4,68,-77,76,-153,71r0,-240v63,1,142,-9,140,55v-1,34,-17,47,-50,57xm55,-135v52,3,99,-1,99,-48v0,-46,-52,-43,-99,-42r0,90xm55,-16v56,2,110,-1,110,-54v0,-50,-54,-53,-110,-50r0,104","w":203},"C":{"d":"151,-12v29,0,48,-7,69,-17r6,13v-18,13,-47,23,-79,21v-77,-2,-122,-45,-124,-121v-3,-104,102,-152,201,-117v-4,8,-4,20,-17,13v-85,-25,-164,15,-162,101v1,61,38,108,106,107","w":231},"D":{"d":"35,-240v116,-8,204,14,204,119v0,100,-87,131,-204,121r0,-240xm55,-17v94,8,160,-18,161,-104v1,-84,-66,-112,-161,-103r0,207","w":253},"E":{"d":"168,0r-133,0r0,-240r126,0r0,16r-106,0r0,90r100,0r0,15r-100,0r0,102r113,0r0,17"},"F":{"d":"158,-224r-103,0r0,90r97,0r0,15r-97,0r0,119r-20,0r0,-240r123,0r0,16","w":168},"G":{"d":"46,-119v0,86,77,130,161,99r0,-90r21,0r0,99v-25,10,-46,17,-79,17v-78,0,-123,-45,-126,-123v-2,-103,102,-150,200,-115r-6,15v-81,-32,-171,9,-171,98","w":245},"H":{"d":"218,0r-21,0r0,-118r-142,0r0,118r-20,0r0,-240r20,0r0,106r142,0r0,-106r21,0r0,240","w":245},"I":{"d":"55,0r-20,0r0,-240r20,0r0,240","w":87},"J":{"d":"81,-240r-2,195v-7,32,-28,41,-66,49r-4,-15v29,-7,51,-18,51,-56r0,-173r21,0","w":111},"K":{"d":"210,0r-31,0r-123,-126r119,-114r28,0r-121,113xm55,-240r0,240r-20,0r0,-240r20,0","w":221},"L":{"d":"162,0r-127,0r0,-240r20,0r0,223r107,0r0,17","w":166},"M":{"d":"302,0r-22,0r-29,-215r-81,215r-18,0r-81,-215r-31,215r-20,0r37,-240r25,0r81,214r79,-214r25,0","w":312},"N":{"d":"216,0r-23,0r-140,-212r0,212r-18,0r0,-240r23,0r141,211r0,-211r17,0r0,240","w":243},"O":{"d":"137,-245v71,0,107,49,107,122v0,75,-40,128,-114,128v-70,0,-107,-51,-107,-122v0,-74,40,-128,114,-128xm134,-13v61,0,92,-47,88,-114v-3,-56,-32,-101,-89,-101v-57,0,-88,45,-88,105v0,62,29,110,89,110","w":259},"P":{"d":"35,-240v72,-2,144,-6,144,63v0,61,-72,75,-124,68r0,109r-20,0r0,-240xm55,-125v53,4,102,-1,102,-51v0,-51,-50,-49,-102,-47r0,98","w":188},"Q":{"d":"137,-245v124,-8,139,191,48,236v-23,12,-55,13,-75,8v36,14,75,23,125,19r2,14v-117,13,-214,-42,-214,-152v0,-73,43,-120,114,-125xm133,-11v59,0,90,-45,90,-105v0,-63,-28,-112,-89,-112v-58,0,-89,46,-89,106v0,62,28,111,88,111","w":260},"R":{"d":"199,0r-26,0r-47,-89v-11,-25,-36,-27,-71,-25r0,114r-20,0r0,-240v67,2,144,-15,144,59v0,35,-28,61,-66,62v16,3,23,5,32,22xm55,-129v53,4,102,-1,102,-50v0,-52,-53,-45,-102,-45r0,95","w":205},"S":{"d":"171,-65v0,71,-87,78,-151,64r4,-16v50,11,125,8,125,-47v0,-60,-125,-51,-125,-120v0,-61,78,-68,135,-55r-3,15v-43,-9,-109,-11,-109,37v0,56,124,46,124,122","w":185},"T":{"d":"191,-224r-80,0r0,224r-21,0r0,-224r-81,0r0,-16r182,0r0,16","w":194},"U":{"d":"122,-13v49,-1,77,-23,77,-80r0,-147r19,0r0,152v1,59,-36,95,-97,93v-59,-1,-88,-29,-88,-90r0,-155r21,0v7,94,-33,230,68,227","w":243},"V":{"d":"220,-240r-94,240r-25,0r-93,-240r23,0r83,222r87,-222r19,0","w":221},"W":{"d":"342,-240r-75,240r-27,0r-66,-214r-66,214r-27,0r-73,-240r22,0r65,219r68,-219r25,0r68,219r66,-219r20,0","w":338},"X":{"d":"207,0r-25,0r-75,-112r-76,112r-21,0r86,-127r-77,-113r25,0r66,98r67,-98r21,0r-77,113","w":210},"Y":{"d":"198,-240r-84,132r0,108r-21,0r0,-108r-83,-132r23,0r71,116r72,-116r22,0","w":201},"Z":{"d":"176,0r-159,0r0,-17r132,-207r-130,0r0,-16r153,0r0,16r-131,207r135,0r0,17","w":187},"[":{"d":"92,42r-60,0r0,-282r60,0r0,14r-41,0r0,254r41,0r0,14","w":118},"\\":{"d":"145,26r-14,6r-116,-298r14,-6","w":155},"]":{"d":"90,42r-60,0r0,-14r41,0r0,-254r-41,0r0,-14r60,0r0,282","w":118},"^":{"d":"189,-105r-10,0r-71,-110r-72,110r-39,0r99,-146xm94,-252v1,-2,2,-4,2,0r-2,0"},"_":{"d":"176,56r-167,0r0,-15r167,0r0,15"},"`":{"d":"68,-205r-9,11r-54,-33r14,-17","w":70},"a":{"d":"116,-102v12,-69,-57,-56,-82,-28r-9,-11v15,-13,43,-30,68,-30v60,-1,36,83,41,139v-2,13,8,28,23,21r3,11v-24,11,-44,-2,-43,-31v-21,32,-94,55,-98,-4v6,-45,45,-54,97,-67xm38,-36v8,42,64,12,78,-10r0,-43v-40,12,-70,19,-78,53","w":159},"b":{"d":"48,-135v39,-62,133,-37,129,44v-3,54,-22,92,-73,96v-20,1,-49,-19,-56,-31r0,26r-17,0r0,-257r17,0r0,122xm48,-47v35,62,110,36,110,-38v0,-35,-17,-68,-50,-68v-26,0,-46,19,-60,37r0,69","w":191},"c":{"d":"94,-13v21,0,38,-9,51,-19r8,10v-51,52,-133,20,-133,-60v0,-71,63,-108,125,-77r-6,14v-45,-28,-98,2,-98,61v0,37,17,71,53,71","w":159},"d":{"d":"92,-171v29,0,45,16,60,38r0,-124r18,0r0,257r-18,0r0,-29v-16,16,-31,33,-67,33v-43,0,-66,-37,-65,-83v1,-52,23,-92,72,-92xm91,-13v27,-1,49,-18,61,-38r0,-58v-18,-31,-38,-45,-60,-45v-69,0,-70,142,-1,141","w":194},"e":{"d":"41,-89v-12,75,67,97,112,53r8,11v-18,14,-41,29,-71,29v-46,0,-71,-36,-70,-84v2,-53,26,-91,78,-91v45,0,63,34,62,82r-119,0xm140,-104v4,-45,-50,-70,-79,-37v-10,10,-17,22,-19,40","w":174},"f":{"d":"37,-165v-8,-66,19,-111,82,-93r-3,13v-50,-14,-68,23,-61,80r45,0r0,12r-45,0r0,153r-18,0r0,-153r-28,0r0,-12r28,0","w":104},"g":{"d":"188,32v0,45,-58,57,-93,57v-32,0,-82,-8,-82,-49v0,-26,24,-41,46,-48v-5,-2,-27,-8,-30,-12v1,-5,22,-31,26,-37v-55,-41,-4,-137,68,-109r53,0r0,13r-36,0v46,44,-5,132,-73,103r-16,23v16,5,31,9,48,12v30,5,89,4,89,47xm139,-109v0,-26,-17,-48,-44,-48v-28,0,-44,21,-44,48v0,26,16,49,44,49v29,0,44,-22,44,-49xm167,33v0,-39,-58,-23,-90,-35v-19,6,-45,17,-45,41v0,30,39,35,62,35v24,0,73,-9,73,-41","w":184},"h":{"d":"120,-170v70,0,38,106,45,170r-18,0r0,-119v-3,-60,-79,-30,-99,3r0,116r-17,0r0,-257r17,0r0,124v15,-16,43,-37,72,-37","w":188},"i":{"d":"49,0r-18,0r0,-165r18,0r0,165xm27,-229v0,-7,6,-13,13,-13v7,0,13,6,13,13v0,7,-6,13,-13,13v-7,0,-13,-6,-13,-13","w":76},"j":{"d":"-7,76v23,-9,37,-20,37,-55r0,-186r18,0r0,185v2,44,-18,60,-51,69xm26,-229v0,-7,6,-13,13,-13v7,0,13,6,13,13v0,7,-6,13,-13,13v-7,0,-13,-6,-13,-13","w":74},"k":{"d":"161,0r-25,0r-88,-89r84,-76r24,0r-85,76xm48,-257r0,257r-17,0r0,-257r17,0","w":167},"l":{"d":"49,0r-18,0r0,-257r18,0r0,257","w":76},"m":{"d":"213,-171v65,0,32,108,40,171r-18,0r-1,-128v-8,-52,-70,-13,-83,10r0,118r-19,0r0,-107v9,-74,-65,-42,-84,-11r0,118r-17,0r0,-165r17,0r0,29v19,-20,35,-31,64,-34v16,-2,40,19,37,34v23,-21,33,-35,64,-35","w":273},"n":{"d":"117,-170v70,0,38,105,45,170r-18,0r0,-123v-10,-52,-67,-31,-95,5r0,118r-18,0r0,-165r18,0r0,28v10,-12,44,-33,68,-33","w":185},"o":{"d":"98,-171v49,0,73,36,73,86v0,52,-29,87,-78,89v-47,2,-73,-38,-73,-87v0,-53,34,-88,78,-88xm96,-12v35,0,56,-31,55,-69v0,-39,-20,-74,-56,-74v-36,0,-55,28,-56,68v-1,39,20,75,57,75","w":184},"p":{"d":"113,-170v40,-2,65,35,64,79v-1,54,-22,96,-73,96v-28,0,-40,-12,-56,-31r0,112r-17,0r0,-251r17,0r0,29v19,-21,35,-33,65,-34xm48,-47v35,62,110,36,110,-38v0,-35,-17,-68,-50,-68v-26,0,-46,19,-60,37r0,69","w":191},"q":{"d":"92,-171v32,0,43,17,60,39r0,-33r18,0r0,251r-18,0r0,-116v-20,19,-36,34,-67,34v-43,0,-66,-37,-65,-83v1,-52,23,-92,72,-92xm91,-13v27,-1,49,-18,61,-38r0,-58v-18,-31,-38,-45,-60,-45v-69,0,-70,142,-1,141","w":194},"r":{"d":"114,-167r-5,16v-31,-8,-50,29,-61,49r0,102r-17,0r0,-165r17,0r0,38v12,-24,33,-48,66,-40","w":115},"s":{"d":"130,-46v0,52,-68,56,-114,45r3,-13v34,8,90,9,90,-29v0,-41,-88,-38,-88,-84v0,-46,58,-49,100,-40r-4,14v-29,-7,-76,-10,-76,22v0,34,89,34,89,85","w":141},"t":{"d":"50,-47v-5,30,16,46,44,35r0,13v-32,8,-62,2,-62,-34r0,-120r-29,0r0,-12r29,0r0,-47r18,0r0,47r44,0r0,12r-44,0r0,106","w":103},"u":{"d":"49,-38v10,50,79,15,94,-12r0,-115r19,0r0,165r-19,0r0,-33v-21,20,-36,36,-70,37v-68,1,-36,-105,-43,-169r18,0","w":186},"v":{"d":"165,-165r-71,165r-19,0r-67,-165r21,0r57,144r60,-144r19,0","w":167},"w":{"d":"254,-165r-54,165r-20,0r-49,-143r-47,143r-22,0r-54,-165r20,0r47,144r48,-144r19,0r48,144r47,-144r17,0","w":254},"x":{"d":"162,0r-23,0r-55,-76r-53,76r-21,0r63,-88r-57,-77r24,0r47,65r47,-65r20,0r-57,77","w":167},"y":{"d":"165,-165r-89,208v-10,30,-30,55,-69,43r4,-12v46,12,48,-43,65,-73r-68,-166r21,0r57,148r59,-148r20,0","w":167},"z":{"d":"140,0r-122,0r0,-15r97,-134r-94,0r0,-16r117,0r0,14r-97,135r99,0r0,16","w":153},"{":{},"|":{"d":"104,62r-22,0r0,-302r22,0r0,302"},"}":{},"~":{"d":"149,-229v-27,-6,-75,-30,-94,2v4,-16,23,-34,44,-34v33,0,73,28,94,-3v-3,16,-26,34,-44,35","w":240},"\u00c4":{"d":"230,0r-23,0r-37,-91r-105,0r-37,91r-20,0r99,-240r25,0xm165,-106r-48,-116r-47,116r95,0xm145,-291v0,-8,6,-14,14,-14v8,0,15,6,15,14v0,8,-7,15,-15,15v-8,0,-14,-7,-14,-15xm65,-291v0,-8,6,-14,14,-14v8,0,14,6,14,14v0,8,-6,15,-14,15v-8,0,-14,-7,-14,-15","w":230},"\u00c5":{"d":"147,-290v0,15,-12,28,-28,28v-15,0,-28,-13,-28,-28v0,-15,13,-28,28,-28v16,0,28,13,28,28xm230,0r-23,0r-37,-91r-105,0r-37,91r-20,0r99,-240r25,0xm138,-290v0,-10,-9,-19,-19,-19v-10,0,-19,9,-19,19v0,10,9,18,19,18v10,0,19,-8,19,-18xm165,-106r-48,-116r-47,116r95,0","w":230},"\u00c7":{"d":"226,-16v-20,13,-44,22,-79,21r-26,54r-13,-4r17,-51v-60,-8,-101,-55,-102,-120v-2,-104,102,-152,201,-117v-4,8,-4,20,-17,13v-85,-25,-164,15,-162,101v1,61,38,108,106,107v29,0,48,-7,69,-17","w":231},"\u00c9":{"d":"134,-297r-58,33r-7,-11r51,-40xm168,0r-133,0r0,-240r126,0r0,16r-106,0r0,90r100,0r0,15r-100,0r0,102r113,0r0,17"},"\u00d1":{"d":"148,-291v13,-1,14,-8,24,-16r11,10v-12,16,-23,24,-35,24v-23,-7,-51,-28,-69,-1r-11,-9v12,-16,23,-24,35,-24v17,0,27,17,45,16xm216,0r-23,0r-140,-212r0,212r-18,0r0,-240r23,0r141,211r0,-211r17,0r0,240","w":243},"\u00d6":{"d":"137,-245v71,0,107,49,107,122v0,75,-40,128,-114,128v-70,0,-107,-51,-107,-122v0,-74,40,-128,114,-128xm134,-13v61,0,92,-47,88,-114v-3,-56,-32,-101,-89,-101v-57,0,-88,45,-88,105v0,62,29,110,89,110xm160,-291v0,-8,6,-14,14,-14v8,0,14,6,14,14v0,8,-6,15,-14,15v-8,0,-14,-7,-14,-15xm80,-291v0,-8,6,-14,14,-14v8,0,14,6,14,14v0,8,-6,15,-14,15v-8,0,-14,-7,-14,-15","w":259},"\u00dc":{"d":"122,-13v49,0,77,-23,77,-80r0,-147r19,0r0,152v1,59,-36,95,-97,93v-59,-1,-88,-29,-88,-90r0,-155r21,0r0,155v-2,49,24,72,68,72xm151,-291v0,-8,7,-14,15,-14v8,0,14,6,14,14v0,8,-6,15,-14,15v-8,0,-15,-7,-15,-15xm71,-291v0,-8,6,-14,14,-14v8,0,14,6,14,14v0,8,-6,15,-14,15v-8,0,-14,-7,-14,-15","w":243},"\u00e1":{"d":"120,-227r-53,32r-8,-10r48,-38xm93,-171v63,-1,34,89,42,147v2,11,11,16,22,13r2,11v-23,11,-43,-3,-42,-31v-21,32,-94,55,-98,-4v6,-45,45,-54,97,-67v0,-30,0,-53,-28,-52v-23,1,-38,13,-54,24r-9,-11v15,-13,43,-30,68,-30xm38,-36v8,42,64,12,78,-10r0,-43v-40,12,-70,19,-78,53","w":159},"\u00e0":{"d":"121,-205r-9,11r-53,-33r13,-17xm93,-171v63,-1,34,89,42,147v2,11,11,16,22,13r2,11v-23,11,-43,-3,-42,-31v-21,32,-94,55,-98,-4v6,-45,45,-54,97,-67v0,-30,0,-53,-28,-52v-23,1,-38,13,-54,24r-9,-11v15,-13,43,-30,68,-30xm38,-36v8,42,64,12,78,-10r0,-43v-40,12,-70,19,-78,53","w":159},"\u00e2":{"d":"139,-204r-9,10r-39,-26r-41,26r-9,-10r50,-40xm93,-171v63,-1,34,89,42,147v2,11,11,16,22,13r2,11v-23,11,-43,-3,-42,-31v-21,32,-94,55,-98,-4v6,-45,45,-54,97,-67v0,-30,0,-53,-28,-52v-23,1,-38,13,-54,24r-9,-11v15,-13,43,-30,68,-30xm38,-36v8,42,64,12,78,-10r0,-43v-40,12,-70,19,-78,53","w":159},"\u00e4":{"d":"93,-171v63,-1,34,89,42,147v2,11,11,16,22,13r2,11v-23,11,-43,-3,-42,-31v-21,32,-94,55,-98,-4v6,-45,45,-54,97,-67v0,-30,0,-53,-28,-52v-23,1,-38,13,-54,24r-9,-11v15,-13,43,-30,68,-30xm38,-36v8,42,64,12,78,-10r0,-43v-40,12,-70,19,-78,53xm109,-218v0,-7,6,-13,13,-13v7,0,12,6,12,13v0,7,-5,12,-12,12v-7,0,-13,-5,-13,-12xm45,-218v0,-7,6,-13,13,-13v7,0,13,6,13,13v0,7,-6,12,-13,12v-7,0,-13,-5,-13,-12","w":159},"\u00e3":{"d":"110,-220v11,-1,16,-8,24,-15r10,9v-20,36,-47,18,-75,7v-7,0,-15,5,-24,15r-10,-8v21,-36,46,-21,75,-8xm93,-171v63,-1,34,89,42,147v2,11,11,16,22,13r2,11v-23,11,-43,-3,-42,-31v-21,32,-94,55,-98,-4v6,-45,45,-54,97,-67v0,-30,0,-53,-28,-52v-23,1,-38,13,-54,24r-9,-11v15,-13,43,-30,68,-30xm38,-36v8,42,64,12,78,-10r0,-43v-40,12,-70,19,-78,53","w":159},"\u00e5":{"d":"118,-219v0,15,-13,28,-28,28v-15,0,-29,-13,-29,-28v0,-15,14,-28,29,-28v15,0,28,13,28,28xm93,-171v63,-1,34,89,42,147v2,11,11,16,22,13r2,11v-23,11,-43,-3,-42,-31v-21,32,-94,55,-98,-4v6,-45,45,-54,97,-67v0,-30,0,-53,-28,-52v-23,1,-38,13,-54,24r-9,-11v15,-13,43,-30,68,-30xm108,-220v0,-10,-8,-18,-18,-18v-10,0,-19,8,-19,18v0,10,9,19,19,19v10,0,18,-9,18,-19xm38,-36v8,42,64,12,78,-10r0,-43v-40,12,-70,19,-78,53","w":159},"\u00e7":{"d":"94,-13v21,0,38,-9,51,-19r8,10v-13,12,-27,21,-48,25r-19,42r-13,-4r11,-37v-40,-5,-64,-40,-64,-86v0,-71,63,-108,125,-77r-6,14v-45,-28,-98,2,-98,61v0,37,17,71,53,71","w":159},"\u00e9":{"d":"121,-227r-53,32r-8,-10r49,-38xm41,-89v-12,75,67,97,112,53r8,11v-18,14,-41,29,-71,29v-46,0,-71,-36,-70,-84v2,-53,26,-91,78,-91v45,0,63,34,62,82r-119,0xm140,-104v4,-45,-50,-70,-79,-37v-10,10,-17,22,-19,40","w":174},"\u00e8":{"d":"122,-205r-9,11r-53,-33r14,-17xm41,-89v-12,75,67,97,112,53r8,11v-18,14,-41,29,-71,29v-46,0,-71,-36,-70,-84v2,-53,26,-91,78,-91v45,0,63,34,62,82r-119,0xm140,-104v4,-45,-50,-70,-79,-37v-10,10,-17,22,-19,40","w":174},"\u00ea":{"d":"140,-204r-9,10r-39,-26r-41,26r-8,-10r49,-40xm41,-89v-12,75,67,97,112,53r8,11v-18,14,-41,29,-71,29v-46,0,-71,-36,-70,-84v2,-53,26,-91,78,-91v45,0,63,34,62,82r-119,0xm140,-104v4,-45,-50,-70,-79,-37v-10,10,-17,22,-19,40","w":174},"\u00eb":{"d":"41,-89v-12,75,67,97,112,53r8,11v-18,14,-41,29,-71,29v-46,0,-71,-36,-70,-84v2,-53,26,-91,78,-91v45,0,63,34,62,82r-119,0xm111,-218v0,-7,5,-13,12,-13v7,0,13,6,13,13v0,7,-6,12,-13,12v-7,0,-12,-5,-12,-12xm47,-218v0,-7,5,-13,12,-13v7,0,13,6,13,13v0,7,-6,12,-13,12v-7,0,-12,-5,-12,-12xm140,-104v4,-45,-50,-70,-79,-37v-10,10,-17,22,-19,40","w":174},"\u00ed":{"d":"70,-227r-53,32r-8,-10r48,-38xm49,0r-18,0r0,-165r18,0r0,165","w":76},"\u00ec":{"d":"71,-205r-9,11r-53,-33r13,-17xm49,0r-18,0r0,-165r18,0r0,165","w":76},"\u00ee":{"d":"88,-204r-9,10r-39,-26r-40,26r-9,-10r49,-40xm49,0r-18,0r0,-165r18,0r0,165","w":76},"\u00ef":{"d":"49,0r-18,0r0,-165r18,0r0,165xm58,-218v0,-7,6,-13,13,-13v7,0,13,6,13,13v0,7,-6,12,-13,12v-7,0,-13,-5,-13,-12xm-5,-218v0,-7,6,-13,13,-13v7,0,12,6,12,13v0,7,-5,12,-12,12v-7,0,-13,-5,-13,-12","w":76},"\u00f1":{"d":"117,-220v10,-1,16,-9,24,-15r10,9v-21,36,-46,18,-75,7v-6,0,-15,5,-24,15r-11,-8v22,-36,47,-21,76,-8xm49,-135v29,-41,113,-57,113,24r0,111r-18,0r0,-123v-10,-52,-67,-31,-95,5r0,118r-18,0r0,-165r18,0r0,30","w":185},"\u00f3":{"d":"125,-227r-53,32r-8,-10r49,-38xm98,-171v49,0,73,36,73,86v0,52,-29,87,-78,89v-47,2,-73,-38,-73,-87v0,-53,34,-88,78,-88xm96,-12v35,0,56,-31,55,-69v0,-39,-20,-74,-56,-74v-36,0,-55,28,-56,68v-1,39,20,75,57,75","w":184},"\u00f2":{"d":"126,-205r-9,11r-53,-33r14,-17xm98,-171v49,0,73,36,73,86v0,52,-29,87,-78,89v-47,2,-73,-38,-73,-87v0,-53,34,-88,78,-88xm96,-12v35,0,56,-31,55,-69v0,-39,-20,-74,-56,-74v-36,0,-55,28,-56,68v-1,39,20,75,57,75","w":184},"\u00f4":{"d":"144,-204r-9,10r-39,-26r-40,26r-9,-10r49,-40xm98,-171v49,0,73,36,73,86v0,52,-29,87,-78,89v-47,2,-73,-38,-73,-87v0,-53,34,-88,78,-88xm96,-12v35,0,56,-31,55,-69v0,-39,-20,-74,-56,-74v-36,0,-55,28,-56,68v-1,39,20,75,57,75","w":184},"\u00f6":{"d":"98,-171v49,0,73,36,73,86v0,52,-29,87,-78,89v-47,2,-73,-38,-73,-87v0,-53,34,-88,78,-88xm96,-12v35,0,56,-31,55,-69v0,-39,-20,-74,-56,-74v-36,0,-55,28,-56,68v-1,39,20,75,57,75xm114,-218v0,-7,6,-13,13,-13v7,0,13,6,13,13v0,7,-6,12,-13,12v-7,0,-13,-5,-13,-12xm51,-218v0,-7,6,-13,13,-13v7,0,12,6,12,13v0,7,-5,12,-12,12v-7,0,-13,-5,-13,-12","w":184},"\u00f5":{"d":"116,-220v10,-1,16,-9,24,-15r10,9v-21,36,-47,18,-75,7v-6,0,-15,5,-24,15r-11,-8v21,-37,47,-20,76,-8xm98,-171v49,0,73,36,73,86v0,52,-29,87,-78,89v-47,2,-73,-38,-73,-87v0,-53,34,-88,78,-88xm96,-12v35,0,56,-31,55,-69v0,-39,-20,-74,-56,-74v-36,0,-55,28,-56,68v-1,39,20,75,57,75","w":184},"\u00fa":{"d":"126,-227r-53,32r-8,-10r48,-38xm48,-66v-12,75,74,54,95,16r0,-115r19,0r0,165r-19,0r0,-33v-21,20,-36,36,-70,37v-68,1,-36,-105,-43,-169r18,0r0,99","w":186},"\u00f9":{"d":"127,-205r-9,11r-53,-33r14,-17xm48,-66v-12,75,74,54,95,16r0,-115r19,0r0,165r-19,0r0,-33v-21,20,-36,36,-70,37v-68,1,-36,-105,-43,-169r18,0r0,99","w":186},"\u00fb":{"d":"144,-204r-9,10r-39,-26r-40,26r-9,-10r49,-40xm48,-66v-12,75,74,54,95,16r0,-115r19,0r0,165r-19,0r0,-33v-21,20,-36,36,-70,37v-68,1,-36,-105,-43,-169r18,0r0,99","w":186},"\u00fc":{"d":"48,-66v-12,75,74,54,95,16r0,-115r19,0r0,165r-19,0r0,-33v-21,20,-36,36,-70,37v-68,1,-36,-105,-43,-169r18,0r0,99xm114,-218v0,-7,6,-13,13,-13v7,0,13,6,13,13v0,7,-6,12,-13,12v-7,0,-13,-5,-13,-12xm51,-218v0,-7,6,-13,13,-13v7,0,12,6,12,13v0,7,-5,12,-12,12v-7,0,-13,-5,-13,-12","w":186},"\u2020":{"d":"173,-120r-69,0r-1,162r-17,0r-1,-162r-69,0r0,-14r69,0r-1,-106r21,0r-1,106r69,0r0,14","w":183},"\u00b0":{},"\u00a2":{"d":"156,-78v-22,18,-38,25,-66,26r-5,33r-11,0r4,-34v-39,-10,-55,-46,-55,-83v0,-51,27,-86,79,-90r5,-32r11,0r-5,32v12,2,25,5,35,11r-6,13v-8,-5,-21,-8,-31,-9r-19,143v24,2,40,-10,57,-21xm100,-211v-70,4,-74,117,-19,141"},"\u00a3":{"d":"176,-237r-6,14v-12,-4,-22,-7,-35,-7v-55,0,-58,55,-63,96r89,0r0,14r-91,0v-5,23,-5,95,-33,104r136,0r0,16r-162,0r-3,-14v42,-8,34,-65,42,-106r-38,0r0,-14r41,0v7,-52,16,-111,82,-111v15,0,27,3,41,8","w":181},"\u00a7":{"d":"120,-51v39,-23,36,-54,-6,-74r-46,-23v-53,23,-13,72,19,80xm166,-91v0,23,-15,36,-33,47v13,9,24,20,24,37v0,57,-77,57,-128,45r3,-13v38,8,103,14,103,-28v0,-43,-113,-46,-113,-106v0,-22,16,-38,34,-48v-15,-10,-24,-19,-24,-38v0,-57,78,-57,127,-44r-3,13v-39,-8,-102,-13,-102,29v0,44,112,44,112,106","w":185},"\u2022":{"d":"76,-122v0,-27,22,-48,48,-48v27,0,48,21,48,48v0,26,-21,48,-48,48v-26,0,-48,-22,-48,-48","w":240},"\u00b6":{},"\u00df":{"d":"31,-188v-10,-78,124,-104,128,-24v2,40,-42,50,-54,81v10,28,74,41,74,86v0,45,-61,56,-107,44r3,-13v32,8,84,2,84,-31v0,-46,-78,-42,-74,-92v11,-19,61,-52,55,-75v1,-21,-18,-34,-39,-34v-41,0,-53,34,-53,84r0,162r-18,0","w":190},"\u00ae":{"d":"265,-120v0,79,-61,129,-129,129v-68,0,-128,-50,-129,-129v-1,-69,59,-130,129,-129v68,1,129,51,129,129xm255,-120v0,-71,-57,-118,-119,-119v-65,0,-119,54,-119,119v0,62,48,119,119,119v65,0,119,-54,119,-119xm184,-156v0,21,-17,34,-36,36v25,15,32,47,49,70r-22,0v-20,-24,-17,-72,-66,-66r0,66r-18,0r0,-142v43,0,93,-6,93,36xm165,-155v2,-25,-28,-26,-56,-25r0,53v29,1,54,1,56,-28","w":264},"\u00a9":{"d":"265,-120v0,79,-61,129,-129,129v-68,0,-128,-50,-129,-129v-1,-69,59,-130,129,-129v68,1,129,51,129,129xm255,-120v0,-71,-57,-118,-119,-119v-65,0,-119,54,-119,119v0,62,48,119,119,119v65,0,119,-54,119,-119xm81,-120v0,53,60,78,103,49v3,6,9,12,0,14v-53,26,-122,0,-122,-61v0,-59,68,-93,126,-68v0,0,-3,8,-4,11v-47,-20,-103,3,-103,55","w":264},"\u2122":{"d":"281,-107r-14,0r-17,-117r-45,117r-12,0r-45,-117r-17,117r-13,0r22,-133r16,0r45,118r44,-118r16,0xm112,-232r-45,0r0,125r-14,0r0,-125r-46,0r0,-8r105,0r0,8","w":285},"\u00b4":{"d":"66,-227r-53,32r-8,-10r48,-38","w":69},"\u00a8":{"d":"67,-218v0,-7,6,-13,13,-13v7,0,12,6,12,13v0,7,-5,12,-12,12v-7,0,-13,-5,-13,-12xm4,-218v0,-7,5,-13,12,-13v7,0,13,6,13,13v0,7,-6,12,-13,12v-7,0,-12,-5,-12,-12","w":92},"\u2260":{"d":"197,-52r-108,0r-31,60r-10,-5r27,-55r-66,0r0,-13r73,0r29,-59r-102,0r0,-13r109,0r29,-58r11,6r-26,52r65,0r0,13r-72,0r-30,59r102,0r0,13","w":197},"\u00c6":{"d":"312,0r-133,0r0,-91r-85,0r-57,91r-24,0r150,-240r142,0r0,16r-106,0r0,90r100,0r0,15r-100,0r0,102r113,0r0,17xm179,-106r0,-123r-76,123r76,0","w":320},"\u00d8":{"d":"140,-245v33,0,50,11,71,28r25,-29r11,9r-27,31v58,77,18,215,-88,211v-34,-1,-52,-12,-72,-29r-25,28r-10,-9r26,-30v-16,-24,-25,-46,-25,-83v0,-76,41,-127,114,-127xm135,-228v-82,-2,-110,112,-68,176r129,-148v-16,-17,-33,-27,-61,-28xm136,-13v85,1,110,-110,69,-176r-131,149v16,16,34,26,62,27","w":263},"\u221e":{"d":"202,-146v30,0,50,21,50,51v0,59,-72,65,-102,27v-8,-6,-17,-25,-24,-11v-22,45,-113,53,-113,-15v0,-29,21,-53,50,-52v33,1,52,22,69,43v17,-20,35,-43,70,-43xm159,-74v21,29,82,25,82,-20v0,-35,-39,-51,-69,-31v-11,7,-23,19,-32,31xm24,-94v0,34,37,50,65,31v13,-8,26,-19,36,-32v-18,-20,-32,-37,-63,-39v-22,-1,-38,17,-38,40","w":256},"\u00b1":{"d":"190,-114r-75,0r0,75r-12,0r0,-75r-76,0r0,-12r76,0r0,-75r12,0r0,75r75,0r0,12xm190,0r-163,0r0,-12r163,0r0,12","w":211},"\u2264":{"d":"192,-46r-178,-83r0,-15r178,-84r0,15r-161,77r161,76r0,14xm192,0r-178,0r0,-13r178,0r0,13","w":197},"\u2265":{"d":"192,-129r-178,83r0,-14r161,-76r-161,-77r0,-15r178,84r0,15xm192,0r-178,0r0,-13r178,0r0,13","w":197},"\u00a5":{"d":"192,-240r-68,106r57,0r0,14r-69,0r0,27r69,0r0,14r-69,0r0,79r-19,0r0,-79r-69,0r0,-14r69,0r0,-27r-69,0r0,-14r58,0r-69,-106r23,0r68,107r67,-107r21,0","w":200},"\u03bc":{"d":"141,-142v4,48,-17,121,12,134v5,2,13,-10,19,-8v-14,19,-50,34,-51,-5v-24,22,-75,41,-93,0v3,13,3,29,3,46v-2,27,14,34,19,55v0,5,-5,12,-10,12v-35,-39,-17,-157,-16,-233v9,0,23,-4,17,11v2,47,-19,122,35,120v16,0,32,-5,45,-11r1,-119","w":174},"\u2202":{"d":"31,-264v82,-29,141,36,137,119v-3,70,-18,149,-88,149v-43,0,-67,-28,-67,-70v0,-44,26,-79,70,-79v27,0,41,15,58,27v9,-65,1,-142,-60,-144v-17,0,-27,4,-40,11xm75,0v48,0,57,-65,65,-113v-14,-13,-20,-23,-42,-23v-42,0,-57,39,-60,82v-1,28,12,54,37,54","w":177},"\u2211":{"d":"208,36r-172,0r0,-18r79,-145r-79,-130r0,-17r169,0r0,73r-18,0r-4,-59r-127,0r82,134r-84,148r134,0r2,-60r18,0r0,74","w":247},"\u220f":{"d":"261,-3v-5,34,12,41,33,49v-32,-2,-72,4,-100,-2v25,-3,34,-16,34,-47r0,-214v10,-68,-67,-42,-130,-44v-17,6,-18,18,-18,44r0,214v-5,34,12,41,33,49v-32,-2,-72,4,-100,-2v25,-3,34,-16,34,-47r0,-219v5,-34,-13,-41,-34,-49r281,0r0,3v-26,1,-33,16,-33,46r0,219xm297,-268v-1,0,-3,2,-3,0r3,0","w":296},"\u03c0":{"d":"139,-71v-5,53,47,62,52,20r2,0v-1,29,-18,56,-40,56v-53,0,-30,-108,-25,-158r-48,0r-15,130v-2,31,-35,38,-40,11v3,-23,31,-29,34,-54r10,-87v-32,-1,-49,1,-60,24v10,-28,18,-50,55,-49r126,0r0,25r-46,0v-3,25,-3,55,-5,82","w":197},"\u222b":{"d":"46,-211v2,-50,-4,-117,40,-122v19,-2,25,20,8,22v-8,0,-9,-15,-19,-15v-30,14,-12,71,-12,116r0,128v-3,48,4,117,-40,122v-18,2,-27,-20,-9,-21v10,-1,10,17,19,14v31,-12,13,-70,13,-115r0,-129","w":98},"\u00aa":{"d":"60,-243v50,-1,0,96,36,95v4,6,-1,9,-8,8v-11,-1,-12,-9,-14,-21v-13,12,-18,20,-35,21v-13,0,-22,-9,-21,-23v3,-27,26,-31,56,-39v6,-41,-31,-37,-48,-18r-4,-6v8,-8,24,-17,38,-17xm28,-221v-1,1,-2,4,-3,2xm97,-111r-76,0r0,-7r76,0r0,7xm27,-163v5,26,39,8,47,-6r0,-26v-23,8,-43,12,-47,32","w":104},"\u00ba":{"d":"63,-243v26,0,41,23,41,51v0,28,-16,52,-44,52v-27,0,-42,-22,-42,-51v0,-28,17,-53,45,-52xm102,-111r-81,0r0,-7r81,0r0,7xm62,-148v44,-1,41,-87,-1,-87v-20,0,-33,19,-33,41v0,24,12,47,34,46","w":118},"\u03a9":{"d":"143,-247v102,-7,157,136,68,187v-6,4,-16,9,-29,14r-2,20v35,-3,83,11,87,-23r3,0r0,49r-101,0r6,-51v71,-36,60,-187,-32,-187v-84,0,-105,133,-45,177v3,3,7,6,13,10r6,51r-101,0v2,-15,-4,-38,2,-49v4,34,52,20,87,23r-1,-20v-42,-14,-75,-45,-75,-92v0,-66,48,-105,114,-109","w":276},"\u00e6":{"d":"135,-88v-7,78,59,95,107,53r7,10v-15,16,-40,30,-68,30v-33,0,-44,-15,-58,-41v-23,23,-35,38,-67,40v-22,1,-37,-16,-37,-37v0,-48,52,-58,97,-67v1,-29,-1,-54,-28,-54v-15,0,-32,8,-54,25r-9,-11v23,-27,96,-51,107,2v15,-20,29,-33,58,-33v41,0,64,38,58,83r-113,0xm229,-104v3,-48,-45,-69,-75,-38v-9,10,-15,24,-17,41xm39,-36v8,46,70,8,80,-13v-3,-11,-3,-24,-3,-38v-35,8,-71,16,-77,51","w":259},"\u00f8":{"d":"156,-140v34,53,7,144,-63,144v-20,0,-36,-6,-49,-19r-16,18r-11,-9r18,-20v-36,-55,-4,-150,63,-145v21,1,38,8,49,20r17,-18r10,9xm134,-136v-34,-42,-95,-7,-95,49v0,18,3,32,10,45xm58,-30v35,41,93,6,93,-51v0,-17,-3,-31,-9,-43","w":192},"\u00bf":{"d":"36,4v-3,52,74,44,104,25r7,12v-38,27,-135,33,-132,-33v2,-45,32,-65,69,-84r0,-47r15,0r4,55v-34,12,-65,35,-67,72xm77,-172v0,-8,6,-15,14,-15v8,0,14,7,14,15v0,8,-6,14,-14,14v-8,0,-14,-6,-14,-14","w":165},"\u00a1":{"d":"64,60r-20,0r2,-177r16,0xm41,-167v0,-8,6,-14,14,-14v8,0,14,6,14,14v0,8,-6,14,-14,14v-8,0,-14,-6,-14,-14","w":106},"\u00ac":{"d":"170,0r-22,0r0,-78r-133,0r0,-14r155,0r0,92"},"\u221a":{"d":"187,-330r-54,334r-86,-176r-35,17r-3,-6r47,-23r76,153r49,-300","w":197},"\u0192":{"d":"163,-258r-4,13v-54,-11,-63,31,-67,79r42,0r-3,14r-41,0v-15,66,-16,147,-42,202v-8,9,-23,22,-34,27r-7,-14v19,-13,32,-28,37,-59r26,-156r-30,0r3,-14r30,0v4,-58,21,-111,90,-92","w":168},"\u2248":{"d":"59,-140v40,0,97,42,123,-3r9,8v-23,48,-88,16,-132,8v-20,1,-27,11,-38,22r-11,-7v11,-16,26,-28,49,-28xm191,-76v-33,67,-135,-29,-170,30r-11,-8v25,-46,88,-16,133,-8v21,-2,24,-8,39,-22","w":197},"\u0394":{"d":"220,0r-212,0r113,-242xm183,-12r-75,-182r-85,182r160,0","w":220},"\u00ab":{"d":"132,-31r-11,6r-44,-61r44,-60r11,7r-32,53xm73,-31r-11,7r-44,-62r44,-59r11,6r-32,53","w":151},"\u00bb":{"d":"139,-84r-44,59r-12,-7r32,-52r-32,-56r12,-6xm79,-84r-44,60r-11,-7r32,-53r-32,-55r11,-6","w":151},"\u2026":{"d":"38,-12v0,-8,7,-14,15,-14v8,0,14,6,14,14v0,8,-6,14,-14,14v-8,0,-15,-6,-15,-14xm123,-12v0,-8,7,-14,15,-14v8,0,14,6,14,14v0,8,-6,14,-14,14v-8,0,-15,-6,-15,-14xm208,-12v0,-8,6,-14,14,-14v8,0,14,6,14,14v0,8,-6,14,-14,14v-8,0,-14,-6,-14,-14","w":266},"\u00a0":{"w":76},"\u00c0":{"d":"152,-276r-8,11r-58,-32r14,-18xm230,0r-23,0r-37,-91r-105,0r-37,91r-20,0r99,-240r25,0xm165,-106r-48,-116r-47,116r95,0","w":230},"\u00c3":{"d":"141,-291v14,-1,15,-8,25,-16r11,10v-12,16,-24,24,-35,24v-24,-6,-51,-29,-70,-1r-11,-9v12,-16,24,-24,36,-24v17,0,27,16,44,16xm230,0r-23,0r-37,-91r-105,0r-37,91r-20,0r99,-240r25,0xm165,-106r-48,-116r-47,116r95,0","w":230},"\u00d5":{"d":"156,-291v14,-1,15,-8,25,-16r11,10v-12,16,-24,24,-35,24v-24,-9,-54,-25,-71,-1r-10,-9v12,-16,24,-24,36,-24v17,0,27,16,44,16xm137,-245v71,0,107,49,107,122v0,75,-40,128,-114,128v-70,0,-107,-51,-107,-122v0,-74,40,-128,114,-128xm134,-13v61,0,92,-47,88,-114v-3,-56,-32,-101,-89,-101v-57,0,-88,45,-88,105v0,62,29,110,89,110","w":259},"\u0152":{"d":"23,-118v0,-86,62,-122,159,-122r123,0r0,16r-106,0r0,90r100,0r0,15r-100,0r0,102r113,0r0,17r-161,0v-82,1,-128,-42,-128,-118xm46,-119v0,72,51,108,133,102r0,-207v-82,-5,-133,32,-133,105","w":320},"\u0153":{"d":"171,-89v-9,75,68,97,114,53r7,10v-16,16,-43,31,-71,30v-34,-1,-50,-17,-62,-46v-14,27,-31,44,-64,45v-47,2,-77,-35,-75,-85v3,-52,26,-89,79,-89v35,0,49,18,62,46v20,-33,25,-46,68,-46v43,0,65,34,62,82r-120,0xm271,-104v3,-46,-47,-70,-78,-39v-10,10,-16,24,-20,42xm96,-13v36,1,56,-32,56,-69v0,-42,-19,-74,-57,-74v-37,0,-56,29,-56,68v0,40,17,74,57,75","w":301},"\u2013":{"d":"181,-88r-165,0r0,-15r165,0r0,15","w":190},"\u2014":{"d":"352,-88r-336,0r0,-15r336,0r0,15","w":357},"\u201c":{"d":"103,-183r-22,0r8,-62r14,0r0,62xm51,-183r-21,0r8,-62r13,0r0,62","w":130},"\u201d":{"d":"57,-245r-9,62r-13,0r0,-62r22,0xm107,-245r-8,62r-14,0r0,-62r22,0","w":130},"\u2018":{"d":"50,-178r-21,0r8,-67r13,0r0,67","w":80},"\u2019":{"d":"57,-245r-9,67r-13,0r0,-67r22,0","w":81},"\u00f7":{"d":"195,-89r-187,0r0,-13r187,0r0,13xm82,-20v0,-11,9,-19,19,-19v11,0,20,8,20,19v0,11,-9,20,-20,20v-10,0,-19,-9,-19,-20xm82,-168v0,-10,9,-20,19,-20v11,0,20,10,20,20v0,11,-9,19,-20,19v-10,0,-19,-8,-19,-19","w":197},"\u25ca":{"d":"169,-135r-71,135r-18,0r-69,-136r71,-131r18,0xm153,-135r-62,-123r-65,122r63,126","w":177},"\u00ff":{"d":"165,-165r-99,230v-8,19,-33,30,-59,21r4,-12v47,12,47,-43,65,-73r-68,-166r21,0r57,148r59,-148r20,0xm105,-218v0,-7,6,-13,13,-13v7,0,12,6,12,13v0,7,-5,12,-12,12v-7,0,-13,-5,-13,-12xm42,-218v0,-7,5,-13,12,-13v7,0,13,6,13,13v0,7,-6,12,-13,12v-7,0,-12,-5,-12,-12","w":167},"\u0178":{"d":"198,-240r-84,132r0,108r-21,0r0,-108r-83,-132r23,0r71,116r72,-116r22,0xm130,-291v0,-8,6,-14,14,-14v8,0,14,6,14,14v0,8,-6,15,-14,15v-8,0,-14,-7,-14,-15xm50,-291v0,-8,6,-14,14,-14v8,0,14,6,14,14v0,8,-6,15,-14,15v-8,0,-14,-7,-14,-15","w":201},"\u2044":{"d":"170,-238r-154,243r-11,-7r154,-244","w":170},"\u00a4":{"d":"195,-197v-1,0,-1,-1,0,-2r0,2xm59,-177v23,-24,77,-24,99,0v9,-7,18,-22,27,-25r0,-3v18,12,-11,25,-19,37v23,19,23,75,0,96r27,28v-11,18,-25,-11,-36,-19v-20,22,-75,25,-97,1v-8,9,-19,16,-25,27v-21,-10,8,-25,17,-36v-24,-19,-26,-77,-1,-97v-8,-12,-36,-24,-19,-36v10,8,18,18,27,27xm184,-203v-4,1,-3,1,-3,1v1,-1,2,-1,3,-1xm184,-36v1,0,1,1,0,1v-1,0,-1,0,0,-1xm194,-44r-1,0r1,0xm110,-62v35,0,53,-25,56,-58v-3,-33,-21,-59,-55,-59v-36,0,-60,24,-60,59v0,35,23,58,59,58","w":211},"\u2039":{"d":"73,-31r-11,7r-44,-62r44,-59r11,6r-32,53","w":94},"\u203a":{"d":"79,-84r-43,59r-12,-7r32,-52r-32,-56r12,-6","w":94},"\ufb01":{"d":"37,-165v-8,-65,18,-112,82,-93r-3,13v-48,-15,-67,24,-61,80r93,0r0,165r-18,0r0,-153r-75,0r0,153r-18,0r0,-153r-28,0r0,-12r28,0xm126,-220v0,-18,27,-16,27,0v0,7,-6,13,-13,13v-7,0,-14,-6,-14,-13","w":173},"\ufb02":{"d":"37,-165v-6,-63,13,-108,77,-95r-3,13v-47,-10,-61,29,-56,82r78,0r0,-92r18,0r0,257r-18,0r0,-153r-78,0r0,153r-18,0r0,-153r-28,0r0,-12r28,0","w":174},"\u2021":{"d":"173,-67r-69,0r-1,109r-16,0r-1,-109r-70,0r0,-15r70,0r-1,-69r-69,0r0,-14r69,0r-1,-75r21,0r0,75r68,0r0,14r-68,0r-1,69r69,0r0,15","w":183},"\u00b7":{"d":"38,-120v0,-8,7,-14,15,-14v8,0,14,6,14,14v0,8,-6,15,-14,15v-8,0,-15,-7,-15,-15","w":101},"\u201a":{"d":"60,-25r-9,67r-13,0r0,-67r22,0","w":92},"\u201e":{"d":"57,-25r-9,62r-13,0r0,-62r22,0xm107,-25r-8,62r-14,0r0,-62r22,0","w":130},"\u2030":{"d":"180,-119v32,0,50,28,50,61v0,33,-22,63,-53,63v-31,0,-50,-27,-50,-60v-1,-36,19,-65,53,-64xm65,-245v32,0,50,27,50,61v0,33,-21,62,-53,62v-32,0,-50,-27,-50,-60v0,-34,19,-64,53,-63xm204,-238r-154,243r-11,-7r154,-244xm302,-119v32,0,50,28,50,61v0,33,-22,63,-53,63v-31,0,-49,-27,-49,-60v0,-35,18,-65,52,-64xm179,-8v24,0,36,-23,36,-50v0,-25,-13,-49,-36,-49v-24,0,-36,24,-36,49v0,27,10,50,36,50xm64,-134v24,0,36,-23,36,-50v0,-25,-12,-49,-36,-49v-24,0,-37,23,-37,49v-1,27,12,50,37,50xm301,-8v24,-1,36,-23,36,-50v0,-25,-12,-49,-36,-49v-22,0,-36,24,-36,49v0,27,11,50,36,50","w":353},"\u00c2":{"d":"174,-278r-8,12r-46,-25r-48,25r-8,-12r56,-38xm230,0r-23,0r-37,-91r-105,0r-37,91r-20,0r99,-240r25,0xm165,-106r-48,-116r-47,116r95,0","w":230},"\u00ca":{"d":"156,-278r-8,12r-45,-25r-48,25r-9,-12r57,-38xm168,0r-133,0r0,-240r126,0r0,16r-106,0r0,90r100,0r0,15r-100,0r0,102r113,0r0,17"},"\u00c1":{"d":"152,-297r-58,33r-8,-11r52,-40xm230,0r-23,0r-37,-91r-105,0r-37,91r-20,0r99,-240r25,0xm165,-106r-48,-116r-47,116r95,0","w":230},"\u00cb":{"d":"168,0r-133,0r0,-240r126,0r0,16r-106,0r0,90r100,0r0,15r-100,0r0,102r113,0r0,17xm127,-291v0,-8,6,-14,14,-14v8,0,15,6,15,14v0,8,-7,15,-15,15v-8,0,-14,-7,-14,-15xm47,-291v0,-8,6,-14,14,-14v8,0,14,6,14,14v0,8,-6,15,-14,15v-8,0,-14,-7,-14,-15"},"\u00c8":{"d":"134,-276r-8,11r-57,-32r14,-18xm168,0r-133,0r0,-240r126,0r0,16r-106,0r0,90r100,0r0,15r-100,0r0,102r113,0r0,17"},"\u00cd":{"d":"77,-297r-56,33r-9,-11r51,-40xm55,0r-20,0r0,-240r20,0r0,240","w":87},"\u00ce":{"d":"100,-278r-8,12r-46,-25r-47,25r-9,-12r56,-38xm55,0r-20,0r0,-240r20,0r0,240","w":87},"\u00cf":{"d":"55,0r-20,0r0,-240r20,0r0,240xm71,-291v0,-8,6,-14,14,-14v8,0,14,6,14,14v0,8,-6,15,-14,15v-8,0,-14,-7,-14,-15xm-9,-291v0,-8,6,-14,14,-14v8,0,14,6,14,14v0,8,-6,15,-14,15v-8,0,-14,-7,-14,-15","w":87},"\u00cc":{"d":"78,-276r-8,11r-57,-32r14,-18xm55,0r-20,0r0,-240r20,0r0,240","w":87},"\u00d3":{"d":"166,-297r-57,33r-8,-11r51,-40xm137,-245v71,0,107,49,107,122v0,75,-40,128,-114,128v-70,0,-107,-51,-107,-122v0,-74,40,-128,114,-128xm134,-13v61,0,92,-47,88,-114v-3,-56,-32,-101,-89,-101v-57,0,-88,45,-88,105v0,62,29,110,89,110","w":259},"\u00d4":{"d":"189,-278r-8,12r-46,-25r-48,25r-8,-12r56,-38xm137,-245v71,0,107,49,107,122v0,75,-40,128,-114,128v-70,0,-107,-51,-107,-122v0,-74,40,-128,114,-128xm134,-13v61,0,92,-47,88,-114v-3,-56,-32,-101,-89,-101v-57,0,-88,45,-88,105v0,62,29,110,89,110","w":259},"\u00d2":{"d":"167,-276r-9,11r-57,-32r15,-18xm137,-245v71,0,107,49,107,122v0,75,-40,128,-114,128v-70,0,-107,-51,-107,-122v0,-74,40,-128,114,-128xm134,-13v61,0,92,-47,88,-114v-3,-56,-32,-101,-89,-101v-57,0,-88,45,-88,105v0,62,29,110,89,110","w":259},"\u00da":{"d":"158,-297r-57,33r-8,-11r51,-40xm122,-13v49,0,77,-23,77,-80r0,-147r19,0r0,152v1,59,-36,95,-97,93v-59,-1,-88,-29,-88,-90r0,-155r21,0r0,155v-2,49,24,72,68,72","w":243},"\u00db":{"d":"180,-278r-8,12r-45,-25r-48,25r-8,-12r56,-38xm122,-13v49,0,77,-23,77,-80r0,-147r19,0r0,152v1,59,-36,95,-97,93v-59,-1,-88,-29,-88,-90r0,-155r21,0r0,155v-2,49,24,72,68,72","w":243},"\u00d9":{"d":"158,-276r-8,11r-57,-32r14,-18xm122,-13v49,0,77,-23,77,-80r0,-147r19,0r0,152v1,59,-36,95,-97,93v-59,-1,-88,-29,-88,-90r0,-155r21,0r0,155v-2,49,24,72,68,72","w":243},"\u0131":{"d":"49,0r-18,0r0,-165r18,0r0,165","w":76},"\u02c6":{"d":"103,-204r-9,10r-39,-26r-41,26r-9,-10r50,-40","w":104},"\u02dc":{"d":"80,-220v11,-1,16,-8,24,-15r11,9v-21,35,-46,19,-75,7v-6,0,-16,5,-25,15r-10,-8v21,-36,46,-21,75,-8","w":116},"\u00af":{"d":"95,-211r-91,0r0,-15r91,0r0,15"},"\u02d8":{"d":"18,-238v2,29,62,29,63,0r14,0v0,34,-52,48,-77,27v-8,-6,-12,-15,-14,-27r14,0","w":95},"\u02d9":{},"\u02da":{"d":"58,-219v0,15,-13,28,-28,28v-15,0,-29,-13,-29,-28v0,-15,14,-28,29,-28v15,0,28,13,28,28xm48,-220v0,-10,-8,-18,-18,-18v-10,0,-19,8,-19,18v0,10,9,19,19,19v10,0,18,-9,18,-19","w":57},"\u00b8":{},"\u02dd":{},"\u02db":{},"\u02c7":{}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © Copyright by The Foundry, 1995. Revision 18 June 1997.
 */
Cufon.registerFont({"w":180,"face":{"font-family":"FoundrySans","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"274","descent":"-86","x-height":"4","bbox":"-15 -330.211 363 87","underline-thickness":"21.6","underline-position":"-43.2","stemh":"30","stemv":"38","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":84},"\u00d0":{},"\u00f0":{},"\u0141":{"d":"185,0r-142,0r0,-93r-24,18r-18,-22r42,-31r0,-112r38,0r0,87r38,-28r17,22r-55,41r0,87r104,0r0,31","w":190},"\u0142":{"d":"129,-168r-48,37r0,131r-35,0r0,-108r-29,22r-16,-21r45,-34r0,-116r35,0r0,92r32,-24","w":130},"\u0160":{},"\u0161":{},"\u00dd":{},"\u00fd":{},"\u00de":{},"\u00fe":{},"\u017d":{},"\u017e":{},"\u00bd":{},"\u00bc":{},"\u00b9":{},"\u00be":{},"\u00b3":{},"\u00b2":{},"\u00a6":{},"\u2212":{},"\u00d7":{},"!":{"d":"75,-240r-3,174r-30,0r-5,-174r38,0xm79,-20v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22v12,0,22,10,22,22","w":114},"\"":{"d":"101,-172r-32,0r0,-74r32,0r0,74xm46,-172r-32,0r0,-74r32,0r0,74","w":115},"#":{"d":"160,-186r-3,21r-31,0r-5,36r31,0r-3,20r-31,0r-10,69r-22,0r10,-69r-30,0r-9,69r-23,0r10,-69r-32,0r3,-20r31,0r6,-36r-31,0r3,-21r31,0r8,-62r22,0r-8,62r30,0r8,-62r23,0r-9,62r31,0xm104,-165r-30,0r-5,36r29,0","w":172},"$":{"d":"114,-156v27,10,57,29,56,61v0,33,-29,59,-72,63r-5,33r-29,0r4,-32v-27,-2,-30,-4,-46,-7r7,-29v15,4,23,5,44,6r9,-73v-77,-19,-64,-111,16,-113r4,-30r29,0r-4,31v16,1,20,2,34,6r-6,28v-10,-2,-23,-5,-32,-5xm94,-216v-36,6,-39,33,-7,47xm102,-63v40,-10,43,-40,8,-57","w":193},"%":{"d":"240,-60v0,37,-24,65,-57,65v-32,0,-55,-26,-55,-63v0,-39,24,-65,57,-65v32,0,55,26,55,63xm120,-183v0,37,-25,65,-58,65v-32,0,-54,-26,-54,-63v0,-39,24,-65,57,-65v32,0,55,26,55,63xm213,-234r-159,240r-19,-12r159,-241xm212,-59v0,-25,-11,-41,-28,-41v-17,0,-28,16,-28,40v0,26,10,41,28,41v18,0,28,-15,28,-40xm92,-182v0,-25,-11,-40,-28,-40v-17,0,-29,15,-29,39v0,26,11,41,29,41v18,0,28,-15,28,-40","w":247},"&":{"d":"214,-109v-4,24,-12,40,-24,56v12,10,35,24,46,30r-17,27r-51,-32v-44,50,-157,41,-156,-35v1,-35,24,-60,53,-76v-31,-42,-12,-106,47,-106v31,0,52,19,52,47v0,25,-17,47,-55,68v12,19,39,46,57,59v9,-12,11,-15,17,-38r31,0xm130,-196v0,-12,-8,-21,-21,-21v-28,1,-31,42,-15,63v24,-12,36,-27,36,-42xm143,-46v-20,-20,-50,-47,-62,-67v-48,21,-40,85,14,87v17,0,37,-8,48,-20","w":243},"'":{"d":"46,-172r-32,0r0,-74r32,0r0,74","w":60},"(":{"d":"102,-229v-58,69,-59,195,0,263r-22,16v-75,-85,-84,-209,-1,-296","w":120},")":{"d":"19,34v62,-80,55,-189,0,-263r22,-17v77,88,80,211,0,296","w":120},"*":{"d":"119,-199r-35,10r28,24r-14,17r-26,-27r-5,37r-22,-4r11,-36r-35,14r-8,-21r36,-9r-29,-23r13,-18r26,28r6,-37r21,4r-10,34r35,-13","w":144},"+":{"d":"174,-83r-71,0r0,67r-26,0r0,-67r-71,0r0,-26r71,0r0,-68r26,0r0,68r71,0r0,26"},",":{"d":"70,-39r-12,80r-25,0r0,-80r37,0","w":99},"-":{"d":"100,-82r-89,0r0,-28r89,0r0,28","w":110},".":{"d":"77,-20v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22v12,0,22,10,22,22","w":110},"\/":{"d":"149,-259r-117,286r-22,-9r117,-286","w":158},"0":{"d":"182,-123v0,77,-35,128,-88,128v-51,0,-85,-49,-85,-122v0,-77,35,-128,87,-128v53,0,86,47,86,122xm144,-116v-1,-43,-17,-99,-49,-99v-30,0,-48,34,-48,90v0,62,19,99,49,99v29,0,48,-35,48,-90","w":190},"1":{"d":"131,0r-37,0r0,-205r-60,30r-13,-24r81,-46r29,11r0,234","w":194},"2":{"d":"17,-226v54,-31,154,-29,154,48v0,42,-42,91,-103,147r108,0r0,31r-155,0v-3,-13,-10,-28,4,-33v40,-38,107,-77,107,-140v0,-50,-61,-48,-104,-26","w":193},"3":{"d":"20,-226v43,-26,141,-31,139,32v0,27,-18,48,-48,58v35,4,57,26,57,56v-2,62,-81,85,-151,83r0,-28v69,-1,112,-23,112,-55v0,-31,-38,-41,-87,-39r0,-26v50,0,80,-17,80,-44v-9,-36,-52,-28,-92,-12","w":193},"4":{"d":"185,-57r-31,0r0,57r-35,0r0,-57r-106,0r-7,-27r119,-162r29,10r0,150r31,0r0,29xm119,-86r0,-104r-74,104r74,0","w":193},"5":{"d":"66,-165v58,3,103,30,102,77v0,55,-61,92,-154,92r0,-28v73,-3,115,-26,115,-62v0,-37,-42,-50,-91,-50v-14,-32,4,-69,8,-104r120,0r0,30r-92,0","w":193},"6":{"d":"180,-73v0,45,-33,78,-77,78v-50,0,-88,-42,-88,-101v0,-81,62,-139,156,-147r3,28v-65,7,-108,39,-122,95v40,-51,128,-24,128,47xm143,-71v1,-57,-71,-55,-91,-15v-2,67,88,85,91,15","w":193},"7":{"d":"181,-213r-119,218r-35,-16r113,-199r-121,0r0,-30r158,0","w":193},"8":{"d":"128,-130v31,17,54,32,54,67v0,39,-40,68,-92,68v-46,0,-78,-24,-78,-60v0,-28,17,-49,55,-71v-73,-37,-48,-120,40,-119v39,0,65,21,65,53v0,23,-16,45,-44,62xm100,-146v35,-13,57,-69,0,-71v-23,0,-40,13,-40,30v0,15,13,28,40,41xm93,-24v36,1,64,-30,42,-56v-8,-10,-25,-20,-41,-29v-30,17,-45,33,-45,52v0,19,18,33,44,33","w":193},"9":{"d":"178,-143v0,80,-61,138,-155,146r-3,-28v64,-7,108,-39,122,-95v-40,52,-128,23,-128,-47v0,-45,33,-78,77,-78v51,0,87,43,87,102xm141,-154v3,-67,-89,-85,-91,-15v0,56,71,56,91,15","w":193},":":{"d":"77,-150v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22v12,0,22,10,22,22xm77,-20v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22v12,0,22,10,22,22","w":110},";":{"d":"77,-150v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22v12,0,22,10,22,22xm76,-39r-12,80r-25,0r0,-80r37,0","w":108},"<":{"d":"165,-25r-150,-102r0,-2r150,-96r0,19r-104,67r104,67r0,47"},"=":{"d":"174,-105r-168,0r0,-25r168,0r0,25xm174,-61r-168,0r0,-25r168,0r0,25"},">":{"d":"165,-120r-150,95r0,-18r104,-68r-104,-67r0,-47r150,102r0,3"},"?":{"d":"156,-189v0,33,-24,62,-68,82r0,41r-29,0r-5,-57v40,-13,65,-37,65,-61v0,-43,-62,-34,-95,-17r-12,-24v47,-31,145,-31,144,36xm96,-20v0,12,-9,22,-21,22v-12,0,-23,-10,-23,-22v0,-12,11,-22,23,-22v12,0,21,10,21,22","w":173},"@":{"d":"269,-150v0,56,-44,90,-111,88r3,-15v-30,30,-76,17,-77,-28v-1,-60,54,-111,95,-66r2,-13r29,0r-18,99v32,-4,53,-31,53,-64v0,-44,-35,-74,-86,-74v-64,0,-112,47,-112,109v-1,94,123,125,191,62r14,16v-74,77,-233,37,-233,-80v0,-74,60,-130,139,-130v65,0,111,40,111,96xm173,-145v-7,-13,-15,-19,-25,-19v-18,0,-33,27,-33,56v0,35,31,25,51,4","w":288},"A":{"d":"240,0r-41,0r-31,-79r-97,0r-31,79r-38,0r99,-240r40,0xm157,-107r-38,-95r-37,95r75,0","w":242},"B":{"d":"184,-183v0,29,-17,47,-44,54v35,6,55,27,55,58v0,43,-36,71,-93,71r-74,0r0,-240v71,0,157,-9,156,57xm66,-140v42,3,77,-5,79,-39v2,-32,-42,-34,-79,-32r0,71xm135,-37v37,-24,20,-86,-39,-76r-30,0r0,83v24,0,56,1,69,-7","w":212},"C":{"d":"57,-120v0,82,94,117,158,75r14,26v-81,55,-212,9,-212,-98v0,-99,110,-156,207,-114r-10,28v-73,-30,-157,4,-157,83","w":234},"D":{"d":"95,-240v93,-7,147,40,147,118v0,78,-55,128,-153,122r-61,0r0,-240r67,0xm202,-122v0,-69,-53,-97,-136,-88r0,179v80,7,136,-22,136,-91","w":258},"E":{"d":"176,0r-148,0r0,-240r141,0r0,30r-103,0r0,70r97,0r0,29r-97,0r0,80r110,0r0,31","w":190},"F":{"d":"166,-210r-100,0r0,71r94,0r0,29r-94,0r0,110r-38,0r0,-240r138,0r0,30","w":177},"G":{"d":"229,-12v-98,49,-212,-2,-212,-105v0,-98,110,-155,209,-114r-10,28v-76,-33,-159,7,-159,85v0,69,65,110,134,86r0,-83r38,0r0,103","w":248},"H":{"d":"224,0r-38,0r0,-112r-120,0r0,112r-38,0r0,-240r38,0r0,100r120,0r0,-100r38,0r0,240","w":252},"I":{"d":"67,0r-39,0r0,-240r39,0r0,240","w":94},"J":{"d":"4,-24v38,-11,50,-10,50,-52r0,-164r38,0r0,171v0,44,-23,65,-82,74","w":118},"K":{"d":"225,0r-51,0r-108,-120r0,120r-38,0r0,-240r38,0r0,106r104,-106r48,0r-111,112","w":229},"L":{"d":"170,0r-142,0r0,-240r38,0r0,209r104,0r0,31","w":175},"M":{"d":"299,0r-38,0r-24,-181r-66,181r-32,0r-67,-181r-24,181r-36,0r35,-240r41,0r69,186r67,-186r40,0","w":311},"N":{"d":"221,0r-37,0r-121,-177r0,177r-35,0r0,-240r38,0r121,178r0,-178r34,0r0,240","w":249},"O":{"d":"248,-123v0,73,-50,128,-118,128v-66,0,-113,-51,-113,-123v0,-74,50,-127,119,-127v66,0,112,51,112,122xm133,-28v47,0,76,-41,76,-97v0,-52,-34,-88,-77,-88v-43,0,-75,39,-75,91v0,55,32,94,76,94","w":266},"P":{"d":"28,-240v76,-2,160,-7,158,65v-1,58,-51,78,-120,72r0,103r-38,0r0,-240xm66,-132v43,3,81,-4,81,-41v1,-38,-39,-40,-81,-38r0,79","w":196},"Q":{"d":"249,-122v0,70,-47,128,-111,121v35,13,61,14,100,10r4,29v-123,18,-225,-56,-225,-156v0,-72,52,-128,119,-128v65,0,113,52,113,124xm209,-115v0,-57,-31,-98,-76,-98v-44,0,-76,38,-76,92v0,58,30,97,75,97v44,0,77,-38,77,-91","w":266},"R":{"d":"28,-240v74,-1,160,-8,158,61v0,31,-22,56,-54,61v11,3,17,8,23,19r54,99r-46,0r-45,-87v-9,-21,-25,-21,-52,-20r0,107r-38,0r0,-240xm147,-175v0,-37,-40,-38,-81,-36r0,76v42,3,81,-4,81,-40","w":213},"S":{"d":"160,-113v42,54,-3,118,-85,118v-24,0,-34,-2,-61,-8r7,-30v50,14,116,6,117,-34v1,-45,-118,-45,-118,-112v0,-57,84,-79,146,-59r-5,28v-41,-10,-102,-4,-102,29v0,28,86,49,101,68","w":191},"T":{"d":"195,-210r-76,0r0,210r-38,0r0,-210r-77,0r0,-30r191,0r0,30","w":199},"U":{"d":"123,-27v42,0,66,-21,66,-72r0,-141r34,0r0,144v2,68,-39,101,-102,101v-61,0,-94,-27,-94,-99r0,-146r38,0r0,146v-2,46,18,67,58,67","w":250},"V":{"d":"229,-240r-94,240r-40,0r-93,-240r41,0r73,200r76,-200r37,0","w":231},"W":{"d":"343,-240r-72,240r-41,0r-58,-185r-58,185r-40,0r-72,-240r39,0r55,191r60,-191r36,0r61,191r54,-191r36,0","w":345},"X":{"d":"218,0r-46,0r-63,-99r-65,99r-42,0r86,-126r-77,-114r45,0r55,86r57,-86r41,0r-77,113","w":219},"Y":{"d":"210,-240r-85,134r0,106r-38,0r0,-106r-85,-134r44,0r61,102r62,-102r41,0","w":212},"Z":{"d":"184,0r-172,0r0,-28r121,-182r-119,0r0,-30r166,0r0,27r-120,182r124,0r0,31","w":196},"[":{"d":"104,45r-78,0r0,-285r78,0r0,27r-42,0r0,231r42,0r0,27","w":127},"\\":{"d":"149,18r-22,9r-117,-286r22,-9","w":158},"]":{"d":"101,45r-78,0r0,-27r42,0r0,-231r-42,0r0,-27r78,0r0,285","w":127},"^":{"d":"190,-102r-19,0r-67,-104r-67,104r-47,0r102,-150r2,0"},"_":{"d":"175,54r-170,0r0,-22r170,0r0,22"},"`":{"d":"77,-207r-13,18r-64,-35r17,-25","w":77},"a":{"d":"164,-24r4,21v-24,13,-55,8,-57,-20v-33,36,-97,37,-97,-16v0,-32,31,-56,94,-69v2,-55,-40,-40,-75,-14r-14,-21v41,-39,138,-55,124,40v4,31,-15,87,21,79xm108,-50r0,-34v-40,11,-59,24,-59,41v8,32,40,13,59,-7","w":169},"b":{"d":"185,-92v0,83,-79,130,-126,70r0,22r-34,0r0,-257r34,0r0,112v49,-55,126,-28,126,53xm149,-86v0,-64,-62,-72,-90,-27r0,59v30,48,90,33,90,-32","w":199},"c":{"d":"160,-24v-55,53,-145,28,-145,-60v0,-75,73,-112,137,-77r-11,25v-47,-25,-88,-4,-88,51v0,61,49,73,93,40","w":165},"d":{"d":"177,0r-34,0r0,-26v-42,52,-128,33,-128,-54v0,-83,82,-128,128,-66r0,-111r34,0r0,257xm143,-57r0,-52v-26,-54,-92,-44,-92,24v0,67,64,75,92,28","w":201},"e":{"d":"53,-83v-2,71,64,67,101,35r15,21v-55,52,-154,39,-154,-55v0,-54,34,-93,83,-93v47,-1,71,35,69,92r-114,0xm131,-108v-3,-60,-71,-50,-77,2","w":181},"f":{"d":"33,-169v-9,-73,33,-105,98,-87r-6,25v-44,-12,-63,11,-57,62r44,0r0,24r-44,0r0,145r-35,0r0,-145r-29,0r0,-24r29,0","w":114},"g":{"d":"70,-48r-10,15v36,16,131,6,131,57v0,36,-41,62,-98,62v-87,0,-119,-71,-47,-94v-9,-3,-25,-7,-24,-13v2,-6,16,-27,25,-37v-56,-44,1,-144,77,-112r56,0r0,25r-31,0v36,47,-15,117,-79,97xm127,-111v0,-23,-14,-39,-34,-39v-21,0,-35,15,-35,39v0,24,14,40,35,40v21,0,34,-16,34,-40xm95,60v40,0,72,-19,53,-43v-11,-9,-55,-10,-72,-16v-24,7,-35,17,-35,31v0,18,19,28,54,28","w":189},"h":{"d":"59,-144v32,-37,114,-48,114,25r0,119r-34,0r0,-113v-7,-50,-54,-28,-80,2r0,111r-34,0r0,-257r34,0r0,113","w":196},"i":{"d":"63,-224v0,12,-9,20,-21,20v-12,0,-20,-8,-20,-20v0,-12,8,-21,20,-21v12,0,21,9,21,21xm59,0r-34,0r0,-169r34,0r0,169","w":84},"j":{"d":"64,-224v0,11,-9,20,-21,20v-12,0,-20,-9,-20,-20v0,-12,8,-21,20,-21v12,0,21,9,21,21xm-13,62v28,-8,39,-24,39,-61r0,-170r34,0r0,177v0,48,-18,70,-65,79","w":84},"k":{"d":"176,0r-45,0r-72,-86r0,86r-34,0r0,-257r34,0r0,160r68,-72r45,0r-75,77","w":178},"l":{"d":"60,0r-35,0r0,-257r35,0r0,257","w":84},"m":{"d":"157,-143v40,-49,104,-43,104,35r0,108r-34,0r0,-103v9,-65,-53,-32,-67,-10r0,113r-34,0r0,-101v6,-61,-43,-42,-67,-12r0,113r-34,0r0,-169r33,0r0,24v31,-34,84,-45,99,2","w":285},"n":{"d":"59,-144v41,-46,111,-46,111,34r0,110r-34,0r-1,-119v-9,-43,-52,-21,-76,6r0,113r-34,0r0,-169r34,0r0,25","w":194},"o":{"d":"178,-87v0,52,-35,91,-83,91v-46,0,-80,-37,-80,-88v0,-53,35,-91,84,-91v46,0,79,37,79,88xm141,-84v0,-37,-18,-62,-46,-62v-26,0,-44,24,-44,57v0,37,19,63,46,63v27,0,44,-23,44,-58","w":192},"p":{"d":"185,-92v0,83,-78,129,-126,71r0,104r-34,0r0,-252r33,0r0,25v49,-57,127,-30,127,52xm149,-86v0,-64,-62,-72,-90,-27r0,59v30,48,90,33,90,-32","w":200},"q":{"d":"177,83r-34,0r0,-109v-45,55,-128,31,-128,-54v0,-85,84,-128,129,-65r0,-24r33,0r0,252xm143,-57r0,-52v-26,-54,-92,-44,-92,24v0,67,64,75,92,28","w":202},"r":{"d":"125,-170r-8,31v-28,-9,-40,14,-58,45r0,94r-34,0r0,-169r34,0r0,33v17,-28,35,-44,66,-34","w":126},"s":{"d":"100,-48v-5,-34,-83,-32,-83,-77v0,-44,65,-60,113,-44r-6,25v-27,-7,-70,-7,-70,14v0,9,9,20,31,26v83,24,63,111,-27,108v-20,0,-28,-2,-46,-7r6,-25v30,9,86,4,82,-20","w":149},"t":{"d":"63,-55v-5,32,17,34,45,29r0,25v-44,11,-79,5,-79,-49r0,-95r-29,0r0,-24r29,0r0,-50r34,0r0,50r45,0r0,24r-45,0r0,90","w":116},"u":{"d":"59,-73v-8,65,50,48,76,14r0,-110r35,0r0,169r-35,0r0,-27v-37,43,-111,49,-111,-37r0,-105r35,0r0,96","w":194},"v":{"d":"175,-169r-70,169r-35,0r-67,-169r38,0r49,129r51,-129r34,0","w":177},"w":{"d":"263,-169r-55,169r-35,0r-40,-125r-39,125r-37,0r-54,-169r36,0r38,125r40,-125r35,0r40,125r38,-125r33,0","w":265},"x":{"d":"174,0r-43,0r-45,-65r-44,65r-39,0r63,-90r-57,-79r42,0r39,56r37,-56r39,0r-57,79","w":176},"y":{"d":"175,-169r-83,202v-13,42,-39,64,-89,49r7,-24v44,10,47,-29,61,-57r-68,-170r38,0r49,130r50,-130r35,0","w":177},"z":{"d":"149,0r-135,0r0,-26r85,-114r-83,0r0,-29r131,0r0,24r-86,115r88,0r0,30","w":161},"{":{},"|":{"d":"104,60r-28,0r0,-300r28,0r0,300"},"}":{},"~":{"d":"96,-261v33,4,68,33,90,-3r7,4v-11,21,-26,36,-49,38v-15,1,-57,-27,-77,-10v-6,5,-12,18,-20,9v13,-21,25,-35,49,-38","w":240},"\u00c4":{"d":"163,-267v-11,0,-20,-10,-20,-21v0,-11,9,-20,20,-20v11,0,21,9,21,20v0,12,-10,21,-21,21xm99,-288v0,12,-9,21,-20,21v-11,0,-20,-10,-20,-21v0,-12,9,-20,20,-20v11,0,20,9,20,20xm240,0r-41,0r-31,-79r-97,0r-31,79r-38,0r99,-240r40,0xm157,-107r-38,-95r-37,95r75,0","w":242},"\u00c5":{"d":"154,-288v0,18,-15,33,-33,33v-18,0,-32,-15,-32,-33v0,-18,14,-33,32,-33v18,0,33,15,33,33xm240,0r-41,0r-31,-79r-97,0r-31,79r-38,0r99,-240r40,0xm139,-288v0,-9,-9,-17,-18,-17v-10,0,-17,8,-17,17v0,10,7,17,17,17v9,0,18,-7,18,-17xm157,-107r-38,-95r-37,95r75,0","w":242},"\u00c7":{"d":"229,-19v-30,19,-44,23,-81,24r-26,58r-23,-7r16,-53v-60,-12,-98,-58,-98,-120v0,-100,110,-157,207,-114r-10,28v-78,-32,-157,6,-157,83v0,83,90,118,159,75","w":234},"\u00c9":{"d":"66,-278r11,20r71,-31r-17,-29xm176,0r-148,0r0,-240r141,0r0,30r-103,0r0,70r97,0r0,29r-97,0r0,80r110,0r0,31","w":190},"\u00d1":{"d":"147,-294v5,1,17,-8,25,-16r17,17v-26,38,-55,24,-87,12v-6,0,-16,6,-25,15r-17,-17v26,-37,54,-22,87,-11xm221,0r-37,0r-121,-177r0,177r-35,0r0,-240r38,0r121,178r0,-178r34,0r0,240","w":249},"\u00d6":{"d":"175,-267v-11,0,-20,-10,-20,-21v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,12,-9,21,-20,21xm111,-288v0,12,-9,21,-20,21v-11,0,-20,-10,-20,-21v0,-12,8,-20,20,-20v11,0,20,9,20,20xm248,-123v0,73,-50,128,-118,128v-66,0,-113,-51,-113,-123v0,-74,50,-127,119,-127v66,0,112,51,112,122xm133,-28v47,0,76,-41,76,-97v0,-52,-34,-88,-77,-88v-43,0,-75,39,-75,91v0,55,32,94,76,94","w":266},"\u00dc":{"d":"167,-267v-11,0,-20,-10,-20,-21v0,-11,9,-20,20,-20v11,0,21,9,21,20v0,12,-10,21,-21,21xm103,-288v0,12,-8,21,-20,21v-11,0,-20,-10,-20,-21v0,-12,8,-20,20,-20v11,0,20,9,20,20xm123,-27v42,0,66,-21,66,-72r0,-141r34,0r0,144v2,68,-39,101,-102,101v-61,0,-94,-27,-94,-99r0,-146r38,0r0,146v-2,46,18,67,58,67","w":250},"\u00e1":{"d":"129,-224r-64,34r-12,-17r60,-42xm164,-24r4,21v-24,13,-55,8,-57,-20v-33,36,-97,37,-97,-16v0,-32,31,-56,94,-69v2,-55,-40,-40,-75,-14r-14,-21v41,-39,138,-55,124,40v4,31,-15,87,21,79xm108,-50r0,-34v-40,11,-59,24,-59,41v8,32,40,13,59,-7","w":169},"\u00e0":{"d":"130,-207r-13,18r-65,-35r17,-25xm164,-24r4,21v-24,13,-55,8,-57,-20v-33,36,-97,37,-97,-16v0,-32,31,-56,94,-69v2,-55,-40,-40,-75,-14r-14,-21v41,-39,138,-55,124,40v4,31,-15,87,21,79xm108,-50r0,-34v-40,11,-59,24,-59,41v8,32,40,13,59,-7","w":169},"\u00e2":{"d":"148,-207r-14,18r-43,-26r-43,26r-13,-18r56,-41xm164,-24r4,21v-24,13,-55,8,-57,-20v-33,36,-97,37,-97,-16v0,-32,31,-56,94,-69v2,-55,-40,-40,-75,-14r-14,-21v41,-39,138,-55,124,40v4,31,-15,87,21,79xm108,-50r0,-34v-40,11,-59,24,-59,41v8,32,40,13,59,-7","w":169},"\u00e4":{"d":"144,-218v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,19,9,19,19xm76,-218v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,19,9,19,19xm164,-24r4,21v-24,13,-55,8,-57,-20v-33,36,-97,37,-97,-16v0,-32,31,-56,94,-69v2,-55,-40,-40,-75,-14r-14,-21v41,-39,138,-55,124,40v4,31,-15,87,21,79xm108,-50r0,-34v-40,11,-59,24,-59,41v8,32,40,13,59,-7","w":169},"\u00e3":{"d":"30,-213v27,-37,46,-26,81,-12v6,0,14,-5,24,-15r17,15v-26,36,-50,26,-82,12v-5,-1,-18,8,-24,15xm164,-24r4,21v-24,13,-55,8,-57,-20v-33,36,-97,37,-97,-16v0,-32,31,-56,94,-69v2,-55,-40,-40,-75,-14r-14,-21v41,-39,138,-55,124,40v4,31,-15,87,21,79xm108,-50r0,-34v-40,11,-59,24,-59,41v8,32,40,13,59,-7","w":169},"\u00e5":{"d":"121,-219v0,17,-13,30,-30,30v-17,0,-31,-13,-31,-30v0,-17,14,-30,31,-30v17,0,30,13,30,30xm164,-24r4,21v-24,13,-55,8,-57,-20v-33,36,-97,37,-97,-16v0,-32,31,-56,94,-69v2,-55,-40,-40,-75,-14r-14,-21v41,-39,138,-55,124,40v4,31,-15,87,21,79xm107,-219v0,-9,-7,-16,-16,-16v-9,0,-16,7,-16,16v0,8,7,16,16,16v9,0,16,-7,16,-16xm108,-50r0,-34v-40,11,-59,24,-59,41v8,32,40,13,59,-7","w":169},"\u00e7":{"d":"160,-24v-21,17,-30,22,-53,27r-20,46r-22,-6r12,-40v-38,-7,-62,-41,-62,-87v0,-75,73,-112,137,-77r-11,25v-47,-25,-88,-4,-88,51v0,61,49,73,93,40","w":165},"\u00e9":{"d":"130,-224r-64,34r-12,-17r60,-42xm53,-83v-2,71,64,67,101,35r15,21v-55,52,-154,39,-154,-55v0,-54,34,-93,83,-93v47,-1,71,35,69,92r-114,0xm131,-108v-3,-60,-71,-50,-77,2","w":181},"\u00e8":{"d":"131,-207r-13,18r-65,-35r18,-25xm53,-83v-2,71,64,67,101,35r15,21v-55,52,-154,39,-154,-55v0,-54,34,-93,83,-93v47,-1,71,35,69,92r-114,0xm131,-108v-3,-60,-71,-50,-77,2","w":181},"\u00ea":{"d":"149,-207r-14,18r-42,-26r-44,26r-13,-18r57,-41xm53,-83v-2,71,64,67,101,35r15,21v-55,52,-154,39,-154,-55v0,-54,34,-93,83,-93v47,-1,71,35,69,92r-114,0xm131,-108v-3,-60,-71,-50,-77,2","w":181},"\u00eb":{"d":"145,-218v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,19,9,19,19xm77,-218v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,19,9,19,19xm53,-83v-2,71,64,67,101,35r15,21v-55,52,-154,39,-154,-55v0,-54,34,-93,83,-93v47,-1,71,35,69,92r-114,0xm131,-108v-3,-60,-71,-50,-77,2","w":181},"\u00ed":{"d":"81,-224r-65,34r-12,-17r60,-42xm59,0r-34,0r0,-169r34,0r0,169","w":84},"\u00ec":{"d":"81,-207r-13,18r-64,-35r17,-25xm59,0r-34,0r0,-169r34,0r0,169","w":84},"\u00ee":{"d":"99,-207r-14,18r-43,-26r-43,26r-13,-18r56,-41xm59,0r-34,0r0,-169r34,0r0,169","w":84},"\u00ef":{"d":"95,-218v0,10,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v10,0,19,9,19,19xm27,-218v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,19,9,19,19xm59,0r-34,0r0,-169r34,0r0,169","w":84},"\u00f1":{"d":"37,-213v27,-38,46,-26,81,-12v6,0,14,-5,24,-15r16,15v-25,36,-50,26,-82,12v-5,-1,-17,8,-23,15xm59,-144v41,-46,111,-46,111,34r0,110r-34,0r-1,-119v-9,-43,-52,-21,-76,6r0,113r-34,0r0,-169r34,0r0,25","w":194},"\u00f3":{"d":"135,-224r-65,34r-12,-17r60,-42xm178,-87v0,52,-35,91,-83,91v-46,0,-80,-37,-80,-88v0,-53,35,-91,84,-91v46,0,79,37,79,88xm141,-84v0,-37,-18,-62,-46,-62v-26,0,-44,24,-44,57v0,37,19,63,46,63v27,0,44,-23,44,-58","w":192},"\u00f2":{"d":"135,-207r-13,18r-64,-35r17,-25xm178,-87v0,52,-35,91,-83,91v-46,0,-80,-37,-80,-88v0,-53,35,-91,84,-91v46,0,79,37,79,88xm141,-84v0,-37,-18,-62,-46,-62v-26,0,-44,24,-44,57v0,37,19,63,46,63v27,0,44,-23,44,-58","w":192},"\u00f4":{"d":"153,-207r-14,18r-42,-26r-44,26r-13,-18r57,-41xm178,-87v0,52,-35,91,-83,91v-46,0,-80,-37,-80,-88v0,-53,35,-91,84,-91v46,0,79,37,79,88xm141,-84v0,-37,-18,-62,-46,-62v-26,0,-44,24,-44,57v0,37,19,63,46,63v27,0,44,-23,44,-58","w":192},"\u00f6":{"d":"149,-218v0,10,-8,19,-18,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,18,9,18,19xm81,-218v0,10,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v10,0,19,9,19,19xm178,-87v0,52,-35,91,-83,91v-46,0,-80,-37,-80,-88v0,-53,35,-91,84,-91v46,0,79,37,79,88xm141,-84v0,-37,-18,-62,-46,-62v-26,0,-44,24,-44,57v0,37,19,63,46,63v27,0,44,-23,44,-58","w":192},"\u00f5":{"d":"36,-213v27,-38,46,-26,81,-12v6,0,14,-5,24,-15r16,15v-25,36,-50,26,-82,12v-5,-1,-17,8,-23,15xm178,-87v0,52,-35,91,-83,91v-46,0,-80,-37,-80,-88v0,-53,35,-91,84,-91v46,0,79,37,79,88xm141,-84v0,-37,-18,-62,-46,-62v-26,0,-44,24,-44,57v0,37,19,63,46,63v27,0,44,-23,44,-58","w":192},"\u00fa":{"d":"135,-224r-64,34r-13,-17r60,-42xm59,-73v-8,65,50,48,76,14r0,-110r35,0r0,169r-35,0r0,-27v-37,43,-111,49,-111,-37r0,-105r35,0r0,96","w":194},"\u00f9":{"d":"135,-207r-13,18r-64,-35r17,-25xm59,-73v-8,65,50,48,76,14r0,-110r35,0r0,169r-35,0r0,-27v-37,43,-111,49,-111,-37r0,-105r35,0r0,96","w":194},"\u00fb":{"d":"153,-207r-13,18r-43,-26r-43,26r-14,-18r57,-41xm59,-73v-8,65,50,48,76,14r0,-110r35,0r0,169r-35,0r0,-27v-37,43,-111,49,-111,-37r0,-105r35,0r0,96","w":194},"\u00fc":{"d":"150,-218v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,19,9,19,19xm82,-218v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,19,9,19,19xm59,-73v-8,65,50,48,76,14r0,-110r35,0r0,169r-35,0r0,-27v-37,43,-111,49,-111,-37r0,-105r35,0r0,96","w":194},"\u2020":{"d":"182,-113r-67,0r-2,154r-32,0r-2,-154r-67,0r0,-28r67,0r-2,-99r39,0r-1,99r67,0r0,28","w":194},"\u00b0":{},"\u00a2":{"d":"75,-51v-30,-12,-52,-44,-52,-85v0,-51,31,-90,76,-93r4,-30r26,0r-4,32v15,4,21,6,34,14r-12,26r-26,-10v-3,38,-16,83,-14,117v12,-1,30,-12,44,-23v3,8,20,18,13,25v-23,22,-40,29,-63,29r-5,31r-26,0xm94,-198v-40,5,-45,91,-15,112","w":193},"\u00a3":{"d":"189,-235r-11,26v-55,-23,-85,6,-90,68r85,0r0,28r-89,0v-4,35,-5,67,-25,82r126,0r0,31r-173,0r-7,-27v36,5,37,-51,43,-86r-38,0r0,-28r41,0v6,-80,61,-130,138,-94","w":198},"\u00a7":{"d":"143,-49v49,38,0,92,-62,92v-28,0,-36,-2,-58,-8r7,-25v33,9,94,10,95,-19v-15,-40,-108,-44,-108,-99v0,-19,10,-36,29,-46v-45,-37,-6,-92,61,-92v23,0,33,2,58,8r-6,26v-32,-9,-93,-11,-94,19v17,42,109,39,107,97v0,19,-10,35,-29,47xm118,-63v31,-20,28,-42,-11,-59r-36,-17v-38,15,-14,53,14,59","w":191},"\u2022":{"d":"170,-122v0,27,-22,50,-49,50v-28,0,-50,-22,-50,-50v0,-27,22,-50,49,-50v28,0,50,22,50,50","w":240},"\u00b6":{},"\u00df":{"d":"24,-160v-4,-71,29,-102,83,-102v63,0,83,68,33,106v-16,12,-27,28,0,42v72,37,62,115,-27,117v-17,0,-24,-1,-39,-5r7,-26v23,9,75,3,71,-22v6,-22,-79,-62,-66,-78v-2,-18,56,-56,48,-77v0,-16,-14,-27,-32,-27v-33,0,-43,25,-43,72r0,160r-35,0r0,-160","w":200},"\u00ae":{"d":"259,-120v0,71,-57,127,-127,127v-70,0,-127,-57,-127,-127v0,-70,57,-127,127,-127v70,0,127,57,127,127xm244,-120v0,-62,-50,-112,-112,-112v-63,0,-112,50,-112,114v0,59,52,110,112,110v62,0,112,-50,112,-112xm84,-192v45,-1,102,-4,101,37v0,16,-12,33,-30,35v22,16,28,48,44,70r-33,0r-29,-54v-4,-9,-13,-8,-24,-8r0,62r-29,0r0,-142xm155,-153v0,-20,-20,-21,-42,-20r0,42v22,1,42,-2,42,-22","w":264},"\u00a9":{"d":"259,-120v0,71,-57,127,-127,127v-70,0,-127,-57,-127,-127v0,-70,57,-127,127,-127v70,0,127,57,127,127xm244,-120v0,-62,-50,-112,-112,-112v-63,0,-112,50,-112,114v0,59,52,110,112,110v62,0,112,-50,112,-112xm86,-121v0,51,54,66,94,41r9,18v-49,34,-133,7,-133,-57v0,-60,71,-92,130,-66r-6,18v-41,-17,-94,-1,-94,46","w":264},"\u2122":{"d":"279,-104r-27,0r-12,-92r-34,92r-23,0r-35,-92r-12,92r-26,0r21,-136r27,0r37,98r36,-98r28,0xm117,-221r-44,0r0,117r-27,0r0,-117r-44,0r0,-19r115,0r0,19","w":286},"\u00b4":{"d":"77,-224r-65,34r-12,-17r60,-42","w":76},"\u00a8":{"d":"106,-218v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,19,9,19,19xm38,-218v0,10,-9,19,-19,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,19,9,19,19","w":105},"\u2260":{"d":"194,-51r-106,0r-30,60r-17,-9r26,-51r-62,0r0,-20r72,0r25,-50r-97,0r0,-19r107,0r29,-58r17,9r-24,49r60,0r0,19r-71,0r-25,50r96,0r0,20","w":197},"\u00c6":{"d":"318,0r-144,0r0,-79r-80,0r-49,79r-43,0r150,-240r158,0r0,30r-98,0r0,70r93,0r0,29r-93,0r0,80r106,0r0,31xm174,-108r0,-104r-64,104r64,0","w":332},"\u00d8":{"d":"250,-232r-26,28v61,77,6,209,-94,209v-28,0,-52,-9,-72,-27r-24,27r-17,-15r26,-28v-58,-79,-5,-207,95,-207v28,0,51,8,71,25r25,-27xm183,-192v-49,-50,-125,-5,-125,70v0,24,2,33,13,54xm134,-28v65,0,95,-89,63,-146r-113,125v13,13,30,21,50,21","w":268},"\u221e":{"d":"129,-109v21,-26,34,-40,67,-40v31,0,52,22,52,53v0,32,-21,55,-50,55v-30,0,-50,-19,-69,-41v-17,22,-39,41,-69,41v-31,0,-51,-22,-51,-54v0,-31,22,-54,52,-54v34,0,44,15,68,40xm141,-95v23,22,25,35,56,35v20,0,33,-14,33,-35v0,-55,-70,-36,-89,0xm117,-96v-20,-21,-28,-34,-57,-34v-21,0,-33,13,-33,35v0,59,71,30,90,-1","w":256},"\u00b1":{"d":"187,-122v0,0,1,11,-8,11r-64,0r0,65v1,8,-4,7,-11,7v-7,0,-8,0,-8,-7r0,-65r-64,0v-9,1,-8,-3,-8,-11v0,-7,1,-8,8,-8r64,0r0,-64v-1,-8,3,-8,11,-8v7,0,8,1,8,8r0,64r64,0v7,0,8,1,8,8xm187,-11v0,8,0,12,-8,11r-147,0v-8,1,-8,-3,-8,-11v0,-7,1,-8,8,-8r147,0v7,0,8,1,8,8","w":211},"\u2264":{"d":"189,-42r-179,-84r0,-20r179,-84r0,22r-150,72r150,72r0,22xm189,0r-179,0r0,-20r179,0r0,20","w":197},"\u2265":{"d":"189,-126r-179,84r0,-22r151,-72r-151,-72r0,-22r179,84r0,20xm189,0r-179,0r0,-20r179,0r0,20","w":197},"\u00a5":{"d":"203,-240r-61,98r47,0r0,26r-64,0r-3,19r67,0r0,25r-67,0r0,72r-36,0r0,-72r-66,0r0,-25v21,-2,49,4,66,-2r-2,-17r-64,0r0,-26r48,0r-62,-98r42,0r58,96r57,-96r40,0","w":213},"\u2211":{"d":"206,35r-174,0r0,-22r75,-139r-75,-126r0,-21r171,0r0,78r-25,0r-4,-57r-113,0r77,126r-80,140r120,0r3,-58r25,0r0,79","w":247},"\u220f":{"d":"256,-6v-1,34,7,38,33,41r0,10r-104,0v1,-3,-1,-9,1,-10v25,-3,31,-8,31,-41r0,-208v17,-68,-67,-33,-112,-40v-24,2,-24,7,-24,40r0,208v-1,34,7,38,32,41r0,10r-104,0v1,-3,-1,-9,1,-10v25,-3,32,-7,32,-41r0,-213v1,-34,-7,-39,-33,-42r0,-9r280,0v-1,3,1,8,-1,9v-25,3,-32,8,-32,42r0,213","w":296},"\u03c0":{"d":"143,-148v-2,36,-17,115,19,117v12,0,17,-7,20,-26r9,0v1,37,-19,62,-43,62v-47,0,-37,-102,-28,-153r-39,0r-14,123v-4,19,-14,30,-27,30v-23,0,-26,-28,-5,-44v32,-25,17,-67,28,-109v-29,0,-37,-2,-52,23r-7,0v10,-36,17,-55,58,-55r126,0r0,32r-45,0","w":197},"\u222b":{"d":"41,-208v4,-58,-4,-117,43,-122v23,-3,29,27,7,28v-6,3,-11,-11,-19,-14v-21,16,-7,70,-7,109r0,123v-4,59,3,117,-43,123v-22,2,-30,-26,-8,-28v8,-2,11,16,18,14v23,-14,9,-70,9,-109r0,-124","w":98},"\u00aa":{"d":"15,-224v26,-26,81,-31,74,25v3,15,-8,54,12,46r2,15v-14,8,-32,3,-34,-12v-19,21,-56,21,-56,-11v0,-20,17,-33,54,-42v3,-32,-29,-19,-43,-7xm102,-103r-87,0r0,-17r87,0r0,17xm43,-154v10,0,29,-11,24,-32v-22,6,-33,14,-33,23v0,5,4,9,9,9","w":108},"\u00ba":{"d":"109,-191v1,33,-20,57,-49,57v-27,0,-47,-23,-47,-54v0,-32,21,-55,50,-55v26,0,46,22,46,52xm107,-103r-92,0r0,-17r92,0r0,17xm86,-189v0,-20,-11,-35,-26,-35v-14,0,-24,13,-24,32v0,23,10,38,26,38v15,0,24,-13,24,-35","w":122},"\u03a9":{"d":"265,0r-105,0r6,-56v71,-30,53,-175,-27,-175v-65,0,-98,106,-51,156v7,7,11,11,23,19r6,56r-105,0r0,-55r9,0v3,35,45,20,77,23r-1,-14v-44,-16,-73,-44,-73,-92v0,-59,53,-109,115,-109v90,0,153,112,85,175v-12,11,-21,16,-44,26r-1,14v32,-3,75,12,77,-23r9,0r0,55","w":276},"\u00e6":{"d":"134,-150v45,-54,133,-14,117,68r-108,0v-1,68,60,67,97,35r13,20v-39,38,-105,48,-133,-4v-24,24,-45,35,-66,35v-23,0,-40,-18,-40,-42v0,-34,36,-59,94,-67v2,-58,-38,-41,-75,-16r-14,-22v39,-30,89,-50,115,-7xm218,-107v-1,-27,-14,-43,-33,-43v-22,0,-37,18,-40,45xm111,-52v-3,-11,-3,-15,-3,-29v-39,9,-59,22,-59,39v8,34,45,10,62,-10","w":265},"\u00f8":{"d":"184,-160r-18,19v37,56,1,145,-68,145v-18,0,-37,-7,-51,-18r-16,18r-16,-14r18,-20v-37,-56,-1,-145,69,-145v18,0,35,6,50,18r16,-18xm129,-132v-30,-32,-77,-5,-75,44v0,12,1,17,6,30xm71,-38v45,40,89,-23,69,-75","w":198},"\u00bf":{"d":"115,-167v0,12,-10,22,-22,22v-12,0,-21,-10,-21,-22v0,-12,9,-22,21,-22v12,0,22,10,22,22xm156,38v-47,30,-145,33,-144,-35v0,-33,23,-63,67,-83r0,-41r30,0r4,57v-40,13,-64,37,-64,61v0,43,62,34,94,16","w":173},"\u00a1":{"d":"79,-162v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22v12,0,22,10,22,22xm75,59r-38,0r5,-175r30,0","w":114},"\u00ac":{"d":"168,0r-28,0r0,-76r-128,0r0,-20r156,0r0,96"},"\u221a":{"d":"185,-327r-54,340r-87,-179r-35,17r-5,-13r52,-25r70,142r46,-284","w":197},"\u0192":{"d":"174,-252r-8,27v-39,-14,-59,15,-61,55r42,0r-4,27r-42,0v-20,81,-9,197,-86,219r-13,-27v26,-15,34,-27,39,-56r23,-136r-30,0r5,-27r30,0v5,-47,19,-89,72,-86v15,0,21,0,33,4"},"\u2248":{"d":"5,-112v19,-34,59,-34,98,-20v47,16,41,15,73,-15r14,12v-22,51,-87,22,-133,12v-21,2,-22,8,-36,23xm5,-56v20,-51,99,-18,134,-11v14,0,20,-4,37,-23r14,12v-22,50,-90,20,-133,12v-21,1,-22,7,-36,22","w":197},"\u0394":{"d":"219,0r-217,0r116,-248xm172,-18r-68,-165r-76,165r144,0","w":220},"\u00ab":{"d":"141,-34r-22,12r-47,-66r47,-64r21,12r-31,52xm80,-33r-22,11r-46,-66r46,-64r22,12r-32,52","w":157},"\u00bb":{"d":"146,-87r-47,65r-21,-12r32,-53r-32,-54r21,-12xm85,-87r-46,65r-22,-12r32,-53r-31,-53r21,-12","w":157},"\u2026":{"d":"261,-20v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22v12,0,22,10,22,22xm169,-20v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22v12,0,22,10,22,22xm77,-20v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22v12,0,22,10,22,22","w":294},"\u00a0":{"w":84},"\u00c0":{"d":"162,-278r-11,20r-71,-31r16,-29xm240,0r-41,0r-31,-79r-97,0r-31,79r-38,0r99,-240r40,0xm157,-107r-38,-95r-37,95r75,0","w":242},"\u00c3":{"d":"97,-308v27,2,52,30,72,-2r16,17v-26,37,-54,25,-86,12v-6,0,-16,6,-25,15r-17,-17v14,-17,28,-25,40,-25xm240,0r-41,0r-31,-79r-97,0r-31,79r-38,0r99,-240r40,0xm157,-107r-38,-95r-37,95r75,0","w":242},"\u00d5":{"d":"156,-294v5,1,17,-8,25,-16r16,17v-26,37,-54,25,-86,12v-6,0,-16,6,-26,15r-16,-17v26,-38,53,-21,87,-11xm248,-123v0,73,-50,128,-118,128v-66,0,-113,-51,-113,-123v0,-74,50,-127,119,-127v66,0,112,51,112,122xm133,-28v47,0,76,-41,76,-97v0,-52,-34,-88,-77,-88v-43,0,-75,39,-75,91v0,55,32,94,76,94","w":266},"\u0152":{"d":"17,-118v0,-82,57,-122,166,-122r125,0r0,30r-100,0r0,70r94,0r0,29r-94,0r0,80r107,0r0,31r-161,0v-86,3,-137,-44,-137,-118xm57,-119v0,58,42,93,113,88r0,-179v-73,-5,-113,32,-113,91","w":330},"\u0153":{"d":"291,-27v-41,37,-109,46,-135,-4v-38,66,-141,30,-141,-53v0,-84,104,-125,143,-56v40,-63,144,-37,131,57r-113,0v-7,68,67,68,101,35xm254,-108v-3,-60,-70,-49,-76,2xm141,-84v0,-37,-19,-62,-46,-62v-25,0,-44,25,-44,57v0,36,20,63,47,63v26,0,43,-23,43,-58","w":303},"\u2013":{"d":"181,-84r-170,0r0,-25r170,0r0,25","w":192},"\u2014":{"d":"352,-84r-341,0r0,-25r341,0r0,25","w":363},"\u201c":{"d":"116,-171r-36,0r12,-74r24,0r0,74xm60,-171r-37,0r13,-74r24,0r0,74","w":144},"\u201d":{"d":"67,-245r-13,74r-24,0r0,-74r37,0xm122,-245r-11,74r-25,0r0,-74r36,0","w":144},"\u2018":{"d":"59,-166r-36,0r12,-79r24,0r0,79","w":87},"\u2019":{"d":"67,-245r-13,79r-24,0r0,-79r37,0","w":88},"\u00f7":{"d":"98,-191v35,0,27,48,0,48v-12,0,-23,-11,-23,-24v0,-12,11,-24,23,-24xm193,-84r-189,0r0,-24r189,0r0,24xm98,-47v35,0,27,47,0,47v-12,0,-23,-10,-23,-23v0,-12,11,-24,23,-24","w":197},"\u25ca":{"d":"168,-135r-71,135r-22,0r-69,-136r71,-130r23,0xm145,-135r-57,-111r-59,110r57,115","w":177},"\u00ff":{"d":"141,-218v0,10,-8,19,-18,19v-10,0,-19,-9,-19,-19v0,-10,9,-19,19,-19v10,0,18,9,18,19xm73,-218v0,10,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,8,-19,18,-19v10,0,19,9,19,19xm175,-169r-83,202v-13,42,-39,64,-89,49r7,-24v44,10,47,-29,61,-57r-68,-170r38,0r49,130r50,-130r35,0","w":177},"\u0178":{"d":"148,-267v-11,0,-20,-10,-20,-21v0,-11,9,-20,20,-20v11,0,20,9,20,20v0,12,-9,21,-20,21xm84,-288v0,12,-9,21,-20,21v-11,0,-20,-10,-20,-21v0,-12,9,-20,20,-20v11,0,20,9,20,20xm210,-240r-85,134r0,106r-38,0r0,-106r-85,-134r44,0r61,102r62,-102r41,0","w":212},"\u2044":{"d":"177,-234r-159,240r-18,-12r159,-241","w":177},"\u00a4":{"d":"153,-180v11,-10,30,-38,38,-13v-7,10,-17,18,-25,27v20,27,20,66,0,93v9,11,38,27,14,38v-12,-5,-19,-17,-28,-25v-27,21,-66,22,-94,1v-10,9,-28,38,-37,11r24,-25v-22,-28,-23,-65,-1,-94v-10,-11,-36,-26,-13,-38v11,6,18,17,27,25v29,-22,66,-23,95,0xm157,-120v0,-30,-23,-54,-52,-54v-29,0,-52,24,-52,54v0,30,23,53,52,53v29,0,52,-23,52,-53","w":211},"\u2039":{"d":"80,-34r-21,12r-47,-66r47,-64r20,12r-31,52","w":97},"\u203a":{"d":"85,-87r-46,65r-22,-12r32,-53r-32,-54r22,-12","w":96},"\ufb01":{"d":"173,-219v0,12,-9,21,-21,21v-12,0,-21,-9,-21,-21v0,-12,9,-20,21,-20v12,0,21,8,21,20xm123,-231v-43,-12,-61,13,-55,62r102,0r0,169r-35,0r0,-145r-67,0r0,145r-35,0r0,-145r-29,0r0,-24r29,0v-10,-72,33,-105,97,-87","w":194},"\ufb02":{"d":"120,-233v-44,-7,-56,16,-52,64r70,0r0,-88r35,0r0,257r-35,0r0,-145r-70,0r0,145r-35,0r0,-145r-29,0r0,-24r29,0v-7,-69,28,-103,93,-89","w":198},"\u2021":{"d":"183,-63r-68,0r-1,104r-32,0r-1,-104r-68,0r0,-27r67,0r0,-53r-67,0r0,-27r66,0r-1,-70r39,0r-1,70r67,0r0,27r-67,0r-1,53r68,0r0,27","w":195},"\u00b7":{"d":"77,-120v0,12,-10,22,-22,22v-12,0,-22,-10,-22,-22v0,-12,10,-22,22,-22v12,0,22,10,22,22","w":110},"\u201a":{"d":"70,-39r-12,80r-25,0r0,-80r37,0","w":99},"\u201e":{"d":"67,-39r-13,74r-24,0r0,-74r37,0xm122,-39r-11,74r-25,0r0,-74r36,0","w":144},"\u2030":{"d":"240,-60v0,37,-24,65,-57,65v-32,0,-55,-26,-55,-63v0,-39,24,-65,57,-65v32,0,55,26,55,63xm120,-183v0,37,-25,65,-58,65v-32,0,-54,-26,-54,-63v0,-39,24,-65,57,-65v32,0,55,26,55,63xm213,-234r-159,240r-19,-12r159,-241xm363,-60v0,37,-24,65,-57,65v-32,0,-54,-26,-54,-63v0,-39,23,-65,57,-65v32,0,54,26,54,63xm212,-59v0,-25,-11,-41,-28,-41v-17,0,-28,16,-28,40v0,26,10,41,28,41v18,0,28,-15,28,-40xm92,-182v0,-25,-11,-40,-28,-40v-17,0,-29,15,-29,39v0,26,11,41,29,41v18,0,28,-15,28,-40xm336,-59v0,-25,-12,-41,-29,-41v-17,0,-28,16,-28,40v0,26,11,41,29,41v17,0,28,-15,28,-40","w":370},"\u00c2":{"d":"184,-279r-13,20r-49,-24r-51,24r-12,-20r63,-39xm240,0r-41,0r-31,-79r-97,0r-31,79r-38,0r99,-240r40,0xm157,-107r-38,-95r-37,95r75,0","w":242},"\u00ca":{"d":"165,-279r-13,20r-49,-24r-51,24r-12,-20r63,-39xm176,0r-148,0r0,-240r141,0r0,30r-103,0r0,70r97,0r0,29r-97,0r0,80r110,0r0,31","w":190},"\u00c1":{"d":"162,-290v-21,13,-48,21,-71,32r-11,-19r66,-40xm240,0r-41,0r-31,-79r-97,0r-31,79r-38,0r99,-240r40,0xm157,-107r-38,-95r-37,95r75,0","w":242},"\u00cb":{"d":"144,-267v-11,0,-20,-10,-20,-21v0,-11,9,-20,20,-20v11,0,21,9,21,20v0,12,-10,21,-21,21xm80,-288v0,12,-9,21,-20,21v-11,0,-20,-10,-20,-21v0,-12,8,-20,20,-20v11,0,20,9,20,20xm176,0r-148,0r0,-240r141,0r0,30r-103,0r0,70r97,0r0,29r-97,0r0,80r110,0r0,31","w":190},"\u00c8":{"d":"143,-278r-11,20r-71,-31r16,-29xm176,0r-148,0r0,-240r141,0r0,30r-103,0r0,70r97,0r0,29r-97,0r0,80r110,0r0,31","w":190},"\u00cd":{"d":"89,-290v-22,13,-49,21,-72,32r-11,-19r66,-40xm67,0r-39,0r0,-240r39,0r0,240","w":94},"\u00ce":{"d":"110,-279r-12,20r-50,-24r-51,24r-12,-20r63,-39xm67,0r-39,0r0,-240r39,0r0,240","w":94},"\u00cf":{"d":"90,-267v-11,0,-21,-10,-21,-21v0,-11,10,-20,21,-20v11,0,20,9,20,20v0,12,-9,21,-20,21xm25,-288v0,12,-9,21,-20,21v-11,0,-20,-10,-20,-21v0,-12,9,-20,20,-20v11,0,20,9,20,20xm67,0r-39,0r0,-240r39,0r0,240","w":94},"\u00cc":{"d":"89,-278r-12,20r-71,-31r17,-29xm67,0r-39,0r0,-240r39,0r0,240","w":94},"\u00d3":{"d":"174,-290v-21,13,-48,21,-71,32r-11,-19r66,-40xm248,-123v0,73,-50,128,-118,128v-66,0,-113,-51,-113,-123v0,-74,50,-127,119,-127v66,0,112,51,112,122xm133,-28v47,0,76,-41,76,-97v0,-52,-34,-88,-77,-88v-43,0,-75,39,-75,91v0,55,32,94,76,94","w":266},"\u00d4":{"d":"195,-279r-12,20r-49,-24r-51,24r-12,-20r63,-39xm248,-123v0,73,-50,128,-118,128v-66,0,-113,-51,-113,-123v0,-74,50,-127,119,-127v66,0,112,51,112,122xm133,-28v47,0,76,-41,76,-97v0,-52,-34,-88,-77,-88v-43,0,-75,39,-75,91v0,55,32,94,76,94","w":266},"\u00d2":{"d":"174,-278r-11,20r-71,-31r16,-29xm248,-123v0,73,-50,128,-118,128v-66,0,-113,-51,-113,-123v0,-74,50,-127,119,-127v66,0,112,51,112,122xm133,-28v47,0,76,-41,76,-97v0,-52,-34,-88,-77,-88v-43,0,-75,39,-75,91v0,55,32,94,76,94","w":266},"\u00da":{"d":"166,-290v-21,13,-48,21,-71,32r-11,-19r66,-40xm123,-27v42,0,66,-21,66,-72r0,-141r34,0r0,144v2,68,-39,101,-102,101v-61,0,-94,-27,-94,-99r0,-146r38,0r0,146v-2,46,18,67,58,67","w":250},"\u00db":{"d":"188,-279r-13,20r-49,-24r-51,24r-12,-20r63,-39xm123,-27v42,0,66,-21,66,-72r0,-141r34,0r0,144v2,68,-39,101,-102,101v-61,0,-94,-27,-94,-99r0,-146r38,0r0,146v-2,46,18,67,58,67","w":250},"\u00d9":{"d":"166,-278r-11,20r-71,-31r16,-29xm123,-27v42,0,66,-21,66,-72r0,-141r34,0r0,144v2,68,-39,101,-102,101v-61,0,-94,-27,-94,-99r0,-146r38,0r0,146v-2,46,18,67,58,67","w":250},"\u0131":{"d":"59,0r-34,0r0,-169r34,0r0,169","w":84},"\u02c6":{"d":"113,-207r-14,18r-42,-26r-44,26r-13,-18r57,-41","w":113},"\u02dc":{"d":"0,-213v27,-38,46,-26,81,-12v6,0,14,-5,24,-15r16,15v-25,36,-50,26,-81,12v-5,-1,-18,8,-24,15","w":121},"\u00af":{},"\u02d8":{"d":"98,-241v-1,27,-21,45,-49,45v-28,0,-49,-20,-49,-45r23,0v2,14,10,21,26,21v16,0,25,-7,26,-21r23,0","w":97},"\u02d9":{},"\u02da":{"d":"61,-219v0,17,-13,30,-30,30v-17,0,-31,-13,-31,-30v0,-17,14,-30,31,-30v17,0,30,13,30,30xm46,-219v0,-9,-6,-16,-15,-16v-9,0,-16,7,-16,16v0,8,7,16,16,16v9,0,15,-7,15,-16","w":60},"\u00b8":{},"\u02dd":{},"\u02db":{},"\u02c7":{}}});


if(typeof sIFR == "function"){
    // This is the preferred "named argument" syntax
        sIFR.replaceElement(named({sSelector:"#navigation a", sFlashSrc:"/fonts/foco_bold_drop.swf", sColor:"#FFFFFF", sLinkColor:"#FFFFFF", sWmode: 'transparent', sHoverColor:"#CCCCCC"}));
}


var BrowserDetect = {
        init: function () {
                this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
                this.version = this.searchVersion(navigator.userAgent)
                        || this.searchVersion(navigator.appVersion)
                        || "an unknown version";
                this.OS = this.searchString(this.dataOS) || "an unknown OS";
        },
        searchString: function (data) {
                for (var i=0;i<data.length;i++) {
                        var dataString = data[i].string;
                        var dataProp = data[i].prop;
                        this.versionSearchString = data[i].versionSearch || data[i].identity;
                        if (dataString) {
                                if (dataString.indexOf(data[i].subString) != -1)
                                        return data[i].identity;
                        }
                        else if (dataProp)
                                return data[i].identity;
                }
        },
        searchVersion: function (dataString) {
                var index = dataString.indexOf(this.versionSearchString);
                if (index == -1) return;
                return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
        },
        dataBrowser: [
                {
                        string: navigator.userAgent,
                        subString: "Chrome",
                        identity: "Chrome"
                },
                {       string: navigator.userAgent,
                        subString: "OmniWeb",
                        versionSearch: "OmniWeb/",
                        identity: "OmniWeb"
                },
                {
                        string: navigator.vendor,
                        subString: "Apple",
                        identity: "Safari",
                        versionSearch: "Version"
                },
                {
                        prop: window.opera,
                        identity: "Opera"
                },
                {
                        string: navigator.vendor,
                        subString: "iCab",
                        identity: "iCab"
                },
                {
                        string: navigator.vendor,
                        subString: "KDE",
                        identity: "Konqueror"
                },
                {
                        string: navigator.userAgent,
                        subString: "Firefox",
                        identity: "Firefox"
                },
                {
                        string: navigator.vendor,
                        subString: "Camino",
                        identity: "Camino"
                },
                {               // for newer Netscapes (6+)
                        string: navigator.userAgent,
                        subString: "Netscape",
                        identity: "Netscape"
                },
                {
                        string: navigator.userAgent,
                        subString: "MSIE",
                        identity: "ie",
                        versionSearch: "MSIE"
                },
                {
                        string: navigator.userAgent,
                        subString: "Gecko",
                        identity: "Mozilla",
                        versionSearch: "rv"
                },
                {               // for older Netscapes (4-)
                        string: navigator.userAgent,
                        subString: "Mozilla",
                        identity: "Netscape",
                        versionSearch: "Mozilla"
                }
        ],
        dataOS : [
                {
                        string: navigator.platform,
                        subString: "Win",
                        identity: "Windows"
                },
                {
                        string: navigator.platform,
                        subString: "Mac",
                        identity: "Mac"
                },
                {
                           string: navigator.userAgent,
                           subString: "iPhone",
                           identity: "iPhone/iPod"
            },
                {
                        string: navigator.platform,
                        subString: "Linux",
                        identity: "Linux"
                }
        ]

};
BrowserDetect.init();

