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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number(($n!=1)); }, 'strings': { "Select all rows in this table": "Selecteer alle regels van deze tabel", "Deselect all rows in this table": "De-selecteer alle regels van deze tabel", "Join summary": "Samenvatting samenvoegen", "Split summary at cursor": "Splits de samenvatting op de cursorpositie", "Drag to re-order": "Slepen om de volgorde te wijzigen", "Changes made in this table will not be saved until the form is submitted.": "Wijzigingen in deze tabel worden pas opgeslagen wanneer het formulier wordt ingediend.", "Unspecified error": "Onbekend probleem", "An error occurred. \n@uri\n@text": "Een fout is opgetreden; @uri @text", "An error occurred. \n@uri\n(no information available).": "Een fout is opgetreden. \r\n@uri \r\n(geen informatie beschikbaar).", "An HTTP error @status occurred. \n@uri": "Een HTTP-fout @status is opgetreden; @uri", "Upload": "Uploaden", "Published": "Gepubliceerd", "Promoted to front page": "Aangeraden op de voorpagina", "Anonymous": "Anoniem", "Not published": "Niet gepubliceerd", "Your server has been successfully tested to support this feature.": "De server is getest en kan deze functie gebruiken.", "Your system configuration does not currently support this feature. The \x3ca href=\"http://drupal.org/node/15365\"\x3ehandbook page on Clean URLs\x3c/a\x3e has additional troubleshooting information.": "De systeem configuratie ondersteunt deze functie momenteel niet. De \x3ca href=\"http://drupal.org/node/15365\"\x3e handboekpagina over Clean URLs\x3c/a\x3e geeft meer informatie.", "Testing clean URLs...": "Testen van schone URLs.", "Only files with the following extensions are allowed: %files-allowed.": "Uitsluitend bestanden met de volgende extensies zijn toegelaten: %files-allowed.", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "Wijzigingen aan de blokken worden pas opgeslagen wanneer u de knop \x3cem\x3eBlokken opslaan\x3c/em\x3e aanklikt.", "None": "Geen", "The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.": "Het geselecteerde bestand %filename kan niet worden geupload. Alleen bestanden met volgende extensies zijn toegestaan: %extensions.", "Please select a file.": "Selecteer een bestand a.u.b", "You are not allowed to operate on more than %num files.": "U heeft geen toegang om meer dan %num bestanden te bewerken.", "Please specify dimensions within the allowed range that is from 1x1 to @dimensions.": "Geef de afmetingen op binnen de toegestane reeks van 1x1 tot @dimensions.", "unlimited": "ongelimiteerd", "%filename is not an image.": "%filename is geen afbeelding.", "Directory %dir is loaded.": "Directory %dir is geladen.", "Directory %dir is empty.": "Directory %dir is leeg.", "File browsing is disabled in directory %dir.": "Verkennen is uitgeschakeld in directory %dir.", "You can\'t perform this operation.": "U kunt deze bewerking niet uitvoeren.", "Do you want to refresh the current directory?": "Wilt u de huidige directory vernieuwen?", "Uploading %filename...": "Uploaden %filename...", "Delete selected files?": "Verwijder de geselecteerde bestanden?", "Please select a thumbnail.": "Selecteer een miniatuur.", "Please select a single file.": "Selecteer een enkel bestand.", "You must select at least %num files.": "U moet tenminste %num bestanden selecteren.", "Send to @app": "Plaats in @app", "textarea": "tekstvlak", "Automatic alias": "Automatische alias" } };;
// $Id: ajax_load.js,v 1.11 2009/09/20 14:22:29 markuspetrux Exp $

