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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;Drupal.locale = { 'pluralFormula': function($n) { return Number((($n==1)?(0):((((($n%10)>=2)&&(($n%10)<=4))&&((($n%100)<10)||(($n%100)>=20)))?(1):2))); }, 'strings': { "Unspecified error": "NieokreÅ›lony bÅ‚Ä…d", "Drag to re-order": "ChwyÄ‡, by zmieniÄ‡ kolejnoÅ›Ä‡", "Changes made in this table will not be saved until the form is submitted.": "Zmiany wprowadzone w tabeli zachowuje siÄ™ przyciskiem u doÅ‚u formularza.", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "Zmiany wprowadzone w blokach zachowuje siÄ™ przyciskiem u doÅ‚u formularza.", "Split summary at cursor": "Oddziel podsumowanie w miejscu kursora", "Join summary": "PoÅ‚Ä…cz podsumowanie z resztÄ… wpisu", "Select all rows in this table": "Zaznacza wszystkie wiersze tabeli", "Deselect all rows in this table": "Cofa zaznaczenie wszystkich wierszy tabeli", "Loading...": "Wczytywanie...", "jQuery UI Tabs: Mismatching fragment identifier.": "jQuery UI Tabs: NiepasujÄ…cy fragment identyfikatora.", "jQuery UI Tabs: Not enough arguments to add tab.": "jQuery UI Tabs: Za maÅ‚o argumentÃ³w by dodaÄ‡ zakÅ‚adkÄ™.", "Cancel": "Anuluj", "Remove": "UsuÅ„", "None": "Brak", "Automatic alias": "Automatyczny alias", "Anonymous": "Anonim", "An error occurred at ": "BÅ‚Ä…d wystÄ…piÅ‚ w ", "Published": "Opublikowany", "Promoted to front page": "Promowany na stronie gÅ‚Ã³wnej", "An HTTP error @status occurred. \n@uri": "WystÄ…piÅ‚ bÅ‚Ä…d HTTP: @status. \n@uri", "An error occurred. \n@uri\n(no information available).": "WystÄ…piÅ‚ bÅ‚Ä…d \n@uri\n(brak szerszych informacji).", "An error occurred. \n@uri\n@text": "WystÄ…piÅ‚ bÅ‚Ä…d \n@uri\n@text", "Not published": "Nie do publikacji", "1 attachment": [ "1 zaÅ‚Ä…cznik", "@count zaÅ‚Ä…czniki" ], "No alias": "Bez aliasu", "No attachments": "Bez plikÃ³w" } };;// $Id: dhtml_menu.js,v 1.18.2.10 2009/01/12 10:13:30 arancaytar Exp $

/**
 * @file dhtml_menu.js
 * The Javascript code for DHTML Menu
 */
 
Drupal.dhtmlMenu = {};

/**
 * Initialize the module's JS functions
 */
Drupal.behaviors.dhtmlMenu = function() {
  // Do not run this function more than once.
  if (Drupal.dhtmlMenu.init) {
    return;
  }
  else {
    Drupal.dhtmlMenu.init = true;
  }

  // Get the settings.
  var effects = Drupal.settings.dhtmlMenu;

  $('.collapsed').removeClass('expanded');

  // Get cookie
  if (!effects.siblings) {
    var cookie = Drupal.dhtmlMenu.cookieGet();
    for (var i in cookie) {
      // If the cookie was not applied to the HTML code yet, do so now.
      var li = $('#dhtml_menu-' + cookie[i]).parents('li:first');
      if ($(li).hasClass('collapsed')) {
        Drupal.dhtmlMenu.toggleMenu(li);
      }
    }
  }

  /* Add jQuery effects and listeners to all menu items.
   * The ~ (sibling) selector is unidirectional and selects 
   * only the latter element, so we must use siblings() to get 
   * back to the link element.
   */
   $('ul.menu li.dhtml-menu:not(.leaf,.no-dhtml)').each(function() {
    var li = this;
    if (effects.clone) {
      var ul = $(li).find('ul:first');
      if (ul.length) {
        $(li).find('a:first').clone().prependTo(ul).wrap('<li class="leaf fake-leaf"></li>');
      }
    }

    if (effects.doubleclick) {
      $(li).find('a:first').dblclick(function(e) {
        window.location = this.href;
      });
    }

    $(li).find('a:first').click(function(e) {
      Drupal.dhtmlMenu.toggleMenu($(li));
      return false;
    });
  });
}

/**
 * Toggles the menu's state between open and closed.
 *
 * @param li
 *   Object. The <li> element that will be expanded or collapsed.
 */
Drupal.dhtmlMenu.toggleMenu = function(li) {
  var effects = Drupal.settings.dhtmlMenu;

  // If the menu is expanded, collapse it.
  if($(li).hasClass('expanded')) {
    if (effects.slide) {
      $(li).find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000');
    }
    else $(li).find('ul:first').css('display', 'none');

    // If children are closed automatically, find and close them now.
    if (effects.children) {
      if (effects.slide) {
        $(li).find('li.expanded').find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000');
      }
      else $(li).find('li.expanded').find('ul:first').css('display', 'none');

      $(li).find('li.expanded').removeClass('expanded').addClass('collapsed')
    }

    $(li).removeClass('expanded').addClass('collapsed');
  }

  // Otherwise, expand it.
  else {
    if (effects.slide) {
      $(li).find('ul:first').animate({height: 'show', opacity: 'show'}, '1000');
    }
    else $(li).find('ul:first').css('display', 'block');
    $(li).removeClass('collapsed').addClass('expanded');

    // If the siblings effect is on, close all sibling menus.
    if (effects.siblings) {
      var id = $(li).find('a:first').attr('id');

      // Siblings are all open menus that are neither parents nor children of this menu.
      $(li).find('li').addClass('own-children-temp');
	  
      // If the relativity option is on, select only the siblings that have the same parent
      if (effects.relativity) {
        var siblings = $(li).parent().find('li.expanded').not('.own-children-temp').not(':has(#' + id + ')');
      }
      // Otherwise, select all menus of the same level
      else {
        var siblings = $('ul.menu li.expanded').not('.own-children-temp').not(':has(#' + id + ')');
      }

      // If children should not get closed automatically...
      if (!effects.children) {
        // Remove items that are currently hidden from view (do not close these).
        $('li.collapsed li.expanded').addClass('sibling-children-temp');
        // Only close the top-most open sibling, not its children.
        $(siblings).find('li.expanded').addClass('sibling-children-temp');
        siblings = $(siblings).not('.sibling-children-temp');
      }

      $('.own-children-temp, .sibling-children-temp').removeClass('own-children-temp').removeClass('sibling-children-temp');

      if (effects.slide) {
        $(siblings).find('ul:first').animate({height: 'hide', opacity: 'hide'}, '1000');
      }
      else $(siblings).find('ul:first').css('display', 'none');

      $(siblings).removeClass('expanded').addClass('collapsed');
    }
  }

  // Save the current state of the menus in the cookie.
  Drupal.dhtmlMenu.cookieSet();
}

/**
 * Reads the dhtml_menu cookie.
 */
Drupal.dhtmlMenu.cookieGet = function() {
  var c = /dhtml_menu=(.*?)(;|$)/.exec(document.cookie);
  if (c) {
    return c[1];
  }
  else return '';
}

/**
 * Saves the dhtml_menu cooki.
 */
Drupal.dhtmlMenu.cookieSet = function() {
  var expanded = new Array();
  $('li.expanded').each(function() {
    expanded.push($(this).find('a:first').attr('id').substr(5));
  });
  document.cookie = 'dhtml_menu=' + expanded.join(',') + ';path=/';
}

;// $Id: nice_menus.js,v 1.10.2.6 2008/08/04 23:45:51 add1sun Exp $

// We need to do some browser sniffing to weed out IE 6 only
// because only IE6 needs this hover hack.
if (document.all && !window.opera && (navigator.appVersion.search("MSIE 6.0") != -1) && $.browser.msie) {
  function IEHoverPseudo() {
      $("ul.nice-menu li.menuparent").hover(function(){
          $(this).addClass("over").find("> ul").show().addShim();
        },function(){
          $(this).removeClass("over").find("> ul").removeShim().hide();
        }
      );
      // Add a hover class to all li for CSS styling. Silly naming is done
      // so we don't break CSS compatibility for .over class already in use
      // and due to the fact that IE6 doesn't understand multiple selectors.
      $("ul.nice-menu li").hover(function(){
          $(this).addClass("ie-over");
        },function(){
          $(this).removeClass("ie-over");
        }
      );
    }

    // This is the jquery method of adding a function
    // to the BODY onload event.  (See jquery.com)
    $(document).ready(function(){ IEHoverPseudo() });
}

$.fn.addShim = function() {
  return this.each(function(){
	  if(document.all && $("select").size() > 0) {
	    var ifShim = document.createElement('iframe');
	    ifShim.src = "javascript:false";
			ifShim.style.width=$(this).width()+1+"px";
      ifShim.style.height=$(this).find("> li").size()*23+20+"px";
			ifShim.style.filter="progid:DXImageTransform.Microsoft.Alpha(style=0,opacity=0)";
		  ifShim.style.zIndex="0";
    $(this).prepend(ifShim);
      $(this).css("zIndex","99");
		}
	});
};

$.fn.removeShim = function() {
  return this.each(function(){
	  if (document.all) $("iframe", this).remove();
	});
};
;// $Id: panels.js,v 1.2.4.1 2009/10/05 22:40:35 merlinofchaos Exp $

(function ($) {
  Drupal.Panels = {};

  Drupal.Panels.autoAttach = function() {
    if ($.browser.msie) {
      // If IE, attach a hover event so we can see our admin links.
      $("div.panel-pane").hover(
        function() {
          $('div.panel-hide', this).addClass("panel-hide-hover"); return true;
        },
        function() {
          $('div.panel-hide', this).removeClass("panel-hide-hover"); return true;
        }
      );
      $("div.admin-links").hover(
        function() {
          $(this).addClass("admin-links-hover"); return true;
        },
        function(){
          $(this).removeClass("admin-links-hover"); return true;
        }
      );
    }
  };

  $(Drupal.Panels.autoAttach);
})(jQuery);
;// $Id: poormanscron.js,v 1.1.2.3 2010/01/17 00:27:52 davereid Exp $
(function ($) {

/**
 * Checks to see if the cron should be automatically run.
 */
Drupal.behaviors.cronCheck = function(context) {
  if (Drupal.settings.cron.runNext || false) {
    $('body:not(.cron-check-processed)', context).addClass('cron-check-processed').each(function() {
      // Only execute the cron check if its the right time.
      if (Math.round(new Date().getTime() / 1000.0) >= Drupal.settings.cron.runNext) {
        $.get(Drupal.settings.cron.basePath + '/run-cron-check');
      }
    });
  }
};

})(jQuery);
;// Thanks for doing your part to liber(IE)t the world from IE6!
// Here's to the "Support but Discourage" approach :)
// Original copy written by Jonathan Howard.
// jon@StaringIsPolite.com // twitter.com/staringispolite
//
// GNU LGPL License v3
// SevenUp 0.3 is released into the wild under a GNU LGPL v3
//
// Browser sniffing technique lovingly adapted from http://www.thefutureoftheweb.com/
// Simple CSS Lightbox technique adapted equally lovingly from http://www.emanueleferonato.com/
// Go read their blogs :)

// Constructor technique advocated by Doug Crockford (of LSlint, JSON) in his recent Google tech talk.
var sevenUp = function() {
  // Define 'private vars' here.
	var osSupportsUpgrade = /(Windows NT 5.1|Windows NT 6.0|Windows NT 6.1|)/i.test(navigator.userAgent); // XP, Vista, Win7
  var options = {  // Change these to fit your color scheme via the 'options' arg for test().
    enableClosing: true,
    enableQuitBuggingMe: true,
    overlayColor: "#000000",  
    lightboxColor: "#ffffff",
    borderColor: "#6699ff",
    downloadLink: osSupportsUpgrade ? 
                  "http://www.microsoft.com/windows/internet-explorer" :
                  "http://getfirefox.com",
    overrideLightbox: false,
    lightboxHTML: null,
    showToAllBrowsers: false,
    usePlugin: false
  };
  function mergeInOptions(newOptions) {
    if (newOptions) {
      for (var i in options) {
        if (newOptions[i] !== undefined) {
          options[i] = newOptions[i];
        }
      }
    }
  }
  function isCookieSet() {
    if (document.cookie.length > 0) {
      var i = document.cookie.indexOf("sevenup=");
      return (i != -1);
    }
    return false;
  }
  
  // Return object literal and public methods here.
  return {
    // Hate to define CSS this way, but trying to keep to one file.
    // I'll keep it as pretty as possible.
    overlayCSS: function() {
      return "display: block; position: absolute; top: 0%; left: 0%;" +
      "width: 100%; height: 100%; background-color: " + options.overlayColor + "; " +
      "filter: alpha(opacity: 80); z-index:1001;";
    },
    lightboxCSS: function() {
      return "display: block; position: absolute; top: 25%; left: 25%; width: 50%; " +
      "padding: 16px; border: 8px solid " + options.borderColor + "; " +
      "background-color:" + options.lightboxColor + "; " +
      "z-index:1002; overflow: hidden;";
    },
    lightboxContents: function() {
      var html = options.lightboxHTML;
      if (!html) {
        html =
        "<div style='width: 100%; height: 95%'>" +
          "<h2 style='text-align: center;'>Twoja przeglÄ…darka jest przestarzaÅ‚a</h2>" +
          "<div class='upgrade_msg' style='text-align: center;'>" +
            "MoÅ¼esz w prosty sposÃ³b uaktualniÄ‡ jÄ… do nowszej wersji tutaj:<br> " +
            "<a style='color: #0000EE' href='" + options.downloadLink + "'>" +
              options.downloadLink +
            "</a>" +
          "</div>" +
          "<h3 style='margin-top: 40px'>Po co miaÅ‚bym uaktualniaÄ‡?</h3>" +
          "<ul>" +
            "<li><b>Strony bÄ™dÄ… Å‚adowaÅ‚y siÄ™ znacznie szybciej</b> niÅ¼ w starszej wersji</li>" +
            "<li><b>Strony bÄ™dÄ… wyglÄ…daÅ‚y lepiej</b> - tak jak zaplanowali ich twÃ³rcy</li>" +
            "<li><b>Karty</b> pozwolÄ… ci oglÄ…daÄ‡ wiele stron w jednym oknie</li>" +
            "<li><b>PrzeglÄ…danie stron stanie siÄ™ bezpieczniejsze</b></li>" +
          "</ul>" +
        "</div>";
        if (options.enableClosing) {
          html += "<div style='font-size: 11px; text-align: right;'>";
          html += options.enableQuitBuggingMe ?
          ("<a href='#' onclick='sevenUp.quitBuggingMe();' " +
              "style='color: #0000EE'>" +
              "Nie zawracaj mi gÅ‚owy" +
          "</a>") :
          ("<a href='#' onclick='sevenUp.close();' " +
              "style='color: #0000EE'>" +
              "zamknij" +
            "</a>");
          html += "</div>";
        }
      }
      return html;
    },
    test: function(newOptions, callback) {
      mergeInOptions(newOptions);
  	  if (!isCookieSet()) {
  	    // Write layer into the document.
  	    var layerHTML = "<div id='sevenUpCallbackSignal'></div>";
        if (options.overrideLightbox) {
          layerHTML += options.lightboxHTML;
        } else {
          layerHTML += "<div id='sevenUpOverlay' style='" + this.overlayCSS() + "'>" +
  	        "</div>" +
            "<div id='sevenUpLightbox' style='" + this.lightboxCSS() + "'>" +
              this.lightboxContents() +
            "</div>";
        }
        if (options.showToAllBrowsers !== true) {
          layerHTML = "<!--[if lt IE 7]>" + layerHTML + "<![endif]-->";
        }
        var layer = document.createElement('div');
        layer.innerHTML = layerHTML;
  	    document.body.appendChild(layer);
        // Fire callback.
        // I don't like this hack but IE6 seems to restrict dynamically created <script> tags to <head> only, 
        // and I don't see a way to add conditional comments around the script tag or its contents.
        // So for now, we write a 'signal' div inside the CC. If anyone has a better way please let me know.
        if (callback && document.getElementById('sevenUpCallbackSignal')) {
          callback(options);
        }
  	  }  
  	},
    quitBuggingMe: function() {
      var exp = new Date();
      exp.setTime(exp.getTime()+(7*24*3600000));
      document.cookie = "sevenup=dontbugme; expires="+exp.toUTCString();
      this.close();
    },
    close: function() {
      var overlay = document.getElementById('sevenUpOverlay');
      var lightbox = document.getElementById('sevenUpLightbox');
      if (overlay) { overlay.style.display = 'none'; }
      if (lightbox) { lightbox.style.display = 'none'; }
    },
    plugin: {}
  };
}();

;/* Image popuper
 *
 * @require dimensions
 * @require yyModal
 */

var yyModalInit = function(context)
{
  $('div.album ul:not(yyimage-processed)', context)
  .addClass('yyimage-processed')
  .css({
    float:      'left',
    display:    'inline'
  })
  .each(function()
  {
    $(this).css
    (
      'marginLeft', Math.round(($(this.parentNode).width()-$(this).width())/2)+'px'
    )
  });

  $('a.popup:not(yyimage-processed)', context)
  .addClass('yyimage-processed')
  .click(function()
  {
    var match = this.className.match(/([0-9]+)x([0-9]+)/);

    if (match)
    {
      var imgWidth  = match[1];
      var imgHeight = match[2];
      var imgAlt    = $('img', this).attr('alt');
      var imgTitle  = $('img', this).attr('title');

      var Modal = new yyModal(
      {
        css:
        {
          background: '#fff',
          padding: '6px'
        },
        contentCss:
        {
          width:  imgWidth+'px',
          height: imgHeight+'px'
        },
        close: 'zamknij'
      });

      Modal.setContent('<img src="'+this.href+'" width="'+imgWidth+'" height="'+imgHeight+'" alt="'+imgAlt+'" title="'+imgTitle+'" />');
      Modal.open();
    }

    return false;
  });
}

if (Drupal)
{
  Drupal.behaviors.yyimage = yyModalInit;
}
else
{
  $(function()
  {
    yyModalInit(document);
  });
}

/* {{{ yyModal
 *
 * @require dimensions.js
 */

yyModal = function(cfg)
{
  this.cfg        = {};
  this.css        = {};
  this.contentCss = {};
  this.closeCss   = {position:'absolute', 'background-color': '#fff' };
  this.created    = false;
  this.opened     = false;
  this.background = null;
  this.viewer     = null;
  this.contentDiv = null;
  this.closeDiv   = null;

  /* {{{ setCfg()
   */

    this.setCfg = function(cfg)
    {
      if (cfg)
      {
        this.cfg = cfg;

        if (cfg.css)
        {
          this.css = cfg.css;
        }

        if (cfg.contentCss)
        {
          this.contentCss = cfg.contentCss;
        }

        if (cfg.closeCss)
        {
          this.closeCss = cfg.closeCss;
        }

        if (cfg.width)
        {
          this.css.width = cfg.width+'px';
        }

        if (cfg.height)
        {
          this.css.height = cfg.height+'px';
        }
      }
    };

  /* }}} */
  /* {{{ initBg()
   */

    this.initBg = function()
    {
      if (this.background === null)
      {
        this.background = $('#yyModal-background');

        if (this.background.length === 0)
        {
          if (!window.totalHeight)
          {
            var docH  = $(document).height()
            var pageH = $('body>:first-child').height();

            /*
            var pageH = 0;
            $('body>*').each(function()
            {
              pageH += $(this).height();
            });
            */

            window.totalHeight = pageH > docH ? pageH : docH;
          }

          this.background = $('<div id="yyModal-background"></div>');
          this.background.appendTo('body')
          .css({opacity: '0', background: '#000', position: 'absolute', zIndex: '500', left: '0', top: '0', width: '' +$(document).width() +'px', height: '' +window.totalHeight +'px'})
          .hide();
        }
      }
    };

  /* }}} */
  /* {{{ init()
   */

    this.init = function()
    {
      var closeTxt = 'close';

      if (!this.created)
      {
        this.initBg();

        if (this.cfg.close)
        {
          closeTxt = this.cfg.close;
        }

        $('#yyModal').remove();

        this.contentDiv  = $('<div id="yyModal-content"></div>').css(this.contentCss);
        this.closeDiv    = $('<div id="yyModal-close" title="'+closeTxt+'"><a href="#">'+closeTxt+'</a></div>');

        this.viewer  = $('<div id="yyModal"></div>').css(this.css);
        this.viewer.append(this.contentDiv);
        this.viewer.append(this.closeDiv);

        this.viewer[0].yyModal = this;

        this.contentDiv.css(this.contentCss);
        this.closeDiv.css(this.closeCss).addClass('hidden');

        this.addEvents();

        this.created = true;
      }
    };

  /* }}} */
  /* {{{ addEvents()
   */

    this.addEvents = function()
    {
      var self = this;

      if (this.viewer)
      {
        if (this.closeDiv)
        {
          this.viewer.hover(function()
          {
            self.closeDiv.removeClass('hidden');
          }, function()
          {
            self.closeDiv.addClass('hidden');
          });

          this.closeDiv.click(function(){ self.close(); });
        }

        this.viewer.click(function()
        {
          if (!self.closeDiv || self.closeDiv.css('display') == 'none')
          {
            self.close();
          }

          return false;
        });

        this.viewer.bind('dblclick', function()
        {
          self.close();
          return false;
        });
      }

      $(document).bind('keypress', this.onKeyPress);

      if (this.background)
      {
        this.background.click(function()
        {
          self.close();
          return false;
        });
      }
    };

  /* }}} */
  /* {{{ onKeyPress()
   */

    this.onKeyPress = function(e)
    {
      if (e.keyCode == 27)
      {
        var el = $('#yyModal');

        if (el.length > 0)
        {
          var Modal = el[0].yyModal;

          Modal.close();

          return false;
        }
      }
    };

  /* }}} */
  /* {{{ setContent()
   */

    this.setContent = function(content)
    {
      this.init();

      if (this.contentDiv)
      {
        this.contentDiv.empty().append(content);
      }
    };

  /* }}} */

  /* {{{ open()
   */

    this.open = function()
    {
      this.init();

      if (this.viewer)
      {
        var self = this;

        self.viewer.appendTo('body').center().hide();

        self.opened = true;

        if (this.background)
        {
          this.background.fadeTo(300, 0.8, function()
          {
             self.viewer.slideDown(500);
          });
        }
        else
        {
          self.viewer.slideDown(500);
        }
      }
    };

  /* }}} */
  /* {{{ close()
   */

    this.close = function()
    {
      var self = this;

      $(document).unbind('keypress', this.onKeyPress);

      if (this.viewer)
      {
        if (!this.opened)
        {
          self.viewer.remove();
          self.viewer     = null;
          self.contentDiv = null;
          self.closeDiv   = null;
          self.created    = false;
        }
        else
        {
          this.viewer.slideUp(300, function()
          {
            self.viewer.remove();
            self.viewer      = null;
            self.contentDiv  = null;
            self.closeDiv    = null;
            self.created     = false;
            self.opened      = false;

            if (self.background)
            {
              self.background.fadeOut(300, function()
              {
                self.background.remove();
                self.background = null;
              });
            }
          });
        }
      }
    };

  /* }}} */

  if (cfg){ this.setCfg(cfg); };
}

