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

/*
 * jQuery UI 1.7
 *
 * 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",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(){c("*",this).add(this).each(function(){c(this).triggerHandler("remove")});return i.apply(this,arguments)},enableSelection:function(){return this.attr("unselectable","off").css("MozUserSelect","").unbind("selectstart.ui")},disableSelection:function(){return this.attr("unselectable","on").css("MozUserSelect","none").bind("selectstart.ui",function(){return false})},scrollParent:function(){var j;if((c.browser.msie&&(/(static|relative)/).test(this.css("position")))||(/absolute/).test(this.css("position"))){j=this.parents().filter(function(){return(/(relative|absolute|fixed)/).test(c.curCSS(this,"position",1))&&(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}else{j=this.parents().filter(function(){return(/(auto|scroll)/).test(c.curCSS(this,"overflow",1)+c.curCSS(this,"overflow-y",1)+c.curCSS(this,"overflow-x",1))}).eq(0)}return(/fixed/).test(this.css("position"))||!j.length?c(document):j}});c.extend(c.expr[":"],{data:function(l,k,j){return !!c.data(l,j[3])},focusable:function(k){var l=k.nodeName.toLowerCase(),j=c.attr(k,"tabindex");return(/input|select|textarea|button|object/.test(l)?!k.disabled:"a"==l||"area"==l?k.href||!isNaN(j):!isNaN(j))&&!c(k)["area"==l?"parents":"closest"](":hidden").length},tabbable:function(k){var j=c.attr(k,"tabindex");return(isNaN(j)||j>=0)&&c(k).is(":focusable")}});function g(m,n,o,l){function k(q){var p=c[m][n][q]||[];return(typeof p=="string"?p.split(/,?\s+/):p)}var j=k("getter");if(l.length==1&&typeof l[0]=="string"){j=j.concat(k("getterSetter"))}return(c.inArray(o,j)!=-1)}c.widget=function(k,j){var l=k.split(".")[0];k=k.split(".")[1];c.fn[k]=function(p){var n=(typeof p=="string"),o=Array.prototype.slice.call(arguments,1);if(n&&p.substring(0,1)=="_"){return this}if(n&&g(l,k,p,o)){var m=c.data(this[0],k);return(m?m[p].apply(m,o):undefined)}return this.each(function(){var q=c.data(this,k);(!q&&!n&&c.data(this,k,new c[l][k](this,p))._init());(q&&n&&c.isFunction(q[p])&&q[p].apply(q,o))})};c[l]=c[l]||{};c[l][k]=function(o,n){var m=this;this.namespace=l;this.widgetName=k;this.widgetEventPrefix=c[l][k].eventPrefix||k;this.widgetBaseClass=l+"-"+k;this.options=c.extend({},c.widget.defaults,c[l][k].defaults,c.metadata&&c.metadata.get(o)[k],n);this.element=c(o).bind("setData."+k,function(q,p,r){if(q.target==o){return m._setData(p,r)}}).bind("getData."+k,function(q,p){if(q.target==o){return m._getData(p)}}).bind("remove",function(){return m.destroy()})};c[l][k].prototype=c.extend({},c.widget.prototype,j);c[l][k].getterSetter="option"};c.widget.prototype={_init:function(){},destroy:function(){this.element.removeData(this.widgetName).removeClass(this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").removeAttr("aria-disabled")},option:function(l,m){var k=l,j=this;if(typeof l=="string"){if(m===undefined){return this._getData(l)}k={};k[l]=m}c.each(k,function(n,o){j._setData(n,o)})},_getData:function(j){return this.options[j]},_setData:function(j,k){this.options[j]=k;if(j=="disabled"){this.element[k?"addClass":"removeClass"](this.widgetBaseClass+"-disabled "+this.namespace+"-state-disabled").attr("aria-disabled",k)}},enable:function(){this._setData("disabled",false)},disable:function(){this._setData("disabled",true)},_trigger:function(l,m,n){var p=this.options[l],j=(l==this.widgetEventPrefix?l:this.widgetEventPrefix+l);m=c.Event(m);m.type=j;if(m.originalEvent){for(var k=c.event.props.length,o;k;){o=c.event.props[--k];m[o]=m.originalEvent[o]}}this.element.trigger(m,n);return !(c.isFunction(p)&&p.call(this.element[0],m,n)===false||m.isDefaultPrevented())}};c.widget.defaults={disabled:false};c.ui.mouse={_mouseInit:function(){var j=this;this.element.bind("mousedown."+this.widgetName,function(k){return j._mouseDown(k)}).bind("click."+this.widgetName,function(k){if(j._preventClickEvent){j._preventClickEvent=false;k.stopImmediatePropagation();return false}});if(c.browser.msie){this._mouseUnselectable=this.element.attr("unselectable");this.element.attr("unselectable","on")}this.started=false},_mouseDestroy:function(){this.element.unbind("."+this.widgetName);(c.browser.msie&&this.element.attr("unselectable",this._mouseUnselectable))},_mouseDown:function(l){l.originalEvent=l.originalEvent||{};if(l.originalEvent.mouseHandled){return}(this._mouseStarted&&this._mouseUp(l));this._mouseDownEvent=l;var k=this,m=(l.which==1),j=(typeof this.options.cancel=="string"?c(l.target).parents().add(l.target).filter(this.options.cancel).length:false);if(!m||j||!this._mouseCapture(l)){return true}this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet){this._mouseDelayTimer=setTimeout(function(){k.mouseDelayMet=true},this.options.delay)}if(this._mouseDistanceMet(l)&&this._mouseDelayMet(l)){this._mouseStarted=(this._mouseStart(l)!==false);if(!this._mouseStarted){l.preventDefault();return true}}this._mouseMoveDelegate=function(n){return k._mouseMove(n)};this._mouseUpDelegate=function(n){return k._mouseUp(n)};c(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);(c.browser.safari||l.preventDefault());l.originalEvent.mouseHandled=true;return true},_mouseMove:function(j){if(c.browser.msie&&!j.button){return this._mouseUp(j)}if(this._mouseStarted){this._mouseDrag(j);return j.preventDefault()}if(this._mouseDistanceMet(j)&&this._mouseDelayMet(j)){this._mouseStarted=(this._mouseStart(this._mouseDownEvent,j)!==false);(this._mouseStarted?this._mouseDrag(j):this._mouseUp(j))}return !this._mouseStarted},_mouseUp:function(j){c(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=false;this._preventClickEvent=(j.target==this._mouseDownEvent.target);this._mouseStop(j)}return false},_mouseDistanceMet:function(j){return(Math.max(Math.abs(this._mouseDownEvent.pageX-j.pageX),Math.abs(this._mouseDownEvent.pageY-j.pageY))>=this.options.distance)},_mouseDelayMet:function(j){return this.mouseDelayMet},_mouseStart:function(j){},_mouseDrag:function(j){},_mouseStop:function(j){},_mouseCapture:function(j){return true}};c.ui.mouse.defaults={cancel:null,distance:1,delay:0}})(jQuery);;/*
 * jQuery UI Draggable 1.7
 *
 * 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",eventPrefix:"drag",defaults:{addClasses:true,appendTo:"parent",axis:false,cancel:":input,option",connectToSortable:false,containment:false,cursor:"auto",cursorAt:false,delay:0,distance:1,grid:false,handle:false,helper:"original",iframeFix:false,opacity:false,refreshPositions:false,revert:false,revertDuration:500,scope:"default",scroll:true,scrollSensitivity:20,scrollSpeed:20,snap:false,snapMode:"both",snapTolerance:20,stack:false,zIndex:false}});a.ui.plugin.add("draggable","connectToSortable",{start:function(c,e){var d=a(this).data("draggable"),f=d.options,b=a.extend({},e,{item:d.element});d.sortables=[];a(f.connectToSortable).each(function(){var g=a.data(this,"sortable");if(g&&!g.options.disabled){d.sortables.push({instance:g,shouldRevert:g.options.revert});g._refreshItems();g._trigger("activate",c,b)}})},stop:function(c,e){var d=a(this).data("draggable"),b=a.extend({},e,{item:d.element});a.each(d.sortables,function(){if(this.instance.isOver){this.instance.isOver=0;d.cancelHelperRemoval=true;this.instance.cancelHelperRemoval=false;if(this.shouldRevert){this.instance.options.revert=true}this.instance._mouseStop(c);this.instance.options.helper=this.instance.options._helper;if(d.options.helper=="original"){this.instance.currentItem.css({top:"auto",left:"auto"})}}else{this.instance.cancelHelperRemoval=false;this.instance._trigger("deactivate",c,b)}})},drag:function(c,f){var e=a(this).data("draggable"),b=this;var d=function(i){var n=this.offset.click.top,m=this.offset.click.left;var g=this.positionAbs.top,k=this.positionAbs.left;var j=i.height,l=i.width;var p=i.top,h=i.left;return a.ui.isOver(g+n,k+m,p,h,j,l)};a.each(e.sortables,function(g){this.instance.positionAbs=e.positionAbs;this.instance.helperProportions=e.helperProportions;this.instance.offset.click=e.offset.click;if(this.instance._intersectsWith(this.instance.containerCache)){if(!this.instance.isOver){this.instance.isOver=1;this.instance.currentItem=a(b).clone().appendTo(this.instance.element).data("sortable-item",true);this.instance.options._helper=this.instance.options.helper;this.instance.options.helper=function(){return f.helper[0]};c.target=this.instance.currentItem[0];this.instance._mouseCapture(c,true);this.instance._mouseStart(c,true,true);this.instance.offset.click.top=e.offset.click.top;this.instance.offset.click.left=e.offset.click.left;this.instance.offset.parent.left-=e.offset.parent.left-this.instance.offset.parent.left;this.instance.offset.parent.top-=e.offset.parent.top-this.instance.offset.parent.top;e._trigger("toSortable",c);e.dropped=this.instance.element;e.currentItem=e.element;this.instance.fromOutside=e}if(this.instance.currentItem){this.instance._mouseDrag(c)}}else{if(this.instance.isOver){this.instance.isOver=0;this.instance.cancelHelperRemoval=true;this.instance.options.revert=false;this.instance._trigger("out",c,this.instance._uiHash(this.instance));this.instance._mouseStop(c,true);this.instance.options.helper=this.instance.options._helper;this.instance.currentItem.remove();if(this.instance.placeholder){this.instance.placeholder.remove()}e._trigger("fromSortable",c);e.dropped=false}}})}});a.ui.plugin.add("draggable","cursor",{start:function(c,d){var b=a("body"),e=a(this).data("draggable").options;if(b.css("cursor")){e._cursor=b.css("cursor")}b.css("cursor",e.cursor)},stop:function(b,c){var d=a(this).data("draggable").options;if(d._cursor){a("body").css("cursor",d._cursor)}}});a.ui.plugin.add("draggable","iframeFix",{start:function(b,c){var d=a(this).data("draggable").options;a(d.iframeFix===true?"iframe":d.iframeFix).each(function(){a('<div class="ui-draggable-iframeFix" style="background: #fff;"></div>').css({width:this.offsetWidth+"px",height:this.offsetHeight+"px",position:"absolute",opacity:"0.001",zIndex:1000}).css(a(this).offset()).appendTo("body")})},stop:function(b,c){a("div.ui-draggable-iframeFix").each(function(){this.parentNode.removeChild(this)})}});a.ui.plugin.add("draggable","opacity",{start:function(c,d){var b=a(d.helper),e=a(this).data("draggable").options;if(b.css("opacity")){e._opacity=b.css("opacity")}b.css("opacity",e.opacity)},stop:function(b,c){var d=a(this).data("draggable").options;if(d._opacity){a(c.helper).css("opacity",d._opacity)}}});a.ui.plugin.add("draggable","scroll",{start:function(c,d){var b=a(this).data("draggable");if(b.scrollParent[0]!=document&&b.scrollParent[0].tagName!="HTML"){b.overflowOffset=b.scrollParent.offset()}},drag:function(d,e){var c=a(this).data("draggable"),f=c.options,b=false;if(c.scrollParent[0]!=document&&c.scrollParent[0].tagName!="HTML"){if(!f.axis||f.axis!="x"){if((c.overflowOffset.top+c.scrollParent[0].offsetHeight)-d.pageY<f.scrollSensitivity){c.scrollParent[0].scrollTop=b=c.scrollParent[0].scrollTop+f.scrollSpeed}else{if(d.pageY-c.overflowOffset.top<f.scrollSensitivity){c.scrollParent[0].scrollTop=b=c.scrollParent[0].scrollTop-f.scrollSpeed}}}if(!f.axis||f.axis!="y"){if((c.overflowOffset.left+c.scrollParent[0].offsetWidth)-d.pageX<f.scrollSensitivity){c.scrollParent[0].scrollLeft=b=c.scrollParent[0].scrollLeft+f.scrollSpeed}else{if(d.pageX-c.overflowOffset.left<f.scrollSensitivity){c.scrollParent[0].scrollLeft=b=c.scrollParent[0].scrollLeft-f.scrollSpeed}}}}else{if(!f.axis||f.axis!="x"){if(d.pageY-a(document).scrollTop()<f.scrollSensitivity){b=a(document).scrollTop(a(document).scrollTop()-f.scrollSpeed)}else{if(a(window).height()-(d.pageY-a(document).scrollTop())<f.scrollSensitivity){b=a(document).scrollTop(a(document).scrollTop()+f.scrollSpeed)}}}if(!f.axis||f.axis!="y"){if(d.pageX-a(document).scrollLeft()<f.scrollSensitivity){b=a(document).scrollLeft(a(document).scrollLeft()-f.scrollSpeed)}else{if(a(window).width()-(d.pageX-a(document).scrollLeft())<f.scrollSensitivity){b=a(document).scrollLeft(a(document).scrollLeft()+f.scrollSpeed)}}}}if(b!==false&&a.ui.ddmanager&&!f.dropBehaviour){a.ui.ddmanager.prepareOffsets(c,d)}}});a.ui.plugin.add("draggable","snap",{start:function(c,d){var b=a(this).data("draggable"),e=b.options;b.snapElements=[];a(e.snap.constructor!=String?(e.snap.items||":data(draggable)"):e.snap).each(function(){var g=a(this);var f=g.offset();if(this!=b.element[0]){b.snapElements.push({item:this,width:g.outerWidth(),height:g.outerHeight(),top:f.top,left:f.left})}})},drag:function(u,p){var g=a(this).data("draggable"),q=g.options;var y=q.snapTolerance;var x=p.offset.left,w=x+g.helperProportions.width,f=p.offset.top,e=f+g.helperProportions.height;for(var v=g.snapElements.length-1;v>=0;v--){var s=g.snapElements[v].left,n=s+g.snapElements[v].width,m=g.snapElements[v].top,A=m+g.snapElements[v].height;if(!((s-y<x&&x<n+y&&m-y<f&&f<A+y)||(s-y<x&&x<n+y&&m-y<e&&e<A+y)||(s-y<w&&w<n+y&&m-y<f&&f<A+y)||(s-y<w&&w<n+y&&m-y<e&&e<A+y))){if(g.snapElements[v].snapping){(g.options.snap.release&&g.options.snap.release.call(g.element,u,a.extend(g._uiHash(),{snapItem:g.snapElements[v].item})))}g.snapElements[v].snapping=false;continue}if(q.snapMode!="inner"){var c=Math.abs(m-e)<=y;var z=Math.abs(A-f)<=y;var j=Math.abs(s-w)<=y;var k=Math.abs(n-x)<=y;if(c){p.position.top=g._convertPositionTo("relative",{top:m-g.helperProportions.height,left:0}).top-g.margins.top}if(z){p.position.top=g._convertPositionTo("relative",{top:A,left:0}).top-g.margins.top}if(j){p.position.left=g._convertPositionTo("relative",{top:0,left:s-g.helperProportions.width}).left-g.margins.left}if(k){p.position.left=g._convertPositionTo("relative",{top:0,left:n}).left-g.margins.left}}var h=(c||z||j||k);if(q.snapMode!="outer"){var c=Math.abs(m-f)<=y;var z=Math.abs(A-e)<=y;var j=Math.abs(s-x)<=y;var k=Math.abs(n-w)<=y;if(c){p.position.top=g._convertPositionTo("relative",{top:m,left:0}).top-g.margins.top}if(z){p.position.top=g._convertPositionTo("relative",{top:A-g.helperProportions.height,left:0}).top-g.margins.top}if(j){p.position.left=g._convertPositionTo("relative",{top:0,left:s}).left-g.margins.left}if(k){p.position.left=g._convertPositionTo("relative",{top:0,left:n-g.helperProportions.width}).left-g.margins.left}}if(!g.snapElements[v].snapping&&(c||z||j||k||h)){(g.options.snap.snap&&g.options.snap.snap.call(g.element,u,a.extend(g._uiHash(),{snapItem:g.snapElements[v].item})))}g.snapElements[v].snapping=(c||z||j||k||h)}}});a.ui.plugin.add("draggable","stack",{start:function(b,c){var e=a(this).data("draggable").options;var d=a.makeArray(a(e.stack.group)).sort(function(g,f){return(parseInt(a(g).css("zIndex"),10)||e.stack.min)-(parseInt(a(f).css("zIndex"),10)||e.stack.min)});a(d).each(function(f){this.style.zIndex=e.stack.min+f});this[0].style.zIndex=e.stack.min+d.length}});a.ui.plugin.add("draggable","zIndex",{start:function(c,d){var b=a(d.helper),e=a(this).data("draggable").options;if(b.css("zIndex")){e._zIndex=b.css("zIndex")}b.css("zIndex",e.zIndex)},stop:function(b,c){var d=a(this).data("draggable").options;if(d._zIndex){a(c.helper).css("zIndex",d._zIndex)}}})})(jQuery);;/*
 * jQuery UI Droppable 1.7
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Droppables
 *
 * Depends:
 *	ui.core.js
 *	ui.draggable.js
 */(function(a){a.widget("ui.droppable",{_init:function(){var c=this.options,b=c.accept;this.isover=0;this.isout=1;this.options.accept=this.options.accept&&a.isFunction(this.options.accept)?this.options.accept:function(e){return e.is(b)};this.proportions={width:this.element[0].offsetWidth,height:this.element[0].offsetHeight};a.ui.ddmanager.droppables[this.options.scope]=a.ui.ddmanager.droppables[this.options.scope]||[];a.ui.ddmanager.droppables[this.options.scope].push(this);(this.options.addClasses&&this.element.addClass("ui-droppable"))},destroy:function(){var b=a.ui.ddmanager.droppables[this.options.scope];for(var c=0;c<b.length;c++){if(b[c]==this){b.splice(c,1)}}this.element.removeClass("ui-droppable ui-droppable-disabled").removeData("droppable").unbind(".droppable")},_setData:function(b,c){if(b=="accept"){this.options.accept=c&&a.isFunction(c)?c:function(e){return e.is(accept)}}else{a.widget.prototype._setData.apply(this,arguments)}},_activate:function(c){var b=a.ui.ddmanager.current;if(this.options.activeClass){this.element.addClass(this.options.activeClass)}(b&&this._trigger("activate",c,this.ui(b)))},_deactivate:function(c){var b=a.ui.ddmanager.current;if(this.options.activeClass){this.element.removeClass(this.options.activeClass)}(b&&this._trigger("deactivate",c,this.ui(b)))},_over:function(c){var b=a.ui.ddmanager.current;if(!b||(b.currentItem||b.element)[0]==this.element[0]){return}if(this.options.accept.call(this.element[0],(b.currentItem||b.element))){if(this.options.hoverClass){this.element.addClass(this.options.hoverClass)}this._trigger("over",c,this.ui(b))}},_out:function(c){var b=a.ui.ddmanager.current;if(!b||(b.currentItem||b.element)[0]==this.element[0]){return}if(this.options.accept.call(this.element[0],(b.currentItem||b.element))){if(this.options.hoverClass){this.element.removeClass(this.options.hoverClass)}this._trigger("out",c,this.ui(b))}},_drop:function(c,d){var b=d||a.ui.ddmanager.current;if(!b||(b.currentItem||b.element)[0]==this.element[0]){return false}var e=false;this.element.find(":data(droppable)").not(".ui-draggable-dragging").each(function(){var f=a.data(this,"droppable");if(f.options.greedy&&a.ui.intersect(b,a.extend(f,{offset:f.element.offset()}),f.options.tolerance)){e=true;return false}});if(e){return false}if(this.options.accept.call(this.element[0],(b.currentItem||b.element))){if(this.options.activeClass){this.element.removeClass(this.options.activeClass)}if(this.options.hoverClass){this.element.removeClass(this.options.hoverClass)}this._trigger("drop",c,this.ui(b));return this.element}return false},ui:function(b){return{draggable:(b.currentItem||b.element),helper:b.helper,position:b.position,absolutePosition:b.positionAbs,offset:b.positionAbs}}});a.extend(a.ui.droppable,{version:"1.7",eventPrefix:"drop",defaults:{accept:"*",activeClass:false,addClasses:true,greedy:false,hoverClass:false,scope:"default",tolerance:"intersect"}});a.ui.intersect=function(q,j,o){if(!j.offset){return false}var e=(q.positionAbs||q.position.absolute).left,d=e+q.helperProportions.width,n=(q.positionAbs||q.position.absolute).top,m=n+q.helperProportions.height;var g=j.offset.left,c=g+j.proportions.width,p=j.offset.top,k=p+j.proportions.height;switch(o){case"fit":return(g<e&&d<c&&p<n&&m<k);break;case"intersect":return(g<e+(q.helperProportions.width/2)&&d-(q.helperProportions.width/2)<c&&p<n+(q.helperProportions.height/2)&&m-(q.helperProportions.height/2)<k);break;case"pointer":var h=((q.positionAbs||q.position.absolute).left+(q.clickOffset||q.offset.click).left),i=((q.positionAbs||q.position.absolute).top+(q.clickOffset||q.offset.click).top),f=a.ui.isOver(i,h,p,g,j.proportions.height,j.proportions.width);return f;break;case"touch":return((n>=p&&n<=k)||(m>=p&&m<=k)||(n<p&&m>k))&&((e>=g&&e<=c)||(d>=g&&d<=c)||(e<g&&d>c));break;default:return false;break}};a.ui.ddmanager={current:null,droppables:{"default":[]},prepareOffsets:function(e,g){var b=a.ui.ddmanager.droppables[e.options.scope];var f=g?g.type:null;var h=(e.currentItem||e.element).find(":data(droppable)").andSelf();droppablesLoop:for(var d=0;d<b.length;d++){if(b[d].options.disabled||(e&&!b[d].options.accept.call(b[d].element[0],(e.currentItem||e.element)))){continue}for(var c=0;c<h.length;c++){if(h[c]==b[d].element[0]){b[d].proportions.height=0;continue droppablesLoop}}b[d].visible=b[d].element.css("display")!="none";if(!b[d].visible){continue}b[d].offset=b[d].element.offset();b[d].proportions={width:b[d].element[0].offsetWidth,height:b[d].element[0].offsetHeight};if(f=="mousedown"){b[d]._activate.call(b[d],g)}}},drop:function(b,c){var d=false;a.each(a.ui.ddmanager.droppables[b.options.scope],function(){if(!this.options){return}if(!this.options.disabled&&this.visible&&a.ui.intersect(b,this,this.options.tolerance)){d=this._drop.call(this,c)}if(!this.options.disabled&&this.visible&&this.options.accept.call(this.element[0],(b.currentItem||b.element))){this.isout=1;this.isover=0;this._deactivate.call(this,c)}});return d},drag:function(b,c){if(b.options.refreshPositions){a.ui.ddmanager.prepareOffsets(b,c)}a.each(a.ui.ddmanager.droppables[b.options.scope],function(){if(this.options.disabled||this.greedyChild||!this.visible){return}var e=a.ui.intersect(b,this,this.options.tolerance);var g=!e&&this.isover==1?"isout":(e&&this.isover==0?"isover":null);if(!g){return}var f;if(this.options.greedy){var d=this.element.parents(":data(droppable):eq(0)");if(d.length){f=a.data(d[0],"droppable");f.greedyChild=(g=="isover"?1:0)}}if(f&&g=="isover"){f.isover=0;f.isout=1;f._out.call(f,c)}this[g]=1;this[g=="isout"?"isover":"isout"]=0;this[g=="isover"?"_over":"_out"].call(this,c);if(f&&g=="isout"){f.isout=0;f.isover=1;f._over.call(f,c)}})}}})(jQuery);;/*
 * jQuery UI Resizable 1.7
 *
 * 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/Resizables
 *
 * Depends:
 *	ui.core.js
 */(function(c){c.widget("ui.resizable",c.extend({},c.ui.mouse,{_init:function(){var e=this,j=this.options;this.element.addClass("ui-resizable");c.extend(this,{_aspectRatio:!!(j.aspectRatio),aspectRatio:j.aspectRatio,originalElement:this.element,_proportionallyResizeElements:[],_helper:j.helper||j.ghost||j.animate?j.helper||"ui-resizable-helper":null});if(this.element[0].nodeName.match(/canvas|textarea|input|select|button|img/i)){if(/relative/.test(this.element.css("position"))&&c.browser.opera){this.element.css({position:"relative",top:"auto",left:"auto"})}this.element.wrap(c('<div class="ui-wrapper" style="overflow: hidden;"></div>').css({position:this.element.css("position"),width:this.element.outerWidth(),height:this.element.outerHeight(),top:this.element.css("top"),left:this.element.css("left")}));this.element=this.element.parent().data("resizable",this.element.data("resizable"));this.elementIsWrapper=true;this.element.css({marginLeft:this.originalElement.css("marginLeft"),marginTop:this.originalElement.css("marginTop"),marginRight:this.originalElement.css("marginRight"),marginBottom:this.originalElement.css("marginBottom")});this.originalElement.css({marginLeft:0,marginTop:0,marginRight:0,marginBottom:0});this.originalResizeStyle=this.originalElement.css("resize");this.originalElement.css("resize","none");this._proportionallyResizeElements.push(this.originalElement.css({position:"static",zoom:1,display:"block"}));this.originalElement.css({margin:this.originalElement.css("margin")});this._proportionallyResize()}this.handles=j.handles||(!c(".ui-resizable-handle",this.element).length?"e,s,se":{n:".ui-resizable-n",e:".ui-resizable-e",s:".ui-resizable-s",w:".ui-resizable-w",se:".ui-resizable-se",sw:".ui-resizable-sw",ne:".ui-resizable-ne",nw:".ui-resizable-nw"});if(this.handles.constructor==String){if(this.handles=="all"){this.handles="n,e,s,w,se,sw,ne,nw"}var k=this.handles.split(",");this.handles={};for(var f=0;f<k.length;f++){var h=c.trim(k[f]),d="ui-resizable-"+h;var g=c('<div class="ui-resizable-handle '+d+'"></div>');if(/sw|se|ne|nw/.test(h)){g.css({zIndex:++j.zIndex})}if("se"==h){g.addClass("ui-icon ui-icon-gripsmall-diagonal-se")}this.handles[h]=".ui-resizable-"+h;this.element.append(g)}}this._renderAxis=function(p){p=p||this.element;for(var m in this.handles){if(this.handles[m].constructor==String){this.handles[m]=c(this.handles[m],this.element).show()}if(this.elementIsWrapper&&this.originalElement[0].nodeName.match(/textarea|input|select|button/i)){var n=c(this.handles[m],this.element),o=0;o=/sw|ne|nw|se|n|s/.test(m)?n.outerHeight():n.outerWidth();var l=["padding",/ne|nw|n/.test(m)?"Top":/se|sw|s/.test(m)?"Bottom":/^e$/.test(m)?"Right":"Left"].join("");p.css(l,o);this._proportionallyResize()}if(!c(this.handles[m]).length){continue}}};this._renderAxis(this.element);this._handles=c(".ui-resizable-handle",this.element).disableSelection();this._handles.mouseover(function(){if(!e.resizing){if(this.className){var i=this.className.match(/ui-resizable-(se|sw|ne|nw|n|e|s|w)/i)}e.axis=i&&i[1]?i[1]:"se"}});if(j.autoHide){this._handles.hide();c(this.element).addClass("ui-resizable-autohide").hover(function(){c(this).removeClass("ui-resizable-autohide");e._handles.show()},function(){if(!e.resizing){c(this).addClass("ui-resizable-autohide");e._handles.hide()}})}this._mouseInit()},destroy:function(){this._mouseDestroy();var d=function(f){c(f).removeClass("ui-resizable ui-resizable-disabled ui-resizable-resizing").removeData("resizable").unbind(".resizable").find(".ui-resizable-handle").remove()};if(this.elementIsWrapper){d(this.element);var e=this.element;e.parent().append(this.originalElement.css({position:e.css("position"),width:e.outerWidth(),height:e.outerHeight(),top:e.css("top"),left:e.css("left")})).end().remove()}this.originalElement.css("resize",this.originalResizeStyle);d(this.originalElement)},_mouseCapture:function(e){var f=false;for(var d in this.handles){if(c(this.handles[d])[0]==e.target){f=true}}return this.options.disabled||!!f},_mouseStart:function(f){var i=this.options,e=this.element.position(),d=this.element;this.resizing=true;this.documentScroll={top:c(document).scrollTop(),left:c(document).scrollLeft()};if(d.is(".ui-draggable")||(/absolute/).test(d.css("position"))){d.css({position:"absolute",top:e.top,left:e.left})}if(c.browser.opera&&(/relative/).test(d.css("position"))){d.css({position:"relative",top:"auto",left:"auto"})}this._renderProxy();var j=b(this.helper.css("left")),g=b(this.helper.css("top"));if(i.containment){j+=c(i.containment).scrollLeft()||0;g+=c(i.containment).scrollTop()||0}this.offset=this.helper.offset();this.position={left:j,top:g};this.size=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalSize=this._helper?{width:d.outerWidth(),height:d.outerHeight()}:{width:d.width(),height:d.height()};this.originalPosition={left:j,top:g};this.sizeDiff={width:d.outerWidth()-d.width(),height:d.outerHeight()-d.height()};this.originalMousePosition={left:f.pageX,top:f.pageY};this.aspectRatio=(typeof i.aspectRatio=="number")?i.aspectRatio:((this.originalSize.width/this.originalSize.height)||1);var h=c(".ui-resizable-"+this.axis).css("cursor");c("body").css("cursor",h=="auto"?this.axis+"-resize":h);d.addClass("ui-resizable-resizing");this._propagate("start",f);return true},_mouseDrag:function(d){var g=this.helper,f=this.options,l={},p=this,i=this.originalMousePosition,m=this.axis;var q=(d.pageX-i.left)||0,n=(d.pageY-i.top)||0;var h=this._change[m];if(!h){return false}var k=h.apply(this,[d,q,n]),j=c.browser.msie&&c.browser.version<7,e=this.sizeDiff;if(this._aspectRatio||d.shiftKey){k=this._updateRatio(k,d)}k=this._respectSize(k,d);this._propagate("resize",d);g.css({top:this.position.top+"px",left:this.position.left+"px",width:this.size.width+"px",height:this.size.height+"px"});if(!this._helper&&this._proportionallyResizeElements.length){this._proportionallyResize()}this._updateCache(k);this._trigger("resize",d,this.ui());return false},_mouseStop:function(g){this.resizing=false;var h=this.options,l=this;if(this._helper){var f=this._proportionallyResizeElements,d=f.length&&(/textarea/i).test(f[0].nodeName),e=d&&c.ui.hasScroll(f[0],"left")?0:l.sizeDiff.height,j=d?0:l.sizeDiff.width;var m={width:(l.size.width-j),height:(l.size.height-e)},i=(parseInt(l.element.css("left"),10)+(l.position.left-l.originalPosition.left))||null,k=(parseInt(l.element.css("top"),10)+(l.position.top-l.originalPosition.top))||null;if(!h.animate){this.element.css(c.extend(m,{top:k,left:i}))}l.helper.height(l.size.height);l.helper.width(l.size.width);if(this._helper&&!h.animate){this._proportionallyResize()}}c("body").css("cursor","auto");this.element.removeClass("ui-resizable-resizing");this._propagate("stop",g);if(this._helper){this.helper.remove()}return false},_updateCache:function(d){var e=this.options;this.offset=this.helper.offset();if(a(d.left)){this.position.left=d.left}if(a(d.top)){this.position.top=d.top}if(a(d.height)){this.size.height=d.height}if(a(d.width)){this.size.width=d.width}},_updateRatio:function(g,f){var h=this.options,i=this.position,e=this.size,d=this.axis;if(g.height){g.width=(e.height*this.aspectRatio)}else{if(g.width){g.height=(e.width/this.aspectRatio)}}if(d=="sw"){g.left=i.left+(e.width-g.width);g.top=null}if(d=="nw"){g.top=i.top+(e.height-g.height);g.left=i.left+(e.width-g.width)}return g},_respectSize:function(k,f){var i=this.helper,h=this.options,q=this._aspectRatio||f.shiftKey,p=this.axis,s=a(k.width)&&h.maxWidth&&(h.maxWidth<k.width),l=a(k.height)&&h.maxHeight&&(h.maxHeight<k.height),g=a(k.width)&&h.minWidth&&(h.minWidth>k.width),r=a(k.height)&&h.minHeight&&(h.minHeight>k.height);if(g){k.width=h.minWidth}if(r){k.height=h.minHeight}if(s){k.width=h.maxWidth}if(l){k.height=h.maxHeight}var e=this.originalPosition.left+this.originalSize.width,n=this.position.top+this.size.height;var j=/sw|nw|w/.test(p),d=/nw|ne|n/.test(p);if(g&&j){k.left=e-h.minWidth}if(s&&j){k.left=e-h.maxWidth}if(r&&d){k.top=n-h.minHeight}if(l&&d){k.top=n-h.maxHeight}var m=!k.width&&!k.height;if(m&&!k.left&&k.top){k.top=null}else{if(m&&!k.top&&k.left){k.left=null}}return k},_proportionallyResize:function(){var j=this.options;if(!this._proportionallyResizeElements.length){return}var f=this.helper||this.element;for(var e=0;e<this._proportionallyResizeElements.length;e++){var g=this._proportionallyResizeElements[e];if(!this.borderDif){var d=[g.css("borderTopWidth"),g.css("borderRightWidth"),g.css("borderBottomWidth"),g.css("borderLeftWidth")],h=[g.css("paddingTop"),g.css("paddingRight"),g.css("paddingBottom"),g.css("paddingLeft")];this.borderDif=c.map(d,function(k,m){var l=parseInt(k,10)||0,n=parseInt(h[m],10)||0;return l+n})}if(c.browser.msie&&!(!(c(f).is(":hidden")||c(f).parents(":hidden").length))){continue}g.css({height:(f.height()-this.borderDif[0]-this.borderDif[2])||0,width:(f.width()-this.borderDif[1]-this.borderDif[3])||0})}},_renderProxy:function(){var e=this.element,h=this.options;this.elementOffset=e.offset();if(this._helper){this.helper=this.helper||c('<div style="overflow:hidden;"></div>');var d=c.browser.msie&&c.browser.version<7,f=(d?1:0),g=(d?2:-1);this.helper.addClass(this._helper).css({width:this.element.outerWidth()+g,height:this.element.outerHeight()+g,position:"absolute",left:this.elementOffset.left-f+"px",top:this.elementOffset.top-f+"px",zIndex:++h.zIndex});this.helper.appendTo("body").disableSelection()}else{this.helper=this.element}},_change:{e:function(f,e,d){return{width:this.originalSize.width+e}},w:function(g,e,d){var i=this.options,f=this.originalSize,h=this.originalPosition;return{left:h.left+e,width:f.width-e}},n:function(g,e,d){var i=this.options,f=this.originalSize,h=this.originalPosition;return{top:h.top+d,height:f.height-d}},s:function(f,e,d){return{height:this.originalSize.height+d}},se:function(f,e,d){return c.extend(this._change.s.apply(this,arguments),this._change.e.apply(this,[f,e,d]))},sw:function(f,e,d){return c.extend(this._change.s.apply(this,arguments),this._change.w.apply(this,[f,e,d]))},ne:function(f,e,d){return c.extend(this._change.n.apply(this,arguments),this._change.e.apply(this,[f,e,d]))},nw:function(f,e,d){return c.extend(this._change.n.apply(this,arguments),this._change.w.apply(this,[f,e,d]))}},_propagate:function(e,d){c.ui.plugin.call(this,e,[d,this.ui()]);(e!="resize"&&this._trigger(e,d,this.ui()))},plugins:{},ui:function(){return{originalElement:this.originalElement,element:this.element,helper:this.helper,position:this.position,size:this.size,originalSize:this.originalSize,originalPosition:this.originalPosition}}}));c.extend(c.ui.resizable,{version:"1.7",eventPrefix:"resize",defaults:{alsoResize:false,animate:false,animateDuration:"slow",animateEasing:"swing",aspectRatio:false,autoHide:false,cancel:":input,option",containment:false,delay:0,distance:1,ghost:false,grid:false,handles:"e,s,se",helper:false,maxHeight:null,maxWidth:null,minHeight:10,minWidth:10,zIndex:1000}});c.ui.plugin.add("resizable","alsoResize",{start:function(e,f){var d=c(this).data("resizable"),g=d.options;_store=function(h){c(h).each(function(){c(this).data("resizable-alsoresize",{width:parseInt(c(this).width(),10),height:parseInt(c(this).height(),10),left:parseInt(c(this).css("left"),10),top:parseInt(c(this).css("top"),10)})})};if(typeof(g.alsoResize)=="object"&&!g.alsoResize.parentNode){if(g.alsoResize.length){g.alsoResize=g.alsoResize[0];_store(g.alsoResize)}else{c.each(g.alsoResize,function(h,i){_store(h)})}}else{_store(g.alsoResize)}},resize:function(f,h){var e=c(this).data("resizable"),i=e.options,g=e.originalSize,k=e.originalPosition;var j={height:(e.size.height-g.height)||0,width:(e.size.width-g.width)||0,top:(e.position.top-k.top)||0,left:(e.position.left-k.left)||0},d=function(l,m){c(l).each(function(){var p=c(this),q=c(this).data("resizable-alsoresize"),o={},n=m&&m.length?m:["width","height","top","left"];c.each(n||["width","height","top","left"],function(r,t){var s=(q[t]||0)+(j[t]||0);if(s&&s>=0){o[t]=s||null}});if(/relative/.test(p.css("position"))&&c.browser.opera){e._revertToRelativePosition=true;p.css({position:"absolute",top:"auto",left:"auto"})}p.css(o)})};if(typeof(i.alsoResize)=="object"&&!i.alsoResize.nodeType){c.each(i.alsoResize,function(l,m){d(l,m)})}else{d(i.alsoResize)}},stop:function(e,f){var d=c(this).data("resizable");if(d._revertToRelativePosition&&c.browser.opera){d._revertToRelativePosition=false;el.css({position:"relative"})}c(this).removeData("resizable-alsoresize-start")}});c.ui.plugin.add("resizable","animate",{stop:function(h,m){var n=c(this).data("resizable"),i=n.options;var g=n._proportionallyResizeElements,d=g.length&&(/textarea/i).test(g[0].nodeName),e=d&&c.ui.hasScroll(g[0],"left")?0:n.sizeDiff.height,k=d?0:n.sizeDiff.width;var f={width:(n.size.width-k),height:(n.size.height-e)},j=(parseInt(n.element.css("left"),10)+(n.position.left-n.originalPosition.left))||null,l=(parseInt(n.element.css("top"),10)+(n.position.top-n.originalPosition.top))||null;n.element.animate(c.extend(f,l&&j?{top:l,left:j}:{}),{duration:i.animateDuration,easing:i.animateEasing,step:function(){var o={width:parseInt(n.element.css("width"),10),height:parseInt(n.element.css("height"),10),top:parseInt(n.element.css("top"),10),left:parseInt(n.element.css("left"),10)};if(g&&g.length){c(g[0]).css({width:o.width,height:o.height})}n._updateCache(o);n._propagate("resize",h)}})}});c.ui.plugin.add("resizable","containment",{start:function(e,q){var s=c(this).data("resizable"),i=s.options,k=s.element;var f=i.containment,j=(f instanceof c)?f.get(0):(/parent/.test(f))?k.parent().get(0):f;if(!j){return}s.containerElement=c(j);if(/document/.test(f)||f==document){s.containerOffset={left:0,top:0};s.containerPosition={left:0,top:0};s.parentData={element:c(document),left:0,top:0,width:c(document).width(),height:c(document).height()||document.body.parentNode.scrollHeight}}else{var m=c(j),h=[];c(["Top","Right","Left","Bottom"]).each(function(p,o){h[p]=b(m.css("padding"+o))});s.containerOffset=m.offset();s.containerPosition=m.position();s.containerSize={height:(m.innerHeight()-h[3]),width:(m.innerWidth()-h[1])};var n=s.containerOffset,d=s.containerSize.height,l=s.containerSize.width,g=(c.ui.hasScroll(j,"left")?j.scrollWidth:l),r=(c.ui.hasScroll(j)?j.scrollHeight:d);s.parentData={element:j,left:n.left,top:n.top,width:g,height:r}}},resize:function(f,p){var s=c(this).data("resizable"),h=s.options,e=s.containerSize,n=s.containerOffset,l=s.size,m=s.position,q=h._aspectRatio||f.shiftKey,d={top:0,left:0},g=s.containerElement;if(g[0]!=document&&(/static/).test(g.css("position"))){d=n}if(m.left<(s._helper?n.left:0)){s.size.width=s.size.width+(s._helper?(s.position.left-n.left):(s.position.left-d.left));if(q){s.size.height=s.size.width/h.aspectRatio}s.position.left=h.helper?n.left:0}if(m.top<(s._helper?n.top:0)){s.size.height=s.size.height+(s._helper?(s.position.top-n.top):s.position.top);if(q){s.size.width=s.size.height*h.aspectRatio}s.position.top=s._helper?n.top:0}s.offset.left=s.parentData.left+s.position.left;s.offset.top=s.parentData.top+s.position.top;var k=Math.abs((s._helper?s.offset.left-d.left:(s.offset.left-d.left))+s.sizeDiff.width),r=Math.abs((s._helper?s.offset.top-d.top:(s.offset.top-n.top))+s.sizeDiff.height);var j=s.containerElement.get(0)==s.element.parent().get(0),i=/relative|absolute/.test(s.containerElement.css("position"));if(j&&i){k-=s.parentData.left}if(k+s.size.width>=s.parentData.width){s.size.width=s.parentData.width-k;if(q){s.size.height=s.size.width/h.aspectRatio}}if(r+s.size.height>=s.parentData.height){s.size.height=s.parentData.height-r;if(q){s.size.width=s.size.height*h.aspectRatio}}},stop:function(e,m){var p=c(this).data("resizable"),f=p.options,k=p.position,l=p.containerOffset,d=p.containerPosition,g=p.containerElement;var i=c(p.helper),q=i.offset(),n=i.outerWidth()-p.sizeDiff.width,j=i.outerHeight()-p.sizeDiff.height;if(p._helper&&!f.animate&&(/relative/).test(g.css("position"))){c(this).css({left:q.left-d.left-l.left,width:n,height:j})}if(p._helper&&!f.animate&&(/static/).test(g.css("position"))){c(this).css({left:q.left-d.left-l.left,width:n,height:j})}}});c.ui.plugin.add("resizable","ghost",{start:function(f,g){var d=c(this).data("resizable"),h=d.options,e=d.size;d.ghost=d.originalElement.clone();d.ghost.css({opacity:0.25,display:"block",position:"relative",height:e.height,width:e.width,margin:0,left:0,top:0}).addClass("ui-resizable-ghost").addClass(typeof h.ghost=="string"?h.ghost:"");d.ghost.appendTo(d.helper)},resize:function(e,f){var d=c(this).data("resizable"),g=d.options;if(d.ghost){d.ghost.css({position:"relative",height:d.size.height,width:d.size.width})}},stop:function(e,f){var d=c(this).data("resizable"),g=d.options;if(d.ghost&&d.helper){d.helper.get(0).removeChild(d.ghost.get(0))}}});c.ui.plugin.add("resizable","grid",{resize:function(d,l){var n=c(this).data("resizable"),g=n.options,j=n.size,h=n.originalSize,i=n.originalPosition,m=n.axis,k=g._aspectRatio||d.shiftKey;g.grid=typeof g.grid=="number"?[g.grid,g.grid]:g.grid;var f=Math.round((j.width-h.width)/(g.grid[0]||1))*(g.grid[0]||1),e=Math.round((j.height-h.height)/(g.grid[1]||1))*(g.grid[1]||1);if(/^(se|s|e)$/.test(m)){n.size.width=h.width+f;n.size.height=h.height+e}else{if(/^(ne)$/.test(m)){n.size.width=h.width+f;n.size.height=h.height+e;n.position.top=i.top-e}else{if(/^(sw)$/.test(m)){n.size.width=h.width+f;n.size.height=h.height+e;n.position.left=i.left-f}else{n.size.width=h.width+f;n.size.height=h.height+e;n.position.top=i.top-e;n.position.left=i.left-f}}}}});var b=function(d){return parseInt(d,10)||0};var a=function(d){return !isNaN(parseInt(d,10))}})(jQuery);;/*
 * jQuery UI Selectable 1.7
 *
 * 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/Selectables
 *
 * Depends:
 *	ui.core.js
 */(function(a){a.widget("ui.selectable",a.extend({},a.ui.mouse,{_init:function(){var b=this;this.element.addClass("ui-selectable");this.dragged=false;var c;this.refresh=function(){c=a(b.options.filter,b.element[0]);c.each(function(){var d=a(this);var e=d.offset();a.data(this,"selectable-item",{element:this,$element:d,left:e.left,top:e.top,right:e.left+d.outerWidth(),bottom:e.top+d.outerHeight(),startselected:false,selected:d.hasClass("ui-selected"),selecting:d.hasClass("ui-selecting"),unselecting:d.hasClass("ui-unselecting")})})};this.refresh();this.selectees=c.addClass("ui-selectee");this._mouseInit();this.helper=a(document.createElement("div")).css({border:"1px dotted black"}).addClass("ui-selectable-helper")},destroy:function(){this.element.removeClass("ui-selectable ui-selectable-disabled").removeData("selectable").unbind(".selectable");this._mouseDestroy()},_mouseStart:function(d){var b=this;this.opos=[d.pageX,d.pageY];if(this.options.disabled){return}var c=this.options;this.selectees=a(c.filter,this.element[0]);this._trigger("start",d);a("body").append(this.helper);this.helper.css({"z-index":100,position:"absolute",left:d.clientX,top:d.clientY,width:0,height:0});if(c.autoRefresh){this.refresh()}this.selectees.filter(".ui-selected").each(function(){var e=a.data(this,"selectable-item");e.startselected=true;if(!d.metaKey){e.$element.removeClass("ui-selected");e.selected=false;e.$element.addClass("ui-unselecting");e.unselecting=true;b._trigger("unselecting",d,{unselecting:e.element})}});a(d.target).parents().andSelf().each(function(){var e=a.data(this,"selectable-item");if(e){e.$element.removeClass("ui-unselecting").addClass("ui-selecting");e.unselecting=false;e.selecting=true;e.selected=true;b._trigger("selecting",d,{selecting:e.element});return false}})},_mouseDrag:function(i){var c=this;this.dragged=true;if(this.options.disabled){return}var e=this.options;var d=this.opos[0],h=this.opos[1],b=i.pageX,g=i.pageY;if(d>b){var f=b;b=d;d=f}if(h>g){var f=g;g=h;h=f}this.helper.css({left:d,top:h,width:b-d,height:g-h});this.selectees.each(function(){var j=a.data(this,"selectable-item");if(!j||j.element==c.element[0]){return}var k=false;if(e.tolerance=="touch"){k=(!(j.left>b||j.right<d||j.top>g||j.bottom<h))}else{if(e.tolerance=="fit"){k=(j.left>d&&j.right<b&&j.top>h&&j.bottom<g)}}if(k){if(j.selected){j.$element.removeClass("ui-selected");j.selected=false}if(j.unselecting){j.$element.removeClass("ui-unselecting");j.unselecting=false}if(!j.selecting){j.$element.addClass("ui-selecting");j.selecting=true;c._trigger("selecting",i,{selecting:j.element})}}else{if(j.selecting){if(i.metaKey&&j.startselected){j.$element.removeClass("ui-selecting");j.selecting=false;j.$element.addClass("ui-selected");j.selected=true}else{j.$element.removeClass("ui-selecting");j.selecting=false;if(j.startselected){j.$element.addClass("ui-unselecting");j.unselecting=true}c._trigger("unselecting",i,{unselecting:j.element})}}if(j.selected){if(!i.metaKey&&!j.startselected){j.$element.removeClass("ui-selected");j.selected=false;j.$element.addClass("ui-unselecting");j.unselecting=true;c._trigger("unselecting",i,{unselecting:j.element})}}}});return false},_mouseStop:function(d){var b=this;this.dragged=false;var c=this.options;a(".ui-unselecting",this.element[0]).each(function(){var e=a.data(this,"selectable-item");e.$element.removeClass("ui-unselecting");e.unselecting=false;e.startselected=false;b._trigger("unselected",d,{unselected:e.element})});a(".ui-selecting",this.element[0]).each(function(){var e=a.data(this,"selectable-item");e.$element.removeClass("ui-selecting").addClass("ui-selected");e.selecting=false;e.selected=true;e.startselected=true;b._trigger("selected",d,{selected:e.element})});this._trigger("stop",d);this.helper.remove();return false}}));a.extend(a.ui.selectable,{version:"1.7",defaults:{appendTo:"body",autoRefresh:true,cancel:":input,option",delay:0,distance:0,filter:"*",tolerance:"touch"}})})(jQuery);;/*
 * jQuery UI Sortable 1.7
 *
 * 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/Sortables
 *
 * Depends:
 *	ui.core.js
 */(function(a){a.widget("ui.sortable",a.extend({},a.ui.mouse,{_init:function(){var b=this.options;this.containerCache={};this.element.addClass("ui-sortable");this.refresh();this.floating=this.items.length?(/left|right/).test(this.items[0].item.css("float")):false;this.offset=this.element.offset();this._mouseInit()},destroy:function(){this.element.removeClass("ui-sortable ui-sortable-disabled").removeData("sortable").unbind(".sortable");this._mouseDestroy();for(var b=this.items.length-1;b>=0;b--){this.items[b].item.removeData("sortable-item")}},_mouseCapture:function(e,f){if(this.reverting){return false}if(this.options.disabled||this.options.type=="static"){return false}this._refreshItems(e);var d=null,c=this,b=a(e.target).parents().each(function(){if(a.data(this,"sortable-item")==c){d=a(this);return false}});if(a.data(e.target,"sortable-item")==c){d=a(e.target)}if(!d){return false}if(this.options.handle&&!f){var g=false;a(this.options.handle,d).find("*").andSelf().each(function(){if(this==e.target){g=true}});if(!g){return false}}this.currentItem=d;this._removeCurrentsFromItems();return true},_mouseStart:function(e,f,b){var g=this.options,c=this;this.currentContainer=this;this.refreshPositions();this.helper=this._createHelper(e);this._cacheHelperProportions();this._cacheMargins();this.scrollParent=this.helper.scrollParent();this.offset=this.currentItem.offset();this.offset={top:this.offset.top-this.margins.top,left:this.offset.left-this.margins.left};this.helper.css("position","absolute");this.cssPosition=this.helper.css("position");a.extend(this.offset,{click:{left:e.pageX-this.offset.left,top:e.pageY-this.offset.top},parent:this._getParentOffset(),relative:this._getRelativeOffset()});this.originalPosition=this._generatePosition(e);this.originalPageX=e.pageX;this.originalPageY=e.pageY;if(g.cursorAt){this._adjustOffsetFromHelper(g.cursorAt)}this.domPosition={prev:this.currentItem.prev()[0],parent:this.currentItem.parent()[0]};if(this.helper[0]!=this.currentItem[0]){this.currentItem.hide()}this._createPlaceholder();if(g.containment){this._setContainment()}if(g.cursor){if(a("body").css("cursor")){this._storedCursor=a("body").css("cursor")}a("body").css("cursor",g.cursor)}if(g.opacity){if(this.helper.css("opacity")){this._storedOpacity=this.helper.css("opacity")}this.helper.css("opacity",g.opacity)}if(g.zIndex){if(this.helper.css("zIndex")){this._storedZIndex=this.helper.css("zIndex")}this.helper.css("zIndex",g.zIndex)}if(this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"){this.overflowOffset=this.scrollParent.offset()}this._trigger("start",e,this._uiHash());if(!this._preserveHelperProportions){this._cacheHelperProportions()}if(!b){for(var d=this.containers.length-1;d>=0;d--){this.containers[d]._trigger("activate",e,c._uiHash(this))}}if(a.ui.ddmanager){a.ui.ddmanager.current=this}if(a.ui.ddmanager&&!g.dropBehaviour){a.ui.ddmanager.prepareOffsets(this,e)}this.dragging=true;this.helper.addClass("ui-sortable-helper");this._mouseDrag(e);return true},_mouseDrag:function(f){this.position=this._generatePosition(f);this.positionAbs=this._convertPositionTo("absolute");if(!this.lastPositionAbs){this.lastPositionAbs=this.positionAbs}if(this.options.scroll){var g=this.options,b=false;if(this.scrollParent[0]!=document&&this.scrollParent[0].tagName!="HTML"){if((this.overflowOffset.top+this.scrollParent[0].offsetHeight)-f.pageY<g.scrollSensitivity){this.scrollParent[0].scrollTop=b=this.scrollParent[0].scrollTop+g.scrollSpeed}else{if(f.pageY-this.overflowOffset.top<g.scrollSensitivity){this.scrollParent[0].scrollTop=b=this.scrollParent[0].scrollTop-g.scrollSpeed}}if((this.overflowOffset.left+this.scrollParent[0].offsetWidth)-f.pageX<g.scrollSensitivity){this.scrollParent[0].scrollLeft=b=this.scrollParent[0].scrollLeft+g.scrollSpeed}else{if(f.pageX-this.overflowOffset.left<g.scrollSensitivity){this.scrollParent[0].scrollLeft=b=this.scrollParent[0].scrollLeft-g.scrollSpeed}}}else{if(f.pageY-a(document).scrollTop()<g.scrollSensitivity){b=a(document).scrollTop(a(document).scrollTop()-g.scrollSpeed)}else{if(a(window).height()-(f.pageY-a(document).scrollTop())<g.scrollSensitivity){b=a(document).scrollTop(a(document).scrollTop()+g.scrollSpeed)}}if(f.pageX-a(document).scrollLeft()<g.scrollSensitivity){b=a(document).scrollLeft(a(document).scrollLeft()-g.scrollSpeed)}else{if(a(window).width()-(f.pageX-a(document).scrollLeft())<g.scrollSensitivity){b=a(document).scrollLeft(a(document).scrollLeft()+g.scrollSpeed)}}}if(b!==false&&a.ui.ddmanager&&!g.dropBehaviour){a.ui.ddmanager.prepareOffsets(this,f)}}this.positionAbs=this._convertPositionTo("absolute");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"}for(var d=this.items.length-1;d>=0;d--){var e=this.items[d],c=e.item[0],h=this._intersectsWithPointer(e);if(!h){continue}if(c!=this.currentItem[0]&&this.placeholder[h==1?"next":"prev"]()[0]!=c&&!a.ui.contains(this.placeholder[0],c)&&(this.options.type=="semi-dynamic"?!a.ui.contains(this.element[0],c):true)){this.direction=h==1?"down":"up";if(this.options.tolerance=="pointer"||this._intersectsWithSides(e)){this._rearrange(f,e)}else{break}this._trigger("change",f,this._uiHash());break}}this._contactContainers(f);if(a.ui.ddmanager){a.ui.ddmanager.drag(this,f)}this._trigger("sort",f,this._uiHash());this.lastPositionAbs=this.positionAbs;return false},_mouseStop:function(c,d){if(!c){return}if(a.ui.ddmanager&&!this.options.dropBehaviour){a.ui.ddmanager.drop(this,c)}if(this.options.revert){var b=this;var e=b.placeholder.offset();b.reverting=true;a(this.helper).animate({left:e.left-this.offset.parent.left-b.margins.left+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollLeft),top:e.top-this.offset.parent.top-b.margins.top+(this.offsetParent[0]==document.body?0:this.offsetParent[0].scrollTop)},parseInt(this.options.revert,10)||500,function(){b._clear(c)})}else{this._clear(c,d)}return false},cancel:function(){var b=this;if(this.dragging){this._mouseUp();if(this.options.helper=="original"){this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")}else{this.currentItem.show()}for(var c=this.containers.length-1;c>=0;c--){this.containers[c]._trigger("deactivate",null,b._uiHash(this));if(this.containers[c].containerCache.over){this.containers[c]._trigger("out",null,b._uiHash(this));this.containers[c].containerCache.over=0}}}if(this.placeholder[0].parentNode){this.placeholder[0].parentNode.removeChild(this.placeholder[0])}if(this.options.helper!="original"&&this.helper&&this.helper[0].parentNode){this.helper.remove()}a.extend(this,{helper:null,dragging:false,reverting:false,_noFinalSort:null});if(this.domPosition.prev){a(this.domPosition.prev).after(this.currentItem)}else{a(this.domPosition.parent).prepend(this.currentItem)}return true},serialize:function(d){var b=this._getItemsAsjQuery(d&&d.connected);var c=[];d=d||{};a(b).each(function(){var e=(a(d.item||this).attr(d.attribute||"id")||"").match(d.expression||(/(.+)[-=_](.+)/));if(e){c.push((d.key||e[1]+"[]")+"="+(d.key&&d.expression?e[1]:e[2]))}});return c.join("&")},toArray:function(d){var b=this._getItemsAsjQuery(d&&d.connected);var c=[];d=d||{};b.each(function(){c.push(a(d.item||this).attr(d.attribute||"id")||"")});return c},_intersectsWith:function(m){var e=this.positionAbs.left,d=e+this.helperProportions.width,k=this.positionAbs.top,j=k+this.helperProportions.height;var f=m.left,c=f+m.width,n=m.top,i=n+m.height;var o=this.offset.click.top,h=this.offset.click.left;var g=(k+o)>n&&(k+o)<i&&(e+h)>f&&(e+h)<c;if(this.options.tolerance=="pointer"||this.options.forcePointerForContainers||(this.options.tolerance!="pointer"&&this.helperProportions[this.floating?"width":"height"]>m[this.floating?"width":"height"])){return g}else{return(f<e+(this.helperProportions.width/2)&&d-(this.helperProportions.width/2)<c&&n<k+(this.helperProportions.height/2)&&j-(this.helperProportions.height/2)<i)}},_intersectsWithPointer:function(d){var e=a.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,d.top,d.height),c=a.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,d.left,d.width),g=e&&c,b=this._getDragVerticalDirection(),f=this._getDragHorizontalDirection();if(!g){return false}return this.floating?(((f&&f=="right")||b=="down")?2:1):(b&&(b=="down"?2:1))},_intersectsWithSides:function(e){var c=a.ui.isOverAxis(this.positionAbs.top+this.offset.click.top,e.top+(e.height/2),e.height),d=a.ui.isOverAxis(this.positionAbs.left+this.offset.click.left,e.left+(e.width/2),e.width),b=this._getDragVerticalDirection(),f=this._getDragHorizontalDirection();if(this.floating&&f){return((f=="right"&&d)||(f=="left"&&!d))}else{return b&&((b=="down"&&c)||(b=="up"&&!c))}},_getDragVerticalDirection:function(){var b=this.positionAbs.top-this.lastPositionAbs.top;return b!=0&&(b>0?"down":"up")},_getDragHorizontalDirection:function(){var b=this.positionAbs.left-this.lastPositionAbs.left;return b!=0&&(b>0?"right":"left")},refresh:function(b){this._refreshItems(b);this.refreshPositions()},_connectWith:function(){var b=this.options;return b.connectWith.constructor==String?[b.connectWith]:b.connectWith},_getItemsAsjQuery:function(b){var l=this;var g=[];var e=[];var h=this._connectWith();if(h&&b){for(var d=h.length-1;d>=0;d--){var k=a(h[d]);for(var c=k.length-1;c>=0;c--){var f=a.data(k[c],"sortable");if(f&&f!=this&&!f.options.disabled){e.push([a.isFunction(f.options.items)?f.options.items.call(f.element):a(f.options.items,f.element).not(".ui-sortable-helper"),f])}}}}e.push([a.isFunction(this.options.items)?this.options.items.call(this.element,null,{options:this.options,item:this.currentItem}):a(this.options.items,this.element).not(".ui-sortable-helper"),this]);for(var d=e.length-1;d>=0;d--){e[d][0].each(function(){g.push(this)})}return a(g)},_removeCurrentsFromItems:function(){var d=this.currentItem.find(":data(sortable-item)");for(var c=0;c<this.items.length;c++){for(var b=0;b<d.length;b++){if(d[b]==this.items[c].item[0]){this.items.splice(c,1)}}}},_refreshItems:function(b){this.items=[];this.containers=[this];var h=this.items;var p=this;var f=[[a.isFunction(this.options.items)?this.options.items.call(this.element[0],b,{item:this.currentItem}):a(this.options.items,this.element),this]];var l=this._connectWith();if(l){for(var e=l.length-1;e>=0;e--){var m=a(l[e]);for(var d=m.length-1;d>=0;d--){var g=a.data(m[d],"sortable");if(g&&g!=this&&!g.options.disabled){f.push([a.isFunction(g.options.items)?g.options.items.call(g.element[0],b,{item:this.currentItem}):a(g.options.items,g.element),g]);this.containers.push(g)}}}}for(var e=f.length-1;e>=0;e--){var k=f[e][1];var c=f[e][0];for(var d=0,n=c.length;d<n;d++){var o=a(c[d]);o.data("sortable-item",k);h.push({item:o,instance:k,width:0,height:0,left:0,top:0})}}},refreshPositions:function(b){if(this.offsetParent&&this.helper){this.offset.parent=this._getParentOffset()}for(var d=this.items.length-1;d>=0;d--){var e=this.items[d];if(e.instance!=this.currentContainer&&this.currentContainer&&e.item[0]!=this.currentItem[0]){continue}var c=this.options.toleranceElement?a(this.options.toleranceElement,e.item):e.item;if(!b){e.width=c.outerWidth();e.height=c.outerHeight()}var f=c.offset();e.left=f.left;e.top=f.top}if(this.options.custom&&this.options.custom.refreshContainers){this.options.custom.refreshContainers.call(this)}else{for(var d=this.containers.length-1;d>=0;d--){var f=this.containers[d].element.offset();this.containers[d].containerCache.left=f.left;this.containers[d].containerCache.top=f.top;this.containers[d].containerCache.width=this.containers[d].element.outerWidth();this.containers[d].containerCache.height=this.containers[d].element.outerHeight()}}},_createPlaceholder:function(d){var b=d||this,e=b.options;if(!e.placeholder||e.placeholder.constructor==String){var c=e.placeholder;e.placeholder={element:function(){var f=a(document.createElement(b.currentItem[0].nodeName)).addClass(c||b.currentItem[0].className+" ui-sortable-placeholder").removeClass("ui-sortable-helper")[0];if(!c){f.style.visibility="hidden"}return f},update:function(f,g){if(c&&!e.forcePlaceholderSize){return}if(!g.height()){g.height(b.currentItem.innerHeight()-parseInt(b.currentItem.css("paddingTop")||0,10)-parseInt(b.currentItem.css("paddingBottom")||0,10))}if(!g.width()){g.width(b.currentItem.innerWidth()-parseInt(b.currentItem.css("paddingLeft")||0,10)-parseInt(b.currentItem.css("paddingRight")||0,10))}}}}b.placeholder=a(e.placeholder.element.call(b.element,b.currentItem));b.currentItem.after(b.placeholder);e.placeholder.update(b,b.placeholder)},_contactContainers:function(d){for(var c=this.containers.length-1;c>=0;c--){if(this._intersectsWith(this.containers[c].containerCache)){if(!this.containers[c].containerCache.over){if(this.currentContainer!=this.containers[c]){var h=10000;var g=null;var e=this.positionAbs[this.containers[c].floating?"left":"top"];for(var b=this.items.length-1;b>=0;b--){if(!a.ui.contains(this.containers[c].element[0],this.items[b].item[0])){continue}var f=this.items[b][this.containers[c].floating?"left":"top"];if(Math.abs(f-e)<h){h=Math.abs(f-e);g=this.items[b]}}if(!g&&!this.options.dropOnEmpty){continue}this.currentContainer=this.containers[c];g?this._rearrange(d,g,null,true):this._rearrange(d,null,this.containers[c].element,true);this._trigger("change",d,this._uiHash());this.containers[c]._trigger("change",d,this._uiHash(this));this.options.placeholder.update(this.currentContainer,this.placeholder)}this.containers[c]._trigger("over",d,this._uiHash(this));this.containers[c].containerCache.over=1}}else{if(this.containers[c].containerCache.over){this.containers[c]._trigger("out",d,this._uiHash(this));this.containers[c].containerCache.over=0}}}},_createHelper:function(c){var d=this.options;var b=a.isFunction(d.helper)?a(d.helper.apply(this.element[0],[c,this.currentItem])):(d.helper=="clone"?this.currentItem.clone():this.currentItem);if(!b.parents("body").length){a(d.appendTo!="parent"?d.appendTo:this.currentItem[0].parentNode)[0].appendChild(b[0])}if(b[0]==this.currentItem[0]){this._storedCSS={width:this.currentItem[0].style.width,height:this.currentItem[0].style.height,position:this.currentItem.css("position"),top:this.currentItem.css("top"),left:this.currentItem.css("left")}}if(b[0].style.width==""||d.forceHelperSize){b.width(this.currentItem.width())}if(b[0].style.height==""||d.forceHelperSize){b.height(this.currentItem.height())}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.currentItem.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.currentItem.css("marginLeft"),10)||0),top:(parseInt(this.currentItem.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)){var c=a(e.containment)[0];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]}},_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())))}},_rearrange:function(g,f,c,e){c?c[0].appendChild(this.placeholder[0]):f.item[0].parentNode.insertBefore(this.placeholder[0],(this.direction=="down"?f.item[0]:f.item[0].nextSibling));this.counter=this.counter?++this.counter:1;var d=this,b=this.counter;window.setTimeout(function(){if(b==d.counter){d.refreshPositions(!e)}},0)},_clear:function(d,e){this.reverting=false;var f=[],b=this;if(!this._noFinalSort&&this.currentItem[0].parentNode){this.placeholder.before(this.currentItem)}this._noFinalSort=null;if(this.helper[0]==this.currentItem[0]){for(var c in this._storedCSS){if(this._storedCSS[c]=="auto"||this._storedCSS[c]=="static"){this._storedCSS[c]=""}}this.currentItem.css(this._storedCSS).removeClass("ui-sortable-helper")}else{this.currentItem.show()}if(this.fromOutside&&!e){f.push(function(g){this._trigger("receive",g,this._uiHash(this.fromOutside))})}if((this.fromOutside||this.domPosition.prev!=this.currentItem.prev().not(".ui-sortable-helper")[0]||this.domPosition.parent!=this.currentItem.parent()[0])&&!e){f.push(function(g){this._trigger("update",g,this._uiHash())})}if(!a.ui.contains(this.element[0],this.currentItem[0])){if(!e){f.push(function(g){this._trigger("remove",g,this._uiHash())})}for(var c=this.containers.length-1;c>=0;c--){if(a.ui.contains(this.containers[c].element[0],this.currentItem[0])&&!e){f.push((function(g){return function(h){g._trigger("receive",h,this._uiHash(this))}}).call(this,this.containers[c]));f.push((function(g){return function(h){g._trigger("update",h,this._uiHash(this))}}).call(this,this.containers[c]))}}}for(var c=this.containers.length-1;c>=0;c--){if(!e){f.push((function(g){return function(h){g._trigger("deactivate",h,this._uiHash(this))}}).call(this,this.containers[c]))}if(this.containers[c].containerCache.over){f.push((function(g){return function(h){g._trigger("out",h,this._uiHash(this))}}).call(this,this.containers[c]));this.containers[c].containerCache.over=0}}if(this._storedCursor){a("body").css("cursor",this._storedCursor)}if(this._storedOpacity){this.helper.css("opacity",this._storedOpacity)}if(this._storedZIndex){this.helper.css("zIndex",this._storedZIndex=="auto"?"":this._storedZIndex)}this.dragging=false;if(this.cancelHelperRemoval){if(!e){this._trigger("beforeStop",d,this._uiHash());for(var c=0;c<f.length;c++){f[c].call(this,d)}this._trigger("stop",d,this._uiHash())}return false}if(!e){this._trigger("beforeStop",d,this._uiHash())}this.placeholder[0].parentNode.removeChild(this.placeholder[0]);if(this.helper[0]!=this.currentItem[0]){this.helper.remove()}this.helper=null;if(!e){for(var c=0;c<f.length;c++){f[c].call(this,d)}this._trigger("stop",d,this._uiHash())}this.fromOutside=false;return true},_trigger:function(){if(a.widget.prototype._trigger.apply(this,arguments)===false){this.cancel()}},_uiHash:function(c){var b=c||this;return{helper:b.helper,placeholder:b.placeholder||a([]),position:b.position,absolutePosition:b.positionAbs,offset:b.positionAbs,item:b.currentItem,sender:c?c.element:null}}}));a.extend(a.ui.sortable,{getter:"serialize toArray",version:"1.7",eventPrefix:"sort",defaults:{appendTo:"parent",axis:false,cancel:":input,option",connectWith:false,containment:false,cursor:"auto",cursorAt:false,delay:0,distance:1,dropOnEmpty:true,forcePlaceholderSize:false,forceHelperSize:false,grid:false,handle:false,helper:"original",items:"> *",opacity:false,placeholder:false,revert:false,scroll:true,scrollSensitivity:20,scrollSpeed:20,scope:"default",tolerance:"intersect",zIndex:1000}})})(jQuery);;/*
 * jQuery UI Accordion 1.7
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Accordion
 *
 * Depends:
 *	ui.core.js
 */(function(a){a.widget("ui.accordion",{_init:function(){var d=this.options,b=this;this.running=0;if(d.collapsible==a.ui.accordion.defaults.collapsible&&d.alwaysOpen!=a.ui.accordion.defaults.alwaysOpen){d.collapsible=!d.alwaysOpen}if(d.navigation){var c=this.element.find("a").filter(d.navigationFilter);if(c.length){if(c.filter(d.header).length){this.active=c}else{this.active=c.parent().parent().prev();c.addClass("ui-accordion-content-active")}}}this.element.addClass("ui-accordion ui-widget ui-helper-reset");if(this.element[0].nodeName=="UL"){this.element.children("li").addClass("ui-accordion-li-fix")}this.headers=this.element.find(d.header).addClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all").bind("mouseenter.accordion",function(){a(this).addClass("ui-state-hover")}).bind("mouseleave.accordion",function(){a(this).removeClass("ui-state-hover")}).bind("focus.accordion",function(){a(this).addClass("ui-state-focus")}).bind("blur.accordion",function(){a(this).removeClass("ui-state-focus")});this.headers.next().addClass("ui-accordion-content ui-helper-reset ui-widget-content ui-corner-bottom");this.active=this._findActive(this.active||d.active).toggleClass("ui-state-default").toggleClass("ui-state-active").toggleClass("ui-corner-all").toggleClass("ui-corner-top");this.active.next().addClass("ui-accordion-content-active");a("<span/>").addClass("ui-icon "+d.icons.header).prependTo(this.headers);this.active.find(".ui-icon").toggleClass(d.icons.header).toggleClass(d.icons.headerSelected);if(a.browser.msie){this.element.find("a").css("zoom","1")}this.resize();this.element.attr("role","tablist");this.headers.attr("role","tab").bind("keydown",function(e){return b._keydown(e)}).next().attr("role","tabpanel");this.headers.not(this.active||"").attr("aria-expanded","false").attr("tabIndex","-1").next().hide();if(!this.active.length){this.headers.eq(0).attr("tabIndex","0")}else{this.active.attr("aria-expanded","true").attr("tabIndex","0")}if(!a.browser.safari){this.headers.find("a").attr("tabIndex","-1")}if(d.event){this.headers.bind((d.event)+".accordion",function(e){return b._clickHandler.call(b,e,this)})}},destroy:function(){var c=this.options;this.element.removeClass("ui-accordion ui-widget ui-helper-reset").removeAttr("role").unbind(".accordion").removeData("accordion");this.headers.unbind(".accordion").removeClass("ui-accordion-header ui-helper-reset ui-state-default ui-corner-all ui-state-active ui-corner-top").removeAttr("role").removeAttr("aria-expanded").removeAttr("tabindex");this.headers.find("a").removeAttr("tabindex");this.headers.children(".ui-icon").remove();var b=this.headers.next().css("display","").removeAttr("role").removeClass("ui-helper-reset ui-widget-content ui-corner-bottom ui-accordion-content ui-accordion-content-active");if(c.autoHeight||c.fillHeight){b.css("height","")}},_setData:function(b,c){if(b=="alwaysOpen"){b="collapsible";c=!c}a.widget.prototype._setData.apply(this,arguments)},_keydown:function(e){var g=this.options,f=a.ui.keyCode;if(g.disabled||e.altKey||e.ctrlKey){return}var d=this.headers.length;var b=this.headers.index(e.target);var c=false;switch(e.keyCode){case f.RIGHT:case f.DOWN:c=this.headers[(b+1)%d];break;case f.LEFT:case f.UP:c=this.headers[(b-1+d)%d];break;case f.SPACE:case f.ENTER:return this._clickHandler({target:e.target},e.target)}if(c){a(e.target).attr("tabIndex","-1");a(c).attr("tabIndex","0");c.focus();return false}return true},resize:function(){var e=this.options,d;if(e.fillSpace){if(a.browser.msie){var b=this.element.parent().css("overflow");this.element.parent().css("overflow","hidden")}d=this.element.parent().height();if(a.browser.msie){this.element.parent().css("overflow",b)}this.headers.each(function(){d-=a(this).outerHeight()});var c=0;this.headers.next().each(function(){c=Math.max(c,a(this).innerHeight()-a(this).height())}).height(Math.max(0,d-c)).css("overflow","auto")}else{if(e.autoHeight){d=0;this.headers.next().each(function(){d=Math.max(d,a(this).outerHeight())}).height(d)}}},activate:function(b){var c=this._findActive(b)[0];this._clickHandler({target:c},c)},_findActive:function(b){return b?typeof b=="number"?this.headers.filter(":eq("+b+")"):this.headers.not(this.headers.not(b)):b===false?a([]):this.headers.filter(":eq(0)")},_clickHandler:function(b,f){var d=this.options;if(d.disabled){return false}if(!b.target&&d.collapsible){this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");var h=this.active.next(),e={options:d,newHeader:a([]),oldHeader:d.active,newContent:a([]),oldContent:h},c=(this.active=a([]));this._toggle(c,h,e);return false}var g=a(b.currentTarget||f);var i=g[0]==this.active[0];if(this.running||(!d.collapsible&&i)){return false}this.active.removeClass("ui-state-active ui-corner-top").addClass("ui-state-default ui-corner-all").find(".ui-icon").removeClass(d.icons.headerSelected).addClass(d.icons.header);this.active.next().addClass("ui-accordion-content-active");if(!i){g.removeClass("ui-state-default ui-corner-all").addClass("ui-state-active ui-corner-top").find(".ui-icon").removeClass(d.icons.header).addClass(d.icons.headerSelected);g.next().addClass("ui-accordion-content-active")}var c=g.next(),h=this.active.next(),e={options:d,newHeader:i&&d.collapsible?a([]):g,oldHeader:this.active,newContent:i&&d.collapsible?a([]):c.find("> *"),oldContent:h.find("> *")},j=this.headers.index(this.active[0])>this.headers.index(g[0]);this.active=i?a([]):g;this._toggle(c,h,e,i,j);return false},_toggle:function(b,i,g,j,k){var d=this.options,m=this;this.toShow=b;this.toHide=i;this.data=g;var c=function(){if(!m){return}return m._completed.apply(m,arguments)};this._trigger("changestart",null,this.data);this.running=i.size()===0?b.size():i.size();if(d.animated){var f={};if(d.collapsible&&j){f={toShow:a([]),toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}else{f={toShow:b,toHide:i,complete:c,down:k,autoHeight:d.autoHeight||d.fillSpace}}if(!d.proxied){d.proxied=d.animated}if(!d.proxiedDuration){d.proxiedDuration=d.duration}d.animated=a.isFunction(d.proxied)?d.proxied(f):d.proxied;d.duration=a.isFunction(d.proxiedDuration)?d.proxiedDuration(f):d.proxiedDuration;var l=a.ui.accordion.animations,e=d.duration,h=d.animated;if(!l[h]){l[h]=function(n){this.slide(n,{easing:h,duration:e||700})}}l[h](f)}else{if(d.collapsible&&j){b.toggle()}else{i.hide();b.show()}c(true)}i.prev().attr("aria-expanded","false").attr("tabIndex","-1").blur();b.prev().attr("aria-expanded","true").attr("tabIndex","0").focus()},_completed:function(b){var c=this.options;this.running=b?0:--this.running;if(this.running){return}if(c.clearStyle){this.toShow.add(this.toHide).css({height:"",overflow:""})}this._trigger("change",null,this.data)}});a.extend(a.ui.accordion,{version:"1.7",defaults:{active:null,alwaysOpen:true,animated:"slide",autoHeight:true,clearStyle:false,collapsible:false,event:"click",fillSpace:false,header:"> li > :first-child,> :not(li):even",icons:{header:"ui-icon-triangle-1-e",headerSelected:"ui-icon-triangle-1-s"},navigation:false,navigationFilter:function(){return this.href.toLowerCase()==location.href.toLowerCase()}},animations:{slide:function(j,h){j=a.extend({easing:"swing",duration:300},j,h);if(!j.toHide.size()){j.toShow.animate({height:"show"},j);return}if(!j.toShow.size()){j.toHide.animate({height:"hide"},j);return}var c=j.toShow.css("overflow"),g,d={},f={},e=["height","paddingTop","paddingBottom"],b;var i=j.toShow;b=i[0].style.width;i.width(parseInt(i.parent().width(),10)-parseInt(i.css("paddingLeft"),10)-parseInt(i.css("paddingRight"),10)-parseInt(i.css("borderLeftWidth"),10)-parseInt(i.css("borderRightWidth"),10));a.each(e,function(k,m){f[m]="hide";var l=(""+a.css(j.toShow[0],m)).match(/^([\d+-.]+)(.*)$/);d[m]={value:l[1],unit:l[2]||"px"}});j.toShow.css({height:0,overflow:"hidden"}).show();j.toHide.filter(":hidden").each(j.complete).end().filter(":visible").animate(f,{step:function(k,l){if(l.prop=="height"){g=(l.now-l.start)/(l.end-l.start)}j.toShow[0].style[l.prop]=(g*d[l.prop].value)+d[l.prop].unit},duration:j.duration,easing:j.easing,complete:function(){if(!j.autoHeight){j.toShow.css("height","")}j.toShow.css("width",b);j.toShow.css({overflow:c});j.complete()}})},bounceslide:function(b){this.slide(b,{easing:b.down?"easeOutBounce":"swing",duration:b.down?1000:200})},easeslide:function(b){this.slide(b,{easing:"easeinout",duration:700})}}})})(jQuery);;/*
 * jQuery UI Dialog 1.7
 *
 * 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(e){var d=this;if(false===d._trigger("beforeclose",e)){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",e)}):d.uiDialog.hide()&&d._trigger("close",e));c.ui.dialog.overlay.resize();d._isOpen=false},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",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(){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()},height:function(){if(c.browser.msie&&c.browser.version<7){var e=Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);var d=Math.max(document.documentElement.offsetHeight,document.body.offsetHeight);if(e<d){return c(window).height()+"px"}else{return e+"px"}}else{return c(document).height()+"px"}},width:function(){if(c.browser.msie&&c.browser.version<7){var d=Math.max(document.documentElement.scrollWidth,document.body.scrollWidth);var e=Math.max(document.documentElement.offsetWidth,document.body.offsetWidth);if(d<e){return c(window).width()+"px"}else{return d+"px"}}else{return c(document).width()+"px"}},resize:function(){var d=c([]);c.each(c.ui.dialog.overlay.instances,function(){d=d.add(this)});d.css({width:0,height:0}).css({width:c.ui.dialog.overlay.width(),height:c.ui.dialog.overlay.height()})}});c.extend(c.ui.dialog.overlay.prototype,{destroy:function(){c.ui.dialog.overlay.destroy(this.$el)}})})(jQuery);;/*
 * jQuery UI Slider 1.7
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Slider
 *
 * Depends:
 *	ui.core.js
 */(function(a){a.widget("ui.slider",a.extend({},a.ui.mouse,{_init:function(){var b=this,c=this.options;this._keySliding=false;this._handleIndex=null;this._detectOrientation();this._mouseInit();this.element.addClass("ui-slider ui-slider-"+this.orientation+" ui-widget ui-widget-content ui-corner-all");this.range=a([]);if(c.range){if(c.range===true){this.range=a("<div></div>");if(!c.values){c.values=[this._valueMin(),this._valueMin()]}if(c.values.length&&c.values.length!=2){c.values=[c.values[0],c.values[0]]}}else{this.range=a("<div></div>")}this.range.appendTo(this.element).addClass("ui-slider-range");if(c.range=="min"||c.range=="max"){this.range.addClass("ui-slider-range-"+c.range)}this.range.addClass("ui-widget-header")}if(a(".ui-slider-handle",this.element).length==0){a('<a href="#"></a>').appendTo(this.element).addClass("ui-slider-handle")}if(c.values&&c.values.length){while(a(".ui-slider-handle",this.element).length<c.values.length){a('<a href="#"></a>').appendTo(this.element).addClass("ui-slider-handle")}}this.handles=a(".ui-slider-handle",this.element).addClass("ui-state-default ui-corner-all");this.handle=this.handles.eq(0);this.handles.add(this.range).filter("a").click(function(d){d.preventDefault()}).hover(function(){a(this).addClass("ui-state-hover")},function(){a(this).removeClass("ui-state-hover")}).focus(function(){a(".ui-slider .ui-state-focus").removeClass("ui-state-focus");a(this).addClass("ui-state-focus")}).blur(function(){a(this).removeClass("ui-state-focus")});this.handles.each(function(d){a(this).data("index.ui-slider-handle",d)});this.handles.keydown(function(i){var f=true;var e=a(this).data("index.ui-slider-handle");if(b.options.disabled){return}switch(i.keyCode){case a.ui.keyCode.HOME:case a.ui.keyCode.END:case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:f=false;if(!b._keySliding){b._keySliding=true;a(this).addClass("ui-state-active");b._start(i,e)}break}var g,d,h=b._step();if(b.options.values&&b.options.values.length){g=d=b.values(e)}else{g=d=b.value()}switch(i.keyCode){case a.ui.keyCode.HOME:d=b._valueMin();break;case a.ui.keyCode.END:d=b._valueMax();break;case a.ui.keyCode.UP:case a.ui.keyCode.RIGHT:if(g==b._valueMax()){return}d=g+h;break;case a.ui.keyCode.DOWN:case a.ui.keyCode.LEFT:if(g==b._valueMin()){return}d=g-h;break}b._slide(i,e,d);return f}).keyup(function(e){var d=a(this).data("index.ui-slider-handle");if(b._keySliding){b._stop(e,d);b._change(e,d);b._keySliding=false;a(this).removeClass("ui-state-active")}});this._refreshValue()},destroy:function(){this.handles.remove();this.element.removeClass("ui-slider ui-slider-horizontal ui-slider-vertical ui-slider-disabled ui-widget ui-widget-content ui-corner-all").removeData("slider").unbind(".slider");this._mouseDestroy()},_mouseCapture:function(d){var e=this.options;if(e.disabled){return false}this.elementSize={width:this.element.outerWidth(),height:this.element.outerHeight()};this.elementOffset=this.element.offset();var h={x:d.pageX,y:d.pageY};var j=this._normValueFromMouse(h);var c=this._valueMax()+1,f;var k=this,i;this.handles.each(function(l){var m=Math.abs(j-k.values(l));if(c>m){c=m;f=a(this);i=l}});if(e.range==true&&this.values(1)==e.min){f=a(this.handles[++i])}this._start(d,i);k._handleIndex=i;f.addClass("ui-state-active").focus();var g=f.offset();var b=!a(d.target).parents().andSelf().is(".ui-slider-handle");this._clickOffset=b?{left:0,top:0}:{left:d.pageX-g.left-(f.width()/2),top:d.pageY-g.top-(f.height()/2)-(parseInt(f.css("borderTopWidth"),10)||0)-(parseInt(f.css("borderBottomWidth"),10)||0)+(parseInt(f.css("marginTop"),10)||0)};j=this._normValueFromMouse(h);this._slide(d,i,j);return true},_mouseStart:function(b){return true},_mouseDrag:function(d){var b={x:d.pageX,y:d.pageY};var c=this._normValueFromMouse(b);this._slide(d,this._handleIndex,c);return false},_mouseStop:function(b){this.handles.removeClass("ui-state-active");this._stop(b,this._handleIndex);this._change(b,this._handleIndex);this._handleIndex=null;this._clickOffset=null;return false},_detectOrientation:function(){this.orientation=this.options.orientation=="vertical"?"vertical":"horizontal"},_normValueFromMouse:function(d){var c,h;if("horizontal"==this.orientation){c=this.elementSize.width;h=d.x-this.elementOffset.left-(this._clickOffset?this._clickOffset.left:0)}else{c=this.elementSize.height;h=d.y-this.elementOffset.top-(this._clickOffset?this._clickOffset.top:0)}var f=(h/c);if(f>1){f=1}if(f<0){f=0}if("vertical"==this.orientation){f=1-f}var e=this._valueMax()-this._valueMin(),i=f*e,b=i%this.options.step,g=this._valueMin()+i-b;if(b>(this.options.step/2)){g+=this.options.step}return parseFloat(g.toFixed(5))},_start:function(c,b){this._trigger("start",c,this._uiHash(b))},_slide:function(f,e,d){var g=this.handles[e];if(this.options.values&&this.options.values.length){var b=this.values(e?0:1);if((e==0&&d>=b)||(e==1&&d<=b)){d=b}if(d!=this.values(e)){var c=this.values();c[e]=d;var h=this._trigger("slide",f,this._uiHash(e,d,c));var b=this.values(e?0:1);if(h!==false){this.values(e,d,(f.type=="mousedown"&&this.options.animate),true)}}}else{if(d!=this.value()){var h=this._trigger("slide",f,this._uiHash(e,d));if(h!==false){this._setData("value",d,(f.type=="mousedown"&&this.options.animate))}}}},_stop:function(c,b){this._trigger("stop",c,this._uiHash(b))},_change:function(c,b){this._trigger("change",c,this._uiHash(b))},value:function(b){if(arguments.length){this._setData("value",b);this._change(null,0)}return this._value()},values:function(b,e,c,d){if(arguments.length>1){this.options.values[b]=e;this._refreshValue(c);if(!d){this._change(null,b)}}if(arguments.length){if(this.options.values&&this.options.values.length){return this._values(b)}else{return this.value()}}else{return this._values()}},_setData:function(b,d,c){a.widget.prototype._setData.apply(this,arguments);switch(b){case"orientation":this._detectOrientation();this.element.removeClass("ui-slider-horizontal ui-slider-vertical").addClass("ui-slider-"+this.orientation);this._refreshValue(c);break;case"value":this._refreshValue(c);break}},_step:function(){var b=this.options.step;return b},_value:function(){var b=this.options.value;if(b<this._valueMin()){b=this._valueMin()}if(b>this._valueMax()){b=this._valueMax()}return b},_values:function(b){if(arguments.length){var c=this.options.values[b];if(c<this._valueMin()){c=this._valueMin()}if(c>this._valueMax()){c=this._valueMax()}return c}else{return this.options.values}},_valueMin:function(){var b=this.options.min;return b},_valueMax:function(){var b=this.options.max;return b},_refreshValue:function(c){var f=this.options.range,d=this.options,l=this;if(this.options.values&&this.options.values.length){var i,h;this.handles.each(function(p,n){var o=(l.values(p)-l._valueMin())/(l._valueMax()-l._valueMin())*100;var m={};m[l.orientation=="horizontal"?"left":"bottom"]=o+"%";a(this).stop(1,1)[c?"animate":"css"](m,d.animate);if(l.options.range===true){if(l.orientation=="horizontal"){(p==0)&&l.range.stop(1,1)[c?"animate":"css"]({left:o+"%"},d.animate);(p==1)&&l.range[c?"animate":"css"]({width:(o-lastValPercent)+"%"},{queue:false,duration:d.animate})}else{(p==0)&&l.range.stop(1,1)[c?"animate":"css"]({bottom:(o)+"%"},d.animate);(p==1)&&l.range[c?"animate":"css"]({height:(o-lastValPercent)+"%"},{queue:false,duration:d.animate})}}lastValPercent=o})}else{var j=this.value(),g=this._valueMin(),k=this._valueMax(),e=k!=g?(j-g)/(k-g)*100:0;var b={};b[l.orientation=="horizontal"?"left":"bottom"]=e+"%";this.handle.stop(1,1)[c?"animate":"css"](b,d.animate);(f=="min")&&(this.orientation=="horizontal")&&this.range.stop(1,1)[c?"animate":"css"]({width:e+"%"},d.animate);(f=="max")&&(this.orientation=="horizontal")&&this.range[c?"animate":"css"]({width:(100-e)+"%"},{queue:false,duration:d.animate});(f=="min")&&(this.orientation=="vertical")&&this.range.stop(1,1)[c?"animate":"css"]({height:e+"%"},d.animate);(f=="max")&&(this.orientation=="vertical")&&this.range[c?"animate":"css"]({height:(100-e)+"%"},{queue:false,duration:d.animate})}},_uiHash:function(d,e,c){var b=this.options.values&&this.options.values.length;return{handle:this.handles[d],value:e||(b?this.values(d):this.value()),values:c||(b&&this.values())}}}));a.extend(a.ui.slider,{getter:"value values",version:"1.7",eventPrefix:"slide",defaults:{animate:false,delay:0,distance:0,max:100,min:0,orientation:"horizontal",range:false,step:1,value:0,values:null}})})(jQuery);;/*
 * jQuery UI Tabs 1.7
 *
 * Copyright (c) 2009 AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT (MIT-LICENSE.txt)
 * and GPL (GPL-LICENSE.txt) licenses.
 *
 * http://docs.jquery.com/UI/Tabs
 *
 * Depends:
 *	ui.core.js
 */(function(a){a.widget("ui.tabs",{_init:function(){if(this.options.deselectable!==undefined){this.options.collapsible=this.options.deselectable}this._tabify(true)},_setData:function(b,c){if(b=="selected"){if(this.options.collapsible&&c==this.options.selected){return}this.select(c)}else{this.options[b]=c;if(b=="deselectable"){this.options.collapsible=c}this._tabify()}},_tabId:function(b){return b.title&&b.title.replace(/\s/g,"_").replace(/[^A-Za-z0-9\-_:\.]/g,"")||this.options.idPrefix+a.data(b)},_sanitizeSelector:function(b){return b.replace(/:/g,"\\:")},_cookie:function(){var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+a.data(this.list[0]));return a.cookie.apply(null,[b].concat(a.makeArray(arguments)))},_ui:function(c,b){return{tab:c,panel:b,index:this.anchors.index(c)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var b=a(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(n){this.list=this.element.children("ul:first");this.lis=a("li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return a("a",this)[0]});this.panels=a([]);var p=this,d=this.options;var c=/^#.+/;this.anchors.each(function(r,o){var q=a(o).attr("href");var s=q.split("#")[0],u;if(s&&(s===location.toString().split("#")[0]||(u=a("base")[0])&&s===u.href)){q=o.hash;o.href=q}if(c.test(q)){p.panels=p.panels.add(p._sanitizeSelector(q))}else{if(q!="#"){a.data(o,"href.tabs",q);a.data(o,"load.tabs",q.replace(/#.*$/,""));var w=p._tabId(o);o.href="#"+w;var v=a("#"+w);if(!v.length){v=a(d.panelTemplate).attr("id",w).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(p.panels[r-1]||p.list);v.data("destroy.tabs",true)}p.panels=p.panels.add(v)}else{d.disabled.push(r)}}});if(n){this.element.addClass("ui-tabs ui-widget ui-widget-content ui-corner-all");this.list.addClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.lis.addClass("ui-state-default ui-corner-top");this.panels.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom");if(d.selected===undefined){if(location.hash){this.anchors.each(function(q,o){if(o.hash==location.hash){d.selected=q;return false}})}if(typeof d.selected!="number"&&d.cookie){d.selected=parseInt(p._cookie(),10)}if(typeof d.selected!="number"&&this.lis.filter(".ui-tabs-selected").length){d.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}d.selected=d.selected||0}else{if(d.selected===null){d.selected=-1}}d.selected=((d.selected>=0&&this.anchors[d.selected])||d.selected<0)?d.selected:0;d.disabled=a.unique(d.disabled.concat(a.map(this.lis.filter(".ui-state-disabled"),function(q,o){return p.lis.index(q)}))).sort();if(a.inArray(d.selected,d.disabled)!=-1){d.disabled.splice(a.inArray(d.selected,d.disabled),1)}this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active");if(d.selected>=0&&this.anchors.length){this.panels.eq(d.selected).removeClass("ui-tabs-hide");this.lis.eq(d.selected).addClass("ui-tabs-selected ui-state-active");p.element.queue("tabs",function(){p._trigger("show",null,p._ui(p.anchors[d.selected],p.panels[d.selected]))});this.load(d.selected)}a(window).bind("unload",function(){p.lis.add(p.anchors).unbind(".tabs");p.lis=p.anchors=p.panels=null})}else{d.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"))}this.element[d.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible");if(d.cookie){this._cookie(d.selected,d.cookie)}for(var g=0,m;(m=this.lis[g]);g++){a(m)[a.inArray(g,d.disabled)!=-1&&!a(m).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled")}if(d.cache===false){this.anchors.removeData("cache.tabs")}this.lis.add(this.anchors).unbind(".tabs");if(d.event!="mouseover"){var f=function(o,i){if(i.is(":not(.ui-state-disabled)")){i.addClass("ui-state-"+o)}};var j=function(o,i){i.removeClass("ui-state-"+o)};this.lis.bind("mouseover.tabs",function(){f("hover",a(this))});this.lis.bind("mouseout.tabs",function(){j("hover",a(this))});this.anchors.bind("focus.tabs",function(){f("focus",a(this).closest("li"))});this.anchors.bind("blur.tabs",function(){j("focus",a(this).closest("li"))})}var b,h;if(d.fx){if(a.isArray(d.fx)){b=d.fx[0];h=d.fx[1]}else{b=h=d.fx}}function e(i,o){i.css({display:""});if(a.browser.msie&&o.opacity){i[0].style.removeAttribute("filter")}}var k=h?function(i,o){a(i).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");o.hide().removeClass("ui-tabs-hide").animate(h,h.duration||"normal",function(){e(o,h);p._trigger("show",null,p._ui(i,o[0]))})}:function(i,o){a(i).closest("li").removeClass("ui-state-default").addClass("ui-tabs-selected ui-state-active");o.removeClass("ui-tabs-hide");p._trigger("show",null,p._ui(i,o[0]))};var l=b?function(o,i){i.animate(b,b.duration||"normal",function(){p.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");i.addClass("ui-tabs-hide");e(i,b);p.element.dequeue("tabs")})}:function(o,i,q){p.lis.removeClass("ui-tabs-selected ui-state-active").addClass("ui-state-default");i.addClass("ui-tabs-hide");p.element.dequeue("tabs")};this.anchors.bind(d.event+".tabs",function(){var o=this,r=a(this).closest("li"),i=p.panels.filter(":not(.ui-tabs-hide)"),q=a(p._sanitizeSelector(this.hash));if((r.hasClass("ui-tabs-selected")&&!d.collapsible)||r.hasClass("ui-state-disabled")||r.hasClass("ui-state-processing")||p._trigger("select",null,p._ui(this,q[0]))===false){this.blur();return false}d.selected=p.anchors.index(this);p.abort();if(d.collapsible){if(r.hasClass("ui-tabs-selected")){d.selected=-1;if(d.cookie){p._cookie(d.selected,d.cookie)}p.element.queue("tabs",function(){l(o,i)}).dequeue("tabs");this.blur();return false}else{if(!i.length){if(d.cookie){p._cookie(d.selected,d.cookie)}p.element.queue("tabs",function(){k(o,q)});p.load(p.anchors.index(this));this.blur();return false}}}if(d.cookie){p._cookie(d.selected,d.cookie)}if(q.length){if(i.length){p.element.queue("tabs",function(){l(o,i)})}p.element.queue("tabs",function(){k(o,q)});p.load(p.anchors.index(this))}else{throw"jQuery UI Tabs: Mismatching fragment identifier."}if(a.browser.msie){this.blur()}});this.anchors.bind("click.tabs",function(){return false})},destroy:function(){var b=this.options;this.abort();this.element.unbind(".tabs").removeClass("ui-tabs ui-widget ui-widget-content ui-corner-all ui-tabs-collapsible").removeData("tabs");this.list.removeClass("ui-tabs-nav ui-helper-reset ui-helper-clearfix ui-widget-header ui-corner-all");this.anchors.each(function(){var c=a.data(this,"href.tabs");if(c){this.href=c}var d=a(this).unbind(".tabs");a.each(["href","load","cache"],function(e,f){d.removeData(f+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){if(a.data(this,"destroy.tabs")){a(this).remove()}else{a(this).removeClass(["ui-state-default","ui-corner-top","ui-tabs-selected","ui-state-active","ui-state-hover","ui-state-focus","ui-state-disabled","ui-tabs-panel","ui-widget-content","ui-corner-bottom","ui-tabs-hide"].join(" "))}});if(b.cookie){this._cookie(null,b.cookie)}},add:function(e,d,c){if(c===undefined){c=this.anchors.length}var b=this,g=this.options,i=a(g.tabTemplate.replace(/#\{href\}/g,e).replace(/#\{label\}/g,d)),h=!e.indexOf("#")?e.replace("#",""):this._tabId(a("a",i)[0]);i.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);var f=a("#"+h);if(!f.length){f=a(g.panelTemplate).attr("id",h).data("destroy.tabs",true)}f.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(c>=this.lis.length){i.appendTo(this.list);f.appendTo(this.list[0].parentNode)}else{i.insertBefore(this.lis[c]);f.insertBefore(this.panels[c])}g.disabled=a.map(g.disabled,function(k,j){return k>=c?++k:k});this._tabify();if(this.anchors.length==1){i.addClass("ui-tabs-selected ui-state-active");f.removeClass("ui-tabs-hide");this.element.queue("tabs",function(){b._trigger("show",null,b._ui(b.anchors[0],b.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[c],this.panels[c]))},remove:function(b){var d=this.options,e=this.lis.eq(b).remove(),c=this.panels.eq(b).remove();if(e.hasClass("ui-tabs-selected")&&this.anchors.length>1){this.select(b+(b+1<this.anchors.length?1:-1))}d.disabled=a.map(a.grep(d.disabled,function(g,f){return g!=b}),function(g,f){return g>=b?--g:g});this._tabify();this._trigger("remove",null,this._ui(e.find("a")[0],c[0]))},enable:function(b){var c=this.options;if(a.inArray(b,c.disabled)==-1){return}this.lis.eq(b).removeClass("ui-state-disabled");c.disabled=a.grep(c.disabled,function(e,d){return e!=b});this._trigger("enable",null,this._ui(this.anchors[b],this.panels[b]))},disable:function(c){var b=this,d=this.options;if(c!=d.selected){this.lis.eq(c).addClass("ui-state-disabled");d.disabled.push(c);d.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[c],this.panels[c]))}},select:function(b){if(typeof b=="string"){b=this.anchors.index(this.anchors.filter("[href$="+b+"]"))}else{if(b===null){b=-1}}if(b==-1&&this.options.collapsible){b=this.options.selected}this.anchors.eq(b).trigger(this.options.event+".tabs")},load:function(e){var c=this,g=this.options,b=this.anchors.eq(e)[0],d=a.data(b,"load.tabs");this.abort();if(!d||this.element.queue("tabs").length!==0&&a.data(b,"cache.tabs")){this.element.dequeue("tabs");return}this.lis.eq(e).addClass("ui-state-processing");if(g.spinner){var f=a("span",b);f.data("label.tabs",f.html()).html(g.spinner)}this.xhr=a.ajax(a.extend({},g.ajaxOptions,{url:d,success:function(i,h){a(c._sanitizeSelector(b.hash)).html(i);c._cleanup();if(g.cache){a.data(b,"cache.tabs",true)}c._trigger("load",null,c._ui(c.anchors[e],c.panels[e]));try{g.ajaxOptions.success(i,h)}catch(j){}c.element.dequeue("tabs")}}))},abort:function(){this.element.queue([]);this.panels.stop(false,true);if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup()},url:function(c,b){this.anchors.eq(c).removeData("cache.tabs").data("load.tabs",b)},length:function(){return this.anchors.length}});a.extend(a.ui.tabs,{version:"1.7",getter:"length",defaults:{ajaxOptions:null,cache:false,cookie:null,collapsible:false,disabled:[],event:"click",fx:null,idPrefix:"ui-tabs-",panelTemplate:"<div></div>",spinner:"<em>Loading&#8230;</em>",tabTemplate:'<li><a href="#{href}"><span>#{label}</span></a></li>'}});a.extend(a.ui.tabs.prototype,{rotation:null,rotate:function(d,f){var b=this,g=this.options;var c=b._rotate||(b._rotate=function(h){clearTimeout(b.rotation);b.rotation=setTimeout(function(){var i=g.selected;b.select(++i<b.anchors.length?i:0)},d);if(h){h.stopPropagation()}});var e=b._unrotate||(b._unrotate=!f?function(h){if(h.clientX){b.rotate(null)}}:function(h){t=g.selected;c()});if(d){this.element.bind("tabsshow",c);this.anchors.bind(g.event+".tabs",e);c()}else{clearTimeout(b.rotation);this.element.unbind("tabsshow",c);this.anchors.unbind(g.event+".tabs",e);delete this._rotate;delete this._unrotate}}})})(jQuery);;/*
 * jQuery UI Datepicker 1.7
 *
 * 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/Datepicker
 *
 * Depends:
 *	ui.core.js
 */(function($){$.extend($.ui,{datepicker:{version:"1.7"}});var PROP_NAME="datepicker";function Datepicker(){this.debug=false;this._curInst=null;this._keyEvent=false;this._disabledInputs=[];this._datepickerShowing=false;this._inDialog=false;this._mainDivId="ui-datepicker-div";this._inlineClass="ui-datepicker-inline";this._appendClass="ui-datepicker-append";this._triggerClass="ui-datepicker-trigger";this._dialogClass="ui-datepicker-dialog";this._disableClass="ui-datepicker-disabled";this._unselectableClass="ui-datepicker-unselectable";this._currentClass="ui-datepicker-current-day";this._dayOverClass="ui-datepicker-days-cell-over";this.regional=[];this.regional[""]={closeText:"Done",prevText:"Prev",nextText:"Next",currentText:"Today",monthNames:["January","February","March","April","May","June","July","August","September","October","November","December"],monthNamesShort:["Jan","Feb","Mar","Apr","May","Jun","Jul","Aug","Sep","Oct","Nov","Dec"],dayNames:["Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday"],dayNamesShort:["Sun","Mon","Tue","Wed","Thu","Fri","Sat"],dayNamesMin:["Su","Mo","Tu","We","Th","Fr","Sa"],dateFormat:"mm/dd/yy",firstDay:0,isRTL:false};this._defaults={showOn:"focus",showAnim:"show",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:false,hideIfNoPrevNext:false,navigationAsDateFormat:false,gotoCurrent:false,changeMonth:false,changeYear:false,showMonthAfterYear:false,yearRange:"-10:+10",showOtherMonths:false,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",minDate:null,maxDate:null,duration:"normal",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:true,showButtonPanel:false};$.extend(this._defaults,this.regional[""]);this.dpDiv=$('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all ui-helper-hidden-accessible"></div>')}$.extend(Datepicker.prototype,{markerClassName:"hasDatepicker",log:function(){if(this.debug){console.log.apply("",arguments)}},setDefaults:function(settings){extendRemove(this._defaults,settings||{});return this},_attachDatepicker:function(target,settings){var inlineSettings=null;for(var attrName in this._defaults){var attrValue=target.getAttribute("date:"+attrName);if(attrValue){inlineSettings=inlineSettings||{};try{inlineSettings[attrName]=eval(attrValue)}catch(err){inlineSettings[attrName]=attrValue}}}var nodeName=target.nodeName.toLowerCase();var inline=(nodeName=="div"||nodeName=="span");if(!target.id){target.id="dp"+(++this.uuid)}var inst=this._newInst($(target),inline);inst.settings=$.extend({},settings||{},inlineSettings||{});if(nodeName=="input"){this._connectDatepicker(target,inst)}else{if(inline){this._inlineDatepicker(target,inst)}}},_newInst:function(target,inline){var id=target[0].id.replace(/([:\[\]\.])/g,"\\\\$1");return{id:id,input:target,selectedDay:0,selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:inline,dpDiv:(!inline?this.dpDiv:$('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}},_connectDatepicker:function(target,inst){var input=$(target);if(input.hasClass(this.markerClassName)){return}var appendText=this._get(inst,"appendText");var isRTL=this._get(inst,"isRTL");if(appendText){input[isRTL?"before":"after"]('<span class="'+this._appendClass+'">'+appendText+"</span>")}var showOn=this._get(inst,"showOn");if(showOn=="focus"||showOn=="both"){input.focus(this._showDatepicker)}if(showOn=="button"||showOn=="both"){var buttonText=this._get(inst,"buttonText");var buttonImage=this._get(inst,"buttonImage");var trigger=$(this._get(inst,"buttonImageOnly")?$("<img/>").addClass(this._triggerClass).attr({src:buttonImage,alt:buttonText,title:buttonText}):$('<button type="button"></button>').addClass(this._triggerClass).html(buttonImage==""?buttonText:$("<img/>").attr({src:buttonImage,alt:buttonText,title:buttonText})));input[isRTL?"before":"after"](trigger);trigger.click(function(){if($.datepicker._datepickerShowing&&$.datepicker._lastInput==target){$.datepicker._hideDatepicker()}else{$.datepicker._showDatepicker(target)}return false})}input.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).bind("setData.datepicker",function(event,key,value){inst.settings[key]=value}).bind("getData.datepicker",function(event,key){return this._get(inst,key)});$.data(target,PROP_NAME,inst)},_inlineDatepicker:function(target,inst){var divSpan=$(target);if(divSpan.hasClass(this.markerClassName)){return}divSpan.addClass(this.markerClassName).append(inst.dpDiv).bind("setData.datepicker",function(event,key,value){inst.settings[key]=value}).bind("getData.datepicker",function(event,key){return this._get(inst,key)});$.data(target,PROP_NAME,inst);this._setDate(inst,this._getDefaultDate(inst));this._updateDatepicker(inst);this._updateAlternate(inst)},_dialogDatepicker:function(input,dateText,onSelect,settings,pos){var inst=this._dialogInst;if(!inst){var id="dp"+(++this.uuid);this._dialogInput=$('<input type="text" id="'+id+'" size="1" style="position: absolute; top: -100px;"/>');this._dialogInput.keydown(this._doKeyDown);$("body").append(this._dialogInput);inst=this._dialogInst=this._newInst(this._dialogInput,false);inst.settings={};$.data(this._dialogInput[0],PROP_NAME,inst)}extendRemove(inst.settings,settings||{});this._dialogInput.val(dateText);this._pos=(pos?(pos.length?pos:[pos.pageX,pos.pageY]):null);if(!this._pos){var browserWidth=window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth;var browserHeight=window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight;var scrollX=document.documentElement.scrollLeft||document.body.scrollLeft;var scrollY=document.documentElement.scrollTop||document.body.scrollTop;this._pos=[(browserWidth/2)-100+scrollX,(browserHeight/2)-150+scrollY]}this._dialogInput.css("left",this._pos[0]+"px").css("top",this._pos[1]+"px");inst.settings.onSelect=onSelect;this._inDialog=true;this.dpDiv.addClass(this._dialogClass);this._showDatepicker(this._dialogInput[0]);if($.blockUI){$.blockUI(this.dpDiv)}$.data(this._dialogInput[0],PROP_NAME,inst);return this},_destroyDatepicker:function(target){var $target=$(target);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();$.removeData(target,PROP_NAME);if(nodeName=="input"){$target.siblings("."+this._appendClass).remove().end().siblings("."+this._triggerClass).remove().end().removeClass(this.markerClassName).unbind("focus",this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress)}else{if(nodeName=="div"||nodeName=="span"){$target.removeClass(this.markerClassName).empty()}}},_enableDatepicker:function(target){var $target=$(target);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();if(nodeName=="input"){target.disabled=false;$target.siblings("button."+this._triggerClass).each(function(){this.disabled=false}).end().siblings("img."+this._triggerClass).css({opacity:"1.0",cursor:""})}else{if(nodeName=="div"||nodeName=="span"){var inline=$target.children("."+this._inlineClass);inline.children().removeClass("ui-state-disabled")}}this._disabledInputs=$.map(this._disabledInputs,function(value){return(value==target?null:value)})},_disableDatepicker:function(target){var $target=$(target);if(!$target.hasClass(this.markerClassName)){return}var nodeName=target.nodeName.toLowerCase();if(nodeName=="input"){target.disabled=true;$target.siblings("button."+this._triggerClass).each(function(){this.disabled=true}).end().siblings("img."+this._triggerClass).css({opacity:"0.5",cursor:"default"})}else{if(nodeName=="div"||nodeName=="span"){var inline=$target.children("."+this._inlineClass);inline.children().addClass("ui-state-disabled")}}this._disabledInputs=$.map(this._disabledInputs,function(value){return(value==target?null:value)});this._disabledInputs[this._disabledInputs.length]=target},_isDisabledDatepicker:function(target){if(!target){return false}for(var i=0;i<this._disabledInputs.length;i++){if(this._disabledInputs[i]==target){return true}}return false},_getInst:function(target){try{return $.data(target,PROP_NAME)}catch(err){throw"Missing instance data for this datepicker"}},_optionDatepicker:function(target,name,value){var settings=name||{};if(typeof name=="string"){settings={};settings[name]=value}var inst=this._getInst(target);if(inst){if(this._curInst==inst){this._hideDatepicker(null)}extendRemove(inst.settings,settings);var date=new Date();extendRemove(inst,{rangeStart:null,endDay:null,endMonth:null,endYear:null,selectedDay:date.getDate(),selectedMonth:date.getMonth(),selectedYear:date.getFullYear(),currentDay:date.getDate(),currentMonth:date.getMonth(),currentYear:date.getFullYear(),drawMonth:date.getMonth(),drawYear:date.getFullYear()});this._updateDatepicker(inst)}},_changeDatepicker:function(target,name,value){this._optionDatepicker(target,name,value)},_refreshDatepicker:function(target){var inst=this._getInst(target);if(inst){this._updateDatepicker(inst)}},_setDateDatepicker:function(target,date,endDate){var inst=this._getInst(target);if(inst){this._setDate(inst,date,endDate);this._updateDatepicker(inst);this._updateAlternate(inst)}},_getDateDatepicker:function(target){var inst=this._getInst(target);if(inst&&!inst.inline){this._setDateFromField(inst)}return(inst?this._getDate(inst):null)},_doKeyDown:function(event){var inst=$.datepicker._getInst(event.target);var handled=true;var isRTL=inst.dpDiv.is(".ui-datepicker-rtl");inst._keyEvent=true;if($.datepicker._datepickerShowing){switch(event.keyCode){case 9:$.datepicker._hideDatepicker(null,"");break;case 13:var sel=$("td."+$.datepicker._dayOverClass+", td."+$.datepicker._currentClass,inst.dpDiv);if(sel[0]){$.datepicker._selectDay(event.target,inst.selectedMonth,inst.selectedYear,sel[0])}else{$.datepicker._hideDatepicker(null,$.datepicker._get(inst,"duration"))}return false;break;case 27:$.datepicker._hideDatepicker(null,$.datepicker._get(inst,"duration"));break;case 33:$.datepicker._adjustDate(event.target,(event.ctrlKey?-$.datepicker._get(inst,"stepBigMonths"):-$.datepicker._get(inst,"stepMonths")),"M");break;case 34:$.datepicker._adjustDate(event.target,(event.ctrlKey?+$.datepicker._get(inst,"stepBigMonths"):+$.datepicker._get(inst,"stepMonths")),"M");break;case 35:if(event.ctrlKey||event.metaKey){$.datepicker._clearDate(event.target)}handled=event.ctrlKey||event.metaKey;break;case 36:if(event.ctrlKey||event.metaKey){$.datepicker._gotoToday(event.target)}handled=event.ctrlKey||event.metaKey;break;case 37:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,(isRTL?+1:-1),"D")}handled=event.ctrlKey||event.metaKey;if(event.originalEvent.altKey){$.datepicker._adjustDate(event.target,(event.ctrlKey?-$.datepicker._get(inst,"stepBigMonths"):-$.datepicker._get(inst,"stepMonths")),"M")}break;case 38:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,-7,"D")}handled=event.ctrlKey||event.metaKey;break;case 39:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,(isRTL?-1:+1),"D")}handled=event.ctrlKey||event.metaKey;if(event.originalEvent.altKey){$.datepicker._adjustDate(event.target,(event.ctrlKey?+$.datepicker._get(inst,"stepBigMonths"):+$.datepicker._get(inst,"stepMonths")),"M")}break;case 40:if(event.ctrlKey||event.metaKey){$.datepicker._adjustDate(event.target,+7,"D")}handled=event.ctrlKey||event.metaKey;break;default:handled=false}}else{if(event.keyCode==36&&event.ctrlKey){$.datepicker._showDatepicker(this)}else{handled=false}}if(handled){event.preventDefault();event.stopPropagation()}},_doKeyPress:function(event){var inst=$.datepicker._getInst(event.target);if($.datepicker._get(inst,"constrainInput")){var chars=$.datepicker._possibleChars($.datepicker._get(inst,"dateFormat"));var chr=String.fromCharCode(event.charCode==undefined?event.keyCode:event.charCode);return event.ctrlKey||(chr<" "||!chars||chars.indexOf(chr)>-1)}},_showDatepicker:function(input){input=input.target||input;if(input.nodeName.toLowerCase()!="input"){input=$("input",input.parentNode)[0]}if($.datepicker._isDisabledDatepicker(input)||$.datepicker._lastInput==input){return}var inst=$.datepicker._getInst(input);var beforeShow=$.datepicker._get(inst,"beforeShow");extendRemove(inst.settings,(beforeShow?beforeShow.apply(input,[input,inst]):{}));$.datepicker._hideDatepicker(null,"");$.datepicker._lastInput=input;$.datepicker._setDateFromField(inst);if($.datepicker._inDialog){input.value=""}if(!$.datepicker._pos){$.datepicker._pos=$.datepicker._findPos(input);$.datepicker._pos[1]+=input.offsetHeight}var isFixed=false;$(input).parents().each(function(){isFixed|=$(this).css("position")=="fixed";return !isFixed});if(isFixed&&$.browser.opera){$.datepicker._pos[0]-=document.documentElement.scrollLeft;$.datepicker._pos[1]-=document.documentElement.scrollTop}var offset={left:$.datepicker._pos[0],top:$.datepicker._pos[1]};$.datepicker._pos=null;inst.rangeStart=null;inst.dpDiv.css({position:"absolute",display:"block",top:"-1000px"});$.datepicker._updateDatepicker(inst);offset=$.datepicker._checkOffset(inst,offset,isFixed);inst.dpDiv.css({position:($.datepicker._inDialog&&$.blockUI?"static":(isFixed?"fixed":"absolute")),display:"none",left:offset.left+"px",top:offset.top+"px"});if(!inst.inline){var showAnim=$.datepicker._get(inst,"showAnim")||"show";var duration=$.datepicker._get(inst,"duration");var postProcess=function(){$.datepicker._datepickerShowing=true;if($.browser.msie&&parseInt($.browser.version,10)<7){$("iframe.ui-datepicker-cover").css({width:inst.dpDiv.width()+4,height:inst.dpDiv.height()+4})}};if($.effects&&$.effects[showAnim]){inst.dpDiv.show(showAnim,$.datepicker._get(inst,"showOptions"),duration,postProcess)}else{inst.dpDiv[showAnim](duration,postProcess)}if(duration==""){postProcess()}if(inst.input[0].type!="hidden"){inst.input[0].focus()}$.datepicker._curInst=inst}},_updateDatepicker:function(inst){var dims={width:inst.dpDiv.width()+4,height:inst.dpDiv.height()+4};var self=this;inst.dpDiv.empty().append(this._generateHTML(inst)).find("iframe.ui-datepicker-cover").css({width:dims.width,height:dims.height}).end().find("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a").bind("mouseout",function(){$(this).removeClass("ui-state-hover");if(this.className.indexOf("ui-datepicker-prev")!=-1){$(this).removeClass("ui-datepicker-prev-hover")}if(this.className.indexOf("ui-datepicker-next")!=-1){$(this).removeClass("ui-datepicker-next-hover")}}).bind("mouseover",function(){if(!self._isDisabledDatepicker(inst.inline?inst.dpDiv.parent()[0]:inst.input[0])){$(this).parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover");$(this).addClass("ui-state-hover");if(this.className.indexOf("ui-datepicker-prev")!=-1){$(this).addClass("ui-datepicker-prev-hover")}if(this.className.indexOf("ui-datepicker-next")!=-1){$(this).addClass("ui-datepicker-next-hover")}}}).end().find("."+this._dayOverClass+" a").trigger("mouseover").end();var numMonths=this._getNumberOfMonths(inst);var cols=numMonths[1];var width=17;if(cols>1){inst.dpDiv.addClass("ui-datepicker-multi-"+cols).css("width",(width*cols)+"em")}else{inst.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("")}inst.dpDiv[(numMonths[0]!=1||numMonths[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi");inst.dpDiv[(this._get(inst,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl");if(inst.input&&inst.input[0].type!="hidden"&&inst==$.datepicker._curInst){$(inst.input[0]).focus()}},_checkOffset:function(inst,offset,isFixed){var dpWidth=inst.dpDiv.outerWidth();var dpHeight=inst.dpDiv.outerHeight();var inputWidth=inst.input?inst.input.outerWidth():0;var inputHeight=inst.input?inst.input.outerHeight():0;var viewWidth=(window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth)+$(document).scrollLeft();var viewHeight=(window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight)+$(document).scrollTop();offset.left-=(this._get(inst,"isRTL")?(dpWidth-inputWidth):0);offset.left-=(isFixed&&offset.left==inst.input.offset().left)?$(document).scrollLeft():0;offset.top-=(isFixed&&offset.top==(inst.input.offset().top+inputHeight))?$(document).scrollTop():0;offset.left-=(offset.left+dpWidth>viewWidth&&viewWidth>dpWidth)?Math.abs(offset.left+dpWidth-viewWidth):0;offset.top-=(offset.top+dpHeight>viewHeight&&viewHeight>dpHeight)?Math.abs(offset.top+dpHeight+inputHeight*2-viewHeight):0;return offset},_findPos:function(obj){while(obj&&(obj.type=="hidden"||obj.nodeType!=1)){obj=obj.nextSibling}var position=$(obj).offset();return[position.left,position.top]},_hideDatepicker:function(input,duration){var inst=this._curInst;if(!inst||(input&&inst!=$.data(input,PROP_NAME))){return}if(inst.stayOpen){this._selectDate("#"+inst.id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear))}inst.stayOpen=false;if(this._datepickerShowing){duration=(duration!=null?duration:this._get(inst,"duration"));var showAnim=this._get(inst,"showAnim");var postProcess=function(){$.datepicker._tidyDialog(inst)};if(duration!=""&&$.effects&&$.effects[showAnim]){inst.dpDiv.hide(showAnim,$.datepicker._get(inst,"showOptions"),duration,postProcess)}else{inst.dpDiv[(duration==""?"hide":(showAnim=="slideDown"?"slideUp":(showAnim=="fadeIn"?"fadeOut":"hide")))](duration,postProcess)}if(duration==""){this._tidyDialog(inst)}var onClose=this._get(inst,"onClose");if(onClose){onClose.apply((inst.input?inst.input[0]:null),[(inst.input?inst.input.val():""),inst])}this._datepickerShowing=false;this._lastInput=null;if(this._inDialog){this._dialogInput.css({position:"absolute",left:"0",top:"-100px"});if($.blockUI){$.unblockUI();$("body").append(this.dpDiv)}}this._inDialog=false}this._curInst=null},_tidyDialog:function(inst){inst.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(event){if(!$.datepicker._curInst){return}var $target=$(event.target);if(($target.parents("#"+$.datepicker._mainDivId).length==0)&&!$target.hasClass($.datepicker.markerClassName)&&!$target.hasClass($.datepicker._triggerClass)&&$.datepicker._datepickerShowing&&!($.datepicker._inDialog&&$.blockUI)){$.datepicker._hideDatepicker(null,"")}},_adjustDate:function(id,offset,period){var target=$(id);var inst=this._getInst(target[0]);if(this._isDisabledDatepicker(target[0])){return}this._adjustInstDate(inst,offset+(period=="M"?this._get(inst,"showCurrentAtPos"):0),period);this._updateDatepicker(inst)},_gotoToday:function(id){var target=$(id);var inst=this._getInst(target[0]);if(this._get(inst,"gotoCurrent")&&inst.currentDay){inst.selectedDay=inst.currentDay;inst.drawMonth=inst.selectedMonth=inst.currentMonth;inst.drawYear=inst.selectedYear=inst.currentYear}else{var date=new Date();inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear()}this._notifyChange(inst);this._adjustDate(target)},_selectMonthYear:function(id,select,period){var target=$(id);var inst=this._getInst(target[0]);inst._selectingMonthYear=false;inst["selected"+(period=="M"?"Month":"Year")]=inst["draw"+(period=="M"?"Month":"Year")]=parseInt(select.options[select.selectedIndex].value,10);this._notifyChange(inst);this._adjustDate(target)},_clickMonthYear:function(id){var target=$(id);var inst=this._getInst(target[0]);if(inst.input&&inst._selectingMonthYear&&!$.browser.msie){inst.input[0].focus()}inst._selectingMonthYear=!inst._selectingMonthYear},_selectDay:function(id,month,year,td){var target=$(id);if($(td).hasClass(this._unselectableClass)||this._isDisabledDatepicker(target[0])){return}var inst=this._getInst(target[0]);inst.selectedDay=inst.currentDay=$("a",td).html();inst.selectedMonth=inst.currentMonth=month;inst.selectedYear=inst.currentYear=year;if(inst.stayOpen){inst.endDay=inst.endMonth=inst.endYear=null}this._selectDate(id,this._formatDate(inst,inst.currentDay,inst.currentMonth,inst.currentYear));if(inst.stayOpen){inst.rangeStart=this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay));this._updateDatepicker(inst)}},_clearDate:function(id){var target=$(id);var inst=this._getInst(target[0]);inst.stayOpen=false;inst.endDay=inst.endMonth=inst.endYear=inst.rangeStart=null;this._selectDate(target,"")},_selectDate:function(id,dateStr){var target=$(id);var inst=this._getInst(target[0]);dateStr=(dateStr!=null?dateStr:this._formatDate(inst));if(inst.input){inst.input.val(dateStr)}this._updateAlternate(inst);var onSelect=this._get(inst,"onSelect");if(onSelect){onSelect.apply((inst.input?inst.input[0]:null),[dateStr,inst])}else{if(inst.input){inst.input.trigger("change")}}if(inst.inline){this._updateDatepicker(inst)}else{if(!inst.stayOpen){this._hideDatepicker(null,this._get(inst,"duration"));this._lastInput=inst.input[0];if(typeof(inst.input[0])!="object"){inst.input[0].focus()}this._lastInput=null}}},_updateAlternate:function(inst){var altField=this._get(inst,"altField");if(altField){var altFormat=this._get(inst,"altFormat")||this._get(inst,"dateFormat");var date=this._getDate(inst);dateStr=this.formatDate(altFormat,date,this._getFormatConfig(inst));$(altField).each(function(){$(this).val(dateStr)})}},noWeekends:function(date){var day=date.getDay();return[(day>0&&day<6),""]},iso8601Week:function(date){var checkDate=new Date(date.getFullYear(),date.getMonth(),date.getDate());var firstMon=new Date(checkDate.getFullYear(),1-1,4);var firstDay=firstMon.getDay()||7;firstMon.setDate(firstMon.getDate()+1-firstDay);if(firstDay<4&&checkDate<firstMon){checkDate.setDate(checkDate.getDate()-3);return $.datepicker.iso8601Week(checkDate)}else{if(checkDate>new Date(checkDate.getFullYear(),12-1,28)){firstDay=new Date(checkDate.getFullYear()+1,1-1,4).getDay()||7;if(firstDay>4&&(checkDate.getDay()||7)<firstDay-3){return 1}}}return Math.floor(((checkDate-firstMon)/86400000)/7)+1},parseDate:function(format,value,settings){if(format==null||value==null){throw"Invalid arguments"}value=(typeof value=="object"?value.toString():value+"");if(value==""){return null}var shortYearCutoff=(settings?settings.shortYearCutoff:null)||this._defaults.shortYearCutoff;var dayNamesShort=(settings?settings.dayNamesShort:null)||this._defaults.dayNamesShort;var dayNames=(settings?settings.dayNames:null)||this._defaults.dayNames;var monthNamesShort=(settings?settings.monthNamesShort:null)||this._defaults.monthNamesShort;var monthNames=(settings?settings.monthNames:null)||this._defaults.monthNames;var year=-1;var month=-1;var day=-1;var doy=-1;var literal=false;var lookAhead=function(match){var matches=(iFormat+1<format.length&&format.charAt(iFormat+1)==match);if(matches){iFormat++}return matches};var getNumber=function(match){lookAhead(match);var origSize=(match=="@"?14:(match=="y"?4:(match=="o"?3:2)));var size=origSize;var num=0;while(size>0&&iValue<value.length&&value.charAt(iValue)>="0"&&value.charAt(iValue)<="9"){num=num*10+parseInt(value.charAt(iValue++),10);size--}if(size==origSize){throw"Missing number at position "+iValue}return num};var getName=function(match,shortNames,longNames){var names=(lookAhead(match)?longNames:shortNames);var size=0;for(var j=0;j<names.length;j++){size=Math.max(size,names[j].length)}var name="";var iInit=iValue;while(size>0&&iValue<value.length){name+=value.charAt(iValue++);for(var i=0;i<names.length;i++){if(name==names[i]){return i+1}}size--}throw"Unknown name at position "+iInit};var checkLiteral=function(){if(value.charAt(iValue)!=format.charAt(iFormat)){throw"Unexpected literal at position "+iValue}iValue++};var iValue=0;for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{checkLiteral()}}else{switch(format.charAt(iFormat)){case"d":day=getNumber("d");break;case"D":getName("D",dayNamesShort,dayNames);break;case"o":doy=getNumber("o");break;case"m":month=getNumber("m");break;case"M":month=getName("M",monthNamesShort,monthNames);break;case"y":year=getNumber("y");break;case"@":var date=new Date(getNumber("@"));year=date.getFullYear();month=date.getMonth()+1;day=date.getDate();break;case"'":if(lookAhead("'")){checkLiteral()}else{literal=true}break;default:checkLiteral()}}}if(year==-1){year=new Date().getFullYear()}else{if(year<100){year+=new Date().getFullYear()-new Date().getFullYear()%100+(year<=shortYearCutoff?0:-100)}}if(doy>-1){month=1;day=doy;do{var dim=this._getDaysInMonth(year,month-1);if(day<=dim){break}month++;day-=dim}while(true)}var date=this._daylightSavingAdjust(new Date(year,month-1,day));if(date.getFullYear()!=year||date.getMonth()+1!=month||date.getDate()!=day){throw"Invalid date"}return date},ATOM:"yy-mm-dd",COOKIE:"D, dd M yy",ISO_8601:"yy-mm-dd",RFC_822:"D, d M y",RFC_850:"DD, dd-M-y",RFC_1036:"D, d M y",RFC_1123:"D, d M yy",RFC_2822:"D, d M yy",RSS:"D, d M y",TIMESTAMP:"@",W3C:"yy-mm-dd",formatDate:function(format,date,settings){if(!date){return""}var dayNamesShort=(settings?settings.dayNamesShort:null)||this._defaults.dayNamesShort;var dayNames=(settings?settings.dayNames:null)||this._defaults.dayNames;var monthNamesShort=(settings?settings.monthNamesShort:null)||this._defaults.monthNamesShort;var monthNames=(settings?settings.monthNames:null)||this._defaults.monthNames;var lookAhead=function(match){var matches=(iFormat+1<format.length&&format.charAt(iFormat+1)==match);if(matches){iFormat++}return matches};var formatNumber=function(match,value,len){var num=""+value;if(lookAhead(match)){while(num.length<len){num="0"+num}}return num};var formatName=function(match,value,shortNames,longNames){return(lookAhead(match)?longNames[value]:shortNames[value])};var output="";var literal=false;if(date){for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{output+=format.charAt(iFormat)}}else{switch(format.charAt(iFormat)){case"d":output+=formatNumber("d",date.getDate(),2);break;case"D":output+=formatName("D",date.getDay(),dayNamesShort,dayNames);break;case"o":var doy=date.getDate();for(var m=date.getMonth()-1;m>=0;m--){doy+=this._getDaysInMonth(date.getFullYear(),m)}output+=formatNumber("o",doy,3);break;case"m":output+=formatNumber("m",date.getMonth()+1,2);break;case"M":output+=formatName("M",date.getMonth(),monthNamesShort,monthNames);break;case"y":output+=(lookAhead("y")?date.getFullYear():(date.getYear()%100<10?"0":"")+date.getYear()%100);break;case"@":output+=date.getTime();break;case"'":if(lookAhead("'")){output+="'"}else{literal=true}break;default:output+=format.charAt(iFormat)}}}}return output},_possibleChars:function(format){var chars="";var literal=false;for(var iFormat=0;iFormat<format.length;iFormat++){if(literal){if(format.charAt(iFormat)=="'"&&!lookAhead("'")){literal=false}else{chars+=format.charAt(iFormat)}}else{switch(format.charAt(iFormat)){case"d":case"m":case"y":case"@":chars+="0123456789";break;case"D":case"M":return null;case"'":if(lookAhead("'")){chars+="'"}else{literal=true}break;default:chars+=format.charAt(iFormat)}}}return chars},_get:function(inst,name){return inst.settings[name]!==undefined?inst.settings[name]:this._defaults[name]},_setDateFromField:function(inst){var dateFormat=this._get(inst,"dateFormat");var dates=inst.input?inst.input.val():null;inst.endDay=inst.endMonth=inst.endYear=null;var date=defaultDate=this._getDefaultDate(inst);var settings=this._getFormatConfig(inst);try{date=this.parseDate(dateFormat,dates,settings)||defaultDate}catch(event){this.log(event);date=defaultDate}inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear();inst.currentDay=(dates?date.getDate():0);inst.currentMonth=(dates?date.getMonth():0);inst.currentYear=(dates?date.getFullYear():0);this._adjustInstDate(inst)},_getDefaultDate:function(inst){var date=this._determineDate(this._get(inst,"defaultDate"),new Date());var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");date=(minDate&&date<minDate?minDate:date);date=(maxDate&&date>maxDate?maxDate:date);return date},_determineDate:function(date,defaultDate){var offsetNumeric=function(offset){var date=new Date();date.setDate(date.getDate()+offset);return date};var offsetString=function(offset,getDaysInMonth){var date=new Date();var year=date.getFullYear();var month=date.getMonth();var day=date.getDate();var pattern=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g;var matches=pattern.exec(offset);while(matches){switch(matches[2]||"d"){case"d":case"D":day+=parseInt(matches[1],10);break;case"w":case"W":day+=parseInt(matches[1],10)*7;break;case"m":case"M":month+=parseInt(matches[1],10);day=Math.min(day,getDaysInMonth(year,month));break;case"y":case"Y":year+=parseInt(matches[1],10);day=Math.min(day,getDaysInMonth(year,month));break}matches=pattern.exec(offset)}return new Date(year,month,day)};date=(date==null?defaultDate:(typeof date=="string"?offsetString(date,this._getDaysInMonth):(typeof date=="number"?(isNaN(date)?defaultDate:offsetNumeric(date)):date)));date=(date&&date.toString()=="Invalid Date"?defaultDate:date);if(date){date.setHours(0);date.setMinutes(0);date.setSeconds(0);date.setMilliseconds(0)}return this._daylightSavingAdjust(date)},_daylightSavingAdjust:function(date){if(!date){return null}date.setHours(date.getHours()>12?date.getHours()+2:0);return date},_setDate:function(inst,date,endDate){var clear=!(date);var origMonth=inst.selectedMonth;var origYear=inst.selectedYear;date=this._determineDate(date,new Date());inst.selectedDay=inst.currentDay=date.getDate();inst.drawMonth=inst.selectedMonth=inst.currentMonth=date.getMonth();inst.drawYear=inst.selectedYear=inst.currentYear=date.getFullYear();if(origMonth!=inst.selectedMonth||origYear!=inst.selectedYear){this._notifyChange(inst)}this._adjustInstDate(inst);if(inst.input){inst.input.val(clear?"":this._formatDate(inst))}},_getDate:function(inst){var startDate=(!inst.currentYear||(inst.input&&inst.input.val()=="")?null:this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));return startDate},_generateHTML:function(inst){var today=new Date();today=this._daylightSavingAdjust(new Date(today.getFullYear(),today.getMonth(),today.getDate()));var isRTL=this._get(inst,"isRTL");var showButtonPanel=this._get(inst,"showButtonPanel");var hideIfNoPrevNext=this._get(inst,"hideIfNoPrevNext");var navigationAsDateFormat=this._get(inst,"navigationAsDateFormat");var numMonths=this._getNumberOfMonths(inst);var showCurrentAtPos=this._get(inst,"showCurrentAtPos");var stepMonths=this._get(inst,"stepMonths");var stepBigMonths=this._get(inst,"stepBigMonths");var isMultiMonth=(numMonths[0]!=1||numMonths[1]!=1);var currentDate=this._daylightSavingAdjust((!inst.currentDay?new Date(9999,9,9):new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");var drawMonth=inst.drawMonth-showCurrentAtPos;var drawYear=inst.drawYear;if(drawMonth<0){drawMonth+=12;drawYear--}if(maxDate){var maxDraw=this._daylightSavingAdjust(new Date(maxDate.getFullYear(),maxDate.getMonth()-numMonths[1]+1,maxDate.getDate()));maxDraw=(minDate&&maxDraw<minDate?minDate:maxDraw);while(this._daylightSavingAdjust(new Date(drawYear,drawMonth,1))>maxDraw){drawMonth--;if(drawMonth<0){drawMonth=11;drawYear--}}}inst.drawMonth=drawMonth;inst.drawYear=drawYear;var prevText=this._get(inst,"prevText");prevText=(!navigationAsDateFormat?prevText:this.formatDate(prevText,this._daylightSavingAdjust(new Date(drawYear,drawMonth-stepMonths,1)),this._getFormatConfig(inst)));var prev=(this._canAdjustMonth(inst,-1,drawYear,drawMonth)?'<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery.datepicker._adjustDate(\'#'+inst.id+"', -"+stepMonths+", 'M');\" title=\""+prevText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"e":"w")+'">'+prevText+"</span></a>":(hideIfNoPrevNext?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+prevText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"e":"w")+'">'+prevText+"</span></a>"));var nextText=this._get(inst,"nextText");nextText=(!navigationAsDateFormat?nextText:this.formatDate(nextText,this._daylightSavingAdjust(new Date(drawYear,drawMonth+stepMonths,1)),this._getFormatConfig(inst)));var next=(this._canAdjustMonth(inst,+1,drawYear,drawMonth)?'<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery.datepicker._adjustDate(\'#'+inst.id+"', +"+stepMonths+", 'M');\" title=\""+nextText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"w":"e")+'">'+nextText+"</span></a>":(hideIfNoPrevNext?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+nextText+'"><span class="ui-icon ui-icon-circle-triangle-'+(isRTL?"w":"e")+'">'+nextText+"</span></a>"));var currentText=this._get(inst,"currentText");var gotoDate=(this._get(inst,"gotoCurrent")&&inst.currentDay?currentDate:today);currentText=(!navigationAsDateFormat?currentText:this.formatDate(currentText,gotoDate,this._getFormatConfig(inst)));var controls=(!inst.inline?'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery.datepicker._hideDatepicker();">'+this._get(inst,"closeText")+"</button>":"");var buttonPanel=(showButtonPanel)?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(isRTL?controls:"")+(this._isInRange(inst,gotoDate)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery.datepicker._gotoToday(\'#'+inst.id+"');\">"+currentText+"</button>":"")+(isRTL?"":controls)+"</div>":"";var firstDay=parseInt(this._get(inst,"firstDay"),10);firstDay=(isNaN(firstDay)?0:firstDay);var dayNames=this._get(inst,"dayNames");var dayNamesShort=this._get(inst,"dayNamesShort");var dayNamesMin=this._get(inst,"dayNamesMin");var monthNames=this._get(inst,"monthNames");var monthNamesShort=this._get(inst,"monthNamesShort");var beforeShowDay=this._get(inst,"beforeShowDay");var showOtherMonths=this._get(inst,"showOtherMonths");var calculateWeek=this._get(inst,"calculateWeek")||this.iso8601Week;var endDate=inst.endDay?this._daylightSavingAdjust(new Date(inst.endYear,inst.endMonth,inst.endDay)):currentDate;var defaultDate=this._getDefaultDate(inst);var html="";for(var row=0;row<numMonths[0];row++){var group="";for(var col=0;col<numMonths[1];col++){var selectedDate=this._daylightSavingAdjust(new Date(drawYear,drawMonth,inst.selectedDay));var cornerClass=" ui-corner-all";var calender="";if(isMultiMonth){calender+='<div class="ui-datepicker-group ui-datepicker-group-';switch(col){case 0:calender+="first";cornerClass=" ui-corner-"+(isRTL?"right":"left");break;case numMonths[1]-1:calender+="last";cornerClass=" ui-corner-"+(isRTL?"left":"right");break;default:calender+="middle";cornerClass="";break}calender+='">'}calender+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+cornerClass+'">'+(/all|left/.test(cornerClass)&&row==0?(isRTL?next:prev):"")+(/all|right/.test(cornerClass)&&row==0?(isRTL?prev:next):"")+this._generateMonthYearHeader(inst,drawMonth,drawYear,minDate,maxDate,selectedDate,row>0||col>0,monthNames,monthNamesShort)+'</div><table class="ui-datepicker-calendar"><thead><tr>';var thead="";for(var dow=0;dow<7;dow++){var day=(dow+firstDay)%7;thead+="<th"+((dow+firstDay+6)%7>=5?' class="ui-datepicker-week-end"':"")+'><span title="'+dayNames[day]+'">'+dayNamesMin[day]+"</span></th>"}calender+=thead+"</tr></thead><tbody>";var daysInMonth=this._getDaysInMonth(drawYear,drawMonth);if(drawYear==inst.selectedYear&&drawMonth==inst.selectedMonth){inst.selectedDay=Math.min(inst.selectedDay,daysInMonth)}var leadDays=(this._getFirstDayOfMonth(drawYear,drawMonth)-firstDay+7)%7;var numRows=(isMultiMonth?6:Math.ceil((leadDays+daysInMonth)/7));var printDate=this._daylightSavingAdjust(new Date(drawYear,drawMonth,1-leadDays));for(var dRow=0;dRow<numRows;dRow++){calender+="<tr>";var tbody="";for(var dow=0;dow<7;dow++){var daySettings=(beforeShowDay?beforeShowDay.apply((inst.input?inst.input[0]:null),[printDate]):[true,""]);var otherMonth=(printDate.getMonth()!=drawMonth);var unselectable=otherMonth||!daySettings[0]||(minDate&&printDate<minDate)||(maxDate&&printDate>maxDate);tbody+='<td class="'+((dow+firstDay+6)%7>=5?" ui-datepicker-week-end":"")+(otherMonth?" ui-datepicker-other-month":"")+((printDate.getTime()==selectedDate.getTime()&&drawMonth==inst.selectedMonth&&inst._keyEvent)||(defaultDate.getTime()==printDate.getTime()&&defaultDate.getTime()==selectedDate.getTime())?" "+this._dayOverClass:"")+(unselectable?" "+this._unselectableClass+" ui-state-disabled":"")+(otherMonth&&!showOtherMonths?"":" "+daySettings[1]+(printDate.getTime()>=currentDate.getTime()&&printDate.getTime()<=endDate.getTime()?" "+this._currentClass:"")+(printDate.getTime()==today.getTime()?" ui-datepicker-today":""))+'"'+((!otherMonth||showOtherMonths)&&daySettings[2]?' title="'+daySettings[2]+'"':"")+(unselectable?"":" onclick=\"DP_jQuery.datepicker._selectDay('#"+inst.id+"',"+drawMonth+","+drawYear+', this);return false;"')+">"+(otherMonth?(showOtherMonths?printDate.getDate():"&#xa0;"):(unselectable?'<span class="ui-state-default">'+printDate.getDate()+"</span>":'<a class="ui-state-default'+(printDate.getTime()==today.getTime()?" ui-state-highlight":"")+(printDate.getTime()>=currentDate.getTime()&&printDate.getTime()<=endDate.getTime()?" ui-state-active":"")+'" href="#">'+printDate.getDate()+"</a>"))+"</td>";printDate.setDate(printDate.getDate()+1);printDate=this._daylightSavingAdjust(printDate)}calender+=tbody+"</tr>"}drawMonth++;if(drawMonth>11){drawMonth=0;drawYear++}calender+="</tbody></table>"+(isMultiMonth?"</div>"+((numMonths[0]>0&&col==numMonths[1]-1)?'<div class="ui-datepicker-row-break"></div>':""):"");group+=calender}html+=group}html+=buttonPanel+($.browser.msie&&parseInt($.browser.version,10)<7&&!inst.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':"");inst._keyEvent=false;return html},_generateMonthYearHeader:function(inst,drawMonth,drawYear,minDate,maxDate,selectedDate,secondary,monthNames,monthNamesShort){minDate=(inst.rangeStart&&minDate&&selectedDate<minDate?selectedDate:minDate);var changeMonth=this._get(inst,"changeMonth");var changeYear=this._get(inst,"changeYear");var showMonthAfterYear=this._get(inst,"showMonthAfterYear");var html='<div class="ui-datepicker-title">';var monthHtml="";if(secondary||!changeMonth){monthHtml+='<span class="ui-datepicker-month">'+monthNames[drawMonth]+"</span> "}else{var inMinYear=(minDate&&minDate.getFullYear()==drawYear);var inMaxYear=(maxDate&&maxDate.getFullYear()==drawYear);monthHtml+='<select class="ui-datepicker-month" onchange="DP_jQuery.datepicker._selectMonthYear(\'#'+inst.id+"', this, 'M');\" onclick=\"DP_jQuery.datepicker._clickMonthYear('#"+inst.id+"');\">";for(var month=0;month<12;month++){if((!inMinYear||month>=minDate.getMonth())&&(!inMaxYear||month<=maxDate.getMonth())){monthHtml+='<option value="'+month+'"'+(month==drawMonth?' selected="selected"':"")+">"+monthNamesShort[month]+"</option>"}}monthHtml+="</select>"}if(!showMonthAfterYear){html+=monthHtml+((secondary||changeMonth||changeYear)&&(!(changeMonth&&changeYear))?"&#xa0;":"")}if(secondary||!changeYear){html+='<span class="ui-datepicker-year">'+drawYear+"</span>"}else{var years=this._get(inst,"yearRange").split(":");var year=0;var endYear=0;if(years.length!=2){year=drawYear-10;endYear=drawYear+10}else{if(years[0].charAt(0)=="+"||years[0].charAt(0)=="-"){year=drawYear+parseInt(years[0],10);endYear=drawYear+parseInt(years[1],10)}else{year=parseInt(years[0],10);endYear=parseInt(years[1],10)}}year=(minDate?Math.max(year,minDate.getFullYear()):year);endYear=(maxDate?Math.min(endYear,maxDate.getFullYear()):endYear);html+='<select class="ui-datepicker-year" onchange="DP_jQuery.datepicker._selectMonthYear(\'#'+inst.id+"', this, 'Y');\" onclick=\"DP_jQuery.datepicker._clickMonthYear('#"+inst.id+"');\">";for(;year<=endYear;year++){html+='<option value="'+year+'"'+(year==drawYear?' selected="selected"':"")+">"+year+"</option>"}html+="</select>"}if(showMonthAfterYear){html+=(secondary||changeMonth||changeYear?"&#xa0;":"")+monthHtml}html+="</div>";return html},_adjustInstDate:function(inst,offset,period){var year=inst.drawYear+(period=="Y"?offset:0);var month=inst.drawMonth+(period=="M"?offset:0);var day=Math.min(inst.selectedDay,this._getDaysInMonth(year,month))+(period=="D"?offset:0);var date=this._daylightSavingAdjust(new Date(year,month,day));var minDate=this._getMinMaxDate(inst,"min",true);var maxDate=this._getMinMaxDate(inst,"max");date=(minDate&&date<minDate?minDate:date);date=(maxDate&&date>maxDate?maxDate:date);inst.selectedDay=date.getDate();inst.drawMonth=inst.selectedMonth=date.getMonth();inst.drawYear=inst.selectedYear=date.getFullYear();if(period=="M"||period=="Y"){this._notifyChange(inst)}},_notifyChange:function(inst){var onChange=this._get(inst,"onChangeMonthYear");if(onChange){onChange.apply((inst.input?inst.input[0]:null),[inst.selectedYear,inst.selectedMonth+1,inst])}},_getNumberOfMonths:function(inst){var numMonths=this._get(inst,"numberOfMonths");return(numMonths==null?[1,1]:(typeof numMonths=="number"?[1,numMonths]:numMonths))},_getMinMaxDate:function(inst,minMax,checkRange){var date=this._determineDate(this._get(inst,minMax+"Date"),null);return(!checkRange||!inst.rangeStart?date:(!date||inst.rangeStart>date?inst.rangeStart:date))},_getDaysInMonth:function(year,month){return 32-new Date(year,month,32).getDate()},_getFirstDayOfMonth:function(year,month){return new Date(year,month,1).getDay()},_canAdjustMonth:function(inst,offset,curYear,curMonth){var numMonths=this._getNumberOfMonths(inst);var date=this._daylightSavingAdjust(new Date(curYear,curMonth+(offset<0?offset:numMonths[1]),1));if(offset<0){date.setDate(this._getDaysInMonth(date.getFullYear(),date.getMonth()))}return this._isInRange(inst,date)},_isInRange:function(inst,date){var newMinDate=(!inst.rangeStart?null:this._daylightSavingAdjust(new Date(inst.selectedYear,inst.selectedMonth,inst.selectedDay)));newMinDate=(newMinDate&&inst.rangeStart<newMinDate?inst.rangeStart:newMinDate);var minDate=newMinDate||this._getMinMaxDate(inst,"min");var maxDate=this._getMinMaxDate(inst,"max");return((!minDate||date>=minDate)&&(!maxDate||date<=maxDate))},_getFormatConfig:function(inst){var shortYearCutoff=this._get(inst,"shortYearCutoff");shortYearCutoff=(typeof shortYearCutoff!="string"?shortYearCutoff:new Date().getFullYear()%100+parseInt(shortYearCutoff,10));return{shortYearCutoff:shortYearCutoff,dayNamesShort:this._get(inst,"dayNamesShort"),dayNames:this._get(inst,"dayNames"),monthNamesShort:this._get(inst,"monthNamesShort"),monthNames:this._get(inst,"monthNames")}},_formatDate:function(inst,day,month,year){if(!day){inst.currentDay=inst.selectedDay;inst.currentMonth=inst.selectedMonth;inst.currentYear=inst.selectedYear}var date=(day?(typeof day=="object"?day:this._daylightSavingAdjust(new Date(year,month,day))):this._daylightSavingAdjust(new Date(inst.currentYear,inst.currentMonth,inst.currentDay)));return this.formatDate(this._get(inst,"dateFormat"),date,this._getFormatConfig(inst))}});function extendRemove(target,props){$.extend(target,props);for(var name in props){if(props[name]==null||props[name]==undefined){target[name]=props[name]}}return target}function isArray(a){return(a&&(($.browser.safari&&typeof a=="object"&&a.length)||(a.constructor&&a.constructor.toString().match(/\Array\(\)/))))}$.fn.datepicker=function(options){if(!$.datepicker.initialized){$(document).mousedown($.datepicker._checkExternalClick).find("body").append($.datepicker.dpDiv);$.datepicker.initialized=true}var otherArgs=Array.prototype.slice.call(arguments,1);if(typeof options=="string"&&(options=="isDisabled"||options=="getDate")){return $.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this[0]].concat(otherArgs))}return this.each(function(){typeof options=="string"?$.datepicker["_"+options+"Datepicker"].apply($.datepicker,[this].concat(otherArgs)):$.datepicker._attachDatepicker(this,options)})};$.datepicker=new Datepicker();$.datepicker.initialized=false;$.datepicker.uuid=new Date().getTime();$.datepicker.version="1.7";window.DP_jQuery=$})(jQuery);;/*
 * jQuery UI Progressbar 1.7
 *
 * 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/Progressbar
 *
 * Depends:
 *   ui.core.js
 */(function(a){a.widget("ui.progressbar",{_init:function(){this.element.addClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").attr({role:"progressbar","aria-valuemin":this._valueMin(),"aria-valuemax":this._valueMax(),"aria-valuenow":this._value()});this.valueDiv=a('<div class="ui-progressbar-value ui-widget-header ui-corner-left"></div>').appendTo(this.element);this._refreshValue()},destroy:function(){this.element.removeClass("ui-progressbar ui-widget ui-widget-content ui-corner-all").removeAttr("role").removeAttr("aria-valuemin").removeAttr("aria-valuemax").removeAttr("aria-valuenow").removeData("progressbar").unbind(".progressbar");this.valueDiv.remove();a.widget.prototype.destroy.apply(this,arguments)},value:function(b){arguments.length&&this._setData("value",b);return this._value()},_setData:function(b,c){switch(b){case"value":this.options.value=c;this._refreshValue();this._trigger("change",null,{});break}a.widget.prototype._setData.apply(this,arguments)},_value:function(){var b=this.options.value;if(b<this._valueMin()){b=this._valueMin()}if(b>this._valueMax()){b=this._valueMax()}return b},_valueMin:function(){var b=0;return b},_valueMax:function(){var b=100;return b},_refreshValue:function(){var b=this.value();this.valueDiv[b==this._valueMax()?"addClass":"removeClass"]("ui-corner-right");this.valueDiv.width(b+"%");this.element.attr("aria-valuenow",b)}});a.extend(a.ui.progressbar,{version:"1.7",defaults:{value:0}})})(jQuery);;/*
 * jQuery UI Effects 1.7
 *
 * 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/Effects/
 */jQuery.effects||(function(d){d.effects={version:"1.7",save:function(g,h){for(var f=0;f<h.length;f++){if(h[f]!==null){g.data("ec.storage."+h[f],g[0].style[h[f]])}}},restore:function(g,h){for(var f=0;f<h.length;f++){if(h[f]!==null){g.css(h[f],g.data("ec.storage."+h[f]))}}},setMode:function(f,g){if(g=="toggle"){g=f.is(":hidden")?"show":"hide"}return g},getBaseline:function(g,h){var i,f;switch(g[0]){case"top":i=0;break;case"middle":i=0.5;break;case"bottom":i=1;break;default:i=g[0]/h.height}switch(g[1]){case"left":f=0;break;case"center":f=0.5;break;case"right":f=1;break;default:f=g[1]/h.width}return{x:f,y:i}},createWrapper:function(f){if(f.parent().is(".ui-effects-wrapper")){return f.parent()}var g={width:f.outerWidth(true),height:f.outerHeight(true),"float":f.css("float")};f.wrap('<div class="ui-effects-wrapper" style="font-size:100%;background:transparent;border:none;margin:0;padding:0"></div>');var j=f.parent();if(f.css("position")=="static"){j.css({position:"relative"});f.css({position:"relative"})}else{var i=f.css("top");if(isNaN(parseInt(i,10))){i="auto"}var h=f.css("left");if(isNaN(parseInt(h,10))){h="auto"}j.css({position:f.css("position"),top:i,left:h,zIndex:f.css("z-index")}).show();f.css({position:"relative",top:0,left:0})}j.css(g);return j},removeWrapper:function(f){if(f.parent().is(".ui-effects-wrapper")){return f.parent().replaceWith(f)}return f},setTransition:function(g,i,f,h){h=h||{};d.each(i,function(k,j){unit=g.cssUnit(j);if(unit[0]>0){h[j]=unit[0]*f+unit[1]}});return h},animateClass:function(h,i,k,j){var f=(typeof k=="function"?k:(j?j:null));var g=(typeof k=="string"?k:null);return this.each(function(){var q={};var o=d(this);var p=o.attr("style")||"";if(typeof p=="object"){p=p.cssText}if(h.toggle){o.hasClass(h.toggle)?h.remove=h.toggle:h.add=h.toggle}var l=d.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(h.add){o.addClass(h.add)}if(h.remove){o.removeClass(h.remove)}var m=d.extend({},(document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle));if(h.add){o.removeClass(h.add)}if(h.remove){o.addClass(h.remove)}for(var r in m){if(typeof m[r]!="function"&&m[r]&&r.indexOf("Moz")==-1&&r.indexOf("length")==-1&&m[r]!=l[r]&&(r.match(/color/i)||(!r.match(/color/i)&&!isNaN(parseInt(m[r],10))))&&(l.position!="static"||(l.position=="static"&&!r.match(/left|top|bottom|right/)))){q[r]=m[r]}}o.animate(q,i,g,function(){if(typeof d(this).attr("style")=="object"){d(this).attr("style")["cssText"]="";d(this).attr("style")["cssText"]=p}else{d(this).attr("style",p)}if(h.add){d(this).addClass(h.add)}if(h.remove){d(this).removeClass(h.remove)}if(f){f.apply(this,arguments)}})})}};function c(g,f){var i=g[1]&&g[1].constructor==Object?g[1]:{};if(f){i.mode=f}var h=g[1]&&g[1].constructor!=Object?g[1]:(i.duration?i.duration:g[2]);h=d.fx.off?0:typeof h==="number"?h:d.fx.speeds[h]||d.fx.speeds._default;var j=i.callback||(d.isFunction(g[1])&&g[1])||(d.isFunction(g[2])&&g[2])||(d.isFunction(g[3])&&g[3]);return[g[0],i,h,j]}d.fn.extend({_show:d.fn.show,_hide:d.fn.hide,__toggle:d.fn.toggle,_addClass:d.fn.addClass,_removeClass:d.fn.removeClass,_toggleClass:d.fn.toggleClass,effect:function(g,f,h,i){return d.effects[g]?d.effects[g].call(this,{method:g,options:f||{},duration:h,callback:i}):null},show:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))){return this._show.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"show"))}},hide:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))){return this._hide.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"hide"))}},toggle:function(){if(!arguments[0]||(arguments[0].constructor==Number||(/(slow|normal|fast)/).test(arguments[0]))||(arguments[0].constructor==Function)){return this.__toggle.apply(this,arguments)}else{return this.effect.apply(this,c(arguments,"toggle"))}},addClass:function(g,f,i,h){return f?d.effects.animateClass.apply(this,[{add:g},f,i,h]):this._addClass(g)},removeClass:function(g,f,i,h){return f?d.effects.animateClass.apply(this,[{remove:g},f,i,h]):this._removeClass(g)},toggleClass:function(g,f,i,h){return((typeof f!=="boolean")&&f)?d.effects.animateClass.apply(this,[{toggle:g},f,i,h]):this._toggleClass(g,f)},morph:function(f,h,g,j,i){return d.effects.animateClass.apply(this,[{add:h,remove:f},g,j,i])},switchClass:function(){return this.morph.apply(this,arguments)},cssUnit:function(f){var g=this.css(f),h=[];d.each(["em","px","%","pt"],function(j,k){if(g.indexOf(k)>0){h=[parseFloat(g),k]}});return h}});d.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor","borderTopColor","color","outlineColor"],function(g,f){d.fx.step[f]=function(h){if(h.state==0){h.start=e(h.elem,f);h.end=b(h.end)}h.elem.style[f]="rgb("+[Math.max(Math.min(parseInt((h.pos*(h.end[0]-h.start[0]))+h.start[0],10),255),0),Math.max(Math.min(parseInt((h.pos*(h.end[1]-h.start[1]))+h.start[1],10),255),0),Math.max(Math.min(parseInt((h.pos*(h.end[2]-h.start[2]))+h.start[2],10),255),0)].join(",")+")"}});function b(g){var f;if(g&&g.constructor==Array&&g.length==3){return g}if(f=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(g)){return[parseInt(f[1],10),parseInt(f[2],10),parseInt(f[3],10)]}if(f=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(g)){return[parseFloat(f[1])*2.55,parseFloat(f[2])*2.55,parseFloat(f[3])*2.55]}if(f=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(g)){return[parseInt(f[1],16),parseInt(f[2],16),parseInt(f[3],16)]}if(f=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(g)){return[parseInt(f[1]+f[1],16),parseInt(f[2]+f[2],16),parseInt(f[3]+f[3],16)]}if(f=/rgba\(0, 0, 0, 0\)/.exec(g)){return a.transparent}return a[d.trim(g).toLowerCase()]}function e(h,f){var g;do{g=d.curCSS(h,f);if(g!=""&&g!="transparent"||d.nodeName(h,"body")){break}f="backgroundColor"}while(h=h.parentNode);return b(g)}var a={aqua:[0,255,255],azure:[240,255,255],beige:[245,245,220],black:[0,0,0],blue:[0,0,255],brown:[165,42,42],cyan:[0,255,255],darkblue:[0,0,139],darkcyan:[0,139,139],darkgrey:[169,169,169],darkgreen:[0,100,0],darkkhaki:[189,183,107],darkmagenta:[139,0,139],darkolivegreen:[85,107,47],darkorange:[255,140,0],darkorchid:[153,50,204],darkred:[139,0,0],darksalmon:[233,150,122],darkviolet:[148,0,211],fuchsia:[255,0,255],gold:[255,215,0],green:[0,128,0],indigo:[75,0,130],khaki:[240,230,140],lightblue:[173,216,230],lightcyan:[224,255,255],lightgreen:[144,238,144],lightgrey:[211,211,211],lightpink:[255,182,193],lightyellow:[255,255,224],lime:[0,255,0],magenta:[255,0,255],maroon:[128,0,0],navy:[0,0,128],olive:[128,128,0],orange:[255,165,0],pink:[255,192,203],purple:[128,0,128],violet:[128,0,128],red:[255,0,0],silver:[192,192,192],white:[255,255,255],yellow:[255,255,0],transparent:[255,255,255]};d.easing.jswing=d.easing.swing;d.extend(d.easing,{def:"easeOutQuad",swing:function(g,h,f,j,i){return d.easing[d.easing.def](g,h,f,j,i)},easeInQuad:function(g,h,f,j,i){return j*(h/=i)*h+f},easeOutQuad:function(g,h,f,j,i){return -j*(h/=i)*(h-2)+f},easeInOutQuad:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h+f}return -j/2*((--h)*(h-2)-1)+f},easeInCubic:function(g,h,f,j,i){return j*(h/=i)*h*h+f},easeOutCubic:function(g,h,f,j,i){return j*((h=h/i-1)*h*h+1)+f},easeInOutCubic:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h+f}return j/2*((h-=2)*h*h+2)+f},easeInQuart:function(g,h,f,j,i){return j*(h/=i)*h*h*h+f},easeOutQuart:function(g,h,f,j,i){return -j*((h=h/i-1)*h*h*h-1)+f},easeInOutQuart:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h*h+f}return -j/2*((h-=2)*h*h*h-2)+f},easeInQuint:function(g,h,f,j,i){return j*(h/=i)*h*h*h*h+f},easeOutQuint:function(g,h,f,j,i){return j*((h=h/i-1)*h*h*h*h+1)+f},easeInOutQuint:function(g,h,f,j,i){if((h/=i/2)<1){return j/2*h*h*h*h*h+f}return j/2*((h-=2)*h*h*h*h+2)+f},easeInSine:function(g,h,f,j,i){return -j*Math.cos(h/i*(Math.PI/2))+j+f},easeOutSine:function(g,h,f,j,i){return j*Math.sin(h/i*(Math.PI/2))+f},easeInOutSine:function(g,h,f,j,i){return -j/2*(Math.cos(Math.PI*h/i)-1)+f},easeInExpo:function(g,h,f,j,i){return(h==0)?f:j*Math.pow(2,10*(h/i-1))+f},easeOutExpo:function(g,h,f,j,i){return(h==i)?f+j:j*(-Math.pow(2,-10*h/i)+1)+f},easeInOutExpo:function(g,h,f,j,i){if(h==0){return f}if(h==i){return f+j}if((h/=i/2)<1){return j/2*Math.pow(2,10*(h-1))+f}return j/2*(-Math.pow(2,-10*--h)+2)+f},easeInCirc:function(g,h,f,j,i){return -j*(Math.sqrt(1-(h/=i)*h)-1)+f},easeOutCirc:function(g,h,f,j,i){return j*Math.sqrt(1-(h=h/i-1)*h)+f},easeInOutCirc:function(g,h,f,j,i){if((h/=i/2)<1){return -j/2*(Math.sqrt(1-h*h)-1)+f}return j/2*(Math.sqrt(1-(h-=2)*h)+1)+f},easeInElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l)==1){return f+m}if(!k){k=l*0.3}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}return -(h*Math.pow(2,10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k))+f},easeOutElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l)==1){return f+m}if(!k){k=l*0.3}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}return h*Math.pow(2,-10*i)*Math.sin((i*l-j)*(2*Math.PI)/k)+m+f},easeInOutElastic:function(g,i,f,m,l){var j=1.70158;var k=0;var h=m;if(i==0){return f}if((i/=l/2)==2){return f+m}if(!k){k=l*(0.3*1.5)}if(h<Math.abs(m)){h=m;var j=k/4}else{var j=k/(2*Math.PI)*Math.asin(m/h)}if(i<1){return -0.5*(h*Math.pow(2,10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k))+f}return h*Math.pow(2,-10*(i-=1))*Math.sin((i*l-j)*(2*Math.PI)/k)*0.5+m+f},easeInBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}return k*(h/=j)*h*((i+1)*h-i)+f},easeOutBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}return k*((h=h/j-1)*h*((i+1)*h+i)+1)+f},easeInOutBack:function(g,h,f,k,j,i){if(i==undefined){i=1.70158}if((h/=j/2)<1){return k/2*(h*h*(((i*=(1.525))+1)*h-i))+f}return k/2*((h-=2)*h*(((i*=(1.525))+1)*h+i)+2)+f},easeInBounce:function(g,h,f,j,i){return j-d.easing.easeOutBounce(g,i-h,0,j,i)+f},easeOutBounce:function(g,h,f,j,i){if((h/=i)<(1/2.75)){return j*(7.5625*h*h)+f}else{if(h<(2/2.75)){return j*(7.5625*(h-=(1.5/2.75))*h+0.75)+f}else{if(h<(2.5/2.75)){return j*(7.5625*(h-=(2.25/2.75))*h+0.9375)+f}else{return j*(7.5625*(h-=(2.625/2.75))*h+0.984375)+f}}}},easeInOutBounce:function(g,h,f,j,i){if(h<i/2){return d.easing.easeInBounce(g,h*2,0,j,i)*0.5+f}return d.easing.easeOutBounce(g,h*2-i,0,j,i)*0.5+j*0.5+f}})})(jQuery);;/*
 * jQuery UI Effects Blind 1.7
 *
 * 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/Effects/Blind
 *
 * Depends:
 *	effects.core.js
 */(function(a){a.effects.blind=function(b){return this.queue(function(){var d=a(this),c=["position","top","left"];var h=a.effects.setMode(d,b.options.mode||"hide");var g=b.options.direction||"vertical";a.effects.save(d,c);d.show();var j=a.effects.createWrapper(d).css({overflow:"hidden"});var e=(g=="vertical")?"height":"width";var i=(g=="vertical")?j.height():j.width();if(h=="show"){j.css(e,0)}var f={};f[e]=h=="show"?i:0;j.animate(f,b.duration,b.options.easing,function(){if(h=="hide"){d.hide()}a.effects.restore(d,c);a.effects.removeWrapper(d);if(b.callback){b.callback.apply(d[0],arguments)}d.dequeue()})})}})(jQuery);;/*
 * jQuery UI Effects Bounce 1.7
 *
 * 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/Effects/Bounce
 *
 * Depends:
 *	effects.core.js
 */(function(a){a.effects.bounce=function(b){return this.queue(function(){var e=a(this),l=["position","top","left"];var k=a.effects.setMode(e,b.options.mode||"effect");var n=b.options.direction||"up";var c=b.options.distance||20;var d=b.options.times||5;var g=b.duration||250;if(/show|hide/.test(k)){l.push("opacity")}a.effects.save(e,l);e.show();a.effects.createWrapper(e);var f=(n=="up"||n=="down")?"top":"left";var p=(n=="up"||n=="left")?"pos":"neg";var c=b.options.distance||(f=="top"?e.outerHeight({margin:true})/3:e.outerWidth({margin:true})/3);if(k=="show"){e.css("opacity",0).css(f,p=="pos"?-c:c)}if(k=="hide"){c=c/(d*2)}if(k!="hide"){d--}if(k=="show"){var h={opacity:1};h[f]=(p=="pos"?"+=":"-=")+c;e.animate(h,g/2,b.options.easing);c=c/2;d--}for(var j=0;j<d;j++){var o={},m={};o[f]=(p=="pos"?"-=":"+=")+c;m[f]=(p=="pos"?"+=":"-=")+c;e.animate(o,g/2,b.options.easing).animate(m,g/2,b.options.easing);c=(k=="hide")?c*2:c/2}if(k=="hide"){var h={opacity:0};h[f]=(p=="pos"?"-=":"+=")+c;e.animate(h,g/2,b.options.easing,function(){e.hide();a.effects.restore(e,l);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}})}else{var o={},m={};o[f]=(p=="pos"?"-=":"+=")+c;m[f]=(p=="pos"?"+=":"-=")+c;e.animate(o,g/2,b.options.easing).animate(m,g/2,b.options.easing,function(){a.effects.restore(e,l);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}})}e.queue("fx",function(){e.dequeue()});e.dequeue()})}})(jQuery);;/*
 * jQuery UI Effects Clip 1.7
 *
 * 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/Effects/Clip
 *
 * Depends:
 *	effects.core.js
 */(function(a){a.effects.clip=function(b){return this.queue(function(){var f=a(this),j=["position","top","left","height","width"];var i=a.effects.setMode(f,b.options.mode||"hide");var k=b.options.direction||"vertical";a.effects.save(f,j);f.show();var c=a.effects.createWrapper(f).css({overflow:"hidden"});var e=f[0].tagName=="IMG"?c:f;var g={size:(k=="vertical")?"height":"width",position:(k=="vertical")?"top":"left"};var d=(k=="vertical")?e.height():e.width();if(i=="show"){e.css(g.size,0);e.css(g.position,d/2)}var h={};h[g.size]=i=="show"?d:0;h[g.position]=i=="show"?0:d/2;e.animate(h,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(i=="hide"){f.hide()}a.effects.restore(f,j);a.effects.removeWrapper(f);if(b.callback){b.callback.apply(f[0],arguments)}f.dequeue()}})})}})(jQuery);;/*
 * jQuery UI Effects Drop 1.7
 *
 * 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/Effects/Drop
 *
 * Depends:
 *	effects.core.js
 */(function(a){a.effects.drop=function(b){return this.queue(function(){var e=a(this),d=["position","top","left","opacity"];var i=a.effects.setMode(e,b.options.mode||"hide");var h=b.options.direction||"left";a.effects.save(e,d);e.show();a.effects.createWrapper(e);var f=(h=="up"||h=="down")?"top":"left";var c=(h=="up"||h=="left")?"pos":"neg";var j=b.options.distance||(f=="top"?e.outerHeight({margin:true})/2:e.outerWidth({margin:true})/2);if(i=="show"){e.css("opacity",0).css(f,c=="pos"?-j:j)}var g={opacity:i=="show"?1:0};g[f]=(i=="show"?(c=="pos"?"+=":"-="):(c=="pos"?"-=":"+="))+j;e.animate(g,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(i=="hide"){e.hide()}a.effects.restore(e,d);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}e.dequeue()}})})}})(jQuery);;/*
 * jQuery UI Effects Explode 1.7
 *
 * 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/Effects/Explode
 *
 * Depends:
 *	effects.core.js
 */(function(a){a.effects.explode=function(b){return this.queue(function(){var k=b.options.pieces?Math.round(Math.sqrt(b.options.pieces)):3;var e=b.options.pieces?Math.round(Math.sqrt(b.options.pieces)):3;b.options.mode=b.options.mode=="toggle"?(a(this).is(":visible")?"hide":"show"):b.options.mode;var h=a(this).show().css("visibility","hidden");var l=h.offset();l.top-=parseInt(h.css("marginTop"),10)||0;l.left-=parseInt(h.css("marginLeft"),10)||0;var g=h.outerWidth(true);var c=h.outerHeight(true);for(var f=0;f<k;f++){for(var d=0;d<e;d++){h.clone().appendTo("body").wrap("<div></div>").css({position:"absolute",visibility:"visible",left:-d*(g/e),top:-f*(c/k)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:g/e,height:c/k,left:l.left+d*(g/e)+(b.options.mode=="show"?(d-Math.floor(e/2))*(g/e):0),top:l.top+f*(c/k)+(b.options.mode=="show"?(f-Math.floor(k/2))*(c/k):0),opacity:b.options.mode=="show"?0:1}).animate({left:l.left+d*(g/e)+(b.options.mode=="show"?0:(d-Math.floor(e/2))*(g/e)),top:l.top+f*(c/k)+(b.options.mode=="show"?0:(f-Math.floor(k/2))*(c/k)),opacity:b.options.mode=="show"?1:0},b.duration||500)}}setTimeout(function(){b.options.mode=="show"?h.css({visibility:"visible"}):h.css({visibility:"visible"}).hide();if(b.callback){b.callback.apply(h[0])}h.dequeue();a("div.ui-effects-explode").remove()},b.duration||500)})}})(jQuery);;/*
 * jQuery UI Effects Fold 1.7
 *
 * 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/Effects/Fold
 *
 * Depends:
 *	effects.core.js
 */(function(a){a.effects.fold=function(b){return this.queue(function(){var e=a(this),k=["position","top","left"];var h=a.effects.setMode(e,b.options.mode||"hide");var o=b.options.size||15;var n=!(!b.options.horizFirst);var g=b.duration?b.duration/2:a.fx.speeds._default/2;a.effects.save(e,k);e.show();var d=a.effects.createWrapper(e).css({overflow:"hidden"});var i=((h=="show")!=n);var f=i?["width","height"]:["height","width"];var c=i?[d.width(),d.height()]:[d.height(),d.width()];var j=/([0-9]+)%/.exec(o);if(j){o=parseInt(j[1],10)/100*c[h=="hide"?0:1]}if(h=="show"){d.css(n?{height:0,width:o}:{height:o,width:0})}var m={},l={};m[f[0]]=h=="show"?c[0]:o;l[f[1]]=h=="show"?c[1]:0;d.animate(m,g,b.options.easing).animate(l,g,b.options.easing,function(){if(h=="hide"){e.hide()}a.effects.restore(e,k);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(e[0],arguments)}e.dequeue()})})}})(jQuery);;/*
 * jQuery UI Effects Highlight 1.7
 *
 * 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/Effects/Highlight
 *
 * Depends:
 *	effects.core.js
 */(function(a){a.effects.highlight=function(b){return this.queue(function(){var e=a(this),d=["backgroundImage","backgroundColor","opacity"];var h=a.effects.setMode(e,b.options.mode||"show");var c=b.options.color||"#ffff99";var g=e.css("backgroundColor");a.effects.save(e,d);e.show();e.css({backgroundImage:"none",backgroundColor:c});var f={backgroundColor:g};if(h=="hide"){f.opacity=0}e.animate(f,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(h=="hide"){e.hide()}a.effects.restore(e,d);if(h=="show"&&a.browser.msie){this.style.removeAttribute("filter")}if(b.callback){b.callback.apply(this,arguments)}e.dequeue()}})})}})(jQuery);;/*
 * jQuery UI Effects Pulsate 1.7
 *
 * 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/Effects/Pulsate
 *
 * Depends:
 *	effects.core.js
 */(function(a){a.effects.pulsate=function(b){return this.queue(function(){var d=a(this);var g=a.effects.setMode(d,b.options.mode||"show");var f=b.options.times||5;var e=b.duration?b.duration/2:a.fx.speeds._default/2;if(g=="hide"){f--}if(d.is(":hidden")){d.css("opacity",0);d.show();d.animate({opacity:1},e,b.options.easing);f=f-2}for(var c=0;c<f;c++){d.animate({opacity:0},e,b.options.easing).animate({opacity:1},e,b.options.easing)}if(g=="hide"){d.animate({opacity:0},e,b.options.easing,function(){d.hide();if(b.callback){b.callback.apply(this,arguments)}})}else{d.animate({opacity:0},e,b.options.easing).animate({opacity:1},e,b.options.easing,function(){if(b.callback){b.callback.apply(this,arguments)}})}d.queue("fx",function(){d.dequeue()});d.dequeue()})}})(jQuery);;/*
 * jQuery UI Effects Scale 1.7
 *
 * 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/Effects/Scale
 *
 * Depends:
 *	effects.core.js
 */(function(a){a.effects.puff=function(b){return this.queue(function(){var f=a(this);var c=a.extend(true,{},b.options);var h=a.effects.setMode(f,b.options.mode||"hide");var g=parseInt(b.options.percent,10)||150;c.fade=true;var e={height:f.height(),width:f.width()};var d=g/100;f.from=(h=="hide")?e:{height:e.height*d,width:e.width*d};c.from=f.from;c.percent=(h=="hide")?g:100;c.mode=h;f.effect("scale",c,b.duration,b.callback);f.dequeue()})};a.effects.scale=function(b){return this.queue(function(){var g=a(this);var d=a.extend(true,{},b.options);var j=a.effects.setMode(g,b.options.mode||"effect");var h=parseInt(b.options.percent,10)||(parseInt(b.options.percent,10)==0?0:(j=="hide"?0:100));var i=b.options.direction||"both";var c=b.options.origin;if(j!="effect"){d.origin=c||["middle","center"];d.restore=true}var f={height:g.height(),width:g.width()};g.from=b.options.from||(j=="show"?{height:0,width:0}:f);var e={y:i!="horizontal"?(h/100):1,x:i!="vertical"?(h/100):1};g.to={height:f.height*e.y,width:f.width*e.x};if(b.options.fade){if(j=="show"){g.from.opacity=0;g.to.opacity=1}if(j=="hide"){g.from.opacity=1;g.to.opacity=0}}d.from=g.from;d.to=g.to;d.mode=j;g.effect("size",d,b.duration,b.callback);g.dequeue()})};a.effects.size=function(b){return this.queue(function(){var c=a(this),n=["position","top","left","width","height","overflow","opacity"];var m=["position","top","left","overflow","opacity"];var j=["width","height","overflow"];var p=["fontSize"];var k=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"];var f=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"];var g=a.effects.setMode(c,b.options.mode||"effect");var i=b.options.restore||false;var e=b.options.scale||"both";var o=b.options.origin;var d={height:c.height(),width:c.width()};c.from=b.options.from||d;c.to=b.options.to||d;if(o){var h=a.effects.getBaseline(o,d);c.from.top=(d.height-c.from.height)*h.y;c.from.left=(d.width-c.from.width)*h.x;c.to.top=(d.height-c.to.height)*h.y;c.to.left=(d.width-c.to.width)*h.x}var l={from:{y:c.from.height/d.height,x:c.from.width/d.width},to:{y:c.to.height/d.height,x:c.to.width/d.width}};if(e=="box"||e=="both"){if(l.from.y!=l.to.y){n=n.concat(k);c.from=a.effects.setTransition(c,k,l.from.y,c.from);c.to=a.effects.setTransition(c,k,l.to.y,c.to)}if(l.from.x!=l.to.x){n=n.concat(f);c.from=a.effects.setTransition(c,f,l.from.x,c.from);c.to=a.effects.setTransition(c,f,l.to.x,c.to)}}if(e=="content"||e=="both"){if(l.from.y!=l.to.y){n=n.concat(p);c.from=a.effects.setTransition(c,p,l.from.y,c.from);c.to=a.effects.setTransition(c,p,l.to.y,c.to)}}a.effects.save(c,i?n:m);c.show();a.effects.createWrapper(c);c.css("overflow","hidden").css(c.from);if(e=="content"||e=="both"){k=k.concat(["marginTop","marginBottom"]).concat(p);f=f.concat(["marginLeft","marginRight"]);j=n.concat(k).concat(f);c.find("*[width]").each(function(){child=a(this);if(i){a.effects.save(child,j)}var q={height:child.height(),width:child.width()};child.from={height:q.height*l.from.y,width:q.width*l.from.x};child.to={height:q.height*l.to.y,width:q.width*l.to.x};if(l.from.y!=l.to.y){child.from=a.effects.setTransition(child,k,l.from.y,child.from);child.to=a.effects.setTransition(child,k,l.to.y,child.to)}if(l.from.x!=l.to.x){child.from=a.effects.setTransition(child,f,l.from.x,child.from);child.to=a.effects.setTransition(child,f,l.to.x,child.to)}child.css(child.from);child.animate(child.to,b.duration,b.options.easing,function(){if(i){a.effects.restore(child,j)}})})}c.animate(c.to,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(g=="hide"){c.hide()}a.effects.restore(c,i?n:m);a.effects.removeWrapper(c);if(b.callback){b.callback.apply(this,arguments)}c.dequeue()}})})}})(jQuery);;/*
 * jQuery UI Effects Shake 1.7
 *
 * 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/Effects/Shake
 *
 * Depends:
 *	effects.core.js
 */(function(a){a.effects.shake=function(b){return this.queue(function(){var e=a(this),l=["position","top","left"];var k=a.effects.setMode(e,b.options.mode||"effect");var n=b.options.direction||"left";var c=b.options.distance||20;var d=b.options.times||3;var g=b.duration||b.options.duration||140;a.effects.save(e,l);e.show();a.effects.createWrapper(e);var f=(n=="up"||n=="down")?"top":"left";var p=(n=="up"||n=="left")?"pos":"neg";var h={},o={},m={};h[f]=(p=="pos"?"-=":"+=")+c;o[f]=(p=="pos"?"+=":"-=")+c*2;m[f]=(p=="pos"?"-=":"+=")+c*2;e.animate(h,g,b.options.easing);for(var j=1;j<d;j++){e.animate(o,g,b.options.easing).animate(m,g,b.options.easing)}e.animate(o,g,b.options.easing).animate(h,g/2,b.options.easing,function(){a.effects.restore(e,l);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}});e.queue("fx",function(){e.dequeue()});e.dequeue()})}})(jQuery);;/*
 * jQuery UI Effects Slide 1.7
 *
 * 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/Effects/Slide
 *
 * Depends:
 *	effects.core.js
 */(function(a){a.effects.slide=function(b){return this.queue(function(){var e=a(this),d=["position","top","left"];var i=a.effects.setMode(e,b.options.mode||"show");var h=b.options.direction||"left";a.effects.save(e,d);e.show();a.effects.createWrapper(e).css({overflow:"hidden"});var f=(h=="up"||h=="down")?"top":"left";var c=(h=="up"||h=="left")?"pos":"neg";var j=b.options.distance||(f=="top"?e.outerHeight({margin:true}):e.outerWidth({margin:true}));if(i=="show"){e.css(f,c=="pos"?-j:j)}var g={};g[f]=(i=="show"?(c=="pos"?"+=":"-="):(c=="pos"?"-=":"+="))+j;e.animate(g,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){if(i=="hide"){e.hide()}a.effects.restore(e,d);a.effects.removeWrapper(e);if(b.callback){b.callback.apply(this,arguments)}e.dequeue()}})})}})(jQuery);;/*
 * jQuery UI Effects Transfer 1.7
 *
 * 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/Effects/Transfer
 *
 * Depends:
 *	effects.core.js
 */(function(a){a.effects.transfer=function(b){return this.queue(function(){var f=a(this),h=a(b.options.to),e=h.offset(),g={top:e.top,left:e.left,height:h.innerHeight(),width:h.innerWidth()},d=f.offset(),c=a('<div class="ui-effects-transfer"></div>').appendTo(document.body).addClass(b.options.className).css({top:d.top,left:d.left,height:f.innerHeight(),width:f.innerWidth(),position:"absolute"}).animate(g,b.duration,b.options.easing,function(){c.remove();(b.callback&&b.callback.apply(f[0],arguments));f.dequeue()})})}})(jQuery);;

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

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

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

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

/*
 * FancyBox - simple and fancy jQuery plugin
 * Examples and documentation at: http://fancy.klade.lv/
 * Version: 1.2.1 (13/03/2009)
 * Copyright (c) 2009 Janis Skarnelis
 * Licensed under the MIT License: http://en.wikipedia.org/wiki/MIT_License
 * Requires: jQuery v1.3+
*/
eval(function(p,a,c,k,e,d){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--){d[e(c)]=k[c]||e(c)}k=[function(e){return d[e]}];e=function(){return'\\w+'};c=1};while(c--){if(k[c]){p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c])}}return p}(';(7($){$.b.2Q=7(){u B.2t(7(){9 1J=$(B).n(\'2Z\');5(1J.1c(/^3w\\(["\']?(.*\\.2p)["\']?\\)$/i)){1J=3t.$1;$(B).n({\'2Z\':\'45\',\'2o\':"3W:3R.4m.4d(3h=F, 3T="+($(B).n(\'41\')==\'2J-3Z\'?\'4c\':\'3N\')+", Q=\'"+1J+"\')"}).2t(7(){9 1b=$(B).n(\'1b\');5(1b!=\'2e\'&&1b!=\'2n\')$(B).n(\'1b\',\'2n\')})}})};9 A,4,16=D,s=1t 1o,1w,1v=1,1y=/\\.(3A|3Y|2p|3c|3d)(.*)?$/i;9 P=($.2q.3K&&2f($.2q.3z.2k(0,1))<8);$.b.c=7(Y){Y=$.3x({},$.b.c.2R,Y);9 2s=B;7 2h(){A=B;4=Y;2r();u D};7 2r(){5(16)u;5($.1O(4.2c)){4.2c()}4.j=[];4.h=0;5(Y.j.N>0){4.j=Y.j}t{9 O={};5(!A.1H||A.1H==\'\'){9 O={d:A.d,X:A.X};5($(A).1G("1m:1D").N){O.1a=$(A).1G("1m:1D")}4.j.2j(O)}t{9 Z=$(2s).2o("a[1H="+A.1H+"]");9 O={};3C(9 i=0;i<Z.N;i++){O={d:Z[i].d,X:Z[i].X};5($(Z[i]).1G("1m:1D").N){O.1a=$(Z[i]).1G("1m:1D")}4.j.2j(O)}3F(4.j[4.h].d!=A.d){4.h++}}}5(4.23){5(P){$(\'1U, 1Q, 1P\').n(\'1S\',\'3s\')}$("#1i").n(\'25\',4.2U).J()}1d()};7 1d(){$("#1f, #1e, #V, #G").S();9 d=4.j[4.h].d;5(d.1c(/#/)){9 U=11.3r.d.3f(\'#\')[0];U=d.3g(U,\'\');U=U.2k(U.2l(\'#\'));1k(\'<6 l="3e">\'+$(U).o()+\'</6>\',4.1I,4.1x)}t 5(d.1c(1y)){s=1t 1o;s.Q=d;5(s.3a){1K()}t{$.b.c.34();$(s).x().14(\'3b\',7(){$(".I").S();1K()})}}t 5(d.1c("17")||A.3j.2l("17")>=0){1k(\'<17 l="35" 3q="$.b.c.38()" 3o="3n\'+C.T(C.3l()*3m)+\'" 2K="0" 3E="0" Q="\'+d+\'"></17>\',4.1I,4.1x)}t{$.4p(d,7(2m){1k(\'<6 l="3L">\'+2m+\'</6>\',4.1I,4.1x)})}};7 1K(){5(4.30){9 w=$.b.c.1n();9 r=C.1M(C.1M(w[0]-36,s.g)/s.g,C.1M(w[1]-4b,s.f)/s.f);9 g=C.T(r*s.g);9 f=C.T(r*s.f)}t{9 g=s.g;9 f=s.f}1k(\'<1m 48="" l="49" Q="\'+s.Q+\'" />\',g,f)};7 2F(){5((4.j.N-1)>4.h){9 d=4.j[4.h+1].d;5(d.1c(1y)){1A=1t 1o();1A.Q=d}}5(4.h>0){9 d=4.j[4.h-1].d;5(d.1c(1y)){1A=1t 1o();1A.Q=d}}};7 1k(1j,g,f){16=F;9 L=4.2Y;5(P){$("#q")[0].1E.2u("f");$("#q")[0].1E.2u("g")}5(L>0){g+=L*2;f+=L*2;$("#q").n({\'v\':L+\'z\',\'2E\':L+\'z\',\'2i\':L+\'z\',\'y\':L+\'z\',\'g\':\'2B\',\'f\':\'2B\'});5(P){$("#q")[0].1E.2C(\'f\',\'(B.2D.4j - 20)\');$("#q")[0].1E.2C(\'g\',\'(B.2D.3S - 20)\')}}t{$("#q").n({\'v\':0,\'2E\':0,\'2i\':0,\'y\':0,\'g\':\'2z%\',\'f\':\'2z%\'})}5($("#k").1u(":19")&&g==$("#k").g()&&f==$("#k").f()){$("#q").1Z("2N",7(){$("#q").1C().1F($(1j)).21("1s",7(){1g()})});u}9 w=$.b.c.1n();9 2v=(g+36)>w[0]?w[2]:(w[2]+C.T((w[0]-g-36)/2));9 2w=(f+1z)>w[1]?w[3]:(w[3]+C.T((w[1]-f-1z)/2));9 K={\'y\':2v,\'v\':2w,\'g\':g+\'z\',\'f\':f+\'z\'};5($("#k").1u(":19")){$("#q").1Z("1s",7(){$("#q").1C();$("#k").24(K,4.2X,4.2T,7(){$("#q").1F($(1j)).21("1s",7(){1g()})})})}t{5(4.1W>0&&4.j[4.h].1a!==1L){$("#q").1C().1F($(1j));9 M=4.j[4.h].1a;9 15=$.b.c.1R(M);$("#k").n({\'y\':(15.y-18)+\'z\',\'v\':(15.v-18)+\'z\',\'g\':$(M).g(),\'f\':$(M).f()});5(4.1X){K.25=\'J\'}$("#k").24(K,4.1W,4.2W,7(){1g()})}t{$("#q").S().1C().1F($(1j)).J();$("#k").n(K).21("1s",7(){1g()})}}};7 2y(){5(4.h!=0){$("#1e, #2O").x().14("R",7(e){e.2x();4.h--;1d();u D});$("#1e").J()}5(4.h!=(4.j.N-1)){$("#1f, #2M").x().14("R",7(e){e.2x();4.h++;1d();u D});$("#1f").J()}};7 1g(){2y();2F();$(W).1B(7(e){5(e.29==27){$.b.c.1l();$(W).x("1B")}t 5(e.29==37&&4.h!=0){4.h--;1d();$(W).x("1B")}t 5(e.29==39&&4.h!=(4.j.N-1)){4.h++;1d();$(W).x("1B")}});5(4.1r){$(11).14("1N 1T",$.b.c.2g)}t{$("6#k").n("1b","2e")}5(4.2b){$("#22").R($.b.c.1l)}$("#1i, #V").14("R",$.b.c.1l);$("#V").J();5(4.j[4.h].X!==1L&&4.j[4.h].X.N>0){$(\'#G 6\').o(4.j[4.h].X);$(\'#G\').J()}5(4.23&&P){$(\'1U, 1Q, 1P\',$(\'#q\')).n(\'1S\',\'19\')}5($.1O(4.2a)){4.2a()}16=D};u B.x(\'R\').R(2h)};$.b.c.2g=7(){9 m=$.b.c.1n();$("#k").n(\'y\',(($("#k").g()+36)>m[0]?m[2]:m[2]+C.T((m[0]-$("#k").g()-36)/2)));$("#k").n(\'v\',(($("#k").f()+1z)>m[1]?m[3]:m[3]+C.T((m[1]-$("#k").f()-1z)/2)))};$.b.c.1h=7(H,2A){u 2f($.3I(H.3u?H[0]:H,2A,F))||0};$.b.c.1R=7(H){9 m=H.4g();m.v+=$.b.c.1h(H,\'3k\');m.v+=$.b.c.1h(H,\'3J\');m.y+=$.b.c.1h(H,\'3H\');m.y+=$.b.c.1h(H,\'3D\');u m};$.b.c.38=7(){$(".I").S();$("#35").J()};$.b.c.1n=7(){u[$(11).g(),$(11).f(),$(W).3i(),$(W).3p()]};$.b.c.2G=7(){5(!$("#I").1u(\':19\')){33(1w);u}$("#I > 6").n(\'v\',(1v*-40)+\'z\');1v=(1v+1)%12};$.b.c.34=7(){33(1w);9 m=$.b.c.1n();$("#I").n({\'y\':((m[0]-40)/2+m[2]),\'v\':((m[1]-40)/2+m[3])}).J();$("#I").14(\'R\',$.b.c.1l);1w=3Q($.b.c.2G,3X)};$.b.c.1l=7(){16=F;$(s).x();$("#1i, #V").x();5(4.2b){$("#22").x()}$("#V, .I, #1e, #1f, #G").S();5(4.1r){$(11).x("1N 1T")}1q=7(){$("#1i, #k").S();5(4.1r){$(11).x("1N 1T")}5(P){$(\'1U, 1Q, 1P\').n(\'1S\',\'19\')}5($.1O(4.1V)){4.1V()}16=D};5($("#k").1u(":19")!==D){5(4.26>0&&4.j[4.h].1a!==1L){9 M=4.j[4.h].1a;9 15=$.b.c.1R(M);9 K={\'y\':(15.y-18)+\'z\',\'v\':(15.v-18)+\'z\',\'g\':$(M).g(),\'f\':$(M).f()};5(4.1X){K.25=\'S\'}$("#k").31(D,F).24(K,4.26,4.2S,1q)}t{$("#k").31(D,F).1Z("2N",1q)}}t{1q()}u D};$.b.c.2V=7(){9 o=\'\';o+=\'<6 l="1i"></6>\';o+=\'<6 l="22">\';o+=\'<6 p="I" l="I"><6></6></6>\';o+=\'<6 l="k">\';o+=\'<6 l="2I">\';o+=\'<6 l="V"></6>\';o+=\'<6 l="E"><6 p="E 44"></6><6 p="E 43"></6><6 p="E 42"></6><6 p="E 3V"></6><6 p="E 3U"></6><6 p="E 3O"></6><6 p="E 3M"></6><6 p="E 3P"></6></6>\';o+=\'<a d="2P:;" l="1e"><1p p="1Y" l="2O"></1p></a><a d="2P:;" l="1f"><1p p="1Y" l="2M"></1p></a>\';o+=\'<6 l="q"></6>\';o+=\'<6 l="G"></6>\';o+=\'</6>\';o+=\'</6>\';o+=\'</6>\';$(o).2H("46");$(\'<32 4i="0" 4h="0" 4k="0"><2L><13 p="G" l="4l"></13><13 p="G" l="4o"><6></6></13><13 p="G" l="4n"></13></2L></32>\').2H(\'#G\');5(P){$("#2I").47(\'<17 p="4a" 4e="2J" 2K="0"></17>\');$("#V, .E, .G, .1Y").2Q()}};$.b.c.2R={2Y:10,30:F,1X:D,1W:0,26:0,2X:3G,2W:\'28\',2S:\'28\',2T:\'28\',1I:3B,1x:3v,23:F,2U:0.3,2b:F,1r:F,j:[],2c:2d,2a:2d,1V:2d};$(W).3y(7(){$.b.c.2V()})})(4f);',62,274,'||||opts|if|div|function||var||fn|fancybox|href||height|width|itemCurrent||itemArray|fancy_outer|id|pos|css|html|class|fancy_content||imagePreloader|else|return|top||unbind|left|px|elem|this|Math|false|fancy_bg|true|fancy_title|el|fancy_loading|show|itemOpts|pad|orig_item|length|item|isIE|src|click|hide|round|target|fancy_close|document|title|settings|subGroup||window||td|bind|orig_pos|busy|iframe||visible|orig|position|match|_change_item|fancy_left|fancy_right|_finish|getNumeric|fancy_overlay|value|_set_content|close|img|getViewport|Image|span|__cleanup|centerOnScroll|normal|new|is|loadingFrame|loadingTimer|frameHeight|imageRegExp|50|objNext|keydown|empty|first|style|append|children|rel|frameWidth|image|_proceed_image|undefined|min|resize|isFunction|select|object|getPosition|visibility|scroll|embed|callbackOnClose|zoomSpeedIn|zoomOpacity|fancy_ico|fadeOut||fadeIn|fancy_wrap|overlayShow|animate|opacity|zoomSpeedOut||swing|keyCode|callbackOnShow|hideOnContentClick|callbackOnStart|null|absolute|parseInt|scrollBox|_initialize|bottom|push|substr|indexOf|data|relative|filter|png|browser|_start|matchedGroup|each|removeExpression|itemLeft|itemTop|stopPropagation|_set_navigation|100|prop|auto|setExpression|parentNode|right|_preload_neighbor_images|animateLoading|appendTo|fancy_inner|no|frameborder|tr|fancy_right_ico|fast|fancy_left_ico|javascript|fixPNG|defaults|easingOut|easingChange|overlayOpacity|build|easingIn|zoomSpeedChange|padding|backgroundImage|imageScale|stop|table|clearInterval|showLoading|fancy_frame|||showIframe||complete|load|bmp|jpeg|fancy_div|split|replace|enabled|scrollLeft|className|paddingTop|random|1000|fancy_iframe|name|scrollTop|onload|location|hidden|RegExp|jquery|355|url|extend|ready|version|jpg|425|for|borderLeftWidth|hspace|while|300|paddingLeft|curCSS|borderTopWidth|msie|fancy_ajax|fancy_bg_w|scale|fancy_bg_sw|fancy_bg_nw|setInterval|DXImageTransform|clientWidth|sizingMethod|fancy_bg_s|fancy_bg_se|progid|66|gif|repeat||backgroundRepeat|fancy_bg_e|fancy_bg_ne|fancy_bg_n|none|body|prepend|alt|fancy_img|fancy_bigIframe|60|crop|AlphaImageLoader|scrolling|jQuery|offset|cellpadding|cellspacing|clientHeight|border|fancy_title_left|Microsoft|fancy_title_right|fancy_title_main|get'.split('|'),0,{}))


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.02
 */
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}),hasClass:function(C,B){return RegExp("(?:^|\\s)"+B+"(?=\\s|$)").test(C.className)},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},textDecoration:function(G,F){if(!F){F=this.getStyle(G)}var C={underline:null,overline:null,"line-through":null};for(var B=G;B.parentNode&&B.parentNode.nodeType==1;){var E=true;for(var D in C){if(!k(C,D)||C[D]){continue}if(F.get("textDecoration").indexOf(D)!=-1){C[D]=F.get("color")}E=false}if(E){break}F=this.getStyle(B=B.parentNode)}return C},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 B={inline:1,"inline-block":1,"run-in":1};return function(E,C,D){if(B[C.get("display")]){return E}if(!D.previousSibling){E=E.replace(/^\s+/,"")}if(!D.nextSibling){E=E.replace(/\s+$/,"")}return E}})()};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(C){var B=this.face=C.face;this.glyphs=C.glyphs;this.w=C.w;this.baseSize=parseInt(B["units-per-em"],10);this.family=B["font-family"].toLowerCase();this.weight=B["font-weight"];this.style=B["font-style"]||"normal";this.viewBox=(function(){var E=B.bbox.split(/\s+/);var D={minX:parseInt(E[0],10),minY:parseInt(E[1],10),maxX:parseInt(E[2],10),maxY:parseInt(E[3],10)};D.width=D.maxX-D.minX;D.height=D.maxY-D.minY;D.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return D})();this.ascent=-parseInt(B.ascent,10);this.descent=-parseInt(B.descent,10);this.height=-this.ascent+this.descent}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)}function E(F){C(this)}function C(F){setTimeout(function(){m.replace(F,d.get(F).options,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 B={},D,F;for(var E=0,C=arguments.length;D=arguments[E],E<C;++E){for(F in D){if(k(D,F)){B[F]=D[F]}}}return B}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(C,J){var B=n.getStyle(v(C,J)).extend(J);var D=c(C,B),E,H,G,F,I;for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E)}else{F=E}if(G){continue}}if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,F),B,J,E,C),F);F=null}if(H==1&&E.firstChild){if(n.hasClass(E,"cufon")){z[J.engine](D,null,B,J,E,C)}else{arguments.callee(E,J)}}}}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={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textShadow:"none"};var p={words:/[^\S\u00a0]+/,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){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(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}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-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").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(ah,H,Z,D,L,ai){var n=(H===null);if(n){H=L.alt}var J=ah.viewBox;var p=Z.getSize("fontSize",ah.baseSize);var X=Z.get("letterSpacing");X=(X=="normal")?0:p.convertFrom(parseInt(X,10));var K=0,Y=0,W=0,F=0;var I=D.textShadow,U=[];if(I){for(var ag=I.length;ag--;){var O=I[ag];var T=p.convertFrom(parseFloat(O.offX));var R=p.convertFrom(parseFloat(O.offY));U[ag]=[T,R];if(R<K){K=R}if(T>Y){Y=T}if(R>W){W=R}if(T<F){F=T}}}var al=Cufon.CSS.textTransform(H,Z).split(""),B;var o=ah.glyphs,E,r,ac;var h=0,v,N=[];for(var ag=0,ae=0,ab=al.length;ag<ab;++ag){E=o[B=al[ag]]||ah.missingGlyph;if(!E){continue}if(r){h-=ac=r[B]||0;N[ae-1]-=ac}h+=v=N[ae++]=~~(E.w||ah.w)+X;r=E.k}if(v===undefined){return null}Y+=J.width-v;F+=J.minX;var C,q;if(n){C=L;q=L.firstChild}else{C=document.createElement("span");C.className="cufon cufon-canvas";C.alt=H;q=document.createElement("canvas");C.appendChild(q);if(D.printable){var ad=document.createElement("span");ad.className="cufon-alt";ad.appendChild(document.createTextNode(H));C.appendChild(ad)}}var am=C.style;var Q=q.style;var m=p.convert(J.height);var ak=Math.ceil(m);var V=ak/m;var P=V*Cufon.CSS.fontStretch(Z.get("fontStretch"));var S=h*P;var aa=Math.ceil(p.convert(S+Y-F));var t=Math.ceil(p.convert(J.height-K+W));q.width=aa;q.height=t;Q.width=aa+"px";Q.height=t+"px";K+=J.minY;Q.top=Math.round(p.convert(K-ah.ascent))+"px";Q.left=Math.round(p.convert(F))+"px";var A=Math.ceil(p.convert(S))+"px";if(a){am.width=A;am.height=p.convert(ah.height)+"px"}else{am.paddingLeft=A;am.paddingBottom=(p.convert(ah.height)-1)+"px"}var aj=q.getContext("2d"),M=m/J.height;aj.scale(M,M*V);aj.translate(-F,-K);aj.lineWidth=ah.face["underline-thickness"];aj.save();function s(i,g){aj.strokeStyle=g;aj.beginPath();aj.moveTo(0,i);aj.lineTo(h,i);aj.stroke()}var u=D.enableTextDecoration?Cufon.CSS.textDecoration(ai,Z):{};if(u.underline){s(-ah.face["underline-position"],u.underline)}if(u.overline){s(ah.ascent,u.overline)}function af(){aj.scale(P,1);for(var x=0,k=0,g=al.length;x<g;++x){var y=o[al[x]]||ah.missingGlyph;if(!y){continue}if(y.d){aj.beginPath();if(y.code){c(y.code,aj)}else{y.code=d("m"+y.d,aj)}aj.fill()}aj.translate(N[k++],0)}aj.restore()}if(I){for(var ag=I.length;ag--;){var O=I[ag];aj.save();aj.fillStyle=O.color;aj.translate.apply(aj,U[ag]);af()}}var z=D.textGradient;if(z){var G=z.stops,w=aj.createLinearGradient(0,J.minY,0,J.maxY);for(var ag=0,ab=G.length;ag<ab;++ag){w.addColorStop.apply(w,G[ag])}aj.fillStyle=w}else{aj.fillStyle=Z.get("color")}af();if(u["line-through"]){s(-ah.descent,u["line-through"])}return C}})());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 g=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(g?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"));function c(h,i){return a(h,/(?:em|ex|%)$|^[a-z-]+$/i.test(i)?"1em":i)}function a(k,l){if(/px$/i.test(l)){return parseFloat(l)}var j=k.style.left,i=k.runtimeStyle.left;k.runtimeStyle.left=k.currentStyle.left;k.style.left=l.replace("%","em");var h=k.style.pixelLeft;k.style.left=j;k.runtimeStyle.left=i;return h}var f={};function d(o){var p=o.id;if(!f[p]){var m=o.stops,n=document.createElement("cvml:fill"),h=[];n.type="gradient";n.angle=180;n.focus="0";n.method="sigma";n.color=m[0][1];for(var l=1,i=m.length-1;l<i;++l){h.push(m[l][0]*100+"% "+m[l][1])}n.colors=h.join(",");n.color2=m[i][1];f[p]=n}return f[p]}return function(aj,K,ad,G,O,ak,ab){var o=(K===null);if(o){K=O.alt}var M=aj.viewBox;var q=ad.computedFontSize||(ad.computedFontSize=new Cufon.CSS.Size(c(ak,ad.get("fontSize"))+"px",aj.baseSize));var aa=ad.computedLSpacing;if(aa==undefined){aa=ad.get("letterSpacing");ad.computedLSpacing=aa=(aa=="normal")?0:~~q.convertFrom(a(ak,aa))}var C,r;if(o){C=O;r=O.firstChild}else{C=document.createElement("span");C.className="cufon cufon-vml";C.alt=K;r=document.createElement("span");r.className="cufon-vml-canvas";C.appendChild(r);if(G.printable){var ag=document.createElement("span");ag.className="cufon-alt";ag.appendChild(document.createTextNode(K));C.appendChild(ag)}if(!ab){C.appendChild(document.createElement("cvml:shape"))}}var ap=C.style;var V=r.style;var m=q.convert(M.height),am=Math.ceil(m);var Z=am/m;var T=Z*Cufon.CSS.fontStretch(ad.get("fontStretch"));var Y=M.minX,X=M.minY;V.height=am;V.top=Math.round(q.convert(X-aj.ascent));V.left=Math.round(q.convert(Y));ap.height=q.convert(aj.height)+"px";var v=G.enableTextDecoration?Cufon.CSS.textDecoration(ak,ad):{};var J=ad.get("color");var ao=Cufon.CSS.textTransform(K,ad).split(""),B;var p=aj.glyphs,H,s,af;var h=0,P=[],W=0,x;var z,L=G.textShadow;for(var ai=0,ah=0,ae=ao.length;ai<ae;++ai){H=p[B=ao[ai]]||aj.missingGlyph;if(!H){continue}if(s){h-=af=s[B]||0;P[ah-1]-=af}h+=x=P[ah++]=~~(H.w||aj.w)+aa;s=H.k}if(x===undefined){return null}var A=-Y+h+(M.width-x);var an=q.convert(A*T),ac=Math.round(an);var S=A+","+M.height,n;var N="r"+S+"ns";var y=G.textGradient&&d(G.textGradient);for(ai=0,ah=0;ai<ae;++ai){H=p[ao[ai]]||aj.missingGlyph;if(!H){continue}if(o){z=r.childNodes[ah];while(z.firstChild){z.removeChild(z.firstChild)}}else{z=document.createElement("cvml:shape");r.appendChild(z)}z.stroked="f";z.coordsize=S;z.coordorigin=n=(Y-W)+","+X;z.path=(H.d?"m"+H.d+"xe":"")+"m"+n+N;z.fillcolor=J;if(y){z.appendChild(y.cloneNode(false))}var al=z.style;al.width=ac;al.height=am;if(L){var u=L[0],t=L[1];var F=Cufon.CSS.color(u.color),D;var R=document.createElement("cvml:shadow");R.on="t";R.color=F.color;R.offset=u.offX+","+u.offY;if(t){D=Cufon.CSS.color(t.color);R.type="double";R.color2=D.color;R.offset2=t.offX+","+t.offY}R.opacity=F.opacity||(D&&D.opacity)||1;z.appendChild(R)}W+=P[ah++]}var Q=z.nextSibling,w,E;if(G.forceHitArea){if(!Q){Q=document.createElement("cvml:rect");Q.stroked="f";Q.className="cufon-vml-cover";w=document.createElement("cvml:fill");w.opacity=0;Q.appendChild(w);r.appendChild(Q)}E=Q.style;E.width=ac;E.height=am}else{if(Q){r.removeChild(Q)}}ap.width=Math.max(Math.ceil(q.convert(h*T)),0);if(g){var U=ad.computedYAdjust;if(U===undefined){var I=ad.get("lineHeight");if(I=="normal"){I="1em"}else{if(!isNaN(I)){I+="em"}}ad.computedYAdjust=U=0.5*(a(ak,I)-parseFloat(ap.height))}if(U){ap.marginTop=Math.ceil(U)+"px";ap.marginBottom=U+"px"}}return C}})());

Cufon.registerFont({"w":180,"face":{"font-family":"corporate-e-bold","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 6 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-60 -323 354 90.131","underline-thickness":"39.96","underline-position":"2.16","stemh":"28","stemv":"44","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":90},"\u00c5":{"d":"102,-241r50,0r67,211r31,0r0,30r-105,0r0,-30r26,0r-13,-42r-78,0r-14,42r26,0r0,30r-90,0r0,-30r31,0xm149,-104r-28,-104v-8,36,-20,70,-32,104r60,0xm127,-323v18,0,32,15,32,33v0,18,-14,33,-32,33v-18,0,-33,-15,-33,-34v0,-18,15,-32,33,-32xm127,-305v-8,0,-15,7,-15,15v0,9,6,15,15,15v8,0,15,-7,15,-15v0,-9,-7,-15,-15,-15","w":251},"\u00c9":{"d":"185,-179r-31,0r0,-29r-69,0r0,67r74,0r0,32r-74,0r0,77r73,0r0,-39r31,0r0,71r-180,0r0,-30r30,0r0,-180r-30,0r0,-30r176,0r0,61xm65,-267r56,-46r64,0r-65,46r-55,0","w":198},"\u00d1":{"d":"9,-240r81,0r96,175r0,-145r-30,0r0,-30r92,0r0,30r-30,0r0,210r-44,0r-103,-189r0,159r30,0r0,30r-92,0r0,-30r30,0r0,-180r-30,0r0,-30xm200,-304v-24,49,-42,42,-104,22v-6,0,-11,5,-16,15r-27,-10v23,-52,48,-33,104,-20v8,0,13,-4,18,-16","w":255},"\u00d6":{"d":"120,-245v67,0,109,48,109,125v0,77,-42,125,-109,125v-68,0,-109,-48,-109,-127v0,-75,43,-123,109,-123xm120,-213v-39,0,-60,33,-60,92v0,62,21,94,60,94v39,0,60,-33,60,-93v0,-60,-21,-93,-60,-93xm58,-314r50,0r0,49r-50,0r0,-49xm132,-314r49,0r0,49r-49,0r0,-49","w":239},"\u00dc":{"d":"125,5v-60,0,-88,-36,-88,-107r0,-108r-29,0r0,-30r106,0r0,30r-30,0r0,110v0,37,0,38,3,46v6,17,22,26,43,26v38,0,49,-16,49,-68r0,-114r-31,0r0,-30r93,0r0,30r-30,0r0,115v3,69,-28,100,-86,100xm64,-314r49,0r0,49r-49,0r0,-49xm138,-314r49,0r0,49r-49,0r0,-49","w":248},"\u00e1":{"d":"80,-145v-22,0,-32,7,-33,31r-31,0r3,-33v38,-42,147,-42,130,47r0,72r25,0r0,28r-66,0r0,-23v-22,44,-103,30,-99,-22v4,-44,42,-60,96,-69v1,-24,-4,-31,-25,-31xm75,-30v29,0,34,-24,31,-60v-36,9,-52,22,-52,40v0,13,8,20,21,20xm51,-196r49,-47r55,0r-56,47r-48,0"},"\u00e0":{"d":"80,-145v-22,0,-32,7,-33,31r-31,0r3,-33v38,-42,147,-42,130,47r0,72r25,0r0,28r-66,0r0,-23v-22,44,-103,30,-99,-22v4,-44,42,-60,96,-69v1,-24,-4,-31,-25,-31xm75,-30v29,0,34,-24,31,-60v-36,9,-52,22,-52,40v0,13,8,20,21,20xm123,-196r-48,0r-55,-47r55,0"},"\u00e2":{"d":"80,-145v-22,0,-32,7,-33,31r-31,0r3,-33v38,-42,147,-42,130,47r0,72r25,0r0,28r-66,0r0,-23v-22,44,-103,30,-99,-22v4,-44,42,-60,96,-69v1,-24,-4,-31,-25,-31xm75,-30v29,0,34,-24,31,-60v-36,9,-52,22,-52,40v0,13,8,20,21,20xm17,-196r46,-47r42,0r47,47r-42,0r-26,-26r-25,26r-42,0"},"\u00e4":{"d":"80,-145v-22,0,-32,7,-33,31r-31,0r3,-33v38,-42,147,-42,130,47r0,72r25,0r0,28r-66,0r0,-23v-22,44,-103,30,-99,-22v4,-44,42,-60,96,-69v1,-24,-4,-31,-25,-31xm75,-30v29,0,34,-24,31,-60v-36,9,-52,22,-52,40v0,13,8,20,21,20xm23,-245r49,0r0,49r-49,0r0,-49xm96,-245r50,0r0,49r-50,0r0,-49"},"\u00e3":{"d":"80,-145v-22,0,-32,7,-33,31r-31,0r3,-33v38,-42,147,-42,130,47r0,72r25,0r0,28r-66,0r0,-23v-22,44,-103,30,-99,-22v4,-44,42,-60,96,-69v1,-24,-4,-31,-25,-31xm75,-30v29,0,34,-24,31,-60v-36,9,-52,22,-52,40v0,13,8,20,21,20xm152,-234v-13,53,-56,34,-93,22v-6,0,-10,5,-15,15r-25,-10v13,-53,59,-29,93,-21v7,0,12,-4,17,-15"},"\u00e5":{"d":"80,-145v-22,0,-32,7,-33,31r-31,0r3,-33v38,-42,147,-42,130,47r0,72r25,0r0,28r-66,0r0,-23v-22,44,-103,30,-99,-22v4,-44,42,-60,96,-69v1,-24,-4,-31,-25,-31xm75,-30v29,0,34,-24,31,-60v-36,9,-52,22,-52,40v0,13,8,20,21,20xm84,-254v18,0,33,14,33,32v0,18,-14,33,-32,33v-18,0,-33,-15,-33,-33v0,-18,14,-32,32,-32xm85,-237v-8,0,-16,7,-16,15v0,8,7,15,16,15v8,0,14,-7,14,-15v0,-8,-6,-15,-14,-15"},"\u00e9":{"d":"171,-77r-111,0v-11,56,61,70,70,23r40,0v0,33,-32,58,-74,58v-51,0,-84,-36,-84,-89v0,-53,32,-89,80,-89v51,0,85,41,79,97xm123,-104v1,-25,-8,-41,-29,-40v-21,0,-32,13,-34,40r63,0xm61,-196r49,-47r55,0r-56,47r-48,0","w":183},"\u00e8":{"d":"171,-77r-111,0v-11,56,61,70,70,23r40,0v0,33,-32,58,-74,58v-51,0,-84,-36,-84,-89v0,-53,32,-89,80,-89v51,0,85,41,79,97xm123,-104v1,-25,-8,-41,-29,-40v-21,0,-32,13,-34,40r63,0xm129,-196r-48,0r-56,-47r55,0","w":183},"\u00ea":{"d":"171,-77r-111,0v-11,56,61,70,70,23r40,0v0,33,-32,58,-74,58v-51,0,-84,-36,-84,-89v0,-53,32,-89,80,-89v51,0,85,41,79,97xm123,-104v1,-25,-8,-41,-29,-40v-21,0,-32,13,-34,40r63,0xm26,-196r47,-47r41,0r47,47r-42,0r-25,-26r-25,26r-43,0","w":183},"\u00eb":{"d":"171,-77r-111,0v-11,56,61,70,70,23r40,0v0,33,-32,58,-74,58v-51,0,-84,-36,-84,-89v0,-53,32,-89,80,-89v51,0,85,41,79,97xm123,-104v1,-25,-8,-41,-29,-40v-21,0,-32,13,-34,40r63,0xm33,-245r49,0r0,49r-49,0r0,-49xm107,-245r49,0r0,49r-49,0r0,-49","w":183},"\u00ed":{"d":"80,-170r0,142r26,0r0,28r-97,0r0,-28r26,0r0,-114r-26,0r0,-28r71,0xm25,-196r38,-47r51,0r-45,47r-44,0","w":113},"\u00ec":{"d":"80,-170r0,142r26,0r0,28r-97,0r0,-28r26,0r0,-114r-26,0r0,-28r71,0xm82,-196r-44,0r-45,-47r50,0","w":113},"\u00ee":{"d":"80,-170r0,142r25,0r0,28r-96,0r0,-28r26,0r0,-114r-26,0r0,-28r71,0xm-5,-196r38,-47r41,0r39,47r-40,0r-19,-26r-19,26r-40,0","w":113},"\u00ef":{"d":"80,-170r0,142r26,0r0,28r-97,0r0,-28r26,0r0,-114r-26,0r0,-28r71,0xm-3,-245r49,0r0,49r-49,0r0,-49xm62,-245r49,0r0,49r-49,0r0,-49","w":113},"\u00f1":{"d":"109,-136v-43,0,-26,66,-29,108r16,0r0,28r-87,0r0,-28r26,0r0,-114r-26,0r0,-28r68,0r0,29v28,-56,115,-41,100,43r0,70r27,0r0,28r-87,0r0,-28r16,0v-5,-38,17,-108,-24,-108xm170,-234v-13,53,-56,34,-93,22v-6,0,-10,5,-15,15r-25,-10v13,-53,59,-29,93,-21v7,0,12,-4,17,-15","w":209},"\u00f3":{"d":"12,-86v0,-51,35,-88,84,-88v49,0,84,36,84,89v0,54,-35,89,-84,89v-50,0,-84,-35,-84,-90xm96,-144v-24,0,-35,19,-35,58v0,41,11,59,35,59v24,0,35,-19,35,-59v0,-40,-11,-58,-35,-58xm64,-196r49,-47r54,0r-55,47r-48,0","w":191},"\u00f2":{"d":"12,-86v0,-51,35,-88,84,-88v49,0,84,36,84,89v0,54,-35,89,-84,89v-50,0,-84,-35,-84,-90xm96,-144v-24,0,-35,19,-35,58v0,41,11,59,35,59v24,0,35,-19,35,-59v0,-40,-11,-58,-35,-58xm131,-196r-48,0r-55,-47r54,0","w":191},"\u00f4":{"d":"12,-86v0,-51,35,-88,84,-88v49,0,84,36,84,89v0,54,-35,89,-84,89v-50,0,-84,-35,-84,-90xm96,-144v-24,0,-35,19,-35,58v0,41,11,59,35,59v24,0,35,-19,35,-59v0,-40,-11,-58,-35,-58xm28,-196r47,-47r42,0r46,47r-42,0r-25,-26r-25,26r-43,0","w":191},"\u00f6":{"d":"12,-86v0,-51,35,-88,84,-88v49,0,84,36,84,89v0,54,-35,89,-84,89v-50,0,-84,-35,-84,-90xm96,-144v-24,0,-35,19,-35,58v0,41,11,59,35,59v24,0,35,-19,35,-59v0,-40,-11,-58,-35,-58xm34,-245r50,0r0,49r-50,0r0,-49xm108,-245r49,0r0,49r-49,0r0,-49","w":191},"\u00f5":{"d":"12,-86v0,-51,35,-88,84,-88v49,0,84,36,84,89v0,54,-35,89,-84,89v-50,0,-84,-35,-84,-90xm96,-144v-24,0,-35,19,-35,58v0,41,11,59,35,59v24,0,35,-19,35,-59v0,-40,-11,-58,-35,-58xm163,-234v-12,54,-56,33,-93,22v-6,0,-10,5,-15,15r-24,-10v13,-54,59,-28,93,-21v7,0,12,-4,17,-15","w":191},"\u00fa":{"d":"139,-29v-30,56,-123,39,-107,-48r0,-65r-26,0r0,-28r70,0r0,92v-1,42,4,36,27,45v46,2,29,-65,32,-109r-27,0r0,-28r71,0r0,142r26,0r0,28r-66,0r0,-29xm67,-196r49,-47r55,0r-56,47r-48,0","w":212},"\u00f9":{"d":"139,-29v-30,56,-123,39,-107,-48r0,-65r-26,0r0,-28r70,0r0,92v-1,42,4,36,27,45v46,2,29,-65,32,-109r-27,0r0,-28r71,0r0,142r26,0r0,28r-66,0r0,-29xm138,-196r-48,0r-55,-47r54,0","w":212},"\u00fb":{"d":"139,-29v-30,56,-123,39,-107,-48r0,-65r-26,0r0,-28r70,0r0,92v-1,42,4,36,27,45v46,2,29,-65,32,-109r-27,0r0,-28r71,0r0,142r26,0r0,28r-66,0r0,-29xm34,-196r47,-47r41,0r47,47r-42,0r-25,-26r-25,26r-43,0","w":212},"\u00fc":{"d":"139,-29v-30,56,-123,39,-107,-48r0,-65r-26,0r0,-28r70,0r0,92v-1,42,4,36,27,45v46,2,29,-65,32,-109r-27,0r0,-28r71,0r0,142r26,0r0,28r-66,0r0,-29xm40,-245r49,0r0,49r-49,0r0,-49xm113,-245r50,0r0,49r-50,0r0,-49","w":212},"\u00c0":{"d":"102,-241r50,0r67,211r31,0r0,30r-105,0r0,-30r26,0r-13,-42r-78,0r-14,42r26,0r0,30r-90,0r0,-30r31,0xm149,-104r-28,-104v-8,36,-20,70,-32,104r60,0xm166,-267r-55,0r-65,-46r64,0","w":251},"\u00c3":{"d":"102,-241r50,0r67,211r31,0r0,30r-105,0r0,-30r26,0r-13,-42r-78,0r-14,42r26,0r0,30r-90,0r0,-30r31,0xm149,-104r-28,-104v-8,36,-20,70,-32,104r60,0xm200,-304v-24,49,-42,42,-104,22v-6,0,-11,5,-16,15r-27,-10v23,-52,48,-33,104,-20v8,0,13,-4,18,-16","w":251},"\u00d5":{"d":"120,-245v67,0,109,48,109,125v0,77,-42,125,-109,125v-68,0,-109,-48,-109,-127v0,-75,43,-123,109,-123xm120,-213v-39,0,-60,33,-60,92v0,62,21,94,60,94v39,0,60,-33,60,-93v0,-60,-21,-93,-60,-93xm195,-304v-24,49,-42,42,-104,22v-6,0,-11,5,-16,15r-27,-10v23,-52,48,-33,104,-20v8,0,13,-4,18,-16","w":239},"\u00ff":{"d":"-1,-170r96,0r0,28r-21,0v11,33,24,66,31,102v4,-27,22,-73,32,-102r-21,0r0,-28r79,0r0,28r-26,0r-52,143v-24,72,-32,70,-102,73r0,-30v37,4,62,-5,66,-36r-54,-150r-28,0r0,-28xm37,-245r49,0r0,49r-49,0r0,-49xm111,-245r49,0r0,49r-49,0r0,-49","w":194},"\u0178":{"d":"-1,-240r108,0r0,30r-25,0r34,76r34,-76r-24,0r0,-30r93,0r0,30r-33,0r-54,112r0,68r30,0r0,30r-106,0r0,-30r30,0r0,-66r-56,-114r-31,0r0,-30xm49,-314r49,0r0,49r-49,0r0,-49xm123,-314r49,0r0,49r-49,0r0,-49","w":218},"\u00c2":{"d":"102,-241r50,0r67,211r31,0r0,30r-105,0r0,-30r26,0r-13,-42r-78,0r-14,42r26,0r0,30r-90,0r0,-30r31,0xm149,-104r-28,-104v-8,36,-20,70,-32,104r60,0xm52,-267r52,-46r46,0r52,46r-47,0r-28,-26r-28,26r-47,0","w":251},"\u00ca":{"d":"185,-179r-31,0r0,-29r-69,0r0,67r74,0r0,32r-74,0r0,77r73,0r0,-39r31,0r0,71r-180,0r0,-30r30,0r0,-180r-30,0r0,-30r176,0r0,61xm28,-267r52,-46r46,0r52,46r-47,0r-28,-26r-28,26r-47,0","w":198},"\u00c1":{"d":"102,-241r50,0r67,211r31,0r0,30r-105,0r0,-30r26,0r-13,-42r-78,0r-14,42r26,0r0,30r-90,0r0,-30r31,0xm149,-104r-28,-104v-8,36,-20,70,-32,104r60,0xm88,-267r56,-46r64,0r-65,46r-55,0","w":251},"\u00cb":{"d":"185,-179r-31,0r0,-29r-69,0r0,67r74,0r0,32r-74,0r0,77r73,0r0,-39r31,0r0,71r-180,0r0,-30r30,0r0,-180r-30,0r0,-30r176,0r0,61xm41,-314r49,0r0,49r-49,0r0,-49xm115,-314r49,0r0,49r-49,0r0,-49","w":198},"\u00c8":{"d":"185,-179r-31,0r0,-29r-69,0r0,67r74,0r0,32r-74,0r0,77r73,0r0,-39r31,0r0,71r-180,0r0,-30r30,0r0,-180r-30,0r0,-30r176,0r0,61xm147,-267r-55,0r-65,-46r64,0","w":198},"\u00cd":{"d":"9,-240r106,0r0,30r-30,0r0,180r30,0r0,30r-106,0r0,-30r30,0r0,-180r-30,0r0,-30xm31,-267r45,-46r56,0r-51,46r-50,0","w":124},"\u00ce":{"d":"9,-240r106,0r0,30r-30,0r0,180r30,0r0,30r-106,0r0,-30r30,0r0,-180r-30,0r0,-30xm-5,-267r44,-46r46,0r44,46r-46,0r-21,-26r-21,26r-46,0","w":124},"\u00cf":{"d":"9,-240r106,0r0,30r-30,0r0,180r30,0r0,30r-106,0r0,-30r30,0r0,-180r-30,0r0,-30xm5,-314r49,0r0,49r-49,0r0,-49xm70,-314r50,0r0,49r-50,0r0,-49","w":124},"\u00cc":{"d":"9,-240r106,0r0,30r-30,0r0,180r30,0r0,30r-106,0r0,-30r30,0r0,-180r-30,0r0,-30xm95,-267r-50,0r-52,-46r57,0","w":124},"\u00d3":{"d":"120,-245v67,0,109,48,109,125v0,77,-42,125,-109,125v-68,0,-109,-48,-109,-127v0,-75,43,-123,109,-123xm120,-213v-39,0,-60,33,-60,92v0,62,21,94,60,94v39,0,60,-33,60,-93v0,-60,-21,-93,-60,-93xm80,-267r56,-46r64,0r-65,46r-55,0","w":239},"\u00d4":{"d":"120,-245v67,0,109,48,109,125v0,77,-42,125,-109,125v-68,0,-109,-48,-109,-127v0,-75,43,-123,109,-123xm120,-213v-39,0,-60,33,-60,92v0,62,21,94,60,94v39,0,60,-33,60,-93v0,-60,-21,-93,-60,-93xm45,-267r52,-46r47,0r51,46r-46,0r-29,-26r-27,26r-48,0","w":239},"\u00d2":{"d":"120,-245v67,0,109,48,109,125v0,77,-42,125,-109,125v-68,0,-109,-48,-109,-127v0,-75,43,-123,109,-123xm120,-213v-39,0,-60,33,-60,92v0,62,21,94,60,94v39,0,60,-33,60,-93v0,-60,-21,-93,-60,-93xm163,-267r-55,0r-64,-46r63,0","w":239},"\u00da":{"d":"125,5v-60,0,-88,-36,-88,-107r0,-108r-29,0r0,-30r106,0r0,30r-30,0r0,110v0,37,0,38,3,46v6,17,22,26,43,26v38,0,49,-16,49,-68r0,-114r-31,0r0,-30r93,0r0,30r-30,0r0,115v3,69,-28,100,-86,100xm85,-267r56,-46r63,0r-64,46r-55,0","w":248},"\u00db":{"d":"125,5v-60,0,-88,-36,-88,-107r0,-108r-29,0r0,-30r106,0r0,30r-30,0r0,110v0,37,0,38,3,46v6,17,22,26,43,26v38,0,49,-16,49,-68r0,-114r-31,0r0,-30r93,0r0,30r-30,0r0,115v3,69,-28,100,-86,100xm51,-267r52,-46r47,0r52,46r-47,0r-29,-26r-27,26r-48,0","w":248},"\u00d9":{"d":"125,5v-60,0,-88,-36,-88,-107r0,-108r-29,0r0,-30r106,0r0,30r-30,0r0,110v0,37,0,38,3,46v6,17,22,26,43,26v38,0,49,-16,49,-68r0,-114r-31,0r0,-30r93,0r0,30r-30,0r0,115v3,69,-28,100,-86,100xm167,-267r-56,0r-64,-46r63,0","w":248},"\u0160":{"d":"131,-240r25,0r0,69r-24,0v4,-46,-75,-56,-80,-14v-4,30,97,51,99,68v41,43,12,121,-56,121v-25,0,-42,-6,-59,-23r0,19r-25,0r0,-81r25,0v-8,51,88,76,91,19v-12,-37,-3,-22,-57,-48v-43,-20,-58,-28,-63,-71v-7,-59,86,-83,124,-44r0,-15xm159,-313r-52,46r-46,0r-52,-46r47,0r28,26r28,-26r47,0","w":178},"\u0161":{"d":"139,-117r-30,0v4,-32,-51,-37,-54,-10v-3,19,76,27,77,39v31,34,2,92,-49,92v-21,0,-34,-7,-44,-24r0,20r-29,0r0,-61r28,0v4,22,19,37,39,37v14,0,23,-9,23,-21v5,-21,-77,-29,-77,-42v-28,-35,-1,-87,46,-87v17,0,30,6,40,19r0,-16r30,0r0,54xm145,-243r-46,47r-42,0r-47,-47r43,0r25,26r25,-26r42,0","w":154},"\u017d":{"d":"61,-32r74,0r0,-36r32,0r0,68r-161,0r0,-30r104,-178r-68,0r0,30r-33,0r0,-62r156,0r0,30xm162,-313r-52,46r-46,0r-52,-46r47,0r28,26r28,-26r47,0","w":176},"\u017e":{"d":"58,-30r54,0r0,-31r32,0r0,61r-138,0r0,-27r76,-113r-43,0r0,26r-31,0r0,-56r129,0r0,27xm140,-243r-46,47r-42,0r-46,-47r42,0r25,26r25,-26r42,0","w":151},"\u00dd":{"d":"-1,-240r108,0r0,30r-25,0r34,76r34,-76r-24,0r0,-30r93,0r0,30r-33,0r-54,112r0,68r30,0r0,30r-106,0r0,-30r30,0r0,-66r-56,-114r-31,0r0,-30xm69,-267r57,-46r63,0r-64,46r-56,0","w":218},"\u00fd":{"d":"-1,-170r96,0r0,28r-21,0v11,33,24,66,31,102v4,-27,22,-73,32,-102r-21,0r0,-28r79,0r0,28r-26,0r-52,143v-24,72,-32,70,-102,73r0,-30v37,4,62,-5,66,-36r-54,-150r-28,0r0,-28xm63,-196r49,-47r54,0r-55,47r-48,0","w":194},"!":{"d":"18,-234r48,0r-5,161r-38,0xm19,-46r46,0r0,46r-46,0r0,-46","w":83},"\"":{"d":"52,-160r-24,0r-6,-80r36,0xm100,-160r-24,0r-6,-80r36,0","w":128},"#":{"d":"170,-107r-5,32r-30,0r-12,75r-39,0r12,-75r-29,0r-12,75r-37,0r12,-75r-30,0r5,-32r31,0r4,-32r-30,0r5,-32r31,0r11,-69r36,0r-11,69r29,0r11,-69r39,0r-11,69r30,0r-5,32r-30,0r-5,32r30,0xm106,-139r-29,0r-5,32r29,0"},"$":{"d":"84,-108v-50,-21,-69,-24,-69,-72v0,-37,24,-60,69,-63r0,-28r21,0r0,28v14,3,23,8,33,17r0,-16r25,0r0,71r-25,0v-1,-22,-13,-37,-33,-42r0,68v54,22,71,26,71,78v0,42,-25,67,-71,69r0,34r-21,0r0,-35v-18,-3,-29,-7,-43,-18r0,17r-28,0r0,-81r28,0v0,26,17,47,43,53r0,-80xm105,-98r0,71v30,-3,40,-48,15,-63v-3,-2,-6,-4,-15,-8xm84,-154r0,-60v-39,8,-44,46,0,60","w":187},"%":{"d":"36,0r139,-240r29,0r-138,240r-30,0xm183,-114v30,0,50,24,50,58v0,33,-21,58,-49,58v-30,0,-52,-25,-52,-59v0,-32,23,-57,51,-57xm183,-90v-13,0,-23,14,-23,33v0,21,9,34,23,34v13,0,22,-13,22,-33v0,-20,-8,-34,-22,-34xm59,-242v30,0,50,24,50,58v0,33,-21,58,-49,58v-30,0,-52,-25,-52,-59v0,-32,23,-57,51,-57xm59,-217v-13,0,-23,13,-23,32v0,21,9,35,23,35v13,0,22,-13,22,-34v0,-20,-8,-33,-22,-33","w":241},"&":{"d":"156,-120r49,0r0,27r-22,0v-1,19,-7,34,-17,46r13,19r25,0r0,28r-57,0r-11,-15v-42,38,-132,19,-132,-44v0,-27,14,-50,44,-73v-41,-43,-23,-105,36,-105v65,0,72,80,21,109r39,52v7,-10,11,-24,12,-44xm82,-160v13,-9,20,-19,20,-29v0,-10,-7,-16,-17,-16v-24,0,-20,30,-3,45xm116,-42r-45,-61v-33,17,-32,75,13,74v13,0,22,-4,32,-13","w":206},"'":{"d":"52,-160r-24,0r-6,-80r36,0","w":79},"(":{"d":"62,70v-58,-74,-59,-238,0,-310r33,0v-52,74,-50,237,0,310r-33,0","w":96},")":{"d":"36,-240v58,74,57,237,0,310r-34,0v51,-74,51,-237,0,-310r34,0","w":96},"*":{"d":"79,-196r0,-38r22,0r0,38r36,-12r6,20r-36,12r23,31r-18,13r-22,-31r-22,31r-18,-13r23,-31r-36,-12r6,-20"},"+":{"d":"15,-135r61,0r0,-60r35,0r0,60r60,0r0,33r-60,0r0,61r-35,0r0,-61r-61,0r0,-33","w":187},",":{"d":"16,-53r52,0r0,53r-32,48r-29,0r37,-48r-28,0r0,-53","w":84},"-":{"d":"0,-103r80,0r0,21r-80,0r0,-21","w":79},"\u00ad":{"d":"0,-103r80,0r0,21r-80,0r0,-21","w":79},".":{"d":"15,-53r53,0r0,53r-53,0r0,-53","w":83},"\/":{"d":"-22,44r139,-284r30,0r-138,284r-31,0","w":146},"0":{"d":"94,-237v53,0,83,43,83,119v0,77,-30,121,-83,121v-53,0,-83,-44,-83,-122v0,-74,31,-118,83,-118xm94,-207v-27,0,-38,27,-38,89v0,64,11,91,38,91v26,0,38,-27,38,-90v0,-63,-12,-90,-38,-90","w":187},"1":{"d":"90,-236r31,0r0,207r31,0r0,29r-108,0r0,-29r32,0r0,-138r-41,0r0,-24v28,0,47,-14,55,-45","w":187},"2":{"d":"158,-177v0,43,-63,110,-98,140r79,0r0,-30r29,0r0,67r-154,0r0,-37v43,-42,44,-42,59,-61v28,-34,40,-56,40,-74v0,-18,-13,-30,-31,-30v-22,0,-35,13,-36,40r-30,0v0,-48,28,-75,73,-75v41,0,69,24,69,60","w":187},"3":{"d":"123,-71v0,-33,-24,-42,-63,-40r0,-31v33,1,53,-6,54,-34v0,-17,-12,-29,-30,-29v-18,0,-29,12,-32,34r-34,0v3,-41,31,-66,73,-66v68,0,91,83,35,109v77,25,38,135,-40,131v-45,-2,-76,-28,-74,-71r34,0v2,24,15,38,38,38v23,0,39,-17,39,-41","w":187},"4":{"d":"137,-94r37,0r0,33r-37,0r0,32r25,0r0,29r-94,0r0,-29r26,0r0,-32r-89,0r0,-33r91,-142r41,0r0,142xm94,-94r2,-101v-13,32,-38,71,-56,101r54,0","w":187},"5":{"d":"38,-234r125,0r-7,37r-93,0r-6,54v47,-36,117,-4,117,59v0,50,-36,87,-84,87v-42,-1,-74,-29,-72,-70r31,0v2,24,16,38,38,38v24,0,42,-21,42,-50v1,-51,-55,-62,-80,-24r-30,-6","w":187},"6":{"d":"14,-81v0,-51,52,-123,82,-156r43,0v-26,31,-41,50,-57,76v53,-11,90,24,91,78v0,49,-33,86,-79,86v-46,0,-80,-35,-80,-84xm94,-134v-21,0,-35,21,-35,53v0,34,13,54,35,54v21,0,34,-20,34,-53v0,-33,-13,-54,-34,-54","w":187},"7":{"d":"16,-234r151,0r0,38r-101,196r-45,0r109,-192r-84,0r0,31r-30,0r0,-73","w":187},"8":{"d":"94,3v-75,11,-112,-100,-45,-126v-57,-28,-26,-122,45,-114v71,-7,101,86,44,114v66,26,31,136,-44,126xm93,-208v-18,0,-29,14,-29,36v0,23,11,37,30,37v18,0,29,-14,29,-36v0,-23,-11,-37,-30,-37xm94,-108v-22,0,-35,16,-35,41v0,25,14,41,35,41v21,0,33,-15,33,-41v0,-25,-12,-41,-33,-41","w":187},"9":{"d":"173,-153v0,49,-53,126,-82,156r-42,0v24,-28,41,-50,56,-76v-53,11,-90,-26,-91,-79v0,-49,34,-85,80,-85v46,0,79,35,79,84xm94,-207v-21,0,-35,20,-35,53v0,33,14,54,35,54v21,0,34,-21,34,-53v0,-34,-12,-54,-34,-54","w":187},":":{"d":"15,-158r53,0r0,53r-53,0r0,-53xm15,-53r53,0r0,53r-53,0r0,-53","w":83},";":{"d":"16,-53r52,0r0,53r-32,48r-29,0r37,-48r-28,0r0,-53xm16,-158r53,0r0,53r-53,0r0,-53","w":84},"\u037e":{"d":"16,-53r52,0r0,53r-32,48r-29,0r37,-48r-28,0r0,-53xm16,-158r53,0r0,53r-53,0r0,-53","w":84},"<":{"d":"168,-220r0,44r-109,54r109,53r0,44r-156,-79r0,-37"},"=":{"d":"15,-162r156,0r0,30r-156,0r0,-30xm15,-104r156,0r0,30r-156,0r0,-30","w":187},">":{"d":"12,-25r0,-44r109,-53r-109,-54r0,-44r156,79r0,38"},"?":{"d":"12,-170v-1,-48,28,-68,68,-68v37,0,61,22,61,54v0,22,-6,32,-39,63v-16,15,-17,22,-17,49r-42,0v0,-43,-3,-42,37,-82v18,-18,20,-44,-7,-44v-15,0,-24,10,-25,28r-36,0xm43,-46r46,0r0,46r-46,0r0,-46","w":148},"@":{"d":"126,3v-72,2,-126,-53,-126,-121v0,-70,56,-125,127,-125v65,0,113,45,113,105v0,57,-56,110,-88,64v-27,38,-95,20,-95,-35v0,-53,61,-96,98,-56r2,-12r33,0r-15,84v0,6,2,10,7,10v14,0,28,-28,28,-55v0,-44,-34,-75,-82,-75v-54,0,-95,41,-95,95v0,78,84,111,160,80r8,30v-21,7,-47,11,-75,11xm125,-145v-29,-4,-44,58,-8,59v27,3,46,-59,8,-59","w":240},"A":{"d":"102,-241r50,0r67,211r31,0r0,30r-105,0r0,-30r26,0r-13,-42r-78,0r-14,42r26,0r0,30r-90,0r0,-30r31,0xm149,-104r-28,-104v-8,36,-20,70,-32,104r60,0","w":251},"B":{"d":"206,-70v0,57,-34,74,-120,70r-77,0r0,-30r30,0r0,-180r-30,0r0,-30v45,1,143,-5,158,10v37,21,38,89,-10,101v32,8,49,28,49,59xm148,-175v0,-32,-27,-35,-63,-33r0,67v35,2,63,-3,63,-34xm158,-71v-1,-36,-28,-41,-73,-38r0,77v44,1,73,-1,73,-39","w":216},"C":{"d":"11,-119v0,-99,89,-158,166,-107r0,-14r32,0r0,78r-31,0v-3,-34,-20,-51,-53,-51v-43,0,-65,31,-65,93v0,60,22,93,62,93v32,0,52,-22,55,-61r34,0v-1,59,-34,93,-91,93v-68,0,-109,-47,-109,-124","w":222},"D":{"d":"220,-120v0,82,-36,128,-137,120r-74,0r0,-30r30,0r0,-180r-30,0r0,-30v47,2,133,-5,153,10v36,17,58,59,58,110xm174,-120v0,-62,-22,-94,-89,-88r0,176v69,5,89,-27,89,-88","w":230},"E":{"d":"185,-179r-31,0r0,-29r-69,0r0,67r74,0r0,32r-74,0r0,77r73,0r0,-39r31,0r0,71r-180,0r0,-30r30,0r0,-180r-30,0r0,-30r176,0r0,61","w":198},"F":{"d":"185,-179r-31,0r0,-29r-69,0r0,67r74,0r0,32r-74,0r0,79r38,0r0,30r-114,0r0,-30r30,0r0,-180r-30,0r0,-30r176,0r0,61","w":189},"G":{"d":"11,-118v0,-98,88,-160,165,-108r0,-14r32,0r0,78r-31,0v-1,-33,-20,-51,-53,-51v-42,0,-65,32,-65,94v0,84,54,112,111,78r0,-49r-26,0r0,-30r93,0r0,30r-23,0r0,63v-78,63,-203,31,-203,-91","w":239},"H":{"d":"83,-142r91,0r0,-68r-31,0r0,-30r105,0r0,30r-30,0r0,180r30,0r0,30r-105,0r0,-30r31,0r0,-80r-91,0r0,80r30,0r0,30r-104,0r0,-30r30,0r0,-180r-30,0r0,-30r104,0r0,30r-30,0r0,68","w":256},"I":{"d":"9,-240r106,0r0,30r-30,0r0,180r30,0r0,30r-106,0r0,-30r30,0r0,-180r-30,0r0,-30","w":124},"J":{"d":"-1,12v43,4,44,-19,44,-64r0,-158r-30,0r0,-30r107,0r0,30r-31,0v-9,106,40,274,-90,252r0,-30","w":127},"K":{"d":"9,-240r99,0r0,30r-26,0r0,84r78,-84r-20,0r0,-30r91,0r0,30r-31,0r-54,61r67,119r29,0r0,30r-100,0r0,-30r18,0r-43,-92r-37,40r0,52r26,0r0,30r-97,0r0,-30r30,0r0,-180r-30,0r0,-30","w":246},"L":{"d":"85,-32r72,0r0,-39r32,0r0,71r-180,0r0,-30r30,0r0,-180r-30,0r0,-30r106,0r0,30r-30,0r0,178","w":191},"M":{"d":"9,-240r96,0r53,181v15,-65,38,-120,59,-181r94,0r0,30r-30,0r0,180r30,0r0,30r-105,0r0,-30r29,0r2,-176r-68,206r-33,0r-64,-202r0,172r30,0r0,30r-93,0r0,-30r30,0r0,-180r-30,0r0,-30","w":319},"N":{"d":"9,-240r81,0r96,175r0,-145r-30,0r0,-30r92,0r0,30r-30,0r0,210r-44,0r-103,-189r0,159r30,0r0,30r-92,0r0,-30r30,0r0,-180r-30,0r0,-30","w":255},"O":{"d":"120,-245v67,0,109,48,109,125v0,77,-42,125,-109,125v-68,0,-109,-48,-109,-127v0,-75,43,-123,109,-123xm120,-213v-39,0,-60,33,-60,92v0,62,21,94,60,94v39,0,60,-33,60,-93v0,-60,-21,-93,-60,-93","w":239},"P":{"d":"195,-167v0,56,-39,83,-110,77r0,60r34,0r0,30r-110,0r0,-30r30,0r0,-180r-30,0r0,-30r88,0v67,-4,98,22,98,73xm148,-165v-1,-37,-19,-47,-63,-43r0,86v43,2,63,-6,63,-43","w":200},"Q":{"d":"260,0r-54,0r-16,-19v-78,58,-179,7,-179,-101v0,-77,42,-125,109,-125v93,0,134,112,94,195xm120,-213v-39,0,-60,33,-60,92v0,62,21,94,60,94v39,0,60,-33,60,-93v0,-60,-21,-93,-60,-93","w":239},"R":{"d":"93,-240v80,-3,109,16,109,73v0,29,-13,49,-39,61r33,76r30,0r0,30r-68,0r-34,-99r-41,0r0,69r26,0r0,30r-100,0r0,-30r30,0r0,-180r-30,0r0,-30r84,0xm155,-170v0,-36,-28,-40,-70,-38r0,76v43,1,70,-2,70,-38","w":226},"S":{"d":"131,-240r25,0r0,69r-24,0v4,-46,-75,-56,-80,-14v-4,30,97,51,99,68v41,43,12,121,-56,121v-25,0,-42,-6,-59,-23r0,19r-25,0r0,-81r25,0v-8,51,88,76,91,19v-12,-37,-3,-22,-57,-48v-43,-20,-58,-28,-63,-71v-7,-59,86,-83,124,-44r0,-15","w":178},"T":{"d":"3,-240r204,0r0,71r-32,0r0,-39r-46,0r0,178r29,0r0,30r-106,0r0,-30r30,0r0,-178r-47,0r0,39r-32,0r0,-71","w":210},"U":{"d":"125,5v-60,0,-88,-36,-88,-107r0,-108r-29,0r0,-30r106,0r0,30r-30,0r0,110v0,37,0,38,3,46v6,17,22,26,43,26v38,0,49,-16,49,-68r0,-114r-31,0r0,-30r93,0r0,30r-30,0r0,115v3,69,-28,100,-86,100","w":248},"V":{"d":"1,-240r105,0r0,30r-26,0r53,165r52,-165r-26,0r0,-30r91,0r0,30r-31,0r-69,210r-50,0r-68,-210r-31,0r0,-30","w":250},"W":{"d":"1,-240r103,0r0,30r-29,0r16,70v8,39,11,56,15,86r42,-186r36,0r41,186r35,-156r-30,0r0,-30r91,0r0,30r-30,0r-49,210r-44,0r-37,-180r-40,180r-43,0r-47,-210r-30,0r0,-30","w":321},"X":{"d":"14,-240r68,0r41,83r32,-53r-20,0r0,-30r89,0r0,30r-30,0r-54,82r56,98r33,0r0,30r-73,0r-44,-94r-39,64r25,0r0,30r-94,0r0,-30r30,0r60,-93r-47,-87r-33,0r0,-30","w":235},"Y":{"d":"-1,-240r108,0r0,30r-25,0r34,76r34,-76r-24,0r0,-30r93,0r0,30r-33,0r-54,112r0,68r30,0r0,30r-106,0r0,-30r30,0r0,-66r-56,-114r-31,0r0,-30","w":218},"Z":{"d":"61,-32r74,0r0,-36r32,0r0,68r-161,0r0,-30r104,-178r-68,0r0,30r-33,0r0,-62r156,0r0,30","w":176},"[":{"d":"23,-240r72,0r0,35r-34,0r0,240r34,0r0,35r-72,0r0,-310","w":96},"\\":{"d":"168,44r-30,0r-138,-284r30,0","w":146},"]":{"d":"74,70r-72,0r0,-35r34,0r0,-240r-34,0r0,-35r72,0r0,310","w":96},"^":{"d":"49,-122r-46,0r58,-119r58,0r58,119r-46,0r-41,-84"},"_":{"d":"0,17r180,0r0,40r-180,0r0,-40"},"`":{"d":"122,-196r-48,0r-56,-47r55,0"},"a":{"d":"80,-145v-22,0,-32,7,-33,31r-31,0r3,-33v38,-42,147,-42,130,47r0,72r25,0r0,28r-66,0r0,-23v-22,44,-103,30,-99,-22v4,-44,42,-60,96,-69v1,-24,-4,-31,-25,-31xm75,-30v29,0,34,-24,31,-60v-36,9,-52,22,-52,40v0,13,8,20,21,20"},"b":{"d":"4,-241r67,0r0,97v35,-63,120,-17,120,59v0,76,-84,122,-120,59r-3,26r-38,0r0,-213r-26,0r0,-28xm110,-144v-23,0,-35,19,-35,58v0,40,11,60,35,60v24,0,36,-20,36,-59v0,-39,-12,-59,-36,-59","w":202},"c":{"d":"127,-171r30,0r0,59r-30,0v-3,-20,-15,-31,-32,-31v-23,0,-36,20,-36,59v0,60,50,78,64,30r36,0v-5,37,-29,58,-67,58v-48,0,-80,-35,-80,-87v0,-67,68,-119,115,-74r0,-14","w":167},"d":{"d":"105,-241r67,0r0,213r26,0r0,28r-66,0r0,-26v-35,63,-120,17,-120,-59v0,-76,84,-122,120,-59r0,-69r-27,0r0,-28xm92,-144v-24,0,-36,19,-36,58v0,40,12,60,36,60v24,0,36,-20,36,-59v0,-39,-13,-59,-36,-59","w":205},"e":{"d":"171,-77r-111,0v-11,56,61,70,70,23r40,0v0,33,-32,58,-74,58v-51,0,-84,-36,-84,-89v0,-53,32,-89,80,-89v51,0,85,41,79,97xm123,-104v1,-25,-8,-41,-29,-40v-21,0,-32,13,-34,40r63,0","w":183},"f":{"d":"122,-201v-26,-22,-48,-7,-42,31r39,0r0,30r-39,0r0,112r30,0r0,28r-101,0r0,-28r26,0r0,-112r-26,0r0,-30r26,0v-10,-62,39,-87,87,-65r0,34","w":122},"g":{"d":"16,-113v0,-64,80,-58,154,-57r0,25r-35,0v33,31,18,81,-40,86v-24,2,-22,1,-28,13v0,16,72,9,82,23v43,36,9,104,-64,96v-78,7,-113,-69,-45,-91v-29,-11,-24,-39,12,-45v-24,-11,-36,-27,-36,-50xm85,-140v-17,0,-30,11,-30,27v0,16,12,27,29,27v17,0,29,-10,29,-27v0,-16,-11,-27,-28,-27xm85,-5v-27,0,-44,9,-44,24v0,15,17,25,44,25v28,0,45,-10,45,-25v0,-15,-16,-24,-45,-24","w":174},"h":{"d":"111,-136v-44,0,-28,65,-31,108r21,0r0,28r-92,0r0,-28r26,0r0,-185r-26,0r0,-28r71,0r0,94v33,-47,117,-34,101,49r0,70r27,0r0,28r-92,0r0,-28r21,0v-5,-39,18,-108,-26,-108","w":213},"i":{"d":"80,-170r0,142r26,0r0,28r-97,0r0,-28r26,0r0,-114r-26,0r0,-28r71,0xm30,-239r48,0r0,40r-48,0r0,-40","w":113},"j":{"d":"84,-170v-8,100,38,260,-85,244r0,-27v18,0,30,-4,35,-12v10,-20,3,-134,5,-177r-26,0r0,-28r71,0xm33,-239r48,0r0,40r-48,0r0,-40","w":115},"k":{"d":"78,-241r0,153r51,-54r-20,0r0,-28r84,0r0,28r-24,0r-33,38r47,76r20,0r0,28r-56,0r-43,-76v-10,15,-30,20,-27,48r25,0r0,28r-93,0r0,-28r26,0r0,-185r-26,0r0,-28r69,0","w":207},"l":{"d":"80,-241r0,213r26,0r0,28r-97,0r0,-28r26,0r0,-185r-26,0r0,-28r71,0","w":113},"m":{"d":"108,-136v-45,0,-25,66,-29,108r16,0r0,28r-86,0r0,-28r26,0r0,-114r-26,0r0,-28r67,0r0,29v19,-43,79,-44,98,-4v26,-47,116,-39,100,42r0,75r26,0r0,28r-87,0r0,-28r17,0v-5,-41,17,-108,-27,-108v-43,0,-22,68,-27,108r17,0r0,28r-77,0r0,-28r16,0v-6,-39,18,-108,-24,-108","w":306},"n":{"d":"109,-136v-43,0,-26,66,-29,108r16,0r0,28r-87,0r0,-28r26,0r0,-114r-26,0r0,-28r68,0r0,29v28,-56,115,-41,100,43r0,70r27,0r0,28r-87,0r0,-28r16,0v-5,-38,17,-108,-24,-108","w":209},"o":{"d":"12,-86v0,-51,35,-88,84,-88v49,0,84,36,84,89v0,54,-35,89,-84,89v-50,0,-84,-35,-84,-90xm96,-144v-24,0,-35,19,-35,58v0,41,11,59,35,59v24,0,35,-19,35,-59v0,-40,-11,-58,-35,-58","w":191},"p":{"d":"75,-170r0,26v36,-63,120,-18,120,59v0,77,-84,122,-120,59r0,69r28,0r0,28r-94,0r0,-28r26,0r0,-185r-26,0r0,-28r66,0xm115,-144v-23,0,-36,19,-36,58v0,40,12,60,36,60v23,0,35,-20,35,-59v0,-39,-11,-59,-35,-59","w":207},"q":{"d":"132,-170r66,0r0,28r-26,0r0,185r26,0r0,28r-94,0r0,-28r28,0r0,-69v-35,63,-120,17,-120,-59v0,-76,85,-122,120,-59r0,-26xm92,-144v-23,0,-35,19,-35,58v0,40,11,60,35,60v24,0,36,-19,36,-59v0,-40,-12,-59,-36,-59","w":207},"r":{"d":"105,-138v-36,3,-22,66,-25,110r30,0r0,28r-101,0r0,-28r26,0r0,-114r-26,0r0,-28r68,0r0,28v21,-33,40,-35,74,-20r0,46r-26,0v-4,-17,-10,-22,-20,-22","w":150},"s":{"d":"139,-117r-30,0v4,-32,-51,-37,-54,-10v-3,19,76,27,77,39v31,34,2,92,-49,92v-21,0,-34,-7,-44,-24r0,20r-29,0r0,-61r28,0v4,22,19,37,39,37v14,0,23,-9,23,-21v5,-21,-77,-29,-77,-42v-28,-35,-1,-87,46,-87v17,0,30,6,40,19r0,-16r30,0r0,54","w":154},"t":{"d":"115,-1v-50,11,-84,3,-84,-63r0,-76r-25,0r0,-30r25,0r0,-50r44,0r0,50r40,0r0,30r-40,0v5,43,-22,134,40,105r0,34","w":122},"u":{"d":"139,-29v-30,56,-123,39,-107,-48r0,-65r-26,0r0,-28r70,0r0,92v-1,42,4,36,27,45v46,2,29,-65,32,-109r-27,0r0,-28r71,0r0,142r26,0r0,28r-66,0r0,-29","w":212},"v":{"d":"0,-170r95,0r0,28r-20,0r32,101v7,-35,22,-68,32,-101r-20,0r0,-28r79,0r0,28r-27,0r-52,143r-37,0r-56,-143r-26,0r0,-28","w":198},"w":{"d":"0,-170r91,0r0,28r-19,0r22,101r31,-129r44,0r29,131r25,-103r-19,0r0,-28r78,0r0,28r-28,0r-38,143r-46,0r-30,-130v-6,37,-20,92,-31,130r-45,0r-37,-143r-27,0r0,-28","w":281},"x":{"d":"12,-170r65,0r29,51r18,-25r-16,0r0,-26r84,0r0,28r-31,0r-41,51r46,63r31,0r0,28r-68,0r-35,-60r-24,34r21,0r0,26r-90,0r0,-28r32,0r47,-59r-39,-55r-29,0r0,-28","w":198},"y":{"d":"-1,-170r96,0r0,28r-21,0v11,33,24,66,31,102v4,-27,22,-73,32,-102r-21,0r0,-28r79,0r0,28r-26,0r-52,143v-24,72,-32,70,-102,73r0,-30v37,4,62,-5,66,-36r-54,-150r-28,0r0,-28","w":194},"z":{"d":"58,-30r54,0r0,-31r32,0r0,61r-138,0r0,-27r76,-113r-43,0r0,26r-31,0r0,-56r129,0r0,27","w":151},"{":{"d":"94,-240r0,30v-72,-9,-2,98,-55,125v29,13,21,57,21,96v0,25,7,29,34,29r0,30v-46,2,-69,-8,-69,-52v0,-34,11,-86,-20,-90r0,-28v31,-6,20,-56,20,-90v0,-41,24,-52,69,-50","w":96},"|":{"d":"68,-240r44,0r0,300r-44,0r0,-300"},"}":{"d":"37,-181v-1,-30,-8,-26,-34,-29r0,-30v46,-2,69,9,69,52v0,33,-11,86,20,90r0,28v-31,5,-20,57,-20,90v0,41,-24,52,-69,50r0,-30v72,9,2,-98,55,-125v-29,-12,-19,-57,-21,-96","w":96},"~":{"d":"150,-207v-6,4,-62,-20,-66,-18v-12,0,-18,5,-27,22v-7,-8,-28,-10,-22,-22v14,-30,22,-38,51,-43v11,-2,61,22,70,19v12,0,17,-5,26,-19r25,14v-15,33,-24,43,-57,47","w":240},"\u00c7":{"d":"11,-119v0,-98,88,-158,166,-107r0,-14r32,0r0,78r-31,0v-3,-34,-20,-51,-53,-51v-43,0,-65,31,-65,93v0,60,22,93,62,93v32,0,52,-22,55,-61r34,0v0,54,-33,90,-84,92r-4,13v46,6,34,70,-8,68v-10,0,-20,-2,-30,-6r0,-22v20,5,38,6,39,-13v1,-14,-14,-21,-31,-17r8,-24v-58,-7,-90,-55,-90,-122","w":222},"\u00e7":{"d":"127,-171r30,0r0,59r-30,0v-3,-20,-16,-31,-33,-31v-23,0,-35,20,-35,59v0,60,49,78,64,30r36,0v-5,33,-24,53,-57,57r-3,12v40,7,30,67,-9,65v-9,0,-16,-2,-25,-6r0,-20v18,7,34,6,35,-13v0,-14,-14,-21,-28,-15r7,-23v-44,-8,-67,-38,-67,-86v0,-67,67,-119,115,-74r0,-14","w":167},"\u2020":{"d":"69,-234r42,0r0,66r51,0r0,34r-51,0r0,189r-42,0r0,-189r-51,0r0,-34r51,0r0,-66"},"\u00b0":{"d":"90,-244v31,0,55,24,55,54v0,30,-25,55,-55,55v-31,0,-55,-24,-55,-55v0,-30,25,-54,55,-54xm90,-217v-15,0,-28,12,-28,27v0,15,13,28,28,28v15,0,28,-13,28,-28v0,-15,-13,-27,-28,-27"},"\u00a2":{"d":"88,-241r22,0r0,29v10,2,17,6,26,14r0,-13r27,0r0,59r-29,0v-2,-17,-12,-28,-24,-31r0,116v11,-3,18,-12,22,-27r33,0v-4,33,-24,53,-55,57r0,33r-22,0r0,-33v-41,-5,-67,-39,-67,-86v0,-49,27,-84,67,-90r0,-28xm88,-68r0,-113v-30,9,-32,104,0,113","w":187},"\u00a3":{"d":"178,-73v11,40,1,73,-49,73r-117,0r0,-10v14,-23,21,-49,23,-94r-23,0r0,-33r25,0v4,-46,4,-46,8,-58v9,-32,29,-49,60,-49v33,0,55,23,56,60r-27,0v-4,-18,-11,-26,-24,-26v-27,0,-29,32,-31,73r37,0r0,33r-38,0v-1,25,-7,50,-17,72v24,-17,45,-8,75,-8v14,0,19,-16,14,-33r28,0","w":187},"\u00a7":{"d":"118,5v3,-36,-102,-47,-102,-103v0,-19,8,-31,29,-43v-41,-35,-11,-98,48,-96v46,2,69,24,67,71r-30,0v12,-44,-57,-54,-62,-19v3,38,97,42,97,97v0,20,-9,34,-29,46v48,36,17,104,-46,102v-48,-2,-78,-26,-75,-71r33,0v-8,46,67,53,70,16xm69,-125v-22,12,-19,32,7,47r35,20v23,-15,24,-34,-9,-49v-7,-3,-13,-6,-33,-18"},"\u2022":{"d":"121,-172v27,0,49,23,49,50v0,28,-22,50,-49,50v-27,0,-50,-23,-50,-50v0,-28,22,-50,50,-50","w":240},"\u00b6":{"d":"-9,-176v0,-42,31,-64,81,-64r106,0r0,27r-23,0r0,248r-32,0r0,-248r-29,0r0,248r-32,0r0,-149v-43,2,-71,-23,-71,-62","w":184},"\u00df":{"d":"33,-158v-3,-57,24,-80,70,-83v64,-5,93,82,37,107v30,10,46,35,46,71v1,50,-43,82,-87,60r0,-31v24,14,42,2,42,-30v-1,-33,-18,-54,-50,-53r0,-29v23,1,36,-10,36,-31v0,-19,-11,-32,-26,-32v-23,5,-23,14,-23,51r0,158r-71,0r0,-28r26,0r0,-130","w":196},"\u00ae":{"d":"136,-245v69,0,124,56,124,125v0,69,-56,125,-124,125v-70,0,-125,-56,-125,-127v0,-67,57,-123,125,-123xm136,-228v-58,0,-105,49,-105,107v0,60,46,108,105,108v58,0,104,-48,104,-107v0,-59,-46,-108,-104,-108xm75,-192v55,0,116,-7,116,44v0,17,-8,29,-23,37r19,44r17,0r0,19r-41,0r-20,-59r-22,0r0,40r15,0r0,19r-61,0r0,-19r18,0r0,-106r-18,0r0,-19xm161,-150v-1,-20,-14,-23,-39,-22r0,44v24,1,39,-1,39,-22","w":270},"\u00a9":{"d":"136,-245v69,0,124,56,124,125v0,69,-56,125,-124,125v-70,0,-125,-56,-125,-127v0,-67,57,-123,125,-123xm136,-228v-57,0,-105,48,-105,106v0,61,46,109,105,109v58,0,104,-48,104,-107v0,-59,-46,-108,-104,-108xm189,-101v1,37,-22,56,-54,56v-41,0,-66,-28,-66,-74v0,-60,53,-96,98,-64r0,-9r21,0r0,48r-20,0v-2,-21,-11,-31,-30,-31v-24,0,-38,19,-38,55v0,62,62,76,67,19r22,0","w":270},"\u2122":{"d":"2,-240r129,0r0,41r-22,0r0,-22r-27,0r0,99r18,0r0,18r-67,0r0,-18r18,0r0,-99r-27,0r0,22r-22,0r0,-41xm144,-240r62,0r32,98v8,-33,23,-66,35,-98r60,0r0,18r-18,0r0,100r18,0r0,18r-67,0r0,-18r19,0r0,-93r-39,111r-22,0r-39,-108r0,90r19,0r0,18r-60,0r0,-18r19,0r0,-100r-19,0r0,-18","w":342},"\u00b4":{"d":"58,-196r49,-47r55,0r-56,47r-48,0"},"\u00a8":{"d":"28,-245r50,0r0,49r-50,0r0,-49xm102,-245r50,0r0,49r-50,0r0,-49"},"\u2260":{"d":"94,-175r20,-38r28,14r-12,24r38,0r0,40r-56,0r-13,25r69,0r0,40r-87,0r-18,35r-28,-14r11,-21r-34,0r0,-40r52,0r12,-25r-64,0r0,-40r82,0"},"\u00c6":{"d":"316,-181r-31,0r0,-27r-70,0r0,67r64,0r0,32r-64,0r0,77r74,0r0,-35r31,0r0,67r-181,0r0,-30r30,0r0,-37r-82,0r-20,37r27,0r0,30r-95,0r0,-30r32,0r120,-210r165,0r0,59xm169,-99r0,-113r-64,113r64,0","w":330},"\u00d8":{"d":"213,-240r34,0r-39,41v14,22,21,50,21,81v0,112,-115,158,-184,94r-23,24r-34,0r42,-44v-12,-22,-19,-48,-19,-78v0,-111,111,-157,182,-96xm64,-81r100,-107v-40,-52,-104,-21,-104,66v0,16,1,27,4,41xm175,-163r-102,108v38,55,107,26,107,-62v0,-17,-2,-31,-5,-46","w":239},"\u221e":{"d":"121,-94v-34,49,-115,35,-115,-28v-1,-62,80,-80,113,-30v32,-48,115,-33,115,29v0,62,-81,79,-113,29xm142,-122v10,15,18,20,28,20v12,0,20,-8,20,-20v0,-29,-35,-27,-48,0xm98,-122v-10,-15,-17,-21,-27,-21v-12,0,-21,9,-21,21v0,28,37,26,48,0","w":240},"\u00b1":{"d":"15,-158r61,0r0,-58r35,0r0,58r60,0r0,32r-60,0r0,59r-35,0r0,-59r-61,0r0,-32xm15,-52r156,0r0,32r-156,0r0,-32","w":187},"\u2264":{"d":"168,-239r0,42r-109,50r109,51r0,42r-156,-73r0,-38xm168,-44r0,41r-156,0r0,-41r156,0"},"\u2265":{"d":"12,-54r0,-42r109,-51r-109,-50r0,-42r156,75r0,37xm12,-3r0,-41r156,0r0,41r-156,0"},"\u00a5":{"d":"0,-240r95,0r0,30r-14,0r19,80r21,-80r-15,0r0,-30r81,0r0,30r-33,0r-17,51r37,0r0,29r-47,0r-8,25r37,0r0,29r-40,0r0,46r30,0r0,30r-106,0r0,-30r30,0r0,-46r-41,0r0,-29r38,0r-8,-25r-48,0r0,-29r37,0r-17,-51r-31,0r0,-30","w":187},"\u00b5":{"d":"91,-30v54,0,30,-90,35,-143r44,0r0,173r-44,0r0,-21v-14,33,-55,33,-72,2r0,81r-44,0r0,-235r44,0v5,54,-19,143,37,143"},"\u03bc":{"d":"91,-30v54,0,30,-90,35,-143r44,0r0,173r-44,0r0,-21v-14,33,-55,33,-72,2r0,81r-44,0r0,-235r44,0v5,54,-19,143,37,143"},"\u2202":{"d":"29,-239v90,7,144,58,144,143v0,60,-33,99,-84,99v-46,0,-83,-36,-83,-82v0,-62,76,-102,120,-59v-14,-35,-52,-58,-103,-63xm90,-123v-22,0,-39,19,-39,45v0,27,17,48,38,48v22,0,39,-20,39,-47v0,-27,-16,-46,-38,-46"},"\u2211":{"d":"222,-270r0,90r-39,0r-5,-49r-120,0r90,133r-90,145r123,0r3,-48r41,0r0,89r-217,0r0,-46r87,-140r-87,-128r0,-46r214,0","w":240},"\u220f":{"d":"14,-270r234,0r0,41r-29,0r0,278r29,0r0,41r-103,0r0,-41r29,0r0,-278r-85,0r0,278r28,0r0,41r-103,0r0,-41r30,0r0,-278r-30,0r0,-41","w":262},"\u03c0":{"d":"41,0r0,-133r-28,0r0,-40r210,0r0,40r-27,0r0,133r-44,0r0,-133r-67,0r0,133r-44,0","w":236},"\u222b":{"d":"68,-174v-9,-86,24,-101,93,-92r-9,39v-20,-6,-39,-5,-40,17r0,204v0,48,-1,57,-8,70v-14,26,-50,31,-85,22r8,-39v34,11,41,-5,41,-44r0,-177"},"\u00aa":{"d":"8,-125r108,0r0,20r-108,0r0,-20xm12,-168v1,-29,28,-34,57,-44v0,-12,-3,-15,-14,-15v-13,0,-17,5,-18,19r-20,0r1,-21v23,-24,89,-27,79,28r0,42r15,0r0,18r-41,0r0,-11v-16,23,-60,13,-59,-16xm52,-159v16,0,19,-14,17,-35v-20,6,-28,13,-28,23v0,7,4,12,11,12","w":123},"\u00ba":{"d":"8,-125r108,0r0,20r-108,0r0,-20xm62,-245v31,0,50,21,50,53v0,32,-19,54,-50,54v-31,0,-50,-21,-50,-54v0,-32,20,-53,50,-53xm62,-226v-13,0,-19,11,-19,34v0,24,6,35,19,35v13,0,19,-11,19,-35v0,-23,-6,-34,-19,-34","w":123},"\u03a9":{"d":"121,-206v-39,1,-65,37,-65,79v0,43,17,72,52,91r0,36r-98,0r0,-40r52,0v-35,-19,-52,-45,-52,-92v0,-66,47,-114,110,-114v107,0,153,158,59,206r51,0r0,40r-97,0r0,-36v34,-16,51,-45,51,-91v0,-46,-26,-79,-63,-79","w":240},"\u2126":{"d":"121,-206v-39,1,-65,37,-65,79v0,43,17,72,52,91r0,36r-98,0r0,-40r52,0v-35,-19,-52,-45,-52,-92v0,-66,47,-114,110,-114v107,0,153,158,59,206r51,0r0,40r-97,0r0,-36v34,-16,51,-45,51,-91v0,-46,-26,-79,-63,-79","w":240},"\u00e6":{"d":"76,-144v-19,0,-32,6,-29,30r-30,0r0,-38v30,-24,89,-32,117,-5v57,-43,133,-2,124,82r-112,0v-6,55,67,66,80,21r30,0v-4,61,-100,78,-135,30v-22,42,-116,36,-112,-21v3,-42,37,-62,93,-62v2,-27,-4,-37,-26,-37xm147,-104r67,0v-2,-28,-11,-40,-31,-40v-20,0,-32,13,-36,40xm102,-66v-1,-3,2,-10,-3,-9v-31,0,-47,9,-47,26v0,12,9,20,22,20v18,0,28,-13,28,-37","w":270},"\u00f8":{"d":"27,-31v-37,-57,-2,-143,69,-143v20,0,37,6,53,18r14,-14r32,0r-29,31v36,58,1,143,-70,143v-20,0,-38,-6,-54,-18r-13,14r-33,0xm62,-68r61,-61v-24,-31,-66,-14,-61,43r0,18xm130,-103r-61,62v25,30,68,12,62,-44v0,-6,0,-10,-1,-18","w":191},"\u00bf":{"d":"137,0v1,48,-28,68,-68,68v-37,0,-61,-22,-61,-54v0,-22,7,-32,40,-63v17,-15,16,-22,16,-49r41,0v14,59,-36,63,-50,108v0,11,8,19,20,19v15,0,25,-10,26,-29r36,0xm105,-124r-46,0r0,-46r46,0r0,46","w":148},"\u00a1":{"d":"66,64r-48,0r5,-160r38,0xm65,-124r-46,0r0,-46r46,0r0,46","w":83},"\u00ac":{"d":"123,0r0,-55r-111,0r0,-41r156,0r0,96r-45,0"},"\u221a":{"d":"240,-299r0,41r-65,0r-61,258r-59,0r-22,-99r-33,0r0,-41r70,0v6,26,12,57,13,86r3,0v8,-85,33,-167,50,-245r104,0","w":240},"\u0192":{"d":"42,-134r0,-26r36,0v8,-51,17,-105,74,-103v13,0,22,2,32,8r-7,34v-22,-20,-42,-8,-47,20r-8,41r40,0r0,26r-45,0r-28,144v-3,53,-53,74,-98,54r7,-34v23,20,42,8,47,-20r28,-144r-31,0","w":187},"\u2248":{"d":"121,-129v-6,3,-62,-21,-67,-18v-12,0,-18,5,-27,22r-24,-16v15,-37,28,-49,54,-49v9,-3,61,21,69,18v12,0,17,-4,26,-19r25,15v-16,32,-25,42,-56,47xm121,-58v-6,4,-63,-21,-67,-18v-12,0,-18,5,-27,22r-24,-15v15,-37,29,-50,54,-50v10,-3,61,22,69,19v12,0,17,-5,26,-20r25,15v-15,32,-24,43,-56,47"},"\u0394":{"d":"6,0r89,-240r48,0r91,240r-228,0xm70,-41r99,0r-49,-145","w":240},"\u2206":{"d":"6,0r89,-240r48,0r91,240r-228,0xm70,-41r99,0r-49,-145","w":240},"\u00ab":{"d":"143,0r-32,0r-38,-85r38,-85r32,0r-32,85xm81,0r-33,0r-37,-85r37,-85r33,0r-33,85","w":149},"\u00bb":{"d":"7,-170r33,0r37,85r-37,85r-33,0r33,-85xm69,-170r33,0r37,85r-37,85r-33,0r33,-85","w":149},"\u2026":{"d":"15,-53r53,0r0,53r-53,0r0,-53xm98,-53r54,0r0,53r-54,0r0,-53xm181,-53r54,0r0,53r-54,0r0,-53","w":249},"\u0152":{"d":"11,-119v-12,-101,101,-163,170,-99r0,-22r138,0r0,59r-31,0r0,-27r-70,0r0,66r64,0r0,32r-64,0r0,78r74,0r0,-35r31,0r0,67r-142,0r0,-22v-68,62,-183,5,-170,-97xm118,-212v-37,0,-58,34,-58,92v0,59,21,92,58,92v37,0,58,-33,58,-92v0,-59,-21,-92,-58,-92","w":333},"\u0153":{"d":"284,-75r-112,0v-8,54,68,66,80,20r31,0v-2,59,-99,80,-134,33v-46,56,-137,15,-137,-61v0,-77,91,-123,139,-65v50,-56,146,-15,133,73xm173,-105r67,0v-1,-25,-12,-39,-32,-39v-20,0,-33,15,-35,39xm94,-144v-22,0,-35,22,-35,59v0,40,12,59,35,59v23,0,35,-20,35,-59v0,-39,-12,-59,-35,-59","w":296},"\u2013":{"d":"15,-103r150,0r0,21r-150,0r0,-21"},"\u2014":{"d":"0,-103r240,0r0,21r-240,0r0,-21","w":240},"\u201c":{"d":"55,-159r-44,0r0,-43r25,-40r27,0r-32,40r24,0r0,43xm121,-159r-44,0r0,-43r26,-40r26,0r-31,40r23,0r0,43","w":135},"\u201d":{"d":"15,-240r44,0r0,42r-26,41r-26,0r32,-41r-24,0r0,-42xm80,-240r44,0r0,42r-25,41r-27,0r32,-41r-24,0r0,-42","w":135},"\u2018":{"d":"55,-159r-44,0r0,-43r25,-40r27,0r-32,40r24,0r0,43","w":69},"\u2019":{"d":"15,-240r44,0r0,42r-26,41r-26,0r32,-41r-24,0r0,-42","w":69},"\u00f7":{"d":"15,-134r156,0r0,32r-156,0r0,-32xm71,-75r43,0r0,43r-43,0r0,-43xm71,-203r43,0r0,42r-43,0r0,-42","w":187},"\u25ca":{"d":"120,-249r93,129r-93,129r-93,-129xm120,-217r-71,97r71,97r71,-97","w":240},"\u2044":{"d":"76,-234r29,0r-136,234r-29,0","w":48},"\u2215":{"d":"76,-234r29,0r-136,234r-29,0","w":48},"\u00a4":{"d":"15,-36r35,-36v-23,-30,-23,-69,0,-100r-36,-36r19,-18r36,35v32,-23,69,-25,102,-1r35,-34r19,18r-35,35v24,35,23,67,0,101r36,36r-19,19r-35,-36v-34,24,-68,25,-103,0r-35,36xm120,-178v-31,0,-56,25,-56,56v0,32,25,56,56,56v31,0,56,-25,56,-56v0,-31,-25,-56,-56,-56","w":240},"\u2039":{"d":"81,0r-33,0r-37,-85r37,-85r33,0r-33,85","w":87},"\u203a":{"d":"7,-170r33,0r37,85r-37,85r-33,0r33,-85","w":87},"\u2021":{"d":"69,-234r42,0r0,60r51,0r0,34r-51,0r0,46r51,0r0,34r-51,0r0,115r-42,0r0,-115r-51,0r0,-34r51,0r0,-46r-51,0r0,-34r51,0r0,-60"},"\u00b7":{"d":"15,-114r53,0r0,52r-53,0r0,-52","w":83},"\u2219":{"d":"15,-114r53,0r0,52r-53,0r0,-52","w":83},"\u201a":{"d":"15,-42r44,0r0,42r-26,40r-26,0r32,-40r-24,0r0,-42","w":69},"\u201e":{"d":"15,-42r44,0r0,42r-26,40r-26,0r32,-40r-24,0r0,-42xm80,-42r44,0r0,42r-25,40r-27,0r32,-40r-24,0r0,-42","w":135},"\u2030":{"d":"36,0r139,-240r29,0r-138,240r-30,0xm183,-114v30,0,50,24,50,58v0,33,-21,58,-49,58v-30,0,-52,-25,-52,-59v0,-32,23,-57,51,-57xm183,-90v-13,0,-23,14,-23,33v0,21,9,34,23,34v13,0,22,-13,22,-33v0,-20,-8,-34,-22,-34xm59,-242v30,0,50,24,50,58v0,33,-21,58,-49,58v-30,0,-52,-25,-52,-59v0,-32,23,-57,51,-57xm59,-217v-13,0,-23,13,-23,32v0,21,9,35,23,35v13,0,22,-13,22,-34v0,-20,-8,-33,-22,-33xm303,-114v30,0,51,24,51,58v0,33,-21,58,-49,58v-30,0,-53,-25,-53,-59v0,-32,23,-57,51,-57xm303,-90v-14,0,-23,14,-23,33v0,21,10,34,24,34v13,0,22,-13,22,-33v0,-20,-9,-34,-23,-34","w":361},"\u0131":{"d":"80,-170r0,142r26,0r0,28r-97,0r0,-28r26,0r0,-114r-26,0r0,-28r71,0","w":113},"\u02c6":{"d":"23,-196r46,-47r42,0r46,47r-41,0r-26,-26r-25,26r-42,0"},"\u02dc":{"d":"156,-234v-12,54,-56,33,-93,22v-6,0,-10,5,-15,15r-24,-10v13,-54,59,-28,93,-21v7,0,12,-4,17,-15"},"\u00af":{"d":"30,-230r120,0r0,26r-120,0r0,-26"},"\u02c9":{"d":"30,-230r120,0r0,26r-120,0r0,-26"},"\u02d8":{"d":"30,-246r22,0v15,32,61,34,75,0r23,0v-4,32,-28,51,-61,51v-32,0,-55,-19,-59,-51"},"\u02d9":{"d":"66,-245r49,0r0,49r-49,0r0,-49"},"\u02da":{"d":"90,-254v18,0,33,14,33,32v0,18,-15,33,-33,33v-18,0,-32,-15,-32,-33v0,-18,14,-32,32,-32xm90,-237v-8,0,-15,7,-15,15v0,8,6,15,15,15v8,0,15,-7,15,-15v0,-8,-7,-15,-15,-15"},"\u00b8":{"d":"86,0r23,0r-5,15v39,7,31,66,-8,65v-9,0,-16,-2,-25,-6r0,-20v17,7,35,6,35,-13v0,-14,-14,-21,-28,-15"},"\u02dd":{"d":"31,-196r39,-47r47,0r-46,47r-40,0xm96,-196r39,-47r45,0r-44,47r-40,0"},"\u02db":{"d":"63,31v0,-25,27,-35,59,-31v-22,4,-32,12,-32,25v1,15,17,16,35,12r0,19v-24,13,-62,4,-62,-25"},"\u02c7":{"d":"157,-243r-46,47r-42,0r-46,-47r42,0r25,26r25,-26r42,0"},"\u0141":{"d":"85,-32r72,0r0,-39r32,0r0,71r-180,0r0,-30r30,0r0,-52r-30,22r0,-36r30,-22r0,-92r-30,0r0,-30r106,0r0,30r-30,0r0,68r55,-42r0,36r-55,41r0,75","w":191},"\u0142":{"d":"80,-241r0,89r26,-20r0,31r-26,20r0,93r26,0r0,28r-97,0r0,-28r26,0r0,-70r-26,20r0,-31r26,-21r0,-83r-26,0r0,-28r71,0","w":113},"\u00a6":{"d":"68,-240r44,0r0,124r-44,0r0,-124xm68,-55r44,0r0,115r-44,0r0,-115"},"\u00d0":{"d":"220,-120v0,82,-36,129,-137,120r-74,0r0,-30r30,0r0,-80r-30,0r0,-31r30,0r0,-69r-30,0r0,-30v47,2,134,-5,153,10v35,17,58,59,58,110xm174,-120v0,-64,-21,-93,-89,-88r0,67r47,0r0,31r-47,0r0,78v69,6,89,-26,89,-88","w":230},"\u00f0":{"d":"96,4v-49,0,-84,-35,-84,-89v0,-58,40,-97,98,-87v-6,-9,-30,-34,-45,-48r25,-23r21,20r21,-20r19,19r-21,21v35,41,50,75,50,117v0,54,-34,90,-84,90xm96,-144v-24,0,-35,19,-35,58v0,41,11,59,35,59v24,0,35,-19,35,-59v0,-40,-11,-58,-35,-58","w":191},"\u00de":{"d":"195,-136v0,56,-39,81,-110,76r0,30r34,0r0,30r-110,0r0,-30r30,0r0,-180r-30,0r0,-30r76,0r0,30v72,-5,110,18,110,74xm148,-136v0,-34,-18,-46,-63,-42r0,86v40,3,63,-10,63,-44","w":200},"\u00fe":{"d":"76,-241r0,97v35,-63,119,-18,119,59v0,76,-83,122,-119,59r0,69r27,0r0,28r-94,0r0,-28r26,0r0,-256r-26,0r0,-28r67,0xm115,-144v-23,0,-35,19,-35,58v0,40,11,60,35,60v23,0,35,-20,35,-59v0,-39,-11,-59,-35,-59","w":207},"\u2212":{"d":"15,-134r156,0r0,32r-156,0r0,-32","w":187},"\u00d7":{"d":"19,-66r52,-52r-52,-52r23,-22r52,52r51,-52r23,22r-52,52r52,52r-23,22r-52,-51r-51,51","w":187},"\u00b9":{"d":"55,-235r21,0r0,123r18,0r0,18r-66,0r0,-18r19,0r0,-81r-24,0r0,-15v18,0,27,-8,32,-27","w":116},"\u00b2":{"d":"55,-236v86,0,18,91,-15,119r44,0r0,-18r19,0r0,41r-93,0r0,-22v37,-37,49,-47,59,-81v0,-10,-8,-17,-18,-17v-13,0,-19,8,-20,24r-19,0v0,-29,16,-46,43,-46","w":116},"\u00b3":{"d":"75,-137v0,-18,-14,-24,-38,-22r0,-21v33,8,44,-36,16,-36v-10,0,-17,8,-18,21r-22,0v1,-26,18,-41,44,-41v41,0,54,48,22,65v43,15,24,83,-25,79v-27,-2,-46,-17,-45,-43r22,0v1,15,8,22,21,22v13,0,23,-10,23,-24","w":116},"\u00bd":{"d":"55,-235r21,0r0,123r18,0r0,18r-66,0r0,-18r19,0r0,-81r-24,0r0,-15v18,0,27,-8,32,-27xm192,-234r29,0r-135,234r-30,0xm220,-142v86,0,17,91,-15,119r43,0r0,-18r20,0r0,41r-93,0r0,-22v34,-34,50,-48,59,-81v0,-10,-8,-17,-18,-17v-13,0,-19,8,-20,24r-20,0v0,-29,17,-46,44,-46","w":281},"\u00bc":{"d":"55,-235r21,0r0,123r18,0r0,18r-66,0r0,-18r19,0r0,-81r-24,0r0,-15v18,0,27,-8,32,-27xm192,-234r29,0r-135,234r-30,0xm249,-57r22,0r0,21r-22,0r0,18r15,0r0,18r-57,0r0,-18r15,0r0,-18r-52,0r0,-21r54,-84r25,0r0,84xm222,-57r1,-55r-30,55r29,0","w":281},"\u00be":{"d":"75,-137v0,-18,-14,-24,-38,-22r0,-21v33,8,44,-36,16,-36v-10,0,-17,8,-18,21r-22,0v1,-26,18,-41,44,-41v41,0,54,48,22,65v43,15,24,83,-25,79v-27,-2,-46,-17,-45,-43r22,0v1,15,8,22,21,22v13,0,23,-10,23,-24xm192,-234r29,0r-136,234r-29,0xm249,-57r22,0r0,21r-22,0r0,18r15,0r0,18r-57,0r0,-18r15,0r0,-18r-52,0r0,-21r54,-84r25,0r0,84xm222,-57r1,-55r-31,55r30,0","w":281},"\u00c4":{"d":"102,-241r50,0r67,211r31,0r0,30r-105,0r0,-30r26,0r-13,-42r-78,0r-14,42r26,0r0,30r-90,0r0,-30r31,0xm149,-104r-28,-104v-8,36,-20,70,-32,104r60,0xm65,-314r49,0r0,49r-49,0r0,-49xm139,-314r49,0r0,49r-49,0r0,-49","w":251},"\u00a0":{"w":90}}});

Cufon.registerFont({"w":180,"face":{"font-family":"corporate-e-light","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 5 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"5","bbox":"-60 -311 304 90","underline-thickness":"17.64","underline-position":"-17.64","stemh":"16","stemv":"20","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":90},"\u00c5":{"d":"106,-243r17,0r71,225r30,0r0,18r-78,0r0,-18r27,0r-18,-59r-87,0r-19,59r27,0r0,18r-73,0r0,-18r27,0xm150,-94r-37,-121r-39,121r76,0xm115,-311v14,0,25,11,25,25v0,14,-11,26,-25,26v-14,0,-26,-12,-26,-26v0,-14,12,-25,26,-25xm115,-300v-8,0,-15,6,-15,14v0,8,7,15,15,15v8,0,15,-7,15,-15v0,-8,-7,-14,-15,-14","w":227},"\u00c9":{"d":"165,-188r-19,0r0,-35r-84,0r0,89r86,0r0,17r-86,0r0,99r86,0r0,-39r18,0r0,57r-155,0r0,-18r30,0r0,-204r-30,0r0,-18r154,0r0,52xm72,-266r50,-40r30,0r-59,40r-21,0","w":178},"\u00d1":{"d":"11,-240r56,0r55,98r54,105r-1,-185r-30,0r0,-18r78,0r0,18r-30,0r0,222r-16,0r-119,-220r2,202r30,0r0,18r-79,0r0,-18r30,0r0,-204r-30,0r0,-18xm144,-268v-25,1,-62,-43,-76,-2r-12,-4v5,-19,17,-29,35,-29v26,-1,60,45,71,0r13,4v-3,19,-14,31,-31,31","w":232},"\u00d6":{"d":"15,-122v0,-66,32,-122,94,-123v58,0,94,48,94,125v0,77,-37,125,-94,125v-59,0,-94,-48,-94,-127xm109,-227v-44,0,-71,40,-71,106v0,68,26,108,71,108v45,0,71,-40,71,-107v0,-67,-26,-107,-71,-107xm66,-297r27,0r0,27r-27,0r0,-27xm125,-297r27,0r0,27r-27,0r0,-27","w":218},"\u00dc":{"d":"118,5v-61,0,-79,-24,-79,-104r0,-123r-30,0r0,-18r80,0r0,18r-29,0r0,123v-1,65,11,80,59,86v48,-7,59,-21,59,-86r0,-123r-30,0r0,-18r78,0r0,18r-30,0v-3,57,9,168,-12,196v-15,20,-36,31,-66,31xm74,-297r27,0r0,27r-27,0r0,-27xm134,-297r27,0r0,27r-27,0r0,-27","w":235},"\u00e1":{"d":"77,-157v-30,0,-36,7,-41,39r-14,0r5,-38v44,-29,102,-30,102,49r0,91r25,0r0,16r-42,0r0,-26v-17,47,-107,35,-100,-20v6,-48,34,-53,98,-65v1,-32,-5,-46,-33,-46xm66,-14v39,0,48,-31,44,-82v-49,10,-78,10,-78,49v0,20,13,33,34,33xm61,-201r38,-40r23,0r-45,40r-16,0","w":163},"\u00e0":{"d":"77,-157v-30,0,-36,7,-41,39r-14,0r5,-38v44,-29,102,-30,102,49r0,91r25,0r0,16r-42,0r0,-26v-17,47,-107,35,-100,-20v6,-48,34,-53,98,-65v1,-32,-5,-46,-33,-46xm66,-14v39,0,48,-31,44,-82v-49,10,-78,10,-78,49v0,20,13,33,34,33xm97,-201r-16,0r-44,-40r22,0","w":163},"\u00e2":{"d":"77,-157v-30,0,-36,7,-41,39r-14,0r5,-38v44,-29,102,-30,102,49r0,91r25,0r0,16r-42,0r0,-26v-17,47,-107,35,-100,-20v6,-48,34,-53,98,-65v1,-32,-5,-46,-33,-46xm66,-14v39,0,48,-31,44,-82v-49,10,-78,10,-78,49v0,20,13,33,34,33xm28,-201r38,-40r22,0r38,40v-28,2,-33,-19,-49,-29v-16,10,-21,31,-49,29","w":163},"\u00e4":{"d":"77,-157v-30,0,-36,7,-41,39r-14,0r5,-38v44,-29,102,-30,102,49r0,91r25,0r0,16r-42,0r0,-26v-17,47,-107,35,-100,-20v6,-48,34,-53,98,-65v1,-32,-5,-46,-33,-46xm66,-14v39,0,48,-31,44,-82v-49,10,-78,10,-78,49v0,20,13,33,34,33xm37,-232r25,0r0,27r-25,0r0,-27xm92,-232r25,0r0,27r-25,0r0,-27","w":163},"\u00e3":{"d":"77,-157v-30,0,-36,7,-41,39r-14,0r5,-38v44,-29,102,-30,102,49r0,91r25,0r0,16r-42,0r0,-26v-17,47,-107,35,-100,-20v6,-48,34,-53,98,-65v1,-32,-5,-46,-33,-46xm66,-14v39,0,48,-31,44,-82v-49,10,-78,10,-78,49v0,20,13,33,34,33xm99,-203v-18,0,-50,-46,-59,-1r-12,-5v4,-20,15,-30,30,-30v21,0,48,45,59,1r12,5v-5,21,-15,30,-30,30","w":163},"\u00e5":{"d":"77,-157v-30,0,-36,7,-41,39r-14,0r5,-38v44,-29,102,-30,102,49r0,91r25,0r0,16r-42,0r0,-26v-17,47,-107,35,-100,-20v6,-48,34,-53,98,-65v1,-32,-5,-46,-33,-46xm66,-14v39,0,48,-31,44,-82v-49,10,-78,10,-78,49v0,20,13,33,34,33xm77,-247v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-25,-12,-25,-26v0,-14,11,-26,25,-26xm77,-236v-8,0,-14,7,-14,15v0,9,6,15,14,15v8,0,15,-7,15,-15v0,-8,-7,-15,-15,-15","w":163},"\u00e9":{"d":"144,-85r-111,0v-10,73,74,100,89,34r18,0v-4,33,-28,55,-61,55v-40,0,-65,-33,-65,-85v0,-54,29,-93,69,-93v38,0,63,37,61,89xm34,-101r89,0v-1,-37,-15,-56,-41,-56v-26,0,-44,22,-48,56xm64,-201r38,-40r23,0r-45,40r-16,0","w":157},"\u00e8":{"d":"144,-85r-111,0v-10,73,74,100,89,34r18,0v-4,33,-28,55,-61,55v-40,0,-65,-33,-65,-85v0,-54,29,-93,69,-93v38,0,63,37,61,89xm34,-101r89,0v-1,-37,-15,-56,-41,-56v-26,0,-44,22,-48,56xm102,-201r-16,0r-44,-40r22,0","w":157},"\u00ea":{"d":"144,-85r-111,0v-10,73,74,100,89,34r18,0v-4,33,-28,55,-61,55v-40,0,-65,-33,-65,-85v0,-54,29,-93,69,-93v38,0,63,37,61,89xm34,-101r89,0v-1,-37,-15,-56,-41,-56v-26,0,-44,22,-48,56xm33,-201r38,-40r22,0r38,40v-28,2,-33,-19,-49,-29v-16,10,-21,31,-49,29","w":157},"\u00eb":{"d":"144,-85r-111,0v-10,73,74,100,89,34r18,0v-4,33,-28,55,-61,55v-40,0,-65,-33,-65,-85v0,-54,29,-93,69,-93v38,0,63,37,61,89xm34,-101r89,0v-1,-37,-15,-56,-41,-56v-26,0,-44,22,-48,56xm41,-232r25,0r0,27r-25,0r0,-27xm96,-232r25,0r0,27r-25,0r0,-27","w":157},"\u00ed":{"d":"56,-170r0,154r26,0r0,16r-71,0r0,-16r26,0r0,-138r-26,0r0,-16r45,0xm27,-201r37,-40r23,0r-45,40r-15,0","w":91},"\u00ec":{"d":"56,-170r0,154r26,0r0,16r-71,0r0,-16r26,0r0,-138r-26,0r0,-16r45,0xm55,-201r-16,0r-44,-40r23,0","w":91},"\u00ee":{"d":"56,-170r0,154r25,0r0,16r-70,0r0,-16r25,0r0,-138r-25,0r0,-16r45,0xm0,-201r31,-40r21,0r31,40v-26,3,-28,-19,-42,-29v-14,10,-16,31,-41,29","w":91},"\u00ef":{"d":"56,-170r0,154r26,0r0,16r-71,0r0,-16r26,0r0,-138r-26,0r0,-16r45,0xm8,-232r25,0r0,27r-25,0r0,-27xm49,-232r24,0r0,27r-24,0r0,-27","w":91},"\u00f1":{"d":"100,-157v-55,0,-44,80,-44,141r26,0r0,16r-71,0r0,-16r26,0r0,-138r-26,0r0,-16r45,0r0,27v10,-20,25,-31,47,-31v41,10,47,13,47,79r0,79r26,0r0,16r-71,0r0,-16r26,0v-6,-50,20,-141,-31,-141xm113,-203v-19,0,-50,-46,-60,-1r-12,-5v4,-20,15,-30,30,-30v22,-1,49,45,59,1r13,5v-5,21,-15,30,-30,30","w":184},"\u00f3":{"d":"81,-175v41,0,67,35,67,90v0,55,-26,90,-67,90v-42,0,-67,-34,-67,-91v0,-54,26,-89,67,-89xm81,-158v-31,0,-48,26,-48,72v0,48,17,74,48,74v31,0,48,-26,48,-73v0,-47,-17,-73,-48,-73xm65,-201r37,-40r23,0r-45,40r-15,0","w":161},"\u00f2":{"d":"81,-175v41,0,67,35,67,90v0,55,-26,90,-67,90v-42,0,-67,-34,-67,-91v0,-54,26,-89,67,-89xm81,-158v-31,0,-48,26,-48,72v0,48,17,74,48,74v31,0,48,-26,48,-73v0,-47,-17,-73,-48,-73xm102,-201r-17,0r-44,-40r23,0","w":161},"\u00f4":{"d":"81,-175v41,0,67,35,67,90v0,55,-26,90,-67,90v-42,0,-67,-34,-67,-91v0,-54,26,-89,67,-89xm81,-158v-31,0,-48,26,-48,72v0,48,17,74,48,74v31,0,48,-26,48,-73v0,-47,-17,-73,-48,-73xm32,-201r38,-40r22,0r38,40v-28,2,-33,-19,-49,-29v-16,10,-21,31,-49,29","w":161},"\u00f6":{"d":"81,-175v41,0,67,35,67,90v0,55,-26,90,-67,90v-42,0,-67,-34,-67,-91v0,-54,26,-89,67,-89xm81,-158v-31,0,-48,26,-48,72v0,48,17,74,48,74v31,0,48,-26,48,-73v0,-47,-17,-73,-48,-73xm41,-232r25,0r0,27r-25,0r0,-27xm96,-232r25,0r0,27r-25,0r0,-27","w":161},"\u00f5":{"d":"81,-175v41,0,67,35,67,90v0,55,-26,90,-67,90v-42,0,-67,-34,-67,-91v0,-54,26,-89,67,-89xm81,-158v-31,0,-48,26,-48,72v0,48,17,74,48,74v31,0,48,-26,48,-73v0,-47,-17,-73,-48,-73xm104,-203v-19,0,-51,-46,-60,-1r-12,-5v4,-20,15,-30,30,-30v22,-1,48,45,59,1r12,5v-5,21,-14,30,-29,30","w":161},"\u00fa":{"d":"84,4v-41,0,-51,-20,-51,-79r0,-79r-25,0r0,-16r45,0v8,55,-24,154,33,157v58,2,44,-80,45,-141r-25,0r0,-16r45,0r0,154r25,0r0,16r-44,0r0,-28v-7,19,-26,32,-48,32xm74,-201r38,-40r23,0r-45,40r-16,0","w":185},"\u00f9":{"d":"84,4v-41,0,-51,-20,-51,-79r0,-79r-25,0r0,-16r45,0v8,55,-24,154,33,157v58,2,44,-80,45,-141r-25,0r0,-16r45,0r0,154r25,0r0,16r-44,0r0,-28v-7,19,-26,32,-48,32xm109,-201r-17,0r-44,-40r23,0","w":185},"\u00fb":{"d":"84,4v-41,0,-51,-20,-51,-79r0,-79r-25,0r0,-16r45,0v8,55,-24,154,33,157v58,2,44,-80,45,-141r-25,0r0,-16r45,0r0,154r25,0r0,16r-44,0r0,-28v-7,19,-26,32,-48,32xm41,-201r37,-40r23,0r38,40v-28,2,-33,-19,-49,-29v-16,10,-21,31,-49,29","w":185},"\u00fc":{"d":"84,4v-41,0,-51,-20,-51,-79r0,-79r-25,0r0,-16r45,0v8,55,-24,154,33,157v58,2,44,-80,45,-141r-25,0r0,-16r45,0r0,154r25,0r0,16r-44,0r0,-28v-7,19,-26,32,-48,32xm50,-232r25,0r0,27r-25,0r0,-27xm105,-232r25,0r0,27r-25,0r0,-27","w":185},"\u00c0":{"d":"106,-243r17,0r71,225r30,0r0,18r-78,0r0,-18r27,0r-18,-59r-87,0r-19,59r27,0r0,18r-73,0r0,-18r27,0xm150,-94r-37,-121r-39,121r76,0xm135,-266r-21,0r-59,-40r31,0","w":227},"\u00c3":{"d":"106,-243r17,0r71,225r30,0r0,18r-78,0r0,-18r27,0r-18,-59r-87,0r-19,59r27,0r0,18r-73,0r0,-18r27,0xm150,-94r-37,-121r-39,121r76,0xm144,-268v-24,1,-62,-44,-75,-2r-13,-4v5,-19,17,-29,35,-29v25,-1,60,45,71,0r14,4v-3,19,-15,31,-32,31","w":227},"\u00d5":{"d":"15,-122v0,-66,32,-122,94,-123v58,0,94,48,94,125v0,77,-37,125,-94,125v-59,0,-94,-48,-94,-127xm109,-227v-44,0,-71,40,-71,106v0,68,26,108,71,108v45,0,71,-40,71,-107v0,-67,-26,-107,-71,-107xm140,-268v-25,1,-62,-43,-76,-2r-13,-4v5,-19,17,-29,35,-29v26,-1,61,45,72,0r13,4v-3,19,-14,31,-31,31","w":218},"\u00ff":{"d":"1,-170r68,0r0,16r-21,0r40,127r42,-127r-22,0r0,-16r65,0r0,16r-26,0v-23,64,-42,158,-73,209v-9,14,-27,18,-48,17r0,-15v30,0,42,-20,52,-54r-50,-157r-27,0r0,-16xm48,-232r25,0r0,27r-25,0r0,-27xm103,-232r25,0r0,27r-25,0r0,-27","w":173},"\u0178":{"d":"1,-240r80,0r0,18r-27,0r48,98r50,-98r-29,0r0,-18r78,0r0,18r-29,0r-61,118r0,86r29,0r0,18r-80,0r0,-18r30,0r0,-85r-59,-119r-30,0r0,-18xm59,-297r27,0r0,27r-27,0r0,-27xm118,-297r27,0r0,27r-27,0r0,-27","w":202},"\u00c2":{"d":"106,-243r17,0r71,225r30,0r0,18r-78,0r0,-18r27,0r-18,-59r-87,0r-19,59r27,0r0,18r-73,0r0,-18r27,0xm150,-94r-37,-121r-39,121r76,0xm55,-266r47,-40r27,0r46,40v-32,3,-40,-19,-60,-28v-20,10,-28,31,-60,28","w":227},"\u00ca":{"d":"165,-188r-19,0r0,-35r-84,0r0,89r86,0r0,17r-86,0r0,99r86,0r0,-39r18,0r0,57r-155,0r0,-18r30,0r0,-204r-30,0r0,-18r154,0r0,52xm34,-266r47,-40r27,0r46,40v-32,3,-40,-19,-60,-28v-20,10,-28,31,-60,28","w":178},"\u00c1":{"d":"106,-243r17,0r71,225r30,0r0,18r-78,0r0,-18r27,0r-18,-59r-87,0r-19,59r27,0r0,18r-73,0r0,-18r27,0xm150,-94r-37,-121r-39,121r76,0xm94,-266r50,-40r30,0r-58,40r-22,0","w":227},"\u00cb":{"d":"165,-188r-19,0r0,-35r-84,0r0,89r86,0r0,17r-86,0r0,99r86,0r0,-39r18,0r0,57r-155,0r0,-18r30,0r0,-204r-30,0r0,-18r154,0r0,52xm50,-297r27,0r0,27r-27,0r0,-27xm110,-297r27,0r0,27r-27,0r0,-27","w":178},"\u00c8":{"d":"165,-188r-19,0r0,-35r-84,0r0,89r86,0r0,17r-86,0r0,99r86,0r0,-39r18,0r0,57r-155,0r0,-18r30,0r0,-204r-30,0r0,-18r154,0r0,52xm125,-266r-22,0r-58,-40r30,0","w":178},"\u00cd":{"d":"11,-240r81,0r0,18r-30,0r0,204r30,0r0,18r-81,0r0,-18r30,0r0,-204r-30,0r0,-18xm32,-266r45,-40r29,0r-53,40r-21,0","w":102},"\u00ce":{"d":"11,-240r81,0r0,18r-30,0r0,204r30,0r0,18r-81,0r0,-18r30,0r0,-204r-30,0r0,-18xm0,-266r39,-40r25,0r39,40v-30,3,-35,-18,-52,-28v-17,10,-22,31,-51,28","w":102},"\u00cf":{"d":"11,-240r81,0r0,18r-30,0r0,204r30,0r0,18r-81,0r0,-18r30,0r0,-204r-30,0r0,-18xm14,-297r27,0r0,27r-27,0r0,-27xm62,-297r27,0r0,27r-27,0r0,-27","w":102},"\u00cc":{"d":"11,-240r81,0r0,18r-30,0r0,204r30,0r0,18r-81,0r0,-18r30,0r0,-204r-30,0r0,-18xm73,-266r-22,0r-52,-40r29,0","w":102},"\u00d3":{"d":"15,-122v0,-66,32,-122,94,-123v58,0,94,48,94,125v0,77,-37,125,-94,125v-59,0,-94,-48,-94,-127xm109,-227v-44,0,-71,40,-71,106v0,68,26,108,71,108v45,0,71,-40,71,-107v0,-67,-26,-107,-71,-107xm86,-266r50,-40r30,0r-59,40r-21,0","w":218},"\u00d4":{"d":"15,-122v0,-66,32,-122,94,-123v58,0,94,48,94,125v0,77,-37,125,-94,125v-59,0,-94,-48,-94,-127xm109,-227v-44,0,-71,40,-71,106v0,68,26,108,71,108v45,0,71,-40,71,-107v0,-67,-26,-107,-71,-107xm49,-266r46,-40r27,0r46,40v-32,3,-40,-18,-59,-28v-20,10,-28,31,-60,28","w":218},"\u00d2":{"d":"15,-122v0,-66,32,-122,94,-123v58,0,94,48,94,125v0,77,-37,125,-94,125v-59,0,-94,-48,-94,-127xm109,-227v-44,0,-71,40,-71,106v0,68,26,108,71,108v45,0,71,-40,71,-107v0,-67,-26,-107,-71,-107xm134,-266r-21,0r-59,-40r31,0","w":218},"\u00da":{"d":"118,5v-61,0,-79,-24,-79,-104r0,-123r-30,0r0,-18r80,0r0,18r-29,0r0,123v-1,65,11,80,59,86v48,-7,59,-21,59,-86r0,-123r-30,0r0,-18r78,0r0,18r-30,0v-3,57,9,168,-12,196v-15,20,-36,31,-66,31xm94,-266r49,-40r31,0r-59,40r-21,0","w":235},"\u00db":{"d":"118,5v-61,0,-79,-24,-79,-104r0,-123r-30,0r0,-18r80,0r0,18r-29,0r0,123v-1,65,11,80,59,86v48,-7,59,-21,59,-86r0,-123r-30,0r0,-18r78,0r0,18r-30,0v-3,57,9,168,-12,196v-15,20,-36,31,-66,31xm58,-266r46,-40r27,0r46,40v-32,3,-40,-18,-59,-28v-20,10,-28,31,-60,28","w":235},"\u00d9":{"d":"118,5v-61,0,-79,-24,-79,-104r0,-123r-30,0r0,-18r80,0r0,18r-29,0r0,123v-1,65,11,80,59,86v48,-7,59,-21,59,-86r0,-123r-30,0r0,-18r78,0r0,18r-30,0v-3,57,9,168,-12,196v-15,20,-36,31,-66,31xm143,-266r-22,0r-58,-40r30,0","w":235},"\u0160":{"d":"136,-240r18,0r0,63r-16,0v-1,-31,-22,-49,-52,-49v-29,0,-47,16,-47,42v-15,34,98,60,106,76v42,38,9,113,-54,113v-27,0,-45,-9,-61,-28r0,23r-17,0r0,-69r17,0v0,36,21,56,58,56v33,0,53,-18,53,-48v12,-42,-99,-64,-106,-81v-42,-35,-10,-103,49,-103v22,0,40,8,52,25r0,-20xm147,-306r-46,40r-27,0r-47,-40v33,-3,40,19,60,29v20,-10,28,-32,60,-29","w":174},"\u0161":{"d":"107,-42v0,-43,-93,-34,-93,-87v0,-44,66,-61,91,-26r3,-16r12,0r0,56r-13,0v8,-46,-71,-59,-74,-16v-2,38,101,43,93,87v2,48,-75,67,-99,23r-3,22r-12,0r0,-56r13,0v0,45,82,59,82,13xm118,-241r-38,40r-22,0r-38,-40v28,-2,33,19,49,29v16,-10,21,-31,49,-29","w":138},"\u017d":{"d":"34,-18r107,0r0,-40r18,0r0,58r-151,0r0,-12r123,-210r-96,0r0,33r-18,0r0,-51r140,0r0,12xm147,-306r-46,40r-27,0r-47,-40v33,-3,40,19,60,29v20,-10,28,-32,60,-29","w":168},"\u017e":{"d":"28,-16r83,0r0,-28r16,0r0,44r-124,0r0,-10r96,-144r-76,0r0,24r-16,0r0,-40r117,0r0,10xm114,-241r-37,40r-23,0r-37,-40v28,-2,32,20,49,29v16,-9,20,-31,48,-29","w":131},"\u00dd":{"d":"1,-240r80,0r0,18r-27,0r48,98r50,-98r-29,0r0,-18r78,0r0,18r-29,0r-61,118r0,86r29,0r0,18r-80,0r0,-18r30,0r0,-85r-59,-119r-30,0r0,-18xm80,-266r49,-40r30,0r-58,40r-21,0","w":202},"\u00fd":{"d":"1,-170r68,0r0,16r-21,0r40,127r42,-127r-22,0r0,-16r65,0r0,16r-26,0v-23,64,-42,158,-73,209v-9,14,-27,18,-48,17r0,-15v30,0,42,-20,52,-54r-50,-157r-27,0r0,-16xm72,-201r37,-40r23,0r-45,40r-15,0","w":173},"!":{"d":"24,-234r22,0r-4,176r-15,0xm22,-27r27,0r0,27r-27,0r0,-27","w":69},"\"":{"d":"30,-144r-16,0r-2,-96r21,0xm76,-144r-16,0r-2,-96r20,0","w":90},"#":{"d":"175,-94r-2,17r-41,0r-12,77r-20,0r13,-77r-56,0r-12,77r-19,0r12,-77r-41,0r2,-17r41,0r9,-56r-41,0r3,-17r41,0r11,-73r20,0r-12,73r56,0r11,-73r19,0r-11,73r41,0r-3,18r-41,0r-9,55r41,0xm124,-149r-56,0r-8,55r55,0"},"$":{"d":"84,-117v-40,-16,-61,-26,-61,-66v0,-35,23,-58,60,-60r0,-23r12,0r0,23v15,1,30,10,38,22r0,-19r17,0r0,64r-15,0v0,-29,-15,-47,-40,-50r0,91v47,21,64,25,64,71v0,40,-24,65,-64,67r0,25r-11,0r0,-25v-21,-2,-37,-11,-48,-26r0,23r-17,0r0,-73r17,0v0,36,17,55,48,59r0,-103xm95,-112r0,98v44,0,56,-65,23,-86v-5,-3,-10,-6,-23,-12xm83,-140r0,-86v-42,1,-55,53,-24,74v5,3,11,6,24,12","w":177},"%":{"d":"21,0r141,-240r17,0r-142,240r-16,0xm144,-113v24,0,44,26,44,58v0,32,-20,57,-44,57v-25,0,-44,-25,-44,-57v0,-31,20,-58,44,-58xm144,-97v-14,0,-26,19,-26,42v0,24,11,41,26,41v15,0,26,-18,26,-41v0,-24,-11,-42,-26,-42xm54,-242v24,0,43,26,43,58v0,32,-20,57,-44,57v-24,0,-43,-25,-43,-57v0,-31,20,-58,44,-58xm53,-226v-14,0,-25,19,-25,42v0,24,11,41,26,41v14,0,25,-18,25,-41v0,-24,-11,-42,-26,-42","w":196},"&":{"d":"119,-196v0,31,-20,43,-44,62r59,86v10,-16,16,-35,13,-59r-17,0r0,-16r53,0r0,16r-18,0v1,31,-5,52,-21,73r13,18r26,0r0,16r-38,0r-15,-20v-40,39,-132,25,-132,-39v0,-29,15,-51,52,-78v-21,-30,-26,-41,-26,-56v0,-26,21,-45,49,-45v28,0,46,17,46,42xm67,-148v23,-17,32,-30,32,-47v0,-16,-9,-26,-26,-26v-17,0,-28,10,-28,26v0,12,2,16,22,47xm121,-33r-62,-91v-31,25,-41,42,-41,66v0,50,74,56,103,25","w":190},"'":{"d":"30,-144r-15,0r-3,-96r21,0","w":45},"(":{"d":"68,72v-62,-60,-56,-256,-1,-314r15,0v-51,64,-52,249,0,314r-14,0","w":90},")":{"d":"23,72r-15,0v50,-61,53,-251,0,-314r14,0v57,53,59,259,1,314","w":90},"*":{"d":"83,-193r0,-41r15,0r0,41r38,-13r5,14r-39,13r24,32r-12,9r-24,-33r-24,33r-12,-9r24,-32r-38,-13r4,-14"},"+":{"d":"11,-129r68,0r0,-72r19,0r0,72r69,0r0,18r-69,0r0,71r-19,0r0,-71r-68,0r0,-18","w":177},",":{"d":"18,-30r32,0v4,37,-14,52,-25,74r-15,0r27,-44r-19,0r0,-30","w":65},"-":{"d":"0,-101r66,0r0,16r-66,0r0,-16","w":65},"\u00ad":{"d":"0,-101r66,0r0,16r-66,0r0,-16","w":65},".":{"d":"20,-30r30,0r0,30r-30,0r0,-30","w":69},"\/":{"d":"-16,70r104,-310r16,0r-104,310r-16,0","w":111},"0":{"d":"89,-237v49,0,77,44,77,120v0,76,-28,120,-77,120v-49,0,-77,-44,-77,-121v0,-75,29,-119,77,-119xm89,-220v-36,0,-56,36,-56,102v0,69,19,104,56,104v37,0,56,-36,56,-103v0,-68,-19,-103,-56,-103","w":177},"1":{"d":"85,-237r17,0r0,220r34,0r0,17r-88,0r0,-17r34,0r0,-169r-40,0r0,-12v31,-2,42,-13,43,-39","w":177},"2":{"d":"22,-14v37,-42,107,-116,107,-169v0,-22,-17,-37,-41,-37v-27,0,-45,19,-47,50r-17,0v-9,-80,125,-90,125,-14v0,35,-34,89,-103,166r92,0r0,-30r18,0r0,48r-134,0r0,-14","w":177},"3":{"d":"158,-69v0,41,-29,73,-72,72v-42,-1,-69,-26,-67,-68r18,0v1,32,19,51,49,51v30,0,51,-22,51,-54v0,-33,-24,-52,-61,-49r0,-18v33,2,53,-14,53,-44v0,-25,-16,-41,-40,-41v-27,0,-43,16,-45,45r-18,0v1,-38,26,-62,63,-62v66,0,82,93,24,110v30,8,45,28,45,58","w":177},"4":{"d":"124,-83r34,0r0,16r-34,0r0,50r23,0r0,17r-66,0r0,-17r24,0r0,-50r-94,0r0,-15r96,-155r17,0r0,154xm105,-83r1,-129r-75,129r74,0","w":177},"5":{"d":"46,-234r99,0r-3,18r-81,0r-12,66v48,-36,108,1,108,66v0,52,-29,87,-72,87v-36,0,-60,-22,-60,-56r18,0v3,24,18,39,41,39v30,0,52,-29,52,-69v0,-66,-66,-86,-95,-36r-13,-2","w":177},"6":{"d":"86,3v-43,1,-64,-41,-64,-82v0,-44,26,-91,91,-166r22,0v-23,23,-50,58,-66,86v49,-13,82,21,83,76v0,51,-27,86,-66,86xm87,-146v-28,0,-45,24,-45,65v0,43,17,67,45,67v29,0,45,-25,45,-67v0,-41,-17,-65,-45,-65","w":177},"7":{"d":"26,-234r138,0r0,12r-107,222r-22,0r106,-216r-98,0r0,30r-17,0r0,-48","w":177},"8":{"d":"57,-123v-50,-22,-31,-123,32,-114v62,-9,81,92,32,114v58,22,36,134,-32,126v-68,7,-90,-104,-32,-126xm89,-220v-25,0,-39,16,-39,44v0,30,13,46,39,46v25,0,39,-16,39,-45v0,-28,-14,-45,-39,-45xm89,-114v-28,0,-45,19,-45,49v0,32,17,51,45,51v28,0,45,-19,45,-50v0,-31,-17,-50,-45,-50","w":177},"9":{"d":"91,-237v42,-1,65,40,65,81v0,44,-28,95,-91,167r-22,0v23,-23,49,-58,65,-86v-49,13,-81,-23,-82,-77v0,-51,26,-85,65,-85xm91,-220v-29,0,-45,25,-45,67v0,41,17,65,45,65v28,0,45,-24,45,-65v0,-43,-17,-67,-45,-67","w":177},":":{"d":"20,-140r30,0r0,30r-30,0r0,-30xm20,-30r30,0r0,30r-30,0r0,-30","w":69},";":{"d":"18,-30r32,0v4,37,-14,52,-25,74r-15,0r27,-44r-19,0r0,-30xm19,-140r32,0r0,30r-32,0r0,-30","w":65},"\u037e":{"d":"18,-30r32,0v4,37,-14,52,-25,74r-15,0r27,-44r-19,0r0,-30xm19,-140r32,0r0,30r-32,0r0,-30","w":65},"<":{"d":"168,-200r0,19r-136,60r136,61r0,18r-156,-70r0,-17"},"=":{"d":"11,-155r156,0r0,17r-156,0r0,-17xm11,-102r156,0r0,17r-156,0r0,-17","w":177},">":{"d":"12,-42r0,-18r136,-61r-136,-60r0,-19r156,71r0,17"},"?":{"d":"122,-188v2,55,-73,58,-61,127r-17,0v-12,-71,47,-77,58,-128v0,-19,-14,-32,-35,-32v-24,0,-39,14,-43,41r-17,0v1,-34,26,-58,62,-58v32,0,53,20,53,50xm44,-27r26,0r0,27r-26,0r0,-27","w":136},"@":{"d":"130,3v-75,0,-129,-54,-129,-123v0,-69,55,-123,125,-123v65,0,113,45,113,106v0,45,-28,86,-59,86v-14,0,-24,-10,-26,-24v-27,45,-95,26,-95,-34v0,-62,80,-105,104,-45r5,-24r16,0r-18,96v0,10,6,16,15,16v22,0,43,-33,43,-70v0,-54,-41,-92,-98,-92v-61,0,-108,47,-108,108v0,94,108,137,190,89r5,14v-28,14,-54,20,-83,20xm123,-166v-26,0,-46,26,-46,57v0,26,15,43,36,43v25,0,43,-27,43,-62v0,-23,-12,-38,-33,-38","w":240},"A":{"d":"106,-243r17,0r71,225r30,0r0,18r-78,0r0,-18r27,0r-18,-59r-87,0r-19,59r27,0r0,18r-73,0r0,-18r27,0xm150,-94r-37,-121r-39,121r76,0","w":227},"B":{"d":"179,-68v0,50,-28,72,-98,68r-70,0r0,-18r30,0r0,-204r-30,0r0,-18v76,0,160,-13,157,59v0,26,-11,42,-38,53v32,8,49,29,49,60xm145,-179v0,-43,-31,-45,-83,-43r0,87v52,2,83,-3,83,-44xm157,-67v0,-49,-31,-52,-95,-50r0,99v59,3,95,-2,95,-49","w":192},"C":{"d":"107,-14v36,-1,61,-23,60,-65r18,0v1,51,-30,84,-79,84v-57,0,-91,-46,-91,-125v0,-105,87,-160,152,-100r0,-21r18,0r0,64r-19,0v-2,-34,-23,-49,-55,-49v-46,0,-73,39,-73,107v0,66,26,105,69,105","w":200},"D":{"d":"207,-120v0,76,-33,124,-122,120r-74,0r0,-18r30,0r0,-204r-30,0r0,-18r74,0v92,-4,122,44,122,120xm185,-121v0,-77,-34,-110,-123,-101r0,204v89,9,123,-28,123,-103","w":222},"E":{"d":"165,-188r-19,0r0,-35r-84,0r0,89r86,0r0,17r-86,0r0,99r86,0r0,-39r18,0r0,57r-155,0r0,-18r30,0r0,-204r-30,0r0,-18r154,0r0,52","w":178},"F":{"d":"165,-188r-19,0r0,-35r-84,0r0,89r87,0r0,17r-87,0r0,99r34,0r0,18r-85,0r0,-18r30,0r0,-204r-30,0r0,-18r154,0r0,52","w":170},"G":{"d":"167,-241r17,0r0,64r-18,0v-3,-32,-23,-50,-56,-50v-46,0,-72,40,-72,110v0,96,77,132,128,80r0,-50r-31,0r0,-18r77,0r0,18r-26,0r0,57v-19,24,-41,35,-74,35v-60,0,-97,-47,-97,-126v0,-105,90,-159,152,-99r0,-21","w":215},"H":{"d":"62,-135r110,0r0,-87r-29,0r0,-18r80,0r0,18r-30,0r0,204r30,0r0,18r-80,0r0,-18r29,0r0,-100r-110,0r0,100r29,0r0,18r-80,0r0,-18r30,0r0,-204r-30,0r0,-18r80,0r0,18r-29,0r0,87","w":233},"I":{"d":"11,-240r81,0r0,18r-30,0r0,204r30,0r0,18r-81,0r0,-18r30,0r0,-204r-30,0r0,-18","w":102},"J":{"d":"3,6v45,-5,45,-10,45,-67r0,-161r-30,0r0,-18r81,0r0,18r-30,0r0,161v0,72,-8,79,-66,84r0,-17","w":108},"K":{"d":"11,-240r80,0r0,18r-29,0r0,100r97,-100r-27,0r0,-18r79,0r0,18r-28,0r-84,84r87,120r30,0r0,18r-84,0r0,-18r28,0r-74,-107r-24,24r0,83r29,0r0,18r-80,0r0,-18r30,0r0,-204r-30,0r0,-18","w":220},"L":{"d":"62,-18r89,0r0,-39r18,0r0,57r-158,0r0,-18r30,0r0,-204r-30,0r0,-18r80,0r0,18r-29,0r0,204","w":174},"M":{"d":"11,-240r63,0r62,204r71,-204r61,0r0,18r-30,0r0,204r30,0r0,18r-80,0r0,-18r29,0r1,-204r-35,105r-37,99r-25,0r-62,-204r0,204r30,0r0,18r-78,0r0,-18r30,0r0,-204r-30,0r0,-18","w":278},"N":{"d":"11,-240r56,0r55,98r54,105r-1,-185r-30,0r0,-18r78,0r0,18r-30,0r0,222r-16,0r-119,-220r2,202r30,0r0,18r-79,0r0,-18r30,0r0,-204r-30,0r0,-18","w":232},"O":{"d":"15,-122v0,-66,32,-122,94,-123v58,0,94,48,94,125v0,77,-37,125,-94,125v-59,0,-94,-48,-94,-127xm109,-227v-44,0,-71,40,-71,106v0,68,26,108,71,108v45,0,71,-40,71,-107v0,-67,-26,-107,-71,-107","w":218},"P":{"d":"176,-174v5,57,-45,71,-114,66r0,90r31,0r0,18r-82,0r0,-18r30,0r0,-204r-30,0r0,-18r69,0v75,-4,92,15,96,66xm154,-174v0,-49,-35,-51,-92,-48r0,96v55,2,93,1,92,-48","w":183},"Q":{"d":"229,0r-29,0r-23,-27v-61,69,-162,20,-162,-93v0,-77,36,-125,94,-125v84,0,116,125,78,200xm109,-227v-44,0,-71,40,-71,106v0,68,26,108,71,108v45,0,71,-40,71,-107v0,-67,-26,-107,-71,-107","w":218},"R":{"d":"11,-240v79,2,175,-16,175,60v0,34,-21,59,-55,64r50,98r26,0r0,18r-42,0r-56,-114r-47,0r0,96r29,0r0,18r-80,0r0,-18r30,0r0,-204r-30,0r0,-18xm163,-178v0,-49,-45,-45,-101,-44r0,90v55,1,101,4,101,-46","w":210},"S":{"d":"136,-240r18,0r0,63r-16,0v-1,-31,-22,-49,-52,-49v-29,0,-47,16,-47,42v-15,34,98,60,106,76v42,38,9,113,-54,113v-27,0,-45,-9,-61,-28r0,23r-17,0r0,-69r17,0v0,36,21,56,58,56v33,0,53,-18,53,-48v12,-42,-99,-64,-106,-81v-42,-35,-10,-103,49,-103v22,0,40,8,52,25r0,-20","w":174},"T":{"d":"5,-240r160,0r0,52r-17,0r0,-34r-53,0r0,204r30,0r0,18r-80,0r0,-18r30,0r0,-204r-52,0r0,34r-18,0r0,-52","w":170},"U":{"d":"118,5v-61,0,-79,-24,-79,-104r0,-123r-30,0r0,-18r80,0r0,18r-29,0r0,123v-1,65,11,80,59,86v48,-7,59,-21,59,-86r0,-123r-30,0r0,-18r78,0r0,18r-30,0v-3,57,9,168,-12,196v-15,20,-36,31,-66,31","w":235},"V":{"d":"2,-240r77,0r0,18r-28,0r60,192r65,-192r-27,0r0,-18r73,0r0,18r-27,0r-77,226r-17,0r-71,-226r-28,0r0,-18","w":223},"W":{"d":"2,-240r80,0r0,18r-29,0r36,193r54,-211r23,0r48,211r41,-193r-27,0r0,-18r74,0r0,18r-28,0r-50,224r-20,0r-51,-217r-54,217r-20,0r-47,-224r-30,0r0,-18","w":304},"X":{"d":"15,-240r46,0r46,97r42,-79r-29,0r0,-18r79,0r0,18r-28,0r-55,95r56,109r30,0r0,18r-46,0r-53,-111r-50,93r31,0r0,18r-82,0r0,-18r31,0r61,-109r-49,-95r-30,0r0,-18","w":207},"Y":{"d":"1,-240r80,0r0,18r-27,0r48,98r50,-98r-29,0r0,-18r78,0r0,18r-29,0r-61,118r0,86r29,0r0,18r-80,0r0,-18r30,0r0,-85r-59,-119r-30,0r0,-18","w":202},"Z":{"d":"34,-18r107,0r0,-40r18,0r0,58r-151,0r0,-12r123,-210r-96,0r0,33r-18,0r0,-51r140,0r0,12","w":168},"[":{"d":"33,-240r48,0r0,16r-29,0r0,278r29,0r0,16r-48,0r0,-310","w":90},"\\":{"d":"128,70r-16,0r-105,-310r16,0","w":111},"]":{"d":"57,70r-48,0r0,-16r29,0r0,-278r-29,0r0,-16r48,0r0,310","w":90},"^":{"d":"33,-135r-21,0r66,-105r24,0r66,105r-21,0r-57,-91"},"_":{"d":"0,26r180,0r0,18r-180,0r0,-18"},"`":{"d":"106,-201r-16,0r-44,-40r22,0"},"a":{"d":"77,-157v-30,0,-36,7,-41,39r-14,0r5,-38v44,-29,102,-30,102,49r0,91r25,0r0,16r-42,0r0,-26v-17,47,-107,35,-100,-20v6,-48,34,-53,98,-65v1,-32,-5,-46,-33,-46xm66,-14v39,0,48,-31,44,-82v-49,10,-78,10,-78,49v0,20,13,33,34,33","w":163},"b":{"d":"8,-241r45,0r0,97v35,-62,110,-19,110,59v0,77,-74,122,-110,59r0,26r-20,0r0,-225r-25,0r0,-16xm144,-85v0,-40,-15,-72,-46,-72v-28,0,-47,28,-47,71v0,41,15,73,47,73v32,0,46,-33,46,-72","w":177},"c":{"d":"117,-170r17,0r0,56r-17,0v-2,-28,-14,-43,-37,-43v-28,0,-47,29,-47,73v0,76,78,99,85,26r18,0v-1,37,-25,62,-58,62v-39,0,-64,-35,-64,-87v0,-71,61,-120,103,-71r0,-16","w":150},"d":{"d":"99,-241r45,0r0,225r25,0r0,16r-44,0r0,-26v-36,62,-111,20,-111,-59v0,-79,75,-120,111,-59r0,-81r-26,0r0,-16xm126,-85v0,-40,-15,-72,-46,-72v-28,0,-47,28,-47,71v-1,41,15,73,47,73v31,0,46,-33,46,-72","w":178},"e":{"d":"144,-85r-111,0v-10,73,74,100,89,34r18,0v-4,33,-28,55,-61,55v-40,0,-65,-33,-65,-85v0,-54,29,-93,69,-93v38,0,63,37,61,89xm34,-101r89,0v-1,-37,-15,-56,-41,-56v-26,0,-44,22,-48,56","w":157},"f":{"d":"107,-221v-28,-14,-57,-12,-51,35r0,16r41,0r0,16r-41,0r0,138r32,0r0,16r-77,0r0,-16r26,0r0,-138r-24,0r0,-16r24,0v-9,-61,19,-87,70,-70r0,19","w":107},"g":{"d":"24,-115v-1,-60,70,-59,134,-54r0,15r-39,0v34,33,12,84,-33,91v-33,12,-40,16,-40,24v0,7,7,10,23,11v52,4,81,11,81,51v0,33,-25,51,-69,51v-81,0,-103,-78,-31,-92v-16,-3,-25,-10,-25,-19v0,-13,15,-24,40,-29v-27,-6,-41,-23,-41,-49xm82,-156v-23,0,-38,15,-38,38v0,24,14,39,37,39v21,0,36,-16,36,-39v0,-23,-14,-38,-35,-38xm81,-11v-34,0,-57,14,-57,35v0,22,21,34,57,34v33,0,51,-12,51,-35v0,-22,-18,-34,-51,-34","w":164},"h":{"d":"101,-157v-56,0,-45,80,-45,141r26,0r0,16r-71,0r0,-16r26,0r0,-209r-26,0r0,-16r45,0r0,97v10,-20,26,-30,47,-30v42,11,51,8,51,79r0,79r26,0r0,16r-71,0r0,-16r26,0v-6,-52,21,-141,-34,-141","w":188},"i":{"d":"56,-170r0,154r26,0r0,16r-71,0r0,-16r26,0r0,-138r-26,0r0,-16r45,0xm31,-235r27,0r0,25r-27,0r0,-25","w":91},"j":{"d":"0,62v38,-11,42,-15,42,-78r0,-138r-25,0r0,-16r46,0r0,154v4,67,-14,80,-63,87r0,-9xm37,-235r28,0r0,25r-28,0r0,-25","w":96},"k":{"d":"56,-241r0,152r68,-65r-26,0r0,-16r71,0r0,16r-23,0r-49,47r57,91r28,0r0,16r-69,0r0,-16r18,0r-47,-80r-28,26r0,54r22,0r0,16r-67,0r0,-16r26,0r0,-209r-26,0r0,-16r45,0","w":186},"l":{"d":"57,-241r0,225r26,0r0,16r-72,0r0,-16r26,0r0,-209r-26,0r0,-16r46,0","w":92},"m":{"d":"122,-142v-25,-35,-66,-5,-66,49r0,77r26,0r0,16r-71,0r0,-16r26,0r0,-138r-26,0r0,-16r44,0r0,23v14,-37,79,-36,87,3v9,-20,24,-30,46,-30v40,10,47,13,47,75r0,83r26,0r0,16r-71,0r0,-16r26,0r0,-83v1,-52,-2,-49,-31,-58v-54,-1,-36,84,-39,141r25,0r0,16r-70,0r0,-16r25,0v-1,-32,5,-113,-4,-126","w":269},"n":{"d":"100,-157v-55,0,-44,80,-44,141r26,0r0,16r-71,0r0,-16r26,0r0,-138r-26,0r0,-16r45,0r0,27v10,-20,25,-31,47,-31v41,10,47,13,47,79r0,79r26,0r0,16r-71,0r0,-16r26,0v-6,-50,20,-141,-31,-141","w":184},"o":{"d":"81,-175v41,0,67,35,67,90v0,55,-26,90,-67,90v-42,0,-67,-34,-67,-91v0,-54,26,-89,67,-89xm81,-158v-31,0,-48,26,-48,72v0,48,17,74,48,74v31,0,48,-26,48,-73v0,-47,-17,-73,-48,-73","w":161},"p":{"d":"56,-170r0,26v35,-63,110,-18,110,59v0,78,-74,121,-110,59r0,81r26,0r0,16r-71,0r0,-16r26,0r0,-209r-26,0r0,-16r45,0xm101,-13v31,0,46,-34,46,-72v0,-44,-18,-72,-46,-72v-28,0,-46,28,-46,71v0,41,14,73,46,73"},"q":{"d":"125,-170r44,0r0,16r-25,0r0,209r25,0r0,16r-71,0r0,-16r27,0r0,-81v-36,61,-111,21,-111,-59v0,-78,75,-121,111,-59r0,-26xm126,-85v0,-40,-15,-72,-46,-72v-28,0,-47,28,-47,71v0,41,15,73,47,73v31,0,46,-33,46,-72"},"r":{"d":"88,-155v-46,3,-29,85,-32,139r29,0r0,16r-74,0r0,-16r26,0r0,-138r-26,0r0,-16r44,0r0,25v13,-32,56,-38,70,-7r0,30r-19,0v0,-24,0,-30,-18,-33","w":125},"s":{"d":"107,-42v0,-43,-93,-34,-93,-87v0,-44,66,-61,91,-26r3,-16r12,0r0,56r-13,0v8,-46,-71,-59,-74,-16v-2,38,101,43,93,87v2,48,-75,67,-99,23r-3,22r-12,0r0,-56r13,0v0,45,82,59,82,13","w":138},"t":{"d":"97,-4v-46,20,-64,-9,-64,-69r0,-81r-24,0r0,-16r24,0r0,-50r20,0r0,50r40,0r0,16r-40,0v6,53,-24,167,44,133r0,17","w":106},"u":{"d":"84,4v-41,0,-51,-20,-51,-79r0,-79r-25,0r0,-16r45,0v8,55,-24,154,33,157v58,2,44,-80,45,-141r-25,0r0,-16r45,0r0,154r25,0r0,16r-44,0r0,-28v-7,19,-26,32,-48,32","w":185},"v":{"d":"2,-170r69,0r0,16r-22,0r40,131r43,-131r-23,0r0,-16r65,0r0,16r-24,0r-53,155r-17,0r-52,-155r-26,0r0,-16","w":176},"w":{"d":"2,-170r65,0r0,16r-23,0r28,128r42,-144r22,0r40,146r30,-130r-22,0r0,-16r63,0r0,16r-25,0r-38,155r-18,0r-42,-154r-44,154r-18,0r-37,-155r-23,0r0,-16","w":249},"x":{"d":"17,-170r41,0r33,64r30,-48r-18,0r0,-16r67,0r0,16r-30,0r-40,61r45,77r34,0r0,16r-49,0r-42,-78r-38,62r21,0r0,16r-66,0r0,-16r26,0r49,-76r-36,-62r-27,0r0,-16","w":183},"y":{"d":"1,-170r68,0r0,16r-21,0r40,127r42,-127r-22,0r0,-16r65,0r0,16r-26,0v-23,64,-42,158,-73,209v-9,14,-27,18,-48,17r0,-15v30,0,42,-20,52,-54r-50,-157r-27,0r0,-16","w":173},"z":{"d":"28,-16r83,0r0,-28r16,0r0,44r-124,0r0,-10r96,-144r-76,0r0,24r-16,0r0,-40r117,0r0,10","w":131},"{":{"d":"82,-240v9,-2,5,9,6,15v-71,-5,-3,112,-53,141v30,12,19,66,19,105v0,27,8,35,34,36v-1,5,4,16,-4,15v-58,6,-49,-60,-49,-114v0,-21,-6,-31,-21,-35r0,-14v54,-14,-20,-156,68,-149","w":90},"|":{"d":"81,-240r18,0r0,300r-18,0r0,-300"},"}":{"d":"3,-225v1,-6,-4,-17,5,-15v60,-5,46,62,47,115v0,20,6,30,21,34r0,14v-54,14,21,163,-73,149r0,-15v69,5,2,-114,53,-141v-31,-12,-20,-67,-20,-107v0,-25,-7,-33,-33,-34","w":90},"~":{"d":"157,-214v-7,6,-56,-27,-77,-27v-13,0,-23,8,-34,28r-12,-7v14,-27,27,-38,47,-38v13,-4,65,29,78,26v14,0,23,-7,35,-27r12,7v-14,26,-29,38,-49,38","w":240},"\u00c7":{"d":"99,5v-62,-7,-80,-56,-84,-125v-5,-105,87,-160,152,-100r0,-21r18,0r0,64r-19,0v-2,-34,-23,-49,-55,-49v-46,0,-73,39,-73,107v0,66,26,105,69,105v36,-1,61,-23,60,-65r18,0v1,48,-24,78,-71,84r-7,15v19,2,28,10,28,25v1,26,-33,34,-58,24r0,-12v18,4,36,2,37,-13v0,-10,-7,-14,-28,-15","w":200},"\u00e7":{"d":"86,37v-2,-10,-11,-11,-26,-12r12,-22v-36,-4,-58,-37,-58,-86v0,-71,60,-120,102,-71r0,-16r18,0r0,56r-18,0v-2,-28,-14,-43,-36,-43v-28,0,-47,29,-47,73v0,76,77,99,85,26r18,0v-1,33,-22,58,-51,61r-7,14v17,1,26,9,26,22v1,21,-29,28,-51,20r0,-10v17,4,32,-1,33,-12","w":150},"\u2020":{"d":"81,-234r18,0r0,66r51,0r0,16r-51,0r0,209r-18,0r0,-209r-51,0r0,-16r51,0r0,-66"},"\u00b0":{"d":"90,-242v27,0,50,21,50,48v0,27,-23,48,-50,48v-28,0,-49,-22,-49,-49v0,-26,22,-47,49,-47xm90,-226v-18,0,-32,15,-32,32v0,18,14,32,32,32v18,0,32,-14,32,-32v0,-18,-14,-32,-32,-32"},"\u00a2":{"d":"87,-246r12,0r0,38v13,2,24,9,31,20r0,-16r17,0r0,55r-17,0v-1,-24,-13,-40,-31,-41r0,142v18,-3,30,-20,32,-44r19,0v0,32,-23,59,-51,61r0,39r-12,0r0,-39v-36,-3,-60,-36,-60,-86v0,-51,23,-85,60,-90r0,-39xm87,-48r0,-142v-51,5,-56,136,0,142","w":177},"\u00a3":{"d":"170,-53v-1,39,-5,53,-54,53r-95,0v3,-35,27,-75,27,-113r-28,0r0,-16r30,0v8,-63,9,-62,12,-74v11,-52,85,-54,88,1r-17,0v-3,-17,-10,-23,-24,-23v-16,0,-26,11,-31,34v-2,10,-2,9,-7,62r37,0r0,16r-40,0v-3,32,-16,73,-31,99v22,-14,134,22,116,-39r17,0","w":177},"\u00a7":{"d":"128,5v0,-50,-103,-51,-101,-105v0,-18,10,-31,33,-43v-49,-26,-24,-97,34,-94v37,2,60,20,59,61r-19,0v0,-30,-14,-45,-41,-45v-23,0,-40,15,-40,35v0,41,113,60,101,102v0,19,-9,32,-31,44v47,32,21,102,-37,100v-37,-1,-61,-22,-60,-55r18,0v1,28,18,39,43,39v24,0,41,-16,41,-39xm76,-133v-37,19,-43,41,-2,64v11,6,25,15,34,20v30,-15,41,-45,5,-63v-10,-6,-28,-16,-37,-21"},"\u2022":{"d":"121,-172v27,0,49,23,49,50v0,28,-22,50,-49,50v-27,0,-50,-23,-50,-50v0,-28,22,-50,50,-50","w":240},"\u00b6":{"d":"-8,-176v0,-42,30,-64,78,-64r94,0r0,15r-26,0r0,261r-17,0r0,-261r-40,0r0,261r-17,0r0,-149v-44,2,-72,-24,-72,-63","w":164},"\u00df":{"d":"91,-226v-37,0,-38,27,-38,75r0,151r-44,0r0,-16r26,0v10,-83,-34,-227,56,-227v64,0,77,94,16,106v78,4,72,142,-3,140v-10,0,-19,-3,-25,-7r0,-16v34,18,66,-5,65,-45v0,-40,-26,-63,-71,-63r0,-17v61,12,73,-81,18,-81","w":175},"\u00ae":{"d":"140,-244v68,0,124,55,124,124v0,68,-56,124,-124,124v-69,0,-125,-56,-125,-126v0,-67,57,-122,125,-122xm140,-233v-61,0,-112,51,-112,112v0,64,50,114,112,114v62,0,111,-51,111,-113v0,-63,-49,-113,-111,-113xm129,-194v51,-1,59,5,66,38v0,21,-12,34,-34,38r31,55r16,0r0,13r-26,0r-38,-67r-27,0r0,54r18,0r0,13r-53,0r0,-13r20,0r0,-118r-20,0r0,-13r47,0xm179,-156v0,-28,-29,-25,-62,-25r0,51v33,0,62,2,62,-26","w":279},"\u00a9":{"d":"140,-244v68,0,124,55,124,124v0,68,-56,124,-124,124v-69,0,-125,-56,-125,-126v0,-67,57,-122,125,-122xm140,-233v-61,0,-112,50,-112,111v0,64,49,115,112,115v61,0,111,-51,111,-113v0,-63,-49,-113,-111,-113xm174,-154v-1,-21,-13,-30,-34,-30v-28,0,-45,24,-45,63v0,64,75,87,79,22r14,0v0,33,-17,52,-48,52v-39,0,-62,-28,-62,-75v0,-62,54,-96,96,-61r0,-11r14,0r0,40r-14,0","w":279},"\u2122":{"d":"2,-240r102,0r0,31r-13,0r0,-19r-31,0r0,112r19,0r0,12r-52,0r0,-12r18,0r0,-112r-30,0r0,19r-13,0r0,-31xm119,-240r42,0r37,112r43,-112r40,0r0,12r-18,0r0,112r18,0r0,12r-52,0r0,-12r19,0r0,-106r-42,109r-18,0r-36,-109r0,106r18,0r0,12r-50,0r0,-12r18,0r0,-112r-19,0r0,-12","w":285},"\u00b4":{"d":"74,-201r37,-40r23,0r-45,40r-15,0"},"\u00a8":{"d":"50,-232r25,0r0,27r-25,0r0,-27xm105,-232r25,0r0,27r-25,0r0,-27"},"\u2260":{"d":"99,-156r20,-41r14,5r-17,36r52,0r0,17r-60,0r-18,37r78,0r0,16r-86,0r-20,44r-14,-4r18,-40r-54,0r0,-16r62,0r17,-37r-79,0r0,-17r87,0"},"\u00c6":{"d":"294,-189r-18,0r0,-33r-84,0r0,88r87,0r0,17r-87,0r0,99r88,0r0,-37r18,0r0,55r-157,0r0,-18r30,0r0,-60r-85,0r-35,60r28,0r0,18r-78,0r0,-18r30,0r131,-222r132,0r0,51xm171,-96r0,-126r-74,126r74,0","w":309},"\u00d8":{"d":"176,-213v13,-10,15,-31,43,-27r-34,40v12,22,18,46,18,79v0,115,-99,164,-162,93r-23,28r-19,0r34,-41v-12,-22,-18,-46,-18,-79v0,-113,98,-163,161,-93xm48,-59r115,-137v-46,-65,-125,-22,-125,76v0,24,3,43,10,61xm170,-182r-115,137v45,67,125,22,125,-76v0,-24,-3,-43,-10,-61","w":218},"\u221e":{"d":"120,-110v-19,29,-37,42,-60,42v-31,0,-53,-23,-53,-55v0,-31,22,-53,53,-53v22,0,42,13,60,41v19,-29,37,-41,61,-41v31,0,52,22,52,54v0,31,-21,54,-52,54v-24,0,-42,-13,-61,-42xm130,-122v17,27,31,37,49,37v21,0,36,-15,36,-37v0,-22,-15,-38,-36,-38v-18,0,-31,10,-49,38xm111,-122v-18,-27,-31,-38,-50,-38v-21,0,-35,16,-35,38v0,52,63,48,85,0","w":240},"\u00b1":{"d":"11,-129r68,0r0,-72r19,0r0,72r69,0r0,18r-69,0r0,71r-19,0r0,-71r-68,0r0,-18xm11,-33r156,0r0,18r-156,0r0,-18","w":177},"\u2264":{"d":"168,-212r0,19r-136,59r136,59r0,18r-156,-69r0,-16xm168,-46r0,17r-156,0r0,-17r156,0"},"\u2265":{"d":"12,-57r0,-18r136,-59r-136,-59r0,-19r156,70r0,16xm12,-29r0,-17r156,0r0,17r-156,0"},"\u00a5":{"d":"1,-240r76,0r0,18r-30,0r42,97r43,-97r-29,0r0,-18r74,0r0,18r-25,0r-30,64r41,0r0,18r-49,0r-16,36r53,0r0,18r-53,0r0,68r30,0r0,18r-80,0r0,-18r29,0r0,-68r-50,0r0,-18r50,0r-15,-36r-47,0r0,-18r39,0r-27,-64r-26,0r0,-18","w":177},"\u00b5":{"d":"88,-10v32,-1,53,-28,53,-66r0,-97r19,0r0,173r-19,0r0,-35v-16,48,-77,55,-102,12r0,82r-19,0r0,-232r19,0v4,67,-21,166,49,163"},"\u03bc":{"d":"88,-10v32,-1,53,-28,53,-66r0,-97r19,0r0,173r-19,0r0,-35v-16,48,-77,55,-102,12r0,82r-19,0r0,-232r19,0v4,67,-21,166,49,163"},"\u2202":{"d":"167,-85v2,53,-33,88,-77,89v-42,0,-77,-37,-77,-81v0,-72,95,-109,132,-50v-16,-54,-54,-89,-111,-98r2,-17v84,8,129,73,131,157xm93,-143v-34,0,-61,30,-61,67v0,36,27,66,59,66v33,0,57,-29,57,-68v0,-37,-23,-65,-55,-65"},"\u2211":{"d":"212,-270r0,79r-17,0r-1,-61r-162,0r91,154r-91,171r165,0r1,-61r18,0r0,78r-205,0r0,-20r90,-168r-90,-153r0,-19r201,0","w":240},"\u220f":{"d":"13,-270r221,0r0,17r-28,0r0,326r28,0r0,17r-77,0r0,-17r30,0r0,-326r-128,0r0,326r30,0r0,17r-76,0r0,-17r28,0r0,-326r-28,0r0,-17","w":246},"\u03c0":{"d":"35,0r0,-156r-26,0r0,-16r180,0r0,16r-26,0r0,156r-19,0r0,-156r-90,0r0,156r-19,0","w":197},"\u222b":{"d":"99,28v2,53,-6,55,-41,62v-7,0,-10,-1,-17,-4r4,-17v26,11,36,-1,36,-38r0,-239v-5,-55,16,-68,58,-58r-4,17v-30,-7,-36,-3,-36,45r0,232"},"\u00aa":{"d":"8,-118r96,0r0,12r-96,0r0,-12xm51,-231v-18,2,-20,4,-24,23r-12,0r4,-24v28,-17,67,-20,67,30r0,53r17,0r0,11r-30,0r0,-12v-15,25,-66,15,-63,-16v3,-30,22,-34,61,-40v1,-18,-4,-27,-20,-25xm45,-148v22,-1,29,-16,26,-46v-36,6,-47,12,-47,27v0,11,8,19,21,19","w":112},"\u00ba":{"d":"2,-118r97,0r0,12r-97,0r0,-12xm50,-245v26,0,43,20,43,53v0,33,-17,54,-43,54v-27,0,-42,-21,-42,-54v0,-32,16,-53,42,-53xm50,-233v-18,0,-28,15,-28,41v0,27,10,42,28,42v18,0,29,-16,29,-42v0,-26,-11,-41,-29,-41","w":100},"\u03a9":{"d":"137,-15v43,-23,74,-61,74,-114v0,-56,-40,-100,-90,-100v-52,0,-92,43,-92,101v0,48,24,85,74,113r0,15r-93,0r0,-17r70,0v-46,-27,-70,-64,-70,-113v0,-65,48,-116,110,-116v62,0,110,51,110,116v0,49,-24,86,-70,113r70,0r0,17r-93,0r0,-15","w":240},"\u2126":{"d":"137,-15v43,-23,74,-61,74,-114v0,-56,-40,-100,-90,-100v-52,0,-92,43,-92,101v0,48,24,85,74,113r0,15r-93,0r0,-17r70,0v-46,-27,-70,-64,-70,-113v0,-65,48,-116,110,-116v62,0,110,51,110,116v0,49,-24,86,-70,113r70,0r0,17r-93,0r0,-15","w":240},"\u00e6":{"d":"108,-104v11,-58,-37,-61,-71,-43r0,24r-16,0r0,-31v25,-27,91,-29,103,8v36,-58,121,-19,111,60r-109,0v-14,78,81,100,91,29r17,0v-1,70,-101,82,-119,18v-12,57,-103,56,-103,-4v0,-45,39,-58,96,-61xm127,-102r88,0v-1,-35,-17,-55,-43,-55v-24,0,-41,20,-45,55xm64,-13v32,1,47,-31,44,-74v-51,2,-77,16,-77,43v0,18,14,31,33,31","w":249},"\u00f8":{"d":"131,-150v9,-9,12,-24,33,-20r-27,30v27,52,4,145,-56,145v-21,0,-38,-9,-51,-27v-11,8,-13,25,-36,22r30,-33v-26,-54,-1,-142,57,-142v20,0,37,9,50,25xm37,-48r81,-89v-32,-44,-85,-16,-85,54v0,14,1,23,4,35xm124,-126r-82,90v30,48,87,21,87,-51v0,-16,-1,-27,-5,-39","w":161},"\u00bf":{"d":"13,18v0,-54,73,-60,62,-127r16,0v13,70,-46,78,-57,128v0,19,13,32,34,32v24,0,40,-14,44,-41r17,0v-1,34,-27,58,-62,58v-32,0,-54,-20,-54,-50xm93,-143r-27,0r0,-27r27,0r0,27","w":136},"\u00a1":{"d":"46,64r-22,0r4,-176r16,0xm49,-143r-27,0r0,-27r27,0r0,27","w":69},"\u00ac":{"d":"149,0r0,-79r-137,0r0,-17r156,0r0,96r-19,0"},"\u221a":{"d":"240,-298r0,17r-73,0r-84,281r-21,0r-34,-112r-28,0r0,-17r44,0v11,32,15,72,29,101r79,-270r88,0","w":240},"\u0192":{"d":"53,-136r0,-16r35,0v12,-46,8,-108,63,-105v9,0,18,1,26,4r-3,19v-30,-16,-57,-6,-57,35r-9,47r37,0r0,16r-40,0v-15,58,-19,140,-44,184v-13,15,-42,18,-64,9r4,-19v32,16,49,6,57,-35r27,-139r-32,0","w":177},"\u2248":{"d":"127,-127v-6,7,-57,-26,-77,-26v-13,0,-23,8,-34,28r-12,-8v13,-27,27,-38,47,-38v13,-4,66,30,78,27v14,0,23,-8,35,-28r12,7v-14,26,-28,38,-49,38xm127,-72v-6,7,-57,-26,-77,-26v-13,0,-23,8,-34,28r-12,-7v13,-26,27,-39,47,-39v13,-4,66,30,78,27v14,0,23,-7,35,-27r12,7v-14,26,-29,37,-49,37"},"\u0394":{"d":"12,0r98,-240r20,0r99,240r-217,0xm38,-17r164,0r-82,-200","w":240},"\u2206":{"d":"12,0r98,-240r20,0r99,240r-217,0xm38,-17r164,0r-82,-200","w":240},"\u00ab":{"d":"101,0r-12,0r-37,-85r37,-85r12,0r-32,85xm61,0r-12,0r-36,-85r36,-85r12,0r-32,85","w":110},"\u00bb":{"d":"9,-170r12,0r36,85r-36,85r-12,0r32,-85xm48,-170r12,0r37,85r-37,85r-12,0r32,-85","w":110},"\u2026":{"d":"20,-30r30,0r0,30r-30,0r0,-30xm90,-30r30,0r0,30r-30,0r0,-30xm159,-30r31,0r0,30r-31,0r0,-30","w":209},"\u0152":{"d":"302,-189r-18,0r0,-33r-85,0r0,88r87,0r0,17r-87,0r0,99r87,0r0,-37r18,0r0,55r-126,0r0,-35v-57,82,-163,31,-163,-83v0,-116,106,-167,163,-90r0,-32r124,0r0,51xm109,-227v-44,0,-72,41,-72,109v0,66,27,105,71,105v44,0,70,-41,70,-109v0,-66,-25,-105,-69,-105","w":316},"\u0153":{"d":"255,-81r-110,0v-7,78,81,92,90,23r18,0v-1,69,-96,85,-118,21v-34,73,-121,41,-121,-46v0,-88,93,-127,122,-48v28,-76,123,-43,119,38r0,12xm145,-97r90,0v-1,-36,-18,-60,-44,-60v-25,0,-41,20,-46,60xm81,-157v-28,0,-47,29,-47,72v0,43,18,72,45,72v28,0,46,-29,46,-71v0,-46,-17,-73,-44,-73","w":269},"\u2013":{"d":"33,-101r114,0r0,16r-114,0r0,-16"},"\u2014":{"d":"0,-103r192,0r0,18r-192,0r0,-18","w":191},"\u201c":{"d":"48,-168r-33,0v-4,-38,15,-52,26,-74r14,0r-27,44r20,0r0,30xm100,-168r-33,0v-4,-38,15,-52,26,-74r14,0r-27,44r20,0r0,30","w":118},"\u201d":{"d":"18,-240r32,0v4,37,-14,52,-25,74r-14,0r26,-44r-19,0r0,-30xm70,-240r33,0v4,38,-15,52,-26,74r-14,0r27,-44r-20,0r0,-30","w":118},"\u2018":{"d":"48,-168r-33,0v-4,-38,15,-52,26,-74r14,0r-27,44r20,0r0,30","w":65},"\u2019":{"d":"18,-240r32,0v4,37,-14,52,-25,74r-14,0r26,-44r-19,0r0,-30","w":65},"\u00f7":{"d":"11,-129r156,0r0,18r-156,0r0,-18xm75,-67r27,0r0,27r-27,0r0,-27xm75,-201r27,0r0,27r-27,0r0,-27","w":177},"\u25ca":{"d":"120,-249r93,129r-93,129r-93,-129xm120,-217r-71,97r71,97r71,-97","w":240},"\u2044":{"d":"78,-234r16,0r-138,234r-16,0","w":37},"\u2215":{"d":"78,-234r16,0r-138,234r-16,0","w":37},"\u00a4":{"d":"24,-21r33,-33v-25,-31,-26,-72,0,-103r-34,-33r11,-11r33,33v34,-27,72,-27,105,0r33,-33r11,11r-33,33v25,32,26,71,0,103r33,33r-10,11r-34,-33v-32,26,-71,25,-104,0r-33,33xm120,-171v-35,0,-65,29,-65,64v0,37,29,66,65,66v36,0,64,-29,64,-65v0,-36,-28,-65,-64,-65","w":240},"\u2039":{"d":"62,0r-13,0r-38,-85r38,-85r13,0r-32,85","w":70},"\u203a":{"d":"9,-170r12,0r38,85r-38,85r-12,0r32,-85","w":70},"\u2021":{"d":"81,-234r18,0r0,66r51,0r0,16r-51,0r0,71r51,0r0,17r-51,0r0,121r-18,0r0,-121r-51,0r0,-17r51,0r0,-71r-51,0r0,-16r51,0r0,-66"},"\u00b7":{"d":"20,-103r30,0r0,30r-30,0r0,-30","w":69},"\u2219":{"d":"20,-103r30,0r0,30r-30,0r0,-30","w":69},"\u201a":{"d":"18,-30r32,0v4,37,-14,52,-25,74r-14,0r26,-44r-19,0r0,-30","w":65},"\u201e":{"d":"18,-30r32,0v4,37,-14,52,-25,74r-14,0r26,-44r-19,0r0,-30xm70,-30r33,0v4,38,-15,52,-26,74r-14,0r27,-44r-20,0r0,-30","w":118},"\u2030":{"d":"21,0r141,-240r17,0r-142,240r-16,0xm144,-113v24,0,44,26,44,58v0,32,-20,57,-44,57v-25,0,-44,-25,-44,-57v0,-31,20,-58,44,-58xm144,-97v-14,0,-26,19,-26,42v0,24,11,41,26,41v15,0,26,-18,26,-41v0,-24,-11,-42,-26,-42xm54,-242v24,0,43,26,43,58v0,32,-20,57,-44,57v-24,0,-43,-25,-43,-57v0,-31,20,-58,44,-58xm53,-226v-14,0,-25,19,-25,42v0,24,11,41,26,41v14,0,25,-18,25,-41v0,-24,-11,-42,-26,-42xm246,-113v24,0,44,26,44,58v0,32,-20,57,-44,57v-25,0,-44,-25,-44,-57v0,-31,20,-58,44,-58xm246,-97v-14,0,-26,19,-26,42v0,24,11,41,26,41v15,0,26,-18,26,-41v0,-24,-11,-42,-26,-42","w":299},"\u0131":{"d":"56,-170r0,154r26,0r0,16r-71,0r0,-16r26,0r0,-138r-26,0r0,-16r45,0","w":91},"\u02c6":{"d":"41,-201r38,-40r22,0r38,40v-28,2,-33,-19,-49,-29v-16,10,-21,31,-49,29"},"\u02dc":{"d":"112,-203v-19,0,-51,-46,-60,-1r-12,-5v4,-20,15,-30,30,-30v21,0,48,45,59,1r12,5v-5,21,-14,30,-29,30"},"\u00af":{"d":"50,-223r80,0r0,14r-80,0r0,-14"},"\u02c9":{"d":"50,-223r80,0r0,14r-80,0r0,-14"},"\u02d8":{"d":"45,-241r11,0v7,33,61,33,68,0r11,0v-3,52,-87,53,-90,0"},"\u02d9":{"d":"78,-232r24,0r0,27r-24,0r0,-27"},"\u02da":{"d":"90,-247v14,0,26,12,26,26v0,14,-12,26,-26,26v-14,0,-26,-12,-26,-26v0,-14,12,-26,26,-26xm90,-236v-8,0,-15,7,-15,15v0,9,7,15,15,15v8,0,15,-7,15,-15v0,-8,-7,-15,-15,-15"},"\u00b8":{"d":"101,37v-2,-10,-11,-12,-26,-12v8,-9,6,-28,27,-25r-8,17v17,1,24,9,24,22v2,21,-29,27,-51,20r0,-10v18,3,32,-1,34,-12"},"\u02dd":{"d":"58,-201r31,-40r21,0r-39,40r-13,0xm98,-201r31,-40r21,0r-39,40r-13,0"},"\u02db":{"d":"63,30v0,-21,24,-34,54,-30v-23,2,-38,13,-38,28v0,14,20,20,35,13r0,12v-23,10,-51,2,-51,-23"},"\u02c7":{"d":"139,-241r-38,40r-22,0r-38,-40v28,-2,33,19,49,29v16,-10,21,-31,49,-29"},"\u0141":{"d":"62,-18r89,0r0,-39r18,0r0,57r-158,0r0,-18r30,0r0,-82r-30,23r0,-20r30,-23r0,-102r-30,0r0,-18r80,0r0,18r-29,0r0,91r59,-45r0,20r-59,45r0,93","w":174},"\u0142":{"d":"57,-241r0,97r27,-21r0,20r-27,20r0,109r26,0r0,16r-72,0r0,-16r26,0r0,-98r-26,19r0,-19r26,-19r0,-92r-26,0r0,-16r46,0","w":92},"\u00a6":{"d":"81,-240r18,0r0,118r-18,0r0,-118xm81,-55r18,0r0,115r-18,0r0,-115"},"\u00d0":{"d":"207,-120v0,76,-32,124,-122,120r-74,0r0,-18r30,0r0,-100r-30,0r0,-17r30,0r0,-87r-30,0r0,-18r74,0v92,-4,122,44,122,120xm185,-121v0,-77,-34,-110,-123,-101r0,87r62,0r0,17r-62,0r0,100v89,9,123,-29,123,-103","w":222},"\u00f0":{"d":"92,-211v32,40,54,75,54,127v0,53,-25,88,-64,88v-41,0,-68,-36,-68,-91v0,-61,33,-98,86,-84v-7,-10,-14,-20,-22,-29r-17,14r-9,-11r18,-14r-16,-20r14,-11r15,20r20,-16r8,11xm80,-157v-28,0,-47,28,-47,70v0,45,19,74,48,74v28,0,46,-29,46,-73v0,-44,-18,-71,-47,-71","w":159},"\u00de":{"d":"176,-127v0,56,-45,71,-114,65r0,44r31,0r0,18r-82,0r0,-18r30,0r0,-204r-30,0r0,-18r80,0r0,18r-29,0r0,28v79,-5,114,9,114,67xm154,-128v0,-49,-35,-51,-92,-48r0,96v55,2,93,1,92,-48","w":183},"\u00fe":{"d":"56,-241r0,97v35,-62,110,-19,110,59v0,77,-74,122,-110,59r0,81r26,0r0,16r-71,0r0,-16r26,0r0,-280r-26,0r0,-16r45,0xm147,-85v0,-40,-15,-72,-46,-72v-28,0,-46,28,-46,71v0,41,14,73,46,73v32,0,46,-33,46,-72"},"\u2212":{"d":"11,-129r156,0r0,18r-156,0r0,-18","w":177},"\u00d7":{"d":"20,-64r56,-56r-56,-56r13,-13r56,57r56,-57r13,13r-56,56r56,56r-13,13r-56,-56r-56,56","w":177},"\u00b9":{"d":"57,-236r12,0r0,130r22,0r0,12r-58,0r0,-12r22,0r0,-98r-26,0r0,-9v20,-1,28,-7,28,-23","w":119},"\u00b2":{"d":"17,-104v17,-16,66,-71,67,-99v0,-13,-10,-21,-25,-21v-17,0,-27,11,-28,30r-13,0v1,-26,17,-42,43,-42v23,0,38,14,38,33v0,20,-22,53,-63,96r54,0r0,-18r13,0r0,31r-86,0r0,-10","w":119},"\u00b3":{"d":"51,-162v0,-7,-3,-17,7,-14v16,0,27,-10,27,-25v0,-14,-10,-23,-25,-23v-17,0,-26,10,-27,27r-14,0v1,-24,16,-39,41,-39v41,0,54,51,19,66v44,13,28,81,-20,78v-27,-2,-46,-15,-44,-42r14,0v1,19,11,30,30,30v18,0,31,-13,31,-31v1,-19,-17,-32,-39,-27","w":119},"\u00bd":{"d":"57,-236r12,0r0,130r22,0r0,12r-58,0r0,-12r22,0r0,-98r-26,0r0,-9v20,-1,28,-7,28,-23xm198,-234r16,0r-137,234r-17,0xm175,-10v17,-16,66,-71,67,-99v0,-13,-10,-21,-25,-21v-17,0,-27,11,-28,30r-13,0v1,-26,17,-42,43,-42v23,0,38,14,38,33v0,20,-21,53,-63,96r54,0r0,-18r13,0r0,31r-86,0r0,-10","w":277},"\u00bc":{"d":"57,-236r12,0r0,130r22,0r0,12r-58,0r0,-12r22,0r0,-98r-26,0r0,-9v20,-1,28,-7,28,-23xm198,-234r16,0r-137,234r-17,0xm241,-51r22,0r0,12r-22,0r0,27r14,0r0,12r-43,0r0,-12r15,0r0,-27r-59,0r0,-10r61,-93r12,0r0,91xm227,-51r0,-69r-43,69r43,0","w":277},"\u00be":{"d":"51,-162v0,-7,-3,-17,7,-14v16,0,27,-10,27,-25v0,-14,-10,-23,-25,-23v-17,0,-26,10,-27,27r-14,0v1,-24,16,-39,41,-39v41,0,54,51,19,66v44,13,28,81,-20,78v-27,-2,-46,-15,-44,-42r14,0v1,19,11,30,30,30v18,0,31,-13,31,-31v1,-19,-17,-32,-39,-27xm198,-234r17,0r-138,234r-17,0xm242,-51r21,0r0,12r-21,0r0,27r13,0r0,12r-43,0r0,-12r15,0r0,-27r-59,0r0,-10r61,-93r13,0r0,91xm227,-51r1,-69r-44,69r43,0","w":277},"\u00c4":{"d":"106,-243r17,0r71,225r30,0r0,18r-78,0r0,-18r27,0r-18,-59r-87,0r-19,59r27,0r0,18r-73,0r0,-18r27,0xm150,-94r-37,-121r-39,121r76,0xm72,-297r27,0r0,27r-27,0r0,-27xm131,-297r27,0r0,27r-27,0r0,-27","w":227},"\u00a0":{"w":90}}});

Cufon.registerFont({"w":180,"face":{"font-family":"corporate-s-light","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 6 4 0 0 2 0 4","ascent":"288","descent":"-72","x-height":"4","bbox":"-56 -321 313 90","underline-thickness":"17.64","underline-position":"-17.64","stemh":"16","stemv":"19","unicode-range":"U+0020-U+FB02"},"glyphs":{" ":{"w":90},"\u00c5":{"d":"92,-242r16,0r83,242r-22,0r-23,-68r-92,0r-24,68r-21,0xm140,-86r-40,-127r-41,127r81,0xm100,-321v18,0,32,14,32,32v0,18,-14,32,-32,32v-18,0,-33,-14,-33,-32v0,-18,15,-32,33,-32xm100,-307v-10,0,-18,8,-18,18v0,10,8,18,18,18v10,0,18,-8,18,-18v0,-10,-8,-18,-18,-18","w":199},"\u00c9":{"d":"52,-133r98,0r0,18r-98,0r0,97r107,0r0,18r-127,0r0,-240r125,0r0,18r-105,0r0,89xm72,-263r47,-46r30,0r-56,46r-21,0","w":176},"\u00d1":{"d":"32,-240r22,0r121,210r0,-210r19,0r0,240r-23,0r-120,-210r0,210r-19,0r0,-240xm141,-266v-20,3,-61,-50,-69,0r-14,-6v5,-23,15,-34,32,-34v24,0,62,51,69,-1r14,6v-1,21,-14,33,-32,35","w":225},"\u00d6":{"d":"115,-244v55,0,94,51,94,124v0,73,-39,124,-94,124v-57,0,-94,-51,-94,-126v0,-71,39,-122,94,-122xm115,-226v-42,0,-72,45,-72,105v0,63,30,107,72,107v42,0,72,-44,72,-106v0,-62,-30,-106,-72,-106xm84,-304v10,0,18,8,18,18v0,10,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18xm147,-304v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18","w":229},"\u00dc":{"d":"109,4v-59,0,-81,-33,-81,-101r0,-143r21,0r0,142v-3,73,12,74,60,84v50,-8,62,-14,62,-84r0,-142r20,0r0,160v2,61,-29,84,-82,84xm78,-304v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18xm141,-304v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18","w":218},"\u00e1":{"d":"84,-175v42,0,56,15,56,66v0,36,-4,80,4,109r-18,0v-3,-9,-4,-13,-5,-24v-19,45,-103,34,-103,-21v0,-37,27,-54,103,-66v1,-32,-6,-47,-37,-47v-24,0,-37,9,-41,30r-20,0v3,-31,25,-47,61,-47xm73,-13v41,0,52,-34,48,-83v-62,12,-84,25,-84,51v0,19,15,32,36,32xm65,-201r35,-46r30,0r-48,46r-17,0","w":166},"\u00e0":{"d":"84,-175v42,0,56,15,56,66v0,36,-4,80,4,109r-18,0v-3,-9,-4,-13,-5,-24v-19,45,-103,34,-103,-21v0,-37,27,-54,103,-66v1,-32,-6,-47,-37,-47v-24,0,-37,9,-41,30r-20,0v3,-31,25,-47,61,-47xm73,-13v41,0,52,-34,48,-83v-62,12,-84,25,-84,51v0,19,15,32,36,32xm105,-201r-17,0r-48,-46r30,0","w":166},"\u00e2":{"d":"84,-175v42,0,56,15,56,66v0,36,-4,80,4,109r-18,0v-3,-9,-4,-13,-5,-24v-19,45,-103,34,-103,-21v0,-37,27,-54,103,-66v1,-32,-6,-47,-37,-47v-24,0,-37,9,-41,30r-20,0v3,-31,25,-47,61,-47xm73,-13v41,0,52,-34,48,-83v-62,12,-84,25,-84,51v0,19,15,32,36,32xm32,-201r40,-49r27,0r39,49r-19,0r-34,-35r-34,35r-19,0","w":166},"\u00e4":{"d":"84,-175v42,0,56,15,56,66v0,36,-4,80,4,109r-18,0v-3,-9,-4,-13,-5,-24v-19,45,-103,34,-103,-21v0,-37,27,-54,103,-66v1,-32,-6,-47,-37,-47v-24,0,-37,9,-41,30r-20,0v3,-31,25,-47,61,-47xm73,-13v41,0,52,-34,48,-83v-62,12,-84,25,-84,51v0,19,15,32,36,32xm54,-242v9,0,17,7,17,17v0,9,-8,17,-17,17v-10,0,-17,-8,-17,-17v0,-10,7,-17,17,-17xm115,-242v9,0,17,7,17,17v0,9,-8,17,-17,17v-10,0,-17,-8,-17,-17v0,-10,7,-17,17,-17","w":166},"\u00e3":{"d":"84,-175v42,0,56,15,56,66v0,36,-4,80,4,109r-18,0v-3,-9,-4,-13,-5,-24v-19,45,-103,34,-103,-21v0,-37,27,-54,103,-66v1,-32,-6,-47,-37,-47v-24,0,-37,9,-41,30r-20,0v3,-31,25,-47,61,-47xm73,-13v41,0,52,-34,48,-83v-62,12,-84,25,-84,51v0,19,15,32,36,32xm108,-204v-20,1,-56,-50,-63,0r-14,-3v4,-24,14,-37,30,-37v23,0,56,51,62,-2r15,4v-3,24,-15,38,-30,38","w":166},"\u00e5":{"d":"84,-175v42,0,56,15,56,66v0,36,-4,80,4,109r-18,0v-3,-9,-4,-13,-5,-24v-19,45,-103,34,-103,-21v0,-37,27,-54,103,-66v1,-32,-6,-47,-37,-47v-24,0,-37,9,-41,30r-20,0v3,-31,25,-47,61,-47xm73,-13v41,0,52,-34,48,-83v-62,12,-84,25,-84,51v0,19,15,32,36,32xm85,-260v18,0,32,14,32,32v0,18,-14,33,-32,33v-18,0,-33,-15,-33,-33v0,-18,15,-32,33,-32xm85,-246v-10,0,-18,8,-18,18v0,10,8,18,18,18v10,0,18,-8,18,-18v0,-10,-8,-18,-18,-18","w":166},"\u00e9":{"d":"154,-83r-117,0v-6,71,67,94,94,42r18,4v-10,28,-31,41,-60,41v-44,0,-71,-33,-71,-87v0,-56,27,-92,69,-92v42,0,69,37,67,92xm38,-99r96,0v-2,-37,-20,-59,-47,-59v-27,0,-45,21,-49,59xm69,-201r35,-46r30,0r-48,46r-17,0","w":171},"\u00e8":{"d":"154,-83r-117,0v-6,71,67,94,94,42r18,4v-10,28,-31,41,-60,41v-44,0,-71,-33,-71,-87v0,-56,27,-92,69,-92v42,0,69,37,67,92xm38,-99r96,0v-2,-37,-20,-59,-47,-59v-27,0,-45,21,-49,59xm108,-201r-17,0r-47,-46r30,0","w":171},"\u00ea":{"d":"154,-83r-117,0v-6,71,67,94,94,42r18,4v-10,28,-31,41,-60,41v-44,0,-71,-33,-71,-87v0,-56,27,-92,69,-92v42,0,69,37,67,92xm38,-99r96,0v-2,-37,-20,-59,-47,-59v-27,0,-45,21,-49,59xm36,-201r40,-49r27,0r39,49r-19,0r-34,-35r-34,35r-19,0","w":171},"\u00eb":{"d":"154,-83r-117,0v-6,71,67,94,94,42r18,4v-10,28,-31,41,-60,41v-44,0,-71,-33,-71,-87v0,-56,27,-92,69,-92v42,0,69,37,67,92xm38,-99r96,0v-2,-37,-20,-59,-47,-59v-27,0,-45,21,-49,59xm59,-242v9,0,17,7,17,17v0,9,-8,17,-17,17v-10,0,-17,-8,-17,-17v0,-10,7,-17,17,-17xm120,-242v9,0,17,7,17,17v0,9,-8,17,-17,17v-10,0,-17,-8,-17,-17v0,-10,7,-17,17,-17","w":171},"\u00ed":{"d":"27,-170r21,0r0,170r-21,0r0,-170xm24,-201r26,-46r29,0r-39,46r-16,0","w":74},"\u00ec":{"d":"27,-170r21,0r0,170r-21,0r0,-170xm50,-201r-15,0r-39,-46r28,0","w":74},"\u00ee":{"d":"27,-170r21,0r0,170r-21,0r0,-170xm-8,-201r32,-49r26,0r32,49r-18,0r-27,-35r-27,35r-18,0","w":74},"\u00ef":{"d":"27,-170r21,0r0,170r-21,0r0,-170xm15,-242v9,0,16,8,16,17v0,9,-8,17,-17,17v-9,0,-17,-8,-17,-17v0,-9,8,-17,18,-17xm61,-242v9,0,16,8,16,17v0,9,-8,17,-17,17v-9,0,-16,-8,-16,-17v0,-9,7,-17,17,-17","w":74},"\u00f1":{"d":"95,-158v-65,0,-47,93,-49,158r-19,0v-2,-49,4,-135,-4,-170r18,0v3,8,4,12,4,25v12,-20,28,-30,52,-30v44,0,53,16,53,77r0,98r-18,0v-7,-57,24,-158,-37,-158xm109,-204v-21,0,-57,-50,-64,0r-13,-3v4,-24,14,-37,30,-37v23,-1,55,50,62,-2r14,4v-3,24,-14,38,-29,38","w":176},"\u00f3":{"d":"89,-175v42,0,71,36,71,90v0,53,-29,89,-71,89v-43,0,-71,-35,-71,-90v0,-52,29,-89,71,-89xm89,-158v-31,0,-52,30,-52,72v0,45,21,73,52,73v31,0,52,-29,52,-72v0,-44,-21,-73,-52,-73xm71,-201r34,-46r30,0r-47,46r-17,0","w":177},"\u00f2":{"d":"89,-175v42,0,71,36,71,90v0,53,-29,89,-71,89v-43,0,-71,-35,-71,-90v0,-52,29,-89,71,-89xm89,-158v-31,0,-52,30,-52,72v0,45,21,73,52,73v31,0,52,-29,52,-72v0,-44,-21,-73,-52,-73xm108,-201r-17,0r-48,-46r30,0","w":177},"\u00f4":{"d":"89,-175v42,0,71,36,71,90v0,53,-29,89,-71,89v-43,0,-71,-35,-71,-90v0,-52,29,-89,71,-89xm89,-158v-31,0,-52,30,-52,72v0,45,21,73,52,73v31,0,52,-29,52,-72v0,-44,-21,-73,-52,-73xm36,-201r40,-49r26,0r40,49r-19,0r-34,-35r-34,35r-19,0","w":177},"\u00f6":{"d":"89,-175v42,0,71,36,71,90v0,53,-29,89,-71,89v-43,0,-71,-35,-71,-90v0,-52,29,-89,71,-89xm89,-158v-31,0,-52,30,-52,72v0,45,21,73,52,73v31,0,52,-29,52,-72v0,-44,-21,-73,-52,-73xm58,-242v9,0,17,7,17,17v0,9,-8,17,-17,17v-10,0,-17,-8,-17,-17v0,-10,7,-17,17,-17xm120,-242v9,0,16,7,16,17v0,9,-7,17,-16,17v-10,0,-18,-8,-18,-17v0,-10,8,-17,18,-17","w":177},"\u00f5":{"d":"89,-175v42,0,71,36,71,90v0,53,-29,89,-71,89v-43,0,-71,-35,-71,-90v0,-52,29,-89,71,-89xm89,-158v-31,0,-52,30,-52,72v0,45,21,73,52,73v31,0,52,-29,52,-72v0,-44,-21,-73,-52,-73xm116,-204v-21,0,-57,-50,-64,0r-13,-3v4,-24,13,-37,29,-37v24,0,56,50,63,-2r14,4v-3,24,-14,38,-29,38","w":177},"\u00fa":{"d":"127,-24v-25,50,-101,33,-101,-41r0,-105r19,0v7,57,-24,157,37,157v62,0,42,-95,45,-157r18,0v2,49,-4,134,4,170r-19,0v-3,-8,-3,-14,-3,-24xm66,-201r35,-46r30,0r-48,46r-17,0","w":172},"\u00f9":{"d":"127,-24v-25,50,-101,33,-101,-41r0,-105r19,0v7,57,-24,157,37,157v62,0,42,-95,45,-157r18,0v2,49,-4,134,4,170r-19,0v-3,-8,-3,-14,-3,-24xm105,-201r-16,0r-48,-46r30,0","w":172},"\u00fb":{"d":"127,-24v-25,50,-101,33,-101,-41r0,-105r19,0v7,57,-24,157,37,157v62,0,42,-95,45,-157r18,0v2,49,-4,134,4,170r-19,0v-3,-8,-3,-14,-3,-24xm33,-201r40,-49r27,0r39,49r-19,0r-34,-35r-34,35r-19,0","w":172},"\u00fc":{"d":"127,-24v-25,50,-101,33,-101,-41r0,-105r19,0v7,57,-24,157,37,157v62,0,42,-95,45,-157r18,0v2,49,-4,134,4,170r-19,0v-3,-8,-3,-14,-3,-24xm55,-242v9,0,17,7,17,17v0,9,-8,17,-17,17v-10,0,-17,-8,-17,-17v0,-10,7,-17,17,-17xm117,-242v9,0,17,7,17,17v0,9,-8,17,-17,17v-10,0,-18,-8,-18,-17v0,-10,8,-17,18,-17","w":172},"\u00c0":{"d":"92,-242r16,0r83,242r-22,0r-23,-68r-92,0r-24,68r-21,0xm140,-86r-40,-127r-41,127r81,0xm116,-263r-21,0r-55,-46r29,0","w":199},"\u00c3":{"d":"92,-242r16,0r83,242r-22,0r-23,-68r-92,0r-24,68r-21,0xm140,-86r-40,-127r-41,127r81,0xm127,-266v-20,2,-61,-50,-70,0r-13,-6v5,-23,15,-34,32,-34v25,0,61,51,69,-1r13,6v-1,21,-13,33,-31,35","w":199},"\u00d5":{"d":"115,-244v55,0,94,51,94,124v0,73,-39,124,-94,124v-57,0,-94,-51,-94,-126v0,-71,39,-122,94,-122xm115,-226v-42,0,-72,45,-72,105v0,63,30,107,72,107v42,0,72,-44,72,-106v0,-62,-30,-106,-72,-106xm143,-266v-20,2,-61,-50,-70,0r-13,-6v5,-23,15,-34,32,-34v24,0,62,51,69,-1r14,6v-1,21,-14,33,-32,35","w":229},"\u00ff":{"d":"6,-170r20,0r49,146r51,-146r19,0r-55,156v-15,44,-18,51,-27,63v-13,16,-30,24,-54,23r0,-17v31,0,39,-8,55,-55xm45,-242v9,0,17,7,17,17v0,9,-8,17,-17,17v-10,0,-17,-8,-17,-17v0,-10,7,-17,17,-17xm107,-242v9,0,16,7,16,17v0,9,-7,17,-16,17v-10,0,-18,-8,-18,-17v0,-10,8,-17,18,-17","w":150},"\u0178":{"d":"6,-240r24,0r60,118r59,-118r24,0r-74,137r0,103r-20,0r1,-103xm58,-304v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18xm121,-304v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18","w":178},"\u00c2":{"d":"92,-242r16,0r83,242r-22,0r-23,-68r-92,0r-24,68r-21,0xm140,-86r-40,-127r-41,127r81,0xm41,-263r45,-46r27,0r46,46v-33,3,-39,-22,-59,-33v-20,11,-26,36,-59,33","w":199},"\u00ca":{"d":"52,-133r98,0r0,18r-98,0r0,97r107,0r0,18r-127,0r0,-240r125,0r0,18r-105,0r0,89xm36,-263r46,-46r26,0r46,46v-33,3,-39,-22,-59,-33v-20,11,-26,36,-59,33","w":176},"\u00c1":{"d":"92,-242r16,0r83,242r-22,0r-23,-68r-92,0r-24,68r-21,0xm140,-86r-40,-127r-41,127r81,0xm84,-263r46,-46r30,0r-56,46r-20,0","w":199},"\u00cb":{"d":"52,-133r98,0r0,18r-98,0r0,97r107,0r0,18r-127,0r0,-240r125,0r0,18r-105,0r0,89xm64,-304v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18xm127,-304v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18","w":176},"\u00c8":{"d":"52,-133r98,0r0,18r-98,0r0,97r107,0r0,18r-127,0r0,-240r125,0r0,18r-105,0r0,89xm117,-263r-21,0r-56,-46r30,0","w":176},"\u00cd":{"d":"52,0r-21,0r0,-240r21,0r0,240xm26,-263r37,-46r29,0r-46,46r-20,0","w":83},"\u00ce":{"d":"52,0r-21,0r0,-240r21,0r0,240xm-9,-263r37,-46r27,0r38,46r-18,0r-33,-33r-33,33r-18,0","w":83},"\u00cf":{"d":"52,0r-21,0r0,-240r21,0r0,240xm18,-304v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18xm66,-304v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18v0,-10,8,-18,18,-18","w":83},"\u00cc":{"d":"53,0r-22,0r0,-240r22,0r0,240xm57,-263r-20,0r-45,-46r29,0","w":83},"\u00d3":{"d":"115,-244v55,0,94,51,94,124v0,73,-39,124,-94,124v-57,0,-94,-51,-94,-126v0,-71,39,-122,94,-122xm115,-226v-42,0,-72,45,-72,105v0,63,30,107,72,107v42,0,72,-44,72,-106v0,-62,-30,-106,-72,-106xm92,-263r46,-46r30,0r-55,46r-21,0","w":229},"\u00d4":{"d":"115,-244v55,0,94,51,94,124v0,73,-39,124,-94,124v-57,0,-94,-51,-94,-126v0,-71,39,-122,94,-122xm115,-226v-42,0,-72,45,-72,105v0,63,30,107,72,107v42,0,72,-44,72,-106v0,-62,-30,-106,-72,-106xm56,-263r46,-46r26,0r46,46v-33,3,-39,-22,-59,-33v-20,11,-26,36,-59,33","w":229},"\u00d2":{"d":"115,-244v55,0,94,51,94,124v0,73,-39,124,-94,124v-57,0,-94,-51,-94,-126v0,-71,39,-122,94,-122xm115,-226v-42,0,-72,45,-72,105v0,63,30,107,72,107v42,0,72,-44,72,-106v0,-62,-30,-106,-72,-106xm139,-263r-21,0r-56,-46r30,0","w":229},"\u00da":{"d":"109,4v-59,0,-81,-33,-81,-101r0,-143r21,0r0,142v-3,73,12,74,60,84v50,-8,62,-14,62,-84r0,-142r20,0r0,160v2,61,-29,84,-82,84xm86,-263r47,-46r30,0r-56,46r-21,0","w":218},"\u00db":{"d":"109,4v-59,0,-81,-33,-81,-101r0,-143r21,0r0,142v-3,73,12,74,60,84v50,-8,62,-14,62,-84r0,-142r20,0r0,160v2,61,-29,84,-82,84xm50,-263r46,-46r27,0r46,46v-34,3,-40,-22,-60,-33v-20,11,-26,36,-59,33","w":218},"\u00d9":{"d":"109,4v-59,0,-81,-33,-81,-101r0,-143r21,0r0,142v-3,73,12,74,60,84v50,-8,62,-14,62,-84r0,-142r20,0r0,160v2,61,-29,84,-82,84xm132,-263r-20,0r-56,-46r30,0","w":218},"\u0160":{"d":"151,-61v0,-68,-123,-53,-123,-123v0,-35,30,-60,70,-60v41,0,65,23,67,63r-20,0v3,-58,-97,-58,-96,-5v11,36,11,27,59,51v45,23,58,27,64,72v7,67,-102,89,-136,41v-10,-13,-14,-26,-15,-48r20,0v2,36,22,56,57,56v31,0,53,-20,53,-47xm157,-309r-46,46r-27,0r-45,-46v33,-3,39,22,59,33v20,-11,26,-36,59,-33","w":194},"\u0161":{"d":"133,-125r-19,0v3,-44,-73,-42,-73,-5v-10,27,83,37,86,53v24,35,-2,81,-50,81v-39,0,-60,-19,-60,-55r18,0v3,26,16,38,42,38v35,0,54,-37,28,-55v-6,-4,-6,-7,-38,-14v-67,-15,-55,-94,10,-93v35,0,55,18,56,50xm131,-250r-39,49r-27,0r-40,-49r19,0r34,35r34,-35r19,0","w":152},"\u017d":{"d":"19,-240r145,0r0,14r-128,208r126,0r0,18r-150,0r0,-16r126,-206r-119,0r0,-18xm150,-309r-46,46r-27,0r-45,-46v33,-3,39,22,59,33v20,-11,26,-36,59,-33","w":176},"\u017e":{"d":"15,-170r119,0r0,13r-104,142r101,0r0,15r-123,0r0,-15r102,-140r-95,0r0,-15xm127,-250r-39,49r-27,0r-40,-49r19,0r35,35r33,-35r19,0","w":140},"\u00dd":{"d":"6,-240r24,0r60,118r59,-118r24,0r-74,137r0,103r-20,0r1,-103xm66,-263r47,-46r30,0r-56,46r-21,0","w":178},"\u00fd":{"d":"6,-170r20,0r49,146r51,-146r19,0r-55,156v-15,44,-18,51,-27,63v-13,16,-30,24,-54,23r0,-17v31,0,39,-8,55,-55xm57,-201r34,-46r30,0r-48,46r-16,0","w":150},"!":{"d":"34,-236r21,0r-4,173r-15,0xm45,-33v10,0,18,9,18,19v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18v0,-10,9,-19,19,-19","w":89},"\"":{"d":"39,-144r-16,0r-2,-96r21,0xm85,-144r-16,0r-2,-96r21,0","w":108},"#":{"d":"193,-94r-2,16r-41,0r-12,78r-19,0r12,-78r-56,0r-13,78r-18,0r12,-78r-41,0r2,-16r41,0r9,-56r-41,0r3,-16r41,0r11,-74r19,0r-12,74r57,0r12,-74r18,0r-11,74r41,0r-3,16r-41,0r-9,56r41,0xm143,-150r-57,0r-9,56r57,0","w":216},"$":{"d":"87,-116v-33,-10,-64,-31,-64,-64v0,-35,25,-61,64,-64r0,-22r12,0r0,22v35,2,61,22,62,52r-22,0v-1,-19,-17,-31,-40,-33r0,91v44,16,70,28,70,72v0,37,-28,63,-70,66r0,24r-12,0r0,-24v-44,-2,-69,-27,-70,-69r20,0v2,30,20,50,50,51r0,-102xm87,-138r0,-87v-44,1,-61,56,-23,76v4,3,8,5,23,11xm99,-111r0,97v49,-1,65,-58,30,-83v-6,-4,-13,-8,-30,-14","w":187},"%":{"d":"157,-240r17,0r-142,240r-17,0xm138,-113v24,0,44,26,44,58v0,33,-19,57,-44,57v-24,0,-44,-25,-44,-57v0,-32,19,-58,44,-58xm138,-97v-15,0,-26,18,-26,42v0,24,12,41,26,41v15,0,26,-17,26,-41v0,-24,-11,-42,-26,-42xm51,-242v25,0,44,24,44,57v0,33,-19,58,-44,58v-24,0,-43,-26,-43,-58v0,-32,19,-57,43,-57xm51,-226v-15,0,-25,17,-25,41v0,24,11,42,25,42v15,0,26,-18,26,-42v0,-24,-11,-41,-26,-41","w":189},"&":{"d":"158,-107r17,0v0,31,-3,48,-14,65r31,42r-24,0r-19,-25v-35,48,-131,29,-131,-36v0,-28,12,-46,50,-74v-25,-32,-29,-40,-29,-57v0,-27,20,-46,50,-46v28,0,46,17,46,44v0,23,-11,40,-40,63r54,73v6,-10,9,-25,9,-49xm84,-146v24,-18,32,-32,32,-49v0,-15,-10,-26,-27,-26v-47,0,-33,44,-5,75xm79,-119v-25,18,-39,27,-41,57v-3,50,75,63,100,22","w":214},"'":{"d":"53,-144r-16,0r-3,-96r22,0","w":90},"(":{"d":"71,-242r15,0v-50,59,-51,253,0,314r-15,0v-57,-57,-57,-258,0,-314","w":97},")":{"d":"27,72r-15,0v51,-61,50,-255,0,-314r15,0v57,56,58,258,0,314","w":97},"*":{"d":"82,-189r0,-45r16,0r0,45r43,-14r5,15r-43,14r27,36r-14,10r-26,-36r-26,36r-13,-10r26,-36r-42,-14r5,-15"},"+":{"d":"100,-128r67,0r0,14r-67,0r0,69r-14,0r0,-69r-67,0r0,-14r67,0r0,-69r14,0r0,69","w":187},",":{"d":"36,43r-22,0v16,-15,26,-30,28,-42v-12,1,-20,-7,-21,-18v0,-10,9,-19,20,-19v12,0,21,10,21,24v0,17,-8,34,-26,55","w":84},"-":{"d":"0,-98r100,0r0,15r-100,0r0,-15","w":100},"\u00ad":{"d":"0,-98r100,0r0,15r-100,0r0,-15","w":100},".":{"d":"46,-33v10,0,19,9,19,19v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18v0,-10,8,-19,18,-19","w":92},"\/":{"d":"24,48r137,-288r23,0r-138,288r-22,0","w":207},"0":{"d":"93,3v-56,0,-74,-59,-74,-119v0,-76,28,-121,75,-121v45,0,73,46,73,120v-1,62,-17,120,-74,120xm147,-117v0,-50,-10,-103,-53,-103v-46,0,-54,53,-54,103v0,50,9,103,54,103v43,0,53,-53,53,-103","w":187},"1":{"d":"44,-188r0,-14v29,-1,43,-11,48,-34r13,0r0,236r-19,0r0,-188r-42,0","w":187},"2":{"d":"51,-166r-20,0v1,-47,24,-71,67,-71v37,0,62,22,62,55v0,48,-78,121,-104,164r108,0r0,18r-133,0r0,-15r99,-137v20,-30,6,-68,-33,-67v-29,0,-44,17,-46,53","w":187},"3":{"d":"47,-175r-18,0v2,-40,25,-62,64,-62v67,0,86,87,28,109v30,11,44,30,44,60v0,43,-29,71,-73,71v-45,0,-71,-26,-70,-69r18,0v1,33,19,51,51,51v33,0,53,-20,53,-52v1,-35,-26,-53,-64,-50r0,-18v34,2,55,-14,55,-44v0,-25,-16,-40,-43,-40v-27,0,-41,14,-45,44","w":187},"4":{"d":"131,-78r40,0r0,19r-40,0r0,61r-20,0r0,-61r-96,0r0,-16r97,-161r19,0r0,158xm111,-78r1,-129r-77,129r76,0","w":187},"5":{"d":"165,-82v0,47,-29,85,-73,85v-35,0,-59,-22,-62,-56r19,0v4,25,19,39,43,39v31,0,53,-27,53,-67v0,-61,-68,-80,-91,-32r-19,-1r14,-120r104,0r-3,18r-83,0r-11,76v39,-43,109,-8,109,58","w":187},"6":{"d":"119,-240r22,0v-27,29,-51,61,-69,92v49,-26,95,13,94,70v0,48,-27,81,-67,81v-40,0,-68,-32,-68,-80v0,-46,29,-101,88,-163xm99,-139v-28,0,-47,26,-47,63v0,36,19,62,46,62v27,0,47,-26,47,-63v0,-36,-19,-62,-46,-62","w":187},"7":{"d":"37,-234r141,0r0,18r-115,216r-23,0r116,-216r-119,0r0,-18","w":187},"8":{"d":"61,-123v-51,-23,-29,-120,32,-114v61,-6,85,90,33,114v60,26,40,126,-32,126v-71,0,-93,-100,-33,-126xm94,-220v-24,0,-41,18,-41,45v0,26,17,45,41,45v24,0,40,-18,40,-45v0,-26,-17,-45,-40,-45xm94,-114v-29,0,-48,20,-48,50v0,30,20,50,48,50v28,0,47,-20,47,-50v0,-30,-20,-50,-47,-50","w":187},"9":{"d":"68,6r-23,0v29,-32,52,-61,70,-92v-48,26,-95,-13,-94,-70v0,-48,27,-81,67,-81v40,0,68,32,68,80v0,47,-27,97,-88,163xm89,-220v-27,0,-47,25,-47,62v0,37,19,63,46,63v28,0,47,-26,47,-63v0,-37,-19,-62,-46,-62","w":187},":":{"d":"46,-33v10,0,19,9,19,19v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18v0,-10,8,-19,18,-19xm46,-170v10,0,19,8,19,18v0,10,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18","w":92},";":{"d":"40,-170v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18xm36,43r-22,0v16,-15,26,-30,28,-42v-12,1,-20,-7,-21,-18v0,-10,9,-19,20,-19v12,0,21,10,21,24v0,17,-8,34,-26,55","w":84},"\u037e":{"d":"40,-170v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-19,-9,-19,-19v0,-10,9,-18,19,-18xm36,43r-22,0v16,-15,26,-30,28,-42v-12,1,-20,-7,-21,-18v0,-10,9,-19,20,-19v12,0,21,10,21,24v0,17,-8,34,-26,55","w":84},"<":{"d":"168,-200r0,19r-136,60r136,61r0,18r-156,-70r0,-17"},"=":{"d":"19,-150r148,0r0,14r-148,0r0,-14xm19,-106r148,0r0,14r-148,0r0,-14","w":187},">":{"d":"12,-42r0,-18r136,-61r-136,-60r0,-19r156,71r0,17"},"?":{"d":"65,-33v10,0,18,9,18,19v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18v0,-10,9,-19,19,-19xm127,-188v8,36,-66,56,-52,111r0,13r-20,0r0,-22v-13,-44,50,-70,50,-103v0,-18,-12,-29,-32,-29v-23,0,-35,11,-38,36r-18,0v2,-36,21,-55,56,-55v33,0,54,18,54,49","w":147},"@":{"d":"142,4v-76,2,-129,-53,-129,-125v0,-71,53,-123,125,-123v66,0,114,43,114,106v0,46,-28,87,-59,87v-15,0,-25,-11,-26,-26v-25,47,-95,28,-95,-32v0,-63,81,-106,104,-43r5,-26r15,0r-17,96v0,11,6,18,15,18v23,0,43,-35,43,-73v0,-56,-40,-94,-99,-94v-63,0,-110,47,-110,111v0,64,46,113,114,111v29,0,51,-6,78,-19r5,13v-26,13,-53,19,-83,19xm135,-167v-26,0,-46,25,-46,58v0,27,13,44,35,44v26,0,45,-27,45,-63v0,-24,-13,-39,-34,-39","w":263},"A":{"d":"92,-242r16,0r83,242r-22,0r-23,-68r-92,0r-24,68r-21,0xm140,-86r-40,-127r-41,127r81,0","w":199},"B":{"d":"178,-66v-2,69,-62,69,-146,66r0,-240v72,-2,134,-2,134,60v0,28,-14,45,-41,53v36,9,53,28,53,61xm144,-180v-1,-44,-40,-43,-92,-42r0,88v51,2,92,-2,92,-46xm156,-67v-1,-49,-46,-52,-104,-49r0,98v59,0,105,5,104,-49","w":193},"C":{"d":"195,-177r-20,0v-8,-33,-27,-49,-59,-49v-45,0,-73,41,-73,106v0,66,28,106,74,106v36,0,57,-23,62,-65r20,0v-5,53,-35,83,-81,83v-60,0,-97,-48,-97,-124v0,-76,38,-124,96,-124v43,0,72,25,78,67","w":216},"D":{"d":"203,-120v0,93,-55,131,-171,120r0,-240r30,0v107,-7,141,38,141,120xm181,-120v0,-77,-33,-109,-129,-102r0,204v84,7,129,-26,129,-102","w":223},"E":{"d":"52,-133r98,0r0,18r-98,0r0,97r107,0r0,18r-127,0r0,-240r125,0r0,18r-105,0r0,89","w":176},"F":{"d":"52,-133r98,0r0,18r-98,0r0,115r-20,0r0,-240r125,0r0,18r-105,0r0,89","w":171},"G":{"d":"129,-118r69,0r0,99v-78,53,-177,13,-177,-101v0,-76,37,-124,97,-124v42,0,71,25,77,67r-20,0v-9,-33,-26,-49,-57,-49v-46,0,-75,40,-75,105v0,95,66,131,135,91r0,-68r-49,0r0,-20","w":221},"H":{"d":"52,-134r119,0r0,-106r20,0r0,240r-20,0r0,-117r-119,0r0,117r-20,0r0,-240r20,0r0,106","w":222},"I":{"d":"52,0r-21,0r0,-240r21,0r0,240","w":83},"J":{"d":"0,8v38,-3,46,-7,46,-57r0,-191r21,0r0,191v3,63,-16,70,-67,75r0,-18","w":97},"K":{"d":"153,-240r26,0r-101,114r111,126r-29,0r-107,-125xm32,-240r20,0r0,240r-20,0r0,-240","w":192},"L":{"d":"32,-240r21,0r0,222r102,0r0,18r-123,0r0,-240","w":166},"M":{"d":"32,-240r33,0r72,217r73,-217r33,0r0,240r-21,0r0,-221r-74,221r-21,0r-75,-221r0,221r-20,0r0,-240","w":274},"N":{"d":"32,-240r22,0r121,210r0,-210r19,0r0,240r-23,0r-120,-210r0,210r-19,0r0,-240","w":225},"O":{"d":"115,-244v55,0,94,51,94,124v0,73,-39,124,-94,124v-57,0,-94,-51,-94,-126v0,-71,39,-122,94,-122xm115,-226v-42,0,-72,45,-72,105v0,63,30,107,72,107v42,0,72,-44,72,-106v0,-62,-30,-106,-72,-106","w":229},"P":{"d":"173,-170v0,62,-43,74,-121,69r0,101r-20,0r0,-240v82,-4,141,1,141,70xm151,-170v-2,-51,-34,-54,-99,-52r0,103v57,2,101,1,99,-51","w":184},"Q":{"d":"192,-45r46,49r-26,0r-31,-32v-61,71,-160,15,-160,-92v0,-73,39,-124,94,-124v80,0,119,125,77,199xm115,-226v-42,0,-72,45,-72,105v0,63,30,107,72,107v42,0,72,-44,72,-106v0,-62,-30,-106,-72,-106","w":231},"R":{"d":"32,-240v79,-3,140,-1,140,66v0,32,-16,53,-51,65r65,109r-25,0r-64,-107r-45,0r0,107r-20,0r0,-240xm150,-175v0,-50,-37,-48,-98,-47r0,97v61,2,98,-1,98,-50","w":198},"S":{"d":"151,-61v0,-68,-123,-53,-123,-123v0,-35,30,-60,70,-60v41,0,65,23,67,63r-20,0v3,-58,-97,-58,-96,-5v11,36,11,27,59,51v45,23,58,27,64,72v7,67,-102,89,-136,41v-10,-13,-14,-26,-15,-48r20,0v2,36,22,56,57,56v31,0,53,-20,53,-47","w":194},"T":{"d":"9,-240r144,0r0,18r-62,0r0,222r-20,0r0,-222r-62,0r0,-18","w":162},"U":{"d":"109,4v-59,0,-81,-33,-81,-101r0,-143r21,0r0,142v-3,73,12,74,60,84v50,-8,62,-14,62,-84r0,-142r20,0r0,160v2,61,-29,84,-82,84","w":218},"V":{"d":"6,-240r21,0r72,216r71,-216r21,0r-83,242r-20,0","w":196},"W":{"d":"8,-240r19,0r47,210r52,-210r17,0r52,210r47,-210r20,0r-56,242r-21,0r-51,-198r-50,198r-21,0","w":268},"X":{"d":"12,-240r24,0r59,98r60,-98r24,0r-72,114r76,126r-24,0r-64,-106r-63,106r-24,0r76,-126","w":190},"Y":{"d":"6,-240r24,0r60,118r59,-118r24,0r-74,137r0,103r-20,0r1,-103","w":178},"Z":{"d":"19,-240r145,0r0,14r-128,208r126,0r0,18r-150,0r0,-16r126,-206r-119,0r0,-18","w":176},"[":{"d":"35,-240r48,0r0,16r-29,0r0,278r29,0r0,16r-48,0r0,-310","w":97},"\\":{"d":"184,48r-23,0r-137,-288r22,0","w":207},"]":{"d":"63,70r-48,0r0,-16r29,0r0,-278r-29,0r0,-16r48,0r0,310","w":97},"^":{"d":"33,-135r-21,0r66,-105r24,0r66,105r-21,0r-57,-91"},"_":{"d":"0,26r180,0r0,18r-180,0r0,-18"},"`":{"d":"109,-201r-17,0r-47,-46r30,0"},"a":{"d":"84,-175v42,0,56,15,56,66v0,36,-4,80,4,109r-18,0v-3,-9,-4,-13,-5,-24v-19,45,-103,34,-103,-21v0,-37,27,-54,103,-66v1,-32,-6,-47,-37,-47v-24,0,-37,9,-41,30r-20,0v3,-31,25,-47,61,-47xm73,-13v41,0,52,-34,48,-83v-62,12,-84,25,-84,51v0,19,15,32,36,32","w":166},"b":{"d":"27,-241r19,0r0,96v36,-61,115,-22,115,59v0,79,-76,123,-115,62v0,9,0,16,-3,24r-20,0v9,-64,2,-167,4,-241xm96,-158v-31,0,-51,29,-51,74v0,43,20,71,49,71v29,0,47,-28,47,-73v0,-44,-18,-72,-45,-72","w":177},"c":{"d":"149,-115r-19,0v-4,-28,-19,-43,-42,-43v-31,0,-51,29,-51,73v0,76,86,101,94,27r19,0v-4,40,-25,62,-60,62v-44,0,-72,-35,-72,-89v0,-98,123,-125,131,-30","w":168},"d":{"d":"151,-241r0,192v0,31,0,40,3,49r-19,0v-3,-8,-3,-14,-3,-24v-38,60,-115,19,-115,-60v0,-83,79,-122,115,-61r0,-96r19,0xm85,-158v-30,0,-48,28,-48,73v0,44,19,72,48,72v29,0,47,-28,47,-72v0,-44,-19,-73,-47,-73","w":177},"e":{"d":"154,-83r-117,0v-6,71,67,94,94,42r18,4v-10,28,-31,41,-60,41v-44,0,-71,-33,-71,-87v0,-56,27,-92,69,-92v42,0,69,37,67,92xm38,-99r96,0v-2,-37,-20,-59,-47,-59v-27,0,-45,21,-49,59","w":171},"f":{"d":"97,-221v-32,-18,-55,5,-47,51r43,0r0,15r-42,0r0,155r-20,0r0,-155r-25,0r0,-15r25,0v-6,-59,17,-84,66,-70r0,19","w":96},"g":{"d":"160,-170r0,15r-35,-1v21,16,23,64,1,80v-3,12,-106,22,-68,45v48,6,103,5,103,53v0,32,-29,52,-75,52v-74,0,-103,-71,-38,-92v-31,-13,-20,-36,13,-47v-24,-9,-36,-24,-36,-49v-1,-43,41,-68,85,-54xm85,-156v-24,0,-40,17,-40,41v0,23,16,38,39,38v23,0,39,-15,39,-38v0,-24,-16,-41,-38,-41xm86,-8v-35,0,-56,12,-56,32v0,20,22,33,56,33v35,0,56,-13,56,-33v0,-21,-19,-32,-56,-32","w":168},"h":{"d":"93,-158v-64,0,-44,94,-47,158r-19,0r0,-241r19,0r0,91v35,-44,102,-34,102,52r0,98r-18,0v-6,-57,22,-158,-37,-158","w":174},"i":{"d":"27,-170r21,0r0,170r-21,0r0,-170xm37,-243v9,0,16,7,16,16v0,9,-7,16,-16,16v-9,0,-16,-7,-16,-16v0,-9,7,-16,16,-16","w":74},"j":{"d":"-8,51v44,-3,50,-9,49,-63r0,-158r20,0r0,158v3,68,-13,78,-69,80r0,-17xm50,-243v9,0,16,7,16,16v0,9,-7,16,-16,16v-9,0,-15,-7,-15,-16v0,-9,6,-16,15,-16","w":88},"k":{"d":"121,-170r23,0r-73,76r78,94r-26,0r-77,-94xm27,-241r19,0r0,241r-19,0r0,-241","w":166},"l":{"d":"27,-241r21,0r0,241r-21,0r0,-241","w":74},"m":{"d":"90,-158v-63,0,-40,96,-44,158r-19,0r-1,-153v-1,-7,-1,-10,-3,-17r18,0v2,6,4,13,4,23v15,-37,83,-39,95,2v10,-20,28,-30,52,-30v38,0,49,15,49,69r0,106r-19,0r0,-106v2,-42,-5,-50,-35,-52v-64,-4,-38,97,-43,158r-19,0v-8,-56,24,-159,-35,-158","w":266},"n":{"d":"95,-158v-65,0,-47,93,-49,158r-19,0v-2,-49,4,-135,-4,-170r18,0v3,8,4,12,4,25v12,-20,28,-30,52,-30v44,0,53,16,53,77r0,98r-18,0v-7,-57,24,-158,-37,-158","w":176},"o":{"d":"89,-175v42,0,71,36,71,90v0,53,-29,89,-71,89v-43,0,-71,-35,-71,-90v0,-52,29,-89,71,-89xm89,-158v-31,0,-52,30,-52,72v0,45,21,73,52,73v31,0,52,-29,52,-72v0,-44,-21,-73,-52,-73","w":177},"p":{"d":"27,71r0,-192v0,-31,-1,-39,-4,-49r20,0v2,7,2,10,3,26v36,-64,114,-22,114,60v0,83,-76,117,-114,59r0,96r-19,0xm95,-158v-29,0,-50,30,-50,73v0,43,21,72,50,72v29,0,46,-26,46,-71v0,-45,-18,-74,-46,-74","w":177},"q":{"d":"132,71r0,-96v-37,59,-114,22,-114,-58v0,-81,79,-126,114,-61v0,-13,1,-18,3,-26r19,0v-7,65,-1,167,-3,241r-19,0xm85,-158v-28,0,-48,30,-48,75v0,43,17,70,45,70v30,0,50,-28,50,-72v0,-43,-19,-73,-47,-73","w":177},"r":{"d":"111,-150v-75,-31,-65,73,-65,150r-19,0r0,-109v0,-38,-1,-42,-3,-61r18,0v3,13,3,23,3,36v16,-38,33,-49,66,-35r0,19","w":111},"s":{"d":"133,-125r-19,0v3,-44,-73,-42,-73,-5v-10,27,83,37,86,53v24,35,-2,81,-50,81v-39,0,-60,-19,-60,-55r18,0v3,26,16,38,42,38v35,0,54,-37,28,-55v-6,-4,-6,-7,-38,-14v-67,-15,-55,-94,10,-93v35,0,55,18,56,50","w":152},"t":{"d":"53,-62v-1,23,-5,51,19,49v8,0,16,-2,24,-6r0,18v-37,12,-75,-1,-63,-48r3,-106r-26,0r0,-15r26,0r1,-50r18,0r0,50r42,0r0,15r-43,0","w":107},"u":{"d":"127,-24v-25,50,-101,33,-101,-41r0,-105r19,0v7,57,-24,157,37,157v62,0,42,-95,45,-157r18,0v2,49,-4,134,4,170r-19,0v-3,-8,-3,-14,-3,-24","w":172},"v":{"d":"4,-170r19,0r50,149r51,-149r19,0r-60,173r-19,0","w":146},"w":{"d":"6,-170r20,0r38,139r41,-139r17,0r42,139r38,-139r20,0r-49,173r-17,0r-42,-145r-42,145r-17,0","w":227},"x":{"d":"12,-170r21,0r43,65r44,-65r23,0r-55,80r61,90r-23,0r-50,-75r-51,75r-22,0r62,-90","w":151},"y":{"d":"6,-170r20,0r49,146r51,-146r19,0r-55,156v-15,44,-18,51,-27,63v-13,16,-30,24,-54,23r0,-17v31,0,39,-8,55,-55","w":150},"z":{"d":"15,-170r119,0r0,13r-104,142r101,0r0,15r-123,0r0,-15r102,-140r-95,0r0,-15","w":140},"{":{"d":"88,-228v-68,-6,-2,116,-53,143v30,13,20,63,20,103v0,31,7,39,33,39r0,15v-60,10,-51,-59,-51,-115v0,-22,-5,-31,-20,-35r0,-13v51,-15,-20,-166,71,-151r0,14","w":97},"|":{"d":"81,-240r18,0r0,300r-18,0r0,-300"},"}":{"d":"10,-242v62,-7,50,59,51,115v0,22,5,31,20,36r0,13v-52,14,20,165,-71,150r0,-15v68,7,3,-116,53,-142v-30,-13,-20,-63,-20,-103v0,-31,-6,-39,-33,-40r0,-14","w":97},"~":{"d":"157,-214v-7,6,-56,-27,-77,-27v-13,0,-23,8,-34,28r-12,-7v14,-27,27,-38,47,-38v13,-4,65,29,78,26v14,0,23,-6,35,-27r12,7v-13,26,-29,38,-49,38","w":240},"\u00c7":{"d":"104,3v-60,-11,-83,-57,-83,-123v0,-75,37,-124,95,-124v44,0,73,25,79,67r-20,0v-8,-33,-27,-49,-58,-49v-46,0,-74,41,-74,106v0,65,28,106,73,106v36,0,58,-23,63,-65r20,0v-4,51,-35,83,-80,83r-9,21v22,2,33,11,33,28v1,27,-36,37,-62,25r0,-13v18,7,39,2,39,-14v0,-11,-8,-15,-30,-16","w":216},"\u00e7":{"d":"93,4r-8,17v21,3,31,10,31,25v0,26,-35,35,-59,23r0,-12v19,7,36,4,37,-13v0,-10,-7,-15,-28,-16r12,-24v-40,-8,-60,-39,-60,-89v0,-98,123,-125,131,-30r-19,0v-4,-28,-19,-43,-42,-43v-31,0,-51,29,-51,73v0,77,86,100,94,27r19,0v-4,39,-23,60,-57,62","w":168},"\u2020":{"d":"81,-234r19,0r0,64r68,0r0,17r-68,0r0,201r-19,0r0,-201r-69,0r0,-17r69,0r0,-64"},"\u00b0":{"d":"90,-244v27,0,50,21,50,48v0,27,-23,48,-50,48v-28,0,-50,-22,-50,-49v0,-26,23,-47,50,-47xm90,-231v-19,0,-36,16,-36,35v0,20,16,35,36,35v20,0,36,-16,36,-35v0,-19,-16,-35,-36,-35"},"\u00a2":{"d":"101,-193r0,146v22,-1,37,-19,39,-46r19,0v-1,35,-25,63,-58,63r0,38r-12,0r0,-39v-36,-5,-58,-38,-58,-87v0,-49,21,-84,58,-92r0,-36r12,0r0,36v33,1,56,24,56,60r-19,0v-1,-28,-13,-42,-37,-43xm89,-48r0,-144v-49,12,-55,133,0,144","w":187},"\u00a3":{"d":"141,-199v0,-22,-5,-27,-22,-27v-16,0,-22,8,-28,37v-3,14,-6,23,-11,58r54,0r0,18r-57,0v-9,53,-15,77,-25,97v35,-11,106,17,102,-31r19,0v-5,36,-12,47,-64,47r-83,0v11,-19,20,-53,31,-113r-36,0r0,-18r39,0v10,-56,10,-113,60,-113v27,0,42,13,40,45r-19,0","w":187},"\u00a7":{"d":"126,5v0,-52,-101,-52,-101,-105v0,-18,9,-31,33,-43v-48,-26,-24,-94,33,-94v36,0,58,21,59,57r-19,0v-2,-28,-15,-41,-41,-41v-36,0,-53,42,-26,61v5,4,7,5,34,20v45,26,54,34,54,56v0,19,-9,32,-31,44v46,31,22,100,-38,100v-40,0,-61,-19,-62,-59r19,0v2,30,16,42,43,42v26,0,43,-14,43,-38xm73,-133v-33,13,-40,40,-11,58v9,6,33,20,44,26v26,-10,36,-40,14,-56v-7,-5,-34,-21,-47,-28"},"\u2022":{"d":"121,-172v27,0,49,23,49,50v0,28,-22,50,-49,50v-27,0,-50,-23,-50,-50v0,-28,22,-50,50,-50","w":240},"\u00b6":{"d":"7,-176v0,-43,30,-64,84,-64r83,0r0,16r-20,0r0,260r-18,0r0,-260r-40,0r0,260r-17,0r0,-149v-43,2,-72,-24,-72,-63","w":199},"\u00df":{"d":"85,-225v-38,7,-41,16,-40,71r0,154r-19,0r0,-154v-2,-69,11,-88,59,-88v35,0,59,23,59,56v0,26,-14,42,-43,50v39,6,59,30,59,68v0,51,-41,85,-87,65r0,-18v35,19,68,-3,67,-47v0,-39,-26,-59,-74,-60r0,-16v67,14,80,-79,19,-81","w":177},"\u00ae":{"d":"146,-245v67,0,123,56,123,124v0,68,-56,124,-124,124v-68,0,-124,-56,-124,-124v0,-69,55,-124,125,-124xm146,-232v-62,0,-111,49,-111,112v0,61,50,111,110,111v60,0,109,-50,109,-112v0,-61,-49,-111,-108,-111xm104,-192v48,-1,91,-2,91,40v0,19,-11,33,-32,39r43,65r-20,0r-41,-63r-25,0r0,63r-16,0r0,-144xm178,-152v0,-27,-21,-27,-58,-26r0,54v35,1,58,0,58,-28","w":288},"\u00a9":{"d":"146,-245v67,0,123,56,123,124v0,68,-56,124,-124,124v-68,0,-124,-56,-124,-124v0,-69,55,-124,125,-124xm146,-232v-62,0,-111,49,-111,112v0,61,50,111,110,111v60,0,109,-50,109,-112v0,-61,-49,-111,-108,-111xm200,-154r-16,0v-5,-19,-15,-29,-35,-29v-28,0,-45,24,-45,61v0,66,76,85,83,23r15,0v-3,33,-22,51,-53,51v-38,0,-62,-29,-62,-74v0,-79,101,-104,113,-32","w":288},"\u2122":{"d":"4,-240r94,0r0,13r-39,0r0,131r-16,0r0,-131r-39,0r0,-13xm121,-240r23,0r45,124r44,-124r23,0r0,144r-16,0r0,-123r-44,123r-15,0r-45,-123r0,123r-15,0r0,-144","w":274},"\u00b4":{"d":"81,-201r34,-46r30,0r-47,46r-17,0"},"\u00a8":{"d":"59,-242v9,0,17,7,17,17v0,9,-8,17,-17,17v-10,0,-17,-8,-17,-17v0,-10,7,-17,17,-17xm121,-242v9,0,17,7,17,17v0,9,-8,17,-17,17v-10,0,-18,-8,-18,-17v0,-10,8,-17,18,-17"},"\u2260":{"d":"99,-156r20,-41r14,5r-17,36r52,0r0,17r-60,0r-18,37r78,0r0,16r-86,0r-20,44r-14,-4r18,-40r-54,0r0,-16r62,0r17,-37r-79,0r0,-17r87,0"},"\u00c6":{"d":"144,-240r138,0r0,18r-105,0r0,88r96,0r0,18r-96,0r0,98r105,0r0,18r-126,0r0,-69r-86,0r-38,69r-24,0xm156,-87r0,-136r-76,136r76,0","w":299},"\u00d8":{"d":"174,-221r12,-19r18,0r-20,30v53,66,18,214,-71,214v-22,0,-41,-8,-57,-23r-13,19r-17,0r20,-30v-53,-67,-18,-214,70,-214v22,0,41,8,58,23xm58,-49r104,-156v-55,-52,-119,0,-119,89v0,27,5,47,15,67xm171,-192r-104,156v54,54,120,1,120,-89v0,-27,-6,-48,-16,-67","w":229},"\u221e":{"d":"120,-109v-19,28,-37,41,-60,41v-31,0,-53,-23,-53,-55v0,-31,22,-53,53,-53v22,0,41,13,60,41v19,-29,37,-41,61,-41v31,0,52,22,52,54v0,32,-21,54,-52,54v-24,0,-42,-12,-61,-41xm130,-122v17,27,31,37,49,37v21,0,36,-15,36,-37v0,-22,-15,-38,-36,-38v-18,0,-31,10,-49,38xm111,-122v-18,-27,-31,-38,-50,-38v-21,0,-35,16,-35,38v0,52,63,48,85,0","w":240},"\u00b1":{"d":"100,-128r67,0r0,14r-67,0r0,66r-14,0r0,-66r-67,0r0,-14r67,0r0,-69r14,0r0,69xm19,-28r148,0r0,14r-148,0r0,-14","w":187},"\u2264":{"d":"168,-212r0,19r-136,59r136,59r0,18r-156,-69r0,-16xm168,-46r0,17r-156,0r0,-17r156,0"},"\u2265":{"d":"12,-57r0,-18r136,-59r-136,-59r0,-19r156,70r0,16xm12,-29r0,-17r156,0r0,17r-156,0"},"\u00a5":{"d":"131,-150r36,0r0,14r-43,0r-16,30r59,0r0,14r-62,0r0,92r-20,0r0,-92r-66,0r0,-14r63,0r-16,-30r-47,0r0,-14r39,0r-49,-90r23,0r63,118r61,-118r22,0","w":187},"\u00b5":{"d":"88,-10v32,-1,53,-28,53,-66r0,-97r19,0r0,173r-19,0r0,-35v-16,48,-77,55,-102,12r0,82r-19,0r0,-232r19,0v4,67,-21,166,49,163"},"\u03bc":{"d":"88,-10v32,-1,53,-28,53,-66r0,-97r19,0r0,173r-19,0r0,-35v-16,48,-77,55,-102,12r0,82r-19,0r0,-232r19,0v4,67,-21,166,49,163"},"\u2202":{"d":"167,-85v1,52,-32,88,-76,89v-42,0,-78,-37,-78,-81v0,-72,95,-109,132,-50v-15,-53,-56,-91,-111,-98r2,-17v84,8,129,73,131,157xm93,-143v-34,0,-61,30,-61,67v0,36,27,66,59,66v33,0,58,-29,58,-68v0,-37,-24,-65,-56,-65"},"\u2211":{"d":"212,-270r0,79r-17,0r-1,-61r-162,0r91,154r-91,171r165,0r1,-61r18,0r0,78r-205,0r0,-20r90,-168r-90,-153r0,-19r201,0","w":240},"\u220f":{"d":"13,-270r221,0r0,17r-28,0r0,326r28,0r0,17r-77,0r0,-17r30,0r0,-326r-128,0r0,326r30,0r0,17r-76,0r0,-17r28,0r0,-326r-28,0r0,-17","w":246},"\u03c0":{"d":"35,0r0,-156r-26,0r0,-16r180,0r0,16r-26,0r0,156r-19,0r0,-156r-90,0r0,156r-19,0","w":197},"\u222b":{"d":"99,28v2,53,-6,55,-41,62v-7,0,-10,-1,-17,-4r4,-17v26,11,36,-2,36,-38r0,-239v-6,-61,16,-64,58,-58r-4,17v-30,-11,-36,4,-36,45r0,232"},"\u00aa":{"d":"90,-243v56,0,29,64,40,110r-14,0v-2,-5,-3,-8,-3,-13v-17,28,-67,17,-66,-16v0,-23,18,-33,66,-41v1,-18,-4,-27,-23,-27v-15,0,-23,5,-25,18r-14,0v2,-21,15,-31,39,-31xm83,-143v24,1,32,-20,30,-49v-38,7,-51,15,-51,30v0,12,8,19,21,19xm42,-114r93,0r0,12r-93,0r0,-12"},"\u00ba":{"d":"90,-243v27,0,46,23,46,56v0,34,-19,57,-47,57v-27,0,-45,-24,-45,-57v0,-33,18,-56,46,-56xm90,-230v-19,0,-32,17,-32,43v0,26,13,44,31,44v19,0,32,-17,32,-44v0,-26,-12,-43,-31,-43xm44,-114r92,0r0,12r-92,0r0,-12"},"\u03a9":{"d":"137,-15v43,-23,74,-60,74,-114v0,-56,-41,-100,-91,-100v-52,0,-91,43,-91,100v0,48,24,86,74,114r0,15r-93,0r0,-17r70,0v-46,-27,-70,-64,-70,-113v0,-65,48,-116,110,-116v62,0,110,51,110,116v0,49,-25,87,-71,113r71,0r0,17r-93,0r0,-15","w":240},"\u2126":{"d":"137,-15v43,-23,74,-60,74,-114v0,-56,-41,-100,-91,-100v-52,0,-91,43,-91,100v0,48,24,86,74,114r0,15r-93,0r0,-17r70,0v-46,-27,-70,-64,-70,-113v0,-65,48,-116,110,-116v62,0,110,51,110,116v0,49,-25,87,-71,113r71,0r0,17r-93,0r0,-15","w":240},"\u00e6":{"d":"119,-99v1,-38,-1,-60,-35,-59v-23,0,-38,11,-44,32r-17,0v0,-55,101,-67,112,-17v36,-64,133,-25,119,59r-115,0v-10,67,69,97,95,43r18,4v-13,53,-104,54,-122,4v-19,52,-110,48,-112,-8v-1,-37,40,-59,101,-58xm139,-99r94,0v-1,-37,-18,-59,-45,-59v-26,0,-45,23,-49,59xm72,-13v35,-1,50,-29,47,-71v-53,0,-82,14,-82,42v0,18,14,29,35,29","w":271},"\u00f8":{"d":"14,0r19,-24v-35,-53,-7,-151,56,-151v19,0,34,6,47,19v6,-7,10,-17,27,-14r-19,25v36,51,8,149,-56,149v-18,0,-34,-6,-46,-18v-6,8,-11,17,-28,14xm46,-40r79,-101v-37,-40,-91,-5,-88,59v0,16,3,29,9,42xm132,-130r-79,102v38,36,88,3,88,-60v0,-17,-3,-29,-9,-42","w":177},"\u00bf":{"d":"83,-170v10,0,18,8,18,18v0,10,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18xm92,-79v13,43,-50,70,-50,101v0,18,13,30,33,30v23,0,35,-11,38,-36r18,0v-1,35,-22,55,-57,55v-33,0,-53,-19,-53,-50v0,-18,6,-31,31,-53v22,-20,21,-32,21,-70r19,0r0,23","w":147},"\u00a1":{"d":"55,70r-21,0r4,-173r15,0xm45,-170v10,0,18,8,18,18v0,10,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18","w":89},"\u00ac":{"d":"149,0r0,-79r-137,0r0,-17r156,0r0,96r-19,0"},"\u221a":{"d":"240,-298r0,17r-73,0r-84,281r-21,0r-34,-112r-28,0r0,-17r44,0r29,101r79,-270r88,0","w":240},"\u0192":{"d":"121,-170r36,0r0,18r-39,0v-12,56,-20,142,-38,186v-17,23,-45,23,-74,8r4,-20v38,25,55,6,64,-44r23,-130r-33,0r0,-18r36,0v5,-52,24,-106,81,-81r-4,18v-45,-26,-49,24,-56,63","w":187},"\u2248":{"d":"127,-127v-6,7,-57,-26,-77,-26v-13,0,-22,7,-34,28r-12,-7v13,-27,27,-39,47,-39v13,-4,66,30,78,27v14,0,23,-7,35,-27r12,6v-13,26,-28,38,-49,38xm127,-72v-6,7,-57,-26,-77,-26v-13,0,-23,8,-34,28r-12,-7v13,-26,27,-39,47,-39v13,-4,66,30,78,27v14,0,23,-7,35,-27r12,7v-13,26,-29,37,-49,37"},"\u0394":{"d":"12,0r98,-240r20,0r99,240r-217,0xm38,-17r164,0r-82,-200","w":240},"\u2206":{"d":"12,0r98,-240r20,0r99,240r-217,0xm38,-17r164,0r-82,-200","w":240},"\u00ab":{"d":"99,0r-12,0r-30,-84r30,-86r12,0r-26,86xm60,0r-12,0r-31,-84r31,-86r12,0r-27,86","w":124},"\u00bb":{"d":"25,-170r12,0r31,84r-31,86r-12,0r26,-86xm64,-170r13,0r30,84r-30,86r-13,0r27,-86","w":124},"\u2026":{"d":"46,-33v10,0,19,9,19,19v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18v0,-10,8,-19,18,-19xm123,-33v10,0,19,9,19,19v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18v0,-10,8,-19,18,-19xm201,-33v10,0,18,9,18,19v0,10,-8,18,-18,18v-10,0,-19,-8,-19,-18v0,-10,9,-19,19,-19","w":246},"\u0152":{"d":"188,-205r0,-35r123,0r0,18r-103,0r0,89r97,0r0,18r-97,0r0,97r105,0r0,18r-125,0r0,-35v-56,81,-167,28,-167,-84v0,-114,109,-167,167,-86xm115,-226v-44,0,-72,42,-72,105v0,66,28,107,73,107v43,0,71,-42,71,-106v0,-65,-28,-106,-72,-106","w":330},"\u0153":{"d":"274,-81r-115,0v-5,71,70,90,95,40r18,3v-18,56,-102,55,-124,2v-33,74,-130,39,-130,-49v0,-89,100,-124,131,-48v28,-70,132,-46,126,40v0,2,-1,7,-1,12xm159,-97r94,0v0,-38,-17,-61,-45,-61v-27,0,-45,22,-49,61xm89,-158v-31,0,-52,29,-52,73v0,43,21,72,52,72v30,0,49,-28,49,-72v0,-43,-20,-73,-49,-73","w":292},"\u2013":{"d":"28,-98r124,0r0,15r-124,0r0,-15"},"\u2014":{"d":"0,-98r200,0r0,15r-200,0r0,-15","w":200},"\u201c":{"d":"102,-244r23,0v-16,15,-27,30,-29,42v12,-1,20,7,21,18v0,11,-9,19,-20,19v-37,-9,-19,-55,5,-79xm48,-244r23,0v-16,15,-27,30,-29,42v12,-1,20,7,21,18v0,11,-9,19,-20,19v-37,-9,-19,-55,5,-79","w":138},"\u201d":{"d":"36,-165r-22,0v15,-14,26,-30,28,-42v-12,1,-20,-7,-21,-18v0,-11,9,-19,20,-19v37,9,19,55,-5,79xm95,-165r-23,0v15,-14,26,-30,28,-42v-12,1,-19,-7,-20,-18v0,-11,9,-19,20,-19v37,9,19,55,-5,79","w":143},"\u2018":{"d":"48,-244r23,0v-16,15,-27,30,-29,42v12,-1,20,7,21,18v0,11,-9,19,-20,19v-37,-9,-19,-55,5,-79","w":84},"\u2019":{"d":"36,-165r-22,0v15,-14,26,-30,28,-42v-12,1,-20,-7,-21,-18v0,-11,9,-19,20,-19v37,9,19,55,-5,79","w":84},"\u00f7":{"d":"78,-72v0,-21,31,-18,30,0v0,8,-7,14,-15,14v-8,0,-15,-6,-15,-14xm94,-183v20,1,17,31,-1,30v-8,0,-15,-6,-15,-14v0,-9,7,-16,16,-16xm19,-128r148,0r0,14r-148,0r0,-14","w":187},"\u25ca":{"d":"120,-249r93,129r-93,129r-93,-129xm120,-217r-71,97r71,97r71,-97","w":240},"\u2044":{"d":"82,-234r17,0r-138,234r-17,0","w":42},"\u2215":{"d":"82,-234r17,0r-138,234r-17,0","w":42},"\u00a4":{"d":"24,-43r32,-33v-25,-32,-26,-71,0,-103r-33,-33r11,-12r33,34v33,-27,72,-27,105,-1r33,-33r12,12r-33,33v24,32,25,71,0,103r33,33r-11,12r-34,-33v-33,25,-70,24,-104,0r-33,33xm121,-192v-36,0,-65,29,-65,65v0,35,29,63,64,63v35,0,64,-28,64,-63v0,-35,-28,-65,-63,-65","w":240},"\u2039":{"d":"57,0r-13,0r-31,-84r31,-86r13,0r-26,86","w":79},"\u203a":{"d":"22,-170r14,0r30,84r-30,86r-14,0r26,-86","w":79},"\u2021":{"d":"81,-234r18,0r0,43r69,0r0,17r-69,0r0,156r69,0r0,17r-69,0r0,49r-18,0r0,-49r-69,0r0,-17r69,0r0,-156r-69,0r0,-17r69,0r0,-43"},"\u00b7":{"d":"46,-109v10,0,19,9,19,19v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18v0,-10,8,-19,18,-19","w":92},"\u2219":{"d":"46,-109v10,0,19,9,19,19v0,10,-9,18,-19,18v-10,0,-18,-8,-18,-18v0,-10,8,-19,18,-19","w":92},"\u201a":{"d":"36,43r-22,0v16,-15,26,-30,28,-42v-12,1,-20,-7,-21,-18v0,-10,9,-19,20,-19v12,0,21,10,21,24v0,17,-8,34,-26,55","w":84},"\u201e":{"d":"36,43r-22,0v16,-15,26,-30,28,-42v-12,1,-20,-7,-21,-18v0,-10,9,-19,20,-19v12,0,21,10,21,24v0,17,-8,34,-26,55xm95,43r-23,0v16,-15,26,-30,28,-42v-12,1,-19,-7,-20,-18v0,-10,9,-19,20,-19v37,10,19,54,-5,79","w":143},"\u2030":{"d":"157,-240r17,0r-142,240r-17,0xm138,-113v24,0,44,26,44,58v0,33,-19,57,-44,57v-24,0,-44,-25,-44,-57v0,-32,19,-58,44,-58xm138,-97v-15,0,-26,18,-26,42v0,24,12,41,26,41v15,0,26,-17,26,-41v0,-24,-11,-42,-26,-42xm240,-113v24,0,44,26,44,58v0,33,-19,57,-44,57v-24,0,-44,-25,-44,-57v0,-32,19,-58,44,-58xm240,-97v-15,0,-26,18,-26,42v0,24,12,41,26,41v15,0,26,-17,26,-41v0,-24,-11,-42,-26,-42xm51,-242v25,0,44,24,44,57v0,33,-19,58,-44,58v-24,0,-43,-26,-43,-58v0,-32,19,-57,43,-57xm51,-226v-15,0,-25,17,-25,41v0,24,11,42,25,42v15,0,26,-18,26,-42v0,-24,-11,-41,-26,-41","w":291},"\u0131":{"d":"27,-170r21,0r0,170r-21,0r0,-170","w":74},"\u02c6":{"d":"37,-201r40,-49r26,0r40,49r-19,0r-34,-35r-34,35r-19,0"},"\u02dc":{"d":"114,-204v-21,1,-56,-49,-64,0r-13,-3v4,-24,14,-37,30,-37v23,-1,55,50,62,-2r14,4v-3,24,-14,38,-29,38"},"\u00af":{"d":"42,-234r96,0r0,17r-96,0r0,-17"},"\u02c9":{"d":"42,-234r96,0r0,17r-96,0r0,-17"},"\u02d8":{"d":"47,-248r14,0v6,38,52,38,58,0r14,0v-3,30,-19,48,-42,48v-24,0,-41,-19,-44,-48"},"\u02d9":{"d":"90,-242v9,0,17,7,17,17v0,9,-8,17,-17,17v-10,0,-17,-8,-17,-17v0,-10,7,-17,17,-17"},"\u02da":{"d":"90,-260v18,0,32,14,32,32v0,18,-14,33,-32,33v-18,0,-32,-15,-32,-33v0,-18,14,-32,32,-32xm90,-246v-10,0,-18,8,-18,18v0,10,8,18,18,18v10,0,18,-8,18,-18v0,-10,-8,-18,-18,-18"},"\u00b8":{"d":"85,0r15,0r-11,21v21,3,31,10,31,25v2,27,-36,34,-60,23r0,-12v18,6,37,4,38,-13v0,-10,-7,-15,-28,-16"},"\u02dd":{"d":"63,-201r31,-46r24,0r-37,46r-18,0xm100,-201r31,-46r24,0r-37,46r-18,0"},"\u02db":{"d":"69,33v0,-21,23,-37,54,-33v-23,9,-34,18,-34,30v-1,15,20,19,35,14r0,15v-26,9,-55,-2,-55,-26"},"\u02c7":{"d":"143,-250r-40,49r-26,0r-40,-49r19,0r34,35r34,-35r19,0"},"\u0141":{"d":"32,-122r0,-118r21,0r0,106r53,-39r0,21r-53,39r0,95r102,0r0,18r-123,0r0,-102r-24,18r0,-20","w":166},"\u0142":{"d":"27,-131r0,-110r21,0r0,100r25,-19r0,19r-25,19r0,122r-21,0r0,-112r-26,19r0,-19","w":74},"\u00a6":{"d":"81,-240r18,0r0,118r-18,0r0,-118xm81,-55r18,0r0,115r-18,0r0,-115"},"\u00d0":{"d":"203,-120v0,93,-55,131,-171,120r0,-117r-24,0r0,-17r24,0r0,-106v47,0,100,-2,117,14v33,19,54,59,54,106xm180,-120v-3,-77,-32,-109,-128,-102r0,88r65,0r0,17r-65,0r0,99v84,7,131,-26,128,-102","w":223},"\u00f0":{"d":"91,-222r27,-16r8,14r-26,14v25,32,60,72,60,123v0,55,-28,91,-71,91v-42,0,-71,-36,-71,-89v0,-60,36,-103,89,-86r-23,-30r-26,16r-9,-13r27,-15r-15,-21r13,-8xm141,-85v-1,-36,-15,-72,-50,-73v-33,0,-54,28,-54,73v0,44,21,72,52,72v31,0,52,-29,52,-72","w":177},"\u00de":{"d":"173,-141v0,61,-44,73,-121,68r0,73r-20,0r0,-240r20,0r0,28v78,-4,121,9,121,71xm151,-142v-2,-51,-34,-54,-99,-52r0,103v58,2,101,1,99,-51","w":184},"\u00fe":{"d":"27,71r0,-312r19,0r0,97v37,-65,115,-21,115,60v0,82,-77,118,-115,59r0,96r-19,0xm94,-158v-30,0,-49,29,-49,73v0,43,21,72,50,72v29,0,46,-26,46,-71v0,-45,-19,-74,-47,-74","w":177},"\u2212":{"d":"19,-128r148,0r0,14r-148,0r0,-14","w":187},"\u00d7":{"d":"104,-121r52,52r-11,10r-51,-52r-52,52r-10,-10r52,-52r-52,-51r10,-11r52,52r51,-52r10,11","w":187},"\u00b9":{"d":"29,-204r0,-11v19,-1,27,-6,30,-20r12,0r0,141r-15,0r0,-110r-27,0","w":123},"\u00b2":{"d":"21,-105v5,-8,73,-81,69,-97v0,-13,-11,-20,-26,-20v-18,0,-27,9,-28,31r-14,0v0,-30,15,-45,43,-45v47,0,50,37,17,78r-41,51r67,0r0,13r-87,0r0,-11","w":123},"\u00b3":{"d":"34,-197r-15,0v1,-26,16,-39,42,-39v41,0,56,50,22,66v44,15,26,81,-22,78v-29,-2,-48,-15,-46,-43r14,0v0,20,11,30,31,30v20,0,32,-11,32,-29v0,-21,-16,-30,-41,-28r0,-14v21,2,35,-6,35,-24v0,-14,-9,-22,-25,-22v-17,0,-25,7,-27,25","w":123},"\u00bd":{"d":"29,-204r0,-11v19,-1,27,-6,30,-20r12,0r0,141r-15,0r0,-110r-27,0xm205,-234r18,0r-138,234r-17,0xm272,-108v0,23,-54,79,-64,95r67,0r0,13r-87,0v-2,-16,9,-19,14,-28v3,-7,67,-78,54,-80v0,-12,-10,-21,-25,-21v-18,0,-27,9,-28,31r-14,0v0,-30,15,-44,43,-44v24,0,40,14,40,34","w":290},"\u00bc":{"d":"29,-204r0,-11v19,-1,27,-6,30,-20r12,0r0,141r-15,0r0,-110r-27,0xm205,-234r18,0r-138,234r-17,0xm254,-49r25,0r0,14r-25,0r0,36r-15,0r0,-36r-61,0r0,-11r62,-95r14,0r0,92xm239,-49r0,-69r-44,69r44,0","w":290},"\u00be":{"d":"34,-197r-15,0v1,-26,16,-39,42,-39v41,0,56,50,22,66v44,15,26,81,-22,78v-29,-2,-48,-15,-46,-43r14,0v0,20,11,30,31,30v20,0,32,-11,32,-29v0,-21,-16,-30,-41,-28r0,-14v21,2,35,-6,35,-24v0,-14,-9,-22,-25,-22v-17,0,-25,7,-27,25xm205,-234r18,0r-138,234r-17,0xm254,-49r25,0r0,14r-25,0r0,36r-15,0r0,-36r-61,0r0,-11r62,-95r14,0r0,92xm239,-49r0,-69r-44,69r44,0","w":290},"\u00c4":{"d":"92,-242r16,0r83,242r-22,0r-23,-68r-92,0r-24,68r-21,0xm140,-86r-40,-127r-41,127r81,0xm68,-304v10,0,18,8,18,18v0,10,-8,19,-18,19v-10,0,-18,-9,-18,-19v0,-10,8,-18,18,-18xm132,-304v10,0,18,8,18,18v0,10,-9,19,-19,19v-10,0,-18,-9,-18,-19v0,-10,9,-18,19,-18","w":199},"\u00a0":{"w":90}}});

Cufon.registerFont({"w":164,"face":{"font-family":"diego","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","cap-height":"2","bbox":"-97.1752 -350.971 361 91.0577","underline-thickness":"7.2","underline-position":"-44.28","unicode-range":"U+0020-U+203A"},"glyphs":{" ":{"w":105},"\u00d7":{"w":0},"\u0141":{"w":0},"\u00fd":{"w":0},"!":{"d":"4,-60v7,-50,5,-112,5,-171v0,-14,9,-17,18,-18v26,18,-5,87,6,135r-3,58v-3,12,-27,6,-26,-4xm37,-21v3,28,-37,31,-40,7v1,-9,8,-24,17,-25v12,0,25,4,23,18","w":62},"\"":{"d":"12,-217v-18,-1,-9,-31,-14,-49v1,-11,13,-7,23,-7v4,15,0,32,1,50v0,5,-5,6,-10,6xm55,-226v-6,14,-27,10,-23,-9v3,-13,-8,-40,13,-38v25,3,5,26,10,47","w":64},"#":{"d":"169,-98r1,26r-40,-6r-11,78r-26,1r16,-79r-48,0r-12,78r-30,1r21,-79r-39,0r0,-20r42,0r8,-48r-40,0r0,-20r43,0r11,-72r29,-2r-19,74r47,0r11,-72r25,0r-15,72r37,-5r-2,25r-38,0r-7,48r36,0xm120,-146r-48,0r-8,48r48,0","w":172},"$":{"d":"27,-122v-41,-11,-22,-66,17,-63v44,14,-4,-69,47,-47v2,21,-16,58,22,49v14,1,30,5,30,18v0,6,-5,7,-11,7v-35,-2,-73,-6,-104,2v1,11,22,11,32,15v33,14,88,14,91,55v3,35,-38,40,-66,45v-1,16,-4,35,1,48v0,9,-7,11,-16,11v-21,-1,-9,-37,-12,-62v-20,-7,-45,-10,-58,-21v-1,-10,-3,-13,4,-20v32,11,96,30,125,4v2,-27,-81,-31,-102,-41","w":145},"%":{"d":"41,-129v-47,-4,-41,-102,8,-102v45,5,39,103,-8,102xm150,-228v-34,2,-42,34,-77,9v-6,-5,-10,-8,-19,-9v14,19,53,38,76,12r-104,175r13,0xm133,-41v-51,-5,-38,-103,8,-102v43,4,41,105,-8,102xm132,-49v33,-1,40,-82,6,-84v-18,-1,-25,28,-25,48v1,13,2,37,19,36xm40,-138v34,-1,40,-84,6,-84v-18,0,-25,28,-25,49v1,13,3,36,19,35","w":271},"&":{"d":"109,-12v-50,27,-132,7,-104,-54v9,-20,26,-37,37,-53v4,-3,-17,-48,-15,-51v-1,-38,25,-70,59,-70v21,0,37,24,36,46v-1,35,-29,55,-44,76v11,23,30,52,45,72v6,3,40,-24,42,-8v14,16,-5,21,-22,28v-2,8,12,28,-5,31v-7,4,-24,-18,-29,-17xm63,-147v15,-10,37,-38,38,-59v0,-7,-3,-10,-9,-10v-19,2,-57,33,-34,56xm27,-33v0,21,41,2,51,3v4,-1,9,-4,15,-8r-34,-51v-15,21,-27,35,-32,56","w":176},"'":{"d":"12,-218v-20,3,-10,-21,-14,-37v-5,-20,25,-27,25,-6v0,14,-6,22,-3,35v1,5,-2,9,-8,8","w":33},"(":{"d":"60,35v-60,-23,-76,-137,-43,-204v10,-23,20,-59,47,-61v15,14,-11,32,-13,49v-28,58,-30,176,22,205v3,7,-7,11,-13,11","w":89},")":{"d":"11,-233v86,35,69,224,3,265v-13,2,-14,-10,-6,-22v38,-56,51,-193,-9,-231v-3,-7,7,-12,12,-12","w":89},"*":{"d":"155,-135v0,23,-27,12,-30,-1v-8,-12,-16,-17,-33,-29v-3,26,15,47,5,67v-8,17,-26,0,-24,-12v4,-15,13,-35,14,-55v-18,9,-29,37,-46,41v-16,1,-25,-20,-11,-28v17,-9,30,-3,54,-17v-16,-16,-53,-10,-60,-32v0,-10,9,-14,18,-15v24,2,26,32,45,42v-1,-28,-4,-26,-14,-57v-4,-13,23,-21,30,-8v11,22,-14,38,-10,65v23,-8,30,-26,51,-36v10,0,13,7,14,15v-2,28,-43,16,-62,27v18,15,59,6,59,33","w":152},"+":{"d":"90,-105r0,-79r23,0r0,79r79,0r0,23r-79,0r0,79r-23,0r0,-79r-79,0r0,-23r79,0","w":188},",":{"d":"19,-20v5,-18,15,-7,23,-2v-7,24,-14,41,-31,62v-26,-14,7,-41,8,-60","w":50},"-":{"d":"104,-70r-89,0r0,-23r89,0r0,23","w":106},"\u00ad":{"d":"104,-70r-89,0r0,-23r89,0r0,23","w":106},".":{"d":"31,-14v0,11,-5,17,-15,17v-18,0,-25,-36,-4,-35v11,-4,19,6,19,18","w":40},"\/":{"d":"25,-7r-22,6r83,-262r24,-7","w":128},"0":{"d":"-3,-108v0,-67,33,-140,93,-140v54,0,82,53,82,114v1,66,-28,133,-94,137v-54,3,-81,-57,-81,-111xm93,-225v-46,0,-66,68,-65,121v0,40,12,88,52,87v52,-2,64,-76,64,-127v0,-39,-15,-81,-51,-81","w":204},"1":{"d":"30,-3v-9,15,-35,6,-29,-16r4,-215v-1,-16,11,-23,23,-24v16,53,-6,179,2,255","w":60},"2":{"d":"47,-192v-11,29,-24,19,-37,7v12,-37,52,-67,95,-67v40,0,68,56,48,97v-19,38,-77,80,-110,110v-6,6,-10,11,-10,16v27,7,76,-5,101,-6v13,1,18,2,20,14v3,18,-22,16,-37,14v-34,4,-70,5,-99,13v-18,-4,-25,-35,-12,-50v37,-41,71,-66,108,-111v13,-16,20,-29,20,-40v-4,-47,-76,-25,-87,3","w":182},"3":{"d":"120,-205v-39,-10,-98,12,-108,-10v8,-29,68,-17,103,-22v35,-5,60,24,36,46v-13,12,-41,25,-54,35v27,15,81,25,70,87v-7,39,-26,70,-81,70v-37,0,-74,-15,-83,-41v7,-24,41,11,54,9v39,9,88,-2,85,-42v-3,-43,-52,-68,-94,-50v-7,1,-12,-6,-11,-12v12,-32,63,-48,83,-70","w":201},"4":{"d":"6,-41v-18,-10,-7,-30,7,-48r70,-91v18,-20,39,-49,59,-65v5,2,31,2,26,15r-7,142v10,7,39,-5,31,26v-20,4,-41,-5,-34,32v3,19,0,32,-20,32v-22,0,-1,-37,-11,-59v-40,-2,-88,13,-121,16xm95,-83v16,-2,46,4,35,-26v-1,-28,6,-64,1,-88r-92,119","w":214},"5":{"d":"4,-149v14,-48,-30,-96,23,-93r106,7v9,1,12,10,12,27r-110,-2v-1,17,-8,37,-4,52v77,-43,177,49,111,128v-21,40,-122,49,-145,3v4,-29,56,3,77,1v31,-3,64,-29,62,-61v-2,-30,-22,-59,-57,-55v-27,-2,-46,15,-63,22v-10,-3,-11,-14,-12,-29","w":179},"6":{"d":"87,3v-45,0,-87,-39,-87,-90v-1,-79,60,-128,98,-164v8,0,31,20,10,27v-13,12,-36,31,-42,50v62,-21,115,14,114,73v-2,60,-34,104,-93,104xm96,-158v-16,-2,-36,20,-50,18v-24,48,-20,118,41,119v41,0,59,-37,62,-79v2,-34,-25,-55,-53,-58","w":204},"7":{"d":"116,-201v-31,-7,-79,0,-117,3v-6,0,-9,-3,-8,-10v19,-28,110,-29,150,-20v36,8,-5,51,-12,61r-112,170v-7,-2,-29,-12,-15,-24v34,-53,59,-106,98,-155v9,-11,14,-19,16,-25","w":173},"8":{"d":"-1,-67v0,-41,26,-59,41,-78v1,-14,-35,-31,-28,-54v-7,-41,39,-51,63,-52v34,-2,97,27,85,59r-64,40v15,28,68,41,67,87v-1,39,-37,70,-76,68v-40,-2,-88,-28,-88,-70xm128,-208v-27,-14,-118,-22,-81,24v23,29,39,-3,62,-11v8,-3,15,-9,19,-13xm25,-65v1,47,114,59,114,7v0,-32,-35,-49,-55,-64v-29,-22,-50,29,-59,57","w":182},"9":{"d":"-2,-146v3,-55,34,-102,85,-102v47,0,95,39,95,92v0,65,-57,122,-89,152v-14,13,-25,3,-28,-9r49,-56v-58,20,-116,-13,-112,-77xm131,-103v30,-45,13,-127,-46,-120v-37,5,-56,40,-57,79v0,38,21,54,54,57v19,2,32,-16,49,-16","w":204},":":{"d":"16,-73v-10,1,-15,-7,-16,-17v0,-10,7,-17,16,-17v10,0,17,9,16,19v0,11,-7,15,-16,15xm31,-12v2,20,-27,18,-30,3v-3,-10,2,-21,12,-22v10,0,18,9,18,19","w":43},";":{"d":"30,-72v-18,1,-22,-38,-3,-37v18,0,29,32,6,37r-3,0xm0,32r27,-59v11,2,29,18,13,35v-15,16,-9,18,-22,32v-4,2,-15,-8,-18,-8","w":67},"<":{"d":"140,-81r0,24r-137,-70r0,-15r137,-71r0,25r-116,53","w":155},"=":{"d":"138,-142r8,18r-143,0r-1,-18r136,0xm147,-90r-9,18r-136,0r0,-18r145,0","w":145},">":{"d":"1,-190r0,-25r138,71r0,15r-138,71r0,-25r116,-53","w":155},"?":{"d":"14,-208v-17,-5,-11,-29,4,-33v25,-17,49,-35,84,-36v39,-1,71,34,69,73v-2,48,-54,76,-93,88v-22,7,14,59,-25,51v-17,-4,-8,-48,-3,-65v47,-24,86,-35,100,-84v1,-19,-17,-30,-38,-30v-45,0,-68,25,-98,36xm53,0v-15,0,-20,-37,-4,-41v21,-5,35,9,22,27v-6,8,-9,12,-18,14","w":176},"@":{"d":"127,-152v-21,2,-43,16,-58,24v-11,-25,32,-37,56,-44v39,3,30,55,28,94v6,36,-24,21,-53,26v-24,-1,-39,-13,-40,-37v0,-35,41,-40,75,-35v1,-11,7,-29,-8,-28xm149,-53v-8,0,-17,-5,-12,-14r-19,5v3,12,11,21,28,20v39,-5,55,-41,51,-85v-3,-40,-36,-69,-81,-69v-65,0,-112,41,-118,102v-8,84,107,109,177,77r-5,-17v-38,25,-128,23,-142,-19v-24,-70,24,-140,97,-133v33,3,65,35,63,71v-2,29,-12,57,-39,62xm134,-109v-27,-3,-55,5,-60,24v11,26,75,15,60,-24","w":193},"A":{"d":"-1,-78v-1,-21,34,-6,34,-29v13,-49,38,-116,60,-157v20,-1,31,-6,35,17v13,84,36,166,57,240v-3,5,-25,9,-30,3v-8,-21,-11,-48,-23,-64v-24,-1,-88,-13,-84,12r-16,60v-22,-1,-36,-2,-24,-32v5,-13,7,-26,9,-36v-12,-1,-14,-7,-18,-14xm100,-209r-40,111r66,-5","w":187},"B":{"d":"69,6v-26,-6,-60,9,-59,-30r5,-197v-11,0,-16,-2,-15,-12v2,-22,6,-23,41,-23v67,-1,132,12,132,73v0,31,-26,36,-36,52v27,10,50,32,51,65v-1,57,-64,68,-119,72xm145,-181v15,-41,-57,-49,-97,-41v-7,20,1,50,-7,70v23,22,86,-11,104,-29xm82,-118v-27,2,-46,0,-40,37v4,28,-16,67,28,56v41,-10,96,-9,96,-50v0,-29,-51,-45,-84,-43","w":192},"C":{"d":"-1,-108v10,-74,35,-149,101,-153v47,-3,67,40,71,80v2,15,-23,21,-29,8v3,-38,-17,-79,-54,-60v-39,20,-52,75,-56,130v-4,56,28,95,78,73v25,-11,24,-46,42,-60v39,5,8,51,-2,64v-11,13,-30,27,-55,27v-70,0,-90,-49,-96,-109","w":183},"D":{"d":"21,-222v-5,-1,-23,0,-20,-9v0,-20,9,-26,32,-24v143,-20,195,164,88,239v-16,11,-62,28,-83,13v-27,6,-24,-15,-23,-41r1,-131xm46,-29v74,15,124,-76,99,-150v-11,-33,-49,-42,-94,-43v-9,54,0,121,-7,180v0,5,0,9,2,13","w":182},"E":{"d":"14,-219v2,-12,-16,-4,-15,-16v8,-51,87,-14,139,-21v22,-3,26,24,13,30v-29,-4,-68,-3,-98,-3v-25,0,-4,43,-11,72v7,26,89,-17,105,22v-6,24,-65,7,-95,10v-25,2,-8,48,-13,81v-1,12,2,12,10,12v36,-3,65,-1,104,-1v17,0,21,1,21,14v-1,25,-39,12,-69,14r-82,6v-24,3,-15,-24,-15,-44v0,-58,-1,-124,6,-176","w":169},"F":{"d":"4,-236v-13,-10,-2,-37,21,-29v31,-7,99,4,129,6v10,0,25,26,6,28v-30,-8,-72,0,-102,-6v-25,3,-10,49,-13,75v3,9,18,5,30,5v39,2,75,-6,73,27r-103,0r-1,108v-1,14,-1,24,-13,24v-38,0,-14,-90,-18,-131v-3,-34,0,-77,5,-100v1,-8,-9,-9,-14,-7","w":169},"G":{"d":"91,4v-95,0,-114,-149,-65,-219v31,-45,32,-62,83,-65v33,-2,74,32,73,64v3,17,-15,23,-28,18v-7,-26,-11,-59,-41,-59v-75,0,-100,141,-65,209v14,28,55,44,81,19v20,-19,26,-48,31,-81v2,-16,-15,-11,-30,-12v-2,-2,-64,11,-61,-7v4,-25,52,-12,85,-17v18,1,42,-2,41,17v-3,11,-15,9,-10,34v-2,61,-32,99,-94,99","w":200},"H":{"d":"134,-142v43,7,9,-54,25,-97v4,-10,0,-25,13,-26v17,-2,17,12,16,30r-9,228v2,10,-12,12,-20,12v-21,-18,1,-81,-9,-121r-89,-2v-28,-1,-10,36,-13,67v-3,27,0,54,-20,56v-23,2,-9,-48,-11,-66v-2,-18,3,-39,-1,-54v-21,7,-23,-22,-8,-26v19,2,11,-19,14,-35v3,-18,-6,-96,20,-87v32,11,6,73,8,110v1,16,2,11,21,11r63,0","w":196},"I":{"d":"9,-231v0,-18,7,-25,21,-26v15,-2,11,21,10,32r-6,210v4,20,-19,26,-29,17v-7,-71,4,-157,4,-233","w":63},"J":{"d":"10,-47v19,10,68,42,91,14v9,-46,8,-133,4,-203v-1,-18,7,-20,18,-21v30,9,16,64,17,103v3,86,3,153,-69,162v-30,-4,-62,-20,-72,-44v0,-3,5,-13,11,-11","w":160},"K":{"d":"26,-249v24,6,4,66,9,96v32,-18,52,-51,85,-70v9,-6,28,-29,42,-29v6,1,15,6,13,15r-120,106v19,25,44,31,68,60v20,23,52,36,61,69v0,3,-2,7,-3,11r-148,-109v-2,36,7,118,-24,105v-18,-19,-9,-70,-8,-106r4,-125v-3,-17,9,-22,21,-23","w":194},"L":{"d":"81,0v-40,-7,-79,24,-77,-32r6,-213v0,-13,9,-16,17,-16v14,0,13,14,13,30r-3,175v0,9,1,17,2,24r73,3v19,1,34,0,37,14v0,5,-2,11,-9,11v-22,-1,-42,3,-59,4","w":147},"M":{"d":"27,2v-10,10,-30,1,-24,-20v2,-73,14,-144,20,-213v2,-22,44,-25,47,4v6,61,26,104,39,160v19,-46,37,-132,57,-174v13,-15,53,-6,42,23r18,201v3,18,-26,27,-28,9r-16,-187v-26,49,-39,125,-57,180v-33,6,-34,-15,-44,-52v-10,-38,-18,-92,-34,-119v-10,47,-12,135,-20,188","w":229},"N":{"d":"127,-68r3,-151v-7,-40,30,-52,29,-11r-3,192v-2,18,-5,47,-31,34v-32,-51,-62,-124,-82,-183v-4,-11,-8,-17,-12,-20v-4,47,-6,126,-3,197v0,9,-2,16,-12,16v-33,-3,-17,-62,-16,-101r4,-143v-1,-17,28,-9,44,-8v18,52,44,106,65,157v5,13,10,20,14,21","w":181},"O":{"d":"98,10v-72,0,-99,-62,-99,-130v0,-61,40,-144,103,-140v53,3,85,76,85,132v0,61,-32,138,-89,138xm136,-43v31,-61,29,-187,-42,-191v-79,20,-84,200,-10,220v25,7,42,-10,52,-29","w":199},"P":{"d":"0,-226v0,-33,51,-17,79,-25v59,5,149,35,122,109v-14,38,-90,58,-157,56v-3,31,12,85,-13,92v-34,-8,-8,-70,-16,-110r2,-111v-12,5,-16,-1,-17,-11xm173,-155v33,-50,-55,-64,-105,-64v-37,0,-16,29,-19,58v-2,23,-24,57,24,45v40,-10,82,-12,100,-39","w":206},"Q":{"d":"121,-3v-81,30,-131,-50,-120,-144v7,-60,36,-120,97,-118v99,3,108,187,49,243v-2,16,47,27,20,51v-17,-7,-30,-28,-46,-32xm124,-36v42,-46,46,-206,-34,-206v-70,21,-81,174,-25,217v7,7,20,8,31,6v-1,-2,-22,-13,-20,-18v1,-6,13,-13,22,-13v12,0,17,12,26,14","w":199},"R":{"d":"27,-221v-4,-14,-28,9,-29,-11v4,-26,50,-27,80,-27v60,0,119,23,142,58v20,63,-40,95,-101,99v0,12,16,16,23,23v42,41,63,37,69,88v-51,-30,-92,-85,-152,-106v-3,0,-5,1,-6,1r0,93v-18,4,-30,6,-30,-22r1,-152xm196,-167v11,-61,-87,-61,-139,-57r-5,92v8,18,47,3,68,2v35,-1,67,-17,76,-37","w":235},"S":{"d":"14,-158v-43,-75,69,-113,151,-92v20,1,21,18,25,32v-48,-9,-123,-6,-156,22v-8,16,6,23,19,32v40,27,118,56,140,100v7,44,-13,76,-61,73v-48,-2,-101,-18,-117,-51v0,-4,3,-6,8,-8v27,10,69,27,107,27v26,0,51,-14,33,-37v-25,-31,-122,-67,-149,-98","w":205},"T":{"d":"61,-194v14,-66,-74,8,-62,-57v40,-1,79,0,117,0v17,0,39,-6,36,16v3,26,-30,12,-48,13v-15,-3,-13,9,-13,23r-2,196v0,12,-5,13,-15,13v-20,0,-18,-22,-17,-43","w":171},"U":{"d":"185,-231v11,106,4,263,-115,231v-33,-19,-68,-30,-66,-88v1,-50,-4,-116,4,-157v3,-6,20,-4,28,-3v6,30,0,52,1,86v3,64,-3,162,77,136v51,-16,38,-114,42,-186v1,-18,-12,-41,15,-39v8,0,13,7,14,20","w":201},"V":{"d":"5,-213v-12,-22,-6,-49,21,-37r57,195v3,13,7,19,11,20v21,-71,62,-148,87,-212v8,-20,44,-7,26,13r-91,233v-9,11,-53,16,-52,-10r-50,-162v-3,-12,-6,-25,-9,-40","w":218},"W":{"d":"249,-24v-9,15,-5,36,-27,36v-19,0,-22,-34,-28,-50v-11,-29,-24,-91,-32,-129v-25,44,-42,122,-65,166v-12,9,-43,10,-43,-13r-54,-216v1,-8,16,-11,25,-12v16,5,17,59,22,78r32,125v27,-49,50,-127,69,-180v6,-10,32,-9,35,3r27,130v3,18,7,33,12,43r91,-188r21,8","w":321},"X":{"d":"10,-6v-21,22,-44,-8,-21,-22v21,-24,38,-51,62,-72v25,-14,7,-36,-5,-51v-8,-9,-37,-61,-44,-71v12,-13,24,-25,34,-6v15,27,36,50,51,74v14,8,23,-16,31,-25v8,-9,62,-60,70,-68v50,20,-11,45,-23,65v-13,21,-43,38,-54,60v21,37,49,74,73,107v0,10,-18,33,-27,19v-20,-30,-51,-63,-68,-94v-22,2,-25,28,-44,43v-20,16,-18,24,-35,41","w":220},"Y":{"d":"188,-253v7,7,27,17,13,31r-140,229v-62,-22,50,-75,15,-110r-75,-137v3,-11,24,-21,31,-4v18,46,49,83,70,124","w":195},"Z":{"d":"60,-207v-22,-2,-60,18,-60,-10v0,-10,15,-13,46,-16v37,-3,75,-4,113,-6v25,-1,50,34,22,47v-47,41,-96,95,-141,140v-13,13,-18,17,-17,26v34,3,78,4,116,4v14,0,28,4,28,15v0,13,-7,11,-32,11v-46,0,-92,-2,-129,6v-25,-2,-33,-32,-14,-49v25,-22,32,-43,58,-66v17,-15,35,-38,49,-51v18,-16,39,-31,54,-51v-30,-3,-63,3,-93,0","w":211},"[":{"d":"28,-29v-3,27,21,20,44,21r0,8r-68,0r0,-265r68,0r0,8v-20,1,-44,-6,-44,18r0,210","w":97},"\\":{"d":"-27,-221r23,0r121,221r-23,0","w":132},"]":{"d":"46,-230v7,-30,-17,-27,-43,-26r0,-8r68,0r0,265r-68,0r0,-8v24,-1,43,6,43,-23r0,-200","w":97},"^":{"d":"28,-83r-24,0r62,-132r21,0r61,132r-24,0r-48,-109","w":168},"_":{"d":"180,48r-180,0r0,-18r180,0r0,18","w":188},"`":{"d":"6,-231v0,-22,27,-11,32,-2r49,50v-37,-2,-51,-27,-77,-40v-3,-3,-4,-6,-4,-8","w":117},"a":{"d":"12,-96v-11,-34,40,-49,74,-59v55,2,44,79,39,131v4,31,-15,25,-29,17v-37,17,-95,17,-95,-36v0,-51,53,-52,100,-48v0,-15,9,-38,-11,-37v-29,2,-57,23,-78,32xm100,-43v-4,-17,10,-28,-11,-28v-33,0,-63,11,-70,33v7,29,78,23,81,-5","w":147},"b":{"d":"0,-13r7,-184v-1,-11,6,-13,13,-14v22,8,9,53,8,80v-1,4,2,9,5,9v26,-12,84,-14,97,11v43,39,7,120,-59,112v-22,-2,-42,-2,-59,4v-9,-1,-13,-4,-12,-18xm129,-72v0,-25,-27,-36,-57,-36v-51,0,-43,28,-46,74v-1,14,14,9,26,10v37,2,77,-15,77,-48","w":165},"c":{"d":"1,-72v0,-67,85,-84,141,-58v6,6,4,22,-10,19v-44,-10,-108,-8,-108,41v0,31,34,45,71,45v22,0,39,-11,58,-12v6,38,-46,34,-77,36v-49,3,-75,-28,-75,-71","w":160},"d":{"d":"116,-137v10,7,19,3,16,-15v6,-17,-6,-73,22,-66v21,19,3,73,3,116r0,92v-1,5,-2,10,-10,10v-7,0,-14,-4,-16,-9v-52,26,-134,3,-132,-62v2,-52,62,-83,117,-66xm130,-89v10,-33,-37,-27,-55,-29v-27,-3,-50,21,-50,47v0,32,30,46,62,47v44,2,47,-23,43,-65","w":177},"e":{"d":"25,-61v2,49,87,42,123,29v4,0,10,5,9,11v-7,16,-34,23,-67,22v-49,0,-91,-19,-91,-67v0,-45,54,-81,101,-81v46,0,75,34,79,72v2,16,-23,11,-37,11xm154,-86v0,-40,-72,-44,-99,-26v-9,5,-18,15,-26,29","w":196},"f":{"d":"57,0v2,12,-11,5,-14,4v-26,-15,-2,-64,-10,-111v-12,-2,-33,-2,-34,-13v5,-22,51,9,38,-45v0,-38,40,-76,76,-50v3,5,-9,20,-10,23v-14,-6,-39,-19,-40,6v0,13,-3,29,-5,41v-3,21,20,13,34,12v8,-1,6,15,8,17r-40,5v-4,32,0,76,-3,111","w":112},"g":{"d":"80,-130v17,1,42,7,53,-2v33,5,9,60,14,99v-4,47,-3,106,-58,103v-28,-2,-83,-4,-61,-37v30,16,113,26,89,-36v-31,9,-89,13,-100,-19v-38,-42,1,-115,63,-108xm123,-69v1,-21,7,-39,-16,-35v-42,-5,-85,11,-83,53v2,39,63,30,95,24v2,-20,3,-33,4,-42","w":166},"h":{"d":"6,-1v-12,-54,2,-143,4,-211v1,-5,14,-5,22,-4r-2,94v15,-6,29,-19,51,-19v53,0,52,61,48,113v6,24,-20,42,-29,21v7,-21,5,-47,5,-75v0,-19,-3,-39,-21,-37v-24,2,-62,14,-56,47v-4,26,10,76,-22,71","w":147},"i":{"d":"35,-165v6,16,-22,28,-26,12v1,-13,1,-38,20,-33v15,0,6,12,6,21xm32,-123v-2,37,-7,77,-3,113v3,17,-17,13,-26,9r1,-98v1,-18,-1,-36,17,-35v7,0,11,4,11,11","w":58},"j":{"d":"13,-147v-19,2,-11,-16,-11,-31v0,-10,24,-13,24,1v0,13,5,34,-13,30xm-92,55v23,3,70,29,88,-3v8,-36,7,-95,7,-156v0,-15,1,-25,15,-25v21,9,4,52,9,85v-3,75,0,132,-66,135v-26,1,-74,-11,-53,-36","w":62},"k":{"d":"1,-14r4,-176v-3,-22,7,-30,24,-23r0,118v20,-8,61,-35,77,-44v5,3,11,9,12,17r-63,40v16,22,42,34,65,51v10,7,14,18,11,33r-104,-65r-3,66v-16,1,-23,4,-23,-17","w":153},"l":{"d":"2,-5v0,-68,3,-138,4,-206v25,-11,23,11,23,38r-2,170v-1,11,-25,9,-25,-2","w":59},"m":{"d":"17,-139v11,-1,14,7,13,19v16,-5,52,-32,72,-12r18,18v16,-4,28,-25,50,-25v63,0,49,79,51,134v0,7,-7,9,-15,8v-30,0,-5,-48,-8,-67v-4,-22,1,-55,-22,-54v-19,5,-43,17,-52,33r-4,75v1,8,-3,12,-12,11v-11,0,-12,-8,-12,-21r3,-60v7,-56,-47,-32,-66,-12v-16,10,-7,45,-8,70v0,14,-1,24,-12,25v-26,-12,-5,-84,-10,-126v-1,-9,5,-16,14,-16","w":235},"n":{"d":"10,-132v7,0,17,8,17,15v13,-3,40,-24,57,-23v57,3,46,71,43,132v0,9,-7,14,-14,14v-19,-11,-8,-56,-10,-86v-1,-19,1,-40,-17,-38v-20,2,-35,18,-52,22v-24,17,6,80,-20,101v-35,-11,-6,-78,-15,-124v-2,-9,4,-12,11,-13","w":151},"o":{"d":"168,-72v0,87,-140,95,-164,25v-19,-53,34,-97,80,-95v38,2,84,28,84,70xm147,-69v0,-28,-35,-50,-63,-48v-29,2,-62,20,-62,52v0,18,42,43,58,43v31,1,67,-18,67,-47","w":195},"p":{"d":"26,66v-17,7,-26,0,-26,-21r4,-174v6,-12,25,2,33,3v56,-18,125,6,124,62v-1,65,-73,76,-135,61r0,69xm140,-69v0,-37,-58,-41,-96,-37v-31,-3,-12,39,-17,74v39,19,113,13,113,-37","w":182},"q":{"d":"126,-1v-75,23,-153,-36,-114,-109v23,-25,50,-38,94,-23v17,5,27,7,30,7v0,-10,21,-9,23,-1r-4,122r4,82v-11,14,-28,0,-28,-19v0,-19,1,-40,-1,-57v-1,-1,-1,-2,-4,-2xm131,-83v11,-30,-38,-27,-58,-31v-25,7,-47,17,-49,44v-2,44,60,60,101,45v5,-9,6,-44,6,-58","w":176},"r":{"d":"25,-60v0,22,5,44,-1,63r-22,0v-3,-34,1,-76,0,-112v0,-17,-1,-25,17,-21v18,-3,8,14,11,23v16,1,34,-38,48,-16v3,4,5,8,7,11v-17,13,-60,24,-60,52","w":101},"s":{"d":"129,-37v-17,-34,-123,-18,-129,-63v11,-46,91,-40,136,-26v8,7,1,23,-15,18v-24,-9,-71,-2,-97,2v23,32,118,11,125,69v-5,66,-123,43,-152,15v-1,-8,2,-13,8,-13v20,7,49,17,76,16v18,-1,47,-1,48,-18","w":174},"t":{"d":"1,-120v-11,-38,47,5,41,-33v0,-4,1,-8,2,-14v8,4,15,-9,23,-7v2,13,-8,36,8,36v19,-9,46,5,28,21v-12,1,-34,-3,-38,4r-1,111v-16,14,-27,-6,-26,-28r4,-63v3,-22,-11,-22,-32,-22v-6,0,-9,-2,-9,-5","w":118},"u":{"d":"24,-54v-8,50,59,35,84,22r1,-91v7,-12,31,-6,28,13v-5,32,-6,64,-2,97v2,20,-24,15,-30,6v-7,0,-36,14,-46,12v-56,1,-65,-58,-55,-113v-1,-15,8,-19,17,-20v7,-1,10,7,9,15"},"v":{"d":"-2,-126v5,-4,23,-16,26,-2v7,29,26,49,32,81v5,29,18,16,25,-1v11,-24,34,-63,51,-88v5,-2,15,6,19,7v-20,41,-50,92,-74,131v-56,-4,-51,-90,-79,-128","w":161},"w":{"d":"167,-25v14,-33,33,-85,52,-109v6,-2,17,0,15,7v-13,42,-39,91,-57,129v-21,-1,-35,7,-39,-22v-5,-31,-18,-50,-24,-78v-17,25,-31,58,-42,88v-3,8,-12,11,-24,11v-20,-6,-45,-100,-49,-122v0,-9,3,-10,10,-10v28,12,28,80,46,99r43,-90v7,-10,34,-11,37,5v4,26,22,60,26,86v1,3,2,5,6,6","w":246},"x":{"d":"66,-66v13,-20,-65,-53,-30,-70v13,-5,9,8,19,14v13,3,26,47,45,26v19,-21,38,-30,59,-46v2,2,25,15,11,22v-19,8,-35,28,-52,39v-28,18,25,35,30,56v6,11,29,14,16,28v-3,3,-7,5,-10,8v-23,-17,-44,-37,-60,-60v-2,-3,-5,-4,-8,-4v-24,14,-44,41,-70,54v-5,-1,-22,-7,-12,-15v21,-16,40,-37,62,-52","w":195},"y":{"d":"28,-58v-11,52,56,36,76,20r-1,-85v0,-11,7,-12,13,-13v28,16,13,87,13,136v0,37,-17,70,-58,66v-22,-2,-65,0,-66,-24v-1,-9,1,-12,7,-12v24,10,54,23,81,11v12,-6,11,-30,11,-50v-7,0,-38,12,-48,12v-51,-2,-61,-58,-53,-115v-5,-25,24,-18,28,-9v-1,21,-6,41,-3,63","w":171},"z":{"d":"123,-110v-36,-5,-74,2,-107,1v-3,-41,71,-19,117,-26v24,-4,40,21,19,34v-30,20,-64,48,-95,64v-6,4,-11,8,-12,14r103,0v8,5,15,29,-7,23r-127,4v-16,-2,-19,-23,-4,-33r107,-73v3,-2,5,-5,6,-8","w":191},"{":{"d":"23,-136v57,5,-7,124,53,136v-61,8,-49,-47,-50,-99v-1,-25,-4,-30,-25,-37v63,-6,-24,-145,75,-138v-59,5,6,125,-53,138","w":147},"|":{"d":"22,0r0,-221r21,0r0,221r-21,0","w":82},"}":{"d":"55,-136v-58,-5,7,-125,-53,-138v61,-8,49,49,50,101v1,23,5,32,25,37v-62,6,23,144,-75,136v58,-3,-5,-124,53,-136","w":147},"~":{"d":"124,-85v16,-2,27,-14,34,-27r11,13v-8,17,-23,33,-46,35v-15,1,-59,-25,-72,-23v-20,2,-23,15,-34,30r-11,-13v13,-23,21,-34,46,-38v12,-2,61,24,72,23","w":191},"\u00c4":{"d":"-1,-78v-1,-21,34,-6,34,-29v13,-49,38,-116,60,-157v20,-1,31,-6,35,17v13,84,36,166,57,240v-3,5,-25,9,-30,3v-8,-21,-11,-48,-23,-64v-24,-1,-88,-13,-84,12r-16,60v-22,-1,-36,-2,-24,-32v5,-13,7,-26,9,-36v-12,-1,-14,-7,-18,-14xm74,-320v22,0,23,36,0,36v-9,0,-18,-9,-18,-18v0,-7,10,-19,18,-18xm128,-302v0,-8,9,-19,17,-18v9,0,18,9,18,18v0,10,-9,19,-18,18v-9,1,-17,-9,-17,-18xm100,-209r-40,111r66,-5","w":195},"\u00c5":{"d":"-1,-78v-1,-21,34,-6,34,-29v13,-49,38,-116,60,-157v20,-1,31,-6,35,17v13,84,36,166,57,240v-3,5,-25,9,-30,3v-8,-21,-11,-48,-23,-64v-24,-1,-88,-13,-84,12r-16,60v-22,-1,-36,-2,-24,-32v5,-13,7,-26,9,-36v-12,-1,-14,-7,-18,-14xm142,-307v0,19,-16,36,-35,36v-19,0,-36,-16,-36,-36v0,-20,17,-36,36,-36v20,0,35,16,35,36xm107,-285v27,0,28,-45,0,-44v-13,0,-23,10,-23,22v-1,12,12,22,23,22xm100,-209r-40,111r66,-5","w":206},"\u00c7":{"d":"154,47v-2,29,-45,37,-75,25r5,-12v16,7,43,8,43,-10v0,-18,-19,-13,-32,-14r16,-36r12,0r-9,23v20,-3,41,4,40,24xm25,-107v10,-74,35,-149,101,-153v47,-3,67,40,71,80v2,15,-23,21,-29,8v3,-38,-17,-79,-54,-60v-39,20,-52,75,-56,130v-3,56,28,95,78,73v25,-11,25,-44,41,-60v40,5,10,51,-1,64v-11,13,-30,27,-55,27v-70,0,-90,-49,-96,-109","w":230},"\u00c9":{"d":"14,-219v2,-12,-16,-4,-15,-16v8,-51,87,-14,139,-21v22,-3,26,24,13,30v-29,-4,-68,-3,-98,-3v-25,0,-4,43,-11,72v7,26,89,-17,105,22v-6,24,-65,7,-95,10v-25,2,-8,48,-13,81v-1,12,2,12,10,12v36,-3,65,-1,104,-1v17,0,21,1,21,14v-1,25,-39,12,-69,14r-82,6v-24,3,-15,-24,-15,-44v0,-58,-1,-124,6,-176xm115,-327v5,-10,31,-17,34,-2v-14,25,-47,34,-69,52r-15,0","w":190},"\u00d1":{"d":"127,-68r3,-151v-7,-40,30,-52,29,-11r-3,192v-2,18,-5,47,-31,34v-32,-51,-62,-124,-82,-183v-4,-11,-8,-17,-12,-20v-4,47,-6,126,-3,197v0,9,-2,16,-12,16v-33,-3,-17,-62,-16,-101r4,-143v-1,-17,28,-9,44,-8v18,52,44,106,65,157v5,13,10,20,14,21xm34,-275v3,-32,41,-31,63,-15v16,3,12,-14,27,-13v-1,13,-15,28,-29,28v-17,-1,-46,-25,-53,0r-8,0","w":176},"\u00d6":{"d":"98,10v-72,0,-99,-62,-99,-130v0,-61,40,-144,103,-140v53,3,85,76,85,132v0,61,-32,138,-89,138xm81,-292v0,10,-9,19,-18,18v-9,1,-18,-9,-18,-18v0,-21,36,-24,36,0xm117,-292v-1,-8,9,-18,18,-18v9,0,18,9,18,18v0,9,-9,18,-18,18v-10,0,-19,-9,-18,-18xm136,-43v31,-61,29,-187,-42,-191v-79,20,-84,200,-10,220v25,7,42,-10,52,-29","w":210},"\u00dc":{"d":"185,-231v11,106,4,263,-115,231v-33,-19,-68,-30,-66,-88v1,-50,-4,-116,4,-157v3,-6,20,-4,28,-3v6,30,0,52,1,86v3,64,-3,162,77,136v51,-16,38,-114,42,-186v1,-18,-12,-41,15,-39v8,0,13,7,14,20xm81,-292v0,10,-9,19,-18,18v-9,1,-18,-9,-18,-18v0,-21,36,-24,36,0xm117,-292v-1,-8,9,-18,18,-18v9,0,18,9,18,18v0,9,-9,18,-18,18v-10,0,-19,-9,-18,-18","w":214},"\u00e1":{"d":"12,-96v-11,-34,40,-49,74,-59v55,2,44,79,39,131v4,31,-15,25,-29,17v-37,17,-95,17,-95,-36v0,-51,53,-52,100,-48v0,-15,9,-38,-11,-37v-29,2,-57,23,-78,32xm88,-224v10,-18,46,-7,25,11v-19,16,-40,25,-60,39r-14,0xm100,-43v-4,-17,10,-28,-11,-28v-33,0,-63,11,-70,33v7,29,78,23,81,-5","w":153},"\u00e0":{"d":"12,-96v-11,-34,40,-49,74,-59v55,2,44,79,39,131v4,31,-15,25,-29,17v-37,17,-95,17,-95,-36v0,-51,53,-52,100,-48v0,-15,9,-38,-11,-37v-29,2,-57,23,-78,32xm27,-221v0,-22,27,-11,32,-2r50,50v-37,-2,-51,-28,-77,-40v-3,-3,-5,-6,-5,-8xm100,-43v-4,-17,10,-28,-11,-28v-33,0,-63,11,-70,33v7,29,78,23,81,-5","w":153},"\u00e2":{"d":"12,-96v-11,-34,40,-49,74,-59v55,2,44,79,39,131v4,31,-15,25,-29,17v-37,17,-95,17,-95,-36v0,-51,53,-52,100,-48v0,-15,9,-38,-11,-37v-29,2,-57,23,-78,32xm71,-211r-44,37r-13,0r45,-60r23,0r45,60r-13,0xm100,-43v-4,-17,10,-28,-11,-28v-33,0,-63,11,-70,33v7,29,78,23,81,-5","w":153},"\u00e4":{"d":"12,-96v-11,-34,40,-49,74,-59v55,2,44,79,39,131v4,31,-15,25,-29,17v-37,17,-95,17,-95,-36v0,-51,53,-52,100,-48v0,-15,9,-38,-11,-37v-29,2,-57,23,-78,32xm53,-191v0,22,-36,23,-36,0v0,-8,9,-18,18,-18v9,0,18,9,18,18xm106,-173v-22,0,-22,-35,0,-36v9,0,19,9,18,18v1,9,-9,18,-18,18xm100,-43v-4,-17,10,-28,-11,-28v-33,0,-63,11,-70,33v7,29,78,23,81,-5","w":153},"\u00e3":{"d":"12,-96v-11,-34,40,-49,74,-59v55,2,44,79,39,131v4,31,-15,25,-29,17v-37,17,-95,17,-95,-36v0,-51,53,-52,100,-48v0,-15,9,-38,-11,-37v-29,2,-57,23,-78,32xm47,-210v23,1,60,34,69,-1r11,0v-2,18,-18,38,-38,38v-25,0,-59,-36,-71,0r-10,0v5,-20,15,-38,39,-37xm100,-43v-4,-17,10,-28,-11,-28v-33,0,-63,11,-70,33v7,29,78,23,81,-5","w":155},"\u00e5":{"d":"12,-96v-11,-34,40,-49,74,-59v55,2,44,79,39,131v4,31,-15,25,-29,17v-37,17,-95,17,-95,-36v0,-51,53,-52,100,-48v0,-15,9,-38,-11,-37v-29,2,-57,23,-78,32xm102,-207v0,19,-17,35,-36,35v-19,0,-36,-16,-36,-35v0,-19,16,-36,36,-36v20,0,36,17,36,36xm88,-207v0,-12,-10,-24,-22,-23v-28,0,-28,45,0,45v12,0,22,-10,22,-22xm100,-43v-4,-17,10,-28,-11,-28v-33,0,-63,11,-70,33v7,29,78,23,81,-5","w":155},"\u00e7":{"d":"-1,-72v0,-67,86,-84,141,-58v6,6,4,22,-10,19v-44,-10,-108,-8,-108,41v0,33,35,45,71,45v22,0,38,-11,57,-12v10,36,-46,34,-76,36v-49,3,-75,-28,-75,-71xm114,47v-2,29,-45,37,-75,25r5,-12v16,7,43,8,43,-10v0,-18,-19,-13,-32,-14r16,-36r12,0r-9,23v20,-3,41,4,40,24","w":168},"\u00e9":{"d":"25,-61v2,49,87,42,123,29v4,0,10,5,9,11v-7,16,-34,23,-67,22v-49,0,-91,-19,-91,-67v0,-45,54,-81,101,-81v46,0,75,34,79,72v2,16,-23,11,-37,11xm118,-224v10,-18,46,-7,25,11v-19,16,-40,25,-60,39r-14,0xm154,-86v0,-40,-72,-44,-99,-26v-9,5,-18,15,-26,29","w":193},"\u00e8":{"d":"25,-61v2,49,87,42,123,29v4,0,10,5,9,11v-7,16,-34,23,-67,22v-49,0,-91,-19,-91,-67v0,-45,54,-81,101,-81v46,0,75,34,79,72v2,16,-23,11,-37,11xm50,-222v0,-22,27,-11,32,-2r49,50v-37,-2,-51,-28,-77,-41v-3,-3,-4,-5,-4,-7xm154,-86v0,-40,-72,-44,-99,-26v-9,5,-18,15,-26,29","w":193},"\u00ea":{"d":"25,-61v2,49,87,42,123,29v4,0,10,5,9,11v-7,16,-34,23,-67,22v-49,0,-91,-19,-91,-67v0,-45,54,-81,101,-81v46,0,75,34,79,72v2,16,-23,11,-37,11xm94,-211r-44,37r-12,0r45,-60r22,0r45,60r-12,0xm154,-86v0,-40,-72,-44,-99,-26v-9,5,-18,15,-26,29","w":194},"\u00eb":{"d":"25,-61v2,49,87,42,123,29v4,0,10,5,9,11v-7,16,-34,23,-67,22v-49,0,-91,-19,-91,-67v0,-45,54,-81,101,-81v46,0,75,34,79,72v2,16,-23,11,-37,11xm77,-191v1,9,-9,18,-18,18v-22,0,-22,-35,0,-36v9,0,19,9,18,18xm131,-173v-22,-1,-22,-35,0,-36v9,-1,19,9,18,18v1,9,-9,18,-18,18xm154,-86v0,-40,-72,-44,-99,-26v-9,5,-18,15,-26,29","w":194},"\u00ed":{"d":"30,-3v-9,15,-35,6,-29,-16r4,-215v-1,-16,11,-23,23,-24v16,53,-6,179,2,255xm70,-341v7,-9,29,-17,31,0v-11,26,-45,33,-66,50r-14,0","w":90},"\u00ec":{"d":"30,-3v-9,15,-35,6,-29,-16r4,-215v-1,-16,11,-23,23,-24v16,53,-6,179,2,255xm1,-334v0,-21,25,-10,29,-1r44,45v-33,-2,-45,-26,-69,-37v-3,-2,-4,-5,-4,-7","w":90},"\u00ee":{"d":"30,-3v-9,15,-35,6,-29,-16r4,-215v-1,-16,11,-23,23,-24v16,53,-6,179,2,255xm47,-323r-40,34r-11,0r41,-55r20,0r40,55v-27,-1,-32,-24,-50,-34","w":90},"\u00ef":{"d":"30,-3v-9,15,-35,6,-29,-16r4,-215v-1,-16,11,-23,23,-24v16,53,-6,179,2,255xm38,-310v0,9,-9,18,-18,18v-9,0,-18,-9,-18,-18v0,-21,37,-24,36,0xm74,-310v0,-8,9,-18,17,-18v10,0,19,9,18,18v1,9,-9,19,-18,18v-9,1,-17,-9,-17,-18","w":91},"\u00f1":{"d":"10,-132v7,0,17,8,17,15v13,-3,40,-24,57,-23v57,3,46,71,43,132v0,9,-7,14,-14,14v-19,-11,-8,-56,-10,-86v-1,-19,1,-40,-17,-38v-20,2,-35,18,-52,22v-24,17,6,80,-20,101v-35,-11,-6,-78,-15,-124v-2,-9,4,-12,11,-13xm42,-211v23,1,60,34,69,-1r11,0v-2,18,-18,38,-38,38v-23,-1,-60,-36,-71,0r-10,0v5,-20,15,-38,39,-37","w":158},"\u00f3":{"d":"168,-72v0,87,-140,95,-164,25v-19,-53,34,-97,80,-95v38,2,84,28,84,70xm113,-225v7,-9,30,-19,31,0v-12,25,-45,33,-66,50r-14,0xm147,-69v0,-28,-35,-50,-63,-48v-29,2,-62,20,-62,52v0,18,42,43,58,43v31,1,67,-18,67,-47","w":191},"\u00f2":{"d":"168,-72v0,87,-140,95,-164,25v-19,-53,34,-97,80,-95v38,2,84,28,84,70xm37,-221v0,-22,27,-11,32,-2r50,50v-37,-1,-50,-29,-77,-40v-3,-3,-5,-6,-5,-8xm147,-69v0,-28,-35,-50,-63,-48v-29,2,-62,20,-62,52v0,18,42,43,58,43v31,1,67,-18,67,-47","w":194},"\u00f4":{"d":"168,-72v0,87,-140,95,-164,25v-19,-53,34,-97,80,-95v38,2,84,28,84,70xm90,-211r-44,37r-12,0r45,-60r23,0r45,60r-13,0xm147,-69v0,-28,-35,-50,-63,-48v-29,2,-62,20,-62,52v0,18,42,43,58,43v31,1,67,-18,67,-47","w":190},"\u00f6":{"d":"168,-72v0,87,-140,95,-164,25v-19,-53,34,-97,80,-95v38,2,84,28,84,70xm71,-191v1,9,-9,18,-18,18v-22,0,-22,-35,0,-36v9,0,19,9,18,18xm125,-173v-22,-1,-22,-35,0,-36v9,-1,19,9,18,18v1,9,-9,18,-18,18xm147,-69v0,-28,-35,-50,-63,-48v-29,2,-62,20,-62,52v0,18,42,43,58,43v31,1,67,-18,67,-47","w":193},"\u00f5":{"d":"168,-72v0,87,-140,95,-164,25v-19,-53,34,-97,80,-95v38,2,84,28,84,70xm70,-210v23,1,60,34,69,-1r11,0v-1,18,-18,39,-38,38v-25,0,-59,-36,-71,0r-10,0v5,-20,15,-38,39,-37xm147,-69v0,-28,-35,-50,-63,-48v-29,2,-62,20,-62,52v0,18,42,43,58,43v31,1,67,-18,67,-47","w":194},"\u00fa":{"d":"24,-54v-8,50,59,35,84,22r1,-91v7,-12,31,-6,28,13v-5,32,-6,64,-2,97v2,20,-24,15,-30,6v-7,0,-36,14,-46,12v-56,1,-65,-58,-55,-113v-1,-15,8,-19,17,-20v7,-1,10,7,9,15xm88,-224v10,-18,46,-7,25,11v-19,16,-40,25,-60,39r-14,0"},"\u00f9":{"d":"24,-54v-8,50,59,35,84,22r1,-91v7,-12,31,-6,28,13v-5,32,-6,64,-2,97v2,20,-24,15,-30,6v-7,0,-36,14,-46,12v-56,1,-65,-58,-55,-113v-1,-15,8,-19,17,-20v7,-1,10,7,9,15xm27,-221v0,-22,27,-11,32,-2r50,50v-37,-2,-51,-28,-77,-40v-3,-3,-5,-6,-5,-8"},"\u00fb":{"d":"24,-54v-8,50,59,35,84,22r1,-91v7,-12,31,-6,28,13v-5,32,-6,64,-2,97v2,20,-24,15,-30,6v-7,0,-36,14,-46,12v-56,1,-65,-58,-55,-113v-1,-15,8,-19,17,-20v7,-1,10,7,9,15xm71,-211r-44,37r-13,0r45,-60r23,0r45,60r-13,0"},"\u00fc":{"d":"24,-54v-8,50,59,35,84,22r1,-91v7,-12,31,-6,28,13v-5,32,-6,64,-2,97v2,20,-24,15,-30,6v-7,0,-36,14,-46,12v-56,1,-65,-58,-55,-113v-1,-15,8,-19,17,-20v7,-1,10,7,9,15xm53,-191v0,22,-36,23,-36,0v0,-8,9,-18,18,-18v9,0,18,9,18,18xm106,-173v-22,0,-22,-35,0,-36v9,0,19,9,18,18v1,9,-9,18,-18,18"},"\u2020":{"d":"113,-93v-14,40,-12,96,-15,147r-13,0v2,-59,-7,-97,-22,-143v13,-15,23,-42,22,-69v-16,0,-32,15,-44,17v-23,2,-31,-38,-5,-36v17,1,30,13,49,12v2,-28,-11,-46,-18,-63v-1,-17,42,-23,43,-3v-6,20,-19,37,-17,66v17,0,32,-17,45,-18v11,-1,22,10,20,22v-4,32,-43,0,-65,3v1,28,7,48,20,65","w":183},"\u00b0":{"d":"73,-247v29,0,53,29,53,58v0,29,-26,56,-54,56v-28,0,-54,-27,-54,-56v0,-29,26,-58,55,-58xm72,-150v21,0,40,-18,40,-39v0,-21,-19,-40,-40,-40v-21,0,-40,19,-40,40v0,21,19,39,40,39","w":148},"\u00a2":{"d":"34,-97v-56,-25,-29,-142,42,-119r11,-34r16,-6r-17,42v16,4,37,33,8,33v-7,0,-11,-5,-13,-12v-9,27,-25,54,-30,81v28,3,43,-6,54,-26r13,12v-12,20,-45,42,-76,33r-13,36r-9,0xm73,-208v-39,-12,-61,30,-45,68v3,8,8,14,14,19","w":147},"\u00a3":{"d":"4,-18v0,-25,25,-29,50,-26v-1,-27,-5,-49,-7,-74r-39,0r0,-16r37,0v-3,-61,13,-109,71,-109v20,0,47,11,45,31v4,21,-27,27,-32,10v2,-19,-3,-33,-20,-33v-41,0,-36,62,-30,101r45,0r0,16r-44,0v3,30,-1,54,-8,79v15,7,31,13,51,13v28,0,38,-15,52,-24v1,24,-26,57,-61,55v-14,2,-44,-21,-50,-23v-8,12,-18,23,-36,23v-12,0,-24,-9,-24,-23xm50,-25v-7,-10,-38,-11,-36,7v7,22,32,12,36,-7","w":217},"\u00a7":{"d":"116,-189v-22,0,-14,-29,-3,-37v-19,-24,-69,0,-49,31v25,38,86,49,89,106v2,28,-18,46,-47,44v19,18,32,25,33,55v3,54,-97,58,-102,8v-2,-25,36,-29,37,-4v0,10,-8,13,-12,19v10,21,61,16,57,-14v-7,-49,-93,-63,-93,-121v0,-28,21,-48,49,-43v-19,-18,-33,-26,-35,-55v-2,-28,24,-44,51,-43v23,0,45,12,45,36v0,12,-9,18,-20,18xm135,-79v-8,-29,-37,-51,-66,-59v-22,-1,-34,27,-19,44v13,15,32,39,58,41v16,0,27,-11,27,-26","w":183},"\u2022":{"d":"56,-177v31,0,57,26,57,57v0,31,-26,57,-57,57v-32,0,-57,-25,-57,-57v0,-32,26,-57,57,-57","w":147},"\u00b6":{"d":"0,-123v1,-29,17,-72,55,-66r73,10r13,23r-41,-7r15,219r-37,0r0,-223r-21,0r9,223r-21,0r0,-119v-26,-5,-46,-27,-45,-60"},"\u00df":{"d":"88,-237v-24,0,-31,20,-31,44r0,193r-53,0r0,-5v17,-2,21,-6,22,-24v7,-87,-30,-220,65,-217v33,0,62,19,61,53v-1,32,-23,46,-49,57v36,8,65,26,65,69v0,37,-27,71,-64,71v-27,0,-52,-38,-19,-44v22,-4,7,33,28,33v20,0,22,-30,22,-52v1,-32,-14,-68,-40,-68v-12,0,-28,-7,-15,-13v29,0,40,-17,40,-46v0,-25,-8,-51,-32,-51","w":201},"\u00ae":{"d":"229,-146v0,62,-51,117,-114,117v-62,0,-114,-56,-114,-117v0,-61,53,-116,114,-116v61,0,114,54,114,116xm19,-146v0,52,44,100,96,100v52,0,96,-48,96,-100v0,-52,-45,-100,-96,-100v-51,0,-96,49,-96,100xm83,-81v-26,6,-16,-26,-15,-54r2,-57v-1,-6,-23,2,-12,-12v33,-17,110,-6,114,33v-3,28,-28,36,-54,40v7,19,50,28,46,56v-27,-17,-48,-45,-81,-54r0,48xm86,-194v2,24,-16,58,18,51v26,-5,69,-14,49,-39v-14,-9,-44,-16,-67,-12","w":262},"\u00a9":{"d":"225,-145v0,61,-53,117,-114,117v-61,0,-114,-55,-114,-117v0,-62,52,-117,114,-117v63,0,114,55,114,117xm15,-145v0,52,45,100,96,100v51,0,96,-48,96,-100v0,-52,-44,-100,-96,-100v-52,0,-96,48,-96,100xm66,-135v5,-32,16,-77,50,-77v24,0,32,18,35,40v1,5,-2,9,-8,8v-3,0,-5,-1,-6,-4v0,-16,-4,-32,-19,-33v-26,7,-33,38,-36,68v2,18,3,40,25,40v22,0,26,-21,33,-33v19,-1,8,22,2,30v-4,6,-17,14,-29,14v-36,0,-43,-22,-47,-53","w":214},"\u00b4":{"d":"83,-233v7,-9,29,-17,31,0v-11,26,-45,33,-66,50r-15,0","w":141},"\u00a8":{"d":"42,-206v1,9,-9,18,-18,18v-8,0,-18,-10,-18,-18v0,-8,9,-19,18,-18v9,-1,19,9,18,18xm78,-206v0,-8,9,-19,18,-18v9,-1,18,9,18,18v-1,22,-35,23,-36,0","w":135},"\u00c6":{"d":"14,-219v2,-12,-16,-4,-15,-16v8,-51,87,-14,139,-21v22,-3,26,24,13,30v-29,-4,-68,-3,-98,-3v-25,0,-4,43,-11,72v7,26,89,-17,105,22v-6,24,-65,7,-95,10v-25,2,-8,48,-13,81v-1,12,2,12,10,12v36,-3,65,-1,104,-1v17,0,21,1,21,14v-1,25,-39,12,-69,14r-82,6v-24,3,-15,-24,-15,-44v0,-58,-1,-124,6,-176xm28,-330v0,-22,27,-11,32,-2r50,50v-37,-2,-51,-28,-77,-41v-3,-3,-5,-5,-5,-7","w":243},"\u00d8":{"d":"26,-119v-7,-95,95,-184,168,-117r45,-53r27,6r-54,66v17,15,21,57,21,97v0,71,-33,125,-103,125v-32,0,-49,-4,-64,-18r-28,42r-18,0r35,-52v-20,-17,-26,-57,-29,-96xm130,-8v76,0,94,-122,70,-189v-43,52,-80,112,-122,166v-2,13,30,23,52,23xm138,-241v-82,1,-116,129,-74,204r118,-182v1,-12,-31,-23,-44,-22","w":311},"\u00b1":{"d":"90,-141r0,-79r23,0r0,79r79,0r0,23r-79,0r0,79r-23,0r0,-79r-79,0r0,-23r79,0xm192,0r-181,0r0,-23r181,0r0,23","w":226},"\u00a5":{"d":"40,-7v35,4,27,-30,28,-60r-59,0r0,-15r59,0r0,-21r-59,0r0,-15r53,0r-55,-100v-6,-9,-13,-13,-22,-13r0,-7r80,0r0,7v-25,1,-23,13,-14,30r41,76v14,-32,35,-59,45,-95v0,-8,-7,-11,-20,-11r0,-7r64,0v1,14,-15,8,-20,18v-20,23,-40,71,-56,102r53,0r0,15r-59,0r0,21r59,0r0,15r-59,0v1,30,-7,64,28,60r0,7r-87,0r0,-7","w":210},"\u00b5":{"d":"24,-54v-8,50,59,35,84,22r1,-91v7,-12,31,-6,28,13v-5,32,-6,64,-2,97v2,20,-24,15,-30,6v-7,0,-36,14,-46,12v-19,2,-37,-13,-47,-19v-10,-29,-15,-55,-8,-94v-1,-15,8,-19,17,-20v7,-1,10,7,9,15xm28,61v-31,-10,-6,-58,-4,-83r9,0v1,27,29,73,-5,83"},"\u00aa":{"d":"159,-240v47,0,55,66,22,101v-16,17,-27,29,-41,34r-9,-17v14,-7,49,-34,49,-53v0,-13,-16,-6,-25,-6v-17,-2,-33,-7,-33,-25v-1,-21,17,-34,37,-34xm33,-240v48,0,55,66,22,101v-16,17,-27,29,-40,34r-10,-20v17,-7,48,-31,49,-50v0,-13,-16,-6,-25,-6v-15,0,-32,-12,-32,-28v1,-21,14,-31,36,-31","w":234},"\u00ba":{"d":"119,-106r-1,66r-119,-100r119,-102r0,68r123,2r0,-69r120,103r-120,100r0,-67","w":370},"\u00e6":{"d":"14,-219v2,-12,-16,-4,-15,-16v8,-51,87,-14,139,-21v22,-3,26,24,13,30v-29,-4,-68,-3,-98,-3v-25,0,-4,43,-11,72v7,26,89,-17,105,22v-6,24,-65,7,-95,10v-25,2,-8,48,-13,81v-1,12,2,12,10,12v36,-3,65,-1,104,-1v17,0,21,1,21,14v-1,25,-39,12,-69,14r-82,6v-24,3,-15,-24,-15,-44v0,-58,-1,-124,6,-176xm67,-299v1,9,-9,18,-18,18v-22,-1,-22,-35,0,-36v9,-1,19,9,18,18xm103,-299v0,-8,9,-18,18,-18v9,0,18,9,18,18v0,22,-36,23,-36,0","w":186},"\u00f8":{"d":"14,-219v2,-12,-16,-4,-15,-16v8,-51,87,-14,139,-21v22,-3,26,24,13,30v-29,-4,-68,-3,-98,-3v-25,0,-4,43,-11,72v7,26,89,-17,105,22v-6,24,-65,7,-95,10v-25,2,-8,48,-13,81v-1,12,2,12,10,12v36,-3,65,-1,104,-1v17,0,21,1,21,14v-1,25,-39,12,-69,14r-82,6v-24,3,-15,-24,-15,-44v0,-58,-1,-124,6,-176xm87,-320r-44,37r-12,0r45,-60r22,0r45,60r-13,0","w":187},"\u00bf":{"d":"185,-231v11,106,4,263,-115,231v-33,-19,-68,-30,-66,-88v1,-50,-4,-116,4,-157v3,-6,20,-4,28,-3v6,30,0,52,1,86v3,64,-3,162,77,136v51,-16,38,-114,42,-186v1,-18,-12,-41,15,-39v8,0,13,7,14,20xm39,-311v0,-22,27,-11,32,-1r50,50v-37,-2,-51,-28,-77,-41v-3,-3,-5,-6,-5,-8","w":195},"\u00a1":{"d":"167,-106v-47,-3,-55,-65,-23,-99v15,-16,27,-28,41,-33r10,18v-16,7,-48,29,-49,49v-1,12,17,8,25,6v16,2,33,9,33,27v0,20,-16,33,-37,32xm41,-106v-47,-4,-53,-66,-22,-99v15,-16,26,-28,40,-33r13,19v-16,8,-51,28,-52,48v-1,12,18,8,25,6v16,2,35,11,35,28v0,20,-18,32,-39,31","w":243},"\u00ac":{"d":"174,-64r-22,1r-143,-139r23,4xm23,-58r-18,-2r151,-145r18,0","w":214},"\u00ab":{"d":"41,-129v-47,-4,-41,-102,8,-102v45,5,39,103,-8,102xm150,-228v-34,2,-42,34,-77,9v-6,-5,-10,-8,-19,-9v14,19,53,38,76,12r-104,175r13,0xm220,-41v-52,-4,-38,-102,7,-102v43,5,41,102,-7,102xm133,-41v-51,-5,-38,-103,8,-102v43,4,41,105,-8,102xm218,-49v34,-1,41,-84,6,-84v-18,0,-25,29,-25,48v0,13,2,37,19,36xm40,-138v34,-1,40,-84,6,-84v-18,0,-25,28,-25,49v1,13,3,36,19,35xm132,-49v33,-1,40,-82,6,-84v-18,-1,-25,28,-25,48v1,13,2,37,19,36","w":271},"\u00bb":{"d":"134,-3v-76,0,-127,-51,-127,-127v0,-76,52,-127,127,-127v76,0,127,52,127,127v0,76,-52,127,-127,127xm135,-230v-85,0,-126,104,-77,163v56,66,176,28,176,-65v0,-55,-47,-98,-99,-98","w":302},"\u00a0":{"w":180},"\u00c0":{"d":"185,-231v11,106,4,263,-115,231v-33,-19,-68,-30,-66,-88v1,-50,-4,-116,4,-157v3,-6,20,-4,28,-3v6,30,0,52,1,86v3,64,-3,162,77,136v51,-16,38,-114,42,-186v1,-18,-12,-41,15,-39v8,0,13,7,14,20xm124,-310v6,-9,29,-19,31,-1v-13,25,-45,34,-66,51r-15,0","w":231},"\u00c3":{"d":"20,-76v0,-23,36,-8,41,-30v22,-42,70,-119,102,-158v14,0,31,-9,30,13v-3,77,-13,160,-4,234v3,16,-23,19,-33,13v-6,-28,15,-74,-32,-66v-24,4,-56,-9,-61,14r-32,60v-7,1,-26,-3,-27,-7v2,-11,27,-49,31,-61v-11,-1,-12,-4,-15,-12xm183,-223v2,-15,-17,-3,-15,-17v8,-51,88,-14,139,-20v20,-2,18,10,21,22v0,12,-13,7,-22,6r-84,-2v-23,3,-4,42,-10,73v8,23,90,-15,105,22v-8,23,-62,6,-96,10v-24,3,-9,49,-13,81v-1,12,4,11,11,12v35,-4,64,-4,104,-2v16,0,20,2,20,15v0,24,-40,14,-69,14v-10,0,-70,6,-81,5v-26,3,-16,-21,-16,-43r3,-151xm157,-209r-71,111r69,-5","w":374},"\u00d5":{"d":"253,-82v3,-16,-4,-24,-22,-24r-104,0r0,70r-121,-105r121,-102r0,69r137,0v87,-8,58,98,63,174r-74,0r0,-82","w":349},"\u2013":{"d":"-1,-104r0,-14r124,0r0,14r-124,0","w":160},"\u2014":{"d":"-1,-105r0,-13r222,0r0,13r-222,0","w":259},"\u201c":{"d":"122,-156v-55,-8,-16,-81,12,-87r7,11v-11,4,-44,26,-28,39v17,-5,32,2,34,16v2,13,-11,22,-25,21xm38,-156v-56,0,-16,-81,12,-87r9,12v-11,6,-47,24,-30,38v17,-5,34,2,35,17v1,15,-12,20,-26,20","w":169},"\u201d":{"d":"122,-243v56,8,15,84,-13,90r-6,-12v9,-6,45,-28,28,-41v-16,5,-33,0,-34,-15v-1,-14,12,-24,25,-22xm38,-243v31,0,36,44,15,67v-10,11,-18,19,-27,23r-7,-14v11,-4,44,-26,28,-39v-17,6,-32,-2,-33,-17v0,-15,10,-20,24,-20","w":171},"\u2018":{"d":"61,-156v-55,-7,-16,-81,12,-87r6,11v-9,5,-44,27,-27,39v16,-5,33,1,33,16v0,13,-10,23,-24,21","w":111},"\u2019":{"d":"59,-243v54,9,17,82,-13,87r-6,-12v12,-5,44,-25,28,-38v-17,5,-34,-2,-35,-17v-1,-15,12,-20,26,-20","w":112},"\u00f7":{"d":"192,-82r-181,0r13,-22r151,-1xm81,-163v0,-12,9,-21,21,-21v12,0,20,10,20,21v0,11,-9,20,-20,20v-11,0,-21,-9,-21,-20xm81,-24v0,-12,9,-21,21,-21v11,0,20,10,20,21v0,11,-8,21,-20,20v-11,0,-21,-9,-21,-20","w":227},"\u00a4":{"d":"113,-89v-20,23,-63,24,-83,0r-15,19r-12,-16r15,-15v-18,-21,-19,-63,0,-81r-15,-16r14,-16r13,20v22,-18,60,-19,82,0r17,-20r10,16r-15,15v21,18,20,63,0,82r15,15r-11,16xm120,-142v0,-25,-22,-48,-48,-48v-29,0,-45,21,-45,49v0,28,18,48,45,48v26,0,48,-23,48,-49"},"\u2039":{"d":"26,-140v9,14,33,35,34,52v-22,-15,-39,-35,-59,-52v23,-18,39,-38,59,-52v1,17,-25,35,-34,52","w":88},"\u203a":{"d":"11,-82v-3,-14,27,-41,34,-53v-12,-16,-29,-30,-34,-51v23,12,38,36,59,51v-23,17,-39,38,-59,53","w":88},"\u00b7":{"d":"85,-116r-81,-55r104,0r31,-75r31,75r103,0r-81,55r38,95r-92,-60r-89,60","w":285},"\u2219":{"d":"85,-116r-81,-55r104,0r31,-75r31,75r103,0r-81,55r38,95r-92,-60r-89,60","w":285},"\u00ca":{"d":"34,-193v-16,-1,-33,7,-30,-14r70,0v6,1,6,2,7,9v0,15,-19,3,-30,7v-6,33,4,85,-5,115v-14,2,-13,-9,-13,-22xm126,-173v-6,28,-6,63,-10,94v-9,7,-16,-4,-12,-14v-1,-30,6,-53,8,-82v1,-13,0,-29,15,-29v13,0,11,20,14,30r16,60v10,-23,15,-60,27,-83v8,-16,28,-4,22,11r9,97v1,9,-10,14,-13,6r-9,-94v-12,25,-20,61,-28,90v-31,12,-25,-78,-39,-86","w":246},"\u00c1":{"d":"185,-231v11,106,4,263,-115,231v-33,-19,-68,-30,-66,-88v1,-50,-4,-116,4,-157v3,-6,20,-4,28,-3v6,30,0,52,1,86v3,64,-3,162,77,136v51,-16,38,-114,42,-186v1,-18,-12,-41,15,-39v8,0,13,7,14,20xm92,-304r-44,37r-12,0r45,-60r22,0r45,60r-12,0","w":201},"\u00cb":{"d":"158,-146r-75,105r-77,-105r77,-104","w":204},"\u00c8":{"d":"69,-16r0,-136r-69,0r102,-121r105,121r-70,0r0,136r-68,0","w":239},"\u00cd":{"d":"5,-106r95,-96r-48,-48r158,-14r-12,160r-50,-50r-95,96","w":249},"\u00ce":{"d":"262,-122r-135,0r0,69r-121,-102r121,-105r0,70r136,0","w":291},"\u00cf":{"d":"1,-184r135,0r0,-68r122,102r-122,104r0,-70r-135,0r0,-68","w":307},"\u00cc":{"d":"35,-15r118,-222r17,11r-122,218xm167,-32v-24,-1,-42,7,-62,8v-4,-34,44,-65,61,-93v7,-12,11,-9,21,-5r-3,74v4,5,19,-4,15,13v-15,0,-19,6,-16,29v0,2,-15,8,-15,0xm41,-204v-14,7,-30,-2,-14,-13v11,-8,25,-15,34,-25v-17,-2,-41,1,-53,-2v-4,-18,30,-13,51,-13v32,0,29,20,-1,35v-5,0,-12,5,-5,7v14,4,32,14,32,36v0,43,-64,54,-82,20v6,-13,24,10,40,5v16,0,31,-6,29,-22v-1,-16,-15,-28,-31,-28xm123,-42v13,-3,33,-1,45,-5r2,-55","w":235},"\u00d3":{"d":"42,-131v-9,11,-19,-2,-14,-11r2,-105v-1,-9,7,-13,14,-10xm23,-22r118,-221r16,11r-121,218xm167,-32v-24,-1,-42,7,-62,8v-4,-34,44,-65,61,-93v7,-12,11,-9,21,-5r-3,74v4,5,19,-4,15,13v-15,0,-19,6,-16,29v0,2,-15,8,-15,0xm123,-42v13,-3,33,-1,45,-5r2,-55","w":234},"\u00d4":{"d":"42,-131v-9,11,-19,-2,-14,-11r2,-105v-1,-9,7,-13,14,-10xm23,-22r118,-221r16,11r-121,218xm125,-95v7,-35,78,-49,74,1v-3,38,-47,51,-63,77v16,5,34,-2,51,-3v8,0,11,3,10,11v-15,8,-49,2,-71,10v-4,-2,-5,-14,-7,-19v16,-31,57,-45,68,-82v-7,-30,-47,-2,-52,12","w":234},"\u00d2":{"d":"1,-81r0,-135r153,0r0,135r-153,0","w":206},"\u00da":{"d":"4,-80r0,-135r154,0r0,135r-154,0","w":206},"\u00db":{"d":"5,-120r4,-36v17,16,39,28,58,42v34,-54,73,-98,117,-138r15,30r-135,156","w":244},"\u00d9":{"d":"6,-2v5,-76,-25,-174,63,-174r137,0r0,-69r121,102r-121,105r0,-70r-111,0v-31,7,-9,70,-15,106r-74,0","w":349},"\u02c6":{"d":"50,-168v27,0,49,21,49,48v0,26,-22,50,-49,49v-28,0,-49,-21,-49,-49v0,-26,22,-49,49,-48","w":130},"\u02dc":{"d":"42,-159v22,0,41,18,41,40v0,22,-19,41,-41,41v-21,0,-40,-20,-40,-41v0,-21,19,-40,40,-40","w":130},"\u00af":{"d":"85,-116r-81,-55r104,0r31,-75r31,75r103,0r-81,55r38,95r-92,-60r-89,60","w":285},"\u02c9":{"d":"85,-116r-81,-55r104,0r31,-75r31,75r103,0r-81,55r38,95r-92,-60r-89,60","w":285},"\u02da":{"d":"158,-146r-75,105r-77,-105r77,-104","w":204},"\u00b8":{"d":"85,-116r-81,-55r104,0r31,-75r31,75r103,0r-81,55r38,95r-92,-60r-89,60","w":285}}});

$(document).ready(function() {
  $('a.admin_edit_link').hide();
  
  $('div.content_block').hover(
    function () {
      $(this).find('a.admin_edit_link').slideToggle('fast');
    }, 
    function () {
      $(this).find('a.admin_edit_link').slideToggle();
    }
  );
  
  $('strong').each(function() {
    $(this).append('<span class="link-end">&nbsp;</span>');
  });

  $('a[rel="external"]').each(function() {
    $(this).attr('target', '_blank');
  });
  
  $("a.iframe").fancybox({ 'zoomSpeedIn': 300, 'zoomSpeedOut': 300, 'overlayShow': false, 'frameWidth': 900, 'frameHeight': 520 });
  Cufon.set('fontFamily', 'corporate-e-light');
  Cufon.replace('h1, h2, h3, h4');
  Cufon.replace('.panel p.description');

  Cufon.set('fontFamily', 'corporate-e-bold');  
  Cufon.replace('#slider h2');
  Cufon.replace('#punchlines h3');
  
  Cufon.set('fontFamily', 'diego');
  Cufon.replace('legend');
  Cufon.replace('.panel a');
  Cufon.replace('#about-us p');
});