(function ($) {

Drupal.AjaxLoad = Drupal.AjaxLoad || { externalScripts: [], loadPending: [] };

/**
 * Load JavaScript and CSS files and data. 
 */
Drupal.AjaxLoad.loadFiles = function (target, response) {
  // Handle scripts.

  // Initialize the list of currently loaded external scripts.
  if (Drupal.AjaxLoad.externalScripts.length < 1) {
    $('script[src]').each(function() {
      Drupal.AjaxLoad.externalScripts.push($(this).attr('src'));
    });
  }
  // See if we have any settings to extend. Do this first so that behaviors
  // can access the new settings easily.
  if (response.scripts) {
    // Each Ajax operation needs its own counter.
    var index = Drupal.AjaxLoad.loadPending.length;
    Drupal.AjaxLoad.loadPending[index] = 0;
    if (!response.__customSettings && response.scripts.setting) {
      $.extend(Drupal.settings, response.scripts.setting);
    }
    // Inline scripts will be handled separately.
    var types = ['core', 'module', 'theme'];
    $.each(types, function (i, type) {
      if (response.scripts[type]) {
        $.each(response.scripts[type], function (src, data) {
          // Load scripts.
          src = Drupal.settings.basePath + src;
          // Test if the script already exists.
          var found = false;
          for (var j = 0; j < Drupal.AjaxLoad.externalScripts.length; j++) {
            if (Drupal.AjaxLoad.externalScripts[j].indexOf(src) == 0) {
              found = true;
              break;
            }
          }
          if (!found) {
            Drupal.AjaxLoad.loadPending[index]++;
            $.getScript(src, function () {
              Drupal.AjaxLoad.externalScripts.push(src);
              Drupal.AjaxLoad.loadComplete(index, target, response);
            });
          }
        });
      }
    });
    // Ensure Drupal behaviors are attached to new content, even when no
    // new external scripts have been loaded.
    if (Drupal.AjaxLoad.loadPending[index] == 0) {
      Drupal.attachBehaviors(target);
      // Ensure inline scripts are parsed after all external scripts have loaded.
      Drupal.AjaxLoad.loadInline(response);
    }
  }
  if (response.css) {
    // Handle stylesheets.
    var types = ['module', 'theme'];
    $.each(response.css, function (media, files) {
      $.each(types, function (i, type) {
        if (files[type]) {
          $.each(files[type], function (src, data) {
            src = Drupal.settings.basePath + src;
            // Test if the stylesheet already exists.
            if (!$('link[href*=' + src + ']').size()) {
              $('<link type="text/css" rel="stylesheet" media="' + media + '" href="' + src + '" />').appendTo('head');
            }
          });
        }
      });
    });
  }
};

/**
 * When all scripts have loaded, attach behaviors. 
 */
Drupal.AjaxLoad.loadInline = function(response) {
  // Handle inline scripts.
  if (response.scripts.inline) {
    $.each(response.scripts.inline, function (i, script) {
      // document.write calls would mess things up.
      if (script.code.indexOf('document.write') == -1) {
        eval(script.code);
      }
    });
  }
};

/**
 * When all scripts have loaded, attach behaviors. 
 */
Drupal.AjaxLoad.loadComplete = function(index, target, response) {
  Drupal.AjaxLoad.loadPending[index]--;
  if (Drupal.AjaxLoad.loadPending[index] == 0) {
    Drupal.attachBehaviors(target);
    // Ensure inline scripts are parsed after all external scripts have loaded.
    Drupal.AjaxLoad.loadInline(response);
  }
};

})(jQuery);
;
/*
 * jQuery UI 1.7.3
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI
 */jQuery.ui||(function(c){var i=c.fn.remove,d=c.browser.mozilla&&(parseFloat(c.browser.version)<1.9);c.ui={version:"1.7.3",plugin:{add:function(k,l,n){var m=c.ui[k].prototype;for(var j in n){m.plugins[j]=m.plugins[j]||[];m.plugins[j].push([l,n[j]])}},call:function(j,l,k){var n=j.plugins[l];if(!n||!j.element[0].parentNode){return}for(var m=0;m<n.length;m++){if(j.options[n[m][0]]){n[m][1].apply(j.element,k)}}}},contains:function(k,j){return document.compareDocumentPosition?k.compareDocumentPosition(j)&16:k!==j&&k.contains(j)},hasScroll:function(m,k){if(c(m).css("overflow")=="hidden"){return false}var j=(k&&k=="left")?"scrollLeft":"scrollTop",l=false;if(m[j]>0){return true}m[j]=1;l=(m[j]>0);m[j]=0;return l},isOverAxis:function(k,j,l){return(k>j)&&(k<(j+l))},isOver:function(o,k,n,m,j,l){return c.ui.isOverAxis(o,n,j)&&c.ui.isOverAxis(k,m,l)},keyCode:{BACKSPACE:8,CAPS_LOCK:20,COMMA:188,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,NUMPAD_ADD:107,NUMPAD_DECIMAL:110,NUMPAD_DIVIDE:111,NUMPAD_ENTER:108,NUMPAD_MULTIPLY:106,NUMPAD_SUBTRACT:109,PAGE_DOWN:34,PAGE_UP:33,PERIOD:190,RIGHT:39,SHIFT:16,SPACE:32,TAB:9,UP:38}};if(d){var f=c.attr,e=c.fn.removeAttr,h="http://www.w3.org/2005/07/aaa",a=/^aria-/,b=/^wairole:/;c.attr=function(k,j,l){var m=l!==undefined;return(j=="role"?(m?f.call(this,k,j,"wairole:"+l):(f.apply(this,arguments)||"").replace(b,"")):(a.test(j)?(m?k.setAttributeNS(h,j.replace(a,"aaa:"),l):f.call(this,k,j.replace(a,"aaa:"))):f.apply(this,arguments)))};c.fn.removeAttr=function(j){return(a.test(j)?this.each(function(){this.removeAttributeNS(h,j.replace(a,""))}):e.call(this,j))}}c.fn.extend({remove:function(j,k){return this.each(function(){if(!k){if(!j||c.filter(j,[this]).length){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")})}}return i.call(c(this),j,k)})},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return !!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return !(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return !this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;
/*
 * jQuery UI Dialog 1.7.3
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Dialog
 *
 * Depends:
 *	ui.core.js
 *	ui.draggable.js
 *	ui.resizable.js
 */(function(c){var b={dragStart:"start.draggable",drag:"drag.draggable",dragStop:"stop.draggable",maxHeight:"maxHeight.resizable",minHeight:"minHeight.resizable",maxWidth:"maxWidth.resizable",minWidth:"minWidth.resizable",resizeStart:"start.resizable",resize:"drag.resizable",resizeStop:"stop.resizable"},a="ui-dialog ui-widget ui-widget-content ui-corner-all ";c.widget("ui.dialog",{_init:function(){this.originalTitle=this.element.attr("title");var l=this,m=this.options,j=m.title||this.originalTitle||"&nbsp;",e=c.ui.dialog.getTitleId(this.element),k=(this.uiDialog=c("<div/>")).appendTo(document.body).hide().addClass(a+m.dialogClass).css({position:"absolute",overflow:"hidden",zIndex:m.zIndex}).attr("tabIndex",-1).css("outline",0).keydown(function(n){(m.closeOnEscape&&n.keyCode&&n.keyCode==c.ui.keyCode.ESCAPE&&l.close(n))}).attr({role:"dialog","aria-labelledby":e}).mousedown(function(n){l.moveToTop(false,n)}),g=this.element.show().removeAttr("title").addClass("ui-dialog-content ui-widget-content").appendTo(k),f=(this.uiDialogTitlebar=c("<div></div>")).addClass("ui-dialog-titlebar ui-widget-header ui-corner-all ui-helper-clearfix").prependTo(k),i=c('<a href="#"/>').addClass("ui-dialog-titlebar-close ui-corner-all").attr("role","button").hover(function(){i.addClass("ui-state-hover")},function(){i.removeClass("ui-state-hover")}).focus(function(){i.addClass("ui-state-focus")}).blur(function(){i.removeClass("ui-state-focus")}).mousedown(function(n){n.stopPropagation()}).click(function(n){l.close(n);return false}).appendTo(f),h=(this.uiDialogTitlebarCloseText=c("<span/>")).addClass("ui-icon ui-icon-closethick").text(m.closeText).appendTo(i),d=c("<span/>").addClass("ui-dialog-title").attr("id",e).html(j).prependTo(f);f.find("*").add(f).disableSelection();(m.draggable&&c.fn.draggable&&this._makeDraggable());(m.resizable&&c.fn.resizable&&this._makeResizable());this._createButtons(m.buttons);this._isOpen=false;(m.bgiframe&&c.fn.bgiframe&&k.bgiframe());(m.autoOpen&&this.open())},destroy:function(){(this.overlay&&this.overlay.destroy());this.uiDialog.hide();this.element.unbind(".dialog").removeData("dialog").removeClass("ui-dialog-content ui-widget-content").hide().appendTo("body");this.uiDialog.remove();(this.originalTitle&&this.element.attr("title",this.originalTitle))},close:function(f){var d=this;if(false===d._trigger("beforeclose",f)){return}(d.overlay&&d.overlay.destroy());d.uiDialog.unbind("keypress.ui-dialog");(d.options.hide?d.uiDialog.hide(d.options.hide,function(){d._trigger("close",f)}):d.uiDialog.hide()&&d._trigger("close",f));c.ui.dialog.overlay.resize();d._isOpen=false;if(d.options.modal){var e=0;c(".ui-dialog").each(function(){if(this!=d.uiDialog[0]){e=Math.max(e,c(this).css("z-index"))}});c.ui.dialog.maxZ=e}},isOpen:function(){return this._isOpen},moveToTop:function(f,e){if((this.options.modal&&!f)||(!this.options.stack&&!this.options.modal)){return this._trigger("focus",e)}if(this.options.zIndex>c.ui.dialog.maxZ){c.ui.dialog.maxZ=this.options.zIndex}(this.overlay&&this.overlay.$el.css("z-index",c.ui.dialog.overlay.maxZ=++c.ui.dialog.maxZ));var d={scrollTop:this.element.attr("scrollTop"),scrollLeft:this.element.attr("scrollLeft")};this.uiDialog.css("z-index",++c.ui.dialog.maxZ);this.element.attr(d);this._trigger("focus",e)},open:function(){if(this._isOpen){return}var e=this.options,d=this.uiDialog;this.overlay=e.modal?new c.ui.dialog.overlay(this):null;(d.next().length&&d.appendTo("body"));this._size();this._position(e.position);d.show(e.show);this.moveToTop(true);(e.modal&&d.bind("keypress.ui-dialog",function(h){if(h.keyCode!=c.ui.keyCode.TAB){return}var g=c(":tabbable",this),i=g.filter(":first")[0],f=g.filter(":last")[0];if(h.target==f&&!h.shiftKey){setTimeout(function(){i.focus()},1)}else{if(h.target==i&&h.shiftKey){setTimeout(function(){f.focus()},1)}}}));c([]).add(d.find(".ui-dialog-content :tabbable:first")).add(d.find(".ui-dialog-buttonpane :tabbable:first")).add(d).filter(":first").focus();this._trigger("open");this._isOpen=true},_createButtons:function(g){var f=this,d=false,e=c("<div></div>").addClass("ui-dialog-buttonpane ui-widget-content ui-helper-clearfix");this.uiDialog.find(".ui-dialog-buttonpane").remove();(typeof g=="object"&&g!==null&&c.each(g,function(){return !(d=true)}));if(d){c.each(g,function(h,i){c('<button type="button"></button>').addClass("ui-state-default ui-corner-all").text(h).click(function(){i.apply(f.element[0],arguments)}).hover(function(){c(this).addClass("ui-state-hover")},function(){c(this).removeClass("ui-state-hover")}).focus(function(){c(this).addClass("ui-state-focus")}).blur(function(){c(this).removeClass("ui-state-focus")}).appendTo(e)});e.appendTo(this.uiDialog)}},_makeDraggable:function(){var d=this,f=this.options,e;this.uiDialog.draggable({cancel:".ui-dialog-content",handle:".ui-dialog-titlebar",containment:"document",start:function(){e=f.height;c(this).height(c(this).height()).addClass("ui-dialog-dragging");(f.dragStart&&f.dragStart.apply(d.element[0],arguments))},drag:function(){(f.drag&&f.drag.apply(d.element[0],arguments))},stop:function(){c(this).removeClass("ui-dialog-dragging").height(e);(f.dragStop&&f.dragStop.apply(d.element[0],arguments));c.ui.dialog.overlay.resize()}})},_makeResizable:function(g){g=(g===undefined?this.options.resizable:g);var d=this,f=this.options,e=typeof g=="string"?g:"n,e,s,w,se,sw,ne,nw";this.uiDialog.resizable({cancel:".ui-dialog-content",alsoResize:this.element,maxWidth:f.maxWidth,maxHeight:f.maxHeight,minWidth:f.minWidth,minHeight:f.minHeight,start:function(){c(this).addClass("ui-dialog-resizing");(f.resizeStart&&f.resizeStart.apply(d.element[0],arguments))},resize:function(){(f.resize&&f.resize.apply(d.element[0],arguments))},handles:e,stop:function(){c(this).removeClass("ui-dialog-resizing");f.height=c(this).height();f.width=c(this).width();(f.resizeStop&&f.resizeStop.apply(d.element[0],arguments));c.ui.dialog.overlay.resize()}}).find(".ui-resizable-se").addClass("ui-icon ui-icon-grip-diagonal-se")},_position:function(i){var e=c(window),f=c(document),g=f.scrollTop(),d=f.scrollLeft(),h=g;if(c.inArray(i,["center","top","right","bottom","left"])>=0){i=[i=="right"||i=="left"?i:"center",i=="top"||i=="bottom"?i:"middle"]}if(i.constructor!=Array){i=["center","middle"]}if(i[0].constructor==Number){d+=i[0]}else{switch(i[0]){case"left":d+=0;break;case"right":d+=e.width()-this.uiDialog.outerWidth();break;default:case"center":d+=(e.width()-this.uiDialog.outerWidth())/2}}if(i[1].constructor==Number){g+=i[1]}else{switch(i[1]){case"top":g+=0;break;case"bottom":g+=e.height()-this.uiDialog.outerHeight();break;default:case"middle":g+=(e.height()-this.uiDialog.outerHeight())/2}}g=Math.max(g,h);this.uiDialog.css({top:g,left:d})},_setData:function(e,f){(b[e]&&this.uiDialog.data(b[e],f));switch(e){case"buttons":this._createButtons(f);break;case"closeText":this.uiDialogTitlebarCloseText.text(f);break;case"dialogClass":this.uiDialog.removeClass(this.options.dialogClass).addClass(a+f);break;case"draggable":(f?this._makeDraggable():this.uiDialog.draggable("destroy"));break;case"height":this.uiDialog.height(f);break;case"position":this._position(f);break;case"resizable":var d=this.uiDialog,g=this.uiDialog.is(":data(resizable)");(g&&!f&&d.resizable("destroy"));(g&&typeof f=="string"&&d.resizable("option","handles",f));(g||this._makeResizable(f));break;case"title":c(".ui-dialog-title",this.uiDialogTitlebar).html(f||"&nbsp;");break;case"width":this.uiDialog.width(f);break}c.widget.prototype._setData.apply(this,arguments)},_size:function(){var e=this.options;this.element.css({height:0,minHeight:0,width:"auto"});var d=this.uiDialog.css({height:"auto",width:e.width}).height();this.element.css({minHeight:Math.max(e.minHeight-d,0),height:e.height=="auto"?"auto":Math.max(e.height-d,0)})}});c.extend(c.ui.dialog,{version:"1.7.3",defaults:{autoOpen:true,bgiframe:false,buttons:{},closeOnEscape:true,closeText:"close",dialogClass:"",draggable:true,hide:null,height:"auto",maxHeight:false,maxWidth:false,minHeight:150,minWidth:150,modal:false,position:"center",resizable:true,show:null,stack:true,title:"",width:300,zIndex:1000},getter:"isOpen",uuid:0,maxZ:0,getTitleId:function(d){return"ui-dialog-title-"+(d.attr("id")||++this.uuid)},overlay:function(d){this.$el=c.ui.dialog.overlay.create(d)}});c.extend(c.ui.dialog.overlay,{instances:[],maxZ:0,events:c.map("focus,mousedown,mouseup,keydown,keypress,click".split(","),function(d){return d+".dialog-overlay"}).join(" "),create:function(e){if(this.instances.length===0){setTimeout(function(){if(c.ui.dialog.overlay.instances.length){c(document).bind(c.ui.dialog.overlay.events,function(f){var g=c(f.target).parents(".ui-dialog").css("zIndex")||0;return(g>c.ui.dialog.overlay.maxZ)})}},1);c(document).bind("keydown.dialog-overlay",function(f){(e.options.closeOnEscape&&f.keyCode&&f.keyCode==c.ui.keyCode.ESCAPE&&e.close(f))});c(window).bind("resize.dialog-overlay",c.ui.dialog.overlay.resize)}var d=c("<div></div>").appendTo(document.body).addClass("ui-widget-overlay").css({width:this.width(),height:this.height()});(e.options.bgiframe&&c.fn.bgiframe&&d.bgiframe());this.instances.push(d);return d},destroy:function(d){this.instances.splice(c.inArray(this.instances,d),1);if(this.instances.length===0){c([document,window]).unbind(".dialog-overlay")}d.remove();var e=0;c.each(this.instances,function(){e=Math.max(e,this.css("z-index"))});this.maxZ=e},height:function(){if(c.browser.msie&&c.browser.version<7){var e=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);var d=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight);if(e<d){return c(window).height()+"px"}else{return e+"px"}}else{return c(document).height()+"px"}},width:function(){if(c.browser.msie&&c.browser.version<7){var d=Math.max(document.documentElement.scrollWidth,document.body.scrollWidth);var e=Math.max(document.documentElement.offsetWidth,document.body.offsetWidth);if(d<e){return c(window).width()+"px"}else{return d+"px"}}else{return c(document).width()+"px"}},resize:function(){var d=c([]);c.each(c.ui.dialog.overlay.instances,function(){d=d.add(this)});d.css({width:0,height:0}).css({width:c.ui.dialog.overlay.width(),height:c.ui.dialog.overlay.height()})}});c.extend(c.ui.dialog.overlay.prototype,{destroy:function(){c.ui.dialog.overlay.destroy(this.$el)}})})(jQuery);;
/*
 * jQuery UI Draggable 1.7.3
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Draggables
 *
 * Depends:
 *	ui.core.js
 */(function(a){a.widget("ui.draggable",a.extend({},a.ui.mouse,{_init:function(){if(this.options.helper=="original"&&!(/^(?:r|a|f)/).test(this.element.css("position"))){this.element[0].style.position="relative"}(this.options.addClasses&&this.element.addClass("ui-draggable"));(this.options.disabled&&this.element.addClass("ui-draggable-disabled"));this._mouseInit()},destroy:function(){if(!this.element.data("draggable")){return}this.element.removeData("draggable").unbind(".draggable").removeClass("ui-draggable ui-draggable-dragging ui-draggable-disabled");this._mouseDestroy()},_mouseCapture:function(b){var c=this.options;if(this.helper||c.disabled||a(b.target).is(".ui-resizable-handle")){return false}this.handle=this._getHandle(b);if(!this.handle){return false}return true},_mouseStart:function(b){var c=this.options;this.helper=this._createHelper(b);this._cacheHelperProportions();if(a.ui.ddmanager){a.ui.ddmanager.current=this}this._cacheMargins();this.cssPosition=this.helper.css("position");this.scrollParent=this.helper.scrollParent();this.offset=this.element.offset();this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left};a.extend(this.offset,{click:{left:b.pageX-this.offset.left,top:b.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this._generatePosition(b);this.originalPageX=b.pageX;this.originalPageY=b.pageY;if(c.cursorAt){this._adjustOffsetFromHelper(c.cursorAt)}if(c.containment){this._setContainment()}this._trigger("start",b);this._cacheHelperProportions();if(a.ui.ddmanager&&!c.dropBehaviour){a.ui.ddmanager.prepareOffsets(this,b)}this.helper.addClass("ui-draggable-dragging");this._mouseDrag(b,true);return true},_mouseDrag:function(b,d){this.position=this._generatePosition(b);this.positionAbs=this._convertPositionTo("absolute");if(!d){var c=this._uiHash();this._trigger("drag",b,c);this.position=c.position}if(!this.options.axis||this.options.axis!="y"){this.helper[0].style.left=this.position.left+"px"}if(!this.options.axis||this.options.axis!="x"){this.helper[0].style.top=this.position.top+"px"}if(a.ui.ddmanager){a.ui.ddmanager.drag(this,b)}return false},_mouseStop:function(c){var d=false;if(a.ui.ddmanager&&!this.options.dropBehaviour){d=a.ui.ddmanager.drop(this,c)}if(this.dropped){d=this.dropped;this.dropped=false}if((this.options.revert=="invalid"&&!d)||(this.options.revert=="valid"&&d)||this.options.revert===true||(a.isFunction(this.options.revert)&&this.options.revert.call(this.element,d))){var b=this;a(this.helper).animate(this.originalPosition,parseInt(this.options.revertDuration,10),function(){b._trigger("stop",c);b._clear()})}else{this._trigger("stop",c);this._clear()}return false},_getHandle:function(b){var c=!this.options.handle||!a(this.options.handle,this.element).length?true:false;a(this.options.handle,this.element).find("*").andSelf().each(function(){if(this==b.target){c=true}});return c},_createHelper:function(c){var d=this.options;var b=a.isFunction(d.helper)?a(d.helper.apply(this.element[0],[c])):(d.helper=="clone"?this.element.clone():this.element);if(!b.parents("body").length){b.appendTo((d.appendTo=="parent"?this.element[0].parentNode:d.appendTo))}if(b[0]!=this.element[0]&&!(/(fixed|absolute)/).test(b.css("position"))){b.css("position","absolute")}return b},_adjustOffsetFromHelper:function(b){if(b.left!=undefined){this.offset.click.left=b.left+this.margins.left}if(b.right!=undefined){this.offset.click.left=this.helperProportions.width-b.right+this.margins.left}if(b.top!=undefined){this.offset.click.top=b.top+this.margins.top}if(b.bottom!=undefined){this.offset.click.top=this.helperProportions.height-b.bottom+this.margins.top}},_getParentOffset:function(){this.offsetParent=this.helper.offsetParent();var b=this.offsetParent.offset();if(this.cssPosition=="absolute"&&this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0])){b.left+=this.scrollParent.scrollLeft();b.top+=this.scrollParent.scrollTop()}if((this.offsetParent[0]==document.body)||(this.offsetParent[0].tagName&&this.offsetParent[0].tagName.toLowerCase()=="html"&&a.browser.msie)){b={top:0,left:0}}return{top:b.top+(parseInt(this.offsetParent.css("borderTopWidth"),10)||0),left:b.left+(parseInt(this.offsetParent.css("borderLeftWidth"),10)||0)}},_getRelativeOffset:function(){if(this.cssPosition=="relative"){var b=this.element.position();return{top:b.top-(parseInt(this.helper.css("top"),10)||0)+this.scrollParent.scrollTop(),left:b.left-(parseInt(this.helper.css("left"),10)||0)+this.scrollParent.scrollLeft()}}else{return{top:0,left:0}}},_cacheMargins:function(){this.margins={left:(parseInt(this.element.css("marginLeft"),10)||0),top:(parseInt(this.element.css("marginTop"),10)||0)}},_cacheHelperProportions:function(){this.helperProportions={width:this.helper.outerWidth(),height:this.helper.outerHeight()}},_setContainment:function(){var e=this.options;if(e.containment=="parent"){e.containment=this.helper[0].parentNode}if(e.containment=="document"||e.containment=="window"){this.containment=[0-this.offset.relative.left-this.offset.parent.left,0-this.offset.relative.top-this.offset.parent.top,a(e.containment=="document"?document:window).width()-this.helperProportions.width-this.margins.left,(a(e.containment=="document"?document:window).height()||document.body.parentNode.scrollHeight)-this.helperProportions.height-this.margins.top]}if(!(/^(document|window|parent)$/).test(e.containment)&&e.containment.constructor!=Array){var c=a(e.containment)[0];if(!c){return}var d=a(e.containment).offset();var b=(a(c).css("overflow")!="hidden");this.containment=[d.left+(parseInt(a(c).css("borderLeftWidth"),10)||0)+(parseInt(a(c).css("paddingLeft"),10)||0)-this.margins.left,d.top+(parseInt(a(c).css("borderTopWidth"),10)||0)+(parseInt(a(c).css("paddingTop"),10)||0)-this.margins.top,d.left+(b?Math.max(c.scrollWidth,c.offsetWidth):c.offsetWidth)-(parseInt(a(c).css("borderLeftWidth"),10)||0)-(parseInt(a(c).css("paddingRight"),10)||0)-this.helperProportions.width-this.margins.left,d.top+(b?Math.max(c.scrollHeight,c.offsetHeight):c.offsetHeight)-(parseInt(a(c).css("borderTopWidth"),10)||0)-(parseInt(a(c).css("paddingBottom"),10)||0)-this.helperProportions.height-this.margins.top]}else{if(e.containment.constructor==Array){this.containment=e.containment}}},_convertPositionTo:function(f,h){if(!h){h=this.position}var c=f=="absolute"?1:-1;var e=this.options,b=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,g=(/(html|body)/i).test(b[0].tagName);return{top:(h.top+this.offset.relative.top*c+this.offset.parent.top*c-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():(g?0:b.scrollTop()))*c)),left:(h.left+this.offset.relative.left*c+this.offset.parent.left*c-(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():g?0:b.scrollLeft())*c))}},_generatePosition:function(e){var h=this.options,b=this.cssPosition=="absolute"&&!(this.scrollParent[0]!=document&&a.ui.contains(this.scrollParent[0],this.offsetParent[0]))?this.offsetParent:this.scrollParent,i=(/(html|body)/i).test(b[0].tagName);if(this.cssPosition=="relative"&&!(this.scrollParent[0]!=document&&this.scrollParent[0]!=this.offsetParent[0])){this.offset.relative=this._getRelativeOffset()}var d=e.pageX;var c=e.pageY;if(this.originalPosition){if(this.containment){if(e.pageX-this.offset.click.left<this.containment[0]){d=this.containment[0]+this.offset.click.left}if(e.pageY-this.offset.click.top<this.containment[1]){c=this.containment[1]+this.offset.click.top}if(e.pageX-this.offset.click.left>this.containment[2]){d=this.containment[2]+this.offset.click.left}if(e.pageY-this.offset.click.top>this.containment[3]){c=this.containment[3]+this.offset.click.top}}if(h.grid){var g=this.originalPageY+Math.round((c-this.originalPageY)/h.grid[1])*h.grid[1];c=this.containment?(!(g-this.offset.click.top<this.containment[1]||g-this.offset.click.top>this.containment[3])?g:(!(g-this.offset.click.top<this.containment[1])?g-h.grid[1]:g+h.grid[1])):g;var f=this.originalPageX+Math.round((d-this.originalPageX)/h.grid[0])*h.grid[0];d=this.containment?(!(f-this.offset.click.left<this.containment[0]||f-this.offset.click.left>this.containment[2])?f:(!(f-this.offset.click.left<this.containment[0])?f-h.grid[0]:f+h.grid[0])):f}}return{top:(c-this.offset.click.top-this.offset.relative.top-this.offset.parent.top+(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollTop():(i?0:b.scrollTop())))),left:(d-this.offset.click.left-this.offset.relative.left-this.offset.parent.left+(a.browser.safari&&this.cssPosition=="fixed"?0:(this.cssPosition=="fixed"?-this.scrollParent.scrollLeft():i?0:b.scrollLeft())))}},_clear:function(){this.helper.removeClass("ui-draggable-dragging");if(this.helper[0]!=this.element[0]&&!this.cancelHelperRemoval){this.helper.remove()}this.helper=null;this.cancelHelperRemoval=false},_trigger:function(b,c,d){d=d||this._uiHash();a.ui.plugin.call(this,b,[c,d]);if(b=="drag"){this.positionAbs=this._convertPositionTo("absolute")}return a.widget.prototype._trigger.call(this,b,c,d)},plugins:{},_uiHash:function(b){return{helper:this.helper,position:this.position,absolutePosition:this.positionAbs,offset:this.positionAbs}}}));a.extend(a.ui.draggable,{version:"1.7.3",eventPrefix:"drag",defaults:{addClasses:true,appendTo:"parent",axis:false,cancel:":input,option",connectToSortable:false,containment:false,cursor:"auto",cursorAt:false,delay:0,distance:1,grid:false,handle:false,helper:"original",iframeFix:false,opacity:false,refreshPositions:false,revert:false,revertDuration:500,scope:"default",scroll:true,scrollSensitivity:20,scrollSpeed:20,snap:false,snapMode:"both",snapTolerance:20,stack:false,zIndex:false}});a.ui.plugin.add("draggable","connectToSortable",{start:function(c,e){var d=a(this).data("draggable"),f=d.options,b=a.extend({},e,{item:d.element});d.sortables=[];a(f.connectToSortable).each(function(){var g=a.data(this,"sortable");if(g&&!g.options.disabled){d.sortables.push({instance:g,shouldRevert:g.options.revert});g._refreshItems();g._trigger("activate",c,b)}})},stop:function(c,e){var d=a(this).data("draggable"),b=a.extend({},e,{item:d.element});a.each(d.sortables,function(){if(this.instance.isOver){this.instance.isOver=0;d.cancelHelperRemoval=true;this.instance.cancelHelperRemoval=false;if(this.shouldRevert){this.instance.options.revert=true}this.instance._mouseStop(c);this.instance.options.helper=this.instance.options._helper;if(d.options.helper=="original"){this.instance.currentItem.css({top:"auto",left:"auto"})}}else{this.instance.cancelHelperRemoval=false;this.instance._trigger("deactivate",c,b)}})},drag:function(c,f){var e=a(this).data("draggable"),b=this;var d=function(i){var n=this.offset.click.top,m=this.offset.click.left;var g=this.positionAbs.top,k=this.positionAbs.left;var j=i.height,l=i.width;var p=i.top,h=i.left;return a.ui.isOver(g+n,k+m,p,h,j,l)};a.each(e.sortables,function(g){this.instance.positionAbs=e.positionAbs;this.instance.helperProportions=e.helperProportions;this.instance.offset.click=e.offset.click;if(this.instance._intersectsWith(this.instance.containerCache)){if(!this.instance.isOver){this.instance.isOver=1;this.instance.currentItem=a(b).clone().appendTo(this.instance.element).data("sortable-item",true);this.instance.options._helper=this.instance.options.helper;this.instance.options.helper=function(){return f.helper[0]};c.target=this.instance.currentItem[0];this.instance._mouseCapture(c,true);this.instance._mouseStart(c,true,true);this.instance.offset.click.top=e.offset.click.top;this.instance.offset.click.left=e.offset.click.left;this.instance.offset.parent.left-=e.offset.parent.left-this.instance.offset.parent.left;this.instance.offset.parent.top-=e.offset.parent.top-this.instance.offset.parent.top;e._trigger("toSortable",c);e.dropped=this.instance.element;e.currentItem=e.element;this.instance.fromOutside=e}if(this.instance.currentItem){this.instance._mouseDrag(c)}}else{if(this.instance.isOver){this.instance.isOver=0;this.instance.cancelHelperRemoval=true;this.instance.options.revert=false;this.instance._trigger("out",c,this.instance._uiHash(this.instance));this.instance._mouseStop(c,true);this.instance.options.helper=this.instance.options._helper;this.instance.currentItem.remove();if(this.instance.placeholder){this.instance.placeholder.remove()}e._trigger("fromSortable",c);e.dropped=false}}})}});a.ui.plugin.add("draggable","cursor",{start:function(c,d){var b=a("body"),e=a(this).data("draggable").options;if(b.css("cursor")){e._cursor=b.css("cursor")}b.css("cursor",e.cursor)},stop:function(b,c){var d=a(this).data("draggable").options;if(d._cursor){a("body").css("cursor",d._cursor)}}});a.ui.plugin.add("draggable","iframeFix",{start:function(b,c){var d=a(this).data("draggable").options;a(d.iframeFix===true?"iframe":d.iframeFix).each(function(){a('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1000}).css(a(this).offset()).appendTo("body")})},stop:function(b,c){a("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)})}});a.ui.plugin.add("draggable","opacity",{start:function(c,d){var b=a(d.helper),e=a(this).data("draggable").options;if(b.css("opacity")){e._opacity=b.css("opacity")}b.css("opacity",e.opacity)},stop:function(b,c){var d=a(this).data("draggable").options;if(d._opacity){a(c.helper).css("opacity",d._opacity)}}});a.ui.plugin.add("draggable","scroll",{start:function(c,d){var b=a(this).data("draggable");if(b.scrollParent[0]!=document&&b.scrollParent[0].tagName!="HTML"){b.overflowOffset=b.scrollParent.offset()}},drag:function(d,e){var c=a(this).data("draggable"),f=c.options,b=false;if(c.scrollParent[0]!=document&&c.scrollParent[0].tagName!="HTML"){if(!f.axis||f.axis!="x"){if((c.overflowOffset.top+c.scrollParent[0].offsetHeight)-d.pageY<f.scrollSensitivity){c.scrollParent[0].scrollTop=b=c.scrollParent[0].scrollTop+f.scrollSpeed}else{if(d.pageY-c.overflowOffset.top<f.scrollSensitivity){c.scrollParent[0].scrollTop=b=c.scrollParent[0].scrollTop-f.scrollSpeed}}}if(!f.axis||f.axis!="y"){if((c.overflowOffset.left+c.scrollParent[0].offsetWidth)-d.pageX<f.scrollSensitivity){c.scrollParent[0].scrollLeft=b=c.scrollParent[0].scrollLeft+f.scrollSpeed}else{if(d.pageX-c.overflowOffset.left<f.scrollSensitivity){c.scrollParent[0].scrollLeft=b=c.scrollParent[0].scrollLeft-f.scrollSpeed}}}}else{if(!f.axis||f.axis!="x"){if(d.pageY-a(document).scrollTop()<f.scrollSensitivity){b=a(document).scrollTop(a(document).scrollTop()-f.scrollSpeed)}else{if(a(window).height()-(d.pageY-a(document).scrollTop())<f.scrollSensitivity){b=a(document).scrollTop(a(document).scrollTop()+f.scrollSpeed)}}}if(!f.axis||f.axis!="y"){if(d.pageX-a(document).scrollLeft()<f.scrollSensitivity){b=a(document).scrollLeft(a(document).scrollLeft()-f.scrollSpeed)}else{if(a(window).width()-(d.pageX-a(document).scrollLeft())<f.scrollSensitivity){b=a(document).scrollLeft(a(document).scrollLeft()+f.scrollSpeed)}}}}if(b!==false&&a.ui.ddmanager&&!f.dropBehaviour){a.ui.ddmanager.prepareOffsets(c,d)}}});a.ui.plugin.add("draggable","snap",{start:function(c,d){var b=a(this).data("draggable"),e=b.options;b.snapElements=[];a(e.snap.constructor!=String?(e.snap.items||":data(draggable)"):e.snap).each(function(){var g=a(this);var f=g.offset();if(this!=b.element[0]){b.snapElements.push({item:this,width:g.outerWidth(),height:g.outerHeight(),top:f.top,left:f.left})}})},drag:function(u,p){var g=a(this).data("draggable"),q=g.options;var y=q.snapTolerance;var x=p.offset.left,w=x+g.helperProportions.width,f=p.offset.top,e=f+g.helperProportions.height;for(var v=g.snapElements.length-1;v>=0;v--){var s=g.snapElements[v].left,n=s+g.snapElements[v].width,m=g.snapElements[v].top,A=m+g.snapElements[v].height;if(!((s-y<x&&x<n+y&&m-y<f&&f<A+y)||(s-y<x&&x<n+y&&m-y<e&&e<A+y)||(s-y<w&&w<n+y&&m-y<f&&f<A+y)||(s-y<w&&w<n+y&&m-y<e&&e<A+y))){if(g.snapElements[v].snapping){(g.options.snap.release&&g.options.snap.release.call(g.element,u,a.extend(g._uiHash(),{snapItem:g.snapElements[v].item})))}g.snapElements[v].snapping=false;continue}if(q.snapMode!="inner"){var c=Math.abs(m-e)<=y;var z=Math.abs(A-f)<=y;var j=Math.abs(s-w)<=y;var k=Math.abs(n-x)<=y;if(c){p.position.top=g._convertPositionTo("relative",{top:m-g.helperProportions.height,left:0}).top-g.margins.top}if(z){p.position.top=g._convertPositionTo("relative",{top:A,left:0}).top-g.margins.top}if(j){p.position.left=g._convertPositionTo("relative",{top:0,left:s-g.helperProportions.width}).left-g.margins.left}if(k){p.position.left=g._convertPositionTo("relative",{top:0,left:n}).left-g.margins.left}}var h=(c||z||j||k);if(q.snapMode!="outer"){var c=Math.abs(m-f)<=y;var z=Math.abs(A-e)<=y;var j=Math.abs(s-x)<=y;var k=Math.abs(n-w)<=y;if(c){p.position.top=g._convertPositionTo("relative",{top:m,left:0}).top-g.margins.top}if(z){p.position.top=g._convertPositionTo("relative",{top:A-g.helperProportions.height,left:0}).top-g.margins.top}if(j){p.position.left=g._convertPositionTo("relative",{top:0,left:s}).left-g.margins.left}if(k){p.position.left=g._convertPositionTo("relative",{top:0,left:n-g.helperProportions.width}).left-g.margins.left}}if(!g.snapElements[v].snapping&&(c||z||j||k||h)){(g.options.snap.snap&&g.options.snap.snap.call(g.element,u,a.extend(g._uiHash(),{snapItem:g.snapElements[v].item})))}g.snapElements[v].snapping=(c||z||j||k||h)}}});a.ui.plugin.add("draggable","stack",{start:function(b,c){var e=a(this).data("draggable").options;var d=a.makeArray(a(e.stack.group)).sort(function(g,f){return(parseInt(a(g).css("zIndex"),10)||e.stack.min)-(parseInt(a(f).css("zIndex"),10)||e.stack.min)});a(d).each(function(f){this.style.zIndex=e.stack.min+f});this[0].style.zIndex=e.stack.min+d.length}});a.ui.plugin.add("draggable","zIndex",{start:function(c,d){var b=a(d.helper),e=a(this).data("draggable").options;if(b.css("zIndex")){e._zIndex=b.css("zIndex")}b.css("zIndex",e.zIndex)},stop:function(b,c){var d=a(this).data("draggable").options;if(d._zIndex){a(c.helper).css("zIndex",d._zIndex)}}})})(jQuery);;
// $Id: parent.js,v 1.1.2.24 2010/04/16 18:11:25 markuspetrux Exp $

(function ($) {

/**
 * Modal Frame object for parent windows.
 */
Drupal.modalFrame = Drupal.modalFrame || {
  dirtyFormsWarning: Drupal.t('Your changes will be lost if you close this popup now.'),
  options: {},
  iframe: { $container: null, $element: null },
  isOpen: false,

  // Flag that tells us if we have a child document loaded. Our window resize
  // handler will ignore events while no child document is loaded.
  isChildLoaded: false,

  // Flag used to control if we have already installed our custom
  // event handlers to the parent window.
  parentReady: false,

  // Provide a unique namespace for event handlers managed by this
  // Modal Frame instance.
  uniqueName: 'modalframe-'+ ((new Date()).getTime())
};

/**
 * Provide a unique name for an event handler.
 */
Drupal.modalFrame.eventHandlerName = function(name) {
  var self = this;
  return name +'.'+ self.uniqueName;
};

/**
 * Open a modal frame.
 *
 * Ensure that only one modal frame is opened ever. Use Drupal.modalFrame.load()
 * if the modal frame is already open but a new page needs to be loaded.
 *
 * @param options
 *   Properties of the modal frame to open:
 *   - url: the URL of the page to open in the modal frame.
 *   - width: width of the modal frame in pixels.
 *   - height: height of the modal frame in pixels.
 *   - autoFit: boolean indicating whether the modal frame should be resized to
 *     fit the contents of the document loaded.
 *   - onOpen: callback to invoke when the modal frame is opened.
 *   - onLoad: callback to invoke when the child document in the modal frame is
 *     fully loaded.
 *   - onSubmit: callback to invoke when the modal frame is closed.
 *     @todo: We could rename onSubmit to onClose, however we would be breaking
 *     other modules that rely on it. Maybe when doing a formal port to D7?
 *   - customDialogOptions: an object with custom jQuery UI Dialog options.
 *
 * @return
 *   If the modal frame was opened true, otherwise false.
 */
Drupal.modalFrame.open = function(options) {
  var self = this;

  // Just one modal is allowed.
  if (self.isOpen || $('#modalframe-container').size()) {
    return false;
  }

  // Make sure the modal frame is not resized until a child document is loaded.
  self.isChildLoaded = false;

  // If not ready yet, install custom event handlers to the parent window
  // for proper communication with the child window.
  if (!self.parentReady) {
    // Install a custom event handler to allow child windows to tell us they
    // have just loaded a document.
    $(window).bind(self.eventHandlerName('childLoad'), function(event, iFrameWindow, isClosing) {
      self.bindChild(iFrameWindow, isClosing);
    });

    // Install a custom event handler to allow child windows to tell us they
    // are unloading the document.
    $(window).bind(self.eventHandlerName('childUnload'), function(event, iFrameWindow) {
      self.unbindChild(iFrameWindow);
    });

    // Install a custom event handler to allow child windows to tell us they
    // want to close the Modal Frame.
    $(window).bind(self.eventHandlerName('childClose'), function(event, args, statusMessages) {
      self.close(args, statusMessages);
    });

    // Ok, so we're ready to properly communicate with child windows.
    self.parentReady = true;
  }

  // For some reason, onblur events attached by the Drupal autocomplete
  // behavior do not fire after a Modal Frame has been closed. I spent a lot
  // of time trying to figure out the cause, but I've been unable to. :(
  // Anyway, here's a temporary fix that makes sure the autocomplete popup
  // is hidden as soon as the user selects a candidate. I'm not enterily
  // happy with this solution, but it seems to solve the problem for now.
  // Please, see the following issue: http://drupal.org/node/635754
  if (Drupal.jsAC && !Drupal.jsAC.prototype.modalFrameSelect) {
    Drupal.jsAC.prototype.modalFrameSelect = Drupal.jsAC.prototype.select;
    Drupal.jsAC.prototype.select = function(node) {
      this.modalFrameSelect(node);
      this.hidePopup();
    };
  }

  // Build the modal frame options structure.
  self.options = {
    url: options.url,
    width: options.width,
    height: options.height,
    autoFit: (options.autoFit == undefined || options.autoFit),
    draggable: (options.draggable == undefined || options.draggable),
    onOpen: options.onOpen,
    onLoad: options.onLoad,
    onSubmit: options.onSubmit,
    customDialogOptions: options.customDialogOptions
  };

  // Create the dialog and related DOM elements.
  self.create();

  // Open the dialog offscreen where we can set its size, etc.
  self.iframe.$container.dialog('option', {position: ['-999em', '-999em']}).dialog('open');

  return true;
};

/**
 * Create the modal dialog.
 */
Drupal.modalFrame.create = function() {
  var self = this;

  // Note: We use scrolling="yes" for IE as a workaround to yet another IE bug
  // where the horizontal scrollbar is always rendered, no matter how wide the
  // iframe element is defined. IE also requires a few more non-std properties.
  self.iframe.$element = $('<iframe id="modalframe-element" name="modalframe-element"'+ ($.browser.msie ? ' scrolling="yes" frameborder="0" allowTransparency="true"' : '') +'/>');
  self.iframe.$container = $('<div id="modalframe-container"/>').append(self.iframe.$element);
  $('body').append(self.iframe.$container);

  // Open callback for the jQuery UI dialog.
  var dialogOpen = function() {
    // Unbind the keypress handler installed by ui.dialog itself.
    // IE does not fire keypress events for some non-alphanumeric keys
    // such as the tab character. http://www.quirksmode.org/js/keys.html
    // Also, this is not necessary here because we need to deal with an
    // iframe element that contains a separate window.
    // We'll try to provide our own behavior from bindChild() method.
    $('.modalframe').unbind('keypress.ui-dialog');

    // Adjust close button features.
    $('.modalframe .ui-dialog-titlebar-close:not(.modalframe-processed)').addClass('modalframe-processed')
      .attr('href', 'javascript:void(0)')
      .attr('title', Drupal.t('Close'))
      .unbind('click').bind('click', function() { self.close(false); return false; });

    // Adjust titlebar.
    if (!self.options.draggable) {
      $('.modalframe .ui-dialog-titlebar').css('cursor', 'default');
    }

    // Fix dialog position on the viewport.
    self.fixPosition($('.modalframe'), true);

    // Compute initial dialog size.
    var dialogSize = self.sanitizeSize({width: self.options.width, height: self.options.height});

    // Compute frame size and dialog position based on dialog size.
    var frameSize = $.extend({}, dialogSize);
    frameSize.height -= $('.modalframe .ui-dialog-titlebar').outerHeight(true);
    var dialogPosition = self.computeCenterPosition($('.modalframe'), dialogSize);

    // Adjust size of the iframe element and container.
    $('.modalframe').width(dialogSize.width).height(dialogSize.height);
    self.iframe.$container.width(frameSize.width).height(frameSize.height);
    self.iframe.$element.width(frameSize.width).height(frameSize.height);

    // Update the dialog size so that UI internals are aware of the change.
    self.iframe.$container.dialog('option', {width: dialogSize.width, height: dialogSize.height});

    // Hide the dialog, center it on the viewport and then fade it in with
    // the iframe still hidden, until the child document is loaded.
    self.iframe.$element.hide();
    $('.modalframe').hide().css({top: dialogPosition.top, left: dialogPosition.left});
    $('.modalframe').fadeIn('slow', function() {
      // Load the document on the hidden iframe (see bindChild method).
      self.load(self.options.url);
    });

    // Install the window resize event handler if autoFit option is enabled.
    if (self.options.autoFit) {
      var $window = $(window);
      self.currentWindowSize = {width: $window.width(), height: $window.height()};
      $window.bind(self.eventHandlerName('resize'), function() {
        // Prevent from resizing the modal frame while a child document is
        // loading or unloading. Note that we will resize the modal frame
        // anyway, as soon as it is loaded, so we can safely ignore these
        // events until then.
        if (!self.isChildLoaded) {
          return;
        }
        // Check that we really have a modal frame opened.
        if (!self.isOpen || !self.isObject(self.iframe.documentSize)) {
          return;
        }
        // Do not resize the modal frame if the window dimensions have not
        // changed more than a few pixels tall or wide.
        var newWindowSize = {width: $window.width(), height: $window.height()};
        if (Math.abs(self.currentWindowSize.width - newWindowSize.width) > 5 || Math.abs(self.currentWindowSize.height - newWindowSize.height) > 5) {
          self.currentWindowSize = newWindowSize;
          self.resize();
        }
      });
    }

    // Allow external modules to intervene when the modal frame is just opened.
    if ($.isFunction(self.options.onOpen)) {
      self.options.onOpen(self);
    }

    self.isOpen = true;
  };

  // BeforeClose callback for the jQuery UI dialog.
  var dialogBeforeClose = function() {
    if (self.beforeCloseEnabled) {
      return true;
    }
    if (!self.beforeCloseIsBusy) {
      self.beforeCloseIsBusy = true;
      setTimeout(function() { self.close(false); }, 1);
    }
    return false;
  };

  // Close callback for the jQuery UI dialog.
  var dialogClose = function() {
    if (self.options.autoFit) {
      $(window).unbind(self.eventHandlerName('resize'));
      delete self.currentWindowSize;
    }
    $(document).unbind(self.eventHandlerName('keydown'));
    $('.modalframe .ui-dialog-titlebar-close').unbind(self.eventHandlerName('keydown'));
    self.fixPosition($('.modalframe'), false);
    try {
      self.iframe.$element.remove();
      self.iframe.$container.dialog('destroy').remove();
    } catch(e) {};
    delete self.iframe.documentSize;
    delete self.iframe.Drupal;
    delete self.iframe.$element;
    delete self.iframe.$container;
    if (self.beforeCloseEnabled) {
      delete self.beforeCloseEnabled;
    }
    if (self.beforeCloseIsBusy) {
      delete self.beforeCloseIsBusy;
    }
    self.isOpen = false;
  };

  // Options for the jQuery UI dialog.
  var dialogOptions = {
    modal: true,
    autoOpen: false,
    closeOnEscape: true,
    draggable: self.options.draggable,
    resizable: false,
    title: Drupal.t('Loading...'),
    dialogClass: 'modalframe',
    open: dialogOpen,
    beforeclose: dialogBeforeClose,
    close: dialogClose
  };

  // Hide the contents of the dialog while dragging?
  if (self.options.draggable) {
    dialogOptions.dragStart = function() {
      self.iframe.$container.hide();
    };
    dialogOptions.dragStop = function() {
      self.iframe.$container.show('fast');
    };
  }

  // Allow external scripts to override the default jQuery UI Dialog options.
  $.extend(dialogOptions, self.options.customDialogOptions);

  // Open the jQuery UI dialog offscreen.
  self.iframe.$container.dialog(dialogOptions);
};

/**
 * Load the given URL into the dialog iframe.
 */
Drupal.modalFrame.load = function(url) {
  var self = this;
  var iframe = self.iframe.$element.get(0);
  // Get the document object of the iframe window.
  // @see http://xkr.us/articles/dom/iframe-document/
  var doc = (iframe.contentWindow || iframe.contentDocument);
  if (doc.document) {
    doc = doc.document;
  }
  // Install an onLoad event handler for the iframe element. This is a
  // last resort mechanism, in case the server-side code of the child
  // window is broken and it does not invoke modalframe_child_js().
  self.iframe.$element.bind('load', function() {
    // If the iframe is not visible, this means the bindChild() method
    // has not been invoked, hence something went wrong. If we do not
    // show the iframe now, we'll get an endless loading animation.
    // Showing the iframe is not the perfect solution, but it is better
    // than nothing. Probably, there's a bug in the server-side script.
    if (!self.iframe.$element.is(':visible')) {
      setTimeout(function() {
        try {
          self.iframe.$element.fadeIn('fast');
        } catch(e) {}
      }, 1000);
    }
  });
  doc.location.replace(url);
};

/**
 * Check if the dialog can be closed.
 */
Drupal.modalFrame.canClose = function() {
  var self = this;
  if (!self.isOpen) {
    return false;
  }
  if (self.isObject(self.iframe.Drupal)) {
    // Ignore errors that may happen here.
    try {
      // Prompt the user for confirmation to close the dialog if the child
      // window has dirty forms.
      if (self.isObject(self.iframe.Drupal.dirtyForms)) {
        if (self.iframe.Drupal.dirtyForms.isDirty() && !confirm(self.dirtyFormsWarning)) {
          return false;
        }
        self.iframe.Drupal.dirtyForms.warning = null;
      }
      // Disable onBeforeUnload behaviors on the child window.
      if (self.isObject(self.iframe.Drupal.onBeforeUnload)) {
        self.iframe.Drupal.onBeforeUnload.disable();
      }
    } catch(e) {}
  }
  return true;
};

/**
 * Close the modal frame.
 */
Drupal.modalFrame.close = function(args, statusMessages) {
  var self = this;

  // Check if the dialog can be closed.
  if (!self.canClose()) {
    delete self.beforeCloseIsBusy;
    return false;
  }

  // Hide and destroy the dialog.
  function closeDialog() {
    // Prevent double execution when close is requested more than once.
    if (!self.isObject(self.iframe.$container)) {
      return;
    }
    self.beforeCloseEnabled = true;
    self.iframe.$container.dialog('close');
    if ($.isFunction(self.options.onSubmit)) {
      self.options.onSubmit(args, statusMessages);
    }
  }
  if (!self.isObject(self.iframe.$element) || !self.iframe.$element.size() || !self.iframe.$element.is(':visible')) {
    closeDialog();
  }
  else {
    self.iframe.$element.fadeOut('fast', function() {
      $('.modalframe').animate({height: 'hide', opacity: 'hide'}, closeDialog);
    });
  }
  return true;
};

/**
 * Bind the child window.
 */
Drupal.modalFrame.bindChild = function(iFrameWindow, isClosing) {
  var self = this;
  var $iFrameWindow = iFrameWindow.jQuery;
  var $iFrameDocument = $iFrameWindow(iFrameWindow.document);
  self.iframe.Drupal = iFrameWindow.Drupal;

  // We are done if the child window is closing.
  if (isClosing) {
    return;
  }

  // Update the dirty forms warning on the child window.
  if (self.isObject(self.iframe.Drupal.dirtyForms)) {
    self.iframe.Drupal.dirtyForms.warning = self.dirtyFormsWarning;
  }

  // Update the dialog title with the child window title.
  $('.modalframe .ui-dialog-title').html($iFrameDocument.attr('title'));

  // Setting tabIndex makes the div focusable.
  // Setting outline to 0 prevents a border on focus in Mozilla.
  // Inspired by ui.dialog initialization code.
  $iFrameDocument.attr('tabIndex', -1).css('outline', 0);

  // Perform animation to show the iframe element.
  self.iframe.$element.fadeIn('slow', function() {
    // @todo: Watch for experience in the way we compute the size of the
    // iframed document. There are many ways to do it, and none of them
    // seem to be perfect. Note though, that the size of the iframe itself
    // may affect the size of the child document, specially on fluid layouts.
    // If you get in trouble, then I would suggest to choose a known dialog
    // size and disable the autoFit option.
    self.iframe.documentSize = {width: $iFrameDocument.width(), height: $iFrameWindow('body').height() + 25};

    // If the autoFit option is enabled, resize the modal frame based on the
    // size of the child document just loaded.
    if (self.options.autoFit) {
      self.currentWindowSize = {width: $(window).width(), height: $(window).height()};
      self.resize();

      // Install a custom resize handler to allow the child window to trigger
      // changes to the modal frame size.
      $(window).unbind(self.eventHandlerName('childResize')).bind(self.eventHandlerName('childResize'), function() {
        self.iframe.documentSize = {width: $iFrameDocument.width(), height: $iFrameWindow('body').height() + 25};
        self.resize();
      });
    }

    // Try to enhance keyboard based navigation of the modal dialog.
    // Logic inspired by the open() method in ui.dialog.js, and
    // http://wiki.codetalks.org/wiki/index.php/Docs/Keyboard_navigable_JS_widgets

    // Get a reference to the close button.
    var $closeButton = $('.modalframe .ui-dialog-titlebar-close');

    // Search tabbable elements on the iframed document to speed up related
    // keyboard events.
    // @todo: Do we need to provide a method to update these references when
    // AJAX requests update the DOM on the child document?
    var $iFrameTabbables = $iFrameWindow(':tabbable:not(form)');
    var $firstTabbable = $iFrameTabbables.filter(':first');
    var $lastTabbable = $iFrameTabbables.filter(':last');

    // Set focus to the first tabbable element in the content area or the
    // first button. If there are no tabbable elements, set focus on the
    // close button of the dialog itself.
    if (!$firstTabbable.focus().size()) {
      $iFrameDocument.focus();
    }

    // Unbind keyboard event handlers that may have been enabled previously.
    $(document).unbind(self.eventHandlerName('keydown'));
    $closeButton.unbind(self.eventHandlerName('keydown'));

    // When the focus leaves the close button, then we want to jump to the
    // first/last inner tabbable element of the child window.
    $closeButton.bind(self.eventHandlerName('keydown'), function(event) {
      if (event.keyCode && event.keyCode == $.ui.keyCode.TAB) {
        var $target = (event.shiftKey ? $lastTabbable : $firstTabbable);
        if (!$target.size()) {
          $target = $iFrameDocument;
        }
        setTimeout(function() { $target.focus(); }, 10);
        return false;
      }
    });

    // When the focus leaves the child window, then drive the focus to the
    // close button of the dialog.
    $iFrameDocument.bind(self.eventHandlerName('keydown'), function(event) {
      if (event.keyCode) {
        if (event.keyCode == $.ui.keyCode.TAB) {
          if (event.shiftKey && event.target == $firstTabbable.get(0)) {
            setTimeout(function() { $closeButton.focus(); }, 10);
            return false;
          }
          else if (!event.shiftKey && event.target == $lastTabbable.get(0)) {
            setTimeout(function() { $closeButton.focus(); }, 10);
            return false;
          }
        }
        else if (event.keyCode == $.ui.keyCode.ESCAPE) {
          setTimeout(function() { self.close(false); }, 10);
          return false;
        }
      }
    });

    // When the focus is captured by the parent document, then try
    // to drive the focus back to the first tabbable element, or the
    // close button of the dialog (default).
    $(document).bind(self.eventHandlerName('keydown'), function(event) {
      if (event.keyCode && event.keyCode == $.ui.keyCode.TAB) {
        setTimeout(function() {
          if (!$iFrameWindow(':tabbable:not(form):first').focus().size()) {
            $closeButton.focus();
          }
        }, 10);
        return false;
      }
    });

    // Our window resize handler can proceed while we have a document loaded.
    self.isChildLoaded = true;

    // Get rid of the loading animation.
    self.iframe.$container.addClass('modalframe-loaded');

    // Allow external modules to intervene when the child document in the modal
    // frame is fully loaded.
    if ($.isFunction(self.options.onLoad)) {
      self.options.onLoad(self, $iFrameWindow, $iFrameDocument);
    }
  });
};

/**
 * Unbind the child window.
 */
Drupal.modalFrame.unbindChild = function(iFrameWindow) {
  var self = this;

  // Lock our window resize handler until we have a new child document loaded.
  self.isChildLoaded = false;

  // Prevent memory leaks by explicitly unbinding event handlers attached
  // to the child document.
  iFrameWindow.jQuery(iFrameWindow.document).unbind(self.eventHandlerName('keydown'));
  $(window).unbind(self.eventHandlerName('childResize'));

  // Change the modal dialog title.
  $('.modalframe .ui-dialog-title').html(Drupal.t('Please, wait...'));

  // Restore the loading animation.
  self.iframe.$container.removeClass('modalframe-loaded');

  // Hide the iframe element.
  self.iframe.$element.fadeOut('fast');
};

/**
 * Check if the given variable is an object.
 */
Drupal.modalFrame.isObject = function(something) {
  return (something !== null && typeof something === 'object');
};

/**
 * Sanitize dialog size.
 */
Drupal.modalFrame.sanitizeSize = function(size) {
  var width, height;
  var $window = $(window);
  var minWidth = 300, maxWidth = $window.width() - 30;
  if (typeof size.width != 'number') {
    width = maxWidth;
  }
  else if (size.width < minWidth || size.width > maxWidth) {
    width = Math.min(maxWidth, Math.max(minWidth, size.width));
  }
  else {
    width = size.width;
  }
  var minHeight = 100, maxHeight = $window.height() - 30;
  if (typeof size.height != 'number') {
    height = maxHeight;
  }
  else if (size.height < minHeight || size.height > maxHeight) {
    height = Math.min(maxHeight, Math.max(minHeight, size.height));
  }
  else {
    height = size.height;
  }
  return {width: width, height: height};
};

/**
 * Fix the position of the modal frame within the viewport.
 *
 * Possible alternative to position:'fixed' for IE6:
 * @see http://www.howtocreate.co.uk/fixedPosition.html
 */
Drupal.modalFrame.fixPosition = function($element, isOpen) {
  var self = this, $window = $(window);
  if ($.browser.msie && parseInt($.browser.version) <= 6) {
    // IE6 does not support position:'fixed'.
    // Lock the window scrollBar instead.
    if (isOpen) {
      var yPos = $window.scrollTop();
      var xPos = $window.scrollLeft();
      $window.bind(self.eventHandlerName('scroll'), function() {
        window.scrollTo(xPos, yPos);
        // Default browser action cannot be prevented here.
      });
    }
    else {
      $window.unbind(self.eventHandlerName('scroll'));
    }
  }
  else {
    // Use CSS to do it on other browsers.
    if (isOpen) {
      var offset = $element.offset();
      $element.css({
        left: (offset.left - $window.scrollLeft()),
        top: (offset.top - $window.scrollTop()),
        position: 'fixed'
      });
    }
  }
};

/**
 * Compute the position to center an element with the given size.
 */
Drupal.modalFrame.computeCenterPosition = function($element, elementSize) {
  var $window = $(window);
  var position = {
    left: Math.max(0, parseInt(($window.width() - elementSize.width) / 2)),
    top: Math.max(0, parseInt(($window.height() - elementSize.height) / 2))
  };
  if ($element.css('position') != 'fixed') {
    var $document = $(document);
    position.left += $document.scrollLeft();
    position.top += $document.scrollTop();
  }
  return position;
};

/**
 * Resize the modal frame based on the current document size.
 *
 * This method may be invoked by:
 * - The parent window resize handler (when the parent window is resized).
 * - The bindChild() method (when the child document is loaded).
 * - The child window resize handler (when the child window is resized).
 */
Drupal.modalFrame.resize = function() {
  var self = this, documentSize = self.iframe.documentSize;

  // Compute frame and dialog size based on document size.
  var maxSize = self.sanitizeSize({}), titleBarHeight = $('.modalframe .ui-dialog-titlebar').outerHeight(true);
  var frameSize = self.sanitizeSize(documentSize), dialogSize = $.extend({}, frameSize);
  if ((dialogSize.height + titleBarHeight) <= maxSize.height) {
    dialogSize.height += titleBarHeight;
  }
  else {
    dialogSize.height = maxSize.height;
    frameSize.height = dialogSize.height - titleBarHeight;
  }

  // Compute dialog position centered on viewport.
  var dialogPosition = self.computeCenterPosition($('.modalframe'), dialogSize);

  var animationOptions = $.extend(dialogSize, dialogPosition);

  // Perform the resize animation.
  $('.modalframe').animate(animationOptions, 'fast', function() {
    // Proceed only if the dialog still exists.
    if (self.isObject(self.iframe.$element) && self.isObject(self.iframe.$container)) {
      // Resize the iframe element and container.
      $('.modalframe').width(dialogSize.width).height(dialogSize.height);
      self.iframe.$container.width(frameSize.width).height(frameSize.height);
      self.iframe.$element.width(frameSize.width).height(frameSize.height);

      // Update the dialog size so that UI internals are aware of the change.
      self.iframe.$container.dialog('option', {width: dialogSize.width, height: dialogSize.height});
    }
  });
};

/**
 * Render the throbber.
 */
Drupal.theme.prototype.modalFrameThrobber = function() {
  return '<div class="modalframe-throbber">&nbsp;</div>';
};

})(jQuery);
;
// $ID$

(function ($, Drupal, window, undefined) {

  /*
   * Add the automodal settings to the selectors.
   */
  Drupal.behaviors.automodal = function (context) {
    $.each(Drupal.settings.automodal, function(selector, settings) {
      $(selector +':not(.automodal-processed)', context)
        .addClass('automodal-processed')
        .bind('click', function() {
          settings.url = $(this).attr('href') || '#';
          if (settings.url.indexOf('?') >= 0) {
            settings.url += '&'
          }
          else {
            settings.url += '?'
          }
          settings.url += 'automodal=true';

          // Allow others to alter the settings as needed.
          settings = Drupal.automodal.settingsAlterCall(settings);

          settings.onSubmit = Drupal.automodal.onSubmitCall;
          Drupal.modalFrame.open(settings);
          return false;
        });
    });
  }

  Drupal.automodal = Drupal.automodal || {};

  /**
   * Functions under Drupal.automodal.onSubmitCall are iterated over onSubmit
   * for the modalFrames when the window is set to close.
   */
  Drupal.automodal.onSubmitCallback = {
    automodal: function(args, statusMessages) {
      if (args.redirect) {
        window.location = decodeURIComponent(args.redirect);
      }

      if (args.reload) {
        window.location.reload();
      }
    }
  }

  /**
   * Functions under Drupal.automodal.settingsAlter are iterated over when a
   * Modal Frame is created allowing the alteration of settings.
   */
  Drupal.automodal.settingsAlter = {
    automodal: function(settings) {
      if (settings.automodalClose) {
        settings.url += '&automodalClose=true';
      }

      if (settings.automodalReload) {
        settings.url += '&automodalReload=true';
      }

      if (settings.automodalRedirect != undefined) {
        settings.url += '&automodalRedirect=' + encodeURIComponent(settings.automodalRedirect);
      }
      return settings;
    }
  }

  /**
   * Allow the settings to be altered for Modal Frame.
   *
   * When a Modal Frame instance is created allow the the settings to be altered
   * by others. Other scripts can alter the settings by adding functions under
   * Drupal.automodal.settingsAlter. There is a default implementation at
   * Drupal.automodal.settingsAlter.automodal.
   */
  Drupal.automodal.settingsAlterCall = function(settings) {
    var newSettings = settings;
    for (var i in Drupal.automodal.settingsAlter) {
      newSettings = Drupal.automodal.settingsAlter[i](newSettings);
    }
    return newSettings;
  }

  /**
   * Iterate over multiple onSubmit functions when Modal Frame calls the onSubmit
   * function. There is a default implementation at
   * Drupal.automodal.onSubmitCallback.automodal. Other scripts can add their
   * own callbacks as functions under Drupal.automodal.onSubmitCallback (e.g.,
   * Drupal.automodal.onSubmitCallback.foo).
   */
  Drupal.automodal.onSubmitCall = function(args, statusMessages) {
    for (var i in Drupal.automodal.onSubmitCallback) {
      Drupal.automodal.onSubmitCallback[i](args, statusMessages);
    }
  }
})(jQuery, Drupal, window);;

$(document).ready(function() {

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

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

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});
;
Drupal.behaviors.spamspan=function(_1){$("span."+Drupal.settings.spamspan.m,_1).each(function(_2){var _3=($("span."+Drupal.settings.spamspan.u,this).text()+"@"+$("span."+Drupal.settings.spamspan.d,this).text()).replace(/\s+/g,"").replace(/\[dot\]/g,".");var _4=$("span."+Drupal.settings.spamspan.h,this).text().replace(/^ ?\((.*)\) ?$/,"$1");var _5=$.map(_4.split(/, /),function(n,i){return (n.replace(/: /,"="));});var _6=$("span."+Drupal.settings.spamspan.t,this).text().replace(/^ \((.*)\)$/,"$1");var _7="mailto:"+encodeURIComponent(_3);var _8=_5.join("&");_7+=_8?("?"+_8):"";$(this).after($("<a></a>").attr("href",_7).html(_6?_6:_3).addClass("spamspan")).remove();});};;
/*	SWFObject v2.2 <http://code.google.com/p/swfobject/> 
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php> 
*/
var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return !a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();;
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.88 (08-JUN-2010)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.2.6 or later
 */
(function($){var ver="2.88";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function debug(s){if($.fn.cycle.debug){log(s);}}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length===0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){var opts=handleArguments(this,options,arg2);if(opts===false){return;}opts.updateActivePagerLink=opts.updateActivePagerLink||$.fn.cycle.updateActivePagerLink;if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=opts.slideExpr?$(opts.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts2=buildOptions($cont,$slides,els,opts,o);if(opts2===false){return;}var startTime=opts2.continuous?10:getTimeout(els[opts2.currSlide],els[opts2.nextSlide],opts2,!opts2.rev);if(startTime){startTime+=(opts2.delay||0);if(startTime<10){startTime=10;}debug("first timeout: "+startTime);this.cycleTimeout=setTimeout(function(){go(els,opts2,0,(!opts2.rev&&!opts.backwards));},startTime);}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"destroy":case"stop":var opts=$(cont).data("cycle.opts");if(!opts){return false;}cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");if(options=="destroy"){destroy(opts);}return false;case"toggle":cont.cyclePause=(cont.cyclePause===1)?0:1;checkInstantResume(cont.cyclePause,arg2,cont);return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;checkInstantResume(false,arg2,cont);return false;case"prev":case"next":var opts=$(cont).data("cycle.opts");if(!opts){log('options not found, "prev/next" ignored');return false;}$.fn.cycle[options](opts);return false;default:options={fx:options};}return options;}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;function checkInstantResume(isPaused,arg2,cont){if(!isPaused&&arg2===true){var options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,(!opts.rev&&!opts.backwards));}}}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function destroy(opts){if(opts.next){$(opts.next).unbind(opts.prevNextEvent);}if(opts.prev){$(opts.prev).unbind(opts.prevNextEvent);}if(opts.pager||opts.pagerAnchorBuilder){$.each(opts.pagerAnchors||[],function(){this.unbind().remove();});}opts.pagerAnchors=null;if(opts.destroy){opts.destroy(opts);}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}else{if(opts.backwards){opts.startingSlide=els.length-1;}}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=1;opts.startingSlide=opts.randomMap[1];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z;if(opts.backwards){z=first?i<=first?els.length+(i-first):first-i:els.length-i;}else{z=first?i>=first?els.length-(i-first):first-i:els.length-i;}$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var j=0;j<els.length;j++){var $e=$(els[j]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth||e.width||$e.attr("width");}if(!h){h=e.offsetHeight||e.height||$e.attr("height");}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:($el.height()||this.offsetHeight||this.height||$el.attr("height")||0);this.cycleW=(opts.fit&&opts.width)?opts.width:($el.width()||this.offsetWidth||this.width||$el.attr("width")||0);if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingFF=($.browser.mozilla&&this.cycleW==34&&this.cycleH==19&&!this.complete);var loadingOp=($.browser.opera&&((this.cycleW==42&&this.cycleH==19)||(this.cycleW==37&&this.cycleH==17))&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingFF||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}var buffer=opts.fx=="shuffle"?500:250;while((opts.timeout-opts.speed)<buffer){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.backwards){opts.nextSlide=opts.startingSlide==0?(els.length-1):opts.startingSlide-1;}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager||opts.pagerAnchorBuilder){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var i,tx,txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}debug("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager||opts.pagerAnchorBuilder){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){debug("manualTrump in go(), stopping active transition");$(els).stop(true,true);opts.busy=false;}if(opts.busy){debug("transition active, ignoring new tx request");return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&!opts.bounce&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}var changed=false;if((manual||!p.cyclePause)&&(opts.nextSlide!=opts.currSlide)){changed=true;var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};debug("tx firing; currSlide: "+opts.currSlide+"; nextSlide: "+opts.nextSlide);opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}else{$.fn.cycle.custom(curr,next,opts,after,fwd,manual&&opts.fastOnEvent);}}}if(changed||opts.nextSlide==opts.currSlide){opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];if(opts.nextSlide==opts.currSlide){opts.nextSlide=(opts.currSlide==opts.slideCount-1)?0:opts.currSlide+1;}}else{if(opts.backwards){var roll=(opts.nextSlide-1)<0;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=1;opts.currSlide=0;}else{opts.nextSlide=roll?(els.length-1):opts.nextSlide-1;opts.currSlide=roll?0:opts.nextSlide+1;}}else{var roll=(opts.nextSlide+1)==els.length;if(roll&&opts.bounce){opts.backwards=!opts.backwards;opts.nextSlide=els.length-2;opts.currSlide=els.length-1;}else{opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}}}}if(changed&&opts.pager){opts.updateActivePagerLink(opts.pager,opts.currSlide,opts.activePagerClass);}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(els[opts.currSlide],els[opts.nextSlide],opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,(!opts.rev&&!opts.backwards));},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide,clsName){$(pager).each(function(){$(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);});};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn.call(curr,curr,next,opts,fwd);while((t-opts.speed)<250){t+=opts.speed;}debug("calculated timeout: "+t+"; speed: "+opts.speed);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}var cb=opts.onPrevNextEvent||opts.prevNextClick;if($.isFunction(cb)){cb(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});opts.updateActivePagerLink(opts.pager,opts.startingSlide,opts.activePagerClass);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a;if($.isFunction(opts.pagerAnchorBuilder)){a=opts.pagerAnchorBuilder(i,el);debug("pagerAnchorBuilder("+i+", el) returned: "+a);}else{a='<a href="#">'+(i+1)+"</a>";}if(!a){return;}var $a=$(a);if($a.parents("body").length===0){var arr=[];if($p.length>1){$p.each(function(){var $clone=$a.clone(true);$(this).append($clone);arr.push($clone[0]);});$a=$(arr);}else{$a.appendTo($p);}}opts.pagerAnchors=opts.pagerAnchors||[];opts.pagerAnchors.push($a);$a.bind(opts.pagerEvent,function(e){e.preventDefault();opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}var cb=opts.onPagerEvent||opts.pagerClick;if($.isFunction(cb)){cb(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);});if(!/^click/.test(opts.pagerEvent)&&!opts.allowPagerClickBubble){$a.bind("click.cycle",function(){return false;});}if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){debug("applying clearType background-color hack");function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,fwd,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,onPrevNextEvent:null,prevNextEvent:"click.cycle",pager:null,onPagerEvent:null,pagerEvent:"click.cycle",allowPagerClickBubble:false,pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,cleartypeNoBg:false,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250,activePagerClass:"activeSlide",updateActivePagerLink:null,backwards:false};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version:	 2.72
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($){$.fn.cycle.transitions.none=function($cont,$slides,opts){opts.fxFn=function(curr,next,opts,after){$(next).show();$(curr).hide();after();};};$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var i,w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});if(!opts.speedAdjusted){opts.speed=opts.speed/2;opts.speedAdjusted=true;}opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var top=parseInt(h/2);var left=parseInt(w/2);clip="rect("+top+"px "+left+"px "+top+"px "+left+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);;
// $Id: views_slideshow.js,v 1.1.2.1.2.39 2010/07/01 03:29:08 redndahead Exp $

/**
 *  @file
 *  A simple jQuery SingleFrame Div Slideshow Rotator.
 */

/**
 * This will set our initial behavior, by starting up each individual slideshow.
 */
Drupal.behaviors.viewsSlideshowSingleFrame = function (context) {
  $('.views_slideshow_singleframe_main:not(.viewsSlideshowSingleFrame-processed)', context).addClass('viewsSlideshowSingleFrame-processed').each(function() {
    var fullId = '#' + $(this).attr('id');
    var settings = Drupal.settings.viewsSlideshowSingleFrame[fullId];
    settings.targetId = '#' + $(fullId + " :first").attr('id');
    settings.paused = false;

    settings.opts = {
      speed:settings.speed,
      timeout:parseInt(settings.timeout),
      delay:parseInt(settings.delay),
      sync:settings.sync==1,
      random:settings.random==1,
      pause:false,
      allowPagerClickBubble:(settings.pager_hover==1 || settings.pager_click_to_page),
      prev:(settings.controls > 0)?'#views_slideshow_singleframe_prev_' + settings.vss_id:null,
      next:(settings.controls > 0)?'#views_slideshow_singleframe_next_' + settings.vss_id:null,
      pager:(settings.pager > 0)?'#views_slideshow_singleframe_pager_' + settings.vss_id:null,
      nowrap:parseInt(settings.nowrap),
      pagerAnchorBuilder: function(idx, slide) {
        var classes = 'pager-item pager-num-' + (idx+1);
        if (idx == 0) {
          classes += ' first';
        }
        if ($(slide).siblings().length == idx) {
          classes += ' last';
        }

        if (idx % 2) {
          classes += ' odd';
        }
        else {
          classes += ' even';
        }
        
        var theme = 'viewsSlideshowPager' + settings.pager_type;
        return Drupal.theme.prototype[theme] ? Drupal.theme(theme, classes, idx, slide, settings) : '';
      },
      after:function(curr, next, opts) {
        // Used for Image Counter.
        if (settings.image_count) {
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.num').html(opts.currSlide + 1);
          $('#views_slideshow_singleframe_image_count_' + settings.vss_id + ' span.total').html(opts.slideCount);
        }
      },
      before:function(curr, next, opts) {
        // Remember last slide.
        if (settings.remember_slide) {
          createCookie(settings.vss_id, opts.currSlide + 1, settings.remember_slide_days);
        }

        // Make variable height.
        if (settings.fixed_height == 0) {
          //get the height of the current slide
          var $ht = $(this).height();
          //set the container's height to that of the current slide
          $(this).parent().animate({height: $ht});
        }
      },
      cleartype:(settings.ie.cleartype == 'true')? true : false,
      cleartypeNoBg:(settings.ie.cleartypenobg == 'true')? true : false
    }
    
    // Set the starting slide if we are supposed to remember the slide
    if (settings.remember_slide) {
      var startSlide = readCookie(settings.vss_id);
      if (startSlide == null) {
        startSlide = 0;
      }
      settings.opts.startingSlide =  startSlide;
    }

    if (settings.pager_hover == 1) {
      settings.opts.pagerEvent = 'mouseover';
      settings.opts.pauseOnPagerHover = true;
    }

    if (settings.effect == 'none') {
      settings.opts.speed = 1;
    }
    else {
      settings.opts.fx = settings.effect;
    }

    // Pause on hover.
    if (settings.pause == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).hover(function() {
        $(settings.targetId).cycle('pause');
      }, function() {
        if (settings.paused == false) {
          $(settings.targetId).cycle('resume');
        }
      });
    }

    // Pause on clicking of the slide.
    if (settings.pause_on_click == 1) {
      $('#views_slideshow_singleframe_teaser_section_' + settings.vss_id).click(function() { 
        viewsSlideshowSingleFramePause(settings);
      });
    }

    // Add additional settings.
		if (settings.advanced != "\n") {
      var advanced = settings.advanced.split("\n");
      for (i=0; i<advanced.length; i++) {
        var prop = '';
        var value = '';
        var property = advanced[i].split(":");
        for (j=0; j<property.length; j++) {
          if (j == 0) {
            prop = property[j];
          }
          else if (j == 1) {
            value = property[j];
          }
          else {
            value += ":" + property[j];
          }
        }

        // Need to evaluate so true, false and numerics aren't a string.
        if (value == 'true' || value == 'false' || IsNumeric(value)) {
          value = eval(value);
        }
        else {
          // Parse strings into functions.
          var func = value.match(/function\s*\((.*?)\)\s*\{(.*)\}/i);
          if (func) {
            value = new Function(func[1].match(/(\w+)/g), func[2]);
          }
        }
	
        // Call both functions if prop was set previously.
        if (typeof(value) == "function" && prop in settings.opts) {
          var callboth = function(before_func, new_func) {
            return function() {
              before_func.apply(null, arguments);
              new_func.apply(null, arguments);
            };
          };
          settings.opts[prop] = callboth(settings.opts[prop], value);
        }
        else {
          settings.opts[prop] = value;
        }
      }
    }
    
    $(settings.targetId).cycle(settings.opts);

    // Start Paused
    if (settings.start_paused) {
      viewsSlideshowSingleFramePause(settings);
    }
    
    // Pause if hidden.
    if (settings.pause_when_hidden) {
      var checkPause = function(settings) {
        // If the slideshow is visible and it is paused then resume.
        // otherwise if the slideshow is not visible and it is not paused then
        // pause it.
        var visible = viewsSlideshowSingleFrameIsVisible(settings.targetId, settings.pause_when_hidden_type, settings.amount_allowed_visible);
        if (visible && settings.paused) {
          viewsSlideshowSingleFrameResume(settings);
        }
        else if (!visible && !settings.paused) {
          viewsSlideshowSingleFramePause(settings);
        }
      }
     
      // Check when scrolled.
      $(window).scroll(function() {
       checkPause(settings);
      });
      
      // Check when the window is resized.
      $(window).resize(function() {
        checkPause(settings);
      });
    }

    // Show image count for people who have js enabled.
    $('#views_slideshow_singleframe_image_count_' + settings.vss_id).show();

    if (settings.controls > 0) {
      // Show controls for people who have js enabled browsers.
      $('#views_slideshow_singleframe_controls_' + settings.vss_id).show();
      
      $('#views_slideshow_singleframe_playpause_' + settings.vss_id).click(function(e) {
      	if (settings.paused) {
      	  viewsSlideshowSingleFrameResume(settings);
      	}
      	else {
      	  viewsSlideshowSingleFramePause(settings);
      	}
        e.preventDefault();
      });
    }
  });
}