/* }}} */
/* {{{ dimensions.js
 */

  // jQuery.fn._height=jQuery.fn.height;jQuery.fn._width=jQuery.fn.width;jQuery.fn.height=function(){if(this[0]==window)return self.innerHeight||jQuery.boxModel&&document.documentElement.clientHeight||document.body.clientHeight;if(this[0]==document)return Math.max(document.body.scrollHeight,document.body.offsetHeight);return this._height(arguments[0])};jQuery.fn.width=function(){if(this[0]==window)return self.innerWidth||jQuery.boxModel&&document.documentElement.clientWidth||document.body.clientWidth;if(this[0]==document)return Math.max(document.body.scrollWidth,document.body.offsetWidth);return this._width(arguments[0])};jQuery.fn.innerHeight=function(){return this[0]==window||this[0]==document?this.height():this.css('display')!='none'?this[0].offsetHeight-(parseInt(this.css("borderTopWidth"))||0)-(parseInt(this.css("borderBottomWidth"))||0):this.height()+(parseInt(this.css("paddingTop"))||0)+(parseInt(this.css("paddingBottom"))||0)};jQuery.fn.innerWidth=function(){return this[0]==window||this[0]==document?this.width():this.css('display')!='none'?this[0].offsetWidth-(parseInt(this.css("borderLeftWidth"))||0)-(parseInt(this.css("borderRightWidth"))||0):this.height()+(parseInt(this.css("paddingLeft"))||0)+(parseInt(this.css("paddingRight"))||0)};jQuery.fn.outerHeight=function(){return this[0]==window||this[0]==document?this.height():this.css('display')!='none'?this[0].offsetHeight:this.height()+(parseInt(this.css("borderTopWidth"))||0)+(parseInt(this.css("borderBottomWidth"))||0)+(parseInt(this.css("paddingTop"))||0)+(parseInt(this.css("paddingBottom"))||0)};jQuery.fn.outerWidth=function(){return this[0]==window||this[0]==document?this.width():this.css('display')!='none'?this[0].offsetWidth:this.height()+(parseInt(this.css("borderLeftWidth"))||0)+(parseInt(this.css("borderRightWidth"))||0)+(parseInt(this.css("paddingLeft"))||0)+(parseInt(this.css("paddingRight"))||0)};jQuery.fn.scrollLeft=function(){if(this[0]==window||this[0]==document)return self.pageXOffset||jQuery.boxModel&&document.documentElement.scrollLeft||document.body.scrollLeft;return this[0].scrollLeft};jQuery.fn.scrollTop=function(){if(this[0]==window||this[0]==document)return self.pageYOffset||jQuery.boxModel&&document.documentElement.scrollTop||document.body.scrollTop;return this[0].scrollTop};jQuery.fn.offset=function(options,returnObject){var x=0,y=0,elem=this[0],parent=this[0],op,sl=0,st=0,options=jQuery.extend({margin:true,border:true,padding:false,scroll:true},options||{});do{x+=parent.offsetLeft||0;y+=parent.offsetTop||0;if(jQuery.browser.mozilla||jQuery.browser.msie){var bt=parseInt(jQuery.css(parent,'borderTopWidth'))||0;var bl=parseInt(jQuery.css(parent,'borderLeftWidth'))||0;x+=bl;y+=bt;if(jQuery.browser.mozilla&&parent!=elem&&jQuery.css(parent,'overflow')!='visible'){x+=bl;y+=bt}}if(options.scroll){op=parent.offsetParent;do{sl+=parent.scrollLeft||0;st+=parent.scrollTop||0;parent=parent.parentNode;if(jQuery.browser.mozilla&&parent!=elem&&parent!=op&&jQuery.css(parent,'overflow')!='visible'){y+=parseInt(jQuery.css(parent,'borderTopWidth'))||0;x+=parseInt(jQuery.css(parent,'borderLeftWidth'))||0}}while(parent!=op)}else parent=parent.offsetParent;if(parent&&(parent.tagName.toLowerCase()=='body'||parent.tagName.toLowerCase()=='html')){if(jQuery.browser.safari&&jQuery.css(parent,'position')!='absolute'){x+=parseInt(jQuery.css(op,'marginLeft'))||0;y+=parseInt(jQuery.css(op,'marginTop'))||0}break}}while(parent);if(!options.margin){x-=parseInt(jQuery.css(elem,'marginLeft'))||0;y-=parseInt(jQuery.css(elem,'marginTop'))||0}if(options.border&&(jQuery.browser.safari||jQuery.browser.opera)){x+=parseInt(jQuery.css(elem,'borderLeftWidth'))||0;y+=parseInt(jQuery.css(elem,'borderTopWidth'))||0}else if(!options.border&&!(jQuery.browser.safari||jQuery.browser.opera)){x-=parseInt(jQuery.css(elem,'borderLeftWidth'))||0;y-=parseInt(jQuery.css(elem,'borderTopWidth'))||0}if(options.padding){x+=parseInt(jQuery.css(elem,'paddingLeft'))||0;y+=parseInt(jQuery.css(elem,'paddingTop'))||0}if(options.scroll&&jQuery.browser.opera&&jQuery.css(elem,'display')=='inline'){sl-=elem.scrollLeft||0;st-=elem.scrollTop||0}var returnValue=options.scroll?{top:y-st,left:x-sl,scrollTop:st,scrollLeft:sl}:{top:y,left:x};if(returnObject){jQuery.extend(returnObject,returnValue);return this}else{return returnValue}};

/* }}} */
/* {{{ $.center()
 */

  // Created by Andreas Lagerkvist http://exscale.se
  // A center-function (uses dimensions plugin)
  $.fn.center = function(show_info)
  {
    return this.each(function()
    {
      /*
      if (typeof document.body.style.maxHeight == "undefined")
      {
        // IE<=6
        $(this).css({position: 'absolute'});
      } else {
        $(this).css({position: 'fixed'});
      }
      */

      $(this).css({position: 'absolute'});

      var leftPos = ($(window).width() - $(this).outerWidth()) / 2 + $(window).scrollLeft();
      var topPos = ($(window).height() - $(this).outerHeight()) / 2 + $(window).scrollTop();

      if(topPos < 0) topPos = 0;
      if(leftPos < 0) leftPos = 0;

      $(this).css({left: leftPos +'px', top: topPos +'px', zIndex: '1000'});
    });
  }

/* }}} */

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

(function ($) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  return true;
};

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

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

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

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

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

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

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

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

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

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

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

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

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

    self.isOpen = true;
  };

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

})(jQuery);
;/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());;/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1992 Corel Corporation. All Rights Reserved.
 */
