/*
 * 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")}})})();;
// $Id: drupal.js,v 1.41.2.4 2009/07/21 08:59:10 goba Exp $

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
// $Id: googleanalytics.js,v 1.9.2.4 2010/09/19 11:39:20 hass Exp $

$(document).ready(function() {

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

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

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          // External link clicked.
          _gaq.push(["_trackEvent", "Outgoing links", "Click", this.href]);
        }
      }

    });
  });
});
;
// $Id: uc_roles.js,v 1.1.2.4 2009/07/21 14:37:19 islandusurper Exp $

/**
 * @file
 * Enable and disable expiration fields to prevent invalid configurations.
 */

/**
 * Disable duration amount when its type is "never".
 */
function _uc_role_expiration_disable_check(granularity, quantity) {
  // 'never' means there's no point in setting a duration.
  if ($(granularity).val() == 'never') {
    $(quantity).attr('disabled', 'disabled').val('');
  }
  // Anything besides 'never' should enable setting a duration.
  else {
    $(quantity).removeAttr('disabled');
  }
}

/**
 * Switch between relative and absolute expiration durations.
 */
function expiration_switcher() {
  if ($('#edit-expiration').val() == 'abs') {
    $("#edit-uc-roles-expire-relative-duration-wrapper").hide();
    $("#edit-uc-roles-expire-relative-granularity-wrapper").hide();
    $("#edit-uc-roles-by-quantity-wrapper").hide();
    $("#edit-uc-roles-expire-absolute-wrapper").show();
  }
  else {
    $("#edit-uc-roles-expire-absolute-wrapper").hide();
    $("#edit-uc-roles-expire-relative-duration-wrapper").show();
    $("#edit-uc-roles-expire-relative-granularity-wrapper").show();
    $("#edit-uc-roles-by-quantity-wrapper").show();
  }
}

/**
 * Set the default state for expiration duration.
 */
function expiration_switcher_default() {
  if ($('#edit-uc-roles-default-end-expiration').val() == 'abs') {
    $("#edit-uc-roles-default-length-wrapper").attr('style', 'display:none;');
    $("#edit-uc-roles-default-granularity-wrapper").attr('style', 'display:none;');
    $("#edit-uc-roles-default-by-quantity-wrapper").attr('style', 'display:none;');
    $("#edit-uc-roles-default-end-time-wrapper").removeAttr('style');
  }
  else {
    $("#edit-uc-roles-default-length-wrapper").removeAttr('style');
    $("#edit-uc-roles-default-granularity-wrapper").removeAttr('style');
    $("#edit-uc-roles-default-by-quantity-wrapper").removeAttr('style');
    $("#edit-uc-roles-default-end-time-wrapper").attr('style', 'display:none;');
  }
}

/**
 * Override the expiration duration default state.
 */
function uc_roles_expiration_default_override() {
  if ($('#edit-end-override').length == 0) {
    return;
  }

  if ($('#edit-end-override').attr('checked')) {
    $('#edit-expiration-wrapper').removeAttr('style');
    $('#edit-uc-roles-expire-absolute-wrapper').removeAttr('style');
    $('#edit-uc-roles-expire-relative-duration-wrapper').removeAttr('style');
    $('#edit-uc-roles-expire-relative-granularity-wrapper').removeAttr('style');
    $('#edit-uc-roles-by-quantity-wrapper').removeAttr('style');
    expiration_switcher();
  }
  else {
    $('#edit-expiration-wrapper').attr('style', 'display:none;');
    $('#edit-uc-roles-expire-relative-duration-wrapper').attr('style', 'display:none;');
    $('#edit-uc-roles-expire-relative-granularity-wrapper').attr('style', 'display:none;');
    $('#edit-uc-roles-by-quantity-wrapper').attr('style', 'display:none;');
    $('#edit-uc-roles-expire-absolute-wrapper').attr('style', 'display:none;');
  }
}

$(document).ready(
  function() {
    _uc_role_expiration_disable_check('#edit-uc-roles-expire-relative-granularity', '#edit-uc-roles-expire-relative-duration');
    _uc_role_expiration_disable_check('#edit-uc-roles-default-granularity', '#edit-uc-roles-default-length');
    _uc_role_expiration_disable_check('#edit-uc-roles-reminder-granularity', '#edit-uc-roles-reminder-length');
    uc_roles_expiration_default_override();
    expiration_switcher_default();
  }
);

// When you change the role expiration time select.
Drupal.behaviors.ucRoleExpirationTime = function(context) {
  $("#edit-expiration:not(.ucRoleExpirationTime-processed)", context).addClass('ucRoleExpirationTime-processed').change(
    function() {
      expiration_switcher();
    }
  );
}

// When you change the default role expiration time select.
Drupal.behaviors.ucRoleDefaultExpirationTimeDefault = function(context) {
  $("#edit-uc-roles-default-end-expiration:not(.ucRoleDefaultExpirationTimeDefault-processed)", context).addClass('ucRoleDefaultExpirationTimeDefault-processed').change(
    function() {
      expiration_switcher_default();
    }
  );
}

// When you change the role expiration time select.
Drupal.behaviors.ucRoleExpirationTimeDefault = function(context) {
  $("#edit-uc-roles-end-expiration:not(.ucRoleExpirationTimeDefault-processed)", context).addClass('ucRoleExpirationTimeDefault-processed').change(
    function() {
      expiration_switcher_default();
    }
  );
}

// When you change the role expiration granularity select.
Drupal.behaviors.ucRoleExpirationGranularity = function(context) {
  $('#edit-uc-roles-expire-relative-granularity:not(.ucRoleExpirationGranularity-processed)', context).addClass('ucRoleExpirationGranularity-processed').change(
    function() {
      _uc_role_expiration_disable_check('#edit-uc-roles-expire-relative-granularity', '#edit-uc-roles-expire-relative-duration');
    }
  );
}

// When you change the default role expiration granularity select.
Drupal.behaviors.ucRoleDefaultExpirationGranularity = function(context) {
  $('#edit-uc-roles-default-granularity:not(.ucRoleDefaultExpirationGranularity-processed)', context).addClass('ucRoleDefaultExpirationGranularity-processed').change(
    function() {
      _uc_role_expiration_disable_check('#edit-uc-roles-default-granularity', '#edit-uc-roles-default-length');
    }
  );
}

// When you change the default role expiration granularity select.
Drupal.behaviors.ucRoleReminderExpirationGranularity = function(context) {
  $('#edit-uc-roles-reminder-granularity:not(.ucRoleReminderExpirationGranularity-processed)', context).addClass('ucRoleReminderExpirationGranularity-processed').change(
    function() {
      _uc_role_expiration_disable_check('#edit-uc-roles-reminder-granularity', '#edit-uc-roles-reminder-length');
    }
  );
}

// When you change the default role expiration granularity select.
Drupal.behaviors.ucRoleExpirationEndOverride = function(context) {
  $('#edit-end-override:not(.ucRoleExpirationEndOverride-processed)', context).addClass('ucRoleExpirationEndOverride-processed').click(
    function() {
      uc_roles_expiration_default_override();
    }
  );
}

;
/*
 * 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 (c) 2003 by This Font is designed by Ralph Oliver du Carrois. All
 * rights reserved.
 * 
 * Trademark:
 * Colaborate-Regular is a trademark of This Font is designed by Ralph Oliver du
 * Carrois.
 * 
 * Description:
 * Copyright (c) 2003 by This Font is designed by Ralph Oliver du Carrois. All
 * rights reserved.
 * 
 * Manufacturer:
 * This Font is designed by Ralph Oliver du Carrois
 */