// Pause the slideshow 
viewsSlideshowSingleFramePause = function (settings) {
  //make Resume translatable
  var resume = Drupal.t('Resume');

  $(settings.targetId).cycle('pause');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_play')
      .addClass('views_slideshow_play')
      .removeClass('views_slideshow_singleframe_pause')
      .removeClass('views_slideshow_pause')
      .text(resume);
  }
  settings.paused = true;
}

// Resume the slideshow
viewsSlideshowSingleFrameResume = function (settings) {
  $(settings.targetId).cycle('resume');
  if (settings.controls > 0) {
    $('#views_slideshow_singleframe_playpause_' + settings.vss_id)
      .addClass('views_slideshow_singleframe_pause')
      .addClass('views_slideshow_pause')
      .removeClass('views_slideshow_singleframe_play')
      .removeClass('views_slideshow_play')
      .text('Pause');
  }
  settings.paused = false;
}

Drupal.theme.prototype.viewsSlideshowPagerThumbnails = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '"><img src="' + $(slide).find('img').attr('src') + '" /></a></div>';
}

Drupal.theme.prototype.viewsSlideshowPagerNumbered = function (classes, idx, slide, settings) {
  var href = '#';
  if (settings.pager_click_to_page) {
    href = $(slide).find('a').attr('href');
  }
  return '<div class="' + classes + '"><a href="' + href + '">' + (idx+1) + '</a></div>';
}

// Verify that the value is a number.
function IsNumeric(sText) {
  var ValidChars = "0123456789";
  var IsNumber=true;
  var Char;

  for (var i=0; i < sText.length && IsNumber == true; i++) { 
    Char = sText.charAt(i); 
    if (ValidChars.indexOf(Char) == -1) {
      IsNumber = false;
    }
  }
  return IsNumber;
}

/**
 * Cookie Handling Functions
 */
function createCookie(name,value,days) {
  if (days) {
    var date = new Date();
    date.setTime(date.getTime()+(days*24*60*60*1000));
    var expires = "; expires="+date.toGMTString();
  }
  else {
    var expires = "";
  }
  document.cookie = name+"="+value+expires+"; path=/";
}

function readCookie(name) {
  var nameEQ = name + "=";
  var ca = document.cookie.split(';');
  for(var i=0;i < ca.length;i++) {
    var c = ca[i];
    while (c.charAt(0)==' ') c = c.substring(1,c.length);
    if (c.indexOf(nameEQ) == 0) {
      return c.substring(nameEQ.length,c.length);
    }
  }
  return null;
}

function eraseCookie(name) {
  createCookie(name,"",-1);
}

/**
 * Checks to see if the slide is visible enough.
 * elem = element to check.
 * type = The way to calculate how much is visible.
 * amountVisible = amount that should be visible. Either in percent or px. If
 *                it's not defined then all of the slide must be visible.
 *
 * Returns true or false
 */
function viewsSlideshowSingleFrameIsVisible(elem, type, amountVisible) {
  // Get the top and bottom of the window;
  var docViewTop = $(window).scrollTop();
  var docViewBottom = docViewTop + $(window).height();
  var docViewLeft = $(window).scrollLeft();
  var docViewRight = docViewLeft + $(window).width();

  // Get the top, bottom, and height of the slide;
  var elemTop = $(elem).offset().top;
  var elemHeight = $(elem).height();
  var elemBottom = elemTop + elemHeight;
  var elemLeft = $(elem).offset().left;
  var elemWidth = $(elem).width();
  var elemRight = elemLeft + elemWidth;
  var elemArea = elemHeight * elemWidth;
  
  // Calculate what's hiding in the slide.
  var missingLeft = 0;
  var missingRight = 0;
  var missingTop = 0;
  var missingBottom = 0;
  
  // Find out how much of the slide is missing from the left.
  if (elemLeft < docViewLeft) {
    missingLeft = docViewLeft - elemLeft;
  }

  // Find out how much of the slide is missing from the right.
  if (elemRight > docViewRight) {
    missingRight = elemRight - docViewRight;
  }
  
  // Find out how much of the slide is missing from the top.
  if (elemTop < docViewTop) {
    missingTop = docViewTop - elemTop;
  }

  // Find out how much of the slide is missing from the bottom.
  if (elemBottom > docViewBottom) {
    missingBottom = elemBottom - docViewBottom;
  }
  
  // If there is no amountVisible defined then check to see if the whole slide
  // is visible.
  if (type == 'full') {
    return ((elemBottom >= docViewTop) && (elemTop <= docViewBottom)
    && (elemBottom <= docViewBottom) &&  (elemTop >= docViewTop)
    && (elemLeft >= docViewLeft) && (elemRight <= docViewRight)
    && (elemLeft <= docViewRight) && (elemRight >= docViewLeft));
  }
  else if(type == 'vertical') {
    var verticalShowing = elemHeight - missingTop - missingBottom;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((verticalShowing/elemHeight)*100) >= parseInt(amountVisible));
    }
    else {
      return (verticalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'horizontal') {
    var horizontalShowing = elemWidth - missingLeft - missingRight;
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((horizontalShowing/elemWidth)*100) >= parseInt(amountVisible));
    }
    else {
      return (horizontalShowing >= parseInt(amountVisible));
    }
  }
  else if(type == 'area') {
    var areaShowing = (elemWidth - missingLeft - missingRight) * (elemHeight - missingTop - missingBottom);
    
    // If user specified a percentage then find out if the current shown percent
    // is larger than the allowed percent.
    // Otherwise check to see if the amount of px shown is larger than the
    // allotted amount.
    if (amountVisible.indexOf('%')) {
      return (((areaShowing/elemArea)*100) >= parseInt(amountVisible));
    }
    else {
      return (areaShowing >= parseInt(amountVisible));
    }
  }
}

;
// $Id: jump-menu.js,v 1.1.2.2 2009/10/28 01:53:15 merlinofchaos Exp $

