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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
Drupal.locale = { 'pluralFormula': function($n) { return Number((((($n%10)==1)&&(($n%100)!=11))?(0):((((($n%10)>=2)&&(($n%10)<=4))&&((($n%100)<10)||(($n%100)>=20)))?(1):2))); }, 'strings': { "Unspecified error": "Неизвестная ошибка", "Upload": "Закачать", "Select all rows in this table": "Отметить все строки таблицы", "Deselect all rows in this table": "Снять отметку со всех колонок таблицы", "Only files with the following extensions are allowed: %files-allowed.": "Прикреплять можно только файлы с расширениями: %files-allowed.", "Drag to re-order": "Изменить порядок можно перетащив пункт мышкой.", "Changes made in this table will not be saved until the form is submitted.": "Изменения вступят в силу после отправки формы.", "Your server has been successfully tested to support this feature.": "Ваш сервер был успешно протестирован и может использовать эту функцию", "Your system configuration does not currently support this feature. The \x3ca href=\"http://drupal.org/node/15365\"\x3ehandbook page on Clean URLs\x3c/a\x3e has additional troubleshooting information.": "Конфигурация вашей системы сейчас не поддерживает этой функции. Дополнительная информация доступна в \x3ca href=\"http://drupal.org/node/15365\"\x3eдокументации о чистых ссылках\x3c/a\x3e.", "Testing clean URLs...": "Проверка чистых ссылок...", "The changes to these blocks will not be saved until the \x3cem\x3eSave blocks\x3c/em\x3e button is clicked.": "Изменения вступят в силу после сохранения формы.", "Automatic alias": "Автоматические синонимы", "Delete selected files?": "Удалить выбранные файлы?", "Please select a file.": "Выберите файл.", "Insert file": "Вставить файл", "The selected file %filename cannot be uploaded. Only files with the following extensions are allowed: %extensions.": "Файл \x3cem\x3e%filename\x3c/em\x3e не может быть загружен. Разрешены файлы только следующих типов: %extensions.", "Upload Images": "Загрузить фото", "Crop must be inside the image boundaries.": "Обрезка должна быть в пределах границ изображения.", "Manage directories": "Управлять каталогами", "Subdirectory %dir already exists.": "Подкаталог %dir уже существует.", "Subdirectory %dir does not exist.": "Подкаталог %dir не существует.", "Are you sure want to delete this subdirectory with all directories and files in it?": "Вы действительно хотите удалить этот подкаталог со всем его содержимым?" } };;
// ColorBox v1.3.17.1 - a full featured, light-weight, customizable lightbox based on jQuery 1.3+
// Copyright (c) 2011 Jack Moore - jack@colorpowered.com
// Licensed under the MIT license: http://www.opensource.org/licenses/mit-license.php
(function(a,b,c){function bc(b){if(!T){O=b,_(a.extend(J,a.data(O,e))),x=a(O),P=0,J.rel!=="nofollow"&&(x=a("."+X).filter(function(){var b=a.data(this,e).rel||this.rel;return b===J.rel}),P=x.index(O),P===-1&&(x=x.add(O),P=x.length-1));if(!R){R=S=!0,q.show();if(J.returnFocus)try{O.blur(),a(O).one(k,function(){try{this.focus()}catch(a){}})}catch(c){}p.css({opacity:+J.opacity,cursor:J.overlayClose?"pointer":"auto"}).show(),J.w=Z(J.initialWidth,"x"),J.h=Z(J.initialHeight,"y"),W.position(0),n&&y.bind("resize."+o+" scroll."+o,function(){p.css({width:y.width(),height:y.height(),top:y.scrollTop(),left:y.scrollLeft()})}).trigger("resize."+o),ba(g,J.onOpen),I.add(C).hide(),H.html(J.close).show()}W.load(!0)}}function bb(){var a,b=f+"Slideshow_",c="click."+f,d,e,g;J.slideshow&&x[1]?(d=function(){E.text(J.slideshowStop).unbind(c).bind(i,function(){if(P<x.length-1||J.loop)a=setTimeout(W.next,J.slideshowSpeed)}).bind(h,function(){clearTimeout(a)}).one(c+" "+j,e),q.removeClass(b+"off").addClass(b+"on"),a=setTimeout(W.next,J.slideshowSpeed)},e=function(){clearTimeout(a),E.text(J.slideshowStart).unbind([i,h,j,c].join(" ")).one(c,d),q.removeClass(b+"on").addClass(b+"off")},J.slideshowAuto?d():e()):q.removeClass(b+"off "+b+"on")}function ba(b,c){c&&c.call(O),a.event.trigger(b)}function _(b){for(var c in b)a.isFunction(b[c])&&c.substring(0,2)!=="on"&&(b[c]=b[c].call(O));b.rel=b.rel||O.rel||"nofollow",b.href=b.href||a(O).attr("href"),b.title=b.title||O.title,typeof b.href=="string"&&(b.href=a.trim(b.href))}function $(a){return J.photo||/\.(gif|png|jpg|jpeg|bmp)(?:\?([^#]*))?(?:#(\.*))?$/i.test(a)}function Z(a,b){b=b==="x"?y.width():y.height();return typeof a=="string"?Math.round(/%/.test(a)?b/100*parseInt(a,10):parseInt(a,10)):a}function Y(c,d){var e=b.createElement("div");c&&(e.id=f+c),e.style.cssText=d||"";return a(e)}var d={transition:"elastic",speed:300,width:!1,initialWidth:"600",innerWidth:!1,maxWidth:!1,height:!1,initialHeight:"450",innerHeight:!1,maxHeight:!1,scalePhotos:!0,scrolling:!0,inline:!1,html:!1,iframe:!1,fastIframe:!0,photo:!1,href:!1,title:!1,rel:!1,opacity:.9,preloading:!0,current:"{current} / {total}",previous:"previous",next:"next",close:"close",open:!1,returnFocus:!0,loop:!0,slideshow:!1,slideshowAuto:!0,slideshowSpeed:2500,slideshowStart:"start slideshow",slideshowStop:"stop slideshow",onOpen:!1,onLoad:!1,onComplete:!1,onCleanup:!1,onClosed:!1,overlayClose:!0,escKey:!0,arrowKey:!0,top:!1,bottom:!1,left:!1,right:!1,fixed:!1,data:!1},e="colorbox",f="cbox",g=f+"_open",h=f+"_load",i=f+"_complete",j=f+"_cleanup",k=f+"_closed",l=f+"_purge",m=a.browser.msie&&!a.support.opacity,n=m&&a.browser.version<7,o=f+"_IE6",p,q,r,s,t,u,v,w,x,y,z,A,B,C,D,E,F,G,H,I,J={},K,L,M,N,O,P,Q,R,S,T,U,V,W,X=f+"Element";W=a.fn[e]=a[e]=function(b,c){var f=this,g;if(!f[0]&&f.selector)return f;b=b||{},c&&(b.onComplete=c);if(!f[0]||f.selector===undefined)f=a("<a/>"),b.open=!0;f.each(function(){a.data(this,e,a.extend({},a.data(this,e)||d,b)),a(this).addClass(X)}),g=b.open,a.isFunction(g)&&(g=g.call(f)),g&&bc(f[0]);return f},W.init=function(){y=a(c),q=Y().attr({id:e,"class":m?f+(n?"IE6":"IE"):""}),p=Y("Overlay",n?"position:absolute":"").hide(),r=Y("Wrapper"),s=Y("Content").append(z=Y("LoadedContent","width:0; height:0; overflow:hidden"),B=Y("LoadingOverlay").add(Y("LoadingGraphic")),C=Y("Title"),D=Y("Current"),F=Y("Next"),G=Y("Previous"),E=Y("Slideshow").bind(g,bb),H=Y("Close")),r.append(Y().append(Y("TopLeft"),t=Y("TopCenter"),Y("TopRight")),Y(!1,"clear:left").append(u=Y("MiddleLeft"),s,v=Y("MiddleRight")),Y(!1,"clear:left").append(Y("BottomLeft"),w=Y("BottomCenter"),Y("BottomRight"))).children().children().css({"float":"left"}),A=Y(!1,"position:absolute; width:9999px; visibility:hidden; display:none"),a("body").prepend(p,q.append(r,A)),s.children().hover(function(){a(this).addClass("hover")},function(){a(this).removeClass("hover")}).addClass("hover"),K=t.height()+w.height()+s.outerHeight(!0)-s.height(),L=u.width()+v.width()+s.outerWidth(!0)-s.width(),M=z.outerHeight(!0),N=z.outerWidth(!0),q.css({"padding-bottom":K,"padding-right":L}).hide(),F.click(function(){W.next()}),G.click(function(){W.prev()}),H.click(function(){W.close()}),I=F.add(G).add(D).add(E),s.children().removeClass("hover"),p.click(function(){J.overlayClose&&W.close()}),a(b).bind("keydown."+f,function(a){var b=a.keyCode;R&&J.escKey&&b===27&&(a.preventDefault(),W.close()),R&&J.arrowKey&&x[1]&&(b===37?(a.preventDefault(),G.click()):b===39&&(a.preventDefault(),F.click()))})},W.remove=function(){q.add(p).remove(),a("."+X).removeData(e).removeClass(X)},W.position=function(a,c){function g(a){t[0].style.width=w[0].style.width=s[0].style.width=a.style.width,B[0].style.height=B[1].style.height=s[0].style.height=u[0].style.height=v[0].style.height=a.style.height}var d,e=0,f=0;q.hide(),J.fixed&&!n?q.css({position:"fixed"}):(e=y.scrollTop(),f=y.scrollLeft(),q.css({position:"absolute"})),J.right!==!1?f+=Math.max(y.width()-J.w-N-L-Z(J.right,"x"),0):J.left!==!1?f+=Z(J.left,"x"):f+=Math.max(y.width()-J.w-N-L,0)/2,J.bottom!==!1?e+=Math.max(b.documentElement.clientHeight-J.h-M-K-Z(J.bottom,"y"),0):J.top!==!1?e+=Z(J.top,"y"):e+=Math.max(b.documentElement.clientHeight-J.h-M-K,0)/2,q.show(),d=q.width()===J.w+N&&q.height()===J.h+M?0:a,r[0].style.width=r[0].style.height="9999px",q.dequeue().animate({width:J.w+N,height:J.h+M,top:e,left:f},{duration:d,complete:function(){g(this),S=!1,r[0].style.width=J.w+N+L+"px",r[0].style.height=J.h+M+K+"px",c&&c()},step:function(){g(this)}})},W.resize=function(a){if(R){a=a||{},a.width&&(J.w=Z(a.width,"x")-N-L),a.innerWidth&&(J.w=Z(a.innerWidth,"x")),z.css({width:J.w}),a.height&&(J.h=Z(a.height,"y")-M-K),a.innerHeight&&(J.h=Z(a.innerHeight,"y"));if(!a.innerHeight&&!a.height){var b=z.wrapInner("<div style='overflow:auto'></div>").children();J.h=b.height(),b.replaceWith(b.children())}z.css({height:J.h}),W.position(J.transition==="none"?0:J.speed)}},W.prep=function(b){function h(b){W.position(b,function(){function o(){m&&q[0].style.removeAttribute("filter")}var b,d,g,h,j=x.length,k,n;!R||(n=function(){clearTimeout(V),B.hide(),ba(i,J.onComplete)},m&&Q&&z.fadeIn(100),C.html(J.title).add(z).show(),j>1?(typeof J.current=="string"&&D.html(J.current.replace(/\{current\}/,P+1).replace(/\{total\}/,j)).show(),F[J.loop||P<j-1?"show":"hide"]().html(J.next),G[J.loop||P?"show":"hide"]().html(J.previous),b=P?x[P-1]:x[j-1],g=P<j-1?x[P+1]:x[0],J.slideshow&&E.show(),J.preloading&&(h=a.data(g,e).href||g.href,d=a.data(b,e).href||b.href,h=a.isFunction(h)?h.call(g):h,d=a.isFunction(d)?d.call(b):d,$(h)&&(a("<img/>")[0].src=h),$(d)&&(a("<img/>")[0].src=d))):I.hide(),J.iframe?(k=a("<iframe/>").addClass(f+"Iframe")[0],J.fastIframe?n():a(k).one("load",n),k.name=f+ +(new Date),k.src=J.href,J.scrolling||(k.scrolling="no"),m&&(k.frameBorder=0,k.allowTransparency="true"),a(k).appendTo(z).one(l,function(){k.src="//about:blank"})):n(),J.transition==="fade"?q.fadeTo(c,1,o):o(),y.bind("resize."+f,function(){W.position(0)}))})}function g(){J.h=J.h||z.height(),J.h=J.mh&&J.mh<J.h?J.mh:J.h;return J.h}function d(){J.w=J.w||z.width(),J.w=J.mw&&J.mw<J.w?J.mw:J.w;return J.w}if(!!R){var c=J.transition==="none"?0:J.speed;y.unbind("resize."+f),z.remove(),z=Y("LoadedContent").html(b),z.hide().appendTo(A.show()).css({width:d(),overflow:J.scrolling?"auto":"hidden"}).css({height:g()}).prependTo(s),A.hide(),a(Q).css({"float":"none"}),n&&a("select").not(q.find("select")).filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one(j,function(){this.style.visibility="inherit"}),J.transition==="fade"?q.fadeTo(c,0,function(){h(0)}):h(c)}},W.load=function(b){var c,d,g=W.prep;S=!0,Q=!1,O=x[P],b||_(a.extend(J,a.data(O,e))),ba(l),ba(h,J.onLoad),J.h=J.height?Z(J.height,"y")-M-K:J.innerHeight&&Z(J.innerHeight,"y"),J.w=J.width?Z(J.width,"x")-N-L:J.innerWidth&&Z(J.innerWidth,"x"),J.mw=J.w,J.mh=J.h,J.maxWidth&&(J.mw=Z(J.maxWidth,"x")-N-L,J.mw=J.w&&J.w<J.mw?J.w:J.mw),J.maxHeight&&(J.mh=Z(J.maxHeight,"y")-M-K,J.mh=J.h&&J.h<J.mh?J.h:J.mh),c=J.href,V=setTimeout(function(){B.show()},100),J.inline?(Y().hide().insertBefore(a(c)[0]).one(l,function(){a(this).replaceWith(z.children())}),g(a(c))):J.iframe?g(" "):J.html?g(J.html):$(c)?(a(Q=new Image).addClass(f+"Photo").error(function(){J.title=!1,g(Y("Error").text("This image could not be loaded"))}).load(function(){var a;Q.onload=null,J.scalePhotos&&(d=function(){Q.height-=Q.height*a,Q.width-=Q.width*a},J.mw&&Q.width>J.mw&&(a=(Q.width-J.mw)/Q.width,d()),J.mh&&Q.height>J.mh&&(a=(Q.height-J.mh)/Q.height,d())),J.h&&(Q.style.marginTop=Math.max(J.h-Q.height,0)/2+"px"),x[1]&&(P<x.length-1||J.loop)&&(Q.style.cursor="pointer",Q.onclick=function(){W.next()}),m&&(Q.style.msInterpolationMode="bicubic"),setTimeout(function(){g(Q)},1)}),setTimeout(function(){Q.src=c},1)):c&&A.load(c,J.data,function(b,c,d){g(c==="error"?Y("Error").text("Request unsuccessful: "+d.statusText):a(this).contents())})},W.next=function(){!S&&x[1]&&(P<x.length-1||J.loop)&&(P=P<x.length-1?P+1:0,W.load())},W.prev=function(){!S&&x[1]&&(P||J.loop)&&(P=P?P-1:x.length-1,W.load())},W.close=function(){R&&!T&&(T=!0,R=!1,ba(j,J.onCleanup),y.unbind("."+f+" ."+o),p.fadeTo(200,0),q.stop().fadeTo(300,0,function(){q.add(p).css({opacity:1,cursor:"auto"}).hide(),ba(l),z.remove(),setTimeout(function(){T=!1,ba(k,J.onClosed)},1)}))},W.element=function(){return a(O)},W.settings=d,U=function(a){a.button!==0&&typeof a.button!="undefined"||a.ctrlKey||a.shiftKey||a.altKey||(a.preventDefault(),bc(this))},a.fn.delegate?a(b).delegate("."+X,"click",U):a("."+X).live("click",U),a(W.init)})(jQuery,document,this)
;
(function ($) {

Drupal.behaviors.initColorbox = function (context) {
  if (!$.isFunction($.colorbox)) {
    return;
  }
  $('a, area, input', context)
    .filter('.colorbox:not(.initColorbox-processed)')
    .addClass('initColorbox-processed')
    .colorbox(Drupal.settings.colorbox);
};

{
  $(document).bind('cbox_complete', function () {
    Drupal.attachBehaviors('#cboxLoadedContent');
  });
}

})(jQuery);
;
(function ($) {

Drupal.behaviors.initColorboxDefaultStyle = function (context) {
  $(document).bind('cbox_complete', function () {
    // Only run if there is a title.
    if ($('#cboxTitle:empty', context).length == false) {
      setTimeout(function () { $('#cboxTitle', context).slideUp() }, 1500);
      $('#cboxLoadedContent img', context).bind('mouseover', function () {
        $('#cboxTitle', context).slideDown();
      });
      $('#cboxOverlay', context).bind('mouseover', function () {
        $('#cboxTitle', context).slideUp();
      });
    }
    else {
      $('#cboxTitle', context).hide();
    }
  });
};

})(jQuery);
;
// $Id: base.js,v 1.11.2.1 2010/03/10 20:08:58 merlinofchaos Exp $
/**
 * @file base.js
 *
 * Some basic behaviors and utility functions for Views.
 */

Drupal.Views = {};

/**
 * jQuery UI tabs, Views integration component
 */
Drupal.behaviors.viewsTabs = function (context) {
  $('#views-tabset:not(.views-processed)').addClass('views-processed').each(function() {
    new Drupal.Views.Tabs($(this), {selectedClass: 'active'});
  });

  $('a.views-remove-link')
    .addClass('views-processed')
    .click(function() {
      var id = $(this).attr('id').replace('views-remove-link-', '');
      $('#views-row-' + id).hide();
      $('#views-removed-' + id).attr('checked', true);
      return false;
    });
}

/**
 * For IE, attach some javascript so that our hovers do what they're supposed
 * to do.
 */
Drupal.behaviors.viewsHoverlinks = function() {
  if ($.browser.msie) {
    // If IE, attach a hover event so we can see our admin links.
    $("div.view:not(.views-hover-processed)").addClass('views-hover-processed').hover(
      function() {
        $('div.views-hide', this).addClass("views-hide-hover"); return true;
      },
      function(){
        $('div.views-hide', this).removeClass("views-hide-hover"); return true;
      }
    );
    $("div.views-admin-links:not(.views-hover-processed)")
      .addClass('views-hover-processed')
      .hover(
        function() {
          $(this).addClass("views-admin-links-hover"); return true;
        },
        function(){
          $(this).removeClass("views-admin-links-hover"); return true;
        }
      );
  }
}

/**
 * Helper function to parse a querystring.
 */
Drupal.Views.parseQueryString = function (query) {
  var args = {};
  var pos = query.indexOf('?');
  if (pos != -1) {
    query = query.substring(pos + 1);
  }
  var pairs = query.split('&');
  for(var i in pairs) {
    var pair = pairs[i].split('=');
    // Ignore the 'q' path argument, if present.
    if (pair[0] != 'q' && pair[1]) {
      args[pair[0]] = decodeURIComponent(pair[1].replace(/\+/g, ' '));
    }
  }
  return args;
};

/**
 * Helper function to return a view's arguments based on a path.
 */
Drupal.Views.parseViewArgs = function (href, viewPath) {
  var returnObj = {};
  var path = Drupal.Views.getPath(href);
  // Ensure we have a correct path.
  if (viewPath && path.substring(0, viewPath.length + 1) == viewPath + '/') {
    var args = decodeURIComponent(path.substring(viewPath.length + 1, path.length));
    returnObj.view_args = args;
    returnObj.view_path = path;
  }
  return returnObj;
};

/**
 * Strip off the protocol plus domain from an href.
 */
Drupal.Views.pathPortion = function (href) {
  // Remove e.g. http://example.com if present.
  var protocol = window.location.protocol;
  if (href.substring(0, protocol.length) == protocol) {
    // 2 is the length of the '//' that normally follows the protocol
    href = href.substring(href.indexOf('/', protocol.length + 2));
  }
  return href;
};

/**
 * Return the Drupal path portion of an href.
 */
Drupal.Views.getPath = function (href) {
  href = Drupal.Views.pathPortion(href);
  href = href.substring(Drupal.settings.basePath.length, href.length);
  // 3 is the length of the '?q=' added to the url without clean urls.
  if (href.substring(0, 3) == '?q=') {
    href = href.substring(3, href.length);
  }
  var chars = ['#', '?', '&'];
  for (i in chars) {
    if (href.indexOf(chars[i]) > -1) {
      href = href.substr(0, href.indexOf(chars[i]));
    }
  }
  return href;
};
;
// $Id: ajax_view.js,v 1.19.2.5 2010/03/25 18:25:28 merlinofchaos Exp $

/**
 * @file ajaxView.js
 *
 * Handles AJAX fetching of views, including filter submission and response.
 */

Drupal.Views.Ajax = Drupal.Views.Ajax || {};

/**
 * An ajax responder that accepts a packet of JSON data and acts appropriately.
 *
 * The following fields control behavior.
 * - 'display': Display the associated data in the view area.
 */
Drupal.Views.Ajax.ajaxViewResponse = function(target, response) {

  if (response.debug) {
    alert(response.debug);
  }

  var $view = $(target);

  // Check the 'display' for data.
  if (response.status && response.display) {
    var $newView = $(response.display);
    $view.replaceWith($newView);
    $view = $newView;
    Drupal.attachBehaviors($view.parent());
  }

  if (response.messages) {
    // Show any messages (but first remove old ones, if there are any).
    $view.find('.views-messages').remove().end().prepend(response.messages);
  }
};

/**
 * Ajax behavior for views.
 */
Drupal.behaviors.ViewsAjaxView = function() {
  if (Drupal.settings && Drupal.settings.views && Drupal.settings.views.ajaxViews) {
    var ajax_path = Drupal.settings.views.ajax_path;
    // If there are multiple views this might've ended up showing up multiple times.
    if (ajax_path.constructor.toString().indexOf("Array") != -1) {
      ajax_path = ajax_path[0];
    }
    $.each(Drupal.settings.views.ajaxViews, function(i, settings) {
      var view = '.view-dom-id-' + settings.view_dom_id;
      if (!$(view).size()) {
        // Backward compatibility: if 'views-view.tpl.php' is old and doesn't
        // contain the 'view-dom-id-#' class, we fall back to the old way of
        // locating the view:
        view = '.view-id-' + settings.view_name + '.view-display-id-' + settings.view_display_id;
      }


      // Process exposed filter forms.
      $('form#views-exposed-form-' + settings.view_name.replace(/_/g, '-') + '-' + settings.view_display_id.replace(/_/g, '-'))
      .filter(':not(.views-processed)')
      .each(function () {
        // remove 'q' from the form; it's there for clean URLs
        // so that it submits to the right place with regular submit
        // but this method is submitting elsewhere.
        $('input[name=q]', this).remove();
        var form = this;
        // ajaxSubmit doesn't accept a data argument, so we have to
        // pass additional fields this way.
        $.each(settings, function(key, setting) {
          $(form).append('<input type="hidden" name="'+ key + '" value="'+ setting +'"/>');
        });
      })
      .addClass('views-processed')
      .submit(function () {
        $('input[type=submit], button', this).after('<span class="views-throbbing">&nbsp</span>');
        var object = this;
        $(this).ajaxSubmit({
          url: ajax_path,
          type: 'GET',
          success: function(response) {
            // Call all callbacks.
            if (response.__callbacks) {
              $.each(response.__callbacks, function(i, callback) {
                eval(callback)(view, response);
              });
              $('.views-throbbing', object).remove();
            }
          },
          error: function(xhr) { Drupal.Views.Ajax.handleErrors(xhr, ajax_path); $('.views-throbbing', object).remove(); },
          dataType: 'json'
        });

        return false;
      });

      $(view).filter(':not(.views-processed)')
        // Don't attach to nested views. Doing so would attach multiple behaviors
        // to a given element.
        .filter(function() {
          // If there is at least one parent with a view class, this view
          // is nested (e.g., an attachment). Bail.
          return !$(this).parents('.view').size();
        })
        .each(function() {
          // Set a reference that will work in subsequent calls.
          var target = this;
          $(this)
            .addClass('views-processed')
            // Process pager, tablesort, and attachment summary links.
            .find('ul.pager > li > a, th.views-field a, .attachment .views-summary a')
            .each(function () {
              var viewData = { 'js': 1 };
              // Construct an object using the settings defaults and then overriding
              // with data specific to the link.
              $.extend(
                viewData,
                Drupal.Views.parseQueryString($(this).attr('href')),
                // Extract argument data from the URL.
                Drupal.Views.parseViewArgs($(this).attr('href'), settings.view_base_path),
                // Settings must be used last to avoid sending url aliases to the server.
                settings
              );
              $(this).click(function () {
                $.extend(viewData, Drupal.Views.parseViewArgs($(this).attr('href'), settings.view_base_path));
                $(this).addClass('views-throbbing');
                $.ajax({
                  url: ajax_path,
                  type: 'GET',
                  data: viewData,
                  success: function(response) {
                    $(this).removeClass('views-throbbing');
                    // Scroll to the top of the view. This will allow users
                    // to browse newly loaded content after e.g. clicking a pager
                    // link.
                    var offset = $(target).offset();
                    // We can't guarantee that the scrollable object should be
                    // the body, as the view could be embedded in something
                    // more complex such as a modal popup. Recurse up the DOM
                    // and scroll the first element that has a non-zero top.
                    var scrollTarget = target;
                    while ($(scrollTarget).scrollTop() == 0 && $(scrollTarget).parent()) {
                      scrollTarget = $(scrollTarget).parent()
                    }
                    // Only scroll upward
                    if (offset.top - 10 < $(scrollTarget).scrollTop()) {
                      $(scrollTarget).animate({scrollTop: (offset.top - 10)}, 500);
                    }
                    // Call all callbacks.
                    if (response.__callbacks) {
                      $.each(response.__callbacks, function(i, callback) {
                        eval(callback)(target, response);
                      });
                    }
                  },
                  error: function(xhr) { $(this).removeClass('views-throbbing'); Drupal.Views.Ajax.handleErrors(xhr, ajax_path); },
                  dataType: 'json'
                });

                return false;
              });
            }); // .each function () {
      }); // $view.filter().each
    }); // .each Drupal.settings.views.ajaxViews
  } // if
};
;
/*
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2009 M. Alsup
 * Version: 2.63 (17-MAR-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 * Requires: jQuery v1.2.6 or later
 *
 * Originally based on the work of:
 *	1) Matt Oakes
 *	2) Torsten Baldes (http://medienfreunde.com/lab/innerfade/)
 *	3) Benjamin Sterling (http://www.benjaminsterling.com/experiments/jqShuffle/)
 */
;(function($){var ver="2.63";if($.support==undefined){$.support={opacity:!($.browser.msie)};}function log(){if(window.console&&window.console.log){window.console.log("[cycle] "+Array.prototype.join.call(arguments," "));}}$.fn.cycle=function(options,arg2){var o={s:this.selector,c:this.context};if(this.length==0&&options!="stop"){if(!$.isReady&&o.s){log("DOM not ready, queuing slideshow");$(function(){$(o.s,o.c).cycle(options,arg2);});return this;}log("terminating; zero elements found by selector"+($.isReady?"":" (DOM not ready)"));return this;}return this.each(function(){options=handleArguments(this,options,arg2);if(options===false){return;}if(this.cycleTimeout){clearTimeout(this.cycleTimeout);}this.cycleTimeout=this.cyclePause=0;var $cont=$(this);var $slides=options.slideExpr?$(options.slideExpr,this):$cont.children();var els=$slides.get();if(els.length<2){log("terminating; too few slides: "+els.length);return;}var opts=buildOptions($cont,$slides,els,options,o);if(opts===false){return;}if(opts.timeout||opts.continuous){this.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},opts.continuous?10:opts.timeout+(opts.delay||0));}});};function handleArguments(cont,options,arg2){if(cont.cycleStop==undefined){cont.cycleStop=0;}if(options===undefined||options===null){options={};}if(options.constructor==String){switch(options){case"stop":cont.cycleStop++;if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);}cont.cycleTimeout=0;$(cont).removeData("cycle.opts");return false;case"pause":cont.cyclePause=1;return false;case"resume":cont.cyclePause=0;if(arg2===true){options=$(cont).data("cycle.opts");if(!options){log("options not found, can not resume");return false;}if(cont.cycleTimeout){clearTimeout(cont.cycleTimeout);cont.cycleTimeout=0;}go(options.elements,options,1,1);}return false;default:options={fx:options};}}else{if(options.constructor==Number){var num=options;options=$(cont).data("cycle.opts");if(!options){log("options not found, can not advance slide");return false;}if(num<0||num>=options.elements.length){log("invalid slide index: "+num);return false;}options.nextSlide=num;if(cont.cycleTimeout){clearTimeout(this.cycleTimeout);cont.cycleTimeout=0;}if(typeof arg2=="string"){options.oneTimeFx=arg2;}go(options.elements,options,1,num>=options.currSlide);return false;}}return options;}function removeFilter(el,opts){if(!$.support.opacity&&opts.cleartype&&el.style.filter){try{el.style.removeAttribute("filter");}catch(smother){}}}function buildOptions($cont,$slides,els,options,o){var opts=$.extend({},$.fn.cycle.defaults,options||{},$.metadata?$cont.metadata():$.meta?$cont.data():{});if(opts.autostop){opts.countdown=opts.autostopCount||els.length;}var cont=$cont[0];$cont.data("cycle.opts",opts);opts.$cont=$cont;opts.stopCount=cont.cycleStop;opts.elements=els;opts.before=opts.before?[opts.before]:[];opts.after=opts.after?[opts.after]:[];opts.after.unshift(function(){opts.busy=0;});if(!$.support.opacity&&opts.cleartype){opts.after.push(function(){removeFilter(this,opts);});}if(opts.continuous){opts.after.push(function(){go(els,opts,0,!opts.rev);});}saveOriginalOpts(opts);if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($slides);}if($cont.css("position")=="static"){$cont.css("position","relative");}if(opts.width){$cont.width(opts.width);}if(opts.height&&opts.height!="auto"){$cont.height(opts.height);}if(opts.startingSlide){opts.startingSlide=parseInt(opts.startingSlide);}if(opts.random){opts.randomMap=[];for(var i=0;i<els.length;i++){opts.randomMap.push(i);}opts.randomMap.sort(function(a,b){return Math.random()-0.5;});opts.randomIndex=0;opts.startingSlide=opts.randomMap[0];}else{if(opts.startingSlide>=els.length){opts.startingSlide=0;}}opts.currSlide=opts.startingSlide=opts.startingSlide||0;var first=opts.startingSlide;$slides.css({position:"absolute",top:0,left:0}).hide().each(function(i){var z=first?i>=first?els.length-(i-first):first-i:els.length-i;$(this).css("z-index",z);});$(els[first]).css("opacity",1).show();removeFilter(els[first],opts);if(opts.fit&&opts.width){$slides.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}var reshape=opts.containerResize&&!$cont.innerHeight();if(reshape){var maxw=0,maxh=0;for(var i=0;i<els.length;i++){var $e=$(els[i]),e=$e[0],w=$e.outerWidth(),h=$e.outerHeight();if(!w){w=e.offsetWidth;}if(!h){h=e.offsetHeight;}maxw=w>maxw?w:maxw;maxh=h>maxh?h:maxh;}if(maxw>0&&maxh>0){$cont.css({width:maxw+"px",height:maxh+"px"});}}if(opts.pause){$cont.hover(function(){this.cyclePause++;},function(){this.cyclePause--;});}if(supportMultiTransitions(opts)===false){return false;}if(!opts.multiFx){var init=$.fn.cycle.transitions[opts.fx];if($.isFunction(init)){init($cont,$slides,opts);}else{if(opts.fx!="custom"&&!opts.multiFx){log("unknown transition: "+opts.fx,"; slideshow terminating");return false;}}}var requeue=false;options.requeueAttempts=options.requeueAttempts||0;$slides.each(function(){var $el=$(this);this.cycleH=(opts.fit&&opts.height)?opts.height:$el.height();this.cycleW=(opts.fit&&opts.width)?opts.width:$el.width();if($el.is("img")){var loadingIE=($.browser.msie&&this.cycleW==28&&this.cycleH==30&&!this.complete);var loadingOp=($.browser.opera&&this.cycleW==42&&this.cycleH==19&&!this.complete);var loadingOther=(this.cycleH==0&&this.cycleW==0&&!this.complete);if(loadingIE||loadingOp||loadingOther){if(o.s&&opts.requeueOnImageNotLoaded&&++options.requeueAttempts<100){log(options.requeueAttempts," - img slide not loaded, requeuing slideshow: ",this.src,this.cycleW,this.cycleH);setTimeout(function(){$(o.s,o.c).cycle(options);},opts.requeueTimeout);requeue=true;return false;}else{log("could not determine size of image: "+this.src,this.cycleW,this.cycleH);}}}return true;});if(requeue){return false;}opts.cssBefore=opts.cssBefore||{};opts.animIn=opts.animIn||{};opts.animOut=opts.animOut||{};$slides.not(":eq("+first+")").css(opts.cssBefore);if(opts.cssFirst){$($slides[first]).css(opts.cssFirst);}if(opts.timeout){opts.timeout=parseInt(opts.timeout);if(opts.speed.constructor==String){opts.speed=$.fx.speeds[opts.speed]||parseInt(opts.speed);}if(!opts.sync){opts.speed=opts.speed/2;}while((opts.timeout-opts.speed)<250){opts.timeout+=opts.speed;}}if(opts.easing){opts.easeIn=opts.easeOut=opts.easing;}if(!opts.speedIn){opts.speedIn=opts.speed;}if(!opts.speedOut){opts.speedOut=opts.speed;}opts.slideCount=els.length;opts.currSlide=opts.lastSlide=first;if(opts.random){opts.nextSlide=opts.currSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.startingSlide>=(els.length-1)?0:opts.startingSlide+1;}var e0=$slides[first];if(opts.before.length){opts.before[0].apply(e0,[e0,e0,opts,true]);}if(opts.after.length>1){opts.after[1].apply(e0,[e0,e0,opts,true]);}if(opts.next){$(opts.next).click(function(){return advance(opts,opts.rev?-1:1);});}if(opts.prev){$(opts.prev).click(function(){return advance(opts,opts.rev?1:-1);});}if(opts.pager){buildPager(els,opts);}exposeAddSlide(opts,els);return opts;}function saveOriginalOpts(opts){opts.original={before:[],after:[]};opts.original.cssBefore=$.extend({},opts.cssBefore);opts.original.cssAfter=$.extend({},opts.cssAfter);opts.original.animIn=$.extend({},opts.animIn);opts.original.animOut=$.extend({},opts.animOut);$.each(opts.before,function(){opts.original.before.push(this);});$.each(opts.after,function(){opts.original.after.push(this);});}function supportMultiTransitions(opts){var txs=$.fn.cycle.transitions;if(opts.fx.indexOf(",")>0){opts.multiFx=true;opts.fxs=opts.fx.replace(/\s*/g,"").split(",");for(var i=0;i<opts.fxs.length;i++){var fx=opts.fxs[i];var tx=txs[fx];if(!tx||!txs.hasOwnProperty(fx)||!$.isFunction(tx)){log("discarding unknown transition: ",fx);opts.fxs.splice(i,1);i--;}}if(!opts.fxs.length){log("No valid transitions named; slideshow terminating.");return false;}}else{if(opts.fx=="all"){opts.multiFx=true;opts.fxs=[];for(p in txs){var tx=txs[p];if(txs.hasOwnProperty(p)&&$.isFunction(tx)){opts.fxs.push(p);}}}}if(opts.multiFx&&opts.randomizeEffects){var r1=Math.floor(Math.random()*20)+30;for(var i=0;i<r1;i++){var r2=Math.floor(Math.random()*opts.fxs.length);opts.fxs.push(opts.fxs.splice(r2,1)[0]);}log("randomized fx sequence: ",opts.fxs);}return true;}function exposeAddSlide(opts,els){opts.addSlide=function(newSlide,prepend){var $s=$(newSlide),s=$s[0];if(!opts.autostopCount){opts.countdown++;}els[prepend?"unshift":"push"](s);if(opts.els){opts.els[prepend?"unshift":"push"](s);}opts.slideCount=els.length;$s.css("position","absolute");$s[prepend?"prependTo":"appendTo"](opts.$cont);if(prepend){opts.currSlide++;opts.nextSlide++;}if(!$.support.opacity&&opts.cleartype&&!opts.cleartypeNoBg){clearTypeFix($s);}if(opts.fit&&opts.width){$s.width(opts.width);}if(opts.fit&&opts.height&&opts.height!="auto"){$slides.height(opts.height);}s.cycleH=(opts.fit&&opts.height)?opts.height:$s.height();s.cycleW=(opts.fit&&opts.width)?opts.width:$s.width();$s.css(opts.cssBefore);if(opts.pager){$.fn.cycle.createPagerAnchor(els.length-1,s,$(opts.pager),els,opts);}if($.isFunction(opts.onAddSlide)){opts.onAddSlide($s);}else{$s.hide();}};}$.fn.cycle.resetState=function(opts,fx){fx=fx||opts.fx;opts.before=[];opts.after=[];opts.cssBefore=$.extend({},opts.original.cssBefore);opts.cssAfter=$.extend({},opts.original.cssAfter);opts.animIn=$.extend({},opts.original.animIn);opts.animOut=$.extend({},opts.original.animOut);opts.fxFn=null;$.each(opts.original.before,function(){opts.before.push(this);});$.each(opts.original.after,function(){opts.after.push(this);});var init=$.fn.cycle.transitions[fx];if($.isFunction(init)){init(opts.$cont,$(opts.elements),opts);}};function go(els,opts,manual,fwd){if(manual&&opts.busy&&opts.manualTrump){$(els).stop(true,true);opts.busy=false;}if(opts.busy){return;}var p=opts.$cont[0],curr=els[opts.currSlide],next=els[opts.nextSlide];if(p.cycleStop!=opts.stopCount||p.cycleTimeout===0&&!manual){return;}if(!manual&&!p.cyclePause&&((opts.autostop&&(--opts.countdown<=0))||(opts.nowrap&&!opts.random&&opts.nextSlide<opts.currSlide))){if(opts.end){opts.end(opts);}return;}if(manual||!p.cyclePause){var fx=opts.fx;curr.cycleH=curr.cycleH||$(curr).height();curr.cycleW=curr.cycleW||$(curr).width();next.cycleH=next.cycleH||$(next).height();next.cycleW=next.cycleW||$(next).width();if(opts.multiFx){if(opts.lastFx==undefined||++opts.lastFx>=opts.fxs.length){opts.lastFx=0;}fx=opts.fxs[opts.lastFx];opts.currFx=fx;}if(opts.oneTimeFx){fx=opts.oneTimeFx;opts.oneTimeFx=null;}$.fn.cycle.resetState(opts,fx);if(opts.before.length){$.each(opts.before,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});}var after=function(){$.each(opts.after,function(i,o){if(p.cycleStop!=opts.stopCount){return;}o.apply(next,[curr,next,opts,fwd]);});};if(opts.nextSlide!=opts.currSlide){opts.busy=1;if(opts.fxFn){opts.fxFn(curr,next,opts,after,fwd);}else{if($.isFunction($.fn.cycle[opts.fx])){$.fn.cycle[opts.fx](curr,next,opts,after);}else{$.fn.cycle.custom(curr,next,opts,after,manual&&opts.fastOnEvent);}}}opts.lastSlide=opts.currSlide;if(opts.random){opts.currSlide=opts.nextSlide;if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{var roll=(opts.nextSlide+1)==els.length;opts.nextSlide=roll?0:opts.nextSlide+1;opts.currSlide=roll?els.length-1:opts.nextSlide-1;}if(opts.pager){$.fn.cycle.updateActivePagerLink(opts.pager,opts.currSlide);}}var ms=0;if(opts.timeout&&!opts.continuous){ms=getTimeout(curr,next,opts,fwd);}else{if(opts.continuous&&p.cyclePause){ms=10;}}if(ms>0){p.cycleTimeout=setTimeout(function(){go(els,opts,0,!opts.rev);},ms);}}$.fn.cycle.updateActivePagerLink=function(pager,currSlide){$(pager).find("a").removeClass("activeSlide").filter("a:eq("+currSlide+")").addClass("activeSlide");};function getTimeout(curr,next,opts,fwd){if(opts.timeoutFn){var t=opts.timeoutFn(curr,next,opts,fwd);if(t!==false){return t;}}return opts.timeout;}$.fn.cycle.next=function(opts){advance(opts,opts.rev?-1:1);};$.fn.cycle.prev=function(opts){advance(opts,opts.rev?1:-1);};function advance(opts,val){var els=opts.elements;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if(opts.random&&val<0){opts.randomIndex--;if(--opts.randomIndex==-2){opts.randomIndex=els.length-2;}else{if(opts.randomIndex==-1){opts.randomIndex=els.length-1;}}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{if(opts.random){if(++opts.randomIndex==els.length){opts.randomIndex=0;}opts.nextSlide=opts.randomMap[opts.randomIndex];}else{opts.nextSlide=opts.currSlide+val;if(opts.nextSlide<0){if(opts.nowrap){return false;}opts.nextSlide=els.length-1;}else{if(opts.nextSlide>=els.length){if(opts.nowrap){return false;}opts.nextSlide=0;}}}}if($.isFunction(opts.prevNextClick)){opts.prevNextClick(val>0,opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,val>=0);return false;}function buildPager(els,opts){var $p=$(opts.pager);$.each(els,function(i,o){$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);});$.fn.cycle.updateActivePagerLink(opts.pager,opts.startingSlide);}$.fn.cycle.createPagerAnchor=function(i,el,$p,els,opts){var a=($.isFunction(opts.pagerAnchorBuilder))?opts.pagerAnchorBuilder(i,el):'<a href="#">'+(i+1)+"</a>";if(!a){return;}var $a=$(a);if($a.parents("body").length==0){$a.appendTo($p);}$a.bind(opts.pagerEvent,function(){opts.nextSlide=i;var p=opts.$cont[0],timeout=p.cycleTimeout;if(timeout){clearTimeout(timeout);p.cycleTimeout=0;}if($.isFunction(opts.pagerClick)){opts.pagerClick(opts.nextSlide,els[opts.nextSlide]);}go(els,opts,1,opts.currSlide<i);return false;});if(opts.pauseOnPagerHover){$a.hover(function(){opts.$cont[0].cyclePause++;},function(){opts.$cont[0].cyclePause--;});}};$.fn.cycle.hopsFromLast=function(opts,fwd){var hops,l=opts.lastSlide,c=opts.currSlide;if(fwd){hops=c>l?c-l:opts.slideCount-l;}else{hops=c<l?l-c:l+opts.slideCount-c;}return hops;};function clearTypeFix($slides){function hex(s){s=parseInt(s).toString(16);return s.length<2?"0"+s:s;}function getBg(e){for(;e&&e.nodeName.toLowerCase()!="html";e=e.parentNode){var v=$.css(e,"background-color");if(v.indexOf("rgb")>=0){var rgb=v.match(/\d+/g);return"#"+hex(rgb[0])+hex(rgb[1])+hex(rgb[2]);}if(v&&v!="transparent"){return v;}}return"#ffffff";}$slides.each(function(){$(this).css("background-color",getBg(this));});}$.fn.cycle.commonReset=function(curr,next,opts,w,h,rev){$(opts.elements).not(curr).hide();opts.cssBefore.opacity=1;opts.cssBefore.display="block";if(w!==false&&next.cycleW>0){opts.cssBefore.width=next.cycleW;}if(h!==false&&next.cycleH>0){opts.cssBefore.height=next.cycleH;}opts.cssAfter=opts.cssAfter||{};opts.cssAfter.display="none";$(curr).css("zIndex",opts.slideCount+(rev===true?1:0));$(next).css("zIndex",opts.slideCount+(rev===true?0:1));};$.fn.cycle.custom=function(curr,next,opts,cb,speedOverride){var $l=$(curr),$n=$(next);var speedIn=opts.speedIn,speedOut=opts.speedOut,easeIn=opts.easeIn,easeOut=opts.easeOut;$n.css(opts.cssBefore);if(speedOverride){if(typeof speedOverride=="number"){speedIn=speedOut=speedOverride;}else{speedIn=speedOut=1;}easeIn=easeOut=null;}var fn=function(){$n.animate(opts.animIn,speedIn,easeIn,cb);};$l.animate(opts.animOut,speedOut,easeOut,function(){if(opts.cssAfter){$l.css(opts.cssAfter);}if(!opts.sync){fn();}});if(opts.sync){fn();}};$.fn.cycle.transitions={fade:function($cont,$slides,opts){$slides.not(":eq("+opts.currSlide+")").css("opacity",0);opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.opacity=0;});opts.animIn={opacity:1};opts.animOut={opacity:0};opts.cssBefore={top:0,left:0};}};$.fn.cycle.ver=function(){return ver;};$.fn.cycle.defaults={fx:"fade",timeout:4000,timeoutFn:null,continuous:0,speed:1000,speedIn:null,speedOut:null,next:null,prev:null,prevNextClick:null,pager:null,pagerClick:null,pagerEvent:"click",pagerAnchorBuilder:null,before:null,after:null,end:null,easing:null,easeIn:null,easeOut:null,shuffle:null,animIn:null,animOut:null,cssBefore:null,cssAfter:null,fxFn:null,height:"auto",startingSlide:0,sync:1,random:0,fit:0,containerResize:1,pause:0,pauseOnPagerHover:0,autostop:0,autostopCount:0,delay:0,slideExpr:null,cleartype:!$.support.opacity,nowrap:0,fastOnEvent:0,randomizeEffects:1,rev:0,manualTrump:true,requeueOnImageNotLoaded:true,requeueTimeout:250};})(jQuery);
/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2008 M. Alsup
 * Version:	 2.52
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
;(function($){$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});opts.speed=opts.speed/2;opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(var i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(var i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var t=parseInt(h/2);var l=parseInt(w/2);clip="rect("+t+"px "+l+"px "+t+"px "+l+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);
;
/*
 * 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. 
 *
 */;
// $Id$ 
Drupal.behaviors.views_showcaseBehavior = function (context) {
  //change the active slide class name
  $.fn.cycle.updateActivePagerLink = function(pager, currSlideIndex) { 
      $(pager).find('.views-showcase-pager-item').removeClass('activeItem') 
          .filter('.views-showcase-pager-item:eq('+currSlideIndex+')').addClass('activeItem'); 
  };
  
  var sync      = Drupal.settings.views_showcase.sync      == "true" ? true : false;
  var listPause = Drupal.settings.views_showcase.listPause == "true" ? true : false;
  var pause     = Drupal.settings.views_showcase.pause     == "true" ? true : false;

  //if timeout is set to a negative value change it to 0
  if (parseInt(Drupal.settings.views_showcase.timeout) > 0) {
    var handled_timeout = parseInt(Drupal.settings.views_showcase.timeout);
  }
  else {
    var handled_timeout = 0;
  }

  $('ul.views-showcase-big-panel').cycle({ 
    fx: Drupal.settings.views_showcase.cycle,
    easing: Drupal.settings.views_showcase.easing,
    sync: sync,
    pauseOnPagerHover: listPause,
    pause: pause,
    timeout: handled_timeout,
    pager:  '.views-showcase-mini-list',
    pagerAnchorBuilder: function(idx, slide) { 
        // return selector string for existing anchor 
        return '.views-showcase-mini-list .views-showcase-pager-item:eq(' + idx + ')'; 
    }
  });
};
;

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

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

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

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

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

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

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

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

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

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

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

		// bind the function to the two event listeners
		return this.mouseover(handleHover).mouseout(handleHover);
	};
	
})(jQuery);;

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

(function($){

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

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

})(jQuery);;

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

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

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

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

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

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

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

})(jQuery);
;

Drupal.behaviors.fusionEqualheights = function (context) {
  if (jQuery().equalHeights) {
    $("#header-top-wrapper div.equal-heights div.content").equalHeights();
    $("#header-group-wrapper div.equal-heights div.content").equalHeights();
    $("#preface-top-wrapper div.equal-heights div.content").equalHeights();
    $("#preface-bottom div.equal-heights div.content").equalHeights();
    $("#sidebar-first div.equal-heights div.content").equalHeights();
    $("#content-top div.equal-heights div.content").equalHeights();
    $("#content-region div.equal-heights div.content").equalHeights();
    $("#content-bottom div.equal-heights div.content").equalHeights();
    $("#node-top div.equal-heights div.content").equalHeights();
    $("#node-bottom div.equal-heights div.content").equalHeights();
    $("#sidebar-last div.equal-heights div.content").equalHeights();
    $("#postscript-top div.equal-heights div.content").equalHeights();
    $("#postscript-bottom-wrapper div.equal-heights div.content").equalHeights();
    $("#footer-wrapper div.equal-heights div.content").equalHeights();
  }
};

Drupal.behaviors.fusionIE6fixes = function (context) {
  // IE6 & less-specific functions
  // Add hover class to primary menu li elements on hover
  if ($.browser.msie && ($.browser.version < 7)) {
    $('form input.form-submit').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('#primary-menu ul.sf-menu li.expanded').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('.sf-menu li').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
    $('#search input#search_header').hover(function() {
      $(this).addClass('hover');
      }, function() {
        $(this).removeClass('hover');
    });
  };
};

Drupal.behaviors.fusionOverlabel = function (context) {
  if (jQuery().overlabel) {
    $("div.fusion-horiz-login label").overlabel();
  }
};

Drupal.behaviors.fusionSuperfish = function (context) {
  $("#primary-menu ul.sf-menu").superfish({
    hoverClass:  'sfHover',
    delay:       250,
    animation:   {opacity:'show',height:'show'},
    speed:       'fast',
    autoArrows:  false,
    dropShadows: false,
    disableHI:   true
  }).supposition();
};

Drupal.behaviors.fusionSuperfishBlocks = function (context) {
  $("div.block ul.sf-menu").superfish({
    hoverClass:  'sfHover',
    delay:       250,
    animation:   {opacity:'show',height:'show'},
    speed:       'fast',
    autoArrows:  false,
    dropShadows: false,
    disableHI:   true
  }).supposition();
};

Drupal.behaviors.fusionGridMask = function (context) {
  if ($('body.grid-mask-enabled').size() > 0) {
    var grid_width_pos = parseInt($('body').attr('class').indexOf('grid-width-')) + 11;
    var grid_width = $('body').attr('class').substring(grid_width_pos, grid_width_pos + 2);
    var grid = '<div id="grid-mask-overlay" class="full-width"><div class="row">';
    for (i = 1; i <= grid_width; i++) {
      grid += '<div class="block grid' + grid_width + '-1"><div class="inner"></div></div>';
    }
    grid += '</div></div>';
    $('body.grid-mask-enabled').prepend(grid);
    $('#grid-mask-overlay .row').addClass('grid' + grid_width + '-' + grid_width);
    $('#grid-mask-overlay .block .inner').height($('body').height());
  }
};

Drupal.behaviors.fusionGridMaskToggle = function (context) {
  if ($('body.grid-mask-enabled').size() > 0) {
    $('body.grid-mask-enabled').prepend('<div id="grid-mask-toggle">grid</div>');
    $('div#grid-mask-toggle')
      .toggle( function () {
        $(this).toggleClass('grid-on');
        $('body').toggleClass('grid-mask');
      },
      function() {
        $(this).toggleClass('grid-on');
        $('body').toggleClass('grid-mask');
      });
  }
};

Drupal.behaviors.fusionPanelsShowEdit = function (context) {
  // Sets parent row and block elements to have "overflow: visible" if editing Panel page
  if ($("#panels-edit-display-form").size() > 0 || $("#page-manager-edit").size() > 0) {
    $("#panels-edit-display-form").parents('.row, .block').css("overflow", "visible");
    $("#page-manager-edit").parents('.row, .block').css("overflow", "visible");
  }
};

Drupal.behaviors.fusionScreenshotpreview = function (context) {
  // Displays Skinr previews
  if ($('span.preview-icon').size() > 0) {
    // configure distance of preview from the cursor
    var xOffset = 20;
    var yOffset = 0;
  
    $('span.preview-icon').hover(function(e){
      var img_class = this.id;
      var caption = $(this).parent().text();
      // add preview markup
      $('body').append('<div id="screenshot">' +
                       '<div class="screenshot-preview ' + img_class + '" alt="preview"></div>' + 
                       '<div class="screenshot-caption">' + caption + '</div>' +
                       '</div>');
      $("#screenshot").hide();  // hide preview until dimensions are set
      $("#screenshot").css("left", (e.pageX + xOffset) + "px").css("top", (e.pageY + yOffset) + "px");  // set initial preview position
      // load image in order to set preview dimensions
      var img = new Image();
      img.onload = function() {
        var caption_height = parseFloat($("#screenshot .screenshot-caption").css("height"));
        $("#screenshot").css("height", img.height + caption_height);
        $("#screenshot").css("width", img.width);
        $("#screenshot ." + img_class).css("height", img.height);
        $("#screenshot ." + img_class).css("width", img.width);
        $("#screenshot .screenshot-caption").css("width", img.width - 10);
        $("#screenshot").fadeIn("fast");  // now show preview
      }
      img.src = $("." + img_class).css("background-image").replace(/^url|[\(\)\"]/g, '');
    },
    function(){
      $("#screenshot").remove();
    });
    // adjust preview position with cursor movement
    $("span.preview-icon").mousemove(function(e){
      $("#screenshot").css("left", (e.pageX + xOffset) + "px").css("top", (e.pageY + yOffset) + "px");
    });
  }
};
;
// $Id: jquery.corner.js,v 1.1.2.1 2009/09/03 09:30:00 sociotech Exp $

/*!
 * jQuery corner plugin: simple corner rounding
 * Examples and documentation at: http://jquery.malsup.com/corner/
 * version 1.98 (02-JUN-2009)
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */

/**
 *  corner() takes a single string argument:  $('#myDiv').corner("effect corners width")
 *
 *  effect:  name of the effect to apply, such as round, bevel, notch, bite, etc (default is round). 
 *  corners: one or more of: top, bottom, tr, tl, br, or bl. 
 *           by default, all four corners are adorned. 
 *  width:   width of the effect; in the case of rounded corners this is the radius. 
 *           specify this value using the px suffix such as 10px (and yes, it must be pixels).
 *
 * @name corner
 * @type jQuery
 * @param String options Options which control the corner style
 * @cat Plugins/Corner
 * @return jQuery
 * @author Dave Methvin (http://methvin.com/jquery/jq-corner.html)
 * @author Mike Alsup   (http://jquery.malsup.com/corner/)
 */
;(function($) { 

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

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

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

    o = (o||"").toLowerCase();
    var keep = /keep/.test(o);                       // keep borders?
    var cc = ((o.match(/cc:(#[0-9a-f]+)/)||[])[1]);  // corner color
    var sc = ((o.match(/sc:(#[0-9a-f]+)/)||[])[1]);  // strip color
    var width = parseInt((o.match(/(\d+)px/)||[])[1]) || 10; // corner width
    var re = /round|bevel|notch|bite|cool|sharp|slide|jut|curl|tear|fray|wicked|sculpt|long|dog3|dog2|dog/;
    var fx = ((o.match(re)||['round'])[0]);
    var edges = { T:0, B:1 };
    var opts = {
        TL:  /top|tl/.test(o),       TR:  /top|tr/.test(o),
        BL:  /bottom|bl/.test(o),    BR:  /bottom|br/.test(o)
    };
    if ( !opts.TL && !opts.TR && !opts.BL && !opts.BR )
        opts = { TL:1, TR:1, BL:1, BR:1 };
    var strip = document.createElement('div');
    strip.style.overflow = 'hidden';
    strip.style.height = '1px';
    strip.style.backgroundColor = sc || 'transparent';
    strip.style.borderStyle = 'solid';
    return this.each(function(index){
        var pad = {
            T: parseInt($.css(this,'paddingTop'))||0,     R: parseInt($.css(this,'paddingRight'))||0,
            B: parseInt($.css(this,'paddingBottom'))||0,  L: parseInt($.css(this,'paddingLeft'))||0
        };

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

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

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

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

                for (var i=0; i < width; i++) {
                    var w = Math.max(0,getWidth(fx,i, width));
                    var e = strip.cloneNode(false);
                    e.style.borderWidth = '0 '+(opts[j+'R']?w:0)+'px 0 '+(opts[j+'L']?w:0)+'px';
                    bot ? d.appendChild(e) : d.insertBefore(e, d.firstChild);
                }
            }
        }
    });
};

$.fn.uncorner = function() { 
	$('div.jquery-corner', this).remove();
	return this;
};
    
})(jQuery);
;
// $Id: acquia-prosper-script.js,v 1.1.2.1 2009/09/03 09:30:00 sociotech Exp $

Drupal.behaviors.prosperBlocks = function (context) {
  $(".prosper-rounded-title h2.block-title").corner("top 5px"); 
  $(".prosper-shoppingcart h2.block-title").corner("top 5px"); 
  $(".prosper-menu-list h2.block-title").corner("top 5px"); 
  $(".prosper-grayborder-darkbackground .inner").corner("7px"); 
};;
/*!
 * jQuery UI 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI
 */
(function(c,j){function k(a,b){var d=a.nodeName.toLowerCase();if("area"===d){b=a.parentNode;d=b.name;if(!a.href||!d||b.nodeName.toLowerCase()!=="map")return false;a=c("img[usemap=#"+d+"]")[0];return!!a&&l(a)}return(/input|select|textarea|button|object/.test(d)?!a.disabled:"a"==d?a.href||b:b)&&l(a)}function l(a){return!c(a).parents().andSelf().filter(function(){return c.curCSS(this,"visibility")==="hidden"||c.expr.filters.hidden(this)}).length}c.ui=c.ui||{};if(!c.ui.version){c.extend(c.ui,{version:"1.8.14",
keyCode:{ALT:18,BACKSPACE:8,CAPS_LOCK:20,COMMA:188,COMMAND:91,COMMAND_LEFT:91,COMMAND_RIGHT:93,CONTROL:17,DELETE:46,DOWN:40,END:35,ENTER:13,ESCAPE:27,HOME:36,INSERT:45,LEFT:37,MENU:93,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,WINDOWS:91}});c.fn.extend({_focus:c.fn.focus,focus:function(a,b){return typeof a==="number"?this.each(function(){var d=this;setTimeout(function(){c(d).focus();
b&&b.call(d)},a)}):this._focus.apply(this,arguments)},scrollParent:function(){var a;a=c.browser.msie&&/(static|relative)/.test(this.css("position"))||/absolute/.test(this.css("position"))?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):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"))||!a.length?c(document):a},zIndex:function(a){if(a!==j)return this.css("zIndex",a);if(this.length){a=c(this[0]);for(var b;a.length&&a[0]!==document;){b=a.css("position");if(b==="absolute"||b==="relative"||b==="fixed"){b=parseInt(a.css("zIndex"),10);if(!isNaN(b)&&b!==0)return b}a=a.parent()}}return 0},disableSelection:function(){return this.bind((c.support.selectstart?"selectstart":"mousedown")+".ui-disableSelection",
function(a){a.preventDefault()})},enableSelection:function(){return this.unbind(".ui-disableSelection")}});c.each(["Width","Height"],function(a,b){function d(f,g,m,n){c.each(e,function(){g-=parseFloat(c.curCSS(f,"padding"+this,true))||0;if(m)g-=parseFloat(c.curCSS(f,"border"+this+"Width",true))||0;if(n)g-=parseFloat(c.curCSS(f,"margin"+this,true))||0});return g}var e=b==="Width"?["Left","Right"]:["Top","Bottom"],h=b.toLowerCase(),i={innerWidth:c.fn.innerWidth,innerHeight:c.fn.innerHeight,outerWidth:c.fn.outerWidth,
outerHeight:c.fn.outerHeight};c.fn["inner"+b]=function(f){if(f===j)return i["inner"+b].call(this);return this.each(function(){c(this).css(h,d(this,f)+"px")})};c.fn["outer"+b]=function(f,g){if(typeof f!=="number")return i["outer"+b].call(this,f);return this.each(function(){c(this).css(h,d(this,f,true,g)+"px")})}});c.extend(c.expr[":"],{data:function(a,b,d){return!!c.data(a,d[3])},focusable:function(a){return k(a,!isNaN(c.attr(a,"tabindex")))},tabbable:function(a){var b=c.attr(a,"tabindex"),d=isNaN(b);
return(d||b>=0)&&k(a,!d)}});c(function(){var a=document.body,b=a.appendChild(b=document.createElement("div"));c.extend(b.style,{minHeight:"100px",height:"auto",padding:0,borderWidth:0});c.support.minHeight=b.offsetHeight===100;c.support.selectstart="onselectstart"in b;a.removeChild(b).style.display="none"});c.extend(c.ui,{plugin:{add:function(a,b,d){a=c.ui[a].prototype;for(var e in d){a.plugins[e]=a.plugins[e]||[];a.plugins[e].push([b,d[e]])}},call:function(a,b,d){if((b=a.plugins[b])&&a.element[0].parentNode)for(var e=
0;e<b.length;e++)a.options[b[e][0]]&&b[e][1].apply(a.element,d)}},contains:function(a,b){return document.compareDocumentPosition?a.compareDocumentPosition(b)&16:a!==b&&a.contains(b)},hasScroll:function(a,b){if(c(a).css("overflow")==="hidden")return false;b=b&&b==="left"?"scrollLeft":"scrollTop";var d=false;if(a[b]>0)return true;a[b]=1;d=a[b]>0;a[b]=0;return d},isOverAxis:function(a,b,d){return a>b&&a<b+d},isOver:function(a,b,d,e,h,i){return c.ui.isOverAxis(a,d,h)&&c.ui.isOverAxis(b,e,i)}})}})(jQuery);
;/*!
 * jQuery UI Widget 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Widget
 */
(function(b,j){if(b.cleanData){var k=b.cleanData;b.cleanData=function(a){for(var c=0,d;(d=a[c])!=null;c++)b(d).triggerHandler("remove");k(a)}}else{var l=b.fn.remove;b.fn.remove=function(a,c){return this.each(function(){if(!c)if(!a||b.filter(a,[this]).length)b("*",this).add([this]).each(function(){b(this).triggerHandler("remove")});return l.call(b(this),a,c)})}}b.widget=function(a,c,d){var e=a.split(".")[0],f;a=a.split(".")[1];f=e+"-"+a;if(!d){d=c;c=b.Widget}b.expr[":"][f]=function(h){return!!b.data(h,
a)};b[e]=b[e]||{};b[e][a]=function(h,g){arguments.length&&this._createWidget(h,g)};c=new c;c.options=b.extend(true,{},c.options);b[e][a].prototype=b.extend(true,c,{namespace:e,widgetName:a,widgetEventPrefix:b[e][a].prototype.widgetEventPrefix||a,widgetBaseClass:f},d);b.widget.bridge(a,b[e][a])};b.widget.bridge=function(a,c){b.fn[a]=function(d){var e=typeof d==="string",f=Array.prototype.slice.call(arguments,1),h=this;d=!e&&f.length?b.extend.apply(null,[true,d].concat(f)):d;if(e&&d.charAt(0)==="_")return h;
e?this.each(function(){var g=b.data(this,a),i=g&&b.isFunction(g[d])?g[d].apply(g,f):g;if(i!==g&&i!==j){h=i;return false}}):this.each(function(){var g=b.data(this,a);g?g.option(d||{})._init():b.data(this,a,new c(d,this))});return h}};b.Widget=function(a,c){arguments.length&&this._createWidget(a,c)};b.Widget.prototype={widgetName:"widget",widgetEventPrefix:"",options:{disabled:false},_createWidget:function(a,c){b.data(c,this.widgetName,this);this.element=b(c);this.options=b.extend(true,{},this.options,
this._getCreateOptions(),a);var d=this;this.element.bind("remove."+this.widgetName,function(){d.destroy()});this._create();this._trigger("create");this._init()},_getCreateOptions:function(){return b.metadata&&b.metadata.get(this.element[0])[this.widgetName]},_create:function(){},_init:function(){},destroy:function(){this.element.unbind("."+this.widgetName).removeData(this.widgetName);this.widget().unbind("."+this.widgetName).removeAttr("aria-disabled").removeClass(this.widgetBaseClass+"-disabled ui-state-disabled")},
widget:function(){return this.element},option:function(a,c){var d=a;if(arguments.length===0)return b.extend({},this.options);if(typeof a==="string"){if(c===j)return this.options[a];d={};d[a]=c}this._setOptions(d);return this},_setOptions:function(a){var c=this;b.each(a,function(d,e){c._setOption(d,e)});return this},_setOption:function(a,c){this.options[a]=c;if(a==="disabled")this.widget()[c?"addClass":"removeClass"](this.widgetBaseClass+"-disabled ui-state-disabled").attr("aria-disabled",c);return this},
enable:function(){return this._setOption("disabled",false)},disable:function(){return this._setOption("disabled",true)},_trigger:function(a,c,d){var e=this.options[a];c=b.Event(c);c.type=(a===this.widgetEventPrefix?a:this.widgetEventPrefix+a).toLowerCase();d=d||{};if(c.originalEvent){a=b.event.props.length;for(var f;a;){f=b.event.props[--a];c[f]=c.originalEvent[f]}}this.element.trigger(c,d);return!(b.isFunction(e)&&e.call(this.element[0],c,d)===false||c.isDefaultPrevented())}}})(jQuery);
;/*!
 * jQuery UI Mouse 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Mouse
 *
 * Depends:
 *	jquery.ui.widget.js
 */
(function(b){var d=false;b(document).mousedown(function(){d=false});b.widget("ui.mouse",{options:{cancel:":input,option",distance:1,delay:0},_mouseInit:function(){var a=this;this.element.bind("mousedown."+this.widgetName,function(c){return a._mouseDown(c)}).bind("click."+this.widgetName,function(c){if(true===b.data(c.target,a.widgetName+".preventClickEvent")){b.removeData(c.target,a.widgetName+".preventClickEvent");c.stopImmediatePropagation();return false}});this.started=false},_mouseDestroy:function(){this.element.unbind("."+
this.widgetName)},_mouseDown:function(a){if(!d){this._mouseStarted&&this._mouseUp(a);this._mouseDownEvent=a;var c=this,f=a.which==1,g=typeof this.options.cancel=="string"?b(a.target).closest(this.options.cancel).length:false;if(!f||g||!this._mouseCapture(a))return true;this.mouseDelayMet=!this.options.delay;if(!this.mouseDelayMet)this._mouseDelayTimer=setTimeout(function(){c.mouseDelayMet=true},this.options.delay);if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a)){this._mouseStarted=this._mouseStart(a)!==
false;if(!this._mouseStarted){a.preventDefault();return true}}true===b.data(a.target,this.widgetName+".preventClickEvent")&&b.removeData(a.target,this.widgetName+".preventClickEvent");this._mouseMoveDelegate=function(e){return c._mouseMove(e)};this._mouseUpDelegate=function(e){return c._mouseUp(e)};b(document).bind("mousemove."+this.widgetName,this._mouseMoveDelegate).bind("mouseup."+this.widgetName,this._mouseUpDelegate);a.preventDefault();return d=true}},_mouseMove:function(a){if(b.browser.msie&&
!(document.documentMode>=9)&&!a.button)return this._mouseUp(a);if(this._mouseStarted){this._mouseDrag(a);return a.preventDefault()}if(this._mouseDistanceMet(a)&&this._mouseDelayMet(a))(this._mouseStarted=this._mouseStart(this._mouseDownEvent,a)!==false)?this._mouseDrag(a):this._mouseUp(a);return!this._mouseStarted},_mouseUp:function(a){b(document).unbind("mousemove."+this.widgetName,this._mouseMoveDelegate).unbind("mouseup."+this.widgetName,this._mouseUpDelegate);if(this._mouseStarted){this._mouseStarted=
false;a.target==this._mouseDownEvent.target&&b.data(a.target,this.widgetName+".preventClickEvent",true);this._mouseStop(a)}return false},_mouseDistanceMet:function(a){return Math.max(Math.abs(this._mouseDownEvent.pageX-a.pageX),Math.abs(this._mouseDownEvent.pageY-a.pageY))>=this.options.distance},_mouseDelayMet:function(){return this.mouseDelayMet},_mouseStart:function(){},_mouseDrag:function(){},_mouseStop:function(){},_mouseCapture:function(){return true}})})(jQuery);
;/*
 * jQuery UI Position 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Position
 */
(function(c){c.ui=c.ui||{};var n=/left|center|right/,o=/top|center|bottom/,t=c.fn.position,u=c.fn.offset;c.fn.position=function(b){if(!b||!b.of)return t.apply(this,arguments);b=c.extend({},b);var a=c(b.of),d=a[0],g=(b.collision||"flip").split(" "),e=b.offset?b.offset.split(" "):[0,0],h,k,j;if(d.nodeType===9){h=a.width();k=a.height();j={top:0,left:0}}else if(d.setTimeout){h=a.width();k=a.height();j={top:a.scrollTop(),left:a.scrollLeft()}}else if(d.preventDefault){b.at="left top";h=k=0;j={top:b.of.pageY,
left:b.of.pageX}}else{h=a.outerWidth();k=a.outerHeight();j=a.offset()}c.each(["my","at"],function(){var f=(b[this]||"").split(" ");if(f.length===1)f=n.test(f[0])?f.concat(["center"]):o.test(f[0])?["center"].concat(f):["center","center"];f[0]=n.test(f[0])?f[0]:"center";f[1]=o.test(f[1])?f[1]:"center";b[this]=f});if(g.length===1)g[1]=g[0];e[0]=parseInt(e[0],10)||0;if(e.length===1)e[1]=e[0];e[1]=parseInt(e[1],10)||0;if(b.at[0]==="right")j.left+=h;else if(b.at[0]==="center")j.left+=h/2;if(b.at[1]==="bottom")j.top+=
k;else if(b.at[1]==="center")j.top+=k/2;j.left+=e[0];j.top+=e[1];return this.each(function(){var f=c(this),l=f.outerWidth(),m=f.outerHeight(),p=parseInt(c.curCSS(this,"marginLeft",true))||0,q=parseInt(c.curCSS(this,"marginTop",true))||0,v=l+p+(parseInt(c.curCSS(this,"marginRight",true))||0),w=m+q+(parseInt(c.curCSS(this,"marginBottom",true))||0),i=c.extend({},j),r;if(b.my[0]==="right")i.left-=l;else if(b.my[0]==="center")i.left-=l/2;if(b.my[1]==="bottom")i.top-=m;else if(b.my[1]==="center")i.top-=
m/2;i.left=Math.round(i.left);i.top=Math.round(i.top);r={left:i.left-p,top:i.top-q};c.each(["left","top"],function(s,x){c.ui.position[g[s]]&&c.ui.position[g[s]][x](i,{targetWidth:h,targetHeight:k,elemWidth:l,elemHeight:m,collisionPosition:r,collisionWidth:v,collisionHeight:w,offset:e,my:b.my,at:b.at})});c.fn.bgiframe&&f.bgiframe();f.offset(c.extend(i,{using:b.using}))})};c.ui.position={fit:{left:function(b,a){var d=c(window);d=a.collisionPosition.left+a.collisionWidth-d.width()-d.scrollLeft();b.left=
d>0?b.left-d:Math.max(b.left-a.collisionPosition.left,b.left)},top:function(b,a){var d=c(window);d=a.collisionPosition.top+a.collisionHeight-d.height()-d.scrollTop();b.top=d>0?b.top-d:Math.max(b.top-a.collisionPosition.top,b.top)}},flip:{left:function(b,a){if(a.at[0]!=="center"){var d=c(window);d=a.collisionPosition.left+a.collisionWidth-d.width()-d.scrollLeft();var g=a.my[0]==="left"?-a.elemWidth:a.my[0]==="right"?a.elemWidth:0,e=a.at[0]==="left"?a.targetWidth:-a.targetWidth,h=-2*a.offset[0];b.left+=
a.collisionPosition.left<0?g+e+h:d>0?g+e+h:0}},top:function(b,a){if(a.at[1]!=="center"){var d=c(window);d=a.collisionPosition.top+a.collisionHeight-d.height()-d.scrollTop();var g=a.my[1]==="top"?-a.elemHeight:a.my[1]==="bottom"?a.elemHeight:0,e=a.at[1]==="top"?a.targetHeight:-a.targetHeight,h=-2*a.offset[1];b.top+=a.collisionPosition.top<0?g+e+h:d>0?g+e+h:0}}}};if(!c.offset.setOffset){c.offset.setOffset=function(b,a){if(/static/.test(c.curCSS(b,"position")))b.style.position="relative";var d=c(b),
g=d.offset(),e=parseInt(c.curCSS(b,"top",true),10)||0,h=parseInt(c.curCSS(b,"left",true),10)||0;g={top:a.top-g.top+e,left:a.left-g.left+h};"using"in a?a.using.call(b,g):d.css(g)};c.fn.offset=function(b){var a=this[0];if(!a||!a.ownerDocument)return null;if(b)return this.each(function(){c.offset.setOffset(this,b)});return u.call(this)}}})(jQuery);
;/*
 * jQuery UI Tabs 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Tabs
 *
 * Depends:
 *	jquery.ui.core.js
 *	jquery.ui.widget.js
 */
(function(d,p){function u(){return++v}function w(){return++x}var v=0,x=0;d.widget("ui.tabs",{options:{add:null,ajaxOptions:null,cache:false,cookie:null,collapsible:false,disable:null,disabled:[],enable:null,event:"click",fx:null,idPrefix:"ui-tabs-",load:null,panelTemplate:"<div></div>",remove:null,select:null,show:null,spinner:"<em>Loading&#8230;</em>",tabTemplate:"<li><a href='#{href}'><span>#{label}</span></a></li>"},_create:function(){this._tabify(true)},_setOption:function(b,e){if(b=="selected")this.options.collapsible&&
e==this.options.selected||this.select(e);else{this.options[b]=e;this._tabify()}},_tabId:function(b){return b.title&&b.title.replace(/\s/g,"_").replace(/[^\w\u00c0-\uFFFF-]/g,"")||this.options.idPrefix+u()},_sanitizeSelector:function(b){return b.replace(/:/g,"\\:")},_cookie:function(){var b=this.cookie||(this.cookie=this.options.cookie.name||"ui-tabs-"+w());return d.cookie.apply(null,[b].concat(d.makeArray(arguments)))},_ui:function(b,e){return{tab:b,panel:e,index:this.anchors.index(b)}},_cleanup:function(){this.lis.filter(".ui-state-processing").removeClass("ui-state-processing").find("span:data(label.tabs)").each(function(){var b=
d(this);b.html(b.data("label.tabs")).removeData("label.tabs")})},_tabify:function(b){function e(g,f){g.css("display","");!d.support.opacity&&f.opacity&&g[0].style.removeAttribute("filter")}var a=this,c=this.options,h=/^#.+/;this.list=this.element.find("ol,ul").eq(0);this.lis=d(" > li:has(a[href])",this.list);this.anchors=this.lis.map(function(){return d("a",this)[0]});this.panels=d([]);this.anchors.each(function(g,f){var i=d(f).attr("href"),l=i.split("#")[0],q;if(l&&(l===location.toString().split("#")[0]||
(q=d("base")[0])&&l===q.href)){i=f.hash;f.href=i}if(h.test(i))a.panels=a.panels.add(a.element.find(a._sanitizeSelector(i)));else if(i&&i!=="#"){d.data(f,"href.tabs",i);d.data(f,"load.tabs",i.replace(/#.*$/,""));i=a._tabId(f);f.href="#"+i;f=a.element.find("#"+i);if(!f.length){f=d(c.panelTemplate).attr("id",i).addClass("ui-tabs-panel ui-widget-content ui-corner-bottom").insertAfter(a.panels[g-1]||a.list);f.data("destroy.tabs",true)}a.panels=a.panels.add(f)}else c.disabled.push(g)});if(b){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(c.selected===p){location.hash&&this.anchors.each(function(g,f){if(f.hash==location.hash){c.selected=g;return false}});if(typeof c.selected!=="number"&&c.cookie)c.selected=parseInt(a._cookie(),10);if(typeof c.selected!=="number"&&this.lis.filter(".ui-tabs-selected").length)c.selected=
this.lis.index(this.lis.filter(".ui-tabs-selected"));c.selected=c.selected||(this.lis.length?0:-1)}else if(c.selected===null)c.selected=-1;c.selected=c.selected>=0&&this.anchors[c.selected]||c.selected<0?c.selected:0;c.disabled=d.unique(c.disabled.concat(d.map(this.lis.filter(".ui-state-disabled"),function(g){return a.lis.index(g)}))).sort();d.inArray(c.selected,c.disabled)!=-1&&c.disabled.splice(d.inArray(c.selected,c.disabled),1);this.panels.addClass("ui-tabs-hide");this.lis.removeClass("ui-tabs-selected ui-state-active");
if(c.selected>=0&&this.anchors.length){a.element.find(a._sanitizeSelector(a.anchors[c.selected].hash)).removeClass("ui-tabs-hide");this.lis.eq(c.selected).addClass("ui-tabs-selected ui-state-active");a.element.queue("tabs",function(){a._trigger("show",null,a._ui(a.anchors[c.selected],a.element.find(a._sanitizeSelector(a.anchors[c.selected].hash))[0]))});this.load(c.selected)}d(window).bind("unload",function(){a.lis.add(a.anchors).unbind(".tabs");a.lis=a.anchors=a.panels=null})}else c.selected=this.lis.index(this.lis.filter(".ui-tabs-selected"));
this.element[c.collapsible?"addClass":"removeClass"]("ui-tabs-collapsible");c.cookie&&this._cookie(c.selected,c.cookie);b=0;for(var j;j=this.lis[b];b++)d(j)[d.inArray(b,c.disabled)!=-1&&!d(j).hasClass("ui-tabs-selected")?"addClass":"removeClass"]("ui-state-disabled");c.cache===false&&this.anchors.removeData("cache.tabs");this.lis.add(this.anchors).unbind(".tabs");if(c.event!=="mouseover"){var k=function(g,f){f.is(":not(.ui-state-disabled)")&&f.addClass("ui-state-"+g)},n=function(g,f){f.removeClass("ui-state-"+
g)};this.lis.bind("mouseover.tabs",function(){k("hover",d(this))});this.lis.bind("mouseout.tabs",function(){n("hover",d(this))});this.anchors.bind("focus.tabs",function(){k("focus",d(this).closest("li"))});this.anchors.bind("blur.tabs",function(){n("focus",d(this).closest("li"))})}var m,o;if(c.fx)if(d.isArray(c.fx)){m=c.fx[0];o=c.fx[1]}else m=o=c.fx;var r=o?function(g,f){d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.hide().removeClass("ui-tabs-hide").animate(o,o.duration||"normal",
function(){e(f,o);a._trigger("show",null,a._ui(g,f[0]))})}:function(g,f){d(g).closest("li").addClass("ui-tabs-selected ui-state-active");f.removeClass("ui-tabs-hide");a._trigger("show",null,a._ui(g,f[0]))},s=m?function(g,f){f.animate(m,m.duration||"normal",function(){a.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");e(f,m);a.element.dequeue("tabs")})}:function(g,f){a.lis.removeClass("ui-tabs-selected ui-state-active");f.addClass("ui-tabs-hide");a.element.dequeue("tabs")};
this.anchors.bind(c.event+".tabs",function(){var g=this,f=d(g).closest("li"),i=a.panels.filter(":not(.ui-tabs-hide)"),l=a.element.find(a._sanitizeSelector(g.hash));if(f.hasClass("ui-tabs-selected")&&!c.collapsible||f.hasClass("ui-state-disabled")||f.hasClass("ui-state-processing")||a.panels.filter(":animated").length||a._trigger("select",null,a._ui(this,l[0]))===false){this.blur();return false}c.selected=a.anchors.index(this);a.abort();if(c.collapsible)if(f.hasClass("ui-tabs-selected")){c.selected=
-1;c.cookie&&a._cookie(c.selected,c.cookie);a.element.queue("tabs",function(){s(g,i)}).dequeue("tabs");this.blur();return false}else if(!i.length){c.cookie&&a._cookie(c.selected,c.cookie);a.element.queue("tabs",function(){r(g,l)});a.load(a.anchors.index(this));this.blur();return false}c.cookie&&a._cookie(c.selected,c.cookie);if(l.length){i.length&&a.element.queue("tabs",function(){s(g,i)});a.element.queue("tabs",function(){r(g,l)});a.load(a.anchors.index(this))}else throw"jQuery UI Tabs: Mismatching fragment identifier.";
d.browser.msie&&this.blur()});this.anchors.bind("click.tabs",function(){return false})},_getIndex:function(b){if(typeof b=="string")b=this.anchors.index(this.anchors.filter("[href$="+b+"]"));return b},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 e=
d.data(this,"href.tabs");if(e)this.href=e;var a=d(this).unbind(".tabs");d.each(["href","load","cache"],function(c,h){a.removeData(h+".tabs")})});this.lis.unbind(".tabs").add(this.panels).each(function(){d.data(this,"destroy.tabs")?d(this).remove():d(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")});b.cookie&&this._cookie(null,b.cookie);return this},add:function(b,
e,a){if(a===p)a=this.anchors.length;var c=this,h=this.options;e=d(h.tabTemplate.replace(/#\{href\}/g,b).replace(/#\{label\}/g,e));b=!b.indexOf("#")?b.replace("#",""):this._tabId(d("a",e)[0]);e.addClass("ui-state-default ui-corner-top").data("destroy.tabs",true);var j=c.element.find("#"+b);j.length||(j=d(h.panelTemplate).attr("id",b).data("destroy.tabs",true));j.addClass("ui-tabs-panel ui-widget-content ui-corner-bottom ui-tabs-hide");if(a>=this.lis.length){e.appendTo(this.list);j.appendTo(this.list[0].parentNode)}else{e.insertBefore(this.lis[a]);
j.insertBefore(this.panels[a])}h.disabled=d.map(h.disabled,function(k){return k>=a?++k:k});this._tabify();if(this.anchors.length==1){h.selected=0;e.addClass("ui-tabs-selected ui-state-active");j.removeClass("ui-tabs-hide");this.element.queue("tabs",function(){c._trigger("show",null,c._ui(c.anchors[0],c.panels[0]))});this.load(0)}this._trigger("add",null,this._ui(this.anchors[a],this.panels[a]));return this},remove:function(b){b=this._getIndex(b);var e=this.options,a=this.lis.eq(b).remove(),c=this.panels.eq(b).remove();
if(a.hasClass("ui-tabs-selected")&&this.anchors.length>1)this.select(b+(b+1<this.anchors.length?1:-1));e.disabled=d.map(d.grep(e.disabled,function(h){return h!=b}),function(h){return h>=b?--h:h});this._tabify();this._trigger("remove",null,this._ui(a.find("a")[0],c[0]));return this},enable:function(b){b=this._getIndex(b);var e=this.options;if(d.inArray(b,e.disabled)!=-1){this.lis.eq(b).removeClass("ui-state-disabled");e.disabled=d.grep(e.disabled,function(a){return a!=b});this._trigger("enable",null,
this._ui(this.anchors[b],this.panels[b]));return this}},disable:function(b){b=this._getIndex(b);var e=this.options;if(b!=e.selected){this.lis.eq(b).addClass("ui-state-disabled");e.disabled.push(b);e.disabled.sort();this._trigger("disable",null,this._ui(this.anchors[b],this.panels[b]))}return this},select:function(b){b=this._getIndex(b);if(b==-1)if(this.options.collapsible&&this.options.selected!=-1)b=this.options.selected;else return this;this.anchors.eq(b).trigger(this.options.event+".tabs");return this},
load:function(b){b=this._getIndex(b);var e=this,a=this.options,c=this.anchors.eq(b)[0],h=d.data(c,"load.tabs");this.abort();if(!h||this.element.queue("tabs").length!==0&&d.data(c,"cache.tabs"))this.element.dequeue("tabs");else{this.lis.eq(b).addClass("ui-state-processing");if(a.spinner){var j=d("span",c);j.data("label.tabs",j.html()).html(a.spinner)}this.xhr=d.ajax(d.extend({},a.ajaxOptions,{url:h,success:function(k,n){e.element.find(e._sanitizeSelector(c.hash)).html(k);e._cleanup();a.cache&&d.data(c,
"cache.tabs",true);e._trigger("load",null,e._ui(e.anchors[b],e.panels[b]));try{a.ajaxOptions.success(k,n)}catch(m){}},error:function(k,n){e._cleanup();e._trigger("load",null,e._ui(e.anchors[b],e.panels[b]));try{a.ajaxOptions.error(k,n,b,c)}catch(m){}}}));e.element.dequeue("tabs");return this}},abort:function(){this.element.queue([]);this.panels.stop(false,true);this.element.queue("tabs",this.element.queue("tabs").splice(-2,2));if(this.xhr){this.xhr.abort();delete this.xhr}this._cleanup();return this},
url:function(b,e){this.anchors.eq(b).removeData("cache.tabs").data("load.tabs",e);return this},length:function(){return this.anchors.length}});d.extend(d.ui.tabs,{version:"1.8.14"});d.extend(d.ui.tabs.prototype,{rotation:null,rotate:function(b,e){var a=this,c=this.options,h=a._rotate||(a._rotate=function(j){clearTimeout(a.rotation);a.rotation=setTimeout(function(){var k=c.selected;a.select(++k<a.anchors.length?k:0)},b);j&&j.stopPropagation()});e=a._unrotate||(a._unrotate=!e?function(j){j.clientX&&
a.rotate(null)}:function(){t=c.selected;h()});if(b){this.element.bind("tabsshow",h);this.anchors.bind(c.event+".tabs",e);h()}else{clearTimeout(a.rotation);this.element.unbind("tabsshow",h);this.anchors.unbind(c.event+".tabs",e);delete this._rotate;delete this._unrotate}return this}})})(jQuery);
;/*
 * jQuery UI Datepicker 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Datepicker
 *
 * Depends:
 *	jquery.ui.core.js
 */
(function(d,C){function M(){this.debug=false;this._curInst=null;this._keyEvent=false;this._disabledInputs=[];this._inDialog=this._datepickerShowing=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"],weekHeader:"Wk",dateFormat:"mm/dd/yy",firstDay:0,isRTL:false,showMonthAfterYear:false,yearSuffix:""};this._defaults={showOn:"focus",showAnim:"fadeIn",showOptions:{},defaultDate:null,appendText:"",buttonText:"...",buttonImage:"",buttonImageOnly:false,hideIfNoPrevNext:false,navigationAsDateFormat:false,gotoCurrent:false,changeMonth:false,changeYear:false,yearRange:"c-10:c+10",showOtherMonths:false,selectOtherMonths:false,showWeek:false,calculateWeek:this.iso8601Week,shortYearCutoff:"+10",
minDate:null,maxDate:null,duration:"fast",beforeShowDay:null,beforeShow:null,onSelect:null,onChangeMonthYear:null,onClose:null,numberOfMonths:1,showCurrentAtPos:0,stepMonths:1,stepBigMonths:12,altField:"",altFormat:"",constrainInput:true,showButtonPanel:false,autoSize:false};d.extend(this._defaults,this.regional[""]);this.dpDiv=N(d('<div id="'+this._mainDivId+'" class="ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}function N(a){return a.bind("mouseout",function(b){b=
d(b.target).closest("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a");b.length&&b.removeClass("ui-state-hover ui-datepicker-prev-hover ui-datepicker-next-hover")}).bind("mouseover",function(b){b=d(b.target).closest("button, .ui-datepicker-prev, .ui-datepicker-next, .ui-datepicker-calendar td a");if(!(d.datepicker._isDisabledDatepicker(J.inline?a.parent()[0]:J.input[0])||!b.length)){b.parents(".ui-datepicker-calendar").find("a").removeClass("ui-state-hover");b.addClass("ui-state-hover");
b.hasClass("ui-datepicker-prev")&&b.addClass("ui-datepicker-prev-hover");b.hasClass("ui-datepicker-next")&&b.addClass("ui-datepicker-next-hover")}})}function H(a,b){d.extend(a,b);for(var c in b)if(b[c]==null||b[c]==C)a[c]=b[c];return a}d.extend(d.ui,{datepicker:{version:"1.8.14"}});var A=(new Date).getTime(),J;d.extend(M.prototype,{markerClassName:"hasDatepicker",maxRows:4,log:function(){this.debug&&console.log.apply("",arguments)},_widgetDatepicker:function(){return this.dpDiv},setDefaults:function(a){H(this._defaults,
a||{});return this},_attachDatepicker:function(a,b){var c=null;for(var e in this._defaults){var f=a.getAttribute("date:"+e);if(f){c=c||{};try{c[e]=eval(f)}catch(h){c[e]=f}}}e=a.nodeName.toLowerCase();f=e=="div"||e=="span";if(!a.id){this.uuid+=1;a.id="dp"+this.uuid}var i=this._newInst(d(a),f);i.settings=d.extend({},b||{},c||{});if(e=="input")this._connectDatepicker(a,i);else f&&this._inlineDatepicker(a,i)},_newInst:function(a,b){return{id:a[0].id.replace(/([^A-Za-z0-9_-])/g,"\\\\$1"),input:a,selectedDay:0,
selectedMonth:0,selectedYear:0,drawMonth:0,drawYear:0,inline:b,dpDiv:!b?this.dpDiv:N(d('<div class="'+this._inlineClass+' ui-datepicker ui-widget ui-widget-content ui-helper-clearfix ui-corner-all"></div>'))}},_connectDatepicker:function(a,b){var c=d(a);b.append=d([]);b.trigger=d([]);if(!c.hasClass(this.markerClassName)){this._attachments(c,b);c.addClass(this.markerClassName).keydown(this._doKeyDown).keypress(this._doKeyPress).keyup(this._doKeyUp).bind("setData.datepicker",function(e,f,h){b.settings[f]=
h}).bind("getData.datepicker",function(e,f){return this._get(b,f)});this._autoSize(b);d.data(a,"datepicker",b)}},_attachments:function(a,b){var c=this._get(b,"appendText"),e=this._get(b,"isRTL");b.append&&b.append.remove();if(c){b.append=d('<span class="'+this._appendClass+'">'+c+"</span>");a[e?"before":"after"](b.append)}a.unbind("focus",this._showDatepicker);b.trigger&&b.trigger.remove();c=this._get(b,"showOn");if(c=="focus"||c=="both")a.focus(this._showDatepicker);if(c=="button"||c=="both"){c=
this._get(b,"buttonText");var f=this._get(b,"buttonImage");b.trigger=d(this._get(b,"buttonImageOnly")?d("<img/>").addClass(this._triggerClass).attr({src:f,alt:c,title:c}):d('<button type="button"></button>').addClass(this._triggerClass).html(f==""?c:d("<img/>").attr({src:f,alt:c,title:c})));a[e?"before":"after"](b.trigger);b.trigger.click(function(){d.datepicker._datepickerShowing&&d.datepicker._lastInput==a[0]?d.datepicker._hideDatepicker():d.datepicker._showDatepicker(a[0]);return false})}},_autoSize:function(a){if(this._get(a,
"autoSize")&&!a.inline){var b=new Date(2009,11,20),c=this._get(a,"dateFormat");if(c.match(/[DM]/)){var e=function(f){for(var h=0,i=0,g=0;g<f.length;g++)if(f[g].length>h){h=f[g].length;i=g}return i};b.setMonth(e(this._get(a,c.match(/MM/)?"monthNames":"monthNamesShort")));b.setDate(e(this._get(a,c.match(/DD/)?"dayNames":"dayNamesShort"))+20-b.getDay())}a.input.attr("size",this._formatDate(a,b).length)}},_inlineDatepicker:function(a,b){var c=d(a);if(!c.hasClass(this.markerClassName)){c.addClass(this.markerClassName).append(b.dpDiv).bind("setData.datepicker",
function(e,f,h){b.settings[f]=h}).bind("getData.datepicker",function(e,f){return this._get(b,f)});d.data(a,"datepicker",b);this._setDate(b,this._getDefaultDate(b),true);this._updateDatepicker(b);this._updateAlternate(b);b.dpDiv.show()}},_dialogDatepicker:function(a,b,c,e,f){a=this._dialogInst;if(!a){this.uuid+=1;this._dialogInput=d('<input type="text" id="'+("dp"+this.uuid)+'" style="position: absolute; top: -100px; width: 0px; z-index: -10;"/>');this._dialogInput.keydown(this._doKeyDown);d("body").append(this._dialogInput);
a=this._dialogInst=this._newInst(this._dialogInput,false);a.settings={};d.data(this._dialogInput[0],"datepicker",a)}H(a.settings,e||{});b=b&&b.constructor==Date?this._formatDate(a,b):b;this._dialogInput.val(b);this._pos=f?f.length?f:[f.pageX,f.pageY]:null;if(!this._pos)this._pos=[document.documentElement.clientWidth/2-100+(document.documentElement.scrollLeft||document.body.scrollLeft),document.documentElement.clientHeight/2-150+(document.documentElement.scrollTop||document.body.scrollTop)];this._dialogInput.css("left",
this._pos[0]+20+"px").css("top",this._pos[1]+"px");a.settings.onSelect=c;this._inDialog=true;this.dpDiv.addClass(this._dialogClass);this._showDatepicker(this._dialogInput[0]);d.blockUI&&d.blockUI(this.dpDiv);d.data(this._dialogInput[0],"datepicker",a);return this},_destroyDatepicker:function(a){var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();d.removeData(a,"datepicker");if(e=="input"){c.append.remove();c.trigger.remove();b.removeClass(this.markerClassName).unbind("focus",
this._showDatepicker).unbind("keydown",this._doKeyDown).unbind("keypress",this._doKeyPress).unbind("keyup",this._doKeyUp)}else if(e=="div"||e=="span")b.removeClass(this.markerClassName).empty()}},_enableDatepicker:function(a){var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();if(e=="input"){a.disabled=false;c.trigger.filter("button").each(function(){this.disabled=false}).end().filter("img").css({opacity:"1.0",cursor:""})}else if(e=="div"||e=="span"){b=
b.children("."+this._inlineClass);b.children().removeClass("ui-state-disabled");b.find("select.ui-datepicker-month, select.ui-datepicker-year").removeAttr("disabled")}this._disabledInputs=d.map(this._disabledInputs,function(f){return f==a?null:f})}},_disableDatepicker:function(a){var b=d(a),c=d.data(a,"datepicker");if(b.hasClass(this.markerClassName)){var e=a.nodeName.toLowerCase();if(e=="input"){a.disabled=true;c.trigger.filter("button").each(function(){this.disabled=true}).end().filter("img").css({opacity:"0.5",
cursor:"default"})}else if(e=="div"||e=="span"){b=b.children("."+this._inlineClass);b.children().addClass("ui-state-disabled");b.find("select.ui-datepicker-month, select.ui-datepicker-year").attr("disabled","disabled")}this._disabledInputs=d.map(this._disabledInputs,function(f){return f==a?null:f});this._disabledInputs[this._disabledInputs.length]=a}},_isDisabledDatepicker:function(a){if(!a)return false;for(var b=0;b<this._disabledInputs.length;b++)if(this._disabledInputs[b]==a)return true;return false},
_getInst:function(a){try{return d.data(a,"datepicker")}catch(b){throw"Missing instance data for this datepicker";}},_optionDatepicker:function(a,b,c){var e=this._getInst(a);if(arguments.length==2&&typeof b=="string")return b=="defaults"?d.extend({},d.datepicker._defaults):e?b=="all"?d.extend({},e.settings):this._get(e,b):null;var f=b||{};if(typeof b=="string"){f={};f[b]=c}if(e){this._curInst==e&&this._hideDatepicker();var h=this._getDateDatepicker(a,true),i=this._getMinMaxDate(e,"min"),g=this._getMinMaxDate(e,
"max");H(e.settings,f);if(i!==null&&f.dateFormat!==C&&f.minDate===C)e.settings.minDate=this._formatDate(e,i);if(g!==null&&f.dateFormat!==C&&f.maxDate===C)e.settings.maxDate=this._formatDate(e,g);this._attachments(d(a),e);this._autoSize(e);this._setDate(e,h);this._updateAlternate(e);this._updateDatepicker(e)}},_changeDatepicker:function(a,b,c){this._optionDatepicker(a,b,c)},_refreshDatepicker:function(a){(a=this._getInst(a))&&this._updateDatepicker(a)},_setDateDatepicker:function(a,b){if(a=this._getInst(a)){this._setDate(a,
b);this._updateDatepicker(a);this._updateAlternate(a)}},_getDateDatepicker:function(a,b){(a=this._getInst(a))&&!a.inline&&this._setDateFromField(a,b);return a?this._getDate(a):null},_doKeyDown:function(a){var b=d.datepicker._getInst(a.target),c=true,e=b.dpDiv.is(".ui-datepicker-rtl");b._keyEvent=true;if(d.datepicker._datepickerShowing)switch(a.keyCode){case 9:d.datepicker._hideDatepicker();c=false;break;case 13:c=d("td."+d.datepicker._dayOverClass+":not(."+d.datepicker._currentClass+")",b.dpDiv);
c[0]?d.datepicker._selectDay(a.target,b.selectedMonth,b.selectedYear,c[0]):d.datepicker._hideDatepicker();return false;case 27:d.datepicker._hideDatepicker();break;case 33:d.datepicker._adjustDate(a.target,a.ctrlKey?-d.datepicker._get(b,"stepBigMonths"):-d.datepicker._get(b,"stepMonths"),"M");break;case 34:d.datepicker._adjustDate(a.target,a.ctrlKey?+d.datepicker._get(b,"stepBigMonths"):+d.datepicker._get(b,"stepMonths"),"M");break;case 35:if(a.ctrlKey||a.metaKey)d.datepicker._clearDate(a.target);
c=a.ctrlKey||a.metaKey;break;case 36:if(a.ctrlKey||a.metaKey)d.datepicker._gotoToday(a.target);c=a.ctrlKey||a.metaKey;break;case 37:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,e?+1:-1,"D");c=a.ctrlKey||a.metaKey;if(a.originalEvent.altKey)d.datepicker._adjustDate(a.target,a.ctrlKey?-d.datepicker._get(b,"stepBigMonths"):-d.datepicker._get(b,"stepMonths"),"M");break;case 38:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,-7,"D");c=a.ctrlKey||a.metaKey;break;case 39:if(a.ctrlKey||
a.metaKey)d.datepicker._adjustDate(a.target,e?-1:+1,"D");c=a.ctrlKey||a.metaKey;if(a.originalEvent.altKey)d.datepicker._adjustDate(a.target,a.ctrlKey?+d.datepicker._get(b,"stepBigMonths"):+d.datepicker._get(b,"stepMonths"),"M");break;case 40:if(a.ctrlKey||a.metaKey)d.datepicker._adjustDate(a.target,+7,"D");c=a.ctrlKey||a.metaKey;break;default:c=false}else if(a.keyCode==36&&a.ctrlKey)d.datepicker._showDatepicker(this);else c=false;if(c){a.preventDefault();a.stopPropagation()}},_doKeyPress:function(a){var b=
d.datepicker._getInst(a.target);if(d.datepicker._get(b,"constrainInput")){b=d.datepicker._possibleChars(d.datepicker._get(b,"dateFormat"));var c=String.fromCharCode(a.charCode==C?a.keyCode:a.charCode);return a.ctrlKey||a.metaKey||c<" "||!b||b.indexOf(c)>-1}},_doKeyUp:function(a){a=d.datepicker._getInst(a.target);if(a.input.val()!=a.lastVal)try{if(d.datepicker.parseDate(d.datepicker._get(a,"dateFormat"),a.input?a.input.val():null,d.datepicker._getFormatConfig(a))){d.datepicker._setDateFromField(a);
d.datepicker._updateAlternate(a);d.datepicker._updateDatepicker(a)}}catch(b){d.datepicker.log(b)}return true},_showDatepicker:function(a){a=a.target||a;if(a.nodeName.toLowerCase()!="input")a=d("input",a.parentNode)[0];if(!(d.datepicker._isDisabledDatepicker(a)||d.datepicker._lastInput==a)){var b=d.datepicker._getInst(a);if(d.datepicker._curInst&&d.datepicker._curInst!=b){d.datepicker._datepickerShowing&&d.datepicker._triggerOnClose(d.datepicker._curInst);d.datepicker._curInst.dpDiv.stop(true,true)}var c=
d.datepicker._get(b,"beforeShow");H(b.settings,c?c.apply(a,[a,b]):{});b.lastVal=null;d.datepicker._lastInput=a;d.datepicker._setDateFromField(b);if(d.datepicker._inDialog)a.value="";if(!d.datepicker._pos){d.datepicker._pos=d.datepicker._findPos(a);d.datepicker._pos[1]+=a.offsetHeight}var e=false;d(a).parents().each(function(){e|=d(this).css("position")=="fixed";return!e});if(e&&d.browser.opera){d.datepicker._pos[0]-=document.documentElement.scrollLeft;d.datepicker._pos[1]-=document.documentElement.scrollTop}c=
{left:d.datepicker._pos[0],top:d.datepicker._pos[1]};d.datepicker._pos=null;b.dpDiv.empty();b.dpDiv.css({position:"absolute",display:"block",top:"-1000px"});d.datepicker._updateDatepicker(b);c=d.datepicker._checkOffset(b,c,e);b.dpDiv.css({position:d.datepicker._inDialog&&d.blockUI?"static":e?"fixed":"absolute",display:"none",left:c.left+"px",top:c.top+"px"});if(!b.inline){c=d.datepicker._get(b,"showAnim");var f=d.datepicker._get(b,"duration"),h=function(){var i=b.dpDiv.find("iframe.ui-datepicker-cover");
if(i.length){var g=d.datepicker._getBorders(b.dpDiv);i.css({left:-g[0],top:-g[1],width:b.dpDiv.outerWidth(),height:b.dpDiv.outerHeight()})}};b.dpDiv.zIndex(d(a).zIndex()+1);d.datepicker._datepickerShowing=true;d.effects&&d.effects[c]?b.dpDiv.show(c,d.datepicker._get(b,"showOptions"),f,h):b.dpDiv[c||"show"](c?f:null,h);if(!c||!f)h();b.input.is(":visible")&&!b.input.is(":disabled")&&b.input.focus();d.datepicker._curInst=b}}},_updateDatepicker:function(a){this.maxRows=4;var b=d.datepicker._getBorders(a.dpDiv);
J=a;a.dpDiv.empty().append(this._generateHTML(a));var c=a.dpDiv.find("iframe.ui-datepicker-cover");c.length&&c.css({left:-b[0],top:-b[1],width:a.dpDiv.outerWidth(),height:a.dpDiv.outerHeight()});a.dpDiv.find("."+this._dayOverClass+" a").mouseover();b=this._getNumberOfMonths(a);c=b[1];a.dpDiv.removeClass("ui-datepicker-multi-2 ui-datepicker-multi-3 ui-datepicker-multi-4").width("");c>1&&a.dpDiv.addClass("ui-datepicker-multi-"+c).css("width",17*c+"em");a.dpDiv[(b[0]!=1||b[1]!=1?"add":"remove")+"Class"]("ui-datepicker-multi");
a.dpDiv[(this._get(a,"isRTL")?"add":"remove")+"Class"]("ui-datepicker-rtl");a==d.datepicker._curInst&&d.datepicker._datepickerShowing&&a.input&&a.input.is(":visible")&&!a.input.is(":disabled")&&a.input[0]!=document.activeElement&&a.input.focus();if(a.yearshtml){var e=a.yearshtml;setTimeout(function(){e===a.yearshtml&&a.yearshtml&&a.dpDiv.find("select.ui-datepicker-year:first").replaceWith(a.yearshtml);e=a.yearshtml=null},0)}},_getBorders:function(a){var b=function(c){return{thin:1,medium:2,thick:3}[c]||
c};return[parseFloat(b(a.css("border-left-width"))),parseFloat(b(a.css("border-top-width")))]},_checkOffset:function(a,b,c){var e=a.dpDiv.outerWidth(),f=a.dpDiv.outerHeight(),h=a.input?a.input.outerWidth():0,i=a.input?a.input.outerHeight():0,g=document.documentElement.clientWidth+d(document).scrollLeft(),j=document.documentElement.clientHeight+d(document).scrollTop();b.left-=this._get(a,"isRTL")?e-h:0;b.left-=c&&b.left==a.input.offset().left?d(document).scrollLeft():0;b.top-=c&&b.top==a.input.offset().top+
i?d(document).scrollTop():0;b.left-=Math.min(b.left,b.left+e>g&&g>e?Math.abs(b.left+e-g):0);b.top-=Math.min(b.top,b.top+f>j&&j>f?Math.abs(f+i):0);return b},_findPos:function(a){for(var b=this._get(this._getInst(a),"isRTL");a&&(a.type=="hidden"||a.nodeType!=1||d.expr.filters.hidden(a));)a=a[b?"previousSibling":"nextSibling"];a=d(a).offset();return[a.left,a.top]},_triggerOnClose:function(a){var b=this._get(a,"onClose");if(b)b.apply(a.input?a.input[0]:null,[a.input?a.input.val():"",a])},_hideDatepicker:function(a){var b=
this._curInst;if(!(!b||a&&b!=d.data(a,"datepicker")))if(this._datepickerShowing){a=this._get(b,"showAnim");var c=this._get(b,"duration"),e=function(){d.datepicker._tidyDialog(b);this._curInst=null};d.effects&&d.effects[a]?b.dpDiv.hide(a,d.datepicker._get(b,"showOptions"),c,e):b.dpDiv[a=="slideDown"?"slideUp":a=="fadeIn"?"fadeOut":"hide"](a?c:null,e);a||e();d.datepicker._triggerOnClose(b);this._datepickerShowing=false;this._lastInput=null;if(this._inDialog){this._dialogInput.css({position:"absolute",
left:"0",top:"-100px"});if(d.blockUI){d.unblockUI();d("body").append(this.dpDiv)}}this._inDialog=false}},_tidyDialog:function(a){a.dpDiv.removeClass(this._dialogClass).unbind(".ui-datepicker-calendar")},_checkExternalClick:function(a){if(d.datepicker._curInst){a=d(a.target);a[0].id!=d.datepicker._mainDivId&&a.parents("#"+d.datepicker._mainDivId).length==0&&!a.hasClass(d.datepicker.markerClassName)&&!a.hasClass(d.datepicker._triggerClass)&&d.datepicker._datepickerShowing&&!(d.datepicker._inDialog&&
d.blockUI)&&d.datepicker._hideDatepicker()}},_adjustDate:function(a,b,c){a=d(a);var e=this._getInst(a[0]);if(!this._isDisabledDatepicker(a[0])){this._adjustInstDate(e,b+(c=="M"?this._get(e,"showCurrentAtPos"):0),c);this._updateDatepicker(e)}},_gotoToday:function(a){a=d(a);var b=this._getInst(a[0]);if(this._get(b,"gotoCurrent")&&b.currentDay){b.selectedDay=b.currentDay;b.drawMonth=b.selectedMonth=b.currentMonth;b.drawYear=b.selectedYear=b.currentYear}else{var c=new Date;b.selectedDay=c.getDate();b.drawMonth=
b.selectedMonth=c.getMonth();b.drawYear=b.selectedYear=c.getFullYear()}this._notifyChange(b);this._adjustDate(a)},_selectMonthYear:function(a,b,c){a=d(a);var e=this._getInst(a[0]);e._selectingMonthYear=false;e["selected"+(c=="M"?"Month":"Year")]=e["draw"+(c=="M"?"Month":"Year")]=parseInt(b.options[b.selectedIndex].value,10);this._notifyChange(e);this._adjustDate(a)},_clickMonthYear:function(a){var b=this._getInst(d(a)[0]);b.input&&b._selectingMonthYear&&setTimeout(function(){b.input.focus()},0);b._selectingMonthYear=
!b._selectingMonthYear},_selectDay:function(a,b,c,e){var f=d(a);if(!(d(e).hasClass(this._unselectableClass)||this._isDisabledDatepicker(f[0]))){f=this._getInst(f[0]);f.selectedDay=f.currentDay=d("a",e).html();f.selectedMonth=f.currentMonth=b;f.selectedYear=f.currentYear=c;this._selectDate(a,this._formatDate(f,f.currentDay,f.currentMonth,f.currentYear))}},_clearDate:function(a){a=d(a);this._getInst(a[0]);this._selectDate(a,"")},_selectDate:function(a,b){a=this._getInst(d(a)[0]);b=b!=null?b:this._formatDate(a);
a.input&&a.input.val(b);this._updateAlternate(a);var c=this._get(a,"onSelect");if(c)c.apply(a.input?a.input[0]:null,[b,a]);else a.input&&a.input.trigger("change");if(a.inline)this._updateDatepicker(a);else{this._hideDatepicker();this._lastInput=a.input[0];typeof a.input[0]!="object"&&a.input.focus();this._lastInput=null}},_updateAlternate:function(a){var b=this._get(a,"altField");if(b){var c=this._get(a,"altFormat")||this._get(a,"dateFormat"),e=this._getDate(a),f=this.formatDate(c,e,this._getFormatConfig(a));
d(b).each(function(){d(this).val(f)})}},noWeekends:function(a){a=a.getDay();return[a>0&&a<6,""]},iso8601Week:function(a){a=new Date(a.getTime());a.setDate(a.getDate()+4-(a.getDay()||7));var b=a.getTime();a.setMonth(0);a.setDate(1);return Math.floor(Math.round((b-a)/864E5)/7)+1},parseDate:function(a,b,c){if(a==null||b==null)throw"Invalid arguments";b=typeof b=="object"?b.toString():b+"";if(b=="")return null;var e=(c?c.shortYearCutoff:null)||this._defaults.shortYearCutoff;e=typeof e!="string"?e:(new Date).getFullYear()%
100+parseInt(e,10);for(var f=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,h=(c?c.dayNames:null)||this._defaults.dayNames,i=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort,g=(c?c.monthNames:null)||this._defaults.monthNames,j=c=-1,l=-1,u=-1,k=false,o=function(p){(p=B+1<a.length&&a.charAt(B+1)==p)&&B++;return p},m=function(p){var D=o(p);p=new RegExp("^\\d{1,"+(p=="@"?14:p=="!"?20:p=="y"&&D?4:p=="o"?3:2)+"}");p=b.substring(q).match(p);if(!p)throw"Missing number at position "+q;q+=
p[0].length;return parseInt(p[0],10)},n=function(p,D,K){p=d.map(o(p)?K:D,function(w,x){return[[x,w]]}).sort(function(w,x){return-(w[1].length-x[1].length)});var E=-1;d.each(p,function(w,x){w=x[1];if(b.substr(q,w.length).toLowerCase()==w.toLowerCase()){E=x[0];q+=w.length;return false}});if(E!=-1)return E+1;else throw"Unknown name at position "+q;},s=function(){if(b.charAt(q)!=a.charAt(B))throw"Unexpected literal at position "+q;q++},q=0,B=0;B<a.length;B++)if(k)if(a.charAt(B)=="'"&&!o("'"))k=false;
else s();else switch(a.charAt(B)){case "d":l=m("d");break;case "D":n("D",f,h);break;case "o":u=m("o");break;case "m":j=m("m");break;case "M":j=n("M",i,g);break;case "y":c=m("y");break;case "@":var v=new Date(m("@"));c=v.getFullYear();j=v.getMonth()+1;l=v.getDate();break;case "!":v=new Date((m("!")-this._ticksTo1970)/1E4);c=v.getFullYear();j=v.getMonth()+1;l=v.getDate();break;case "'":if(o("'"))s();else k=true;break;default:s()}if(q<b.length)throw"Extra/unparsed characters found in date: "+b.substring(q);
if(c==-1)c=(new Date).getFullYear();else if(c<100)c+=(new Date).getFullYear()-(new Date).getFullYear()%100+(c<=e?0:-100);if(u>-1){j=1;l=u;do{e=this._getDaysInMonth(c,j-1);if(l<=e)break;j++;l-=e}while(1)}v=this._daylightSavingAdjust(new Date(c,j-1,l));if(v.getFullYear()!=c||v.getMonth()+1!=j||v.getDate()!=l)throw"Invalid date";return v},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",
TICKS:"!",TIMESTAMP:"@",W3C:"yy-mm-dd",_ticksTo1970:(718685+Math.floor(492.5)-Math.floor(19.7)+Math.floor(4.925))*24*60*60*1E7,formatDate:function(a,b,c){if(!b)return"";var e=(c?c.dayNamesShort:null)||this._defaults.dayNamesShort,f=(c?c.dayNames:null)||this._defaults.dayNames,h=(c?c.monthNamesShort:null)||this._defaults.monthNamesShort;c=(c?c.monthNames:null)||this._defaults.monthNames;var i=function(o){(o=k+1<a.length&&a.charAt(k+1)==o)&&k++;return o},g=function(o,m,n){m=""+m;if(i(o))for(;m.length<
n;)m="0"+m;return m},j=function(o,m,n,s){return i(o)?s[m]:n[m]},l="",u=false;if(b)for(var k=0;k<a.length;k++)if(u)if(a.charAt(k)=="'"&&!i("'"))u=false;else l+=a.charAt(k);else switch(a.charAt(k)){case "d":l+=g("d",b.getDate(),2);break;case "D":l+=j("D",b.getDay(),e,f);break;case "o":l+=g("o",Math.round(((new Date(b.getFullYear(),b.getMonth(),b.getDate())).getTime()-(new Date(b.getFullYear(),0,0)).getTime())/864E5),3);break;case "m":l+=g("m",b.getMonth()+1,2);break;case "M":l+=j("M",b.getMonth(),h,
c);break;case "y":l+=i("y")?b.getFullYear():(b.getYear()%100<10?"0":"")+b.getYear()%100;break;case "@":l+=b.getTime();break;case "!":l+=b.getTime()*1E4+this._ticksTo1970;break;case "'":if(i("'"))l+="'";else u=true;break;default:l+=a.charAt(k)}return l},_possibleChars:function(a){for(var b="",c=false,e=function(h){(h=f+1<a.length&&a.charAt(f+1)==h)&&f++;return h},f=0;f<a.length;f++)if(c)if(a.charAt(f)=="'"&&!e("'"))c=false;else b+=a.charAt(f);else switch(a.charAt(f)){case "d":case "m":case "y":case "@":b+=
"0123456789";break;case "D":case "M":return null;case "'":if(e("'"))b+="'";else c=true;break;default:b+=a.charAt(f)}return b},_get:function(a,b){return a.settings[b]!==C?a.settings[b]:this._defaults[b]},_setDateFromField:function(a,b){if(a.input.val()!=a.lastVal){var c=this._get(a,"dateFormat"),e=a.lastVal=a.input?a.input.val():null,f,h;f=h=this._getDefaultDate(a);var i=this._getFormatConfig(a);try{f=this.parseDate(c,e,i)||h}catch(g){this.log(g);e=b?"":e}a.selectedDay=f.getDate();a.drawMonth=a.selectedMonth=
f.getMonth();a.drawYear=a.selectedYear=f.getFullYear();a.currentDay=e?f.getDate():0;a.currentMonth=e?f.getMonth():0;a.currentYear=e?f.getFullYear():0;this._adjustInstDate(a)}},_getDefaultDate:function(a){return this._restrictMinMax(a,this._determineDate(a,this._get(a,"defaultDate"),new Date))},_determineDate:function(a,b,c){var e=function(h){var i=new Date;i.setDate(i.getDate()+h);return i},f=function(h){try{return d.datepicker.parseDate(d.datepicker._get(a,"dateFormat"),h,d.datepicker._getFormatConfig(a))}catch(i){}var g=
(h.toLowerCase().match(/^c/)?d.datepicker._getDate(a):null)||new Date,j=g.getFullYear(),l=g.getMonth();g=g.getDate();for(var u=/([+-]?[0-9]+)\s*(d|D|w|W|m|M|y|Y)?/g,k=u.exec(h);k;){switch(k[2]||"d"){case "d":case "D":g+=parseInt(k[1],10);break;case "w":case "W":g+=parseInt(k[1],10)*7;break;case "m":case "M":l+=parseInt(k[1],10);g=Math.min(g,d.datepicker._getDaysInMonth(j,l));break;case "y":case "Y":j+=parseInt(k[1],10);g=Math.min(g,d.datepicker._getDaysInMonth(j,l));break}k=u.exec(h)}return new Date(j,
l,g)};if(b=(b=b==null||b===""?c:typeof b=="string"?f(b):typeof b=="number"?isNaN(b)?c:e(b):new Date(b.getTime()))&&b.toString()=="Invalid Date"?c:b){b.setHours(0);b.setMinutes(0);b.setSeconds(0);b.setMilliseconds(0)}return this._daylightSavingAdjust(b)},_daylightSavingAdjust:function(a){if(!a)return null;a.setHours(a.getHours()>12?a.getHours()+2:0);return a},_setDate:function(a,b,c){var e=!b,f=a.selectedMonth,h=a.selectedYear;b=this._restrictMinMax(a,this._determineDate(a,b,new Date));a.selectedDay=
a.currentDay=b.getDate();a.drawMonth=a.selectedMonth=a.currentMonth=b.getMonth();a.drawYear=a.selectedYear=a.currentYear=b.getFullYear();if((f!=a.selectedMonth||h!=a.selectedYear)&&!c)this._notifyChange(a);this._adjustInstDate(a);if(a.input)a.input.val(e?"":this._formatDate(a))},_getDate:function(a){return!a.currentYear||a.input&&a.input.val()==""?null:this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay))},_generateHTML:function(a){var b=new Date;b=this._daylightSavingAdjust(new Date(b.getFullYear(),
b.getMonth(),b.getDate()));var c=this._get(a,"isRTL"),e=this._get(a,"showButtonPanel"),f=this._get(a,"hideIfNoPrevNext"),h=this._get(a,"navigationAsDateFormat"),i=this._getNumberOfMonths(a),g=this._get(a,"showCurrentAtPos"),j=this._get(a,"stepMonths"),l=i[0]!=1||i[1]!=1,u=this._daylightSavingAdjust(!a.currentDay?new Date(9999,9,9):new Date(a.currentYear,a.currentMonth,a.currentDay)),k=this._getMinMaxDate(a,"min"),o=this._getMinMaxDate(a,"max");g=a.drawMonth-g;var m=a.drawYear;if(g<0){g+=12;m--}if(o){var n=
this._daylightSavingAdjust(new Date(o.getFullYear(),o.getMonth()-i[0]*i[1]+1,o.getDate()));for(n=k&&n<k?k:n;this._daylightSavingAdjust(new Date(m,g,1))>n;){g--;if(g<0){g=11;m--}}}a.drawMonth=g;a.drawYear=m;n=this._get(a,"prevText");n=!h?n:this.formatDate(n,this._daylightSavingAdjust(new Date(m,g-j,1)),this._getFormatConfig(a));n=this._canAdjustMonth(a,-1,m,g)?'<a class="ui-datepicker-prev ui-corner-all" onclick="DP_jQuery_'+A+".datepicker._adjustDate('#"+a.id+"', -"+j+", 'M');\" title=\""+n+'"><span class="ui-icon ui-icon-circle-triangle-'+
(c?"e":"w")+'">'+n+"</span></a>":f?"":'<a class="ui-datepicker-prev ui-corner-all ui-state-disabled" title="'+n+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"e":"w")+'">'+n+"</span></a>";var s=this._get(a,"nextText");s=!h?s:this.formatDate(s,this._daylightSavingAdjust(new Date(m,g+j,1)),this._getFormatConfig(a));f=this._canAdjustMonth(a,+1,m,g)?'<a class="ui-datepicker-next ui-corner-all" onclick="DP_jQuery_'+A+".datepicker._adjustDate('#"+a.id+"', +"+j+", 'M');\" title=\""+s+'"><span class="ui-icon ui-icon-circle-triangle-'+
(c?"w":"e")+'">'+s+"</span></a>":f?"":'<a class="ui-datepicker-next ui-corner-all ui-state-disabled" title="'+s+'"><span class="ui-icon ui-icon-circle-triangle-'+(c?"w":"e")+'">'+s+"</span></a>";j=this._get(a,"currentText");s=this._get(a,"gotoCurrent")&&a.currentDay?u:b;j=!h?j:this.formatDate(j,s,this._getFormatConfig(a));h=!a.inline?'<button type="button" class="ui-datepicker-close ui-state-default ui-priority-primary ui-corner-all" onclick="DP_jQuery_'+A+'.datepicker._hideDatepicker();">'+this._get(a,
"closeText")+"</button>":"";e=e?'<div class="ui-datepicker-buttonpane ui-widget-content">'+(c?h:"")+(this._isInRange(a,s)?'<button type="button" class="ui-datepicker-current ui-state-default ui-priority-secondary ui-corner-all" onclick="DP_jQuery_'+A+".datepicker._gotoToday('#"+a.id+"');\">"+j+"</button>":"")+(c?"":h)+"</div>":"";h=parseInt(this._get(a,"firstDay"),10);h=isNaN(h)?0:h;j=this._get(a,"showWeek");s=this._get(a,"dayNames");this._get(a,"dayNamesShort");var q=this._get(a,"dayNamesMin"),B=
this._get(a,"monthNames"),v=this._get(a,"monthNamesShort"),p=this._get(a,"beforeShowDay"),D=this._get(a,"showOtherMonths"),K=this._get(a,"selectOtherMonths");this._get(a,"calculateWeek");for(var E=this._getDefaultDate(a),w="",x=0;x<i[0];x++){var O="";this.maxRows=4;for(var G=0;G<i[1];G++){var P=this._daylightSavingAdjust(new Date(m,g,a.selectedDay)),t=" ui-corner-all",y="";if(l){y+='<div class="ui-datepicker-group';if(i[1]>1)switch(G){case 0:y+=" ui-datepicker-group-first";t=" ui-corner-"+(c?"right":
"left");break;case i[1]-1:y+=" ui-datepicker-group-last";t=" ui-corner-"+(c?"left":"right");break;default:y+=" ui-datepicker-group-middle";t="";break}y+='">'}y+='<div class="ui-datepicker-header ui-widget-header ui-helper-clearfix'+t+'">'+(/all|left/.test(t)&&x==0?c?f:n:"")+(/all|right/.test(t)&&x==0?c?n:f:"")+this._generateMonthYearHeader(a,g,m,k,o,x>0||G>0,B,v)+'</div><table class="ui-datepicker-calendar"><thead><tr>';var z=j?'<th class="ui-datepicker-week-col">'+this._get(a,"weekHeader")+"</th>":
"";for(t=0;t<7;t++){var r=(t+h)%7;z+="<th"+((t+h+6)%7>=5?' class="ui-datepicker-week-end"':"")+'><span title="'+s[r]+'">'+q[r]+"</span></th>"}y+=z+"</tr></thead><tbody>";z=this._getDaysInMonth(m,g);if(m==a.selectedYear&&g==a.selectedMonth)a.selectedDay=Math.min(a.selectedDay,z);t=(this._getFirstDayOfMonth(m,g)-h+7)%7;z=Math.ceil((t+z)/7);this.maxRows=z=l?this.maxRows>z?this.maxRows:z:z;r=this._daylightSavingAdjust(new Date(m,g,1-t));for(var Q=0;Q<z;Q++){y+="<tr>";var R=!j?"":'<td class="ui-datepicker-week-col">'+
this._get(a,"calculateWeek")(r)+"</td>";for(t=0;t<7;t++){var I=p?p.apply(a.input?a.input[0]:null,[r]):[true,""],F=r.getMonth()!=g,L=F&&!K||!I[0]||k&&r<k||o&&r>o;R+='<td class="'+((t+h+6)%7>=5?" ui-datepicker-week-end":"")+(F?" ui-datepicker-other-month":"")+(r.getTime()==P.getTime()&&g==a.selectedMonth&&a._keyEvent||E.getTime()==r.getTime()&&E.getTime()==P.getTime()?" "+this._dayOverClass:"")+(L?" "+this._unselectableClass+" ui-state-disabled":"")+(F&&!D?"":" "+I[1]+(r.getTime()==u.getTime()?" "+
this._currentClass:"")+(r.getTime()==b.getTime()?" ui-datepicker-today":""))+'"'+((!F||D)&&I[2]?' title="'+I[2]+'"':"")+(L?"":' onclick="DP_jQuery_'+A+".datepicker._selectDay('#"+a.id+"',"+r.getMonth()+","+r.getFullYear()+', this);return false;"')+">"+(F&&!D?"&#xa0;":L?'<span class="ui-state-default">'+r.getDate()+"</span>":'<a class="ui-state-default'+(r.getTime()==b.getTime()?" ui-state-highlight":"")+(r.getTime()==u.getTime()?" ui-state-active":"")+(F?" ui-priority-secondary":"")+'" href="#">'+
r.getDate()+"</a>")+"</td>";r.setDate(r.getDate()+1);r=this._daylightSavingAdjust(r)}y+=R+"</tr>"}g++;if(g>11){g=0;m++}y+="</tbody></table>"+(l?"</div>"+(i[0]>0&&G==i[1]-1?'<div class="ui-datepicker-row-break"></div>':""):"");O+=y}w+=O}w+=e+(d.browser.msie&&parseInt(d.browser.version,10)<7&&!a.inline?'<iframe src="javascript:false;" class="ui-datepicker-cover" frameborder="0"></iframe>':"");a._keyEvent=false;return w},_generateMonthYearHeader:function(a,b,c,e,f,h,i,g){var j=this._get(a,"changeMonth"),
l=this._get(a,"changeYear"),u=this._get(a,"showMonthAfterYear"),k='<div class="ui-datepicker-title">',o="";if(h||!j)o+='<span class="ui-datepicker-month">'+i[b]+"</span>";else{i=e&&e.getFullYear()==c;var m=f&&f.getFullYear()==c;o+='<select class="ui-datepicker-month" onchange="DP_jQuery_'+A+".datepicker._selectMonthYear('#"+a.id+"', this, 'M');\" onclick=\"DP_jQuery_"+A+".datepicker._clickMonthYear('#"+a.id+"');\">";for(var n=0;n<12;n++)if((!i||n>=e.getMonth())&&(!m||n<=f.getMonth()))o+='<option value="'+
n+'"'+(n==b?' selected="selected"':"")+">"+g[n]+"</option>";o+="</select>"}u||(k+=o+(h||!(j&&l)?"&#xa0;":""));if(!a.yearshtml){a.yearshtml="";if(h||!l)k+='<span class="ui-datepicker-year">'+c+"</span>";else{g=this._get(a,"yearRange").split(":");var s=(new Date).getFullYear();i=function(q){q=q.match(/c[+-].*/)?c+parseInt(q.substring(1),10):q.match(/[+-].*/)?s+parseInt(q,10):parseInt(q,10);return isNaN(q)?s:q};b=i(g[0]);g=Math.max(b,i(g[1]||""));b=e?Math.max(b,e.getFullYear()):b;g=f?Math.min(g,f.getFullYear()):
g;for(a.yearshtml+='<select class="ui-datepicker-year" onchange="DP_jQuery_'+A+".datepicker._selectMonthYear('#"+a.id+"', this, 'Y');\" onclick=\"DP_jQuery_"+A+".datepicker._clickMonthYear('#"+a.id+"');\">";b<=g;b++)a.yearshtml+='<option value="'+b+'"'+(b==c?' selected="selected"':"")+">"+b+"</option>";a.yearshtml+="</select>";k+=a.yearshtml;a.yearshtml=null}}k+=this._get(a,"yearSuffix");if(u)k+=(h||!(j&&l)?"&#xa0;":"")+o;k+="</div>";return k},_adjustInstDate:function(a,b,c){var e=a.drawYear+(c==
"Y"?b:0),f=a.drawMonth+(c=="M"?b:0);b=Math.min(a.selectedDay,this._getDaysInMonth(e,f))+(c=="D"?b:0);e=this._restrictMinMax(a,this._daylightSavingAdjust(new Date(e,f,b)));a.selectedDay=e.getDate();a.drawMonth=a.selectedMonth=e.getMonth();a.drawYear=a.selectedYear=e.getFullYear();if(c=="M"||c=="Y")this._notifyChange(a)},_restrictMinMax:function(a,b){var c=this._getMinMaxDate(a,"min");a=this._getMinMaxDate(a,"max");b=c&&b<c?c:b;return b=a&&b>a?a:b},_notifyChange:function(a){var b=this._get(a,"onChangeMonthYear");
if(b)b.apply(a.input?a.input[0]:null,[a.selectedYear,a.selectedMonth+1,a])},_getNumberOfMonths:function(a){a=this._get(a,"numberOfMonths");return a==null?[1,1]:typeof a=="number"?[1,a]:a},_getMinMaxDate:function(a,b){return this._determineDate(a,this._get(a,b+"Date"),null)},_getDaysInMonth:function(a,b){return 32-this._daylightSavingAdjust(new Date(a,b,32)).getDate()},_getFirstDayOfMonth:function(a,b){return(new Date(a,b,1)).getDay()},_canAdjustMonth:function(a,b,c,e){var f=this._getNumberOfMonths(a);
c=this._daylightSavingAdjust(new Date(c,e+(b<0?b:f[0]*f[1]),1));b<0&&c.setDate(this._getDaysInMonth(c.getFullYear(),c.getMonth()));return this._isInRange(a,c)},_isInRange:function(a,b){var c=this._getMinMaxDate(a,"min");a=this._getMinMaxDate(a,"max");return(!c||b.getTime()>=c.getTime())&&(!a||b.getTime()<=a.getTime())},_getFormatConfig:function(a){var b=this._get(a,"shortYearCutoff");b=typeof b!="string"?b:(new Date).getFullYear()%100+parseInt(b,10);return{shortYearCutoff:b,dayNamesShort:this._get(a,
"dayNamesShort"),dayNames:this._get(a,"dayNames"),monthNamesShort:this._get(a,"monthNamesShort"),monthNames:this._get(a,"monthNames")}},_formatDate:function(a,b,c,e){if(!b){a.currentDay=a.selectedDay;a.currentMonth=a.selectedMonth;a.currentYear=a.selectedYear}b=b?typeof b=="object"?b:this._daylightSavingAdjust(new Date(e,c,b)):this._daylightSavingAdjust(new Date(a.currentYear,a.currentMonth,a.currentDay));return this.formatDate(this._get(a,"dateFormat"),b,this._getFormatConfig(a))}});d.fn.datepicker=
function(a){if(!this.length)return this;if(!d.datepicker.initialized){d(document).mousedown(d.datepicker._checkExternalClick).find("body").append(d.datepicker.dpDiv);d.datepicker.initialized=true}var b=Array.prototype.slice.call(arguments,1);if(typeof a=="string"&&(a=="isDisabled"||a=="getDate"||a=="widget"))return d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this[0]].concat(b));if(a=="option"&&arguments.length==2&&typeof arguments[1]=="string")return d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,
[this[0]].concat(b));return this.each(function(){typeof a=="string"?d.datepicker["_"+a+"Datepicker"].apply(d.datepicker,[this].concat(b)):d.datepicker._attachDatepicker(this,a)})};d.datepicker=new M;d.datepicker.initialized=false;d.datepicker.uuid=(new Date).getTime();d.datepicker.version="1.8.14";window["DP_jQuery_"+A]=d})(jQuery);
;/*
 * jQuery UI Effects 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/
 */
jQuery.effects||function(f,j){function m(c){var a;if(c&&c.constructor==Array&&c.length==3)return c;if(a=/rgb\(\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*,\s*([0-9]{1,3})\s*\)/.exec(c))return[parseInt(a[1],10),parseInt(a[2],10),parseInt(a[3],10)];if(a=/rgb\(\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*,\s*([0-9]+(?:\.[0-9]+)?)\%\s*\)/.exec(c))return[parseFloat(a[1])*2.55,parseFloat(a[2])*2.55,parseFloat(a[3])*2.55];if(a=/#([a-fA-F0-9]{2})([a-fA-F0-9]{2})([a-fA-F0-9]{2})/.exec(c))return[parseInt(a[1],
16),parseInt(a[2],16),parseInt(a[3],16)];if(a=/#([a-fA-F0-9])([a-fA-F0-9])([a-fA-F0-9])/.exec(c))return[parseInt(a[1]+a[1],16),parseInt(a[2]+a[2],16),parseInt(a[3]+a[3],16)];if(/rgba\(0, 0, 0, 0\)/.exec(c))return n.transparent;return n[f.trim(c).toLowerCase()]}function s(c,a){var b;do{b=f.curCSS(c,a);if(b!=""&&b!="transparent"||f.nodeName(c,"body"))break;a="backgroundColor"}while(c=c.parentNode);return m(b)}function o(){var c=document.defaultView?document.defaultView.getComputedStyle(this,null):this.currentStyle,
a={},b,d;if(c&&c.length&&c[0]&&c[c[0]])for(var e=c.length;e--;){b=c[e];if(typeof c[b]=="string"){d=b.replace(/\-(\w)/g,function(g,h){return h.toUpperCase()});a[d]=c[b]}}else for(b in c)if(typeof c[b]==="string")a[b]=c[b];return a}function p(c){var a,b;for(a in c){b=c[a];if(b==null||f.isFunction(b)||a in t||/scrollbar/.test(a)||!/color/i.test(a)&&isNaN(parseFloat(b)))delete c[a]}return c}function u(c,a){var b={_:0},d;for(d in a)if(c[d]!=a[d])b[d]=a[d];return b}function k(c,a,b,d){if(typeof c=="object"){d=
a;b=null;a=c;c=a.effect}if(f.isFunction(a)){d=a;b=null;a={}}if(typeof a=="number"||f.fx.speeds[a]){d=b;b=a;a={}}if(f.isFunction(b)){d=b;b=null}a=a||{};b=b||a.duration;b=f.fx.off?0:typeof b=="number"?b:b in f.fx.speeds?f.fx.speeds[b]:f.fx.speeds._default;d=d||a.complete;return[c,a,b,d]}function l(c){if(!c||typeof c==="number"||f.fx.speeds[c])return true;if(typeof c==="string"&&!f.effects[c])return true;return false}f.effects={};f.each(["backgroundColor","borderBottomColor","borderLeftColor","borderRightColor",
"borderTopColor","borderColor","color","outlineColor"],function(c,a){f.fx.step[a]=function(b){if(!b.colorInit){b.start=s(b.elem,a);b.end=m(b.end);b.colorInit=true}b.elem.style[a]="rgb("+Math.max(Math.min(parseInt(b.pos*(b.end[0]-b.start[0])+b.start[0],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[1]-b.start[1])+b.start[1],10),255),0)+","+Math.max(Math.min(parseInt(b.pos*(b.end[2]-b.start[2])+b.start[2],10),255),0)+")"}});var n={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]},q=["add","remove","toggle"],t={border:1,borderBottom:1,borderColor:1,borderLeft:1,borderRight:1,borderTop:1,borderWidth:1,margin:1,padding:1};f.effects.animateClass=function(c,a,b,
d){if(f.isFunction(b)){d=b;b=null}return this.queue(function(){var e=f(this),g=e.attr("style")||" ",h=p(o.call(this)),r,v=e.attr("class");f.each(q,function(w,i){c[i]&&e[i+"Class"](c[i])});r=p(o.call(this));e.attr("class",v);e.animate(u(h,r),{queue:false,duration:a,easing:b,complete:function(){f.each(q,function(w,i){c[i]&&e[i+"Class"](c[i])});if(typeof e.attr("style")=="object"){e.attr("style").cssText="";e.attr("style").cssText=g}else e.attr("style",g);d&&d.apply(this,arguments);f.dequeue(this)}})})};
f.fn.extend({_addClass:f.fn.addClass,addClass:function(c,a,b,d){return a?f.effects.animateClass.apply(this,[{add:c},a,b,d]):this._addClass(c)},_removeClass:f.fn.removeClass,removeClass:function(c,a,b,d){return a?f.effects.animateClass.apply(this,[{remove:c},a,b,d]):this._removeClass(c)},_toggleClass:f.fn.toggleClass,toggleClass:function(c,a,b,d,e){return typeof a=="boolean"||a===j?b?f.effects.animateClass.apply(this,[a?{add:c}:{remove:c},b,d,e]):this._toggleClass(c,a):f.effects.animateClass.apply(this,
[{toggle:c},a,b,d])},switchClass:function(c,a,b,d,e){return f.effects.animateClass.apply(this,[{add:a,remove:c},b,d,e])}});f.extend(f.effects,{version:"1.8.14",save:function(c,a){for(var b=0;b<a.length;b++)a[b]!==null&&c.data("ec.storage."+a[b],c[0].style[a[b]])},restore:function(c,a){for(var b=0;b<a.length;b++)a[b]!==null&&c.css(a[b],c.data("ec.storage."+a[b]))},setMode:function(c,a){if(a=="toggle")a=c.is(":hidden")?"show":"hide";return a},getBaseline:function(c,a){var b;switch(c[0]){case "top":b=
0;break;case "middle":b=0.5;break;case "bottom":b=1;break;default:b=c[0]/a.height}switch(c[1]){case "left":c=0;break;case "center":c=0.5;break;case "right":c=1;break;default:c=c[1]/a.width}return{x:c,y:b}},createWrapper:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent();var a={width:c.outerWidth(true),height:c.outerHeight(true),"float":c.css("float")},b=f("<div></div>").addClass("ui-effects-wrapper").css({fontSize:"100%",background:"transparent",border:"none",margin:0,padding:0});
c.wrap(b);b=c.parent();if(c.css("position")=="static"){b.css({position:"relative"});c.css({position:"relative"})}else{f.extend(a,{position:c.css("position"),zIndex:c.css("z-index")});f.each(["top","left","bottom","right"],function(d,e){a[e]=c.css(e);if(isNaN(parseInt(a[e],10)))a[e]="auto"});c.css({position:"relative",top:0,left:0,right:"auto",bottom:"auto"})}return b.css(a).show()},removeWrapper:function(c){if(c.parent().is(".ui-effects-wrapper"))return c.parent().replaceWith(c);return c},setTransition:function(c,
a,b,d){d=d||{};f.each(a,function(e,g){unit=c.cssUnit(g);if(unit[0]>0)d[g]=unit[0]*b+unit[1]});return d}});f.fn.extend({effect:function(c){var a=k.apply(this,arguments),b={options:a[1],duration:a[2],callback:a[3]};a=b.options.mode;var d=f.effects[c];if(f.fx.off||!d)return a?this[a](b.duration,b.callback):this.each(function(){b.callback&&b.callback.call(this)});return d.call(this,b)},_show:f.fn.show,show:function(c){if(l(c))return this._show.apply(this,arguments);else{var a=k.apply(this,arguments);
a[1].mode="show";return this.effect.apply(this,a)}},_hide:f.fn.hide,hide:function(c){if(l(c))return this._hide.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="hide";return this.effect.apply(this,a)}},__toggle:f.fn.toggle,toggle:function(c){if(l(c)||typeof c==="boolean"||f.isFunction(c))return this.__toggle.apply(this,arguments);else{var a=k.apply(this,arguments);a[1].mode="toggle";return this.effect.apply(this,a)}},cssUnit:function(c){var a=this.css(c),b=[];f.each(["em","px","%",
"pt"],function(d,e){if(a.indexOf(e)>0)b=[parseFloat(a),e]});return b}});f.easing.jswing=f.easing.swing;f.extend(f.easing,{def:"easeOutQuad",swing:function(c,a,b,d,e){return f.easing[f.easing.def](c,a,b,d,e)},easeInQuad:function(c,a,b,d,e){return d*(a/=e)*a+b},easeOutQuad:function(c,a,b,d,e){return-d*(a/=e)*(a-2)+b},easeInOutQuad:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a+b;return-d/2*(--a*(a-2)-1)+b},easeInCubic:function(c,a,b,d,e){return d*(a/=e)*a*a+b},easeOutCubic:function(c,a,b,d,e){return d*
((a=a/e-1)*a*a+1)+b},easeInOutCubic:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a+b;return d/2*((a-=2)*a*a+2)+b},easeInQuart:function(c,a,b,d,e){return d*(a/=e)*a*a*a+b},easeOutQuart:function(c,a,b,d,e){return-d*((a=a/e-1)*a*a*a-1)+b},easeInOutQuart:function(c,a,b,d,e){if((a/=e/2)<1)return d/2*a*a*a*a+b;return-d/2*((a-=2)*a*a*a-2)+b},easeInQuint:function(c,a,b,d,e){return d*(a/=e)*a*a*a*a+b},easeOutQuint:function(c,a,b,d,e){return d*((a=a/e-1)*a*a*a*a+1)+b},easeInOutQuint:function(c,a,b,d,e){if((a/=
e/2)<1)return d/2*a*a*a*a*a+b;return d/2*((a-=2)*a*a*a*a+2)+b},easeInSine:function(c,a,b,d,e){return-d*Math.cos(a/e*(Math.PI/2))+d+b},easeOutSine:function(c,a,b,d,e){return d*Math.sin(a/e*(Math.PI/2))+b},easeInOutSine:function(c,a,b,d,e){return-d/2*(Math.cos(Math.PI*a/e)-1)+b},easeInExpo:function(c,a,b,d,e){return a==0?b:d*Math.pow(2,10*(a/e-1))+b},easeOutExpo:function(c,a,b,d,e){return a==e?b+d:d*(-Math.pow(2,-10*a/e)+1)+b},easeInOutExpo:function(c,a,b,d,e){if(a==0)return b;if(a==e)return b+d;if((a/=
e/2)<1)return d/2*Math.pow(2,10*(a-1))+b;return d/2*(-Math.pow(2,-10*--a)+2)+b},easeInCirc:function(c,a,b,d,e){return-d*(Math.sqrt(1-(a/=e)*a)-1)+b},easeOutCirc:function(c,a,b,d,e){return d*Math.sqrt(1-(a=a/e-1)*a)+b},easeInOutCirc:function(c,a,b,d,e){if((a/=e/2)<1)return-d/2*(Math.sqrt(1-a*a)-1)+b;return d/2*(Math.sqrt(1-(a-=2)*a)+1)+b},easeInElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/
h);return-(h*Math.pow(2,10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g))+b},easeOutElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e)==1)return b+d;g||(g=e*0.3);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/h);return h*Math.pow(2,-10*a)*Math.sin((a*e-c)*2*Math.PI/g)+d+b},easeInOutElastic:function(c,a,b,d,e){c=1.70158;var g=0,h=d;if(a==0)return b;if((a/=e/2)==2)return b+d;g||(g=e*0.3*1.5);if(h<Math.abs(d)){h=d;c=g/4}else c=g/(2*Math.PI)*Math.asin(d/h);if(a<1)return-0.5*
h*Math.pow(2,10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g)+b;return h*Math.pow(2,-10*(a-=1))*Math.sin((a*e-c)*2*Math.PI/g)*0.5+d+b},easeInBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;return d*(a/=e)*a*((g+1)*a-g)+b},easeOutBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;return d*((a=a/e-1)*a*((g+1)*a+g)+1)+b},easeInOutBack:function(c,a,b,d,e,g){if(g==j)g=1.70158;if((a/=e/2)<1)return d/2*a*a*(((g*=1.525)+1)*a-g)+b;return d/2*((a-=2)*a*(((g*=1.525)+1)*a+g)+2)+b},easeInBounce:function(c,a,b,d,e){return d-f.easing.easeOutBounce(c,
e-a,0,d,e)+b},easeOutBounce:function(c,a,b,d,e){return(a/=e)<1/2.75?d*7.5625*a*a+b:a<2/2.75?d*(7.5625*(a-=1.5/2.75)*a+0.75)+b:a<2.5/2.75?d*(7.5625*(a-=2.25/2.75)*a+0.9375)+b:d*(7.5625*(a-=2.625/2.75)*a+0.984375)+b},easeInOutBounce:function(c,a,b,d,e){if(a<e/2)return f.easing.easeInBounce(c,a*2,0,d,e)*0.5+b;return f.easing.easeOutBounce(c,a*2-e,0,d,e)*0.5+d*0.5+b}})}(jQuery);
;/*
 * jQuery UI Effects Blind 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Blind
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(b){b.effects.blind=function(c){return this.queue(function(){var a=b(this),g=["position","top","bottom","left","right"],f=b.effects.setMode(a,c.options.mode||"hide"),d=c.options.direction||"vertical";b.effects.save(a,g);a.show();var e=b.effects.createWrapper(a).css({overflow:"hidden"}),h=d=="vertical"?"height":"width";d=d=="vertical"?e.height():e.width();f=="show"&&e.css(h,0);var i={};i[h]=f=="show"?d:0;e.animate(i,c.duration,c.options.easing,function(){f=="hide"&&a.hide();b.effects.restore(a,
g);b.effects.removeWrapper(a);c.callback&&c.callback.apply(a[0],arguments);a.dequeue()})})}})(jQuery);
;/*
 * jQuery UI Effects Bounce 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Bounce
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(e){e.effects.bounce=function(b){return this.queue(function(){var a=e(this),l=["position","top","bottom","left","right"],h=e.effects.setMode(a,b.options.mode||"effect"),d=b.options.direction||"up",c=b.options.distance||20,m=b.options.times||5,i=b.duration||250;/show|hide/.test(h)&&l.push("opacity");e.effects.save(a,l);a.show();e.effects.createWrapper(a);var f=d=="up"||d=="down"?"top":"left";d=d=="up"||d=="left"?"pos":"neg";c=b.options.distance||(f=="top"?a.outerHeight({margin:true})/3:a.outerWidth({margin:true})/
3);if(h=="show")a.css("opacity",0).css(f,d=="pos"?-c:c);if(h=="hide")c/=m*2;h!="hide"&&m--;if(h=="show"){var g={opacity:1};g[f]=(d=="pos"?"+=":"-=")+c;a.animate(g,i/2,b.options.easing);c/=2;m--}for(g=0;g<m;g++){var j={},k={};j[f]=(d=="pos"?"-=":"+=")+c;k[f]=(d=="pos"?"+=":"-=")+c;a.animate(j,i/2,b.options.easing).animate(k,i/2,b.options.easing);c=h=="hide"?c*2:c/2}if(h=="hide"){g={opacity:0};g[f]=(d=="pos"?"-=":"+=")+c;a.animate(g,i/2,b.options.easing,function(){a.hide();e.effects.restore(a,l);e.effects.removeWrapper(a);
b.callback&&b.callback.apply(this,arguments)})}else{j={};k={};j[f]=(d=="pos"?"-=":"+=")+c;k[f]=(d=="pos"?"+=":"-=")+c;a.animate(j,i/2,b.options.easing).animate(k,i/2,b.options.easing,function(){e.effects.restore(a,l);e.effects.removeWrapper(a);b.callback&&b.callback.apply(this,arguments)})}a.queue("fx",function(){a.dequeue()});a.dequeue()})}})(jQuery);
;/*
 * jQuery UI Effects Clip 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Clip
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(b){b.effects.clip=function(e){return this.queue(function(){var a=b(this),i=["position","top","bottom","left","right","height","width"],f=b.effects.setMode(a,e.options.mode||"hide"),c=e.options.direction||"vertical";b.effects.save(a,i);a.show();var d=b.effects.createWrapper(a).css({overflow:"hidden"});d=a[0].tagName=="IMG"?d:a;var g={size:c=="vertical"?"height":"width",position:c=="vertical"?"top":"left"};c=c=="vertical"?d.height():d.width();if(f=="show"){d.css(g.size,0);d.css(g.position,
c/2)}var h={};h[g.size]=f=="show"?c:0;h[g.position]=f=="show"?0:c/2;d.animate(h,{queue:false,duration:e.duration,easing:e.options.easing,complete:function(){f=="hide"&&a.hide();b.effects.restore(a,i);b.effects.removeWrapper(a);e.callback&&e.callback.apply(a[0],arguments);a.dequeue()}})})}})(jQuery);
;/*
 * jQuery UI Effects Drop 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Drop
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(c){c.effects.drop=function(d){return this.queue(function(){var a=c(this),h=["position","top","bottom","left","right","opacity"],e=c.effects.setMode(a,d.options.mode||"hide"),b=d.options.direction||"left";c.effects.save(a,h);a.show();c.effects.createWrapper(a);var f=b=="up"||b=="down"?"top":"left";b=b=="up"||b=="left"?"pos":"neg";var g=d.options.distance||(f=="top"?a.outerHeight({margin:true})/2:a.outerWidth({margin:true})/2);if(e=="show")a.css("opacity",0).css(f,b=="pos"?-g:g);var i={opacity:e==
"show"?1:0};i[f]=(e=="show"?b=="pos"?"+=":"-=":b=="pos"?"-=":"+=")+g;a.animate(i,{queue:false,duration:d.duration,easing:d.options.easing,complete:function(){e=="hide"&&a.hide();c.effects.restore(a,h);c.effects.removeWrapper(a);d.callback&&d.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
;/*
 * jQuery UI Effects Explode 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Explode
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(j){j.effects.explode=function(a){return this.queue(function(){var c=a.options.pieces?Math.round(Math.sqrt(a.options.pieces)):3,d=a.options.pieces?Math.round(Math.sqrt(a.options.pieces)):3;a.options.mode=a.options.mode=="toggle"?j(this).is(":visible")?"hide":"show":a.options.mode;var b=j(this).show().css("visibility","hidden"),g=b.offset();g.top-=parseInt(b.css("marginTop"),10)||0;g.left-=parseInt(b.css("marginLeft"),10)||0;for(var h=b.outerWidth(true),i=b.outerHeight(true),e=0;e<c;e++)for(var f=
0;f<d;f++)b.clone().appendTo("body").wrap("<div></div>").css({position:"absolute",visibility:"visible",left:-f*(h/d),top:-e*(i/c)}).parent().addClass("ui-effects-explode").css({position:"absolute",overflow:"hidden",width:h/d,height:i/c,left:g.left+f*(h/d)+(a.options.mode=="show"?(f-Math.floor(d/2))*(h/d):0),top:g.top+e*(i/c)+(a.options.mode=="show"?(e-Math.floor(c/2))*(i/c):0),opacity:a.options.mode=="show"?0:1}).animate({left:g.left+f*(h/d)+(a.options.mode=="show"?0:(f-Math.floor(d/2))*(h/d)),top:g.top+
e*(i/c)+(a.options.mode=="show"?0:(e-Math.floor(c/2))*(i/c)),opacity:a.options.mode=="show"?1:0},a.duration||500);setTimeout(function(){a.options.mode=="show"?b.css({visibility:"visible"}):b.css({visibility:"visible"}).hide();a.callback&&a.callback.apply(b[0]);b.dequeue();j("div.ui-effects-explode").remove()},a.duration||500)})}})(jQuery);
;/*
 * jQuery UI Effects Fade 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Fade
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(b){b.effects.fade=function(a){return this.queue(function(){var c=b(this),d=b.effects.setMode(c,a.options.mode||"hide");c.animate({opacity:d},{queue:false,duration:a.duration,easing:a.options.easing,complete:function(){a.callback&&a.callback.apply(this,arguments);c.dequeue()}})})}})(jQuery);
;/*
 * jQuery UI Effects Fold 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Fold
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(c){c.effects.fold=function(a){return this.queue(function(){var b=c(this),j=["position","top","bottom","left","right"],d=c.effects.setMode(b,a.options.mode||"hide"),g=a.options.size||15,h=!!a.options.horizFirst,k=a.duration?a.duration/2:c.fx.speeds._default/2;c.effects.save(b,j);b.show();var e=c.effects.createWrapper(b).css({overflow:"hidden"}),f=d=="show"!=h,l=f?["width","height"]:["height","width"];f=f?[e.width(),e.height()]:[e.height(),e.width()];var i=/([0-9]+)%/.exec(g);if(i)g=parseInt(i[1],
10)/100*f[d=="hide"?0:1];if(d=="show")e.css(h?{height:0,width:g}:{height:g,width:0});h={};i={};h[l[0]]=d=="show"?f[0]:g;i[l[1]]=d=="show"?f[1]:0;e.animate(h,k,a.options.easing).animate(i,k,a.options.easing,function(){d=="hide"&&b.hide();c.effects.restore(b,j);c.effects.removeWrapper(b);a.callback&&a.callback.apply(b[0],arguments);b.dequeue()})})}})(jQuery);
;/*
 * jQuery UI Effects Highlight 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Highlight
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(b){b.effects.highlight=function(c){return this.queue(function(){var a=b(this),e=["backgroundImage","backgroundColor","opacity"],d=b.effects.setMode(a,c.options.mode||"show"),f={backgroundColor:a.css("backgroundColor")};if(d=="hide")f.opacity=0;b.effects.save(a,e);a.show().css({backgroundImage:"none",backgroundColor:c.options.color||"#ffff99"}).animate(f,{queue:false,duration:c.duration,easing:c.options.easing,complete:function(){d=="hide"&&a.hide();b.effects.restore(a,e);d=="show"&&!b.support.opacity&&
this.style.removeAttribute("filter");c.callback&&c.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
;/*
 * jQuery UI Effects Pulsate 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Pulsate
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(d){d.effects.pulsate=function(a){return this.queue(function(){var b=d(this),c=d.effects.setMode(b,a.options.mode||"show");times=(a.options.times||5)*2-1;duration=a.duration?a.duration/2:d.fx.speeds._default/2;isVisible=b.is(":visible");animateTo=0;if(!isVisible){b.css("opacity",0).show();animateTo=1}if(c=="hide"&&isVisible||c=="show"&&!isVisible)times--;for(c=0;c<times;c++){b.animate({opacity:animateTo},duration,a.options.easing);animateTo=(animateTo+1)%2}b.animate({opacity:animateTo},duration,
a.options.easing,function(){animateTo==0&&b.hide();a.callback&&a.callback.apply(this,arguments)});b.queue("fx",function(){b.dequeue()}).dequeue()})}})(jQuery);
;/*
 * jQuery UI Effects Scale 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Scale
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(c){c.effects.puff=function(b){return this.queue(function(){var a=c(this),e=c.effects.setMode(a,b.options.mode||"hide"),g=parseInt(b.options.percent,10)||150,h=g/100,i={height:a.height(),width:a.width()};c.extend(b.options,{fade:true,mode:e,percent:e=="hide"?g:100,from:e=="hide"?i:{height:i.height*h,width:i.width*h}});a.effect("scale",b.options,b.duration,b.callback);a.dequeue()})};c.effects.scale=function(b){return this.queue(function(){var a=c(this),e=c.extend(true,{},b.options),g=c.effects.setMode(a,
b.options.mode||"effect"),h=parseInt(b.options.percent,10)||(parseInt(b.options.percent,10)==0?0:g=="hide"?0:100),i=b.options.direction||"both",f=b.options.origin;if(g!="effect"){e.origin=f||["middle","center"];e.restore=true}f={height:a.height(),width:a.width()};a.from=b.options.from||(g=="show"?{height:0,width:0}:f);h={y:i!="horizontal"?h/100:1,x:i!="vertical"?h/100:1};a.to={height:f.height*h.y,width:f.width*h.x};if(b.options.fade){if(g=="show"){a.from.opacity=0;a.to.opacity=1}if(g=="hide"){a.from.opacity=
1;a.to.opacity=0}}e.from=a.from;e.to=a.to;e.mode=g;a.effect("size",e,b.duration,b.callback);a.dequeue()})};c.effects.size=function(b){return this.queue(function(){var a=c(this),e=["position","top","bottom","left","right","width","height","overflow","opacity"],g=["position","top","bottom","left","right","overflow","opacity"],h=["width","height","overflow"],i=["fontSize"],f=["borderTopWidth","borderBottomWidth","paddingTop","paddingBottom"],k=["borderLeftWidth","borderRightWidth","paddingLeft","paddingRight"],
p=c.effects.setMode(a,b.options.mode||"effect"),n=b.options.restore||false,m=b.options.scale||"both",l=b.options.origin,j={height:a.height(),width:a.width()};a.from=b.options.from||j;a.to=b.options.to||j;if(l){l=c.effects.getBaseline(l,j);a.from.top=(j.height-a.from.height)*l.y;a.from.left=(j.width-a.from.width)*l.x;a.to.top=(j.height-a.to.height)*l.y;a.to.left=(j.width-a.to.width)*l.x}var d={from:{y:a.from.height/j.height,x:a.from.width/j.width},to:{y:a.to.height/j.height,x:a.to.width/j.width}};
if(m=="box"||m=="both"){if(d.from.y!=d.to.y){e=e.concat(f);a.from=c.effects.setTransition(a,f,d.from.y,a.from);a.to=c.effects.setTransition(a,f,d.to.y,a.to)}if(d.from.x!=d.to.x){e=e.concat(k);a.from=c.effects.setTransition(a,k,d.from.x,a.from);a.to=c.effects.setTransition(a,k,d.to.x,a.to)}}if(m=="content"||m=="both")if(d.from.y!=d.to.y){e=e.concat(i);a.from=c.effects.setTransition(a,i,d.from.y,a.from);a.to=c.effects.setTransition(a,i,d.to.y,a.to)}c.effects.save(a,n?e:g);a.show();c.effects.createWrapper(a);
a.css("overflow","hidden").css(a.from);if(m=="content"||m=="both"){f=f.concat(["marginTop","marginBottom"]).concat(i);k=k.concat(["marginLeft","marginRight"]);h=e.concat(f).concat(k);a.find("*[width]").each(function(){child=c(this);n&&c.effects.save(child,h);var o={height:child.height(),width:child.width()};child.from={height:o.height*d.from.y,width:o.width*d.from.x};child.to={height:o.height*d.to.y,width:o.width*d.to.x};if(d.from.y!=d.to.y){child.from=c.effects.setTransition(child,f,d.from.y,child.from);
child.to=c.effects.setTransition(child,f,d.to.y,child.to)}if(d.from.x!=d.to.x){child.from=c.effects.setTransition(child,k,d.from.x,child.from);child.to=c.effects.setTransition(child,k,d.to.x,child.to)}child.css(child.from);child.animate(child.to,b.duration,b.options.easing,function(){n&&c.effects.restore(child,h)})})}a.animate(a.to,{queue:false,duration:b.duration,easing:b.options.easing,complete:function(){a.to.opacity===0&&a.css("opacity",a.from.opacity);p=="hide"&&a.hide();c.effects.restore(a,
n?e:g);c.effects.removeWrapper(a);b.callback&&b.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
;/*
 * jQuery UI Effects Shake 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Shake
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(d){d.effects.shake=function(a){return this.queue(function(){var b=d(this),j=["position","top","bottom","left","right"];d.effects.setMode(b,a.options.mode||"effect");var c=a.options.direction||"left",e=a.options.distance||20,l=a.options.times||3,f=a.duration||a.options.duration||140;d.effects.save(b,j);b.show();d.effects.createWrapper(b);var g=c=="up"||c=="down"?"top":"left",h=c=="up"||c=="left"?"pos":"neg";c={};var i={},k={};c[g]=(h=="pos"?"-=":"+=")+e;i[g]=(h=="pos"?"+=":"-=")+e*2;k[g]=
(h=="pos"?"-=":"+=")+e*2;b.animate(c,f,a.options.easing);for(e=1;e<l;e++)b.animate(i,f,a.options.easing).animate(k,f,a.options.easing);b.animate(i,f,a.options.easing).animate(c,f/2,a.options.easing,function(){d.effects.restore(b,j);d.effects.removeWrapper(b);a.callback&&a.callback.apply(this,arguments)});b.queue("fx",function(){b.dequeue()});b.dequeue()})}})(jQuery);
;/*
 * jQuery UI Effects Slide 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Slide
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(c){c.effects.slide=function(d){return this.queue(function(){var a=c(this),h=["position","top","bottom","left","right"],f=c.effects.setMode(a,d.options.mode||"show"),b=d.options.direction||"left";c.effects.save(a,h);a.show();c.effects.createWrapper(a).css({overflow:"hidden"});var g=b=="up"||b=="down"?"top":"left";b=b=="up"||b=="left"?"pos":"neg";var e=d.options.distance||(g=="top"?a.outerHeight({margin:true}):a.outerWidth({margin:true}));if(f=="show")a.css(g,b=="pos"?isNaN(e)?"-"+e:-e:e);
var i={};i[g]=(f=="show"?b=="pos"?"+=":"-=":b=="pos"?"-=":"+=")+e;a.animate(i,{queue:false,duration:d.duration,easing:d.options.easing,complete:function(){f=="hide"&&a.hide();c.effects.restore(a,h);c.effects.removeWrapper(a);d.callback&&d.callback.apply(this,arguments);a.dequeue()}})})}})(jQuery);
;/*
 * jQuery UI Effects Transfer 1.8.14
 *
 * Copyright 2011, AUTHORS.txt (http://jqueryui.com/about)
 * Dual licensed under the MIT or GPL Version 2 licenses.
 * http://jquery.org/license
 *
 * http://docs.jquery.com/UI/Effects/Transfer
 *
 * Depends:
 *	jquery.effects.core.js
 */
(function(e){e.effects.transfer=function(a){return this.queue(function(){var b=e(this),c=e(a.options.to),d=c.offset();c={top:d.top,left:d.left,height:c.innerHeight(),width:c.innerWidth()};d=b.offset();var f=e('<div class="ui-effects-transfer"></div>').appendTo(document.body).addClass(a.options.className).css({top:d.top,left:d.left,height:b.innerHeight(),width:b.innerWidth(),position:"absolute"}).animate(c,a.duration,a.options.easing,function(){f.remove();a.callback&&a.callback.apply(b[0],arguments);
b.dequeue()})})}})(jQuery);
;;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
Cufon.replace('h1, h2, h3, .block .block-title, .views-showcase-big-box-title');
$(document).ready(function(){Cufon.now();});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitised data (c) 2004 Monotype Imaging. All Rights Reserved. Neo Sans is
 * designed by Sebastian Lester.
 * 
 * Trademark:
 * Neo Sans is a trademark of Monotype Imaging Inc. and may be registered in
 * certain jurisdictions.
 * 
 * Full name:
 * NeoSansPro-Light
 * 
 * Vendor URL:
 * http://www.agfamonotype.com.
 * 
 * License information:
 * http://www.agfamonotype.com/html/type/license.html.
 */
Cufon.registerFont({"w":208,"face":{"font-family":"Neo Sans Pro","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 3 4 3 5 4 4 2 4","ascent":"275","descent":"-85","x-height":"2","bbox":"-16.1916 -343.222 317.522 71","underline-thickness":"15.12","underline-position":"-12.6","stemh":"15","stemv":"14","unicode-range":"U+0020-U+0451"},"glyphs":{" ":{"w":77},"!":{"d":"45,-69v0,5,-4,8,-9,7v-4,0,-7,-3,-7,-7r0,-192v0,-5,4,-6,9,-6v4,0,7,2,7,6r0,192xm36,-38v16,0,14,42,0,40v-11,-1,-12,-36,0,-40","w":73},"\"":{"d":"74,-261v2,-9,21,-9,18,0r-17,62v1,8,-14,10,-16,4v3,-24,11,-43,15,-66xm29,-261v2,-9,21,-9,18,0r-17,62v1,8,-14,10,-16,4v3,-24,11,-43,15,-66","w":106,"k":{",":29,".":29,"s":18}},"#":{"d":"211,-180v-3,14,-31,4,-45,7r-7,82v14,3,41,-8,44,7v-5,12,-30,4,-45,6r-6,71v0,5,-4,8,-10,7v-4,0,-6,-3,-6,-7r6,-71r-65,0r-6,71v0,6,-4,8,-10,7v-3,0,-6,-3,-6,-7r7,-71v-14,-3,-41,8,-44,-7v5,-12,30,-4,45,-6r7,-82v-14,-3,-41,7,-44,-7v5,-12,30,-4,45,-6r7,-75v0,-5,4,-6,10,-6v3,0,6,3,6,6r-7,75r65,0r6,-75v0,-5,4,-6,10,-6v4,0,6,3,6,6r-7,75v14,3,40,-7,44,6xm151,-173r-65,0r-7,82r65,0","w":228},"$":{"d":"180,-66v0,30,-12,62,-68,67v-4,15,9,44,-9,45v-14,-3,-1,-32,-7,-44v-23,0,-41,-3,-55,-4v-5,0,-8,-4,-7,-10v0,-4,4,-5,8,-5v19,1,34,4,54,4v54,0,67,-23,67,-53v0,-55,-134,-82,-134,-145v0,-41,32,-55,68,-58v3,-13,-8,-40,10,-38v12,2,1,28,6,38v19,0,39,2,54,3v6,0,6,4,6,10v-7,13,-36,2,-60,2v-48,0,-68,13,-68,43v0,53,149,86,135,145"},"%":{"d":"251,-91v0,48,-4,97,-45,93v-41,4,-46,-44,-46,-93v0,-38,18,-56,46,-56v28,0,45,18,45,56xm210,-267v7,0,15,-2,10,6r-151,256v-2,9,-14,9,-20,5r153,-261v3,-5,4,-6,8,-6xm113,-213v0,48,-5,97,-46,93v-41,4,-45,-45,-45,-93v0,-38,17,-56,45,-56v28,0,46,18,46,56xm206,-12v33,0,31,-43,31,-79v0,-29,-11,-43,-31,-43v-33,0,-32,43,-32,80v0,29,12,42,32,42xm67,-134v33,0,32,-42,32,-79v0,-29,-12,-43,-32,-43v-33,0,-31,44,-31,80v0,29,11,42,31,42","w":272},"&":{"d":"215,-5v1,2,1,5,-2,5v-22,4,-27,-17,-40,-27v-37,42,-153,47,-155,-35v0,-30,14,-48,55,-74v-40,-48,-43,-58,-43,-78v0,-41,29,-55,68,-55v34,0,66,15,66,57v0,29,-30,59,-68,79r76,83v14,-21,19,-49,19,-79v-1,-6,4,-8,10,-7v5,0,6,5,6,11v0,32,-8,63,-24,86xm86,-144v33,-19,69,-44,62,-70v0,-31,-23,-41,-50,-41v-32,0,-53,9,-52,43v0,14,3,26,40,68xm163,-38r-81,-87v-37,24,-47,35,-47,65v1,63,102,57,128,22","w":229},"(":{"d":"88,-266v-67,90,-69,245,0,334v-2,3,-16,3,-20,0v-37,-49,-46,-115,-46,-176v0,-45,12,-116,46,-157v3,-3,15,-2,20,-1","w":95},")":{"d":"7,68v70,-90,68,-245,0,-334v4,-2,17,-2,20,1v65,98,65,233,0,333v-3,3,-17,3,-20,0","w":95},"*":{"d":"12,-221v2,-4,3,-9,9,-8r47,16r0,-50v-1,-6,3,-6,9,-6v4,0,5,2,5,6r0,50v18,-1,46,-26,56,-8v-11,12,-36,12,-52,20v10,15,23,28,31,45v-2,5,-10,11,-13,3r-29,-40v-13,12,-21,45,-40,41v-2,-20,22,-32,29,-49v-17,-7,-40,-8,-52,-20","w":150},"+":{"d":"185,-143v1,7,-2,10,-8,10r-65,0r0,65v0,5,-3,8,-9,7v-4,0,-6,-3,-6,-7r0,-65r-65,0v-6,0,-9,-3,-8,-10v0,-4,4,-5,8,-5r65,0r0,-66v0,-5,3,-8,9,-7v4,0,6,3,6,7r0,66r65,0v4,0,8,1,8,5"},",":{"d":"36,-38v7,-1,13,0,10,7r-23,60v0,10,-17,10,-14,0r19,-60v1,-5,4,-7,8,-7","w":60,"k":{",":-38,"\"":29,"'":29}},"-":{"d":"105,-101v1,6,-2,8,-7,8r-72,0v-5,0,-8,-2,-7,-8v0,-4,3,-7,7,-7r72,0v4,0,7,3,7,7","w":123},".":{"d":"29,-38v16,0,14,42,0,40v-11,-1,-12,-36,0,-40","w":60,"k":{"\"":29,"'":29}},"\/":{"d":"96,-269v6,0,13,0,11,7r-85,257v0,7,-5,8,-13,7v-4,0,-4,-3,-4,-7r85,-257v1,-3,2,-7,6,-7","w":112,"k":{"\/":16}},"0":{"d":"187,-98v0,69,-33,100,-83,100v-50,0,-82,-31,-82,-100r0,-71v0,-69,32,-100,82,-100v50,0,83,31,83,100r0,71xm104,-12v68,0,67,-82,67,-157v0,-57,-24,-86,-67,-86v-68,0,-67,82,-67,157v0,57,24,86,67,86"},"1":{"d":"31,-15r61,0r0,-237r-64,8v-9,-2,-5,-13,2,-14r72,-9v4,0,6,3,6,7r0,245r62,0v6,0,8,4,7,10v0,4,-3,5,-7,5r-139,0v-6,0,-9,-2,-8,-9v0,-4,4,-6,8,-6"},"2":{"d":"34,-254v4,-22,43,-11,62,-15v54,0,84,19,84,63v0,67,-153,100,-135,177r0,14r125,0v6,0,8,4,7,10v0,4,-3,5,-7,5r-134,0v-11,-1,-7,-18,-7,-29v0,-35,7,-63,56,-96v27,-19,84,-48,78,-81v8,-51,-75,-56,-123,-42v-3,0,-6,-2,-6,-6"},"3":{"d":"30,-255v5,-18,37,-13,59,-14v56,-2,92,15,90,70v0,23,-10,47,-38,59v73,39,36,154,-52,142v-22,-3,-53,4,-59,-14v0,-4,2,-6,7,-6v59,12,125,9,125,-63v0,-19,-13,-52,-51,-52r-68,0v-5,0,-8,-3,-7,-9v0,-4,3,-6,7,-6r68,0v44,-2,51,-31,51,-55v0,-60,-74,-54,-126,-46v-4,0,-6,-2,-6,-6"},"4":{"d":"195,-87v1,17,-28,6,-43,9r0,71v1,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-71r-99,0v-22,1,-29,-20,-18,-34r101,-148v10,-14,32,-13,32,8r0,159v14,2,39,-6,43,6xm136,-93r-2,-160r-102,148v-4,5,-6,13,5,12r99,0"},"5":{"d":"181,-86v10,80,-77,100,-146,82v-8,0,-11,-14,-3,-16v60,16,144,8,133,-66v6,-54,-60,-58,-125,-56v-4,0,-7,-3,-7,-8r8,-111v0,-4,5,-6,8,-6r117,0v6,0,8,3,7,9v0,4,-3,5,-7,5r-109,0r-7,96v78,-5,140,16,131,71"},"6":{"d":"186,-92v1,62,-24,94,-83,94v-54,0,-80,-30,-80,-93r0,-85v-7,-93,73,-104,145,-86v8,-1,13,13,3,15v-62,-14,-140,-15,-132,71r0,23v58,-17,146,-20,147,61xm103,-12v44,0,68,-22,67,-80v0,-71,-83,-58,-131,-47v-3,67,2,127,64,127"},"7":{"d":"172,-267v12,-1,17,10,12,20r-115,243v-3,7,-22,6,-16,-6r114,-239v0,-1,-1,-3,-3,-3r-134,0v-5,0,-9,-3,-8,-9v0,-4,4,-6,8,-6r142,0","k":{"\/":32}},"8":{"d":"151,-140v72,37,36,154,-47,142v-83,11,-117,-105,-46,-142v-25,-10,-38,-33,-38,-64v0,-45,34,-65,84,-65v53,0,85,21,85,73v0,25,-15,48,-38,56xm90,-148v53,0,90,-17,82,-56v0,-35,-25,-50,-68,-50v-46,0,-67,16,-67,58v0,21,12,48,53,48xm104,-13v47,0,68,-23,68,-69v0,-17,-12,-51,-53,-51r-29,0v-46,4,-53,33,-53,62v0,38,24,58,67,58"},"9":{"d":"186,-91v7,93,-74,103,-146,86v-9,1,-12,-14,-2,-15v62,14,140,15,132,-71r0,-23v-59,17,-148,21,-147,-63v0,-61,25,-92,83,-92v54,0,80,30,80,93r0,85xm170,-128v3,-67,-2,-127,-64,-127v-44,0,-68,22,-67,80v0,72,83,58,131,47"},":":{"d":"31,-195v16,0,14,42,0,40v-11,-1,-12,-36,0,-40xm31,-38v16,0,14,42,0,40v-11,-1,-12,-36,0,-40","w":64},";":{"d":"31,-195v16,0,14,42,0,40v-11,-1,-12,-36,0,-40xm24,-31v0,-10,21,-10,18,0r-23,60v-1,9,-13,10,-15,3","w":64},"<":{"d":"152,-63v6,4,1,13,-5,14v-36,-24,-67,-55,-101,-81v-8,-6,-8,-15,0,-21v35,-26,63,-58,101,-81v6,0,11,8,5,13r-95,78"},"=":{"d":"177,-179v1,6,-1,10,-7,10r-131,0v-6,0,-8,-4,-7,-10v0,-4,3,-5,7,-5r131,0v4,0,7,1,7,5xm177,-107v1,6,-1,10,-7,10r-131,0v-6,0,-8,-4,-7,-10v0,-4,3,-5,7,-5r131,0v4,0,7,1,7,5"},">":{"d":"168,-151v8,6,8,15,0,21r-101,81v-6,-1,-12,-9,-5,-14r95,-78v-32,-28,-69,-52,-98,-83v0,-6,8,-11,13,-6"},"?":{"d":"13,-257v1,-19,34,-9,49,-12v36,0,71,13,69,55v5,22,-24,54,-50,79v-24,23,-22,31,-22,66v0,5,-4,8,-9,7v-11,-1,-6,-18,-7,-29v-9,-46,80,-85,71,-126v4,-43,-55,-40,-97,-36v-3,0,-4,-1,-4,-4xm50,-38v16,0,14,42,0,40v-11,-1,-12,-36,0,-40","w":152},"@":{"d":"177,24v-2,18,-35,8,-53,12v-94,-3,-115,-73,-101,-161v10,-59,52,-108,126,-108v69,0,106,48,106,99v1,96,-35,109,-127,111v-56,1,-54,-49,-47,-97v-4,-49,71,-66,108,-42r-12,122v60,-7,62,-44,62,-94v0,-48,-32,-85,-91,-85v-89,1,-115,70,-115,156v0,45,29,85,92,85r47,-2v3,0,5,0,5,4xm172,-155v-36,-8,-76,-1,-76,36v0,41,-14,81,44,81v8,0,15,0,22,-1","w":272},"A":{"d":"208,-8v2,7,-2,10,-9,9v-3,0,-5,-2,-6,-5r-30,-97r-104,0r-29,97v-1,4,-5,6,-11,5v-5,0,-6,-4,-5,-9r74,-244v4,-22,40,-22,47,0xm159,-117r-39,-131v-1,-9,-15,-8,-17,0r-39,131r95,0","w":222,"k":{"O":11,"Q":11,"a":7,"e":7,"o":7,"u":7,"y":22,"C":9,"G":9,"L":6,"S":12,"T":36,"U":11,"V":29,"W":14,"Y":29,"c":7,"d":7,"f":18,"g":7,"q":7,"t":18,"v":22,"w":18}},"B":{"d":"190,-79v0,89,-80,86,-154,79v-5,0,-7,-3,-7,-7r0,-253v7,-15,40,-8,61,-9v50,-3,99,12,99,69v0,30,-16,51,-43,60v28,8,44,29,44,61xm110,-148v52,-1,64,-25,63,-56v0,-59,-73,-51,-128,-50r0,106r65,0xm45,-14v62,5,129,9,129,-65v0,-28,-13,-54,-64,-54r-65,0r0,119","k":{"T":16,"Y":11,"A":7}},"C":{"d":"179,-12v-5,23,-27,14,-69,14v-45,0,-88,-26,-88,-112r0,-47v-2,-116,72,-118,150,-109v5,0,8,4,7,11v0,4,-3,4,-7,4v-74,-8,-137,-8,-135,94r0,47v-1,101,59,103,135,94v4,0,7,0,7,4","w":193,"k":{"O":13,"Q":13,"o":7,"y":11,"C":12,"G":12}},"D":{"d":"29,-260v9,-14,30,-9,65,-9v61,0,105,29,105,113r0,45v0,83,-44,113,-105,113v-35,0,-56,5,-65,-10r0,-252xm183,-111r0,-45v-1,-99,-60,-104,-138,-97r0,240v79,6,137,0,138,-98","w":220,"k":{"T":18,"V":5,"W":4,"Y":7,"A":11,"X":11,"Z":11}},"E":{"d":"172,-9v1,6,-2,9,-7,9v-54,-6,-136,22,-136,-40r0,-187v-1,-63,82,-33,136,-40v5,0,8,3,7,9v0,4,-3,5,-7,5r-93,0v-44,-4,-22,68,-27,105r120,0v5,0,8,3,7,9v0,4,-3,7,-7,7r-120,0r0,92v0,22,10,25,27,25r93,0v4,0,7,2,7,6","w":191},"F":{"d":"172,-142v1,6,-2,10,-7,10r-120,0r0,125v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-220v-1,-63,82,-33,136,-40v5,0,8,3,7,9v0,4,-3,5,-7,5r-93,0v-44,-4,-22,68,-27,105r120,0v4,0,7,2,7,6","w":186,"k":{"O":4,"o":4,",":20,".":20,"A":22}},"G":{"d":"183,-260v1,7,-1,10,-8,9v-81,-10,-131,-14,-138,95v-5,78,13,143,75,143v31,0,49,-2,55,-3r0,-115v0,-5,3,-8,9,-7v4,0,7,3,7,7r0,122v0,4,-4,6,-7,6v-81,15,-158,2,-154,-108r0,-45v2,-121,73,-118,155,-110v3,0,6,2,6,6","w":211,"k":{"V":7}},"H":{"d":"204,-7v0,5,-3,8,-9,7v-4,0,-6,-3,-6,-7r0,-129r-144,0r0,129v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-254v0,-6,4,-6,10,-6v4,0,6,2,6,6r0,111r144,0r0,-111v0,-5,4,-6,9,-6v4,0,6,2,6,6r0,254","w":232},"I":{"d":"48,-7v0,5,-3,8,-9,7v-4,0,-7,-3,-7,-7r0,-254v0,-5,4,-6,10,-6v4,0,6,2,6,6r0,254","w":80},"J":{"d":"48,22v1,35,-15,49,-57,48v-5,0,-8,-2,-7,-8v0,-6,6,-6,12,-6v30,0,36,-6,36,-34r0,-283v0,-5,4,-6,10,-6v4,0,6,2,6,6r0,283","w":80},"K":{"d":"167,-265v8,-10,20,0,12,9r-121,117r124,128v5,5,1,12,-5,12v-3,0,-6,-1,-8,-3r-124,-130r0,125v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-254v0,-5,4,-6,9,-6v4,0,7,2,7,6r0,116","w":195,"k":{"O":16,"Q":16,"e":14,"o":13,"u":14,"y":18,"C":27,"G":27,"L":7,"T":7,"U":9,"V":4,"c":14,"d":14,"f":11,"q":13,"t":20,"v":19,"w":18,"E":11,"-":20}},"L":{"d":"161,-9v1,6,-2,9,-7,9v-51,-5,-125,20,-125,-40r0,-221v0,-6,4,-6,10,-6v4,0,6,2,6,6r0,221v0,22,10,25,27,25r82,0v4,0,7,2,7,6","w":173,"k":{"O":20,"Q":20,"e":11,"o":13,"y":14,"C":16,"G":16,"S":9,"T":40,"U":16,"V":41,"W":16,"Y":40,"v":25,"w":11,"E":7,"-":20}},"M":{"d":"234,-7v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r-2,-247v-2,0,-3,0,-4,3r-62,131v-9,18,-29,18,-37,0r-62,-131v-1,-4,-5,-5,-6,-1r0,245v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-245v-2,-22,28,-20,35,-6r67,137v28,-40,44,-93,68,-137v4,-15,35,-16,35,6r0,245","w":262,"k":{"V":7,"Y":13}},"N":{"d":"206,-16v1,22,-30,25,-35,7r-125,-245r-1,247v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-245v-2,-21,31,-22,35,-6r124,245r1,-248v0,-6,4,-6,10,-6v4,0,7,2,7,6r0,245","w":234,"k":{"T":14,"V":9,"Y":13}},"O":{"d":"206,-111v0,80,-38,113,-92,113v-69,0,-92,-66,-92,-158v0,-80,38,-113,92,-113v69,0,92,66,92,158xm190,-111r0,-45v0,-73,-32,-98,-76,-98v-44,0,-77,25,-77,98r0,45v0,73,33,98,77,98v44,0,76,-25,76,-98","w":227,"k":{"T":20,"V":7,"W":4,"Y":13,"A":11,"X":13,"Z":14}},"P":{"d":"182,-196v0,76,-61,88,-137,82r0,107v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-254v6,-13,37,-8,55,-8v61,0,98,21,98,73xm45,-129v65,7,130,-2,121,-67v6,-59,-61,-62,-121,-58r0,125","w":194,"k":{"a":9,"e":9,"o":9,",":32,".":32,"A":25,"Z":14}},"Q":{"d":"206,-156v0,88,-20,161,-85,158v0,36,-6,60,41,54v5,0,9,2,8,8v0,6,-8,6,-15,6v-42,0,-54,-21,-50,-68v-63,3,-83,-70,-83,-158v0,-80,38,-113,92,-113v54,0,92,33,92,113xm190,-111r0,-45v0,-73,-32,-98,-76,-98v-44,0,-77,25,-77,98r0,45v0,73,33,98,77,98v44,0,76,-25,76,-98","w":227,"k":{"X":13,"V":7,"T":20,"W":4,"Y":13,"A":11,"Z":14}},"R":{"d":"197,-10v4,7,0,11,-8,10v-2,0,-5,-2,-6,-3r-76,-118r-62,0r0,114v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-254v5,-16,44,-8,62,-8v66,0,99,18,98,75v0,44,-22,65,-64,72xm45,-136v65,1,136,4,128,-60v6,-61,-67,-61,-128,-57r0,117","w":215,"k":{"O":9,"Q":9,"e":7,"o":7,"y":7,"C":9,"G":9,"T":18,"V":13,"W":5,"Y":11,"c":7,"g":7}},"S":{"d":"104,-269v21,0,57,-6,60,12v-5,15,-35,3,-60,3v-48,0,-68,14,-68,41v-1,61,135,80,135,146v0,33,-15,69,-84,69v-23,0,-41,-1,-52,-3v-12,1,-13,-17,-2,-16v12,1,34,4,54,4v54,0,67,-24,67,-54v0,-58,-134,-72,-134,-146v0,-44,42,-56,84,-56","w":190,"k":{"y":7,"V":13,"W":5,"Y":11,"t":16,"v":11,"w":6,"A":9,"x":7}},"T":{"d":"195,-261v1,6,-2,8,-7,8r-77,0r0,246v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-246r-77,0v-5,0,-8,-2,-7,-8v0,-4,3,-6,7,-6r170,0v4,0,7,2,7,6","w":205,"k":{"O":20,"Q":20,"a":36,"e":32,"o":32,"u":20,"y":32,",":32,".":32,"s":32,"C":16,"G":13,"c":32,"d":32,"g":32,"q":32,"t":23,"v":16,"w":16,"A":40,"E":11,"x":20,"F":7,"m":20,"n":20,"p":20,"r":20,"z":18}},"U":{"d":"199,-261v-7,108,34,263,-85,263v-119,0,-78,-155,-85,-263v0,-6,4,-6,10,-6v4,0,6,2,6,6r0,166v0,52,19,82,69,82v106,2,59,-153,69,-248v0,-6,4,-6,10,-6v4,0,6,2,6,6","w":227,"k":{"A":12}},"V":{"d":"211,-258r-74,243v-6,23,-40,23,-47,0r-74,-243v-1,-7,3,-10,10,-9v3,0,5,2,6,5r73,242v3,10,14,9,17,0r73,-242v2,-8,19,-7,16,4","w":226,"k":{"x":20,"v":13,"q":20,"p":13,"m":13,"Q":7,"O":7,"a":18,"e":18,"o":18,"u":14,"y":16,",":32,".":32,"s":20,"C":9,"G":7,"S":11,"c":18,"g":18,"w":13,"A":29,"E":5,"n":13,"r":14,"z":14}},"W":{"d":"267,-259r-44,244v-2,24,-32,21,-34,1r-47,-144v-19,44,-31,97,-47,144v-2,20,-31,22,-35,-1r-44,-244v-1,-5,3,-9,10,-8v3,0,5,1,6,5r46,249v19,-45,31,-98,48,-145v7,-19,25,-19,32,0r48,145r46,-249v1,-6,4,-5,10,-5v4,0,6,4,5,8","w":283,"k":{"O":7,"Q":7,"a":7,"e":13,"o":13,"C":7,"G":9,"A":23}},"X":{"d":"201,-10v4,6,0,11,-8,10v-2,0,-4,-2,-5,-3r-80,-120r-79,120v-4,5,-20,3,-13,-7r83,-127r-79,-120v-4,-7,-1,-11,7,-10v2,0,5,2,6,3r75,114r75,-114v5,-6,20,-3,14,7r-80,121","w":216,"k":{"v":14,"Q":13,"O":13,"e":9,"o":9,"u":11,"y":11,"C":11,"G":11}},"Y":{"d":"181,-258r-57,126v-6,13,-12,19,-17,21r0,104v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-104v-5,-2,-11,-8,-17,-21r-57,-126v-4,-8,2,-10,9,-9v2,0,5,2,6,4r56,126v9,17,14,17,22,0r56,-126v3,-7,20,-7,15,5","w":198,"k":{"O":13,"Q":13,"a":31,"e":34,"o":36,"u":27,"y":23,",":32,".":32,"s":29,"C":14,"G":14,"S":11,"c":32,"d":32,"f":25,"g":32,"q":36,"t":25,"v":23,"w":23,"A":29,"E":9,"-":40,"x":23,"m":16,"n":16,"p":29,"r":29,"z":27,"\/":32}},"Z":{"d":"163,-267v19,-4,24,14,17,26r-139,225v45,3,97,0,144,1v5,0,9,3,8,9v0,4,-4,6,-8,6r-141,0v-20,1,-25,-15,-16,-28r138,-223v-39,-6,-91,0,-134,-2v-6,0,-8,-3,-7,-9v0,-4,3,-5,7,-5r131,0","w":214},"[":{"d":"100,62v1,5,-2,8,-7,8r-54,0v-4,0,-7,-3,-7,-7r0,-324v0,-4,3,-6,7,-6r54,0v5,0,8,3,7,9v-7,12,-36,2,-52,5r0,308v17,3,47,-8,52,7","w":107},"\\":{"d":"109,-5v4,7,-4,8,-11,7v-4,0,-4,-4,-5,-7r-85,-260v1,-7,17,-5,17,3","w":117},"]":{"d":"75,63v0,4,-2,7,-6,7r-55,0v-5,0,-8,-3,-7,-8v5,-15,36,-4,52,-7r0,-308v-17,-4,-48,9,-52,-8v0,-4,3,-6,7,-6r55,0v4,0,6,2,6,6r0,324","w":107},"^":{"d":"165,-209v4,6,-2,8,-9,7v-20,-14,-34,-40,-52,-57v-17,18,-31,42,-51,57v-6,1,-15,-1,-9,-7r42,-54v7,-9,27,-10,36,0"},"_":{"d":"178,26v1,6,-1,10,-7,9r-175,0v-6,0,-8,-3,-7,-9v0,-4,3,-6,7,-6r175,0v4,0,7,2,7,6","w":167},"a":{"d":"150,-7v0,5,-4,8,-9,7v-8,0,-7,-8,-7,-16v-43,26,-116,34,-116,-44v0,-46,50,-60,117,-56v2,-42,-6,-65,-46,-65v-24,0,-34,1,-51,3v-5,0,-9,-1,-8,-7v0,-5,3,-6,8,-7v15,-2,27,-3,51,-3v94,-1,52,110,61,188xm135,-30r0,-72v-54,-1,-106,0,-101,46v7,63,60,47,101,26","w":175,"k":{"y":7,"f":7,"t":7,"v":5}},"b":{"d":"162,-109v0,63,-12,112,-71,111v-21,0,-44,-4,-60,-7v-4,-1,-6,-3,-6,-7r0,-249v0,-6,4,-6,10,-6v4,0,6,2,6,6r0,71v68,-15,121,1,121,81xm91,-12v48,2,55,-43,55,-97v0,-72,-45,-80,-105,-67r0,159v13,2,33,5,50,5","w":181,"k":{"f":7,"t":7,"x":9}},"c":{"d":"141,-10v-1,18,-38,9,-50,12v-60,-1,-71,-50,-71,-111v0,-66,44,-99,115,-83v6,1,6,4,6,9v-7,12,-38,-2,-50,2v-49,-1,-55,43,-55,96v0,63,35,83,98,70v4,-1,7,1,7,5","w":157,"k":{"o":11}},"d":{"d":"156,-12v0,4,-1,6,-5,7v-16,3,-40,7,-61,7v-58,1,-70,-48,-70,-111v0,-80,51,-97,120,-81r0,-71v0,-5,4,-6,10,-6v4,0,6,2,6,6r0,249xm140,-17r0,-159v-58,-13,-104,-6,-104,67v0,54,6,99,54,97v17,0,37,-3,50,-5","w":181},"e":{"d":"164,-109v0,8,1,16,-7,16r-121,0v-3,87,51,89,118,75v5,-1,9,1,8,7v0,4,-2,6,-7,7v-80,20,-135,0,-135,-105v0,-50,25,-86,73,-86v50,0,71,35,71,86xm36,-107v36,-2,80,4,112,-2v0,-45,-14,-72,-55,-72v-41,0,-57,30,-57,74","w":183,"k":{"y":7,"T":35,"f":7,"t":7,"v":7,"w":4,"x":11}},"f":{"d":"98,-269v15,1,24,-2,25,9v-12,14,-56,-7,-50,33r0,34r43,0v6,-1,6,3,6,9v-6,12,-34,2,-49,5r0,172v0,5,-4,8,-9,7v-4,0,-7,-3,-7,-7r0,-172v-14,-3,-42,9,-43,-9v5,-11,30,-2,43,-5v-3,-41,1,-80,41,-76","w":135,"k":{"e":11,"o":7,",":20,".":20,"s":7,"c":11,"d":7,"g":11,"q":7}},"g":{"d":"176,-188v3,14,-14,9,-26,10v7,6,20,21,20,48v0,33,-17,58,-74,58v-19,0,-31,-3,-44,-8v-13,4,-18,21,-2,27v43,15,122,14,122,68v0,32,-19,56,-76,56v-89,0,-91,-81,-49,-111v-27,-3,-29,-37,-7,-47v-32,-38,-30,-107,56,-106r73,0v4,0,7,1,7,5xm96,-85v49,-1,60,-20,59,-48v0,-26,-12,-47,-59,-47v-51,1,-59,23,-59,50v0,18,10,45,59,45xm96,58v49,-3,61,-16,61,-45v6,-33,-65,-38,-95,-49v-38,22,-45,99,34,94","w":192},"h":{"d":"158,-5v0,5,-3,8,-9,7v-4,0,-6,-3,-6,-7v-8,-70,29,-178,-53,-176v-15,0,-35,2,-49,6r0,170v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-256v0,-6,4,-6,10,-6v4,0,6,2,6,6r0,72v14,-4,33,-6,49,-6v97,-2,62,107,68,190","w":181,"k":{"y":7,"f":7,"t":7}},"i":{"d":"36,-269v16,0,14,42,0,40v-11,-1,-12,-36,0,-40xm45,-5v0,5,-4,8,-9,7v-4,0,-7,-3,-7,-7r0,-181v0,-5,4,-8,9,-7v4,0,7,3,7,7r0,181","w":73},"j":{"d":"36,-269v16,0,14,42,0,40v-11,-1,-12,-36,0,-40xm8,70v-12,4,-34,-8,-14,-13v23,0,35,3,35,-26r0,-217v0,-6,4,-8,10,-7v4,0,6,3,6,7r0,217v0,31,-13,39,-37,39","w":73},"k":{"d":"143,-9v4,5,3,11,-4,11v-4,0,-7,0,-11,-4r-87,-93r0,90v0,5,-4,8,-9,7v-4,0,-7,-3,-7,-7r0,-256v0,-5,4,-6,9,-6v4,0,7,2,7,6r0,152r89,-83v7,-8,21,1,13,9r-88,80","w":159,"k":{"a":4,"e":11,"o":11,"c":9,"d":7,"q":7}},"l":{"d":"45,-5v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-256v0,-6,4,-6,10,-6v4,0,6,2,6,6r0,256","w":73},"m":{"d":"243,-7v0,5,-3,8,-9,7v-4,0,-6,-3,-6,-7r0,-129v2,-57,-55,-50,-91,-33v11,44,3,109,5,162v1,7,-4,8,-11,7v-4,0,-5,-3,-5,-7r0,-130v0,-62,-49,-45,-85,-29r0,159v1,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-179v0,-5,4,-8,10,-7v6,0,6,7,6,13v26,-12,68,-27,89,0v46,-23,113,-27,113,44r0,129","w":268,"k":{"y":5,"f":7,"t":7}},"n":{"d":"162,-7v0,5,-3,8,-9,7v-4,0,-6,-3,-6,-7r0,-119v0,-69,-62,-61,-106,-40r0,159v0,5,-4,8,-9,7v-4,0,-7,-3,-7,-7r0,-179v0,-5,4,-8,10,-7v6,0,6,7,6,13v52,-26,121,-24,121,54r0,119","w":187,"k":{"y":7,"f":7,"t":7,"v":7,"w":5}},"o":{"d":"168,-109v0,66,-16,111,-74,111v-58,0,-74,-45,-74,-111v0,-54,25,-86,74,-86v49,0,74,32,74,86xm94,-12v51,1,58,-42,58,-97v0,-44,-16,-72,-58,-72v-51,-1,-58,42,-58,97v0,44,16,72,58,72","w":187,"k":{"y":7,"f":7,"t":9,"v":7,"w":7,"x":11,"z":7}},"p":{"d":"162,-108v0,66,-16,113,-71,110v-14,0,-36,-2,-50,-5r0,66v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-244v0,-4,2,-6,6,-7v16,-3,39,-7,60,-7v50,0,71,35,71,87xm91,-12v48,3,55,-41,55,-96v0,-46,-15,-73,-55,-73v-17,0,-37,3,-50,5r0,159v14,3,36,5,50,5","w":181,"k":{"x":11,"y":7,"f":7,"t":7,"w":7}},"q":{"d":"156,63v0,5,-3,8,-9,7v-4,0,-7,-3,-7,-7r0,-66v-78,20,-120,-10,-120,-105v0,-52,20,-87,70,-87v21,0,45,4,61,7v4,1,5,3,5,7r0,244xm140,-17r0,-159v-13,-2,-33,-5,-50,-5v-48,-2,-54,43,-54,97v0,72,45,80,104,67","w":181},"r":{"d":"101,-190v1,7,-3,9,-10,9v-14,0,-29,3,-50,16r0,158v0,5,-4,8,-9,7v-4,0,-7,-3,-7,-7r0,-179v0,-5,4,-8,10,-7v7,0,6,7,6,14v18,-12,32,-16,50,-16v6,0,10,1,10,5","w":111,"k":{"a":11,"e":11,"o":9,",":11,".":11,"c":13,"d":14,"g":11,"q":14}},"s":{"d":"78,2v-20,0,-57,5,-60,-15v10,-13,45,5,61,1v26,0,46,-7,46,-36v0,-38,-105,-52,-105,-103v0,-53,69,-45,106,-41v6,1,9,2,8,9v0,6,-3,7,-8,6v-25,-1,-94,-19,-90,26v4,44,104,53,104,103v0,39,-29,50,-62,50","w":158,"k":{"y":7,"f":7,"t":6,"v":7}},"t":{"d":"122,-7v2,11,-14,8,-24,9v-26,0,-41,-8,-41,-39r0,-142v-14,-3,-42,9,-43,-9v5,-11,30,-2,43,-5v3,-15,-9,-44,10,-44v12,4,3,30,6,44r43,0v6,-1,6,3,6,9v-6,12,-34,2,-49,5r0,142v-1,30,18,25,42,25v5,0,7,2,7,5","w":136,"k":{"e":9,"o":7,"c":7,"d":7,"g":7,"q":7}},"u":{"d":"25,-186v0,-5,4,-8,10,-7v4,0,6,3,6,7r0,119v0,70,62,60,106,40r0,-159v0,-5,3,-8,9,-7v4,0,6,3,6,7r0,179v0,5,-3,8,-9,7v-6,0,-6,-7,-6,-13v-52,26,-122,24,-122,-54r0,-119","w":187},"v":{"d":"158,-184r-47,163v-10,33,-39,32,-49,0r-48,-163v-1,-6,2,-10,9,-9v3,0,6,1,7,6r46,163v6,17,16,18,21,0r46,-163v1,-7,5,-6,11,-6v5,0,5,4,4,9","w":172,"k":{"q":7,"a":7,"e":7,"o":7,",":16,".":16}},"w":{"d":"253,-185r-40,168v-3,14,-8,19,-19,19v-12,0,-14,-7,-18,-20v-15,-46,-23,-98,-41,-140v-16,43,-29,94,-40,140v-6,24,-31,28,-37,1r-40,-168v-2,-5,2,-9,9,-8v4,0,4,2,5,5r39,167v3,14,7,12,10,0r39,-138v5,-18,26,-17,31,0r43,147v20,-51,28,-120,44,-176v1,-4,3,-5,8,-5v7,0,8,3,7,8","w":270,"k":{"e":4,"o":7,"c":7}},"x":{"d":"163,-9v3,5,0,10,-7,9v-3,0,-5,0,-7,-3r-60,-83v-21,28,-39,60,-62,86v-8,1,-16,-2,-10,-9r64,-90v-20,-31,-45,-57,-63,-90v0,-6,13,-5,15,-1r57,79r55,-79v6,-7,23,-1,13,7r-59,85","w":177,"k":{"q":14,"a":10,"e":14,"o":14,"u":10,"c":14,"d":14,"f":4,"g":11}},"y":{"d":"43,70v-12,0,-30,3,-29,-11v0,-11,22,-1,31,-3v32,5,38,-26,47,-56v-16,0,-21,-1,-27,-20r-48,-165v-2,-7,2,-9,9,-8v4,0,4,2,5,5r49,165v3,12,7,7,16,8r50,-174v2,-7,18,-6,15,5r-59,204v-11,39,-26,50,-59,50","w":174,"k":{"e":7,"o":7,",":7,"c":7,"g":7,"q":7}},"z":{"d":"146,-9v1,6,-2,9,-7,9r-103,0v-24,0,-26,-16,-15,-31r107,-144v0,-3,-2,-4,-5,-4r-95,0v-6,0,-8,-3,-7,-9v0,-4,3,-5,7,-5r94,0v20,-2,27,15,16,31r-107,145v30,6,74,0,108,2v4,0,7,2,7,6","w":160,"k":{"e":5,"o":7,"c":7,"d":7,"q":7}},"{":{"d":"101,61v2,13,-13,8,-24,9v-88,9,-8,-124,-66,-162r0,-13v36,-20,22,-75,22,-123v0,-37,23,-41,61,-39v5,0,8,3,7,9v-9,14,-62,-8,-52,30v-3,51,11,107,-23,130v35,22,20,78,23,129v-5,28,20,24,45,24v4,0,7,2,7,6","w":108},"|":{"d":"48,63v0,5,-3,8,-9,7v-4,0,-7,-3,-7,-7r0,-324v0,-5,4,-6,10,-6v4,0,6,2,6,6r0,324","w":80},"}":{"d":"97,-92v-36,20,-22,75,-22,123v0,37,-23,41,-61,39v-5,0,-8,-3,-7,-9v8,-17,62,8,52,-30v3,-50,-12,-107,23,-129v-35,-24,-20,-79,-23,-130v4,-28,-19,-25,-45,-25v-5,0,-8,-2,-7,-8v0,-10,15,-5,24,-6v88,-9,8,124,66,162r0,13","w":108},"~":{"d":"171,-176v7,45,-32,62,-60,37v-12,-11,-24,-30,-42,-33v-13,-2,-20,16,-18,36v2,8,-3,6,-9,6v-8,1,-4,-11,-5,-17v-2,-41,39,-47,61,-26v11,11,24,29,41,31v17,2,19,-15,18,-34v-1,-8,4,-7,10,-7v4,0,4,2,4,7"},"'":{"d":"29,-261v2,-9,21,-9,18,0r-17,62v1,8,-14,10,-16,4v3,-24,11,-43,15,-66","w":61,"k":{"s":18,",":29,".":29}},"`":{"d":"75,-229v4,6,-4,8,-10,7v-19,-15,-32,-38,-48,-56v3,-4,19,-4,22,3","w":118},"\u0410":{"d":"208,-8v3,6,-1,10,-9,9v-3,0,-5,-2,-6,-5r-30,-97r-104,0r-29,97v-2,8,-19,7,-16,-4r74,-244v4,-22,40,-22,47,0xm159,-117r-39,-131v-1,-9,-15,-8,-17,0r-39,131r95,0","w":222,"k":{"\u0451":7,"\u0447":18,"\u0443":9,"\u0442":18,"\u043e":7,"\u0435":7,"\u0401":9,"\u0427":20,"\u0426":7,"\u0424":18,"\u0422":20,"\u0421":7,"\u041e":7,"\u0419":7,"\u0418":7,"\u0415":9}},"\u0411":{"d":"35,-267r127,0v5,0,6,4,6,9v0,4,-2,5,-6,5r-117,0r0,101v70,-6,145,-6,145,79v0,84,-84,79,-154,73v-5,0,-7,-3,-7,-7r0,-254v0,-4,1,-6,6,-6xm45,-138r0,124v60,4,131,9,129,-64v-2,-69,-70,-64,-129,-60","k":{"\u041b":7,"\u0416":8,"\u0410":7}},"\u0412":{"d":"190,-79v0,89,-80,86,-154,79v-5,0,-7,-3,-7,-7r0,-253v7,-15,40,-8,61,-9v50,-3,99,12,99,69v0,30,-16,51,-43,60v28,8,44,29,44,61xm110,-148v52,-1,64,-25,63,-56v0,-59,-73,-51,-128,-50r0,106r65,0xm45,-14v62,5,129,9,129,-65v0,-28,-13,-54,-64,-54r-65,0r0,119","k":{"\u0425":9,"\u0416":9}},"\u0413":{"d":"45,-227r0,220v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-220v-1,-63,82,-33,136,-40v5,0,8,3,7,9v0,4,-3,5,-7,5r-93,0v-17,0,-27,4,-27,26","w":186,"k":{"\u0451":22,"\u044f":38,"\u044e":24,"\u044d":23,"\u044c":24,"\u044b":24,"\u0449":28,"\u0448":27,"\u0447":27,"\u0446":27,"\u0445":26,"\u0444":44,"\u0443":23,"\u0442":24,"\u0441":33,"\u0440":24,"\u043f":39,"\u043e":39,"\u043d":23,"\u043c":24,"\u043b":44,"\u043a":23,"\u0439":23,"\u0438":23,"\u0437":16,"\u0436":14,"\u0435":33,"\u0434":51,"\u0433":23,"\u0432":22,"\u0431":24,"\u0430":21,"\u0401":13,"\u042f":12,"\u0427":9,"\u0424":21,"\u0421":14,"\u041f":10,"\u041e":18,"\u041b":36,"\u0416":9,"\u0415":13,"\u0414":46,"\u0410":36,".":47,",":47}},"\u0414":{"d":"21,-8v-1,-8,7,-7,14,-7r72,-237v4,-22,39,-22,46,0r72,237v7,0,17,-2,16,7v-4,17,10,50,-10,51v-12,-4,-3,-29,-6,-43r-188,0v-3,15,9,43,-10,43v-13,-6,-4,-35,-6,-51xm122,-248r-70,233r156,0r-69,-233v-1,-9,-17,-9,-17,0","w":246,"k":{"\u0447":27,"\u0442":29,"\u0427":34,"\u0424":27,"\u0422":31,"\u041e":7,"\u0419":7,"\u0418":7,"\u0415":9}},"\u0415":{"d":"172,-9v1,6,-2,9,-7,9v-54,-6,-136,22,-136,-40r0,-187v-1,-63,82,-33,136,-40v5,0,8,3,7,9v0,4,-3,5,-7,5r-93,0v-44,-4,-22,68,-27,105r120,0v5,0,8,3,7,9v0,4,-3,7,-7,7r-120,0r0,92v0,22,10,25,27,25r93,0v4,0,7,2,7,6","w":191},"\u0416":{"d":"150,-145r0,-116v0,-5,4,-6,9,-6v4,0,7,2,7,6r0,116r123,-120v9,-10,20,1,12,9r-121,117r123,128v5,4,3,12,-4,12v-3,0,-6,-1,-8,-3r-125,-130r0,125v0,5,-3,8,-9,7v-4,0,-7,-3,-7,-7r0,-125r-124,130v-6,7,-21,-1,-13,-9r124,-128r-121,-117v-5,-5,-4,-13,4,-13v2,0,4,1,8,4","w":316,"k":{"\u0451":13,"\u0447":29,"\u0444":13,"\u0443":13,"\u0442":22,"\u0441":13,"\u043e":16,"\u0439":13,"\u0438":13,"\u0435":18,"\u0401":13,"\u0427":12,"\u0424":26,"\u0421":18,"\u041e":24,"\u0419":7,"\u0418":7,"\u0415":13}},"\u0417":{"d":"30,-255v5,-18,37,-13,59,-14v56,-2,92,15,90,70v0,23,-10,47,-38,59v73,39,36,154,-52,142v-22,-3,-53,4,-59,-14v0,-4,2,-6,7,-6v59,12,125,9,125,-63v0,-19,-13,-52,-51,-52r-68,0v-5,0,-8,-3,-7,-9v0,-4,3,-6,7,-6r68,0v44,-2,51,-31,51,-55v0,-60,-74,-54,-126,-46v-4,0,-6,-2,-6,-6","k":{"\u0425":14,"\u0422":11,"\u041b":13,"\u0416":14,"\u0410":13}},"\u0418":{"d":"29,-16r0,-245v0,-6,4,-6,10,-6v4,0,6,2,6,6r2,248v45,-77,81,-165,124,-245v4,-16,35,-14,35,6r0,245v0,5,-4,8,-10,7v-4,0,-6,-3,-6,-7r-2,-247v-49,79,-82,175,-131,254v-12,6,-29,1,-28,-16","w":234,"k":{"\u041b":7,"\u0416":7,"\u0414":7,"\u0410":7}},"\u0419":{"d":"166,-337v0,30,-23,52,-52,52v-29,0,-51,-22,-51,-52v-2,-8,6,-6,12,-6v4,0,3,1,3,6v0,31,24,37,36,37v12,0,36,-6,36,-37v0,-9,6,-5,12,-6v4,0,4,2,4,6xm29,-16v-1,23,27,23,35,7r124,-245v7,76,-1,167,2,247v0,5,3,8,9,7v4,0,7,-3,7,-7r0,-245v1,-20,-31,-22,-35,-6r-124,245v-7,-76,1,-167,-2,-248v0,-6,-4,-6,-10,-6v-4,0,-6,2,-6,6r0,245","w":234,"k":{"\u041b":7,"\u0416":7,"\u0414":7,"\u0410":7}},"\u041a":{"d":"182,-11v4,5,2,12,-5,12v-3,0,-6,-1,-8,-3r-124,-130r0,125v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-254v0,-5,4,-6,9,-6v4,0,7,2,7,6r0,116r122,-120v9,-10,20,1,12,9r-121,117","w":195,"k":{"\u0451":13,"\u0447":29,"\u0444":13,"\u0443":13,"\u0442":22,"\u0441":13,"\u043e":16,"\u0439":13,"\u0438":13,"\u0435":18,"\u0432":7,"\u0431":7,"\u0430":7,"\u0401":13,"\u0427":12,"\u0424":26,"\u0421":18,"\u041e":24,"\u0419":7,"\u0418":7,"\u0415":13}},"\u041b":{"d":"193,-4r-73,-244v-1,-9,-14,-8,-17,0r-73,244v-2,8,-19,7,-16,-4r74,-244v4,-22,40,-22,47,0r74,248v0,6,-15,8,-16,0","w":222,"k":{"\u0451":7,"\u0447":18,"\u0443":9,"\u0442":18,"\u043e":7,"\u0435":7,"\u0401":9,"\u0427":20,"\u0426":7,"\u0424":18,"\u0422":20,"\u0421":7,"\u041e":7,"\u0419":7,"\u0418":7,"\u0415":9}},"\u041c":{"d":"234,-7v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r-2,-247v-2,0,-3,0,-4,3r-62,131v-9,18,-29,18,-37,0r-62,-131v-1,-4,-5,-5,-6,-1r0,245v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-245v-2,-22,28,-20,35,-6r67,137v28,-40,44,-93,68,-137v4,-15,35,-16,35,6r0,245","w":262},"\u041d":{"d":"204,-7v0,5,-3,8,-9,7v-4,0,-6,-3,-6,-7r0,-129r-144,0r0,129v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-254v0,-6,4,-6,10,-6v4,0,6,2,6,6r0,111r144,0r0,-111v0,-5,4,-6,9,-6v4,0,6,2,6,6r0,254","w":232},"\u041e":{"d":"206,-111v0,80,-38,113,-92,113v-69,0,-92,-66,-92,-158v0,-80,38,-113,92,-113v69,0,92,66,92,158xm190,-111r0,-45v0,-73,-32,-98,-76,-98v-44,0,-77,25,-77,98r0,45v0,73,33,98,77,98v44,0,76,-25,76,-98","w":227,"k":{"\u0443":10,"\u0425":12,"\u0423":10,"\u0422":11,"\u041b":11,"\u0416":18,"\u0414":8,"\u0410":11}},"\u041f":{"d":"189,-7r0,-224v0,-14,-5,-22,-22,-22r-101,0v-17,0,-21,8,-21,22r0,224v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-224v0,-31,19,-36,37,-36r100,0v18,0,38,5,38,36r0,224v0,5,-3,8,-9,7v-4,0,-6,-3,-6,-7","w":232},"\u0420":{"d":"182,-196v0,76,-61,88,-137,82r0,107v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-254v6,-13,37,-8,55,-8v61,0,98,21,98,73xm45,-129v65,7,130,-2,121,-67v6,-59,-61,-62,-121,-58r0,125","w":194,"k":{"\u044a":-9,"\u0443":6,"\u043b":23,"\u0434":29,"\u0425":11,"\u0423":6,"\u041b":20,"\u0416":17,"\u0414":32,"\u0410":20,".":45,",":45}},"\u0421":{"d":"174,-16v9,1,4,16,-2,15v-75,9,-154,7,-150,-109r0,-47v-2,-116,72,-118,150,-109v5,0,8,4,7,11v0,5,-3,4,-7,4v-74,-8,-137,-8,-135,94r0,47v-1,102,60,102,137,94","w":193,"k":{"\u0451":8,"\u0447":24,"\u0442":15,"\u0441":7,"\u043e":9,"\u0435":8,"\u0424":19,"\u0421":14,"\u041e":9}},"\u0422":{"d":"195,-261v1,6,-2,8,-7,8r-77,0r0,246v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-246r-77,0v-5,0,-8,-2,-7,-8v0,-4,3,-6,7,-6r170,0v4,0,7,2,7,6","w":205,"k":{"\u0451":19,"\u044f":26,"\u044e":25,"\u044d":16,"\u044c":19,"\u044b":20,"\u0449":32,"\u0448":32,"\u0447":26,"\u0446":26,"\u0445":10,"\u0444":30,"\u0443":19,"\u0442":18,"\u0441":26,"\u0440":26,"\u043f":28,"\u043e":31,"\u043d":23,"\u043c":24,"\u043b":35,"\u043a":15,"\u0439":17,"\u0438":17,"\u0435":26,"\u0434":39,"\u0433":23,"\u0432":21,"\u0431":15,"\u0430":21,"\u0401":7,"\u0424":15,"\u0421":12,"\u041f":9,"\u041e":10,"\u041b":27,"\u0415":8,"\u0414":31,"\u0413":10,"\u0410":27,".":22,"-":31,",":22}},"\u0423":{"d":"46,3v-11,-3,-31,2,-30,-11v1,-12,22,-2,30,-4v42,7,46,-49,59,-80v-15,0,-19,-2,-26,-20r-57,-146v-3,-7,2,-10,8,-9v5,0,5,2,6,5r58,148v3,12,7,6,17,7r58,-155v1,-4,5,-5,10,-5v5,0,7,3,5,9r-79,210v-14,37,-26,51,-59,51","w":199,"k":{"\u0451":22,"\u044f":25,"\u044e":18,"\u044d":18,"\u044c":18,"\u044b":18,"\u044a":11,"\u0449":25,"\u0448":25,"\u0447":18,"\u0446":22,"\u0445":18,"\u0444":25,"\u0443":18,"\u0442":18,"\u0441":29,"\u0440":22,"\u043f":25,"\u043e":25,"\u043d":22,"\u043c":22,"\u043b":36,"\u043a":18,"\u0439":18,"\u0438":22,"\u0437":22,"\u0436":18,"\u0435":25,"\u0434":36,"\u0433":14,"\u0432":14,"\u0431":18,"\u0430":29,"\u0401":12,"\u042f":11,"\u0424":13,"\u0421":14,"\u041f":10,"\u041e":14,"\u041b":34,"\u0415":12,"\u0414":36,"\u0413":9,"\u0410":23,".":23,",":20}},"\u0424":{"d":"155,-89v62,8,118,-5,110,-68v5,-56,-54,-63,-110,-58r0,126xm139,-7r0,-68v-69,8,-126,-7,-126,-82v0,-63,58,-78,126,-72v3,-14,-8,-41,10,-39v12,2,4,26,6,39v70,-6,126,9,126,79v0,69,-58,83,-126,75r0,68v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7xm139,-215v-60,-5,-119,3,-111,65v-4,57,52,68,111,61r0,-126","w":293,"k":{"\u0443":13,"\u043b":22,"\u0434":32,"\u0425":21,"\u0423":13,"\u0422":15,"\u041b":18,"\u0416":23,"\u0414":36,"\u0410":18,".":45,",":45}},"\u0425":{"d":"201,-10v3,5,0,11,-8,10v-2,0,-4,-2,-5,-3r-80,-120r-79,120v-5,7,-21,1,-13,-7r83,-127r-81,-125v-1,-7,12,-6,15,-2r75,114r75,-114v5,-6,20,-2,14,7r-80,121","w":216,"k":{"\u0447":23,"\u0446":11,"\u0444":12,"\u0442":12,"\u0441":9,"\u043e":11,"\u0439":11,"\u0438":11,"\u0435":13,"\u0401":11,"\u0429":7,"\u0428":7,"\u0427":11,"\u0426":7,"\u0424":22,"\u0421":14,"\u041e":19,"\u0419":7,"\u0418":7,"\u0415":12,"-":23}},"\u0426":{"d":"189,-36r0,-225v0,-5,4,-6,9,-6v4,0,6,2,6,6r0,225v0,9,-1,16,-4,21v14,1,35,-5,33,11v-2,17,9,49,-9,52v-14,-4,-4,-33,-7,-48r-151,0v-18,0,-37,-5,-37,-36r0,-225v0,-6,4,-6,10,-6v4,0,6,2,6,6r0,225v0,14,4,21,21,21r101,0v17,0,22,-7,22,-21","w":232,"k":{"\u0442":17,"\u0427":18,"\u0424":12,"\u0422":11,"\u0419":7,"\u0418":7,"\u0415":9}},"\u0427":{"d":"22,-190r0,-71v0,-5,4,-6,9,-6v4,0,6,2,6,6r0,71v-7,65,58,66,122,61r0,-132v0,-5,4,-6,9,-6v4,0,7,2,7,6r0,254v0,5,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-107v-73,4,-144,1,-137,-76","w":203},"\u0428":{"d":"287,-261r0,225v0,31,-19,36,-37,36r-184,0v-18,0,-37,-5,-37,-36r0,-225v0,-6,4,-6,10,-6v4,0,6,2,6,6r0,225v0,14,4,21,21,21r84,0r0,-246v0,-5,4,-6,10,-6v4,0,6,2,6,6r0,246r84,0v17,0,22,-7,22,-21r0,-225v0,-5,4,-6,9,-6v4,0,6,2,6,6","w":316},"\u0429":{"d":"283,-15v14,1,35,-5,33,11v-2,17,9,49,-9,52v-13,-5,-3,-33,-6,-48r-235,0v-18,0,-37,-5,-37,-36r0,-225v0,-6,4,-6,10,-6v4,0,6,2,6,6r0,225v0,14,4,21,21,21r84,0r0,-246v0,-5,4,-6,10,-6v4,0,6,2,6,6r0,246r84,0v17,0,22,-7,22,-21r0,-225v0,-6,4,-6,10,-6v4,0,6,2,6,6r0,225v0,9,-2,16,-5,21","w":316,"k":{"\u0442":17,"\u0427":18,"\u0424":12,"\u0422":11,"\u0419":7,"\u0418":7,"\u0415":9}},"\u042a":{"d":"55,-152v70,-6,146,-6,146,79v0,84,-85,79,-155,73v-5,0,-6,-3,-6,-7r0,-246v-16,-4,-47,9,-51,-8v0,-4,3,-6,7,-6r53,0v5,0,6,2,6,6r0,109xm55,-138r0,124v61,4,132,9,130,-64v-2,-69,-71,-64,-130,-60","w":219,"k":{"\u0442":14,"\u0427":19,"\u0425":11,"\u0424":6,"\u0422":32,"\u041b":7,"\u0416":7,"\u0410":7}},"\u042b":{"d":"45,-152v70,-6,145,-6,145,79v0,84,-84,79,-154,73v-5,0,-7,-3,-7,-7r0,-254v-1,-6,4,-6,10,-6v5,0,6,2,6,6r0,109xm45,-138r0,124v60,4,131,9,129,-64v-2,-69,-70,-64,-129,-60xm255,-7v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-254v0,-6,4,-6,10,-6v4,0,6,2,6,6r0,254","w":283},"\u042c":{"d":"45,-152v70,-6,145,-6,145,79v0,84,-84,79,-154,73v-5,0,-7,-3,-7,-7r0,-254v-1,-6,4,-6,10,-6v5,0,6,2,6,6r0,109xm45,-138r0,124v60,4,131,9,129,-64v-2,-69,-70,-64,-129,-60","k":{"\u0442":14,"\u0436":6,"\u0427":19,"\u0425":11,"\u0424":6,"\u0422":32,"\u041b":7,"\u0416":7,"\u0410":7}},"\u042d":{"d":"19,-255v6,-17,33,-12,56,-12v48,0,92,21,92,117r0,35v-3,120,-61,126,-141,113v-4,-1,-7,-2,-7,-8v0,-5,2,-8,7,-7v79,18,130,-2,125,-114r-109,0v-6,0,-8,-4,-7,-10v0,-4,3,-6,7,-6r109,0v0,-108,-49,-115,-125,-101v-5,1,-7,-2,-7,-7","w":195,"k":{"\u0443":9,"\u043b":15,"\u0434":13,"\u0427":9,"\u0425":12,"\u0423":9,"\u0422":7,"\u041b":7,"\u0416":19,"\u0414":9,"\u0410":7}},"\u042e":{"d":"48,-7v0,5,-3,8,-9,7v-4,0,-7,-3,-7,-7r0,-254v0,-5,4,-6,10,-6v4,0,6,2,6,6r0,120r60,0v-4,-84,33,-128,92,-128v69,0,92,66,92,158v0,80,-38,113,-92,113v-58,0,-97,-43,-92,-128r-60,0r0,119xm276,-111r0,-45v0,-73,-32,-98,-76,-98v-44,0,-77,25,-77,98r0,45v0,73,33,98,77,98v44,0,76,-25,76,-98","w":313,"k":{"\u0443":9,"\u0434":12,"\u0427":8,"\u0425":13,"\u0423":9,"\u0422":8,"\u041b":11,"\u0416":19,"\u0414":10,"\u0410":11}},"\u042f":{"d":"37,-3v-5,6,-20,3,-14,-7r73,-112v-43,-7,-64,-29,-64,-74v0,-75,77,-77,154,-72v3,0,6,4,6,7r0,254v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-114r-62,0xm176,-253v-61,-4,-137,-4,-128,59v-6,62,63,59,128,58r0,-117","w":220},"\u0401":{"d":"172,-9v1,6,-2,9,-7,9v-54,-6,-136,22,-136,-40r0,-187v-1,-63,82,-33,136,-40v5,0,8,3,7,9v0,4,-3,5,-7,5r-93,0v-44,-4,-22,68,-27,105r120,0v5,0,8,3,7,9v0,4,-3,7,-7,7r-120,0r0,92v0,22,10,25,27,25r93,0v4,0,7,2,7,6xm128,-333v16,0,14,42,0,40v-11,-1,-12,-36,0,-40xm74,-333v16,0,14,42,0,40v-11,-1,-12,-36,0,-40","w":191},"\u0430":{"d":"150,-7v0,5,-4,8,-9,7v-8,0,-7,-8,-7,-16v-43,26,-116,34,-116,-44v0,-46,50,-60,117,-56v2,-42,-6,-65,-46,-65v-24,0,-34,1,-52,3v-4,0,-8,-2,-7,-7v0,-4,3,-6,8,-7v15,-2,27,-3,51,-3v94,-1,52,110,61,188xm135,-30r0,-72v-54,-1,-106,0,-101,46v7,63,60,47,101,26","w":175,"k":{"\u0443":9,"\u0442":4}},"\u0431":{"d":"168,-107v0,65,-17,109,-74,109v-71,0,-74,-68,-74,-144v0,-74,38,-89,97,-99v24,-5,31,-13,33,-21v0,-4,5,-5,11,-5v5,0,5,2,4,8v-3,25,-41,31,-69,37v-36,8,-53,20,-59,53v13,-15,32,-24,57,-24v49,0,74,32,74,86xm94,-12v50,1,58,-41,58,-95v0,-44,-16,-72,-58,-72v-50,-1,-58,41,-58,95v0,44,16,72,58,72","w":196,"k":{"\u0447":11,"\u0445":11,"\u0443":12,"\u0442":13,"\u043b":8,"\u0436":13,"\u0434":10}},"\u0432":{"d":"164,-147v0,20,-8,38,-29,47v26,10,31,28,31,46v0,59,-86,66,-141,51r0,-187v41,-9,139,-17,139,43xm41,-12v56,4,114,0,109,-44v-6,-54,-62,-32,-109,-37r0,81xm41,-107v49,-4,105,16,107,-40v2,-41,-63,-34,-107,-33r0,73","w":186,"k":{"\u044f":6,"\u0442":7,"\u043b":6,"\u0436":9,"\u0434":4}},"\u0433":{"d":"111,-179v-28,2,-70,-10,-70,22r0,150v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-150v2,-50,45,-33,86,-36v5,0,6,3,6,8v0,4,-2,6,-6,6","w":133,"k":{"\u0451":7,"\u044f":8,"\u044a":-15,"\u0444":7,"\u0441":7,"\u043e":7,"\u043b":20,"\u0435":7,"\u0434":28,"\u041b":12,"\u0410":12}},"\u0434":{"d":"13,42v3,-22,-12,-63,18,-56r50,-166v4,-22,40,-24,47,-1r50,167v8,0,19,-2,19,7r0,49v0,4,-3,7,-8,7v-16,-3,-5,-33,-8,-49r-153,0v-3,16,8,46,-8,49v-4,0,-7,-3,-7,-7xm96,-177r-48,163r114,0r-49,-162v0,-10,-14,-10,-17,-1","w":209,"k":{"\u0451":9,"\u044a":7,"\u0449":7,"\u0448":7,"\u0447":28,"\u0446":11,"\u0444":12,"\u0443":15,"\u0442":31,"\u0441":13,"\u043e":13,"\u0437":4,"\u0435":12,"\u0431":8,"\u0430":11}},"\u0435":{"d":"164,-109v0,8,1,16,-7,16r-121,0v-3,88,51,88,120,75v4,0,7,2,6,7v0,4,-2,6,-7,7v-80,20,-135,0,-135,-105v0,-50,25,-86,73,-86v50,0,71,35,71,86xm36,-107v36,-2,80,4,112,-2v0,-45,-14,-72,-55,-72v-41,0,-57,30,-57,74","w":183,"k":{"\u0443":8,"\u0442":11,"\u0436":15,"\u0434":4}},"\u0436":{"d":"119,-109r0,-77v0,-5,4,-8,9,-7v4,0,7,3,7,7r0,77r88,-83v8,-7,22,1,14,9r-89,80v30,34,64,62,91,99v0,8,-12,8,-17,2r-87,-93r0,88v0,5,-4,8,-9,7v-4,0,-7,-3,-7,-7r0,-88r-87,93v-7,10,-23,2,-15,-7r88,-94r-88,-80v-6,-4,-2,-12,5,-12v3,0,5,1,8,3","w":253,"k":{"\u0451":14,"\u0449":12,"\u0448":12,"\u0447":18,"\u0446":8,"\u0444":15,"\u0441":14,"\u043e":15,"\u0439":7,"\u0438":7,"\u0435":15}},"\u0437":{"d":"39,-108r60,0v37,-1,44,-18,44,-41v8,-43,-66,-36,-106,-32v-7,1,-6,-2,-6,-6v0,-4,1,-6,7,-7v47,-5,121,-11,121,48v0,18,-8,35,-27,45v55,36,25,104,-46,104v-19,0,-38,-3,-48,-4v-6,-1,-7,-3,-7,-8v0,-3,0,-6,6,-5v45,7,114,11,106,-42v7,-45,-59,-40,-104,-39v-5,0,-8,-2,-7,-7v0,-4,3,-6,7,-6","w":182,"k":{"\u0443":7,"\u0442":7,"\u0436":12,"\u0434":7}},"\u0438":{"d":"45,-20r85,-160v9,-21,33,-18,32,8r0,165v0,6,-3,7,-9,7v-4,0,-6,-2,-6,-7r0,-165v0,-3,-2,-3,-4,0r-85,160v-8,17,-33,18,-33,-8r0,-166v0,-6,4,-7,9,-7v4,0,7,2,7,7r0,166v0,3,2,4,4,0","w":187},"\u0439":{"d":"144,-274v0,30,-22,52,-51,52v-29,0,-52,-22,-52,-52v-2,-8,6,-6,12,-6v4,0,4,1,4,6v0,31,24,37,36,37v12,0,36,-6,36,-37v-2,-9,5,-5,11,-6v4,0,4,2,4,6xm130,-180r-85,160v-2,4,-4,3,-4,0r0,-166v0,-6,-4,-7,-9,-7v-4,0,-7,2,-7,7r0,166v-2,26,24,25,33,8r85,-160v2,-3,4,-3,4,0r0,165v0,6,3,7,9,7v4,0,6,-2,6,-7r0,-165v1,-26,-22,-27,-32,-8","w":187},"\u043a":{"d":"143,-9v5,4,3,11,-4,11v-4,0,-7,0,-11,-4r-87,-93r0,88v0,5,-4,8,-9,7v-4,0,-7,-3,-7,-7r0,-179v0,-5,4,-8,9,-7v4,0,7,3,7,7r0,77r89,-83v7,-8,20,1,13,9r-88,80","w":159,"k":{"\u0451":14,"\u0449":12,"\u0448":12,"\u0447":18,"\u0446":8,"\u0444":15,"\u0441":14,"\u043e":15,"\u0439":7,"\u0438":7,"\u0435":15}},"\u043b":{"d":"150,-5r-52,-171v0,-9,-15,-11,-16,-1r-52,172v-2,8,-19,7,-16,-4r53,-171v4,-23,39,-24,46,-1r53,176v0,6,-15,8,-16,0","w":180,"k":{"\u0451":8,"\u044a":6,"\u0449":8,"\u0448":8,"\u0447":22,"\u0446":11,"\u0444":8,"\u0443":18,"\u0442":27,"\u0441":9,"\u043e":11,"\u0435":12,"\u0431":8}},"\u043c":{"d":"202,-176r0,172v0,5,-4,8,-9,7v-4,0,-7,-3,-7,-7r0,-172v1,-7,-6,-6,-8,-1r-47,81v-13,18,-24,18,-36,0v-19,-27,-30,-61,-51,-85v-3,0,-3,2,-3,5r0,172v0,5,-4,8,-9,7v-4,0,-7,-3,-7,-7r0,-172v1,-27,26,-25,37,-8r46,80v2,6,8,5,11,0r46,-80v11,-17,37,-19,37,8","w":226},"\u043d":{"d":"147,-96r-106,0r0,89v0,5,-4,8,-9,7v-4,0,-7,-3,-7,-7r0,-179v0,-5,4,-8,9,-7v4,0,7,3,7,7r0,75r106,0r0,-75v0,-5,3,-8,9,-7v4,0,6,3,6,7r0,179v0,5,-3,8,-9,7v-4,0,-6,-3,-6,-7r0,-89","w":187},"\u043e":{"d":"168,-109v0,66,-16,111,-74,111v-58,0,-74,-45,-74,-111v0,-54,25,-86,74,-86v49,0,74,32,74,86xm94,-12v51,1,58,-42,58,-97v0,-44,-16,-72,-58,-72v-51,-1,-58,42,-58,97v0,44,16,72,58,72","w":187,"k":{"\u0445":11,"\u0443":10,"\u0442":13,"\u043b":9,"\u0436":14,"\u0434":9}},"\u043f":{"d":"147,-7r0,-150v2,-35,-53,-22,-84,-22v-17,0,-22,8,-22,22r0,150v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-150v2,-55,54,-36,99,-36v18,0,38,5,38,36r0,150v0,5,-3,8,-9,7v-4,0,-6,-3,-6,-7","w":187,"k":{"\u0443":4}},"\u0440":{"d":"162,-108v0,66,-16,113,-71,110v-14,0,-36,-2,-50,-5r0,66v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-244v0,-4,2,-6,6,-7v16,-3,39,-7,60,-7v50,0,71,35,71,87xm91,-12v48,3,55,-41,55,-96v0,-46,-15,-73,-55,-73v-17,0,-37,3,-50,5r0,159v14,3,36,5,50,5","w":181,"k":{"\u0445":11,"\u0443":8,"\u0442":12,"\u0436":14,"\u0434":9}},"\u0441":{"d":"141,-10v-1,18,-38,9,-50,12v-60,-1,-71,-50,-71,-111v0,-66,44,-99,115,-83v8,0,8,14,1,14r-45,-3v-49,-1,-55,43,-55,96v0,64,36,82,100,70v3,0,5,1,5,5","w":157,"k":{"\u0441":5}},"\u0442":{"d":"154,-193v5,0,8,3,7,9v0,4,-3,5,-7,5r-58,0r0,172v0,5,-4,8,-9,7v-4,0,-7,-3,-7,-7r0,-172r-59,0v-5,0,-8,-2,-7,-8v0,-4,3,-6,7,-6r133,0","w":175,"k":{"\u0451":13,"\u044f":11,"\u044a":-8,"\u0444":12,"\u0441":11,"\u043e":13,"\u043b":25,"\u0435":12,"\u0434":29,"\u0433":10,"\u0430":7}},"\u0443":{"d":"43,70v-12,0,-31,3,-29,-11v1,-11,21,-1,31,-3v32,5,38,-26,47,-56v-16,0,-21,-1,-27,-20r-49,-167v0,-6,4,-6,10,-6v3,0,4,2,5,5r49,165v3,12,7,7,16,8r50,-174v3,-7,18,-6,15,5r-59,204v-11,39,-26,50,-59,50","w":174,"k":{"\u044f":4,"\u0444":7,"\u0441":4,"\u043e":7,"\u043b":18,"\u0435":4,"\u0434":22,"\u0430":4,".":23,",":20}},"\u0444":{"d":"90,2v-61,2,-70,-44,-70,-110v0,-52,15,-87,70,-87v16,0,29,2,42,5r0,-71v0,-5,4,-6,9,-6v4,0,7,2,7,6r0,71v13,-3,25,-5,41,-5v64,-1,71,48,71,111v0,75,-46,98,-112,81r0,66v0,5,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-66v-14,3,-28,5,-42,5xm189,-12v52,3,55,-41,55,-96v0,-46,-9,-73,-55,-73v-17,0,-28,3,-41,5r0,159v14,3,27,5,41,5xm90,-181v-55,-2,-54,43,-54,97v0,68,39,82,96,67r0,-159v-13,-2,-25,-5,-42,-5","w":279,"k":{"\u0445":11,"\u0443":7,"\u0442":13,"\u043b":10,"\u0436":14,"\u0434":9}},"\u0445":{"d":"163,-9v3,5,0,10,-7,9v-3,0,-5,0,-7,-3r-60,-83v-21,28,-39,60,-62,86v-8,1,-16,-2,-10,-9r64,-90v-20,-31,-45,-57,-63,-90v0,-6,13,-5,15,-1r57,79r55,-79v6,-7,23,-1,13,7r-59,85","w":177,"k":{"\u0451":11,"\u0449":7,"\u0448":7,"\u0447":11,"\u0446":7,"\u0444":11,"\u0441":14,"\u043e":14,"\u0435":14,"\u0431":8}},"\u0446":{"d":"147,-36r0,-150v0,-5,3,-8,9,-7v4,0,6,3,6,7v-2,56,5,122,-4,171v14,1,35,-5,33,11v-2,17,9,49,-9,52v-13,-5,-3,-33,-6,-48r-113,0v-18,0,-38,-5,-38,-36r0,-150v0,-6,4,-8,10,-7v4,0,6,3,6,7r0,150v-2,35,54,21,84,21v17,0,22,-7,22,-21","w":187,"k":{"\u0447":10,"\u0442":13}},"\u0447":{"d":"25,-186v0,-6,4,-8,10,-7v13,7,3,37,6,54v-7,56,55,63,102,48r0,-95v0,-5,3,-8,9,-7v4,0,6,3,6,7r0,181v0,5,-3,8,-9,7v-4,0,-6,-3,-6,-7r0,-72v-14,4,-33,7,-49,7v-69,0,-72,-51,-69,-116","w":180},"\u0448":{"d":"239,-36r0,-150v0,-6,4,-8,10,-7v4,0,6,3,6,7r0,150v0,31,-20,36,-38,36r-154,0v-18,0,-38,-5,-38,-36r0,-150v0,-6,4,-8,10,-7v4,0,6,3,6,7r0,150v-1,36,60,16,91,21r0,-171v0,-5,4,-8,9,-7v4,0,7,3,7,7r0,171v32,-5,92,15,91,-21","w":280,"k":{"\u0434":4}},"\u0449":{"d":"239,-36r0,-150v0,-6,4,-8,10,-7v4,0,6,3,6,7v-3,56,6,124,-5,171v14,1,36,-5,34,11v-2,17,10,50,-10,52v-13,-5,-3,-33,-6,-48r-205,0v-18,0,-38,-5,-38,-36r0,-150v0,-6,4,-8,10,-7v4,0,6,3,6,7r0,150v-1,36,60,16,91,21r0,-171v0,-5,4,-8,9,-7v4,0,7,3,7,7r0,171v32,-5,92,15,91,-21","w":291,"k":{"\u0447":12,"\u0442":9}},"\u044a":{"d":"53,-3r0,-176v-14,-3,-40,8,-42,-8v6,-13,36,-3,52,-6v5,0,6,3,6,7r0,66v65,-4,125,0,125,64v0,61,-85,68,-141,53xm69,-107r0,95v59,3,117,3,109,-51v5,-45,-54,-48,-109,-44","w":210,"k":{"\u0447":12,"\u0445":7,"\u0443":14,"\u0442":28,"\u043b":9,"\u0436":14}},"\u044b":{"d":"41,-107r0,95v59,3,117,3,109,-51v5,-45,-54,-48,-109,-44xm25,-3r0,-183v0,-6,4,-8,10,-7v5,0,6,3,6,7r0,66v65,-4,125,0,125,64v0,61,-85,68,-141,53xm228,-7v0,5,-4,8,-10,7v-4,0,-6,-3,-6,-7r0,-179v0,-5,3,-8,9,-7v4,0,7,3,7,7r0,179","w":247},"\u044c":{"d":"41,-107r0,95v59,3,117,3,109,-51v5,-45,-54,-48,-109,-44xm25,-3r0,-183v0,-6,4,-8,10,-7v5,0,6,3,6,7r0,66v65,-4,125,0,125,64v0,61,-85,68,-141,53","w":186,"k":{"\u0447":12,"\u0445":7,"\u0443":14,"\u0442":28,"\u043b":9,"\u0436":14}},"\u044d":{"d":"66,2v-16,0,-47,5,-50,-12v8,-12,38,2,50,-2v44,0,57,-33,56,-81r-84,0v-6,0,-8,-3,-7,-9v0,-4,3,-5,7,-5v27,-2,61,4,84,-2v3,-64,-37,-81,-100,-69v-4,0,-7,-2,-6,-7v5,-14,34,-10,50,-10v60,0,72,48,72,110v0,47,-21,87,-72,87","w":157,"k":{"\u044d":5,"\u0447":10,"\u0445":7,"\u0443":7,"\u0442":6,"\u043b":7,"\u0436":18,"\u0434":8}},"\u044e":{"d":"45,-7v0,5,-4,8,-9,7v-4,0,-7,-3,-7,-7r0,-179v0,-5,4,-8,9,-7v4,0,7,3,7,7r0,78v21,-1,45,2,64,-1v0,-54,25,-86,74,-86v58,-1,74,45,74,111v0,54,-25,86,-74,86v-52,0,-76,-36,-74,-94r-64,0r0,85xm183,-12v51,1,58,-42,58,-97v0,-44,-16,-72,-58,-72v-51,-1,-58,42,-58,97v0,44,16,72,58,72","w":276,"k":{"\u0445":11,"\u0443":7,"\u0442":8,"\u043b":7,"\u0436":14,"\u0434":7}},"\u044f":{"d":"144,-7r0,-79v-17,1,-40,2,-58,0r-46,79v-5,7,-5,7,-13,7v-6,0,-7,-4,-3,-11r45,-78v-27,-6,-45,-21,-44,-52v0,-59,76,-57,131,-52v3,0,4,1,4,3r0,183v0,6,-4,8,-10,7v-4,0,-6,-3,-6,-7xm144,-180v-47,-3,-104,-3,-104,41v0,41,58,42,104,39r0,-80","w":184},"\u0451":{"d":"164,-109v0,8,1,16,-7,16r-121,0v-3,88,51,88,120,75v4,0,7,2,6,7v0,4,-2,6,-7,7v-80,20,-135,0,-135,-105v0,-50,25,-86,73,-86v50,0,71,35,71,86xm36,-107v36,-2,80,4,112,-2v0,-45,-14,-72,-55,-72v-41,0,-57,30,-57,74xm131,-265v-2,12,7,34,-9,34v-12,-1,-5,-22,-7,-34v0,-5,4,-6,9,-6v4,0,7,2,7,6xm77,-265v-2,12,7,34,-9,34v-12,-1,-5,-22,-7,-34v0,-5,4,-6,9,-6v4,0,7,2,7,6","w":183,"k":{"\u0445":7,"\u0443":8,"\u0442":11,"\u0436":12,"\u0434":7}},"\u00a0":{"w":77}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitised data (c) 2004 Monotype Imaging. All Rights Reserved. Neo Sans is
 * designed by Sebastian Lester.
 * 
 * Trademark:
 * Neo Sans is a trademark of Monotype Imaging Inc. and may be registered in
 * certain jurisdictions.
 * 
 * Full name:
 * NeoSansPro-Regular
 * 
 * Vendor URL:
 * http://www.agfamonotype.com.
 * 
 * License information:
 * http://www.agfamonotype.com/html/type/license.html.
 */
Cufon.registerFont({"w":217,"face":{"font-family":"Neo Sans Pro","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 4 3 5 4 4 2 4","ascent":"275","descent":"-85","x-height":"3","bbox":"-13.3675 -342.48 332.688 76","underline-thickness":"20.52","underline-position":"-7.56","stemh":"26","stemv":"23","unicode-range":"U+0020-U+0451"},"glyphs":{" ":{"w":88},"!":{"d":"55,-264r-2,187v0,9,-11,7,-20,7v-4,0,-7,-3,-7,-7r-3,-187v0,-10,15,-6,25,-7v4,0,7,3,7,7xm55,-41v-1,20,9,48,-24,41v-13,-2,-7,-27,-7,-41v0,-10,14,-6,24,-7v4,0,7,3,7,7","w":78},"\"":{"d":"96,-271v9,2,28,-5,24,7r-21,68v-1,11,-14,6,-24,7v-4,0,-3,-4,-3,-7r17,-68v1,-5,3,-7,7,-7xm35,-271v9,1,27,-5,23,7r-21,68v1,11,-23,10,-27,3r17,-71v1,-5,4,-7,8,-7","w":130,"k":{",":23,".":23}},"#":{"d":"179,-191v17,2,47,-8,40,15v-4,13,-28,4,-42,7r-7,73v15,3,46,-11,41,15v-3,13,-29,5,-43,7r-6,67v1,10,-13,6,-22,7v-4,0,-6,-3,-6,-7r6,-67r-56,0r-6,67v1,10,-13,6,-22,7v-3,0,-6,-3,-6,-7r6,-67v-15,-3,-44,10,-39,-15v2,-13,28,-5,41,-7r6,-73v-15,-2,-44,9,-38,-15v3,-13,27,-5,40,-7r6,-70v0,-9,27,-10,29,0r-6,70r55,0r7,-70v0,-10,14,-5,22,-6v4,0,6,3,6,6xm149,-169r-56,0r-7,73r56,0","w":237},"$":{"d":"190,-69v0,31,-14,63,-66,70v-1,20,9,48,-24,41v-13,-2,-5,-26,-7,-39v-21,0,-38,-4,-52,-6v-11,-2,-4,-12,-6,-21v0,-4,3,-6,7,-6v45,7,124,8,114,-39v0,-52,-128,-71,-128,-137v0,-37,24,-58,65,-63v1,-20,-7,-44,24,-38v13,3,5,24,7,37v19,1,41,3,53,5v9,1,5,12,6,21v0,4,-2,6,-7,6v-38,-2,-121,-15,-115,32v7,49,143,75,129,137"},"%":{"d":"270,-89v0,50,-7,92,-49,92v-42,0,-48,-43,-48,-92v0,-40,18,-59,48,-59v30,0,49,19,49,59xm213,-267v7,1,25,-4,19,6r-150,255v-3,11,-19,8,-29,5v46,-90,102,-172,151,-260v3,-5,5,-6,9,-6xm113,-212v0,49,-6,92,-48,92v-42,0,-49,-42,-49,-92v0,-40,19,-58,49,-58v30,0,48,18,48,58xm221,-18v27,0,26,-40,26,-71v0,-27,-10,-38,-26,-38v-27,0,-26,40,-26,71v0,27,10,38,26,38xm65,-141v27,0,26,-40,26,-71v0,-27,-10,-38,-26,-38v-27,0,-26,40,-26,71v0,27,10,38,26,38","w":285},"&":{"d":"229,-8v3,2,2,8,-2,8v-26,4,-38,-8,-49,-22v-43,40,-159,37,-159,-44v0,-30,16,-48,52,-71v-32,-36,-40,-57,-40,-76v0,-38,30,-57,76,-57v41,0,72,19,71,60v5,24,-26,52,-65,78r65,70v11,-18,14,-41,14,-68v0,-9,13,-5,21,-6v6,0,8,4,7,11v0,31,-8,61,-23,83xm95,-152v30,-18,60,-37,53,-61v0,-24,-16,-33,-41,-33v-28,0,-48,8,-47,36v-3,11,10,32,35,58xm161,-41r-72,-76v-30,19,-37,28,-37,54v0,51,84,49,109,22","w":244},"(":{"d":"101,-268v-62,91,-65,250,0,340v-4,5,-24,6,-29,-1v-66,-79,-66,-257,0,-338v5,-7,22,-5,29,-1","w":109},")":{"d":"14,72v64,-90,63,-250,0,-340v4,-5,24,-6,29,1v66,79,66,258,0,338v-5,6,-22,5,-29,1","w":109},"*":{"d":"143,-231v6,2,12,18,3,21r-45,14v9,17,44,41,16,55v-15,-10,-21,-29,-33,-42v-12,13,-18,32,-33,42v-5,-4,-18,-8,-12,-17r28,-38v-16,-9,-60,-5,-46,-32v1,-5,4,-3,7,-2r45,14r0,-47v-1,-9,8,-7,16,-7v13,7,2,37,5,54","w":167},"+":{"d":"184,-154v12,0,10,26,0,26r-62,0r0,62v1,10,-11,7,-20,7v-4,0,-6,-3,-6,-7r0,-62r-62,0v-10,1,-7,-11,-7,-20v0,-4,3,-6,7,-6r62,0r0,-62v-1,-10,11,-7,20,-7v4,0,6,3,6,7r0,62r62,0"},",":{"d":"35,-46v9,1,29,-4,25,6r-27,68v-1,10,-21,10,-26,3r21,-71v1,-5,3,-6,7,-6","w":77,"k":{"\"":23,"'":23}},"-":{"d":"96,-119v11,1,10,27,0,27r-72,0v-10,1,-7,-11,-7,-20v0,-4,3,-7,7,-7r72,0","w":119},".":{"d":"54,-41v-1,21,8,48,-24,41v-13,-3,-7,-27,-7,-41v0,-10,14,-6,24,-7v4,0,7,3,7,7","w":77,"k":{"\"":23,"'":23}},"\/":{"d":"90,-260v2,-12,33,-10,30,0r-82,253v0,11,-26,10,-30,2","w":127,"k":{"\/":12}},"0":{"d":"197,-109v0,80,-34,112,-88,112v-54,0,-88,-32,-88,-112r0,-49v0,-80,34,-112,88,-112v54,0,88,32,88,112r0,49xm109,-25v50,0,56,-67,56,-133v0,-61,-22,-84,-56,-84v-50,0,-55,68,-55,133v0,61,21,84,55,84"},"1":{"d":"180,0r-148,0v-10,1,-6,-13,-7,-22v0,-4,3,-6,7,-6r58,0r0,-206r-57,24v-3,1,-8,2,-8,-3v1,-8,-4,-21,4,-23v30,-10,48,-31,87,-31v4,0,6,2,6,6r0,233r58,0v10,-1,6,13,7,22v0,4,-3,6,-7,6"},"2":{"d":"32,-244v-3,-35,46,-24,71,-26v102,-9,110,92,40,134v-39,23,-96,56,-85,108r121,0v10,-1,6,13,7,22v0,4,-3,6,-7,6r-143,0v-13,-1,-5,-24,-7,-36v-6,-52,50,-94,91,-119v31,-19,37,-29,37,-51v0,-49,-75,-37,-119,-31v-4,0,-6,-3,-6,-7"},"3":{"d":"30,-243v-3,-35,40,-25,68,-27v55,-4,92,18,90,75v0,24,-13,45,-35,56v28,16,35,36,35,64v0,78,-86,88,-151,70v-10,0,-11,-24,-1,-25v53,6,118,17,118,-52v0,-19,-9,-44,-42,-44r-66,0v-9,0,-5,-11,-6,-19v0,-4,2,-7,6,-7r66,0v37,-1,42,-24,42,-48v0,-53,-71,-45,-118,-37v-4,0,-6,-2,-6,-6"},"4":{"d":"197,-99v11,1,10,29,0,28r-31,0r0,64v0,12,-17,6,-27,7v-4,0,-6,-3,-6,-7r0,-64r-104,0v-21,3,-19,-29,-11,-41r107,-150v4,-7,38,-10,41,2r0,161r31,0xm133,-99r-2,-125r-87,123v24,6,61,0,89,2"},"5":{"d":"190,-87v0,83,-80,103,-155,83v-9,0,-7,-11,-7,-20v0,-5,2,-6,7,-6v61,11,129,11,122,-57v7,-50,-61,-50,-118,-48v-3,0,-6,-3,-6,-6r10,-120v0,-4,3,-6,7,-6r124,0v10,-1,6,12,7,21v0,4,-3,6,-7,6r-103,0r-6,78v72,-2,125,11,125,75"},"6":{"d":"116,-270v34,0,56,-1,70,13v0,9,3,22,-9,20v-18,-4,-38,-6,-61,-6v-57,0,-62,35,-62,84v62,-15,143,-11,143,70v0,57,-29,92,-88,92v-54,0,-87,-32,-87,-103r0,-63v0,-77,32,-107,94,-107xm109,-24v34,1,56,-18,55,-67v0,-61,-66,-51,-110,-43v-4,61,9,119,55,110"},"7":{"d":"165,-267v30,0,31,22,22,41r-103,221v-4,9,-19,3,-30,5v-6,0,-6,-5,-4,-9r109,-228v-36,-6,-86,0,-126,-2v-10,0,-7,-13,-7,-22v0,-4,3,-6,7,-6r132,0","k":{"\/":36}},"8":{"d":"198,-81v2,59,-38,85,-91,84v-50,0,-90,-27,-87,-84v0,-22,12,-46,35,-59v-24,-13,-35,-32,-34,-59v0,-51,38,-72,90,-71v50,0,88,22,87,74v0,24,-12,44,-35,56v23,13,35,37,35,59xm98,-153v42,0,68,-13,68,-46v0,-30,-21,-45,-59,-44v-37,0,-56,15,-55,47v0,22,13,43,46,43xm107,-25v41,1,59,-19,59,-56v0,-28,-26,-50,-68,-46v-35,4,-45,25,-45,52v0,31,18,50,54,50"},"9":{"d":"193,-105v8,105,-76,120,-156,101v-11,0,-7,-10,-8,-20v0,-5,3,-8,8,-7v18,4,39,6,62,6v58,0,62,-35,62,-84v-62,15,-143,11,-143,-70v0,-57,29,-91,88,-91v54,0,87,31,87,102r0,63xm161,-134v4,-60,-9,-118,-55,-109v-35,-1,-57,17,-56,66v0,62,67,52,111,43"},":":{"d":"55,-191v-1,20,9,48,-24,41v-13,-2,-7,-27,-7,-41v0,-10,14,-6,24,-7v4,0,7,3,7,7xm55,-41v-1,20,9,48,-24,41v-13,-2,-7,-27,-7,-41v0,-10,14,-6,24,-7v4,0,7,3,7,7","w":78},";":{"d":"55,-191v-1,20,9,48,-24,41v-13,-2,-7,-27,-7,-41v0,-10,14,-6,24,-7v4,0,7,3,7,7xm31,-46v9,1,30,-4,25,7r-27,68v-1,10,-22,11,-26,2r21,-70v1,-5,3,-7,7,-7","w":78},"<":{"d":"170,-60v5,3,6,9,-1,10v-13,-1,-24,2,-32,-5r-87,-74v-8,-8,-8,-16,0,-24r87,-73v7,-8,27,-7,37,-2v0,2,-1,5,-4,7r-94,80"},"=":{"d":"178,-194v12,0,10,26,0,26r-138,0v-10,1,-8,-11,-8,-20v0,-4,4,-6,8,-6r138,0xm178,-114v12,0,10,26,0,26r-138,0v-10,1,-8,-11,-8,-20v0,-4,4,-6,8,-6r138,0"},">":{"d":"167,-153v9,8,9,16,0,24r-86,74v-7,7,-29,8,-37,1v29,-33,67,-57,98,-87r-94,-80v-5,-3,-7,-10,1,-10v13,1,24,-2,32,5"},"?":{"d":"139,-216v12,45,-75,76,-68,139v1,10,-14,6,-23,7v-10,0,-6,-14,-7,-24v-8,-48,63,-75,63,-122v0,-36,-56,-22,-87,-22v-8,0,-9,-24,1,-27v52,-10,123,-10,121,49xm64,-48v12,6,11,45,0,48v-10,-1,-24,3,-24,-7v1,-21,-8,-48,24,-41","w":160},"@":{"d":"143,-175v18,0,49,-3,54,14r-11,113v45,-6,52,-39,52,-84v0,-45,-29,-83,-88,-83v-92,-2,-111,70,-112,157v0,43,29,77,91,77v18,1,41,-5,55,0v-1,7,3,18,-6,17v-84,14,-170,-17,-163,-105v7,-95,34,-167,136,-167v74,0,111,50,111,104v0,88,-45,111,-131,113v-58,1,-62,-47,-54,-99v6,-37,27,-57,66,-57xm165,-147v-30,-5,-57,-2,-58,30v-1,33,-17,79,33,72v5,0,11,0,16,-1","w":276},"A":{"d":"217,-8v2,12,-17,7,-27,8v-3,0,-5,-2,-6,-5r-23,-83r-94,0r-23,83v-2,9,-37,8,-33,-3r66,-235v14,-38,62,-39,73,0xm154,-117r-33,-118v-1,-9,-12,-9,-14,0r-33,118r80,0","w":227,"k":{"C":8,"O":9,"Q":9,"a":4,"e":4,"o":4,"u":4,"v":19,"y":19,"c":4,"G":8,"L":6,"S":6,"T":32,"U":9,"V":25,"W":12,"Y":31,"d":4,"f":16,"g":4,"q":4,"t":16,"w":14}},"B":{"d":"28,-254v5,-24,37,-16,69,-16v59,0,105,15,105,75v0,27,-14,48,-38,57v27,10,40,31,40,64v0,81,-93,82,-164,73v-8,-1,-12,-4,-12,-13r0,-240xm117,-152v45,-1,53,-20,53,-49v0,-47,-61,-42,-109,-40r0,89r56,0xm61,-27v54,4,110,6,110,-53v0,-24,-12,-46,-54,-46r-56,0r0,99","w":221,"k":{"A":7,"T":12,"Y":12}},"C":{"d":"184,-9v-13,15,-31,12,-67,12v-44,0,-95,-25,-95,-112r0,-50v4,-116,74,-119,155,-105v10,-1,5,15,6,23v-9,10,-42,1,-66,1v-35,0,-63,20,-63,81r0,50v-1,90,57,86,124,79v9,0,5,13,6,21","w":196,"k":{"C":6,"O":10,"Q":10,"o":4,"y":8,"G":10}},"D":{"d":"28,-257v7,-19,38,-10,73,-13v85,-6,109,62,109,161v0,77,-42,112,-109,112v-35,0,-66,6,-73,-13r0,-247xm177,-109r0,-49v-1,-83,-49,-88,-116,-83r0,215v66,3,116,0,116,-83","w":230,"k":{"A":8,"T":13,"V":7,"W":4,"Y":11,"X":11,"Z":8}},"E":{"d":"175,-27v8,3,5,26,0,28v-14,1,-49,2,-70,2v-50,0,-77,-19,-77,-67r0,-139v-7,-75,81,-69,147,-65v6,2,7,25,0,28v-45,3,-124,-15,-114,37r0,50r110,0v10,0,8,11,8,21v0,4,-4,7,-8,7r-110,0v5,47,-21,98,44,98r70,0","w":198},"F":{"d":"171,-153v11,0,12,28,0,28r-110,0r0,118v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-196v-7,-75,81,-69,147,-65v6,2,7,25,0,28v-45,3,-124,-15,-114,37r0,50r110,0","w":198,"k":{"A":22,"O":4,"o":10,",":33,".":33}},"G":{"d":"192,-11v0,4,-2,7,-6,8v-81,15,-166,10,-165,-106r0,-49v1,-119,83,-119,165,-107v10,-1,5,15,6,23v0,3,-3,4,-6,4v-68,-3,-134,-18,-132,80r0,49v-1,81,46,88,105,80r0,-103v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,121","w":220,"k":{"V":5}},"H":{"d":"217,-7v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-120r-123,0r0,120v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-253v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,104r123,0r0,-104v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,253","w":244},"I":{"d":"64,-7v0,11,-16,6,-26,7v-4,0,-6,-3,-6,-7r0,-254v0,-11,17,-4,26,-6v4,0,6,2,6,6r0,254","w":96},"J":{"d":"9,65v-18,0,-24,-2,-22,-20v9,-14,53,3,45,-32r0,-274v0,-9,30,-10,32,0r0,274v0,35,-15,52,-55,52","w":92},"K":{"d":"201,-8v3,3,2,8,-3,8v-13,-1,-29,4,-36,-4r-101,-123r0,120v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-254v1,-9,30,-10,33,0r0,117r104,-120v6,-5,30,-5,38,0v-34,44,-74,83,-110,126","w":218,"k":{"C":25,"E":13,"O":17,"Q":17,"e":16,"o":13,"u":15,"v":21,"y":20,"c":16,"G":25,"L":6,"T":5,"U":6,"V":4,"d":16,"f":5,"q":13,"t":10,"w":18,"-":14}},"L":{"d":"175,-27v8,2,5,25,0,26v-9,1,-36,4,-70,4v-39,0,-77,-8,-77,-67r0,-196v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,196v-10,52,69,34,114,37","w":185,"k":{"C":12,"E":7,"O":16,"Q":16,"e":8,"o":9,"v":18,"y":19,"G":14,"S":6,"T":36,"U":14,"V":33,"W":13,"Y":37,"w":10,"-":14}},"M":{"d":"246,-7v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-215r-52,108v-6,15,-42,15,-49,0r-53,-108r0,215v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-250v0,-15,39,-15,45,-4r64,127v25,-38,41,-86,64,-127v5,-9,45,-12,45,4r0,250","w":273,"k":{"V":6,"Y":13}},"N":{"d":"217,-10v0,15,-37,13,-45,4r-112,-212r0,211v0,10,-27,10,-32,3r0,-253v0,-16,40,-13,45,-3r111,211r1,-212v0,-10,16,-5,25,-6v4,0,7,2,7,6r0,251","w":244,"k":{"T":12,"V":8,"Y":6}},"O":{"d":"216,-111v0,80,-40,114,-97,114v-73,0,-97,-65,-97,-160v0,-80,40,-113,97,-113v57,0,97,33,97,113r0,46xm119,-27v55,0,64,-61,64,-130v0,-60,-24,-83,-64,-83v-55,0,-64,60,-64,129v0,60,24,84,64,84","w":237,"k":{"A":9,"T":16,"V":8,"W":4,"Y":14,"X":16,"Z":13}},"P":{"d":"28,-258v7,-18,42,-12,68,-12v60,0,101,21,101,83v0,73,-64,85,-137,79r0,101v0,11,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-251xm60,-135v57,5,114,-2,105,-57v5,-48,-53,-54,-105,-49r0,106","w":213,"k":{"A":22,"a":8,"e":6,"o":6,",":39,".":39,"Z":12}},"Q":{"d":"216,-157v0,86,-18,157,-81,159v0,21,-3,36,22,36v15,0,34,-5,29,18v0,6,-11,9,-29,9v-42,0,-58,-18,-54,-64v-62,-2,-81,-71,-81,-158v0,-80,40,-113,97,-113v57,0,97,33,97,113xm119,-27v55,0,64,-61,64,-130v0,-60,-24,-83,-64,-83v-55,0,-64,60,-64,129v0,60,24,84,64,84","w":237,"k":{"X":16,"V":8,"A":9,"T":16,"W":4,"Y":14,"Z":13}},"R":{"d":"210,-8v3,3,0,8,-4,8v-12,-2,-27,5,-32,-5r-65,-107r-49,-1r0,106v0,11,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-252v0,-5,3,-7,9,-8v75,-8,164,-7,164,77v0,40,-24,64,-57,73xm60,-141v59,3,108,5,108,-52v0,-50,-57,-49,-108,-46r0,98","w":225,"k":{"C":7,"O":7,"Q":7,"e":8,"o":9,"y":7,"c":5,"G":7,"T":15,"V":12,"W":3,"Y":15,"g":5}},"S":{"d":"180,-69v0,35,-18,72,-89,72v-25,0,-44,-4,-60,-6v-11,-1,-5,-11,-7,-20v9,-15,48,0,67,-4v43,0,55,-17,55,-42v0,-52,-135,-71,-128,-137v-8,-66,86,-69,149,-60v9,1,10,28,0,28v-43,2,-121,-15,-116,32v6,49,142,76,129,137","w":198,"k":{"A":6,"v":8,"y":6,"V":9,"W":5,"Y":8,"t":14,"x":5}},"T":{"d":"193,-267v12,1,10,28,0,28r-70,0r0,232v0,11,-17,6,-27,7v-4,0,-6,-3,-6,-7r0,-232r-70,0v-10,1,-6,-13,-7,-22v0,-4,3,-6,7,-6r173,0","w":212,"k":{"A":32,"C":14,"E":10,"O":16,"Q":16,"a":31,"e":29,"o":32,"u":15,"v":12,"y":23,"c":28,",":27,".":27,"G":11,"d":30,"g":23,"q":29,"t":12,"w":12,"x":14,"F":6,"m":14,"n":14,"p":14,"r":17,"s":28,"z":13}},"U":{"d":"211,-97v0,69,-34,100,-92,100v-58,0,-92,-31,-92,-100r0,-164v1,-9,30,-10,33,0r0,164v0,46,14,71,59,71v45,0,59,-24,59,-71r0,-164v1,-9,30,-10,33,0r0,164","w":238,"k":{"A":9}},"V":{"d":"186,-262v6,-9,36,-9,33,3r-66,234v-14,40,-63,40,-74,0r-67,-236v1,-10,29,-9,34,-1r63,229v1,10,11,10,14,0","w":231,"k":{"x":14,"v":9,"q":18,"p":9,"m":9,"Q":8,"A":25,"C":9,"E":9,"O":8,"a":19,"e":18,"o":18,"u":13,"y":12,"c":17,",":27,".":27,"G":8,"S":8,"g":17,"w":9,"n":9,"r":12,"s":18,"z":10}},"W":{"d":"252,-261v4,-11,34,-9,33,1r-40,243v-3,28,-52,24,-59,0r-38,-136v-15,42,-26,91,-37,136v-6,23,-54,29,-58,0r-40,-244v1,-9,31,-11,33,0r36,234v16,-42,27,-93,38,-138v5,-22,51,-23,57,0r38,138","w":297,"k":{"A":16,"C":4,"O":5,"Q":5,"a":9,"e":11,"o":13,"G":4}},"X":{"d":"216,-9v2,4,2,9,-4,9v-12,-1,-26,4,-31,-5r-65,-105r-65,105v-5,10,-18,3,-29,5v-6,0,-6,-5,-4,-9r80,-127r-81,-126v2,-9,28,-7,36,-2r64,103r63,-103v5,-5,37,-7,33,5r-78,124","w":232,"k":{"v":15,"Q":16,"C":13,"O":16,"e":10,"o":12,"u":12,"y":13,"G":13}},"Y":{"d":"170,-267v11,1,33,-4,27,9r-56,125v-6,14,-14,21,-20,24r0,102v0,11,-16,6,-26,7v-4,0,-6,-3,-6,-7r0,-102v-6,-3,-14,-10,-20,-24r-56,-129v2,-8,30,-8,34,0v20,41,33,89,58,126v3,0,4,-2,8,-10r50,-116v1,-3,4,-5,7,-5","w":209},"Z":{"d":"189,-30v12,1,10,30,0,30r-139,0v-34,4,-37,-26,-24,-45r130,-191v-36,-6,-84,-2,-124,-2v-11,0,-6,-14,-7,-23v0,-4,3,-6,7,-6r129,0v31,-5,37,26,24,45r-129,190v38,6,91,0,133,2","w":214,"k":{"C":9,"O":11,"Q":11,"a":8,"e":12,"o":11,"u":12,"v":12,"y":11,"c":14,"G":11,"W":4,"g":14}},"[":{"d":"102,44v11,0,10,27,0,26r-67,0v-4,0,-6,-3,-6,-7r0,-324v0,-4,2,-6,6,-6r67,0v9,0,7,11,7,19v-4,14,-33,4,-48,7r0,285r41,0","w":117},"\\":{"d":"120,-7v1,11,-15,6,-24,7v-4,0,-5,-3,-6,-7r-82,-255v1,-8,29,-10,30,2","w":127},"]":{"d":"89,63v0,4,-2,7,-6,7r-67,0v-9,0,-7,-11,-7,-19v4,-14,33,-4,48,-7r0,-285v-19,-4,-54,12,-48,-19v0,-4,3,-7,7,-7r67,0v4,0,6,2,6,6r0,324","w":117},"^":{"d":"180,-210v2,2,4,7,-2,7v-41,0,-47,-30,-69,-49v-20,17,-32,61,-73,46v13,-21,29,-38,43,-58v9,-12,32,-3,49,-6v5,0,7,1,11,6"},"_":{"d":"189,23v0,7,1,16,-7,15r-186,0v-8,1,-7,-7,-7,-15v0,-4,3,-5,7,-5r186,0v4,0,7,1,7,5","w":177},"a":{"d":"162,-7v0,10,-14,6,-23,7v-7,0,-9,-7,-8,-15v-42,29,-114,29,-114,-45v0,-48,48,-62,114,-58v2,-35,-5,-58,-39,-56r-57,3v-8,2,-6,-11,-6,-18v0,-4,2,-6,7,-7v15,-3,32,-5,56,-5v99,-4,64,109,70,194xm131,-38r0,-58v-44,-1,-92,0,-82,40v0,49,54,34,82,18","w":186,"k":{"v":11,"y":8,"f":7,"t":9}},"b":{"d":"177,-112v0,68,-15,115,-79,115v-22,0,-44,-3,-66,-7v-6,-1,-8,-3,-8,-8r0,-252v0,-10,15,-6,25,-7v4,0,7,3,7,7r0,67v71,-16,121,11,121,85xm98,-25v46,2,47,-39,47,-87v0,-59,-37,-68,-89,-58r0,143v12,1,30,2,42,2","w":194,"k":{"f":7,"t":11,"x":8}},"c":{"d":"147,-22v5,33,-28,24,-52,25v-58,3,-77,-48,-77,-116v0,-72,54,-99,122,-84v11,2,6,12,7,21v0,5,-3,6,-8,6v-50,-8,-89,-5,-89,57v0,47,6,88,45,88v19,0,29,-2,46,-3v3,0,6,2,6,6","w":162,"k":{"o":13}},"d":{"d":"170,-12v0,5,-1,7,-7,8v-22,4,-45,7,-67,7v-63,0,-78,-47,-78,-115v0,-75,49,-101,121,-85r0,-67v0,-11,15,-6,25,-7v4,0,6,3,6,7r0,252xm139,-27r0,-143v-51,-9,-89,-2,-89,58v0,47,0,90,46,87v12,0,31,-1,43,-2","w":194},"e":{"d":"177,-116v-1,10,3,27,-7,27r-120,0v-8,75,57,67,116,60v7,-1,4,11,5,17v0,5,-1,7,-7,8v-72,14,-141,16,-146,-80v-3,-69,17,-117,80,-117v53,0,79,34,79,85xm145,-113v1,-42,-14,-60,-47,-60v-32,0,-49,20,-48,60r95,0","w":195,"k":{"v":7,"y":7,"T":33,"f":7,"t":11,"w":2,"x":10}},"f":{"d":"101,-274v19,2,30,0,27,20v-8,15,-53,-8,-46,30r0,26v19,3,53,-11,45,21v-3,13,-31,3,-45,6r0,164v0,11,-15,6,-24,7v-4,0,-7,-3,-7,-7r0,-164v-16,-5,-47,6,-42,-21v3,-13,29,-4,42,-6v-4,-47,8,-80,50,-76","w":137,"k":{"e":9,"o":8,"c":8,",":20,".":20,"d":4,"g":8,"q":7,"s":5}},"g":{"d":"42,-34v-23,-9,-26,-43,-4,-56v-34,-41,-21,-110,63,-108r79,0v7,0,9,8,8,17v0,10,-12,7,-19,10v28,43,7,110,-68,101v-25,3,-46,-17,-51,5v7,20,44,18,65,25v35,12,69,19,69,56v0,35,-23,56,-82,56v-86,0,-103,-67,-60,-106xm101,-95v40,-1,50,-14,49,-39v0,-22,-10,-39,-49,-39v-41,1,-48,19,-48,42v0,16,7,36,48,36xm102,48v42,-3,52,-11,51,-35v5,-23,-60,-30,-85,-38v-26,22,-32,77,34,73","w":201},"h":{"d":"176,-7v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-119v0,-61,-45,-51,-88,-37r0,156v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-257v0,-10,15,-6,25,-7v4,0,7,3,7,7r0,75v58,-24,120,-16,120,63r0,119","w":200,"k":{"y":7,"f":7,"t":7}},"i":{"d":"54,-273v12,4,11,42,0,43v-10,-1,-26,4,-26,-7v0,-13,-6,-36,7,-36r19,0xm60,-7v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-184v0,-10,32,-12,32,0r0,184","w":88},"j":{"d":"54,-273v12,4,11,42,0,43v-10,-1,-26,4,-26,-7v0,-13,-6,-36,7,-36r19,0xm15,71v-15,0,-31,-1,-26,-21v8,-14,47,8,39,-27r0,-214v0,-11,16,-6,26,-7v4,0,6,3,6,7r0,214v0,37,-16,48,-45,48","w":88},"k":{"d":"165,-8v3,12,-17,7,-29,8v-4,0,-5,-1,-8,-5r-72,-88r0,86v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-257v0,-10,32,-12,32,0r0,150r72,-81v5,-5,43,-7,36,5r-79,86","w":178,"k":{"a":5,"e":13,"o":12,"c":10,"d":9,"q":10}},"l":{"d":"60,-7v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-257v0,-10,15,-6,25,-7v4,0,7,3,7,7r0,257","w":87},"m":{"d":"263,-7v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-128v0,-51,-43,-40,-75,-28v7,46,1,105,3,156v0,11,-15,6,-25,7v-4,0,-6,-3,-6,-7r0,-128v2,-56,-42,-39,-72,-24r0,152v0,11,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-184v0,-10,15,-6,25,-7v7,0,8,7,7,14v23,-16,68,-27,89,-2v52,-24,117,-28,118,51r0,128","w":287,"k":{"y":5,"f":7,"t":7}},"n":{"d":"176,-7v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-119v3,-62,-51,-51,-88,-33r0,152v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-184v0,-10,15,-6,25,-7v7,0,8,7,7,14v52,-33,120,-18,120,58r0,119","w":200,"k":{"v":8,"y":8,"f":7,"t":7,"w":7}},"o":{"d":"178,-113v0,68,-17,116,-80,116v-63,0,-80,-48,-80,-116v0,-53,27,-88,80,-88v53,0,80,35,80,88xm98,-25v43,0,49,-40,49,-88v0,-37,-15,-60,-49,-60v-43,0,-48,40,-48,88v0,37,14,60,48,60","w":196,"k":{"v":8,"y":8,"f":7,"t":11,"w":6,"x":13,"z":6}},"p":{"d":"177,-112v0,88,-36,131,-121,111r0,65v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-248v0,-5,2,-7,8,-8v19,-5,44,-9,66,-9v54,0,79,35,79,89xm98,-24v44,2,47,-40,47,-88v0,-38,-11,-62,-47,-62v-15,0,-32,2,-42,4r0,142v12,2,30,4,42,4","w":194,"k":{"x":11,"y":7,"f":7,"t":11,"w":5}},"q":{"d":"170,64v0,11,-15,6,-25,7v-4,0,-6,-3,-6,-7r0,-65v-81,19,-121,-19,-121,-111v0,-54,24,-89,78,-89v22,0,48,4,67,9v6,1,7,3,7,8r0,248xm139,-28r0,-142v-10,-2,-28,-4,-43,-4v-45,-2,-46,41,-46,88v0,60,37,70,89,58","w":194},"r":{"d":"106,-201v12,0,10,28,0,28v-17,0,-32,4,-50,15r0,151v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-184v0,-10,14,-6,24,-7v7,0,8,7,7,15v18,-13,35,-18,51,-18","w":123,"k":{"a":10,"e":9,"o":9,"c":9,",":11,".":11,"d":10,"g":9,"q":10}},"s":{"d":"82,3v-16,-4,-71,8,-64,-26v22,-16,100,21,100,-27v0,-41,-100,-48,-100,-103v0,-57,73,-51,121,-43v10,1,6,10,7,19v0,4,-2,6,-7,6v-24,1,-90,-17,-89,18v9,39,100,54,100,103v0,37,-28,53,-68,53","w":167,"k":{"v":5,"y":4,"f":4,"t":5}},"t":{"d":"130,-18v6,22,-15,21,-30,21v-33,0,-49,-9,-49,-49r0,-125v-16,-5,-47,6,-42,-21v3,-13,29,-4,42,-6v2,-14,-6,-37,6,-42v9,0,25,-9,25,3r0,39v19,3,53,-12,47,19v-3,15,-31,5,-47,8r0,125v-2,29,17,22,40,23v5,0,8,1,8,5","w":138,"k":{"o":5,"c":4,"d":4,"g":4,"q":5}},"u":{"d":"176,-7v0,10,-15,6,-25,7v-7,0,-8,-7,-7,-14v-52,33,-120,18,-120,-58r0,-119v0,-10,32,-12,32,0r0,119v-3,61,51,52,88,33r0,-152v0,-10,32,-12,32,0r0,184","w":200},"v":{"d":"151,-198v11,1,29,-4,25,9r-48,171v-9,29,-57,29,-65,0r-49,-174v0,-9,30,-11,32,1r42,157v3,15,11,14,15,0r41,-157v1,-5,4,-7,7,-7","w":190,"k":{"q":8,".":17,"a":8,"e":7,"o":8,",":18}},"w":{"d":"237,-192v3,-11,35,-9,32,3r-35,167v-5,23,-8,25,-30,25v-19,0,-23,-3,-29,-26r-32,-123v-2,-4,-2,-3,-3,0r-32,123v-5,21,-10,26,-29,26v-22,0,-25,-3,-30,-25r-35,-169v0,-10,30,-11,32,-1r30,164v2,7,4,5,6,0r35,-138v2,-16,45,-18,49,0r38,142v16,-50,20,-114,33,-168","w":282,"k":{"e":5,"o":6,"c":6}},"x":{"d":"183,-8v2,4,2,8,-4,8v-10,-1,-25,3,-30,-3r-51,-75r-52,74v-4,7,-27,7,-32,0r67,-97r-63,-93v4,-7,30,-8,36,1r46,68r46,-68v5,-10,17,-3,28,-5v6,0,6,5,3,9r-60,86","w":196,"k":{"q":13,"e":13,"o":13,"c":10,"d":13,"f":2,"g":13}},"y":{"d":"53,71v-18,0,-44,4,-38,-22v3,-13,28,-1,40,-4v27,5,33,-21,39,-45v-17,0,-24,-1,-32,-25r-48,-167v1,-9,29,-10,32,0r43,156v3,10,5,8,13,8r43,-165v3,-7,37,-10,33,4r-60,207v-11,39,-24,53,-65,53","w":192,"k":{"e":7,"o":8,"c":9,",":13,"g":9,"q":7}},"z":{"d":"148,-27v12,0,12,28,0,27r-108,0v-28,0,-27,-34,-14,-50r94,-119v-25,-6,-62,0,-91,-2v-8,0,-7,-11,-7,-20v0,-4,3,-7,7,-7r106,0v27,-1,24,32,12,46r-97,122v0,2,0,3,3,3r95,0","w":173,"k":{"e":7,"o":6,"c":4,"d":5,"q":4}},"{":{"d":"102,44v11,0,10,26,0,26v-48,0,-73,-5,-73,-50v0,-44,11,-91,-22,-108r0,-21v60,-28,-37,-158,95,-158v9,0,7,11,7,19v-6,18,-57,-6,-48,30v-2,50,9,100,-26,120v35,20,26,69,26,118v0,26,17,24,41,24","w":119},"|":{"d":"61,63v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-324v0,-9,29,-10,32,0r0,324","w":89},"}":{"d":"112,-88v-60,28,37,158,-95,158v-9,0,-7,-11,-7,-19v7,-17,57,5,48,-31v2,-49,-9,-99,26,-118v-35,-20,-26,-70,-26,-120v0,-26,-17,-23,-41,-23v-9,0,-7,-11,-7,-19v0,-10,15,-6,25,-7v100,-14,20,117,77,158r0,21","w":119},"~":{"d":"185,-178v9,49,-34,70,-67,46v-12,-9,-32,-29,-45,-32v-30,-4,3,43,-33,38v-7,0,-7,-9,-7,-17v0,-44,38,-58,67,-37v14,11,27,28,46,32v29,6,-5,-42,32,-37v4,0,7,3,7,7"},"'":{"d":"35,-271v9,1,27,-5,23,7r-21,68v1,11,-23,10,-27,3r17,-71v1,-5,4,-7,8,-7","w":69,"k":{",":23,".":23}},"`":{"d":"86,-230v2,2,1,5,-2,6v-11,-1,-23,4,-27,-6r-43,-48v8,-3,30,-6,37,3","w":133},"\u0410":{"d":"217,-8v2,12,-17,7,-27,8v-3,0,-5,-2,-6,-5r-23,-83r-94,0r-23,83v-2,9,-37,8,-33,-3r66,-235v14,-38,62,-39,73,0xm154,-117r-33,-118v-1,-9,-12,-9,-14,0r-33,118r80,0","w":227,"k":{"\u0451":7,"\u0447":18,"\u0443":9,"\u0442":18,"\u043e":7,"\u0435":7,"\u0401":9,"\u0427":20,"\u0426":7,"\u0424":18,"\u0422":20,"\u0421":7,"\u041e":7,"\u0419":7,"\u0418":7,"\u0415":9}},"\u0411":{"d":"204,-80v0,87,-90,89,-164,79v-8,-1,-12,-4,-12,-13r0,-247v0,-4,3,-6,7,-6r137,0v9,0,7,12,7,21v0,4,-3,8,-7,8r-111,0r0,83v69,-7,143,2,143,75xm61,-27v54,4,118,5,110,-53v4,-52,-59,-52,-110,-47r0,100","w":221,"k":{"\u041b":7,"\u0416":8,"\u0410":7}},"\u0412":{"d":"28,-254v5,-24,37,-16,69,-16v59,0,105,15,105,75v0,27,-14,48,-38,57v27,10,40,31,40,64v0,81,-93,82,-164,73v-8,-1,-12,-4,-12,-13r0,-240xm117,-152v45,-1,53,-20,53,-49v0,-47,-61,-42,-109,-40r0,89r56,0xm61,-27v54,4,110,6,110,-53v0,-24,-12,-46,-54,-46r-56,0r0,99","w":221,"k":{"\u0425":9,"\u0416":9}},"\u0413":{"d":"175,-268v7,4,7,27,0,28v-44,4,-114,-16,-114,37r0,196v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-196v-7,-75,81,-69,147,-65","w":192,"k":{"\u0451":22,"\u044f":38,"\u044e":24,"\u044d":23,"\u044c":24,"\u044b":24,"\u0449":28,"\u0448":27,"\u0447":27,"\u0446":27,"\u0445":26,"\u0444":44,"\u0443":23,"\u0442":24,"\u0441":33,"\u0440":24,"\u043f":39,"\u043e":39,"\u043d":23,"\u043c":24,"\u043b":44,"\u043a":23,"\u0439":23,"\u0438":23,"\u0437":16,"\u0436":14,"\u0435":33,"\u0434":51,"\u0433":23,"\u0432":22,"\u0431":24,"\u0430":21,"\u0401":13,"\u042f":12,"\u0427":9,"\u0424":21,"\u0421":14,"\u041f":10,"\u041e":18,"\u041b":36,"\u0416":9,"\u0415":13,"\u0414":46,"\u0410":36,".":47,",":47}},"\u0414":{"d":"9,-22v-1,-9,10,-7,18,-7r60,-214v14,-38,63,-39,74,0r60,214v8,0,17,-1,17,7r0,58v0,11,-17,6,-27,7v-12,-4,-3,-29,-6,-43r-163,0v-1,22,9,51,-27,43v-4,0,-6,-3,-6,-7r0,-58xm117,-235r-56,206r127,0r-57,-206v-1,-9,-12,-9,-14,0","w":246,"k":{"\u0447":27,"\u0442":29,"\u0427":34,"\u0424":27,"\u0422":31,"\u041e":7,"\u0419":7,"\u0418":7,"\u0415":9}},"\u0415":{"d":"175,-27v8,3,5,26,0,28v-14,1,-49,2,-70,2v-50,0,-77,-19,-77,-67r0,-139v0,-48,27,-67,77,-67v35,0,55,1,70,2v6,2,7,25,0,28v-45,3,-124,-15,-114,37r0,50r110,0v10,0,8,11,8,21v0,4,-4,7,-8,7r-110,0v5,47,-21,98,44,98r70,0","w":198},"\u0416":{"d":"331,-8v3,3,2,8,-3,8v-13,-1,-29,4,-36,-4r-102,-123r0,120v0,11,-16,6,-26,7v-4,0,-6,-3,-6,-7r0,-120r-102,123v-7,8,-24,2,-36,4v-5,0,-6,-5,-3,-8r109,-130r-109,-122v-3,-3,-2,-7,4,-7v11,1,27,-3,33,3r104,120r0,-117v0,-9,30,-10,32,0r0,117r104,-120v6,-6,22,-2,33,-3v6,0,7,4,4,7r-109,122","w":348,"k":{"\u0451":13,"\u0447":29,"\u0444":13,"\u0443":13,"\u0442":22,"\u0441":13,"\u043e":16,"\u0439":13,"\u0438":13,"\u0435":18,"\u0401":13,"\u0427":12,"\u0424":26,"\u0421":18,"\u041e":24,"\u0419":7,"\u0418":7,"\u0415":13}},"\u0417":{"d":"25,-243v-3,-35,40,-25,68,-27v55,-4,92,18,90,75v0,24,-13,45,-35,56v28,16,35,36,35,64v0,78,-85,87,-151,70v-8,-2,-7,-10,-7,-19v0,-4,3,-6,7,-6v57,8,117,15,117,-52v0,-19,-9,-44,-42,-44r-66,0v-9,0,-5,-11,-6,-19v0,-4,2,-7,6,-7r66,0v37,-1,42,-24,42,-48v0,-53,-70,-45,-117,-37v-4,0,-7,-2,-7,-6","w":210,"k":{"\u0425":14,"\u0422":11,"\u041b":13,"\u0416":14,"\u0410":13}},"\u0418":{"d":"28,-10r0,-251v0,-9,30,-10,32,0r0,212r112,-211v3,-10,45,-13,45,3r0,253v-2,7,-32,8,-32,-3r0,-211r-113,212v-5,9,-44,12,-44,-4","w":244,"k":{"\u041b":7,"\u0416":7,"\u0414":7,"\u0410":7}},"\u0419":{"d":"181,-336v-6,68,-111,67,-117,0v-2,-9,10,-6,17,-6v4,0,6,2,6,6v4,38,68,39,72,0v-1,-9,11,-5,18,-6v4,0,4,3,4,6xm28,-10v0,15,38,15,44,4r113,-212r0,211v0,10,27,10,32,3r0,-253v0,-16,-40,-14,-45,-3r-112,211r0,-212v0,-10,-16,-5,-25,-6v-4,0,-7,2,-7,6r0,251","w":244,"k":{"\u041b":7,"\u0416":7,"\u0414":7,"\u0410":7}},"\u041a":{"d":"201,-8v3,3,2,8,-3,8v-13,-1,-29,4,-36,-4r-101,-123r0,120v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-254v1,-9,30,-10,33,0r0,117r104,-120v6,-6,22,-2,33,-3v6,0,6,4,3,7r-108,122","w":218,"k":{"\u0451":13,"\u0447":29,"\u0444":13,"\u0443":13,"\u0442":22,"\u0441":13,"\u043e":16,"\u0439":13,"\u0438":13,"\u0435":18,"\u0432":7,"\u0431":7,"\u0430":7,"\u0401":13,"\u0427":12,"\u0424":26,"\u0421":18,"\u041e":24,"\u0419":7,"\u0418":7,"\u0415":13}},"\u041b":{"d":"184,-5r-63,-230v-1,-9,-12,-9,-14,0r-63,230v-2,9,-37,8,-33,-3r66,-235v14,-38,62,-39,73,0r67,237v-1,9,-29,9,-33,1","w":227,"k":{"\u0451":7,"\u0447":18,"\u0443":9,"\u0442":18,"\u043e":7,"\u0435":7,"\u0401":9,"\u0427":20,"\u0426":7,"\u0424":18,"\u0422":20,"\u0421":7,"\u041e":7,"\u0419":7,"\u0418":7,"\u0415":9}},"\u041c":{"d":"246,-7v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-214v-18,31,-36,73,-52,107v-7,14,-43,15,-49,0r-52,-107v-1,-1,-1,-1,-1,0r0,214v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-250v0,-15,39,-15,45,-4r64,127v25,-38,41,-86,64,-127v5,-9,45,-12,45,4r0,250","w":273},"\u041d":{"d":"217,-7v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-120r-123,0r0,120v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-253v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,104r123,0r0,-104v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,253","w":244},"\u041e":{"d":"216,-111v0,80,-40,114,-97,114v-73,0,-97,-65,-97,-160v0,-80,40,-113,97,-113v57,0,97,33,97,113r0,46xm119,-27v55,0,64,-61,64,-130v0,-60,-24,-83,-64,-83v-55,0,-64,60,-64,129v0,60,24,84,64,84","w":237,"k":{"\u0443":10,"\u0425":12,"\u0423":10,"\u0422":11,"\u041b":11,"\u0416":18,"\u0414":8,"\u0410":11}},"\u041f":{"d":"184,-7r0,-215v0,-11,-1,-16,-16,-16r-91,0v-15,0,-16,5,-16,16r0,215v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7r0,-215v7,-74,78,-45,140,-45v18,0,49,4,49,45r0,215v0,11,-16,6,-26,7v-4,0,-7,-3,-7,-7","w":244},"\u0420":{"d":"28,-258v7,-18,42,-12,68,-12v60,0,101,21,101,83v0,73,-64,85,-137,79r0,101v0,11,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-251xm60,-135v57,5,114,-2,105,-57v5,-48,-53,-54,-105,-49r0,106","w":211,"k":{"\u044a":-9,"\u0443":6,"\u043b":23,"\u0434":29,"\u0425":11,"\u0423":6,"\u041b":20,"\u0416":17,"\u0414":32,"\u0410":20,".":45,",":45}},"\u0421":{"d":"184,-9v-13,15,-31,12,-67,12v-44,0,-95,-25,-95,-112r0,-50v4,-116,74,-119,155,-105v10,-1,5,15,6,23v-11,10,-42,1,-66,1v-35,0,-63,20,-63,81r0,50v-1,88,56,86,122,79v11,-2,7,12,8,21","w":196,"k":{"\u0451":8,"\u0447":24,"\u0442":15,"\u0441":7,"\u043e":9,"\u0435":8,"\u0424":19,"\u0421":14,"\u041e":9}},"\u0422":{"d":"193,-267v12,1,10,28,0,28r-70,0r0,232v0,11,-17,6,-27,7v-4,0,-6,-3,-6,-7r0,-232r-70,0v-10,1,-6,-13,-7,-22v0,-4,3,-6,7,-6r173,0","w":212,"k":{"\u0451":19,"\u044f":26,"\u044e":25,"\u044d":16,"\u044c":19,"\u044b":20,"\u044a":18,"\u0449":32,"\u0448":32,"\u0447":26,"\u0446":26,"\u0445":10,"\u0444":30,"\u0443":19,"\u0442":18,"\u0441":26,"\u0440":26,"\u043f":28,"\u043e":31,"\u043d":23,"\u043c":24,"\u043b":35,"\u043a":15,"\u0439":17,"\u0438":17,"\u0437":22,"\u0436":22,"\u0435":26,"\u0434":39,"\u0433":23,"\u0432":21,"\u0431":15,"\u0430":21,"\u0401":7,"\u0424":15,"\u0421":12,"\u041f":9,"\u041e":10,"\u041b":27,"\u0415":8,"\u0414":31,"\u0413":10,"\u0410":27,".":22,"-":31,",":22}},"\u0423":{"d":"50,3v-21,0,-34,-1,-30,-25v1,-11,22,-3,30,-5v33,7,39,-40,50,-64v-15,0,-21,-4,-28,-22r-54,-145v-4,-14,16,-8,27,-9v3,0,5,2,6,5r51,135v2,7,4,6,10,6r55,-141v3,-9,18,-4,28,-5v5,0,7,4,5,9r-80,206v-14,37,-29,55,-70,55","w":211,"k":{"\u0451":22,"\u044f":25,"\u044e":18,"\u044d":18,"\u044c":18,"\u044b":18,"\u044a":11,"\u0449":25,"\u0448":25,"\u0447":18,"\u0446":22,"\u0445":18,"\u0444":25,"\u0443":18,"\u0442":18,"\u0441":29,"\u0440":22,"\u043f":25,"\u043e":25,"\u043d":22,"\u043c":22,"\u043b":36,"\u043a":18,"\u0439":18,"\u0438":22,"\u0437":22,"\u0436":18,"\u0435":25,"\u0434":36,"\u0433":14,"\u0432":14,"\u0431":18,"\u0430":29,"\u0401":12,"\u042f":11,"\u0424":13,"\u0421":14,"\u041f":10,"\u041e":14,"\u041b":34,"\u0415":12,"\u0414":36,"\u0413":9,"\u0410":23,".":23,",":20}},"\u0424":{"d":"152,-270v12,3,3,28,6,41v70,-3,118,21,115,94v-2,65,-49,87,-115,84v-3,23,12,61,-26,51v-14,-4,-3,-35,-6,-51v-71,3,-118,-22,-115,-96v2,-63,49,-85,115,-82v1,-21,-9,-49,26,-41xm240,-135v0,-52,-26,-68,-82,-66r0,122v51,6,82,-14,82,-56xm44,-147v0,52,25,73,82,68r0,-122v-50,-3,-82,13,-82,54","w":284,"k":{"\u0443":13,"\u043b":22,"\u0434":32,"\u0425":21,"\u0423":13,"\u0422":15,"\u041b":18,"\u0416":23,"\u0414":36,"\u0410":18,".":45,",":45}},"\u0425":{"d":"216,-9v3,4,2,9,-4,9v-12,-1,-26,4,-31,-5r-65,-105r-65,105v-5,10,-18,3,-29,5v-5,0,-7,-5,-4,-9r80,-127r-80,-123v-3,-4,0,-8,5,-8v10,1,25,-3,30,3r64,103r63,-103v5,-6,18,-2,28,-3v5,0,8,4,5,8r-78,124","w":232,"k":{"\u0447":23,"\u0446":11,"\u0444":12,"\u0442":12,"\u0441":9,"\u043e":11,"\u0439":11,"\u0438":11,"\u0435":13,"\u0401":11,"\u0429":7,"\u0428":7,"\u0427":11,"\u0426":7,"\u0424":22,"\u0421":14,"\u041e":19,"\u0419":7,"\u0418":7,"\u0415":12,"-":23}},"\u0426":{"d":"207,0r-130,0v-18,0,-49,-4,-49,-45r0,-215v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,215v0,11,1,16,16,16r91,0v15,0,16,-5,16,-16r0,-215v0,-11,16,-6,26,-7v4,0,7,3,7,7r-2,231v10,1,25,-4,25,7r0,58v0,11,-16,6,-26,7v-14,-3,-4,-29,-7,-43","w":247,"k":{"\u0442":17,"\u0427":18,"\u0424":12,"\u0422":11,"\u0419":7,"\u0418":7,"\u0415":9}},"\u0427":{"d":"201,-7v0,10,-15,6,-25,7v-4,0,-8,-3,-8,-7r0,-104v-67,13,-145,16,-144,-70r0,-79v0,-10,32,-12,33,0v4,59,-20,126,55,126v11,0,46,-3,56,-6r0,-120v0,-11,17,-6,27,-7v4,0,6,3,6,7r0,253","w":229},"\u0428":{"d":"275,-45r0,-215v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,215v0,41,-31,45,-49,45r-182,0v-18,0,-49,-4,-49,-45r0,-215v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,215v0,11,1,16,16,16r75,0r0,-231v0,-10,15,-6,25,-7v4,0,7,3,7,7r0,231r75,0v15,0,16,-5,16,-16","w":335},"\u0429":{"d":"184,-29r75,0v15,0,16,-5,16,-16r0,-215v0,-11,16,-6,26,-7v4,0,7,3,7,7r-2,231v10,1,25,-4,25,7r0,58v0,11,-16,6,-26,7v-14,-3,-4,-29,-7,-43r-221,0v-18,0,-49,-4,-49,-45r0,-215v0,-11,16,-6,26,-7v4,0,7,3,7,7r0,215v0,11,1,16,16,16r75,0r0,-231v0,-10,15,-6,25,-7v4,0,7,3,7,7r0,231","w":340,"k":{"\u0442":17,"\u0427":18,"\u0424":12,"\u0422":11,"\u0419":7,"\u0418":7,"\u0415":9}},"\u042a":{"d":"231,-80v0,87,-90,89,-164,79v-8,-1,-12,-4,-12,-13r0,-224v-20,-3,-53,11,-46,-22v0,-4,3,-7,7,-7r66,0v4,0,6,2,6,6r0,106v69,-7,143,2,143,75xm88,-27v54,4,118,5,110,-53v4,-52,-59,-52,-110,-47r0,100","w":243,"k":{"\u0442":14,"\u0427":19,"\u0425":11,"\u0424":6,"\u0422":32,"\u041b":7,"\u0416":7,"\u0410":7}},"\u042b":{"d":"283,-7v0,11,-17,6,-27,7v-4,0,-6,-3,-6,-7r0,-254v0,-10,30,-10,33,0r0,254xm204,-80v0,87,-90,89,-164,79v-8,-1,-12,-4,-12,-13r0,-247v1,-9,30,-10,33,0r0,106v69,-7,143,2,143,75xm61,-27v54,4,118,5,110,-53v4,-52,-59,-52,-110,-47r0,100","w":310},"\u042c":{"d":"204,-80v0,87,-90,89,-164,79v-8,-1,-12,-4,-12,-13r0,-247v1,-9,30,-10,33,0r0,106v69,-7,143,2,143,75xm61,-27v54,4,118,5,110,-53v4,-52,-59,-52,-110,-47r0,100","w":216,"k":{"\u0442":14,"\u0436":6,"\u0427":19,"\u0425":11,"\u0424":6,"\u0422":32,"\u041b":7,"\u0416":7,"\u0410":7}},"\u042d":{"d":"42,-153r119,0v-2,-93,-66,-91,-134,-85v-11,1,-6,-12,-7,-20v0,-4,3,-6,7,-7v83,-14,165,-6,167,118r0,27v-3,124,-83,132,-167,118v-10,-1,-7,-12,-7,-22v0,-5,2,-6,7,-6v69,9,138,6,134,-95r-119,0v-9,0,-7,-12,-7,-21v0,-4,3,-7,7,-7","w":206,"k":{"\u0443":9,"\u043b":15,"\u0434":13,"\u0427":9,"\u0425":12,"\u0423":9,"\u0422":7,"\u041b":7,"\u0416":19,"\u0414":9,"\u0410":7}},"\u042e":{"d":"312,-111v0,80,-40,114,-97,114v-60,0,-100,-40,-97,-123r-54,0r0,113v0,11,-16,6,-26,7v-4,0,-6,-3,-6,-7r0,-254v0,-11,17,-4,26,-6v4,0,6,2,6,6r0,112r54,0v-3,-83,38,-121,97,-121v57,0,97,33,97,113r0,46xm215,-27v55,0,64,-61,64,-130v0,-60,-24,-83,-64,-83v-55,0,-64,60,-64,129v0,60,24,84,64,84","w":334,"k":{"\u0443":9,"\u0434":12,"\u0427":8,"\u0425":13,"\u0423":9,"\u0422":8,"\u041b":11,"\u0416":19,"\u0414":10,"\u0410":11}},"\u042f":{"d":"200,-7v0,11,-16,6,-26,7v-4,0,-6,-3,-6,-7r0,-106r-49,1r-65,107v-6,10,-20,3,-32,5v-4,0,-6,-5,-4,-8r66,-109v-34,-9,-57,-34,-57,-76v0,-81,90,-82,165,-74v6,1,8,3,8,8r0,252xm168,-141r0,-98v-51,-3,-112,-5,-108,49v4,53,47,52,108,49","w":228},"\u0401":{"d":"145,-335v16,8,13,55,-14,43v-13,-1,-6,-24,-7,-36v-1,-9,12,-7,21,-7xm82,-335v16,8,13,55,-14,43v-13,-1,-6,-24,-7,-36v-1,-9,12,-7,21,-7xm175,-27v8,3,5,26,0,28v-14,1,-49,2,-70,2v-50,0,-77,-19,-77,-67r0,-139v0,-48,27,-67,77,-67v35,0,55,1,70,2v6,2,7,25,0,28v-45,3,-124,-15,-114,37r0,50r110,0v10,0,8,11,8,21v0,4,-4,7,-8,7r-110,0v5,47,-21,98,44,98r70,0","w":198},"\u0430":{"d":"162,-7v0,10,-14,6,-23,7v-7,0,-9,-7,-8,-15v-42,29,-114,29,-114,-45v0,-48,48,-62,114,-58v2,-35,-5,-56,-39,-56v-23,0,-41,1,-55,3v-10,1,-8,-10,-8,-18v0,-4,2,-6,7,-7v15,-3,32,-5,56,-5v99,-4,64,109,70,194xm131,-38r0,-58v-44,-1,-92,0,-82,40v0,49,54,34,82,18","w":186,"k":{"\u0443":9,"\u0442":4}},"\u0431":{"d":"178,-104v0,65,-19,107,-80,107v-59,0,-80,-40,-80,-107v0,-75,2,-124,76,-138v18,-3,52,-9,50,-24v1,-8,27,-8,30,0v-1,66,-114,27,-120,86v52,-34,124,-2,124,76xm98,-25v41,0,48,-33,48,-79v0,-40,-13,-63,-48,-63v-41,0,-48,34,-48,80v0,40,13,62,48,62","w":196,"k":{"\u0447":11,"\u0445":11,"\u0443":12,"\u0442":13,"\u043b":8,"\u0436":13,"\u0434":10}},"\u0432":{"d":"24,-188v8,-20,31,-11,68,-13v42,-2,86,8,85,56v0,17,-8,35,-26,42v21,9,28,25,28,45v0,45,-39,61,-91,61v-19,0,-64,5,-64,-13r0,-178xm56,-115v40,-3,86,13,89,-32v2,-32,-54,-29,-89,-27r0,59xm56,-24v43,3,96,1,91,-36v-6,-43,-52,-26,-91,-30r0,66","w":199,"k":{"\u044f":6,"\u0442":7,"\u043b":6,"\u0436":9,"\u0434":4}},"\u0433":{"d":"133,-171r-63,0v-11,0,-14,3,-14,14r0,150v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-150v6,-66,58,-34,109,-41v9,-1,7,11,7,20v0,4,-3,7,-7,7","w":147,"k":{"\u0451":7,"\u044f":8,"\u044a":-15,"\u0444":7,"\u0441":7,"\u043e":7,"\u043b":20,"\u0435":7,"\u0434":28,"\u041b":12,"\u0410":12}},"\u0434":{"d":"184,-27v9,1,24,-4,24,6r0,53v0,10,-14,7,-24,7v-14,0,-6,-26,-8,-39r-136,0v-1,20,8,46,-24,39v-15,-7,-7,-41,-7,-60v0,-8,11,-6,19,-6r42,-146v13,-38,62,-41,73,-1xm99,-166r-37,139r89,0r-38,-139v-1,-9,-13,-7,-14,0","w":216,"k":{"\u0451":9,"\u044a":7,"\u0449":7,"\u0448":7,"\u0447":28,"\u0446":11,"\u0444":12,"\u0443":15,"\u0442":31,"\u0441":13,"\u043e":13,"\u0437":4,"\u0435":12,"\u0431":8,"\u0430":11}},"\u0435":{"d":"177,-116v-1,10,3,27,-7,27r-120,0v-8,74,57,69,114,60v9,-1,7,9,7,17v0,5,-1,7,-7,8v-72,14,-141,16,-146,-80v-3,-69,17,-117,80,-117v53,0,79,34,79,85xm145,-113v1,-42,-14,-60,-47,-60v-32,0,-49,20,-48,60r95,0","w":195,"k":{"\u0443":8,"\u0442":11,"\u0436":15,"\u0434":4}},"\u0436":{"d":"263,-8v3,12,-17,7,-29,8v-4,0,-5,-1,-8,-5r-72,-88r0,86v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-86r-71,88v-6,9,-21,3,-34,5v-4,0,-5,-5,-3,-8r80,-96v-26,-31,-58,-56,-81,-90v4,-7,29,-6,37,-1r72,81r0,-77v0,-10,32,-12,32,0r0,77r72,-81v5,-6,43,-7,36,5r-79,86","w":276,"k":{"\u0451":14,"\u0449":12,"\u0448":12,"\u0447":18,"\u0446":8,"\u0444":15,"\u0441":14,"\u043e":15,"\u0439":7,"\u0438":7,"\u0435":15}},"\u0437":{"d":"22,-177v-3,-33,35,-19,59,-24v47,0,81,12,80,57v0,15,-9,32,-27,41v59,35,16,106,-53,106v-19,0,-37,-3,-52,-5v-7,-1,-8,-10,-7,-19v0,-6,3,-6,7,-6v42,3,104,13,99,-33v6,-37,-54,-30,-91,-30v-9,1,-7,-11,-7,-19v0,-4,3,-6,7,-6v37,0,99,7,91,-32v5,-37,-63,-27,-99,-24v-4,0,-7,0,-7,-6","w":182,"k":{"\u0443":7,"\u0442":7,"\u0436":12,"\u0434":7}},"\u0438":{"d":"24,-10r0,-181v0,-12,16,-6,26,-7v4,0,6,2,6,7r0,141v29,-43,58,-95,85,-141v7,-11,20,-5,34,-7v6,0,8,2,8,10r0,181v0,11,-15,6,-25,7v-4,0,-6,-3,-6,-7r0,-140v0,-1,-1,-2,-2,-1r-83,142v-6,9,-43,12,-43,-4","w":207},"\u0439":{"d":"161,-274v-6,66,-112,67,-118,0v-2,-9,10,-6,17,-6v4,0,6,1,6,5v4,38,72,39,72,0v0,-9,12,-4,19,-5v4,0,4,3,4,6xm24,-10v0,15,37,15,43,4r83,-142v1,-1,2,0,2,1r0,140v0,11,15,6,25,7v4,0,6,-3,6,-7r0,-181v2,-16,-15,-10,-27,-10v-8,0,-11,0,-15,7r-84,141v0,1,-1,1,-1,0r0,-141v0,-12,-15,-5,-25,-7v-4,0,-7,2,-7,7r0,181","w":207},"\u043a":{"d":"165,-8v3,12,-17,7,-29,8v-4,0,-5,-1,-8,-5r-72,-88r0,86v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-184v0,-10,32,-12,32,0r0,77r72,-81v5,-5,43,-7,36,5r-79,86","w":178,"k":{"\u0451":14,"\u0449":12,"\u0448":12,"\u0447":18,"\u0446":8,"\u0444":15,"\u0441":14,"\u043e":15,"\u0439":7,"\u0438":7,"\u0435":15}},"\u043b":{"d":"148,-5r-44,-161v-1,-8,-12,-8,-14,0r-44,161v-2,8,-33,10,-33,-3r47,-165v14,-39,63,-40,74,-1r47,168v-1,9,-29,9,-33,1","w":193,"k":{"\u0451":8,"\u044a":6,"\u0449":8,"\u0448":8,"\u0447":22,"\u0446":11,"\u0444":8,"\u0443":18,"\u0442":27,"\u0441":9,"\u043e":11,"\u0435":12,"\u0431":8}},"\u043c":{"d":"214,-7v0,10,-14,6,-24,7v-4,0,-7,-3,-7,-7r0,-152r-41,76v-5,12,-39,12,-45,0r-42,-76r0,152v0,10,-14,6,-23,7v-4,0,-8,-3,-8,-7r0,-184v2,-12,35,-10,43,-2r52,95v19,-30,35,-64,53,-95v5,-7,38,-11,42,2r0,184","w":238},"\u043d":{"d":"183,-7v0,10,-14,6,-24,7v-4,0,-7,-3,-7,-7r0,-80r-96,0r0,80v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-184v0,-10,32,-12,32,0r0,77r96,0r0,-77v0,-10,14,-6,24,-7v4,0,7,3,7,7r0,184","w":207},"\u043e":{"d":"178,-113v0,68,-17,116,-80,116v-63,0,-80,-48,-80,-116v0,-53,27,-88,80,-88v53,0,80,35,80,88xm98,-25v43,0,49,-40,49,-88v0,-37,-15,-60,-49,-60v-43,0,-48,40,-48,88v0,37,14,60,48,60","w":196,"k":{"\u0445":11,"\u0443":10,"\u0442":13,"\u043b":9,"\u0436":14,"\u0434":9}},"\u043f":{"d":"183,-157r0,150v0,10,-14,6,-24,7v-4,0,-7,-3,-7,-7r0,-150v0,-11,-3,-14,-14,-14r-68,0v-11,0,-14,3,-14,14r0,150v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-150v6,-67,61,-41,114,-41v17,0,45,0,45,41","w":207,"k":{"\u0443":4}},"\u0440":{"d":"177,-112v0,88,-36,131,-121,111r0,65v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-248v0,-5,2,-7,8,-8v19,-5,44,-9,66,-9v54,0,79,35,79,89xm98,-24v44,2,47,-40,47,-88v0,-38,-11,-62,-47,-62v-15,0,-32,2,-42,4r0,142v12,2,30,4,42,4","w":194,"k":{"\u0445":11,"\u0443":8,"\u0442":12,"\u0436":14,"\u0434":9}},"\u0441":{"d":"147,-22v5,33,-28,24,-52,25v-58,3,-77,-48,-77,-116v0,-72,54,-99,122,-84v11,2,6,12,7,21v-9,14,-33,-1,-52,3v-38,-4,-45,40,-45,88v0,61,39,66,89,57v4,0,8,2,8,6","w":162,"k":{"\u0441":5}},"\u0442":{"d":"170,-198v11,0,10,27,0,26r-59,0r0,165v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-165r-59,0v-9,0,-7,-11,-7,-19v0,-4,3,-7,7,-7r150,0","w":190,"k":{"\u0451":13,"\u044f":11,"\u044a":-8,"\u0444":12,"\u0441":11,"\u043e":13,"\u043b":25,"\u0435":12,"\u0434":29,"\u0433":10,"\u0430":7}},"\u0443":{"d":"53,71v-18,0,-44,4,-38,-22v2,-13,29,-2,40,-4v27,5,33,-21,39,-45v-17,0,-24,-1,-32,-25r-48,-164v-2,-12,15,-8,26,-9v3,0,5,3,6,6r43,156v3,10,5,8,13,8r43,-165v3,-8,37,-10,33,4r-60,207v-11,39,-24,53,-65,53","w":192,"k":{"\u044f":4,"\u0444":7,"\u0441":4,"\u043e":7,"\u043b":18,"\u0435":4,"\u0434":22,"\u0430":4,".":23,",":20}},"\u0444":{"d":"165,-264r0,65v85,-13,116,27,116,113v0,72,-45,99,-116,86r0,64v0,10,-15,6,-25,7v-4,0,-6,-3,-6,-7r0,-64v-81,16,-116,-22,-116,-112v0,-67,42,-100,116,-87r0,-65v0,-10,14,-6,24,-7v4,0,7,3,7,7xm249,-86v0,-69,-21,-99,-84,-86r0,145v52,10,84,-2,84,-59xm50,-112v-7,69,18,101,84,85r0,-145v-50,-9,-91,6,-84,60","w":298,"k":{"\u0445":11,"\u0443":7,"\u0442":13,"\u043b":10,"\u0436":14,"\u0434":9}},"\u0445":{"d":"183,-8v3,4,2,8,-4,8v-10,-1,-25,3,-30,-3r-51,-75r-52,74v-4,8,-17,3,-27,4v-5,0,-6,-3,-3,-8r65,-93r-61,-88v-4,-5,-2,-9,3,-9v12,2,25,-4,31,5r46,68r46,-68v5,-10,17,-3,28,-5v5,0,6,4,3,9r-60,86","w":196,"k":{"\u0451":11,"\u0449":7,"\u0448":7,"\u0447":11,"\u0446":7,"\u0444":11,"\u0441":14,"\u043e":14,"\u0435":14,"\u0431":8}},"\u0446":{"d":"152,-41r0,-150v0,-10,14,-6,24,-7v4,0,7,3,7,7r-1,164v8,1,21,-3,21,6r0,53v0,10,-14,6,-24,7v-13,-2,-5,-26,-7,-39r-102,0v-17,0,-46,0,-46,-41r0,-150v0,-10,32,-12,32,0r0,150v0,11,3,14,14,14r68,0v11,0,14,-3,14,-14","w":210,"k":{"\u0447":10,"\u0442":13}},"\u0447":{"d":"172,-7v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-74v-54,8,-123,15,-122,-53r0,-57v0,-10,14,-6,24,-7v4,0,8,3,8,7v3,45,-16,89,44,89v9,0,36,-2,46,-4r0,-85v0,-10,15,-6,25,-7v4,0,7,3,7,7r0,184","w":196},"\u0448":{"d":"267,-191r0,150v0,41,-28,41,-45,41r-152,0v-17,0,-46,0,-46,-41r0,-150v0,-10,32,-12,32,0r0,150v0,11,3,14,14,14r60,0r0,-164v0,-10,14,-6,24,-7v4,0,8,3,8,7r0,164r60,0v11,0,13,-3,13,-14r0,-150v0,-10,32,-12,32,0","w":291,"k":{"\u0434":4}},"\u0449":{"d":"267,-191r-1,164v8,1,21,-3,21,6r0,53v0,10,-14,6,-24,7v-13,-2,-5,-26,-7,-39r-186,0v-17,0,-46,0,-46,-41r0,-150v0,-10,32,-12,32,0r0,150v0,11,3,14,14,14r60,0r0,-164v0,-10,14,-6,24,-7v4,0,8,3,8,7r0,164r60,0v11,0,13,-3,13,-14r0,-150v0,-10,32,-12,32,0","w":295,"k":{"\u0447":12,"\u0442":9}},"\u044a":{"d":"109,3v-28,0,-59,5,-66,-13r0,-161v-18,-2,-44,8,-38,-20v8,-15,43,-4,63,-7v4,0,7,3,7,7r0,70v64,-2,125,3,125,63v0,45,-39,61,-91,61xm75,-26v41,2,100,3,93,-35v5,-34,-53,-35,-93,-32r0,67","w":214,"k":{"\u0447":12,"\u0445":7,"\u0443":14,"\u0442":28,"\u043b":9,"\u0436":14}},"\u044b":{"d":"241,-7v0,10,-15,6,-25,7v-4,0,-7,-3,-7,-7r0,-184v0,-10,15,-6,25,-7v4,0,7,3,7,7r0,184xm90,3v-28,0,-59,5,-66,-13r0,-181v0,-10,32,-12,32,0r0,70v64,-2,125,3,125,63v0,45,-39,61,-91,61xm56,-26v41,2,100,3,93,-35v5,-34,-53,-35,-93,-32r0,67","w":268},"\u044c":{"d":"90,3v-28,0,-59,5,-66,-13r0,-181v0,-10,32,-12,32,0r0,70v64,-2,125,3,125,63v0,45,-39,61,-91,61xm56,-26v41,2,100,3,93,-35v5,-34,-53,-35,-93,-32r0,67","w":195,"k":{"\u0447":12,"\u0445":7,"\u0443":14,"\u0442":28,"\u043b":9,"\u0436":14}},"\u044d":{"d":"16,-176v-5,-33,28,-24,52,-25v62,-3,77,48,77,116v0,72,-54,99,-122,84v-11,-2,-6,-12,-7,-21v0,-4,2,-6,7,-6v53,8,94,3,90,-59r-74,0v-9,0,-8,-11,-8,-20v0,-4,4,-7,8,-7r74,0v2,-60,-39,-65,-90,-56v-5,0,-7,-2,-7,-6","w":162,"k":{"\u044d":5,"\u0447":10,"\u0445":7,"\u0443":7,"\u0442":6,"\u043b":7,"\u0436":18,"\u0434":8}},"\u044e":{"d":"260,-113v0,68,-17,116,-80,116v-54,0,-81,-36,-80,-91r-44,0r0,81v0,10,-14,6,-24,7v-4,0,-8,-3,-8,-7r0,-184v0,-10,32,-12,32,0r0,77r44,0v0,-52,27,-87,80,-87v53,0,80,35,80,88xm180,-25v43,0,48,-40,48,-88v0,-37,-14,-60,-48,-60v-43,0,-49,40,-49,88v0,37,15,60,49,60","w":277,"k":{"\u0445":11,"\u0443":7,"\u0442":8,"\u043b":7,"\u0436":14,"\u0434":7}},"\u044f":{"d":"170,-7v0,10,-32,12,-32,0r0,-74r-33,1r-54,76v-6,8,-18,2,-29,4v-5,0,-8,-6,-5,-9r55,-75v-30,-6,-48,-26,-48,-58v0,-62,78,-63,137,-56v6,1,9,2,9,7r0,184xm138,-107r0,-67v-38,-3,-89,-1,-83,34v-3,35,42,36,83,33","w":194},"\u0451":{"d":"138,-274v14,9,13,54,-14,43v-13,-1,-6,-24,-7,-36v-1,-9,12,-7,21,-7xm75,-274v14,9,13,54,-14,43v-13,-1,-6,-24,-7,-36v-1,-9,12,-7,21,-7xm177,-116v-1,10,3,27,-7,27r-120,0v-8,74,57,69,114,60v9,-1,7,9,7,17v0,5,-1,7,-7,8v-72,14,-141,16,-146,-80v-3,-69,17,-117,80,-117v53,0,79,34,79,85xm145,-113v1,-42,-14,-60,-47,-60v-32,0,-49,20,-48,60r95,0","w":195,"k":{"\u0445":7,"\u0443":8,"\u0442":11,"\u0436":12,"\u0434":7}},"\u00a0":{"w":88}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Digitised data (c) 2004 Monotype Imaging. All Rights Reserved. Neo Sans is
 * designed by Sebastian Lester.
 * 
 * Trademark:
 * Neo Sans is a trademark of Monotype Imaging Inc. and may be registered in
 * certain jurisdictions.
 * 
 * Full name:
 * NeoSansPro-Italic
 * 
 * Vendor URL:
 * http://www.agfamonotype.com.
 * 
 * License information:
 * http://www.agfamonotype.com/html/type/license.html.
 */
Cufon.registerFont({"w":0,"face":{"font-family":"Neo Sans Pro","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 11 5 4 3 5 4 11 2 4","ascent":"275","descent":"-85","x-height":"3","bbox":"-23.1761 -307.291 330.785 76","underline-thickness":"20.52","underline-position":"-7.56","slope":"-12","unicode-range":"U+0020-U+0451"},"glyphs":{" ":{},"!":{"d":"69,-264v3,-11,35,-11,33,0r-36,187v-1,10,-27,11,-27,0xm31,-41v3,-11,32,-10,31,0v-5,19,1,49,-31,41v-14,-4,0,-29,0,-41"},"\"":{"d":"144,-271v8,1,27,-5,22,7r-33,68v-3,10,-21,9,-28,4r30,-72v2,-5,5,-7,9,-7xm82,-271v8,1,28,-5,23,7r-33,68v-3,10,-21,9,-28,4v8,-25,20,-48,30,-72v2,-5,4,-7,8,-7"},"#":{"d":"212,-191v15,2,47,-9,38,15v-5,13,-28,5,-43,7r-20,73v15,2,48,-9,38,15v-5,13,-29,5,-44,7r-18,67v0,10,-25,11,-28,2r18,-69r-56,0r-17,67v0,9,-29,12,-29,0r18,-67v-14,-2,-45,9,-36,-15v5,-13,28,-5,42,-7r19,-73v-15,-2,-46,8,-36,-15v5,-12,27,-5,42,-7r18,-70v1,-8,28,-11,29,0r-18,70r55,0r19,-70v1,-8,27,-10,28,0xm179,-169r-56,0r-20,73r56,0"},"$":{"d":"154,-307v9,1,24,-4,22,7r-5,30v26,5,67,-7,54,26v-1,4,-2,6,-7,6v-45,1,-122,-21,-122,38v0,40,118,72,107,120v0,46,-36,75,-80,81v-4,19,2,50,-31,41v-14,-4,1,-27,0,-39v-24,-1,-45,-1,-57,-10v3,-8,0,-23,11,-23v52,0,122,14,122,-46v0,-42,-105,-67,-105,-121v0,-46,35,-67,77,-72v4,-13,0,-36,14,-38"},"%":{"d":"189,-89v3,-77,111,-77,96,0v-9,45,-21,92,-64,92v-45,0,-44,-53,-32,-92xm260,-267v7,1,26,-5,18,6r-195,255v-5,10,-19,8,-30,5r198,-260v4,-5,5,-6,9,-6xm54,-212v3,-77,111,-77,96,0v-9,45,-21,92,-64,92v-45,0,-44,-53,-32,-92xm257,-56v4,-25,20,-71,-13,-71v-30,0,-41,53,-41,86v0,17,9,23,22,23v16,0,27,-12,32,-38xm122,-179v4,-25,20,-71,-13,-71v-30,0,-41,53,-41,87v0,17,9,22,22,22v16,0,27,-12,32,-38"},"&":{"d":"215,-130v2,-10,30,-9,28,0v-6,32,-17,63,-39,88v9,13,20,24,28,39v-5,6,-28,4,-35,0r-14,-19v-40,36,-153,38,-153,-32v0,-39,24,-59,66,-83v-15,-20,-30,-41,-29,-65v0,-48,32,-68,78,-68v46,0,71,19,71,49v0,37,-36,64,-80,89r52,70v15,-20,22,-44,27,-68xm187,-221v0,-16,-10,-25,-42,-25v-62,0,-59,67,-24,94v30,-19,66,-29,66,-69xm169,-41r-58,-76v-26,15,-49,29,-49,62v0,49,84,36,107,14"},"(":{"d":"149,-269v-73,92,-111,219,-62,341v-3,5,-23,6,-27,-1v-56,-105,-19,-259,58,-338v6,-7,22,-5,31,-2"},")":{"d":"0,73v73,-91,112,-219,62,-340v2,-6,23,-7,27,0v56,105,19,259,-58,338v-6,7,-22,5,-31,2"},"*":{"d":"181,-231v6,2,12,18,3,21r-45,14v9,17,44,41,16,55v-15,-10,-21,-29,-33,-42v-12,13,-18,32,-33,42v-5,-4,-18,-8,-12,-17r28,-38v-16,-9,-60,-5,-46,-32v14,-7,36,10,53,12r-1,-47v-1,-8,8,-7,16,-7v13,7,2,37,5,54"},"+":{"d":"207,-154v10,0,13,26,0,26r-62,0r0,62v1,10,-12,6,-20,7v-4,0,-5,-3,-5,-7r0,-62r-62,0v-10,1,-7,-11,-7,-20v0,-4,3,-6,7,-6r62,0r0,-62v-1,-10,12,-6,20,-7v4,0,5,3,5,7r0,62r62,0"},",":{"d":"44,-46v8,1,29,-4,23,6r-39,68v-3,10,-20,9,-27,4r34,-72v2,-5,5,-6,9,-6"},"-":{"d":"117,-119v10,2,5,27,-5,27r-72,0v-8,-2,-6,-26,5,-27r72,0"},".":{"d":"30,-41v3,-11,32,-10,31,0v-5,18,1,50,-31,41v-14,-4,0,-28,0,-41"},"\/":{"d":"144,-267v9,1,26,-3,21,7r-125,253v-2,10,-25,10,-31,3r127,-256v2,-4,4,-7,8,-7"},"0":{"d":"157,-270v79,0,75,90,60,161v-18,81,-51,112,-108,112v-77,0,-77,-89,-61,-161v18,-81,53,-112,109,-112xm184,-109v9,-49,29,-133,-32,-133v-57,0,-80,95,-82,167v0,37,15,50,43,50v32,0,61,-25,71,-84"},"1":{"d":"180,0r-148,0v-11,0,-3,-14,-3,-22v10,-14,45,-3,65,-6r37,-206r-61,24v-3,1,-8,2,-7,-3v3,-8,0,-20,7,-23v32,-10,54,-29,93,-31v4,0,6,2,5,6r-41,233r58,0v11,0,3,14,3,22v-1,4,-4,6,-8,6"},"2":{"d":"227,-216v0,90,-164,101,-163,188r120,0v10,0,4,14,4,22v-1,4,-5,6,-9,6r-143,0v-14,-4,0,-25,0,-36v0,-59,63,-93,112,-121v28,-17,47,-29,47,-59v0,-38,-76,-26,-113,-21v-10,2,-5,-12,-4,-19v38,-27,149,-22,149,40"},"3":{"d":"224,-216v0,32,-16,63,-46,77v19,10,24,29,24,46v0,90,-86,109,-164,88v-10,-1,-4,-12,-3,-19v1,-4,2,-7,8,-6v64,12,129,8,126,-62v0,-17,-8,-34,-35,-34r-65,0v-10,1,-4,-12,-4,-19v1,-4,2,-7,8,-7r66,0v35,0,51,-27,51,-59v0,-46,-72,-31,-112,-26v-8,-2,-6,-26,6,-26v52,-14,140,-11,140,47"},"4":{"d":"184,-99v20,0,47,-5,34,21v-3,14,-25,4,-39,7r-11,64v-1,12,-18,6,-29,7v-4,0,-5,-2,-4,-7r11,-64r-104,0v-23,1,-11,-31,-3,-41r132,-150v5,-7,21,-4,33,-5v7,0,9,2,8,7xm151,-99r20,-120v-38,37,-72,78,-106,119v26,3,58,0,86,1"},"5":{"d":"97,-267r124,0v13,0,2,14,3,21v-1,4,-3,6,-8,6r-103,0r-20,78v65,-3,113,13,113,62v0,91,-86,118,-170,96v-10,-1,-5,-12,-4,-20v1,-4,4,-7,9,-6v69,15,135,2,132,-68v7,-43,-62,-37,-110,-37v-5,0,-6,-3,-5,-6r31,-120v1,-4,4,-6,8,-6"},"6":{"d":"47,-163v18,-105,87,-117,174,-101v11,1,5,13,4,21v-1,6,-3,7,-9,6v-18,-4,-38,-6,-61,-6v-54,-1,-67,36,-76,84v51,-14,132,-10,132,53v0,64,-40,109,-106,109v-87,0,-70,-96,-58,-166xm178,-104v0,-51,-67,-35,-103,-30v-11,39,-23,110,35,110v45,0,68,-39,68,-80"},"7":{"d":"199,-267v36,-3,43,22,30,42r-142,220v-6,9,-20,3,-32,5v-6,-1,-4,-5,-2,-9r149,-229v-38,-3,-84,0,-124,-1v-11,0,-4,-15,-3,-22v1,-4,2,-6,8,-6r116,0"},"8":{"d":"234,-214v0,31,-17,61,-46,74v17,10,25,29,25,48v0,63,-43,96,-106,95v-42,0,-75,-24,-75,-64v0,-33,17,-64,47,-79v-17,-9,-25,-25,-25,-44v0,-60,48,-87,104,-86v44,0,76,19,76,56xm202,-208v1,-26,-19,-36,-52,-35v-34,0,-64,21,-64,57v0,26,27,33,61,33v33,0,55,-23,55,-55xm181,-90v0,-26,-25,-37,-61,-37v-37,0,-55,31,-55,64v0,28,18,39,50,38v41,0,66,-25,66,-65"},"9":{"d":"156,-270v87,0,70,95,58,165v-18,105,-87,117,-174,101v-12,-2,-5,-12,-4,-20v1,-6,3,-8,9,-7v19,4,38,6,61,6v54,1,67,-36,76,-84v-51,14,-132,10,-132,-53v0,-64,40,-108,106,-108xm186,-134v12,-43,22,-109,-35,-109v-45,0,-68,38,-68,79v0,51,67,37,103,30"},":":{"d":"57,-191v3,-11,32,-11,32,0v-5,19,2,49,-31,41v-15,-4,-1,-28,-1,-41xm31,-41v3,-11,33,-10,31,0v-4,19,1,50,-31,41v-14,-4,0,-28,0,-41"},";":{"d":"57,-191v3,-11,32,-11,32,0v-5,19,1,49,-32,41v-14,-3,0,-29,0,-41xm40,-46v8,1,29,-4,23,7r-39,68v-3,10,-20,9,-27,4r34,-72v2,-5,5,-7,9,-7"},"<":{"d":"189,-60v5,3,6,9,-1,10v-13,-1,-24,2,-32,-5r-87,-74v-8,-8,-8,-16,0,-24r87,-73v7,-8,27,-7,37,-2v0,2,-1,5,-4,7r-94,80"},"=":{"d":"205,-194v12,0,10,26,0,26r-138,0v-10,1,-8,-11,-8,-20v0,-4,4,-6,8,-6r138,0xm205,-114v12,0,10,26,0,26r-138,0v-10,1,-8,-11,-8,-20v0,-4,4,-6,8,-6r138,0"},">":{"d":"203,-153v9,8,9,16,0,24r-87,74v-7,9,-19,4,-32,5v-6,-1,-5,-7,0,-10r94,-81r-94,-80v-4,-3,-7,-10,0,-10v13,0,24,-2,32,5"},"?":{"d":"76,-70v-9,-1,-23,4,-21,-7v-4,-67,85,-86,88,-145v2,-30,-57,-18,-84,-16v-8,-4,-4,-26,6,-27v45,-10,113,-9,113,39v0,69,-91,81,-93,149v-1,4,-5,7,-9,7xm55,-48v9,1,26,-3,23,8v-4,19,1,47,-31,40v-12,-7,-3,-43,8,-48"},"@":{"d":"162,-175v25,0,48,-3,52,14r-23,113v49,-8,62,-54,62,-97v0,-47,-30,-70,-81,-70v-94,0,-121,78,-128,169v-4,63,71,71,135,63v3,1,6,20,-4,19v-79,14,-175,-13,-152,-105r11,-56v14,-73,64,-111,142,-111v59,0,101,36,101,92v0,94,-51,125,-138,125v-66,0,-62,-50,-49,-99v12,-43,32,-57,72,-57xm180,-147v-31,-5,-55,-1,-60,30v-5,28,-26,82,27,72v5,0,9,0,14,-1"},"A":{"d":"219,-8v1,12,-17,7,-28,8v-3,0,-5,-2,-5,-5r-9,-83r-93,0r-38,83v-2,8,-36,9,-34,-3r108,-235v10,-22,26,-27,42,-27v15,0,28,5,31,27xm175,-117r-12,-118v0,-10,-12,-8,-14,0r-54,118r80,0"},"B":{"d":"219,-91v-1,92,-93,103,-179,90v-9,-1,-10,-5,-9,-13r42,-240v7,-23,38,-16,71,-16v55,0,97,15,94,63v-2,37,-21,60,-50,69v19,8,31,26,31,47xm88,-152v61,3,125,-1,117,-58v5,-38,-61,-32,-101,-31xm66,-27v62,6,122,1,120,-63v7,-38,-59,-39,-102,-36"},"C":{"d":"50,-159v25,-117,85,-117,174,-105v11,1,1,16,1,23v-11,10,-42,1,-66,1v-35,0,-64,21,-77,81v-11,48,-24,132,40,132v21,0,47,-2,60,-3v13,-1,2,14,3,21v-1,4,-2,6,-8,7v-61,12,-140,10,-139,-78v1,-27,7,-54,12,-79"},"D":{"d":"149,-270v65,-4,101,42,89,112r-8,49v-14,103,-95,123,-194,108v-6,-1,-7,-4,-6,-9r43,-247v9,-19,41,-11,76,-13xm205,-158v17,-69,-32,-95,-101,-83r-38,215v70,4,116,-5,131,-83"},"E":{"d":"183,-23v3,38,-44,24,-79,26v-46,3,-71,-24,-64,-67r24,-139v9,-53,38,-67,88,-67v41,0,60,1,70,3v6,2,2,27,-5,27v-50,3,-113,-12,-121,37r-8,50r110,0v10,0,4,13,4,21v-1,4,-3,7,-9,7r-110,0v0,37,-42,102,27,98r68,0v4,0,6,0,5,4"},"F":{"d":"217,-240v-50,2,-113,-12,-121,37r-8,50r110,0v10,-1,4,14,4,21v-1,4,-3,7,-9,7r-110,0r-21,118v0,10,-16,6,-26,7v-5,0,-7,-3,-6,-7r34,-196v9,-54,38,-67,88,-67v39,0,55,1,68,3v12,2,1,14,2,22v0,3,-2,5,-5,5"},"G":{"d":"49,-158v22,-121,95,-118,184,-107v11,1,1,16,1,23v0,4,-2,4,-6,4v-76,-4,-130,-16,-147,80r-11,77v-4,60,52,56,95,52r18,-103v0,-10,32,-12,33,0r-22,121v-1,4,-4,7,-8,8v-64,12,-148,14,-148,-79v0,-26,7,-52,11,-76"},"H":{"d":"230,-260v-1,-10,17,-6,27,-7v4,0,6,2,5,7r-44,253v-2,10,-16,6,-27,7v-4,0,-7,-3,-6,-7r21,-120r-123,0r-21,120v0,10,-17,6,-27,7v-4,0,-6,-3,-5,-7r44,-253v0,-10,17,-6,27,-7v4,0,7,2,6,7r-19,104r123,0"},"I":{"d":"78,-261v1,-10,17,-5,27,-6v5,0,7,1,6,6r-45,254v-1,12,-17,6,-28,7v-5,0,-6,-3,-5,-7"},"J":{"d":"78,-261v1,-10,17,-5,27,-6v4,0,7,1,6,6r-49,274v-4,40,-39,59,-82,49v-9,-10,2,-30,22,-23v19,0,24,-8,27,-26"},"K":{"d":"208,-264v10,-5,44,-7,39,4r-133,122r87,134v-4,7,-30,6,-38,0r-79,-124r-22,121v0,10,-17,6,-27,7v-4,0,-6,-3,-5,-7r44,-254v1,-10,17,-5,27,-6v4,0,7,1,6,6r-20,113"},"L":{"d":"177,-27v6,1,8,24,-2,26v-10,2,-37,4,-71,4v-44,0,-73,-21,-64,-72r34,-191v0,-10,17,-6,27,-7v4,0,7,3,6,7r-36,211v-3,34,72,19,106,22"},"M":{"d":"246,-261v5,-11,23,-4,37,-6v6,0,10,3,9,10r-44,250v0,10,-17,6,-27,7v-4,0,-6,-3,-5,-7r36,-214r-70,107v-6,14,-44,16,-49,0r-33,-108r-38,215v-1,10,-17,6,-27,7v-4,0,-6,-3,-5,-7r43,-250v-1,-14,41,-16,45,-4r38,123v2,6,6,5,9,0"},"N":{"d":"193,-49r38,-212v0,-9,30,-10,32,0r-44,251v0,13,-20,10,-34,10v-8,0,-9,-2,-10,-6r-76,-212r-38,211v-2,11,-18,6,-29,7v-3,0,-4,-1,-3,-4r44,-253v-1,-14,40,-14,44,-3"},"O":{"d":"167,-270v79,0,87,84,69,159v-19,79,-56,114,-117,114v-56,0,-93,-47,-78,-114r8,-46v15,-85,61,-113,118,-113xm203,-111v11,-53,25,-136,-41,-129v-64,-7,-88,82,-90,157v0,41,19,56,52,56v39,0,67,-26,79,-84"},"P":{"d":"84,-267v75,-11,164,-1,146,80v-17,76,-74,83,-150,79r-18,101v0,10,-17,6,-27,7v-4,0,-6,-3,-5,-7r43,-251v1,-5,6,-8,11,-9xm198,-187v15,-55,-42,-58,-95,-54r-19,106v57,6,113,-5,114,-52"},"Q":{"d":"167,-270v79,0,87,84,69,159v-18,72,-49,108,-102,113v-1,17,-12,38,16,36v16,-1,35,-3,26,18v-14,16,-89,13,-78,-24r5,-31v-67,-3,-70,-90,-54,-158v20,-84,61,-113,118,-113xm203,-111v11,-53,25,-136,-41,-129v-64,-7,-88,82,-90,157v0,41,19,56,52,56v39,0,67,-26,79,-84"},"R":{"d":"236,-206v0,50,-29,82,-71,89r47,113v-4,7,-32,8,-36,-1r-45,-107r-51,-1r-18,106v-1,10,-16,6,-27,7v-4,0,-6,-2,-5,-7r44,-252v8,-17,53,-11,74,-11v52,0,88,19,88,64xm202,-190v15,-53,-47,-52,-99,-49r-18,98v51,3,114,1,117,-49"},"S":{"d":"54,-202v0,-74,93,-73,159,-64v12,1,3,14,3,22v-1,4,-2,6,-8,6v-43,0,-122,-18,-122,34v0,48,118,71,107,129v4,72,-89,88,-161,72v-10,-2,-4,-12,-4,-20v1,-5,3,-7,9,-6v52,4,126,9,122,-46v-4,-48,-105,-64,-105,-127"},"T":{"d":"165,-239r-41,232v-2,11,-17,6,-28,7v-4,0,-6,-3,-5,-7r41,-232r-70,0v-11,1,-3,-15,-3,-22v1,-5,4,-6,8,-6r173,0v11,-1,3,15,3,22v-1,4,-2,6,-8,6r-70,0"},"U":{"d":"224,-261v1,-10,18,-5,28,-6v4,0,6,1,5,6r-28,164v-13,71,-48,100,-110,100v-57,0,-86,-39,-75,-100r29,-164v1,-10,17,-5,27,-6v4,0,7,1,6,6r-29,164v-7,41,1,71,47,71v45,0,63,-25,71,-71"},"V":{"d":"231,-262v2,-9,19,-4,29,-5v5,0,8,2,5,8r-108,234v-10,23,-27,28,-41,28v-13,0,-29,-5,-32,-28r-26,-234v-1,-14,17,-6,28,-8v5,0,5,2,5,5r23,229v1,12,12,9,14,0"},"W":{"d":"297,-261v3,-10,18,-5,29,-6v4,0,6,2,4,7r-82,243v-5,26,-56,27,-59,0r-13,-136v-1,0,-3,0,-4,3r-59,133v-7,16,-17,20,-38,18v-12,0,-20,-3,-20,-18r3,-243v0,-11,18,-6,28,-7v4,0,5,2,5,6r-4,234r62,-138v6,-18,22,-15,43,-15v9,0,13,5,14,15r13,138v29,-74,52,-157,78,-234"},"X":{"d":"228,-264v8,-6,37,-6,29,5r-100,124r59,129v0,9,-27,9,-31,1r-49,-104r-83,104v-6,9,-19,3,-31,5v-7,1,-5,-6,-3,-9r104,-128r-57,-124v0,-9,24,-8,30,-3r48,102"},"Y":{"d":"217,-267v10,1,33,-4,25,9r-78,125v-9,14,-17,21,-24,24r-18,102v0,10,-17,6,-27,7v-5,0,-6,-3,-5,-7r18,-102v-6,-3,-12,-10,-16,-24r-33,-125v-4,-13,16,-8,27,-9v4,0,5,2,6,5r29,116v6,15,9,13,17,0r70,-116v2,-4,4,-5,9,-5"},"Z":{"d":"198,-267v44,1,41,30,20,55r-156,180v38,6,90,0,132,2v13,1,2,16,3,24v-1,4,-1,6,-8,6r-124,0v-40,2,-44,-32,-25,-54r153,-177v3,-4,4,-6,-1,-7r-117,0v-12,1,-4,-15,-4,-23v1,-4,3,-6,9,-6r118,0"},"[":{"d":"149,-267v10,0,4,12,4,19v-6,14,-33,4,-50,7r-50,285v18,3,56,-11,45,19v-11,16,-52,3,-75,7v-3,0,-5,-3,-5,-7r57,-324v1,-4,3,-6,7,-6r67,0"},"\\":{"d":"120,-14v6,18,-11,14,-24,14v-4,0,-5,-3,-5,-7r-37,-254v0,-9,16,-5,25,-6v4,0,5,3,5,7"},"]":{"d":"130,-267v3,0,5,2,5,6r-57,324v-1,4,-3,7,-7,7r-67,0v-11,0,-6,-12,-4,-19v5,-14,33,-4,49,-7r50,-285r-41,0v-10,-2,-6,-27,5,-26r67,0"},"^":{"d":"207,-210v2,3,2,7,-3,7v-41,6,-47,-31,-69,-49v-20,17,-32,61,-72,46v11,-22,29,-38,42,-58v9,-12,32,-3,49,-6v5,0,7,1,11,6"},"_":{"d":"179,18v9,-1,5,9,4,14v-1,4,-4,6,-8,6r-185,0v-9,0,-7,-9,-5,-15v1,-4,4,-5,8,-5r186,0"},"a":{"d":"35,-118v16,-87,84,-93,157,-74v6,1,7,3,6,8r-31,177v0,9,-14,7,-23,7v-10,0,-3,-13,-3,-19v-48,46,-130,19,-112,-64xm164,-170v-49,-12,-91,4,-98,55v-5,33,-16,91,24,91v17,0,32,-8,52,-21"},"b":{"d":"91,-197v83,-22,129,31,101,111v-9,83,-77,102,-159,82v-7,-1,-7,-3,-6,-8r44,-252v0,-10,16,-6,26,-7v4,0,7,1,6,7xm160,-86v6,-37,19,-87,-31,-87v-12,0,-31,1,-43,3r-25,143v57,9,90,-5,99,-59"},"c":{"d":"169,-170v-75,-20,-106,30,-106,107v0,46,45,39,81,35v12,-2,5,11,5,19v-6,15,-34,11,-55,12v-61,3,-68,-61,-56,-116v16,-74,63,-98,136,-84v12,2,4,18,4,21v-1,4,-3,7,-9,6"},"d":{"d":"185,-264v2,-11,16,-6,27,-7v4,0,6,2,5,7r-45,252v-1,5,-3,7,-9,8v-23,4,-45,7,-67,7v-64,2,-70,-59,-58,-115v17,-77,59,-99,135,-85xm168,-170v-78,-20,-102,34,-106,107v-2,41,42,41,81,36"},"e":{"d":"134,-201v60,0,75,51,61,104v-1,5,-3,8,-8,8r-121,0v-8,35,1,65,41,65v21,0,46,-2,63,-5v10,-2,4,10,4,17v-1,5,-2,7,-8,8v-67,18,-146,7,-132,-82v10,-64,39,-115,100,-115xm166,-113v6,-34,-2,-60,-37,-60v-32,0,-52,27,-59,60r96,0"},"f":{"d":"161,-249v-26,0,-41,-4,-45,25r-4,26r38,0v10,-1,4,12,4,19v-5,12,-32,3,-47,6r-32,182v-10,51,-38,53,-80,48v-11,-1,-4,-10,-4,-18v12,-14,47,7,53,-30r32,-182v-17,-3,-48,6,-38,-19v4,-12,28,-4,42,-6v5,-54,28,-89,85,-74v10,3,3,11,3,18v-1,4,-2,5,-7,5"},"g":{"d":"98,3v-60,0,-79,-60,-60,-115v11,-91,82,-100,159,-80v7,1,7,3,6,8r-33,184v-10,56,-33,71,-85,71v-27,0,-51,-5,-61,-7v-11,-2,-3,-11,-3,-18v1,-5,2,-6,8,-5v45,4,113,17,110,-44v-9,2,-30,6,-41,6xm168,-170v-51,-11,-90,0,-99,58v-6,38,-19,88,34,88v10,0,29,-1,41,-4"},"h":{"d":"91,-195v58,-18,119,7,108,67r-22,121v0,10,-15,6,-25,7v-4,0,-7,-2,-6,-7r22,-136v5,-38,-53,-33,-82,-25r-28,161v0,10,-16,7,-26,7v-6,0,-7,-3,-6,-7r45,-257v0,-10,16,-6,26,-7v4,0,7,2,6,7"},"i":{"d":"75,-266v1,-10,16,-6,27,-7v14,3,1,25,1,36v0,11,-17,6,-27,7v-14,-3,0,-25,-1,-36xm62,-191v2,-12,15,-6,26,-7v4,0,7,1,6,7r-32,184v-1,10,-16,7,-26,7v-5,0,-7,-3,-6,-7"},"j":{"d":"75,-266v1,-10,16,-6,27,-7v14,3,1,25,1,36v0,11,-17,6,-27,7v-14,-3,0,-25,-1,-36xm24,23r38,-214v2,-12,15,-6,26,-7v4,0,7,1,6,7r-38,214v-7,44,-34,52,-73,46v-10,-2,-2,-12,-3,-19v10,-14,46,8,44,-27"},"k":{"d":"167,-198v9,1,38,-2,27,8r-93,86r66,99v-3,8,-29,9,-35,0r-59,-89r-15,87v-1,11,-16,6,-26,7v-4,0,-7,-3,-6,-7r45,-257v2,-10,15,-7,26,-7v4,0,7,2,6,7r-26,147r82,-78v3,-3,4,-3,8,-3"},"l":{"d":"75,-264v0,-11,16,-6,26,-7v4,0,6,2,5,7r-45,257v0,10,-16,6,-26,7v-4,0,-6,-3,-5,-7"},"m":{"d":"176,-184v51,-35,122,-16,110,51r-22,126v-2,10,-15,6,-26,7v-4,0,-6,-3,-5,-7r23,-141v-1,-37,-44,-26,-72,-14v-1,57,-16,103,-23,155v-2,10,-16,6,-27,7v-4,0,-6,-4,-5,-7r25,-146v-2,-37,-56,-12,-70,-6r-26,152v-2,10,-16,6,-27,7v-4,0,-6,-3,-5,-7r32,-184v0,-10,16,-6,26,-7v10,0,4,13,4,14v28,-20,69,-25,88,0"},"n":{"d":"146,-201v96,0,36,127,31,194v-1,10,-15,6,-25,7v-4,0,-7,-3,-6,-7r21,-119v3,-28,3,-47,-32,-47v-14,0,-28,3,-51,14r-26,152v-2,10,-16,6,-27,7v-4,0,-6,-4,-5,-7r32,-184v0,-9,14,-7,24,-7v10,-1,7,8,6,15v17,-10,34,-18,58,-18"},"o":{"d":"133,-201v64,0,73,59,60,116v-13,54,-38,88,-95,88v-62,0,-74,-59,-60,-116v14,-57,41,-88,95,-88xm162,-85v7,-39,16,-88,-33,-88v-48,0,-65,56,-66,109v0,26,11,39,39,39v32,0,54,-25,60,-60"},"p":{"d":"134,-201v64,-2,70,59,58,115v-16,76,-59,100,-135,85r-12,65v-1,10,-31,12,-32,0r44,-248v1,-5,3,-7,9,-8v20,-5,46,-9,68,-9xm160,-86v6,-36,19,-91,-31,-88v-15,0,-33,2,-43,4r-25,142v54,13,90,-3,99,-58"},"q":{"d":"38,-112v7,-85,82,-102,159,-80v7,1,7,3,6,8r-44,248v-2,10,-15,6,-26,7v-4,0,-7,-3,-6,-7r12,-65v-79,22,-130,-29,-101,-111xm168,-170v-74,-23,-106,34,-106,110v0,43,47,38,82,32"},"r":{"d":"84,-158r-26,151v-2,10,-16,6,-27,7v-4,0,-6,-3,-5,-7r32,-184v2,-10,15,-6,25,-7v8,0,6,9,4,15v20,-15,36,-18,54,-18v13,0,4,14,4,22v-1,4,-4,6,-10,6v-21,0,-33,4,-51,15"},"s":{"d":"44,-148v0,-59,82,-56,127,-48v10,2,4,12,4,19v-14,20,-95,-20,-99,29v9,35,86,50,83,93v-5,62,-76,65,-133,52v-10,-1,-5,-12,-4,-20v1,-5,3,-6,9,-5v40,3,93,16,96,-27v-7,-34,-83,-47,-83,-93"},"t":{"d":"114,-198r39,0v9,0,4,13,3,19v-3,17,-31,5,-47,8r-23,136v-2,18,23,12,38,12v10,0,3,12,3,18v-24,20,-81,8,-72,-41r22,-125v-16,-4,-48,4,-38,-21v5,-13,29,-3,43,-6v4,-22,2,-48,33,-45v5,-1,6,2,5,6"},"u":{"d":"178,-191v0,-10,16,-6,26,-7v5,0,7,4,6,7r-33,184v-2,10,-15,6,-25,7v-7,0,-5,-8,-4,-14v-53,35,-124,17,-110,-62r20,-115v2,-11,15,-6,26,-7v4,0,7,2,6,7r-23,139v0,41,56,27,84,13"},"v":{"d":"186,-198v10,1,30,-4,24,9r-75,163v-10,23,-26,29,-40,29v-14,0,-27,-6,-30,-29r-17,-163v-2,-13,14,-8,25,-9v3,0,6,2,6,7r12,156v2,17,11,14,18,0r68,-156v2,-5,4,-7,9,-7"},"w":{"d":"270,-192v2,-9,17,-5,27,-6v4,0,9,2,6,9r-65,167v-9,32,-55,36,-59,-2v-4,-40,-4,-87,-12,-124v-21,39,-36,84,-55,124v-7,31,-58,41,-59,2r-6,-168v-1,-11,29,-13,32,-2r3,167v25,-42,42,-95,63,-141v6,-14,20,-11,37,-11v8,0,11,3,12,11r14,141v24,-52,40,-113,62,-167"},"x":{"d":"188,-198v9,0,34,-3,23,9r-77,87r50,97v-2,8,-29,8,-34,0r-37,-72v-25,25,-44,55,-72,77v-9,0,-33,3,-24,-8r83,-95r-46,-90v3,-8,28,-8,33,0r34,67v23,-23,41,-52,67,-72"},"y":{"d":"187,-198v10,1,31,-4,25,9r-96,207v-19,49,-51,58,-105,50v-11,-2,-5,-11,-4,-19v2,-13,29,-1,41,-4v26,5,39,-21,47,-45v-17,0,-25,-2,-28,-28r-18,-161v-2,-15,15,-7,26,-9v4,0,5,3,5,6r15,156v1,10,3,8,11,8r73,-165v1,-4,3,-5,8,-5"},"z":{"d":"149,-198v32,0,35,30,19,48r-115,121v26,6,65,0,95,2v11,1,4,13,4,20v-1,5,-3,7,-9,7v-48,-2,-150,16,-114,-46r117,-124v-27,-3,-63,0,-92,-1v-9,0,-5,-13,-4,-20v1,-6,5,-7,9,-7r90,0"},"{":{"d":"132,-267v9,1,24,-3,23,7v4,36,-60,2,-56,42v-10,47,-7,99,-46,120v34,31,7,83,3,129v-1,16,23,13,39,13v13,11,0,32,-20,26v-82,3,-40,-74,-37,-129v0,-13,-4,-20,-15,-29r3,-21v62,-26,3,-172,106,-158"},"|":{"d":"89,63v0,11,-16,6,-26,7v-4,0,-6,-3,-6,-7r0,-324v0,-10,16,-5,25,-6v4,0,7,2,7,6r0,324"},"}":{"d":"131,-109r-4,21v-65,31,6,179,-122,158v-9,-1,-7,-26,4,-26v26,0,46,2,46,-24v11,-47,6,-98,46,-118v-36,-32,-5,-85,-3,-130v7,-26,-54,5,-42,-32v3,-10,15,-6,26,-7v82,-1,34,74,34,129v0,12,4,20,15,29"},"~":{"d":"209,-178v9,48,-33,70,-66,46v-13,-8,-33,-29,-46,-32v-30,-4,3,43,-33,38v-7,0,-7,-9,-7,-17v0,-44,38,-58,67,-37v14,11,27,28,46,32v29,6,-5,-42,32,-37v4,0,7,3,7,7"},"'":{"d":"82,-271v8,1,28,-5,23,7r-33,68v-3,10,-21,9,-28,4v8,-25,20,-48,30,-72v2,-5,4,-7,8,-7"},"`":{"d":"127,-230v2,10,-15,5,-23,6v-17,-14,-28,-36,-41,-54v8,-3,31,-6,37,3"},"\u0410":{},"\u0411":{},"\u0412":{},"\u0413":{},"\u0414":{},"\u0415":{},"\u0416":{},"\u0417":{},"\u0418":{},"\u0419":{},"\u041a":{},"\u041b":{},"\u041c":{},"\u041d":{},"\u041e":{},"\u041f":{},"\u0420":{},"\u0421":{},"\u0422":{},"\u0423":{},"\u0424":{},"\u0425":{},"\u0426":{},"\u0427":{},"\u0428":{},"\u0429":{},"\u042a":{},"\u042b":{},"\u042c":{},"\u042d":{},"\u042e":{},"\u042f":{},"\u0401":{},"\u0430":{},"\u0431":{},"\u0432":{},"\u0433":{},"\u0434":{},"\u0435":{},"\u0436":{},"\u0437":{},"\u0438":{},"\u0439":{},"\u043a":{},"\u043b":{},"\u043c":{},"\u043d":{},"\u043e":{},"\u043f":{},"\u0440":{},"\u0441":{},"\u0442":{},"\u0443":{},"\u0444":{},"\u0445":{},"\u0446":{},"\u0447":{},"\u0448":{},"\u0449":{},"\u044a":{},"\u044b":{},"\u044c":{},"\u044d":{},"\u044e":{},"\u044f":{},"\u0451":{},"\u00a0":{}}});
;
/**
 * Эта функция написана для страницы с товарами.
 * Добавляет к каждому товару галочку "Добавить к заказу", и внизу
 * страницы кнопочку "Заказать отмеченные".
 * @param str view_id        - id хтмл-элмента со списком товаров.
 * @param str form_id        - id хтмл-формы для заказа.
 * @param str form_action    - параметр action формы.
 * @param str get_items_func - название функции, которая собирает заказанные товары и сохраняет их в форму.
 * @param str chk_label      - подпись к галочке (по-умолчанию - Добавить к заказу).
 * @param str submit_label   - подпись у кнопки формы (по-умолчанию - Заказать отмеченные).
 */
function make_orders_multiple (view_id, form_id, form_action, get_items_func, chk_label, submit_label) {
	var i = 0;
	chk_label    = chk_label ? chk_label : "Добавить к заказу";
	submit_label = submit_label ? submit_label : "Заказать отмеченные";
	$("#" + view_id + " .views-row").each(function(){
		var id = view_id + "_prod-" + (++i),
		s = $(".views-field-nothing a", this).attr("href");
		s = s.substr(s.indexOf("=") + 1);
		s = "\n<span class=\"chk_add\"> &nbsp; <input type='checkbox' value='" + s + "' id='" + id + "'/><label for='" + id + "'> " + chk_label + "</label></span>";
	
		$(".views-field-nothing a.button", this).click(function(){
			var res;
			eval("res = " + get_items_func + "('" + view_id + "', '" + form_id + "');");
			if (res) {
				var chk = $(".chk_add input", $(this).parents(".views-field-nothing"));
				if (!$(chk).attr("checked"))
					$(chk).click();
				$("#" + form_id + " .form_submit").click();
				return false;
			}
		});
		$(".views-field-nothing", this).append(s);
	});
	
	$("#" + view_id + " .view-footer").append("<form method=\"post\" action=\"" + form_action + "\" id=\"" + form_id + "\">\n" +
		"<input type=\"hidden\" name=\"tovary\" value=\"\" class=\"form_value\" />\n" +
		"<input type=\"submit\" class=\"button form_submit\" onclick=\"get_zakaz_tovary('" + view_id + "', '" + form_id + "'); if (!$('#" + form_id + " .form_value').val()) {alert('Отметьте что-нибудь для начала.'); return false;}\" value=\"" + submit_label + "\" />\n" +
		"</form>");
}

/**
 * Собирает названия всех отмеченных галочками товаров и сохраняет их в скрытое поле формы.
 * @param str view_id - id хтмл-элмента со списком товаров.
 * @param str form_id - id хтмл-формы для заказа.
 */
function get_zakaz_tovary (view_id, form_id) {
	var tovary = "";
	$("#" + view_id + " .chk_add input:checked").each(function(){
		if (tovary)
			tovary += ",\n";
		tovary += $(this).val();
	});
	
	if (!tovary)
		return false;
	else {
		$("#" + form_id + " .form_value").val(tovary);
		return true;
	}
}
;