Cufon.registerFont({"w":147,"face":{"font-family":"Fujiyama","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":"3","bbox":"-18 -353 360 79.0991","underline-thickness":"21.96","underline-position":"-20.88","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":73},"!":{"d":"67,-22v3,29,-38,34,-43,8v-5,-30,40,-34,43,-8xm28,-66r0,-205r36,0r0,205r-36,0","w":90},"\"":{"d":"10,-190r-4,-81r31,0r-4,81r-23,0xm58,-190r-5,-81r31,0r-4,81r-22,0","w":90},"#":{"d":"-4,0r28,-93r-38,0r6,-21r39,0r13,-45r-38,0r5,-21r40,0r29,-91r19,0r-28,91r32,0r28,-91r19,0r-28,91r40,0r-6,21r-40,0r-14,45r41,0r-6,21r-41,0r-28,93r-20,0r28,-93r-32,0r-29,93r-19,0xm51,-114r31,0r14,-45r-31,0"},"$":{"d":"115,-135v43,34,27,136,-33,135r0,24r-16,0r0,-24v-26,0,-44,-14,-53,-41r29,-14v4,16,13,24,30,25v32,3,37,-46,25,-68v-1,-2,-18,-12,-47,-34v-27,-20,-39,-36,-39,-69v0,-42,17,-67,55,-70r0,-24r16,0r0,24v29,-1,46,16,52,40r-27,16v-5,-37,-64,-33,-62,8v2,40,45,52,70,72"},"%":{"d":"51,-145v-36,0,-38,-45,-35,-85v2,-27,12,-46,39,-45v32,1,37,29,37,68v0,34,-11,62,-41,62xm54,-253v-23,3,-21,78,-1,85v18,-2,15,-29,15,-52v0,-17,0,-31,-14,-33xm142,4v-49,0,-51,-130,2,-130v34,0,40,27,40,66v0,39,-9,64,-42,64xm144,-104v-17,0,-14,28,-14,48v0,19,0,37,15,38v17,-2,16,-31,14,-52v-1,-17,0,-34,-15,-34xm21,0r135,-271r22,0r-134,271r-23,0","w":199},"&":{"d":"80,-225v-33,3,-19,49,-7,66v13,-13,26,-24,26,-44v0,-12,-6,-22,-19,-22xm64,-110v-25,19,-30,80,9,83v12,0,21,-6,28,-19xm129,-210v2,37,-19,57,-40,79r36,58r21,-31r24,18r-29,40r29,46r-41,0r-12,-21v-33,49,-113,15,-109,-43v2,-33,18,-51,39,-73v-37,-49,-29,-113,32,-116v26,-1,49,19,50,43","w":177},"'":{"d":"38,-276r29,10r-35,95r-19,-5","w":76,"k":{"s":20,"'":6}},"(":{"d":"80,-267v-41,92,-39,206,0,299r-33,9v-42,-89,-43,-226,-1,-316","w":99},")":{"d":"19,32v40,-90,41,-209,0,-299r34,-9v41,86,40,228,0,317","w":99},"*":{"d":"56,-271r14,0r0,47r41,-25r7,12r-41,24r41,23r-7,12r-41,-24r2,46r-16,0r2,-47r-39,25r-9,-12r41,-23r-41,-22r8,-13r40,24","w":128},"+":{"d":"77,-105r0,-78r26,0r0,78r62,0r0,25r-62,0r0,79r-26,0r0,-79r-61,0r0,-25r61,0","w":180},",":{"d":"27,-38r29,9r-34,95r-18,-5","w":73},"-":{"d":"11,-107r65,0r0,27r-65,0r0,-27","w":87},".":{"d":"38,3v-14,1,-23,-9,-23,-22v0,-11,10,-21,22,-21v12,0,21,9,21,21v0,12,-9,22,-20,22","w":73},"\/":{"d":"130,-299r28,0r-138,336r-29,0","w":146},"0":{"d":"72,1v-56,0,-59,-71,-59,-143v0,-78,1,-136,64,-136v56,0,61,74,59,142v-2,74,-1,137,-64,137xm75,-246v-42,16,-24,119,-24,175v0,23,9,37,24,39v39,-18,23,-119,23,-175v0,-18,-7,-38,-23,-39"},"1":{"d":"30,-271r62,0r0,271r-36,0r0,-240r-26,0r0,-31"},"2":{"d":"74,-275v84,-6,63,108,37,157r-45,86r67,0r0,32r-120,0r67,-141v10,-23,18,-42,18,-69v0,-22,-9,-32,-26,-32v-22,0,-19,35,-19,58r-36,0v1,-60,6,-87,57,-91"},"3":{"d":"101,-141v23,8,33,26,33,57v-1,60,-20,90,-65,88v-41,-1,-54,-26,-54,-72r35,0v-4,19,5,39,22,39v17,-1,26,-18,26,-39v0,-44,-4,-55,-43,-57r0,-33v32,1,41,-11,41,-43v0,-22,-4,-42,-21,-42v-18,0,-22,22,-21,44r-34,0v-1,-47,9,-76,53,-76v70,0,77,116,28,134"},"4":{"d":"119,-271r0,170r17,0r0,26r-17,0r0,75r-35,0r0,-75r-74,0r0,-30r74,-166r35,0xm84,-101r0,-116r-45,116r45,0"},"5":{"d":"96,-86v0,-45,-28,-67,-69,-53r17,-132r86,0r0,31r-58,0r-9,68v48,0,69,30,71,78v3,72,-54,120,-119,86r9,-32v39,28,72,-1,72,-46"},"6":{"d":"74,-134v-31,2,-34,102,1,105v27,-3,33,-102,-1,-105xm132,-80v-5,52,-8,84,-53,84v-97,0,-65,-164,-33,-224r24,-51r40,0r-53,116v42,-35,81,13,75,75"},"7":{"d":"13,-271r122,0r-82,271r-40,0r76,-240r-76,0r0,-31"},"8":{"d":"15,-75v-1,-36,4,-66,32,-72v-23,-7,-29,-32,-29,-65v0,-42,17,-58,57,-63v69,-8,72,110,25,127v22,5,33,28,33,68v0,50,-13,84,-57,84v-48,0,-59,-28,-61,-79xm73,-128v-24,3,-22,43,-20,69v1,15,5,30,21,29v26,-2,22,-39,21,-69v-1,-16,-8,-28,-22,-29xm76,-163v24,-6,27,-80,-3,-80v-29,4,-27,79,3,80"},"9":{"d":"74,-135v31,-4,34,-106,-3,-107v-28,2,-24,111,3,107xm75,-275v70,-4,61,90,52,150v-6,43,-34,87,-51,125r-39,0r53,-114v-7,6,-16,12,-29,11v-41,-4,-46,-30,-46,-84v0,-55,11,-85,60,-88"},":":{"d":"37,3v-12,0,-21,-9,-22,-20v0,-14,10,-23,22,-23v11,0,21,10,21,22v0,12,-9,21,-21,21xm37,-141v-12,0,-22,-10,-22,-21v0,-13,9,-22,22,-22v11,-1,21,11,21,22v-1,14,-8,17,-21,21","w":73},";":{"d":"27,-38r30,9r-34,95r-19,-5xm39,-141v-14,0,-23,-9,-24,-22v0,-11,10,-21,22,-21v12,0,21,9,21,21v1,12,-8,22,-19,22","w":73},"<":{"d":"16,-80r0,-23r149,-83r0,26r-121,69r121,68r0,27","w":180},"=":{"d":"165,-139r0,26r-149,0r0,-26r149,0xm165,-69r0,25r-149,0r0,-25r149,0","w":180},">":{"d":"165,-103r0,23r-149,84r0,-27r120,-68r-120,-69r0,-26","w":180},"?":{"d":"60,-245v-17,0,-13,23,-14,41r-34,0v-1,-48,8,-71,49,-71v41,0,53,26,53,71v0,50,-1,78,-38,82r0,58r-32,0r0,-82v34,3,37,-18,36,-54v0,-22,-3,-45,-20,-45xm38,-18v-1,-27,42,-28,44,-3v1,12,-8,24,-22,24v-12,0,-22,-10,-22,-21","w":123},"@":{"d":"177,-150v4,-21,3,-45,-19,-45v-41,0,-62,41,-65,85v-1,19,9,34,28,34v29,-2,50,-43,56,-74xm77,-44v52,40,141,28,171,-22r22,0v-20,38,-65,70,-120,69v-80,-2,-140,-56,-140,-140v0,-112,142,-179,231,-105v69,58,25,192,-51,191v-16,0,-26,-7,-32,-20v-30,37,-99,14,-95,-39v5,-55,38,-110,93,-109v15,0,38,13,40,26r6,-19r24,0r-42,130v0,7,5,11,11,12v35,-11,60,-44,60,-88v0,-96,-123,-120,-186,-64v-50,45,-44,138,8,178","w":288},"A":{"d":"60,-271r29,0r59,271r-37,0r-11,-53r-53,0r-10,53r-36,0xm96,-81r-21,-138r-23,138r44,0","w":149,"k":{"y":6,"w":6,"v":6,"Y":20,"W":6,"V":13,"T":13,"'":20}},"B":{"d":"134,-79v5,70,-41,85,-112,79r0,-271v66,-4,107,2,107,75v0,33,-8,50,-33,57v25,9,36,28,38,60xm94,-198v0,-29,-9,-45,-38,-43r0,89v30,-1,38,-14,38,-46xm95,-66v1,-35,-5,-60,-39,-57r0,92v26,0,39,-10,39,-35","w":150},"C":{"d":"15,-134v0,-82,29,-166,112,-133r0,33v-56,-30,-74,42,-74,102v0,64,19,119,74,96r0,32v-78,32,-112,-49,-112,-130","w":132},"D":{"d":"153,-128v0,92,-29,140,-131,128r0,-271r50,0v71,0,81,69,81,143xm58,-31v76,5,63,-112,50,-175v-5,-23,-21,-34,-50,-35r0,210","w":168},"E":{"d":"22,-271r97,0r0,31r-61,0r0,85r55,0r0,31r-55,0r0,92r61,0r0,32r-97,0r0,-271","w":125},"F":{"d":"22,-271r98,0r0,31r-62,0r0,85r55,0r0,31r-55,0r0,124r-36,0r0,-271","w":123,"k":{"A":13,".":40,",":40}},"G":{"d":"86,-30v31,-1,31,-45,30,-82r-30,0r0,-31r66,0v0,75,3,147,-64,147v-71,0,-73,-67,-73,-153v0,-80,8,-126,73,-126v38,0,53,22,62,55r-34,14v-1,-20,-14,-35,-32,-36v-36,6,-31,55,-31,99v0,46,-7,105,33,113","w":165},"H":{"d":"22,-271r36,0r0,106r54,0r0,-106r36,0r0,271r-36,0r0,-134r-54,0r0,134r-36,0r0,-271","w":170},"I":{"d":"58,-271r0,271r-36,0r0,-271r36,0","w":80},"J":{"d":"3,-40v23,21,48,5,48,-36r0,-195r36,0r0,204v9,57,-39,86,-84,63r0,-36","w":109},"K":{"d":"58,-141r52,-130r37,0r-53,131r57,140r-41,0r-52,-141r0,141r-36,0r0,-271r36,0r0,130","w":152},"L":{"d":"22,-271r36,0r0,239r61,0r0,32r-97,0r0,-271","w":118,"k":{"y":13,"Y":25,"W":18,"V":21,"T":21,"'":33}},"M":{"d":"31,-271r31,0r38,195r36,-195r32,0r25,271r-35,0r-9,-187r-35,187r-25,0r-35,-187r-11,187r-35,0","w":201},"N":{"d":"51,-209r7,209r-36,0r0,-271r34,0r65,205r-9,-205r36,0r0,271r-34,0","w":170},"O":{"d":"85,4v-64,0,-71,-71,-71,-141v0,-74,8,-136,72,-137v67,-1,70,78,70,148v0,73,-13,130,-71,130xm86,-242v-35,4,-33,67,-33,117v0,50,-1,90,36,95v31,-6,30,-64,29,-112v-1,-47,-1,-92,-32,-100","w":171},"P":{"d":"136,-201v-2,57,-21,83,-78,81r0,120r-36,0r0,-271v67,-4,116,2,114,70xm58,-150v45,7,47,-55,30,-80v-6,-8,-16,-11,-30,-11r0,91","w":140,"k":{"A":10,".":46,",":46}},"Q":{"d":"53,-144v-1,55,-1,130,47,108r-22,-33r22,-17r13,19v5,-53,20,-162,-26,-175v-32,4,-34,50,-34,98xm86,-276v94,0,76,174,54,246r25,34r-24,17r-19,-29v-55,35,-106,-14,-106,-79v0,-85,-5,-189,70,-189","w":172},"R":{"d":"71,-271v79,-12,77,126,24,139r50,132r-37,0r-50,-133r0,133r-36,0r0,-271r49,0xm94,-197v0,-27,-10,-45,-36,-43r0,89v27,0,36,-17,36,-46","w":149,"k":{"Y":6,"T":6}},"S":{"d":"99,-128v40,45,18,134,-45,132v-16,0,-29,-5,-39,-13r0,-37v30,26,71,17,67,-28v-5,-53,-75,-68,-75,-132v0,-58,51,-84,98,-60r0,36v-24,-21,-65,-10,-62,27v2,27,39,55,56,75","w":127},"T":{"d":"-1,-271r119,0r0,31r-41,0r0,240r-36,0r0,-240r-42,0r0,-31","w":115,"k":{"\u00f3":18,"y":18,"w":18,"u":14,"s":18,"r":14,"o":18,"e":18,"c":18,"a":18,"A":13,";":14,":":14,".":24,"-":14,",":18}},"U":{"d":"85,4v-50,0,-62,-29,-63,-82r0,-193r36,0r0,189v0,31,1,52,24,52v29,0,29,-13,29,-45r0,-196r36,0r-1,195v-1,56,-10,80,-61,80","w":168},"V":{"d":"3,-271r36,0r30,203r34,-203r34,0r-53,271r-29,0","w":139,"k":{"\u00f3":6,"u":6,"r":6,"o":6,"e":6,"a":6,"A":13,";":6,":":6,".":33,"-":6,",":33}},"W":{"d":"151,-69r27,-202r35,0r-48,271r-29,0v-9,-64,-27,-132,-28,-202r-31,202r-30,0r-46,-271r35,0r27,203r31,-203r28,0","w":213,"k":{"\u00f3":6,"o":6,"e":6,"a":6,"A":6,";":6,":":6,".":27,"-":6,",":27}},"X":{"d":"80,-174r29,-97r36,0r-50,132r50,139r-37,0r-31,-101v-4,26,-22,73,-30,101r-39,0r52,-138r-48,-133r36,0","w":154},"Y":{"d":"54,0r0,-117r-53,-154r38,0r34,125v5,-34,20,-89,29,-125r39,0r-50,154r0,117r-37,0","w":141,"k":{"\u00f3":20,"v":6,"u":13,"q":20,"p":13,"o":20,"e":20,"a":20,"A":20,";":13,":":13,".":26,"-":27,",":26}},"Z":{"d":"15,-271r120,0r-82,239r78,0r0,32r-125,0r82,-240r-73,0r0,-31","w":141},"[":{"d":"13,-271r80,0r0,23r-49,0r0,261r49,0r0,24r-80,0r0,-308","w":108},"\\":{"d":"80,0r-98,-299r28,0r98,299r-28,0","w":90},"]":{"d":"15,-271r79,0r0,308r-79,0r0,-24r48,0r0,-261r-48,0r0,-23","w":108},"^":{"d":"81,-271r17,0r67,149r-24,0r-51,-116r-51,116r-23,0","w":180},"_":{"d":"180,68r-180,0r0,-28r180,0r0,28","w":180},"`":{"d":"24,-253r24,-16r29,54r-18,11","w":100,"k":{"`":6}},"a":{"d":"67,-154v-23,0,-21,40,-23,65v-3,32,9,78,36,55v11,-16,9,-54,8,-79v-1,-16,-3,-42,-21,-41xm53,-185v14,-1,31,12,33,23r2,-20r34,0r0,182r-35,0r0,-23v-7,17,-18,26,-33,26v-40,0,-44,-48,-44,-94v0,-44,4,-90,43,-94","w":137},"b":{"d":"69,-155v-31,11,-24,88,-12,120v4,5,7,8,12,8v31,-1,22,-68,22,-96v0,-15,-8,-32,-22,-32xm84,4v-16,0,-31,-13,-34,-27r-1,23r-34,0r0,-299r34,0r0,137v5,-13,17,-23,33,-23v40,1,46,50,45,92v-1,44,-4,97,-43,97","w":137},"c":{"d":"91,-144v-31,-27,-47,13,-47,54v0,42,17,78,47,54r0,32v-53,26,-81,-24,-81,-84v0,-65,23,-111,81,-91r0,35","w":99},"d":{"d":"66,-155v-23,6,-22,34,-22,66v0,33,-1,57,22,62v26,6,19,-56,22,-71v0,-31,0,-52,-22,-57xm87,-23v-3,15,-19,27,-36,26v-39,-3,-42,-52,-42,-92v0,-43,4,-96,45,-96v16,0,26,7,32,23r1,-137r34,0r0,299r-34,0r0,-23","w":137},"e":{"d":"10,-70v-1,-60,3,-115,54,-115v45,0,57,46,56,101r-76,0v0,28,3,54,22,57v15,-1,21,-15,21,-34r32,0v0,39,-16,64,-53,64v-38,-1,-56,-31,-56,-73xm85,-108v4,-35,-13,-58,-34,-38v-4,7,-6,20,-6,38r40,0","w":129},"f":{"d":"24,-182v-2,-60,-8,-145,64,-115r1,35v-14,-8,-31,-5,-31,15r0,65r28,0r0,26r-28,0r0,156r-34,0r0,-156r-16,0r0,-26r16,0","w":89,"k":{"'":-6}},"g":{"d":"67,-154v-25,4,-23,28,-23,63v0,31,1,60,23,64v21,-4,21,-32,21,-64v0,-31,-2,-58,-21,-63xm46,21v0,18,6,26,22,26v27,0,19,-42,20,-68v-6,15,-17,25,-32,25v-41,0,-46,-41,-46,-95v0,-56,2,-94,45,-94v18,0,25,11,32,26v2,-5,0,-15,1,-22r34,0r0,181v-1,51,-7,76,-53,77v-39,0,-57,-17,-56,-56r33,0","w":137},"h":{"d":"91,-127v0,-18,-4,-28,-20,-28v-14,0,-21,11,-21,33r0,122r-34,0r0,-299r34,0r0,138v9,-18,21,-26,47,-23v24,3,28,26,28,58r0,126r-34,0r0,-127","w":140},"i":{"d":"49,-182r0,182r-34,0r0,-182r34,0xm34,-215v-14,1,-24,-9,-24,-22v0,-12,10,-23,22,-23v12,0,23,12,23,23v0,12,-9,22,-21,22","w":64},"j":{"d":"49,-182r0,257r-34,0r0,-257r34,0xm34,-215v-14,1,-24,-9,-24,-22v0,-12,10,-23,22,-23v11,0,23,12,23,23v0,12,-9,22,-21,22","w":64},"k":{"d":"16,-299r34,0r0,198r43,-81r38,0r-47,81r52,101r-39,0r-46,-96r-1,96r-34,0r0,-299","w":142},"l":{"d":"49,-299r0,299r-34,0r0,-299r34,0","w":64},"m":{"d":"71,-155v-22,0,-22,15,-22,41r0,114r-34,0r0,-182r35,0r0,23v9,-33,62,-34,69,0v8,-18,19,-26,42,-26v24,0,36,18,36,42r0,143r-34,0r0,-128v0,-18,-3,-26,-18,-27v-14,0,-22,10,-22,30r0,125r-34,0r0,-123v-1,-21,0,-32,-18,-32","w":212},"n":{"d":"86,-185v29,0,39,18,39,52r0,133r-34,0r0,-128v0,-15,-5,-27,-20,-27v-20,1,-21,14,-21,38r0,117r-34,0r0,-182r34,0r0,21v8,-13,18,-24,36,-24","w":140},"o":{"d":"68,3v-53,0,-57,-52,-57,-113v0,-43,17,-75,56,-75v53,0,59,45,58,105v0,48,-15,83,-57,83xm91,-91v0,-29,-2,-63,-23,-63v-34,0,-24,85,-18,112v3,10,9,15,18,15v22,-5,23,-32,23,-64","w":135},"p":{"d":"91,-87v0,-37,2,-61,-21,-67v-20,-1,-23,33,-22,61v1,35,-2,62,21,66v22,-3,22,-27,22,-60xm82,3v-15,0,-29,-11,-32,-24r-1,96r-34,0r0,-256r34,0r0,23v5,-15,17,-27,34,-27v40,0,43,51,43,95v0,43,-2,93,-44,93","w":137},"q":{"d":"67,-155v-28,3,-23,44,-23,78v0,24,4,49,24,50v21,-5,20,-33,21,-67v1,-32,-2,-57,-22,-61xm54,-185v16,0,30,12,33,26r0,-23r35,0r0,257r-35,0v-2,-31,5,-69,-1,-96v-3,14,-15,25,-32,24v-41,-3,-44,-49,-44,-93v0,-40,5,-93,44,-95","w":137},"r":{"d":"89,-151v-29,0,-38,10,-39,37r0,114r-34,0r0,-182r34,0v1,7,-4,20,1,23v8,-17,20,-26,38,-26r0,34","w":97,"k":{"z":-7,"y":-6,"x":-7,"w":-6,"v":-6,".":27,"-":13,",":27}},"s":{"d":"93,-53v3,45,-46,71,-82,47r0,-33v11,15,49,18,51,-7v2,-26,-64,-53,-56,-85v-4,-44,42,-67,78,-46r0,32v-12,-13,-49,-14,-48,10v1,19,66,51,57,82","w":99},"t":{"d":"23,-233r33,0r0,51r19,0r0,26r-19,0r0,156r-33,0r0,-156r-19,0r0,-26r19,0r0,-51","w":79},"u":{"d":"77,3v-91,5,-55,-109,-61,-185r34,0r-1,126v0,18,5,28,21,28v16,0,21,-9,21,-27r0,-127r34,0v-7,70,27,181,-48,185","w":140},"v":{"d":"4,-181r37,0r24,137r26,-137r33,0r-48,181r-23,0","w":128,"k":{".":20,",":24}},"w":{"d":"89,-134r-22,134r-24,0r-44,-182r36,0r19,131r23,-131r23,0r22,131r21,-131r33,0r-42,182r-23,0v-13,-65,-20,-81,-22,-134","w":174,"k":{".":9,",":13}},"x":{"d":"68,-74v1,15,-20,56,-28,74r-35,0r46,-96r-46,-86r39,0r26,62v7,-25,13,-39,24,-62r35,0r-41,86r50,96r-40,0v-19,-44,-24,-43,-30,-74","w":142},"y":{"d":"1,-182r38,0r27,127r31,-127r34,0r-74,257r-35,0r28,-90","w":134,"k":{".":20,",":24}},"z":{"d":"10,-182r105,0r-60,152r58,0r0,30r-108,0r63,-152r-58,0r0,-30","w":120},"{":{"d":"92,36v-111,17,-15,-143,-91,-144r0,-19v44,1,32,-52,32,-92v0,-42,20,-55,59,-52r0,20v-65,-3,8,126,-62,133v42,4,32,53,33,97v1,28,4,35,29,36r0,21","w":92},"|":{"d":"32,0r0,-299r26,0r0,299r-26,0","w":90},"}":{"d":"1,-271v112,-17,14,144,91,144r0,19v-76,0,20,162,-91,144r0,-21v65,4,-9,-126,62,-132v-41,-5,-32,-53,-33,-98v-1,-28,-5,-34,-29,-36r0,-20","w":92},"~":{"d":"58,-92v-16,3,-21,14,-30,33r-13,-18v10,-21,19,-39,40,-42v22,-4,69,44,86,14v4,-4,8,-10,12,-19r12,17v-9,19,-18,37,-40,40v-10,2,-57,-27,-67,-25","w":180},"\u2026":{"d":"61,4v-13,0,-22,-10,-22,-22v0,-12,9,-21,21,-21v12,0,22,10,22,21v0,12,-10,22,-21,22xm177,3v-13,0,-23,-10,-23,-22v0,-11,10,-21,22,-21v12,0,22,10,22,21v0,12,-10,22,-21,22xm293,3v-13,0,-23,-9,-23,-22v0,-12,10,-21,22,-21v12,0,22,10,22,21v0,11,-10,21,-21,22","w":360},"\u2018":{"d":"39,-171r-29,-8r34,-97r19,6","w":76},"\u2019":{"d":"38,-276r29,10r-35,95r-19,-5","w":76},"\u201c":{"d":"86,-171r-29,-8r34,-97r20,6xm37,-171r-29,-8r34,-97r19,6","w":123},"\u201d":{"d":"38,-276r29,10r-35,95r-19,-5xm87,-276r29,10r-34,95r-19,-5","w":123},"\u2013":{"d":"0,-107r180,0r0,27r-180,0r0,-27","w":180},"\u2014":{"d":"0,-106r359,0r1,26r-359,0","w":360},"\u2122":{"d":"259,-271r0,151r-20,0r0,-130r-43,130r-12,0r-41,-130r-1,130r-20,0r0,-151r33,0r35,106r37,-106r32,0xm100,-271r0,21r-38,0r0,130r-23,0r0,-130r-39,0r0,-21r100,0","w":270},"\u00a9":{"d":"145,4v-77,-2,-140,-57,-140,-140v0,-72,60,-143,135,-139v82,4,144,53,144,140v0,75,-65,141,-139,139xm139,-252v-101,0,-146,135,-77,202v70,68,199,12,199,-85v0,-65,-55,-117,-122,-117xm149,-75v22,0,44,-14,43,-36r24,0v-5,32,-31,56,-66,56v-50,0,-77,-33,-77,-85v0,-82,127,-110,142,-25r-23,0v-21,-60,-96,-32,-96,34v0,32,24,56,53,56","w":288},"\u00ab":{"d":"52,-94r46,-80r16,10r-41,70r38,72r-16,9xm9,-94r46,-80r17,10r-42,70r38,72r-16,9","w":128},"\u00bb":{"d":"77,-94r-43,81r-16,-9r37,-72r-42,-70r17,-10xm120,-94r-43,81r-17,-9r38,-72r-42,-70r17,-10","w":128},"\u00d3":{"d":"85,4v-64,0,-71,-71,-71,-141v0,-74,8,-136,72,-137v67,-1,70,78,70,148v0,73,-13,130,-71,130xm86,-242v-35,4,-33,67,-33,117v0,50,-1,90,36,95v31,-6,30,-64,29,-112v-1,-47,-1,-92,-32,-100xm122,-337r-36,48r-19,-11r30,-53","w":171},"\u00d7":{"d":"72,-92r-43,-44r18,-17r43,43r44,-43r18,17r-43,44r43,43r-18,18r-44,-43r-44,43r-17,-18","w":180},"\u00f3":{"d":"68,3v-53,0,-57,-53,-57,-113v0,-43,17,-75,56,-75v53,0,59,45,58,105v0,48,-15,83,-57,83xm91,-91v0,-29,-2,-63,-23,-63v-34,0,-24,85,-18,112v3,10,9,15,18,15v22,-5,23,-32,23,-64xm102,-248r-36,49r-18,-11r29,-53","w":135},"\u0141":{"d":"22,-96r-22,13r0,-33r22,-14r0,-141r36,0r0,119r43,-26r0,34r-43,26r0,86r61,0r0,32r-97,0r0,-96","w":118},"\u0142":{"d":"15,-118r-15,10r0,-33r15,-10r0,-148r34,0r0,128r16,-10r0,33r-16,10r0,138r-34,0r0,-118","w":64},"\u0106":{"d":"15,-134v0,-82,29,-166,112,-133r0,33v-56,-30,-74,42,-74,102v0,64,19,119,74,96r0,32v-78,32,-112,-49,-112,-130xm127,-337r-36,48r-18,-11r29,-53","w":132},"\u0107":{"d":"91,-144v-31,-27,-47,13,-47,54v0,42,17,78,47,54r0,32v-53,26,-81,-24,-81,-84v0,-65,23,-111,81,-91r0,35xm98,-248r-36,49r-18,-11r29,-53","w":99},"\u0104":{"d":"125,44v-1,20,29,20,41,10r0,16v-22,16,-67,12,-63,-26v2,-18,14,-32,28,-44r-20,0r-11,-53r-53,0r-10,53r-36,0r59,-271r29,0r59,271v-8,12,-22,27,-23,44xm96,-81r-21,-138r-23,138r44,0","w":149},"\u0105":{"d":"67,-154v-23,0,-21,40,-23,65v-3,32,9,78,36,55v11,-16,9,-54,8,-79v-1,-16,-3,-42,-21,-41xm113,79v-51,3,-37,-63,-8,-79r-18,0r0,-23v-7,17,-18,26,-33,26v-40,0,-44,-48,-44,-94v0,-44,4,-90,43,-94v14,-1,31,12,33,23r2,-20r34,0r0,182v-11,16,-40,52,-5,61v11,0,15,-3,24,-7r0,16v-8,5,-17,9,-28,9","w":137},"\u0118":{"d":"110,79v-51,2,-37,-63,-8,-79r-80,0r0,-271r97,0r0,31r-61,0r0,85r55,0r0,31r-55,0r0,92r61,0r0,32v-10,17,-40,52,-5,61v11,0,16,-3,24,-7r0,16v-8,5,-17,9,-28,9","w":125},"\u0119":{"d":"66,-27v15,-1,21,-15,21,-34r32,0v0,32,-11,54,-36,61v-10,17,-39,54,-3,61v11,0,15,-3,23,-7r0,16v-22,15,-67,12,-63,-26v2,-17,13,-30,25,-41v-44,-1,-57,-42,-55,-94v2,-54,9,-94,54,-94v45,0,57,46,56,101r-76,0v0,28,3,54,22,57xm85,-108v4,-35,-13,-58,-34,-38v-4,7,-6,20,-6,38r40,0","w":129},"\u0143":{"d":"51,-209r7,209r-36,0r0,-271r34,0r65,205r-9,-205r36,0r0,271r-34,0xm124,-337r-36,48r-19,-11r30,-53","w":170},"\u0144":{"d":"86,-185v29,0,39,18,39,52r0,133r-34,0r0,-128v0,-15,-5,-27,-20,-27v-20,1,-21,14,-21,38r0,117r-34,0r0,-182r34,0r0,21v8,-13,18,-24,36,-24xm105,-248r-36,49r-18,-11r30,-53","w":140},"\u015a":{"d":"99,-128v40,45,18,134,-45,132v-16,0,-29,-5,-39,-13r0,-37v30,26,71,17,67,-28v-5,-53,-75,-68,-75,-132v0,-58,51,-84,98,-60r0,36v-24,-21,-65,-10,-62,27v2,27,39,55,56,75xm99,-337r-36,48r-18,-11r29,-53","w":127},"\u015b":{"d":"93,-53v3,45,-46,71,-82,47r0,-33v11,15,49,18,51,-7v2,-26,-64,-53,-56,-85v-4,-44,42,-67,78,-46r0,32v-12,-13,-49,-14,-48,10v1,19,66,51,57,82xm87,-248r-36,49r-18,-11r29,-53","w":99},"\u0179":{"d":"15,-271r120,0r-82,239r78,0r0,32r-125,0r82,-240r-73,0r0,-31xm110,-337r-36,48r-19,-11r30,-53","w":141},"\u017a":{"d":"10,-182r105,0r-60,152r58,0r0,30r-108,0r63,-152r-58,0r0,-30xm99,-248r-36,49r-18,-11r29,-53","w":120},"\u017b":{"d":"15,-271r120,0r-82,239r78,0r0,32r-125,0r82,-240r-73,0r0,-31xm76,-294v-14,0,-23,-10,-24,-23v0,-11,10,-24,23,-22v12,-2,23,11,22,22v0,12,-9,23,-21,23","w":141},"\u017c":{"d":"10,-182r105,0r-60,152r58,0r0,30r-108,0r63,-152r-58,0r0,-30xm68,-214v-14,0,-23,-9,-24,-22v0,-11,11,-23,23,-23v12,0,22,11,22,23v0,12,-9,22,-21,22","w":120},"\u00a0":{"w":73}}});
;/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1992 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":197,"face":{"font-family":"Swis721 BT","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 4 2 2 2 2 2 4","ascent":"288","descent":"-72","x-height":"6","bbox":"-9 -343 342 85","underline-thickness":"19.1602","underline-position":"-27.9492","unicode-range":"U+0020-U+0142"},"glyphs":{" ":{"w":98},"!":{"d":"49,-63r-9,-112r0,-84r35,0v2,70,-3,133,-8,196r-18,0xm40,0r0,-38r35,0r0,38r-35,0","w":115},"\"":{"d":"92,-252r0,97r-24,0r0,-97r24,0xm40,-252r0,97r-24,0r0,-97r24,0","w":107},"#":{"d":"170,-151r-45,0r-17,47r46,0xm162,-256r-28,80r45,0r29,-80r29,0r-29,80r53,0r-9,25r-53,0r-16,46r56,0r-9,26r-56,0r-29,80r-29,0r29,-80r-46,0r-28,80r-29,0r28,-80r-55,0r10,-26r54,0r16,-46r-58,0r9,-25r59,0r28,-80r29,0","w":276},"$":{"d":"108,-20v40,2,60,-45,35,-72v-7,-7,-19,-12,-35,-16r0,88xm89,-223v-36,-3,-55,43,-31,66v7,6,17,11,31,13r0,-79xm187,-68v0,46,-34,70,-79,75r0,32r-19,0r0,-32v-51,-4,-79,-30,-78,-83r31,0v-1,34,16,53,47,55r0,-92v-42,-8,-73,-25,-73,-68v0,-42,31,-68,73,-69r0,-25r19,0r0,25v43,4,71,23,72,66r-31,0v-3,-23,-17,-38,-41,-39r0,82v49,11,79,23,79,73"},"%":{"d":"229,-99v-19,0,-36,16,-36,36v0,20,16,37,36,37v19,0,36,-18,36,-37v0,-19,-17,-36,-36,-36xm229,0v-34,0,-62,-29,-62,-63v0,-33,29,-62,62,-62v34,0,63,29,63,62v0,33,-29,63,-63,63xm75,-218v-20,0,-36,16,-36,36v0,20,16,36,36,36v19,0,36,-17,36,-36v0,-19,-16,-36,-36,-36xm75,-120v-33,0,-62,-29,-62,-62v0,-34,29,-63,62,-63v33,0,62,29,62,63v0,33,-29,62,-62,62xm64,7r154,-259r22,0r-154,259r-22,0","w":304},"&":{"d":"114,-240v-48,0,-33,62,-4,80v19,-13,34,-24,35,-50v1,-18,-13,-31,-31,-30xm53,-71v-2,57,81,58,105,17r-61,-74v-25,15,-42,26,-44,57xm19,-69v0,-43,25,-60,61,-80v-16,-19,-28,-31,-29,-59v-1,-34,27,-58,62,-58v36,0,62,20,62,55v0,36,-22,51,-49,68r49,60v6,-11,9,-26,10,-43r31,0v0,29,-9,49,-20,68r49,58r-44,0r-25,-31v-18,22,-42,37,-79,37v-45,1,-78,-31,-78,-75","w":245},"'":{"d":"40,-252r0,97r-24,0r0,-97r24,0","w":55},"(":{"d":"67,-93v0,67,21,120,50,168r-23,0v-34,-48,-59,-96,-59,-168v0,-72,25,-121,59,-168r23,0v-29,49,-50,101,-50,168","w":120},")":{"d":"27,-261v75,82,75,254,0,336r-23,0v29,-49,50,-101,50,-168v0,-67,-21,-120,-50,-168r23,0","w":120},"*":{"d":"90,-167r-31,44r-24,-16r34,-43r-50,-14r9,-28r48,17r0,-52r27,0r0,52r48,-17r10,28r-51,14r35,43r-24,17","w":180},"+":{"d":"162,-215r0,95r93,0r0,25r-93,0r0,95r-25,0r0,-95r-92,0r0,-25r92,0r0,-95r25,0","w":299},",":{"d":"31,35v14,-2,18,-17,18,-35r-18,0r0,-39r36,0v2,43,2,86,-36,92r0,-18","w":98},"-":{"d":"13,-81r0,-29r87,0r0,29r-87,0","w":112,"k":{"Y":26,"X":13,"W":20,"V":20,"T":13}},".":{"d":"31,0r0,-39r36,0r0,39r-36,0","w":98},"\/":{"d":"0,33r86,-299r23,0r-88,299r-21,0","w":108},"0":{"d":"99,-222v-46,0,-52,43,-52,100v0,58,6,100,52,100v45,0,51,-43,51,-100v0,-57,-5,-100,-51,-100xm99,7v-64,0,-87,-55,-87,-129v0,-74,22,-130,87,-130v64,0,86,56,86,130v0,73,-22,129,-86,129"},"1":{"d":"34,-203v40,0,63,-13,66,-49r25,0r0,252r-33,0r0,-178r-58,0r0,-25"},"2":{"d":"100,-252v66,-3,104,66,69,120v-27,41,-108,49,-122,101r135,0r0,31r-171,0v0,-72,49,-95,101,-124v22,-11,35,-26,36,-54v1,-27,-21,-45,-49,-44v-32,1,-52,25,-50,61r-32,0v-2,-56,30,-89,83,-91"},"3":{"d":"92,7v-51,0,-84,-33,-84,-85r33,0v1,34,19,55,54,55v32,0,53,-18,53,-49v0,-36,-31,-50,-71,-44r0,-28v37,1,63,-4,62,-39v0,-26,-18,-39,-45,-39v-33,0,-48,19,-48,53v-10,-2,-26,3,-32,-2v-1,-48,30,-81,78,-81v48,0,81,23,81,68v0,26,-12,42,-31,50v25,9,40,29,40,62v0,50,-39,79,-90,79"},"4":{"d":"39,-91r79,0r0,-112xm118,0r0,-62r-109,0r0,-32r109,-151r33,0r0,154r36,0r0,29r-36,0r0,62r-33,0"},"5":{"d":"184,-81v0,77,-94,114,-148,68v-15,-13,-24,-30,-26,-52r33,0v3,25,22,41,50,41v33,0,53,-22,56,-55v4,-58,-77,-73,-103,-33r-29,0r20,-133r133,0r0,30r-110,0r-10,67v49,-39,134,-3,134,67"},"6":{"d":"102,-21v31,0,50,-22,50,-55v0,-31,-19,-54,-49,-54v-32,0,-52,22,-52,54v0,32,19,55,51,55xm12,-111v0,-79,27,-139,95,-141v47,-1,75,26,78,70r-33,0v1,-46,-67,-54,-87,-18v-9,16,-15,38,-17,68v40,-53,139,-23,139,55v0,50,-36,85,-85,84v-63,-1,-90,-48,-90,-118"},"7":{"d":"186,-215v-52,57,-89,125,-101,215r-36,0v12,-89,50,-155,102,-212r-137,0r0,-33r172,0r0,30"},"8":{"d":"99,-118v-31,0,-52,17,-52,46v0,30,20,49,52,49v31,0,51,-19,51,-49v0,-29,-20,-46,-51,-46xm99,-223v-27,0,-44,14,-44,39v0,25,19,39,44,39v24,0,43,-15,43,-39v1,-25,-17,-39,-43,-39xm13,-72v0,-32,15,-54,41,-63v-62,-25,-27,-129,45,-117v72,-11,106,92,44,117v26,9,42,30,42,63v0,50,-36,79,-86,79v-51,0,-86,-29,-86,-79"},"9":{"d":"95,-223v-31,0,-50,23,-50,55v0,30,19,53,49,53v33,0,53,-20,53,-53v0,-33,-20,-55,-52,-55xm186,-134v0,79,-26,141,-96,141v-45,0,-77,-26,-77,-69r33,0v-2,45,67,52,87,18v9,-16,15,-38,17,-69v-39,54,-140,24,-140,-55v0,-50,36,-84,85,-84v63,2,91,49,91,118"},":":{"d":"35,-149r0,-39r37,0r0,39r-37,0xm35,0r0,-39r37,0r0,39r-37,0","w":106},";":{"d":"35,-149r0,-39r37,0r0,39r-37,0xm35,35v15,-2,19,-17,18,-35r-18,0r0,-39r37,0v2,44,2,85,-37,92r0,-18","w":106},"<":{"d":"253,-177r-170,70r170,69r0,27r-207,-85r0,-23r207,-85r0,27","w":299},"=":{"d":"255,-85r0,25r-210,0r0,-25r210,0xm255,-155r0,25r-210,0r0,-25r210,0","w":299},">":{"d":"253,-119r0,23r-207,85r0,-27r171,-69r-171,-70r0,-27","w":299},"?":{"d":"94,-266v70,0,96,84,48,126v-20,18,-41,32,-38,70r-31,1v-10,-65,61,-72,61,-129v0,-24,-18,-39,-42,-39v-34,1,-47,22,-48,57r-31,0v-2,-55,28,-86,81,-86xm72,0r0,-38r35,0r0,38r-35,0","w":188},"@":{"d":"44,-91v-7,126,165,150,246,89r10,14v-30,23,-69,40,-117,40v-96,0,-164,-49,-164,-144v0,-105,72,-166,177,-166v83,0,146,42,146,121v0,67,-35,112,-99,116v-23,1,-37,-8,-36,-31v-19,48,-108,40,-108,-27v0,-51,34,-98,84,-97v23,0,36,9,43,26r10,-20r23,0r-27,111v0,11,5,19,17,17v43,-6,66,-45,67,-92v2,-63,-54,-104,-121,-102v-93,2,-146,57,-151,145xm127,-78v0,38,40,48,64,26v18,-17,21,-47,29,-73v-3,-18,-14,-33,-35,-32v-35,0,-58,40,-58,79","w":360},"A":{"d":"74,-108r81,0r-41,-114xm-1,0r96,-259r39,0r96,259r-38,0r-27,-77r-102,0r-28,77r-36,0","w":229,"k":{"y":5,"w":5,"v":5,"Y":21,"W":6,"V":6,"U":6,"T":13,";":-7,":":-7,".":-7,",":-7}},"B":{"d":"225,-77v0,49,-37,78,-88,77r-109,0r0,-259v79,3,187,-19,185,63v-1,29,-14,47,-37,56v30,6,49,28,49,63xm178,-191v0,-51,-67,-36,-115,-38r0,79v50,-2,115,12,115,-41xm189,-78v0,-57,-72,-41,-126,-43r0,90v56,-1,126,12,126,-47","w":238,"k":{"Y":13,"W":6,"V":6,"S":-5,"O":-5,"G":-5,"C":-5,"-":-7}},"C":{"d":"135,-24v42,0,73,-30,74,-72r34,0v-2,62,-46,104,-110,103v-76,0,-116,-59,-116,-140v0,-109,110,-170,192,-110v20,14,29,36,32,62r-34,0v-7,-34,-31,-54,-72,-53v-57,1,-82,43,-82,105v0,58,29,104,82,105","w":256,"k":{"S":-7,";":-7,":":-7,"-":-8}},"D":{"d":"202,-131v0,-59,-24,-98,-79,-98r-60,0r0,197r60,0v57,0,79,-39,79,-99xm238,-133v1,79,-38,132,-113,133r-97,0r0,-259r98,0v75,-1,112,48,112,126","w":254,"k":{"Y":6,"W":-3,"V":3,"A":3,".":13,"-":-7,",":13}},"E":{"d":"28,0r0,-259r184,0r0,32r-149,0r0,78r138,0r0,30r-138,0r0,87r152,0r0,32r-187,0","w":230,"k":{".":-5,"-":6,",":-5}},"F":{"d":"28,0r0,-259r174,0r0,33r-139,0r0,77r121,0r0,32r-121,0r0,117r-35,0","w":209,"k":{"u":8,"r":6,"o":8,"e":8,"a":8,"T":-7,"A":15,";":13,":":13,".":55,"-":6,",":55}},"G":{"d":"139,-25v49,1,84,-34,81,-86r-81,0r0,-29r113,0r0,140r-23,0r-8,-35v-19,26,-45,42,-87,42v-72,1,-117,-59,-117,-136v0,-112,113,-174,197,-114v20,14,30,35,34,62r-35,0v-6,-34,-31,-54,-71,-54v-59,0,-89,42,-89,105v0,60,29,105,86,105","w":275,"k":{"Y":5,"T":6}},"H":{"d":"28,0r0,-259r35,0r0,106r134,0r0,-106r36,0r0,259r-36,0r0,-121r-134,0r0,121r-35,0","w":260},"I":{"d":"28,0r0,-259r36,0r0,259r-36,0","w":92},"J":{"d":"82,7v-55,0,-79,-31,-75,-91r34,0v-4,35,6,61,40,60v35,-1,40,-22,40,-62r0,-173r36,0r0,187v-1,52,-22,79,-75,79","w":181,"k":{".":6,",":6}},"K":{"d":"28,0r0,-259r35,0r0,125r124,-125r47,0r-106,104r109,155r-44,0r-90,-130r-40,39r0,91r-35,0","w":229,"k":{"y":10,"u":6,"o":6,"e":6,"Y":16,"W":6,"U":13,"O":10,"C":10,"A":3,".":-7,"-":23,",":-7}},"L":{"d":"28,0r0,-259r35,0r0,226r129,0r0,33r-164,0","w":192,"k":{"y":6,"Y":38,"W":11,"V":24,"U":6,"T":29,"O":13,".":-10,"-":29,",":-10}},"M":{"d":"60,-221r0,221r-32,0r0,-259r50,0r70,219r73,-219r50,0r0,259r-34,0r0,-221r-73,221r-33,0","w":298},"N":{"d":"27,0r0,-259r39,0r133,210r0,-210r33,0r0,259r-38,0r-129,-200v-2,-3,-3,-6,-4,-10r0,210r-34,0","w":259,"k":{";":6,":":6}},"O":{"d":"139,-235v-58,0,-86,45,-86,106v0,61,28,106,86,106v58,0,86,-44,86,-106v0,-62,-28,-106,-86,-106xm139,7v-78,0,-122,-54,-122,-136v0,-82,44,-136,122,-137v79,0,123,55,123,137v0,82,-45,136,-123,136","w":278,"k":{"Y":6,"X":6,"V":5,".":13,"-":-7,",":13}},"P":{"d":"177,-184v0,-56,-63,-41,-114,-43r0,87v52,-2,114,13,114,-44xm213,-184v2,75,-68,79,-150,75r0,109r-35,0r0,-259r95,0v60,-3,89,22,90,75","w":226,"k":{"u":-3,"s":8,"o":8,"e":8,"a":10,"Y":3,"W":-3,"A":24,";":5,":":5,".":81,"-":31,",":81}},"Q":{"d":"53,-129v0,75,54,128,124,97r-28,-23r17,-22r35,28v45,-55,29,-186,-62,-186v-58,0,-86,45,-86,106xm262,-129v0,44,-14,77,-34,102r31,26r-17,22r-37,-30v-89,46,-188,-11,-188,-120v0,-82,44,-137,122,-137v78,0,124,55,123,137","w":278,"k":{".":10,"-":-7,",":10}},"R":{"d":"182,-187v0,-56,-68,-39,-120,-42r0,88v54,-2,120,12,120,-46xm218,-187v-2,30,-14,49,-36,59v49,6,16,89,45,121r0,7r-41,0v-12,-18,-2,-89,-20,-103v-13,-11,-73,-7,-103,-8r0,111r-35,0r0,-259v87,2,195,-19,190,72","w":239,"k":{"y":-3}},"S":{"d":"217,-75v8,82,-121,105,-173,58v-18,-16,-27,-38,-28,-68r34,0v-1,39,28,61,67,61v36,0,61,-15,65,-47v5,-42,-122,-51,-141,-74v-43,-52,4,-121,76,-121v56,0,91,30,92,83r-33,0v6,-65,-112,-74,-118,-12v-2,24,44,40,82,49v52,12,72,22,77,71","w":232,"k":{"S":-7,"-":-7}},"T":{"d":"85,0r0,-227r-82,0r0,-32r199,0r0,32r-82,0r0,227r-35,0","w":205,"k":{"y":34,"w":34,"u":34,"s":40,"r":26,"o":43,"i":5,"e":43,"c":43,"a":43,"T":-8,"C":5,"A":13,";":36,":":36,".":51,"-":51,",":51}},"U":{"d":"123,7v-66,0,-96,-38,-97,-105r0,-161r36,0r0,161v0,46,19,71,65,71v103,0,57,-142,67,-232r35,0r0,161v0,69,-37,105,-106,105","w":255,"k":{"A":6,";":5,":":5,".":13,",":13}},"V":{"d":"92,0r-92,-259r36,0r75,217r72,-217r37,0r-91,259r-37,0","w":219,"k":{"u":8,"o":15,"e":15,"a":15,"A":6,";":11,":":11,".":46,"-":26,",":46}},"W":{"d":"69,0r-67,-259r34,0r53,207r55,-207r36,0r57,206r54,-206r33,0r-69,259r-34,0r-59,-213r-57,213r-36,0","w":325,"k":{"y":-3,"u":-3,"o":8,"i":-5,"e":8,"a":8,"A":6,";":6,":":6,".":29,"-":13,",":29}},"X":{"d":"0,0r89,-133r-84,-126r43,0r62,96r62,-96r41,0r-84,126r89,133r-43,0r-67,-105r-65,105r-43,0","w":217,"k":{"e":10,"O":6,"C":6,";":6,":":6,".":-7,"-":29,",":-7}},"Y":{"d":"128,0r-35,0r0,-104r-96,-155r44,0r69,123r69,-123r41,0r-92,153r0,106","w":217,"k":{"u":26,"o":33,"e":33,"a":33,"O":6,"C":6,"A":21,";":33,":":33,".":60,"-":51,",":60}},"Z":{"d":"10,0r0,-29r158,-199r-147,0r0,-31r188,0r0,33r-155,194r155,0r0,32r-199,0","w":215,"k":{";":-5,":":-5,".":-7,"-":16,",":-7}},"[":{"d":"44,72r0,-331r70,0r0,25r-39,0r0,281r39,0r0,25r-70,0","w":127},"\\":{"d":"86,33r-86,-299r21,0r88,299r-23,0","w":108},"]":{"d":"84,-259r0,331r-70,0r0,-25r38,0r0,-281r-38,0r0,-25r70,0","w":127},"^":{"d":"196,-256r90,98r-32,0r-74,-74r-75,74r-31,0r89,-98r33,0","w":360},"_":{"d":"180,60r0,25r-180,0r0,-25r180,0","w":180},"`":{"d":"115,-214r-21,0r-50,-61r35,0","w":180},"a":{"d":"190,1v-25,8,-52,1,-50,-26v-29,42,-127,45,-127,-26v0,-60,69,-58,116,-66v23,-17,0,-57,-34,-49v-29,-1,-43,10,-44,35v-9,-2,-25,3,-30,-2v0,-41,32,-62,76,-61v46,1,72,14,73,58r0,94v-1,17,5,21,20,18r0,25xm79,-22v42,1,65,-26,58,-74v-21,16,-95,1,-92,45v1,19,14,29,34,29","w":195},"b":{"d":"111,-166v-41,0,-56,28,-56,71v-1,42,16,73,55,73v36,-1,56,-30,56,-69v0,-43,-16,-75,-55,-75xm117,6v-30,0,-47,-12,-61,-30r0,24r-31,0r0,-259r31,0r0,97v13,-20,31,-32,61,-32v53,0,83,43,83,100v0,56,-30,100,-83,100","w":213},"c":{"d":"14,-94v0,-86,84,-127,144,-82v15,11,21,29,22,50r-31,0v-3,-26,-19,-40,-48,-40v-37,0,-54,29,-54,71v0,41,16,70,52,72v31,1,48,-17,51,-45r31,0v-3,45,-35,74,-84,74v-54,0,-83,-42,-83,-100","w":188},"d":{"d":"103,-22v39,0,56,-32,56,-73v0,-43,-15,-71,-56,-71v-40,0,-56,32,-56,75v-1,39,20,68,56,69xm97,-194v29,0,48,11,61,29r0,-94r31,0r0,259r-31,0r0,-24v-14,18,-33,29,-61,30v-53,0,-83,-44,-83,-100v0,-57,30,-100,83,-100","w":213},"e":{"d":"152,-111v6,-50,-57,-71,-88,-41v-9,9,-14,23,-16,41r104,0xm48,-85v-10,68,93,84,103,24r31,0v-5,40,-38,67,-82,67v-55,1,-85,-42,-85,-98v0,-59,29,-102,85,-102v60,-1,91,45,84,109r-136,0","w":196},"f":{"d":"97,-232v-30,-9,-37,11,-34,44r34,0r0,25r-34,0r0,163r-32,0r0,-163r-31,0r0,-25r31,0v-6,-52,13,-87,66,-72r0,28","w":95,"k":{".":6,"-":6,",":6}},"g":{"d":"160,-93v0,-44,-16,-73,-56,-73v-38,0,-56,30,-56,72v0,41,18,72,56,72v41,-1,56,-26,56,-71xm103,52v48,0,60,-26,56,-75v-13,18,-30,29,-59,29v-53,0,-85,-44,-85,-101v0,-86,97,-132,144,-70r0,-23r31,0r0,184v-1,59,-27,82,-88,82v-45,0,-79,-16,-79,-56v10,1,23,-2,31,1v1,24,20,29,49,29","w":214},"h":{"d":"115,-193v93,-7,60,110,66,193r-32,0r0,-116v0,-35,-7,-48,-37,-49v-33,-1,-56,22,-56,54r0,111r-32,0r0,-259r32,0r0,97v10,-20,31,-29,59,-31","w":204},"i":{"d":"24,-223r0,-36r32,0r0,36r-32,0xm24,0r0,-188r32,0r0,188r-32,0","w":79},"j":{"d":"26,-222r0,-37r32,0r0,37r-32,0xm58,28v1,43,-20,55,-62,50r0,-29v22,1,30,0,30,-25r0,-212r32,0r0,216","w":82},"k":{"d":"24,0r0,-259r32,0r0,155r85,-84r40,0r-71,68r70,120r-36,0r-55,-98r-33,32r0,66r-32,0","w":186,"k":{"-":13}},"l":{"d":"24,0r0,-259r33,0r0,259r-33,0","w":81},"m":{"d":"54,-162v18,-38,94,-42,111,-1v32,-51,139,-37,120,50r0,113r-32,0r0,-116v0,-34,-4,-48,-34,-49v-71,-1,-43,100,-48,165r-32,0r0,-116v-1,-34,-4,-48,-35,-49v-70,-1,-43,99,-48,165r-32,0r0,-188r30,0r0,26","w":308},"n":{"d":"115,-193v93,-7,60,110,66,193r-32,0r0,-116v0,-35,-7,-47,-37,-49v-76,-4,-53,95,-56,165r-32,0r0,-188r30,0r0,27v13,-20,32,-30,61,-32","w":204},"o":{"d":"105,-166v-41,0,-58,29,-58,72v0,43,18,72,58,72v40,0,57,-29,57,-72v0,-43,-16,-72,-57,-72xm105,6v-59,1,-91,-39,-91,-100v0,-60,32,-100,90,-100v59,0,91,39,91,100v0,60,-33,100,-90,100","w":209},"p":{"d":"110,-166v-39,0,-56,31,-55,73v0,43,15,71,56,71v39,0,55,-32,55,-75v0,-39,-20,-68,-56,-69xm117,6v-29,0,-48,-11,-61,-29r0,98r-31,0r0,-263r31,0r0,26v14,-20,30,-32,61,-32v53,0,83,44,83,99v0,57,-29,101,-83,101","w":213},"q":{"d":"104,-166v-36,0,-57,29,-57,69v0,44,18,75,58,75v38,0,54,-31,54,-72v1,-41,-18,-72,-55,-72xm97,-194v30,0,47,11,61,31r0,-25r31,0r0,263r-31,0r0,-100v-12,19,-31,31,-61,31v-53,0,-83,-44,-83,-101v0,-55,30,-99,83,-99","w":213},"r":{"d":"115,-158v-36,-5,-59,16,-59,53r0,105r-32,0r0,-188r31,0r0,33v9,-25,26,-38,60,-37r0,34","w":119,"k":{".":33,"-":13,",":33}},"s":{"d":"153,-90v31,44,-6,101,-66,96v-46,-4,-76,-21,-76,-67r31,0v2,26,19,39,48,39v31,0,56,-23,38,-46v-35,-24,-112,-12,-112,-72v0,-57,87,-68,124,-38v13,10,20,24,20,42r-31,0v2,-39,-81,-43,-81,-5v0,39,86,25,105,51","w":178},"t":{"d":"95,0v-35,6,-65,4,-65,-37r0,-126r-29,0r0,-25r29,0r0,-53r31,0r0,53r34,0r0,25r-34,0r0,116v-1,23,13,21,34,20r0,27","w":101,"k":{"-":3}},"u":{"d":"150,-28v-30,54,-146,42,-127,-47r0,-113r32,0r0,115v0,35,8,49,39,50v75,3,51,-96,55,-165r32,0r0,188r-31,0r0,-28","w":204},"v":{"d":"70,0r-70,-188r34,0r53,151r51,-151r34,0r-69,188r-33,0","w":173,"k":{".":26,",":26}},"w":{"d":"59,0r-57,-188r33,0r40,144r37,-144r37,0r37,144r41,-144r33,0r-58,188r-32,0r-39,-145r-40,145r-32,0","w":262,"k":{".":23,",":23}},"x":{"d":"0,0r66,-97r-63,-91r37,0r46,67r46,-67r36,0r-63,91r67,97r-38,0r-49,-73r-48,73r-37,0","w":172,"k":{"-":13}},"y":{"d":"99,29v-12,41,-30,55,-74,47r0,-30v17,6,37,2,42,-13r8,-22r-71,-199r35,0r52,152r52,-152r36,0","w":182,"k":{".":26,"-":5,",":26}},"z":{"d":"161,-188r0,25r-110,135r115,0r0,28r-157,0r0,-26r111,-134r-105,0r0,-28r146,0","w":173},"{":{"d":"79,-197v-3,-55,22,-63,73,-63r0,27v-84,-17,-3,133,-78,140v42,5,36,52,36,100v0,35,9,40,42,40r0,26v-52,1,-76,-8,-73,-63v2,-48,5,-101,-49,-90r0,-27v52,10,51,-39,49,-90","w":180},"|":{"d":"103,-275r0,360r-26,0r0,-360r26,0","w":180},"}":{"d":"28,-260v50,0,76,8,73,63v-2,48,-4,101,50,90r0,27v-52,-10,-52,39,-50,90v3,55,-21,64,-73,63r0,-26v85,17,5,-132,78,-140v-41,-6,-35,-52,-35,-100v0,-34,-10,-40,-43,-40r0,-27","w":180},"~":{"d":"269,-108v-33,26,-76,32,-122,12v-51,-22,-80,-8,-116,17r0,-28v20,-13,40,-24,68,-25v32,-1,75,24,102,24v29,0,46,-11,68,-27r0,27","w":299},"\u00f3":{"d":"80,-214r35,-61r36,0r-50,61r-21,0xm105,-166v-41,0,-58,29,-58,72v0,43,18,72,58,72v40,0,57,-29,57,-72v0,-43,-16,-72,-57,-72xm105,6v-59,1,-91,-39,-91,-100v0,-60,32,-100,90,-100v59,0,91,39,91,100v0,60,-33,100,-90,100","w":209},"\u00ab":{"d":"143,-155r0,30r-38,30r38,29r0,31r-57,-43r0,-35xm71,-155r0,30r-38,30r38,29r0,31r-57,-43r0,-35","w":159},"\u00bb":{"d":"89,-35r0,-31r38,-29r-38,-29r0,-31r57,42r0,35xm17,-35r0,-31r38,-29r-38,-29r0,-31r57,42r0,35","w":159},"\u00d3":{"d":"114,-282r36,-61r35,0r-50,61r-21,0xm139,-235v-58,0,-86,45,-86,106v0,61,28,106,86,106v58,0,86,-44,86,-106v0,-62,-28,-106,-86,-106xm139,7v-78,0,-122,-54,-122,-136v0,-82,44,-136,122,-137v79,0,123,55,123,137v0,82,-45,136,-123,136","w":278},"\u0141":{"d":"29,0r0,-104r-25,19r-13,-18r38,-30r0,-126r36,0r0,105r63,-48r14,19r-77,58r0,92r129,0r0,33r-165,0","w":194,"k":{"y":6,"Y":38,"W":11,"V":24,"U":6,"T":29,"O":13,".":-10,"-":29}},"\u0142":{"d":"25,0r0,-110r-19,15r-12,-16r31,-24r0,-124r33,0r0,105r19,-15r13,17r-32,24r0,128r-33,0","w":83},"\u0106":{"d":"109,-282r36,-61r35,0r-50,61r-21,0xm135,-24v42,0,73,-30,74,-72r34,0v-2,62,-46,104,-110,103v-76,0,-116,-59,-116,-140v0,-109,110,-170,192,-110v20,14,29,36,32,62r-34,0v-7,-34,-31,-54,-72,-53v-57,1,-82,43,-82,105v0,58,29,104,82,105","w":256},"\u0107":{"d":"75,-214r36,-61r35,0r-50,61r-21,0xm14,-94v0,-86,84,-127,144,-82v15,11,21,29,22,50r-31,0v-3,-26,-19,-40,-48,-40v-37,0,-54,29,-54,71v0,41,16,70,52,72v31,1,48,-17,51,-45r31,0v-3,45,-35,74,-84,74v-54,0,-83,-42,-83,-100","w":188},"\u00a0":{"w":98}}});
;/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * © 1989, 1999, 2000 Adobe Systems Incorporated. All rights reserved.
 * 
 * Trademark:
 * Trajan is either a registered trademark or a trademark of Adobe Systems
 * Incorporated in the United States and/or other countries.
 * 
 * Full name:
 * TrajanPro-Regular
 * 
 * Designer:
 * Carol Twombly
 * 
 * Vendor URL:
 * http://www.adobe.com/type
 * 
 * License information:
 * http://www.adobe.com/type/legal.html
 */