(function($) {
  Drupal.behaviors.CToolsJumpMenu = function(context) {
    $('.ctools-jump-menu-hide:not(.ctools-jump-menu-processed)')
      .addClass('ctools-jump-menu-processed')
      .hide();

    $('.ctools-jump-menu-change:not(.ctools-jump-menu-processed)')
      .addClass('ctools-jump-menu-processed')
      .change(function() {
        var loc = $(this).val();
        if (loc) {
          location.href = loc;
        }
        return false;
      });

    $('.ctools-jump-menu-button:not(.ctools-jump-menu-processed)')
      .addClass('ctools-jump-menu-processed')
      .click(function() {
        // Instead of submitting the form, just perform the redirect.

        // Find our sibling value.
        var $select = $(this).parents('form').find('.ctools-jump-menu-select');
        var loc = $select.val();
        if (loc) {
          location.href = loc;
        }
        return false;
      });
  };

})(jQuery);;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * 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":514,"face":{"font-family":"Colaborate-Regular","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 5 3 6 0 0 2 0 4","ascent":"800","descent":"-200","x-height":"13","bbox":"-125 -835 1056 227","underline-thickness":"50","underline-position":"-50","stemh":"68","stemv":"99","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":257},"\u00f0":{"d":"469,-283v0,148,-38,299,-220,299v-115,0,-204,-87,-204,-204v0,-133,65,-214,197,-214v45,0,106,30,134,87v0,-108,-35,-184,-107,-225r-82,55r-66,-38r68,-47v-25,-7,-55,-9,-84,-12r-32,-85v76,5,141,18,197,42r69,-48r65,38r-67,46v88,61,132,160,132,306xm367,-239v-14,-36,-46,-88,-120,-88v-91,0,-101,76,-101,139v0,85,44,129,102,129v73,0,119,-36,119,-180"},"\u0141":{"d":"478,0r-382,0r0,-257r-66,44r-44,-68r110,-73r0,-293r100,0r0,226r78,-52r44,68r-122,82r0,243r282,0r0,80","w":485},"\u0142":{"d":"290,-388r-106,70r0,318r-100,0r0,-250r-56,37r-44,-68r100,-67r0,-299r100,0r0,232r62,-42","w":268},"\u0160":{"d":"506,-168v0,219,-267,205,-440,156r32,-85v98,45,306,77,306,-69v0,-73,-72,-98,-150,-127v-90,-33,-188,-71,-188,-192v0,-185,235,-201,400,-147r-32,85v-37,-16,-74,-35,-136,-35v-93,0,-130,40,-130,97v0,57,58,79,125,103v96,34,213,71,213,214xm409,-809r-95,114r-68,0r-91,-114r68,0r57,67r60,-67r69,0","w":572},"\u0161":{"d":"388,-124v0,163,-222,155,-348,106r31,-74v53,21,84,35,138,35v68,0,87,-26,87,-66v0,-41,-48,-55,-103,-73v-69,-22,-147,-49,-147,-141v0,-103,94,-133,183,-133v44,0,89,9,152,30r-32,75v-46,-21,-74,-35,-122,-35v-54,0,-89,16,-89,60v0,34,39,47,86,62v73,23,164,47,164,154xm341,-647r-95,114r-68,0r-91,-114r68,0r57,67r60,-67r69,0","w":433},"\u00dd":{"d":"575,-647r-228,356r0,291r-100,0r0,-287r-232,-360r113,0r173,270r168,-270r106,0xm379,-809r-125,117r-65,0r96,-117r94,0","w":590,"k":{"\u00d2":24,"\u00d3":24,"\u00c1":52,"\u00c2":52,"\u0153":24,"\u0152":24,"\u00d5":24,"\u00c3":52,"\u00c0":52,"\u00f8":24,"\u00e6":24,"\u00d8":24,"\u00c6":52,"\u00a2":24,"\u00f5":24,"\u00f6":24,"\u00f4":24,"\u00f2":24,"\u00f3":24,"\u00eb":24,"\u00ea":24,"\u00e8":24,"\u00e9":24,"\u00e7":24,"\u00e5":24,"\u00e3":24,"\u00e4":24,"\u00e2":24,"\u00e0":24,"\u00e1":24,"\u00d6":24,"\u00c7":24,"\u00c5":52,"\u00c4":52,"s":24,"q":24,"o":24,"g":24,"e":24,"d":24,"c":24,"a":24,"Q":24,"O":24,"J":52,"G":24,"C":24,"A":52,".":52,",":52}},"\u00fd":{"d":"470,-457r-191,530v-27,75,-67,122,-157,154r-29,-75v105,-25,91,-95,128,-171r-183,-438r96,0r131,335r113,-335r92,0xm355,-647r-125,117r-65,0r96,-117r94,0","w":508,"k":{"\u00c1":24,"\u00c2":24,"\u0153":12,"\u00c3":24,"\u00c0":24,"\u00f8":12,"\u00e6":12,"\u00c6":24,"\u00a2":12,"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00eb":12,"\u00ea":12,"\u00e8":12,"\u00e9":12,"\u00e7":12,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"\u00c5":24,"\u00c4":24,"s":12,"q":12,"o":12,"g":12,"e":12,"d":12,"c":12,"a":12,"T":24,"J":52,"A":24,".":52,",":52,"\u0161":12}},"\u017d":{"d":"506,-565r-354,487r346,0r0,78r-426,0r-28,-82r354,-487r-317,0r0,-78r397,0xm402,-805r-95,114r-68,0r-91,-114r68,0r57,67r60,-67r69,0","w":550},"\u017e":{"d":"396,-383r-263,314r249,0r0,69r-320,0r-31,-74r264,-314r-236,0r0,-69r305,0xm336,-647r-95,114r-68,0r-91,-114r68,0r57,67r60,-67r69,0","w":427},"\u00bd":{"d":"713,0r-240,0r-18,-50v56,-43,190,-124,190,-186v0,-49,-29,-58,-69,-58v-29,0,-55,9,-91,26r-18,-51v52,-18,74,-22,110,-22v66,0,134,25,134,104v0,74,-115,147,-173,189r175,0r0,48xm568,-629r-363,629r-80,0r362,-629r81,0xm211,-313r-65,0r0,-274r-66,52r-18,-46r89,-66r60,0r0,334","w":784},"\u00bc":{"d":"680,-88r-53,0r0,88r-65,0r0,-88r-144,0r-21,-47r162,-199r68,0r0,199r53,0r0,47xm571,-629r-364,629r-79,0r363,-629r80,0xm214,-313r-66,0r0,-274r-65,52r-19,-46r90,-66r53,0xm562,-135r0,-137r-111,137r111,0","w":784},"\u00b9":{"d":"228,-313r-65,0r0,-274r-66,52r-18,-46r89,-66r60,0r0,334","w":349},"\u00be":{"d":"701,-88r-53,0r0,88r-65,0r0,-88r-144,0r-21,-47r162,-199r68,0r0,199r53,0r0,47xm602,-629r-363,629r-80,0r362,-629r81,0xm297,-407v0,113,-154,109,-249,85r18,-51v36,20,166,36,166,-35v0,-54,-50,-62,-117,-62r0,-45v65,0,108,-7,108,-53v0,-73,-107,-40,-150,-19r-18,-52v81,-35,233,-30,233,70v0,48,-38,71,-81,76v42,6,90,28,90,86xm583,-135r0,-137r-111,137r111,0","w":784},"\u00b3":{"d":"299,-407v0,113,-155,109,-250,85r19,-51v36,20,165,36,165,-35v0,-54,-49,-62,-116,-62r0,-45v65,0,107,-7,107,-53v0,-73,-106,-40,-149,-19r-19,-52v81,-35,234,-30,234,70v0,48,-39,71,-82,76v42,6,91,28,91,86","w":349},"\u00b2":{"d":"303,-318r-240,0r-18,-48v56,-43,190,-125,190,-187v0,-49,-29,-59,-69,-59v-29,0,-56,9,-92,26r-18,-51v52,-18,75,-22,111,-22v66,0,134,26,134,105v0,74,-116,147,-174,189r176,0r0,47","w":349},"\u00a6":{"d":"168,-359r-79,0r0,-234r79,0r0,234xm168,78r-79,0r0,-234r79,0r0,234","w":257},"\u2212":{"d":"474,-187r-434,0r0,-65r434,0r0,65"},"\u00d7":{"d":"469,-84r-56,56r-155,-155r-155,155r-56,-56r155,-155r-155,-155r56,-56r155,155r155,-155r56,56r-155,155"},"!":{"d":"173,-176r-89,0r0,-471r89,0r0,471xm179,0r-100,0r0,-97r100,0r0,97","w":257},"\"":{"d":"304,-647r-8,217r-67,0r-8,-217r83,0xm160,-647r-8,217r-67,0r-8,-217r83,0","w":380},"#":{"d":"499,-392r-107,0r-26,145r94,0r0,66r-105,0r-32,181r-78,0r32,-181r-96,0r-31,181r-78,0r32,-181r-90,0r0,-66r101,0r26,-145r-88,0r0,-66r100,0r33,-189r78,0r-33,189r95,0r33,-189r78,0r-33,189r95,0r0,66xm314,-392r-96,0r-25,145r96,0"},"$":{"d":"461,-168v0,121,-75,169,-172,182r0,84r-73,0r0,-80v-59,-1,-115,-15,-172,-30r32,-85v47,18,88,37,140,38r0,-237v-84,-32,-175,-69,-175,-189v0,-108,79,-159,175,-171r0,-90r73,0r0,88v44,3,100,11,144,26r-32,85v-31,-14,-64,-29,-112,-33r0,211v84,32,172,74,172,201xm217,-398r0,-179v-53,12,-77,45,-77,92v0,45,34,68,77,87xm362,-166v0,-50,-33,-77,-74,-98r0,195v40,-12,74,-40,74,-97"},"%":{"d":"736,-166v0,98,-26,178,-137,178v-110,0,-134,-80,-134,-178v0,-96,33,-172,135,-172v110,0,136,74,136,172xm612,-629r-363,629r-80,0r362,-629r81,0xm319,-487v0,98,-25,179,-136,179v-110,0,-134,-81,-134,-179v0,-96,33,-171,135,-171v110,0,135,73,135,171xm671,-166v0,-75,-8,-125,-71,-125v-61,0,-69,62,-69,125v0,76,6,131,68,131v63,0,72,-57,72,-131xm255,-487v0,-75,-8,-124,-71,-124v-61,0,-70,61,-70,124v0,76,7,131,69,131v63,0,72,-57,72,-131","w":784},"&":{"d":"468,0r-82,0r-14,-49v-24,35,-76,64,-123,64v-105,0,-203,-52,-203,-192v0,-68,23,-141,113,-186v-31,-24,-93,-59,-93,-132v0,-91,46,-167,171,-167v107,0,171,51,171,160v0,80,-79,129,-162,164v-71,30,-108,73,-108,159v0,57,29,125,119,125v44,0,83,-33,109,-72r0,-101r-96,0r0,-64r184,0v-2,94,1,222,14,291xm318,-503v0,-51,-17,-90,-83,-90v-58,0,-78,41,-78,97v0,49,45,77,67,97v45,-19,94,-47,94,-104"},"'":{"d":"170,-647r-8,217r-67,0r-8,-217r83,0","w":257},"(":{"d":"243,128r-81,0v-85,-147,-106,-232,-106,-382v0,-183,31,-267,101,-393r81,0v-71,131,-91,224,-91,393v0,139,15,234,96,382","w":295},")":{"d":"241,-254v0,150,-21,235,-106,382r-82,0v81,-148,96,-243,96,-382v0,-169,-20,-262,-91,-393r82,0v70,126,101,210,101,393","w":295},"*":{"d":"399,-484r-147,36r-1,7r96,124r-52,37r-83,-128r-8,0r-85,128r-52,-38r96,-123r-2,-7r-149,-37r20,-63r143,54r8,-6r-7,-149r63,0r-8,152r7,4r143,-53","w":410},"+":{"d":"470,-182r-173,0r0,182r-80,0r0,-182r-173,0r0,-71r173,0r0,-175r80,0r0,175r173,0r0,71"},",":{"d":"178,-75r-81,178r-69,0r51,-178r99,0","w":257},"-":{"d":"310,-196r-282,0r0,-76r282,0r0,76","w":338},".":{"d":"178,0r-99,0r0,-96r99,0r0,96","w":257,"k":{"y":62,"w":86,"v":62,"Y":62,"W":62,"V":62}},"\/":{"d":"284,-657r-212,668r-79,0r213,-668r78,0","w":277},"0":{"d":"476,-308v0,179,-36,324,-221,324v-183,0,-217,-145,-217,-324v0,-174,48,-312,218,-312v183,0,220,134,220,312xm376,-308v0,-139,-9,-237,-120,-237v-107,0,-118,119,-118,237v0,141,8,249,117,249v112,0,121,-115,121,-249"},"1":{"d":"359,1r-100,0r0,-508r-115,95r-31,-75r150,-120r96,0r0,608"},"2":{"d":"466,0r-394,0r-29,-82v94,-78,310,-233,310,-346v0,-89,-44,-118,-111,-118v-48,0,-89,16,-151,48r-31,-83v87,-33,124,-40,184,-40v110,0,210,46,210,189v0,135,-184,280,-280,356r292,0r0,76"},"3":{"d":"441,-164v0,206,-242,201,-403,155r30,-83v29,12,83,33,149,33v71,0,124,-38,124,-106v0,-102,-79,-118,-191,-118r0,-72v108,0,176,-12,176,-101v0,-137,-169,-89,-247,-45r-30,-83v44,-22,128,-37,178,-37v126,0,199,52,199,163v0,88,-64,129,-135,138v70,11,150,51,150,156"},"4":{"d":"492,-164r-96,0r0,164r-98,0r0,-164r-242,0r-33,-78r270,-365r103,0r0,367r96,0r0,76xm298,-240r0,-265r-195,265r195,0"},"5":{"d":"463,-193v0,135,-99,209,-231,209v-61,0,-127,-5,-182,-23r31,-83v45,18,104,31,152,31v98,0,132,-58,132,-136v0,-152,-158,-133,-228,-80r-68,-27r0,-305r369,0r0,75r-271,0r0,159v28,-9,55,-19,100,-19v121,0,196,69,196,199"},"6":{"d":"468,-188v0,117,-89,204,-204,204v-182,0,-219,-151,-219,-299v0,-160,73,-338,254,-338v37,0,95,7,136,18r-31,83v-32,-15,-62,-26,-100,-26v-115,0,-166,107,-166,231v28,-57,89,-87,134,-87v132,0,196,81,196,214xm368,-188v0,-63,-11,-139,-102,-139v-74,0,-105,52,-119,88v0,144,45,180,118,180v58,0,103,-44,103,-129"},"7":{"d":"449,-539r-221,539r-108,0r241,-531r-313,0r0,-75r369,0"},"8":{"d":"476,-152v0,135,-109,168,-222,168v-111,0,-217,-35,-217,-168v0,-89,57,-144,147,-168v-29,-12,-126,-44,-126,-139v0,-104,71,-162,201,-162v136,0,202,48,202,161v0,93,-95,134,-132,141v95,27,147,77,147,167xm365,-457v0,-59,-29,-90,-106,-90v-74,0,-104,29,-104,90v0,59,59,91,100,104v46,-13,110,-46,110,-104xm379,-154v0,-78,-63,-111,-122,-130v-60,19,-122,48,-122,130v0,59,40,96,119,96v79,0,125,-34,125,-96"},"9":{"d":"469,-322v0,160,-74,338,-255,338v-37,0,-94,-7,-135,-18r31,-83v32,15,61,26,99,26v115,0,167,-107,167,-231v-28,57,-89,87,-134,87v-132,0,-197,-80,-197,-213v0,-117,92,-205,204,-205v185,0,220,151,220,299xm367,-366v0,-144,-46,-180,-119,-180v-58,0,-102,45,-102,130v0,63,10,138,101,138v74,0,106,-52,120,-88"},":":{"d":"178,-356r-99,0r0,-96r99,0r0,96xm178,0r-99,0r0,-96r99,0r0,96","w":257},";":{"d":"177,-356r-99,0r0,-96r99,0r0,96xm178,-75r-81,178r-69,0r50,-178r100,0","w":257},"<":{"d":"474,-29r-434,-157r0,-100r434,-159r0,89r-344,120r344,118r0,89"},"=":{"d":"474,-256r-434,0r0,-72r434,0r0,72xm474,-83r-434,0r0,-72r434,0r0,72"},">":{"d":"474,-188r-434,159r0,-89r344,-120r-344,-118r0,-89r434,158r0,99"},"?":{"d":"404,-497v0,119,-163,142,-163,241r0,86r-90,0r0,-91v0,-136,157,-147,157,-236v0,-122,-164,-83,-239,-48r-18,-82v43,-15,115,-30,163,-30v88,0,190,21,190,160xm246,0r-100,0r0,-97r100,0r0,97","w":435},"@":{"d":"789,-381v0,191,-147,255,-310,255v-138,0,-223,-68,-223,-195v0,-104,65,-191,202,-191v41,0,82,9,98,14r0,173r27,-2r26,67r-134,14r0,-192v-66,-16,-130,12,-130,116v0,109,81,130,136,130v125,0,218,-34,218,-188v0,-161,-120,-210,-233,-210v-121,0,-295,54,-295,270v0,220,177,269,297,269v73,0,130,-10,212,-34r31,74v-86,23,-172,29,-246,29v-226,0,-384,-114,-384,-338v0,-229,171,-339,385,-339v142,0,323,76,323,278","w":870},"A":{"d":"626,0r-110,0r-64,-183r-248,0r-68,183r-105,0r263,-647r88,0xm427,-258r-94,-273r-101,273r195,0","w":657,"k":{"\u00d9":12,"\u00db":12,"\u00da":12,"\u00d2":24,"\u00d4":24,"\u00d3":24,"\u0178":52,"\u00ff":52,"\u0153":12,"\u0152":24,"\u00d5":24,"\u00e6":12,"\u00a2":12,"\u00fc":12,"\u00fb":12,"\u00f9":12,"\u00fa":12,"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00eb":12,"\u00ea":12,"\u00e8":12,"\u00e9":12,"\u00e7":12,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"\u00dc":12,"\u00d6":24,"\u00c7":24,"y":52,"w":52,"v":52,"u":12,"t":12,"q":12,"o":12,"e":12,"d":12,"c":12,"a":12,"Y":52,"W":52,"V":52,"T":52,"Q":12,"O":12,"G":12,"C":12,"A":-1,"@":24,"&":24,"\u00fd":52,"\u00dd":52}},"B":{"d":"547,-186v-2,239,-238,178,-451,186r0,-647v198,5,424,-41,421,174v0,68,-44,115,-103,134v80,14,133,63,133,153xm415,-472v0,-66,-32,-98,-116,-98r-103,0r0,199v109,1,220,17,219,-101xm444,-186v-1,-133,-128,-106,-248,-109r0,218v121,-5,249,32,248,-109","w":603,"k":{"V":8}},"C":{"d":"521,-12v-57,20,-108,30,-176,30v-208,0,-284,-141,-284,-341v0,-180,69,-336,289,-336v56,0,115,9,164,25r-32,85v-42,-18,-84,-33,-132,-33v-142,0,-186,108,-186,258v0,159,44,265,180,265v52,0,93,-17,145,-38","w":559},"D":{"d":"590,-326v0,236,-93,326,-309,326r-185,0r0,-647r185,0v216,0,309,86,309,321xm487,-325v0,-243,-100,-251,-291,-245r0,493v193,10,291,-16,291,-248","w":651,"k":{"V":8,"J":20}},"E":{"d":"476,0r-380,0r0,-647r371,0r0,77r-271,0r0,197r250,0r0,77r-250,0r0,219r280,0r0,77","w":559},"F":{"d":"467,-569r-271,0r0,200r259,0r0,76r-259,0r0,293r-100,0r0,-647r371,0r0,78","w":521},"G":{"d":"554,-39v-67,37,-119,57,-208,57v-227,0,-285,-167,-285,-342v0,-199,84,-335,294,-335v45,0,110,13,156,25r-32,85v-163,-75,-315,-26,-315,225v0,156,38,265,185,265v47,0,82,-13,116,-32r0,-165r-143,0r0,-77r232,0r0,294","w":615},"H":{"d":"574,0r-100,0r0,-295r-278,0r0,295r-100,0r0,-647r100,0r0,274r278,0r0,-274r100,0r0,647","w":670},"I":{"d":"184,0r-100,0r0,-647r100,0r0,647","w":268},"J":{"d":"325,-204v0,216,-161,256,-283,288r-26,-84v90,-18,209,-24,209,-194r0,-453r100,0r0,443","w":421},"K":{"d":"609,0r-130,0r-283,-304r0,304r-100,0r0,-647r100,0r0,284r262,-284r112,0r-282,305","w":624,"k":{"\u00d9":12,"\u00db":12,"\u00da":12,"\u00d2":24,"\u00d3":24,"\u00ff":52,"\u0153":24,"\u0152":24,"\u00d5":24,"\u00e6":24,"\u00a2":24,"\u00fc":24,"\u00fb":24,"\u00f9":24,"\u00fa":24,"\u00f5":-24,"\u00f6":24,"\u00f4":24,"\u00f2":24,"\u00f3":24,"\u00eb":24,"\u00ea":24,"\u00e8":24,"\u00e9":24,"\u00e7":24,"\u00e5":24,"\u00e3":24,"\u00e4":24,"\u00e2":24,"\u00e0":24,"\u00e1":24,"\u00dc":12,"\u00d6":24,"y":52,"w":52,"v":52,"u":24,"q":24,"o":24,"e":24,"d":24,"c":24,"a":24,"U":12,"Q":24,"O":24,"G":24,"C":24,"@":24,"&":12}},"L":{"d":"478,0r-382,0r0,-647r100,0r0,567r282,0r0,80","w":485,"k":{"Y":96,"W":64,"V":72,"T":64,"O":20}},"M":{"d":"785,0r-97,0r0,-541r-201,541r-95,0r-202,-541r0,541r-94,0r0,-647r159,0r188,511r191,-511r151,0r0,647","w":881},"N":{"d":"605,0r-148,0r-267,-529r0,529r-94,0r0,-647r146,0r265,529r0,-529r98,0r0,647","w":701},"O":{"d":"642,-321v0,192,-74,339,-289,339v-224,0,-292,-146,-292,-339v0,-191,77,-338,293,-338v216,0,288,141,288,338xm539,-321v0,-172,-51,-261,-186,-261v-136,0,-189,90,-189,261v0,175,52,262,189,262v140,0,186,-99,186,-262","w":703,"k":{"Z":12,"Y":24,"X":24,"W":24,"V":24,"J":20,"A":12}},"P":{"d":"526,-458v0,140,-82,195,-212,195r-118,0r0,263r-100,0r0,-647r207,0v132,0,223,47,223,189xm424,-458v0,-140,-111,-108,-228,-112r0,230v120,-1,228,21,228,-118","w":578,"k":{"J":80,"A":48}},"Q":{"d":"642,-321v0,192,-74,339,-289,339v-224,0,-292,-146,-292,-339v0,-191,75,-338,293,-338v216,0,288,141,288,338xm574,61r-35,70r-219,-33r35,-57xm539,-321v0,-172,-51,-261,-186,-261v-136,0,-189,90,-189,261v0,175,52,262,189,262v140,0,186,-99,186,-262","w":703},"R":{"d":"570,0r-121,0r-206,-279r-47,0r0,279r-100,0r0,-647v206,7,435,-49,435,180v0,91,-42,172,-172,185xm429,-467v0,-65,-36,-103,-106,-103r-127,0r0,214r128,0v76,0,105,-48,105,-111","w":614},"S":{"d":"506,-168v0,219,-267,205,-440,156r32,-85v98,45,306,77,306,-69v0,-73,-72,-98,-150,-127v-90,-33,-188,-71,-188,-192v0,-185,235,-201,400,-147r-32,85v-37,-16,-74,-35,-136,-35v-93,0,-130,40,-130,97v0,57,58,79,125,103v96,34,213,71,213,214","w":572},"T":{"d":"493,-569r-185,0r0,569r-99,0r0,-569r-185,0r0,-78r469,0r0,78","w":517,"k":{"\u0131":86,"\u00d2":24,"\u00d4":24,"\u00d3":24,"\u00c1":86,"\u00c2":86,"\u00b7":86,"\u00ff":86,"\u0153":86,"\u0152":24,"\u00d5":24,"\u00c3":86,"\u00c0":86,"\u00f8":86,"\u00e6":86,"\u00b5":86,"\u00c6":86,"\u00a2":86,"\u00fc":86,"\u00fb":86,"\u00f9":86,"\u00fa":86,"\u00f5":86,"\u00f6":86,"\u00f4":86,"\u00f2":86,"\u00f3":86,"\u00f1":86,"\u00eb":86,"\u00ea":86,"\u00e8":86,"\u00e9":86,"\u00e7":86,"\u00e5":86,"\u00e3":86,"\u00e4":86,"\u00e2":86,"\u00e0":86,"\u00e1":86,"\u00d6":24,"\u00c7":24,"\u00c5":86,"\u00c4":86,"z":86,"y":86,"x":86,"w":86,"v":86,"u":86,"s":86,"r":86,"q":86,"p":86,"o":86,"n":86,"m":86,"j":24,"i":24,"g":86,"e":86,"d":86,"c":86,"a":86,"Q":24,"O":24,"J":52,"G":24,"C":24,"A":52,"@":24,";":86,":":86,".":86,",":86,"\u017e":86,"\u00fd":86,"\u0161":86}},"U":{"d":"605,-237v0,172,-85,255,-248,255v-181,0,-261,-84,-261,-257r0,-408r100,0r0,398v0,155,61,190,161,190v95,0,148,-49,148,-190r0,-398r100,0r0,410","w":701},"V":{"d":"599,-647r-235,647r-91,0r-244,-647r110,0r182,520r173,-520r105,0","w":628,"k":{"\u0131":52,"\u00d2":24,"\u00d4":24,"\u00d3":24,"\u00c1":52,"\u00c2":86,"\u00ff":24,"\u0153":52,"\u0152":24,"\u00d5":24,"\u00c3":52,"\u00c0":86,"\u00bf":52,"\u00f8":52,"\u00e6":52,"\u00b5":52,"\u00c6":86,"\u00a2":52,"\u00fc":52,"\u00fb":52,"\u00f9":52,"\u00fa":52,"\u00f5":52,"\u00f6":52,"\u00f4":52,"\u00f2":52,"\u00f3":52,"\u00f1":52,"\u00eb":52,"\u00ea":52,"\u00e8":52,"\u00e9":52,"\u00e7":52,"\u00e5":52,"\u00e3":52,"\u00e4":52,"\u00e2":52,"\u00e0":52,"\u00e1":52,"\u00d6":24,"\u00c7":24,"\u00c5":86,"\u00c4":86,"z":24,"y":24,"x":24,"w":24,"v":24,"u":52,"s":52,"r":52,"q":52,"p":24,"o":52,"n":52,"m":52,"j":24,"i":24,"g":52,"e":52,"d":52,"c":52,"a":52,"Q":24,"O":24,"J":52,"G":24,"C":24,"A":86,";":24,":":24,".":52,",":52,"\u017e":24,"\u00fd":24,"\u0161":12}},"W":{"d":"888,-647r-169,647r-121,0r-135,-483r-152,483r-121,0r-155,-647r105,0r123,522r147,-495r120,0r131,496r131,-523r96,0","w":923,"k":{"\u0131":24,"\u00d2":24,"\u00d4":24,"\u00d3":24,"\u00c1":86,"\u00c2":86,"\u0153":24,"\u0152":24,"\u00d5":24,"\u00c3":86,"\u00c0":86,"\u00bf":34,"\u00f8":24,"\u00e6":24,"\u00b5":24,"\u00d8":24,"\u00c6":86,"\u00a2":24,"\u00fc":24,"\u00fb":24,"\u00f9":24,"\u00fa":24,"\u00f5":24,"\u00f6":24,"\u00f4":24,"\u00f2":24,"\u00f3":24,"\u00f1":24,"\u00eb":24,"\u00ea":24,"\u00e8":24,"\u00e9":24,"\u00e7":24,"\u00e5":24,"\u00e3":24,"\u00e4":24,"\u00e2":24,"\u00e0":24,"\u00e1":24,"\u00d6":24,"\u00c7":24,"\u00c5":86,"\u00c4":86,"z":24,"y":24,"x":24,"w":12,"v":12,"u":24,"s":24,"r":24,"q":24,"p":24,"o":24,"n":24,"m":24,"j":16,"i":16,"g":24,"e":24,"d":24,"c":24,"a":24,"Q":24,"O":24,"J":52,"G":24,"C":24,"A":86,";":52,":":52,".":52,",":52,"\u017e":24,"\u00fd":24,"\u0161":24}},"X":{"d":"568,0r-119,0r-149,-256r-162,256r-107,0r216,-334r-190,-313r115,0r134,226r142,-226r107,0r-199,307","w":605,"k":{"\u00d2":24,"\u00d4":24,"\u00d3":24,"\u0152":24,"\u00d5":24,"\u00d6":24,"\u00c7":24,"y":24,"w":24,"v":24,"Q":24,"O":24,"G":24,"C":24,"\u00fd":24}},"Y":{"d":"575,-647r-228,356r0,291r-100,0r0,-287r-232,-360r113,0r173,270r168,-270r106,0","w":590,"k":{"\u00d2":24,"\u00d4":24,"\u00d3":24,"\u00c1":52,"\u00c2":52,"\u0153":24,"\u0152":24,"\u00d5":24,"\u00c3":52,"\u00c0":52,"\u00f8":24,"\u00e6":24,"\u00d8":24,"\u00c6":52,"\u00a2":24,"\u00f5":24,"\u00f6":24,"\u00f4":24,"\u00f2":24,"\u00f3":24,"\u00eb":24,"\u00ea":24,"\u00e8":24,"\u00e9":24,"\u00e7":24,"\u00e5":24,"\u00e3":24,"\u00e4":24,"\u00e2":24,"\u00e0":24,"\u00e1":24,"\u00d6":24,"\u00c7":24,"\u00c5":52,"\u00c4":52,"s":24,"q":24,"o":24,"g":24,"e":24,"d":24,"c":24,"a":24,"O":24,"J":52,"G":24,"C":24,"A":52,".":52,",":52,"\u00fd":24,"\u0161":24}},"Z":{"d":"506,-565r-354,487r346,0r0,78r-426,0r-28,-82r354,-487r-317,0r0,-78r397,0","w":550,"k":{"O":12}},"[":{"d":"242,127r-159,0r0,-803r159,0r0,65r-79,0r0,670r79,0r0,68","w":289},"\\":{"d":"284,11r-79,0r-212,-668r78,0","w":277},"]":{"d":"212,126r-159,0r0,-67r79,0r0,-671r-79,0r0,-65r159,0r0,803","w":289},"^":{"d":"481,-269r-87,0r-138,-295r-138,295r-84,0r181,-378r81,0"},"_":{"d":"501,109r-502,0r0,-68r502,0r0,68","w":500},"`":{"d":"209,-530r-66,0r-124,-117r94,0","w":228},"a":{"d":"440,0r-83,0v0,-4,-15,-45,-16,-50v-24,28,-70,62,-124,62v-104,0,-172,-43,-172,-132v0,-93,53,-162,248,-162r41,0v2,-66,-2,-118,-78,-118v-63,0,-117,19,-161,40r-31,-74v127,-50,360,-71,360,111v0,121,-4,212,16,323xm335,-111r0,-109r-28,0v-126,0,-168,31,-168,96v0,45,38,67,92,67v47,0,85,-23,104,-54","w":501},"b":{"d":"466,-231v0,131,-63,243,-199,243v-56,0,-95,-35,-113,-62r-16,50r-81,0v24,-201,5,-438,11,-657r89,0r0,264v24,-35,65,-76,123,-76v136,0,186,111,186,238xm374,-229v0,-131,-46,-171,-106,-171v-62,0,-94,57,-113,93r0,183v19,42,57,67,100,67v73,0,119,-51,119,-172","w":511},"c":{"d":"415,-19v-35,17,-121,31,-156,31v-145,0,-214,-97,-214,-237v0,-148,67,-244,217,-244v41,0,117,18,150,31r-31,74v-34,-17,-86,-36,-120,-36v-89,0,-124,58,-124,175v0,107,39,168,123,168v31,0,85,-16,124,-36","w":451},"d":{"d":"454,0r-81,0r-16,-50v-21,32,-62,62,-113,62v-145,0,-199,-112,-199,-243v0,-128,61,-238,188,-238v59,0,97,41,121,76r0,-264r89,0r0,517v0,58,4,85,11,140xm356,-124r0,-183v-19,-38,-51,-93,-112,-93v-59,0,-107,42,-107,171v0,121,38,172,119,172v43,0,75,-27,100,-67","w":511},"e":{"d":"454,-194r-314,0v6,85,42,139,121,139v46,0,91,-15,139,-39r29,70v-54,25,-116,36,-176,36v-143,0,-208,-109,-208,-236v0,-106,43,-245,203,-245v162,0,206,102,206,275xm367,-261v-3,-98,-45,-139,-118,-139v-54,0,-105,39,-110,139r228,0","w":501},"f":{"d":"309,-600v-110,15,-146,46,-138,143r104,0r0,69r-104,0r0,388r-89,0r0,-388r-69,0r0,-69r69,0v-16,-149,115,-213,204,-218","w":309},"g":{"d":"490,-470r-25,63r-60,0v21,18,50,61,50,109v0,81,-45,174,-197,174v-21,0,-77,-8,-98,-19v-12,11,-23,21,-23,39v0,24,22,36,137,45v174,14,213,57,213,128v0,96,-110,131,-223,131v-171,0,-226,-51,-226,-128v0,-54,56,-80,85,-90v-37,-16,-62,-45,-62,-82v0,-33,25,-57,49,-77v-13,-16,-49,-54,-49,-121v0,-53,28,-171,195,-171v34,0,55,4,77,10v37,-3,109,-9,157,-11xm362,-300v0,-64,-33,-101,-104,-101v-63,0,-104,36,-104,105v0,68,38,105,105,105v78,0,103,-55,103,-109xm394,69v0,-30,-45,-54,-210,-61v-34,11,-53,38,-53,61v0,40,53,66,133,66v96,0,130,-23,130,-66","w":521},"h":{"d":"441,0r-89,0r0,-287v0,-62,-10,-113,-86,-113v-55,0,-91,51,-109,91r0,309r-89,0r0,-657r89,0r0,264v17,-27,59,-77,123,-77v128,0,161,80,161,179r0,291","w":509},"i":{"d":"162,-559r-96,0r0,-88r96,0r0,88xm159,0r-90,0r0,-457r90,0r0,457","w":228},"j":{"d":"158,-559r-97,0r0,-88r97,0r0,88xm154,-6v0,104,-61,155,-152,184r-30,-75v70,-15,93,-41,93,-100r0,-460r89,0r0,451","w":224},"k":{"d":"450,0r-104,0r-189,-234r0,234r-89,0r0,-657r89,0r0,384r172,-184r97,0r-186,198","w":464,"k":{"o":24}},"l":{"d":"157,0r-89,0r0,-657r89,0r0,657","w":225},"m":{"d":"722,0r-89,0r0,-290v0,-68,-18,-110,-83,-110v-56,0,-96,50,-113,96r0,304r-89,0r0,-290v0,-80,-27,-110,-85,-110v-51,0,-92,56,-106,90r0,310r-89,0v-4,-152,10,-322,-11,-457r81,0r17,65v18,-26,65,-78,123,-78v80,0,113,30,144,83v26,-42,74,-83,140,-83v106,0,160,56,160,178r0,292","w":790},"n":{"d":"441,0r-89,0r0,-289v0,-58,-8,-111,-86,-111v-53,0,-90,49,-109,91r0,309r-89,0v-4,-152,11,-323,-11,-457r81,0r16,64v18,-21,57,-77,125,-77v128,0,162,77,162,182r0,288","w":509},"o":{"d":"472,-231v0,132,-55,244,-213,244v-159,0,-214,-112,-214,-244v0,-126,56,-239,214,-239v159,0,213,107,213,239xm380,-231v0,-112,-32,-169,-121,-169v-84,0,-122,57,-122,169v0,106,32,174,122,174v87,0,121,-63,121,-174","w":517,"k":{"v":24}},"p":{"d":"466,-226v0,127,-57,239,-186,239v-51,0,-98,-27,-123,-62r0,229r-89,0r0,-499v0,-54,-4,-86,-11,-138r81,0r18,64v21,-31,61,-77,118,-77v142,0,192,114,192,244xm374,-228v0,-119,-37,-172,-118,-172v-47,0,-82,46,-100,90r0,186v23,37,53,67,111,67v60,0,107,-42,107,-171","w":511},"q":{"d":"454,-457v-24,195,-5,424,-11,637r-89,0r0,-229v-25,35,-71,62,-122,62v-136,0,-187,-112,-187,-239v0,-130,57,-244,192,-244v57,0,97,46,118,77r18,-64r81,0xm356,-124r0,-186v-18,-44,-55,-90,-102,-90v-78,0,-117,53,-117,172v0,129,47,171,107,171v58,0,89,-30,112,-67","w":511},"r":{"d":"347,-447r-32,75v-17,-11,-38,-28,-69,-28v-56,0,-77,82,-89,110r0,290r-89,0v-4,-147,10,-331,-11,-457r81,0r16,80v16,-31,56,-93,108,-93v36,0,60,8,85,23","w":360,"k":{".":52}},"s":{"d":"388,-124v0,163,-222,155,-348,106r31,-74v53,21,84,35,138,35v68,0,87,-26,87,-66v0,-41,-48,-55,-103,-73v-69,-22,-147,-49,-147,-141v0,-103,94,-133,183,-133v44,0,89,9,152,30r-32,75v-46,-21,-74,-35,-122,-35v-54,0,-89,16,-89,60v0,34,39,47,86,62v73,23,164,47,164,154","w":433},"t":{"d":"300,0r-31,81v-105,-26,-182,-92,-182,-194r0,-275r-74,0r0,-70r74,0r0,-119r90,0r0,119r106,0r0,70r-106,0r0,277v0,62,48,96,123,111","w":312},"u":{"d":"445,0r-81,0r-16,-64v-18,21,-53,77,-121,77v-122,0,-159,-77,-159,-182r0,-288r89,0r0,289v0,57,8,111,83,111v53,0,86,-49,105,-91r0,-309r89,0v4,152,-11,323,11,457","w":502},"v":{"d":"475,-457r-176,457r-84,0r-177,-457r96,0r126,348r123,-348r92,0","w":513,"k":{"\u00c1":24,"\u00c2":24,"\u0153":12,"\u00c3":24,"\u00c0":24,"\u00bf":16,"\u00f8":12,"\u00e6":12,"\u00c6":24,"\u00a2":12,"\u00fa":16,"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00eb":12,"\u00ea":12,"\u00e8":12,"\u00e9":12,"\u00e7":12,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"\u00c5":24,"s":12,"q":12,"o":12,"g":12,"e":12,"d":12,"c":12,"a":12,"Y":24,"T":24,"J":24,"A":24,".":52,",":52,"\u0161":12}},"w":{"d":"720,-457r-153,457r-91,0r-97,-301r-105,301r-93,0r-147,-457r95,0r107,347r104,-305r86,0r98,304r106,-346r90,0","w":754,"k":{"\u00c1":24,"\u00c2":24,"\u0153":12,"\u00c3":24,"\u00c0":24,"\u00bf":16,"\u00f8":12,"\u00e6":12,"\u00c6":24,"\u00a2":12,"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00eb":12,"\u00ea":12,"\u00e8":12,"\u00e9":12,"\u00e7":12,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"\u00c5":24,"\u00c4":24,"s":12,"q":12,"o":12,"g":12,"e":12,"d":12,"c":12,"a":12,"Y":24,"T":24,"J":24,"A":24,".":86,",":86,"\u0161":12}},"x":{"d":"448,0r-103,0r-110,-169r-116,169r-95,0r165,-231r-154,-226r103,0r102,159r106,-159r94,0r-155,219","w":472},"y":{"d":"470,-457r-191,530v-27,75,-67,122,-157,154r-29,-75v105,-25,91,-95,128,-171r-183,-438r96,0r131,335r113,-335r92,0","w":508,"k":{"\u00c1":24,"\u00c2":24,"\u0153":12,"\u00c3":24,"\u00c0":24,"\u00f8":12,"\u00e6":12,"\u00c6":24,"\u00a2":12,"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00eb":12,"\u00ea":12,"\u00e8":12,"\u00e9":12,"\u00e7":12,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"\u00c5":24,"\u00c4":24,"s":12,"q":12,"o":12,"g":12,"e":12,"d":12,"c":12,"a":12,"T":24,"J":24,"A":24,".":52,",":52,"\u0161":12}},"z":{"d":"396,-383r-263,314r249,0r0,69r-320,0r-31,-74r264,-314r-236,0r0,-69r305,0","w":427},"{":{"d":"309,118v-281,-7,-105,-337,-261,-348r0,-71v152,-5,-24,-337,261,-346r0,71v-175,0,-44,250,-181,312v140,51,8,311,181,311r0,71","w":374},"|":{"d":"167,166r-77,0r0,-868r77,0r0,868","w":257},"}":{"d":"326,-230v-156,11,19,341,-262,348r0,-71v173,0,42,-260,182,-311v-137,-62,-7,-312,-182,-312r0,-71v285,9,110,341,262,346r0,71","w":374},"~":{"d":"486,-262v0,66,-50,115,-128,115v-85,0,-150,-85,-191,-85v-44,0,-67,19,-67,75r-73,-38v0,-67,48,-115,126,-115v89,0,154,83,192,83v44,0,69,-19,69,-74"},"\u00c4":{"d":"626,0r-110,0r-64,-183r-248,0r-68,183r-105,0r263,-647r88,0xm427,-258r-94,-273r-101,273r195,0xm455,-683r-84,0r0,-83r84,0r0,83xm300,-683r-84,0r0,-83r84,0r0,83","w":657,"k":{"\u00d2":12,"\u00d3":12,"\u0178":86,"\u00ff":52,"\u0153":12,"\u0152":12,"\u00d5":12,"\u00e6":12,"\u00a2":12,"\u00fc":12,"\u00fb":12,"\u00f9":12,"\u00fa":12,"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00eb":12,"\u00ea":12,"\u00e9":12,"\u00e7":12,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"\u00d6":12,"\u00c7":12,"y":52,"w":52,"v":52,"u":12,"q":12,"o":12,"e":12,"d":12,"c":12,"a":12,"Y":86,"W":86,"V":86,"T":52,"Q":12,"O":8,"G":12,"C":12,"\u00dd":52}},"\u00c5":{"d":"626,0r-110,0r-64,-183r-248,0r-68,183r-105,0r263,-647r88,0xm427,-258r-94,-273r-101,273r195,0xm424,-753v0,46,-37,82,-83,82v-45,0,-83,-37,-83,-82v0,-46,37,-82,83,-82v47,0,83,35,83,82xm385,-754v0,-25,-16,-45,-44,-45v-58,0,-59,89,0,90v30,0,44,-21,44,-45","w":657},"\u00c7":{"d":"521,-12v-54,19,-103,30,-166,31r-2,8v49,0,73,40,73,70v-1,104,-117,114,-216,94r20,-65v32,4,52,7,72,7v24,0,48,-7,48,-34v0,-23,-9,-35,-80,-35r14,-51v-162,-25,-223,-157,-223,-336v0,-180,69,-337,289,-337v56,0,115,10,164,26r-32,85v-42,-18,-84,-33,-132,-33v-142,0,-186,108,-186,258v0,159,44,265,180,265v52,0,93,-17,145,-38","w":559},"\u00c9":{"d":"476,0r-380,0r0,-647r371,0r0,77r-271,0r0,197r250,0r0,77r-250,0r0,219r280,0r0,77xm374,-794r-125,117r-65,0r96,-117r94,0","w":559},"\u00d1":{"d":"605,0r-148,0r-267,-529r0,529r-94,0r0,-647r146,0r265,529r0,-529r98,0r0,647xm493,-755v-14,44,-52,74,-98,74v-45,0,-67,-42,-98,-42v-28,0,-43,21,-49,41r-51,-24v24,-54,50,-70,101,-70v39,0,65,41,95,41v26,0,43,-26,48,-43","w":701},"\u00d6":{"d":"642,-321v0,192,-74,339,-289,339v-224,0,-292,-146,-292,-339v0,-191,77,-338,293,-338v216,0,288,141,288,338xm539,-321v0,-172,-51,-261,-186,-261v-136,0,-189,90,-189,261v0,175,52,262,189,262v140,0,186,-99,186,-262xm472,-682r-84,0r0,-83r84,0r0,83xm317,-682r-84,0r0,-83r84,0r0,83","w":703},"\u00dc":{"d":"605,-237v0,172,-85,255,-248,255v-181,0,-261,-84,-261,-257r0,-408r100,0r0,398v0,155,61,190,161,190v95,0,148,-49,148,-190r0,-398r100,0r0,410xm475,-683r-84,0r0,-83r84,0r0,83xm320,-683r-84,0r0,-83r84,0r0,83","w":701},"\u00e1":{"d":"440,0r-83,0v0,-4,-15,-45,-16,-50v-24,28,-70,62,-124,62v-104,0,-172,-43,-172,-132v0,-93,53,-162,248,-162r41,0v2,-66,-2,-118,-78,-118v-63,0,-117,19,-161,40r-31,-74v127,-50,360,-71,360,111v0,121,-4,212,16,323xm335,-111r0,-109r-28,0v-126,0,-168,31,-168,96v0,45,38,67,92,67v47,0,85,-23,104,-54xm352,-647r-125,117r-65,0r96,-117r94,0","w":501},"\u00e0":{"d":"440,0r-83,0v0,-4,-15,-45,-16,-50v-24,28,-70,62,-124,62v-104,0,-172,-43,-172,-132v0,-93,53,-162,248,-162r41,0v2,-66,-2,-118,-78,-118v-63,0,-117,19,-161,40r-31,-74v127,-50,360,-71,360,111v0,121,-4,212,16,323xm335,-111r0,-109r-28,0v-126,0,-168,31,-168,96v0,45,38,67,92,67v47,0,85,-23,104,-54xm300,-530r-66,0r-124,-117r94,0","w":501},"\u00e2":{"d":"440,0r-83,0v0,-4,-15,-45,-16,-50v-24,28,-70,62,-124,62v-104,0,-172,-43,-172,-132v0,-93,53,-162,248,-162r41,0v2,-66,-2,-118,-78,-118v-63,0,-117,19,-161,40r-31,-74v127,-50,360,-71,360,111v0,121,-4,212,16,323xm335,-111r0,-109r-28,0v-126,0,-168,31,-168,96v0,45,38,67,92,67v47,0,85,-23,104,-54xm361,-533r-69,0r-57,-68r-60,68r-68,0r94,-114r68,0","w":501},"\u00e4":{"d":"440,0r-83,0v0,-4,-15,-45,-16,-50v-24,28,-70,62,-124,62v-104,0,-172,-43,-172,-132v0,-93,53,-162,248,-162r41,0v2,-66,-2,-118,-78,-118v-63,0,-117,19,-161,40r-31,-74v127,-50,360,-71,360,111v0,121,-4,212,16,323xm335,-111r0,-109r-28,0v-126,0,-168,31,-168,96v0,45,38,67,92,67v47,0,85,-23,104,-54xm367,-535r-85,0r0,-89r85,0r0,89xm210,-535r-84,0r0,-89r84,0r0,89","w":501},"\u00e3":{"d":"440,0r-83,0v0,-4,-15,-45,-16,-50v-24,28,-70,62,-124,62v-104,0,-172,-43,-172,-132v0,-93,53,-162,248,-162r41,0v2,-66,-2,-118,-78,-118v-63,0,-117,19,-161,40r-31,-74v127,-50,360,-71,360,111v0,121,-4,212,16,323xm335,-111r0,-109r-28,0v-126,0,-168,31,-168,96v0,45,38,67,92,67v47,0,85,-23,104,-54xm384,-600v-14,44,-52,74,-98,74v-45,0,-67,-42,-98,-42v-28,0,-43,21,-49,41r-51,-24v24,-54,50,-70,101,-70v39,0,65,41,95,41v26,0,43,-26,51,-43","w":501},"\u00e5":{"d":"440,0r-83,0v0,-4,-15,-45,-16,-50v-24,28,-70,62,-124,62v-104,0,-172,-43,-172,-132v0,-93,53,-162,248,-162r41,0v2,-66,-2,-118,-78,-118v-63,0,-117,19,-161,40r-31,-74v127,-50,360,-71,360,111v0,121,-4,212,16,323xm335,-111r0,-109r-28,0v-126,0,-168,31,-168,96v0,45,38,67,92,67v47,0,85,-23,104,-54xm323,-589v0,46,-37,82,-83,82v-45,0,-83,-37,-83,-82v0,-46,37,-82,83,-82v47,0,83,35,83,82xm284,-590v0,-25,-16,-45,-44,-45v-58,0,-59,89,0,90v30,0,44,-21,44,-45","w":501},"\u00e7":{"d":"400,-17v-29,13,-82,24,-120,28r-4,18v49,0,71,39,71,68v-1,101,-115,115,-214,94r16,-62v32,4,56,7,76,7v24,0,51,-10,51,-37v0,-23,-12,-35,-83,-35r15,-57v-108,-20,-163,-110,-163,-232v0,-148,71,-243,217,-243v41,0,104,16,135,28r-27,77v-34,-20,-75,-36,-109,-36v-88,0,-124,57,-124,174v0,107,42,167,123,167v32,0,74,-15,114,-37","w":441},"\u00e9":{"d":"454,-194r-314,0v6,85,42,139,121,139v46,0,91,-15,139,-39r29,70v-54,25,-116,36,-176,36v-143,0,-208,-109,-208,-236v0,-106,43,-245,203,-245v162,0,206,102,206,275xm367,-261v-3,-98,-45,-139,-118,-139v-54,0,-105,39,-110,139r228,0xm366,-647r-125,117r-65,0r96,-117r94,0","w":501},"\u00e8":{"d":"454,-194r-314,0v6,85,42,139,121,139v46,0,91,-15,139,-39r29,70v-54,25,-116,36,-176,36v-143,0,-208,-109,-208,-236v0,-106,43,-245,203,-245v162,0,206,102,206,275xm367,-261v-3,-98,-45,-139,-118,-139v-54,0,-105,39,-110,139r228,0xm313,-530r-66,0r-124,-117r94,0","w":501},"\u00ea":{"d":"454,-194r-314,0v6,85,42,139,121,139v46,0,91,-15,139,-39r29,70v-54,25,-116,36,-176,36v-143,0,-208,-109,-208,-236v0,-106,43,-245,203,-245v162,0,206,102,206,275xm367,-261v-3,-98,-45,-139,-118,-139v-54,0,-105,39,-110,139r228,0xm381,-533r-69,0r-57,-68r-60,68r-68,0r94,-114r68,0","w":501},"\u00eb":{"d":"454,-194r-314,0v6,85,42,139,121,139v46,0,91,-15,139,-39r29,70v-54,25,-116,36,-176,36v-143,0,-208,-109,-208,-236v0,-106,43,-245,203,-245v162,0,206,102,206,275xm367,-261v-3,-98,-45,-139,-118,-139v-54,0,-105,39,-110,139r228,0xm377,-544r-84,0r0,-83r84,0r0,83xm222,-544r-84,0r0,-83r84,0r0,83","w":501},"\u00ed":{"d":"209,-647r-125,117r-65,0r96,-117r94,0xm159,0r-90,0r0,-457r90,0r0,457","w":228},"\u00ec":{"d":"199,-530r-66,0r-124,-117r94,0xm159,0r-90,0r0,-457r90,0r0,457","w":228},"\u00ee":{"d":"158,0r-90,0r0,-457r90,0r0,457xm246,-533r-69,0r-57,-68r-60,68r-68,0r94,-114r68,0","w":228},"\u00ef":{"d":"233,-563r-84,0r0,-83r84,0r0,83xm78,-563r-84,0r0,-83r84,0r0,83xm159,0r-90,0r0,-457r90,0r0,457","w":228},"\u00f1":{"d":"441,0r-89,0r0,-289v0,-58,-8,-111,-86,-111v-53,0,-90,49,-109,91r0,309r-89,0v-4,-152,11,-323,-11,-457r81,0r16,64v18,-21,57,-77,125,-77v128,0,162,77,162,182r0,288xm402,-600v-14,44,-52,74,-98,74v-45,0,-67,-42,-98,-42v-28,0,-43,21,-49,41r-51,-24v24,-54,50,-70,101,-70v39,0,65,41,95,41v26,0,43,-26,50,-43","w":509},"\u00f3":{"d":"472,-231v0,132,-55,244,-213,244v-159,0,-214,-112,-214,-244v0,-126,56,-239,214,-239v159,0,213,107,213,239xm380,-231v0,-112,-32,-169,-121,-169v-84,0,-122,57,-122,169v0,106,32,174,122,174v87,0,121,-63,121,-174xm368,-647r-125,117r-65,0r96,-117r94,0","w":517},"\u00f2":{"d":"472,-231v0,132,-55,244,-213,244v-159,0,-214,-112,-214,-244v0,-126,56,-239,214,-239v159,0,213,107,213,239xm380,-231v0,-112,-32,-169,-121,-169v-84,0,-122,57,-122,169v0,106,32,174,122,174v87,0,121,-63,121,-174xm335,-530r-66,0r-124,-117r94,0","w":517},"\u00f4":{"d":"472,-231v0,132,-55,244,-213,244v-159,0,-214,-112,-214,-244v0,-126,56,-239,214,-239v159,0,213,107,213,239xm380,-231v0,-112,-32,-169,-121,-169v-84,0,-122,57,-122,169v0,106,32,174,122,174v87,0,121,-63,121,-174xm387,-533r-69,0r-57,-68r-60,68r-68,0r94,-114r68,0","w":517},"\u00f6":{"d":"472,-231v0,132,-55,244,-213,244v-159,0,-214,-112,-214,-244v0,-126,56,-239,214,-239v159,0,213,107,213,239xm380,-231v0,-112,-32,-169,-121,-169v-84,0,-122,57,-122,169v0,106,32,174,122,174v87,0,121,-63,121,-174xm378,-544r-84,0r0,-83r84,0r0,83xm223,-544r-84,0r0,-83r84,0r0,83","w":517},"\u00f5":{"d":"472,-231v0,132,-55,244,-213,244v-159,0,-214,-112,-214,-244v0,-126,56,-239,214,-239v159,0,213,107,213,239xm380,-231v0,-112,-32,-169,-121,-169v-84,0,-122,57,-122,169v0,106,32,174,122,174v87,0,121,-63,121,-174xm398,-600v-14,44,-52,74,-98,74v-45,0,-67,-42,-98,-42v-28,0,-43,21,-49,41r-51,-24v24,-54,50,-70,101,-70v39,0,65,41,95,41v26,0,43,-26,48,-43","w":517},"\u00fa":{"d":"445,0r-81,0r-16,-64v-18,21,-53,77,-121,77v-122,0,-159,-77,-159,-182r0,-288r89,0r0,289v0,57,8,111,83,111v53,0,86,-49,105,-91r0,-309r89,0v4,152,-11,323,11,457xm359,-647r-125,117r-65,0r96,-117r94,0","w":502},"\u00f9":{"d":"322,-530r-66,0r-124,-117r94,0xm445,0r-81,0r-16,-64v-18,21,-53,77,-121,77v-122,0,-159,-77,-159,-182r0,-288r89,0r0,289v0,57,8,111,83,111v53,0,86,-49,105,-91r0,-309r89,0v4,152,-11,323,11,457","w":502},"\u00fb":{"d":"445,0r-81,0r-16,-64v-18,21,-53,77,-121,77v-122,0,-159,-77,-159,-182r0,-288r89,0r0,289v0,57,8,111,83,111v53,0,86,-49,105,-91r0,-309r89,0v4,152,-11,323,11,457xm377,-533r-69,0r-57,-68r-60,68r-68,0r94,-114r68,0","w":502},"\u00fc":{"d":"445,0r-81,0r-16,-64v-18,21,-53,77,-121,77v-122,0,-159,-77,-159,-182r0,-288r89,0r0,289v0,57,8,111,83,111v53,0,86,-49,105,-91r0,-309r89,0v4,152,-11,323,11,457xm370,-544r-84,0r0,-83r78,0xm215,-544r-84,0r0,-83r84,0r0,83","w":502},"\u2020":{"d":"477,-333r-180,0r0,513r-80,0r0,-513r-180,0r0,-70r180,0r0,-217r80,0r0,217r180,0r0,70"},"\u00b0":{"d":"364,-458v0,90,-74,154,-160,154v-86,0,-157,-64,-157,-154v0,-90,72,-157,158,-157v86,0,159,67,159,157xm299,-458v0,-56,-40,-97,-94,-97v-54,0,-95,41,-95,97v0,52,44,93,94,93v50,0,95,-41,95,-93","w":410},"\u00a2":{"d":"405,-19v-26,13,-74,23,-112,28r0,91r-74,0r0,-91v-118,-16,-174,-108,-174,-234v0,-133,54,-224,174,-241r0,-93r74,0r0,93v39,5,83,18,109,28r-31,74v-24,-12,-52,-24,-78,-30r0,332v26,-6,54,-17,81,-31xm219,-65r0,-329v-59,16,-82,75,-82,169v0,85,25,143,82,160","w":441},"\u00a3":{"d":"491,0r-438,0r0,-80r66,0r0,-235r-73,0r0,-71r73,0v-8,-223,144,-270,282,-286r27,84v-104,10,-209,13,-209,183r0,19r162,0r0,71r-162,0r0,235r272,0r0,80"},"\u00a7":{"d":"407,-315v0,48,-24,82,-58,101v27,22,39,53,39,93v-2,159,-217,157,-335,106r31,-75v43,18,71,36,124,36v68,0,87,-26,87,-66v0,-97,-248,-45,-248,-212v0,-54,25,-88,62,-106v-26,-19,-46,-48,-46,-88v0,-103,93,-133,182,-133v43,0,89,12,139,30r-31,74v-36,-18,-61,-34,-107,-34v-54,0,-90,16,-90,60v0,86,251,40,251,214xm315,-314v0,-52,-59,-64,-124,-85v-34,8,-52,29,-52,65v0,45,72,56,135,78v31,-13,41,-32,41,-58","w":454},"\u2022":{"d":"392,-324v0,75,-59,136,-135,136v-77,0,-135,-59,-135,-136v0,-76,60,-135,135,-135v76,0,135,59,135,135"},"\u00b6":{"d":"500,188r-80,0r0,-764r-100,0v-61,0,-109,39,-109,118v0,62,53,105,98,117r0,529r-79,0r0,-472v-128,-15,-170,-106,-170,-181v0,-69,26,-182,188,-182r252,0r0,835","w":540},"\u00df":{"d":"469,-132v0,163,-140,209,-267,209r30,-77v89,0,146,-48,146,-134v0,-119,-110,-151,-166,-167r0,-71v31,-20,105,-64,105,-138v0,-55,-43,-78,-82,-78v-49,0,-78,22,-78,106r0,482r-89,0r0,-471v0,-126,56,-186,167,-186v84,0,173,35,173,150v0,102,-98,147,-123,164v53,22,184,56,184,211","w":516},"\u00ae":{"d":"695,-324v0,188,-148,334,-335,334v-187,0,-335,-146,-335,-334v0,-188,148,-334,335,-334v190,0,335,144,335,334xm636,-324v0,-154,-120,-281,-276,-281v-157,0,-276,126,-276,281v0,153,123,281,276,281v153,0,276,-128,276,-281xm519,-129r-75,0r-128,-167r-26,0r0,167r-62,0r0,-390v126,3,267,-28,267,110v0,54,-26,103,-106,111xm432,-409v0,-38,-20,-60,-65,-60r-77,0r0,125r78,0v47,0,64,-28,64,-65","w":720},"\u00a9":{"d":"695,-324v0,188,-148,334,-335,334v-187,0,-335,-146,-335,-334v0,-188,148,-334,335,-334v190,0,335,144,335,334xm636,-324v0,-154,-120,-281,-276,-281v-157,0,-276,126,-276,281v0,153,123,281,276,281v153,0,276,-128,276,-281xm467,-136v-35,12,-66,18,-108,18v-127,0,-175,-84,-175,-204v0,-108,44,-201,178,-201v35,0,71,5,101,15r-20,53v-26,-11,-51,-20,-81,-20v-87,0,-114,64,-114,152v0,94,27,157,110,157v32,0,58,-10,90,-23","w":720},"\u2122":{"d":"820,-291r-59,0r0,-296r-121,296r-57,0r-121,-296r0,296r-58,0r0,-356r97,0r113,279r114,-279r92,0r0,356xm356,-602r-110,0r0,311r-61,0r0,-311r-110,0r0,-45r281,0r0,45","w":914},"\u00b4":{"d":"209,-647r-125,117r-65,0r96,-117r94,0","w":228},"\u00a8":{"d":"233,-564r-84,0r0,-83r84,0r0,83xm78,-564r-84,0r0,-83r84,0r0,83","w":228},"\u2260":{"d":"474,-83r-242,0r-76,144r-68,-38r56,-106r-104,0r0,-72r143,0r53,-101r-196,0r0,-72r234,0r79,-149r68,38r-59,111r112,0r0,72r-150,0r-54,101r204,0r0,72"},"\u00c6":{"d":"861,0r-345,0r-30,-183r-242,0r-100,183r-113,0r367,-647r454,0r0,77r-337,0r35,197r281,0r0,77r-267,0r39,219r258,0r0,77xm475,-258r-44,-272r-147,272r191,0","w":944},"\u00d8":{"d":"676,-637r-82,96v34,58,48,133,48,220v0,192,-74,339,-289,339v-82,0,-143,-21,-187,-57r-85,100r-65,-60r90,-106v-33,-58,-45,-132,-45,-216v0,-191,77,-338,293,-338v78,0,137,19,180,52r76,-90xm476,-539v-29,-28,-69,-43,-123,-43v-136,0,-189,90,-189,261v0,50,4,95,15,131xm539,-321v0,-53,-5,-98,-17,-135r-298,350v29,31,71,47,129,47v140,0,186,-99,186,-262","w":703},"\u221e":{"d":"691,-226v0,80,-48,159,-164,159v-69,0,-124,-55,-155,-100v-37,48,-86,100,-156,100v-114,0,-163,-78,-163,-159v0,-81,53,-159,165,-159v70,0,119,46,155,96v40,-49,82,-96,156,-96v119,0,162,75,162,159xm603,-226v0,-50,-27,-90,-74,-90v-44,0,-82,48,-112,88v28,41,64,92,110,92v46,0,76,-38,76,-90xm328,-228v-25,-39,-68,-88,-110,-88v-47,0,-78,38,-78,90v0,52,37,90,76,90v41,0,84,-52,112,-92","w":744},"\u00b1":{"d":"470,-242r-173,0r0,122r-80,0r0,-122r-173,0r0,-71r173,0r0,-115r80,0r0,115r173,0r0,71xm474,-1r-434,0r0,-71r434,0r0,71"},"\u2264":{"d":"474,-95r-434,-126r0,-97r434,-127r0,89r-341,87r341,84r0,90xm474,-1r-434,0r0,-71r434,0r0,71"},"\u2265":{"d":"474,-221r-434,126r0,-90r340,-84r-340,-87r0,-89r434,127r0,97xm474,-1r-434,0r0,-71r434,0r0,71"},"\u00a5":{"d":"511,-647r-187,328r120,0r0,70r-136,0r0,61r136,0r0,71r-136,0r0,117r-100,0r0,-117r-135,0r0,-71r135,0r0,-61r-135,0r0,-70r118,0r-188,-328r111,0r148,270r145,-270r104,0"},"\u00b5":{"d":"451,0r-81,0r-16,-64v-18,21,-53,77,-121,77v-29,0,-54,-9,-70,-22r0,189r-89,0r0,-637r89,0r0,289v0,57,8,111,83,111v53,0,86,-59,105,-101r0,-299r89,0v4,152,-11,323,11,457"},"\u03bc":{"d":"451,0r-81,0r-16,-64v-18,21,-53,77,-121,77v-29,0,-54,-9,-70,-22r0,189r-89,0r0,-637r89,0r0,289v0,57,8,111,83,111v53,0,86,-59,105,-101r0,-299r89,0v4,152,-11,323,11,457"},"\u2202":{"d":"469,-283v0,148,-38,299,-220,299v-115,0,-204,-87,-204,-204v0,-133,65,-214,197,-214v45,0,106,30,134,87v0,-124,-52,-231,-167,-231v-38,0,-67,11,-99,26r-31,-83v41,-11,98,-18,135,-18v181,0,255,178,255,338xm367,-239v-14,-36,-46,-88,-120,-88v-91,0,-101,76,-101,139v0,85,44,129,102,129v73,0,119,-36,119,-180"},"\u2211":{"d":"495,180r-465,0r0,-59r279,-384r-266,-380r0,-59r441,0r0,69r-340,0r259,370r-274,374r366,0r0,69"},"\u220f":{"d":"494,180r-80,0r0,-815r-314,0r0,815r-80,0r0,-882r474,0r0,882"},"\u03c0":{"d":"498,0r-18,65v-87,-17,-153,-60,-153,-161r0,-290r-145,0r0,386r-78,0r0,-386r-81,0r0,-71r456,0r0,71r-74,0r0,286v0,62,19,89,93,100"},"\u222b":{"d":"394,-664v-75,13,-95,39,-95,100r0,554v0,113,-84,152,-157,167r-23,-71v71,-14,95,-39,95,-100r0,-554v0,-121,87,-154,160,-167"},"\u00aa":{"d":"379,-391r-55,0v0,-2,-10,-25,-10,-28v-34,54,-188,43,-178,-38v-8,-57,59,-98,174,-92v1,-36,-3,-57,-47,-57v-38,0,-71,9,-97,21r-18,-45v75,-27,222,-38,221,61v0,67,-3,118,10,178xm310,-460r0,-48v-69,-2,-114,8,-114,49v0,25,21,32,52,32v28,0,50,-16,62,-33"},"\u00ba":{"d":"388,-528v0,72,-35,134,-130,134v-95,0,-131,-61,-131,-134v0,-70,36,-131,131,-131v96,0,130,58,130,131xm328,-528v0,-62,-21,-88,-70,-88v-46,0,-72,26,-72,88v0,58,21,92,72,92v46,0,70,-31,70,-92"},"\u03a9":{"d":"643,-360v0,113,-44,230,-162,266r0,28r140,0r0,66r-224,0r0,-135v110,-19,141,-104,141,-226v0,-170,-88,-221,-184,-221v-90,0,-186,45,-186,222v0,124,33,210,142,225r0,135r-225,0r0,-66r141,0r0,-28v-116,-35,-162,-153,-162,-264v0,-189,107,-301,289,-301v183,0,290,113,290,299","w":707},"\u2126":{"d":"643,-360v0,113,-44,230,-162,266r0,28r140,0r0,66r-224,0r0,-135v110,-19,141,-104,141,-226v0,-170,-88,-221,-184,-221v-90,0,-186,45,-186,222v0,124,33,210,142,225r0,135r-225,0r0,-66r141,0r0,-28v-116,-35,-162,-153,-162,-264v0,-189,107,-301,289,-301v183,0,290,113,290,299","w":707},"\u00e6":{"d":"740,-194r-315,0v6,85,42,139,121,139v46,0,91,-15,139,-39r29,70v-54,25,-116,36,-176,36v-83,0,-140,-40,-161,-87v-39,51,-89,87,-160,87v-104,0,-172,-43,-172,-132v0,-93,53,-162,248,-162r42,0v2,-66,-3,-118,-79,-118v-63,0,-117,19,-161,40r-31,-74v100,-38,278,-65,331,30v29,-36,73,-65,138,-65v162,0,207,102,207,275xm650,-261v-3,-98,-43,-139,-116,-139v-54,0,-104,39,-109,139r225,0xm336,-122r0,-94r-29,0v-126,0,-168,27,-168,92v0,45,38,67,92,67v47,0,86,-34,105,-65","w":787},"\u00f8":{"d":"502,-430r-57,62v63,161,25,381,-186,381v-55,0,-98,-14,-130,-38r-54,58r-60,-59r59,-64v-66,-159,-29,-380,185,-380v56,0,98,15,129,39r53,-58xm335,-373v-17,-17,-42,-27,-76,-27v-84,0,-122,57,-122,169v0,24,2,46,7,65xm259,-57v107,0,134,-119,116,-235r-192,208v18,17,43,27,76,27","w":517},"\u00bf":{"d":"309,-550r-100,0r0,-97r100,0r0,97xm404,-20v-43,15,-115,30,-163,30v-88,0,-190,-21,-190,-160v0,-119,163,-142,163,-241r0,-86r91,0r0,91v0,136,-158,147,-158,236v0,122,164,83,239,48","w":435},"\u00a1":{"d":"179,-550r-100,0r0,-97r100,0r0,97xm173,0r-89,0r0,-471r89,0r0,471","w":257},"\u00ac":{"d":"484,-98r-80,0r0,-176r-379,0r0,-71r459,0r0,247"},"\u221a":{"d":"509,-747r-184,874r-117,0r-129,-309r-60,0r0,-70r123,0r118,295r169,-790r80,0"},"\u0192":{"d":"414,-588v-94,7,-117,53,-125,131r84,0r-10,62r-84,0r-100,575r-81,0r99,-575r-69,0r11,-62r69,0r8,-48v20,-118,116,-145,193,-160"},"\u2248":{"d":"486,-337v0,66,-50,115,-128,115v-85,0,-150,-84,-191,-84v-44,0,-67,18,-67,74r-73,-38v0,-67,48,-115,126,-115v89,0,154,83,192,83v44,0,69,-18,69,-73xm486,-147v0,66,-50,115,-128,115v-85,0,-150,-84,-191,-84v-44,0,-67,18,-67,74r-73,-38v0,-67,48,-115,126,-115v89,0,154,83,192,83v44,0,69,-18,69,-73"},"\u0394":{"d":"690,0r-636,0r279,-647r78,0xm578,-70r-205,-490r-205,490r410,0","w":744},"\u2206":{"d":"690,0r-636,0r279,-647r78,0xm578,-70r-205,-490r-205,490r410,0","w":744},"\u00ab":{"d":"361,-452r-97,180r96,180r-84,0r-93,-178r93,-182r85,0xm205,-452r-97,180r96,180r-83,0r-93,-178r93,-182r84,0","w":387},"\u00bb":{"d":"360,-270r-93,178r-84,0r96,-180r-97,-180r85,0xm204,-270r-93,178r-83,0r96,-180r-97,-180r84,0","w":387},"\u2026":{"d":"691,0r-98,0r0,-96r98,0r0,96xm435,0r-99,0r0,-96r99,0r0,96xm178,0r-99,0r0,-96r99,0r0,96","w":770},"\u00a0":{"w":257},"\u00c0":{"d":"626,0r-110,0r-64,-183r-248,0r-68,183r-105,0r263,-647r88,0xm427,-258r-94,-273r-101,273r195,0xm433,-688r-66,0r-124,-117r90,0","w":657},"\u00c3":{"d":"626,0r-110,0r-64,-183r-248,0r-68,183r-105,0r263,-647r88,0xm427,-258r-94,-273r-101,273r195,0xm487,-756v-14,44,-52,74,-98,74v-45,0,-67,-42,-98,-42v-28,0,-43,21,-49,41r-51,-24v24,-54,50,-70,101,-70v39,0,65,41,95,41v26,0,43,-26,48,-43","w":657},"\u00d5":{"d":"642,-321v0,192,-74,339,-289,339v-224,0,-292,-146,-292,-339v0,-191,77,-338,293,-338v216,0,288,141,288,338xm539,-321v0,-172,-51,-261,-186,-261v-136,0,-189,90,-189,261v0,175,52,262,189,262v140,0,186,-99,186,-262xm503,-755v-14,44,-52,74,-98,74v-45,0,-67,-42,-98,-42v-28,0,-43,21,-49,41r-51,-24v24,-54,50,-70,101,-70v39,0,65,41,95,41v26,0,43,-26,48,-43","w":703},"\u0152":{"d":"893,0r-426,0v-33,12,-69,18,-114,18v-224,0,-292,-146,-292,-339v0,-191,77,-338,293,-338v37,0,68,4,97,12r433,0r0,77r-318,0v42,47,59,120,64,197r233,0r0,77r-232,0v-2,85,-21,166,-64,219r326,0r0,77xm529,-321v0,-172,-42,-261,-176,-261v-136,0,-189,90,-189,261v0,175,52,262,189,262v138,0,176,-99,176,-262","w":976},"\u0153":{"d":"785,-194r-314,0v6,85,42,139,121,139v46,0,91,-15,139,-39r29,70v-54,25,-116,36,-176,36v-77,0,-127,-34,-158,-84v-31,51,-83,85,-167,85v-159,0,-214,-112,-214,-244v0,-126,56,-239,214,-239v85,0,137,33,167,83v28,-47,76,-82,153,-82v162,0,206,102,206,275xm696,-261v-3,-98,-43,-139,-116,-139v-54,0,-105,39,-110,139r226,0xm380,-231v0,-112,-32,-169,-121,-169v-84,0,-122,57,-122,169v0,106,32,174,122,174v87,0,121,-63,121,-174","w":832},"\u2013":{"d":"501,-203r-502,0r0,-72r502,0r0,72","w":500},"\u2014":{"d":"1001,-197r-1002,0r0,-78r1002,0r0,78","w":1000},"\u201c":{"d":"347,-648r-85,188r-77,0r98,-188r64,0xm202,-648r-85,188r-77,0r99,-188r63,0","w":387},"\u201d":{"d":"347,-648r-99,188r-64,0r85,-188r78,0xm202,-648r-98,188r-64,0r85,-188r77,0","w":387},"\u2018":{"d":"207,-648r-85,188r-77,0r99,-188r63,0","w":257},"\u2019":{"d":"208,-648r-97,188r-64,0r84,-188r77,0","w":257},"\u00f7":{"d":"307,-336r-99,0r0,-96r99,0r0,96xm474,-187r-434,0r0,-65r434,0r0,65xm307,-12r-99,0r0,-96r99,0r0,96"},"\u25ca":{"d":"466,-313r-169,350r-83,0r-166,-350r166,-348r84,0xm388,-313r-132,-287r-131,287r131,287"},"\u00ff":{"d":"470,-457r-191,530v-27,75,-67,122,-157,154r-29,-75v105,-25,91,-95,128,-171r-183,-438r96,0r131,335r113,-335r92,0xm383,-547r-84,0r0,-83r84,0r0,83xm228,-547r-84,0r0,-83r84,0r0,83","w":508},"\u0178":{"d":"575,-647r-228,356r0,291r-100,0r0,-287r-232,-360r113,0r173,270r168,-270r106,0xm421,-718r-82,0r0,-84r82,0r0,84xm269,-718r-83,0r0,-84r83,0r0,84","w":590},"\u2044":{"d":"318,-629r-363,629r-80,0r362,-629r81,0","w":194},"\u00a4":{"d":"537,-633r-26,84v-40,-18,-88,-33,-139,-33v-102,0,-145,60,-163,149r268,0r-24,77r-254,0r0,57r238,0r-24,77r-207,0v15,99,58,163,160,163v52,0,97,-21,149,-42r0,95v-42,14,-80,24,-148,24v-166,0,-242,-95,-264,-240r-104,0r24,-77r73,0v0,-19,-2,-39,0,-57r-97,0r24,-77r83,0v24,-129,98,-226,266,-226v54,0,116,10,165,26"},"\u2039":{"d":"219,-452r-97,180r96,180r-83,0r-93,-178r93,-182r84,0","w":257},"\u203a":{"d":"222,-270r-93,178r-83,0r96,-180r-97,-180r84,0","w":257},"\ufb01":{"d":"428,-559r-95,0r0,-88r95,0r0,88xm425,0r-89,0r0,-457r89,0r0,457xm284,-590v-90,15,-121,42,-113,133r84,0r0,69r-84,0r0,388r-89,0r0,-388r-69,0r0,-69r69,0v-14,-140,91,-196,172,-208","w":494},"\ufb02":{"d":"427,0r-89,0r0,-657r89,0r0,657xm284,-590v-90,15,-121,42,-113,133r84,0r0,69r-84,0r0,388r-89,0r0,-388r-69,0r0,-69r69,0v-14,-140,91,-196,172,-208","w":494},"\u2021":{"d":"477,-160r-180,0r0,160r-80,0r0,-160r-180,0r0,-71r180,0r0,-189r-180,0r0,-70r180,0r0,-157r80,0r0,157r180,0r0,70r-180,0r0,189r180,0r0,71"},"\u00b7":{"d":"177,-228r-97,0r0,-99r97,0r0,99","w":257},"\u201a":{"d":"208,-100r-97,188r-64,0r84,-188r77,0","w":257},"\u201e":{"d":"347,-100r-99,188r-64,0r85,-188r78,0xm202,-100r-98,188r-64,0r85,-188r77,0","w":387},"\u2030":{"d":"1056,-166v0,98,-26,178,-137,178v-110,0,-134,-80,-134,-178v0,-96,33,-172,135,-172v110,0,136,74,136,172xm722,-166v0,98,-25,178,-136,178v-110,0,-134,-80,-134,-178v0,-96,33,-172,135,-172v110,0,135,74,135,172xm601,-629r-363,629r-80,0r362,-629r81,0xm319,-487v0,98,-26,178,-137,178v-110,0,-134,-80,-134,-178v0,-96,33,-172,135,-172v110,0,136,74,136,172xm991,-166v0,-75,-8,-125,-71,-125v-61,0,-69,62,-69,125v0,76,6,131,68,131v63,0,72,-57,72,-131xm658,-166v0,-75,-8,-125,-71,-125v-61,0,-70,62,-70,125v0,76,7,131,69,131v63,0,72,-57,72,-131xm254,-487v0,-75,-8,-125,-71,-125v-61,0,-69,62,-69,125v0,76,6,131,68,131v63,0,72,-57,72,-131","w":1104},"\u00c2":{"d":"626,0r-110,0r-64,-183r-248,0r-68,183r-105,0r263,-647r88,0xm427,-258r-94,-273r-101,273r195,0xm462,-696r-69,0r-57,-68r-60,68r-68,0r94,-114r68,0","w":657},"\u00ca":{"d":"476,0r-380,0r0,-647r371,0r0,77r-271,0r0,197r250,0r0,77r-250,0r0,219r280,0r0,77xm409,-690r-69,0r-57,-68r-60,68r-68,0r94,-114r68,0","w":559},"\u00c1":{"d":"626,0r-110,0r-64,-183r-248,0r-68,183r-105,0r263,-647r88,0xm427,-258r-94,-273r-101,273r195,0xm433,-804r-125,117r-65,0r96,-117r94,0","w":657},"\u00cb":{"d":"476,0r-380,0r0,-647r371,0r0,77r-271,0r0,197r250,0r0,77r-250,0r0,219r280,0r0,77xm408,-683r-84,0r0,-83r84,0r0,83xm253,-683r-84,0r0,-83r84,0r0,83","w":559},"\u00c8":{"d":"476,0r-380,0r0,-647r371,0r0,77r-271,0r0,197r250,0r0,77r-250,0r0,219r280,0r0,77xm364,-688r-66,0r-124,-117r94,0","w":559},"\u00cd":{"d":"185,0r-100,0r0,-647r100,0r0,647xm234,-809r-125,117r-65,0r96,-117r94,0","w":269},"\u00ce":{"d":"184,0r-100,0r0,-647r100,0r0,647xm261,-692r-69,0r-57,-68r-60,68r-68,0r94,-114r68,0","w":269},"\u00cf":{"d":"184,0r-100,0r0,-647r100,0r0,647xm254,-709r-84,0r0,-83r84,0r0,83xm99,-709r-84,0r0,-83r84,0r0,83","w":268},"\u00cc":{"d":"184,0r-100,0r0,-647r100,0r0,647xm212,-692r-66,0r-124,-117r94,0","w":268},"\u00d3":{"d":"642,-321v0,192,-74,339,-289,339v-224,0,-292,-146,-292,-339v0,-191,77,-338,293,-338v216,0,288,141,288,338xm539,-321v0,-172,-51,-261,-186,-261v-136,0,-189,90,-189,261v0,175,52,262,189,262v140,0,186,-99,186,-262xm463,-804r-125,117r-65,0r96,-117r94,0","w":703},"\u00d4":{"d":"642,-321v0,192,-74,339,-289,339v-224,0,-292,-146,-292,-339v0,-191,77,-338,293,-338v216,0,288,141,288,338xm539,-321v0,-172,-51,-261,-186,-261v-136,0,-189,90,-189,261v0,175,52,262,189,262v140,0,186,-99,186,-262xm478,-690r-69,0r-57,-68r-60,68r-68,0r94,-114r68,0","w":703},"\u00d2":{"d":"642,-321v0,192,-74,339,-289,339v-224,0,-292,-146,-292,-339v0,-191,77,-338,293,-338v216,0,288,141,288,338xm539,-321v0,-172,-51,-261,-186,-261v-136,0,-189,90,-189,261v0,175,52,262,189,262v140,0,186,-99,186,-262xm413,-688r-66,0r-124,-117r94,0","w":703},"\u00da":{"d":"605,-237v0,172,-85,255,-248,255v-181,0,-261,-84,-261,-257r0,-408r100,0r0,398v0,155,61,190,161,190v95,0,148,-49,148,-190r0,-398r100,0r0,410xm466,-795r-125,117r-65,0r96,-117r94,0","w":701},"\u00db":{"d":"605,-237v0,172,-85,255,-248,255v-181,0,-261,-84,-261,-257r0,-408r100,0r0,398v0,155,61,190,161,190v95,0,148,-49,148,-190r0,-398r100,0r0,410xm477,-690r-69,0r-57,-68r-60,68r-68,0r94,-114r68,0","w":701},"\u00d9":{"d":"605,-237v0,172,-85,255,-248,255v-181,0,-261,-84,-261,-257r0,-408r100,0r0,398v0,155,61,190,161,190v95,0,148,-49,148,-190r0,-398r100,0r0,410xm417,-688r-66,0r-124,-117r94,0","w":701},"\u0131":{"d":"159,0r-90,0r0,-457r90,0r0,457","w":228},"\u02c6":{"d":"241,-533r-69,0r-57,-68r-60,68r-68,0r94,-114r68,0","w":228},"\u02dc":{"d":"262,-600v-14,44,-52,74,-98,74v-45,0,-67,-42,-98,-42v-28,0,-43,21,-49,41r-51,-24v24,-54,50,-70,101,-70v39,0,65,41,95,41v26,0,43,-26,48,-43","w":228},"\u00af":{"d":"237,-555r-246,0r0,-71r246,0r0,71","w":228},"\u02d8":{"d":"261,-598v-19,48,-79,98,-144,98v-82,0,-136,-52,-151,-98r53,-30v8,30,45,66,98,66v45,0,82,-36,92,-66","w":228},"\u02d9":{"d":"162,-559r-96,0r0,-88r96,0r0,88","w":228},"\u02da":{"d":"177,-589v0,46,-37,82,-83,82v-45,0,-83,-37,-83,-82v0,-46,37,-82,83,-82v47,0,83,35,83,82xm138,-590v0,-25,-16,-45,-44,-45v-58,0,-59,89,0,90v30,0,44,-21,44,-45","w":228},"\u00b8":{"d":"217,97v-1,104,-116,113,-215,94r20,-65v32,4,52,8,72,8v24,0,48,-8,48,-35v0,-23,-9,-35,-80,-35r21,-79r73,0r-10,42v49,0,71,40,71,70","w":228},"\u02dd":{"d":"304,-646r-124,117r-66,0r96,-117r94,0xm163,-646r-124,117r-65,0r96,-117r93,0","w":228},"\u02db":{"d":"221,187v-97,28,-207,7,-207,-88v0,-66,66,-104,90,-115r108,0v-53,24,-121,69,-121,109v0,51,71,39,102,27","w":228},"\u02c7":{"d":"241,-647r-95,114r-68,0r-91,-114r68,0r57,67r60,-67r69,0","w":228},"\u00d0":{"d":"590,-326v0,236,-93,326,-309,326r-185,0r0,-329r-67,0r0,-70r67,0r0,-248r185,0v216,0,309,86,309,321xm487,-325v0,-243,-100,-251,-291,-245r0,171r125,0r0,70r-125,0r0,252v193,10,291,-16,291,-248","w":651,"k":{"A":12}},"\u00fe":{"d":"466,-231v0,131,-63,243,-199,243v-56,0,-95,-35,-113,-62r-16,228r-81,0v19,-259,9,-561,11,-835r89,0r0,264v24,-35,65,-76,123,-76v136,0,186,111,186,238xm374,-229v0,-131,-46,-171,-106,-171v-62,0,-94,57,-113,93r0,183v19,42,57,67,100,67v73,0,119,-51,119,-172","w":511},"\u00de":{"d":"526,-335v0,140,-82,195,-212,195r-118,0r0,140r-100,0r0,-647r100,0r0,123v180,-7,330,5,330,189xm424,-335v0,-140,-111,-108,-228,-112r0,230v120,-1,228,21,228,-118","w":578}}});
/*!
 * 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":566,"face":{"font-family":"Colaborate-Bold","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 8 3 2 0 0 2 0 4","ascent":"800","descent":"-200","x-height":"15","bbox":"-125 -835 1158 263","underline-thickness":"50","underline-position":"-50","stemh":"1000","stemv":"1000","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":283},"\u00f0":{"d":"521,-283v0,148,-42,301,-244,301v-115,0,-230,-73,-230,-198v0,-149,69,-228,215,-228v17,0,88,8,116,61v0,-84,-39,-142,-99,-167r-74,49r-92,-54r46,-31v-23,0,-50,3,-68,6r-42,-121v89,-1,167,6,235,28r55,-40r89,54r-49,34v93,58,142,158,142,306xm369,-233v-14,-36,-36,-62,-94,-62v-82,0,-77,59,-77,115v0,65,40,85,78,85v51,0,93,-16,93,-138"},"\u0141":{"d":"500,0r-408,0r0,-219r-56,38r-66,-100r122,-81r0,-285r152,0r0,182r34,-22r66,100r-100,66r0,201r256,0r0,120","w":505},"\u0142":{"d":"364,-404r-132,88r0,316r-152,0r0,-214r-50,33r-66,-100r116,-77r0,-289r152,0r0,188r66,-44","w":312},"\u0160":{"d":"554,-168v0,162,-138,188,-288,188v-56,0,-149,-17,-204,-32r46,-127v48,18,106,42,159,42v83,0,133,-9,133,-69v0,-125,-338,-82,-338,-313v0,-131,140,-182,259,-182v44,0,128,11,181,29r-46,127v-37,-16,-74,-39,-136,-39v-95,0,-104,46,-104,65v0,105,338,60,338,311xm447,-809r-103,120r-88,0r-101,-120r96,0r49,61r52,-61r95,0","w":616},"\u0161":{"d":"430,-126v0,114,-109,141,-211,141v-53,0,-130,-16,-183,-33r47,-112v49,17,86,41,138,41v68,0,69,-17,69,-36v0,-50,-242,-15,-242,-208v0,-117,105,-139,204,-139v40,0,101,9,164,28r-46,111v-46,-21,-75,-35,-117,-35v-48,0,-65,10,-65,32v0,66,242,31,242,210xm381,-647r-103,120r-88,0r-101,-120r96,0r49,61r52,-61r95,0","w":469},"\u00dd":{"d":"635,-647r-238,356r0,291r-152,0r0,-287r-232,-360r173,0r141,226r142,-226r166,0xm384,-809r-137,117r-91,0r96,-117r132,0","w":648,"k":{"\u00d2":24,"\u00d3":24,"\u00c1":52,"\u00c2":52,"\u0153":24,"\u0152":24,"\u00d5":24,"\u00c3":52,"\u00c0":52,"\u00f8":24,"\u00e6":24,"\u00d8":24,"\u00c6":52,"\u00a2":24,"\u00f5":24,"\u00f6":24,"\u00f4":24,"\u00f2":24,"\u00f3":24,"\u00eb":24,"\u00ea":24,"\u00e8":24,"\u00e9":24,"\u00e7":24,"\u00e5":24,"\u00e3":24,"\u00e4":24,"\u00e2":24,"\u00e0":24,"\u00e1":24,"\u00d6":24,"\u00c7":24,"\u00c5":52,"\u00c4":52,"s":24,"q":24,"o":24,"g":24,"e":24,"d":24,"c":24,"a":24,"Q":24,"O":24,"J":52,"G":24,"C":24,"A":52,".":52,",":52}},"\u00fd":{"d":"518,-457r-201,530v-30,80,-83,154,-191,190r-47,-111v105,-25,91,-95,128,-171r-173,-438r146,0r94,284r100,-284r144,0xm383,-647r-137,117r-91,0r96,-117r132,0","w":552,"k":{"\u00c1":24,"\u00c2":24,"\u0153":12,"\u00c3":24,"\u00c0":24,"\u00f8":12,"\u00e6":12,"\u00c6":24,"\u00a2":12,"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00eb":12,"\u00ea":12,"\u00e8":12,"\u00e9":12,"\u00e7":12,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"\u00c5":24,"\u00c4":24,"s":12,"q":12,"o":12,"g":12,"e":12,"d":12,"c":12,"a":12,"T":24,"J":52,"A":24,".":52,",":52,"\u0161":12}},"\u017d":{"d":"530,-525r-322,407r314,0r0,118r-442,0r-38,-122r324,-407r-287,0r0,-118r413,0xm412,-812r-103,120r-88,0r-101,-120r96,0r49,61r52,-61r95,0","w":572},"\u017e":{"d":"440,-345r-259,240r241,0r0,105r-354,0r-47,-112r263,-240r-227,0r0,-105r337,0xm359,-647r-103,120r-88,0r-101,-120r96,0r49,61r52,-61r95,0","w":461},"\u00bd":{"d":"807,0r-266,0r-24,-72v59,-34,192,-103,192,-154v0,-45,-30,-48,-55,-48v-24,0,-51,6,-97,28r-26,-73v68,-21,81,-24,124,-24v66,0,152,22,152,114v0,66,-112,131,-171,161r171,0r0,68xm626,-629r-363,629r-114,0r362,-629r115,0xm243,-313r-97,0r0,-252r-60,48r-28,-64r97,-66r88,0r0,334","w":876},"\u00bc":{"d":"776,-84r-55,0r0,84r-95,0r0,-84r-146,0r-29,-69r164,-181r106,0r0,181r55,0r0,69xm633,-629r-362,629r-115,0r361,-629r116,0xm248,-313r-96,0r0,-252r-61,48r-27,-64r96,-66r88,0r0,334xm626,-153r0,-101r-95,101r95,0","w":876},"\u00b9":{"d":"262,-313r-97,0r0,-252r-60,48r-28,-64r97,-66r88,0r0,334","w":381},"\u00be":{"d":"793,-84r-55,0r0,84r-95,0r0,-84r-146,0r-29,-69r164,-181r106,0r0,181r55,0r0,69xm668,-629r-363,629r-114,0r362,-629r115,0xm333,-415v0,128,-177,116,-283,91r26,-73v7,4,58,20,98,20v42,0,62,-23,62,-39v0,-42,-46,-46,-117,-46r0,-65v71,0,108,-2,108,-37v0,-23,-19,-28,-49,-28v-29,0,-68,13,-95,25r-26,-74v91,-36,267,-30,267,76v0,44,-42,65,-85,70v42,6,94,29,94,80xm643,-153r0,-101r-95,101r95,0","w":876},"\u00b3":{"d":"331,-415v0,128,-176,116,-282,91r25,-73v7,4,59,20,99,20v42,0,62,-23,62,-39v0,-42,-47,-46,-118,-46r0,-65v71,0,109,-2,109,-37v0,-23,-20,-28,-50,-28v-29,0,-68,13,-95,25r-25,-74v91,-36,266,-30,266,76v0,44,-41,65,-84,70v42,6,93,29,93,80","w":381},"\u00b2":{"d":"335,-318r-266,0r-24,-74v59,-34,192,-102,192,-153v0,-45,-30,-47,-55,-47v-24,0,-50,6,-96,28r-26,-73v68,-21,80,-24,123,-24v66,0,152,21,152,113v0,66,-111,131,-170,161r170,0r0,69","w":381},"\u00a6":{"d":"198,-359r-113,0r0,-234r113,0r0,234xm198,78r-113,0r0,-234r113,0r0,234","w":283},"\u2212":{"d":"516,-177r-466,0r0,-87r466,0r0,87"},"\u00d7":{"d":"525,-104r-80,80r-161,-161r-161,161r-80,-80r161,-161r-161,-161r80,-80r161,161r161,-161r80,80r-161,161"},"!":{"d":"209,-188r-135,0r0,-459r135,0r0,459xm211,0r-140,0r0,-123r140,0r0,123","w":283},"\"":{"d":"346,-647r-8,217r-99,0r-8,-217r115,0xm190,-647r-8,217r-101,0r-8,-217r117,0","w":283},"#":{"d":"549,-386r-113,0r-22,133r96,0r0,92r-113,0r-28,161r-110,0r28,-161r-66,0r-29,161r-110,0r28,-161r-92,0r0,-92r109,0r22,-133r-92,0r0,-92r110,0r29,-169r110,0r-29,169r67,0r29,-169r110,0r-29,169r95,0r0,92xm326,-386r-66,0r-23,133r66,0"},"$":{"d":"507,-168v0,125,-74,168,-180,182r0,84r-103,0r0,-78v-61,-1,-125,-16,-184,-32r46,-127v43,16,92,40,138,42r0,-177v-89,-35,-189,-76,-189,-205v0,-110,89,-164,189,-179r0,-88r103,0r0,86v47,4,114,15,152,28r-46,127v-28,-12,-65,-29,-106,-37r0,159v87,33,180,79,180,215xm227,-424r0,-113v-43,14,-43,46,-43,58v0,22,18,41,43,55xm324,-109v49,-21,41,-90,0,-117r0,117"},"%":{"d":"838,-166v0,116,-42,180,-153,180v-110,0,-152,-63,-152,-180v0,-117,51,-172,153,-172v110,0,152,57,152,172xm673,-629r-363,629r-114,0r362,-629r115,0xm345,-489v0,116,-44,180,-155,180v-110,0,-152,-63,-152,-180v0,-117,51,-172,153,-172v110,0,154,57,154,172xm743,-166v0,-78,-12,-103,-57,-103v-49,0,-57,36,-57,103v0,80,7,111,56,111v45,0,58,-37,58,-111xm248,-489v0,-78,-12,-103,-57,-103v-49,0,-57,36,-57,103v0,80,7,111,56,111v45,0,58,-37,58,-111","w":876},"&":{"d":"522,0r-130,0r-18,-41v-22,29,-84,58,-117,58v-97,0,-211,-40,-211,-202v0,-52,9,-135,103,-184v-25,-20,-83,-57,-83,-126v0,-91,56,-169,195,-169v123,0,195,59,195,168v0,80,-121,136,-186,164v-69,30,-84,77,-84,145v0,47,17,101,87,101v42,0,65,-31,93,-62r0,-57r-80,0r0,-96r216,0r0,161v0,42,18,115,20,140xm320,-497v0,-27,-9,-64,-61,-64v-42,0,-58,31,-58,65v0,33,27,55,41,71v37,-17,78,-37,78,-72"},"'":{"d":"200,-647r-8,217r-101,0r-8,-217r117,0","w":283},"(":{"d":"285,128r-125,0v-85,-147,-106,-232,-106,-382v0,-183,31,-267,101,-393r125,0v-71,131,-91,224,-91,393v0,139,15,234,96,382","w":335},")":{"d":"285,-254v0,150,-21,235,-106,382r-124,0v81,-148,96,-243,96,-382v0,-169,-20,-262,-91,-393r124,0v70,126,101,210,101,393","w":335},"*":{"d":"441,-462r-153,36r-1,11r100,132r-64,45r-87,-136r-12,0r-91,138r-64,-50r102,-129r-4,-11r-159,-37r26,-79r153,56r10,-8r-7,-157r77,0r-6,160r9,6r151,-55","w":450},"+":{"d":"506,-174r-167,0r0,174r-112,0r0,-174r-167,0r0,-101r167,0r0,-159r112,0r0,159r167,0r0,101"},",":{"d":"212,-75r-81,178r-103,0r43,-178r141,0","w":283},"-":{"d":"336,-160r-310,0r0,-112r310,0r0,112","w":362},".":{"d":"212,0r-141,0r0,-124r141,0r0,124","w":283,"k":{"y":62,"w":86,"v":62,"Y":62,"W":62,"V":62}},"\/":{"d":"324,-657r-210,668r-115,0r213,-668r112,0","w":323},"0":{"d":"528,-308v0,211,-62,326,-247,326v-183,0,-243,-113,-243,-326v0,-214,74,-314,244,-314v183,0,246,104,246,314xm376,-308v0,-139,-11,-201,-94,-201v-87,0,-92,83,-92,201v0,141,6,213,91,213v80,0,95,-79,95,-213"},"1":{"d":"425,1r-152,0r0,-468r-113,87r-45,-107r162,-120r148,0r0,608"},"2":{"d":"526,0r-432,0r-41,-124v98,-62,310,-195,310,-288v0,-83,-44,-98,-85,-98v-40,0,-85,12,-159,52r-43,-123v113,-37,132,-42,204,-42v110,0,234,40,234,207v0,121,-158,250,-256,304r268,0r0,112"},"3":{"d":"497,-176v0,156,-140,194,-251,194v-68,0,-146,-7,-204,-27r44,-123v11,8,97,37,163,37v71,0,96,-48,96,-82v0,-82,-71,-86,-189,-86r0,-112v102,0,174,4,174,-71v0,-41,-28,-64,-77,-64v-48,0,-111,25,-156,47r-44,-123v44,-22,156,-37,206,-37v150,0,223,60,223,175v0,80,-68,119,-139,128v70,11,154,51,154,144"},"4":{"d":"544,-158r-96,0r0,158r-150,0r0,-158r-242,0r-49,-114r272,-335r169,0r0,335r96,0r0,114xm298,-272r0,-203r-167,203r167,0"},"5":{"d":"515,-199v0,141,-125,217,-261,217v-61,0,-155,-7,-210,-25r43,-123v45,18,120,35,168,35v100,0,110,-58,110,-106v0,-136,-165,-73,-202,-40r-94,-35r0,-331r421,0r0,113r-271,0r0,107v24,-11,47,-11,80,-11v121,0,216,57,216,199"},"6":{"d":"520,-180v0,125,-115,198,-230,198v-202,0,-245,-153,-245,-301v0,-160,75,-340,280,-340v37,0,113,9,154,20r-43,123v-32,-17,-68,-30,-106,-30v-117,0,-142,99,-142,163v28,-53,99,-61,116,-61v146,0,216,79,216,228xm291,-95v48,0,78,-41,78,-114v0,-36,-9,-86,-77,-86v-58,0,-81,26,-95,62v0,122,43,138,94,138"},"7":{"d":"499,-513r-209,513r-160,0r233,-495r-305,0r0,-111r395,0"},"8":{"d":"528,-158v0,133,-99,176,-246,176v-145,0,-243,-41,-243,-176v0,-89,51,-144,145,-162v-33,-12,-124,-38,-124,-133v0,-104,71,-170,227,-170v168,0,226,56,226,169v0,93,-91,128,-130,135v93,21,145,65,145,161xm365,-447v0,-29,-1,-64,-78,-64v-74,0,-80,31,-80,64v0,49,41,63,76,76v40,-15,82,-32,82,-76xm379,-162v0,-60,-39,-85,-94,-104v-58,21,-98,40,-98,104v0,31,18,68,95,68v79,0,97,-34,97,-68"},"9":{"d":"521,-322v0,160,-74,340,-279,340v-37,0,-114,-9,-155,-20r43,-123v32,17,69,30,107,30v117,0,141,-99,141,-163v-28,53,-99,61,-116,61v-146,0,-215,-78,-215,-227v0,-125,122,-199,230,-199v207,0,244,153,244,301xm369,-372v0,-122,-42,-138,-93,-138v-47,0,-79,40,-79,113v0,36,8,87,78,87v58,0,80,-26,94,-62"},":":{"d":"212,-328r-141,0r0,-124r141,0r0,124xm212,0r-141,0r0,-124r141,0r0,124","w":283},";":{"d":"213,-328r-141,0r0,-124r141,0r0,124xm212,-75r-81,178r-103,0r44,-178r140,0","w":283},"<":{"d":"516,-45r-466,-137r0,-140r466,-139r0,129r-330,80r330,78r0,129"},"=":{"d":"516,-228r-466,0r0,-100r466,0r0,100xm516,-55r-466,0r0,-100r466,0r0,100"},">":{"d":"516,-184r-466,139r0,-129r330,-80r-330,-78r0,-129r466,136r0,141"},"?":{"d":"454,-483v0,119,-167,142,-167,227r0,74r-134,0r0,-79v0,-136,155,-145,155,-222v0,-37,-11,-57,-68,-57v-37,0,-135,17,-171,35r-18,-122v43,-15,141,-30,189,-30v78,0,214,9,214,174xm290,0r-140,0r0,-123r140,0r0,123","w":485},"@":{"d":"851,-381v0,207,-175,255,-338,255v-166,0,-245,-70,-245,-197v0,-104,55,-189,218,-189v45,0,104,9,120,14r0,133r13,2r36,97r-172,12r0,-150v-7,-6,-8,-5,-18,-5v-22,0,-64,6,-64,87v0,98,66,98,114,98v109,0,200,-2,200,-156v0,-155,-124,-176,-217,-176v-67,0,-283,4,-283,236v0,234,210,235,289,235v61,0,132,-12,214,-30r47,112v-332,62,-685,20,-686,-317v0,-245,193,-341,419,-341v134,0,353,58,353,280","w":930},"A":{"d":"678,0r-168,0r-52,-163r-214,0r-54,163r-163,0r263,-647r144,0xm419,-278r-64,-205r-69,205r133,0","w":705,"k":{"\u00d9":12,"\u00db":12,"\u00da":12,"\u00d2":24,"\u00d4":24,"\u00d3":24,"\u0178":52,"\u00ff":52,"\u0153":12,"\u0152":24,"\u00d5":24,"\u00e6":12,"\u00a2":12,"\u00fc":12,"\u00fb":12,"\u00f9":12,"\u00fa":12,"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00eb":12,"\u00ea":12,"\u00e8":12,"\u00e9":12,"\u00e7":12,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"\u00dc":12,"\u00d6":24,"\u00c7":24,"y":52,"w":52,"v":52,"u":12,"t":12,"q":12,"o":12,"e":12,"d":12,"c":12,"a":12,"Y":52,"W":52,"V":52,"T":52,"Q":12,"O":12,"G":12,"C":12,"A":-2,"@":24,"&":24,"\u00fd":52,"\u00dd":52}},"B":{"d":"595,-192v0,258,-273,180,-503,192r0,-647v216,8,471,-52,473,182v0,68,-44,111,-103,126v80,8,133,55,133,147xm411,-464v0,-20,-8,-66,-64,-66r-103,0r0,139r117,0v31,0,50,-27,50,-73xm440,-192v2,-108,-102,-79,-196,-83r0,158v91,-7,194,31,196,-75","w":647,"k":{"V":8}},"C":{"d":"557,-12v-57,20,-110,32,-188,32v-228,0,-312,-135,-312,-343v0,-180,75,-338,315,-338v56,0,129,11,178,27r-46,127v-42,-18,-84,-37,-132,-37v-112,0,-158,70,-158,220v0,159,42,227,152,227v56,0,93,-21,145,-42","w":591},"D":{"d":"638,-326v0,240,-99,326,-309,326r-237,0r0,-647r237,0v202,0,309,84,309,321xm481,-325v0,-205,-87,-205,-152,-205r-85,0r0,413r94,0v74,0,143,-18,143,-208","w":695,"k":{"V":8,"J":20}},"E":{"d":"498,0r-406,0r0,-647r397,0r0,117r-245,0r0,137r224,0r0,117r-224,0r0,159r254,0r0,117","w":603},"F":{"d":"489,-529r-245,0r0,140r233,0r0,116r-233,0r0,273r-152,0r0,-647r397,0r0,118","w":539},"G":{"d":"596,-39v-67,41,-123,59,-228,59v-249,0,-311,-169,-311,-344v0,-199,96,-337,320,-337v45,0,124,15,170,27r-46,127v-39,-17,-79,-37,-123,-37v-88,0,-164,32,-164,220v0,156,38,227,157,227v45,0,62,-1,90,-18r0,-127r-143,0r0,-117r278,0r0,320","w":653},"H":{"d":"622,0r-152,0r0,-275r-226,0r0,275r-152,0r0,-647r152,0r0,254r226,0r0,-254r152,0r0,647","w":714},"I":{"d":"232,0r-152,0r0,-647r152,0r0,647","w":312},"J":{"d":"373,-204v0,226,-175,286,-321,328r-40,-124v90,-18,209,-24,209,-194r0,-453r152,0r0,443","w":465},"K":{"d":"681,0r-196,0r-241,-286r0,286r-152,0r0,-647r152,0r0,262r216,-262r172,0r-246,303","w":694,"k":{"\u00d9":12,"\u00db":12,"\u00da":12,"\u00d2":24,"\u00d3":24,"\u00ff":52,"\u0153":24,"\u0152":24,"\u00d5":24,"\u00e6":24,"\u00a2":24,"\u00fc":24,"\u00fb":24,"\u00f9":24,"\u00fa":24,"\u00f5":-24,"\u00f6":24,"\u00f4":24,"\u00f2":24,"\u00f3":24,"\u00eb":24,"\u00ea":24,"\u00e8":24,"\u00e9":24,"\u00e7":24,"\u00e5":24,"\u00e3":24,"\u00e4":24,"\u00e2":24,"\u00e0":24,"\u00e1":24,"\u00dc":12,"\u00d6":24,"y":52,"w":52,"v":52,"u":24,"q":24,"o":24,"e":24,"d":24,"c":24,"a":24,"U":12,"Q":24,"O":24,"G":24,"C":24,"@":24,"&":12}},"L":{"d":"500,0r-408,0r0,-647r152,0r0,527r256,0r0,120","w":505,"k":{"Y":96,"W":64,"V":72,"T":64,"O":20}},"M":{"d":"877,0r-151,0r0,-485r-163,485r-163,0r-162,-485r0,485r-146,0r0,-647r255,0r140,445r145,-445r245,0r0,647","w":967},"N":{"d":"661,0r-230,0r-193,-467r0,467r-146,0r0,-647r228,0r191,467r0,-467r150,0r0,647","w":753},"O":{"d":"690,-321v0,192,-80,341,-315,341v-242,0,-318,-146,-318,-341v0,-189,83,-340,319,-340v230,0,314,139,314,340xm533,-321v0,-172,-59,-223,-158,-223v-102,0,-161,54,-161,223v0,181,58,224,161,224v108,0,158,-65,158,-224","w":747,"k":{"Z":12,"Y":24,"X":24,"W":24,"V":24,"J":20,"A":12}},"P":{"d":"574,-448v-1,196,-144,214,-330,205r0,243r-152,0r0,-647v227,6,484,-49,482,199xm420,-448v0,-123,-87,-70,-176,-82r0,170v93,-3,176,23,176,-88","w":622,"k":{"J":80,"A":48}},"Q":{"d":"690,-321v0,192,-80,341,-315,341v-242,0,-318,-146,-318,-341v0,-189,81,-340,319,-340v230,0,314,139,314,340xm610,67r-51,96r-233,-35r51,-83xm533,-321v0,-172,-59,-223,-158,-223v-102,0,-161,54,-161,223v0,181,58,224,161,224v108,0,158,-65,158,-224","w":747},"R":{"d":"628,0r-187,0r-188,-259r-9,0r0,259r-152,0r0,-647r262,0v103,0,225,32,225,194v0,83,-36,164,-148,189xm425,-453v0,-43,-18,-77,-66,-77r-115,0r0,154r116,0v40,0,65,-32,65,-77","w":670},"S":{"d":"554,-168v0,162,-138,188,-288,188v-56,0,-149,-17,-204,-32r46,-127v48,18,106,42,159,42v83,0,133,-9,133,-69v0,-125,-338,-82,-338,-313v0,-131,140,-182,259,-182v44,0,128,11,181,29r-46,127v-37,-16,-74,-39,-136,-39v-95,0,-104,46,-104,65v0,105,338,60,338,311","w":616},"T":{"d":"515,-529r-171,0r0,529r-153,0r0,-529r-171,0r0,-118r495,0r0,118","w":535,"k":{"\u0131":86,"\u00d2":24,"\u00d4":24,"\u00d3":24,"\u00c1":86,"\u00c2":86,"\u00b7":86,"\u00ff":86,"\u0153":86,"\u0152":24,"\u00d5":24,"\u00c3":86,"\u00c0":86,"\u00f8":86,"\u00e6":86,"\u00b5":86,"\u00c6":86,"\u00a2":86,"\u00fc":86,"\u00fb":86,"\u00f9":86,"\u00fa":86,"\u00f5":86,"\u00f6":86,"\u00f4":86,"\u00f2":86,"\u00f3":86,"\u00f1":86,"\u00eb":86,"\u00ea":86,"\u00e8":86,"\u00e9":86,"\u00e7":86,"\u00e5":86,"\u00e3":86,"\u00e4":86,"\u00e2":86,"\u00e0":86,"\u00e1":86,"\u00d6":24,"\u00c7":24,"\u00c5":86,"\u00c4":86,"z":86,"y":86,"x":86,"w":86,"v":86,"u":86,"s":86,"r":86,"q":86,"p":86,"o":86,"n":86,"m":86,"j":24,"i":24,"g":86,"e":86,"d":86,"c":86,"a":86,"Q":24,"O":24,"J":52,"G":24,"C":24,"A":52,"@":24,";":86,":":86,".":86,",":86,"\u017e":86,"\u00fd":86,"\u0161":86}},"U":{"d":"653,-237v0,172,-103,257,-274,257v-189,0,-287,-86,-287,-259r0,-408r152,0r0,398v0,135,73,152,135,152v63,0,122,-37,122,-152r0,-398r152,0r0,410","w":745},"V":{"d":"649,-647r-237,647r-141,0r-244,-647r168,0r150,464r141,-464r163,0","w":676,"k":{"\u0131":52,"\u00d2":24,"\u00d4":24,"\u00d3":24,"\u00c1":52,"\u00c2":86,"\u00ff":24,"\u0153":52,"\u0152":24,"\u00d5":24,"\u00c3":52,"\u00c0":86,"\u00bf":52,"\u00f8":52,"\u00e6":52,"\u00b5":52,"\u00c6":86,"\u00a2":52,"\u00fc":52,"\u00fb":52,"\u00f9":52,"\u00fa":52,"\u00f5":52,"\u00f6":52,"\u00f4":52,"\u00f2":52,"\u00f3":52,"\u00f1":52,"\u00eb":52,"\u00ea":52,"\u00e8":52,"\u00e9":52,"\u00e7":52,"\u00e5":52,"\u00e3":52,"\u00e4":52,"\u00e2":52,"\u00e0":52,"\u00e1":52,"\u00d6":24,"\u00c7":24,"\u00c5":86,"\u00c4":86,"z":24,"y":24,"x":24,"w":24,"v":24,"u":52,"s":52,"r":52,"q":52,"p":24,"o":52,"n":52,"m":52,"j":24,"i":24,"g":52,"e":52,"d":52,"c":52,"a":52,"Q":24,"O":24,"J":52,"G":24,"C":24,"A":86,";":24,":":24,".":52,",":52,"\u017e":24,"\u00fd":24,"\u0161":12}},"W":{"d":"978,-647r-163,647r-191,0r-117,-421r-144,421r-191,0r-139,-647r161,0r93,466r137,-439r192,0r105,438r107,-465r150,0","w":1011,"k":{"\u0131":24,"\u00d2":24,"\u00d4":24,"\u00d3":24,"\u00c1":86,"\u00c2":86,"\u0153":24,"\u0152":24,"\u00d5":24,"\u00c3":86,"\u00c0":86,"\u00bf":52,"\u00f8":24,"\u00e6":24,"\u00b5":24,"\u00d8":24,"\u00c6":86,"\u00a2":24,"\u00fc":24,"\u00fb":24,"\u00f9":24,"\u00fa":24,"\u00f5":24,"\u00f6":24,"\u00f4":24,"\u00f2":24,"\u00f3":24,"\u00f1":24,"\u00eb":24,"\u00ea":24,"\u00e8":24,"\u00e9":24,"\u00e7":24,"\u00e5":24,"\u00e3":24,"\u00e4":24,"\u00e2":24,"\u00e0":24,"\u00e1":24,"\u00d6":24,"\u00c7":24,"\u00c5":86,"\u00c4":86,"z":24,"y":24,"x":24,"w":12,"v":12,"u":24,"s":24,"r":24,"q":24,"p":24,"o":24,"n":24,"m":24,"j":24,"i":24,"g":24,"e":24,"d":24,"c":24,"a":24,"Q":24,"O":24,"J":52,"G":24,"C":24,"A":86,";":52,":":52,".":52,",":52,"\u017e":24,"\u00fd":24,"\u0161":24}},"X":{"d":"624,0r-179,0r-119,-212r-134,212r-163,0r216,-334r-190,-313r175,0r104,180r112,-180r163,0r-197,309","w":659,"k":{"\u00d2":24,"\u00d4":24,"\u00d3":24,"\u0152":24,"\u00d5":24,"\u00d6":24,"\u00c7":24,"y":24,"w":24,"v":24,"Q":24,"O":24,"G":24,"C":24,"\u00fd":24}},"Y":{"d":"635,-647r-238,356r0,291r-152,0r0,-287r-232,-360r173,0r141,226r142,-226r166,0","w":648,"k":{"\u00d2":24,"\u00d4":24,"\u00d3":24,"\u00c1":52,"\u00c2":52,"\u0153":24,"\u0152":24,"\u00d5":24,"\u00c3":52,"\u00c0":52,"\u00f8":24,"\u00e6":24,"\u00d8":24,"\u00c6":52,"\u00a2":24,"\u00f5":24,"\u00f6":24,"\u00f4":24,"\u00f2":24,"\u00f3":24,"\u00eb":24,"\u00ea":24,"\u00e8":24,"\u00e9":24,"\u00e7":24,"\u00e5":24,"\u00e3":24,"\u00e4":24,"\u00e2":24,"\u00e0":24,"\u00e1":24,"\u00d6":24,"\u00c7":24,"\u00c5":52,"\u00c4":52,"s":24,"q":24,"o":24,"g":24,"e":24,"d":24,"c":24,"a":24,"O":24,"J":52,"G":24,"C":24,"A":52,".":52,",":52,"\u00fd":24,"\u0161":24}},"Z":{"d":"530,-525r-322,407r314,0r0,118r-442,0r-38,-122r324,-407r-287,0r0,-118r413,0","w":572,"k":{"O":12}},"[":{"d":"274,127r-191,0r0,-803r191,0r0,95r-79,0r0,610r79,0r0,98","w":321},"\\":{"d":"324,11r-115,0r-210,-668r112,0","w":323},"]":{"d":"252,128r-191,0r0,-99r79,0r0,-609r-79,0r0,-95r191,0r0,803","w":321},"^":{"d":"535,-269r-123,0r-130,-289r-132,289r-120,0r181,-378r139,0"},"_":{"d":"501,123r-502,0r0,-104r502,0r0,104","w":500},"`":{"d":"247,-530r-90,0r-138,-117r132,0","w":266},"a":{"d":"488,0r-131,0v-1,0,-18,-42,-18,-42v-26,20,-68,56,-114,56v-128,0,-184,-49,-184,-134v0,-93,59,-172,254,-172r35,0v-1,-36,7,-74,-52,-74v-63,0,-129,19,-173,40r-47,-112v148,-46,411,-74,410,113v-1,122,-4,219,20,325xm331,-141r0,-53v-87,-4,-148,17,-148,68v0,33,40,35,70,35v29,0,61,-31,78,-50","w":543},"b":{"d":"510,-231v0,131,-73,245,-211,245v-58,0,-91,-37,-101,-56r-20,42r-127,0v28,-197,7,-439,13,-657r137,0r0,256v28,-37,63,-70,117,-70v138,0,192,113,192,240xm370,-229v0,-117,-40,-137,-82,-137v-36,0,-60,43,-89,93r0,111v17,41,41,71,76,71v41,0,95,-17,95,-138","w":551},"c":{"d":"445,-19v-35,17,-131,33,-166,33v-155,0,-238,-99,-238,-239v0,-148,81,-246,241,-246v41,0,125,20,158,33r-47,112v-92,-50,-218,-85,-212,101v5,176,117,146,217,94","w":477},"d":{"d":"500,0r-127,0r-20,-42v-10,19,-43,56,-101,56v-158,0,-211,-114,-211,-245v0,-126,57,-240,190,-240v53,0,91,33,119,70r0,-256r137,0v6,218,-14,461,13,657xm352,-162r0,-111v-29,-48,-53,-93,-90,-93v-43,0,-81,18,-81,137v0,121,38,138,95,138v35,0,59,-30,76,-71","w":551},"e":{"d":"498,-170r-314,0v29,121,146,88,240,44r45,104v-56,25,-128,36,-194,36v-153,0,-234,-111,-234,-238v0,-106,49,-247,227,-247v174,0,230,92,230,301xm361,-271v-7,-76,-47,-95,-92,-95v-20,0,-81,5,-84,95r176,0","w":541},"f":{"d":"346,-554v-86,11,-133,29,-131,97r84,0r0,105r-84,0r0,352r-137,0r0,-352r-69,0r0,-105r69,0v-4,-137,82,-180,220,-208","w":334},"g":{"d":"544,-476r-33,89r-52,0v15,18,42,55,42,93v0,75,-41,176,-219,176v-13,0,-75,-4,-102,-15v-10,1,-18,11,-18,27v0,24,23,30,136,38v194,14,235,52,235,137v0,104,-128,135,-245,135v-193,0,-250,-55,-250,-132v0,-54,42,-73,63,-83v-82,-39,-63,-135,3,-172v-11,-14,-43,-56,-43,-113v0,-53,26,-175,219,-175v34,0,49,4,77,8v37,-3,139,-11,187,-13xm364,-298v0,-42,-21,-71,-82,-71v-29,0,-84,2,-84,75v0,62,46,73,85,73v62,0,81,-45,81,-77xm394,69v0,-16,-39,-36,-204,-37v-8,9,-13,22,-13,35v0,26,67,40,111,40v84,0,106,-7,106,-38","w":569},"h":{"d":"485,0r-137,0r0,-304v0,-28,-2,-64,-56,-64v-39,0,-65,45,-91,91r0,277r-137,0r0,-657r137,0r0,256v13,-13,51,-71,115,-71v140,0,169,77,169,187r0,285","w":545},"i":{"d":"204,-539r-142,0r0,-108r142,0r0,108xm201,0r-136,0r0,-457r136,0r0,457","w":266},"j":{"d":"202,-539r-145,0r0,-108r145,0r0,108xm198,-6v0,130,-89,185,-182,220r-48,-111v70,-15,93,-41,93,-100r0,-460r137,0r0,451","w":264},"k":{"d":"500,0r-156,0r-143,-224r0,224r-137,0r0,-657r137,0r0,376r128,-176r147,0r-146,198","w":510,"k":{"o":24}},"l":{"d":"201,0r-137,0r0,-657r137,0r0,657","w":265},"m":{"d":"766,0r-137,0r0,-290v0,-68,-20,-78,-47,-78v-52,0,-84,50,-101,96r0,272r-137,0r0,-290v0,-72,-15,-78,-55,-78v-43,0,-76,68,-88,90r0,278r-137,0v-4,-153,11,-325,-13,-457r127,0r19,57v14,-20,67,-72,119,-72v78,0,101,10,148,65v26,-42,74,-65,140,-65v110,0,162,58,162,180r0,292","w":830},"n":{"d":"485,0r-137,0r0,-297v0,-32,0,-71,-56,-71v-41,0,-68,47,-91,91r0,277r-137,0v-5,-151,13,-328,-13,-457r127,0r20,56v20,-19,59,-71,119,-71v140,0,168,79,168,184r0,288","w":549},"o":{"d":"516,-231v0,131,-67,246,-237,246v-171,0,-238,-114,-238,-246v0,-127,68,-241,238,-241v173,0,237,108,237,241xm376,-231v0,-112,-34,-137,-97,-137v-60,0,-98,25,-98,137v0,100,36,142,98,142v53,0,97,-31,97,-142","w":557,"k":{"v":24}},"p":{"d":"510,-226v0,127,-59,241,-192,241v-35,0,-90,-19,-117,-56r0,221r-137,0v-5,-211,14,-448,-13,-637r127,0r22,56v19,-25,53,-71,110,-71v144,0,200,114,200,246xm370,-228v0,-123,-39,-140,-96,-140v-31,0,-54,48,-76,90r0,114v25,49,61,75,91,75v42,0,81,-20,81,-139","w":551},"q":{"d":"500,-457v-27,191,-7,425,-13,637r-137,0r0,-221v-27,37,-83,56,-118,56v-146,0,-191,-114,-191,-241v0,-132,63,-246,200,-246v57,0,91,46,110,71r22,-56r127,0xm352,-164r0,-114v-22,-42,-43,-90,-74,-90v-60,0,-97,17,-97,140v0,119,39,139,81,139v30,0,65,-26,90,-75","w":551},"r":{"d":"387,-460r-46,111v-17,-15,-34,-19,-57,-19v-50,0,-73,71,-83,97r0,271r-137,0v-4,-148,12,-334,-13,-457r127,0r20,63v16,-27,54,-78,100,-78v40,0,69,6,89,12","w":402,"k":{".":52}},"s":{"d":"430,-126v0,114,-109,141,-211,141v-53,0,-130,-16,-183,-33r47,-112v49,17,86,41,138,41v68,0,69,-17,69,-36v0,-50,-242,-15,-242,-208v0,-117,105,-139,204,-139v40,0,101,9,164,28r-46,111v-46,-21,-75,-35,-117,-35v-48,0,-65,10,-65,32v0,66,242,31,242,210","w":469},"t":{"d":"311,-1r-51,111v-95,-36,-180,-93,-180,-225r0,-237r-69,0r0,-106r69,0r0,-125r136,0r0,125r88,0r0,106r-88,0r0,251v0,59,26,80,95,100","w":318},"u":{"d":"491,0r-127,0r-20,-56v-20,19,-55,71,-115,71v-132,0,-165,-79,-165,-184r0,-288r137,0r0,297v0,31,2,71,53,71v41,0,64,-47,87,-91r0,-277r137,0v5,151,-13,328,13,457","w":542},"v":{"d":"527,-457r-178,457r-138,0r-177,-457r146,0r104,300r99,-300r144,0","w":561,"k":{"\u00c1":24,"\u00c2":24,"\u0153":12,"\u00c3":24,"\u00c0":24,"\u00bf":24,"\u00f8":12,"\u00e6":12,"\u00c6":24,"\u00a2":12,"\u00fa":24,"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00eb":12,"\u00ea":12,"\u00e8":12,"\u00e9":12,"\u00e7":12,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"\u00c5":24,"s":12,"q":12,"o":12,"g":12,"e":12,"d":12,"c":12,"a":12,"Y":24,"T":24,"J":24,"A":24,".":52,",":52,"\u0161":12}},"w":{"d":"814,-457r-149,457r-145,0r-91,-259r-103,259r-145,0r-155,-457r145,0r95,291r98,-253r136,0r94,254r78,-292r142,0","w":840,"k":{"\u00c1":24,"\u00c2":24,"\u0153":12,"\u00c3":24,"\u00c0":24,"\u00bf":24,"\u00f8":12,"\u00e6":12,"\u00c6":24,"\u00a2":12,"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00eb":12,"\u00ea":12,"\u00e8":12,"\u00e9":12,"\u00e7":12,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"\u00c5":24,"\u00c4":24,"s":12,"q":12,"o":12,"g":12,"e":12,"d":12,"c":12,"a":12,"Y":24,"T":24,"J":24,"A":24,".":86,",":86,"\u0161":12}},"x":{"d":"494,0r-151,0r-86,-135r-92,135r-143,0r165,-231r-154,-226r151,0r78,127r82,-127r142,0r-157,219","w":516},"y":{"d":"518,-457r-201,530v-30,80,-83,154,-191,190r-47,-111v105,-25,91,-95,128,-171r-173,-438r146,0r94,284r100,-284r144,0","w":552,"k":{"\u00c1":24,"\u00c2":24,"\u0153":12,"\u00c3":24,"\u00c0":24,"\u00f8":12,"\u00e6":12,"\u00c6":24,"\u00a2":12,"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00eb":12,"\u00ea":12,"\u00e8":12,"\u00e9":12,"\u00e7":12,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"\u00c5":24,"\u00c4":24,"s":12,"q":12,"o":12,"g":12,"e":12,"d":12,"c":12,"a":12,"T":24,"J":24,"A":24,".":52,",":52,"\u0161":12}},"z":{"d":"440,-345r-259,240r241,0r0,105r-354,0r-47,-112r263,-240r-227,0r0,-105r337,0","w":461},"{":{"d":"323,118v-295,-8,-119,-321,-275,-332r0,-103v152,-5,-22,-320,275,-330r0,103v-123,0,-22,218,-159,280v140,51,34,279,159,279r0,103","w":406},"|":{"d":"199,166r-115,0r0,-868r115,0r0,868","w":283},"}":{"d":"358,-214v-156,11,21,324,-274,332r0,-103v125,0,18,-228,158,-279v-137,-62,-35,-280,-158,-280r0,-103v297,10,122,325,274,330r0,103","w":406},"~":{"d":"536,-276v0,66,-44,135,-148,135v-95,0,-162,-95,-185,-95v-44,0,-67,11,-67,79r-105,-58v0,-67,46,-135,146,-135v109,0,174,93,186,93v44,0,67,-7,67,-76"},"\u00c4":{"d":"678,0r-168,0r-52,-163r-214,0r-54,163r-163,0r263,-647r144,0xm419,-278r-64,-205r-69,205r133,0xm499,-669r-120,0r0,-103r120,0r0,103xm336,-669r-120,0r0,-103r120,0r0,103","w":705,"k":{"\u00d2":12,"\u00d3":12,"\u0178":86,"\u00ff":52,"\u0153":12,"\u0152":12,"\u00d5":12,"\u00e6":12,"\u00a2":12,"\u00fc":12,"\u00fb":12,"\u00f9":12,"\u00fa":12,"\u00f5":12,"\u00f6":12,"\u00f4":12,"\u00f2":12,"\u00f3":12,"\u00eb":12,"\u00ea":12,"\u00e9":12,"\u00e7":12,"\u00e5":12,"\u00e3":12,"\u00e4":12,"\u00e2":12,"\u00e0":12,"\u00e1":12,"\u00d6":12,"\u00c7":12,"y":52,"w":52,"v":52,"u":12,"q":12,"o":12,"e":12,"d":12,"c":12,"a":12,"Y":86,"W":86,"V":86,"T":52,"Q":12,"O":8,"G":12,"C":12,"\u00dd":52}},"\u00c5":{"d":"678,0r-168,0r-52,-163r-214,0r-54,163r-163,0r263,-647r144,0xm419,-278r-64,-205r-69,205r133,0xm453,-753v0,46,-37,82,-83,82v-45,0,-83,-37,-83,-82v0,-46,37,-82,83,-82v47,0,83,35,83,82xm408,-754v0,-21,-14,-39,-38,-39v-50,1,-51,77,0,78v26,0,38,-19,38,-39","w":705},"\u00c7":{"d":"557,-12v-57,20,-111,33,-188,33r0,2v49,0,73,46,73,76v0,134,-139,145,-264,124r28,-93v32,4,58,9,78,9v24,0,48,-7,48,-38v0,-27,-9,-37,-80,-37r14,-53v-151,-39,-209,-161,-209,-334v0,-180,75,-339,315,-339v56,0,129,12,178,28r-46,127v-42,-18,-84,-39,-132,-39v-112,0,-158,72,-158,222v0,159,42,229,152,229v56,0,93,-23,145,-44","w":591},"\u00c9":{"d":"498,0r-406,0r0,-647r397,0r0,117r-245,0r0,137r224,0r0,117r-224,0r0,159r254,0r0,117xm368,-794r-137,117r-91,0r96,-117r132,0","w":603},"\u00d1":{"d":"661,0r-230,0r-193,-467r0,467r-146,0r0,-647r228,0r191,467r0,-467r150,0r0,647xm555,-756v-18,56,-68,88,-120,88v-61,0,-73,-48,-104,-48v-28,0,-45,15,-53,37r-69,-32v27,-61,62,-80,123,-80v47,0,68,49,101,49v29,0,49,-30,54,-47","w":753},"\u00d6":{"d":"690,-321v0,192,-80,341,-315,341v-242,0,-318,-146,-318,-341v0,-189,83,-340,319,-340v230,0,314,139,314,340xm533,-321v0,-172,-59,-223,-158,-223v-102,0,-161,54,-161,223v0,181,58,224,161,224v108,0,158,-65,158,-224xm517,-669r-120,0r0,-103r120,0r0,103xm354,-669r-120,0r0,-103r120,0r0,103","w":747},"\u00dc":{"d":"653,-237v0,172,-103,257,-274,257v-189,0,-287,-86,-287,-259r0,-408r152,0r0,398v0,135,73,152,135,152v63,0,122,-37,122,-152r0,-398r152,0r0,410xm520,-669r-120,0r0,-103r120,0r0,103xm357,-669r-120,0r0,-103r120,0r0,103","w":745},"\u00e1":{"d":"488,0r-131,0v-1,0,-18,-42,-18,-42v-26,20,-68,56,-114,56v-128,0,-184,-49,-184,-134v0,-93,59,-172,254,-172r35,0v-1,-36,7,-74,-52,-74v-63,0,-129,19,-173,40r-47,-112v148,-46,411,-74,410,113v-1,122,-4,219,20,325xm377,-647r-137,117r-91,0r96,-117r132,0xm331,-141r0,-53v-87,-4,-148,17,-148,68v0,33,40,35,70,35v29,0,61,-31,78,-50","w":543},"\u00e0":{"d":"488,0r-131,0v-1,0,-18,-42,-18,-42v-26,20,-68,56,-114,56v-128,0,-184,-49,-184,-134v0,-93,59,-172,254,-172r35,0v-1,-36,7,-74,-52,-74v-63,0,-129,19,-173,40r-47,-112v148,-46,411,-74,410,113v-1,122,-4,219,20,325xm341,-530r-90,0r-138,-117r132,0xm331,-141r0,-53v-87,-4,-148,17,-148,68v0,33,40,35,70,35v29,0,61,-31,78,-50","w":543},"\u00e2":{"d":"488,0r-131,0v-1,0,-18,-42,-18,-42v-26,20,-68,56,-114,56v-128,0,-184,-49,-184,-134v0,-93,59,-172,254,-172r35,0v-1,-36,7,-74,-52,-74v-63,0,-129,19,-173,40r-47,-112v148,-46,411,-74,410,113v-1,122,-4,219,20,325xm397,-527r-95,0r-49,-60r-52,60r-96,0r104,-120r88,0xm331,-141r0,-53v-87,-4,-148,17,-148,68v0,33,40,35,70,35v29,0,61,-31,78,-50","w":543},"\u00e4":{"d":"488,0r-131,0v-1,0,-18,-42,-18,-42v-26,20,-68,56,-114,56v-128,0,-184,-49,-184,-134v0,-93,59,-172,254,-172r35,0v-1,-36,7,-74,-52,-74v-63,0,-129,19,-173,40r-47,-112v148,-46,411,-74,410,113v-1,122,-4,219,20,325xm244,-521r-121,0r0,-109r121,0r0,109xm408,-521r-121,0r0,-109r121,0r0,109xm331,-141r0,-53v-87,-4,-148,17,-148,68v0,33,40,35,70,35v29,0,61,-31,78,-50","w":543},"\u00e3":{"d":"488,0r-131,0v-1,0,-18,-42,-18,-42v-26,20,-68,56,-114,56v-128,0,-184,-49,-184,-134v0,-93,59,-172,254,-172r35,0v-1,-36,7,-74,-52,-74v-63,0,-129,19,-173,40r-47,-112v148,-46,411,-74,410,113v-1,122,-4,219,20,325xm429,-588v-18,56,-68,88,-120,88v-61,0,-73,-48,-104,-48v-28,0,-45,15,-53,37r-69,-32v27,-61,62,-80,123,-80v47,0,68,49,101,49v29,0,49,-30,54,-47xm331,-141r0,-53v-87,-4,-148,17,-148,68v0,33,40,35,70,35v29,0,61,-31,78,-50","w":543},"\u00e5":{"d":"488,0r-131,0v-1,0,-18,-42,-18,-42v-26,20,-68,56,-114,56v-128,0,-184,-49,-184,-134v0,-93,59,-172,254,-172r35,0v-1,-36,7,-74,-52,-74v-63,0,-129,19,-173,40r-47,-112v148,-46,411,-74,410,113v-1,122,-4,219,20,325xm342,-589v0,46,-37,82,-83,82v-45,0,-83,-37,-83,-82v0,-46,37,-82,83,-82v47,0,83,35,83,82xm331,-141r0,-53v-87,-4,-148,17,-148,68v0,33,40,35,70,35v29,0,61,-31,78,-50xm297,-590v0,-21,-14,-39,-38,-39v-50,1,-51,77,0,78v26,0,38,-19,38,-39","w":543},"\u00e7":{"d":"450,-21v-29,15,-102,29,-146,34r-4,12v49,0,69,43,69,74v0,139,-134,143,-258,124r32,-88v59,8,125,27,125,-34v0,-27,-12,-37,-83,-37r15,-59v-106,-29,-159,-117,-159,-230v0,-148,77,-247,241,-247v41,0,128,22,163,36r-51,109v-93,-48,-218,-86,-213,102v5,177,116,146,217,96","w":477},"\u00e9":{"d":"498,-170r-314,0v29,121,146,88,240,44r45,104v-56,25,-128,36,-194,36v-153,0,-234,-111,-234,-238v0,-106,49,-247,227,-247v174,0,230,92,230,301xm361,-271v-7,-76,-47,-95,-92,-95v-20,0,-81,5,-84,95r176,0xm421,-647r-137,117r-91,0r96,-117r132,0","w":541},"\u00e8":{"d":"498,-170r-314,0v29,121,146,88,240,44r45,104v-56,25,-128,36,-194,36v-153,0,-234,-111,-234,-238v0,-106,49,-247,227,-247v174,0,230,92,230,301xm361,-271v-7,-76,-47,-95,-92,-95v-20,0,-81,5,-84,95r176,0xm351,-530r-90,0r-138,-117r132,0","w":541},"\u00ea":{"d":"498,-170r-314,0v29,121,146,88,240,44r45,104v-56,25,-128,36,-194,36v-153,0,-234,-111,-234,-238v0,-106,49,-247,227,-247v174,0,230,92,230,301xm361,-271v-7,-76,-47,-95,-92,-95v-20,0,-81,5,-84,95r176,0xm429,-527r-95,0r-49,-60r-52,60r-96,0r104,-120r88,0","w":541},"\u00eb":{"d":"498,-170r-314,0v29,121,146,88,240,44r45,104v-56,25,-128,36,-194,36v-153,0,-234,-111,-234,-238v0,-106,49,-247,227,-247v174,0,230,92,230,301xm361,-271v-7,-76,-47,-95,-92,-95v-20,0,-81,5,-84,95r176,0xm423,-524r-120,0r0,-103r120,0r0,103xm260,-524r-120,0r0,-103r120,0r0,103","w":541},"\u00ed":{"d":"245,-647r-137,117r-91,0r96,-117r132,0xm201,0r-136,0r0,-457r136,0r0,457","w":266},"\u00ec":{"d":"249,-530r-90,0r-138,-117r132,0xm221,0r-136,0r0,-457r136,0r0,457","w":266},"\u00ee":{"d":"279,-527r-95,0r-49,-60r-52,60r-96,0r104,-120r88,0xm201,0r-136,0r0,-457r136,0r0,457","w":266},"\u00ef":{"d":"275,-551r-120,0r0,-103r120,0r0,103xm112,-551r-120,0r0,-103r120,0r0,103xm201,0r-136,0r0,-457r136,0r0,457","w":266},"\u00f1":{"d":"485,0r-137,0r0,-297v0,-32,0,-71,-56,-71v-41,0,-68,47,-91,91r0,277r-137,0v-5,-151,13,-328,-13,-457r127,0r20,56v20,-19,59,-71,119,-71v140,0,168,79,168,184r0,288xm438,-588v-18,56,-68,88,-120,88v-61,0,-73,-48,-104,-48v-28,0,-45,15,-53,37r-69,-32v27,-61,62,-80,123,-80v47,0,68,49,101,49v29,0,49,-30,54,-47","w":549},"\u00f3":{"d":"516,-231v0,131,-67,246,-237,246v-171,0,-238,-114,-238,-246v0,-127,68,-241,238,-241v173,0,237,108,237,241xm376,-231v0,-112,-34,-137,-97,-137v-60,0,-98,25,-98,137v0,100,36,142,98,142v53,0,97,-31,97,-142xm413,-647r-137,117r-91,0r96,-117r132,0","w":557},"\u00f2":{"d":"516,-231v0,131,-67,246,-237,246v-171,0,-238,-114,-238,-246v0,-127,68,-241,238,-241v173,0,237,108,237,241xm376,-231v0,-112,-34,-137,-97,-137v-60,0,-98,25,-98,137v0,100,36,142,98,142v53,0,97,-31,97,-142xm373,-530r-90,0r-138,-117r132,0","w":557},"\u00f4":{"d":"516,-231v0,131,-67,246,-237,246v-171,0,-238,-114,-238,-246v0,-127,68,-241,238,-241v173,0,237,108,237,241xm376,-231v0,-112,-34,-137,-97,-137v-60,0,-98,25,-98,137v0,100,36,142,98,142v53,0,97,-31,97,-142xm425,-527r-95,0r-49,-60r-52,60r-96,0r104,-120r88,0","w":557},"\u00f6":{"d":"516,-231v0,131,-67,246,-237,246v-171,0,-238,-114,-238,-246v0,-127,68,-241,238,-241v173,0,237,108,237,241xm376,-231v0,-112,-34,-137,-97,-137v-60,0,-98,25,-98,137v0,100,36,142,98,142v53,0,97,-31,97,-142xm426,-524r-120,0r0,-103r120,0r0,103xm263,-524r-120,0r0,-103r120,0r0,103","w":557},"\u00f5":{"d":"516,-231v0,131,-67,246,-237,246v-171,0,-238,-114,-238,-246v0,-127,68,-241,238,-241v173,0,237,108,237,241xm376,-231v0,-112,-34,-137,-97,-137v-60,0,-98,25,-98,137v0,100,36,142,98,142v53,0,97,-31,97,-142xm446,-588v-18,56,-68,88,-120,88v-61,0,-73,-48,-104,-48v-28,0,-45,15,-53,37r-69,-32v27,-61,62,-80,123,-80v47,0,68,49,101,49v29,0,49,-30,54,-47","w":557},"\u00fa":{"d":"491,0r-127,0r-20,-56v-20,19,-55,71,-115,71v-132,0,-165,-79,-165,-184r0,-288r137,0r0,297v0,31,2,71,53,71v41,0,64,-47,87,-91r0,-277r137,0v5,151,-13,328,13,457xm402,-647r-137,117r-91,0r96,-117r132,0","w":542},"\u00f9":{"d":"354,-530r-90,0r-138,-117r132,0xm491,0r-127,0r-20,-56v-20,19,-55,71,-115,71v-132,0,-165,-79,-165,-184r0,-288r137,0r0,297v0,31,2,71,53,71v41,0,64,-47,87,-91r0,-277r137,0v5,151,-13,328,13,457","w":542},"\u00fb":{"d":"491,0r-127,0r-20,-56v-20,19,-55,71,-115,71v-132,0,-165,-79,-165,-184r0,-288r137,0r0,297v0,31,2,71,53,71v41,0,64,-47,87,-91r0,-277r137,0v5,151,-13,328,13,457xm411,-527r-95,0r-49,-60r-52,60r-96,0r104,-120r88,0","w":542},"\u00fc":{"d":"491,0r-127,0r-20,-56v-20,19,-55,71,-115,71v-132,0,-165,-79,-165,-184r0,-288r137,0r0,297v0,31,2,71,53,71v41,0,64,-47,87,-91r0,-277r137,0v5,151,-13,328,13,457xm412,-524r-120,0r0,-103r120,0r0,103xm249,-524r-120,0r0,-103r120,0r0,103","w":542},"\u2020":{"d":"529,-301r-190,0r0,481r-112,0r0,-481r-190,0r0,-102r190,0r0,-217r112,0r0,217r190,0r0,102"},"\u00b0":{"d":"406,-438v0,103,-83,176,-182,176v-99,0,-181,-73,-181,-176v0,-103,83,-179,182,-179v99,0,181,76,181,179xm323,-438v0,-59,-41,-101,-98,-101v-57,0,-99,42,-99,101v0,54,46,99,98,99v52,0,99,-45,99,-99","w":450},"\u00a2":{"d":"445,-19v-22,11,-73,22,-114,28r0,91r-108,0r0,-91v-119,-22,-182,-112,-182,-234v0,-129,61,-219,182,-241r0,-95r108,0r0,95v39,7,87,19,109,28r-47,112v-18,-9,-40,-21,-62,-30r0,256v22,-9,47,-21,67,-31xm223,-103r0,-253v-25,18,-42,50,-42,131v0,72,21,102,42,122","w":477},"\u00a3":{"d":"545,0r-488,0r0,-120r62,0r0,-163r-77,0r0,-103r77,0v-4,-177,99,-270,322,-288r39,124v-127,0,-211,9,-211,164r142,0r0,103r-140,0r0,163r274,0r0,120"},"\u00a7":{"d":"425,-313v0,46,-14,77,-40,101v11,21,19,48,19,87v0,176,-246,155,-375,108r47,-111v37,16,69,40,122,40v67,0,67,-13,67,-36v0,-61,-242,-19,-242,-210v0,-48,21,-84,50,-102v-20,-21,-34,-48,-34,-86v0,-117,107,-139,206,-139v41,0,95,10,155,28r-47,110v-34,-14,-63,-34,-107,-34v-48,0,-68,10,-68,32v0,66,247,32,247,212xm289,-298v0,-52,-41,-57,-106,-81v-20,10,-24,28,-24,45v0,29,63,43,121,62v8,-8,9,-17,9,-26","w":448},"\u2022":{"d":"434,-324v0,84,-66,152,-151,152v-85,0,-151,-67,-151,-152v0,-85,67,-151,151,-151v84,0,151,67,151,151"},"\u00b6":{"d":"532,188r-112,0r0,-732r-100,0v-61,0,-109,43,-109,122v0,62,53,115,98,127r0,483r-113,0r0,-420v-128,-25,-176,-126,-176,-209v0,-69,24,-206,194,-206r318,0r0,835","w":540},"\u00df":{"d":"515,-118v0,169,-168,233,-313,233r48,-115v91,0,124,-74,124,-120v0,-129,-90,-129,-146,-145r0,-107v31,-20,87,-50,87,-124v0,-33,-25,-56,-60,-56v-19,0,-54,10,-54,70r0,482r-137,0r0,-471v0,-126,80,-186,191,-186v84,0,201,21,201,164v0,124,-96,147,-121,164v53,22,180,38,180,211","w":558},"\u00ae":{"d":"695,-324v0,188,-148,334,-335,334v-187,0,-335,-146,-335,-334v0,-188,148,-334,335,-334v190,0,335,144,335,334xm616,-324v0,-143,-111,-261,-256,-261v-146,0,-256,117,-256,261v0,142,113,261,256,261v143,0,256,-119,256,-261xm527,-129r-109,0r-110,-157r-6,0r0,157r-90,0r0,-390v137,8,287,-40,287,118v0,51,-21,98,-86,113xm408,-401v0,-27,-13,-48,-39,-48r-67,0r0,95v52,0,106,11,106,-47","w":720},"\u00a9":{"d":"695,-324v0,188,-148,334,-335,334v-187,0,-335,-146,-335,-334v0,-188,148,-334,335,-334v190,0,335,144,335,334xm616,-324v0,-143,-111,-261,-256,-261v-146,0,-256,117,-256,261v0,142,113,261,256,261v143,0,256,-119,256,-261xm475,-134v-33,12,-64,18,-110,18v-135,0,-183,-81,-183,-206v0,-108,42,-203,184,-203v33,0,76,5,105,15r-28,75v-85,-45,-169,-23,-169,112v0,96,25,139,90,139v33,0,54,-12,84,-25","w":720},"\u2122":{"d":"870,-291r-89,0r0,-268r-97,268r-99,0r-97,-268r0,268r-86,0r0,-356r151,0r85,247r86,-247r146,0r0,356xm358,-584r-104,0r0,293r-89,0r0,-293r-104,0r0,-63r297,0r0,63","w":937},"\u00b4":{"d":"247,-647r-137,117r-91,0r96,-117r132,0","w":266},"\u00a8":{"d":"275,-544r-120,0r0,-103r120,0r0,103xm112,-544r-120,0r0,-103r120,0r0,103","w":266},"\u2260":{"d":"516,-55r-252,0r-84,156r-96,-54r54,-102r-88,0r0,-100r141,0r39,-73r-180,0r0,-100r234,0r81,-153r96,54r-53,99r108,0r0,100r-160,0r-40,73r200,0r0,100"},"\u00c6":{"d":"927,0r-403,0r-22,-163r-214,0r-86,163r-175,0r367,-647r524,0r0,117r-331,0r19,137r291,0r0,117r-271,0r27,159r274,0r0,117xm485,-278r-26,-208r-109,208r135,0","w":1032},"\u00d8":{"d":"722,-619r-76,90v31,56,44,127,44,208v0,192,-80,341,-315,341v-70,0,-127,-11,-173,-31r-87,102r-99,-90r90,-106v-35,-58,-49,-132,-49,-216v0,-189,83,-340,319,-340v71,0,130,13,176,36r72,-84xm464,-523v-25,-15,-55,-21,-89,-21v-102,0,-161,54,-161,223v0,34,1,61,3,85xm533,-321v0,-29,-1,-53,-1,-75r-246,286v150,42,247,-10,247,-211","w":747},"\u221e":{"d":"745,-226v0,80,-38,175,-186,175v-73,0,-138,-51,-161,-86v-35,42,-84,86,-160,86v-146,0,-187,-94,-187,-175v0,-81,49,-177,189,-177v82,0,125,38,161,84v38,-45,74,-84,160,-84v155,0,184,93,184,177xm611,-226v0,-50,-25,-72,-50,-72v-38,0,-62,26,-94,70v26,41,56,72,92,72v26,0,52,-18,52,-70xm332,-228v-21,-39,-62,-70,-92,-70v-25,0,-56,20,-56,72v0,52,37,70,54,70v25,0,72,-30,94,-72","w":796},"\u00b1":{"d":"506,-234r-167,0r0,114r-112,0r0,-114r-167,0r0,-101r167,0r0,-99r112,0r0,99r167,0r0,101xm516,1r-466,0r0,-101r466,0r0,101"},"\u2264":{"d":"516,-119r-466,-102r0,-135r466,-105r0,129r-323,43r323,42r0,128xm516,1r-466,0r0,-101r466,0r0,101"},"\u2265":{"d":"516,-221r-466,102r0,-128r324,-42r-324,-43r0,-129r466,105r0,135xm516,1r-466,0r0,-101r466,0r0,101"},"\u00a5":{"d":"569,-647r-185,310r88,0r0,102r-116,0r0,41r116,0r0,101r-116,0r0,93r-152,0r0,-93r-117,0r0,-101r117,0r0,-41r-117,0r0,-102r88,0r-178,-310r169,0r120,232r123,-232r160,0"},"\u00b5":{"d":"503,0r-127,0r-20,-56v-22,24,-67,82,-143,71r0,165r-137,0r0,-637r137,0r0,297v0,31,2,71,53,71v41,0,64,-47,87,-91r0,-277r137,0v5,151,-13,328,13,457"},"\u03bc":{"d":"503,0r-127,0r-20,-56v-22,24,-67,82,-143,71r0,165r-137,0r0,-637r137,0r0,297v0,31,2,71,53,71v41,0,64,-47,87,-91r0,-277r137,0v5,151,-13,328,13,457"},"\u2202":{"d":"521,-283v0,148,-42,301,-244,301v-115,0,-230,-73,-230,-198v0,-149,69,-228,215,-228v17,0,88,8,116,61v0,-64,-24,-163,-141,-163v-38,0,-75,13,-107,30r-43,-123v41,-11,118,-20,155,-20v205,0,279,180,279,340xm369,-233v-14,-36,-36,-62,-94,-62v-82,0,-77,59,-77,115v0,65,40,85,78,85v51,0,93,-16,93,-138"},"\u2211":{"d":"545,180r-505,0r0,-89r279,-354r-266,-350r0,-89r481,0r0,99r-340,0r259,340r-274,344r366,0r0,99"},"\u220f":{"d":"546,180r-112,0r0,-787r-302,0r0,787r-112,0r0,-882r526,0r0,882"},"\u03c0":{"d":"552,0r-26,93v-87,-17,-181,-58,-181,-189r0,-260r-127,0r0,356r-114,0r0,-356r-81,0r0,-101r510,0r0,101r-74,0r0,256v0,66,19,89,93,100"},"\u222b":{"d":"442,-630v-79,11,-95,37,-95,98r0,496v0,137,-116,178,-189,193r-33,-105v71,-14,95,-37,95,-98r0,-496v0,-153,119,-182,192,-193"},"\u00aa":{"d":"421,-391r-85,0v0,2,-9,-24,-10,-24v-15,11,-41,31,-68,31v-77,0,-110,-26,-110,-73v0,-56,56,-102,172,-96v-1,-22,6,-37,-31,-37v-38,0,-76,11,-103,23r-28,-65v85,-26,251,-42,251,61v0,68,-3,122,12,180xm322,-468r0,-28v-52,-2,-94,6,-88,35v0,19,21,16,40,16v22,0,38,-13,48,-23"},"\u00ba":{"d":"432,-528v0,72,-46,136,-148,136v-103,0,-147,-64,-147,-136v0,-70,45,-133,147,-133v104,0,148,60,148,133xm344,-528v0,-61,-27,-72,-60,-72v-32,0,-60,11,-60,72v0,55,25,74,60,74v28,0,60,-13,60,-74"},"\u03a9":{"d":"691,-360v0,113,-40,228,-160,264r0,2r134,0r0,94r-258,0r0,-149v106,-19,125,-90,125,-212v0,-170,-100,-183,-154,-183v-50,0,-158,13,-158,184v0,124,21,196,126,211r0,149r-259,0r0,-94v44,-2,96,4,135,-2v-116,-37,-160,-151,-160,-262v0,-189,119,-303,315,-303v195,0,314,113,314,301","w":753},"\u2126":{"d":"691,-360v0,113,-40,228,-160,264r0,2r134,0r0,94r-258,0r0,-149v106,-19,125,-90,125,-212v0,-170,-100,-183,-154,-183v-50,0,-158,13,-158,184v0,124,21,196,126,211r0,149r-259,0r0,-94v44,-2,96,4,135,-2v-116,-37,-160,-151,-160,-262v0,-189,119,-303,315,-303v195,0,314,113,314,301","w":753},"\u00e6":{"d":"780,-170r-313,0v29,121,146,88,240,44r45,104v-56,25,-128,36,-194,36v-86,0,-154,-38,-173,-79v-41,41,-96,79,-160,79v-128,0,-184,-49,-184,-134v0,-93,59,-172,254,-172r34,0v-1,-38,7,-74,-51,-74v-63,0,-129,19,-173,40r-47,-112v110,-34,275,-55,361,6v32,-20,76,-39,132,-39v174,0,229,92,229,301xm644,-271v-7,-76,-47,-95,-92,-95v-20,0,-82,5,-85,95r177,0xm330,-140r0,-54v-87,-3,-147,17,-147,68v0,33,40,35,70,35v37,0,60,-30,77,-49","w":823},"\u00f8":{"d":"530,-420r-45,50v22,39,31,87,31,139v0,131,-67,246,-237,246v-49,0,-90,-9,-124,-24r-48,54r-90,-87r51,-58v-68,-170,-12,-374,211,-372v44,0,82,4,115,15r47,-50xm317,-371v-90,4,-133,5,-136,140v0,4,-1,8,-3,13xm377,-252r-142,156v86,21,137,-3,141,-135v0,-8,0,-14,1,-21","w":557},"\u00bf":{"d":"355,-524r-140,0r0,-123r140,0r0,123xm454,-20v-43,15,-141,30,-189,30v-78,0,-214,-9,-214,-174v0,-119,167,-142,167,-227r0,-74r133,0r0,79v0,136,-154,145,-154,222v0,37,11,57,68,57v37,0,135,-17,171,-35","w":485},"\u00a1":{"d":"211,-524r-140,0r0,-123r140,0r0,123xm209,0r-135,0r0,-459r135,0r0,459","w":283},"\u00ac":{"d":"526,-78r-112,0r0,-172r-379,0r0,-101r491,0r0,273"},"\u221a":{"d":"569,-747r-186,874r-183,0r-127,-309r-54,0r0,-102r149,0r116,295r169,-758r116,0"},"\u0192":{"d":"454,-548v-80,1,-125,30,-125,91r84,0r-16,92r-84,0r-94,545r-121,0r95,-545r-69,0r15,-92r69,0r4,-28v21,-147,160,-165,237,-180"},"\u2248":{"d":"536,-341v0,66,-44,135,-148,135v-95,0,-162,-96,-185,-96v-44,0,-67,12,-67,80r-105,-58v0,-67,46,-135,146,-135v109,0,174,93,186,93v44,0,67,-8,67,-77xm536,-131v0,66,-44,135,-148,135v-95,0,-162,-96,-185,-96v-44,0,-67,12,-67,80r-105,-58v0,-67,46,-135,146,-135v109,0,174,93,186,93v44,0,67,-8,67,-77"},"\u0394":{"d":"742,0r-688,0r279,-647r130,0xm584,-100r-185,-446r-185,446r370,0","w":796},"\u2206":{"d":"742,0r-688,0r279,-647r130,0xm584,-100r-185,-446r-185,446r370,0","w":796},"\u00ab":{"d":"415,-452r-97,180r96,180r-122,0r-93,-178r93,-182r123,0xm235,-452r-97,180r96,180r-123,0r-93,-178r93,-182r124,0","w":433},"\u00bb":{"d":"416,-270r-93,178r-122,0r96,-180r-97,-180r123,0xm236,-270r-93,178r-123,0r96,-180r-97,-180r124,0","w":433},"\u2026":{"d":"779,0r-142,0r0,-124r142,0r0,124xm495,0r-141,0r0,-124r141,0r0,124xm212,0r-141,0r0,-124r141,0r0,124","w":850},"\u00a0":{"w":283},"\u00c0":{"d":"678,0r-168,0r-52,-163r-214,0r-54,163r-163,0r263,-647r144,0xm419,-278r-64,-205r-69,205r133,0xm465,-695r-90,0r-138,-117r132,0","w":705},"\u00c3":{"d":"678,0r-168,0r-52,-163r-214,0r-54,163r-163,0r263,-647r144,0xm419,-278r-64,-205r-69,205r133,0xm536,-755v-18,56,-68,88,-120,88v-61,0,-73,-48,-104,-48v-28,0,-45,15,-53,37r-69,-32v27,-61,62,-80,123,-80v47,0,68,49,101,49v29,0,49,-30,54,-47","w":705},"\u00d5":{"d":"690,-321v0,192,-80,341,-315,341v-242,0,-318,-146,-318,-341v0,-189,83,-340,319,-340v230,0,314,139,314,340xm533,-321v0,-172,-59,-223,-158,-223v-102,0,-161,54,-161,223v0,181,58,224,161,224v108,0,158,-65,158,-224xm556,-756v-18,56,-68,88,-120,88v-61,0,-73,-48,-104,-48v-28,0,-45,15,-53,37r-69,-32v27,-61,62,-80,123,-80v47,0,68,49,101,49v29,0,49,-30,54,-47","w":747},"\u0152":{"d":"949,0r-442,0v-36,13,-81,20,-132,20v-242,0,-318,-146,-318,-341v0,-189,83,-340,319,-340v43,0,81,5,113,14r451,0r0,117r-296,0v15,42,28,84,34,137r241,0r0,117r-240,0v-4,60,-16,110,-34,159r304,0r0,117xm523,-321v0,-172,-46,-223,-148,-223v-102,0,-161,54,-161,223v0,181,58,224,161,224v110,0,148,-65,148,-224","w":1054},"\u0153":{"d":"827,-170r-314,0v29,121,146,88,240,44r45,104v-106,46,-272,54,-352,-14v-40,31,-95,51,-167,51v-171,0,-238,-114,-238,-246v0,-127,68,-241,238,-241v72,0,127,18,167,47v35,-27,85,-46,151,-46v174,0,230,92,230,301xm690,-271v-7,-76,-47,-95,-92,-95v-20,0,-81,5,-84,95r176,0xm376,-231v0,-112,-34,-137,-97,-137v-60,0,-98,25,-98,137v0,100,36,142,98,142v53,0,97,-31,97,-142","w":870},"\u2013":{"d":"501,-187r-502,0r0,-100r502,0r0,100","w":500},"\u2014":{"d":"1001,-177r-1002,0r0,-110r1002,0r0,110","w":1000},"\u201c":{"d":"393,-648r-85,188r-103,0r98,-188r90,0xm228,-648r-85,188r-103,0r99,-188r89,0","w":433},"\u201d":{"d":"393,-648r-99,188r-88,0r85,-188r102,0xm228,-648r-98,188r-90,0r85,-188r103,0","w":433},"\u2018":{"d":"233,-648r-85,188r-103,0r99,-188r89,0","w":283},"\u2019":{"d":"232,-648r-99,188r-90,0r86,-188r103,0","w":283},"\u00f7":{"d":"353,-308r-141,0r0,-124r141,0r0,124xm516,-177r-466,0r0,-87r466,0r0,87xm353,-4r-141,0r0,-124r141,0r0,124"},"\u25ca":{"d":"518,-313r-175,350r-123,0r-172,-350r172,-348r124,0xm408,-313r-126,-267r-125,267r125,267"},"\u00ff":{"d":"518,-457r-201,530v-30,80,-83,154,-191,190r-47,-111v105,-25,91,-95,128,-171r-173,-438r146,0r94,284r100,-284r144,0xm432,-521r-120,0r0,-103r120,0r0,103xm269,-521r-120,0r0,-103r120,0r0,103"},"\u0178":{"d":"635,-647r-238,356r0,291r-152,0r0,-287r-232,-360r173,0r141,226r142,-226r166,0xm473,-710r-119,0r0,-105r119,0r0,105xm312,-710r-118,0r0,-105r118,0r0,105","w":648},"\u2044":{"d":"352,-629r-363,629r-114,0r362,-629r115,0","w":226},"\u2039":{"d":"259,-452r-97,180r96,180r-123,0r-93,-178r93,-182r124,0","w":283},"\u203a":{"d":"256,-270r-93,178r-123,0r96,-180r-97,-180r124,0","w":283},"\ufb01":{"d":"524,-539r-143,0r0,-108r143,0r0,108xm521,0r-137,0r0,-457r137,0r0,457xm346,-554v-86,11,-133,29,-131,97r84,0r0,105r-84,0r0,352r-137,0r0,-352r-69,0r0,-105r69,0v-4,-137,82,-180,220,-208","w":586},"\ufb02":{"d":"525,0r-137,0r0,-657r137,0r0,657xm346,-554v-86,11,-133,29,-131,97r84,0r0,105r-84,0r0,352r-137,0r0,-352r-69,0r0,-105r69,0v-4,-137,82,-180,220,-208","w":586},"\u2021":{"d":"529,-150r-190,0r0,150r-112,0r0,-150r-190,0r0,-101r190,0r0,-147r-190,0r0,-102r190,0r0,-147r112,0r0,147r190,0r0,102r-190,0r0,147r190,0r0,101"},"\u00b7":{"d":"203,-204r-123,0r0,-123r123,0r0,123","w":283},"\u201a":{"d":"232,-100r-99,188r-90,0r86,-188r103,0","w":283},"\u201e":{"d":"393,-100r-99,188r-88,0r85,-188r102,0xm228,-100r-98,188r-90,0r85,-188r103,0","w":433},"\u2030":{"d":"1158,-166v0,116,-42,180,-153,180v-110,0,-152,-63,-152,-180v0,-117,51,-172,153,-172v110,0,152,57,152,172xm792,-166v0,116,-43,180,-154,180v-110,0,-152,-63,-152,-180v0,-117,51,-172,153,-172v110,0,153,57,153,172xm649,-629r-363,629r-114,0r362,-629r115,0xm345,-489v0,116,-44,180,-155,180v-110,0,-152,-63,-152,-180v0,-117,51,-172,153,-172v110,0,154,57,154,172xm1063,-166v0,-78,-12,-103,-57,-103v-49,0,-57,36,-57,103v0,80,7,111,56,111v45,0,58,-37,58,-111xm696,-166v0,-78,-12,-103,-57,-103v-49,0,-56,36,-56,103v0,80,6,111,55,111v45,0,58,-37,58,-111xm248,-489v0,-78,-12,-103,-57,-103v-49,0,-57,36,-57,103v0,80,7,111,56,111v45,0,58,-37,58,-111","w":1196},"\u00c2":{"d":"678,0r-168,0r-52,-163r-214,0r-54,163r-163,0r263,-647r144,0xm419,-278r-64,-205r-69,205r133,0xm505,-692r-95,0r-49,-60r-52,60r-96,0r104,-120r88,0","w":705},"\u00ca":{"d":"498,0r-406,0r0,-647r397,0r0,117r-245,0r0,137r224,0r0,117r-224,0r0,159r254,0r0,117xm432,-693r-95,0r-49,-60r-52,60r-96,0r104,-120r88,0","w":603},"\u00c1":{"d":"678,0r-168,0r-52,-163r-214,0r-54,163r-163,0r263,-647r144,0xm419,-278r-64,-205r-69,205r133,0xm479,-813r-137,117r-91,0r96,-117r132,0","w":705},"\u00cb":{"d":"498,0r-406,0r0,-647r397,0r0,117r-245,0r0,137r224,0r0,117r-224,0r0,159r254,0r0,117xm446,-669r-120,0r0,-103r120,0r0,103xm283,-669r-120,0r0,-103r120,0r0,103","w":603},"\u00c8":{"d":"498,0r-406,0r0,-647r397,0r0,117r-245,0r0,137r224,0r0,117r-224,0r0,159r254,0r0,117xm393,-695r-90,0r-138,-117r132,0","w":603},"\u00cd":{"d":"231,0r-152,0r0,-647r152,0r0,647xm276,-809r-137,117r-91,0r96,-117r132,0","w":312},"\u00ce":{"d":"232,0r-152,0r0,-647r152,0r0,647xm302,-684r-95,0r-49,-60r-52,60r-96,0r104,-120r88,0","w":312},"\u00cf":{"d":"228,0r-152,0r0,-647r152,0r0,647xm298,-722r-120,0r0,-103r120,0r0,103xm135,-722r-120,0r0,-103r120,0r0,103","w":312},"\u00cc":{"d":"232,0r-152,0r0,-647r152,0r0,647xm277,-692r-90,0r-138,-117r132,0","w":312},"\u00d3":{"d":"690,-321v0,192,-80,341,-315,341v-242,0,-318,-146,-318,-341v0,-189,83,-340,319,-340v230,0,314,139,314,340xm533,-321v0,-172,-59,-223,-158,-223v-102,0,-161,54,-161,223v0,181,58,224,161,224v108,0,158,-65,158,-224xm484,-813r-137,117r-91,0r96,-117r132,0","w":747},"\u00d4":{"d":"690,-321v0,192,-80,341,-315,341v-242,0,-318,-146,-318,-341v0,-189,83,-340,319,-340v230,0,314,139,314,340xm533,-321v0,-172,-59,-223,-158,-223v-102,0,-161,54,-161,223v0,181,58,224,161,224v108,0,158,-65,158,-224xm516,-693r-95,0r-49,-60r-52,60r-96,0r104,-120r88,0","w":747},"\u00d2":{"d":"690,-321v0,192,-80,341,-315,341v-242,0,-318,-146,-318,-341v0,-189,83,-340,319,-340v230,0,314,139,314,340xm533,-321v0,-172,-59,-223,-158,-223v-102,0,-161,54,-161,223v0,181,58,224,161,224v108,0,158,-65,158,-224xm441,-695r-90,0r-138,-117r132,0","w":747},"\u00da":{"d":"653,-237v0,172,-103,257,-274,257v-189,0,-287,-86,-287,-259r0,-408r152,0r0,398v0,135,73,152,135,152v63,0,122,-37,122,-152r0,-398r152,0r0,410xm516,-793r-137,117r-91,0r96,-117r132,0","w":745},"\u00db":{"d":"653,-237v0,172,-103,257,-274,257v-189,0,-287,-86,-287,-259r0,-408r152,0r0,398v0,135,73,152,135,152v63,0,122,-37,122,-152r0,-398r152,0r0,410xm521,-693r-95,0r-49,-60r-52,60r-96,0r104,-120r88,0","w":745},"\u00d9":{"d":"653,-237v0,172,-103,257,-274,257v-189,0,-287,-86,-287,-259r0,-408r152,0r0,398v0,135,73,152,135,152v63,0,122,-37,122,-152r0,-398r152,0r0,410xm438,-695r-90,0r-138,-117r132,0","w":745},"\u0131":{"d":"201,0r-136,0r0,-457r136,0r0,457","w":266},"\u02c6":{"d":"279,-527r-95,0r-49,-60r-52,60r-96,0r104,-120r88,0","w":266},"\u02dc":{"d":"306,-588v-18,56,-68,88,-120,88v-61,0,-73,-48,-104,-48v-28,0,-45,15,-53,37r-69,-32v27,-61,62,-80,123,-80v47,0,68,49,101,49v29,0,49,-30,54,-47","w":266},"\u00af":{"d":"269,-533r-272,0r0,-95r272,0r0,95","w":266},"\u02d8":{"d":"311,-588v-19,48,-93,114,-174,114v-108,0,-166,-68,-181,-114r69,-40v8,30,55,66,112,66v49,0,94,-36,104,-66","w":266},"\u02d9":{"d":"204,-539r-142,0r0,-108r142,0r0,108","w":266},"\u02da":{"d":"177,-589v0,46,-37,82,-83,82v-45,0,-83,-37,-83,-82v0,-46,37,-82,83,-82v47,0,83,35,83,82xm132,-590v0,-21,-14,-39,-38,-39v-50,1,-51,77,0,78v26,0,38,-19,38,-39","w":266},"\u00b8":{"d":"257,99v0,135,-135,145,-259,124r28,-91v32,4,58,8,78,8v24,0,48,-8,48,-39v0,-27,-9,-37,-80,-37r21,-79r105,0r-10,38v49,0,69,46,69,76","w":266},"\u02dd":{"d":"358,-644r-138,117r-90,0r96,-117r132,0xm195,-644r-138,117r-91,0r96,-117r133,0","w":266},"\u02db":{"d":"261,213v-43,12,-79,19,-110,19v-109,0,-137,-52,-137,-119v0,-66,66,-118,90,-129r134,0v-53,24,-121,83,-121,123v0,27,23,40,47,40v37,0,40,-14,55,-17","w":266},"\u02c7":{"d":"279,-647r-103,120r-88,0r-101,-120r96,0r49,61r52,-61r95,0","w":266},"\u00d0":{"d":"638,-326v0,240,-99,326,-309,326r-237,0r0,-309r-63,0r0,-104r63,0r0,-234r237,0v202,0,309,84,309,321xm481,-325v0,-205,-87,-205,-152,-205r-85,0r0,117r77,0r0,104r-77,0r0,192r94,0v74,0,143,-18,143,-208","w":695,"k":{"A":12}},"\u00fe":{"d":"510,-231v0,131,-73,245,-211,245v-58,0,-91,-37,-101,-56r-23,223r-127,0v24,-254,14,-563,16,-838r137,0r0,256v28,-37,63,-70,117,-70v138,0,192,113,192,240xm370,-229v0,-117,-40,-137,-82,-137v-36,0,-60,43,-89,93r0,111v17,41,41,71,76,71v41,0,95,-17,95,-138","w":551},"\u00de":{"d":"574,-333v0,196,-144,214,-330,205r0,128r-152,0r0,-647r152,0r0,115v181,-6,330,8,330,199xm420,-333v0,-123,-87,-70,-176,-82r0,170v93,-3,176,23,176,-88","w":622},"\u20ac":{"d":"557,-635r-40,122v-96,-43,-246,-54,-274,54r254,0r-38,117r-230,0r0,29r220,0r-38,117r-171,0v17,72,58,99,134,99v56,0,109,-27,161,-48r0,141v-34,13,-80,24,-158,24v-179,0,-266,-81,-294,-216r-114,0r38,-117r65,0r0,-29r-103,0r38,-117r79,0v30,-117,112,-202,294,-202v58,0,128,10,177,26","w":540}}});
;
/*
CSS Browser Selector v0.3.5 (Feb 05, 2010)
Rafael Lima (http://rafael.adm.br)
http://rafael.adm.br/css_browser_selector
License: http://creativecommons.org/licenses/by/2.5/
Contributors: http://rafael.adm.br/css_browser_selector#contributors
*/
function css_browser_selector(u){var ua = u.toLowerCase(),is=function(t){return ua.indexOf(t)>-1;},g='gecko',w='webkit',s='safari',o='opera',h=document.documentElement,b=[(!(/opera|webtv/i.test(ua))&&/msie\s(\d)/.test(ua))?('ie ie'+RegExp.$1):is('firefox/2')?g+' ff2':is('firefox/3.5')?g+' ff3 ff3_5':is('firefox/3')?g+' ff3':is('gecko/')?g:is('opera')?o+(/version\/(\d+)/.test(ua)?' '+o+RegExp.$1:(/opera(\s|\/)(\d+)/.test(ua)?' '+o+RegExp.$2:'')):is('konqueror')?'konqueror':is('chrome')?w+' chrome':is('iron')?w+' iron':is('applewebkit/')?w+' '+s+(/version\/(\d+)/.test(ua)?' '+s+RegExp.$1:''):is('mozilla/')?g:'',is('j2me')?'mobile':is('iphone')?'iphone':is('ipod')?'ipod':is('mac')?'mac':is('darwin')?'mac':is('webtv')?'webtv':is('win')?'win':is('freebsd')?'freebsd':(is('x11')||is('linux'))?'linux':'','js']; c = b.join(' '); h.className += ' '+c; return c;}; css_browser_selector(navigator.userAgent);
;