Cufon.registerFont({"w":185,"face":{"font-family":"Colaborate-Regular","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 6 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-10 -269 320 82","underline-thickness":"18","underline-position":"-18","stemh":"24","stemv":"36","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":92},"!":{"d":"62,-63r-32,0r0,-170r32,0r0,170xm64,0r-36,0r0,-35r36,0r0,35","w":92},"\"":{"d":"109,-233r-2,78r-25,0r-2,-78r29,0xm58,-233r-3,78r-24,0r-3,-78r30,0","w":136},"#":{"d":"180,-141r-39,0r-9,52r34,0r0,24r-38,0r-12,65r-28,0r12,-65r-35,0r-11,65r-28,0r11,-65r-32,0r0,-24r36,0r10,-52r-32,0r0,-24r36,0r12,-68r28,0r-12,68r34,0r12,-68r28,0r-12,68r35,0r0,24xm113,-141r-35,0r-9,52r35,0"},"$":{"d":"166,-60v0,44,-27,60,-62,65r0,30r-26,0r0,-29v-21,0,-41,-5,-62,-10r11,-31v17,6,32,14,51,14r0,-86v-30,-12,-63,-25,-63,-68v0,-39,28,-57,63,-61r0,-33r26,0r0,32v16,1,36,4,52,9r-12,31v-11,-5,-23,-11,-40,-12r0,76v30,12,62,27,62,73xm78,-143r0,-65v-19,4,-28,16,-28,33v0,16,13,25,28,32xm130,-60v0,-18,-11,-27,-26,-35r0,70v14,-4,26,-14,26,-35"},"%":{"d":"265,-60v0,35,-9,64,-49,64v-40,0,-49,-29,-49,-64v0,-35,12,-62,49,-62v40,0,49,27,49,62xm220,-226r-130,226r-29,0r130,-226r29,0xm115,-175v0,35,-9,64,-49,64v-40,0,-48,-29,-48,-64v0,-35,11,-62,48,-62v40,0,49,27,49,62xm242,-60v0,-27,-3,-45,-26,-45v-22,0,-25,22,-25,45v0,27,3,47,25,47v23,0,26,-20,26,-47xm92,-175v0,-27,-3,-45,-26,-45v-22,0,-25,22,-25,45v0,27,3,47,25,47v23,0,26,-20,26,-47","w":282},"&":{"d":"147,-181v0,58,-97,49,-97,117v0,21,11,45,43,45v16,0,30,-12,39,-26r0,-37r-35,0r0,-23r66,0v-1,34,0,80,5,105r-29,0r-5,-18v-33,43,-117,25,-117,-46v0,-24,8,-51,40,-67v-11,-9,-33,-21,-33,-47v0,-33,16,-60,61,-60v39,0,62,18,62,57xm114,-181v0,-18,-5,-32,-29,-32v-21,0,-28,14,-28,34v0,18,16,28,24,35v16,-7,33,-16,33,-37"},"'":{"d":"61,-233r-3,78r-24,0r-3,-78r30,0","w":92},"(":{"d":"87,46r-29,0v-57,-87,-47,-201,-1,-279r29,0v-44,85,-49,187,1,279","w":106},")":{"d":"50,-233v46,78,56,193,-1,279r-30,0v51,-92,46,-193,2,-279r29,0","w":106},"*":{"d":"144,-174v-17,6,-39,7,-54,15r35,45r-19,13r-30,-46r-3,0r-30,46r-19,-13v10,-16,29,-31,34,-47r-54,-14r8,-22v18,4,37,19,54,17r-3,-54r23,0r-3,55v17,2,36,-14,54,-18","w":147},"+":{"d":"169,-66r-62,0r0,66r-29,0r0,-66r-62,0r0,-25r62,0r0,-63r29,0r0,63r62,0r0,25"},",":{"d":"64,-27r-29,64r-25,0r18,-64r36,0","w":92},"-":{"d":"112,-71r-102,0r0,-27r102,0r0,27","w":121},".":{"d":"64,0r-36,0r0,-35r36,0r0,35","w":92,"k":{"y":22,"w":31,"v":22,"Y":22,"W":22,"V":22}},"\/":{"d":"102,-237r-76,241r-29,0r77,-241r28,0","w":99},"0":{"d":"171,-111v0,64,-12,117,-79,117v-66,0,-78,-53,-78,-117v0,-63,17,-112,78,-112v66,0,79,48,79,112xm135,-111v0,-50,-3,-85,-43,-85v-39,0,-42,43,-42,85v0,51,3,90,42,90v40,0,43,-42,43,-90"},"1":{"d":"129,0r-36,0r0,-183r-41,35r-11,-27r54,-44r34,0r0,219"},"2":{"d":"168,0r-142,0r-11,-30v34,-28,112,-83,112,-124v0,-59,-56,-48,-94,-25r-11,-30v64,-27,141,-25,141,53v0,49,-65,102,-100,129r105,0r0,27"},"3":{"d":"159,-59v0,74,-87,73,-145,56r10,-30v23,14,99,22,99,-26v0,-37,-29,-43,-69,-43r0,-26v39,0,63,-4,63,-36v0,-50,-61,-32,-89,-16r-10,-30v49,-24,135,-21,135,45v0,32,-22,47,-48,50v25,4,54,18,54,56"},"4":{"d":"177,-59r-34,0r0,59r-36,0r0,-59r-87,0r-12,-28r97,-132r38,0r0,133r34,0r0,27xm107,-86r0,-96r-70,96r70,0"},"5":{"d":"167,-69v0,75,-83,87,-149,66r11,-29v40,19,109,15,102,-38v4,-55,-57,-47,-82,-29r-24,-10r0,-110r133,0r0,27r-98,0r0,58v50,-19,107,3,107,65"},"6":{"d":"168,-68v0,42,-32,74,-73,74v-66,0,-79,-55,-79,-108v0,-58,27,-122,92,-122v13,0,34,3,49,7r-12,30v-51,-30,-100,12,-95,74v32,-61,118,-29,118,45xm132,-68v0,-23,-3,-50,-36,-50v-27,0,-38,19,-43,32v0,52,16,65,42,65v21,0,37,-16,37,-47"},"7":{"d":"162,-194r-80,194r-39,0r87,-191r-113,0r0,-27r133,0"},"8":{"d":"171,-55v0,49,-39,61,-80,61v-40,0,-78,-13,-78,-61v0,-32,21,-51,53,-60v-10,-4,-45,-16,-45,-50v0,-37,25,-59,72,-59v49,0,73,17,73,58v0,33,-35,48,-48,51v34,10,53,28,53,60xm92,-127v38,-2,62,-72,1,-70v-27,0,-37,10,-37,32v0,21,21,33,36,38xm136,-55v0,-28,-22,-40,-43,-47v-45,1,-68,83,-2,81v28,0,45,-12,45,-34"},"9":{"d":"169,-116v0,58,-27,122,-92,122v-13,0,-34,-3,-49,-7r12,-30v50,29,100,-12,95,-73v-33,60,-119,27,-119,-46v0,-42,34,-74,74,-74v67,0,79,55,79,108xm132,-132v0,-52,-17,-65,-43,-65v-21,0,-36,16,-36,47v0,23,3,50,36,50v27,0,38,-19,43,-32"},":":{"d":"64,-128r-36,0r0,-35r36,0r0,35xm64,0r-36,0r0,-35r36,0r0,35","w":92},";":{"d":"64,-128r-36,0r0,-35r36,0r0,35xm64,-27r-29,64r-25,0r18,-64r36,0","w":92},"<":{"d":"171,-10r-157,-57r0,-36r157,-57r0,32r-124,43r124,43r0,32"},"=":{"d":"171,-92r-157,0r0,-26r157,0r0,26xm171,-30r-157,0r0,-26r157,0r0,26"},">":{"d":"171,-68r-157,58r0,-32r124,-44r-124,-42r0,-32r157,57r0,35"},"?":{"d":"145,-179v0,43,-58,51,-58,87r0,31r-33,0r0,-33v0,-49,57,-53,57,-85v0,-44,-59,-30,-86,-17r-7,-30v50,-14,127,-28,127,47xm89,0r-36,0r0,-35r36,0r0,35","w":156},"@":{"d":"284,-137v0,69,-53,92,-112,92v-50,0,-80,-25,-80,-71v0,-49,55,-81,108,-63r0,62r10,-1r9,24r-48,5r0,-69v-25,-4,-47,5,-47,42v0,39,29,47,49,47v45,0,79,-13,79,-68v0,-58,-43,-75,-84,-75v-44,0,-106,19,-106,97v0,112,100,107,183,84r11,27v-110,28,-227,4,-227,-111v0,-82,62,-122,139,-122v51,0,116,27,116,100","w":313},"A":{"d":"225,0r-39,0r-23,-66r-90,0r-24,66r-38,0r95,-233r32,0xm154,-93r-34,-98r-36,98r70,0","w":236,"k":{"y":19,"w":19,"v":19,"u":4,"t":4,"q":4,"o":4,"e":4,"d":4,"c":4,"a":4,"Y":19,"W":19,"V":19,"T":19,"Q":4,"O":4,"G":4,"C":4,"@":9,"&":9}},"B":{"d":"197,-67v0,86,-85,64,-162,67r0,-233v71,2,153,-15,151,63v0,24,-16,41,-37,48v29,5,48,23,48,55xm149,-170v0,-38,-40,-36,-78,-35r0,71v39,0,78,6,78,-36xm160,-67v0,-47,-46,-38,-89,-39r0,78v43,-2,89,11,89,-39","w":217,"k":{"V":3}},"C":{"d":"188,-4v-21,7,-40,10,-64,10v-75,0,-102,-50,-102,-122v0,-65,25,-121,104,-121v20,0,41,3,59,9r-11,30v-15,-6,-31,-12,-48,-12v-51,0,-67,39,-67,93v0,57,16,96,65,96v19,0,33,-6,52,-14","w":201},"D":{"d":"212,-117v0,113,-69,123,-177,117r0,-233v106,-5,177,2,177,116xm175,-117v0,-87,-36,-90,-104,-88r0,177v69,3,104,-6,104,-89","w":234,"k":{"V":3,"J":7}},"E":{"d":"171,0r-136,0r0,-233r133,0r0,28r-97,0r0,71r90,0r0,27r-90,0r0,79r100,0r0,28","w":201},"F":{"d":"168,-205r-97,0r0,72r93,0r0,28r-93,0r0,105r-36,0r0,-233r133,0r0,28","w":187},"G":{"d":"199,-14v-24,13,-42,20,-74,20v-82,0,-103,-60,-103,-123v0,-72,30,-120,106,-120v16,0,39,5,56,9r-12,30v-58,-27,-113,-10,-113,81v0,56,14,96,67,96v17,0,29,-5,41,-12r0,-59r-51,0r0,-28r83,0r0,106","w":221},"H":{"d":"207,0r-36,0r0,-106r-100,0r0,106r-36,0r0,-233r36,0r0,99r100,0r0,-99r36,0r0,233","w":241},"I":{"d":"66,0r-36,0r0,-233r36,0r0,233","w":96},"J":{"d":"117,-73v0,78,-58,91,-102,103r-9,-30v32,-6,75,-9,75,-70r0,-163r36,0r0,160","w":151},"K":{"d":"219,0r-47,0r-101,-109r0,109r-36,0r0,-233r36,0r0,102r94,-102r40,0r-101,110","w":224,"k":{"y":19,"w":19,"v":19,"u":9,"q":9,"o":9,"e":9,"d":9,"c":9,"a":9,"U":4,"Q":9,"O":9,"G":9,"C":9,"@":9,"&":4}},"L":{"d":"172,0r-137,0r0,-233r36,0r0,204r101,0r0,29","w":174,"k":{"Y":35,"W":23,"V":26,"T":23,"O":7}},"M":{"d":"283,0r-35,0r0,-195r-73,195r-34,0r-73,-195r0,195r-33,0r0,-233r57,0r67,184r69,-184r55,0r0,233","w":317},"N":{"d":"218,0r-53,0r-97,-190r0,190r-33,0r0,-233r52,0r96,191r0,-191r35,0r0,233","w":252},"O":{"d":"231,-116v0,69,-27,122,-104,122v-81,0,-105,-53,-105,-122v0,-69,27,-121,105,-121v78,0,104,50,104,121xm194,-116v0,-62,-18,-94,-67,-94v-49,0,-68,32,-68,94v0,63,19,95,68,95v50,0,67,-36,67,-95","w":253,"k":{"Z":4,"Y":9,"X":9,"W":9,"V":9,"J":7,"A":4}},"P":{"d":"189,-165v0,66,-51,74,-118,70r0,95r-36,0r0,-233v75,0,154,-12,154,68xm153,-165v-1,-50,-40,-38,-82,-40r0,83v44,0,83,7,82,-43","w":208,"k":{"J":29,"A":17}},"Q":{"d":"231,-116v0,69,-27,122,-104,122v-81,0,-105,-53,-105,-122v0,-69,27,-121,105,-121v78,0,104,50,104,121xm207,22r-13,25r-79,-12r13,-20xm194,-116v0,-62,-18,-94,-67,-94v-49,0,-68,32,-68,94v0,63,19,95,68,95v50,0,67,-36,67,-95","w":253},"R":{"d":"205,0r-43,0r-75,-100r-16,0r0,100r-36,0r0,-233v74,2,156,-17,156,65v0,33,-15,61,-62,66xm154,-168v0,-41,-43,-38,-83,-37r0,77v42,2,83,3,83,-40","w":221},"S":{"d":"145,-60v-9,-60,-125,-37,-121,-115v3,-66,84,-71,144,-53r-12,31v-23,-18,-96,-20,-96,22v0,21,21,28,45,37v35,12,77,27,77,78v-1,79,-96,72,-158,56r11,-31v35,16,107,28,110,-25","w":205},"T":{"d":"177,-205r-66,0r0,205r-36,0r0,-205r-66,0r0,-28r168,0r0,28","w":186,"k":{"z":31,"y":31,"x":31,"w":31,"v":31,"u":31,"s":31,"r":31,"q":31,"p":31,"o":31,"n":31,"m":31,"j":9,"i":9,"g":31,"e":31,"d":31,"c":31,"a":31,"Q":9,"O":9,"J":19,"G":9,"C":9,"A":19,"@":9,";":31,":":31,".":31,",":31}},"U":{"d":"218,-85v0,62,-30,91,-89,91v-65,0,-94,-30,-94,-92r0,-147r36,0r0,143v0,56,22,69,58,69v34,0,53,-18,53,-69r0,-143r36,0r0,148","w":252},"V":{"d":"216,-233r-85,233r-33,0r-88,-233r40,0r66,187r62,-187r38,0","w":226,"k":{"z":9,"y":9,"x":9,"w":9,"v":9,"u":19,"s":19,"r":19,"q":19,"p":9,"o":19,"n":19,"m":19,"j":9,"i":9,"g":19,"e":19,"d":19,"c":19,"a":19,"Q":9,"O":9,"J":19,"G":9,"C":9,"A":31,";":9,":":9,".":19,",":19}},"W":{"d":"320,-233r-61,233r-44,0r-48,-174r-55,174r-44,0r-55,-233r37,0r45,188r53,-178r43,0r47,178r47,-188r35,0","w":332,"k":{"z":9,"y":9,"x":9,"w":4,"v":4,"u":9,"s":9,"r":9,"q":9,"p":9,"o":9,"n":9,"m":9,"j":6,"i":6,"g":9,"e":9,"d":9,"c":9,"a":9,"Q":9,"O":9,"J":19,"G":9,"C":9,"A":31,";":19,":":19,".":19,",":19}},"X":{"d":"204,0r-42,0r-54,-92r-58,92r-39,0r78,-120r-68,-113r41,0r48,81r51,-81r39,0r-72,111","w":217,"k":{"y":9,"w":9,"v":9,"Q":9,"O":9,"G":9,"C":9}},"Y":{"d":"207,-233r-82,128r0,105r-36,0r0,-103r-84,-130r41,0r62,97r61,-97r38,0","w":212,"k":{"s":9,"q":9,"o":9,"g":9,"e":9,"d":9,"c":9,"a":9,"O":9,"J":19,"G":9,"C":9,"A":19,".":19,",":19}},"Z":{"d":"182,-203r-127,175r124,0r0,28r-153,0r-10,-30r127,-175r-114,0r0,-28r143,0","w":198,"k":{"O":4}},"[":{"d":"87,46r-57,0r0,-289r57,0r0,23r-28,0r0,241r28,0r0,25","w":104},"\\":{"d":"102,4r-28,0r-77,-241r29,0","w":99},"]":{"d":"76,45r-57,0r0,-24r29,0r0,-241r-29,0r0,-24r57,0r0,289","w":104},"^":{"d":"173,-97r-31,0r-50,-106r-50,106r-30,0r65,-136r30,0"},"_":{"d":"180,39r-180,0r0,-24r180,0r0,24","w":180},"`":{"d":"75,-191r-24,0r-44,-42r34,0","w":82},"a":{"d":"158,0r-29,0v0,-1,-6,-16,-6,-18v-22,34,-113,28,-107,-25v-5,-37,34,-63,104,-59v1,-23,-1,-41,-28,-42v-23,0,-42,6,-58,14r-11,-26v46,-19,130,-25,130,40v0,43,-2,76,5,116xm121,-40r0,-39v-43,-2,-73,8,-71,34v2,33,62,28,71,5","w":180},"b":{"d":"168,-83v0,47,-23,87,-72,87v-20,0,-35,-12,-41,-22r-5,18r-29,0v7,-74,1,-158,3,-237r33,0r0,96v9,-13,23,-28,44,-28v49,0,67,40,67,86xm135,-82v0,-81,-64,-71,-79,-29r0,66v23,41,79,30,79,-37","w":183},"c":{"d":"149,-7v-64,28,-133,1,-133,-74v0,-77,68,-105,132,-77r-11,27v-42,-24,-88,-17,-88,50v0,62,45,71,89,48","w":162},"d":{"d":"163,0r-29,0r-5,-18v-8,12,-23,22,-41,22v-52,0,-72,-40,-72,-87v0,-46,22,-86,68,-86v21,0,34,15,43,28r0,-96r32,0r0,187v0,21,1,30,4,50xm128,-45r0,-66v-18,-45,-79,-50,-79,29v0,68,54,77,79,37","w":183},"e":{"d":"163,-70r-113,0v0,55,55,60,94,36r10,25v-19,9,-41,13,-63,13v-51,0,-75,-39,-75,-85v0,-38,15,-88,73,-88v58,0,74,37,74,99xm132,-94v-1,-35,-16,-50,-42,-50v-19,0,-38,14,-40,50r82,0","w":180},"f":{"d":"111,-216v-39,6,-52,17,-49,51r37,0r0,25r-37,0r0,140r-32,0r0,-140r-25,0r0,-25r25,0v-5,-53,41,-76,73,-78","w":111},"g":{"d":"176,-169r-9,22r-21,0v32,33,24,104,-53,102v-8,0,-27,-2,-35,-6v-4,4,-9,8,-9,14v0,9,9,13,50,16v63,5,76,20,76,46v0,35,-39,47,-80,47v-62,0,-81,-18,-81,-46v0,-19,20,-28,30,-32v-27,-10,-28,-45,-4,-58v-27,-30,-33,-105,52,-105v29,0,51,3,84,0xm130,-108v0,-23,-11,-36,-37,-36v-23,0,-38,12,-38,37v0,24,14,38,38,38v28,0,37,-20,37,-39xm142,25v0,-11,-17,-19,-76,-22v-12,4,-19,14,-19,22v0,14,19,24,48,24v35,0,47,-9,47,-24","w":187},"h":{"d":"159,0r-32,0r0,-103v0,-22,-4,-41,-31,-41v-20,0,-33,19,-39,33r0,111r-33,0r0,-237r33,0r0,96v6,-10,21,-28,44,-28v85,0,51,96,58,169","w":183},"i":{"d":"58,-201r-34,0r0,-32r34,0r0,32xm57,0r-32,0r0,-165r32,0r0,165","w":82},"j":{"d":"57,-201r-35,0r0,-32r35,0r0,32xm55,-2v0,37,-21,56,-54,66r-11,-27v25,-5,33,-15,33,-36r0,-166r32,0r0,163","w":80},"k":{"d":"162,0r-37,0r-68,-84r0,84r-33,0r0,-237r33,0r0,139r61,-67r35,0r-67,72","w":167,"k":{"o":9}},"l":{"d":"57,0r-33,0r0,-237r33,0r0,237","w":81},"m":{"d":"260,0r-32,0r0,-104v4,-62,-71,-41,-71,-5r0,109r-32,0r0,-104v5,-61,-61,-40,-68,-8r0,112r-33,0r0,-127v0,-14,-2,-26,-3,-38r29,0r6,24v6,-9,23,-28,44,-28v29,0,41,11,52,30v9,-15,26,-30,50,-30v77,0,55,98,58,169","w":284},"n":{"d":"159,0r-32,0r0,-104v0,-21,-3,-40,-31,-40v-19,0,-32,18,-39,33r0,111r-33,0r0,-130v0,-14,-2,-23,-3,-35r29,0r5,24v6,-8,21,-28,45,-28v85,-1,53,96,59,169","w":183},"o":{"d":"170,-83v0,48,-20,88,-77,88v-57,0,-77,-40,-77,-88v0,-45,20,-86,77,-86v57,0,77,38,77,86xm137,-83v0,-40,-12,-61,-44,-61v-30,0,-44,21,-44,61v0,38,12,62,44,62v31,0,44,-22,44,-62","w":186,"k":{"v":9}},"p":{"d":"168,-81v0,46,-21,86,-67,86v-18,0,-35,-10,-44,-23r0,83r-33,0r0,-180v0,-19,0,-31,-3,-50r29,0r6,24v8,-11,22,-28,43,-28v51,0,69,41,69,88xm135,-82v0,-71,-63,-79,-79,-30r0,67v21,36,79,37,79,-37","w":183},"q":{"d":"163,-165v-9,71,-2,153,-4,230r-32,0r0,-83v-9,13,-25,23,-43,23v-49,0,-68,-40,-68,-86v0,-47,20,-88,69,-88v21,0,35,17,43,28r6,-24r29,0xm128,-45r0,-67v-21,-50,-79,-41,-79,30v0,74,57,73,79,37","w":183},"r":{"d":"125,-161r-12,27v-6,-4,-13,-10,-24,-10v-49,14,-28,88,-32,144r-33,0r0,-128v0,-16,-2,-29,-3,-37r29,0r5,29v7,-22,43,-46,70,-25","w":129,"k":{".":19}},"s":{"d":"107,-44v-9,-38,-95,-22,-90,-77v5,-57,71,-55,120,-37r-11,27v-23,-15,-76,-24,-76,9v0,12,14,17,31,22v26,8,59,16,59,55v0,59,-80,57,-126,39r12,-27v25,14,80,21,81,-11","w":155},"t":{"d":"108,0r-11,29v-38,-9,-66,-33,-66,-70r0,-99r-26,0r0,-25r26,0r0,-43r33,0r0,43r38,0r0,25r-38,0v5,60,-21,136,44,140","w":112},"u":{"d":"160,0r-29,0r-6,-23v-6,8,-19,28,-43,28v-82,1,-53,-97,-58,-170r33,0r0,105v0,21,2,39,29,39v19,0,31,-17,38,-32r0,-112r32,0v1,55,-4,117,4,165","w":180},"v":{"d":"171,-165r-63,165r-31,0r-63,-165r34,0r46,126r44,-126r33,0","w":184,"k":{"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"Y":9,"T":9,"J":9,"A":9,".":19,",":19}},"w":{"d":"259,-165r-55,165r-33,0r-35,-108r-37,108r-34,0r-53,-165r34,0r39,125r37,-109r31,0r36,109r38,-125r32,0","w":271,"k":{"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"Y":9,"T":9,"J":9,"A":9,".":31,",":31}},"x":{"d":"161,0r-37,0r-39,-61r-42,61r-34,0r59,-83r-55,-82r37,0r36,58r39,-58r33,0r-55,79","w":169},"y":{"d":"169,-165r-69,191v-10,27,-24,44,-56,56r-11,-27v38,-9,33,-35,47,-62r-66,-158r34,0r47,121r41,-121r33,0","w":182,"k":{"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"T":9,"J":9,"A":9,".":19,",":19}},"z":{"d":"143,-138r-95,113r90,0r0,25r-116,0r-11,-27r95,-113r-85,0r0,-25r110,0","w":153},"{":{"d":"111,42v-101,-3,-38,-121,-94,-125r0,-25v55,-2,-9,-122,94,-125r0,26v-63,0,-16,90,-65,112v50,18,3,112,65,112r0,25","w":134},"|":{"d":"60,60r-28,0r0,-313r28,0r0,313","w":92},"}":{"d":"117,-83v-56,4,7,122,-94,125r0,-25v62,0,16,-94,66,-112v-49,-22,-3,-112,-66,-112r0,-26v103,3,39,123,94,125r0,25","w":134},"~":{"d":"175,-94v0,24,-18,41,-46,41v-31,0,-54,-31,-69,-31v-16,0,-24,7,-24,27r-26,-13v0,-24,17,-42,45,-42v32,0,55,30,69,30v16,0,25,-6,25,-26"},"\u00a0":{"w":92}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2003 by This Font is designed by Ralph Oliver du Carrois. All
 * rights reserved.
 * 
 * Trademark:
 * Colaborate-Bold is a trademark of This Font is designed by Ralph Oliver du
 * Carrois.
 * 
 * Description:
 * Copyright (c) 2003 by This Font is designed by Ralph Oliver du Carrois. All
 * rights reserved.
 * 
 * Manufacturer:
 * This Font is designed by Ralph Oliver du Carrois
 */
Cufon.registerFont({"w":203,"face":{"font-family":"Colaborate-Bold","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 2 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-12 -269 352 95","underline-thickness":"18","underline-position":"-18","stemh":"360","stemv":"360","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":101},"!":{"d":"75,-68r-48,0r0,-165r48,0r0,165xm76,0r-50,0r0,-44r50,0r0,44","w":101},"\"":{"d":"125,-233r-3,78r-36,0r-3,-78r42,0xm68,-233r-2,78r-37,0r-3,-78r42,0","w":101},"#":{"d":"198,-139r-41,0r-8,48r35,0r0,33r-41,0r-10,58r-40,0r10,-58r-23,0r-11,58r-39,0r10,-58r-34,0r0,-33r40,0r8,-48r-33,0r0,-33r39,0r11,-61r39,0r-10,61r24,0r10,-61r40,0r-11,61r35,0r0,33xm117,-139r-23,0r-9,48r24,0"},"$":{"d":"183,-60v0,45,-27,60,-65,65r0,30r-37,0r0,-28v-22,0,-46,-5,-67,-11r17,-46v15,6,33,14,50,15r0,-64v-32,-13,-68,-27,-68,-73v0,-40,32,-60,68,-65r0,-32r37,0r0,31v17,1,40,5,54,10r-16,46v-10,-4,-23,-10,-38,-13r0,57v31,12,65,29,65,78xm82,-153r0,-40v-26,13,-18,30,0,40xm117,-39v17,-8,15,-32,0,-42r0,42"},"%":{"d":"302,-60v0,42,-15,65,-55,65v-40,0,-55,-23,-55,-65v0,-42,18,-62,55,-62v40,0,55,21,55,62xm242,-226r-130,226r-41,0r130,-226r41,0xm124,-176v0,42,-16,65,-56,65v-40,0,-54,-23,-54,-65v0,-42,18,-62,55,-62v40,0,55,21,55,62xm267,-60v0,-28,-4,-37,-20,-37v-18,0,-21,13,-21,37v0,29,3,40,21,40v16,0,20,-13,20,-40xm89,-176v0,-28,-4,-37,-20,-37v-18,0,-21,13,-21,37v0,29,2,40,20,40v16,0,21,-13,21,-40","w":315},"&":{"d":"164,-179v0,54,-97,46,-97,112v0,17,6,36,31,36v18,0,38,-15,34,-43r-29,0r0,-34r78,0v-1,36,0,81,7,108r-47,0r-6,-15v-38,38,-117,26,-118,-52v0,-19,3,-48,37,-66v-9,-7,-30,-20,-30,-45v0,-33,20,-61,70,-61v44,0,70,21,70,60xm115,-179v0,-10,-3,-23,-22,-23v-31,1,-21,40,-6,49v13,-6,28,-13,28,-26"},"'":{"d":"72,-233r-3,78r-36,0r-3,-78r42,0","w":101},"(":{"d":"103,46r-45,0v-58,-86,-48,-200,-2,-279r45,0v-45,86,-48,188,2,279","w":120},")":{"d":"66,-233v47,79,55,194,-2,279r-44,0v50,-92,45,-193,2,-279r44,0","w":120},"*":{"d":"159,-166r-55,13v4,20,25,33,35,51r-23,16r-31,-49r-4,0r-33,50r-23,-18r37,-46r-2,-4r-57,-14r9,-28r55,20r4,-3r-3,-56r28,0r-2,57v18,2,39,-13,58,-17","w":162},"+":{"d":"182,-63r-60,0r0,63r-40,0r0,-63r-60,0r0,-36r60,0r0,-57r40,0r0,57r60,0r0,36"},",":{"d":"76,-27r-29,64r-37,0r16,-64r50,0","w":101},"-":{"d":"121,-58r-112,0r0,-40r112,0r0,40","w":130},".":{"d":"76,0r-50,0r0,-45r50,0r0,45","w":101,"k":{"y":22,"w":31,"v":22,"Y":22,"W":22,"V":22}},"\/":{"d":"117,-237r-76,241r-41,0r76,-241r41,0","w":116},"0":{"d":"190,-111v0,76,-22,117,-89,117v-66,0,-87,-40,-87,-117v0,-77,27,-113,88,-113v66,0,88,37,88,113xm135,-111v0,-50,-3,-72,-33,-72v-31,0,-34,30,-34,72v0,51,2,77,33,77v29,0,34,-29,34,-77"},"1":{"d":"153,0r-55,0r0,-168r-40,31r-17,-38r59,-44r53,0r0,219"},"2":{"d":"189,0r-155,0r-15,-45v35,-22,112,-70,112,-103v0,-30,-16,-36,-31,-36v-14,0,-30,5,-57,19r-16,-44v41,-13,48,-15,74,-15v40,0,84,14,84,74v0,44,-57,91,-92,110r96,0r0,40"},"3":{"d":"179,-63v0,84,-98,75,-164,60r16,-45v4,3,35,14,59,14v26,0,34,-18,34,-30v0,-30,-26,-31,-68,-31r0,-40v36,0,66,1,63,-26v-4,-39,-60,-19,-84,-6r-16,-44v56,-23,155,-20,155,50v0,29,-25,43,-51,46v25,4,56,19,56,52"},"4":{"d":"196,-57r-35,0r0,57r-54,0r0,-57r-87,0r-17,-41r97,-121r61,0r0,121r35,0r0,41xm107,-98r0,-73r-60,73r60,0"},"5":{"d":"185,-72v-1,79,-97,89,-169,69r15,-44v16,6,44,13,61,13v36,0,39,-21,39,-38v2,-50,-58,-26,-72,-15r-34,-12r0,-120r151,0r0,41r-97,0r0,39v53,-14,107,6,106,67"},"6":{"d":"187,-65v0,45,-42,71,-83,71v-73,0,-88,-55,-88,-108v0,-58,27,-122,101,-122v13,0,40,3,55,7r-15,44v-12,-6,-24,-11,-38,-11v-42,0,-51,36,-51,59v10,-19,35,-22,41,-22v53,0,78,28,78,82xm71,-84v-3,73,65,62,62,9v0,-13,-4,-31,-28,-31v-21,0,-29,9,-34,22"},"7":{"d":"180,-185r-76,185r-57,0r84,-178r-110,0r0,-40r142,0"},"8":{"d":"190,-57v0,48,-35,63,-88,63v-52,0,-88,-14,-88,-63v0,-32,18,-52,52,-58v-12,-4,-44,-14,-44,-48v0,-37,25,-61,81,-61v60,0,82,20,82,61v0,33,-33,45,-47,48v33,8,52,23,52,58xm131,-161v0,-10,0,-23,-28,-23v-27,0,-28,11,-28,23v0,18,14,22,27,27v14,-5,29,-11,29,-27xm102,-34v57,-1,34,-57,1,-62v-21,8,-36,15,-36,38v0,11,7,24,35,24"},"9":{"d":"188,-116v0,58,-27,122,-101,122v-13,0,-41,-3,-56,-7r16,-44v12,6,24,11,38,11v42,0,51,-36,51,-59v-10,19,-36,22,-42,22v-53,0,-77,-28,-77,-82v0,-45,44,-71,83,-71v75,0,88,55,88,108xm133,-134v0,-44,-16,-50,-34,-50v-17,0,-28,15,-28,41v0,13,3,31,28,31v21,0,29,-9,34,-22"},":":{"d":"76,-118r-50,0r0,-45r50,0r0,45xm76,0r-50,0r0,-45r50,0r0,45","w":101},";":{"d":"77,-118r-51,0r0,-45r51,0r0,45xm76,-27r-29,64r-37,0r16,-64r50,0","w":101},"<":{"d":"186,-16r-168,-50r0,-50r168,-50r0,46r-119,29r119,28r0,47"},"=":{"d":"186,-82r-168,0r0,-36r168,0r0,36xm186,-20r-168,0r0,-36r168,0r0,36"},">":{"d":"186,-66r-168,50r0,-47r119,-28r-119,-29r0,-46r168,49r0,51"},"?":{"d":"163,-174v0,43,-60,51,-60,82r0,26r-48,0r0,-28v0,-49,56,-52,56,-80v1,-35,-63,-15,-86,-8r-7,-44v57,-11,145,-36,145,52xm104,0r-50,0r0,-44r50,0r0,44","w":174},"@":{"d":"306,-137v0,75,-62,92,-121,92v-60,0,-89,-25,-89,-71v0,-37,20,-68,79,-68v16,0,37,3,43,5r0,48r5,0r13,35r-62,5v-2,-18,4,-44,-3,-56v-14,0,-27,0,-27,31v0,35,23,35,41,35v39,0,72,-1,72,-56v0,-56,-45,-63,-78,-63v-24,0,-102,1,-102,85v1,84,77,84,104,84v22,0,47,-4,77,-10r17,40v-120,22,-247,7,-247,-114v0,-88,70,-123,151,-123v48,0,127,21,127,101","w":334},"A":{"d":"244,0r-60,0r-19,-59r-77,0r-20,59r-58,0r94,-233r52,0xm151,-100r-23,-74r-25,74r48,0","w":253,"k":{"y":19,"w":19,"v":19,"u":4,"t":4,"q":4,"o":4,"e":4,"d":4,"c":4,"a":4,"Y":19,"W":19,"V":19,"T":19,"Q":4,"O":4,"G":4,"C":4,"A":-1,"@":9,"&":9}},"B":{"d":"214,-69v-2,93,-98,65,-181,69r0,-233v78,3,169,-19,170,66v0,24,-16,40,-37,45v29,3,48,20,48,53xm148,-167v0,-7,-3,-24,-23,-24r-37,0r0,50v29,-2,62,10,60,-26xm158,-69v1,-39,-36,-29,-70,-30r0,57v32,-2,69,11,70,-27","w":232,"k":{"V":3}},"C":{"d":"201,-4v-21,7,-40,11,-68,11v-82,0,-112,-48,-112,-123v0,-65,27,-122,113,-122v20,0,46,4,64,10r-17,45v-51,-26,-104,-14,-104,66v0,86,54,96,107,67","w":212},"D":{"d":"230,-117v0,122,-84,121,-197,117r0,-233v111,-4,197,-6,197,116xm173,-117v0,-91,-32,-71,-85,-74r0,149v57,-1,85,12,85,-75","w":250,"k":{"V":3,"J":7}},"E":{"d":"179,0r-146,0r0,-233r143,0r0,42r-88,0r0,50r80,0r0,42r-80,0r0,57r91,0r0,42","w":217},"F":{"d":"176,-190r-88,0r0,50r84,0r0,42r-84,0r0,98r-55,0r0,-233r143,0r0,43","w":194},"G":{"d":"215,-14v-24,15,-45,21,-83,21v-90,0,-111,-61,-111,-124v0,-72,34,-121,115,-121v16,0,44,6,61,10r-17,45v-49,-22,-103,-27,-103,66v0,71,36,95,89,76r0,-46r-52,0r0,-42r101,0r0,115","w":235},"H":{"d":"224,0r-55,0r0,-99r-81,0r0,99r-55,0r0,-233r55,0r0,92r81,0r0,-92r55,0r0,233","w":257},"I":{"d":"84,0r-55,0r0,-233r55,0r0,233","w":112},"J":{"d":"134,-73v0,81,-62,103,-115,118r-15,-45v32,-6,76,-9,76,-70r0,-163r54,0r0,160","w":167},"K":{"d":"245,0r-70,0r-87,-103r0,103r-55,0r0,-233r55,0r0,94r78,-94r62,0r-89,109","w":249,"k":{"y":19,"w":19,"v":19,"u":9,"q":9,"o":9,"e":9,"d":9,"c":9,"a":9,"U":4,"Q":9,"O":9,"G":9,"C":9,"@":9,"&":4}},"L":{"d":"180,0r-147,0r0,-233r55,0r0,190r92,0r0,43","w":181,"k":{"Y":35,"W":23,"V":26,"T":23,"O":7}},"M":{"d":"316,0r-55,0r0,-175r-58,175r-59,0r-58,-175r0,175r-53,0r0,-233r92,0r50,160r53,-160r88,0r0,233","w":348},"N":{"d":"238,0r-83,0r-69,-168r0,168r-53,0r0,-233r82,0r69,168r0,-168r54,0r0,233","w":271},"O":{"d":"248,-116v0,69,-28,123,-113,123v-87,0,-114,-53,-114,-123v0,-68,29,-122,114,-122v83,0,113,50,113,122xm192,-116v0,-62,-21,-80,-57,-80v-37,0,-58,19,-58,80v0,65,21,81,58,81v39,0,57,-24,57,-81","w":268,"k":{"Z":4,"Y":9,"X":9,"W":9,"V":9,"J":7,"A":4}},"P":{"d":"207,-161v0,70,-52,77,-119,74r0,87r-55,0r0,-233v82,2,175,-17,174,72xm151,-161v0,-45,-31,-26,-63,-30r0,61v33,-1,63,8,63,-31","w":223,"k":{"J":29,"A":17}},"Q":{"d":"248,-116v0,69,-28,123,-113,123v-87,0,-114,-53,-114,-123v0,-68,28,-122,114,-122v83,0,113,50,113,122xm220,24r-19,35r-84,-13r19,-30xm192,-116v0,-62,-21,-80,-57,-80v-37,0,-58,19,-58,80v0,65,21,81,58,81v39,0,57,-24,57,-81","w":268},"R":{"d":"226,0r-67,0r-68,-93r-3,0r0,93r-55,0r0,-233v82,5,175,-24,175,70v0,30,-13,59,-53,68xm153,-163v0,-32,-34,-29,-65,-28r0,56v31,0,65,6,65,-28","w":241},"S":{"d":"199,-60v-1,85,-110,71,-177,56r17,-46v17,6,38,15,57,15v30,0,48,-3,48,-25v0,-45,-122,-29,-122,-112v0,-70,95,-76,159,-56r-17,46v-13,-6,-27,-14,-49,-14v-34,0,-37,17,-37,24v0,38,121,22,121,112","w":221},"T":{"d":"185,-190r-61,0r0,190r-55,0r0,-190r-62,0r0,-43r178,0r0,43","w":192,"k":{"z":31,"y":31,"x":31,"w":31,"v":31,"u":31,"s":31,"r":31,"q":31,"p":31,"o":31,"n":31,"m":31,"j":9,"i":9,"g":31,"e":31,"d":31,"c":31,"a":31,"Q":9,"O":9,"J":19,"G":9,"C":9,"A":19,"@":9,";":31,":":31,".":31,",":31}},"U":{"d":"235,-85v0,62,-37,92,-99,92v-68,0,-103,-31,-103,-93r0,-147r55,0r0,143v0,49,26,55,48,55v23,0,44,-14,44,-55r0,-143r55,0r0,148","w":268},"V":{"d":"234,-233r-86,233r-50,0r-88,-233r60,0r54,167r51,-167r59,0","w":243,"k":{"z":9,"y":9,"x":9,"w":9,"v":9,"u":19,"s":19,"r":19,"q":19,"p":9,"o":19,"n":19,"m":19,"j":9,"i":9,"g":19,"e":19,"d":19,"c":19,"a":19,"Q":9,"O":9,"J":19,"G":9,"C":9,"A":31,";":9,":":9,".":19,",":19}},"W":{"d":"352,-233r-59,233r-68,0r-42,-152r-52,152r-69,0r-50,-233r58,0r33,168r50,-158r69,0r38,157r38,-167r54,0","w":363,"k":{"z":9,"y":9,"x":9,"w":4,"v":4,"u":9,"s":9,"r":9,"q":9,"p":9,"o":9,"n":9,"m":9,"j":9,"i":9,"g":9,"e":9,"d":9,"c":9,"a":9,"Q":9,"O":9,"J":19,"G":9,"C":9,"A":31,";":19,":":19,".":19,",":19}},"X":{"d":"225,0r-65,0r-43,-76r-48,76r-59,0r78,-120r-68,-113r63,0r37,65r41,-65r58,0r-71,111","w":237,"k":{"y":9,"w":9,"v":9,"Q":9,"O":9,"G":9,"C":9}},"Y":{"d":"229,-233r-86,128r0,105r-55,0r0,-103r-83,-130r62,0r51,81r51,-81r60,0","w":233,"k":{"s":9,"q":9,"o":9,"g":9,"e":9,"d":9,"c":9,"a":9,"O":9,"J":19,"G":9,"C":9,"A":19,".":19,",":19}},"Z":{"d":"191,-189r-116,147r113,0r0,42r-159,0r-14,-44r117,-146r-104,0r0,-43r149,0","w":205,"k":{"O":4}},"[":{"d":"99,46r-69,0r0,-289r69,0r0,34r-29,0r0,219r29,0r0,36","w":115},"\\":{"d":"117,4r-42,0r-75,-241r40,0","w":116},"]":{"d":"91,46r-69,0r0,-36r28,0r0,-219r-28,0r0,-34r69,0r0,289","w":115},"^":{"d":"193,-97r-45,0r-46,-104r-48,104r-43,0r65,-136r50,0"},"_":{"d":"180,44r-180,0r0,-37r180,0r0,37","w":180},"`":{"d":"89,-191r-32,0r-50,-42r47,0","w":95},"a":{"d":"176,0r-47,0r-7,-15v-24,33,-118,21,-107,-28v-4,-36,34,-66,104,-62v0,-14,3,-27,-19,-27v-23,0,-46,7,-62,15r-17,-41v53,-16,148,-27,147,41v0,44,-1,79,8,117xm91,-33v15,0,33,-13,28,-37v-31,-1,-53,7,-53,25v0,12,14,12,25,12","w":195},"b":{"d":"184,-83v0,47,-26,88,-76,88v-21,0,-33,-13,-37,-20r-7,15r-46,0v11,-70,2,-158,5,-237r49,0r0,93v10,-13,23,-26,42,-26v50,0,70,41,70,87xm133,-82v-1,-73,-44,-57,-61,-16v-3,31,2,66,27,65v15,0,34,-5,34,-49","w":198},"c":{"d":"160,-7v-66,29,-145,2,-145,-74v0,-77,77,-107,143,-77r-17,41v-33,-19,-79,-31,-76,36v2,63,42,52,78,34","w":171},"d":{"d":"180,0r-46,0r-7,-15v-4,7,-15,20,-36,20v-57,0,-76,-41,-76,-88v0,-45,20,-87,68,-87v19,0,33,13,43,26r0,-93r49,0v2,79,-6,167,5,237xm127,-58r0,-40v-10,-17,-20,-34,-33,-34v-15,0,-29,7,-29,50v0,66,48,60,62,24","w":198},"e":{"d":"179,-61r-113,0v10,43,53,32,87,16r16,37v-20,9,-46,13,-70,13v-55,0,-84,-40,-84,-86v0,-38,17,-89,81,-89v63,0,83,34,83,109xm130,-98v-3,-27,-17,-34,-33,-34v-7,0,-29,2,-30,34r63,0","w":194},"f":{"d":"125,-199v-31,4,-49,10,-48,34r31,0r0,38r-31,0r0,127r-49,0r0,-127r-25,0r0,-38r25,0v-1,-49,30,-65,79,-74","w":120},"g":{"d":"196,-171r-12,32r-19,0v29,36,19,96,-63,97v-8,5,-45,-17,-44,4v0,9,8,11,49,14v70,5,85,18,85,49v0,37,-46,48,-88,48v-69,0,-90,-19,-90,-47v0,-19,14,-26,22,-30v-28,-14,-23,-49,1,-62v-24,-36,-29,-104,64,-104v30,0,62,1,95,-1xm102,-80v40,-1,40,-54,0,-53v-10,0,-31,1,-31,27v0,22,17,26,31,26xm142,25v0,-6,-15,-13,-74,-13v-3,3,-4,7,-4,12v0,9,24,15,40,15v30,0,38,-3,38,-14","w":204},"h":{"d":"175,0r-50,0r0,-109v0,-10,-1,-23,-20,-23v-14,0,-24,15,-33,32r0,100r-49,0r0,-237r49,0r0,93v5,-5,19,-26,42,-26v89,-2,54,96,61,170","w":196},"i":{"d":"73,-194r-51,0r0,-39r51,0r0,39xm72,0r-49,0r0,-165r49,0r0,165","w":95},"j":{"d":"73,-194r-52,0r0,-39r52,0r0,39xm71,-2v0,47,-32,66,-65,79r-18,-40v25,-5,34,-15,34,-36r0,-166r49,0r0,163","w":95},"k":{"d":"180,0r-56,0r-52,-81r0,81r-49,0r0,-237r49,0r0,136r46,-64r53,0r-52,72","w":183,"k":{"o":9}},"l":{"d":"72,0r-49,0r0,-237r49,0r0,237","w":95},"m":{"d":"276,0r-50,0r0,-104v0,-24,-6,-28,-16,-28v-19,0,-31,17,-37,34r0,98r-49,0r0,-104v0,-26,-6,-28,-20,-28v-15,0,-28,24,-32,32r0,100r-49,0v-1,-55,4,-118,-5,-165r46,0r7,21v5,-7,24,-26,43,-26v28,0,36,3,53,23v28,-41,109,-29,109,42r0,105","w":298},"n":{"d":"175,0r-50,0r0,-107v0,-12,0,-25,-20,-25v-15,0,-25,16,-33,32r0,100r-49,0v-2,-54,5,-119,-5,-165r46,0r7,21v7,-7,21,-26,43,-26v90,-1,54,95,61,170","w":197},"o":{"d":"186,-83v0,47,-25,88,-86,88v-62,0,-85,-40,-85,-88v0,-46,24,-87,85,-87v62,0,86,39,86,87xm135,-83v0,-40,-12,-49,-35,-49v-22,0,-35,9,-35,49v0,36,13,51,35,51v19,0,35,-11,35,-51","w":200,"k":{"v":9}},"p":{"d":"184,-81v0,65,-66,115,-112,66r0,80r-49,0v-2,-76,5,-162,-5,-230r46,0r8,21v7,-9,19,-26,40,-26v52,0,72,41,72,89xm133,-82v2,-70,-48,-59,-62,-18r0,41v21,37,61,46,62,-23","w":198},"q":{"d":"180,-165v-11,69,-3,153,-5,230r-49,0r0,-80v-10,13,-29,20,-42,20v-53,0,-69,-40,-69,-86v0,-48,23,-89,72,-89v21,0,32,17,39,26r8,-21r46,0xm127,-59r0,-41v-13,-42,-63,-51,-62,18v1,69,41,60,62,23","w":198},"r":{"d":"139,-166r-16,40v-23,-20,-51,11,-51,28r0,98r-49,0v-2,-53,4,-121,-5,-165r46,0r7,23v6,-21,42,-36,68,-24","w":144,"k":{".":19}},"s":{"d":"155,-45v0,65,-91,54,-142,39r17,-41v18,6,31,15,50,15v25,-1,24,-6,24,-13v0,-18,-87,-6,-87,-75v0,-63,78,-55,133,-40r-17,40v-17,-8,-27,-12,-42,-12v-17,0,-23,3,-23,11v0,24,87,12,87,76","w":168},"t":{"d":"112,0r-18,40v-34,-13,-65,-33,-65,-81r0,-86r-25,0r0,-38r25,0r0,-45r49,0r0,45r31,0r0,38r-31,0v6,52,-22,120,34,127","w":114},"u":{"d":"177,0r-46,0r-7,-20v-7,7,-20,25,-42,25v-87,1,-52,-97,-59,-170r49,0r0,107v0,11,1,26,19,26v15,0,24,-17,32,-33r0,-100r49,0v2,54,-5,119,5,165","w":195},"v":{"d":"190,-165r-64,165r-50,0r-64,-165r53,0r37,108r36,-108r52,0","w":201,"k":{"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"Y":9,"T":9,"J":9,"A":9,".":19,",":19}},"w":{"d":"293,-165r-54,165r-52,0r-33,-93r-37,93r-52,0r-56,-165r53,0r34,105r35,-91r49,0r34,92r28,-106r51,0","w":302,"k":{"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"Y":9,"T":9,"J":9,"A":9,".":31,",":31}},"x":{"d":"178,0r-55,0r-30,-49r-34,49r-51,0r59,-83r-55,-82r54,0r28,46r30,-46r51,0r-57,79","w":185},"y":{"d":"186,-165r-72,191v-11,29,-30,56,-69,69r-17,-40v38,-9,33,-35,47,-62r-63,-158r53,0r34,103r36,-103r51,0","w":198,"k":{"s":4,"q":4,"o":4,"g":4,"e":4,"d":4,"c":4,"a":4,"T":9,"J":9,"A":9,".":19,",":19}},"z":{"d":"158,-124r-93,86r87,0r0,38r-128,0r-16,-40r94,-87r-81,0r0,-38r121,0","w":165},"{":{"d":"116,42v-106,-3,-43,-115,-99,-119r0,-37v55,-2,-8,-115,99,-119r0,37v-44,0,-8,79,-57,101v50,18,12,100,57,100r0,37","w":146},"|":{"d":"72,60r-42,0r0,-313r42,0r0,313","w":101},"}":{"d":"129,-77v-56,4,7,116,-99,119r0,-37v45,0,7,-82,57,-100v-49,-22,-13,-101,-57,-101r0,-37v107,4,44,117,99,119r0,37","w":146},"~":{"d":"193,-99v0,24,-16,48,-53,48v-34,0,-59,-34,-67,-34v-16,0,-24,4,-24,28r-38,-20v0,-24,17,-49,53,-49v39,0,63,33,67,33v16,0,24,-2,24,-27"},"\u00a0":{"w":101}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Generated in 2009 by FontLab Studio. Copyright info pending.
 * 
 * Full name:
 * TitilliumText15L-400wt
 * 
 * Designer:
 * Campivisivi
 * 
 * License information:
 * http://scripts.sil.org/OFL
 */
Cufon.registerFont({"w":190,"face":{"font-family":"TitilliumText15L","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"270","descent":"-90","x-height":"4","bbox":"-12 -342 336 88","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+2260"},"glyphs":{" ":{"w":84},"C":{"d":"177,-30r1,25v0,0,-41,9,-69,9v-75,0,-91,-47,-91,-129v0,-85,18,-129,91,-129v33,0,69,8,69,8r-1,25v0,0,-40,-6,-65,-6v-56,0,-65,33,-65,102v0,68,9,102,66,102v22,0,64,-7,64,-7","w":192},"c":{"d":"93,-184v17,0,48,6,48,6r0,23v0,0,-29,-3,-43,-3v-41,0,-52,17,-52,65v0,53,8,71,52,71v14,0,43,-3,43,-3r1,24v0,0,-34,5,-50,5v-58,0,-74,-26,-74,-97v0,-65,21,-91,75,-91","w":157},"d":{"d":"164,-252r0,252r-27,0r0,-12v0,0,-28,16,-55,16v-35,0,-64,-15,-64,-93v0,-83,49,-107,119,-90r0,-73r27,0xm45,-89v0,93,61,67,92,54r0,-120v-5,-1,-28,-4,-42,-4v-38,0,-50,23,-50,70","w":195},"e":{"d":"93,-21v27,0,66,-3,66,-3r0,22v0,0,-40,6,-69,6v-54,0,-72,-32,-72,-93v0,-68,30,-95,76,-95v55,0,78,41,71,106r-120,0v0,38,12,57,48,57xm45,-100r94,0v0,-43,-14,-59,-45,-59v-31,0,-49,17,-49,59","w":182},"f":{"d":"59,-156r0,156r-26,0r0,-156r-23,0r0,-24r23,0v-2,-53,7,-82,48,-82v13,0,36,3,36,3r0,22v-29,-1,-65,-9,-58,41r0,16r53,0r0,24r-53,0","w":120},"g":{"d":"94,86v-85,0,-99,-68,-49,-100v-17,-9,-4,-47,3,-54v-15,-7,-29,-21,-29,-54v0,-60,62,-69,105,-57r52,-1r0,23r-32,0v6,7,11,16,11,35v3,53,-36,66,-87,59v-7,21,-21,37,37,37v51,0,70,10,70,53v0,42,-30,59,-81,59xm147,28v10,-41,-58,-27,-83,-32v-34,23,-30,66,31,66v36,0,52,-10,52,-34xm85,-84v30,0,43,-10,43,-38v0,-31,-11,-38,-42,-38v-27,0,-40,10,-40,38v0,26,9,38,39,38","w":186},"h":{"d":"58,0r-27,0r0,-263r27,0r0,92v0,0,31,-13,56,-13v82,0,57,108,61,184r-27,0v-5,-56,21,-159,-38,-159v-24,0,-52,11,-52,11r0,148","w":203},"i":{"d":"29,0r0,-180r27,0r0,180r-27,0xm29,-221r0,-31r27,0r0,31r-27,0","w":84},"j":{"d":"33,-2r0,-178r27,0r0,178v0,44,-12,61,-60,85r-12,-23v37,-21,45,-30,45,-62xm33,-222r0,-31r27,0r0,31r-27,0","w":89},"k":{"d":"58,0r-27,0r0,-258r27,0r0,150r28,-1r54,-71r30,0r-60,83r61,97r-31,0r-54,-82r-28,1r0,81","w":178},"l":{"d":"30,0r0,-258r27,0r0,258r-27,0","w":87},"m":{"d":"58,0r-27,0r0,-180r27,0r0,12v0,0,22,-11,45,-14v23,-3,43,2,53,15v10,-4,40,-17,65,-17v81,0,57,108,61,184r-27,0v-5,-55,20,-159,-38,-159v-24,0,-49,14,-50,14v7,34,3,101,4,145r-27,0v-6,-54,22,-159,-37,-159v-24,0,-49,14,-49,14r0,145","w":311},"A":{"d":"10,0r69,-251r61,0r67,251r-27,0r-19,-63r-105,0r-18,63r-28,0xm100,-225r-37,135r92,0r-37,-135r-18,0","w":217},"p":{"d":"31,80r0,-260r27,0r0,13v0,0,27,-17,54,-17v45,0,65,28,65,92v0,90,-49,105,-119,92r0,80r-27,0xm108,-159v-24,0,-50,14,-50,14r0,121v51,8,92,4,92,-69v0,-49,-16,-66,-42,-66","w":195},"q":{"d":"90,4v-53,0,-72,-33,-72,-91v0,-63,19,-97,82,-97v19,0,62,4,62,4r0,260r-27,0r0,-86v0,0,-19,10,-45,10xm100,-159v-43,0,-55,24,-55,72v0,43,12,66,45,66v24,0,45,-11,45,-11r0,-126v0,0,-24,-1,-35,-1","w":193},"r":{"d":"31,0r0,-180r27,0r0,24v0,0,28,-22,63,-28r0,28v-34,6,-63,25,-63,25r0,131r-27,0","w":128},"s":{"d":"150,-177r-1,24v-13,0,-102,-23,-102,21v0,17,8,22,44,27v48,8,65,17,65,52v0,42,-26,57,-70,57v-23,0,-64,-7,-64,-7r2,-24v0,0,41,6,59,6v30,0,46,-6,46,-30v0,-19,-10,-23,-46,-29v-44,-7,-63,-16,-63,-51v0,-40,32,-53,65,-53v27,0,65,7,65,7","w":176},"u":{"d":"143,-180r27,0r0,180r-27,0r0,-12v0,0,-28,16,-53,16v-82,0,-57,-108,-61,-184r26,0v6,55,-23,159,39,159v24,0,49,-13,49,-13r0,-146","w":201},"w":{"d":"10,-180r27,0r36,156r6,0r43,-152r28,0r43,152r6,0r36,-156r27,0r-42,180r-46,0r-38,-141r-38,141r-45,0","w":272},"y":{"d":"9,-180r27,0r45,154r12,0r45,-154r27,0r-75,260r-27,0r23,-80r-26,0","w":173},"z":{"d":"19,-156r0,-24r134,0r0,24r-101,132r101,0r0,24r-134,0r0,-24r102,-132r-102,0","w":172},"Z":{"d":"22,-224r0,-27r162,0r0,35r-129,183r0,7r129,0r0,26r-162,0r0,-34r128,-183r0,-7r-128,0","w":205},"0":{"d":"95,-242v56,0,86,29,86,127v0,91,-32,119,-86,119v-54,0,-86,-28,-86,-119v0,-98,31,-127,86,-127xm95,-215v-39,0,-56,20,-56,100v0,75,19,92,56,92v37,0,57,-17,57,-92v0,-78,-17,-100,-57,-100"},"1":{"d":"23,-188r76,-50r26,0r0,238r-28,0r0,-206r-61,41"},"2":{"d":"172,0r-154,0r0,-26v36,-43,120,-91,120,-149v0,-29,-17,-40,-52,-40v-26,0,-64,8,-64,8r-2,-25v0,0,38,-10,71,-10v50,0,75,19,75,64v0,69,-74,107,-111,151r117,0r0,27"},"3":{"d":"21,-233v0,0,38,-9,71,-9v56,0,76,20,76,62v0,37,-29,49,-36,54v24,9,42,19,42,58v0,48,-24,72,-78,72v-37,0,-78,-9,-78,-9r3,-25v0,0,39,7,73,7v35,0,51,-15,51,-44v0,-51,-50,-42,-97,-43r0,-25v46,2,91,3,91,-42v0,-28,-14,-38,-48,-38v-32,0,-67,7,-67,7"},"5":{"d":"28,-238r138,0r0,27r-113,0r-6,75v0,0,28,-14,53,-14v48,0,76,21,76,72v0,54,-30,81,-80,81v-36,0,-78,-10,-78,-10r3,-25v0,0,42,9,74,9v31,0,52,-19,52,-54v0,-35,-21,-47,-50,-47v-48,0,-46,21,-76,10"},"7":{"d":"18,-211r0,-27r147,0r0,37r-92,206r-26,-9r89,-199r0,-8r-118,0"},"8":{"d":"96,-242v53,0,87,20,87,62v0,31,-12,44,-40,56v26,12,44,26,44,60v0,52,-40,68,-91,68v-50,0,-89,-15,-89,-64v0,-37,18,-51,42,-64v-66,-27,-43,-118,47,-118xm96,-23v37,0,61,-11,61,-44v0,-39,-36,-47,-80,-44v-25,7,-40,19,-40,46v0,31,23,42,59,42xm97,-215v-69,0,-73,71,-20,80v40,7,76,-9,76,-41v0,-28,-19,-39,-56,-39"},"E":{"d":"32,0r0,-251r152,0r0,27r-124,0r0,84r102,0r0,26r-102,0r0,88r124,0r0,26r-152,0","w":203},"F":{"d":"32,0r0,-251r152,0r0,27r-124,0r0,97r102,0r0,26r-102,0r0,101r-28,0","w":199},"G":{"d":"127,-103r0,-25r69,0r0,123v0,0,-51,9,-81,9v-76,0,-96,-48,-96,-129v0,-83,20,-129,95,-129v38,0,82,9,82,9r-1,25v0,0,-44,-8,-77,-8v-58,0,-70,34,-70,103v0,68,11,102,69,102v21,0,51,-5,52,-5r0,-75r-42,0","w":218},"H":{"d":"187,0r0,-113r-127,0r0,113r-28,0r0,-251r28,0r0,111r127,0r0,-111r27,0r0,251r-27,0","w":246},"K":{"d":"168,0r-66,-110r-42,1r0,109r-28,0r0,-251r28,0r0,116r41,-1r64,-115r32,0r-72,126r76,125r-33,0","w":214},"Q":{"d":"179,52r-32,-52v-87,18,-128,-28,-128,-124v0,-83,21,-130,98,-130v77,0,99,47,99,130v0,59,-10,97,-41,115r30,49xm117,-23v58,0,70,-32,70,-101v0,-66,-13,-104,-70,-104v-57,0,-69,37,-69,104v0,67,11,101,69,101","w":234},"R":{"d":"131,-95r-71,0r0,95r-28,0r0,-251v84,0,172,-15,172,77v0,39,-14,62,-46,72r48,102r-30,0xm176,-174v0,-61,-61,-49,-116,-50r0,103r65,0v38,0,51,-21,51,-53","w":224},"S":{"d":"168,-247r-2,25v0,0,-47,-6,-68,-6v-32,0,-51,12,-51,39v0,33,16,38,58,49v46,12,69,24,69,68v0,54,-28,75,-78,75v-27,0,-77,-7,-77,-7r3,-26v0,0,47,7,73,7v32,0,50,-13,50,-48v0,-28,-13,-34,-52,-44v-51,-13,-74,-24,-74,-73v0,-47,31,-67,79,-67v28,0,70,8,70,8","w":192},"T":{"d":"-1,-224r0,-27r180,0r0,27r-76,0r0,224r-28,0r0,-224r-76,0","w":177},"V":{"d":"174,-251r29,0r-65,251r-62,0r-66,-251r29,0r59,225r19,0","w":213},"N":{"d":"32,0r0,-251r50,0r99,219r8,0r0,-219r28,0r0,251r-49,0r-100,-218r-8,0r0,218r-28,0","w":249},"\u2013":{"w":299},"\u00af":{"w":299},"$":{"d":"71,41r5,-40v-34,-6,-60,8,-51,-17v0,0,28,4,52,6r14,-108v-43,-8,-69,-18,-69,-64v0,-48,34,-61,85,-60r6,-42r13,0r-6,43v33,7,58,-6,50,17v0,0,-29,-3,-52,-5r-13,100v48,9,72,16,72,64v0,52,-35,72,-89,67r-5,41v0,0,-12,-1,-12,-2xm163,-64v0,-39,-18,-45,-59,-52r-14,106v45,2,74,-12,73,-54xm36,-183v0,37,18,45,57,52r13,-98v-43,-1,-71,8,-70,46"},"!":{"d":"83,0r0,-41r29,0r0,41r-29,0xm84,-84r-1,-168r29,0r-1,168r-27,0"},"\u2211":{"w":299},"a":{"d":"99,-184v73,0,55,82,57,148v1,12,9,15,21,16r-1,24v-22,0,-34,-4,-43,-14v0,0,-32,14,-66,14v-31,0,-49,-20,-49,-55v0,-58,59,-55,111,-59v2,-29,-5,-48,-31,-48v-26,0,-69,5,-69,5r-1,-23v0,0,43,-8,71,-8xm129,-88v-34,4,-84,-2,-84,36v0,21,10,32,26,32v27,0,58,-11,58,-11r0,-57","w":187},"o":{"d":"95,-184v54,0,77,30,77,92v0,62,-16,96,-77,96v-61,0,-77,-31,-77,-97v0,-62,20,-91,77,-91xm95,-21v42,0,49,-23,49,-71v0,-48,-14,-67,-49,-67v-38,0,-49,17,-49,66v0,50,7,72,49,72"},"J":{"d":"80,-251r0,212v0,60,-20,65,-68,65r0,-26v32,0,41,-2,41,-42r0,-209r27,0","w":110},"t":{"d":"119,-156r-57,0v6,42,-19,137,26,134v10,0,32,-1,32,-1r2,23v0,0,-24,4,-37,4v-70,0,-46,-98,-50,-160r-25,0r0,-24r25,0r0,-55r27,0r0,55r57,0r0,24","w":130},"n":{"d":"58,0r-27,0r0,-180r27,0r0,12v0,0,30,-16,56,-16v81,0,57,108,61,184r-27,0v-6,-56,21,-159,-38,-159v-24,0,-52,14,-52,14r0,145","w":204},"#":{"d":"187,-65r-40,0r0,65r-24,0r0,-65r-56,0r0,65r-24,0r0,-65r-40,0r0,-23r40,0r0,-64r-40,0r0,-23r40,0r0,-65r24,0r0,65r56,0r0,-65r24,0r0,65r40,0r0,23r-40,0r0,64r40,0r0,23xm123,-88r0,-64r-56,0r0,64r56,0"},"W":{"d":"13,-251r29,0r45,223r11,0r48,-220r31,0r50,220r11,0r44,-223r29,0r-54,251r-50,0r-45,-209r-44,209r-50,0","w":324},"@":{"d":"181,-260v110,0,155,51,155,156v0,94,-24,108,-63,108v-21,0,-34,-3,-42,-20v-53,24,-128,46,-126,-71v0,-60,14,-96,72,-96v19,0,47,19,42,3r27,0r0,72v0,82,5,86,27,86v23,5,36,-17,36,-88v0,-88,-37,-124,-128,-124v-91,0,-135,40,-135,140v0,129,72,151,187,138r1,26v-125,12,-215,-11,-215,-164v0,-119,58,-166,162,-166xm132,-87v-1,90,50,64,91,49v-6,-24,-4,-78,-4,-113v0,0,-22,-7,-37,-7v-41,0,-50,22,-50,71","w":354},"`":{"d":"55,-270r79,35r-10,23r-79,-33","w":196},"\u00b4":{"d":"44,-235r78,-35r10,25r-78,33","w":299},"\u00a8":{"d":"40,-230r0,-22r13,0r0,22r-13,0xm102,-230r0,-22r12,0r0,22r-12,0","w":299},"\u02c6":{"d":"99,-216r44,-48r10,0r44,48r-16,0r-33,-35r-34,35r-15,0","w":299},"\u02dc":{"d":"108,-238v9,0,21,-23,30,-9v-10,10,-20,20,-30,20v-22,0,-29,-19,-46,-19v-13,0,-24,24,-34,8v11,-10,22,-19,34,-19v22,0,31,19,46,19","w":299},"\u02da":{"d":"63,-233v0,-19,14,-34,33,-34v19,0,34,15,34,34v0,19,-15,34,-34,34v-19,0,-33,-15,-33,-34xm75,-233v0,13,9,22,22,22v12,0,21,-9,21,-22v0,-12,-9,-22,-21,-22v-13,0,-22,10,-22,22","w":299},"\u02c7":{"d":"143,-216r-44,-48r15,0r34,36r33,-36r16,0r-44,48r-10,0","w":299},"\u00ff":{"d":"11,-180r56,180r22,0r-26,83r13,0r82,-263r-13,0r-53,168r-15,0r-53,-168r-13,0xm49,-230r0,-22r13,0r0,22r-13,0xm111,-230r0,-22r12,0r0,22r-12,0","w":172},"\u0161":{"d":"83,-183v33,0,72,-7,61,17v-21,-2,-109,-23,-109,30v0,22,10,30,51,36v47,8,66,14,66,48v0,42,-27,55,-69,55v-27,-5,-69,5,-58,-17v0,0,39,6,57,6v34,0,57,-8,57,-43v0,-26,-14,-31,-57,-37v-42,-6,-60,-14,-60,-47v0,-38,32,-48,61,-48xm84,-216r-43,-48r15,0r33,36r33,-36r14,0r-42,48r-10,0","w":175},"\u00fd":{"d":"6,-180r27,0r45,154r12,0r45,-154r27,0r-75,260r-27,0r24,-80r-27,0xm48,-235r78,-35r11,25r-79,33","w":172},"\u017e":{"d":"15,-168r0,-12r133,0r0,12r-118,156r118,0r0,12r-133,0r0,-12r118,-156r-118,0xm73,-216r-44,-48r15,0r34,36r34,-36r15,0r-44,48r-10,0","w":163},"M":{"d":"32,0r0,-251r49,0r72,211r73,-211r48,0r0,251r-28,0r0,-218r-5,0r-73,209r-30,0r-73,-209r-5,0r0,218r-28,0","w":306},"U":{"d":"56,-76v0,39,23,53,58,53v37,0,61,-14,61,-53r0,-175r27,0r0,175v0,57,-31,79,-88,79v-55,0,-86,-22,-86,-79r0,-175r28,0r0,175","w":230},"X":{"d":"42,-251r63,106r62,-106r31,0r-74,127r74,124r-31,0r-62,-104r-63,104r-31,0r75,-124r-75,-127r31,0","w":209},"Y":{"d":"114,-107r0,107r-28,0r0,-108r-79,-143r31,0r62,113r61,-113r31,0","w":198},"\u00b0":{"d":"37,-203v0,-30,21,-51,51,-51v30,0,51,21,51,51v0,30,-21,51,-51,51v-30,0,-51,-21,-51,-51xm55,-203v0,20,13,33,33,33v20,0,33,-13,33,-33v0,-20,-13,-34,-33,-34v-20,0,-33,14,-33,34"},"\u00a7":{"d":"45,-172v0,70,113,22,113,95v0,16,-7,35,-14,46v30,32,6,101,-49,90v-29,-5,-72,8,-60,-16v0,0,40,5,60,5v32,0,49,-13,49,-45v0,-30,-18,-33,-50,-38v-41,-6,-64,-13,-64,-55v0,-17,10,-31,18,-40v-10,-8,-16,-20,-16,-41v0,-38,24,-51,63,-51v31,0,66,-8,56,16v0,0,-39,-5,-56,-5v-32,0,-50,11,-50,39xm145,-76v0,-46,-58,-35,-88,-49v-26,32,-15,82,39,79v16,3,30,4,39,9v6,-8,10,-26,10,-39"},"\u00a9":{"d":"4,-156v0,-53,38,-96,91,-96v53,0,93,43,93,96v0,53,-40,95,-93,95v-53,0,-91,-42,-91,-95xm15,-156v0,46,34,84,80,84v46,0,81,-38,81,-84v0,-46,-35,-84,-81,-84v-46,0,-80,38,-80,84xm95,-113v18,0,32,-11,27,9v0,0,-16,3,-27,3v-32,0,-39,-22,-39,-55v0,-33,7,-55,39,-55v23,0,30,-4,27,14v0,0,-15,-3,-27,-3v-25,0,-27,16,-27,44v0,27,4,43,27,43"},"\u2122":{"d":"3,-212r0,-12r72,0r0,12r-30,0r0,92r-12,0r0,-92r-30,0xm87,-119r0,-105r18,0r30,88r32,-88r18,0r0,105r-12,0r0,-93r-32,89r-12,0r-30,-89r0,93r-12,0"},"\u00ae":{"d":"4,-156v0,-53,38,-96,91,-96v53,0,93,43,93,96v0,53,-40,95,-93,95v-53,0,-91,-42,-91,-95xm15,-156v0,46,34,84,80,84v46,0,81,-38,81,-84v0,-46,-35,-84,-81,-84v-46,0,-80,38,-80,84xm122,-99r-23,-48r-29,0r0,48r-11,0r0,-114v36,-1,74,-3,74,33v0,17,-5,28,-21,32r23,49r-13,0xm70,-158v24,-1,54,7,51,-22v2,-24,-27,-21,-51,-21r0,43"},"\u00e1":{"d":"153,-36v-2,-66,16,-148,-57,-148v-28,0,-71,8,-71,8r1,23v0,0,43,-5,69,-5v26,0,33,19,31,48v-51,5,-111,1,-111,59v0,35,18,55,49,55v34,0,66,-14,66,-14v9,10,21,14,43,14r1,-24v-12,-1,-20,-4,-21,-16xm42,-52v0,-38,50,-33,84,-36r0,57v0,0,-31,11,-58,11v-16,0,-26,-11,-26,-32xm61,-235r79,-35r10,25r-79,33","w":192},"\u00e0":{"d":"96,-184v73,0,55,82,57,148v1,12,9,15,21,16r-1,24v-22,0,-34,-4,-43,-14v0,0,-32,14,-66,14v-31,0,-49,-20,-49,-55v0,-58,59,-55,111,-59v2,-29,-5,-48,-31,-48v-26,0,-69,5,-69,5r-1,-23v0,0,43,-8,71,-8xm126,-88v-34,4,-84,-2,-84,36v0,21,10,32,26,32v27,0,58,-11,58,-11r0,-57xm51,-270r79,35r-10,23r-79,-33","w":192},"\u00e2":{"d":"153,-36v-2,-66,16,-148,-57,-148v-28,0,-71,8,-71,8r1,23v0,0,43,-5,69,-5v26,0,33,19,31,48v-51,5,-111,1,-111,59v0,35,18,55,49,55v34,0,66,-14,66,-14v9,10,21,14,43,14r1,-24v-12,-1,-20,-4,-21,-16xm42,-52v0,-38,50,-33,84,-36r0,57v0,0,-31,11,-58,11v-16,0,-26,-11,-26,-32xm40,-216r43,-48r10,0r44,48r-15,0r-33,-35r-34,35r-15,0","w":192},"\u00e4":{"d":"153,-36v-2,-66,16,-148,-57,-148v-28,0,-71,8,-71,8r1,23v0,0,43,-5,69,-5v26,0,33,19,31,48v-51,5,-111,1,-111,59v0,35,18,55,49,55v34,0,66,-14,66,-14v9,10,21,14,43,14r1,-24v-12,-1,-20,-4,-21,-16xm42,-52v0,-38,50,-33,84,-36r0,57v0,0,-31,11,-58,11v-16,0,-26,-11,-26,-32xm51,-230r0,-22r12,0r0,22r-12,0xm112,-230r0,-22r13,0r0,22r-13,0","w":192},"\u00e3":{"d":"153,-36v-2,-66,16,-148,-57,-148v-28,0,-71,8,-71,8r1,23v0,0,43,-5,69,-5v26,0,33,19,31,48v-51,5,-111,1,-111,59v0,35,18,55,49,55v34,0,66,-14,66,-14v9,10,21,14,43,14r1,-24v-12,-1,-20,-4,-21,-16xm42,-52v0,-38,50,-33,84,-36r0,57v0,0,-31,11,-58,11v-16,0,-26,-11,-26,-32xm113,-238v9,0,21,-23,30,-9v-10,10,-20,20,-30,20v-22,0,-29,-19,-46,-19v-13,0,-24,24,-34,8v11,-10,22,-19,34,-19v22,0,31,19,46,19","w":192},"\u00e5":{"d":"153,-36v-2,-66,16,-148,-57,-148v-28,0,-71,8,-71,8r1,23v0,0,43,-5,69,-5v26,0,33,19,31,48v-51,5,-111,1,-111,59v0,35,18,55,49,55v34,0,66,-14,66,-14v9,10,21,14,43,14r1,-24v-12,-1,-20,-4,-21,-16xm42,-52v0,-38,50,-33,84,-36r0,57v0,0,-31,11,-58,11v-16,0,-26,-11,-26,-32xm54,-233v0,-19,15,-34,34,-34v19,0,34,15,34,34v0,19,-15,34,-34,34v-19,0,-34,-15,-34,-34xm67,-233v0,13,9,22,22,22v12,0,21,-9,21,-22v0,-12,-9,-22,-21,-22v-13,0,-22,10,-22,22","w":192},"\u00e9":{"d":"93,-21v27,0,65,-3,65,-3r1,22v0,0,-41,6,-70,6v-54,0,-71,-32,-71,-93v0,-68,29,-95,75,-95v55,0,80,43,71,106r-119,0v0,38,12,57,48,57xm45,-100r94,0v0,-43,-15,-59,-46,-59v-31,0,-48,17,-48,59xm52,-235r78,-35r11,25r-79,33","w":178},"\u00e8":{"d":"93,-21v27,0,65,-3,65,-3r1,22v0,0,-41,6,-70,6v-54,0,-71,-32,-71,-93v0,-68,29,-95,75,-95v55,0,80,43,71,106r-119,0v0,38,12,57,48,57xm45,-100r94,0v0,-43,-15,-59,-46,-59v-31,0,-48,17,-48,59xm49,-270r78,35r-10,23r-79,-33","w":178},"\u00ea":{"d":"93,-21v27,0,65,-3,65,-3r1,22v0,0,-41,6,-70,6v-54,0,-71,-32,-71,-93v0,-68,29,-95,75,-95v55,0,80,43,71,106r-119,0v0,38,12,57,48,57xm45,-100r94,0v0,-43,-15,-59,-46,-59v-31,0,-48,17,-48,59xm47,-216r43,-48r10,0r44,48r-15,0r-33,-35r-34,35r-15,0","w":178},"\u00eb":{"d":"93,-21v27,0,65,-3,65,-3r1,22v0,0,-41,6,-70,6v-54,0,-71,-32,-71,-93v0,-68,29,-95,75,-95v55,0,80,43,71,106r-119,0v0,38,12,57,48,57xm45,-100r94,0v0,-43,-15,-59,-46,-59v-31,0,-48,17,-48,59xm59,-230r0,-22r13,0r0,22r-13,0xm121,-230r0,-22r12,0r0,22r-12,0","w":178},"\u00ef":{"d":"10,-230r0,-22r13,0r0,22r-13,0xm71,-230r0,-22r13,0r0,22r-13,0xm34,0r0,-180r27,0r0,180r-27,0","w":93},"\u00f1":{"d":"33,0r27,0r0,-145v0,0,27,-14,51,-14v60,0,31,104,38,159r27,0v-4,-75,21,-184,-60,-184v-26,0,-56,16,-56,16r0,-12r-27,0r0,180xm132,-238v9,0,21,-23,30,-9v-10,10,-20,20,-30,20v-22,0,-29,-19,-46,-19v-13,0,-24,24,-34,8v11,-10,22,-19,34,-19v22,0,31,19,46,19","w":206},"\u00f3":{"d":"103,-184v-57,0,-77,29,-77,91v0,66,16,97,77,97v61,0,77,-34,77,-96v0,-62,-23,-92,-77,-92xm103,-21v-42,0,-50,-22,-50,-72v0,-49,12,-66,50,-66v35,0,49,19,49,67v0,48,-7,71,-49,71xm54,-235r78,-35r11,25r-79,33","w":192},"\u00f2":{"d":"103,-184v54,0,77,30,77,92v0,62,-16,96,-77,96v-61,0,-77,-31,-77,-97v0,-62,20,-91,77,-91xm103,-21v42,0,49,-23,49,-71v0,-48,-14,-67,-49,-67v-38,0,-50,17,-50,66v0,50,8,72,50,72xm51,-270r79,35r-10,23r-79,-33","w":192},"\u00f4":{"d":"103,-184v-57,0,-77,29,-77,91v0,66,16,97,77,97v61,0,77,-34,77,-96v0,-62,-23,-92,-77,-92xm103,-21v-42,0,-50,-22,-50,-72v0,-49,12,-66,50,-66v35,0,49,19,49,67v0,48,-7,71,-49,71xm46,-216r44,-48r10,0r44,48r-15,0r-34,-35r-34,35r-15,0","w":192},"\u00f6":{"d":"103,-184v-57,0,-77,29,-77,91v0,66,16,97,77,97v61,0,77,-34,77,-96v0,-62,-23,-92,-77,-92xm103,-21v-42,0,-50,-22,-50,-72v0,-49,12,-66,50,-66v35,0,49,19,49,67v0,48,-7,71,-49,71xm58,-230r0,-22r13,0r0,22r-13,0xm119,-230r0,-22r13,0r0,22r-13,0","w":192},"\u00f5":{"d":"103,-184v-57,0,-77,29,-77,91v0,66,16,97,77,97v61,0,77,-34,77,-96v0,-62,-23,-92,-77,-92xm103,-21v-42,0,-50,-22,-50,-72v0,-49,12,-66,50,-66v35,0,49,19,49,67v0,48,-7,71,-49,71xm120,-238v9,0,21,-23,30,-9v-10,10,-20,20,-30,20v-22,0,-30,-19,-47,-19v-12,0,-23,24,-33,8v11,-10,22,-19,34,-19v22,0,31,19,46,19","w":192},"\u00fa":{"d":"171,-180r-26,0r0,146v0,0,-26,13,-50,13v-61,0,-31,-104,-38,-159r-26,0v4,75,-22,184,60,184v25,0,54,-16,54,-16r0,12r26,0r0,-180xm57,-235r79,-35r10,25r-79,33","w":183},"\u00f9":{"d":"145,-180r26,0r0,180r-26,0r0,-12v0,0,-29,16,-54,16v-82,0,-56,-109,-60,-184r26,0v6,55,-23,159,38,159v24,0,50,-13,50,-13r0,-146xm55,-270r78,35r-10,23r-79,-33","w":183},"\u00fb":{"d":"171,-180r-26,0r0,146v0,0,-26,13,-50,13v-61,0,-31,-104,-38,-159r-26,0v4,75,-22,184,60,184v25,0,54,-16,54,-16r0,12r26,0r0,-180xm49,-216r44,-48r10,0r44,48r-15,0r-34,-35r-34,35r-15,0","w":183},"\u00fc":{"d":"171,-180r-26,0r0,146v0,0,-26,13,-50,13v-61,0,-31,-104,-38,-159r-26,0v4,75,-22,184,60,184v25,0,54,-16,54,-16r0,12r26,0r0,-180xm61,-230r0,-22r13,0r0,22r-13,0xm122,-230r0,-22r13,0r0,22r-13,0","w":183},"\u2212":{"d":"12,-94r0,-26r166,0r0,26r-166,0"},"\u00d7":{"d":"84,-184r68,69r67,-69r19,17r-68,70r68,71r-18,17r-68,-70r-68,70r-18,-17r68,-71r-68,-70","w":256},"\u0131":{"d":"34,0r0,-180r27,0r0,180r-27,0","w":93},"\u00ed":{"d":"10,-235r79,-35r10,25r-79,33xm34,0r0,-180r27,0r0,180r-27,0","w":93},"\u00ec":{"d":"0,-270r78,35r-10,23r-79,-33xm34,0r0,-180r27,0r0,180r-27,0","w":93},"\u00ee":{"d":"34,0r0,-180r27,0r0,180r-27,0xm-2,-216r44,-48r10,0r44,48r-15,0r-34,-35r-34,35r-15,0","w":93},"\u00c3":{"d":"11,0r69,-251r60,0r68,251r-28,0r-19,-63r-104,0r-18,63r-28,0xm100,-225r-37,135r93,0r-38,-135r-18,0xm134,-310v9,0,21,-23,30,-9v-10,10,-20,20,-30,20v-22,0,-29,-19,-46,-19v-13,0,-24,24,-34,8v11,-10,22,-19,34,-19v22,0,31,19,46,19","w":217},"\u00c0":{"d":"11,0r69,-251r60,0r68,251r-28,0r-19,-63r-104,0r-18,63r-28,0xm100,-225r-37,135r93,0r-38,-135r-18,0xm70,-342r78,35r-10,23r-79,-33","w":217},"\u00d5":{"d":"118,-23v58,0,70,-32,70,-101v0,-66,-13,-104,-70,-104v-57,0,-70,37,-70,104v0,67,12,101,70,101xm118,4v-78,0,-99,-44,-99,-128v0,-83,22,-130,99,-130v77,0,98,47,98,130v0,86,-21,128,-98,128xm143,-310v9,0,21,-23,30,-9v-10,10,-20,20,-30,20v-22,0,-29,-19,-46,-19v-13,0,-24,24,-34,8v11,-10,22,-19,34,-19v22,0,31,19,46,19","w":236},"\u00c2":{"d":"11,0r69,-251r60,0r68,251r-28,0r-19,-63r-104,0r-18,63r-28,0xm100,-225r-37,135r93,0r-38,-135r-18,0xm60,-288r44,-48r10,0r44,48r-15,0r-34,-35r-33,35r-16,0","w":217},"\u00ca":{"d":"33,0r0,-251r151,0r0,27r-124,0r0,84r103,0r0,26r-103,0r0,88r124,0r0,26r-151,0xm63,-288r43,-48r10,0r44,48r-15,0r-33,-35r-34,35r-15,0","w":205},"\u00c1":{"d":"11,0r69,-251r60,0r68,251r-28,0r-19,-63r-104,0r-18,63r-28,0xm100,-225r-37,135r93,0r-38,-135r-18,0xm65,-307r79,-35r10,25r-79,33","w":217},"\u00cb":{"d":"33,0r0,-251r151,0r0,27r-124,0r0,84r103,0r0,26r-103,0r0,88r124,0r0,26r-151,0xm75,-302r0,-22r12,0r0,22r-12,0xm136,-302r0,-22r12,0r0,22r-12,0","w":205},"\u00c8":{"d":"37,0r0,-252r147,0r0,12r-134,0r0,104r113,0r0,13r-113,0r0,111r134,0r0,12r-147,0xm78,-336r70,35r-6,10r-69,-33","w":205},"\u00d4":{"d":"118,-23v58,0,70,-32,70,-101v0,-66,-13,-104,-70,-104v-57,0,-70,37,-70,104v0,67,12,101,70,101xm118,4v-78,0,-99,-44,-99,-128v0,-83,22,-130,99,-130v77,0,98,47,98,130v0,86,-21,128,-98,128xm69,-288r44,-48r10,0r44,48r-15,0r-34,-35r-33,35r-16,0","w":236},"\u00d3":{"d":"118,-23v58,0,70,-32,70,-101v0,-66,-13,-104,-70,-104v-57,0,-70,37,-70,104v0,67,12,101,70,101xm118,4v-78,0,-99,-44,-99,-128v0,-83,22,-130,99,-130v77,0,98,47,98,130v0,86,-21,128,-98,128xm70,-307r79,-35r10,25r-79,33","w":236},"\u00cc":{"d":"31,0r0,-251r27,0r0,251r-27,0xm5,-342r78,35r-10,23r-79,-33","w":81},"\u00cf":{"d":"31,0r0,-251r27,0r0,251r-27,0xm4,-302r0,-22r13,0r0,22r-13,0xm65,-302r0,-22r13,0r0,22r-13,0","w":81},"\u00ce":{"d":"31,0r0,-251r28,0r0,251r-28,0xm-7,-288r43,-48r10,0r44,48r-15,0r-33,-35r-34,35r-15,0","w":83},"\u00cd":{"d":"31,0r0,-251r27,0r0,251r-27,0xm-7,-307r78,-35r11,25r-79,33","w":81},"\u00d2":{"d":"118,-23v58,0,70,-32,70,-101v0,-66,-13,-104,-70,-104v-57,0,-70,37,-70,104v0,67,12,101,70,101xm118,4v-78,0,-99,-44,-99,-128v0,-83,22,-130,99,-130v77,0,98,47,98,130v0,86,-21,128,-98,128xm82,-342r79,35r-11,23r-78,-33","w":236},"\u00da":{"d":"57,-76v0,39,23,53,58,53v37,0,61,-14,61,-53r0,-175r27,0r0,175v0,57,-31,79,-88,79v-55,0,-86,-22,-86,-79r0,-175r28,0r0,175xm68,-307r79,-35r10,25r-79,33","w":231},"\u00db":{"d":"57,-76v0,39,23,53,58,53v37,0,61,-14,61,-53r0,-175r27,0r0,175v0,57,-31,79,-88,79v-55,0,-86,-22,-86,-79r0,-175r28,0r0,175xm68,-288r43,-48r10,0r44,48r-15,0r-33,-35r-34,35r-15,0","w":231},"\u00d9":{"d":"57,-76v0,39,23,53,58,53v37,0,61,-14,61,-53r0,-175r27,0r0,175v0,57,-31,79,-88,79v-55,0,-86,-22,-86,-79r0,-175r28,0r0,175xm80,-342r79,35r-10,23r-79,-33","w":231},"\u00b8":{"d":"172,39v0,22,-13,26,-33,21r1,-9v12,0,22,3,20,-12v3,-14,-7,-12,-19,-12r0,-27r12,0r0,17v15,0,19,6,19,22","w":299},"\u00df":{"d":"93,-146v-8,-33,51,-28,51,-57v0,-21,-14,-28,-46,-28v-29,0,-39,8,-39,44r0,187r-28,0r0,-190v0,-49,18,-66,67,-66v53,0,74,15,74,52v9,37,-45,39,-51,56v0,5,2,7,32,24v33,18,47,25,47,46v0,58,-18,81,-86,81v-11,0,-34,-4,-34,-4r2,-22v0,0,26,1,32,1v49,0,58,-17,58,-53v0,-7,-9,-14,-40,-30v-33,-17,-39,-22,-39,-41","w":217},"\u00dc":{"d":"57,-76v0,39,23,53,58,53v37,0,61,-14,61,-53r0,-175r27,0r0,175v0,57,-31,79,-88,79v-55,0,-86,-22,-86,-79r0,-175r28,0r0,175xm80,-302r0,-22r13,0r0,22r-13,0xm141,-302r0,-22r13,0r0,22r-13,0","w":231},"\u00d6":{"d":"118,-23v58,0,70,-32,70,-101v0,-66,-13,-104,-70,-104v-57,0,-70,37,-70,104v0,67,12,101,70,101xm118,4v-78,0,-99,-44,-99,-128v0,-83,22,-130,99,-130v77,0,98,47,98,130v0,86,-21,128,-98,128xm81,-302r0,-22r13,0r0,22r-13,0xm143,-302r0,-22r12,0r0,22r-12,0","w":236},"\u00d1":{"d":"31,0r0,-251r50,0r99,219r8,0r0,-219r28,0r0,251r-49,0r-101,-218r-7,0r0,218r-28,0xm148,-310v9,0,21,-23,30,-9v-10,10,-20,20,-30,20v-22,0,-29,-19,-46,-19v-13,0,-24,24,-34,8v11,-10,22,-19,34,-19v22,0,31,19,46,19","w":247},"\u00c9":{"d":"33,0r0,-251r151,0r0,27r-124,0r0,84r103,0r0,26r-103,0r0,88r124,0r0,26r-151,0xm71,-307r78,-35r10,25r-78,33","w":205},"\u00c7":{"d":"177,-30r1,25v0,0,-41,9,-69,9v-75,0,-91,-47,-91,-129v0,-85,18,-129,91,-129v33,0,69,8,69,8r-1,25v0,0,-40,-6,-65,-6v-56,0,-65,33,-65,102v0,68,9,102,66,102v22,0,64,-7,64,-7xm123,39v0,22,-13,26,-33,21r0,-9v12,0,23,2,21,-12v2,-14,-7,-12,-19,-12r0,-27r12,0r0,17v15,0,19,6,19,22","w":193},"\u00c5":{"d":"11,0r69,-251r60,0r68,251r-28,0r-19,-63r-104,0r-18,63r-28,0xm100,-225r-37,135r93,0r-38,-135r-18,0xm76,-305v0,-19,14,-34,33,-34v19,0,34,15,34,34v0,19,-15,34,-34,34v-19,0,-33,-15,-33,-34xm88,-305v0,13,9,22,22,22v12,0,21,-9,21,-22v0,-12,-9,-22,-21,-22v-13,0,-22,10,-22,22","w":217},"\u00c4":{"d":"11,0r69,-251r60,0r68,251r-28,0r-19,-63r-104,0r-18,63r-28,0xm100,-225r-37,135r93,0r-38,-135r-18,0xm72,-302r0,-22r13,0r0,22r-13,0xm134,-302r0,-22r12,0r0,22r-12,0","w":217},"\u00e7":{"d":"93,-184v17,0,48,6,48,6r0,23v0,0,-29,-3,-43,-3v-41,0,-52,17,-52,65v0,53,8,71,52,71v14,0,43,-3,43,-3r1,24v0,0,-34,5,-50,5v-58,0,-74,-26,-74,-97v0,-65,21,-91,75,-91xm110,39v0,22,-13,26,-33,21r1,-9v12,0,22,3,20,-12v3,-14,-7,-12,-19,-12r0,-27r12,0r0,17v15,0,19,6,19,22","w":157},"\u0160":{"d":"97,-256v35,0,82,-7,70,18v0,0,-49,-6,-70,-6v-41,0,-64,15,-64,51v0,44,22,49,67,56v47,8,74,18,74,64v0,56,-26,76,-76,76v-27,0,-77,-6,-77,-6r1,-13v0,0,49,6,75,6v41,0,63,-17,63,-62v0,-37,-19,-45,-63,-52v-49,-8,-78,-16,-78,-69v0,-46,30,-63,78,-63xm91,-288r-42,-48r14,0r33,36r33,-36r15,0r-43,48r-10,0","w":192},"\u0142":{"d":"22,-84r-13,-18r37,-27r0,-134r27,0r0,115r27,-18r13,19r-40,27r0,120r-27,0r0,-100","w":117},"\u0141":{"d":"9,-84r-13,-18r38,-27r0,-122r28,0r0,103r58,-41r13,19r-71,50r0,93r111,0r0,27r-139,0r0,-101"},"\u00f0":{},"\u00d0":{"d":"8,-110r0,-26r106,0r0,26r-106,0xm121,0r-89,0r0,-251r89,0v72,0,92,51,92,122v0,72,-19,129,-92,129xm185,-129v0,-53,-13,-95,-64,-95r-61,0r0,198r61,0v51,0,64,-50,64,-103","w":231},"\u00dd":{"d":"112,-107r0,107r-28,0r0,-108r-79,-143r31,0r62,113r61,-113r31,0xm47,-307r79,-35r10,25r-79,33","w":194},"\u00de":{"d":"116,-70v36,0,52,-23,52,-60v0,-63,-57,-55,-115,-54r0,114r63,0xm117,-44r-64,0r0,44r-27,0r0,-251r27,0r0,41v79,-4,143,-1,143,80v0,54,-25,86,-79,86","w":209},"\u00fe":{"d":"101,-21v49,0,58,-22,58,-72v0,-47,-10,-66,-41,-66v-24,0,-50,10,-50,10r0,126v0,0,23,2,33,2xm121,-184v49,0,65,27,65,91v0,85,-39,104,-118,95r0,78r-27,0r0,-338r27,0r0,86v0,0,27,-12,53,-12","w":193},"\u017d":{"d":"17,-240r0,-12r162,0r0,25r-148,207r0,8r148,0r0,12r-162,0r0,-24r149,-207r0,-9r-149,0xm95,-288r-43,-47r15,0r34,35r33,-35r15,0r-44,47r-10,0","w":196},"\u0178":{"d":"104,-108r0,108r-13,0r0,-108r-82,-144r15,0r74,129r72,-129r15,0xm60,-302r0,-22r13,0r0,22r-13,0xm121,-302r0,-22r13,0r0,22r-13,0","w":194},"\u00f8":{"d":"39,34r15,-38v-26,-12,-32,-39,-32,-90v0,-80,38,-98,103,-85r15,-34r10,3r-14,36v21,12,32,38,32,81v0,80,-32,106,-103,93r-15,37xm35,-94v0,43,4,68,24,79r62,-153v-53,-12,-86,2,-86,74xm69,-11v60,13,85,-13,85,-82v0,-36,-7,-58,-23,-69","w":189},"\u00a6":{"d":"79,-270r27,0r0,138r-27,0r0,-138xm79,-91r27,0r0,137r-27,0r0,-137"},"\u00b1":{"d":"14,-114r0,-25r69,0r0,-47r25,0r0,47r71,0r0,25r-71,0r0,46r-25,0r0,-46r-69,0xm14,-46r165,0r0,24r-165,0r0,-24"},"\u03c0":{"d":"183,0v-77,11,-36,-110,-50,-167r-71,0r-11,167r-12,0r10,-167v-43,-3,-51,17,-48,-8v76,-13,107,4,184,-11v2,22,-3,13,-37,18r0,113v0,37,7,43,35,43r0,12"},"\u2022":{"d":"89,0r0,-29r14,0r0,29r-14,0"},"\u00aa":{"d":"95,-237v40,-6,28,45,30,80v2,6,5,7,13,8r-1,10v-9,0,-13,-3,-19,-8v0,0,-23,8,-43,8v-15,0,-25,-11,-25,-29v0,-31,36,-27,63,-30v12,-38,-39,-27,-56,-25v-7,-20,18,-11,38,-14xm113,-187v-20,3,-53,-5,-51,20v-6,31,48,10,51,10r0,-30","w":186},"\u00ba":{"d":"93,-237v27,0,41,14,41,48v0,34,-14,50,-41,50v-27,0,-41,-16,-41,-50v0,-34,14,-48,41,-48xm93,-150v21,0,29,-12,29,-39v0,-27,-8,-37,-29,-37v-21,0,-29,10,-29,37v0,27,8,39,29,39","w":189},"\u2039":{"w":299},"I":{"d":"31,0r0,-251r27,0r0,251r-27,0","w":88},"O":{"d":"117,-23v58,0,70,-32,70,-101v0,-66,-13,-104,-70,-104v-57,0,-69,37,-69,104v0,67,11,101,69,101xm117,4v-78,0,-98,-44,-98,-128v0,-83,21,-130,98,-130v77,0,99,47,99,130v0,86,-22,128,-99,128","w":234},"\u00ab":{"d":"139,-137r-48,38r48,42r0,15v0,0,-48,-40,-60,-49r0,-13r60,-47r0,14xm214,-137r-49,38r49,42r0,15v0,0,-48,-40,-60,-49r0,-13r60,-47r0,14","w":299},"\u00bb":{"d":"210,-99r-49,-38r0,-14r60,47r0,13v-12,9,-60,49,-60,49r0,-15xm135,-99r-49,-38r0,-14r61,47r0,13v-12,9,-61,49,-61,49r0,-15","w":299},"\u201c":{"w":299},"~":{"w":299},"\u2014":{"w":299},"L":{"d":"170,0r-138,0r0,-251r28,0r0,224r110,0r0,27","w":184},"B":{"d":"32,-251v73,1,165,-15,165,62v0,34,-12,51,-32,60v22,8,39,22,39,58v0,90,-91,69,-172,71r0,-251xm176,-72v-5,-63,-63,-36,-116,-42r0,88v53,-2,121,14,116,-46xm168,-185v0,-51,-61,-39,-108,-40r0,85v50,-1,108,11,108,-45","w":222},"D":{"d":"121,0r-89,0r0,-251r89,0v72,0,92,51,92,122v0,72,-19,129,-92,129xm185,-129v0,-53,-13,-95,-64,-95r-61,0r0,198r61,0v51,0,64,-50,64,-103","w":231},"P":{"d":"123,-84r-63,0r0,84r-28,0r0,-251r91,0v54,0,80,27,80,81v0,54,-26,86,-80,86xm60,-111v60,2,115,6,115,-59v0,-63,-57,-55,-115,-54r0,113","w":218},"b":{"d":"111,-184v49,0,66,27,66,91v0,71,-19,97,-85,97v-22,0,-61,-4,-61,-4r0,-258r27,0r0,86v0,0,27,-12,53,-12xm91,-21v49,0,58,-22,58,-72v0,-47,-9,-66,-41,-66v-24,0,-50,10,-50,10r0,126v0,0,23,2,33,2","w":194},"v":{"d":"9,-180r28,0r43,157r13,0r44,-157r28,0r-52,180r-54,0","w":173},"x":{"d":"10,-180r29,0r44,71r44,-71r29,0r-56,90r56,90r-29,0r-44,-70r-44,70r-29,0r56,-90","w":165},"6":{"d":"170,-234r-3,25v0,0,-32,-6,-62,-6v-41,0,-64,23,-64,80v0,0,33,-14,59,-14v52,0,80,24,80,74v0,50,-30,79,-83,79v-59,0,-85,-42,-85,-124v0,-92,36,-122,93,-122v30,0,65,8,65,8xm98,-123v-28,0,-58,13,-58,13v1,54,16,88,57,88v35,0,55,-18,55,-53v0,-33,-21,-48,-54,-48"},"9":{"d":"21,-4r3,-25v0,0,33,6,63,6v43,0,65,-25,65,-79v0,0,-36,13,-62,13v-50,0,-78,-26,-78,-76v0,-50,33,-77,83,-77v60,0,85,44,85,124v0,92,-34,122,-93,122v-30,0,-66,-8,-66,-8xm92,-115v25,0,60,-13,60,-13v-1,-53,-16,-87,-57,-87v-33,0,-54,17,-54,50v0,33,18,50,51,50"},"\u00a5":{"d":"17,-113r0,-24r50,0r-62,-101r31,0r62,98r61,-98r31,0r-62,101r49,0r0,24r-63,0v-3,7,-2,19,-2,29r65,0r0,24r-65,0r0,60r-28,0r0,-60r-67,0r0,-24r67,0v0,-10,2,-23,-3,-29r-64,0","w":194},"<":{"d":"148,-173r-99,61r99,63r0,29v-17,-9,-101,-64,-125,-78r0,-28r125,-75r0,28"},">":{"d":"122,-112r-99,-61r0,-28r125,75r0,28v-24,14,-108,69,-125,78r0,-29"},"[":{"d":"90,-270r0,26r-48,0r0,262r48,0r0,26r-75,0r-1,-314r76,0","w":108},"\\":{"d":"218,-3r-29,3r-109,-249r29,-3","w":299},"]":{"d":"1,-244r0,-26r76,0r0,314r-76,0r0,-26r48,0r0,-262r-48,0","w":108},"|":{"d":"80,46r0,-305r27,0r0,305r-27,0"},"\u2260":{"d":"16,-121r0,-25r89,0r25,-57r23,10r-21,47r44,0r0,25r-55,0r-20,46r76,0r0,25r-87,0r-24,56r-24,-9r21,-47r-46,0r0,-25r57,0r20,-46r-78,0"},"\u00c6":{"d":"154,0r0,-63r-90,0r-21,63r-29,0r81,-251r211,0r0,27r-124,0r0,83r102,0r0,26r-102,0r0,89r124,0r0,26r-152,0xm114,-221r-42,131r82,0r0,-131r-40,0","w":323},"\u00b5":{"d":"27,86r0,-266r27,0v7,55,-23,159,38,159v24,0,49,-13,49,-13r0,-146r27,0r0,180r-27,0r0,-12v-1,5,-77,29,-87,4r0,94r-27,0"},"\u03bc":{"d":"27,86r0,-266r27,0v7,55,-23,159,38,159v24,0,49,-13,49,-13r0,-146r27,0r0,180r-27,0r0,-12v-1,5,-77,29,-87,4r0,94r-27,0"},"\u00e6":{"d":"205,-21v27,0,66,-3,66,-3r1,22v0,0,-41,6,-70,6v-25,0,-42,-7,-53,-20v-18,8,-34,20,-81,20v-32,0,-49,-19,-49,-55v0,-57,59,-54,112,-59v2,-29,-5,-48,-31,-48v-27,0,-69,4,-69,4r-1,-24v0,0,43,-6,71,-6v25,0,40,9,48,27v41,-51,140,-30,129,58r-1,21r-119,0v0,38,11,57,47,57xm47,-52v-9,54,79,23,90,19v-5,-14,-7,-33,-7,-55v-34,5,-86,-5,-83,36xm158,-100r93,0v0,-43,-13,-59,-45,-59v-31,0,-48,17,-48,59","w":298},"\u0192":{"d":"86,-155v-1,-56,4,-99,54,-92v12,1,30,2,30,2r0,23v-28,-2,-64,-5,-58,40r0,27r53,0r0,25r-53,0r0,154v4,64,-41,68,-87,62r1,-22v29,1,60,8,60,-40r0,-154r-23,0r0,-25r23,0"},"\u0152":{"d":"317,0r-149,0v-14,1,-38,4,-51,4v-77,0,-95,-44,-95,-128v0,-110,44,-127,146,-127r149,0r0,27r-122,0r0,83r100,0r0,26r-100,0r0,88r122,0r0,27xm120,-23v8,0,35,-2,48,-3r0,-198v-81,-11,-118,4,-118,99v0,70,11,102,70,102","w":339},"\u0153":{"d":"222,-21v27,0,66,-3,66,-3r1,22v0,0,-41,6,-70,6v-30,0,-48,-11,-58,-30v-10,21,-29,30,-62,30v-61,0,-78,-31,-78,-97v0,-62,21,-91,78,-91v31,0,52,11,63,34v35,-60,145,-41,134,51r-2,21r-119,0v0,38,12,57,47,57xm99,-21v42,0,49,-23,49,-71v0,-48,-14,-67,-49,-67v-38,0,-50,17,-50,66v0,50,8,72,50,72xm175,-100r94,0v0,-43,-15,-59,-46,-59v-31,0,-48,17,-48,59","w":315},"\u2021":{"d":"142,3r0,-69r-60,0r0,-26r60,0r0,-73r-60,0r0,-25r60,0r0,-62r26,0r0,62r60,0r0,25r-60,0r0,73r60,0r0,26r-60,0r0,69r-26,0","w":299},"4":{"d":"124,1r0,-43r-114,0r0,-23r70,-173r31,0r-69,169r82,0r0,-63r28,0r0,63r28,0r0,27r-28,0r0,43r-28,0"},"\"":{"d":"96,-172r-25,0r-1,-79r26,0r0,79xm41,-172r-25,0r-1,-79r27,0","w":111},"'":{"d":"4,-169r0,-81r27,0r-2,81r-25,0","w":36},"(":{"d":"48,-270r28,0v0,0,-34,94,-34,162v0,67,34,153,34,153r-28,0v0,0,-35,-81,-35,-153v0,-72,35,-162,35,-162","w":93},")":{"d":"40,43r-28,0v0,0,34,-93,34,-161v0,-67,-34,-154,-34,-154r28,0v0,0,35,82,35,154v0,72,-35,161,-35,161","w":93},",":{"d":"9,44r17,-83r29,0r-20,83r-26,0","w":61},"-":{"d":"23,-88r0,-26r112,0r0,26r-112,0","w":158},".":{"d":"28,0r0,-41r29,0r0,41r-29,0","w":89},"\/":{"d":"32,-5r100,-250r26,9r-101,250"},":":{"d":"22,-116r0,-41r29,0r0,41r-29,0xm22,0r0,-41r29,0r0,41r-29,0","w":63},";":{"d":"26,-41r-17,84r24,0r23,-84r-30,0xm24,-116r0,-41r30,0r0,41r-30,0","w":71},"=":{"d":"12,-122r0,-25r164,0r0,25r-164,0xm12,-54r0,-25r165,0r0,25r-165,0"},"?":{"d":"139,-193v-1,71,-77,67,-68,122r-29,0v-9,-63,67,-68,68,-120v0,-28,-13,-37,-47,-37v-18,0,-57,8,-57,8r-3,-26v0,0,41,-10,60,-10v50,0,76,17,76,63xm42,0r0,-41r29,0r0,41r-29,0","w":138},"_":{"d":"10,5r154,0r0,25r-154,0r0,-25","w":187},"{":{"d":"32,-112v41,9,34,49,34,93v0,25,8,37,41,39r-1,26v-69,3,-66,-48,-66,-107v0,-21,-9,-31,-36,-39r0,-23v47,-9,33,-41,33,-85v0,-44,20,-62,69,-64r1,26v-53,-1,-40,42,-39,83v0,31,-10,42,-36,51","w":110},"}":{"d":"76,-112v-41,-9,-34,-49,-34,-93v0,-25,-8,-37,-41,-39r1,-26v69,-3,66,48,66,107v0,21,9,31,36,39r0,23v-47,9,-33,41,-33,85v0,44,-20,62,-69,64r-1,-26v85,4,-1,-124,75,-134","w":110},"\u00a2":{"d":"78,29r0,-42v-43,-2,-64,-20,-64,-76v0,-53,24,-76,64,-78r0,-43r24,0r0,44v16,1,36,3,36,3r-1,24v0,0,-33,-2,-47,-2v-36,0,-47,13,-47,52v0,39,11,50,50,50v14,0,45,-2,45,-2r1,24v0,0,-22,2,-37,3r0,43r-24,0","w":157},"\u2018":{"d":"48,-262r-15,79r-28,0r19,-79r24,0","w":61},"\u2019":{"d":"13,-190r15,-79r28,0r-19,79r-24,0","w":61},"\u00f7":{"d":"36,-130r0,-27r92,0r0,27r-92,0xm41,-137r0,-35r81,0r0,35r-81,0xm68,-37r0,-36r28,0r0,36r-28,0"},"\u20ac":{"d":"11,-159r22,0v5,-57,27,-84,88,-84v33,0,64,7,64,7r-1,25v0,0,-34,-5,-60,-5v-44,0,-58,18,-62,57r97,1r0,22r-99,0r0,33r99,1r0,22r-97,0v4,39,19,57,63,57v23,0,59,-5,59,-5r1,25v0,0,-36,7,-64,7v-62,0,-83,-27,-88,-84r-22,0r0,-23r21,0r0,-33r-21,0r0,-23","w":199},"\u00d8":{"d":"31,32r22,-47v-25,-20,-33,-57,-33,-109v0,-83,21,-130,98,-130v17,0,31,2,43,7r19,-41r25,9r-21,45v24,21,33,59,33,110v0,104,-53,145,-141,121r-21,45xm149,-222v-68,-20,-101,18,-101,98v0,36,4,62,19,77xm87,-28v67,18,101,-13,101,-96v0,-36,-4,-62,-18,-79","w":236},"&":{"d":"116,-253v42,0,63,22,63,57v0,34,-17,51,-55,69r52,51v4,-12,8,-32,10,-48r26,1v-3,24,-9,48,-15,65r46,45r-17,18r-43,-41v-35,65,-166,54,-166,-37v0,-41,20,-61,55,-74v-36,-40,-19,-106,44,-106xm45,-74v0,65,95,71,118,21r-73,-74v-31,10,-45,24,-45,53xm116,-228v-52,-2,-37,68,-9,84v32,-14,45,-24,45,-50v0,-22,-11,-34,-36,-34","w":252},"*":{"d":"159,-184r-47,0r14,45r-17,5r-15,-45r-39,29r-10,-15r39,-28r-39,-28r11,-15r38,27r15,-44r18,5r-15,46r47,0r0,18"},"\u00a3":{"d":"168,-239r0,27v0,0,-25,-5,-37,-5v-29,0,-35,8,-36,65r57,0r0,25r-57,0r0,102v30,0,60,1,82,-6r4,25v-38,11,-93,4,-140,6r0,-25r28,0r0,-102r-20,0r0,-25r20,0v-3,-57,9,-93,52,-93v14,0,47,6,47,6","w":205},"\u00b6":{"d":"163,0r0,-226r-46,0r0,226r-27,0r0,-120v-41,1,-69,-25,-69,-65v0,-39,27,-67,66,-67r133,0r0,26r-30,0r0,226r-27,0","w":256},"\u2020":{"d":"-1,-115r0,-27r50,0r0,-110r27,0r0,110r50,0r0,27r-50,0r0,131r-27,0r0,-131r-50,0","w":127},"%":{"d":"47,-241v19,0,27,11,27,38v0,27,-8,40,-27,40v-18,0,-26,-12,-26,-40v0,-27,7,-38,26,-38xm148,-89v19,0,27,11,27,38v0,27,-9,39,-27,39v-19,0,-27,-11,-27,-39v0,-27,8,-38,27,-38xm54,-2r67,-253r20,6r-66,253xm14,-203v0,27,9,44,33,44v24,0,34,-17,34,-44v0,-27,-10,-43,-34,-43v-24,0,-33,16,-33,43xm115,-51v0,27,9,44,33,44v24,0,33,-17,33,-44v0,-27,-9,-43,-33,-43v-24,0,-33,16,-33,43"},"+":{"d":"-8,-84r0,-25r77,0r0,-77r25,0r0,77r78,0r0,25r-78,0r0,78r-25,0r0,-78r-77,0","w":164},"^":{"d":"136,-158r-39,-77r-41,77r-50,0r65,-125r50,0r66,125r-51,0","w":256},"\u00a0":{"w":84}}});
;
// $Id: jquery.bgiframe.min.js,v 1.1.2.1 2010/07/03 03:00:39 sociotech Exp $

/* Copyright (c) 2006 Brandon Aaron (http://brandonaaron.net)
 * Dual licensed under the MIT (http://www.opensource.org/licenses/mit-license.php) 
 * and GPL (http://www.opensource.org/licenses/gpl-license.php) licenses.
 *
 * $LastChangedDate: 2007-06-19 20:25:28 -0500 (Tue, 19 Jun 2007) $
 * $Rev: 2111 $
 *
 * Version 2.1
 */
;(function($){$.fn.bgIframe=$.fn.bgiframe=function(s){if($.browser.msie&&parseInt($.browser.version)<=6){s=$.extend({top:'auto',left:'auto',width:'auto',height:'auto',opacity:true,src:'javascript:false;'},s||{});var prop=function(n){return n&&n.constructor==Number?n+'px':n;},html='<iframe class="bgiframe"frameborder="0"tabindex="-1"src="'+s.src+'"'+'style="display:block;position:absolute;z-index:-1;'+(s.opacity!==false?'filter:Alpha(Opacity=\'0\');':'')+'top:'+(s.top=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderTopWidth)||0)*-1)+\'px\')':prop(s.top))+';'+'left:'+(s.left=='auto'?'expression(((parseInt(this.parentNode.currentStyle.borderLeftWidth)||0)*-1)+\'px\')':prop(s.left))+';'+'width:'+(s.width=='auto'?'expression(this.parentNode.offsetWidth+\'px\')':prop(s.width))+';'+'height:'+(s.height=='auto'?'expression(this.parentNode.offsetHeight+\'px\')':prop(s.height))+';'+'"/>';return this.each(function(){if($('> iframe.bgiframe',this).length==0)this.insertBefore(document.createElement(html),this.firstChild);});}return this;};if(!$.browser.version)$.browser.version=navigator.userAgent.toLowerCase().match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)[1];})(jQuery);;
// $Id: hoverIntent.js,v 1.1.2.1 2010/07/03 03:00:39 sociotech Exp $

;(function($){
	/* hoverIntent by Brian Cherne */
	$.fn.hoverIntent = function(f,g) {
		// default configuration options
		var cfg = {
			sensitivity: 7,
			interval: 100,
			timeout: 0
		};
		// override configuration options with user supplied object
		cfg = $.extend(cfg, g ? { over: f, out: g } : f );

		// instantiate variables
		// cX, cY = current X and Y position of mouse, updated by mousemove event
		// pX, pY = previous X and Y position of mouse, set by mouseover and polling interval
		var cX, cY, pX, pY;

		// A private function for getting mouse position
		var track = function(ev) {
			cX = ev.pageX;
			cY = ev.pageY;
		};

		// A private function for comparing current and previous mouse position
		var compare = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			// compare mouse positions to see if they've crossed the threshold
			if ( ( Math.abs(pX-cX) + Math.abs(pY-cY) ) < cfg.sensitivity ) {
				$(ob).unbind("mousemove",track);
				// set hoverIntent state to true (so mouseOut can be called)
				ob.hoverIntent_s = 1;
				return cfg.over.apply(ob,[ev]);
			} else {
				// set previous coordinates for next time
				pX = cX; pY = cY;
				// use self-calling timeout, guarantees intervals are spaced out properly (avoids JavaScript timer bugs)
				ob.hoverIntent_t = setTimeout( function(){compare(ev, ob);} , cfg.interval );
			}
		};

		// A private function for delaying the mouseOut function
		var delay = function(ev,ob) {
			ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t);
			ob.hoverIntent_s = 0;
			return cfg.out.apply(ob,[ev]);
		};

		// A private function for handling mouse 'hovering'
		var handleHover = function(e) {
			// next three lines copied from jQuery.hover, ignore children onMouseOver/onMouseOut
			var p = (e.type == "mouseover" ? e.fromElement : e.toElement) || e.relatedTarget;
			while ( p && p != this ) { try { p = p.parentNode; } catch(e) { p = this; } }
			if ( p == this ) { return false; }

			// copy objects to be passed into t (required for event object to be passed in IE)
			var ev = jQuery.extend({},e);
			var ob = this;

			// cancel hoverIntent timer if it exists
			if (ob.hoverIntent_t) { ob.hoverIntent_t = clearTimeout(ob.hoverIntent_t); }

			// else e.type == "onmouseover"
			if (e.type == "mouseover") {
				// set "previous" X and Y position based on initial entry point
				pX = ev.pageX; pY = ev.pageY;
				// update "current" X and Y position based on mousemove
				$(ob).bind("mousemove",track);
				// start polling interval (self-calling timeout) to compare mouse coordinates over time
				if (ob.hoverIntent_s != 1) { ob.hoverIntent_t = setTimeout( function(){compare(ev,ob);} , cfg.interval );}

			// else e.type == "onmouseout"
			} else {
				// unbind expensive mousemove event
				$(ob).unbind("mousemove",track);
				// if hoverIntent state is true, then call the mouseOut function after the specified delay
				if (ob.hoverIntent_s == 1) { ob.hoverIntent_t = setTimeout( function(){delay(ev,ob);} , cfg.timeout );}
			}
		};

		// bind the function to the two event listeners
		return this.mouseover(handleHover).mouseout(handleHover);
	};
	
})(jQuery);;
// $Id: supposition.js,v 1.1 2009/08/19 04:28:07 sociotech Exp $

/*
 * Supposition v0.2 - an optional enhancer for Superfish jQuery menu widget
 *
 * Copyright (c) 2008 Joel Birch - based mostly on work by Jesse Klaasse and credit goes largely to him.
 * Special thanks to Karl Swedberg for valuable input.
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 */

(function($){

	$.fn.supposition = function(){
		var $w = $(window), /*do this once instead of every onBeforeShow call*/
			_offset = function(dir) {
				return window[dir == 'y' ? 'pageYOffset' : 'pageXOffset']
				|| document.documentElement && document.documentElement[dir=='y' ? 'scrollTop' : 'scrollLeft']
			    || document.body[dir=='y' ? 'scrollTop' : 'scrollLeft'];
			},
			onInit = function(){
				/* I haven't touched this bit - needs work as there are still z-index issues */
				$topNav = $('li',this);
				var cZ=parseInt($topNav.css('z-index')) + $topNav.length;
				$topNav.each(function() {
					$(this).css({zIndex:--cZ});
				});
			},
			onHide = function(){
				this.css({marginTop:'',marginLeft:''});
			},
			onBeforeShow = function(){
				this.each(function(){
					var $u = $(this);
					$u.css('display','block');
					var menuWidth = $u.width(),
						parentWidth = $u.parents('ul').width(),
						totalRight = $w.width() + _offset('x'),
						menuRight = $u.offset().left + menuWidth;
					if (menuRight > totalRight) {
						$u.css('margin-left', ($u.parents('ul').length == 1 ? totalRight - menuRight : -(menuWidth + parentWidth)) + 'px');
					}

					var windowHeight = $w.height(),
						offsetTop = $u.offset().top,
						menuHeight = $u.height(),
						baseline = windowHeight + _offset('y');
					var expandUp = (offsetTop + menuHeight > baseline);
					if (expandUp) {
						$u.css('margin-top',baseline - (menuHeight + offsetTop));
					}
					$u.css('display','none');
				});
			};
		
		return this.each(function() {
			var o = $.fn.superfish.o[this.serial]; /* get this menu's options */
			
			/* if callbacks already set, store them */
			var _onInit = o.onInit,
				_onBeforeShow = o.onBeforeShow,
				_onHide = o.onHide;
				
			$.extend($.fn.superfish.o[this.serial],{
				onInit		: function() {
					onInit.call(this); /* fire our Supposition callback */
					_onInit.call(this); /* fire stored callbacks */
				},
				onBeforeShow: function() {
					onBeforeShow.call(this); /* fire our Supposition callback */
					_onBeforeShow.call(this); /* fire stored callbacks */
				},
				onHide		: function() {
					onHide.call(this); /* fire our Supposition callback */
					_onHide.call(this); /* fire stored callbacks */
				}
			});
		});
	};

})(jQuery);;
// $Id: supersubs.js,v 1.1 2009/08/19 04:28:07 sociotech Exp $

/*
 * Supersubs v0.2b - jQuery plugin
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 *
 * This plugin automatically adjusts submenu widths of suckerfish-style menus to that of
 * their longest list item children. If you use this, please expect bugs and report them
 * to the jQuery Google Group with the word 'Superfish' in the subject line.
 *
 */

;(function($){ // $ will refer to jQuery within this closure

	$.fn.supersubs = function(options){
		var opts = $.extend({}, $.fn.supersubs.defaults, options);
		// return original object to support chaining
		return this.each(function() {
			// cache selections
			var $$ = $(this);
			// support metadata
			var o = $.meta ? $.extend({}, opts, $$.data()) : opts;
			// get the font size of menu.
			// .css('fontSize') returns various results cross-browser, so measure an em dash instead
			var fontsize = $('<li id="menu-fontsize">&#8212;</li>').css({
				'padding' : 0,
				'position' : 'absolute',
				'top' : '-999em',
				'width' : 'auto'
			}).appendTo($$).width(); //clientWidth is faster, but was incorrect here
			// remove em dash
			$('#menu-fontsize').remove();
			// cache all ul elements
			$ULs = $$.find('ul');
			// loop through each ul in menu
			$ULs.each(function(i) {	
				// cache this ul
				var $ul = $ULs.eq(i);
				// get all (li) children of this ul
				var $LIs = $ul.children();
				// get all anchor grand-children
				var $As = $LIs.children('a');
				// force content to one line and save current float property
				var liFloat = $LIs.css('white-space','nowrap').css('float');
				// remove width restrictions and floats so elements remain vertically stacked
				var emWidth = $ul.add($LIs).add($As).css({
					'float' : 'none',
					'width'	: 'auto'
				})
				// this ul will now be shrink-wrapped to longest li due to position:absolute
				// so save its width as ems. Clientwidth is 2 times faster than .width() - thanks Dan Switzer
				.end().end()[0].clientWidth / fontsize;
				// add more width to ensure lines don't turn over at certain sizes in various browsers
				emWidth += o.extraWidth;
				// restrict to at least minWidth and at most maxWidth
				if (emWidth > o.maxWidth)		{ emWidth = o.maxWidth; }
				else if (emWidth < o.minWidth)	{ emWidth = o.minWidth; }
				emWidth += 'em';
				// set ul to width in ems
				$ul.css('width',emWidth);
				// restore li floats to avoid IE bugs
				// set li width to full width of this ul
				// revert white-space to normal
				$LIs.css({
					'float' : liFloat,
					'width' : '100%',
					'white-space' : 'normal'
				})
				// update offset position of descendant ul to reflect new width of parent
				.each(function(){
					var $childUl = $('>ul',this);
					var offsetDirection = $childUl.css('left')!==undefined ? 'left' : 'right';
					$childUl.css(offsetDirection,emWidth);
				});
			});
			
		});
	};
	// expose defaults
	$.fn.supersubs.defaults = {
		minWidth		: 9,		// requires em unit.
		maxWidth		: 25,		// requires em unit.
		extraWidth		: 0			// extra width can ensure lines don't sometimes turn over due to slight browser differences in how they round-off values
	};
	
})(jQuery); // plugin code ends
;
// $Id: superfish.js,v 1.1 2009/08/19 04:28:07 sociotech Exp $

/*
 * Superfish v1.4.8 - jQuery menu widget
 * Copyright (c) 2008 Joel Birch
 *
 * Dual licensed under the MIT and GPL licenses:
 * 	http://www.opensource.org/licenses/mit-license.php
 * 	http://www.gnu.org/licenses/gpl.html
 *
 * CHANGELOG: http://users.tpg.com.au/j_birch/plugins/superfish/changelog.txt
 */

;(function($){
	$.fn.superfish = function(op){

		var sf = $.fn.superfish,
			c = sf.c,
			$arrow = $(['<span class="',c.arrowClass,'"> &#187;</span>'].join('')),
			over = function(){
				var $$ = $(this), menu = getMenu($$);
				clearTimeout(menu.sfTimer);
				$$.showSuperfishUl().siblings().hideSuperfishUl();
			},
			out = function(){
				var $$ = $(this), menu = getMenu($$), o = sf.op;
				clearTimeout(menu.sfTimer);
				menu.sfTimer=setTimeout(function(){
					o.retainPath=($.inArray($$[0],o.$path)>-1);
					$$.hideSuperfishUl();
					if (o.$path.length && $$.parents(['li.',o.hoverClass].join('')).length<1){over.call(o.$path);}
				},o.delay);	
			},
			getMenu = function($menu){
				var menu = $menu.parents(['ul.',c.menuClass,':first'].join(''))[0];
				sf.op = sf.o[menu.serial];
				return menu;
			},
			addArrow = function($a){ $a.addClass(c.anchorClass).append($arrow.clone()); };
			
		return this.each(function() {
			var s = this.serial = sf.o.length;
			var o = $.extend({},sf.defaults,op);
			o.$path = $('li.'+o.pathClass,this).slice(0,o.pathLevels).each(function(){
				$(this).addClass([o.hoverClass,c.bcClass].join(' '))
					.filter('li:has(ul)').removeClass(o.pathClass);
			});
			sf.o[s] = sf.op = o;
			
			$('li:has(ul)',this)[($.fn.hoverIntent && !o.disableHI) ? 'hoverIntent' : 'hover'](over,out).each(function() {
				if (o.autoArrows) addArrow( $('>a:first-child',this) );
			})
			.not('.'+c.bcClass)
				.hideSuperfishUl();
			
			var $a = $('a',this);
			$a.each(function(i){
				var $li = $a.eq(i).parents('li');
				$a.eq(i).focus(function(){over.call($li);}).blur(function(){out.call($li);});
			});
			o.onInit.call(this);
			
		}).each(function() {
			menuClasses = [c.menuClass];
			if (sf.op.dropShadows  && !($.browser.msie && $.browser.version < 7)) menuClasses.push(c.shadowClass);
			$(this).addClass(menuClasses.join(' '));
		});
	};

	var sf = $.fn.superfish;
	sf.o = [];
	sf.op = {};
	sf.IE7fix = function(){
		var o = sf.op;
		if ($.browser.msie && $.browser.version > 6 && o.dropShadows && o.animation.opacity!=undefined)
			this.toggleClass(sf.c.shadowClass+'-off');
		};
	sf.c = {
		bcClass     : 'sf-breadcrumb',
		menuClass   : 'sf-js-enabled',
		anchorClass : 'sf-with-ul',
		arrowClass  : 'sf-sub-indicator',
		shadowClass : 'sf-shadow'
	};
	sf.defaults = {
		hoverClass	: 'sfHover',
		pathClass	: 'overideThisToUse',
		pathLevels	: 1,
		delay		: 800,
		animation	: {opacity:'show'},
		speed		: 'normal',
		autoArrows	: true,
		dropShadows : true,
		disableHI	: false,		// true disables hoverIntent detection
		onInit		: function(){}, // callback functions
		onBeforeShow: function(){},
		onShow		: function(){},
		onHide		: function(){}
	};
	$.fn.extend({
		hideSuperfishUl : function(){
			var o = sf.op,
				not = (o.retainPath===true) ? o.$path : '';
			o.retainPath = false;
			var $ul = $(['li.',o.hoverClass].join(''),this).add(this).not(not).removeClass(o.hoverClass)
					.find('>ul').hide().css('visibility','hidden');
			o.onHide.call($ul);
			return this;
		},
		showSuperfishUl : function(){
			var o = sf.op,
				sh = sf.c.shadowClass+'-off',
				$ul = this.addClass(o.hoverClass)
					.find('>ul:hidden').css('visibility','visible');
			sf.IE7fix.call($ul);
			o.onBeforeShow.call($ul);
			$ul.animate(o.animation,o.speed,function(){ sf.IE7fix.call($ul); o.onShow.call($ul); });
			return this;
		}
	});

})(jQuery);
;
// $Id: script.js,v 1.1.2.6 2010/07/03 03:00:39 sociotech Exp $

Drupal.behaviors.fusionEqualheights = function (context) {
  if (jQuery().equalHeights) {
    $("#header-top-wrapper div.equal-heights div.content").equalHeights();
    $("#header-group-wrapper div.equal-heights div.content").equalHeights();
    $("#preface-top-wrapper div.equal-heights div.content").equalHeights();
    $("#preface-bottom div.equal-heights div.content").equalHeights();
    $("#sidebar-first div.equal-heights div.content").equalHeights();
    $("#content-top div.equal-heights div.content").equalHeights();
    $("#content-region div.equal-heights div.content").equalHeights();
    $("#content-bottom div.equal-heights div.content").equalHeights();
    $("#node-top div.equal-heights div.content").equalHeights();
    $("#node-bottom div.equal-heights div.content").equalHeights();
    $("#sidebar-last div.equal-heights div.content").equalHeights();
    $("#postscript-top div.equal-heights div.content").equalHeights();
    $("#postscript-bottom-wrapper div.equal-heights div.content").equalHeights();
    $("#footer-wrapper div.equal-heights div.content").equalHeights();
  }
};

Drupal.behaviors.fusionIE6fixes = function (context) {
  // IE6 & less-specific functions
  // Add hover class to primary menu li elements on hover
  if ($.browser.msie && ($.browser.version < 7)) {
    $('form input.form-submit').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('#primary-menu ul.sf-menu li.expanded').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('.sf-menu li').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('#search input#search_header').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
  };
};

Drupal.behaviors.fusionOverlabel = function (context) {
  if (jQuery().overlabel) {
    $("div.fusion-horiz-login label").overlabel();
  }
};

Drupal.behaviors.fusionSuperfish = function (context) {
  $("#primary-menu ul.sf-menu").superfish({
    hoverClass:  'sfHover',
    delay:       250,
    animation:   {opacity:'show',height:'show'},
    speed:       'fast',
    autoArrows:  false,
    dropShadows: false,
    disableHI:   true
  }).supposition();
};

Drupal.behaviors.fusionSuperfishBlocks = function (context) {
  $("div.block ul.sf-menu").superfish({
    hoverClass:  'sfHover',
    delay:       250,
    animation:   {opacity:'show',height:'show'},
    speed:       'fast',
    autoArrows:  false,
    dropShadows: false,
    disableHI:   true
  }).supposition();
};

Drupal.behaviors.fusionGridMask = function (context) {
  if ($('body.grid-mask-enabled').size() > 0) {
    var grid_width_pos = parseInt($('body').attr('class').indexOf('grid-width-')) + 11;
    var grid_width = $('body').attr('class').substring(grid_width_pos, grid_width_pos + 2);
    var grid = '<div id="grid-mask-overlay" class="full-width"><div class="row">';
    for (i = 1; i <= grid_width; i++) {
      grid += '<div class="block grid' + grid_width + '-1"><div class="inner"></div></div>';
    }
    grid += '</div></div>';
    $('body.grid-mask-enabled').prepend(grid);
    $('#grid-mask-overlay .row').addClass('grid' + grid_width + '-' + grid_width);
    $('#grid-mask-overlay .block .inner').height($('body').height());
  }
};

Drupal.behaviors.fusionGridMaskToggle = function (context) {
  if ($('body.grid-mask-enabled').size() > 0) {
    $('body.grid-mask-enabled').prepend('<div id="grid-mask-toggle">grid</div>');
    $('div#grid-mask-toggle')
      .toggle( function () {
        $(this).toggleClass('grid-on');
        $('body').toggleClass('grid-mask');
      },
      function() {
        $(this).toggleClass('grid-on');
        $('body').toggleClass('grid-mask');
      });
  }
};

Drupal.behaviors.fusionPanelsShowEdit = function (context) {
  // Sets parent row and block elements to have "overflow: visible" if editing Panel page
  if ($("#panels-edit-display-form").size() > 0 || $("#page-manager-edit").size() > 0) {
    $("#panels-edit-display-form").parents('.row, .block').css("overflow", "visible");
    $("#page-manager-edit").parents('.row, .block').css("overflow", "visible");
  }
};

Drupal.behaviors.fusionScreenshotpreview = function (context) {
  // Displays Skinr previews
  if ($('span.preview-icon').size() > 0) {
    // configure distance of preview from the cursor
    var xOffset = 20;
    var yOffset = 0;
  
    $('span.preview-icon').hover(function(e){
      var img_class = this.id;
      var caption = $(this).parent().text();
      // add preview markup
      $('body').append('<div id="screenshot">' +
                       '<div class="screenshot-preview ' + img_class + '" alt="preview"></div>' + 
                       '<div class="screenshot-caption">' + caption + '</div>' +
                       '</div>');
      $("#screenshot").hide();  // hide preview until dimensions are set
      $("#screenshot").css("left", (e.pageX + xOffset) + "px").css("top", (e.pageY + yOffset) + "px");  // set initial preview position
      // load image in order to set preview dimensions
      var img = new Image();
      img.onload = function() {
        var caption_height = parseFloat($("#screenshot .screenshot-caption").css("height"));
        $("#screenshot").css("height", img.height + caption_height);
        $("#screenshot").css("width", img.width);
        $("#screenshot ." + img_class).css("height", img.height);
        $("#screenshot ." + img_class).css("width", img.width);
        $("#screenshot .screenshot-caption").css("width", img.width - 10);
        $("#screenshot").fadeIn("fast");  // now show preview
      }
      img.src = $("." + img_class).css("background-image").replace(/^url|[\(\)\"]/g, '');
    },
    function(){
      $("#screenshot").remove();
    });
    // adjust preview position with cursor movement
    $("span.preview-icon").mousemove(function(e){
      $("#screenshot").css("left", (e.pageX + xOffset) + "px").css("top", (e.pageY + yOffset) + "px");
    });
  }
};
;
// $Id: jquery.corner.js,v 1.2 2010/09/17 21:36:06 eternalistic Exp $

/*!
 * jQuery corner plugin: simple corner rounding
 * Examples and documentation at: http://jquery.malsup.com/corner/
 * version 2.06 (16-FEB-2010)
 * Requires jQuery v1.3.2 or later
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Authors: Dave Methvin and Mike Alsup
 */

/**
 *  corner() takes a single string argument:  $('#myDiv').corner("effect corners width")
 *
 *  effect:  name of the effect to apply, such as round, bevel, notch, bite, etc (default is round). 
 *  corners: one or more of: top, bottom, tr, tl, br, or bl.  (default is all corners)
 *  width:   width of the effect; in the case of rounded corners this is the radius. 
 *           specify this value using the px suffix such as 10px (yes, it must be pixels).
 */
;(function($) { 

var style = document.createElement('div').style;
var moz = style['MozBorderRadius'] !== undefined;
var webkit = style['WebkitBorderRadius'] !== undefined;
var radius = style['BorderRadius'] !== undefined;
var mode = document.documentMode || 0;
var noBottomFold = $.browser.msie && (($.browser.version < 8 && !mode) || mode < 8);

var expr = $.browser.msie && (function() {
    var div = document.createElement('div');
    try { div.style.setExpression('width','0+0'); div.style.removeExpression('width'); }
    catch(e) { return false; }
    return true;
})();
    
function sz(el, p) { 
    return parseInt($.css(el,p))||0; 
};
function hex2(s) {
    var s = parseInt(s).toString(16);
    return ( s.length < 2 ) ? '0'+s : s;
};
function gpc(node) {
    for ( ; node && node.nodeName.toLowerCase() != 'html'; node = node.parentNode ) {
        var v = $.css(node,'backgroundColor');
        if (v == 'rgba(0, 0, 0, 0)')
            continue; // webkit
        if (v.indexOf('rgb') >= 0) { 
            var rgb = v.match(/\d+/g); 
            return '#'+ hex2(rgb[0]) + hex2(rgb[1]) + hex2(rgb[2]);
        }
        if ( v && v != 'transparent' )
            return v;
    }
    return '#ffffff';
};

function getWidth(fx, i, width) {
    switch(fx) {
    case 'round':  return Math.round(width*(1-Math.cos(Math.asin(i/width))));
    case 'cool':   return Math.round(width*(1+Math.cos(Math.asin(i/width))));
    case 'sharp':  return Math.round(width*(1-Math.cos(Math.acos(i/width))));
    case 'bite':   return Math.round(width*(Math.cos(Math.asin((width-i-1)/width))));
    case 'slide':  return Math.round(width*(Math.atan2(i,width/i)));
    case 'jut':    return Math.round(width*(Math.atan2(width,(width-i-1))));
    case 'curl':   return Math.round(width*(Math.atan(i)));
    case 'tear':   return Math.round(width*(Math.cos(i)));
    case 'wicked': return Math.round(width*(Math.tan(i)));
    case 'long':   return Math.round(width*(Math.sqrt(i)));
    case 'sculpt': return Math.round(width*(Math.log((width-i-1),width)));
	case 'dogfold':
    case 'dog':    return (i&1) ? (i+1) : width;
    case 'dog2':   return (i&2) ? (i+1) : width;
    case 'dog3':   return (i&3) ? (i+1) : width;
    case 'fray':   return (i%2)*width;
    case 'notch':  return width; 
	case 'bevelfold':
    case 'bevel':  return i+1;
    }
};

$.fn.corner = function(options) {
    // in 1.3+ we can fix mistakes with the ready state
	if (this.length == 0) {
        if (!$.isReady && this.selector) {
            var s = this.selector, c = this.context;
            $(function() {
                $(s,c).corner(options);
            });
        }
        return this;
	}

    return this.each(function(index){
		var $this = $(this);
		// meta values override options
		var o = [$this.attr($.fn.corner.defaults.metaAttr) || '', options || ''].join(' ').toLowerCase();
		var keep = /keep/.test(o);                       // keep borders?
		var cc = ((o.match(/cc:(#[0-9a-f]+)/)||[])[1]);  // corner color
		var sc = ((o.match(/sc:(#[0-9a-f]+)/)||[])[1]);  // strip color
		var width = parseInt((o.match(/(\d+)px/)||[])[1]) || 10; // corner width
		var re = /round|bevelfold|bevel|notch|bite|cool|sharp|slide|jut|curl|tear|fray|wicked|sculpt|long|dog3|dog2|dogfold|dog/;
		var fx = ((o.match(re)||['round'])[0]);
		var fold = /dogfold|bevelfold/.test(o);
		var edges = { T:0, B:1 };
		var opts = {
			TL:  /top|tl|left/.test(o),       TR:  /top|tr|right/.test(o),
			BL:  /bottom|bl|left/.test(o),    BR:  /bottom|br|right/.test(o)
		};
		if ( !opts.TL && !opts.TR && !opts.BL && !opts.BR )
			opts = { TL:1, TR:1, BL:1, BR:1 };
			
		// support native rounding
		if ($.fn.corner.defaults.useNative && fx == 'round' && (radius || moz || webkit) && !cc && !sc) {
			if (opts.TL)
				$this.css(radius ? 'border-top-left-radius' : moz ? '-moz-border-radius-topleft' : '-webkit-border-top-left-radius', width + 'px');
			if (opts.TR)
				$this.css(radius ? 'border-top-right-radius' : moz ? '-moz-border-radius-topright' : '-webkit-border-top-right-radius', width + 'px');
			if (opts.BL)
				$this.css(radius ? 'border-bottom-left-radius' : moz ? '-moz-border-radius-bottomleft' : '-webkit-border-bottom-left-radius', width + 'px');
			if (opts.BR)
				$this.css(radius ? 'border-bottom-right-radius' : moz ? '-moz-border-radius-bottomright' : '-webkit-border-bottom-right-radius', width + 'px');
			return;
		}
			
		var strip = document.createElement('div');
		$(strip).css({
			overflow: 'hidden',
			height: '1px',
			minHeight: '1px',
			fontSize: '1px',
			backgroundColor: sc || 'transparent',
			borderStyle: 'solid'
		});
	
        var pad = {
            T: parseInt($.css(this,'paddingTop'))||0,     R: parseInt($.css(this,'paddingRight'))||0,
            B: parseInt($.css(this,'paddingBottom'))||0,  L: parseInt($.css(this,'paddingLeft'))||0
        };

        if (typeof this.style.zoom != undefined) this.style.zoom = 1; // force 'hasLayout' in IE
        if (!keep) this.style.border = 'none';
        strip.style.borderColor = cc || gpc(this.parentNode);
        var cssHeight = $.curCSS(this, 'height');

        for (var j in edges) {
            var bot = edges[j];
            // only add stips if needed
            if ((bot && (opts.BL || opts.BR)) || (!bot && (opts.TL || opts.TR))) {
                strip.style.borderStyle = 'none '+(opts[j+'R']?'solid':'none')+' none '+(opts[j+'L']?'solid':'none');
                var d = document.createElement('div');
                $(d).addClass('jquery-corner');
                var ds = d.style;

                bot ? this.appendChild(d) : this.insertBefore(d, this.firstChild);

                if (bot && cssHeight != 'auto') {
                    if ($.css(this,'position') == 'static')
                        this.style.position = 'relative';
                    ds.position = 'absolute';
                    ds.bottom = ds.left = ds.padding = ds.margin = '0';
                    if (expr)
                        ds.setExpression('width', 'this.parentNode.offsetWidth');
                    else
                        ds.width = '100%';
                }
                else if (!bot && $.browser.msie) {
                    if ($.css(this,'position') == 'static')
                        this.style.position = 'relative';
                    ds.position = 'absolute';
                    ds.top = ds.left = ds.right = ds.padding = ds.margin = '0';
                    
                    // fix ie6 problem when blocked element has a border width
                    if (expr) {
                        var bw = sz(this,'borderLeftWidth') + sz(this,'borderRightWidth');
                        ds.setExpression('width', 'this.parentNode.offsetWidth - '+bw+'+ "px"');
                    }
                    else
                        ds.width = '100%';
                }
                else {
                	ds.position = 'relative';
                    ds.margin = !bot ? '-'+pad.T+'px -'+pad.R+'px '+(pad.T-width)+'px -'+pad.L+'px' : 
                                        (pad.B-width)+'px -'+pad.R+'px -'+pad.B+'px -'+pad.L+'px';                
                }

                for (var i=0; i < width; i++) {
                    var w = Math.max(0,getWidth(fx,i, width));
                    var e = strip.cloneNode(false);
                    e.style.borderWidth = '0 '+(opts[j+'R']?w:0)+'px 0 '+(opts[j+'L']?w:0)+'px';
                    bot ? d.appendChild(e) : d.insertBefore(e, d.firstChild);
                }
				
				if (fold && $.support.boxModel) {
					if (bot && noBottomFold) continue;
					for (var c in opts) {
						if (!opts[c]) continue;
						if (bot && (c == 'TL' || c == 'TR')) continue;
						if (!bot && (c == 'BL' || c == 'BR')) continue;
						
						var common = { position: 'absolute', border: 'none', margin: 0, padding: 0, overflow: 'hidden', backgroundColor: strip.style.borderColor };
						var $horz = $('<div/>').css(common).css({ width: width + 'px', height: '1px' });
						switch(c) {
						case 'TL': $horz.css({ bottom: 0, left: 0 }); break;
						case 'TR': $horz.css({ bottom: 0, right: 0 }); break;
						case 'BL': $horz.css({ top: 0, left: 0 }); break;
						case 'BR': $horz.css({ top: 0, right: 0 }); break;
						}
						d.appendChild($horz[0]);
						
						var $vert = $('<div/>').css(common).css({ top: 0, bottom: 0, width: '1px', height: width + 'px' });
						switch(c) {
						case 'TL': $vert.css({ left: width }); break;
						case 'TR': $vert.css({ right: width }); break;
						case 'BL': $vert.css({ left: width }); break;
						case 'BR': $vert.css({ right: width }); break;
						}
						d.appendChild($vert[0]);
					}
				}
            }
        }
    });
};

$.fn.uncorner = function() { 
	if (radius || moz || webkit)
		this.css(radius ? 'border-radius' : moz ? '-moz-border-radius' : '-webkit-border-radius', 0);
	$('div.jquery-corner', this).remove();
	return this;
};

// expose options
$.fn.corner.defaults = {
	useNative: true, // true if plugin should attempt to use native browser support for border radius rounding
	metaAttr:  'data-corner' // name of meta attribute to use for options
};
    
})(jQuery);
;
// $Id: acquia-prosper-script.js,v 1.3 2010/09/17 21:36:06 eternalistic Exp $

Drupal.behaviors.acquia_prosperRoundedCorner = function (context) {
  $(".prosper-rounded-title h2.block-title").corner("top 5px"); 
  $(".prosper-shoppingcart h2.block-title").corner("top 5px"); 
  $(".prosper-menu-list h2.block-title").corner("top 5px"); 
  $(".prosper-grayborder-darkbackground .inner").corner("7px");

};
;

