/*
 * 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")}})})();(function($){

/*
 * 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 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);;/*
 * jQuery UI Droppable 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/Droppables
 *
 * Depends:
 *	ui.core.js
 *	ui.draggable.js
 */
(function(a){a.widget("ui.droppable",{_init:function(){var c=this.options,b=c.accept;this.isover=0;this.isout=1;this.options.accept=this.options.accept&&a.isFunction(this.options.accept)?this.options.accept:function(e){return e.is(b)};this.proportions={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight};a.ui.ddmanager.droppables[this.options.scope]=a.ui.ddmanager.droppables[this.options.scope]||[];a.ui.ddmanager.droppables[this.options.scope].push(this);(this.options.addClasses&&this.element.addClass("ui-droppable"))},destroy:function(){var b=a.ui.ddmanager.droppables[this.options.scope];for(var c=0;c<b.length;c++){if(b[c]==this){b.splice(c,1)}}this.element.removeClass("ui-droppable ui-droppable-disabled").removeData("droppable").unbind(".droppable")},_setData:function(b,c){if(b=="accept"){this.options.accept=c&&a.isFunction(c)?c:function(e){return e.is(c)}}else{a.widget.prototype._setData.apply(this,arguments)}},_activate:function(c){var b=a.ui.ddmanager.current;if(this.options.activeClass){this.element.addClass(this.options.activeClass)}(b&&this._trigger("activate",c,this.ui(b)))},_deactivate:function(c){var b=a.ui.ddmanager.current;if(this.options.activeClass){this.element.removeClass(this.options.activeClass)}(b&&this._trigger("deactivate",c,this.ui(b)))},_over:function(c){var b=a.ui.ddmanager.current;if(!b||(b.currentItem||b.element)[0]==this.element[0]){return}if(this.options.accept.call(this.element[0],(b.currentItem||b.element))){if(this.options.hoverClass){this.element.addClass(this.options.hoverClass)}this._trigger("over",c,this.ui(b))}},_out:function(c){var b=a.ui.ddmanager.current;if(!b||(b.currentItem||b.element)[0]==this.element[0]){return}if(this.options.accept.call(this.element[0],(b.currentItem||b.element))){if(this.options.hoverClass){this.element.removeClass(this.options.hoverClass)}this._trigger("out",c,this.ui(b))}},_drop:function(c,d){var b=d||a.ui.ddmanager.current;if(!b||(b.currentItem||b.element)[0]==this.element[0]){return false}var e=false;this.element.find(":data(droppable)").not(".ui-draggable-dragging").each(function(){var f=a.data(this,"droppable");if(f.options.greedy&&a.ui.intersect(b,a.extend(f,{offset:f.element.offset()}),f.options.tolerance)){e=true;return false}});if(e){return false}if(this.options.accept.call(this.element[0],(b.currentItem||b.element))){if(this.options.activeClass){this.element.removeClass(this.options.activeClass)}if(this.options.hoverClass){this.element.removeClass(this.options.hoverClass)}this._trigger("drop",c,this.ui(b));return this.element}return false},ui:function(b){return{draggable:(b.currentItem||b.element),helper:b.helper,position:b.position,absolutePosition:b.positionAbs,offset:b.positionAbs}}});a.extend(a.ui.droppable,{version:"1.7.3",eventPrefix:"drop",defaults:{accept:"*",activeClass:false,addClasses:true,greedy:false,hoverClass:false,scope:"default",tolerance:"intersect"}});a.ui.intersect=function(q,j,o){if(!j.offset){return false}var e=(q.positionAbs||q.position.absolute).left,d=e+q.helperProportions.width,n=(q.positionAbs||q.position.absolute).top,m=n+q.helperProportions.height;var g=j.offset.left,c=g+j.proportions.width,p=j.offset.top,k=p+j.proportions.height;switch(o){case"fit":return(g<e&&d<c&&p<n&&m<k);break;case"intersect":return(g<e+(q.helperProportions.width/2)&&d-(q.helperProportions.width/2)<c&&p<n+(q.helperProportions.height/2)&&m-(q.helperProportions.height/2)<k);break;case"pointer":var h=((q.positionAbs||q.position.absolute).left+(q.clickOffset||q.offset.click).left),i=((q.positionAbs||q.position.absolute).top+(q.clickOffset||q.offset.click).top),f=a.ui.isOver(i,h,p,g,j.proportions.height,j.proportions.width);return f;break;case"touch":return((n>=p&&n<=k)||(m>=p&&m<=k)||(n<p&&m>k))&&((e>=g&&e<=c)||(d>=g&&d<=c)||(e<g&&d>c));break;default:return false;break}};a.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(e,g){var b=a.ui.ddmanager.droppables[e.options.scope];var f=g?g.type:null;var h=(e.currentItem||e.element).find(":data(droppable)").andSelf();droppablesLoop:for(var d=0;d<b.length;d++){if(b[d].options.disabled||(e&&!b[d].options.accept.call(b[d].element[0],(e.currentItem||e.element)))){continue}for(var c=0;c<h.length;c++){if(h[c]==b[d].element[0]){b[d].proportions.height=0;continue droppablesLoop}}b[d].visible=b[d].element.css("display")!="none";if(!b[d].visible){continue}b[d].offset=b[d].element.offset();b[d].proportions={width:b[d].element[0].offsetWidth,height:b[d].element[0].offsetHeight};if(f=="mousedown"){b[d]._activate.call(b[d],g)}}},drop:function(b,c){var d=false;a.each(a.ui.ddmanager.droppables[b.options.scope],function(){if(!this.options){return}if(!this.options.disabled&&this.visible&&a.ui.intersect(b,this,this.options.tolerance)){d=this._drop.call(this,c)}if(!this.options.disabled&&this.visible&&this.options.accept.call(this.element[0],(b.currentItem||b.element))){this.isout=1;this.isover=0;this._deactivate.call(this,c)}});return d},drag:function(b,c){if(b.options.refreshPositions){a.ui.ddmanager.prepareOffsets(b,c)}a.each(a.ui.ddmanager.droppables[b.options.scope],function(){if(this.options.disabled||this.greedyChild||!this.visible){return}var e=a.ui.intersect(b,this,this.options.tolerance);var g=!e&&this.isover==1?"isout":(e&&this.isover==0?"isover":null);if(!g){return}var f;if(this.options.greedy){var d=this.element.parents(":data(droppable):eq(0)");if(d.length){f=a.data(d[0],"droppable");f.greedyChild=(g=="isover"?1:0)}}if(f&&g=="isover"){f.isover=0;f.isout=1;f._out.call(f,c)}this[g]=1;this[g=="isout"?"isover":"isout"]=0;this[g=="isover"?"_over":"_out"].call(this,c);if(f&&g=="isout"){f.isout=0;f.isover=1;f._over.call(f,c)}})}}})(jQuery);;/*
 * jQuery UI Accordion 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/Accordion
 *
 * Depends:
 *	ui.core.js
 */
(function(a){a.widget("ui.accordion",{_init:function(){var d=this.options,b=this;this.running=0;if(d.collapsible==a.ui.accordion.defaults.collapsible&&d.alwaysOpen!=a.ui.accordion.defaults.alwaysOpen){d.collapsible=!d.alwaysOpen}if(d.navigation){var c=this.element.find("a").filter(d.navigationFilter);if(c.length){if(c.filter(d.header).length){this.active=c}else{this.active=c.parent().parent().prev();c.addClass("ui-accordion-content-active")}}}this.element.addClass("ui-accordion ui-widget ui-helper-reset");if(this.element[0].nodeName=="UL"){this.element.children("li").addClass("ui-accordion-li-fix")}this.headers=this.element.find(d.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){a(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){a(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){a(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){a(this).removeClass("ui-state-focus")});this.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");this.active=this._findActive(this.active||d.active).toggleClass("ui-state-default").toggleClass("ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");this.active.next().addClass("ui-accordion-content-active");a("<span/>").addClass("ui-icon "+d.icons.header).prependTo(this.headers);this.active.find(".ui-icon").toggleClass(d.icons.header).toggleClass(d.icons.headerSelected);if(a.browser.msie){this.element.find("a").css("zoom","1")}this.resize();this.element.attr("role","tablist");this.headers.attr("role","tab").bind("keydown",function(e){return b._keydown(e)}).next().attr("role","tabpanel");this.headers.not(this.active||"").attr("aria-expanded","false").attr("tabIndex","-1").next().hide();if(!this.active.length){this.headers.eq(0).attr("tabIndex","0")}else{this.active.attr("aria-expanded","true").attr("tabIndex","0")}if(!a.browser.safari){this.headers.find("a").attr("tabIndex","-1")}if(d.event){this.headers.bind((d.event)+".accordion",function(e){return b._clickHandler.call(b,e,this)})}},destroy:function(){var c=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role").unbind(".accordion").removeData("accordion");this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("tabindex");this.headers.find("a").removeAttr("tabindex");this.headers.children(".ui-icon").remove();var b=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active");if(c.autoHeight||c.fillHeight){b.css("height","")}},_setData:function(b,c){if(b=="alwaysOpen"){b="collapsible";c=!c}a.widget.prototype._setData.apply(this,arguments)},_keydown:function(e){var g=this.options,f=a.ui.keyCode;if(g.disabled||e.altKey||e.ctrlKey){return}var d=this.headers.length;var b=this.headers.index(e.target);var c=false;switch(e.keyCode){case f.RIGHT:case f.DOWN:c=this.headers[(b+1)%d];break;case f.LEFT:case f.UP:c=this.headers[(b-1+d)%d];break;case f.SPACE:case f.ENTER:return this._clickHandler({target:e.target},e.target)}if(c){a(e.target).attr("tabIndex","-1");a(c).attr("tabIndex","0");c.focus();return false}return true},resize:function(){var e=this.options,d;if(e.fillSpace){if(a.browser.msie){var b=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}d=this.element.parent().height();if(a.browser.msie){this.element.parent().css("overflow",b)}this.headers.each(function(){d-=a(this).outerHeight()});var c=0;this.headers.next().each(function(){c=Math.max(c,a(this).innerHeight()-a(this).height())}).height(Math.max(0,d-c)).css("overflow","auto")}else{if(e.autoHeight){d=0;this.headers.next().each(function(){d=Math.max(d,a(this).outerHeight())}).height(d)}}},activate:function(b){var c=this._findActive(b)[0];this._clickHandler({target:c},c)},_findActive:function(b){return b?typeof b=="number"?this.headers.filter(":eq("+b+")"):this.headers.not(this.headers.not(b)):b===false?a([]):this.headers.filter(":eq(0)")},_clickHandler:function(b,f){var d=this.options;if(d.disabled){return false}if(!b.target&&d.collapsible){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");var h=this.active.next(),e={options:d,newHeader:a([]),oldHeader:d.active,newContent:a([]),oldContent:h},c=(this.active=a([]));this._toggle(c,h,e);return false}var g=a(b.currentTarget||f);var i=g[0]==this.active[0];if(this.running||(!d.collapsible&&i)){return false}this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");if(!i){g.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").find(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected);g.next().addClass("ui-accordion-content-active")}var c=g.next(),h=this.active.next(),e={options:d,newHeader:i&&d.collapsible?a([]):g,oldHeader:this.active,newContent:i&&d.collapsible?a([]):c.find("> *"),oldContent:h.find("> *")},j=this.headers.index(this.active[0])>this.headers.index(g[0]);this.active=i?a([]):g;this._toggle(c,h,e,i,j);return false},_toggle:function(b,i,g,j,k){var d=this.options,m=this;this.toShow=b;this.toHide=i;this.data=g;var c=function(){if(!m){return}return m._completed.apply(m,arguments)};this._trigger("changestart",null,this.data);this.running=i.size()===0?b.size():i.size();if(d.animated){var f={};if(d.collapsible&&j){f={toShow:a([]),toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}else{f={toShow:b,toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}if(!d.proxied){d.proxied=d.animated}if(!d.proxiedDuration){d.proxiedDuration=d.duration}d.animated=a.isFunction(d.proxied)?d.proxied(f):d.proxied;d.duration=a.isFunction(d.proxiedDuration)?d.proxiedDuration(f):d.proxiedDuration;var l=a.ui.accordion.animations,e=d.duration,h=d.animated;if(!l[h]){l[h]=function(n){this.slide(n,{easing:h,duration:e||700})}}l[h](f)}else{if(d.collapsible&&j){b.toggle()}else{i.hide();b.show()}c(true)}i.prev().attr("aria-expanded","false").attr("tabIndex","-1").blur();b.prev().attr("aria-expanded","true").attr("tabIndex","0").focus()},_completed:function(b){var c=this.options;this.running=b?0:--this.running;if(this.running){return}if(c.clearStyle){this.toShow.add(this.toHide).css({height:"",overflow:""})}this._trigger("change",null,this.data)}});a.extend(a.ui.accordion,{version:"1.7.3",defaults:{active:null,alwaysOpen:true,animated:"slide",autoHeight:true,clearStyle:false,collapsible:false,event:"click",fillSpace:false,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:false,navigationFilter:function(){return this.href.toLowerCase()==location.href.toLowerCase()}},animations:{slide:function(j,h){j=a.extend({easing:"swing",duration:300},j,h);if(!j.toHide.size()){j.toShow.animate({height:"show"},j);return}if(!j.toShow.size()){j.toHide.animate({height:"hide"},j);return}var c=j.toShow.css("overflow"),g,d={},f={},e=["height","paddingTop","paddingBottom"],b;var i=j.toShow;b=i[0].style.width;i.width(parseInt(i.parent().width(),10)-parseInt(i.css("paddingLeft"),10)-parseInt(i.css("paddingRight"),10)-(parseInt(i.css("borderLeftWidth"),10)||0)-(parseInt(i.css("borderRightWidth"),10)||0));a.each(e,function(k,m){f[m]="hide";var l=(""+a.css(j.toShow[0],m)).match(/^([\d+-.]+)(.*)$/);d[m]={value:l[1],unit:l[2]||"px"}});j.toShow.css({height:0,overflow:"hidden"}).show();j.toHide.filter(":hidden").each(j.complete).end().filter(":visible").animate(f,{step:function(k,l){if(l.prop=="height"){g=(l.now-l.start)/(l.end-l.start)}j.toShow[0].style[l.prop]=(g*d[l.prop].value)+d[l.prop].unit},duration:j.duration,easing:j.easing,complete:function(){if(!j.autoHeight){j.toShow.css("height","")}j.toShow.css("width",b);j.toShow.css({overflow:c});j.complete()}})},bounceslide:function(b){this.slide(b,{easing:b.down?"easeOutBounce":"swing",duration:b.down?1000:200})},easeslide:function(b){this.slide(b,{easing:"easeinout",duration:700})}}})})(jQuery);;/*
 * jQuery UI 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 Slider 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/Slider
 *
 * Depends:
 *	ui.core.js
 */