/** 
#  * Copyright (c) 2008 Pasyuk Sergey (www.codeasily.com) 
#  * Licensed under the MIT License: 
#  * http://www.opensource.org/licenses/mit-license.php 
#  *  
#  * Splits a <ul>/<ol>-list into equal-sized columns. 
#  *  
#  * Requirements:  
#  * <ul> 
#  * <li>"ul" or "ol" element must be styled with margin</li> 
#  * </ul> 
#  *  
#  * @see http://www.codeasily.com/jquery/multi-column-list-with-jquery 
#  */  
jQuery.fn.makeacolumnlists = function(settings){
	settings = jQuery.extend({
		cols: 2,		// set number of columns
		colWidth: 0,		// set width for each column or leave 0 for auto width
		equalHeight: true, 	// can be false, 'ul', 'ol', 'li'
		startN: 1		// first number on your ordered list
	}, settings);
 
	if(jQuery('> li', this)) {
		this.each(function(y) {
			var y=jQuery('.li_container').size(),
		    	height = 0, 
		        maxHeight = 0,
				t = jQuery(this),
				classN = t.attr('class'),
				listsize = jQuery('> li', this).size(),
				percol = Math.ceil(listsize/settings.cols),
				contW = t.width(),
				bl = ( isNaN(parseInt(t.css('borderLeftWidth'),10)) ? 0 : parseInt(t.css('borderLeftWidth'),10) ),
				br = ( isNaN(parseInt(t.css('borderRightWidth'),10)) ? 0 : parseInt(t.css('borderRightWidth'),10) ),
				pl = parseInt(t.css('paddingLeft'),10),
				pr = parseInt(t.css('paddingRight'),10),
				ml = parseInt(t.css('marginLeft'),10),
				mr = parseInt(t.css('marginRight'),10),
				col_Width = Math.floor((contW - (settings.cols-1)*(bl+br+pl+pr+ml+mr))/settings.cols);
			if (settings.colWidth) {
				col_Width = settings.colWidth; 
			}
			var colnum=1,
				percol2=percol;
			jQuery(this).addClass('li_cont1').wrap('<div id="li_container' + (++y) + '" class="li_container"></div>');
			if (settings.equalHeight=='li') {
			    jQuery('> li', this).each(function() {
			        var e = jQuery(this);
			        var border_top = ( isNaN(parseInt(e.css('borderTopWidth'),10)) ? 0 : parseInt(e.css('borderTopWidth'),10) );
			        var border_bottom = ( isNaN(parseInt(e.css('borderBottomWidth'),10)) ? 0 : parseInt(e.css('borderBottomWidth'),10) );
			        height = e.height() + parseInt(e.css('paddingTop'), 10) + parseInt(e.css('paddingBottom'), 10) + border_top + border_bottom;
			        maxHeight = (height > maxHeight) ? height : maxHeight;
			    });
			}
			for (var i=0; i<=listsize; i++) {
				if(i>=percol2) { percol2+=percol; colnum++; }
				var eh = jQuery('> li:eq('+i+')',this);
				eh.addClass('li_col'+ colnum);
				if(jQuery(this).is('ol')){eh.attr('value', ''+(i+settings.startN))+'';}
				if (settings.equalHeight=='li') {
			        var border_top = ( isNaN(parseInt(eh.css('borderTopWidth'),10)) ? 0 : parseInt(eh.css('borderTopWidth'),10) );
			        var border_bottom = ( isNaN(parseInt(eh.css('borderBottomWidth'),10)) ? 0 : parseInt(eh.css('borderBottomWidth'),10) );
					mh = maxHeight - (parseInt(eh.css('paddingTop'), 10) + parseInt(eh.css('paddingBottom'), 10) + border_top + border_bottom );
			        eh.height(mh);
				}
			}
			jQuery(this).css({cssFloat:'left', width:''+col_Width+'px'});
			for (colnum=2; colnum<=settings.cols; colnum++) {
				if(jQuery(this).is('ol')) {
					jQuery('li.li_col'+ colnum, this).appendTo('#li_container' + y).wrapAll('<ol class="li_cont'+colnum +' ' + classN + '" style="float:left; width: '+col_Width+'px;"></ol>');
				} else {
					jQuery('li.li_col'+ colnum, this).appendTo('#li_container' + y).wrapAll('<ul class="li_cont'+colnum +' ' + classN + '" style="float:left; width: '+col_Width+'px;"></ul>');
				}
			}
			if (settings.equalHeight=='ul' || settings.equalHeight=='ol') {
				for (colnum=1; colnum<=settings.cols; colnum++) {
				    jQuery('#li_container'+ y +' .li_cont'+colnum).each(function() {
				        var e = jQuery(this);
				        var border_top = ( isNaN(parseInt(e.css('borderTopWidth'),10)) ? 0 : parseInt(e.css('borderTopWidth'),10) );
				        var border_bottom = ( isNaN(parseInt(e.css('borderBottomWidth'),10)) ? 0 : parseInt(e.css('borderBottomWidth'),10) );
				        height = e.height() + parseInt(e.css('paddingTop'), 10) + parseInt(e.css('paddingBottom'), 10) + border_top + border_bottom;
				        maxHeight = (height > maxHeight) ? height : maxHeight;
				    });
				}
				for (colnum=1; colnum<=settings.cols; colnum++) {
					var eh = jQuery('#li_container'+ y +' .li_cont'+colnum);
			        var border_top = ( isNaN(parseInt(eh.css('borderTopWidth'),10)) ? 0 : parseInt(eh.css('borderTopWidth'),10) );
			        var border_bottom = ( isNaN(parseInt(eh.css('borderBottomWidth'),10)) ? 0 : parseInt(eh.css('borderBottomWidth'),10) );
					mh = maxHeight - (parseInt(eh.css('paddingTop'), 10) + parseInt(eh.css('paddingBottom'), 10) + border_top + border_bottom );
			        eh.height(mh);
				}
			}
		    jQuery('#li_container' + y).append('<div style="clear:both; overflow:hidden; height:0px;"></div>');
		});
	}
}
 