Cufon.registerFont({"w":205,"face":{"font-family":"trajan pro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 2 5 2 5 5 6 2 3 1","ascent":"270","descent":"-90","x-height":"5","cap-height":"1","bbox":"-11 -339 546 91","underline-thickness":"18","underline-position":"-18","stemh":"13","stemv":"29","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":117},"!":{"d":"39,-245v5,-14,19,-26,34,-31v6,6,-2,20,-4,51v-1,15,-3,159,-12,170v-4,0,-5,-5,-6,-19r-5,-96v0,-8,-4,-62,-7,-75xm58,6v-25,-1,-24,-35,0,-37v10,0,18,8,18,18v0,11,-7,19,-18,19","w":115},"\"":{"d":"36,-187v-6,-18,-13,-85,-15,-80v0,-5,6,-5,15,-5v9,0,15,0,15,5xm81,-187v-6,-18,-13,-85,-15,-80v0,-5,6,-5,15,-5v9,0,15,0,15,5","w":117},"#":{"d":"194,-166r-43,0r-9,59r41,0r0,21r-44,0r-13,86r-13,0r14,-86r-59,0r-14,86r-12,0r13,-86r-43,0r0,-21r47,0r9,-59r-45,0r0,-20r48,0r11,-85r13,0r-11,85r57,0r12,-85r12,0r-11,85r40,0r0,20xm138,-166r-57,0r-9,59r58,0"},"$":{"d":"126,-273v21,2,39,-1,43,10v-1,10,3,43,-4,46v-7,-8,-1,-24,-13,-34v-6,-5,-18,-10,-27,-10r-11,107v34,22,63,42,63,82v0,54,-51,72,-76,72v-3,12,3,33,-13,34v-7,-6,1,-24,0,-34v-11,-1,-58,-2,-57,-22v2,-26,1,-41,8,-49v5,11,-1,31,11,41v9,11,25,16,39,16r11,-115v-40,-28,-61,-47,-61,-79v0,-44,43,-65,74,-65v2,-13,-1,-40,16,-33xm103,-163r9,-98v-13,0,-49,7,-49,43v0,22,14,37,40,55xm112,-121r-10,107v31,-1,49,-21,49,-50v0,-24,-15,-41,-39,-57"},"%":{"d":"233,0v-84,-3,-79,-130,2,-132v83,3,79,130,-2,132xm234,-10v28,0,39,-25,39,-54v0,-28,-13,-58,-39,-58v-27,0,-39,25,-39,54v0,28,13,58,39,58xm112,-3v-3,8,-14,4,-21,7v-4,1,-5,-2,-4,-4v36,-81,111,-256,114,-264v-23,1,-79,6,-85,6v40,29,29,122,-38,120v-85,-4,-78,-132,4,-132v64,0,128,-10,139,-7xm79,-148v28,0,38,-24,38,-53v0,-28,-13,-59,-39,-59v-27,0,-38,25,-38,54v0,28,13,58,39,58","w":313},"&":{"d":"214,-54v40,34,54,40,98,53v-53,4,-67,10,-117,-32v-8,8,-37,39,-90,39v-118,0,-101,-134,-32,-166v-40,-52,-12,-116,60,-116v22,0,44,2,48,18v-1,15,2,43,-6,47v-3,-25,-17,-54,-49,-53v-22,0,-46,13,-46,47v0,47,89,122,125,157v10,-14,18,-38,18,-60v0,-16,-17,-23,-29,-26v9,-3,48,-6,56,7v0,29,-20,66,-36,85xm186,-40v-46,-40,-74,-66,-108,-111v-57,29,-30,138,40,138v33,0,56,-14,68,-27","w":279},"\u2019":{"d":"19,-206v-3,-12,15,-34,12,-58v2,-17,-15,-24,-8,-31v10,2,33,2,32,16v-2,27,-17,62,-36,73","w":72,"k":{"m":20,"\u2019":23,"\u201d":23,"s":13,"\u015b":13,"t":-6,"v":-23}},"(":{"d":"103,-265v-18,23,-54,72,-54,150v0,77,23,119,54,157v0,1,-2,3,-3,3v-32,-22,-78,-77,-78,-155v0,-80,51,-142,79,-158v1,0,2,2,2,3","w":129,"k":{"v":-8,"w":-3,"y":-12}},")":{"d":"26,42v20,-22,53,-72,54,-150v1,-77,-24,-118,-53,-157v0,-1,1,-3,2,-3v32,22,78,76,78,154v0,81,-51,141,-78,159v-1,0,-3,-2,-3,-3","w":129},"*":{"d":"59,-239v0,-10,-8,-33,-10,-41v0,-3,24,-18,26,-7v3,9,-12,37,-8,48v20,-6,30,-16,37,-22v2,0,17,24,6,26v-1,1,-35,0,-44,2v4,13,28,26,35,31v0,6,-14,18,-19,18v-11,-5,-14,-39,-23,-43v-3,7,-15,27,-16,38v-5,5,-29,0,-27,-3v1,-13,42,-31,38,-42v-11,-2,-32,-3,-38,-1v-2,0,-8,-26,-1,-27v14,-1,36,23,44,23","w":126},"+":{"d":"168,-87r-66,0r0,67r-19,0r0,-67r-68,0r0,-19r67,0r0,-67r19,0r0,67r67,0r0,19","w":183},",":{"d":"31,34v-5,-9,13,-25,9,-33v0,-17,-12,-22,-12,-26v0,-10,13,-19,22,-19v26,18,3,59,-19,78","w":90},"-":{"d":"128,-108v-18,14,-93,11,-113,25v-3,-6,-2,-30,11,-29v33,2,77,-5,102,4","w":140},".":{"d":"45,0v-27,-1,-27,-38,0,-40v11,0,20,7,20,19v0,12,-8,21,-20,21","w":90},"\/":{"d":"24,4v-4,3,-20,-3,-15,-12r166,-266v5,-4,16,4,16,9","w":198},"0":{"d":"15,-127v0,-85,32,-149,90,-149v66,0,85,86,85,133v0,83,-31,149,-90,149v-56,0,-85,-69,-85,-133xm98,-263v-73,3,-73,257,9,256v77,-3,69,-260,-9,-256"},"1":{"d":"40,-222v24,-20,52,-38,81,-54v11,24,-6,197,3,250v-4,23,28,18,42,25v-53,3,-63,2,-120,0v9,-9,47,3,47,-25r1,-200v-3,-33,-42,17,-54,4"},"2":{"d":"186,-63v2,16,1,63,-32,63r-136,0v-9,-1,-4,-10,1,-14v72,-64,126,-114,126,-183v0,-51,-34,-66,-58,-66v-35,0,-50,25,-54,54v-7,-4,-3,-33,-5,-49v10,-15,35,-18,67,-18v54,0,81,35,81,73v0,75,-80,141,-125,179v-2,1,-1,2,1,2v51,-2,126,10,130,-36v1,-4,2,-5,4,-5"},"3":{"d":"74,6v-20,0,-50,-2,-50,-19v0,-21,-1,-42,6,-50v7,28,14,54,56,54v36,0,65,-21,65,-64v0,-48,-43,-65,-66,-70v-7,-1,-10,-2,-10,-5v23,-9,64,-18,66,-67v0,-15,-10,-48,-52,-48v-31,0,-43,21,-48,47v-5,-8,-4,-32,-5,-40v7,-17,32,-20,63,-20v59,0,71,36,71,54v0,37,-38,59,-48,66v23,5,59,28,59,70v0,50,-43,92,-107,92"},"4":{"d":"150,-81v0,30,-10,84,32,77v2,0,3,2,3,3v-41,3,-55,2,-99,0v8,-6,40,-1,36,-25v1,-16,0,-43,0,-55r-109,0v-10,1,-9,-8,-5,-12v2,-3,119,-161,131,-177v3,-6,11,-10,11,0r0,170v12,0,38,0,42,-4v5,5,-1,24,-9,23r-33,0xm122,-100r0,-128v-5,9,-85,119,-92,128r92,0"},"5":{"d":"28,-10v0,-14,-3,-43,4,-52v2,0,3,2,3,6v0,39,24,46,50,46v30,0,63,-20,63,-70v0,-58,-63,-86,-91,-87v-7,0,-10,-3,-10,-7r8,-91v0,-4,3,-5,7,-5v37,-2,79,2,113,-3v7,3,2,31,-5,53v-5,-14,-1,-28,-34,-27r-68,0r-5,55v46,7,113,35,113,99v0,46,-35,99,-108,99v-14,0,-40,-2,-40,-16"},"6":{"d":"18,-98v1,-72,56,-153,132,-178v6,3,2,8,-4,10v-46,26,-97,83,-97,168v0,42,19,90,60,90v29,0,52,-22,52,-62v0,-65,-39,-88,-86,-70v-4,-13,21,-19,43,-19v50,0,72,41,72,73v0,55,-34,92,-88,92v-50,0,-84,-38,-84,-104"},"7":{"d":"171,-247v-54,3,-131,-16,-136,36v0,3,-1,5,-3,5v-4,-14,1,-63,7,-68v32,7,107,3,150,4v5,0,7,2,7,4v-28,55,-96,186,-96,250v0,6,-33,29,-39,19v13,-67,53,-144,110,-250"},"8":{"d":"19,-64v0,-40,31,-67,64,-80v-66,-29,-73,-132,26,-132v37,0,66,20,66,55v0,38,-31,59,-51,69v24,12,62,35,62,79v0,42,-34,79,-85,79v-45,0,-82,-26,-82,-70xm104,-8v33,0,55,-25,55,-57v0,-39,-32,-56,-64,-73v-27,13,-48,35,-48,71v0,32,24,59,57,59xm105,-264v-32,0,-47,25,-47,45v0,30,24,46,54,62v14,-8,38,-23,38,-60v0,-27,-17,-47,-45,-47"},"9":{"d":"133,-145v5,16,-31,22,-43,22v-51,0,-72,-39,-72,-69v0,-50,36,-84,86,-84v51,0,82,43,82,98v0,104,-79,165,-130,187v-4,-1,-4,-8,1,-9v42,-23,97,-83,97,-168v0,-63,-27,-95,-59,-95v-32,0,-49,27,-49,55v0,78,52,81,87,63"},":":{"d":"45,-11v-27,-1,-27,-38,0,-39v11,0,20,6,20,18v0,12,-8,21,-20,21xm45,-132v-27,-1,-27,-38,0,-40v11,0,20,7,20,19v0,12,-8,21,-20,21","w":90},";":{"d":"33,34v-5,-9,13,-25,9,-33v0,-17,-12,-22,-12,-26v0,-10,13,-19,22,-19v24,20,3,60,-19,78xm45,-132v-27,-1,-27,-38,0,-40v11,0,20,7,20,19v0,12,-8,21,-20,21","w":90},"<":{"d":"9,-85r0,-19r153,-71r0,19r-133,61r133,62r0,19","w":183},"=":{"d":"168,-118r-153,0r0,-19r153,0r0,19xm168,-55r-153,0r0,-18r153,0r0,18","w":183},">":{"d":"168,-85r-153,71r0,-19r134,-62r-134,-61r0,-19r153,71r0,19","w":183},"?":{"d":"58,-94v12,-38,72,-82,64,-123v0,-18,-9,-47,-42,-47v-38,0,-45,27,-50,54v-8,-5,-3,-28,-5,-46v9,-15,33,-20,64,-20v48,0,65,30,65,56v0,47,-60,85,-77,132v-3,8,16,23,7,28v-8,-2,-29,-25,-26,-34xm81,6v-25,-1,-24,-35,0,-37v10,0,18,8,18,18v0,11,-7,19,-18,19","w":175},"@":{"d":"209,-35v-26,0,-28,-25,-28,-55v-24,36,-51,54,-66,54v-10,0,-19,-16,-19,-35v0,-51,33,-77,43,-85v22,-17,44,-25,67,-16v3,-4,13,-14,20,-16v9,5,-7,14,-10,33v-5,30,-28,105,13,105v29,0,57,-35,57,-90v0,-52,-35,-94,-103,-94v-84,0,-135,66,-135,152v0,68,43,108,103,108v48,0,71,-14,95,-33v6,-5,8,-5,9,-3v-15,27,-59,49,-112,49v-64,0,-119,-37,-119,-118v0,-87,75,-164,162,-164v154,0,145,208,23,208xm196,-157v-44,-29,-76,34,-74,78v0,9,3,22,9,22v13,0,39,-30,52,-51v4,-21,6,-29,13,-49","w":326},"A":{"d":"34,-39r82,-223v8,-20,8,-20,16,-1v6,14,61,162,84,217v18,43,21,37,49,44v-8,7,-50,3,-75,0v2,-5,8,-3,5,-12v-13,-29,-21,-65,-37,-91v-26,2,-60,-4,-81,3v-9,28,-22,57,-27,88v-2,13,31,8,16,15v-24,-2,-58,4,-76,-3v22,-3,35,-12,44,-37xm85,-118r68,0v2,0,2,-2,2,-3r-34,-97v-2,-5,-4,-5,-6,0v-9,33,-26,69,-30,100","w":252,"k":{"m":-8,"\u2019":29,"\u201d":29,"s":-3,"\u015b":-3,"t":23,"v":26,"w":15,"x":-3,"y":17,"M":-9,"S":-4,"\u015a":-4,"T":25,"V":29,"W":16,"X":-4,"Y":18}},"B":{"d":"62,-25v4,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v30,-8,48,-3,85,-3v101,0,79,82,39,119v27,8,62,34,62,76v0,60,-69,76,-154,76v-9,0,-33,4,-24,-4v15,1,20,-6,21,-21xm163,-199v4,-38,-33,-78,-70,-56v2,32,-3,71,2,100v2,0,9,2,22,2v36,3,43,-18,46,-46xm188,-60v0,-39,-35,-95,-93,-84v-5,24,2,68,-2,101v-4,32,25,34,44,34v19,0,51,-10,51,-51","w":247,"k":{"v":14,"w":6,"y":12,"V":13,"W":5,"Y":11,"a":2,"\u0105":2,"b":6,"d":6,"e":6,"f":6,"h":6,"i":6,"k":6,"l":6,"n":6,"p":6,"r":6,"\u0142":6,"\u0119":6,"\u0144":6,"A":2,"\u0104":2,"B":5,"D":5,"E":5,"F":5,"H":5,"I":5,"K":5,"L":5,"N":5,"P":5,"R":5,"\u0141":5,"\u0118":5,"\u0143":5}},"C":{"d":"171,-262v-94,0,-116,49,-116,120v0,69,53,132,130,132v41,0,73,-16,76,-49v1,-6,7,-7,6,0v-1,7,-1,55,-17,57v-14,6,-42,8,-65,8v-141,0,-212,-137,-122,-244v33,-39,133,-44,199,-28v13,2,-3,50,2,61v0,5,-1,7,-3,7v-3,0,-3,-2,-3,-7v-2,-44,-36,-57,-87,-57","w":289,"k":{"t":2,"y":-6,"T":2,"Y":-5,"c":4,"g":4,"o":4,"q":4,"\u00f3":4,"\u0107":4,"C":4,"\u0106":4,"O":4,"\u00d3":4,"Q":4}},"D":{"d":"159,4v-39,0,-87,2,-121,-6v10,-4,24,-2,24,-23v0,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v37,-7,45,-3,95,-3v36,0,101,-3,144,41v18,19,35,48,35,91v0,45,-19,81,-39,102v-15,16,-48,41,-109,41xm122,-259v-12,0,-27,-2,-27,10r0,199v2,41,5,40,65,42v68,2,117,-46,115,-119v-2,-98,-75,-135,-153,-132","w":330,"k":{"m":2,"M":2,"a":4,"\u0105":4,"b":4,"d":4,"e":4,"f":4,"h":4,"i":4,"k":4,"l":4,"n":4,"p":4,"r":4,"\u0142":4,"\u0119":4,"\u0144":4,"A":4,"\u0104":4,"B":4,"D":4,"E":4,"F":4,"H":4,"I":4,"K":4,"L":4,"N":4,"P":4,"R":4,"\u0141":4,"\u0118":4,"\u0143":4,"j":4,"J":4}},"E":{"d":"190,-48v3,15,7,54,-22,50v-42,-6,-93,4,-130,-4v10,-4,24,-2,24,-23v0,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v36,-10,107,7,149,-6v3,6,-1,39,-6,48v-2,0,-2,-2,-2,-5v7,-32,-51,-25,-78,-26v-4,29,-3,77,0,107v18,-2,75,6,80,-11v3,5,-1,44,-5,53v-2,0,-3,-1,-3,-3v10,-33,-49,-25,-71,-27v-8,20,-3,63,-3,96v0,25,7,30,42,30v31,0,50,-9,54,-36","w":219,"k":{"v":-10,"w":-12,"x":-14,"y":-10,"V":-9,"W":-11,"X":-13,"Y":-9}},"F":{"d":"172,-110v7,-34,-49,-26,-75,-27v-8,20,-1,93,-1,112v0,20,19,20,33,23v-33,8,-48,-1,-85,3v-6,1,-8,-4,-3,-5v15,1,20,-6,21,-21v4,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v38,-10,113,6,156,-6v3,6,-1,39,-6,48v-6,-13,-5,-30,-30,-30r-55,-1v-2,0,-4,1,-4,4r0,100v20,6,73,8,86,-8v1,16,-2,41,-5,54v-2,0,-3,-1,-3,-3","w":213,"k":{"y":-8,"Y":-7,"a":12,"\u0105":12,"A":11,"\u0104":11,",":36,".":36,"\u2026":36}},"G":{"d":"187,-9v18,0,48,-1,48,-21v0,-37,16,-107,-28,-99v-1,0,-3,-1,-3,-2v29,-8,46,1,81,-3v6,-1,8,4,3,5v-44,-1,-10,81,-27,119v-74,25,-124,30,-195,-22v-24,-17,-43,-58,-43,-103v-2,-96,73,-144,156,-141v43,2,60,5,88,13v0,5,-2,15,-2,51v0,11,-6,10,-6,2v0,-39,-33,-50,-92,-53v-58,-3,-118,41,-113,115v6,98,60,139,133,139","w":310},"H":{"d":"282,-244r1,219v-3,20,19,19,33,23v-33,8,-48,-1,-85,3v-6,1,-8,-4,-3,-5v15,1,20,-6,21,-21v1,-19,6,-88,0,-118r-155,2r2,116v-3,20,19,20,33,23v-33,8,-48,-1,-85,3v-6,1,-8,-4,-3,-5v15,1,20,-6,21,-21v4,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v29,-8,46,1,81,-3v6,-1,8,4,3,5v-15,0,-22,5,-22,22v1,28,-4,63,1,87r155,-2r0,-85v2,-19,-16,-20,-31,-24v30,-8,46,1,82,-3v6,-1,6,4,3,5v-15,0,-23,5,-23,22","w":345,"k":{"c":6,"g":6,"o":6,"q":6,"\u00f3":6,"\u0107":6,"C":5,"\u0106":5,"O":9,"\u00d3":9,"Q":9,"G":5}},"I":{"d":"95,-244r1,219v-3,20,19,20,33,23v-33,8,-48,-1,-85,3v-6,1,-8,-4,-3,-5v15,1,20,-6,21,-21v4,-40,1,-184,1,-219v0,-20,-12,-21,-26,-24v25,-8,44,1,77,-3v6,-1,8,4,3,5v-15,0,-22,5,-22,22","w":158,"k":{"c":6,"g":6,"o":6,"q":6,"\u00f3":6,"\u0107":6,"C":5,"\u0106":5,"O":9,"\u00d3":9,"Q":9,"G":5}},"J":{"d":"12,89v38,-36,52,-40,52,-152r-1,-181v2,-19,-15,-20,-30,-24v29,-8,46,1,81,-3v6,-1,8,4,3,5v-15,0,-22,5,-22,22v0,18,-1,125,-1,164v0,113,-14,129,-80,171v-1,0,-2,-1,-2,-2","w":149,"k":{"c":4,"g":4,"o":4,"q":4,"\u00f3":4,"\u0107":4,"O":4,"\u00d3":4}},"K":{"d":"198,-258v1,-6,-6,-8,-8,-11v15,-3,47,-2,71,0v-53,12,-103,85,-141,118v29,28,115,127,152,142v12,6,21,3,27,7v-31,9,-77,2,-95,-20v-18,-12,-90,-99,-111,-117r2,114v-2,19,17,20,31,23v-31,8,-47,-1,-82,3v-6,1,-8,-4,-3,-5v15,1,20,-6,21,-21v4,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v29,-8,46,1,80,-3v6,-1,8,4,3,5v-15,0,-22,5,-22,22r0,99v15,-19,91,-84,104,-113","w":270,"k":{"s":-2,"\u015b":-2,"S":-2,"\u015a":-2,"a":2,"\u0105":2,"A":2,"\u0104":2,"c":-1,"g":-1,"o":-1,"q":-1,"\u00f3":-1,"\u0107":-1,"C":-1,"\u0106":-1,"O":-1,"\u00d3":-1,"Q":-1,"G":-1}},"L":{"d":"202,-49v1,15,7,55,-26,51v-45,-5,-99,4,-138,-4v10,-4,24,-2,24,-23v0,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v30,-8,48,1,85,-3v6,-1,8,4,3,5v-16,0,-26,4,-26,22v0,9,-1,107,-1,141v0,84,-17,88,51,91v30,1,51,-8,53,-32v0,-3,2,-5,4,-5","w":213,"k":{"m":2,"\u2019":14,"\u201d":14,"t":24,"v":18,"w":10,"y":14,"M":2,"T":22,"V":16,"W":9,"Y":13,"a":-4,"\u0105":-4,"A":-4,"\u0104":-4,"c":9,"g":9,"o":9,"q":9,"\u00f3":9,"\u0107":9,"C":9,"\u0106":9,"O":9,"\u00d3":9,"G":9,"u":3,"U":2}},"M":{"d":"69,-35v-7,23,9,31,25,33v-23,8,-40,-1,-70,3v-7,1,-8,-5,-2,-5v19,2,23,-13,25,-31r26,-235v1,-8,6,-8,9,-1r110,227r106,-226v1,-3,2,-6,5,-6v3,0,4,3,5,10r24,221v1,13,4,33,19,38v12,5,22,0,27,5v-12,6,-66,4,-78,-3v3,-3,6,-6,4,-15r-17,-186r-2,0r-88,187v-14,26,-11,27,-23,3r-89,-186r-2,0","w":378,"k":{"t":8,"w":6,"y":5,"T":7,"W":5,"Y":4,"a":-8,"\u0105":-8,"A":-7,"\u0104":-7,"u":-1,"U":-1}},"N":{"d":"313,-269v-15,7,-26,5,-26,36r0,211v0,24,-1,26,-4,26v-72,-64,-147,-152,-214,-224r5,172v-1,45,11,40,35,46v-33,8,-40,-1,-79,3v-6,1,-8,-4,-3,-5v24,-1,25,-6,25,-48r1,-206v0,-14,1,-18,4,-18v24,20,174,188,213,229r-4,-183v4,-37,-16,-31,-35,-39v30,-4,50,-2,82,0","w":340,"k":{"c":6,"g":6,"o":6,"q":6,"\u00f3":6,"\u0107":6,"C":5,"\u0106":5,"O":9,"\u00d3":9,"Q":9,"G":5}},"O":{"d":"23,-135v0,-58,43,-141,142,-141v81,0,141,51,141,135v0,81,-56,147,-143,147v-99,0,-140,-76,-140,-141xm57,-145v0,84,50,137,115,137v32,0,100,-18,100,-123v0,-167,-215,-181,-215,-14","w":329,"k":{"m":4,"t":11,"v":4,"w":2,"x":10,"y":4,"M":4,"T":10,"V":4,"W":2,"X":9,"Y":4,"a":8,"\u0105":8,"b":12,"d":12,"e":12,"f":12,"h":12,"i":12,"k":12,"l":12,"n":12,"p":12,"r":12,"\u0142":12,"\u0119":12,"\u0144":12,"A":7,"\u0104":7,"B":11,"D":11,"E":11,"F":11,"H":11,"I":11,"K":11,"L":11,"N":11,"P":11,"R":11,"\u0141":11,"\u0118":11,"\u0143":11,"j":8,"J":7}},"P":{"d":"112,-260v-9,0,-18,-2,-18,9r1,226v-3,20,20,20,34,23v-34,8,-48,-1,-85,3v-6,1,-8,-4,-3,-5v15,1,20,-6,21,-21v4,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v32,-8,51,-3,92,-3v45,0,61,15,67,20v47,48,-9,150,-83,126v0,-3,2,-3,10,-3v59,-3,85,-67,42,-114v-18,-20,-41,-18,-49,-18","w":231,"k":{"s":-2,"\u015b":-2,"S":-2,"\u015a":-2,"a":18,"\u0105":18,"b":6,"d":6,"e":6,"f":6,"h":6,"i":6,"k":6,"l":6,"n":6,"p":6,"r":6,"\u0142":6,"\u0119":6,"\u0144":6,"A":16,"\u0104":16,"B":5,"D":5,"E":5,"F":5,"H":5,"I":5,"K":5,"L":5,"N":5,"P":5,"R":5,"\u0141":5,"\u0118":5,"\u0143":5,",":58,".":58,"\u2026":58}},"Q":{"d":"546,47v-20,17,-62,26,-117,29v-60,4,-152,-51,-209,-82v-13,7,-37,12,-56,12v-100,0,-141,-76,-141,-141v0,-58,43,-141,142,-141v81,0,141,51,141,135v0,63,-39,106,-63,121r73,38v79,41,134,42,152,42v19,1,50,-7,76,-15v1,0,2,1,2,2xm57,-145v0,84,50,137,115,137v32,0,100,-18,100,-123v0,-167,-215,-181,-215,-14","w":331,"k":{"b":10,"d":10,"e":10,"f":10,"h":10,"i":10,"k":10,"l":10,"n":10,"p":10,"r":10,"\u0142":10,"\u0119":10,"\u0144":10,"B":9,"D":9,"E":9,"F":9,"H":9,"I":9,"K":9,"L":9,"N":9,"P":9,"R":9,"\u0141":9,"\u0118":9,"\u0143":9,")":-11,"]":-11,"}":-11}},"R":{"d":"39,-271v81,4,173,-19,173,65v0,27,-11,53,-43,83v48,54,68,111,136,121v-14,7,-61,3,-73,-4v-29,-17,-62,-81,-92,-108r-45,-1v-6,20,0,78,0,90v0,20,19,20,33,23v-34,8,-46,-1,-84,3v-6,1,-8,-4,-3,-5v15,1,20,-6,21,-21v4,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v0,-2,2,-3,6,-3xm120,-260v-14,0,-24,0,-27,7r0,118v3,10,22,9,40,10v34,1,48,-25,49,-63v0,-45,-23,-72,-62,-72","w":271,"k":{"s":4,"\u015b":4,"t":20,"v":10,"w":1,"x":2,"y":8,"S":4,"\u015a":4,"T":18,"V":9,"W":1,"X":2,"Y":7,"a":-2,"\u0105":-2,"A":-2,"\u0104":-2,"c":-6,"g":-6,"o":-6,"q":-6,"\u00f3":-6,"\u0107":-6,"C":-5,"\u0106":-5,"O":-5,"\u00d3":-5,"Q":-5,"G":-5}},"S":{"d":"165,-222v-12,-23,-2,-42,-53,-42v-25,0,-44,16,-44,42v-5,21,25,47,54,69v42,33,52,55,52,84v0,15,-5,42,-30,60v-15,11,-36,15,-55,15v-19,0,-53,2,-53,-23v0,-23,-2,-36,4,-44v2,0,3,1,3,4v-1,34,26,50,54,50v35,0,52,-25,52,-48v0,-28,-31,-57,-58,-78v-38,-31,-47,-54,-47,-78v0,-56,66,-76,121,-60v8,5,0,12,2,41v0,6,0,8,-2,8","k":{"m":3,"v":1,"M":3,"V":1}},"T":{"d":"21,-276v60,11,154,8,214,2v5,11,1,43,-1,49v-8,-16,-2,-30,-48,-30r-45,-1r2,231v-3,20,19,20,33,23v-34,8,-48,-1,-86,3v-5,1,-7,-4,-3,-5v15,1,21,-6,22,-21v4,-60,1,-162,2,-231r-54,1v-32,-3,-35,13,-46,26v-5,-8,6,-41,10,-47","w":248,"k":{"m":6,"\u2019":-11,"\u201d":-11,"s":14,"\u015b":14,"t":-5,"w":-3,"x":-7,"y":-9,"M":5,"S":4,"\u015a":4,"T":-4,"W":-2,"X":-6,"Y":-8,"a":25,"\u0105":25,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"\u0142":7,"\u0119":7,"\u0144":7,"A":16,"\u0104":16,"c":10,"g":10,"o":10,"q":10,"\u00f3":10,"\u0107":10,"C":9,"\u0106":9,"O":11,"\u00d3":11,",":41,".":41,"\u2026":41,"G":9,":":11,";":11,"-":11}},"U":{"d":"156,-8v73,0,77,-77,77,-159r0,-77v0,-19,-16,-20,-31,-24v27,-8,43,1,74,-3v6,-1,8,4,3,5v-15,0,-22,5,-22,22v0,86,17,174,-34,223v-25,24,-53,27,-74,27v-12,0,-48,-1,-74,-25v-43,-13,-33,-174,-33,-225v0,-19,-15,-20,-30,-24v29,-8,48,1,83,-3v6,-1,6,4,3,5v-15,0,-23,5,-23,22r0,128v0,78,25,108,81,108","w":298,"k":{"m":6,"M":6,"a":7,"\u0105":7,"b":11,"d":11,"e":11,"f":11,"h":11,"i":11,"k":11,"l":11,"n":11,"p":11,"r":11,"\u0142":11,"\u0119":11,"\u0144":11,"A":6,"\u0104":6}},"V":{"d":"85,-269v-3,7,-26,2,-22,12r79,214v21,-48,67,-175,77,-200v8,-20,-4,-23,-19,-25v24,-6,50,-2,78,-1v-18,9,-26,2,-42,41r-87,207v-16,36,-15,38,-28,5r-88,-221v-8,-28,-22,-24,-42,-32v34,-4,59,-2,94,0","w":267,"k":{"\u2019":-17,"\u201d":-17,"y":-4,"Y":-4,"a":30,"\u0105":30,"A":27,"\u0104":27,"c":2,"g":2,"o":2,"q":2,"\u00f3":2,"\u0107":2,"O":2,"\u00d3":2,",":52,".":52,"\u2026":52,")":-9,"]":-9,"}":-9,"-":7}},"W":{"d":"88,-269v-4,8,-24,-1,-22,14v4,44,46,169,55,207r77,-205v9,-26,10,-21,18,0r71,204r2,0r55,-183v8,-28,6,-29,-20,-37v31,-4,48,-2,77,0v-1,6,-8,2,-15,5v-11,4,-16,19,-23,39r-67,200v-14,39,-15,43,-26,12r-71,-200r-75,200v-13,29,-14,27,-25,-9r-64,-214v-7,-29,-20,-25,-39,-33v37,-4,53,-2,92,0","w":396,"k":{"m":10,"\u2019":-18,"\u201d":-18,"t":8,"y":-4,"M":9,"T":7,"Y":-4,"a":22,"\u0105":22,"A":20,"\u0104":20,",":40,".":40,"\u2026":40,")":-4,"]":-4,"}":-4,":":-5,";":-5}},"X":{"d":"185,-258v2,-10,-18,-5,-20,-11v26,-3,46,-2,74,0v-17,7,-28,12,-43,34r-58,87v27,28,60,145,113,146v-19,7,-57,4,-74,-1v2,-4,8,-3,4,-12v-19,-35,-40,-72,-62,-108v-20,37,-45,69,-61,111v-1,9,13,4,15,11v-23,3,-47,2,-75,0v18,-8,30,-8,47,-34r65,-103r-58,-97v-10,-18,-20,-31,-43,-31v-2,0,-3,-2,-3,-3v27,-4,57,-2,88,0v-2,7,-20,0,-17,10v10,38,33,62,52,98v14,-23,54,-75,56,-97","w":249,"k":{"\u2019":-7,"\u201d":-7,"t":11,"w":-4,"x":-4,"y":-5,"T":10,"W":-4,"X":-4,"Y":-5,"a":8,"\u0105":8,"A":7,"\u0104":7,"c":8,"g":8,"o":8,"q":8,"\u00f3":8,"\u0107":8,"C":7,"\u0106":7,"O":7,"\u00d3":7,"Q":7,"G":7}},"Y":{"d":"81,-4v36,1,23,-52,23,-88v0,-19,-3,-28,-8,-38v-19,-21,-59,-128,-104,-136v-2,0,-3,-1,-3,-3v23,-3,47,-2,75,0v-7,4,-13,11,-5,24r66,114v11,-27,60,-95,66,-124v2,-9,-9,-9,-11,-14v19,-3,46,-2,69,0v-50,7,-89,105,-109,141v-11,20,-5,41,-6,67v-1,22,-3,67,32,57v2,0,3,1,3,2v-33,8,-48,-1,-85,3v-6,1,-8,-4,-3,-5","w":235,"k":{"m":3,"\u2019":-21,"\u201d":-21,"t":-2,"v":-9,"w":-11,"x":-5,"M":3,"T":-2,"V":-8,"W":-10,"X":-4,"a":18,"\u0105":18,"A":16,"\u0104":16,"c":14,"g":14,"o":14,"q":14,"\u00f3":14,"\u0107":14,"C":4,"\u0106":4,"O":7,"\u00d3":7,",":36,".":36,"\u2026":36,"G":4,")":-13,"]":-13,"}":-13,"-":11}},"Z":{"d":"35,-214v-5,-8,3,-50,9,-60v64,11,125,-3,185,7r-163,253r98,0v55,0,55,-13,67,-43v6,13,2,58,-15,59v-60,0,-120,-2,-183,-2v-4,0,-7,0,-7,-3r163,-253v-55,3,-140,-15,-150,35v-1,5,-2,7,-4,7","w":249,"k":{"a":4,"\u0105":4,"A":4,"\u0104":4,"c":12,"g":12,"o":12,"q":12,"\u00f3":12,"\u0107":12,"O":11,"\u00d3":11}},"[":{"d":"35,39r0,-302v0,-4,1,-5,6,-5v21,2,50,-4,66,3v-10,7,-33,3,-46,10v-5,78,0,171,-2,253v0,15,0,26,2,34v13,7,35,3,45,10v-15,8,-45,1,-65,3v-5,0,-6,-1,-6,-6","w":129,"k":{"v":-8,"w":-3,"y":-12}},"\\":{"d":"181,-7v3,8,-11,14,-15,11r-158,-259v4,-1,10,-9,15,-5","w":188},"]":{"d":"95,-262r0,302v0,4,-1,5,-6,5v-21,-2,-50,4,-66,-3v9,-7,33,-3,45,-10v6,-87,4,-198,0,-287v-13,-7,-35,-3,-45,-10v15,-8,45,-1,66,-3v5,0,6,1,6,6","w":129},"^":{"d":"82,-270r19,0r72,153r-20,0r-61,-134r-62,134r-19,0","w":183},"_":{"d":"0,27r180,0r0,18r-180,0r0,-18","w":180},"\u2018":{"d":"53,-295v2,13,-15,34,-12,58v-2,17,15,24,8,31v-10,-2,-32,-2,-32,-15v1,-28,18,-61,36,-74","w":72,"k":{"t":-10,"v":-16,"w":-17,"x":-7,"y":-19,"a":26,"\u0105":26,"j":3,"\u2018":23,"\u201c":23}},"a":{"d":"30,-33r74,-191v7,-17,9,-15,15,-1v6,13,56,140,76,186v16,38,21,28,44,38v-9,5,-47,2,-69,-1v2,-3,8,-3,5,-10v-11,-23,-17,-52,-31,-72v-25,1,-55,-3,-76,2v-7,22,-20,46,-23,70v-1,10,14,5,17,11v-21,4,-44,2,-71,0v16,-7,31,-10,39,-32xm74,-99v15,4,50,3,66,0r-31,-84v-2,-5,-3,-5,-5,0","w":224},"b":{"d":"33,-1v42,-10,23,-82,23,-141v0,-48,0,-56,-1,-66v2,-18,-15,-15,-26,-20v20,-5,51,-2,79,-2v91,0,74,70,34,100v24,7,56,29,56,64v0,55,-65,78,-140,66v-8,-1,-21,4,-25,-1xm148,-171v4,-30,-31,-63,-65,-45v2,27,-3,61,2,84v34,5,67,-4,63,-39xm84,-36v-5,26,21,27,38,27v21,0,46,-8,46,-47v0,-27,-32,-77,-83,-65v-6,14,0,77,-1,85","w":221,"k":{"v":12,"w":5,"y":10,"a":2,"\u0105":2,"b":11,"d":11,"e":11,"f":11,"h":11,"i":11,"k":11,"l":11,"n":11,"p":11,"r":11,"\u0142":11,"\u0119":11,"\u0144":11}},"c":{"d":"150,-222v-80,-1,-99,41,-99,101v0,59,46,111,114,111v36,0,60,-13,64,-40v1,-5,6,-6,6,0v-2,5,-2,47,-15,48v-13,5,-36,7,-57,7v-86,0,-145,-56,-143,-123v2,-55,46,-123,132,-117v25,2,63,4,82,12v-2,18,2,42,-5,55v-6,-38,-29,-54,-79,-54","w":254,"k":{"t":2,"y":-5,"c":3,"g":3,"o":3,"q":3,"\u00f3":3,"\u0107":3}},"d":{"d":"141,4v-35,0,-76,1,-108,-5v6,-6,23,-1,21,-21v4,-33,2,-157,1,-186v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v106,-2,237,-16,237,112v0,39,-16,68,-34,86v-14,14,-42,36,-96,36xm108,-219v-10,0,-23,-2,-23,8r0,169v3,34,5,32,56,34v57,2,101,-38,99,-100v-2,-84,-64,-113,-132,-111","w":291,"k":{"m":2,"a":3,"\u0105":3,"b":3,"d":3,"e":3,"f":3,"h":3,"i":3,"k":3,"l":3,"n":3,"p":3,"r":3,"\u0142":3,"\u0119":3,"\u0144":3,"j":3}},"e":{"d":"46,-5v22,-22,9,-158,9,-203v0,-14,-8,-19,-24,-17v-3,-2,-4,-5,3,-5v43,0,92,3,131,-3v1,6,0,34,-6,41v-2,0,-2,-1,-2,-4v7,-28,-48,-19,-71,-21v-2,26,-2,65,0,89v16,-2,68,5,73,-9v4,11,0,35,-5,45v-1,0,-2,-1,-2,-3v8,-28,-48,-18,-65,-21v-6,18,2,53,-2,80v-4,32,42,26,69,22v11,-2,10,-20,18,-26v3,12,5,49,-20,42v-39,-2,-84,2,-119,-3v0,-4,9,-3,13,-4","w":198,"k":{"v":-8,"w":-10,"x":-12,"y":-8}},"f":{"d":"46,-5v22,-22,9,-158,9,-203v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5r137,-3v3,1,0,50,-8,37v2,-30,-49,-18,-76,-21v-4,24,-3,66,0,90v26,-2,64,5,76,-10v3,5,-2,38,-5,46v-2,0,-2,-2,-2,-3v7,-29,-49,-19,-69,-21v-6,18,0,79,-1,93v-2,19,19,15,28,21v-32,4,-49,2,-81,0v0,-4,9,-3,13,-4","w":192,"k":{"y":-6,"a":10,"\u0105":10,",":33,".":33,"\u2026":33}},"g":{"d":"164,-9v15,0,38,0,41,-15v-5,-31,16,-92,-25,-85v-1,0,-2,-1,-2,-2v26,-8,41,1,73,-3v6,-1,6,4,3,5v-33,-2,-20,50,-20,84v0,14,-1,14,-5,16v-87,39,-206,-1,-209,-106v-3,-112,122,-138,215,-109v0,4,-2,13,-2,44v1,8,-6,8,-5,1v-6,-31,-27,-40,-81,-43v-49,-2,-101,32,-97,96v5,83,51,117,114,117","w":273},"h":{"d":"107,-228v-8,6,-22,1,-22,20r1,75v43,-2,95,4,134,-2r0,-73v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v23,1,52,-3,72,2v-5,6,-21,1,-21,20v0,27,-2,152,1,186v-4,19,18,15,28,21v-31,3,-50,2,-81,0v7,-6,21,-2,21,-21r0,-98v-43,2,-95,-4,-134,2r1,96v-3,19,19,15,28,21v-32,4,-49,2,-81,0v6,-6,23,-1,21,-21v4,-33,2,-157,1,-186v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v24,1,53,-3,73,2","w":304,"k":{"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"\u0142":7,"\u0119":7,"\u0144":7,"c":5,"g":5,"o":5,"q":5,"\u00f3":5,"\u0107":5}},"i":{"d":"107,-228v-8,6,-22,1,-22,20r1,186v-3,19,19,15,28,21v-32,4,-49,2,-81,0v6,-6,23,-1,21,-21v3,-34,1,-158,1,-186v0,-18,-14,-14,-22,-20v17,-4,53,-3,74,0","w":140,"k":{"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"\u0142":7,"\u0119":7,"\u0144":7,"c":5,"g":5,"o":5,"q":5,"\u00f3":5,"\u0107":5}},"j":{"d":"107,-228v-8,6,-22,1,-22,20r0,140v2,96,-13,110,-72,145v-1,0,-3,-1,-3,-2v34,-30,46,-33,46,-128r-1,-155v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v24,1,53,-3,73,2","w":132,"k":{"c":3,"g":3,"o":3,"q":3,"\u00f3":3,"\u0107":3}},"k":{"d":"85,-123v13,-16,78,-73,91,-96v2,-8,-13,-6,-4,-11v19,1,43,-3,59,2v-47,11,-89,70,-122,99v35,28,97,121,152,125v2,0,4,2,4,3v-30,6,-66,2,-84,-17v-15,-11,-80,-83,-97,-100r1,96v-3,18,17,16,27,21v-29,3,-50,2,-79,0v6,-6,23,-1,21,-21v4,-33,2,-157,1,-186v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v23,1,52,-3,72,2v-6,6,-22,1,-22,20","w":239,"k":{"s":-2,"\u015b":-2,"a":2,"\u0105":2,"c":-1,"g":-1,"o":-1,"q":-1,"\u00f3":-1,"\u0107":-1}},"l":{"d":"182,-42v2,14,9,48,-23,44v-41,-5,-88,2,-126,-3v6,-6,23,-1,21,-21v4,-33,2,-157,1,-186v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v25,1,55,-3,76,2v-9,5,-25,1,-25,20r0,121v4,75,-14,72,48,76v30,2,42,-11,49,-31","w":192,"k":{"m":2,"\u2019":13,"\u201d":13,"t":20,"v":15,"w":8,"y":12,"a":-3,"\u0105":-3,"c":8,"g":8,"o":8,"q":8,"\u00f3":8,"\u0107":8,"u":2}},"m":{"d":"61,-14v-2,12,18,7,22,12v-19,7,-36,-1,-62,3v-5,1,-7,-5,-2,-5v16,1,20,-10,22,-26r23,-199v0,-8,7,-7,10,-1r96,190r92,-190v4,-7,8,-7,9,4r22,187v1,11,3,27,16,32v11,4,20,0,23,5v-8,7,-58,2,-69,-2v3,-3,4,-3,3,-13r-15,-155r-77,156v-11,22,-12,23,-22,2r-77,-154r-2,0","w":332,"k":{"t":6,"w":5,"y":4,"a":-6,"\u0105":-6,"u":-1}},"n":{"d":"280,-228v-12,6,-23,3,-23,30r0,179v-2,41,0,21,-27,4r-164,-170r3,144v-2,40,13,32,31,40v-30,4,-44,2,-75,0v16,-9,24,0,24,-43r0,-175v-1,-25,10,-14,17,-6r175,183r-3,-153v2,-28,-8,-30,-28,-30v-2,0,-2,-2,-2,-3v17,-4,51,-3,72,0","w":299,"k":{"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"\u0142":7,"\u0119":7,"\u0144":7,"c":5,"g":5,"o":5,"q":5,"\u00f3":5,"\u0107":5}},"o":{"d":"20,-115v0,-49,38,-120,125,-120v71,0,126,44,126,115v0,68,-51,125,-127,125v-87,0,-124,-65,-124,-120xm53,-123v0,71,43,115,100,115v28,0,85,-14,85,-103v0,-142,-185,-152,-185,-12","w":290,"k":{"m":3,"t":9,"v":3,"w":2,"x":9,"y":3,"a":6,"\u0105":6,"b":10,"d":10,"e":10,"f":10,"h":10,"i":10,"k":10,"l":10,"n":10,"p":10,"r":10,"\u0142":10,"\u0119":10,"\u0144":10,"j":6}},"p":{"d":"54,-22v4,-33,2,-157,1,-186v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v42,-1,135,-2,142,17v44,42,-11,131,-78,106v0,-3,2,-3,8,-3v56,-2,82,-55,41,-96v-24,-24,-37,-14,-61,-12v-6,53,-1,141,-1,196v0,19,19,15,29,21v-32,3,-49,2,-81,0v6,-6,23,-1,21,-21","w":210,"k":{"s":-2,"\u015b":-2,"a":15,"\u0105":15,"b":5,"d":5,"e":5,"f":5,"h":5,"i":5,"k":5,"l":5,"n":5,"p":5,"r":5,"\u0142":5,"\u0119":5,"\u0144":5,",":53,".":53,"\u2026":53}},"q":{"d":"481,40v-60,33,-162,34,-235,-16r-52,-28v-12,6,-33,9,-50,9v-87,0,-125,-65,-125,-120v0,-49,39,-120,126,-120v71,0,125,44,125,115v0,54,-34,90,-55,103r64,32v114,46,115,43,200,23v1,0,2,1,2,2xm52,-123v0,71,43,115,100,115v28,0,86,-15,86,-103v0,-141,-186,-152,-186,-12","w":291,"k":{"b":8,"d":8,"e":8,"f":8,"h":8,"i":8,"k":8,"l":8,"n":8,"p":8,"r":8,"\u0142":8,"\u0119":8,"\u0144":8,")":-10,"]":-10,"}":-10}},"r":{"d":"153,-105v40,42,58,95,113,101v2,0,3,2,3,3v-78,22,-106,-57,-139,-94v-13,-1,-36,-4,-47,0r2,73v-3,19,18,15,29,21v-32,3,-49,2,-81,0v6,-6,23,-1,21,-21v4,-33,2,-157,1,-186v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v70,3,158,-17,158,55v0,23,-9,45,-39,70xm108,-220v-12,0,-23,-1,-25,6r0,98v3,10,21,9,37,9v29,0,43,-19,43,-52v0,-38,-21,-61,-55,-61","w":241,"k":{"s":3,"\u015b":3,"t":17,"v":8,"w":1,"x":2,"y":6,"a":-2,"\u0105":-2,"c":-5,"g":-5,"o":-5,"q":-5,"\u00f3":-5,"\u0107":-5}},"s":{"d":"144,-189v-11,-20,-5,-34,-49,-34v-23,0,-42,11,-42,33v-4,19,23,41,50,58v39,26,52,48,52,74v0,33,-37,69,-80,63v-18,-3,-51,3,-51,-20v0,-19,-1,-31,5,-37v2,0,3,0,3,3v-2,31,26,42,51,42v31,0,47,-18,47,-41v0,-44,-110,-83,-99,-129v-5,-53,70,-69,117,-51v0,1,-1,12,-1,33v0,5,-1,6,-3,6","w":188,"k":{"m":3,"v":1,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"\u0142":7,"\u0119":7,"\u0144":7}},"t":{"d":"18,-235v52,9,136,6,190,2v6,7,-1,61,-5,34v4,-20,-51,-17,-78,-17r1,194v-3,18,19,15,30,21v-32,3,-52,2,-83,0v7,-6,22,-2,22,-21r1,-194r-46,0v-30,-2,-31,11,-40,23v-5,-6,5,-35,8,-42","w":219,"k":{"m":5,"\u2019":-10,"\u201d":-10,"s":4,"\u015b":4,"t":-4,"w":-2,"x":-6,"y":-7,"a":15,"\u0105":15,"c":8,"g":8,"o":8,"q":8,"\u00f3":8,"\u0107":8,",":38,".":38,"\u2026":38,":":10,";":10,"-":10}},"u":{"d":"140,-8v63,0,67,-64,67,-134v0,-48,-1,-56,-1,-66v0,-18,-15,-15,-26,-20v17,-4,50,-3,71,0v-6,5,-25,2,-22,20v-4,75,15,150,-30,191v-22,21,-47,22,-66,22v-10,0,-44,-1,-66,-22v-36,-10,-26,-148,-28,-191v-1,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v24,1,53,-3,73,2v-5,6,-23,1,-21,20v-2,4,-1,81,-1,109v0,67,22,91,71,91","w":263,"k":{"m":5,"a":6,"\u0105":6}},"v":{"d":"75,-228v-2,7,-21,0,-18,9r68,180v18,-41,60,-145,67,-167v9,-17,-5,-18,-16,-22v15,-4,49,-3,68,0v-14,8,-22,1,-36,34v-26,65,-56,142,-90,199v-4,0,-6,-4,-12,-19r-78,-187v-9,-21,-14,-23,-34,-24v-2,0,-2,-2,-2,-3v20,-4,59,-3,83,0","w":235,"k":{"\u2019":-16,"\u201d":-16,"y":-3,"a":24,"\u0105":24,"c":2,"g":2,"o":2,"q":2,"\u00f3":2,"\u0107":2,",":48,".":48,"\u2026":48,")":-8,"]":-8,"}":-8,"-":6}},"w":{"d":"78,-228v-3,7,-20,-2,-19,11v5,35,40,144,48,173r67,-171v9,-22,10,-18,17,0r63,171v9,-33,43,-123,51,-172v4,-8,-14,-6,-20,-12v16,-4,47,-2,68,-1v0,6,-7,3,-14,5v-9,3,-14,15,-20,32v-14,39,-45,137,-58,171v-12,33,-14,36,-24,10r-62,-167v-11,27,-53,139,-65,167v-11,25,-14,23,-24,-8r-56,-182v-4,-26,-18,-20,-34,-27v20,-4,58,-3,82,0","w":348,"k":{"m":8,"\u2019":-17,"\u201d":-17,"t":6,"y":-3,"a":18,"\u0105":18,",":36,".":36,"\u2026":36,")":-3,"]":-3,"}":-3,":":-5,";":-5}},"x":{"d":"162,-220v1,-8,-16,-2,-17,-8v15,-4,48,-3,66,0v-15,6,-25,9,-38,28r-51,74v22,22,53,122,96,122v3,1,3,5,-2,5v-21,-1,-47,2,-62,-3v1,-5,8,-3,4,-11r-54,-91v-17,32,-39,58,-52,94v-2,7,23,5,10,11r-61,0v-3,0,-2,-1,-2,-2v13,-8,26,-7,40,-29r57,-87r-51,-82v-7,-20,-24,-23,-40,-29v19,-4,56,-3,79,0v0,6,-16,-2,-16,8v13,30,27,52,45,82v12,-21,47,-64,49,-82","w":219,"k":{"\u2019":-6,"\u201d":-6,"t":9,"w":-3,"x":-3,"y":-4,"a":6,"\u0105":6,"c":6,"g":6,"o":6,"q":6,"\u00f3":6,"\u0107":6}},"y":{"d":"72,-4v30,1,20,-44,20,-74v0,-17,-2,-23,-7,-32v-17,-17,-51,-109,-90,-115v-4,0,-6,-5,0,-5v20,1,46,-3,63,2v-8,2,-12,11,-4,20r57,95v9,-23,53,-79,57,-104v2,-7,-9,-8,-9,-12v16,-2,43,-2,62,0v-9,8,-26,7,-35,23v-20,37,-79,87,-65,154v-1,18,-2,57,27,48v2,0,3,2,3,3v-32,3,-50,2,-81,0v0,-1,0,-3,2,-3","w":207,"k":{"m":3,"\u2019":-19,"\u201d":-19,"t":-2,"v":-7,"w":-9,"x":-4,"a":15,"\u0105":15,"c":3,"g":3,"o":3,"q":3,"\u00f3":3,"\u0107":3,",":33,".":33,"\u2026":33,")":-12,"]":-12,"}":-12,"-":10}},"z":{"d":"206,-49v3,13,2,50,-14,50v-53,0,-107,-1,-162,-1v-10,0,-6,-3,-1,-12r138,-205v-47,3,-121,-14,-130,29v-1,6,-6,10,-6,2v1,-6,3,-40,9,-47v56,10,111,-4,164,6r-142,214r84,0v50,2,46,-13,60,-36","w":219,"k":{"a":3,"\u0105":3,"c":10,"g":10,"o":10,"q":10,"\u00f3":10,"\u0107":10}},"{":{"d":"73,-218v0,51,2,77,-25,92v21,15,25,36,25,83v0,69,14,74,35,86v0,1,-2,2,-7,2v-33,-10,-58,-34,-55,-107v0,-11,2,-26,2,-38v0,-20,-18,-17,-28,-23v0,-2,0,-4,4,-4v36,7,22,-41,22,-63v-2,-51,27,-78,61,-76v-12,7,-34,12,-34,48","w":129,"k":{"v":-8,"w":-3,"y":-12}},"|":{"d":"102,90r-20,0r0,-360r20,0r0,360","w":183},"}":{"d":"57,-43v0,-43,2,-70,24,-83v-25,-14,-24,-42,-24,-92v0,-36,-22,-41,-35,-48v34,-3,66,26,62,76v-2,24,-12,72,21,63v6,0,6,7,0,6v-32,-1,-23,31,-21,59v2,75,-21,96,-56,107v-5,0,-6,-1,-6,-2v20,-11,35,-16,35,-86","w":129},"~":{"d":"161,-114v-2,76,-70,26,-106,18v-10,0,-15,7,-15,24r-18,0v0,-75,72,-29,107,-19v10,0,15,-8,15,-23r17,0","w":183},"'":{"d":"36,-187v-6,-18,-13,-85,-15,-80v0,-5,6,-5,15,-5v9,0,15,0,15,5","w":72},"\u201c":{"d":"99,-295v2,13,-15,34,-12,58v-2,17,15,24,8,31v-10,-2,-32,-2,-32,-15v1,-28,18,-61,36,-74xm52,-295v0,17,-23,67,-1,87v-8,4,-34,-1,-34,-13v1,-28,18,-60,35,-74","w":117,"k":{"t":-10,"v":-16,"w":-17,"x":-7,"y":-19,"a":26,"\u0105":26,"j":3,"\u2018":23,"\u201c":23}},"\u2013":{"d":"0,-102r0,-16r180,0r0,16r-180,0","w":180},"\u201d":{"d":"18,-206v-3,-12,15,-34,12,-58v2,-17,-15,-24,-8,-31v10,2,33,2,32,16v-2,27,-17,62,-36,73xm65,-206v0,-17,23,-67,1,-87v8,-4,35,1,34,14v-1,27,-17,60,-35,73","w":117,"k":{"m":20,"\u2019":23,"\u201d":23,"s":13,"\u015b":13,"t":-6,"v":-23}},"\u2026":{"d":"60,0v-26,-1,-25,-37,0,-39v11,0,19,8,19,19v0,11,-7,20,-19,20xm180,0v-26,-1,-25,-37,0,-39v11,0,19,8,19,19v0,11,-7,20,-19,20xm300,0v-26,-1,-25,-37,0,-39v11,0,20,8,20,19v0,11,-8,20,-20,20","w":360},"`":{"d":"138,-338v6,10,31,24,47,37v-12,5,-69,-19,-78,-25v7,-6,24,-8,31,-12","w":327},"\u2014":{"d":"360,-102r-360,0r0,-16r360,0r0,16","w":360},"\u0141":{"d":"202,-49v1,15,7,55,-26,51v-45,-5,-99,4,-138,-4v10,-4,26,-2,24,-23v2,-16,2,-65,2,-98v-13,4,-33,26,-39,7v9,-12,27,-14,39,-23r-1,-105v2,-19,-15,-20,-30,-24v30,-8,48,1,85,-3v6,-1,8,4,3,5v-16,0,-26,4,-26,22r-1,91r54,-26v3,0,10,11,5,13r-59,29r0,34v7,79,-17,89,51,91v30,1,51,-8,53,-32v0,-3,2,-5,4,-5","w":213,"k":{"m":2,"\u2019":14,"\u201d":14,"t":24,"v":18,"w":10,"y":14,"M":2,"T":22,"V":16,"W":9,"Y":13,"a":-4,"\u0105":-4,"A":-4,"\u0104":-4,"c":9,"g":9,"o":9,"q":9,"\u00f3":9,"\u0107":9,"C":9,"\u0106":9,"O":9,"\u00d3":9,"G":9,"u":3,"U":2}},"\u0142":{"d":"181,-42v4,12,8,48,-22,44v-41,-5,-88,2,-126,-3v6,-6,23,-1,21,-21v2,-14,2,-54,2,-82v-11,4,-30,23,-34,4v9,-9,23,-11,34,-18r-1,-90v0,-14,-8,-19,-24,-17v-3,-2,-4,-6,3,-5v25,1,55,-3,76,2v-8,7,-25,0,-25,20r0,78v16,-6,32,-20,48,-22v1,4,6,9,3,12r-51,24r0,29v4,70,-13,73,48,76v31,2,43,-10,48,-31","w":192,"k":{"m":2,"\u2019":13,"\u201d":13,"t":20,"v":15,"w":8,"y":12,"a":-3,"\u0105":-3,"c":8,"g":8,"o":8,"q":8,"\u00f3":8,"\u0107":8,"u":2}},"\u2122":{"d":"1,-263v-3,-20,23,-4,39,-10v1,17,-2,3,-16,5v3,13,-7,37,6,41v-4,2,-15,2,-20,0v14,-2,4,-27,7,-41v-7,0,-16,-1,-16,5xm51,-258v1,10,-8,28,2,31v-2,2,-12,2,-16,0v14,-3,7,-33,13,-47v8,10,12,25,19,37v7,-12,11,-26,19,-37v6,14,-1,41,13,47v-2,2,-12,0,-14,-1r-3,-30r-16,32v-7,-9,-11,-22,-17,-32","w":101},"\u00d7":{"d":"20,-155r13,-13r58,60r59,-60r14,13r-59,60r59,60r-14,13r-58,-59r-59,59r-13,-13r58,-60","w":183},"\u00d3":{"d":"23,-135v0,-58,43,-141,142,-141v81,0,141,51,141,135v0,81,-56,147,-143,147v-99,0,-140,-76,-140,-141xm57,-145v0,84,50,137,115,137v32,0,100,-18,100,-123v0,-167,-215,-181,-215,-14xm145,-301v18,-15,50,-32,62,-38v5,2,16,18,11,23v-26,-4,-57,17,-73,15","w":329,"k":{"m":4,"t":11,"v":4,"w":2,"x":10,"y":4,"M":4,"T":10,"V":4,"W":2,"X":9,"Y":4,"a":8,"\u0105":8,"b":12,"d":12,"e":12,"f":12,"h":12,"i":12,"k":12,"l":12,"n":12,"p":12,"r":12,"\u0142":12,"\u0119":12,"\u0144":12,"A":7,"\u0104":7,"B":11,"D":11,"E":11,"F":11,"H":11,"I":11,"K":11,"L":11,"N":11,"P":11,"R":11,"\u0141":11,"\u0118":11,"\u0143":11,"j":8,"J":7}},"\u00f3":{"d":"20,-115v0,-49,38,-120,125,-120v71,0,126,44,126,115v0,68,-51,125,-127,125v-87,0,-124,-65,-124,-120xm53,-123v0,71,43,115,100,115v28,0,85,-14,85,-103v0,-142,-185,-152,-185,-12xm126,-260r62,-38v4,4,17,18,11,24v-25,-1,-54,11,-71,17v-1,0,-2,-2,-2,-3","w":290,"k":{"m":3,"t":9,"v":3,"w":2,"x":9,"y":3,"a":6,"\u0105":6,"b":10,"d":10,"e":10,"f":10,"h":10,"i":10,"k":10,"l":10,"n":10,"p":10,"r":10,"\u0142":10,"\u0119":10,"\u0144":10,"j":6}},"\u0104":{"d":"85,-118r68,0v2,0,2,-2,2,-3r-34,-97v-2,-5,-4,-5,-6,0v-9,33,-26,69,-30,100xm156,56v0,-36,42,-44,39,-70v-13,-29,-21,-65,-37,-91v-26,2,-60,-4,-81,3v-9,28,-22,57,-27,88v-2,13,31,8,16,15v-24,-2,-58,4,-76,-3v22,-3,35,-12,44,-37r82,-223v8,-20,8,-20,16,-1v6,14,61,162,84,217v18,43,21,37,49,44v-8,8,-48,-4,-62,6v-18,13,-32,57,-1,60v14,1,24,-20,28,-10v-2,20,-74,44,-74,2","w":252,"k":{"m":-8,"\u2019":29,"\u201d":29,"s":-3,"\u015b":-3,"t":23,"v":26,"w":15,"x":-3,"y":17,"M":-9,"S":-4,"\u015a":-4,"T":25,"V":29,"W":16,"X":-4,"Y":18}},"\u0106":{"d":"171,-262v-94,0,-116,49,-116,120v0,69,53,132,130,132v41,0,73,-16,76,-49v1,-6,7,-7,6,0v-1,7,-1,55,-17,57v-14,6,-42,8,-65,8v-141,0,-212,-137,-122,-244v33,-39,133,-44,199,-28v13,2,-3,50,2,61v0,5,-1,7,-3,7v-3,0,-3,-2,-3,-7v-2,-44,-36,-57,-87,-57xm142,-301v17,-16,49,-32,61,-38v5,2,15,17,12,23v-25,-4,-57,17,-73,15","w":289,"k":{"t":2,"y":-6,"T":2,"Y":-5,"c":4,"g":4,"o":4,"q":4,"\u00f3":4,"\u0107":4,"C":4,"\u0106":4,"O":4,"\u00d3":4,"Q":4}},"\u0118":{"d":"136,-12v31,0,50,-9,54,-36v5,6,-1,28,-2,41v-3,9,-21,5,-29,11v-18,15,-30,58,0,60v13,1,24,-19,27,-10v0,21,-73,44,-73,2v0,-29,33,-51,35,-54v-36,-2,-80,4,-110,-4v10,-4,24,-2,24,-23v0,-40,1,-184,1,-219v0,-19,-15,-20,-30,-24v36,-10,107,7,149,-6v3,6,-1,39,-6,48v-2,0,-2,-2,-2,-5v7,-32,-51,-25,-78,-26v-4,29,-3,77,0,107v18,-2,75,6,80,-11v3,5,-1,44,-5,53v-2,0,-3,-1,-3,-3v10,-33,-49,-25,-71,-27v-8,20,-3,63,-3,96v0,25,7,30,42,30","w":219,"k":{"v":-10,"w":-12,"x":-14,"y":-10,"V":-9,"W":-11,"X":-13,"Y":-9}},"\u0143":{"d":"313,-269v-15,7,-26,5,-26,36r0,211v0,24,-1,26,-4,26v-72,-64,-147,-152,-214,-224r5,172v-1,45,11,40,35,46v-33,8,-40,-1,-79,3v-6,1,-8,-4,-3,-5v24,-1,25,-6,25,-48r1,-206v0,-14,1,-18,4,-18v24,20,174,188,213,229r-4,-183v4,-37,-16,-31,-35,-39v30,-4,50,-2,82,0xm146,-292v17,-16,49,-32,61,-38v5,2,15,17,12,23v-25,-4,-57,17,-73,15","w":340,"k":{"c":6,"g":6,"o":6,"q":6,"\u00f3":6,"\u0107":6,"C":5,"\u0106":5,"O":9,"\u00d3":9,"Q":9,"G":5}},"\u015a":{"d":"165,-222v-12,-23,-2,-42,-53,-42v-25,0,-44,16,-44,42v-5,21,25,47,54,69v42,33,52,55,52,84v0,15,-5,42,-30,60v-15,11,-36,15,-55,15v-19,0,-53,2,-53,-23v0,-23,-2,-36,4,-44v2,0,3,1,3,4v-1,34,26,50,54,50v35,0,52,-25,52,-48v0,-28,-31,-57,-58,-78v-38,-31,-47,-54,-47,-78v0,-56,66,-76,121,-60v8,5,0,12,2,41v0,6,0,8,-2,8xm96,-301v17,-16,49,-32,61,-38v5,2,16,18,11,23v-25,-4,-57,17,-72,15","k":{"m":3,"v":1,"M":3,"V":1}},"\u0179":{"d":"35,-214v-5,-8,3,-50,9,-60v64,11,125,-3,185,7r-163,253r98,0v55,0,55,-13,67,-43v6,13,2,58,-15,59v-60,0,-120,-2,-183,-2v-4,0,-7,0,-7,-3r163,-253v-55,3,-140,-15,-150,35v-1,5,-2,7,-4,7xm112,-301v18,-15,50,-32,62,-38v4,3,14,17,11,23v-26,-4,-57,17,-73,15","w":249,"k":{"a":4,"\u0105":4,"A":4,"\u0104":4,"c":12,"g":12,"o":12,"q":12,"\u00f3":12,"\u0107":12,"O":11,"\u00d3":11}},"\u017b":{"d":"35,-214v-5,-8,3,-50,9,-60v64,11,125,-3,185,7r-163,253r98,0v55,0,55,-13,67,-43v6,13,2,58,-15,59v-60,0,-120,-2,-183,-2v-4,0,-7,0,-7,-3r163,-253v-55,3,-140,-15,-150,35v-1,5,-2,7,-4,7xm130,-299v-26,-1,-25,-35,0,-37v10,0,18,7,18,18v0,11,-7,19,-18,19","w":249,"k":{"a":4,"\u0105":4,"A":4,"\u0104":4,"c":12,"g":12,"o":12,"q":12,"\u00f3":12,"\u0107":12,"O":11,"\u00d3":11}},"\u0105":{"d":"74,-99v15,4,50,3,66,0r-31,-84v-2,-5,-3,-5,-5,0xm210,51v8,12,-20,30,-43,30v-19,0,-28,-11,-28,-25v0,-39,46,-45,36,-68v-10,-24,-17,-52,-31,-72v-25,1,-55,-3,-76,2v-7,22,-20,46,-23,70v-1,10,14,5,17,11v-21,4,-44,2,-71,0v16,-7,31,-10,39,-32r74,-191v7,-17,9,-15,15,-1v6,13,56,140,76,186v16,38,21,28,44,38v-8,6,-40,-5,-54,6v-15,12,-31,57,0,59v11,0,23,-13,25,-13","w":224},"\u0107":{"d":"150,-222v-80,-1,-99,41,-99,101v0,59,46,111,114,111v36,0,60,-13,64,-40v1,-5,6,-6,6,0v-2,5,-2,47,-15,48v-13,5,-36,7,-57,7v-86,0,-145,-56,-143,-123v2,-55,46,-123,132,-117v25,2,63,4,82,12v-2,18,2,42,-5,55v-6,-38,-29,-54,-79,-54xm115,-260r62,-38v3,7,15,17,11,24v-24,-1,-55,10,-71,17v-1,0,-2,-2,-2,-3","w":254,"k":{"t":2,"y":-5,"c":3,"g":3,"o":3,"q":3,"\u00f3":3,"\u0107":3}},"\u0119":{"d":"152,-95v8,-28,-48,-18,-65,-21v-6,18,2,53,-2,80v-4,32,42,26,69,22v11,-2,10,-20,18,-26v6,4,0,25,-2,34v-1,8,-14,4,-24,10v-17,10,-30,60,1,60v14,1,22,-20,27,-10v-2,21,-75,43,-74,2v0,-21,20,-43,36,-55v-34,-1,-73,3,-103,-2v0,-4,9,-3,13,-4v22,-22,9,-158,9,-203v0,-14,-8,-19,-24,-17v-3,-2,-4,-5,3,-5v43,0,92,3,131,-3v1,6,0,34,-6,41v-2,0,-2,-1,-2,-4v7,-28,-48,-19,-71,-21v-2,26,-2,65,0,89v16,-2,68,5,73,-9v4,11,0,35,-5,45v-1,0,-2,-1,-2,-3","w":198,"k":{"v":-8,"w":-10,"x":-12,"y":-8}},"\u0144":{"d":"280,-228v-12,6,-23,3,-23,30r0,179v-2,41,0,21,-27,4r-164,-170r3,144v-2,40,13,32,31,40v-30,4,-44,2,-75,0v16,-9,24,0,24,-43r0,-175v-1,-25,10,-14,17,-6r175,183r-3,-153v2,-28,-8,-30,-28,-30v-2,0,-2,-2,-2,-3v17,-4,51,-3,72,0xm123,-260r62,-38v4,4,17,18,11,24v-25,-1,-54,11,-71,17v-1,0,-2,-2,-2,-3","w":299,"k":{"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"\u0142":7,"\u0119":7,"\u0144":7,"c":5,"g":5,"o":5,"q":5,"\u00f3":5,"\u0107":5}},"\u015b":{"d":"144,-189v-11,-20,-5,-34,-49,-34v-23,0,-42,11,-42,33v-4,19,23,41,50,58v39,26,52,48,52,74v0,33,-37,69,-80,63v-18,-3,-51,3,-51,-20v0,-19,-1,-31,5,-37v2,0,3,0,3,3v-2,31,26,42,51,42v31,0,47,-18,47,-41v0,-44,-110,-83,-99,-129v-5,-53,70,-69,117,-51v0,1,-1,12,-1,33v0,5,-1,6,-3,6xm75,-260r62,-38v3,7,15,17,11,24v-24,-1,-55,10,-71,17v-1,0,-2,-2,-2,-3","w":188,"k":{"m":3,"v":1,"b":7,"d":7,"e":7,"f":7,"h":7,"i":7,"k":7,"l":7,"n":7,"p":7,"r":7,"\u0142":7,"\u0119":7,"\u0144":7}},"\u017a":{"d":"206,-49v3,13,2,50,-14,50v-53,0,-107,-1,-162,-1v-10,0,-6,-3,-1,-12r138,-205v-47,3,-121,-14,-130,29v-1,6,-6,10,-6,2v1,-6,3,-40,9,-47v56,10,111,-4,164,6r-142,214r84,0v50,2,46,-13,60,-36xm90,-260r62,-38v4,4,17,18,11,24v-25,-1,-54,11,-71,17v-1,0,-2,-2,-2,-3","w":219,"k":{"a":3,"\u0105":3,"c":10,"g":10,"o":10,"q":10,"\u00f3":10,"\u0107":10}},"\u017c":{"d":"206,-49v3,13,2,50,-14,50v-53,0,-107,-1,-162,-1v-10,0,-6,-3,-1,-12r138,-205v-47,3,-121,-14,-130,29v-1,6,-6,10,-6,2v1,-6,3,-40,9,-47v56,10,111,-4,164,6r-142,214r84,0v50,2,46,-13,60,-36xm117,-257v-25,-1,-26,-36,0,-37v10,0,18,6,18,17v0,11,-7,20,-18,20","w":219,"k":{"a":3,"\u0105":3,"c":10,"g":10,"o":10,"q":10,"\u00f3":10,"\u0107":10}},"\u00a0":{"w":117}}});
;Drupal.behaviors.yynodegallery = function(context)
{
  $('div.texyWrapper:not(.yynodegallery-processed)', context)
  .addClass('yynodegallery-processed')
  .each(function()
  {
    var Wrapper    = this;
    var yyTexyArea = Wrapper.yyTexyArea;
    var hInput     = yyTexyArea.hInput;
    var ButtonImg  = $('button.image', Wrapper);

    ButtonImg.each(function()
    {
      var elId = hInput[0].id;
      this.id = 'yynodegallery-link-'+hInput[0].id;
    })
    .bind('click', function()
    {
      // console.log('yy Node Gallery');

      var url = Drupal.settings.basePath+'yngmodal/image-picker';

      Drupal.modalFrame.open(
      {
        url:     url,
        width:   700,
        height:  500,
        autoFit: false,
        customDialogOptions: {'yyTexyArea': yyTexyArea},
        onSubmit: function(args)
        {

        }
      });

      // var popup = window.open(
      //   '/yytexyimage/load/textarea?textarea=body',
      //   'yytexyimage_link',
      //   'width=700,height=532,scrollbars=yes,status=yes,resizable=yes,toolbar=no,menubar=no');

      // popup.yyTexyArea = yyTexyArea;

      return false;
    })
  });
}