(function(a){a.widget("ui.slider",a.extend({},a.ui.mouse,{_init:function(){var b=this,c=this.options;this._keySliding=false;this._handleIndex=null;this._detectOrientation();this._mouseInit();this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget ui-widget-content ui-corner-all");this.range=a([]);if(c.range){if(c.range===true){this.range=a("<div></div>");if(!c.values){c.values=[this._valueMin(),this._valueMin()]}if(c.values.length&&c.values.length!=2){c.values=[c.values[0],c.values[0]]}}else{this.range=a("<div></div>")}this.range.appendTo(this.element).addClass("ui-slider-range");if(c.range=="min"||c.range=="max"){this.range.addClass("ui-slider-range-"+c.range)}this.range.addClass("ui-widget-header")}if(a(".ui-slider-handle",this.element).length==0){a('<a href="#"></a>').appendTo(this.element).addClass("ui-slider-handle")}if(c.values&&c.values.length){while(a(".ui-slider-handle",this.element).length<c.values.length){a('<a href="#"></a>').appendTo(this.element).addClass("ui-slider-handle")}}this.handles=a(".ui-slider-handle",this.element).addClass("ui-state-default ui-corner-all");this.handle=this.handles.eq(0);this.handles.add(this.range).filter("a").click(function(d){d.preventDefault()}).hover(function(){if(!c.disabled){a(this).addClass("ui-state-hover")}},function(){a(this).removeClass("ui-state-hover")}).focus(function(){if(!c.disabled){a(".ui-slider .ui-state-focus").removeClass("ui-state-focus");a(this).addClass("ui-state-focus")}else{a(this).blur()}}).blur(function(){a(this).removeClass("ui-state-focus")});this.handles.each(function(d){a(this).data("index.ui-slider-handle",d)});this.handles.keydown(function(i){var f=true;var e=a(this).data("index.ui-slider-handle");if(b.options.disabled){return}switch(i.keyCode){case a.ui.keyCode.HOME:case a.ui.keyCode.END:case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:f=false;if(!b._keySliding){b._keySliding=true;a(this).addClass("ui-state-active");b._start(i,e)}break}var g,d,h=b._step();if(b.options.values&&b.options.values.length){g=d=b.values(e)}else{g=d=b.value()}switch(i.keyCode){case a.ui.keyCode.HOME:d=b._valueMin();break;case a.ui.keyCode.END:d=b._valueMax();break;case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:if(g==b._valueMax()){return}d=g+h;break;case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:if(g==b._valueMin()){return}d=g-h;break}b._slide(i,e,d);return f}).keyup(function(e){var d=a(this).data("index.ui-slider-handle");if(b._keySliding){b._stop(e,d);b._change(e,d);b._keySliding=false;a(this).removeClass("ui-state-active")}});this._refreshValue()},destroy:function(){this.handles.remove();this.range.remove();this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider");this._mouseDestroy()},_mouseCapture:function(d){var e=this.options;if(e.disabled){return false}this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()};this.elementOffset=this.element.offset();var h={x:d.pageX,y:d.pageY};var j=this._normValueFromMouse(h);var c=this._valueMax()-this._valueMin()+1,f;var k=this,i;this.handles.each(function(l){var m=Math.abs(j-k.values(l));if(c>m){c=m;f=a(this);i=l}});if(e.range==true&&this.values(1)==e.min){f=a(this.handles[++i])}this._start(d,i);k._handleIndex=i;f.addClass("ui-state-active").focus();var g=f.offset();var b=!a(d.target).parents().andSelf().is(".ui-slider-handle");this._clickOffset=b?{left:0,top:0}:{left:d.pageX-g.left-(f.width()/2),top:d.pageY-g.top-(f.height()/2)-(parseInt(f.css("borderTopWidth"),10)||0)-(parseInt(f.css("borderBottomWidth"),10)||0)+(parseInt(f.css("marginTop"),10)||0)};j=this._normValueFromMouse(h);this._slide(d,i,j);return true},_mouseStart:function(b){return true},_mouseDrag:function(d){var b={x:d.pageX,y:d.pageY};var c=this._normValueFromMouse(b);this._slide(d,this._handleIndex,c);return false},_mouseStop:function(b){this.handles.removeClass("ui-state-active");this._stop(b,this._handleIndex);this._change(b,this._handleIndex);this._handleIndex=null;this._clickOffset=null;return false},_detectOrientation:function(){this.orientation=this.options.orientation=="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(d){var c,h;if("horizontal"==this.orientation){c=this.elementSize.width;h=d.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)}else{c=this.elementSize.height;h=d.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)}var f=(h/c);if(f>1){f=1}if(f<0){f=0}if("vertical"==this.orientation){f=1-f}var e=this._valueMax()-this._valueMin(),i=f*e,b=i%this.options.step,g=this._valueMin()+i-b;if(b>(this.options.step/2)){g+=this.options.step}return parseFloat(g.toFixed(5))},_start:function(d,c){var b={handle:this.handles[c],value:this.value()};if(this.options.values&&this.options.values.length){b.value=this.values(c);b.values=this.values()}this._trigger("start",d,b)},_slide:function(f,e,d){var g=this.handles[e];if(this.options.values&&this.options.values.length){var b=this.values(e?0:1);if((this.options.values.length==2&&this.options.range===true)&&((e==0&&d>b)||(e==1&&d<b))){d=b}if(d!=this.values(e)){var c=this.values();c[e]=d;var h=this._trigger("slide",f,{handle:this.handles[e],value:d,values:c});var b=this.values(e?0:1);if(h!==false){this.values(e,d,(f.type=="mousedown"&&this.options.animate),true)}}}else{if(d!=this.value()){var h=this._trigger("slide",f,{handle:this.handles[e],value:d});if(h!==false){this._setData("value",d,(f.type=="mousedown"&&this.options.animate))}}}},_stop:function(d,c){var b={handle:this.handles[c],value:this.value()};if(this.options.values&&this.options.values.length){b.value=this.values(c);b.values=this.values()}this._trigger("stop",d,b)},_change:function(d,c){var b={handle:this.handles[c],value:this.value()};if(this.options.values&&this.options.values.length){b.value=this.values(c);b.values=this.values()}this._trigger("change",d,b)},value:function(b){if(arguments.length){this._setData("value",b);this._change(null,0)}return this._value()},values:function(b,e,c,d){if(arguments.length>1){this.options.values[b]=e;this._refreshValue(c);if(!d){this._change(null,b)}}if(arguments.length){if(this.options.values&&this.options.values.length){return this._values(b)}else{return this.value()}}else{return this._values()}},_setData:function(b,d,c){a.widget.prototype._setData.apply(this,arguments);switch(b){case"disabled":if(d){this.handles.filter(".ui-state-focus").blur();this.handles.removeClass("ui-state-hover");this.handles.attr("disabled","disabled")}else{this.handles.removeAttr("disabled")}case"orientation":this._detectOrientation();this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation);this._refreshValue(c);break;case"value":this._refreshValue(c);break}},_step:function(){var b=this.options.step;return b},_value:function(){var b=this.options.value;if(b<this._valueMin()){b=this._valueMin()}if(b>this._valueMax()){b=this._valueMax()}return b},_values:function(b){if(arguments.length){var c=this.options.values[b];if(c<this._valueMin()){c=this._valueMin()}if(c>this._valueMax()){c=this._valueMax()}return c}else{return this.options.values}},_valueMin:function(){var b=this.options.min;return b},_valueMax:function(){var b=this.options.max;return b},_refreshValue:function(c){var f=this.options.range,d=this.options,l=this;if(this.options.values&&this.options.values.length){var i,h;this.handles.each(function(p,n){var o=(l.values(p)-l._valueMin())/(l._valueMax()-l._valueMin())*100;var m={};m[l.orientation=="horizontal"?"left":"bottom"]=o+"%";a(this).stop(1,1)[c?"animate":"css"](m,d.animate);if(l.options.range===true){if(l.orientation=="horizontal"){(p==0)&&l.range.stop(1,1)[c?"animate":"css"]({left:o+"%"},d.animate);(p==1)&&l.range[c?"animate":"css"]({width:(o-lastValPercent)+"%"},{queue:false,duration:d.animate})}else{(p==0)&&l.range.stop(1,1)[c?"animate":"css"]({bottom:(o)+"%"},d.animate);(p==1)&&l.range[c?"animate":"css"]({height:(o-lastValPercent)+"%"},{queue:false,duration:d.animate})}}lastValPercent=o})}else{var j=this.value(),g=this._valueMin(),k=this._valueMax(),e=k!=g?(j-g)/(k-g)*100:0;var b={};b[l.orientation=="horizontal"?"left":"bottom"]=e+"%";this.handle.stop(1,1)[c?"animate":"css"](b,d.animate);(f=="min")&&(this.orientation=="horizontal")&&this.range.stop(1,1)[c?"animate":"css"]({width:e+"%"},d.animate);(f=="max")&&(this.orientation=="horizontal")&&this.range[c?"animate":"css"]({width:(100-e)+"%"},{queue:false,duration:d.animate});(f=="min")&&(this.orientation=="vertical")&&this.range.stop(1,1)[c?"animate":"css"]({height:e+"%"},d.animate);(f=="max")&&(this.orientation=="vertical")&&this.range[c?"animate":"css"]({height:(100-e)+"%"},{queue:false,duration:d.animate})}}}));a.extend(a.ui.slider,{getter:"value values",version:"1.7.3",eventPrefix:"slide",defaults:{animate:false,delay:0,distance:0,max:100,min:0,orientation:"horizontal",range:false,step:1,value:0,values:null}})})(jQuery);;/*
 * jQuery UI Tabs 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/Tabs
 *
 * Depends:
 *	ui.core.js
 */
(function(c){var b=0,a=0;c.widget("ui.tabs",{_init:function(){if(this.options.deselectable!==undefined){this.options.collapsible=this.options.deselectable}this._tabify(true)},_setData:function(d,e){if(d=="selected"){if(this.options.collapsible&&e==this.options.selected){return}this.select(e)}else{this.options[d]=e;if(d=="deselectable"){this.options.collapsible=e}this._tabify()}},_tabId:function(d){return d.title&&d.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||this.options.idPrefix+(++b)},_sanitizeSelector:function(d){return d.replace(/:/g,"\\:")},_cookie:function(){var d=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+(++a));return c.cookie.apply(null,[d].concat(c.makeArray(arguments)))},_ui:function(e,d){return{tab:e,panel:d,index:this.anchors.index(e)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var d=c(this);d.html(d.data("label.tabs")).removeData("label.tabs")})},_tabify:function(q){this.list=this.element.children("ul:first");this.lis=c("li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return c("a",this)[0]});this.panels=c([]);var r=this,f=this.options;var e=/^#.+/;this.anchors.each(function(u,o){var s=c(o).attr("href");var v=s.split("#")[0],w;if(v&&(v===location.toString().split("#")[0]||(w=c("base")[0])&&v===w.href)){s=o.hash;o.href=s}if(e.test(s)){r.panels=r.panels.add(r._sanitizeSelector(s))}else{if(s!="#"){c.data(o,"href.tabs",s);c.data(o,"load.tabs",s.replace(/#.*$/,""));var y=r._tabId(o);o.href="#"+y;var x=c("#"+y);if(!x.length){x=c(f.panelTemplate).attr("id",y).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(r.panels[u-1]||r.list);x.data("destroy.tabs",true)}r.panels=r.panels.add(x)}else{f.disabled.push(u)}}});if(q){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all");this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(f.selected===undefined){if(location.hash){this.anchors.each(function(s,o){if(o.hash==location.hash){f.selected=s;return false}})}if(typeof f.selected!="number"&&f.cookie){f.selected=parseInt(r._cookie(),10)}if(typeof f.selected!="number"&&this.lis.filter(".ui-tabs-selected").length){f.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}f.selected=f.selected||0}else{if(f.selected===null){f.selected=-1}}f.selected=((f.selected>=0&&this.anchors[f.selected])||f.selected<0)?f.selected:0;f.disabled=c.unique(f.disabled.concat(c.map(this.lis.filter(".ui-state-disabled"),function(s,o){return r.lis.index(s)}))).sort();if(c.inArray(f.selected,f.disabled)!=-1){f.disabled.splice(c.inArray(f.selected,f.disabled),1)}this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active");if(f.selected>=0&&this.anchors.length){this.panels.eq(f.selected).removeClass("ui-tabs-hide");this.lis.eq(f.selected).addClass("ui-tabs-selected ui-state-active");r.element.queue("tabs",function(){r._trigger("show",null,r._ui(r.anchors[f.selected],r.panels[f.selected]))});this.load(f.selected)}c(window).bind("unload",function(){r.lis.add(r.anchors).unbind(".tabs");r.lis=r.anchors=r.panels=null})}else{f.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}this.element[f.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible");if(f.cookie){this._cookie(f.selected,f.cookie)}for(var j=0,p;(p=this.lis[j]);j++){c(p)[c.inArray(j,f.disabled)!=-1&&!c(p).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled")}if(f.cache===false){this.anchors.removeData("cache.tabs")}this.lis.add(this.anchors).unbind(".tabs");if(f.event!="mouseover"){var h=function(o,i){if(i.is(":not(.ui-state-disabled)")){i.addClass("ui-state-"+o)}};var l=function(o,i){i.removeClass("ui-state-"+o)};this.lis.bind("mouseover.tabs",function(){h("hover",c(this))});this.lis.bind("mouseout.tabs",function(){l("hover",c(this))});this.anchors.bind("focus.tabs",function(){h("focus",c(this).closest("li"))});this.anchors.bind("blur.tabs",function(){l("focus",c(this).closest("li"))})}var d,k;if(f.fx){if(c.isArray(f.fx)){d=f.fx[0];k=f.fx[1]}else{d=k=f.fx}}function g(i,o){i.css({display:""});if(c.browser.msie&&o.opacity){i[0].style.removeAttribute("filter")}}var m=k?function(i,o){c(i).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");o.hide().removeClass("ui-tabs-hide").animate(k,k.duration||"normal",function(){g(o,k);r._trigger("show",null,r._ui(i,o[0]))})}:function(i,o){c(i).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");o.removeClass("ui-tabs-hide");r._trigger("show",null,r._ui(i,o[0]))};var n=d?function(o,i){i.animate(d,d.duration||"normal",function(){r.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");i.addClass("ui-tabs-hide");g(i,d);r.element.dequeue("tabs")})}:function(o,i,s){r.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");i.addClass("ui-tabs-hide");r.element.dequeue("tabs")};this.anchors.bind(f.event+".tabs",function(){var o=this,u=c(this).closest("li"),i=r.panels.filter(":not(.ui-tabs-hide)"),s=c(r._sanitizeSelector(this.hash));if((u.hasClass("ui-tabs-selected")&&!f.collapsible)||u.hasClass("ui-state-disabled")||u.hasClass("ui-state-processing")||r._trigger("select",null,r._ui(this,s[0]))===false){this.blur();return false}f.selected=r.anchors.index(this);r.abort();if(f.collapsible){if(u.hasClass("ui-tabs-selected")){f.selected=-1;if(f.cookie){r._cookie(f.selected,f.cookie)}r.element.queue("tabs",function(){n(o,i)}).dequeue("tabs");this.blur();return false}else{if(!i.length){if(f.cookie){r._cookie(f.selected,f.cookie)}r.element.queue("tabs",function(){m(o,s)});r.load(r.anchors.index(this));this.blur();return false}}}if(f.cookie){r._cookie(f.selected,f.cookie)}if(s.length){if(i.length){r.element.queue("tabs",function(){n(o,i)})}r.element.queue("tabs",function(){m(o,s)});r.load(r.anchors.index(this))}else{throw"jQuery UI Tabs: Mismatching fragment identifier."}if(c.browser.msie){this.blur()}});this.anchors.bind("click.tabs",function(){return false})},destroy:function(){var d=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){var e=c.data(this,"href.tabs");if(e){this.href=e}var f=c(this).unbind(".tabs");c.each(["href","load","cache"],function(g,h){f.removeData(h+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){if(c.data(this,"destroy.tabs")){c(this).remove()}else{c(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}});if(d.cookie){this._cookie(null,d.cookie)}},add:function(g,f,e){if(e===undefined){e=this.anchors.length}var d=this,i=this.options,k=c(i.tabTemplate.replace(/#\{href\}/g,g).replace(/#\{label\}/g,f)),j=!g.indexOf("#")?g.replace("#",""):this._tabId(c("a",k)[0]);k.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);var h=c("#"+j);if(!h.length){h=c(i.panelTemplate).attr("id",j).data("destroy.tabs",true)}h.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(e>=this.lis.length){k.appendTo(this.list);h.appendTo(this.list[0].parentNode)}else{k.insertBefore(this.lis[e]);h.insertBefore(this.panels[e])}i.disabled=c.map(i.disabled,function(m,l){return m>=e?++m:m});this._tabify();if(this.anchors.length==1){k.addClass("ui-tabs-selected ui-state-active");h.removeClass("ui-tabs-hide");this.element.queue("tabs",function(){d._trigger("show",null,d._ui(d.anchors[0],d.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[e],this.panels[e]))},remove:function(d){var f=this.options,g=this.lis.eq(d).remove(),e=this.panels.eq(d).remove();if(g.hasClass("ui-tabs-selected")&&this.anchors.length>1){this.select(d+(d+1<this.anchors.length?1:-1))}f.disabled=c.map(c.grep(f.disabled,function(j,h){return j!=d}),function(j,h){return j>=d?--j:j});this._tabify();this._trigger("remove",null,this._ui(g.find("a")[0],e[0]))},enable:function(d){var e=this.options;if(c.inArray(d,e.disabled)==-1){return}this.lis.eq(d).removeClass("ui-state-disabled");e.disabled=c.grep(e.disabled,function(g,f){return g!=d});this._trigger("enable",null,this._ui(this.anchors[d],this.panels[d]))},disable:function(e){var d=this,f=this.options;if(e!=f.selected){this.lis.eq(e).addClass("ui-state-disabled");f.disabled.push(e);f.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[e],this.panels[e]))}},select:function(d){if(typeof d=="string"){d=this.anchors.index(this.anchors.filter("[href$="+d+"]"))}else{if(d===null){d=-1}}if(d==-1&&this.options.collapsible){d=this.options.selected}this.anchors.eq(d).trigger(this.options.event+".tabs")},load:function(g){var e=this,i=this.options,d=this.anchors.eq(g)[0],f=c.data(d,"load.tabs");this.abort();if(!f||this.element.queue("tabs").length!==0&&c.data(d,"cache.tabs")){this.element.dequeue("tabs");return}this.lis.eq(g).addClass("ui-state-processing");if(i.spinner){var h=c("span",d);h.data("label.tabs",h.html()).html(i.spinner)}this.xhr=c.ajax(c.extend({},i.ajaxOptions,{url:f,success:function(k,j){c(e._sanitizeSelector(d.hash)).html(k);e._cleanup();if(i.cache){c.data(d,"cache.tabs",true)}e._trigger("load",null,e._ui(e.anchors[g],e.panels[g]));try{i.ajaxOptions.success(k,j)}catch(l){}e.element.dequeue("tabs")}}))},abort:function(){this.element.queue([]);this.panels.stop(false,true);if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup()},url:function(e,d){this.anchors.eq(e).removeData("cache.tabs").data("load.tabs",d)},length:function(){return this.anchors.length}});c.extend(c.ui.tabs,{version:"1.7.3",getter:"length",defaults:{ajaxOptions:null,cache:false,cookie:null,collapsible:false,disabled:[],event:"click",fx:null,idPrefix:"ui-tabs-",panelTemplate:"<div></div>",spinner:"<em>Loading&#8230;</em>",tabTemplate:'<li><a href="#{href}"><span>#{label}</span></a></li>'}});c.extend(c.ui.tabs.prototype,{rotation:null,rotate:function(f,h){var d=this,i=this.options;var e=d._rotate||(d._rotate=function(j){clearTimeout(d.rotation);d.rotation=setTimeout(function(){var k=i.selected;d.select(++k<d.anchors.length?k:0)},f);if(j){j.stopPropagation()}});var g=d._unrotate||(d._unrotate=!h?function(j){if(j.clientX){d.rotate(null)}}:function(j){t=i.selected;e()});if(f){this.element.bind("tabsshow",e);this.anchors.bind(i.event+".tabs",g);e()}else{clearTimeout(d.rotation);this.element.unbind("tabsshow",e);this.anchors.unbind(i.event+".tabs",g);delete this._rotate;delete this._unrotate}}})})(jQuery);;


  $.fn.popupWindow = function(instanceSettings){

		return this.each(function(){

		$(this).click(function(){

		$.fn.popupWindow.defaultSettings = {
			centerBrowser:1, // center window over browser window? {1 (YES) or 0 (NO)}. overrides top and left
			centerScreen:0, // center window over entire screen? {1 (YES) or 0 (NO)}. overrides top and left
			height:600, // sets the height in pixels of the window.
			left:0, // left position when the window appears.
			location:0, // determines whether the address bar is displayed {1 (YES) or 0 (NO)}.
			menubar:0, // determines whether the menu bar is displayed {1 (YES) or 0 (NO)}.
			resizable:0, // whether the window can be resized {1 (YES) or 0 (NO)}. Can also be overloaded using resizable.
			scrollbars:0, // determines whether scrollbars appear on the window {1 (YES) or 0 (NO)}.
			status:0, // whether a status line appears at the bottom of the window {1 (YES) or 0 (NO)}.
			width:600, // sets the width in pixels of the window.
			windowName:null, // name of window set from the name attribute of the element that invokes the click
			windowURL:null, // url used for the popup
			top:0, // top position when the window appears.
			toolbar:0 // determines whether a toolbar (includes the forward and back buttons) is displayed {1 (YES) or 0 (NO)}.
		};

		settings = $.extend({}, $.fn.popupWindow.defaultSettings, instanceSettings || {});

		var windowFeatures =    'height=' + settings.height +
								',width=' + settings.width +
								',toolbar=' + settings.toolbar +
								',scrollbars=' + settings.scrollbars +
								',status=' + settings.status +
								',resizable=' + settings.resizable +
								',location=' + settings.location +
								',menuBar=' + settings.menubar;

				settings.windowName = this.name || settings.windowName;
				settings.windowURL = this.href || settings.windowURL;
				var centeredY,centeredX;

				if(settings.centerBrowser){

					if ($.browser.msie) {//hacked together for IE browsers
						centeredY = (window.screenTop - 120) + ((((document.documentElement.clientHeight + 120)/2) - (settings.height/2)));
						centeredX = window.screenLeft + ((((document.body.offsetWidth + 20)/2) - (settings.width/2)));
					}else{
						centeredY = window.screenY + (((window.outerHeight/2) - (settings.height/2)));
						centeredX = window.screenX + (((window.outerWidth/2) - (settings.width/2)));
					}
					window.open(settings.windowURL, settings.windowName, windowFeatures+',left=' + centeredX +',top=' + centeredY).focus();
				}else if(settings.centerScreen){
					centeredY = (screen.height - settings.height)/2;
					centeredX = (screen.width - settings.width)/2;
					window.open(settings.windowURL, settings.windowName, windowFeatures+',left=' + centeredX +',top=' + centeredY).focus();
				}else{
					window.open(settings.windowURL, settings.windowName, windowFeatures+',left=' + settings.left +',top=' + settings.top).focus();
				}
				return false;
			});

		});
	};
})(jQuery);

/* GLOBAL FUNCTIONALITY WITHOUT JQUERY */

function getElementsByClassName(className, tag, elm){
    var testClass = new RegExp("(^|\\s)" + className + "(\\s|$)")
    var tag = tag || "*"
    var elm = elm || document
    var elements = (tag == "*" && elm.all)? elm.all : elm.getElementsByTagName(tag)
    var returnElements = []
    var current
    var length = elements.length
    for(var i=0; i<length; i++){
        current = elements[i]
        if(testClass.test(current.className)){
            returnElements.push(current)
        }
    }

    return returnElements;
}

/* NAVIGATION UNFOLD CODE */
/*
  written in native js in stead of jQuery for beter support
  in old browsers, since this is only written for browsers
  that have issues with the css pulldown menu methods.
*/
function init_navigation() {
    // collect navigation items
    var items = getElementsByClassName("navigation_item", "li")

    // loop through items and set the mouseover and mouseout
    // functionality on each item, and also on the target
    // child elements (this to stop the menu from collapsing
    // on title mouseout)
    var current
    for(i = 0; i < items.length; i++) {
        current = items[i]
        // set mouseover functionality
        current.onmouseover = function () {
            var children = this.childNodes
            // loop through children
            for(j = 0; j < children.length; j++) {
                var child = children[j]
                // if this child is a <ul> element,
                // show it, and bind functionality
                if(child.tagName == "UL") {
                    child.style.display = "block"
                    child.onmouseover = function () {
                        this.style.display = "block"
                    }
                    child.onmouseout  = function () {
                        this.style.display = "none"
                    }
                }
            }
        }

        current.onmouseout  = function () {
            var children = this.childNodes
            for(j = 0; j < children.length; j++) {
                var child = children[j]
                if(child.tagName == "UL")
                    child.style.display = "none"
            }
        }
    }
}


/* GLOBAL FUNCTIONALITY USING JQUERY */

function set_search_site() {
  var match = document.location.href.match(/http:\/\/.+?\/(\w+(\/helpdesk)?).*/)

  if(!match)
    return false

  var search_sites = {
    'consument'      : 'consument_collection',
    'zakelijk'       : 'zakelijk_collection',
    'overxs4all'     : 'overxs4all_collection',
    'klant'          : 'klant_collection',
    'klant/helpdesk' : 'helpdesk_collection'
  }

  if(search_sites[match[1]])
    $('#search_site').val(search_sites[match[1]])
}

// make global-external-link classes links open in new window
function install_global_external_link() {
  $("a.global-external-link, a.xs4all-external-link").bind('click', function () {
    window.open(this.href)
    return false
  })
}

function install_search_default_text() {
	 	if( $('#search-input').length >0 ){
 	var input = document.getElementById('search-input')

 	  input.orig = input.value

 	  $(input).bind('focus', function () {
 	    if(input.value == input.orig)
 	      input.value = ''
 	  })
 	  $(input).bind('blur', function () {
 	    if(!input.value || input.value == input.orig)
 	      input.value = input.orig
 	  })
   	}
 }


  /* TABS */

function install_tabs()
{
    // old tabs (06-04-2011)

  $('.tabs, #tabs').each( function () {
    var parent = this

    // remove anchor links that the tab links refer to,
    // we don't want the page hopping and scrolling when
    // a tab opens.
    $(parent).find('a.tab').each( function () {
      var href = $(this).attr('href')
      if(href.match(/#./))
        $(parent).find('a[name=' + $(this).attr('href').substr(1) + ']').remove()
    })

    // is one active?
    if(!$(parent).find('.tab.btactive')[0])
      var auto_first = true

    $(parent).find('.tab').each( function ()
    {
      if(auto_first)
      {
        $(this).addClass('btactive')
        auto_first = false
      }

      if(!$(this).hasClass('btactive'))
        $('#' + this.rel).hide()

      $(this).click( function () {
        // make tabs (in)active
        $(parent).find('.tab').removeClass('btactive')
        $(parent).find('.tab').addClass('btinactive')
        $(this).addClass('btactive')

        // show content
        var id = $(this).attr('rel')
        $(parent).find('.tab_content').hide()
        $(parent).find('.tab_content#' + id).show()

        // Get anchor/tabname and track it.
        if(window.s)
        {
          var href = $(this).attr('href')
          if(href.match(/#./))
          {
            window.s.pageName = s.getPageName()
            window.s.pageName += href
            window.s.t()
          }
        }
      })
    })

    $('a.tablink').each( function () {
      var id = $(this).attr('rel')
      if(!id)
        return

      $(this).bind('click', function () {
        $('a.tab[rel=' + id + ']').click()
        return false
      })
    })
  })
  
  
  
    // new tabs 06-04-2011 - wouter
    // add third level head_tab 11-05-2011
    if ($('.tabs_container').length > 0) {
    
        if ($('.head_tab').length > 0) {
            var headtab = $('.head_tab').get(0);
            

            if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
              $(headtab).show();
            } else {
              $(headtab).fadeIn('slow');
            }
            
            $('.head_nav li:first-child').addClass('active');
            
            $('.head_nav li').click(function() {
                var index = $('.head_nav').find('li').index($(this));
                var head = $('.tabs_container .head_tab').get(index);
                
                $('.head_nav li').removeClass('active');
                $(this).addClass('active');
                
                $('.head_tab').hide();
                if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
                  $(head).show();
                } else {
                  $(head).fadeIn('slow');
                }
                
                if ($(head).find('.tab').length > 0) {
                    $(head).find('.tabs_nav li').removeClass('active');
                    $(head).find('.tabs_nav li:first-child').addClass('active');
                    var first = $(head).find('.tab').get(0);
                    $(head).find('.tab').hide();
                    if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
                      $(first).show();
                    } else {
                      $(first).fadeIn('slow');
                    }
                    
                    if ($(first).find('.sub_tab').length > 0) {
                        $(first).find('.sub_nav li').removeClass('active');
                        $(first).find('.sub_nav li:first-child').addClass('active');
                        var first_sub = $(first).find('.sub_tab').get(0);
                        $(first).find('.sub_tab').hide();
                        if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
                          $(first_sub).show();
                        } else {
                          $(first_sub).fadeIn('slow');
                        }
                    }
                }
            });
        }
        
        var first = $('.tabs_container .tab').get(0);
        if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
          $(first).show();
        } else {
          $(first).fadeIn('slow');
        }
        
        $('.tabs_nav li:first-child').addClass('active');
        $('.tabs_nav li:first-child').addClass('first');
        $('.tabs_nav li:last-child').addClass('last');
        
        var width = $('.tabs_nav ul').width();
        
        if (width == 0) {
            width = 600;
        }
        if (width < 610) {
           // $('.tabs_nav ul').css('width', (width + 100) + 'px');
            $('.tabs_nav ul').css('width', (610 + 100) + 'px');
        } else {
            $('.tabs_nav ul').css('width', '710px');
        }
        
        if ($('.sub_tab').length > 0) { 
            var first = $('.sub_tab').get(0);
            if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
              $(first).show();
            } else {
              $(first).fadeIn('slow');
            }
            
            $('.sub_nav li:first-child').addClass('active');
        }
        
        $('.tabs_nav li').click(function() {

            var index = $('.tabs_nav').find('li').index($(this));
            var tab = $('.tabs_container .tab').get(index);
            
            //$('.tabs_container .tab').hide();
            $(this).parents('.tabs_container').find('.tab').hide();
            if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
              $(tab).show();
            } else {
              $(tab).fadeIn('slow');
            }
            
            $('.tabs_nav li').removeClass('active');
            
            $(this).addClass('active');
            
            if ($(tab).find('.sub_tab').length > 0) {
                $('.sub_nav li').removeClass('active');
                $('.sub_tab').hide();
                
                var subtab = $(tab).find('.sub_tab').get(0);
                if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
                  $(subtab).show();
                } else {
                  $(subtab).fadeIn('slow');
                }
                $('.sub_nav li:first-child').addClass('active');
            }
            
        });
        
        $('.sub_nav li').click(function() {
            
            var index = $(this).parent().find('li').index($(this));
            var subtab = $(this).parent().parent().find('.sub_tab').get(index);
            
            $('.sub_tab').hide();
            if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
              $(subtab).show();
            } else {
              $(subtab).fadeIn('slow');
            }
            
            $('.sub_nav li').removeClass('active');
            $(this).addClass('active');
            
        });
        
        var location = document.location.href;
        if (location.match('#') != null) {
            var page = location.split('#');
            var page = page[1].split('__');
            
            var pagehref = '#' + page[0];
            if (page[0].substring(0,1) == '_') {
            
                var pagehref = '#' + page[0] + '__' + page[1];
                
                $('.head_nav li a').each(function() {
                    var href = $(this).attr('href');
                    
                    if (href == '#' + page[0]) {
                        var index = $('.head_nav').find('a').index($(this));
                        var headtab = $('.tabs_container .head_tab').get(index);
                        
                        $('.tabs_container .head_tab').hide();
                        if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
                          $(headtab).show();
                        } else {
                          $(headtab).fadeIn('slow');
                        }
                        
                        $('.head_nav li').removeClass('active');
                        $(this).parent().addClass('active');
                        
                        if (page.length < 2) {
                            var firsttab = $(headtab).find('.tab').get(0);
                            if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
                              $(firsttab).show();
                            } else {
                              $(firsttab).fadeIn('slow');
                            }
                            
                            if ($(firsttab).find('.sub_tab').length > 0) {
                                var firstsubtab = $(firsttab).find('.sub_tab').get(0);
                                if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
                                  $(firstsubtab).show();
                                } else {
                                  $(firstsubtab).fadeIn('slow');
                                }
                            }
                        }                        
                                                                                           
                        $(headtab).find('.tabs_nav li a').each(function() {
                            if ($(this).attr('href') == '#' + page[0] + '__' + page[1]) {
                                var index = $(this).parent().parent().find('a').index($(this));
                                
                                var tab = $(headtab).find('.tab').get(index);     
                                $('.tab').hide();
                                if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
                                  $(tab).show();
                                } else {
                                  $(tab).fadeIn('slow');
                                }
                                
                                if ($(tab).find('.sub_tab').length > 0) {
                                    
                                    var subtab = $(tab).find('.sub_tab').get(0);
                                    //$(subtab).fadeIn('slow');
                                    $(tab).find('.sub_nav li:first-child').addClass('active');                   
                                
                                    $(tab).find('.sub_nav li a').each(function() {
                                    
                                        var index = $(this).parent().parent().find('a').index($(this));                                        
                                        var subpage = $(this).attr('href').split('__');
                                        
                                        if (page[2] == subpage[2]) {
                                            
                                            var subtab = $(tab).find('.sub_tab').get(index);
                                            $(tab).find('.sub_tab').hide();
                                            if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
                                              $(subtab).show();
                                            } else {
                                              $(subtab).fadeIn('slow');
                                            }
                                            
                                            $('.sub_nav li').removeClass('active');
                                            $(this).parent().addClass('active');                                
                                            
                                        }
                                        
                                    });
                                    
                                }                                                 
                                
                            }
                        });
       
                    }
                    
                });
                
            }
            
            $('.tabs_nav ul li a').each(function() {
            
                var href = $(this).attr('href');

                if (href == pagehref) {
               
                    var index = $('.tabs_nav').find('a').index($(this));
                    var tab = $('.tabs_container .tab').get(index);
                    
                    $('.tab').hide();
                    if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
                      $(tab).show();
                    } else {
                      $(tab).fadeIn('slow');
                    }
                    
                    $('.tabs_nav li').removeClass('active');
                    
                    $(this).parent().addClass('active');
                                        
                    // check for subtabs    
                    if ($(tab).find('.sub_tab').length > 0) {
                        
                        if (page.length < 3) {
                            var subtab = $(tab).find('.sub_tab').get(0);
                            $('.sub_tab').hide();
                            if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
                              $(subtab).show();
                            } else {
                              $(subtab).fadeIn('slow');
                            }
                        }
                        
                        $(tab).find('.sub_nav li:first-child').addClass('active');                                           
                        
                        $(tab).find('.sub_nav li a').each(function() {
                        
                            var index = $(this).parent().parent().find('a').index($(this));                            
                            
                            var subpage = $(this).attr('href').split('__');
                            
                            if (subpage.length > 2) {
                                var cur_subpage = subpage[2];
                                var cur_page = page[2];
                            } else {
                                var cur_subpage = subpage[1];
                                var cur_page = page[1];
                            }

                            if (cur_page == cur_subpage) {

                                var subtab = $(tab).find('.sub_tab').get(index);
                                $('.sub_tab').hide();
                                if( $.browser.msie && parseInt($.browser.version,10) <= 8 ) {
                                  $(subtab).show();
                                } else {
                                  $(subtab).fadeIn('slow');
                                }
                                
                                $('.sub_nav li').removeClass('active');
                                $(this).parent().addClass('active');                                
                                
                            }
                            
                        });
                    }    
                
                }
                
                
                
            });
        }
        
    }
  
}