jQuery.fn.uncolumnlists = function(){
	jQuery('.li_cont1').each(function(i) {
		var onecolSize = jQuery('#li_container' + (++i) + ' .li_cont1 > li').size();
		if(jQuery('#li_container' + i + ' .li_cont1').is('ul')) {
			jQuery('#li_container' + i + ' > ul > li').appendTo('#li_container' + i + ' ul:first');
			for (var j=1; j<=onecolSize; j++) {
				jQuery('#li_container' + i + ' ul:first li').removeAttr('class').removeAttr('style');
			}
			jQuery('#li_container' + i + ' ul:first').removeAttr('style').removeClass('li_cont1').insertBefore('#li_container' + i);
		} else {
			jQuery('#li_container' + i + ' > ol > li').appendTo('#li_container' + i + ' ol:first');
			for (var j=1; j<=onecolSize; j++) {
				jQuery('#li_container' + i + ' ol:first li').removeAttr('class').removeAttr('style');
			}
			jQuery('#li_container' + i + ' ol:first').removeAttr('style').removeClass('li_cont1').insertBefore('#li_container' + i);
		}
		jQuery('#li_container' + i).remove();
	});
};
/*
 * jQuery Form Example Plugin 1.4.2
 * Populate form inputs with example text that disappears on focus.
 *
 * e.g.
 *  $('input#name').example('Bob Smith');
 *  $('input[@title]').example(function() {
 *    return $(this).attr('title');
 *  });
 *  $('textarea#message').example('Type your message here', {
 *    className: 'example_text'
 *  });
 *
 * Copyright (c) Paul Mucur (http://mucur.name), 2007-2008.
 * Dual-licensed under the BSD (BSD-LICENSE.txt) and GPL (GPL-LICENSE.txt)
 * licenses.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 */