;/**
*	@auth Logan Cai
*	@email cailongqun#yahoo.com.cn  (replace # with @)
*	@ this plugin is based on the nice javascript provided by http://www.jtricks.com/javascript/navigation/floating.html
*   @version 1.0
*	
*/
function floatingBox(box, options, index)
{
    this.targetX = -250;
    this.targetY =  10;
    this.interval = 50;
    this.menu = box;
    this.index = index;
    this.options = options;
    this.hasInner = typeof(window.innerWidth) == 'number';
    this.hasElement =  document.documentElement
        && document.documentElement.clientWidth;    
	this.move = function ()
	{//move function start
		jQuery(this.menu).css('left', this.nextX + 'px').css('top', this.nextY + 'px');
	};  
	this.computeShifts = function ()
	{
	    var de = document.documentElement;	
	    this.shiftX =
	        this.hasInner
	        ? pageXOffset
	        : this.hasElement
	          ? de.scrollLeft
	          : document.body.scrollLeft;
	    if (this.targetX < 0)
	    {
	        if (this.hasElement && this.hasInner)
	        {
	            // Handle Opera 8 problems
	            this.shiftX +=
	                de.clientWidth > window.innerWidth
	                ? window.innerWidth
	                : de.clientWidth
	        }
	        else
	        {
	            this.shiftX +=
	                this.hasElement
	                ? de.clientWidth
	                : this.hasInner
	                  ? window.innerWidth
	                  : document.body.clientWidth;
	        }
	    }
	
	    this.shiftY = 
	        this.hasInner
	        ? pageYOffset
	        : this.hasElement
	          ? de.scrollTop
	          : document.body.scrollTop;
	    if (this.targetY < 0)
	    {
	        if (this.hasElement && this.hasInner)
	        {
	            // Handle Opera 8 problems
	            this.shiftY +=
	                de.clientHeight > window.innerHeight
	                ? window.innerHeight
	                : de.clientHeight
	        }
	        else
	        {
	            this.shiftY +=
	                this.hasElement
	                ? document.documentElement.clientHeight
	                : this.hasInner
	                  ? window.innerHeight
	                  : document.body.clientHeight;
	        }
	    }
	};
	this.doFloat = function()
	{
	    var stepX, stepY;
	
	    this.computeShifts();
	
	    stepX = (this.shiftX + 
	        this.targetX - this.nextX) * .07;
	    if (Math.abs(stepX) < .5)
	    {
	        stepX = this.shiftX +
	            this.targetX - this.nextX;
	    }
	
	    stepY = (this.shiftY + 
	        this.targetY - this.nextY) * .07;
	    if (Math.abs(stepY) < .5)
	    {
	        stepY = this.shiftY + 
	            this.targetY - this.nextY;
	    }
	
	    if (Math.abs(stepX) > 0 ||
	        Math.abs(stepY) > 0)
	    {
	        this.nextX += stepX;
	        this.nextY += stepY;
	        this.move();
	    }
		
	    setTimeout('funcFloating[' + this.index + '].func()', this.interval);
	};	
	this.initSecondary = function()
	{
	    this.computeShifts();
	    this.nextX = this.shiftX +
	        this.targetX;
	    this.nextY = this.shiftY +
	        this.targetY;
	    this.move();
	};	
	this.position = function(targetX, targetY)
	{
		if(typeof(targetX) == 'number')
		{
			this.targetX = targetX;
		}else if(typeof(targetX) == 'string')
		{
			switch(targetX)
			{
				case 'left':
					this.targetX = 5;
					break;
				case 'right':
					this.targetX = -((jQuery(this.menu).outerWidth()) + 5);
					break;									
			}
			
		}	
		if(typeof(targetY) == 'number')
		{
			this.targetY = targetY;
		}else if(typeof(targetY) == 'string')
		{
			switch(targetY)
			{
				case 'top':
					this.targetY= 5;
					break;
				case 'bottom':

					this.targetY = -((jQuery(this.menu).outerHeight() + 5));
					
					break;								
			}
			
		}				
		
	};
	this.init = function()
	{
		jQuery(this.menu).css('position', 'absolute');
		if(typeof(this.options)  == 'object')
		{
			for(var i in this.options)
			{
				switch(i)
				{
					
					case 'targetX':
					case 'targetY':
						if(typeof(this.options[i]) == 'number')
						{
							this[i] = this.options[i];
						}else if(typeof(this.options[i]) == 'string')
						{
							switch(this.options[i])
							{
								case 'top':
									this.targetY= 5;
									break;
								case 'bottom':
									this.targetY = -((jQuery(this.menu).outerHeight() + 5));									
									break;
								case 'left':
									this.targetX = 5;
									break;
								case 'right':
									this.targetX = -((jQuery(this.menu).outerWidth()) + 5);
									break;									
							}
							
						}
						break;	
					default:
						this[i] = this.options[i];				
				}
			}
		}		
		
	    this.initSecondary();
	    this.doFloat();
	}
		      
};