function install_faq()
{
  // Don't do anything in noframe mode
  if(document.location.href.match('noframe=1'))
    return

  // Don't do anything if the old faqlibs are loaded
  if(window.faqlibs)
    return

  if(!$('#faq_links').length && !$('.faq_links').length)
    return

  $('.faq_buttons').show()

  $('#faq_links, .faq_links').hide()
  $('.faq_content').hide()

  $('.faq_item').click( function () { 
    // Track item name
    if(window.s)
    {
      var href = $(this).attr('href')
      if(href.match(/#./))
      {
        window.s.pageName = s.getPageName()
        window.s.pageName += href
        window.s.t()
      }
    }
    $(this).siblings('.faq_content').toggle() 
  })

  $('.faq_open_all').click( function () {
    if(this.rel)
    {
      $('#' + this.rel + ' .faq_content').show()
    } else {
      $('.faq_content').show()
    }

    return false
  })
  $('.faq_close_all').click( function () {
    if(this.rel)
    {
      $('#' + this.rel + ' .faq_content').hide()
    } else {
      $('.faq_content').hide()
    }

    return false
  })
}

function read_anchor()
{
  var url = document.location.href
  if(url.match(/#/))
    var anchor = url.substr(url.indexOf('#'))

  // try faq
  $('a.faq_item[href=' + anchor + ']').click()
  // try tab
  $('a.tab[href=' + anchor + ']').click()
}

function install_pagepopup()
{
  try{
    $('.page_popup').popupWindow({
    centerBrowser:1
    })
    $('.page_popup_wide').popupWindow({
    centerBrowser:1,
    width:1000,
    height:800
    })
  } catch(e) {}
}

function install_infobuttons()
{
  $('.infobutton').each( function () {

    // predefined icon or custom?
    if($(this).prev('.infobutton_handle')[0]) // Custom
    {
      var handle = $(this).prev('.infobutton_handle')[0]
      handle._content = $(this).html()
      handle._type    = 'custom'

    } else { // Predefined

      var handle = document.createElement('img')
      handle.className = 'infobutton_image'
  
      var _content = $(this).html()
      handle._content = _content

      if($(this).hasClass('noicon'))
      {
        handle.className += ' noicon'
        handle.src = '/sitebuild/images/pixel_wit.jpg'
      } else {
        handle.src = '/sitebuild/images/info.png'
        if($(this).hasClass('questionmark'))
          handle.src = '/sitebuild/images/question_yellow.png'
      }

      $(this).after(handle)
    }

    if($(this).hasClass('hover'))
    {
      $(handle).bind('mouseover', function (e) {
        if(this._infobutton_timeout)
          clearTimeout(this._infobutton_timeout)

        open_infobutton(this, true)
      })
      $(handle).bind('mouseout', function () {
        var handle = this
        this._infobutton_timeout = setTimeout( function () { 
          if(!handle._infobutton_popup_hover)
          {
            $(handle._infobutton_popup).remove()
            handle._infobutton_popup_hover = false
            handle._infobutton_popup = false
          }
        }, 500)
      })
    } else {
      handle.title    = 'Klik voor meer informatie'

      $(handle).click( function (e) {
        open_infobutton(this)
      })
    }
  })
}

function open_infobutton(handle, hover)
{
  if(handle._infobutton_popup)
  {
    return
  }

  var div = document.createElement('div')
  div.className = 'infobutton_popup'
  div.innerHTML = handle._content
  handle._div      = div
  handle_pos       = $(handle).position()
  var _left     = $(handle).attr('left') ? parseInt($(handle).attr('left')) : 0
  var _top      = $(handle).attr('top')  ? parseInt($(handle).attr('top'))  : 0
  var _width    = $(handle).attr('popup_width') ? parseInt($(handle).attr('popup_width')) : 0

  $(div).css({
    'left' : parseInt(handle_pos['left']) + 32 + _left +'px',
    'top'  : parseInt(handle_pos['top']) + _top +'px'
  })
  if(_width)
    $(div).css({ 'width' : _width + 'px' })

  // A hover type handler with a link in the content can stay.
  if(hover)
  {
    $(div).hover(
      function () { handle._infobutton_popup_hover = true },
      function () { 
        if(handle._infobutton_timeout)
          clearTimeout(handle._infobutton_timeout)

        $(handle._infobutton_popup).remove()
        handle._infobutton_popup_hover = false
        handle._infobutton_popup = false
      }
    )
  }

  if(!hover)
  {
    $(div).click( function () { 
      $(this).remove() 
      handle._infobutton_popup_hover = false
      handle._infobutton_popup = false
    })
  }
  $(handle).click( function () {
    $(this._div).remove()
    $(this).click( function (e) { open_infobutton(this) })

    this._infobutton_popup_hover = false
    this._infobutton_popup = false
  })

  $(handle).parent().append(div)
  handle._infobutton_popup = div
}

// Allow images (or any other element) to be checkboxes or radio buttons
function install_xs_checkbox()
{
  $('input[type=checkbox].xs_checkbox, input[type=radio].xs_checkbox').each( function () {
    if( $(this).is( ":hidden" ) ) return;
    $(this).hide();

    var box = document.createElement('div')
    box.className = 'xs_checkbox'
    if($(this).attr('checked'))
      box.className += ' checked'
    
    box.checkbox = this
    this.image   = box

    // Add click listener to parent label (if any)
    var label = false
    if(this.parentNode.tagName == 'LABEL')
    {
      label = this.parentNode
    } else if(this.id && $('label[for=' + this.id + ']').length) {
      label = $('label[for=' + this.id + ']')[0]
    }
    label.checkbox = this
    label.image    = box

    $(label).click( function (e) {
      if($(this.checkbox).attr('checked'))
      {
        // Radio? Do nothing, already on.
        if(this.checkbox.type.toLowerCase() = 'radio')
          return

        $(this.checkbox).removeAttr('checked')
        $(this.image).removeClass('checked')
      } else {
        // Radio? Turn off all other
        if(this.checkbox.type.toLowerCase() == 'radio')
        {
          $('input[name=' + this.checkbox.name + ']').each( function () {
            if(this.image)
              $(this.image).removeClass('checked')
          })
        }

        $(this.checkbox).attr('checked', 'checked')
        $(this.image).addClass('checked')
        
      }
      
      e.preventDefault()
      e.stopPropagation()
    })

    $(box).click( function (e) {
      if($(this.checkbox).attr('checked'))
      {
        // Radio? Do nothing, already on.
        if(this.checkbox.type.toLowerCase() = 'radio')
          return

        $(this.checkbox).removeAttr('checked')
        $(this).removeClass('checked')
      } else {
        // Radio? Turn off all other
        if(this.checkbox.type.toLowerCase() == 'radio')
        {
          $('input[name=' + this.checkbox.name + ']').each( function () {
            if(this.image)
              $(this.image).removeClass('checked')
          })
        }

        $(this.checkbox).attr('checked', 'checked')
        $(this).addClass('checked')
      }

      e.preventDefault()
      e.stopPropagation()
    })

    this.parentNode.insertBefore(box, this)
  })
}

function getUrlVars(url) {
    var vars = [], hash;
    var _url = url ? url : window.location.href
    var hashes = _url.slice(_url.indexOf('?') + 1).split('&');
    for (var i = 0; i < hashes.length; i++) {
        hash = hashes[i].split('=');
        vars.push(hash[0]);
        vars[hash[0]] = hash[1];
    }
    return vars;
}

function install_callmenow()
{
    if(!$('#callmenow').length)
        return

    // Make it visible
    $('#callmenow').show()

    $('#callmenow .head').click( function () {
        $('#callmenow').toggleClass('open')

        $('#loading_overlay').css({ 
            'height' : $(document).height(),
            'width'  : $(document).width()
        }).toggle()
        $('#callmenow_error').toggle()

        if($('#callmenow').hasClass('open'))
        {
            $('#loading_overlay').click( function () {
                $('#callmenow .head').click()
            })
        } else {
            $('#loading_overlay').unbind('click')
        }
    })

    // Open overlay for init states
    if($('#callmenow').hasClass('open'))
        $('#loading_overlay').css({ 
            'height' : $(document).height(),
            'width'  : $(document).width()
        }).show()

   $('#callmenow form').bind('submit', function () {
        $('#loading span').html('Bezig contact te maken met onze telefooncentrale...<br><br>Een moment geduld...')

        // Sent omniture event.
        if(window.s)
        {
            window.s.events = 'event9'
            window.s.t()
        }
   })
}



// init
$(document).ready( function () {
  install_tabs()
  install_faq()
  read_anchor()

  install_global_external_link()
  install_search_default_text()

  // set_search_site()

  install_pagepopup()
  install_infobuttons()

  install_xs_checkbox()

  install_callmenow()
})


// ipv6 image link
// $('#ipv6_image').click({ function() {
// 	document.location = 'http://www.xs4all.nl/ipv6'
// })




//*************** CUFON **********************/

/*
 * 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 1998 by (URW)++ Design & Development GmbH
 */
Cufon.registerFont({"w":181,"face":{"font-family":"corporate","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-19 -316 311 78.2699","underline-thickness":"26.3672","underline-position":"-22.6758","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":90},"!":{"d":"21,-234r33,0r-4,169r-26,0xm20,-35r36,0r0,35r-36,0r0,-35","w":75},"\"":{"d":"40,-151r-19,0r-5,-89r28,0xm86,-151r-19,0r-4,-89r28,0","w":107},"#":{"d":"172,-100r-4,24r-36,0r-12,76r-28,0r12,-76r-44,0r-12,76r-27,0r12,-76r-36,0r4,-24r36,0r7,-45r-36,0r4,-24r36,0r11,-71r27,0r-11,71r44,0r11,-71r28,0r-11,71r36,0r-4,25r-36,0r-7,44r36,0xm115,-144r-44,0r-7,44r44,0","w":180},"$":{"d":"19,-182v0,-37,27,-58,64,-61r0,-25r16,0r0,25v15,2,27,9,36,19r0,-17r21,0r0,67r-19,0v-1,-26,-14,-42,-38,-46r0,81v45,19,65,27,68,74v2,41,-27,66,-68,68r0,29r-16,0r0,-30v-18,-2,-33,-10,-45,-23r0,21r-22,0r0,-76r22,0v1,32,18,51,45,56r0,-93v-40,-16,-64,-28,-64,-69xm99,-20v38,0,50,-55,21,-75r-21,-11r0,86xm83,-221v-33,1,-48,45,-21,64v4,2,10,6,21,11r0,-75"},"%":{"d":"27,0r140,-240r22,0r-140,240r-22,0xm160,2v-61,0,-61,-115,0,-116v29,0,47,29,47,59v0,30,-18,57,-47,57xm160,-18v32,0,32,-74,0,-76v-32,1,-32,75,0,76xm57,-126v-62,0,-63,-114,-1,-116v29,0,47,29,47,59v0,30,-18,56,-46,57xm56,-146v32,0,32,-74,0,-76v-33,2,-33,75,0,76","w":215},"&":{"d":"127,-191v0,25,-19,47,-37,61r47,66v5,-7,7,-19,8,-36r-18,0r0,-22r61,0r0,21r-21,0v0,25,-5,44,-15,57r15,23r25,0r0,21r-47,0r-13,-20v-34,41,-126,25,-126,-40v0,-30,22,-58,44,-73v-13,-18,-26,-33,-26,-56v-1,-29,23,-48,53,-48v29,0,50,19,50,46xm77,-214v-36,2,-20,46,-4,61v15,-9,26,-27,26,-39v0,-13,-8,-23,-22,-22xm66,-111v-40,22,-39,89,12,90v15,0,29,-6,40,-18","w":197},"'":{"d":"40,-151r-19,0r-4,-89r27,0","w":60},"(":{"d":"65,71v-60,-69,-58,-243,0,-312r23,0v-51,70,-52,242,0,312r-23,0","w":93},")":{"d":"28,-241v60,69,58,243,0,312r-23,0v52,-71,52,-241,0,-312r23,0","w":93},"*":{"d":"81,-195r0,-39r18,0r0,39r37,-12r6,17r-38,12r23,32r-14,11r-23,-32r-23,32r-15,-11r24,-32r-38,-12r6,-17","w":180},"+":{"d":"13,-131r65,0r0,-67r26,0r0,67r65,0r0,24r-65,0r0,67r-26,0r0,-67r-65,0r0,-24"},",":{"d":"17,-40r42,0r0,40r-29,45r-21,0r32,-45r-24,0r0,-40","w":74,"k":{"1":17}},"-":{"d":"0,-102r72,0r0,18r-72,0r0,-18","w":72,"k":{"\u00c1":3,"\u00c6":10,"\u00c5":3,"\u00c4":3,"Y":19,"W":5,"V":11,"T":14,"A":2}},".":{"d":"18,-40r40,0r0,40r-40,0r0,-40","w":75,"k":{"1":19}},"\/":{"d":"-19,58r120,-298r22,0r-119,298r-23,0","w":127},"0":{"d":"11,-118v-1,-63,25,-120,80,-119v60,1,79,57,80,120v1,63,-25,122,-80,120v-60,-2,-79,-53,-80,-121xm91,-214v-32,0,-48,32,-48,96v0,65,16,98,48,98v32,0,48,-33,48,-97v0,-65,-16,-97,-48,-97","k":{"7":7,"4":-2,"1":15}},"1":{"d":"39,-195v31,-2,44,-12,48,-41r24,0r0,214r32,0r0,22r-97,0r0,-22r34,0r0,-156r-41,0r0,-17","k":{"9":30,"8":23,"7":21,"6":24,"5":22,"4":27,"3":20,"2":15,"1":29,"0":21,".":13,",":14}},"2":{"d":"153,-181v-7,69,-55,101,-100,154r85,0r0,-30r23,0r0,57r-142,0r0,-24v41,-48,89,-88,103,-154v0,-20,-16,-34,-37,-34v-26,-1,-40,19,-41,46r-23,0v-1,-44,28,-71,69,-71v35,0,66,23,63,56","k":{"7":11,"4":5,"1":20}},"3":{"d":"131,-69v-1,-33,-25,-48,-62,-45r0,-25v30,5,53,-10,53,-39v0,-22,-14,-35,-35,-35v-24,-1,-38,15,-39,40r-25,0v1,-40,28,-64,67,-64v65,0,86,89,29,110v79,22,42,133,-32,130v-42,-2,-71,-24,-71,-69r25,0v1,28,17,45,44,45v27,-1,46,-20,46,-48","k":{"7":12,"4":1,"1":21}},"4":{"d":"130,-88r35,0r0,24r-35,0r0,42r23,0r0,22r-78,0r0,-22r25,0r0,-42r-91,0r0,-23r93,-150r28,0r0,149xm100,-88r2,-117r-67,117r65,0","k":{"7":15,"4":-1,"1":24}},"5":{"d":"133,-81v2,-55,-60,-76,-88,-31r-21,-3r18,-119r111,0r-5,27r-86,0r-9,60v48,-35,111,1,111,63v0,67,-70,113,-122,72v-14,-11,-20,-27,-20,-47r24,0v1,24,19,38,40,38v29,0,46,-28,47,-60","k":{"7":12,"1":27}},"6":{"d":"89,3v-43,0,-71,-39,-70,-83v0,-43,28,-96,86,-161r32,0v-25,27,-46,54,-62,81v51,-14,86,28,86,77v0,46,-27,86,-72,86xm90,-20v55,0,54,-121,0,-121v-31,0,-40,28,-40,60v1,34,9,61,40,61","k":{"7":21,"4":1,"1":30}},"7":{"d":"21,-234r144,0r0,24r-104,210r-32,0r107,-205r-91,0r0,30r-24,0r0,-59","k":{":":12,"8":10,"7":6,"6":26,"5":14,"4":28,"3":10,"2":10,"1":18,".":34,",":35}},"8":{"d":"91,3v-71,8,-100,-101,-38,-126v-54,-24,-28,-123,38,-114v66,-8,92,90,37,114v63,24,34,134,-37,126xm126,-173v0,-25,-11,-41,-35,-41v-24,0,-35,15,-35,40v0,25,12,42,35,42v23,0,35,-17,35,-41xm131,-66v0,-27,-14,-45,-40,-45v-26,0,-40,19,-40,45v-1,27,13,46,40,46v26,0,41,-19,40,-46","k":{"7":9,"1":18}},"9":{"d":"92,-237v43,-1,71,39,71,83v0,43,-28,96,-86,161r-32,0v25,-27,46,-54,62,-81v-51,14,-86,-28,-86,-77v0,-44,27,-85,71,-86xm132,-153v-1,-34,-9,-61,-40,-61v-55,0,-54,121,0,121v31,0,40,-28,40,-60","k":{"7":8,"4":9,"1":17}},":":{"d":"18,-148r40,0r0,40r-40,0r0,-40xm18,-40r40,0r0,40r-40,0r0,-40","w":75},";":{"d":"17,-40r42,0r0,40r-29,45r-21,0r32,-45r-24,0r0,-40xm18,-148r41,0r0,40r-41,0r0,-40","w":74},"<":{"d":"168,-208r0,29r-125,58r125,57r0,29r-156,-74r0,-25","w":180},"=":{"d":"13,-158r156,0r0,23r-156,0r0,-23xm13,-103r156,0r0,23r-156,0r0,-23"},">":{"d":"12,-35r0,-29r125,-57r-125,-58r0,-29r156,74r0,25","w":180},"?":{"d":"131,-187v1,55,-67,54,-59,121r-28,0v-10,-67,46,-74,54,-119v3,-16,-12,-27,-28,-26v-20,0,-33,15,-35,36r-26,0v-6,-74,122,-86,122,-12xm44,-35r35,0r0,35r-35,0r0,-35","w":141},"@":{"d":"26,-118v-2,88,95,118,175,84r7,21v-95,42,-210,1,-207,-106v2,-72,51,-124,125,-124v64,0,112,40,113,106v1,38,-26,85,-59,84v-13,1,-25,-9,-27,-21v-25,40,-101,20,-94,-35v-7,-54,71,-103,100,-50r4,-18r24,0r-17,90v0,9,3,14,11,14v20,-2,35,-35,35,-63v0,-49,-38,-85,-88,-84v-61,2,-101,40,-102,102xm115,-75v37,3,55,-80,9,-82v-40,-3,-58,81,-9,82","w":239},"A":{"d":"104,-242r32,0r69,219r31,0r0,23r-91,0r0,-23r27,0r-16,-52r-83,0r-16,52r26,0r0,23r-81,0r0,-23r29,0xm149,-99r-32,-113r-36,113r68,0","w":238,"k":{"\u00d9":15,"\u00db":15,"\u00da":15,"\u00ab":7,"\u00e7":3,"\u00dc":15,"\u00d6":11,"\u00c7":12,"y":23,"w":17,"v":23,"u":8,"t":6,"q":5,"o":4,"g":-6,"e":4,"d":4,"c":3,"b":4,"a":-4,"Y":17,"W":24,"V":35,"U":15,"T":12,"Q":11,"O":11,"G":10,"C":9,".":-3,"-":3,",":-3}},"B":{"d":"191,-69v1,81,-96,69,-181,69r0,-23r30,0r0,-194r-30,0r0,-23v71,3,169,-16,169,59v0,27,-13,45,-37,52v30,6,49,27,49,60xm146,-177v0,-38,-30,-40,-74,-39r0,78v42,1,74,-1,74,-39xm157,-69v0,-44,-34,-46,-85,-45r0,90v50,1,85,-1,85,-45","w":203,"k":{"\u00d2":1,"\u00d4":1,"\u00d3":1,"\u00c1":3,"\u00c2":3,"\u00c3":3,"\u00c6":2,"\u00d6":1,"\u00c5":3,"\u00c4":3,"Y":3,"W":4,"V":5,"O":1,"A":3}},"C":{"d":"13,-119v0,-97,87,-162,159,-104r0,-17r24,0r0,70r-25,0v-2,-33,-19,-50,-54,-50v-52,-1,-70,46,-69,101v0,54,17,99,66,99v37,0,55,-24,57,-63r26,0v0,54,-33,88,-85,88v-67,0,-99,-53,-99,-124","w":210,"k":{"\u00d3":1,"\u00c1":4,"\u00c6":3,"\u00d6":1,"\u00c5":4,"\u00c4":4,"O":1,"K":-1,"H":-1,"A":4}},"D":{"d":"213,-120v0,77,-40,126,-129,120r-74,0r0,-23r30,0r0,-194r-30,0r0,-23r74,0v91,-6,129,41,129,120xm180,-120v0,-67,-30,-105,-108,-96r0,192v78,9,108,-29,108,-96","w":226,"k":{"\u00c1":14,"\u00c2":14,"\u00c3":14,"\u00c0":14,"\u00c5":14,"\u00c4":14,"Y":11,"X":14,"W":11,"V":13,"T":1,"J":11,"A":14}},"E":{"d":"174,-184r-24,0r0,-32r-78,0r0,78r81,0r0,25r-81,0r0,89r81,0r0,-39r23,0r0,63r-166,0r0,-23r30,0r0,-194r-30,0r0,-23r164,0r0,56","w":187},"F":{"d":"174,-184r-24,0r0,-32r-78,0r0,78r81,0r0,25r-81,0r0,90r36,0r0,23r-98,0r0,-23r30,0r0,-194r-30,0r0,-23r164,0r0,56","w":178,"k":{"\u00c1":23,"\u00c2":23,"\u00c3":23,"\u00c0":23,"\u00f8":7,"\u00e6":9,"\u00f6":7,"\u00f3":7,"\u00e9":8,"\u00e5":9,"\u00e4":9,"\u00e1":9,"\u00d6":1,"\u00c5":23,"\u00c4":23,"u":1,"r":1,"o":7,"j":2,"i":1,"e":8,"a":9,"O":1,"J":-3,"A":23,".":25,"-":-1,",":24}},"G":{"d":"14,-120v0,-98,88,-160,157,-103r0,-17r24,0r0,70r-24,0v-2,-32,-23,-51,-55,-51v-53,0,-69,45,-69,103v0,55,18,98,70,99v22,0,38,-7,51,-19r0,-51r-29,0r0,-23r85,0r0,23r-26,0r0,60v-21,23,-48,34,-81,34v-71,-1,-103,-51,-103,-125","w":226,"k":{"\u00c1":5,"\u00c2":5,"\u00c3":5,"\u00c0":5,"\u00c6":4,"\u00c5":5,"\u00c4":5,"Y":2,"W":3,"V":3,"T":4,"A":5}},"H":{"d":"71,-138r102,0r0,-79r-30,0r0,-23r91,0r0,23r-30,0r0,194r30,0r0,23r-91,0r0,-23r30,0r0,-92r-102,0r0,92r30,0r0,23r-91,0r0,-23r30,0r0,-194r-30,0r0,-23r91,0r0,23r-30,0r0,79","w":244},"I":{"d":"10,-240r92,0r0,23r-29,0r0,194r29,0r0,23r-92,0r0,-23r30,0r0,-194r-30,0r0,-23","w":112},"J":{"d":"1,8v43,2,45,-22,45,-65r0,-160r-30,0r0,-23r92,0r0,23r-30,0r0,160v3,64,-16,91,-77,89r0,-24","w":117,"k":{"\u00c6":7,"\u00c5":8,"\u00c4":8,"A":8}},"K":{"d":"10,-240r89,0r0,23r-29,0r0,92r90,-92r-24,0r0,-23r84,0r0,23r-30,0r-70,74r78,120r30,0r0,23r-92,0r0,-23r24,0r-60,-101r-30,32r0,69r28,0r0,23r-88,0r0,-23r30,0r0,-194r-30,0r0,-23","w":232,"k":{"\u00d3":12,"\u00e6":-3,"\u00fc":9,"\u00f6":5,"\u00f3":5,"\u00e5":-3,"\u00e4":-3,"\u00d6":12,"y":24,"u":9,"o":5,"e":5,"a":-3,"T":-5,"S":-6,"O":12,"G":11,"C":10,"-":14}},"L":{"d":"72,-24r82,0r0,-39r24,0r0,63r-168,0r0,-23r30,0r0,-194r-30,0r0,-23r92,0r0,23r-30,0r0,193","w":182,"k":{"\u00c1":-10,"\u00c6":-11,"\u00fc":5,"\u00dc":9,"\u00c5":-10,"\u00c4":-10,"y":17,"u":5,"Y":18,"W":21,"V":28,"U":9,"T":13,"S":-6,"A":-10,"-":-8}},"M":{"d":"10,-240r78,0r58,194r65,-194r76,0r0,23r-30,0r0,194r30,0r0,23r-91,0r0,-23r30,0r0,-192r-70,205r-28,0r-63,-203r0,190r30,0r0,23r-85,0r0,-23r30,0r0,-194r-30,0r0,-23","w":297},"N":{"d":"10,-240r68,0r102,190r0,-167r-30,0r0,-23r84,0r0,23r-30,0r0,217r-28,0r-112,-206r1,183r30,0r0,23r-85,0r0,-23r30,0r0,-194r-30,0r0,-23","w":243,"k":{"\u00d3":7,"\u00c1":7,"\u00f8":4,"\u00e6":7,"\u00c6":6,"\u00fc":10,"\u00f6":7,"\u00f3":7,"\u00e9":9,"\u00e5":7,"\u00e4":7,"\u00e1":7,"\u00d6":7,"\u00c7":6,"\u00c5":7,"\u00c4":7,"u":10,"o":7,"e":9,"a":7,"O":7,"G":6,"C":6,"A":7,".":5,",":4}},"O":{"d":"14,-122v0,-69,32,-123,100,-123v67,0,100,53,100,125v-1,70,-30,125,-100,125v-70,0,-100,-53,-100,-127xm180,-120v0,-56,-15,-101,-66,-101v-49,0,-66,42,-66,100v0,57,13,102,66,102v48,0,67,-46,66,-101","w":227,"k":{"\u00c1":11,"\u00c6":9,"\u00c5":11,"\u00c4":11,"Y":8,"X":11,"W":9,"V":10,"A":11}},"P":{"d":"185,-170v0,56,-45,77,-113,70r0,77r33,0r0,23r-95,0r0,-23r30,0r0,-194r-30,0r0,-23r78,0v62,-5,97,19,97,70xm151,-170v0,-43,-31,-48,-79,-46r0,92v43,1,79,-2,79,-46","w":191,"k":{"\u00c1":27,"\u00f8":5,"\u00e6":1,"\u00c6":30,"\u00f6":5,"\u00f3":5,"\u00e9":6,"\u00e5":3,"\u00e4":3,"\u00e1":3,"\u00c5":27,"\u00c4":27,"o":5,"e":6,"a":3,"J":5,"A":27,".":27,"-":1,",":28}},"Q":{"d":"114,-245v93,-4,121,118,85,198r44,47r-40,0r-20,-23v-20,19,-43,28,-69,28v-69,-1,-100,-53,-100,-125v0,-70,30,-123,100,-125xm180,-120v0,-56,-16,-101,-66,-101v-49,0,-66,42,-66,100v0,57,13,102,66,102v50,0,66,-46,66,-101","w":227},"R":{"d":"193,-174v0,31,-20,56,-47,63r42,88r28,0r0,23r-54,0r-46,-108r-45,0r0,85r29,0r0,23r-90,0r0,-23r30,0r0,-194r-30,0r0,-23v85,1,183,-15,183,66xm160,-174v0,-43,-40,-43,-88,-42r0,84v47,2,88,2,88,-42","w":218,"k":{"\u00d3":8,"\u00e6":-4,"\u00fc":3,"\u00fa":3,"\u00f6":4,"\u00f3":4,"\u00e9":4,"\u00e5":-4,"\u00e4":-4,"\u00e1":-4,"\u00dc":10,"\u00d6":8,"\u00c7":8,"u":3,"o":4,"e":4,"a":-4,"Y":5,"W":6,"V":8,"U":10,"T":1,"O":8,"G":8,"C":8,"-":5}},"S":{"d":"33,-136v-48,-35,-14,-109,47,-109v22,0,39,8,52,23r0,-18r21,0r0,66r-20,0v4,-52,-90,-64,-90,-11v0,58,129,45,121,119v7,70,-97,93,-133,45r0,21r-21,0r0,-74r21,0v0,34,23,54,57,54v37,0,59,-41,36,-67v-15,-17,-87,-40,-91,-49","w":174,"k":{"\u00c6":-1,"t":3,"Y":-2,"W":-2,"V":-2,"T":-1}},"T":{"d":"4,-240r180,0r0,61r-24,0r0,-37r-50,0r0,193r30,0r0,23r-92,0r0,-23r30,0r0,-193r-50,0r0,37r-24,0r0,-61","w":188,"k":{"\u00c1":12,"\u00c2":12,"\u00c3":12,"\u00c0":12,"\u00ab":27,"\u00f8":9,"\u00e6":19,"\u00c6":11,"\u00c5":12,"\u00c4":12,"y":26,"w":27,"v":27,"u":29,"s":17,"r":16,"o":25,"i":-1,"g":17,"e":27,"c":25,"a":19,"Y":-11,"W":-10,"V":-10,"S":-6,"J":-3,"A":12,";":5,":":8,".":20,"-":14,",":20}},"U":{"d":"121,5v-61,0,-83,-29,-83,-105r0,-117r-29,0r0,-23r91,0r0,23r-30,0v7,76,-27,197,54,197v84,0,46,-119,54,-197r-30,0r0,-23r85,0r0,23r-30,0r0,120v5,66,-24,102,-82,102","w":241,"k":{"\u00c1":15,"\u00c2":15,"\u00c3":15,"\u00c6":14,"\u00c5":15,"\u00c4":15,"r":11,"p":11,"n":11,"m":11,"A":15,".":9,",":8}},"V":{"d":"2,-240r89,0r0,23r-26,0r56,180r59,-180r-26,0r0,-23r80,0r0,23r-28,0r-74,219r-31,0r-70,-219r-29,0r0,-23","w":236,"k":{"\u00d2":10,"\u00d4":10,"\u00d3":10,"\u00c1":36,"\u00c2":36,"\u00d5":10,"\u00c3":36,"\u00c0":36,"\u00ab":27,"\u00f8":24,"\u00e6":22,"\u00d8":10,"\u00c6":35,"\u00d6":10,"\u00c5":36,"\u00c4":36,"y":10,"u":14,"r":15,"o":26,"i":3,"g":27,"e":26,"a":24,"T":-10,"S":-2,"O":10,"G":10,"C":10,"A":36,";":9,":":10,".":30,"-":12,",":29}},"W":{"d":"2,-240r90,0r0,23r-29,0r34,177r48,-200r29,0r45,200r38,-177r-28,0r0,-23r82,0r0,23r-30,0r-49,218r-31,0r-45,-200r-47,200r-31,0r-46,-218r-30,0r0,-23","w":312,"k":{"\u00d2":8,"\u00d4":8,"\u00d3":8,"\u00c1":25,"\u00c2":25,"\u00d5":8,"\u00c3":25,"\u00c0":25,"\u00ab":20,"\u00f8":16,"\u00e6":18,"\u00d8":9,"\u00c6":24,"\u00d6":8,"\u00c5":25,"\u00c4":25,"y":8,"u":11,"r":12,"o":19,"i":3,"g":20,"e":19,"a":18,"T":-11,"S":-4,"O":8,"G":8,"C":9,"A":25,":":2,".":20,"-":5,",":20}},"X":{"d":"15,-240r56,0r43,91r38,-68r-25,0r0,-23r84,0r0,23r-30,0r-54,90r56,104r31,0r0,23r-58,0r-49,-103r-44,80r27,0r0,23r-87,0r0,-23r30,0r61,-102r-48,-92r-31,0r0,-23","w":220,"k":{"\u00d6":12,"y":20,"u":9,"o":5,"e":5,"a":-2,"Q":12,"O":12,"C":11,"-":13}},"Y":{"d":"0,-240r93,0r0,23r-27,0r42,88r43,-88r-27,0r0,-23r85,0r0,23r-31,0r-58,116r0,78r30,0r0,23r-92,0r0,-23r30,0r0,-77r-57,-117r-31,0r0,-23","w":209,"k":{"\u00d2":8,"\u00d4":8,"\u00d3":8,"\u00c1":18,"\u00c2":18,"\u00d5":8,"\u00c3":18,"\u00c0":18,"\u00ab":28,"\u00f8":14,"\u00e6":24,"\u00d8":8,"\u00c6":16,"\u00d6":8,"\u00c5":18,"\u00c4":18,"v":15,"u":18,"p":18,"o":27,"i":2,"g":22,"e":28,"a":24,"T":-11,"S":-4,"O":8,"G":8,"C":8,"A":18,";":8,":":11,".":24,"-":19,",":25}},"Z":{"d":"46,-24r92,0r0,-38r25,0r0,62r-156,0r0,-20r114,-196r-83,0r0,32r-25,0r0,-56r147,0r0,20","w":172,"k":{"y":7,"v":8}},"[":{"d":"28,-240r59,0r0,24r-31,0r0,261r31,0r0,25r-59,0r0,-310","w":93},"\\":{"d":"146,58r-22,0r-120,-298r22,0","w":127},"]":{"d":"65,70r-59,0r0,-24r32,0r0,-261r-32,0r0,-25r59,0r0,310","w":93},"^":{"d":"39,-130r-31,0r63,-111r38,0r63,111r-31,0r-51,-88","w":180},"_":{"d":"0,23r180,0r0,26r-180,0r0,-26","w":180},"`":{"d":"113,-197r-30,0r-50,-43r37,0","w":180},"a":{"d":"78,-151v-26,1,-35,8,-37,35r-22,0r5,-36v37,-40,131,-27,114,48r0,83r25,0r0,21r-52,0r0,-25v-21,47,-103,33,-100,-21v3,-46,43,-57,97,-66v1,-27,-5,-39,-30,-39xm70,-20v35,-1,41,-32,38,-73v-37,9,-63,13,-66,45v-1,16,12,28,28,28","w":171,"k":{"y":7,"w":6,"v":6,"j":11}},"b":{"d":"108,-174v89,3,89,175,0,178v-20,0,-36,-10,-47,-30r-1,26r-28,0r0,-220r-26,0r0,-21r55,0r0,97v11,-20,26,-30,47,-30xm144,-85v0,-36,-10,-66,-41,-66v-30,0,-41,28,-41,65v0,37,8,67,41,67v31,0,41,-28,41,-66","w":188,"k":{"y":3,"w":3,"v":3}},"c":{"d":"13,-83v0,-64,63,-121,108,-72r0,-16r23,0r0,58r-23,0v-2,-22,-13,-38,-34,-38v-32,1,-42,31,-42,67v0,36,9,65,41,65v19,0,31,-13,35,-37r26,0v-3,35,-26,61,-62,60v-47,-1,-72,-39,-72,-87","w":158,"k":{"k":3,"h":3}},"d":{"d":"81,4v-90,-3,-90,-175,0,-178v21,0,36,10,47,30r0,-76r-26,0r0,-21r55,0r0,220r25,0r0,21r-54,0r0,-26v-11,20,-27,30,-47,30xm127,-85v0,-36,-10,-66,-41,-66v-31,0,-42,28,-42,65v0,37,8,67,42,67v31,0,41,-27,41,-66","w":190},"e":{"d":"87,-174v48,0,71,40,69,92r-111,0v-1,34,10,62,42,63v22,1,36,-13,39,-34r28,0v-2,33,-31,57,-67,57v-48,0,-74,-39,-74,-87v0,-50,26,-91,74,-91xm123,-102v5,-54,-50,-63,-70,-28v-4,7,-6,17,-7,28r77,0","w":169,"k":{"y":2,"x":2,"w":2,"v":2,"t":5}},"f":{"d":"114,-212v-25,-16,-53,-12,-48,28r0,14r41,0r0,22r-41,0r0,127r32,0r0,21r-88,0r0,-21r26,0r0,-127r-25,0r0,-22r25,0v-9,-59,29,-87,78,-68r0,26","w":114,"k":{"\u00f8":-7,"\u00f6":5,"\u00f3":5,"\u00e9":6,"\u00e5":2,"\u00e4":2,"\u00e1":2,"t":-5,"s":-1,"o":5,"l":-8,"j":-1,"i":-4,"f":-3,"e":6,"a":2}},"g":{"d":"60,-64v-67,-22,-40,-117,32,-106r72,1r0,19r-38,0v37,33,10,87,-36,89v-21,7,-30,5,-34,19v0,6,6,9,19,10v51,5,84,9,84,50v0,40,-31,55,-76,55v-42,0,-75,-12,-77,-50v0,-21,13,-34,40,-41v-35,-12,-25,-38,14,-46xm115,-116v1,-19,-14,-33,-32,-33v-19,0,-34,14,-34,33v0,20,14,34,34,34v20,0,32,-14,32,-34xm132,21v-2,-42,-97,-38,-100,0v1,42,99,42,100,0","w":169,"k":{"\u00f6":7,"\u00f3":7,"\u00e9":8,"\u00e5":2,"\u00e4":2,"r":-5,"l":-1,"e":8,"a":2}},"h":{"d":"105,-148v-51,0,-38,75,-39,127r24,0r0,21r-80,0r0,-21r26,0r0,-199r-26,0r0,-21r56,0r0,95v31,-51,119,-30,100,49r0,76r26,0r0,21r-80,0r0,-21r24,0v-6,-47,20,-127,-31,-127","w":199,"k":{"y":7}},"i":{"d":"66,-170r0,149r26,0r0,21r-82,0r0,-21r26,0r0,-128r-26,0r0,-21r56,0xm30,-237r37,0r0,32r-37,0r0,-32","w":100,"k":{"j":11,"T":6}},"j":{"d":"-1,55v43,0,43,-31,42,-76r0,-128r-26,0r0,-21r57,0r0,149v4,69,-15,91,-73,94r0,-18xm36,-237r36,0r0,32r-36,0r0,-32","w":104},"k":{"d":"66,-241r0,152r60,-60r-23,0r0,-21r77,0r0,21r-24,0r-42,43r53,85r24,0r0,21r-79,0r0,-21r19,0r-39,-66r-26,28r0,38r23,0r0,21r-79,0r0,-21r26,0r0,-199r-26,0r0,-21r56,0","w":195,"k":{"\u00e6":-3,"\u00fc":-2,"\u00f6":5,"\u00f3":5,"\u00e9":5,"\u00e5":-3,"\u00e4":-3,"\u00e1":-3,"u":-2,"s":-5,"o":5,"g":-5,"e":5,"a":-3,".":-4,"-":13,",":-2}},"l":{"d":"67,-241r0,220r26,0r0,21r-83,0r0,-21r26,0r0,-199r-26,0r0,-21r57,0","w":101,"k":{"y":4,"v":5}},"m":{"d":"101,-148v-50,-1,-32,78,-35,127r22,0r0,21r-78,0r0,-21r26,0r0,-128r-26,0r0,-21r55,0r0,26v12,-39,80,-40,91,0v16,-44,96,-38,96,15r1,108r25,0r0,21r-77,0r0,-21r21,0v-6,-46,20,-125,-29,-127v-49,-2,-30,78,-34,127r22,0r0,21r-73,0r0,-21r21,0r-1,-98v-1,-19,-9,-29,-27,-29","w":285,"k":{"y":6,"w":6,"v":6,"p":9}},"n":{"d":"104,-148v-51,0,-36,74,-38,127r22,0r0,21r-78,0r0,-21r26,0r0,-128r-26,0r0,-21r55,0r0,28v16,-48,96,-39,97,13r0,108r26,0r0,21r-78,0r0,-21r22,0v-6,-45,19,-127,-28,-127","w":195,"k":{"y":7,"w":6,"v":6,"p":9,"T":15}},"o":{"d":"13,-86v0,-51,28,-88,75,-88v48,0,75,36,74,89v0,52,-24,89,-74,89v-47,0,-75,-37,-75,-90xm130,-85v0,-37,-9,-67,-42,-67v-32,0,-42,30,-42,66v0,38,10,68,42,68v32,0,42,-31,42,-67","w":175,"k":{"y":3,"x":4,"w":2,"v":2,"t":5,"T":25}},"p":{"d":"112,-174v89,3,89,175,0,178v-20,0,-36,-10,-47,-30r0,76r27,0r0,21r-82,0r0,-21r26,0r0,-199r-26,0r0,-21r55,0r0,26v11,-20,26,-30,47,-30xm148,-85v0,-36,-10,-66,-41,-66v-31,0,-41,28,-41,65v0,37,7,67,41,67v31,0,41,-28,41,-66","w":192,"k":{"y":2,"t":5}},"q":{"d":"81,4v-90,-3,-90,-175,0,-178v21,0,36,10,47,30r0,-26r54,0r0,21r-25,0r0,199r25,0r0,21r-81,0r0,-21r27,0r0,-76v-11,20,-27,30,-47,30xm127,-85v0,-36,-10,-66,-41,-66v-31,0,-43,31,-42,65v0,37,8,67,42,67v31,0,41,-27,41,-66","w":192,"k":{"u":-4,"c":6}},"r":{"d":"95,-148v-42,7,-26,79,-29,127r30,0r0,21r-86,0r0,-21r26,0r0,-128r-26,0r0,-21r54,0r0,27v11,-28,50,-41,72,-13r0,37r-22,0v-1,-18,-3,-28,-19,-29","w":136,"k":{"\u00f8":-4,"\u00e6":-3,"\u00f6":-4,"\u00f4":-4,"\u00f2":-4,"\u00f3":-4,"\u00ea":-4,"\u00e8":-4,"\u00e9":-4,"\u00e7":-4,"\u00e5":-3,"\u00e4":-3,"\u00e2":-3,"\u00e0":-3,"\u00e1":-3,"z":-9,"y":-12,"x":-5,"w":-12,"v":-12,"u":-9,"t":-9,"s":-6,"r":-8,"q":-5,"p":-8,"o":-4,"n":-8,"m":-8,"l":5,"k":5,"j":-5,"i":-8,"h":5,"g":-2,"f":-7,"e":-4,"d":-4,"c":-4,"a":-3,";":-7,":":-7,".":16,"-":-2,",":16}},"s":{"d":"27,-93v-32,-29,-4,-81,39,-81v17,0,30,7,41,19r2,-16r19,0r0,55r-20,0v6,-39,-61,-50,-65,-13v14,42,92,27,92,81v0,51,-78,72,-103,28r-1,21r-20,0r0,-59r20,0v4,21,20,40,43,40v25,0,40,-26,22,-41v-13,-9,-67,-26,-69,-34","w":145,"k":{"t":-1}},"t":{"d":"105,-2v-48,17,-73,-7,-73,-67r0,-79r-24,0r0,-22r24,0r0,-50r31,0r0,50r40,0r0,22r-40,0v6,49,-23,152,42,121r0,25","w":113,"k":{"\u00e6":-2,"\u00f6":6,"\u00f3":6,"\u00e9":6,"\u00e5":-2,"\u00e4":-2,"\u00e1":-2,"o":6,"h":-4,"e":6,"a":-2,"S":-3,";":-8,":":-8}},"u":{"d":"135,-28v-20,50,-102,38,-102,-21r0,-100r-26,0r0,-21r56,0r1,115v1,22,11,33,30,33v52,2,37,-74,39,-127r-26,0r0,-21r56,0r0,149r26,0r0,21r-54,0r0,-28","w":197},"v":{"d":"1,-170r81,0r0,21r-22,0r37,118r38,-118r-21,0r0,-21r71,0r0,21r-26,0r-52,150r-26,0r-54,-150r-26,0r0,-21","w":185,"k":{"\u00f8":2,"\u00e6":-3,"\u00f6":2,"\u00f2":2,"\u00f3":2,"\u00ea":3,"\u00e8":3,"\u00e9":3,"\u00e5":-1,"\u00e3":-1,"\u00e4":-1,"\u00e2":-1,"\u00e0":-1,"\u00e1":-1,"s":-4,"o":2,"l":5,"g":1,"e":3,"c":3,"a":-1,";":-2,":":-2,".":21,"-":2,",":21}},"w":{"d":"1,-170r77,0r0,21r-22,0r26,116r37,-137r32,0r35,139r27,-118r-20,0r0,-21r70,0r0,21r-27,0r-38,150r-30,0r-37,-143r-38,143r-30,0r-37,-150r-25,0r0,-21","w":263,"k":{"\u00f8":2,"\u00e6":-3,"\u00f6":2,"\u00f2":2,"\u00f3":2,"\u00ea":3,"\u00e8":3,"\u00e9":3,"\u00e5":-1,"\u00e3":-1,"\u00e4":-1,"\u00e2":-1,"\u00e0":-1,"\u00e1":-1,"s":-4,"o":2,"l":6,"g":2,"e":3,"c":3,"a":-1,";":-5,":":-4,".":16,"-":-1,",":15}},"x":{"d":"15,-170r52,0r31,58r24,-38r-17,0r0,-20r75,0r0,21r-30,0r-41,57r46,71r32,0r0,21r-57,0r-39,-70r-32,50r21,0r0,20r-77,0r0,-21r29,0r48,-69r-37,-59r-28,0r0,-21","w":190,"k":{"\u00e9":4,"q":6,"o":4,"e":4,"c":4,"a":-3}},"y":{"d":"0,-170r81,0r0,21r-21,0r36,116r37,-116r-21,0r0,-21r71,0r0,21r-26,0r-66,189v-13,25,-32,35,-70,33r0,-22v39,0,49,-12,58,-46r-52,-154r-27,0r0,-21","w":183,"k":{"\u00f8":3,"\u00e6":-3,"\u00f6":3,"\u00f2":3,"\u00f3":3,"\u00ea":4,"\u00e8":4,"\u00e9":4,"\u00e5":-1,"\u00e3":-1,"\u00e4":-1,"\u00e2":-1,"\u00e0":-1,"\u00e1":-1,"s":-4,"o":3,"l":5,"g":2,"e":4,"c":4,"a":-1,";":-2,":":-1,".":20,"-":1,",":20}},"z":{"d":"42,-22r70,0r0,-30r22,0r0,52r-129,0r-1,-17r87,-131r-61,0r0,25r-23,0r0,-47r123,0r0,18","w":140},"{":{"d":"29,-128v0,-59,-10,-122,60,-112r0,22v-70,-9,-3,109,-54,133v28,11,18,61,20,100v0,27,7,31,34,33r0,22v-68,9,-61,-51,-60,-111v0,-21,-6,-30,-20,-34r0,-21v14,-4,20,-11,20,-32","w":93},"|":{"d":"76,-240r28,0r0,300r-28,0r0,-300","w":180},"}":{"d":"64,-42v0,59,10,122,-60,112r0,-22v69,8,4,-108,54,-133v-29,-11,-20,-61,-20,-100v0,-28,-7,-31,-34,-33r0,-22v68,-9,61,51,60,112v0,20,6,30,21,33r0,21v-14,4,-21,12,-21,32","w":93},"~":{"d":"81,-234v-16,0,-23,12,-31,25r-17,-11v11,-22,24,-40,50,-42v17,-1,54,24,75,23v17,0,23,-10,31,-24r18,10v-12,25,-25,40,-53,42v-22,1,-46,-22,-73,-23","w":239},"\u00c4":{"d":"105,-242r31,0r69,219r31,0r0,23r-90,0r0,-23r26,0r-16,-52r-82,0r-17,52r26,0r0,23r-80,0r0,-23r28,0xm149,-99r-32,-113r-36,113r68,0xm69,-306r37,0r0,37r-37,0r0,-37xm135,-306r37,0r0,37r-37,0r0,-37","w":238,"k":{"\u00ab":7,"y":23,"w":17,"v":23,"u":8,"t":5,"q":5,"o":4,"g":-6,"d":4,"c":3,"b":4,"a":-4,"Y":17,"W":24,"V":34,"U":15,"T":12,"Q":11,"O":11,"G":10,"C":9,".":-3,"-":2,",":-3}},"\u00c5":{"d":"105,-242r31,0r69,219r31,0r0,23r-90,0r0,-23r26,0r-16,-52r-82,0r-17,52r26,0r0,23r-80,0r0,-23r28,0xm149,-99r-32,-113r-36,113r68,0xm92,-288v0,-16,13,-28,28,-28v15,0,29,14,29,28v0,15,-13,29,-29,29v-15,0,-28,-14,-28,-29xm135,-288v0,-8,-7,-14,-15,-14v-8,0,-15,7,-15,14v0,7,7,15,15,15v8,0,15,-7,15,-15","w":238,"k":{"\u00ab":7,"y":23,"w":17,"v":23,"u":8,"t":5,"q":5,"o":4,"g":-6,"e":4,"d":4,"c":3,"b":4,"a":-4,"Y":17,"W":24,"V":34,"U":15,"T":12,"Q":11,"O":11,"G":10,"C":9,".":-3,"-":2,",":-3}},"\u00c7":{"d":"13,-119v-7,-96,86,-162,159,-104r0,-17r24,0r0,70r-25,0v-3,-33,-19,-50,-54,-50v-52,-1,-70,46,-69,101v0,54,17,99,66,99v37,0,55,-24,57,-63r26,0v1,51,-29,84,-77,88r-6,13v16,3,29,14,29,29v1,30,-34,37,-63,27r0,-17v20,4,38,4,38,-13v0,-13,-14,-17,-29,-16r10,-24v-60,-7,-81,-56,-86,-123","w":210,"k":{"A":5}},"\u00c9":{"d":"68,-266r53,-43r45,0r-61,43r-37,0xm174,-184r-24,0r0,-32r-78,0r0,78r81,0r0,25r-81,0r0,89r81,0r0,-39r23,0r0,63r-166,0r0,-23r30,0r0,-194r-30,0r0,-23r164,0r0,56","w":187},"\u00d1":{"d":"151,-268v-25,0,-64,-40,-77,-1r-19,-6v15,-49,59,-27,94,-15v9,0,15,-6,19,-18r19,7v-5,17,-19,33,-36,33xm10,-240r68,0r102,190r0,-167r-30,0r0,-23r84,0r0,23r-30,0r0,217r-28,0r-112,-206r1,183r30,0r0,23r-85,0r0,-23r30,0r0,-194r-30,0r0,-23","w":243},"\u00d6":{"d":"62,-306r37,0r0,37r-37,0r0,-37xm128,-306r37,0r0,37r-37,0r0,-37xm14,-122v0,-69,32,-123,100,-123v67,0,100,53,100,125v-1,70,-30,125,-100,125v-70,0,-100,-53,-100,-127xm180,-120v0,-56,-15,-101,-66,-101v-49,0,-66,42,-66,100v0,57,13,102,66,102v48,0,67,-46,66,-101","w":227,"k":{"Y":8,"X":11,"W":9,"V":10,"A":11}},"\u00dc":{"d":"121,5v-61,0,-83,-29,-83,-105r0,-117r-29,0r0,-23r91,0r0,23r-30,0v7,76,-27,197,54,197v84,0,46,-119,54,-197r-30,0r0,-23r85,0r0,23r-30,0r0,120v5,66,-24,102,-82,102xm70,-306r37,0r0,37r-37,0r0,-37xm136,-306r37,0r0,37r-37,0r0,-37","w":241,"k":{"r":11,"p":11,"n":11,"m":11,"b":-6,"A":15,".":9,",":8}},"\u00e1":{"d":"78,-151v-26,1,-35,8,-37,35r-22,0r5,-36v37,-40,131,-27,114,48r0,83r25,0r0,21r-52,0r0,-25v-21,47,-103,33,-100,-21v3,-46,43,-57,97,-66v1,-27,-5,-39,-30,-39xm70,-20v35,-1,41,-32,38,-73v-37,9,-63,13,-66,45v-1,16,12,28,28,28xm55,-197r42,-43r38,0r-50,43r-30,0","w":171,"k":{"y":15,"w":14,"v":14}},"\u00e0":{"d":"78,-151v-26,1,-35,8,-37,35r-22,0r5,-36v37,-40,131,-27,114,48r0,83r25,0r0,21r-52,0r0,-25v-21,47,-103,33,-100,-21v3,-46,43,-57,97,-66v1,-27,-5,-39,-30,-39xm70,-20v35,-1,41,-32,38,-73v-37,9,-63,13,-66,45v-1,16,12,28,28,28xm106,-197r-30,0r-50,-43r37,0","w":171,"k":{"y":7,"w":6,"v":6}},"\u00e2":{"d":"23,-198r42,-43r30,0r42,43r-27,0r-30,-27r-30,27r-27,0xm78,-151v-26,1,-35,8,-37,35r-22,0r5,-36v37,-40,131,-27,114,48r0,83r25,0r0,21r-52,0r0,-25v-21,47,-103,33,-100,-21v3,-46,43,-57,97,-66v1,-27,-5,-39,-30,-39xm70,-20v35,-1,41,-32,38,-73v-37,9,-63,13,-66,45v-1,16,12,28,28,28","w":171},"\u00e4":{"d":"78,-151v-26,1,-35,8,-37,35r-22,0r5,-36v37,-40,131,-27,114,48r0,83r25,0r0,21r-52,0r0,-25v-21,47,-103,33,-100,-21v3,-46,43,-57,97,-66v1,-27,-5,-39,-30,-39xm70,-20v35,-1,41,-32,38,-73v-37,9,-63,13,-66,45v-1,16,12,28,28,28xm30,-237r36,0r0,37r-36,0r0,-37xm94,-237r36,0r0,37r-36,0r0,-37","w":171,"k":{"y":12,"w":12,"v":12}},"\u00e3":{"d":"105,-199v-17,0,-56,-40,-64,-1r-17,-7v7,-21,17,-32,33,-32v23,-1,55,38,65,0r17,6v-7,22,-18,34,-34,34xm78,-151v-26,1,-35,8,-37,35r-22,0r5,-36v37,-40,131,-27,114,48r0,83r25,0r0,21r-52,0r0,-25v-21,47,-103,33,-100,-21v3,-46,43,-57,97,-66v1,-27,-5,-39,-30,-39xm70,-20v35,-1,41,-32,38,-73v-37,9,-63,13,-66,45v-1,16,12,28,28,28","w":171},"\u00e5":{"d":"78,-151v-26,1,-35,8,-37,35r-22,0r5,-36v37,-40,131,-27,114,48r0,83r25,0r0,21r-52,0r0,-25v-21,47,-103,33,-100,-21v3,-46,43,-57,97,-66v1,-27,-5,-39,-30,-39xm70,-20v35,-1,41,-32,38,-73v-37,9,-63,13,-66,45v-1,16,12,28,28,28xm52,-221v0,-16,14,-29,29,-29v15,0,28,14,28,29v0,15,-14,29,-28,29v-15,0,-29,-13,-29,-29xm95,-221v0,-8,-6,-15,-14,-15v-8,0,-15,7,-15,15v0,8,8,15,15,15v7,0,14,-7,14,-15","w":171,"k":{"y":7,"w":6,"v":6}},"\u00e7":{"d":"13,-83v-5,-63,62,-120,108,-73r0,-15r23,0r0,58r-23,0v-2,-22,-13,-38,-34,-38v-32,1,-42,31,-42,67v0,36,9,65,41,65v19,0,31,-13,35,-37r26,0v-1,32,-24,58,-56,59r-5,13v14,2,25,12,25,26v1,26,-29,34,-55,24r0,-15v16,3,34,4,35,-12v0,-11,-12,-16,-27,-14r10,-22v-42,-6,-58,-41,-61,-86","w":158},"\u00e9":{"d":"87,-174v48,0,71,40,69,92r-111,0v-1,34,10,62,42,63v22,1,36,-13,39,-34r28,0v-2,33,-31,57,-67,57v-48,0,-74,-39,-74,-87v0,-50,26,-91,74,-91xm123,-102v5,-54,-50,-63,-70,-28v-4,7,-6,17,-7,28r77,0xm65,-197r42,-43r38,0r-50,43r-30,0","w":169,"k":{"y":19,"w":18,"v":18}},"\u00e8":{"d":"87,-174v48,0,71,40,69,92r-111,0v-1,34,10,62,42,63v22,1,36,-13,39,-34r28,0v-2,33,-31,57,-67,57v-48,0,-74,-39,-74,-87v0,-50,26,-91,74,-91xm123,-102v5,-54,-50,-63,-70,-28v-4,7,-6,17,-7,28r77,0xm113,-197r-30,0r-50,-43r37,0","w":169},"\u00ea":{"d":"29,-198r42,-43r31,0r42,43r-28,0r-29,-27r-30,27r-28,0xm87,-174v48,0,71,40,69,92r-111,0v-1,34,10,62,42,63v22,1,36,-13,39,-34r28,0v-2,33,-31,57,-67,57v-48,0,-74,-39,-74,-87v0,-50,26,-91,74,-91xm123,-102v5,-54,-50,-63,-70,-28v-4,7,-6,17,-7,28r77,0","w":169,"k":{"y":18,"w":18,"v":18}},"\u00eb":{"d":"87,-174v48,0,71,40,69,92r-111,0v-1,34,10,62,42,63v22,1,36,-13,39,-34r28,0v-2,33,-31,57,-67,57v-48,0,-74,-39,-74,-87v0,-50,26,-91,74,-91xm123,-102v5,-54,-50,-63,-70,-28v-4,7,-6,17,-7,28r77,0xm37,-237r36,0r0,37r-36,0r0,-37xm101,-237r36,0r0,37r-36,0r0,-37","w":169},"\u00ed":{"d":"66,-170r0,149r26,0r0,21r-82,0r0,-21r26,0r0,-128r-26,0r0,-21r56,0xm27,-197r38,-43r35,0r-45,43r-28,0","w":100},"\u00ec":{"d":"67,-170r0,149r25,0r0,21r-82,0r0,-21r26,0r0,-128r-26,0r0,-21r57,0xm69,-197r-28,0r-45,-43r35,0","w":100},"\u00ee":{"d":"66,-170r0,149r26,0r0,21r-82,0r0,-21r26,0r0,-128r-26,0r0,-21r56,0xm-4,-198r37,-43r30,0r38,43r-27,0r-26,-27r-26,27r-26,0","w":100},"\u00ef":{"d":"4,-237r35,0r0,37r-35,0r0,-37xm57,-237r35,0r0,37r-35,0r0,-37xm66,-170r0,149r26,0r0,21r-82,0r0,-21r26,0r0,-128r-26,0r0,-21r56,0","w":100},"\u00f1":{"d":"120,-199v-8,2,-39,-18,-49,-18v-6,0,-11,6,-15,17r-18,-7v7,-21,18,-32,34,-32v23,-1,55,38,65,0r17,6v-7,22,-18,34,-34,34xm104,-148v-51,0,-36,74,-38,127r22,0r0,21r-78,0r0,-21r26,0r0,-128r-26,0r0,-21r55,0r0,28v16,-48,96,-39,97,13r0,108r26,0r0,21r-78,0r0,-21r22,0v-6,-45,19,-127,-28,-127","w":195},"\u00f3":{"d":"13,-86v0,-51,28,-88,75,-88v48,0,75,36,74,89v0,52,-24,89,-74,89v-47,0,-75,-37,-75,-90xm130,-85v0,-37,-9,-67,-42,-67v-32,0,-42,30,-42,66v0,38,10,68,42,68v32,0,42,-31,42,-67xm67,-197r42,-43r38,0r-50,43r-30,0","w":175,"k":{"y":18,"w":17,"v":17}},"\u00f2":{"d":"13,-86v0,-51,28,-88,75,-88v48,0,75,36,74,89v0,52,-24,89,-74,89v-47,0,-75,-37,-75,-90xm130,-85v0,-37,-9,-67,-42,-67v-32,0,-42,30,-42,66v0,38,10,68,42,68v32,0,42,-31,42,-67xm113,-197r-30,0r-50,-43r37,0","w":175,"k":{"y":3,"w":2,"v":2}},"\u00f4":{"d":"31,-198r41,-43r31,0r42,43r-28,0r-29,-27r-30,27r-27,0xm13,-86v0,-51,28,-88,75,-88v48,0,75,36,74,89v0,52,-24,89,-74,89v-47,0,-75,-37,-75,-90xm130,-85v0,-37,-9,-67,-42,-67v-32,0,-42,30,-42,66v0,38,10,68,42,68v32,0,42,-31,42,-67","w":175,"k":{"t":10}},"\u00f6":{"d":"13,-86v0,-51,28,-88,75,-88v48,0,75,36,74,89v0,52,-24,89,-74,89v-47,0,-75,-37,-75,-90xm130,-85v0,-37,-9,-67,-42,-67v-32,0,-42,30,-42,66v0,38,10,68,42,68v32,0,42,-31,42,-67xm38,-237r36,0r0,37r-36,0r0,-37xm102,-237r36,0r0,37r-36,0r0,-37","w":175,"k":{"y":13,"x":14,"w":12,"v":12,"t":9}},"\u00f5":{"d":"113,-199v-8,2,-39,-18,-49,-18v-6,0,-11,6,-15,17r-18,-7v7,-21,18,-32,34,-32v23,-1,55,38,65,0r17,6v-7,22,-18,34,-34,34xm13,-86v0,-51,28,-88,75,-88v48,0,75,36,74,89v0,52,-24,89,-74,89v-47,0,-75,-37,-75,-90xm130,-85v0,-37,-9,-67,-42,-67v-32,0,-42,30,-42,66v0,38,10,68,42,68v32,0,42,-31,42,-67","w":175},"\u00fa":{"d":"135,-28v-20,50,-102,38,-102,-21r0,-100r-26,0r0,-21r56,0r1,115v1,22,11,33,30,33v52,2,37,-74,39,-127r-26,0r0,-21r56,0r0,149r26,0r0,21r-54,0r0,-28xm73,-197r42,-43r38,0r-50,43r-30,0","w":197},"\u00f9":{"d":"135,-28v-20,50,-102,38,-102,-21r0,-100r-26,0r0,-21r56,0r1,115v1,22,11,33,30,33v52,2,37,-74,39,-127r-26,0r0,-21r56,0r0,149r26,0r0,21r-54,0r0,-28xm122,-197r-30,0r-50,-43r37,0","w":197},"\u00fb":{"d":"37,-198r42,-43r31,0r42,43r-28,0r-30,-27r-29,27r-28,0xm135,-28v-20,50,-102,38,-102,-21r0,-100r-26,0r0,-21r56,0r1,115v1,22,11,33,30,33v52,2,37,-74,39,-127r-26,0r0,-21r56,0r0,149r26,0r0,21r-54,0r0,-28","w":197},"\u00fc":{"d":"135,-28v-20,50,-102,38,-102,-21r0,-100r-26,0r0,-21r56,0r1,115v1,22,11,33,30,33v52,2,37,-74,39,-127r-26,0r0,-21r56,0r0,149r26,0r0,21r-54,0r0,-28xm44,-237r36,0r0,37r-36,0r0,-37xm108,-237r36,0r0,37r-36,0r0,-37","w":197},"\u00b0":{"d":"38,-193v0,-27,25,-50,52,-50v28,0,52,23,52,51v0,28,-24,51,-52,51v-28,0,-52,-23,-52,-52xm120,-192v0,-16,-14,-30,-30,-30v-15,0,-30,15,-30,30v0,17,15,30,30,30v16,1,30,-14,30,-30","w":180},"\u00a2":{"d":"87,-34v-85,-5,-79,-171,0,-176r0,-34r17,0r0,34v12,2,21,8,29,17r0,-14r22,0r0,57r-23,0v-2,-20,-11,-33,-28,-37r0,131v15,-3,25,-16,28,-37r25,0v-2,31,-23,57,-53,59r0,37r-17,0r0,-37xm87,-186v-42,8,-43,122,0,129r0,-129"},"\u00a3":{"d":"173,-62v8,39,-8,62,-51,62r-105,0v6,-35,25,-72,25,-109r-25,0r0,-24r27,0v6,-50,7,-109,63,-110v29,-1,48,19,48,49r-21,0v-4,-33,-43,-30,-51,-2v-2,8,-5,37,-9,63r38,0r0,24r-39,0v-1,28,-13,64,-25,87v29,-22,115,23,104,-40r21,0"},"\u00a7":{"d":"93,-237v40,3,66,21,63,66r-24,0v8,-50,-72,-57,-72,-15v0,46,100,45,99,100v0,19,-10,34,-30,45v46,29,18,105,-41,101v-38,-3,-68,-22,-67,-62r25,0v1,27,15,38,41,39v22,1,39,-13,37,-32v-4,-48,-104,-48,-102,-104v0,-18,11,-32,32,-43v-47,-25,-16,-99,39,-95xm110,-53v16,-6,30,-28,16,-44v-4,-4,-22,-14,-53,-32v-22,8,-32,26,-17,43v5,5,23,16,54,33","w":180},"\u00b6":{"d":"-8,-176v-2,-78,99,-64,178,-64r0,20r-24,0r0,256r-23,0r0,-256r-36,0r0,256r-24,0r0,-149v-43,1,-70,-22,-71,-63","w":173},"\u00df":{"d":"143,-65v-1,-36,-23,-61,-61,-58r0,-22v52,10,61,-72,14,-73v-31,0,-33,28,-32,64r0,154r-56,0r0,-21r26,0v7,-90,-30,-221,63,-221v63,0,85,89,25,107v32,7,52,33,52,70v0,47,-41,83,-86,62r0,-23v31,16,56,-7,55,-39","w":185},"\u00ae":{"d":"79,-193v52,1,114,-10,114,40v0,19,-10,33,-29,38r26,50r17,0r0,16r-34,0r-29,-64r-26,0r0,48r18,0r0,16r-57,0r0,-16r18,0r0,-112r-18,0r0,-16xm171,-153v0,-25,-24,-25,-52,-24r0,48v28,0,52,1,52,-24xm14,-122v0,-70,53,-123,124,-123v68,0,124,53,124,125v0,72,-52,125,-124,125v-71,0,-124,-51,-124,-127xm246,-120v0,-63,-44,-110,-108,-110v-60,0,-108,45,-109,109v-1,60,50,114,109,112v62,-2,108,-46,108,-111","w":275},"\u00a9":{"d":"75,-120v0,-59,53,-97,97,-63r0,-10r17,0r0,43r-17,0v-2,-20,-11,-30,-32,-30v-30,0,-38,27,-42,59v-7,57,70,86,74,21r17,0v0,35,-20,54,-51,54v-41,0,-63,-30,-63,-74xm14,-122v0,-70,53,-123,124,-123v71,0,124,53,124,125v0,72,-52,125,-124,125v-71,0,-124,-51,-124,-127xm246,-120v0,-63,-44,-110,-108,-110v-60,0,-108,45,-109,109v-1,61,50,114,109,112v62,-2,108,-46,108,-111","w":275},"\u00b4":{"d":"67,-197r42,-43r38,0r-50,43r-30,0","w":180},"\u00a8":{"d":"40,-237r36,0r0,37r-36,0r0,-37xm104,-237r36,0r0,37r-36,0r0,-37","w":180},"\u00c6":{"d":"304,-185r-24,0r0,-31r-78,0r0,78r77,0r0,25r-77,0r0,89r82,0r0,-37r24,0r0,61r-168,0r0,-23r30,0r0,-50r-83,0r-29,50r28,0r0,23r-86,0r0,-23r31,0r126,-217r147,0r0,55xm170,-97r0,-120r-69,120r69,0","w":319},"\u00d8":{"d":"31,-42v-38,-75,-14,-203,82,-203v29,0,53,10,71,30r22,-25r26,0r-37,41v41,73,17,204,-80,204v-30,0,-53,-10,-72,-31r-23,26r-26,0xm113,-221v-64,0,-75,91,-58,152r108,-123v-12,-19,-29,-29,-50,-29xm114,-19v67,1,76,-93,58,-154r-109,124v12,20,29,30,51,30","w":227,"k":{"A":10}},"\u00b1":{"d":"13,-142r65,0r0,-66r26,0r0,66r65,0r0,24r-65,0r0,66r-26,0r0,-66r-65,0r0,-24xm13,-41r156,0r0,24r-156,0r0,-24"},"\u00a5":{"d":"0,-240r85,0r0,23r-23,0r32,90r33,-90r-23,0r0,-23r78,0r0,23r-29,0r-24,58r39,0r0,24r-48,0r-13,30r46,0r0,24r-47,0r0,58r30,0r0,23r-92,0r0,-23r30,0r0,-58r-46,0r0,-24r45,0r-13,-30r-47,0r0,-24r39,0r-24,-58r-28,0r0,-23"},"\u00b5":{"d":"135,-30v-10,40,-73,47,-90,9r0,82r-29,0r0,-234r29,0v5,63,-20,156,44,156v62,-1,44,-92,46,-156r29,0r0,173r-29,0r0,-30","w":180},"\u00aa":{"d":"8,-121r102,0r0,16r-102,0r0,-16xm54,-229v-15,1,-21,5,-23,21r-15,0r3,-22v23,-24,81,-18,72,28r0,48r16,0r0,15r-35,0r0,-12v-15,24,-62,15,-61,-16v2,-27,26,-35,59,-40v1,-16,-1,-22,-16,-22xm48,-153v20,0,24,-15,22,-41v-22,3,-38,7,-38,25v0,10,6,16,16,16","w":117},"\u00ba":{"d":"5,-121r101,0r0,16r-101,0r0,-16xm9,-192v0,-31,18,-53,47,-53v29,0,46,22,46,54v0,31,-18,53,-46,53v-30,0,-47,-22,-47,-54xm56,-153v31,0,34,-77,0,-77v-19,0,-25,18,-25,38v0,26,9,39,25,39","w":110},"\u00e6":{"d":"129,-150v45,-53,129,-11,117,69r-111,0v1,35,13,62,44,62v22,0,39,-14,42,-36r23,0v-2,64,-101,81,-126,23v-15,48,-110,48,-107,-12v2,-46,44,-59,94,-61v2,-32,-3,-46,-31,-46v-27,0,-36,7,-33,32r-22,0r0,-34v27,-27,91,-30,110,3xm215,-103v4,-47,-50,-65,-70,-28v-4,7,-7,16,-8,28r78,0xm69,-20v29,0,39,-28,36,-62v-43,1,-64,13,-64,36v0,15,12,26,28,26","w":258,"k":{"y":2,"w":2,"v":2}},"\u00f8":{"d":"25,-32v-29,-55,-5,-142,63,-142v21,0,38,7,51,21r16,-17r23,0r-28,30v28,55,6,144,-62,144v-21,0,-39,-7,-53,-22r-17,18r-23,0xm120,-134v-29,-41,-74,-6,-74,48v0,9,0,18,2,29xm54,-38v28,44,76,8,76,-47v0,-10,-2,-20,-4,-31","w":175},"\u00bf":{"d":"11,17v0,-56,68,-53,59,-121r28,0v11,66,-45,75,-55,119v0,15,12,27,28,26v20,0,34,-14,36,-36r25,0v7,76,-121,85,-121,12xm98,-135r-35,0r0,-35r35,0r0,35","w":141},"\u00a1":{"d":"54,64r-33,0r5,-169r25,0xm56,-135r-36,0r0,-35r36,0r0,35","w":75},"\u00ac":{"d":"139,0r0,-69r-127,0r0,-27r156,0r0,96r-29,0","w":180},"\u00ab":{"d":"120,0r-22,0r-36,-85r36,-85r22,0r-33,85xm70,0r-21,0r-37,-85r37,-85r21,0r-32,85","w":127},"\u00bb":{"d":"8,-170r22,0r36,85r-36,85r-22,0r32,-85xm58,-170r21,0r37,85r-37,85r-21,0r32,-85","w":127,"k":{"\u00c1":7,"\u00c6":6,"\u00c5":7,"\u00c4":7,"Y":28,"W":19,"V":25,"T":27,"A":7}},"\u00c0":{"d":"150,-266r-36,0r-62,-43r46,0xm104,-242r32,0r69,219r31,0r0,23r-91,0r0,-23r27,0r-16,-52r-83,0r-16,52r26,0r0,23r-81,0r0,-23r29,0xm149,-99r-32,-113r-36,113r68,0","w":238,"k":{"Y":17,"W":24,"V":34,"U":15,"T":12,"Q":11,"O":11,"G":10,"C":9,".":-3,",":-3}},"\u00c3":{"d":"150,-268v-24,0,-64,-38,-77,-1r-19,-6v15,-51,59,-25,94,-15v9,0,15,-6,19,-18r19,7v-4,17,-18,33,-36,33xm104,-242r32,0r69,219r31,0r0,23r-91,0r0,-23r27,0r-16,-52r-83,0r-16,52r26,0r0,23r-81,0r0,-23r29,0xm149,-99r-32,-113r-36,113r68,0","w":238,"k":{"Y":17,"W":24,"V":34,"U":15,"T":12,"Q":11,"O":11,"G":10,"C":9,".":-3,",":-3}},"\u00d5":{"d":"146,-268v-24,0,-64,-38,-77,-1r-19,-6v15,-51,59,-25,94,-15v9,0,15,-6,19,-18r19,7v-4,17,-18,33,-36,33xm14,-122v0,-69,32,-123,100,-123v67,0,100,53,100,125v-1,70,-30,125,-100,125v-70,0,-100,-53,-100,-127xm180,-120v0,-56,-15,-101,-66,-101v-49,0,-66,42,-66,100v0,57,13,102,66,102v48,0,67,-46,66,-101","w":227,"k":{"Y":8,"V":10}},"\u00f7":{"d":"13,-131r156,0r0,24r-156,0r0,-24xm73,-70r35,0r0,34r-35,0r0,-34xm73,-201r35,0r0,33r-35,0r0,-33"},"\u00ff":{"d":"0,-170r81,0r0,21r-21,0r36,116r37,-116r-21,0r0,-21r71,0r0,21r-26,0r-66,189v-13,25,-32,35,-70,33r0,-22v39,0,49,-12,58,-46r-52,-154r-27,0r0,-21xm43,-237r36,0r0,37r-36,0r0,-37xm107,-237r36,0r0,37r-36,0r0,-37","w":183},"\u00a4":{"d":"20,-28r34,-34v-24,-31,-24,-70,0,-102r-35,-34r15,-15r34,34v33,-24,70,-24,103,0r35,-34r14,15r-34,34v24,33,24,69,1,102r34,34r-15,14r-34,-33v-33,24,-70,24,-104,0r-34,33xm181,-113v0,-33,-29,-61,-61,-61v-32,0,-61,29,-61,60v0,33,28,62,61,62v33,0,61,-28,61,-61","w":239},"\u00c2":{"d":"54,-266r49,-43r35,0r49,43r-31,0r-35,-28r-35,28r-32,0xm104,-242r32,0r69,219r31,0r0,23r-91,0r0,-23r27,0r-16,-52r-83,0r-16,52r26,0r0,23r-81,0r0,-23r29,0xm149,-99r-32,-113r-36,113r68,0","w":238,"k":{"Y":17,"W":24,"V":34,"U":15,"T":12,"Q":11,"O":11,"G":10,"C":9,".":-3,",":-3}},"\u00ca":{"d":"31,-266r49,-43r35,0r50,43r-32,0r-35,-28r-35,28r-32,0xm174,-184r-24,0r0,-32r-78,0r0,78r81,0r0,25r-81,0r0,89r81,0r0,-39r23,0r0,63r-166,0r0,-23r30,0r0,-194r-30,0r0,-23r164,0r0,56","w":187},"\u00c1":{"d":"91,-266r52,-43r45,0r-61,43r-36,0xm104,-242r32,0r69,219r31,0r0,23r-91,0r0,-23r27,0r-16,-52r-83,0r-16,52r26,0r0,23r-81,0r0,-23r29,0xm149,-99r-32,-113r-36,113r68,0","w":238,"k":{"\u00ab":7,"y":23,"w":17,"v":23,"u":8,"t":5,"q":5,"o":4,"g":-6,"e":4,"d":4,"c":3,"b":4,"a":-4,"Y":17,"W":24,"V":34,"U":15,"T":12,"Q":11,"O":11,"G":10,"C":9,".":-3,"-":2,",":-3}},"\u00cb":{"d":"47,-306r37,0r0,37r-37,0r0,-37xm112,-306r38,0r0,37r-38,0r0,-37xm174,-184r-24,0r0,-32r-78,0r0,78r81,0r0,25r-81,0r0,89r81,0r0,-39r23,0r0,63r-166,0r0,-23r30,0r0,-194r-30,0r0,-23r164,0r0,56","w":187},"\u00c8":{"d":"130,-266r-36,0r-61,-43r45,0xm174,-184r-24,0r0,-32r-78,0r0,78r81,0r0,25r-81,0r0,89r81,0r0,-39r23,0r0,63r-166,0r0,-23r30,0r0,-194r-30,0r0,-23r164,0r0,56","w":187},"\u00cd":{"d":"10,-240r92,0r0,23r-29,0r0,194r29,0r0,23r-92,0r0,-23r30,0r0,-194r-30,0r0,-23xm32,-266r46,-43r44,0r-55,43r-35,0","w":112},"\u00ce":{"d":"10,-240r92,0r0,23r-29,0r0,194r29,0r0,23r-92,0r0,-23r30,0r0,-194r-30,0r0,-23xm-1,-266r40,-43r34,0r40,43r-30,0r-27,-28r-26,28r-31,0","w":112},"\u00cf":{"d":"10,-306r37,0r0,37r-37,0r0,-37xm66,-306r37,0r0,37r-37,0r0,-37xm10,-240r92,0r0,23r-29,0r0,194r29,0r0,23r-92,0r0,-23r30,0r0,-194r-30,0r0,-23","w":112},"\u00cc":{"d":"10,-240r93,0r0,23r-30,0r0,194r30,0r0,23r-93,0r0,-23r30,0r0,-194r-30,0r0,-23xm82,-266r-35,0r-55,-43r44,0","w":112},"\u00d3":{"d":"84,-266r53,-43r45,0r-62,43r-36,0xm14,-122v0,-69,32,-123,100,-123v67,0,100,53,100,125v-1,70,-30,125,-100,125v-70,0,-100,-53,-100,-127xm180,-120v0,-56,-15,-101,-66,-101v-49,0,-66,42,-66,100v0,57,13,102,66,102v48,0,67,-46,66,-101","w":227,"k":{"Y":8,"W":9,"V":10,"A":11}},"\u00d4":{"d":"48,-266r49,-43r35,0r49,43r-31,0r-35,-28r-35,28r-32,0xm14,-122v0,-69,32,-123,100,-123v67,0,100,53,100,125v-1,70,-30,125,-100,125v-70,0,-100,-53,-100,-127xm180,-120v0,-56,-15,-101,-66,-101v-49,0,-66,42,-66,100v0,57,13,102,66,102v48,0,67,-46,66,-101","w":227,"k":{"Y":8,"V":10}},"\u00d2":{"d":"147,-266r-36,0r-61,-43r45,0xm14,-122v0,-69,32,-123,100,-123v67,0,100,53,100,125v-1,70,-30,125,-100,125v-70,0,-100,-53,-100,-127xm180,-120v0,-56,-15,-101,-66,-101v-49,0,-66,42,-66,100v0,57,13,102,66,102v48,0,67,-46,66,-101","w":227,"k":{"Y":8,"V":10}},"\u00da":{"d":"91,-266r52,-43r46,0r-62,43r-36,0xm121,5v-61,0,-83,-29,-83,-105r0,-117r-29,0r0,-23r91,0r0,23r-30,0v7,76,-27,197,54,197v84,0,46,-119,54,-197r-30,0r0,-23r85,0r0,23r-30,0r0,120v5,66,-24,102,-82,102","w":241,"k":{"r":11,"p":11,"n":11,"m":11,"A":15,".":9,",":8}},"\u00db":{"d":"55,-266r49,-43r36,0r49,43r-32,0r-35,-28r-35,28r-32,0xm121,5v-61,0,-83,-29,-83,-105r0,-117r-29,0r0,-23r91,0r0,23r-30,0v7,76,-27,197,54,197v84,0,46,-119,54,-197r-30,0r0,-23r85,0r0,23r-30,0r0,120v5,66,-24,102,-82,102","w":241,"k":{"A":15}},"\u00d9":{"d":"154,-266r-36,0r-62,-43r45,0xm121,5v-61,0,-83,-29,-83,-105r0,-117r-29,0r0,-23r91,0r0,23r-30,0v7,76,-27,197,54,197v84,0,46,-119,54,-197r-30,0r0,-23r85,0r0,23r-30,0r0,120v5,66,-24,102,-82,102","w":241,"k":{"A":15}},"\u00b8":{"d":"105,39v0,-11,-12,-16,-27,-14r10,-25r18,0r-6,16v14,2,25,12,25,26v0,25,-29,34,-55,24r0,-15v16,3,34,4,35,-12","w":180},"\u00a0":{"w":90},"\u00a6":{"d":"76,-240r28,0r0,120r-28,0r0,-120xm76,-55r28,0r0,115r-28,0r0,-115","w":180},"\u00ad":{"d":"0,-102r72,0r0,18r-72,0r0,-18","w":72},"\u00af":{"d":"0,-312r180,0r0,26r-180,0r0,-26","w":180},"\u00b2":{"d":"15,-192v-6,-52,83,-59,84,-10v0,20,-21,51,-61,91r49,0r0,-18r16,0r0,35r-89,0r0,-15v23,-22,60,-62,63,-91v1,-11,-9,-20,-21,-19v-15,0,-24,9,-25,27r-16,0","w":118},"\u00b3":{"d":"83,-136v0,-20,-15,-27,-38,-25r0,-17v18,4,34,-5,33,-22v-2,-28,-44,-26,-44,4r-17,0v0,-24,19,-38,42,-40v39,-3,54,50,20,66v45,14,24,81,-23,78v-26,-2,-46,-16,-44,-43r18,0v0,18,10,27,26,27v16,0,27,-12,27,-28","w":118},"\u00b7":{"d":"18,-108r40,0r0,40r-40,0r0,-40","w":75},"\u00b9":{"d":"26,-211v18,0,28,-8,30,-24r16,0r0,126r20,0r0,15r-61,0r0,-15r20,0r0,-90r-25,0r0,-12","w":118},"\u00bc":{"d":"26,-211v18,0,28,-8,30,-24r16,0r0,126r20,0r0,15r-61,0r0,-15r20,0r0,-90r-25,0r0,-12xm195,-234r22,0r-136,234r-23,0xm245,-54r22,0r0,16r-22,0r0,23r14,0r0,15r-49,0r0,-15r15,0r0,-23r-56,0r0,-15r58,-89r18,0r0,88xm225,-54r1,-62r-38,62r37,0","w":279},"\u00bd":{"d":"26,-211v18,0,28,-8,30,-24r16,0r0,126r20,0r0,15r-61,0r0,-15r20,0r0,-90r-25,0r0,-12xm195,-234r22,0r-136,234r-23,0xm176,-98v-6,-52,84,-60,84,-10v0,20,-21,51,-61,91r49,0r0,-18r16,0r0,35r-89,0r0,-15v21,-20,60,-63,63,-91v1,-11,-9,-20,-21,-19v-15,0,-24,9,-25,27r-16,0","w":279},"\u00be":{"d":"83,-136v0,-20,-15,-27,-38,-25r0,-17v18,4,34,-5,33,-22v-2,-28,-44,-26,-44,4r-17,0v0,-24,19,-38,42,-40v39,-3,54,50,20,66v45,14,24,81,-23,78v-26,-2,-46,-16,-44,-43r18,0v1,18,9,27,26,27v16,0,27,-12,27,-28xm195,-234r23,0r-137,234r-23,0xm245,-54r22,0r0,16r-22,0r0,23r14,0r0,15r-49,0r0,-15r15,0r0,-23r-56,0r0,-15r58,-89r18,0r0,88xm225,-54r1,-62r-38,62r37,0","w":279},"\u00d0":{"d":"213,-120v0,77,-40,126,-129,120r-74,0r0,-23r30,0r0,-92r-30,0r0,-23r30,0r0,-79r-30,0r0,-23r74,0v91,-6,129,41,129,120xm180,-120v0,-68,-30,-105,-108,-96r0,78r55,0r0,23r-55,0r0,91v78,9,108,-30,108,-96","w":226},"\u00d7":{"d":"20,-65r54,-54r-54,-54r17,-17r54,54r54,-54r17,17r-54,54r54,54r-17,17r-54,-54r-54,54"},"\u00dd":{"d":"76,-266r52,-43r46,0r-62,43r-36,0xm0,-240r93,0r0,23r-27,0r42,88r43,-88r-27,0r0,-23r85,0r0,23r-31,0r-58,116r0,78r30,0r0,23r-92,0r0,-23r30,0r0,-77r-57,-117r-31,0r0,-23","w":209},"\u00de":{"d":"185,-128v0,57,-47,76,-113,71r0,34r33,0r0,23r-95,0r0,-23r30,0r0,-194r-30,0r0,-23r92,0r0,23r-30,0r0,19v68,-5,113,14,113,70xm151,-128v0,-43,-31,-47,-79,-45r0,91v48,2,79,-2,79,-46","w":191},"\u00f0":{"d":"13,-85v0,-53,34,-99,90,-87r-18,-23r-16,12r-10,-14r15,-12v-6,-7,-6,-6,-15,-16r18,-17v3,3,8,9,16,18r18,-14r10,14r-16,13v31,40,53,70,55,125v0,48,-26,89,-72,90v-48,0,-75,-39,-75,-89xm88,-19v56,-2,55,-133,-2,-132v-58,1,-55,132,2,132","w":172},"\u00fd":{"d":"0,-170r81,0r0,21r-21,0r36,116r37,-116r-21,0r0,-21r71,0r0,21r-26,0r-66,189v-13,25,-32,35,-70,33r0,-22v39,0,49,-12,58,-46r-52,-154r-27,0r0,-21xm68,-197r42,-43r38,0r-50,43r-30,0","w":183},"\u00fe":{"d":"112,-174v89,3,89,176,-1,178v-20,0,-35,-10,-46,-30r0,76r27,0r0,21r-82,0r0,-21r26,0r0,-270r-26,0r0,-21r55,0r0,97v11,-20,26,-30,47,-30xm148,-85v0,-36,-10,-66,-41,-66v-31,0,-41,28,-41,65v1,36,7,67,41,67v31,0,41,-27,41,-66","w":192}}});