(function(a){a.fn.example=function(e,c){var d=a.isFunction(e);var b=a.extend({},c,{example:e});return this.each(function(){var f=a(this);if(a.metadata){var g=a.extend({},a.fn.example.defaults,f.metadata(),b)}else{var g=a.extend({},a.fn.example.defaults,b)}if(!a.fn.example.boundClassNames[g.className]){a(window).unload(function(){a("."+g.className).val("")});a("form").submit(function(){a(this).find("."+g.className).val("")});a.fn.example.boundClassNames[g.className]=true}if(a.browser.msie&&!f.attr("defaultValue")&&(d||f.val()==g.example)){f.val("")}if(f.val()==""&&this!=document.activeElement){f.addClass(g.className);f.val(d?g.example.call(this):g.example)}f.focus(function(){if(a(this).is("."+g.className)){a(this).val("");a(this).removeClass(g.className)}});f.change(function(){if(a(this).is("."+g.className)){a(this).removeClass(g.className)}});f.blur(function(){if(a(this).val()==""){a(this).addClass(g.className);a(this).val(d?g.example.call(this):g.example)}})})};a.fn.example.defaults={className:"example"};a.fn.example.boundClassNames=[]})(jQuery);
;

(function($){$.fn.columnize=function(options){var defaults={width:400,columns:false,buildOnce:false,overflow:false,doneFunc:function(){},target:false,ignoreImageLoading:true,float:"left",lastNeverTallest:false};var options=$.extend(defaults,options);return this.each(function(){var $inBox=options.target?$(options.target):$(this);var maxHeight=$(this).height();var $cache=$('<div></div>');var lastWidth=0;var columnizing=false;$cache.append($(this).children().clone(true));if(!options.ignoreImageLoading&&!options.target){if(!$inBox.data("imageLoaded")){$inBox.data("imageLoaded",true);if($(this).find("img").length>0){var func=function($inBox,$cache){return function(){if(!$inBox.data("firstImageLoaded")){$inBox.data("firstImageLoaded","true");$inBox.empty().append($cache.children().clone(true));$inBox.columnize(options);}}}($(this),$cache);$(this).find("img").one("load",func);$(this).find("img").one("abort",func);return;}}}
$inBox.empty();columnizeIt();if(!options.buildOnce){$(window).resize(function(){if(!options.buildOnce&&$.browser.msie){if($inBox.data("timeout")){clearTimeout($inBox.data("timeout"));}
$inBox.data("timeout",setTimeout(columnizeIt,200));}else if(!options.buildOnce){columnizeIt();}else{}});}
function columnize($putInHere,$pullOutHere,$parentColumn,height){while($parentColumn.height()<height&&$pullOutHere[0].childNodes.length){$putInHere.append($pullOutHere[0].childNodes[0]);}
if($putInHere[0].childNodes.length==0)return;var kids=$putInHere[0].childNodes;var lastKid=kids[kids.length-1];$putInHere[0].removeChild(lastKid);var $item=$(lastKid);if($item[0].nodeType==3){var oText=$item[0].nodeValue;var counter2=options.width/18;if(options.accuracy)
counter2=options.accuracy;var columnText;var latestTextNode=null;while($parentColumn.height()<height&&oText.length){if(oText.indexOf(' ',counter2)!='-1'){columnText=oText.substring(0,oText.indexOf(' ',counter2));}else{columnText=oText;}
latestTextNode=document.createTextNode(columnText);$putInHere.append(latestTextNode);if(oText.length>counter2){oText=oText.substring(oText.indexOf(' ',counter2));}else{oText="";}}
if($parentColumn.height()>=height&&latestTextNode!=null){$putInHere[0].removeChild(latestTextNode);oText=latestTextNode.nodeValue+oText;}
if(oText.length){$item[0].nodeValue=oText;}else{return false;}}
if($pullOutHere.children().length){$pullOutHere.prepend($item);}else{$pullOutHere.append($item);}
return $item[0].nodeType==3;}
function split($putInHere,$pullOutHere,$parentColumn,height){if($pullOutHere.children().length){$cloneMe=$pullOutHere.children(":first");$clone=$cloneMe.clone(true);if($clone.attr("nodeType")==1&&!$clone.hasClass("dontend")){$putInHere.append($clone);if($clone.is("img")&&$parentColumn.height()<height+20){$cloneMe.remove();}else if(!$cloneMe.hasClass("dontsplit")&&$parentColumn.height()<height+20){$cloneMe.remove();}else if($clone.is("img")||$cloneMe.hasClass("dontsplit")){$clone.remove();}else{$clone.empty();if(!columnize($clone,$cloneMe,$parentColumn,height)){if($cloneMe.children().length){split($clone,$cloneMe,$parentColumn,height);}}
if($clone.get(0).childNodes.length==0){$clone.remove();}}}}}
function singleColumnizeIt(){if($inBox.data("columnized")&&$inBox.children().length==1){return;}
$inBox.data("columnized",true);$inBox.data("columnizing",true);$inBox.empty();$inBox.append($("<div class='first last column' style='width:98%; padding: 3px; float: "+options.float+";'></div>"));$col=$inBox.children().eq($inBox.children().length-1);$destroyable=$cache.clone(true);if(options.overflow){targetHeight=options.overflow.height;columnize($col,$destroyable,$col,targetHeight);if(!$destroyable.children().find(":first-child").hasClass("dontend")){split($col,$destroyable,$col,targetHeight);}
while(checkDontEndColumn($col.children(":last").length&&$col.children(":last").get(0))){var $lastKid=$col.children(":last");$lastKid.remove();$destroyable.prepend($lastKid);}
var html="";var div=document.createElement('DIV');while($destroyable[0].childNodes.length>0){var kid=$destroyable[0].childNodes[0];for(var i=0;i<kid.attributes.length;i++){if(kid.attributes[i].nodeName.indexOf("jQuery")==0){kid.removeAttribute(kid.attributes[i].nodeName);}}
div.innerHTML="";div.appendChild($destroyable[0].childNodes[0]);html+=div.innerHTML;}
var overflow=$(options.overflow.id)[0];overflow.innerHTML=html;}else{$col.append($destroyable);}
$inBox.data("columnizing",false);if(options.overflow){options.overflow.doneFunc();}}
function checkDontEndColumn(dom){if(dom.nodeType!=1)return false;if($(dom).hasClass("dontend"))return true;if(dom.childNodes.length==0)return false;return checkDontEndColumn(dom.childNodes[dom.childNodes.length-1]);}
function columnizeIt(){if(lastWidth==$inBox.width())return;lastWidth=$inBox.width();var numCols=Math.round($inBox.width()/options.width);if(options.columns)numCols=options.columns;if(numCols<=1){return singleColumnizeIt();}
if($inBox.data("columnizing"))return;$inBox.data("columnized",true);$inBox.data("columnizing",true);$inBox.empty();$inBox.append($("<div style='width:"+(Math.round(100/numCols)-2)+"%; padding: 3px; float: "+options.float+";'></div>"));$col=$inBox.children(":last");$col.append($cache.clone());maxHeight=$col.height();$inBox.empty();var targetHeight=maxHeight/numCols;var firstTime=true;var maxLoops=3;var scrollHorizontally=false;if(options.overflow){maxLoops=1;targetHeight=options.overflow.height;}else if(options.height&&options.width){maxLoops=1;targetHeight=options.height;scrollHorizontally=true;}
for(var loopCount=0;loopCount<maxLoops;loopCount++){$inBox.empty();var $destroyable;try{$destroyable=$cache.clone(true);}catch(e){$destroyable=$cache.clone();}
$destroyable.css("visibility","hidden");for(var i=0;i<numCols;i++){var className=(i==0)?"first column":"column";var className=(i==numCols-1)?("last "+className):className;$inBox.append($("<div class='"+className+"' style='width:"+(Math.round(100/numCols)-2)+"%; float: "+options.float+";'></div>"));}
var i=0;while(i<numCols-(options.overflow?0:1)||scrollHorizontally&&$destroyable.children().length){if($inBox.children().length<=i){$inBox.append($("<div class='"+className+"' style='width:"+(Math.round(100/numCols)-2)+"%; float: "+options.float+";'></div>"));}
var $col=$inBox.children().eq(i);columnize($col,$destroyable,$col,targetHeight);if(!$destroyable.children().find(":first-child").hasClass("dontend")){split($col,$destroyable,$col,targetHeight);}else{}
while(checkDontEndColumn($col.children(":last").length&&$col.children(":last").get(0))){var $lastKid=$col.children(":last");$lastKid.remove();$destroyable.prepend($lastKid);}
i++;}
if(options.overflow&&!scrollHorizontally){var IE6=false;var IE7=(document.all)&&(navigator.appVersion.indexOf("MSIE 7.")!=-1);if(IE6||IE7){var html="";var div=document.createElement('DIV');while($destroyable[0].childNodes.length>0){var kid=$destroyable[0].childNodes[0];for(var i=0;i<kid.attributes.length;i++){if(kid.attributes[i].nodeName.indexOf("jQuery")==0){kid.removeAttribute(kid.attributes[i].nodeName);}}
div.innerHTML="";div.appendChild($destroyable[0].childNodes[0]);html+=div.innerHTML;}
var overflow=$(options.overflow.id)[0];overflow.innerHTML=html;}else{$(options.overflow.id).empty().append($destroyable.children().clone(true));}}else if(!scrollHorizontally){$col=$inBox.children().eq($inBox.children().length-1);while($destroyable.children().length)$col.append($destroyable.children(":first"));var afterH=$col.height();var diff=afterH-targetHeight;var totalH=0;var min=10000000;var max=0;var lastIsMax=false;$inBox.children().each(function($inBox){return function($item){var h=$inBox.children().eq($item).height();lastIsMax=false;totalH+=h;if(h>max){max=h;lastIsMax=true;}
if(h<min)min=h;}}($inBox));var avgH=totalH/numCols;if(options.lastNeverTallest&&lastIsMax){targetHeight=targetHeight+30;if(loopCount==maxLoops-1)maxLoops++;}else if(max-min>30){targetHeight=avgH+30;}else if(Math.abs(avgH-targetHeight)>20){targetHeight=avgH;}else{loopCount=maxLoops;}}else{$inBox.children().each(function(i){$col=$inBox.children().eq(i);$col.width(options.width+"px");if(i==0){$col.addClass("first");}else if(i==$inBox.children().length-1){$col.addClass("last");}else{$col.removeClass("first");$col.removeClass("last");}});$inBox.width($inBox.children().length*options.width+"px");}
$inBox.append($("<br style='clear:both;'>"));}
$inBox.find('.column').find(':first.removeiffirst').remove();$inBox.find('.column').find(':last.removeiflast').remove();$inBox.data("columnizing",false);if(options.overflow){options.overflow.doneFunc();}
options.doneFunc();}});};})(jQuery);;
Drupal.behaviors.themeBehavior = function (context) {

	// !FONTS	
	Cufon.replace('#rgon-navigation li a');
	Cufon.replace('#block-block-6 a');
	Cufon.replace('.block h2');
	Cufon.replace('#rgon-service a');
	Cufon.replace('#block-menu_block-1 a');
	Cufon.replace('.title');

	// !Handle ribbonNavigatie
	//handleRibbonNavigation();

	// !Input example	
	$('#block-search-0 .form-text').example('Zoeken...');
	
	// !Rounded corners
	//$('.form-submit').corner('3px');	
	
	// !Animated doormat
	//renderAnimatedDoormat();
	
	
	// !HoverClasses
	addHoverClasses($('.view-style-overzicht .views-row .list-item'),true);
	
	//Navigation: align li's	
	handleNavigation();
	
	//Custom form elements
	$('.ntype-webform .form-select').customStyle();
	
	$('.view-style-overzicht ul li').equalHeights();
	
	//Slideshow progress bar
	jQuery('#views_slideshow_singleframe_controls_wistjedat-block_1').css('top', '96px');
	jQuery('#block-views-wistjedat-block_1').css('position', 'relative');
	jQuery('#block-views-wistjedat-block_1 .block_innr').after('<div class = "progressbar" style="height:5px; width:314px; background:#8AB440; z-index:20; position:absolute; right:-15px; bottom:30px;"></div>');
	//jQuery('.progressbar').animate({width: '0'}, 5000
	//,function() {
    //  $('#views_slideshow_singleframe_teaser_section_wistjedat-block_1').cycle('next');}
	//);
	var int = window.setInterval(function() {
	  jQuery('.progressbar').width('314px');
	  jQuery('.progressbar').animate({width: '0'}, 4800, function() {
          $('#views_slideshow_singleframe_teaser_section_wistjedat-block_1').cycle('next');
        });
	}, 5000);
	jQuery('#block-views-wistjedat-block_1 .pager-item, #views_slideshow_singleframe_prev_wistjedat-block_1, #views_slideshow_singleframe_next_wistjedat-block_1').click(function(){
	  jQuery('.progressbar').stop().width(0);
	  int=window.clearInterval(int);
	  jQuery('.progressbar').width('314px');
	  jQuery('.progressbar').animate({width: '0'}, 4800, function() {
          $('#views_slideshow_singleframe_teaser_section_wistjedat-block_1').cycle('next');
        });
	  int = window.setInterval(function() {
	    jQuery('.progressbar').width('314px');
	    jQuery('.progressbar').animate({width: '0'}, 4800, function() {
          $('#views_slideshow_singleframe_teaser_section_wistjedat-block_1').cycle('next');
        });
	  }, 5000);
	});
	}
	