// Some browsers init scrollbars only after
// full document load.
var funcFloating = {};
jQuery.fn.floating = function(options)
{
	return jQuery(this).each(
	
		function(i)
		{		
			var nextIndex = 0;
			for(var index in funcFloating)
			{
				nextIndex = parseInt(index);
			}	
			funcFloating[nextIndex + 1] = {};	
			funcFloating[nextIndex + 1].box = this;	
			funcFloating[nextIndex + 1].obj = new floatingBox(this, options, (nextIndex + 1));
			funcFloating[nextIndex + 1].func = function(){ funcFloating[nextIndex + 1].obj.doFloat(); };
			if (document.layers)
			{
				funcFloating[nextIndex + 1].obj.init();
			}else
			{
				
				funcFloating[nextIndex + 1].obj.init();
				funcFloating[nextIndex + 1].obj.initSecondary();
			}
			
		}
	);
};
jQuery.fn.floatingPosition = function(targetX, targetY)
{
	return jQuery(this).each(
	
		function(i)
		{	
			for(var j in funcFloating)
			{
				if(funcFloating[j].box == this)
				{
					funcFloating[j].obj.position(targetX, targetY);
				}
			}
			
		}
	);	
};;(function($){
/*----------------------------------------------------------------------------------
Class: FloatObject
-------------------------------------------------------------------------------------*/
  function FloatObject(jqObj, params)
  {
    this.jqObj = jqObj;

    switch(params.speed)
    {
      case 'fast': this.steps = 5; break;
      case 'normal': this.steps = 10; break;
      case 'slow': this.steps = 20; break;
      default: this.steps = 10;
    };

    var offset = this.jqObj.offset();
    this.currentX = offset.left-527;
    this.currentY = offset.top-198;
    this.width = this.jqObj.width();
    this.height = this.jqObj.height();
    this.alwaysVisible = params.alwaysVisible;
    this.alwaysTop = params.alwaysTop;


    this.origX = typeof(params.x) == "string" ?  this.currentX : params.x;
    this.origY = typeof(params.y) == "string" ?  this.currentY : params.y;


    //now we make sure the object is in absolute positions.
    this.jqObj.css({'position':'absolute' , 'top':this.currentY ,'left':this.currentX});
  }

  FloatObject.prototype.updateLocation = function()
  {
    this.updatedX = $(window).scrollLeft() + this.origX;

    if( this.alwaysTop == false ){

      this.updatedY = $(window).scrollTop()+ this.origY;

      if( this.alwaysVisible ){
        if( this.origX + this.width > this.windowWidth() )
          this.updatedX = this.windowWidth() - this.width + $(window).scrollLeft();
        if( this.origY + this.height > this.windowHeight() )
        {
          this.updatedY = $(window).scrollTop() + this.windowHeight() - this.height;
          if( this.updatedY < this.origY ) this.updatedY = this.origY;
        }
      }
    }
    else
    {

      if( $(window).scrollTop() > this.origY )
      {
        this.updatedY = $(window).scrollTop() + 5;
      }
      else
      {
        this.updatedY = this.origY + 5;
      }
    }
    this.dx = Math.abs(this.updatedX - this.currentX );
    this.dy = Math.abs(this.updatedY - this.currentY );

    return this.dx || this.dy;
  }

  FloatObject.prototype.windowHeight = function()
  {
    var de = document.documentElement;

    return self.innerHeight ||
      (de && de.clientHeight) ||
      document.body.clientHeight;
  }

  FloatObject.prototype.windowWidth = function()
  {
    var de = document.documentElement;

    return self.innerWidth ||
      (de && de.clientWidth) ||
      document.body.clientWidth;
  }


  FloatObject.prototype.move = function()
  {
    if( this.jqObj.css("position") != "absolute" ) return;
    var cx = 0;
    var cy = 0;

    if( this.dx > 0 )
    {
      if( this.dx < this.steps / 2 )
        cx = (this.dx >= 1) ? 1 : 0;
      else
        cx = Math.round(this.dx/this.steps);

      if( this.currentX < this.updatedX )
        this.currentX += cx;
      else
        this.currentX -= cx;
    }

    if( this.dy > 0 )
    {
      if( this.dy < this.steps / 2 )
        cy = (this.dy >= 1) ? 1 : 0;
      else
        cy = Math.round(this.dy/this.steps);

      if( this.currentY < this.updatedY )
        this.currentY += cy;
      else
        this.currentY -= cy;
    }

    this.jqObj.css({'left':this.currentX, 'top': this.currentY });
  }



/*----------------------------------------------------------------------------------
Object: floatMgr
-------------------------------------------------------------------------------------*/
  $.floatMgr = {

    FOArray: new Array() ,

    timer: null ,

    initializeFO: function(jqObj,params)
    {
      var settings =  $.extend({
        x: 0 ,
        y: 0 ,
        speed: 'normal'  ,
        alwaysVisible: false ,
        alwaysTop: false},params||{});
      var newFO = new FloatObject(jqObj,settings);

      $.floatMgr.FOArray.push(newFO);

      if( !$.floatMgr.timer ) $.floatMgr.adjustFO();

      //now making sure we are registered to all required window events
      if( !$.floatMgr.registeredEvents )
      {
          $(window).bind("resize", $.floatMgr.onChange);
          $(window).bind("scroll", $.floatMgr.onChange);
          $.floatMgr.registeredEvents = true;
      }
    } ,

    adjustFO: function()
    {
      $.floatMgr.timer = null;

      var moveFO = false;

      for( var i = 0 ; i < $.floatMgr.FOArray.length ; i++ )
      {
         FO = $.floatMgr.FOArray[i];
         if( FO.updateLocation() )  moveFO = true;
      }

      if( moveFO )
      {
        for( var i = 0 ; i < $.floatMgr.FOArray.length ; i++ )
        {
          FO = $.floatMgr.FOArray[i];
          FO.move();
        }

        if( !$.floatMgr.timer ) $.floatMgr.timer = setTimeout($.floatMgr.adjustFO,50);
      }
    }  ,

    stopFloatChk: false ,

    onChange: function()
    {
      if( !$.floatMgr.timer && !$.floatMgr.stopFloatChk ) $.floatMgr.adjustFO();
    }
  };

/*----------------------------------------------------------------------------------
Function: makeFloat
-------------------------------------------------------------------------------------*/
  $.fn.makeFloat = function(params) {
    var obj = this.eq(0); //we only operate on the first selected object;
    $.floatMgr.initializeFO(obj,params);
    if( $.floatMgr.timer == null ) $.floatMgr.adjustFO();
    return obj;
  };
  $.fn.stopFloat = function(params) {
    $.floatMgr.stopFloatChk = true;
  };

  $.fn.restartFloat = function(params) {
    $.floatMgr.stopFloatChk = false;
  };
})(jQuery);
;$(function()
{
  $menu = $('#block-menu-primary-links');

  /*
  $(window).scroll(function()
  {
    if ($(this).scrollTop() > 100)
    {
      $menu.css('position', 'fixed');
    }
    else
    {
      $menu.css('position', 'absolute');
    }
  });
  */

  /*
  $(window).scroll(function()
  {
    var scrollTop = $(this).scrollTop();
    var top = $menu.top();

    console.log(top);

    if (scrollTop > 100)
    {
      $menu.animate
      (
        {
          top: scrollTop+'px'
        }
        ,
        {
          queue: false,
          duration: 500
          // easing: 'easeInOutSine'
        }
      );
    }

  });

  */

  // console.log($menu.offset());

  /*

  var top = $menu.offset().top - parseFloat($menu.css('marginTop').replace(/auto/, 0));

  $(window).scroll(function(event)
  {
    // what the y position of the scroll is

    var y = $(this).scrollTop();

    // whether that's below the form
    if (y >= top)
    {
      // if so, ad the fixed class
      $menu.addClass('fixed');
    }
    else
    {
      // otherwise remove it
      $menu.removeClass('fixed');
    }
  });
  */

  // $menu.makeFloat();

  // $('#block-menu-primary-links')
  // .makeFloat({ y: 22 });
});

;