/*Do only one time!*/
$(document).ready(function(){
	// !Columnize sitemap
	$('#rgon-footer .menu-block-3 ul').eq(0).makeacolumnlists({cols:2,equalHeight:true});	
});

function handleNavigation(){
	var itemcount = $('#rgon-navigation ul.menu').eq(0).children('li').length;
	var full_width = $('#rgon-navigation').outerWidth();
	var each_width = Math.floor(full_width/itemcount);
	//alert(each_width);
	//alert(substract)
	var computed_width = each_width * itemcount + 8;
	
	$('#rgon-navigation ul.menu li').width(each_width);
	if(computed_width > full_width){
		$('#rgon-navigation ul.menu li.last').width(each_width-(computed_width-full_width));
	}
	$('#rgon-navigation ul.menu li').css('text-align','center');
	$('#rgon-navigation ul.menu li a').each(function(){
		if($(this).height()>30){
			$(this).addClass('treeline');
		}
		
		if($(this).height()>20){
			$(this).addClass('multiline');
		}
		
	});
}


/*======================================================================*/
/* !==DEFAULT HELPERS===================================================*/
/*======================================================================*/
function handleRibbonNavigation(){
	handleRibbonNavigation_width();	
	$(window).bind("resize", function(){
		handleRibbonNavigation_width();
	});	
}

function handleRibbonNavigation_width(){

	//Handle Doormat width and heights
	if( $('.build-doors ul.menu').length>0){
	
		
    	$('.build-doors').each(function(){
			var elements = $(this).find('li:first ~ li,li:first');
			
			//equalize heights					
			var tallest = 0;					
			$(elements).each(function() {
		        var thisHeight = $(this).height();	        
    		    if(thisHeight > tallest) {
        		    tallest = thisHeight;
        		}
    		});
    		$(elements).css('min-height',tallest);
    	});
	}
	$('.build-doors ul.menu').each(function(){ 
		
			//only edit when menu has no parents			
			if ($(this).parents('ul.menu').length==0){
				var itemcount = $(this).children().length;
				var li_children = $(this).children('li');
				
				//determine borders  
		   		var border_right = parseInt($(li_children).css('border-right-width'));
		   		if(isNaN(border_right)) border_right = 0;
	   			var border_left = parseInt($(li_children).css('border-left-width'));
	   			if(isNaN(border_left)) border_left = 0;
				
				var border_width = border_left + border_right;
				//each_width -= border_width-border_right;
				
				var full_width = $(this).parent().outerWidth();
				full_width -= (border_width*(itemcount-1));
				
   				var each_width = Math.floor(full_width/itemcount);
				$(this).children().width(each_width);
				$(this).children(':last').width(each_width-1);
				
			}
	});	
}

function renderAnimatedDoormat(){
	var theObject = $('#doormatNavigatie');
	var theHeight = $('#doormatNavigatie .inner').innerHeight();
	var originalHeight = $('#doormatNavigatie').height();
	var onDoormat = false;
		
	$('#doormatNavigatie li:first ~ li,#doormatNavigatie li:first').hover(function(){
		//$('#doormatNavigatie').height($('#doormatNavigatie .inner').outerHeight());	
		onDoormat = true;

		//show 
		$(theObject).animate({
			height: theHeight+"px"
	    }, 500 ,'swing' );
	  
		$('#doormatNavigatie .inner').bind('mouseleave',
			function(){
				onDoormat = false;
				//add small delay before hidding
				setTimeout(function(){ 	
					//don't hide is mouse is back on the doormat
					if(!onDoormat){
						$(theObject).animate({
							height: originalHeight+"px"
					    }, 250 ,'swing' );
				    }
				}, 2000 );
				/*end Timeout*/
		});
		    
    },function(){});
}

function addHoverClasses(element,addlink){

	if($(element).length>0){	
	
		if(addlink){
			$(element).click(
			 function() { 
			 	window.location=$(this).find('a').eq(0).attr('href');
			 	return false;
			 }
			);	
		}
	
		$(element).hover(
		 function() {
		 	addHoverState(this);
		 },
		 function() {
		  removeHoverState(this);
		 }
		);
	}
		
}

function addHoverState(element){
	$(element).addClass('hover');
}
function removeHoverState(element){
	$(element).removeClass('hover');
}
function clickState(element){
 	window.location=$(element).find('a').eq(0).attr('href');
 	return false;
}

function trim(value) {
  value = value.replace(/^\s+/,'');
  value = value.replace(/\s+$/,'');
  return value;
}

/*-------------------------------------------------------------------- 
 * JQuery Plugin: "EqualHeights"
 * by:	Scott Jehl, Todd Parker, Maggie Costello Wachs (http://www.filamentgroup.com)
 *
 * Copyright (c) 2008 Filament Group
 * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
 *
 * Description: Compares the heights or widths of the top-level children of a provided element 
 		and sets their min-height to the tallest height (or width to widest width). Sets in em units 
 		by default if pxToEm() method is available.
 * Dependencies: jQuery library, pxToEm method	(article: 
		http://www.filamentgroup.com/lab/retaining_scalable_interfaces_with_pixel_to_em_conversion/)							  
 * Usage Example: $(element).equalHeights();
  		Optional: to set min-height in px, pass a true argument: $(element).equalHeights(true);
 * Version: 2.0, 08.01.2008
--------------------------------------------------------------------*/

$.fn.equalHeights = function(px) {
	$(this).each(function(){
		var currentTallest = 0;
		$(this).children().each(function(i){
			if ($(this).height() > currentTallest) { currentTallest = $(this).height(); }
		});
		if (!px || !Number.prototype.pxToEm) currentTallest = currentTallest+'px'; //use ems unless px is specified
		// for ie6, set height since min-height isn't supported
		if ($.browser.msie && $.browser.version == 6.0) { $(this).children().css({'height': currentTallest}); }
		$(this).children().css({'min-height': currentTallest}); 
	});
	return this;
};





;
(function($){
 $.fn.extend({
 
 	customStyle : function(options) {
	  if(!$.browser.msie || ($.browser.msie&&$.browser.version>6)){
	  return this.each(function() {
	  
			var currentSelected = $(this).find(':selected');
			$(this).after('<span class="customStyleSelectBox"><span class="customStyleSelectBoxInner">'+currentSelected.text()+'</span></span>').css({position:'absolute', opacity:0,fontSize:$(this).next().css('font-size')});
			var selectBoxSpan = $(this).next();
			var selectBoxWidth = parseInt($(this).width()) - parseInt(selectBoxSpan.css('padding-left')) -parseInt(selectBoxSpan.css('padding-right'));			
			var selectBoxSpanInner = selectBoxSpan.find(':first-child');
			selectBoxSpan.css({display:'inline-block'});
			selectBoxSpanInner.css({width:selectBoxWidth, display:'inline-block'});
			var selectBoxHeight = parseInt(selectBoxSpan.height()) + parseInt(selectBoxSpan.css('padding-top')) + parseInt(selectBoxSpan.css('padding-bottom'));
			$(this).height(selectBoxHeight).change(function(){
				// selectBoxSpanInner.text($(this).val()).parent().addClass('changed');   This was not ideal
			selectBoxSpanInner.text($(this).find(':selected').text()).parent().addClass('changed');
				// Thanks to Juarez Filho & PaddyMurphy
			});
			
	  });
	  }
	}
 });
})(jQuery);;

