/*
 * 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")}})})();


/* idTabs ~ Sean Catchpole - Version 2.2 - MIT/GPL */
(function(){var dep={"jQuery":"http://code.jquery.com/jquery-latest.min.js"};var init=function(){(function($){$.fn.idTabs=function(){var s={};for(var i=0;i<arguments.length;++i){var a=arguments[i];switch(a.constructor){case Object:$.extend(s,a);break;case Boolean:s.change=a;break;case Number:s.start=a;break;case Function:s.click=a;break;case String:if(a.charAt(0)=='.')s.selected=a;else if(a.charAt(0)=='!')s.event=a;else s.start=a;break;}}
if(typeof s['return']=="function")
s.change=s['return'];return this.each(function(){$.idTabs(this,s);});}
$.idTabs=function(tabs,options){var meta=($.metadata)?$(tabs).metadata():{};var s=$.extend({},$.idTabs.settings,meta,options);if(s.selected.charAt(0)=='.')s.selected=s.selected.substr(1);if(s.event.charAt(0)=='!')s.event=s.event.substr(1);if(s.start==null)s.start=-1;var showId=function(){if($(this).is('.'+s.selected))
return s.change;var id="#"+this.href.split('#')[1];var aList=[];var idList=[];$("a",tabs).each(function(){if(this.href.match(/#/)){aList.push(this);idList.push("#"+this.href.split('#')[1]);}});if(s.click&&!s.click.apply(this,[id,idList,tabs,s]))return s.change;for(i in aList)$(aList[i]).removeClass(s.selected);for(i in idList)$(idList[i]).hide();$(this).addClass(s.selected);$(id).show();return s.change;}
var list=$("a[href*='#']",tabs).unbind(s.event,showId).bind(s.event,showId);list.each(function(){$("#"+this.href.split('#')[1]).hide();});var test=false;if((test=list.filter('.'+s.selected)).length);else if(typeof s.start=="number"&&(test=list.eq(s.start)).length);else if(typeof s.start=="string"&&(test=list.filter("[href*='#"+s.start+"']")).length);if(test){test.removeClass(s.selected);test.trigger(s.event);}
return s;}
$.idTabs.settings={start:0,change:false,click:null,selected:".selected",event:"!click"};$.idTabs.version="2.2";$(function(){$(".idTabs").idTabs();});})(jQuery);}
var check=function(o,s){s=s.split('.');while(o&&s.length)o=o[s.shift()];return o;}
var head=document.getElementsByTagName("head")[0];var add=function(url){var s=document.createElement("script");s.type="text/javascript";s.src=url;head.appendChild(s);}
var s=document.getElementsByTagName('script');var src=s[s.length-1].src;var ok=true;for(d in dep){if(check(this,d))continue;ok=false;add(dep[d]);}if(ok)return init();add(src);})();

/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 */
var Cufon=(function(){var K=function(){return K.replace.apply(null,arguments)};var U=K.DOM={ready:(function(){var Z=false,b={loaded:1,complete:1};var Y=[],a=function(){if(Z){return}Z=true;for(var c;c=Y.shift();c()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",a,false);window.addEventListener("pageshow",a,false)}if(!window.opera&&document.readyState){(function(){b[document.readyState]?a():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");a()}catch(c){setTimeout(arguments.callee,1)}})()}O(window,"load",a);return function(c){if(!arguments.length){a()}else{Z?c():Y.push(c)}}})()};var L=K.CSS={Size:function(Z,Y){this.value=parseFloat(Z);this.unit=String(Z).match(/[a-z%]*$/)[0]||"px";this.convert=function(a){return a/Y*this.value};this.convertFrom=function(a){return a/this.value*Y};this.toString=function(){return this.value+this.unit}},getStyle:function(Z){var Y=document.defaultView;if(Y&&Y.getComputedStyle){return new A(Y.getComputedStyle(Z,null))}if(Z.currentStyle){return new A(Z.currentStyle)}return new A(Z.style)},ready:(function(){var a=false;var Z=[],b=function(){a=true;for(var d;d=Z.shift();d()){}};var Y=Object.prototype.propertyIsEnumerable?F("style"):{length:0};var c=F("link");U.ready(function(){var g=0,f;for(var e=0,d=c.length;f=c[e],e<d;++e){if(!f.disabled&&f.rel.toLowerCase()=="stylesheet"){++g}}if(document.styleSheets.length>=Y.length+g){b()}else{setTimeout(arguments.callee,10)}});return function(d){if(a){d()}else{Z.push(d)}}})(),supports:function(a,Z){var Y=document.createElement("span").style;if(Y[a]===undefined){return false}Y[a]=Z;return Y[a]===Z},textAlign:function(b,a,Y,Z){if(a.get("textAlign")=="right"){if(Y>0){b=" "+b}}else{if(Y<Z-1){b+=" "}}return b},textDecoration:function(d,c){if(!c){c=this.getStyle(d)}var Z={underline:null,overline:null,"line-through":null};for(var Y=d;Y.parentNode&&Y.parentNode.nodeType==1;){var b=true;for(var a in Z){if(Z[a]){continue}if(c.get("textDecoration").indexOf(a)!=-1){Z[a]=c.get("color")}b=false}if(b){break}c=this.getStyle(Y=Y.parentNode)}return Z},textShadow:I(function(c){if(c=="none"){return null}var b=[],d={},Y,Z=0;var a=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(Y=a.exec(c)){if(Y[0]==","){b.push(d);d={},Z=0}else{if(Y[1]){d.color=Y[1]}else{d[["offX","offY","blur"][Z++]]=Y[2]}}}b.push(d);return b}),color:I(function(Z){var Y={};Y.color=Z.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(b,a,c){Y.opacity=parseFloat(c);return"rgb("+a+")"});return Y}),textTransform:function(Z,Y){return Z[{uppercase:"toUpperCase",lowercase:"toLowerCase"}[Y.get("textTransform")]||"toString"]()}};function Q(Z){var Y=this.face=Z.face;this.glyphs=Z.glyphs;this.w=Z.w;this.baseSize=parseInt(Y["units-per-em"],10);this.family=Y["font-family"].toLowerCase();this.weight=Y["font-weight"];this.style=Y["font-style"]||"normal";this.viewBox=(function(){var a=Y.bbox.split(/\s+/);return{minX:parseInt(a[0],10),minY:parseInt(a[1],10),width:parseInt(a[2],10)-parseInt(a[0],10),height:parseInt(a[3],10)-parseInt(a[1],10),toString:function(){return[this.minX,this.minY,this.width,this.height].join(" ")}}})();this.ascent=-parseInt(Y.ascent,10);this.descent=-parseInt(Y.descent,10);this.height=-this.ascent+this.descent}function E(){var Z={},Y={oblique:"italic",italic:"oblique"};this.add=function(a){(Z[a.style]||(Z[a.style]={}))[a.weight]=a};this.get=function(e,f){var d=Z[e]||Z[Y[e]]||Z.normal||Z.italic||Z.oblique;if(!d){return null}f={normal:400,bold:700}[f]||parseInt(f,10);if(d[f]){return d[f]}var b={1:1,99:0}[f%100],h=[],c,a;if(b===undefined){b=f>400}if(f==500){f=400}for(var g in d){g=parseInt(g,10);if(!c||g<c){c=g}if(!a||g>a){a=g}h.push(g)}if(f<c){f=c}if(f>a){f=a}h.sort(function(j,i){return(b?(j>f&&i>f)?j<i:j>i:(j<f&&i<f)?j>i:j<i)?-1:1});return d[h[0]]}}function P(){function a(c,d){if(c.contains){return c.contains(d)}return c.compareDocumentPosition(d)&16}function Y(d){var c=d.relatedTarget;if(!c||a(this,c)){return}Z(this)}function b(c){Z(this)}function Z(c){setTimeout(function(){K.replace(c,D.get(c).options,true)},10)}this.attach=function(c){if(c.onmouseenter===undefined){O(c,"mouseover",Y);O(c,"mouseout",Y)}else{O(c,"mouseenter",b);O(c,"mouseleave",b)}}}function X(){var a={},Y=0;function Z(b){return b.cufid||(b.cufid=++Y)}this.get=function(b){var c=Z(b);return a[c]||(a[c]={})}}function A(Y){var a={},Z={};this.get=function(b){return a[b]!=undefined?a[b]:Y[b]};this.getSize=function(c,b){return Z[c]||(Z[c]=new L.Size(this.get(c),b))};this.extend=function(b){for(var c in b){a[c]=b[c]}return this}}function O(Z,Y,a){if(Z.addEventListener){Z.addEventListener(Y,a,false)}else{if(Z.attachEvent){Z.attachEvent("on"+Y,function(){return a.call(Z,window.event)})}}}function R(Z,Y){var a=D.get(Z);if(a.options){return Z}if(Y.hover&&Y.hoverables[Z.nodeName.toLowerCase()]){B.attach(Z)}a.options=Y;return Z}function I(Y){var Z={};return function(a){if(!Z.hasOwnProperty(a)){Z[a]=Y.apply(null,arguments)}return Z[a]}}function C(d,c){if(!c){c=L.getStyle(d)}var Z=c.get("fontFamily").split(/\s*,\s*/),b;for(var a=0,Y=Z.length;a<Y;++a){b=Z[a].replace(/^(["'])(.*?)\1$/,"$2").toLowerCase();if(H[b]){return H[b].get(c.get("fontStyle"),c.get("fontWeight"))}}return null}function F(Y){return document.getElementsByTagName(Y)}function G(){var Y={},b;for(var a=0,Z=arguments.length;a<Z;++a){for(b in arguments[a]){Y[b]=arguments[a][b]}}return Y}function M(b,k,Z,m,c,a){var j=m.separate;if(j=="none"){return W[m.engine].apply(null,arguments)}var h=document.createDocumentFragment(),e;var f=k.split(N[j]),Y=(j=="words");if(Y&&S){if(/^\s/.test(k)){f.unshift("")}if(/\s$/.test(k)){f.push("")}}for(var g=0,d=f.length;g<d;++g){e=W[m.engine](b,Y?L.textAlign(f[g],Z,g,d):f[g],Z,m,c,a,g<d-1);if(e){h.appendChild(e)}}return h}function J(Z,g){var a,Y,d,f;for(var b=R(Z,g).firstChild;b;b=d){d=b.nextSibling;f=false;if(b.nodeType==1){if(!b.firstChild){continue}if(!/cufon/.test(b.className)){arguments.callee(b,g);continue}else{f=true}}if(!Y){Y=L.getStyle(Z).extend(g)}if(!a){a=C(Z,Y)}if(!a){continue}if(f){W[g.engine](a,null,Y,g,b,Z);continue}var e=b.data;if(e===""){continue}var c=M(a,e,Y,g,b,Z);if(c){b.parentNode.replaceChild(c,b)}else{b.parentNode.removeChild(b)}}}var S=" ".split(/\s+/).length==0;var D=new X();var B=new P();var V=[];var W={},H={},T={enableTextDecoration:false,engine:null,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||window.jQuery||(window.dojo&&dojo.query)||(window.$$&&function(Y){return $$(Y)})||(window.$&&function(Y){return $(Y)})||(document.querySelectorAll&&function(Y){return document.querySelectorAll(Y)})||F),separate:"words",textShadow:"none"};var N={words:/\s+/,characters:""};K.now=function(){U.ready();return K};K.refresh=function(){var a=V.splice(0,V.length);for(var Z=0,Y=a.length;Z<Y;++Z){K.replace.apply(null,a[Z])}return K};K.registerEngine=function(Z,Y){if(!Y){return K}W[Z]=Y;return K.set("engine",Z)};K.registerFont=function(a){var Y=new Q(a),Z=Y.family;if(!H[Z]){H[Z]=new E()}H[Z].add(Y);return K.set("fontFamily",Z)};K.replace=function(a,Z,Y){Z=G(T,Z);if(!Z.engine){return K}if(typeof Z.textShadow=="string"){Z.textShadow=L.textShadow(Z.textShadow)}if(!Y){V.push(arguments)}if(a.nodeType||typeof a=="string"){a=[a]}L.ready(function(){for(var c=0,b=a.length;c<b;++c){var d=a[c];if(typeof d=="string"){K.replace(Z.selector(d),Z,true)}else{J(d,Z)}}});return K};K.set=function(Y,Z){T[Y]=Z;return K};return K})();Cufon.registerEngine("canvas",(function(){var B=document.createElement("canvas");if(!B||!B.getContext||!B.getContext.apply){return null}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("@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle"+(E?"":";font-size:1px;line-height:1px")+"}.cufon-canvas .cufon-alt{display:none}"+(A?".cufon-canvas canvas{position:relative}":".cufon-canvas canvas{position:absolute}")+"}@media print{.cufon-canvas{padding:0 !important}.cufon-canvas canvas{display:none}.cufon-canvas .cufon-alt{display:inline}}"));document.getElementsByTagName("head")[0].appendChild(F);function D(O,H){var M=0,L=0;var G=[],N=/([mrvxe])([^a-z]*)/g,J;generate:for(var I=0;J=N.exec(O);++I){var K=J[2].split(",");switch(J[1]){case"v":G[I]={m:"bezierCurveTo",a:[M+~~K[0],L+~~K[1],M+~~K[2],L+~~K[3],M+=~~K[4],L+=~~K[5]]};break;case"r":G[I]={m:"lineTo",a:[M+=~~K[0],L+=~~K[1]]};break;case"m":G[I]={m:"moveTo",a:[M=~~K[0],L=~~K[1]]};break;case"x":G[I]={m:"closePath"};break;case"e":break generate}H[G[I].m].apply(H,G[I].a)}return G}function C(K,J){for(var I=0,H=K.length;I<H;++I){var G=K[I];J[G.m].apply(J,G.a)}}return function(q,T,k,P,X,r){var I=(T===null);var V=q.viewBox;var J=k.getSize("fontSize",q.baseSize);var h=k.get("letterSpacing");h=(h=="normal")?0:J.convertFrom(parseInt(h,10));var W=0,j=0,f=0,R=0;var U=P.textShadow,d=[];if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];var c=J.convertFrom(parseFloat(Z.offX));var b=J.convertFrom(parseFloat(Z.offY));d[p]=[c,b];if(b<W){W=b}if(c>j){j=c}if(b>f){f=b}if(c<R){R=c}}}var u=Cufon.CSS.textTransform(I?X.alt:T,k).split("");var G=0,S=null;for(var p=0,m=u.length;p<m;++p){var Q=q.glyphs[u[p]]||q.missingGlyph;if(!Q){continue}G+=S=Number(Q.w||q.w)+h}if(S===null){return null}j+=(V.width-S);R+=V.minX;var O,K;if(I){O=X;K=X.firstChild}else{O=document.createElement("span");O.className="cufon cufon-canvas";O.alt=T;K=document.createElement("canvas");O.appendChild(K);if(P.printable){var n=document.createElement("span");n.className="cufon-alt";n.appendChild(document.createTextNode(T));O.appendChild(n)}}var v=O.style;var a=K.style;var H=J.convert(V.height-W+f);var t=Math.ceil(H);var e=t/H;K.width=Math.ceil(J.convert(G+j-R)*e);K.height=t;W+=V.minY;a.top=Math.round(J.convert(W-q.ascent))+"px";a.left=Math.round(J.convert(R))+"px";var N=Math.ceil(J.convert(G*e))+"px";if(A){v.width=N;v.height=J.convert(q.height)+"px"}else{v.paddingLeft=N;v.paddingBottom=(J.convert(q.height)-1)+"px"}var s=K.getContext("2d"),Y=t/V.height;s.scale(Y,Y);s.translate(-R,-W);s.lineWidth=q.face["underline-thickness"];s.save();function L(i,g){s.strokeStyle=g;s.beginPath();s.moveTo(0,i);s.lineTo(G,i);s.stroke()}var M=P.enableTextDecoration?Cufon.CSS.textDecoration(r,k):{};if(M.underline){L(-q.face["underline-position"],M.underline)}if(M.overline){L(q.ascent,M.overline)}s.fillStyle=k.get("color");function o(){for(var w=0,g=u.length;w<g;++w){var x=q.glyphs[u[w]]||q.missingGlyph;if(!x){continue}s.beginPath();if(x.d){if(x.code){C(x.code,s)}else{x.code=D("m"+x.d,s)}}s.fill();s.translate(Number(x.w||q.w)+h,0)}}if(U){for(var p=0,m=U.length;p<m;++p){var Z=U[p];s.save();s.fillStyle=Z.color;s.translate.apply(s,d[p]);o();s.restore()}}o();s.restore();if(M["line-through"]){L(-q.descent,M["line-through"])}return O}})());Cufon.registerEngine("vml",(function(){if(!document.namespaces){return}document.write('<!--[if vml]><script type="text/javascript">Cufon.vmlEnabled=true;<\/script><![endif]-->');if(!Cufon.vmlEnabled){return}if(document.namespaces.cvml==null){document.namespaces.add("cvml","urn:schemas-microsoft-com:vml");document.write('<style type="text/css">@media screen{cvml\\:shape,cvml\\:group,cvml\\:shapetype,cvml\\:fill{behavior:url(#default#VML);display:inline-block;antialias:true;position:absolute}.cufon-vml{display:inline-block;position:relative;vertical-align:middle}.cufon-vml .cufon-alt{display:none}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none}.cufon-vml .cufon-alt{display:inline}}</style>')}var C=0;function B(E,F){return A(E,/(?:em|ex|%)$/i.test(F)?"1em":F)}function A(H,I){if(/px$/i.test(I)){return parseFloat(I)}var G=H.style.left,F=H.runtimeStyle.left;H.runtimeStyle.left=H.currentStyle.left;H.style.left=I;var E=H.style.pixelLeft;H.style.left=G;H.runtimeStyle.left=F;return E}function D(F,H){var E=document.createElement("cvml:shapetype");E.id="cufon-glyph-"+C++;F.typeRef="#"+E.id;E.stroked="f";E.coordsize=H.width+","+H.height;E.coordorigin=H.minX+","+H.minY;var G="m"+H.minX+","+H.minY+" r"+H.width+","+H.height;E.path=(F.d?"m"+F.d+"x":"")+G;document.body.insertBefore(E,document.body.firstChild)}return function(n,T,f,P,W,o,d){var G=(T===null);if(G){T=W.alt}var V=n.viewBox;var H=f.computedFontSize||(f.computedFontSize=new Cufon.CSS.Size(B(o,f.get("fontSize"))+"px",n.baseSize));var c=f.computedLSpacing;if(c==undefined){c=f.get("letterSpacing");f.computedLSpacing=c=(c=="normal")?0:H.convertFrom(A(o,c))}var O,I;if(G){O=W;I=W.firstChild}else{O=document.createElement("span");O.className="cufon cufon-vml";O.alt=T;I=document.createElement("cvml:group");O.appendChild(I);if(P.printable){var j=document.createElement("span");j.className="cufon-alt";j.innerText=T;O.appendChild(j)}if(!d){O.appendChild(document.createElement("cvml:group"))}}var u=O.style;var Y=I.style;var F=H.convert(V.height);Y.height=Math.ceil(F);Y.top=Math.round(H.convert(V.minY-n.ascent));Y.left=Math.round(H.convert(V.minX));var b=parseInt(Y.height,10)/F;u.height=H.convert(-n.ascent+n.descent)+"px";var K=P.enableTextDecoration?Cufon.CSS.textDecoration(o,f):{};var S=f.get("color");var s=Cufon.CSS.textTransform(T,f).split("");var E=0,a=0,L=null;var U=P.textShadow;for(var m=0,h=-1,g=s.length;m<g;++m){var Q=n.glyphs[s[m]]||n.missingGlyph,M;if(!Q){continue}if(!Q.typeRef){D(Q,V)}if(G){M=I.childNodes[++h]}else{M=document.createElement("cvml:shape");I.appendChild(M)}M.type=Q.typeRef;var q=M.style;q.width=V.width;q.height=V.height;q.top=0;q.left=a;q.zIndex=1;M.fillcolor=S;if(U){for(var Z=0,e=U.length;Z<e;++Z){var X=U[Z];var t=Cufon.CSS.color(X.color);var J=M.cloneNode(false),R=J.runtimeStyle;R.top=H.convertFrom(parseFloat(X.offY));R.left=a+H.convertFrom(parseFloat(X.offX));R.zIndex=0;J.fillcolor=t.color;if(t.opacity){var r=document.createElement("cvml:fill");r.opacity=t.opacity;J.appendChild(r)}I.appendChild(J)}++h}L=Number(Q.w||n.w)+c;E+=L;a+=L}if(L===null){return null}var N=-V.minX+E+(V.width-L);I.coordsize=N+","+V.height;Y.width=H.convert(N*b);u.width=Math.max(Math.ceil(H.convert(E*b)),0);return O}})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1985, 1987, 1991, 1993 Adobe Systems Incorporated. All Rights
 * Reserved.Helvetica is a trademark of Linotype-Hell AG and/or its subsidiaries.
 */
Cufon.registerFont({"w":180,"face":{"font-family":"Helvetica Condensed","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-61 -357.038 393 90","underline-thickness":"8.78906","underline-position":"-13.1836","unicode-range":"U+0020-U+F002"},"glyphs":{" ":{"w":90},"!":{"d":"45,-70r-9,-124r0,-76r47,0r0,90v1,34,-6,75,-7,110r-31,0xm83,0r-46,0r0,-47r46,0r0,47","w":119},"\"":{"d":"114,-168r-42,0r0,-98r42,0r0,98xm49,-168r-43,0r0,-98r43,0r0,98","w":119},"#":{"d":"160,-119r0,35r-31,0r-10,84r-31,0r10,-84r-26,0r-10,84r-30,0r10,-84r-31,0r0,-35r35,0r4,-33r-30,0r0,-36r34,0r10,-78r30,0r-9,78r26,0r9,-78r31,0r-9,78r27,0r0,36r-32,0r-4,33r27,0xm107,-152r-26,0r-4,33r25,0"},"$":{"d":"100,-103r0,72v32,-7,24,-63,0,-72xm77,7v-45,-4,-68,-37,-64,-87r43,0v0,30,0,43,22,49r0,-80v-37,-25,-62,-35,-62,-89v0,-39,24,-61,61,-66r0,-23r25,0r0,23v43,3,61,28,60,72r-42,0v0,-21,-3,-32,-20,-36r0,71v45,23,68,50,68,83v0,50,-20,76,-66,81r0,40r-25,0r0,-38xm78,-230v-29,8,-20,51,0,64r0,-64"},"%":{"d":"11,-199v0,-44,12,-66,55,-66v43,0,56,21,56,66v0,45,-13,66,-56,66v-43,1,-55,-24,-55,-66xm88,-199v1,-24,0,-40,-21,-40v-23,0,-21,15,-21,40v0,25,-2,40,21,40v22,0,20,-15,21,-40xm179,-66v0,-44,12,-66,55,-66v43,0,55,22,55,66v0,44,-12,66,-55,66v-42,0,-55,-21,-55,-66xm255,-66v0,-23,1,-39,-21,-39v-22,0,-21,16,-21,39v0,24,0,40,21,40v22,0,21,-15,21,-40xm101,5r-26,0r121,-275r25,0","w":299},"&":{"d":"113,-240v-29,1,-13,41,-3,53v14,-11,21,-21,21,-32v0,-11,-8,-21,-18,-21xm172,-220v0,35,-18,52,-41,67r34,59v5,-15,7,-32,8,-50r40,0v0,33,-8,64,-24,91r32,54r-54,0r-9,-18v-45,47,-140,19,-135,-58v3,-45,23,-65,51,-85v-11,-20,-21,-32,-21,-58v-1,-38,27,-59,62,-59v34,0,57,22,57,57xm95,-123v-35,12,-31,90,11,89v11,0,22,-5,33,-15","w":240},"\u2019":{"d":"29,-172r0,-17v16,-3,23,-13,23,-34r-23,0r0,-47r44,0v1,50,4,94,-44,98","w":100,"k":{"s":20,"\u2019":7}},"(":{"d":"19,-110v-1,-73,21,-123,52,-167r29,0v-46,86,-46,261,1,348r-30,0v-33,-57,-52,-96,-52,-181","w":119},")":{"d":"101,-96v1,73,-20,124,-52,167r-29,0v47,-85,46,-262,-1,-348r30,0v33,57,52,96,52,181","w":119},"*":{"d":"137,-166r-23,17v-7,-11,-17,-21,-23,-33v-6,13,-16,22,-24,34r-23,-17r23,-33r-39,-12r9,-27r39,12v-2,-11,-1,-28,-1,-41r29,0r0,40r38,-13r10,28v-13,3,-25,9,-39,11"},"+":{"d":"70,-110r0,-67r40,0r0,67r61,0r0,40r-61,0r0,70r-40,0r0,-70r-61,0r0,-40r61,0"},",":{"d":"36,52r0,-16v17,-3,26,-15,26,-36r-26,0r0,-47r48,0v2,50,2,97,-48,99","w":119},"-":{"d":"103,-92r-86,0r0,-41r86,0r0,41","w":119},".":{"d":"84,0r-48,0r0,-47r48,0r0,47","w":119},"\/":{"d":"-4,34r85,-304r31,0r-85,304r-31,0","w":100},"0":{"d":"90,-232v-18,2,-23,14,-22,38r0,122v-1,25,3,36,22,38v19,-2,23,-13,23,-38r0,-122v0,-24,-5,-36,-23,-38xm90,5v-97,0,-73,-112,-73,-199v0,-53,22,-77,73,-77v50,0,75,24,73,77v-3,87,25,199,-73,199"},"1":{"d":"16,-223v40,-1,65,-14,74,-47r37,0r0,270r-50,0r0,-187r-61,0r0,-36"},"2":{"d":"91,-271v79,0,89,100,40,144v-22,20,-64,56,-66,87r94,0r0,40r-147,0v-9,-87,63,-119,98,-179v6,-21,3,-54,-21,-53v-28,1,-28,23,-28,52r-47,0v-2,-58,18,-91,77,-91"},"3":{"d":"113,-85v2,-37,-18,-40,-51,-40r0,-39v28,-1,50,-6,47,-37v7,-36,-48,-42,-49,-9r0,19r-47,0v-2,-51,21,-81,71,-80v48,0,73,24,74,69v1,27,-14,52,-36,57v29,4,41,30,41,65v0,57,-26,85,-78,85v-60,0,-78,-36,-75,-95r47,0v1,28,-1,57,29,56v26,-1,26,-24,27,-51"},"4":{"d":"45,-94r51,0r-1,-110xm90,-266r56,0r0,172r23,0r0,39r-23,0r0,55r-50,0r0,-55r-88,0r0,-39"},"5":{"d":"114,-91v12,-49,-40,-71,-54,-33r-44,0r7,-142r130,0r0,40r-91,0r-4,58v12,-11,20,-16,40,-16v52,0,67,40,67,94v-1,60,-16,95,-75,95v-61,0,-77,-30,-77,-90r47,0v0,24,2,51,26,51v29,0,28,-25,28,-57"},"6":{"d":"90,-142v-26,1,-24,28,-24,56v0,28,0,50,25,52v32,1,24,-37,24,-69v0,-22,-3,-39,-25,-39xm91,5v-84,0,-77,-84,-76,-167v1,-65,12,-111,78,-109v41,0,67,19,67,61r-47,0v0,-14,-5,-23,-22,-22v-29,2,-26,36,-26,68v12,-11,17,-17,39,-18v47,1,61,33,61,85v0,63,-13,102,-74,102"},"7":{"d":"12,-226r0,-40r151,0r0,37v-34,66,-59,136,-66,229r-52,0v11,-88,37,-164,74,-226r-107,0"},"8":{"d":"90,-127v-27,0,-24,25,-25,52v0,25,2,41,26,41v22,0,25,-19,24,-45v0,-26,0,-48,-25,-48xm68,-198v0,20,2,35,22,35v20,0,23,-17,23,-38v0,-18,-6,-31,-22,-31v-19,0,-22,14,-23,34xm15,-76v0,-42,9,-57,38,-70v-54,-22,-39,-125,38,-125v48,0,69,21,68,69v0,33,-9,47,-34,57v32,7,41,28,41,68v0,53,-22,82,-74,82v-54,0,-77,-26,-77,-81"},"9":{"d":"90,-123v27,-1,25,-27,25,-57v0,-31,0,-52,-26,-52v-31,0,-23,38,-23,70v0,23,3,39,24,39xm90,-271v85,0,75,84,75,167v1,66,-12,109,-77,109v-41,0,-68,-18,-67,-60r47,0v-1,15,7,21,22,21v30,-1,25,-38,26,-68v-11,11,-18,19,-40,18v-48,0,-61,-34,-61,-84v1,-61,13,-103,75,-103"},":":{"d":"74,-153r-48,0r0,-47r48,0r0,47xm74,0r-48,0r0,-47r48,0r0,47","w":100},";":{"d":"26,52r0,-16v17,-3,26,-15,26,-36r-26,0r0,-47r48,0v2,50,2,97,-48,99xm74,-153r-48,0r0,-47r48,0r0,47","w":100},"<":{"d":"58,-90r107,59r0,40r-150,-81r0,-36r150,-82r0,40"},"=":{"d":"171,-144r0,39r-162,0r0,-39r162,0xm171,-74r0,39r-162,0r0,-39r162,0"},">":{"d":"15,-31r107,-59r-107,-60r0,-40r150,82r0,36r-150,81r0,-40"},"?":{"d":"88,-239v-24,-3,-24,20,-25,40r-44,0v-5,-48,22,-78,70,-78v77,0,88,102,37,138v-16,17,-33,32,-30,67r-42,0v-9,-72,55,-79,55,-138v0,-20,-4,-27,-21,-29xm53,-47r46,0r0,47r-46,0r0,-47"},"@":{"d":"42,-136v-3,102,123,154,193,83r35,0v-25,32,-58,60,-111,60v-84,0,-145,-58,-145,-143v0,-86,57,-141,143,-141v70,0,126,42,129,114v2,58,-39,103,-93,109v-12,1,-17,-14,-16,-24v-38,45,-105,16,-105,-44v0,-68,79,-115,122,-64r4,-19r35,0v-5,39,-17,78,-18,117v1,1,3,2,6,2v20,-11,37,-35,37,-66v0,-62,-41,-98,-102,-98v-68,0,-112,45,-114,114xm137,-89v46,7,62,-84,15,-85v-42,-1,-58,77,-15,85","w":299},"A":{"d":"57,0r-54,0r65,-270r68,0r61,270r-54,0r-13,-68r-60,0xm101,-240v-6,53,-13,87,-23,132r44,0","w":200,"k":{"y":7,"w":7,"v":7,"Y":20,"W":13,"V":13,"T":20,"\u2019":20}},"B":{"d":"130,-80v0,-39,-19,-43,-56,-41r0,81v36,1,56,1,56,-40xm125,-200v0,-32,-22,-31,-51,-30r0,69v34,2,51,-5,51,-39xm182,-82v-1,52,-19,82,-70,82r-89,0r0,-270v75,0,152,-14,152,68v0,31,-11,47,-32,58v26,4,39,24,39,62","w":200},"C":{"d":"108,-34v26,-1,24,-37,26,-62r50,0v-1,60,-17,102,-76,103v-89,2,-90,-73,-88,-164v2,-73,14,-121,88,-120v53,0,76,34,75,91r-50,0v-2,-23,0,-50,-25,-50v-57,0,-36,89,-36,143v0,31,5,60,36,59","w":200},"D":{"d":"146,-142v-2,-45,4,-85,-36,-88r-34,0r0,190v72,9,72,-35,70,-102xm198,-146v-1,78,-2,146,-79,146r-93,0r0,-270r105,0v58,6,68,54,67,124","w":219},"E":{"d":"165,0r-142,0r0,-270r142,0r0,40r-92,0r0,68r85,0r0,39r-85,0r0,83r92,0r0,40"},"F":{"d":"77,0r-51,0r0,-270r143,0r0,40r-92,0r0,68r86,0r0,40r-86,0r0,122","k":{"A":13,".":40,",":40}},"G":{"d":"108,7v-89,4,-90,-73,-88,-164v2,-73,14,-121,88,-120v60,0,90,29,87,92r-50,0v0,-31,-6,-51,-37,-51v-57,0,-27,90,-36,143v-10,60,65,84,71,18v1,-9,2,-18,2,-30r-35,0r0,-40r84,0r0,145r-38,0r0,-31v-8,23,-25,37,-48,38","w":219},"H":{"d":"75,0r-51,0r0,-270r51,0r0,107r70,0r0,-107r51,0r0,270r-51,0r0,-123r-70,0r0,123","w":219},"I":{"d":"75,0r-50,0r0,-270r50,0r0,270","w":100},"J":{"d":"62,7v-44,0,-67,-34,-59,-93r50,0v1,21,-6,52,16,52v18,0,19,-10,19,-29r0,-207r50,0r0,205v2,52,-25,73,-76,72","w":159},"K":{"d":"75,0r-51,0r0,-270r51,0r1,120v14,-40,40,-79,61,-120r57,0r-67,116r70,154r-57,0r-48,-107r-17,30r0,77","w":200},"L":{"d":"168,0r-144,0r0,-270r51,0r0,230r93,0r0,40","k":{"y":13,"Y":33,"W":27,"V":27,"T":27,"\u2019":33}},"M":{"d":"70,-246v5,69,5,165,5,246r-51,0r0,-270r80,0r27,125v5,16,5,42,11,63v4,-72,22,-124,34,-188r80,0r0,270r-50,0r4,-246r-54,246r-31,0r-53,-246r-2,0","w":280},"N":{"d":"152,-65r-7,-205r50,0r0,270r-52,0v-26,-69,-55,-127,-75,-203v-1,48,7,100,7,152r0,51r-51,0r0,-270r53,0r67,176v3,10,5,19,8,29","w":219},"O":{"d":"110,7v-89,2,-90,-74,-88,-164v1,-73,14,-120,88,-120v88,0,88,72,88,159v0,80,-13,123,-88,125xm110,-236v-56,0,-32,89,-36,143v-2,31,6,59,36,59v54,0,37,-80,37,-132v0,-34,-3,-70,-37,-70","w":219},"P":{"d":"139,-195v0,-37,-28,-36,-64,-35r0,77v39,2,64,-2,64,-42xm190,-193v2,67,-45,86,-115,80r0,113r-51,0r0,-270r103,0v45,1,62,32,63,77","w":200,"k":{"A":13,".":46,",":46}},"Q":{"d":"198,-157v-1,48,3,102,-14,131r27,28r-25,23r-28,-27v-13,7,-28,9,-48,9v-89,3,-90,-74,-88,-164v1,-73,14,-120,88,-120v73,0,88,47,88,120xm74,-178v4,61,-21,153,49,142r-10,-9v10,-6,20,-22,30,-21v6,-34,4,-73,4,-112v0,-32,-6,-58,-37,-58v-30,0,-38,27,-36,58","w":219},"R":{"d":"149,0v-15,-43,14,-121,-42,-116r-33,0r0,116r-50,0r0,-270v77,2,172,-17,172,65v0,35,-12,60,-41,66v31,4,39,25,38,60v-1,51,7,65,11,79r-55,0xm143,-195v0,-42,-33,-35,-69,-35r0,74v38,2,69,2,69,-39","w":219,"k":{"Y":7,"T":7}},"S":{"d":"53,-142v-58,-38,-39,-142,45,-135v57,5,79,32,78,89r-49,0v1,-29,-3,-46,-29,-48v-28,-3,-36,30,-21,46v39,43,106,48,106,119v0,50,-34,78,-83,78v-62,0,-86,-36,-82,-102r50,0v-1,33,2,61,32,61v40,0,38,-55,11,-68v-11,-9,-45,-32,-58,-40","w":200},"T":{"d":"6,-230r0,-40r168,0r0,40r-59,0r0,230r-50,0r0,-230r-59,0","k":{"y":20,"w":27,"u":27,"s":27,"r":27,"o":27,"i":7,"e":27,"c":27,"a":27,"A":20,";":27,":":27,".":33,"-":20,",":33}},"U":{"d":"111,-34v31,-1,34,-20,34,-52r0,-184r51,0r0,188v2,61,-24,89,-85,89v-61,0,-88,-28,-87,-89r0,-188r51,0r0,184v0,32,4,52,36,52","w":219},"V":{"d":"102,-28r37,-242r54,0r-58,270r-68,0r-59,-270r54,0","w":200,"k":{"u":7,"r":7,"o":7,"e":7,"a":7,"A":13,";":7,":":7,".":33,"-":7,",":33}},"W":{"d":"171,-270r31,166v3,23,3,49,8,70r29,-236r53,0r-50,270r-61,0r-32,-193r-10,86r-18,107r-61,0r-51,-270r52,0r32,236r12,-96r24,-140r42,0","w":299,"k":{"o":7,"e":7,"a":7,"A":7,".":27,"-":7,",":27}},"X":{"d":"129,-137r67,137r-57,0v-13,-33,-32,-63,-40,-100v-8,38,-27,66,-40,100r-55,0r66,-137r-63,-133r56,0v13,31,29,60,38,95v6,-39,25,-62,36,-95r57,0","w":200},"Y":{"d":"59,-270v13,35,33,73,41,112r41,-112r55,0r-71,155r0,115r-50,0r0,-115r-71,-155r55,0","w":200,"k":{"v":7,"u":13,"q":20,"p":13,"o":20,"i":7,"e":20,"a":20,"A":20,";":13,":":13,".":40,"-":27,",":40}},"Z":{"d":"12,0r0,-40r101,-192v-26,4,-65,1,-95,2r0,-40r147,0r0,40r-100,192v29,-4,70,-1,103,-2r0,40r-156,0"},"[":{"d":"101,34r-72,0r0,-304r72,0r0,27r-32,0r0,250r32,0r0,27","w":119},"\\":{"d":"18,-270r85,304r-31,0r-85,-304r31,0","w":90},"]":{"d":"19,-270r72,0r0,304r-72,0r0,-27r32,0r0,-250r-32,0r0,-27","w":119},"^":{"d":"41,-117r-37,-17r64,-136r44,0r64,136r-37,17r-49,-101"},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18"},"\u2018":{"d":"71,-276r0,17v-17,2,-23,13,-23,34r23,0r0,47r-44,0v-1,-49,-4,-95,44,-98","w":100,"k":{"\u2018":7}},"a":{"d":"88,-208v106,0,53,120,70,208r-44,0v-2,-4,-3,-11,-3,-21v-22,44,-96,31,-96,-34v0,-59,51,-58,88,-84v12,-12,7,-38,-17,-33v-21,0,-24,9,-25,29r-44,0v0,-47,20,-65,71,-65xm84,-31v31,-1,21,-44,24,-76v-17,16,-46,16,-46,50v1,15,5,27,22,26"},"b":{"d":"92,-172v-37,3,-22,67,-22,105v0,24,7,36,22,36v32,0,19,-79,20,-117v0,-15,-5,-25,-20,-24xm160,-136v2,70,4,166,-74,135v-7,-3,-13,-11,-18,-21r0,22r-45,0r0,-270r47,0r-1,88v8,-18,18,-27,42,-26v39,2,47,26,49,72"},"c":{"d":"81,-208v46,0,68,26,64,75r-47,0v0,-18,2,-40,-16,-39v-32,4,-13,64,-17,103v-2,22,0,37,17,38v20,2,14,-26,16,-48r47,0v4,54,-12,84,-64,84v-71,0,-64,-71,-63,-141v0,-47,17,-72,63,-72","w":159},"d":{"d":"87,-172v-37,3,-15,69,-21,106v1,23,8,35,20,35v33,1,23,-62,23,-96v0,-22,0,-47,-22,-45xm68,-208v26,-1,32,10,43,26v-4,-26,-1,-59,-2,-88r47,0r0,270r-47,0v-1,-7,2,-17,-1,-22v-7,19,-17,25,-40,27v-54,5,-51,-81,-49,-141v0,-43,9,-71,49,-72"},"e":{"d":"94,5v-77,0,-75,-63,-75,-138v0,-47,23,-75,69,-75v70,0,73,46,71,116r-93,0v1,28,-6,63,24,61v20,-1,21,-15,22,-38r47,0v-1,46,-17,74,-65,74xm88,-172v-25,0,-21,19,-22,44r47,0v0,-25,2,-44,-25,-44"},"f":{"d":"25,-203v-4,-51,13,-74,67,-67r0,37v-22,-9,-21,12,-20,30r20,0r0,34r-20,0r0,169r-47,0r0,-169r-17,0r0,-34r17,0","w":100,"k":{"\u2019":-7}},"g":{"d":"87,-172v-37,3,-15,69,-21,106v1,23,8,35,20,35v33,1,23,-62,23,-96v0,-22,0,-47,-22,-45xm156,-6v10,68,-65,90,-117,64v-12,-6,-17,-19,-18,-35r47,0v0,10,8,11,20,12v24,2,24,-30,23,-56v-8,16,-20,26,-43,26v-61,0,-49,-80,-49,-141v0,-46,10,-70,49,-72v22,-1,33,10,41,26r0,-21r47,0r0,197"},"h":{"d":"112,-139v-1,-20,-1,-32,-20,-33v-15,0,-23,12,-23,37r0,135r-47,0r0,-270r47,0r0,88v18,-41,89,-34,89,25r0,157r-46,0r0,-139"},"i":{"d":"73,0r-46,0r0,-203r46,0r0,203xm73,-227r-46,0r0,-43r46,0r0,43","w":100},"j":{"d":"75,1v6,49,-10,77,-64,67r0,-36v10,-1,18,1,17,-10r0,-225r47,0r0,204xm75,-227r-47,0r0,-43r47,0r0,43","w":100},"k":{"d":"64,0r-47,0r0,-270r47,0r0,148r44,-81r51,0r-51,82r50,121r-52,0r-29,-83r-13,21r0,62","w":159},"l":{"d":"73,0r-46,0r0,-270r46,0r0,270","w":100},"m":{"d":"70,-182v12,-31,81,-38,89,0v17,-39,97,-35,97,17r0,165r-46,0r0,-137v-1,-20,-3,-35,-23,-35v-21,0,-23,15,-24,38r0,134r-46,0r0,-140v0,-22,-2,-32,-23,-32v-22,0,-24,15,-24,38r0,134r-46,0r0,-203r46,0r0,21","w":280},"n":{"d":"112,-135v0,-21,-2,-34,-20,-34v-15,0,-23,13,-23,38r0,131r-47,0r0,-203r47,0r0,21v16,-42,89,-33,89,25r0,157r-46,0r0,-135"},"o":{"d":"91,-172v-43,1,-25,67,-25,106v0,22,2,35,25,35v42,0,16,-67,23,-103v-1,-24,-1,-38,-23,-38xm161,-94v0,64,-7,99,-70,99v-63,0,-72,-38,-72,-99v0,-71,4,-114,72,-114v68,0,70,47,70,114"},"p":{"d":"90,-172v-38,3,-22,68,-22,105v0,24,7,36,22,36v32,0,19,-79,20,-117v0,-15,-5,-24,-20,-24xm109,5v-24,0,-33,-10,-43,-26r0,89r-45,0r0,-271r47,0r0,21v9,-17,18,-25,41,-26v63,-2,49,84,49,146v0,36,-11,67,-49,67"},"q":{"d":"86,-172v-37,3,-15,69,-21,106v1,23,8,35,20,35v33,1,23,-62,23,-96v0,-22,0,-47,-22,-45xm67,-208v25,-1,31,10,41,26r0,-21r47,0r0,271r-47,0r-1,-90v-7,17,-18,26,-40,27v-61,0,-49,-80,-49,-141v0,-47,10,-69,49,-72"},"r":{"d":"67,-203r0,36v11,-23,20,-39,48,-40r0,56v-27,-4,-48,7,-47,34r0,117r-46,0r0,-203r45,0","w":119,"k":{"z":-7,"y":-7,"x":-7,"w":-7,"v":-7,".":27,"-":13,",":27}},"s":{"d":"76,5v-42,-1,-69,-24,-66,-72r47,0v0,20,0,39,22,36v31,-5,20,-38,-4,-46v-27,-22,-62,-36,-64,-82v-2,-55,87,-61,119,-33v11,11,16,28,16,51r-47,0v-1,-20,-3,-30,-21,-31v-29,0,-22,33,-2,39v27,23,71,32,71,80v0,40,-23,60,-71,58","w":159},"t":{"d":"71,-43v1,8,9,7,20,7r0,37v-39,4,-67,-2,-67,-32r0,-138r-19,0r0,-34r19,0r0,-56r47,0r0,56r20,0r0,34r-20,0r0,126","w":100},"u":{"d":"87,-31v21,0,21,-19,21,-40r0,-132r47,0r0,203r-44,0v-1,-9,2,-23,-1,-30v-7,21,-18,35,-44,35v-34,1,-46,-18,-45,-52r0,-156r47,0r0,139v-1,18,2,33,19,33"},"v":{"d":"51,0r-47,-203r50,0v10,64,21,98,26,174v5,-26,6,-51,8,-60r20,-114r48,0r-46,203r-59,0","w":159,"k":{".":20,",":20}},"w":{"d":"137,-203r23,125v3,12,2,30,6,43v3,-58,13,-112,19,-168r47,0r-41,203r-51,0r-23,-133v-3,48,-12,89,-19,133r-52,0r-42,-203r49,0r22,169v4,-62,16,-112,24,-169r38,0","w":240,"k":{".":13,",":13}},"x":{"d":"57,-104r-52,-99r55,0r22,55v4,-17,15,-39,22,-55r52,0r-51,98r52,105r-53,0v-8,-18,-19,-44,-24,-63v-4,21,-15,44,-23,63r-54,0","w":159},"y":{"d":"2,-203r49,0v10,57,22,97,27,162r29,-162r48,0r-62,248v-7,21,-35,29,-66,23r0,-36v11,2,29,2,28,-9v-13,-78,-36,-151,-53,-226","w":159,"k":{".":20,",":20}},"z":{"d":"132,-170r-74,134r74,0r0,36r-124,0r0,-37r72,-130r-70,0r0,-36r122,0r0,33","w":140},"{":{"d":"-12,-117v63,-9,-15,-159,72,-153v8,1,20,-2,26,1v-61,7,8,137,-56,152v62,6,-4,131,56,150v-46,3,-71,-7,-71,-53v0,-40,11,-93,-27,-97","w":98},"|":{"d":"27,-270r36,0r0,360r-36,0r0,-360","w":90},"}":{"d":"12,-269v40,-6,71,4,71,46v0,41,-11,103,27,106v-65,6,17,158,-73,151v-8,-1,-19,2,-25,-1v60,-7,-8,-138,57,-150v-64,-4,5,-136,-57,-152","w":98},"~":{"d":"125,-103v15,0,19,-17,25,-26r21,26v-12,25,-30,53,-66,38r-47,-20v-17,2,-21,17,-28,30r-21,-27v11,-20,20,-42,48,-44v23,-2,48,23,68,23"},"\u00a1":{"d":"76,-139r7,125r0,75r-46,0v-1,-71,2,-138,7,-200r32,0xm37,-161r0,-47r46,0r0,47r-46,0","w":119},"\u00a2":{"d":"91,-169v-24,0,-21,18,-21,44r0,76xm84,-37v23,13,25,-15,23,-41r47,0v4,54,-21,93,-75,83r-7,39r-25,0r8,-45v-36,-18,-28,-81,-29,-135v-1,-48,26,-79,72,-71r6,-35r25,0r-7,40v25,10,34,34,32,70r-47,0v-1,-9,2,-21,-1,-28"},"\u00a3":{"d":"13,-28v26,-14,48,-58,31,-93r-31,0r0,-22r23,0v-36,-54,-10,-139,64,-134v47,3,76,29,71,85r-46,0v-2,-28,0,-45,-28,-45v-44,0,-30,66,-14,94r53,0r0,22r-45,0v12,40,-15,74,-40,89v30,-22,87,9,114,-15r10,39v-42,34,-106,-18,-150,13"},"\u2044":{"d":"-34,0r-27,0r153,-266r27,0","w":60},"\u00a5":{"d":"187,-270r-72,155r0,22r39,0r0,18r-39,0r0,22r39,0r0,18r-39,0r0,35r-50,0r0,-35r-41,0r0,-18r41,0r0,-22r-41,0r0,-18r41,0r0,-22r-72,-155r57,0v13,36,32,73,40,112v10,-37,28,-77,42,-112r55,0"},"\u0192":{"d":"77,-180v6,-61,33,-112,100,-89r-8,37v-34,-16,-44,19,-45,52r40,0r0,35r-45,0v-13,61,-15,135,-39,186v-11,24,-44,32,-77,21r6,-39v22,19,35,-10,39,-32r23,-136r-40,0r0,-35r46,0"},"\u00a7":{"d":"111,-68v16,-9,16,-38,-1,-47r-41,-34v-18,5,-17,34,-3,45xm87,66v-44,0,-69,-23,-67,-70r45,0v-8,36,40,43,47,16v-3,-59,-102,-61,-99,-133v1,-25,13,-43,31,-52v-13,-10,-18,-23,-18,-45v-4,-66,108,-79,127,-23v3,8,5,18,5,28r-45,0v6,-32,-43,-37,-43,-8v14,58,96,53,97,123v0,25,-14,42,-30,53v11,10,20,27,20,48v-1,41,-31,63,-70,63"},"\u00a4":{"d":"46,-186v22,-17,67,-18,90,0r15,-16r26,29r-15,15v18,26,16,70,0,93r15,16r-26,28r-15,-15v-30,18,-62,17,-90,0r-15,15r-28,-28r15,-16v-16,-23,-16,-68,0,-93r-15,-15r28,-29xm133,-112v-1,-25,-17,-44,-42,-45v-23,0,-43,22,-43,45v0,22,21,47,43,47v24,0,43,-23,42,-47"},"'":{"d":"67,-168r-43,0r0,-98r43,0r0,98","w":90},"\u201c":{"d":"75,-276r0,17v-17,2,-23,13,-23,34r23,0r0,47r-44,0v-1,-49,-4,-94,44,-98xm146,-276r0,17v-17,2,-24,12,-23,34r23,0r0,47r-44,0v-1,-49,-4,-95,44,-98"},"\u00ab":{"d":"83,-22r-56,-51r0,-37r56,-51r0,40r-34,29r34,29r0,41xm151,-22r-57,-51r0,-37r57,-51r0,40r-35,29r35,29r0,41"},"\u2039":{"d":"77,-22r-56,-51r0,-37r56,-51r0,40r-34,27r34,31r0,41","w":100},"\u203a":{"d":"23,-22r0,-41r34,-29r-34,-29r0,-40r56,51r0,37","w":100},"\uf001":{"d":"160,-203r0,203r-46,0r0,-203r46,0xm160,-270r0,43r-46,0r0,-43r46,0xm22,-203v-5,-52,13,-73,67,-67r0,37v-22,-9,-23,11,-21,30r21,0r0,34r-21,0r0,169r-46,0r0,-169r-18,0r0,-34r18,0"},"\uf002":{"d":"159,-270r0,270r-46,0r0,-270r46,0xm22,-203v-5,-52,13,-73,67,-67r0,37v-22,-9,-23,11,-21,30r21,0r0,34r-21,0r0,169r-46,0r0,-169r-18,0r0,-34r18,0"},"\u2013":{"d":"180,-93r-180,0r0,-40r180,0r0,40"},"\u2020":{"d":"68,-152r-55,0r0,-40r55,0r0,-85r46,0r0,85r53,0r0,40r-53,0r0,208r-46,0r0,-208"},"\u2021":{"d":"68,-28r-55,0r0,-40r55,0r0,-83r-55,0r0,-41r55,0r0,-85r46,0r0,85r54,0r0,41r-54,0r0,83r54,0r0,40r-54,0r0,86r-46,0r0,-86"},"\u2219":{"d":"36,-113r48,0r0,47r-48,0r0,-47","w":119},"\u00b6":{"d":"8,-206v0,-87,103,-60,181,-64r0,43r-15,0r0,269r-42,0r0,-269r-25,0r0,269r-42,0r0,-186v-36,0,-57,-25,-57,-62","w":197},"\u2022":{"d":"75,-202v39,0,68,27,68,67v0,40,-28,68,-68,68v-40,0,-67,-29,-67,-68v0,-39,28,-67,67,-67","w":151},"\u201a":{"d":"31,50r0,-17v19,-4,22,-13,23,-34r-23,0r0,-46r44,0v1,48,4,93,-44,97","w":100},"\u201e":{"d":"105,50r0,-17v17,-5,24,-11,23,-34r-23,0r0,-46r44,0v1,48,4,94,-44,97xm35,50r0,-17v18,-4,22,-12,22,-34r-22,0r0,-46r43,0v1,47,4,93,-43,97"},"\u201d":{"d":"105,-172r0,-17v16,-3,23,-13,23,-34r-23,0r0,-47r44,0v1,50,4,94,-44,98xm34,-172r0,-17v17,-3,24,-12,23,-34r-23,0r0,-47r44,0v1,49,4,95,-44,98"},"\u00bb":{"d":"29,-22r0,-41r35,-31r-35,-27r0,-40r57,51r0,37xm97,-22r0,-41r34,-31r-34,-27r0,-40r56,51r0,37"},"\u2026":{"d":"84,0r-48,0r0,-47r48,0r0,47xm204,0r-48,0r0,-47r48,0r0,47xm324,0r-48,0r0,-47r48,0r0,47","w":360},"\u2030":{"d":"153,-66v0,-43,11,-66,55,-66v43,0,56,22,56,66v0,45,-13,66,-56,66v-42,0,-55,-23,-55,-66xm229,-66v0,-23,2,-39,-20,-39v-23,0,-21,16,-21,39v0,24,-1,40,21,40v22,0,20,-15,20,-40xm282,-66v0,-43,12,-66,55,-66v44,0,56,23,56,66v0,43,-12,66,-56,66v-43,0,-55,-23,-55,-66xm358,-66v0,-23,2,-39,-20,-39v-23,0,-21,16,-21,39v0,24,-1,40,21,40v22,0,20,-15,20,-40xm8,-199v0,-44,13,-66,55,-66v43,0,55,22,55,66v0,44,-12,66,-55,66v-43,0,-55,-22,-55,-66xm83,-199v1,-24,1,-40,-20,-40v-20,0,-22,16,-21,40v1,25,-1,40,21,40v22,0,19,-15,20,-40xm89,7r-27,0r122,-276r26,0","w":399},"\u00bf":{"d":"92,31v25,1,23,-19,25,-40r44,0v5,48,-21,78,-70,77v-44,-1,-69,-23,-69,-67v0,-68,65,-68,62,-137r42,0v8,71,-55,79,-55,138v0,18,5,28,21,29xm127,-162r-46,0r0,-46r46,0r0,46"},"`":{"d":"0,-279r56,0r34,53r-36,0","w":119},"\u00b4":{"d":"30,-226r34,-53r56,0r-54,53r-36,0","w":119},"\u02c6":{"d":"37,-284r45,0r41,52r-41,0r-22,-29r-23,29r-41,0","w":119},"\u02dc":{"d":"35,-273v27,-3,56,31,68,-2r23,0v-5,52,-52,45,-93,31v-10,0,-15,9,-16,15r-23,0v3,-24,17,-42,41,-44","w":119},"\u00af":{"d":"122,-240r-124,0r0,-26r124,0r0,26","w":119},"\u02d8":{"d":"23,-281v1,34,74,34,74,0r24,0v2,56,-89,69,-114,27v-5,-8,-7,-17,-7,-27r23,0","w":119},"\u02d9":{"d":"83,-232r-46,0r0,-41r46,0r0,41","w":119},"\u00a8":{"d":"47,-232r-45,0r0,-41r45,0r0,41xm118,-232r-46,0r0,-41r46,0r0,41","w":119},"\u02da":{"d":"98,-266v0,20,-17,39,-38,39v-19,0,-39,-19,-38,-39v1,-22,16,-38,38,-38v21,-1,38,18,38,38xm81,-266v0,-12,-10,-20,-21,-21v-12,0,-21,9,-21,21v0,10,10,21,21,21v11,0,22,-10,21,-21","w":119},"\u00b8":{"d":"99,48v-1,37,-57,41,-85,25r7,-15v21,7,44,12,47,-11v-3,-12,-18,-12,-31,-7r-7,-8r21,-32r19,0r-15,23v21,-6,45,2,44,25","w":119},"\u02dd":{"d":"-6,-228r34,-53r55,0r-53,53r-36,0xm71,-228r34,-53r56,0r-53,53r-37,0","w":119},"\u02db":{"d":"63,28v1,19,25,18,37,9r0,31v-26,13,-71,5,-68,-30v2,-23,24,-43,54,-37v-9,5,-23,15,-23,27","w":119},"\u02c7":{"d":"123,-281r-41,53r-45,0r-41,-53r41,0r23,30r22,-30r41,0","w":119},"\u2014":{"d":"360,-93r-360,0r0,-40r360,0r0,40","w":360},"\u00c6":{"d":"131,0r0,-69r-62,0r-23,69r-54,0r104,-270r174,0r0,40r-88,0r0,68r82,0r0,40r-82,0r0,82r88,0r0,40r-139,0xm131,-220r-9,0r-39,111r48,0r0,-111","w":280},"\u00aa":{"d":"53,-170v20,0,14,-26,15,-46v-16,12,-30,10,-30,31v0,9,5,15,15,15xm68,-249v-6,-13,-36,-9,-30,12r-29,0v2,-29,12,-40,46,-40v66,0,36,71,46,125v-13,-2,-34,8,-31,-12v-13,26,-70,20,-62,-21v-5,-43,60,-30,60,-64","w":107},"\u0141":{"d":"171,0r-144,0r0,-104r-27,21r0,-46r27,-21r0,-120r50,0r0,81r37,-31r0,46r-37,31r0,103r94,0r0,40"},"\u00d8":{"d":"110,-277v33,1,47,5,64,22r16,-25r18,12r-21,33v15,29,10,73,11,117v2,80,-13,124,-88,125v-29,0,-49,-5,-63,-20r-16,27r-18,-11r21,-34v-13,-31,-12,-80,-12,-126v0,-73,14,-121,88,-120xm110,-236v-53,1,-31,82,-36,137r68,-108v-2,-19,-11,-29,-32,-29xm110,-34v54,-1,34,-87,36,-138r-69,110v4,17,12,28,33,28","w":219},"\u0152":{"d":"110,-34v29,0,36,-16,36,-47r0,-112v7,-46,-53,-58,-66,-18v-8,26,-8,64,-8,97v0,38,4,80,38,80xm100,-277v25,-1,40,13,50,28r0,-21r135,0r0,40r-89,0r0,68r83,0r0,40r-83,0r0,82r89,0r0,40r-136,0v-1,-8,2,-20,-1,-26v-8,15,-31,30,-47,33v-79,-2,-81,-81,-79,-164v1,-63,17,-118,78,-120","w":299},"\u00ba":{"d":"54,-255v-27,-1,-12,39,-16,62v1,15,2,23,16,23v26,0,13,-40,15,-63v2,-16,0,-21,-15,-22xm8,-208v0,-44,5,-69,46,-69v42,1,46,24,46,69v1,41,-7,60,-46,60v-39,0,-46,-19,-46,-60","w":107},"\u00e6":{"d":"86,-172v-20,0,-23,8,-23,28r-46,0v-12,-65,74,-77,118,-51v41,-28,113,-11,107,50r0,52r-89,0v1,27,-6,62,22,62v19,0,21,-18,20,-38r47,0v-1,47,-17,75,-67,74v-26,0,-37,-6,-49,-21v-27,36,-121,28,-110,-36v-4,-60,51,-61,85,-86v14,-10,9,-39,-15,-34xm81,-31v35,2,24,-44,26,-76v-15,13,-46,18,-44,49v1,18,2,26,18,27xm195,-129v1,-22,2,-43,-21,-43v-18,0,-23,21,-21,43r42,0","w":259},"\u0131":{"d":"73,0r-46,0r0,-203r46,0r0,203","w":100},"\u0142":{"d":"27,0r0,-130r-26,18r0,-35r26,-18r0,-105r46,0r0,86r25,-18r0,35r-25,17r0,150r-46,0","w":100},"\u00f8":{"d":"91,-31v38,0,20,-60,22,-91r-46,71v1,15,7,20,24,20xm27,-27v-13,-68,-28,-181,64,-181v22,0,38,4,49,14r19,-28r18,12r-24,36v13,62,29,179,-62,179v-23,0,-37,-3,-50,-12r-19,28r-20,-12xm91,-172v-39,-1,-23,60,-24,93r46,-70v-2,-15,-5,-23,-22,-23"},"\u0153":{"d":"181,-208v60,-2,66,54,63,115r-89,0v1,27,-5,62,20,62v20,0,24,-16,22,-38r47,0v13,71,-74,94,-113,55v-9,12,-25,19,-43,19v-62,1,-71,-35,-71,-99v0,-72,3,-114,71,-114v22,0,30,7,43,20v10,-14,27,-20,50,-20xm175,-172v-22,0,-19,21,-20,43r42,0v0,-23,1,-43,-22,-43xm85,-172v-36,1,-18,61,-22,95v3,26,-2,46,22,46v38,0,23,-69,23,-109v0,-20,-3,-33,-23,-32","w":259},"\u00df":{"d":"90,-277v67,-6,89,100,37,120v51,13,41,165,-9,162v-13,0,-24,-2,-33,-5r0,-33v19,7,29,-5,28,-34v-1,-31,8,-71,-25,-70r0,-34v27,3,21,-23,22,-47v1,-14,-8,-22,-21,-22v-19,0,-21,20,-21,40r0,200r-46,0r0,-192v-3,-53,17,-80,68,-85"},"\u00f7":{"d":"9,-70r0,-40r162,0r0,40r-162,0xm113,-136r-46,0r0,-41r46,0r0,41xm113,-2r-46,0r0,-42r46,0r0,42"},"\u00be":{"d":"185,-57r33,0v-1,-21,2,-46,-1,-65xm215,-159r36,0r0,102r15,0r0,24r-15,0r0,33r-33,0r0,-33r-57,0r0,-24xm84,0r-27,0r153,-266r27,0xm71,-159v-1,-23,-7,-21,-33,-23r0,-24v31,9,42,-37,15,-41v-11,1,-18,9,-16,24r-30,0v-1,-33,13,-47,46,-47v49,0,64,64,24,75v45,14,31,96,-24,91v-39,-3,-49,-21,-49,-57r31,0v0,18,0,33,18,33v16,0,18,-13,18,-31","w":270},"\u00bc":{"d":"182,-57r33,0v-1,-21,2,-46,-1,-65xm211,-159r36,0r0,102r15,0r0,24r-15,0r0,33r-32,0r0,-33r-57,0r0,-24xm74,0r-27,0r153,-266r27,0xm7,-242v26,0,42,-8,48,-28r25,0r0,162r-33,0r0,-112r-40,0r0,-22","w":270},"\u00b9":{"d":"18,-242v26,0,42,-8,48,-28r24,0r0,162r-32,0r0,-112r-40,0r0,-22","w":107},"\u00d7":{"d":"61,-90r-52,-52r28,-28r52,52r54,-53r28,28r-54,53r54,54r-28,28r-54,-54r-52,52r-28,-28"},"\u00ae":{"d":"291,-135v0,85,-57,142,-141,142v-85,0,-142,-57,-142,-142v0,-85,57,-142,142,-142v84,0,141,57,141,142xm35,-135v0,68,49,115,115,115v66,0,114,-47,114,-115v0,-68,-48,-115,-114,-115v-66,0,-115,47,-115,115xm225,-164v-1,29,-15,38,-42,41r37,65r-35,0r-34,-65r-30,0r0,65r-30,0r0,-153v59,2,137,-15,134,47xm195,-168v0,-31,-45,-17,-74,-20r0,43v30,-2,75,10,74,-23","w":298},"\u00de":{"d":"139,-149v0,-38,-26,-42,-64,-39r0,78v38,3,64,-2,64,-39xm190,-149v0,64,-45,85,-115,79r0,70r-51,0r0,-270r51,0r0,43r48,0v48,-1,67,32,67,78","w":200},"\u00a6":{"d":"27,63r0,-126r36,0r0,126r-36,0xm63,-243r0,126r-36,0r0,-126r36,0","w":90},"\u00d0":{"d":"146,-135v0,-49,6,-91,-36,-95r-34,0r0,60r38,0r0,24r-38,0r0,106r34,0v42,-4,36,-46,36,-95xm198,-146v-1,78,-2,146,-79,146r-93,0r0,-146r-19,0r0,-24r19,0r0,-100r105,0v58,6,68,54,67,124","w":219},"\u00bd":{"d":"66,0r-27,0r153,-266r27,0xm4,-242v27,0,43,-7,49,-28r24,0r0,162r-33,0r0,-112r-40,0r0,-22xm219,-163v50,-2,60,58,26,87v-14,12,-42,33,-43,52r61,0r0,24r-96,0v-4,-52,40,-70,63,-104v7,-11,4,-37,-13,-35v-17,2,-17,11,-17,31r-31,0v-2,-37,15,-54,50,-55","w":270},"\u2212":{"d":"9,-70r0,-40r162,0r0,40r-162,0"},"\u00e7":{"d":"88,59v9,-8,4,-25,-11,-22v-8,1,-19,4,-22,-5r18,-27v-63,-1,-56,-74,-55,-141v0,-47,17,-72,63,-72v46,0,68,26,64,75r-47,0v0,-18,2,-40,-16,-39v-32,4,-13,64,-17,103v-2,22,0,37,17,38v20,2,14,-26,16,-48r47,0v2,49,-8,81,-53,84v-3,6,-11,12,-11,18v20,-6,44,2,43,25v0,39,-56,39,-85,25r7,-15v18,5,31,11,42,1","w":159},"\u00f0":{"d":"90,-163v-40,0,-20,61,-24,97v-2,23,1,35,24,35v41,0,18,-60,24,-94v-1,-24,-1,-38,-24,-38xm19,-94v1,-54,3,-102,57,-102v16,0,26,4,34,9v-3,-14,-21,-34,-32,-41r-21,17r-17,-13r20,-16v-4,-3,-12,-8,-24,-14r31,-26v10,4,18,8,26,14r18,-14r16,12r-17,15v42,27,51,84,51,159v0,61,-8,99,-71,99v-63,0,-72,-38,-71,-99"},"\u00b1":{"d":"70,-136r0,-49r40,0r0,49r61,0r0,39r-61,0r0,48r-40,0r0,-48r-61,0r0,-39r61,0xm9,5r0,-39r162,0r0,39r-162,0"},"\u00c7":{"d":"110,59v13,-19,-8,-27,-26,-19r-8,-8r18,-26v-78,-3,-75,-80,-74,-163v0,-73,14,-121,88,-120v53,0,76,34,75,91r-50,0v-2,-23,0,-50,-25,-50v-57,0,-36,89,-36,143v0,31,5,60,36,59v26,-1,24,-37,26,-62r50,0v-1,57,-14,101,-71,102r-11,17v20,-6,45,2,44,25v-1,37,-57,41,-85,25r7,-15v18,5,31,11,42,1","w":200},"\u00fe":{"d":"90,-172v-37,0,-22,68,-22,105v0,24,7,36,22,36v31,-1,21,-71,21,-106v0,-23,-7,-35,-21,-35xm109,5v-22,0,-32,-8,-41,-24r0,87r-47,0r0,-338r47,0r0,88v9,-17,18,-25,41,-26v64,-2,49,81,49,142v0,39,-10,72,-49,71"},"\u00a9":{"d":"8,-136v0,-82,60,-141,142,-141v85,0,141,56,141,141v0,85,-56,143,-141,143v-86,0,-142,-58,-142,-143xm35,-136v0,67,47,115,115,115v68,0,114,-46,114,-115v0,-68,-46,-114,-114,-114v-66,0,-115,47,-115,114xm156,-81v17,0,34,-14,34,-29r32,0v-5,33,-30,55,-66,55v-48,0,-75,-34,-79,-82v-7,-86,128,-113,145,-28r-32,0v-19,-50,-85,-23,-81,28v2,27,18,56,47,56","w":298},"\u00ac":{"d":"131,-38r0,-67r-122,0r0,-39r162,0r0,106r-40,0"},"\u00b2":{"d":"56,-271v49,-3,60,60,26,87v-14,11,-41,34,-42,52r61,0r0,24r-96,0v-2,-55,40,-71,62,-104v7,-10,5,-37,-12,-35v-18,2,-17,11,-18,31r-30,0v-3,-37,14,-53,49,-55","w":107},"\u00b3":{"d":"71,-159v-1,-23,-7,-21,-33,-23r0,-24v31,9,42,-37,15,-41v-11,1,-18,9,-16,24r-30,0v-1,-33,13,-47,46,-47v49,0,64,64,24,75v45,14,31,96,-24,91v-39,-3,-49,-21,-49,-57r31,0v0,18,0,33,18,33v16,0,18,-13,18,-31","w":107},"\u2122":{"d":"279,-270r0,145r-29,0r-1,-117r-38,117r-17,0r-38,-117r0,117r-29,0r0,-145r46,0r30,86r29,-86r47,0xm112,-270r0,28r-42,0r0,117r-29,0r0,-117r-41,0r0,-28r112,0","w":309},"\u00b0":{"d":"72,-270v32,0,54,22,54,54v0,32,-22,53,-54,54v-28,1,-55,-26,-54,-54v1,-32,22,-54,54,-54xm72,-242v-13,0,-26,13,-26,26v0,13,13,26,26,26v13,0,26,-13,26,-26v0,-13,-13,-26,-26,-26","w":143},"\u00b5":{"d":"87,-31v21,0,21,-19,21,-40r0,-132r47,0r0,203r-44,0v-1,-9,2,-23,-1,-30v-8,24,-19,35,-42,28r0,70r-47,0r0,-271r47,0r0,139v-1,18,2,33,19,33"},"\u00c1":{"d":"57,0r-54,0r65,-270r68,0r61,270r-54,0r-13,-68r-60,0xm101,-240v-6,53,-13,87,-23,132r44,0xm70,-293r34,-53r56,0r-54,53r-36,0","w":200},"\u00c2":{"d":"57,0r-54,0r65,-270r68,0r61,270r-54,0r-13,-68r-60,0xm101,-240v-6,53,-13,87,-23,132r44,0xm74,-344r45,0r41,52r-41,0r-22,-29r-23,29r-41,0","w":200},"\u00c4":{"d":"57,0r-54,0r65,-270r68,0r61,270r-54,0r-13,-68r-60,0xm101,-240v-6,53,-13,87,-23,132r44,0xm87,-299r-45,0r0,-41r45,0r0,41xm158,-299r-46,0r0,-41r46,0r0,41","w":200},"\u00c0":{"d":"57,0r-54,0r65,-270r68,0r61,270r-54,0r-13,-68r-60,0xm101,-240v-6,53,-13,87,-23,132r44,0xm40,-346r56,0r34,53r-36,0","w":200},"\u00c5":{"d":"57,0r-54,0r65,-270r68,0r61,270r-54,0r-13,-68r-60,0xm101,-240v-6,53,-13,87,-23,132r44,0xm138,-319v0,20,-17,39,-38,39v-19,0,-39,-19,-38,-39v1,-22,16,-38,38,-38v21,-1,38,18,38,38xm121,-319v0,-12,-10,-20,-21,-21v-12,0,-21,9,-21,21v0,10,10,21,21,21v11,0,22,-10,21,-21","w":200},"\u00c3":{"d":"57,0r-54,0r65,-270r68,0r61,270r-54,0r-13,-68r-60,0xm101,-240v-6,53,-13,87,-23,132r44,0xm75,-333v27,-3,56,31,68,-2r23,0v-5,52,-52,45,-93,31v-10,0,-15,9,-16,15r-23,0v3,-24,17,-42,41,-44","w":200},"\u00c9":{"d":"165,0r-142,0r0,-270r142,0r0,40r-92,0r0,68r85,0r0,39r-85,0r0,83r92,0r0,40xm60,-293r34,-53r56,0r-54,53r-36,0"},"\u00ca":{"d":"165,0r-142,0r0,-270r142,0r0,40r-92,0r0,68r85,0r0,39r-85,0r0,83r92,0r0,40xm67,-344r45,0r41,52r-41,0r-22,-29r-23,29r-41,0"},"\u00cb":{"d":"165,0r-142,0r0,-270r142,0r0,40r-92,0r0,68r85,0r0,39r-85,0r0,83r92,0r0,40xm77,-299r-45,0r0,-41r45,0r0,41xm148,-299r-46,0r0,-41r46,0r0,41"},"\u00c8":{"d":"165,0r-142,0r0,-270r142,0r0,40r-92,0r0,68r85,0r0,39r-85,0r0,83r92,0r0,40xm30,-346r56,0r34,53r-36,0"},"\u00cd":{"d":"75,0r-50,0r0,-270r50,0r0,270xm20,-293r34,-53r56,0r-54,53r-36,0","w":100},"\u00ce":{"d":"75,0r-50,0r0,-270r50,0r0,270xm27,-344r45,0r41,52r-41,0r-22,-29r-23,29r-41,0","w":100},"\u00cf":{"d":"75,0r-50,0r0,-270r50,0r0,270xm37,-299r-45,0r0,-41r45,0r0,41xm108,-299r-46,0r0,-41r46,0r0,41","w":100},"\u00cc":{"d":"75,0r-50,0r0,-270r50,0r0,270xm-10,-346r56,0r34,53r-36,0","w":100},"\u00d1":{"d":"152,-65r-7,-205r50,0r0,270r-52,0v-26,-69,-55,-127,-75,-203v-1,48,7,100,7,152r0,51r-51,0r0,-270r53,0r67,176v3,10,5,19,8,29xm85,-333v27,-3,56,31,68,-2r23,0v-5,52,-52,45,-93,31v-10,0,-15,9,-16,15r-23,0v3,-24,17,-42,41,-44","w":219},"\u00d3":{"d":"110,7v-89,2,-90,-74,-88,-164v1,-73,14,-120,88,-120v88,0,88,72,88,159v0,80,-13,123,-88,125xm110,-236v-56,0,-32,89,-36,143v-2,31,6,59,36,59v54,0,37,-80,37,-132v0,-34,-3,-70,-37,-70xm80,-293r34,-53r56,0r-54,53r-36,0","w":219},"\u00d4":{"d":"110,7v-89,2,-90,-74,-88,-164v1,-73,14,-120,88,-120v88,0,88,72,88,159v0,80,-13,123,-88,125xm110,-236v-56,0,-32,89,-36,143v-2,31,6,59,36,59v54,0,37,-80,37,-132v0,-34,-3,-70,-37,-70xm87,-344r45,0r41,52r-41,0r-22,-29r-23,29r-41,0","w":219},"\u00d6":{"d":"110,7v-89,2,-90,-74,-88,-164v1,-73,14,-120,88,-120v88,0,88,72,88,159v0,80,-13,123,-88,125xm110,-236v-56,0,-32,89,-36,143v-2,31,6,59,36,59v54,0,37,-80,37,-132v0,-34,-3,-70,-37,-70xm97,-299r-45,0r0,-41r45,0r0,41xm168,-299r-46,0r0,-41r46,0r0,41","w":219},"\u00d2":{"d":"110,7v-89,2,-90,-74,-88,-164v1,-73,14,-120,88,-120v88,0,88,72,88,159v0,80,-13,123,-88,125xm110,-236v-56,0,-32,89,-36,143v-2,31,6,59,36,59v54,0,37,-80,37,-132v0,-34,-3,-70,-37,-70xm50,-346r56,0r34,53r-36,0","w":219},"\u00d5":{"d":"110,7v-89,2,-90,-74,-88,-164v1,-73,14,-120,88,-120v88,0,88,72,88,159v0,80,-13,123,-88,125xm110,-236v-56,0,-32,89,-36,143v-2,31,6,59,36,59v54,0,37,-80,37,-132v0,-34,-3,-70,-37,-70xm85,-333v27,-3,56,31,68,-2r23,0v-5,52,-52,45,-93,31v-10,0,-15,9,-16,15r-23,0v3,-24,17,-42,41,-44","w":219},"\u0160":{"d":"53,-142v-58,-38,-39,-142,45,-135v57,5,79,32,78,89r-49,0v1,-29,-3,-46,-29,-48v-28,-3,-36,30,-21,46v39,43,106,48,106,119v0,50,-34,78,-83,78v-62,0,-86,-36,-82,-102r50,0v-1,33,2,61,32,61v40,0,38,-55,11,-68v-11,-9,-45,-32,-58,-40xm163,-341r-41,53r-45,0r-41,-53r41,0r23,30r22,-30r41,0","w":200},"\u00da":{"d":"111,-34v31,-1,34,-20,34,-52r0,-184r51,0r0,188v2,61,-24,89,-85,89v-61,0,-88,-28,-87,-89r0,-188r51,0r0,184v0,32,4,52,36,52xm80,-293r34,-53r56,0r-54,53r-36,0","w":219},"\u00db":{"d":"111,-34v31,-1,34,-20,34,-52r0,-184r51,0r0,188v2,61,-24,89,-85,89v-61,0,-88,-28,-87,-89r0,-188r51,0r0,184v0,32,4,52,36,52xm87,-344r45,0r41,52r-41,0r-22,-29r-23,29r-41,0","w":219},"\u00dc":{"d":"111,-34v31,-1,34,-20,34,-52r0,-184r51,0r0,188v2,61,-24,89,-85,89v-61,0,-88,-28,-87,-89r0,-188r51,0r0,184v0,32,4,52,36,52xm97,-299r-45,0r0,-41r45,0r0,41xm168,-299r-46,0r0,-41r46,0r0,41","w":219},"\u00d9":{"d":"111,-34v31,-1,34,-20,34,-52r0,-184r51,0r0,188v2,61,-24,89,-85,89v-61,0,-88,-28,-87,-89r0,-188r51,0r0,184v0,32,4,52,36,52xm50,-346r56,0r34,53r-36,0","w":219},"\u00dd":{"d":"59,-270v13,35,33,73,41,112r41,-112r55,0r-71,155r0,115r-50,0r0,-115r-71,-155r55,0xm70,-293r34,-53r56,0r-54,53r-36,0","w":200},"\u0178":{"d":"59,-270v13,35,33,73,41,112r41,-112r55,0r-71,155r0,115r-50,0r0,-115r-71,-155r55,0xm87,-299r-45,0r0,-41r45,0r0,41xm158,-299r-46,0r0,-41r46,0r0,41","w":200},"\u017d":{"d":"12,0r0,-40r101,-192v-26,4,-65,1,-95,2r0,-40r147,0r0,40r-100,192v29,-4,70,-1,103,-2r0,40r-156,0xm153,-341r-41,53r-45,0r-41,-53r41,0r23,30r22,-30r41,0"},"\u00e1":{"d":"88,-208v106,0,53,120,70,208r-44,0v-2,-4,-3,-11,-3,-21v-22,44,-96,31,-96,-34v0,-59,51,-58,88,-84v12,-12,7,-38,-17,-33v-21,0,-24,9,-25,29r-44,0v0,-47,20,-65,71,-65xm84,-31v31,-1,21,-44,24,-76v-17,16,-46,16,-46,50v1,15,5,27,22,26xm60,-226r34,-53r56,0r-54,53r-36,0"},"\u00e2":{"d":"88,-208v106,0,53,120,70,208r-44,0v-2,-4,-3,-11,-3,-21v-22,44,-96,31,-96,-34v0,-59,51,-58,88,-84v12,-12,7,-38,-17,-33v-21,0,-24,9,-25,29r-44,0v0,-47,20,-65,71,-65xm84,-31v31,-1,21,-44,24,-76v-17,16,-46,16,-46,50v1,15,5,27,22,26xm67,-277r45,0r41,52r-41,0r-22,-29r-23,29r-41,0"},"\u00e4":{"d":"88,-208v106,0,53,120,70,208r-44,0v-2,-4,-3,-11,-3,-21v-22,44,-96,31,-96,-34v0,-59,51,-58,88,-84v12,-12,7,-38,-17,-33v-21,0,-24,9,-25,29r-44,0v0,-47,20,-65,71,-65xm84,-31v31,-1,21,-44,24,-76v-17,16,-46,16,-46,50v1,15,5,27,22,26xm77,-232r-45,0r0,-41r45,0r0,41xm148,-232r-46,0r0,-41r46,0r0,41"},"\u00e0":{"d":"88,-208v106,0,53,120,70,208r-44,0v-2,-4,-3,-11,-3,-21v-22,44,-96,31,-96,-34v0,-59,51,-58,88,-84v12,-12,7,-38,-17,-33v-21,0,-24,9,-25,29r-44,0v0,-47,20,-65,71,-65xm84,-31v31,-1,21,-44,24,-76v-17,16,-46,16,-46,50v1,15,5,27,22,26xm30,-279r56,0r34,53r-36,0"},"\u00e5":{"d":"88,-208v106,0,53,120,70,208r-44,0v-2,-4,-3,-11,-3,-21v-22,44,-96,31,-96,-34v0,-59,51,-58,88,-84v12,-12,7,-38,-17,-33v-21,0,-24,9,-25,29r-44,0v0,-47,20,-65,71,-65xm84,-31v31,-1,21,-44,24,-76v-17,16,-46,16,-46,50v1,15,5,27,22,26xm123,-262v0,20,-17,39,-38,39v-19,0,-39,-19,-38,-39v1,-22,16,-38,38,-38v21,-1,38,18,38,38xm106,-262v0,-12,-10,-20,-21,-21v-12,0,-21,9,-21,21v0,10,10,21,21,21v11,0,22,-10,21,-21"},"\u00e3":{"d":"88,-208v106,0,53,120,70,208r-44,0v-2,-4,-3,-11,-3,-21v-22,44,-96,31,-96,-34v0,-59,51,-58,88,-84v12,-12,7,-38,-17,-33v-21,0,-24,9,-25,29r-44,0v0,-47,20,-65,71,-65xm84,-31v31,-1,21,-44,24,-76v-17,16,-46,16,-46,50v1,15,5,27,22,26xm65,-266v27,-3,56,31,68,-2r23,0v-5,52,-52,45,-93,31v-10,0,-15,9,-16,15r-23,0v3,-24,17,-42,41,-44"},"\u00e9":{"d":"94,5v-77,0,-75,-63,-75,-138v0,-47,23,-75,69,-75v70,0,73,46,71,116r-93,0v1,28,-6,63,24,61v20,-1,21,-15,22,-38r47,0v-1,46,-17,74,-65,74xm88,-172v-25,0,-21,19,-22,44r47,0v0,-25,2,-44,-25,-44xm60,-226r34,-53r56,0r-54,53r-36,0"},"\u00ea":{"d":"94,5v-77,0,-75,-63,-75,-138v0,-47,23,-75,69,-75v70,0,73,46,71,116r-93,0v1,28,-6,63,24,61v20,-1,21,-15,22,-38r47,0v-1,46,-17,74,-65,74xm88,-172v-25,0,-21,19,-22,44r47,0v0,-25,2,-44,-25,-44xm67,-277r45,0r41,52r-41,0r-22,-29r-23,29r-41,0"},"\u00eb":{"d":"94,5v-77,0,-75,-63,-75,-138v0,-47,23,-75,69,-75v70,0,73,46,71,116r-93,0v1,28,-6,63,24,61v20,-1,21,-15,22,-38r47,0v-1,46,-17,74,-65,74xm88,-172v-25,0,-21,19,-22,44r47,0v0,-25,2,-44,-25,-44xm77,-232r-45,0r0,-41r45,0r0,41xm148,-232r-46,0r0,-41r46,0r0,41"},"\u00e8":{"d":"94,5v-77,0,-75,-63,-75,-138v0,-47,23,-75,69,-75v70,0,73,46,71,116r-93,0v1,28,-6,63,24,61v20,-1,21,-15,22,-38r47,0v-1,46,-17,74,-65,74xm88,-172v-25,0,-21,19,-22,44r47,0v0,-25,2,-44,-25,-44xm30,-279r56,0r34,53r-36,0"},"\u00ed":{"d":"73,0r-46,0r0,-203r46,0r0,203xm20,-226r34,-53r56,0r-54,53r-36,0","w":100},"\u00ee":{"d":"73,0r-46,0r0,-203r46,0r0,203xm24,-277r45,0r41,52r-41,0r-22,-29r-23,29r-41,0","w":100},"\u00ef":{"d":"73,0r-46,0r0,-203r46,0r0,203xm37,-232r-45,0r0,-41r45,0r0,41xm108,-232r-46,0r0,-41r46,0r0,41","w":100},"\u00ec":{"d":"73,0r-46,0r0,-203r46,0r0,203xm-10,-279r56,0r34,53r-36,0","w":100},"\u00f1":{"d":"112,-135v0,-21,-2,-34,-20,-34v-15,0,-23,13,-23,38r0,131r-47,0r0,-203r47,0r0,21v16,-42,89,-33,89,25r0,157r-46,0r0,-135xm65,-266v27,-3,56,31,68,-2r23,0v-5,52,-52,45,-93,31v-10,0,-15,9,-16,15r-23,0v3,-24,17,-42,41,-44"},"\u00f3":{"d":"91,-172v-43,1,-25,67,-25,106v0,22,2,35,25,35v42,0,16,-67,23,-103v-1,-24,-1,-38,-23,-38xm161,-94v0,64,-7,99,-70,99v-63,0,-72,-38,-72,-99v0,-71,4,-114,72,-114v68,0,70,47,70,114xm60,-226r34,-53r56,0r-54,53r-36,0"},"\u00f4":{"d":"91,-172v-43,1,-25,67,-25,106v0,22,2,35,25,35v42,0,16,-67,23,-103v-1,-24,-1,-38,-23,-38xm161,-94v0,64,-7,99,-70,99v-63,0,-72,-38,-72,-99v0,-71,4,-114,72,-114v68,0,70,47,70,114xm67,-277r45,0r41,52r-41,0r-22,-29r-23,29r-41,0"},"\u00f6":{"d":"91,-172v-43,1,-25,67,-25,106v0,22,2,35,25,35v42,0,16,-67,23,-103v-1,-24,-1,-38,-23,-38xm161,-94v0,64,-7,99,-70,99v-63,0,-72,-38,-72,-99v0,-71,4,-114,72,-114v68,0,70,47,70,114xm77,-232r-45,0r0,-41r45,0r0,41xm148,-232r-46,0r0,-41r46,0r0,41"},"\u00f2":{"d":"91,-172v-43,1,-25,67,-25,106v0,22,2,35,25,35v42,0,16,-67,23,-103v-1,-24,-1,-38,-23,-38xm161,-94v0,64,-7,99,-70,99v-63,0,-72,-38,-72,-99v0,-71,4,-114,72,-114v68,0,70,47,70,114xm30,-279r56,0r34,53r-36,0"},"\u00f5":{"d":"91,-172v-43,1,-25,67,-25,106v0,22,2,35,25,35v42,0,16,-67,23,-103v-1,-24,-1,-38,-23,-38xm161,-94v0,64,-7,99,-70,99v-63,0,-72,-38,-72,-99v0,-71,4,-114,72,-114v68,0,70,47,70,114xm65,-266v27,-3,56,31,68,-2r23,0v-5,52,-52,45,-93,31v-10,0,-15,9,-16,15r-23,0v3,-24,17,-42,41,-44"},"\u0161":{"d":"76,5v-42,-1,-69,-24,-66,-72r47,0v0,20,0,39,22,36v31,-5,20,-38,-4,-46v-27,-22,-62,-36,-64,-82v-2,-55,87,-61,119,-33v11,11,16,28,16,51r-47,0v-1,-20,-3,-30,-21,-31v-29,0,-22,33,-2,39v27,23,71,32,71,80v0,40,-23,60,-71,58xm140,-274r-41,53r-45,0r-41,-53r41,0r23,30r22,-30r41,0","w":159},"\u00fa":{"d":"87,-31v21,0,21,-19,21,-40r0,-132r47,0r0,203r-44,0v-1,-9,2,-23,-1,-30v-7,21,-18,35,-44,35v-34,1,-46,-18,-45,-52r0,-156r47,0r0,139v-1,18,2,33,19,33xm60,-226r34,-53r56,0r-54,53r-36,0"},"\u00fb":{"d":"87,-31v21,0,21,-19,21,-40r0,-132r47,0r0,203r-44,0v-1,-9,2,-23,-1,-30v-7,21,-18,35,-44,35v-34,1,-46,-18,-45,-52r0,-156r47,0r0,139v-1,18,2,33,19,33xm67,-280r45,0r41,52r-41,0r-22,-29r-23,29r-41,0"},"\u00fc":{"d":"87,-31v21,0,21,-19,21,-40r0,-132r47,0r0,203r-44,0v-1,-9,2,-23,-1,-30v-7,21,-18,35,-44,35v-34,1,-46,-18,-45,-52r0,-156r47,0r0,139v-1,18,2,33,19,33xm77,-232r-45,0r0,-41r45,0r0,41xm148,-232r-46,0r0,-41r46,0r0,41"},"\u00f9":{"d":"87,-31v21,0,21,-19,21,-40r0,-132r47,0r0,203r-44,0v-1,-9,2,-23,-1,-30v-7,21,-18,35,-44,35v-34,1,-46,-18,-45,-52r0,-156r47,0r0,139v-1,18,2,33,19,33xm30,-279r56,0r34,53r-36,0"},"\u00fd":{"d":"2,-203r49,0v10,57,22,97,27,162r29,-162r48,0r-62,248v-7,21,-35,29,-66,23r0,-36v11,2,29,2,28,-9v-13,-78,-36,-151,-53,-226xm50,-226r34,-53r56,0r-54,53r-36,0","w":159},"\u00ff":{"d":"2,-203r49,0v10,57,22,97,27,162r29,-162r48,0r-62,248v-7,21,-35,29,-66,23r0,-36v11,2,29,2,28,-9v-13,-78,-36,-151,-53,-226xm67,-232r-45,0r0,-41r45,0r0,41xm138,-232r-46,0r0,-41r46,0r0,41","w":159},"\u017e":{"d":"132,-170r-74,134r74,0r0,36r-124,0r0,-37r72,-130r-70,0r0,-36r122,0r0,33xm133,-274r-41,53r-45,0r-41,-53r41,0r23,30r22,-30r41,0","w":140},"\u00a0":{"w":90}}});

/**
 * Jcrop v.0.9.8 (minimized)
 * (c) 2008 Kelly Hallman and DeepLiquid.com
 * More information: http://deepliquid.com/content/Jcrop.html
 * Released under MIT License - this header must remain with code
 */


(function($){$.Jcrop=function(obj,opt)
{var obj=obj,opt=opt;if(typeof(obj)!=='object')obj=$(obj)[0];if(typeof(opt)!=='object')opt={};if(!('trackDocument'in opt))
{opt.trackDocument=$.browser.msie?false:true;if($.browser.msie&&$.browser.version.split('.')[0]=='8')
opt.trackDocument=true;}
if(!('keySupport'in opt))
opt.keySupport=$.browser.msie?false:true;var defaults={trackDocument:false,baseClass:'jcrop',addClass:null,bgColor:'black',bgOpacity:.6,borderOpacity:.4,handleOpacity:.5,handlePad:5,handleSize:9,handleOffset:5,edgeMargin:14,aspectRatio:0,keySupport:true,cornerHandles:true,sideHandles:true,drawBorders:true,dragEdges:true,boxWidth:0,boxHeight:0,boundary:8,animationDelay:20,swingSpeed:3,allowSelect:true,allowMove:true,allowResize:true,minSelect:[0,0],maxSize:[0,0],minSize:[0,0],onChange:function(){},onSelect:function(){}};var options=defaults;setOptions(opt);var $origimg=$(obj);var $img=$origimg.clone().removeAttr('id').css({position:'absolute'});$img.width($origimg.width());$img.height($origimg.height());$origimg.after($img).hide();presize($img,options.boxWidth,options.boxHeight);var boundx=$img.width(),boundy=$img.height(),$div=$('<div />').width(boundx).height(boundy).addClass(cssClass('holder')).css({position:'relative',backgroundColor:options.bgColor}).insertAfter($origimg).append($img);;if(options.addClass)$div.addClass(options.addClass);var $img2=$('<img />').attr('src',$img.attr('src')).css('position','absolute').width(boundx).height(boundy);var $img_holder=$('<div />').width(pct(100)).height(pct(100)).css({zIndex:310,position:'absolute',overflow:'hidden'}).append($img2);var $hdl_holder=$('<div />').width(pct(100)).height(pct(100)).css('zIndex',320);var $sel=$('<div />').css({position:'absolute',zIndex:300}).insertBefore($img).append($img_holder,$hdl_holder);var bound=options.boundary;var $trk=newTracker().width(boundx+(bound*2)).height(boundy+(bound*2)).css({position:'absolute',top:px(-bound),left:px(-bound),zIndex:290}).mousedown(newSelection);var xlimit,ylimit,xmin,ymin;var xscale,yscale,enabled=true;var docOffset=getPos($img),btndown,lastcurs,dimmed,animating,shift_down;var Coords=function()
{var x1=0,y1=0,x2=0,y2=0,ox,oy;function setPressed(pos)
{var pos=rebound(pos);x2=x1=pos[0];y2=y1=pos[1];};function setCurrent(pos)
{var pos=rebound(pos);ox=pos[0]-x2;oy=pos[1]-y2;x2=pos[0];y2=pos[1];};function getOffset()
{return[ox,oy];};function moveOffset(offset)
{var ox=offset[0],oy=offset[1];if(0>x1+ox)ox-=ox+x1;if(0>y1+oy)oy-=oy+y1;if(boundy<y2+oy)oy+=boundy-(y2+oy);if(boundx<x2+ox)ox+=boundx-(x2+ox);x1+=ox;x2+=ox;y1+=oy;y2+=oy;};function getCorner(ord)
{var c=getFixed();switch(ord)
{case'ne':return[c.x2,c.y];case'nw':return[c.x,c.y];case'se':return[c.x2,c.y2];case'sw':return[c.x,c.y2];}};function getFixed()
{if(!options.aspectRatio)return getRect();var aspect=options.aspectRatio,min_x=options.minSize[0]/xscale,min_y=options.minSize[1]/yscale,max_x=options.maxSize[0]/xscale,max_y=options.maxSize[1]/yscale,rw=x2-x1,rh=y2-y1,rwa=Math.abs(rw),rha=Math.abs(rh),real_ratio=rwa/rha,xx,yy;if(max_x==0){max_x=boundx*10}
if(max_y==0){max_y=boundy*10}
if(real_ratio<aspect)
{yy=y2;w=rha*aspect;xx=rw<0?x1-w:w+x1;if(xx<0)
{xx=0;h=Math.abs((xx-x1)/aspect);yy=rh<0?y1-h:h+y1;}
else if(xx>boundx)
{xx=boundx;h=Math.abs((xx-x1)/aspect);yy=rh<0?y1-h:h+y1;}}
else
{xx=x2;h=rwa/aspect;yy=rh<0?y1-h:y1+h;if(yy<0)
{yy=0;w=Math.abs((yy-y1)*aspect);xx=rw<0?x1-w:w+x1;}
else if(yy>boundy)
{yy=boundy;w=Math.abs(yy-y1)*aspect;xx=rw<0?x1-w:w+x1;}}
if(xx>x1){if(xx-x1<min_x){xx=x1+min_x;}else if(xx-x1>max_x){xx=x1+max_x;}
if(yy>y1){yy=y1+(xx-x1)/aspect;}else{yy=y1-(xx-x1)/aspect;}}else if(xx<x1){if(x1-xx<min_x){xx=x1-min_x}else if(x1-xx>max_x){xx=x1-max_x;}
if(yy>y1){yy=y1+(x1-xx)/aspect;}else{yy=y1-(x1-xx)/aspect;}}
if(xx<0){x1-=xx;xx=0;}else if(xx>boundx){x1-=xx-boundx;xx=boundx;}
if(yy<0){y1-=yy;yy=0;}else if(yy>boundy){y1-=yy-boundy;yy=boundy;}
return last=makeObj(flipCoords(x1,y1,xx,yy));};function rebound(p)
{if(p[0]<0)p[0]=0;if(p[1]<0)p[1]=0;if(p[0]>boundx)p[0]=boundx;if(p[1]>boundy)p[1]=boundy;return[p[0],p[1]];};function flipCoords(x1,y1,x2,y2)
{var xa=x1,xb=x2,ya=y1,yb=y2;if(x2<x1)
{xa=x2;xb=x1;}
if(y2<y1)
{ya=y2;yb=y1;}
return[Math.round(xa),Math.round(ya),Math.round(xb),Math.round(yb)];};function getRect()
{var xsize=x2-x1;var ysize=y2-y1;if(xlimit&&(Math.abs(xsize)>xlimit))
x2=(xsize>0)?(x1+xlimit):(x1-xlimit);if(ylimit&&(Math.abs(ysize)>ylimit))
y2=(ysize>0)?(y1+ylimit):(y1-ylimit);if(ymin&&(Math.abs(ysize)<ymin))
y2=(ysize>0)?(y1+ymin):(y1-ymin);if(xmin&&(Math.abs(xsize)<xmin))
x2=(xsize>0)?(x1+xmin):(x1-xmin);if(x1<0){x2-=x1;x1-=x1;}
if(y1<0){y2-=y1;y1-=y1;}
if(x2<0){x1-=x2;x2-=x2;}
if(y2<0){y1-=y2;y2-=y2;}
if(x2>boundx){var delta=x2-boundx;x1-=delta;x2-=delta;}
if(y2>boundy){var delta=y2-boundy;y1-=delta;y2-=delta;}
if(x1>boundx){var delta=x1-boundy;y2-=delta;y1-=delta;}
if(y1>boundy){var delta=y1-boundy;y2-=delta;y1-=delta;}
return makeObj(flipCoords(x1,y1,x2,y2));};function makeObj(a)
{return{x:a[0],y:a[1],x2:a[2],y2:a[3],w:a[2]-a[0],h:a[3]-a[1]};};return{flipCoords:flipCoords,setPressed:setPressed,setCurrent:setCurrent,getOffset:getOffset,moveOffset:moveOffset,getCorner:getCorner,getFixed:getFixed};}();var Selection=function()
{var start,end,dragmode,awake,hdep=370;var borders={};var handle={};var seehandles=false;var hhs=options.handleOffset;if(options.drawBorders){borders={top:insertBorder('hline').css('top',$.browser.msie?px(-1):px(0)),bottom:insertBorder('hline'),left:insertBorder('vline'),right:insertBorder('vline')};}
if(options.dragEdges){handle.t=insertDragbar('n');handle.b=insertDragbar('s');handle.r=insertDragbar('e');handle.l=insertDragbar('w');}
options.sideHandles&&createHandles(['n','s','e','w']);options.cornerHandles&&createHandles(['sw','nw','ne','se']);function insertBorder(type)
{var jq=$('<div />').css({position:'absolute',opacity:options.borderOpacity}).addClass(cssClass(type));$img_holder.append(jq);return jq;};function dragDiv(ord,zi)
{var jq=$('<div />').mousedown(createDragger(ord)).css({cursor:ord+'-resize',position:'absolute',zIndex:zi});$hdl_holder.append(jq);return jq;};function insertHandle(ord)
{return dragDiv(ord,hdep++).css({top:px(-hhs+1),left:px(-hhs+1),opacity:options.handleOpacity}).addClass(cssClass('handle'));};function insertDragbar(ord)
{var s=options.handleSize,o=hhs,h=s,w=s,t=o,l=o;switch(ord)
{case'n':case's':w=pct(100);break;case'e':case'w':h=pct(100);break;}
return dragDiv(ord,hdep++).width(w).height(h).css({top:px(-t+1),left:px(-l+1)});};function createHandles(li)
{for(i in li)handle[li[i]]=insertHandle(li[i]);};function moveHandles(c)
{var midvert=Math.round((c.h/2)-hhs),midhoriz=Math.round((c.w/2)-hhs),north=west=-hhs+1,east=c.w-hhs,south=c.h-hhs,x,y;'e'in handle&&handle.e.css({top:px(midvert),left:px(east)})&&handle.w.css({top:px(midvert)})&&handle.s.css({top:px(south),left:px(midhoriz)})&&handle.n.css({left:px(midhoriz)});'ne'in handle&&handle.ne.css({left:px(east)})&&handle.se.css({top:px(south),left:px(east)})&&handle.sw.css({top:px(south)});'b'in handle&&handle.b.css({top:px(south)})&&handle.r.css({left:px(east)});};function moveto(x,y)
{$img2.css({top:px(-y),left:px(-x)});$sel.css({top:px(y),left:px(x)});};function resize(w,h)
{$sel.width(w).height(h);};function refresh()
{var c=Coords.getFixed();Coords.setPressed([c.x,c.y]);Coords.setCurrent([c.x2,c.y2]);updateVisible();};function updateVisible()
{if(awake)return update();};function update()
{var c=Coords.getFixed();resize(c.w,c.h);moveto(c.x,c.y);options.drawBorders&&borders['right'].css({left:px(c.w-1)})&&borders['bottom'].css({top:px(c.h-1)});seehandles&&moveHandles(c);awake||show();options.onChange(unscale(c));};function show()
{$sel.show();$img.css('opacity',options.bgOpacity);awake=true;};function release()
{disableHandles();$sel.hide();$img.css('opacity',1);awake=false;};function showHandles()
{if(seehandles)
{moveHandles(Coords.getFixed());$hdl_holder.show();}};function enableHandles()
{seehandles=true;if(options.allowResize)
{moveHandles(Coords.getFixed());$hdl_holder.show();return true;}};function disableHandles()
{seehandles=false;$hdl_holder.hide();};function animMode(v)
{(animating=v)?disableHandles():enableHandles();};function done()
{animMode(false);refresh();};var $track=newTracker().mousedown(createDragger('move')).css({cursor:'move',position:'absolute',zIndex:360})
$img_holder.append($track);disableHandles();return{updateVisible:updateVisible,update:update,release:release,refresh:refresh,setCursor:function(cursor){$track.css('cursor',cursor);},enableHandles:enableHandles,enableOnly:function(){seehandles=true;},showHandles:showHandles,disableHandles:disableHandles,animMode:animMode,done:done};}();var Tracker=function()
{var onMove=function(){},onDone=function(){},trackDoc=options.trackDocument;if(!trackDoc)
{$trk.mousemove(trackMove).mouseup(trackUp).mouseout(trackUp);}
function toFront()
{$trk.css({zIndex:450});if(trackDoc)
{$(document).mousemove(trackMove).mouseup(trackUp);}}
function toBack()
{$trk.css({zIndex:290});if(trackDoc)
{$(document).unbind('mousemove',trackMove).unbind('mouseup',trackUp);}}
function trackMove(e)
{onMove(mouseAbs(e));};function trackUp(e)
{e.preventDefault();e.stopPropagation();if(btndown)
{btndown=false;onDone(mouseAbs(e));options.onSelect(unscale(Coords.getFixed()));toBack();onMove=function(){};onDone=function(){};}
return false;};function activateHandlers(move,done)
{btndown=true;onMove=move;onDone=done;toFront();return false;};function setCursor(t){$trk.css('cursor',t);};$img.before($trk);return{activateHandlers:activateHandlers,setCursor:setCursor};}();var KeyManager=function()
{var $keymgr=$('<input type="radio" />').css({position:'absolute',left:'-30px'}).keypress(parseKey).blur(onBlur),$keywrap=$('<div />').css({position:'absolute',overflow:'hidden'}).append($keymgr);function watchKeys()
{if(options.keySupport)
{$keymgr.show();$keymgr.focus();}};function onBlur(e)
{$keymgr.hide();};function doNudge(e,x,y)
{if(options.allowMove){Coords.moveOffset([x,y]);Selection.updateVisible();};e.preventDefault();e.stopPropagation();};function parseKey(e)
{if(e.ctrlKey)return true;shift_down=e.shiftKey?true:false;var nudge=shift_down?10:1;switch(e.keyCode)
{case 37:doNudge(e,-nudge,0);break;case 39:doNudge(e,nudge,0);break;case 38:doNudge(e,0,-nudge);break;case 40:doNudge(e,0,nudge);break;case 27:Selection.release();break;case 9:return true;}
return nothing(e);};if(options.keySupport)$keywrap.insertBefore($img);return{watchKeys:watchKeys};}();function px(n){return''+parseInt(n)+'px';};function pct(n){return''+parseInt(n)+'%';};function cssClass(cl){return options.baseClass+'-'+cl;};function getPos(obj)
{var pos=$(obj).offset();return[pos.left,pos.top];};function mouseAbs(e)
{return[(e.pageX-docOffset[0]),(e.pageY-docOffset[1])];};function myCursor(type)
{if(type!=lastcurs)
{Tracker.setCursor(type);lastcurs=type;}};function startDragMode(mode,pos)
{docOffset=getPos($img);Tracker.setCursor(mode=='move'?mode:mode+'-resize');if(mode=='move')
return Tracker.activateHandlers(createMover(pos),doneSelect);var fc=Coords.getFixed();var opp=oppLockCorner(mode);var opc=Coords.getCorner(oppLockCorner(opp));Coords.setPressed(Coords.getCorner(opp));Coords.setCurrent(opc);Tracker.activateHandlers(dragmodeHandler(mode,fc),doneSelect);};function dragmodeHandler(mode,f)
{return function(pos){if(!options.aspectRatio)switch(mode)
{case'e':pos[1]=f.y2;break;case'w':pos[1]=f.y2;break;case'n':pos[0]=f.x2;break;case's':pos[0]=f.x2;break;}
else switch(mode)
{case'e':pos[1]=f.y+1;break;case'w':pos[1]=f.y+1;break;case'n':pos[0]=f.x+1;break;case's':pos[0]=f.x+1;break;}
Coords.setCurrent(pos);Selection.update();};};function createMover(pos)
{var lloc=pos;KeyManager.watchKeys();return function(pos)
{Coords.moveOffset([pos[0]-lloc[0],pos[1]-lloc[1]]);lloc=pos;Selection.update();};};function oppLockCorner(ord)
{switch(ord)
{case'n':return'sw';case's':return'nw';case'e':return'nw';case'w':return'ne';case'ne':return'sw';case'nw':return'se';case'se':return'nw';case'sw':return'ne';};};function createDragger(ord)
{return function(e){if(options.disabled)return false;if((ord=='move')&&!options.allowMove)return false;btndown=true;startDragMode(ord,mouseAbs(e));e.stopPropagation();e.preventDefault();return false;};};function presize($obj,w,h)
{var nw=$obj.width(),nh=$obj.height();if((nw>w)&&w>0)
{nw=w;nh=(w/$obj.width())*$obj.height();}
if((nh>h)&&h>0)
{nh=h;nw=(h/$obj.height())*$obj.width();}
xscale=$obj.width()/nw;yscale=$obj.height()/nh;$obj.width(nw).height(nh);};function unscale(c)
{return{x:parseInt(c.x*xscale),y:parseInt(c.y*yscale),x2:parseInt(c.x2*xscale),y2:parseInt(c.y2*yscale),w:parseInt(c.w*xscale),h:parseInt(c.h*yscale)};};function doneSelect(pos)
{var c=Coords.getFixed();if(c.w>options.minSelect[0]&&c.h>options.minSelect[1])
{Selection.enableHandles();Selection.done();}
else
{Selection.release();}
Tracker.setCursor(options.allowSelect?'crosshair':'default');};function newSelection(e)
{if(options.disabled)return false;if(!options.allowSelect)return false;btndown=true;docOffset=getPos($img);Selection.disableHandles();myCursor('crosshair');var pos=mouseAbs(e);Coords.setPressed(pos);Tracker.activateHandlers(selectDrag,doneSelect);KeyManager.watchKeys();Selection.update();e.stopPropagation();e.preventDefault();return false;};function selectDrag(pos)
{Coords.setCurrent(pos);Selection.update();};function newTracker()
{var trk=$('<div></div>').addClass(cssClass('tracker'));$.browser.msie&&trk.css({opacity:0,backgroundColor:'white'});return trk;};function animateTo(a)
{var x1=a[0]/xscale,y1=a[1]/yscale,x2=a[2]/xscale,y2=a[3]/yscale;if(animating)return;var animto=Coords.flipCoords(x1,y1,x2,y2);var c=Coords.getFixed();var animat=initcr=[c.x,c.y,c.x2,c.y2];var interv=options.animationDelay;var x=animat[0];var y=animat[1];var x2=animat[2];var y2=animat[3];var ix1=animto[0]-initcr[0];var iy1=animto[1]-initcr[1];var ix2=animto[2]-initcr[2];var iy2=animto[3]-initcr[3];var pcent=0;var velocity=options.swingSpeed;Selection.animMode(true);var animator=function()
{return function()
{pcent+=(100-pcent)/velocity;animat[0]=x+((pcent/100)*ix1);animat[1]=y+((pcent/100)*iy1);animat[2]=x2+((pcent/100)*ix2);animat[3]=y2+((pcent/100)*iy2);if(pcent<100)animateStart();else Selection.done();if(pcent>=99.8)pcent=100;setSelectRaw(animat);};}();function animateStart()
{window.setTimeout(animator,interv);};animateStart();};function setSelect(rect)
{setSelectRaw([rect[0]/xscale,rect[1]/yscale,rect[2]/xscale,rect[3]/yscale]);};function setSelectRaw(l)
{Coords.setPressed([l[0],l[1]]);Coords.setCurrent([l[2],l[3]]);Selection.update();};function setOptions(opt)
{if(typeof(opt)!='object')opt={};options=$.extend(options,opt);if(typeof(options.onChange)!=='function')
options.onChange=function(){};if(typeof(options.onSelect)!=='function')
options.onSelect=function(){};};function tellSelect()
{return unscale(Coords.getFixed());};function tellScaled()
{return Coords.getFixed();};function setOptionsNew(opt)
{setOptions(opt);interfaceUpdate();};function disableCrop()
{options.disabled=true;Selection.disableHandles();Selection.setCursor('default');Tracker.setCursor('default');};function enableCrop()
{options.disabled=false;interfaceUpdate();};function cancelCrop()
{Selection.done();Tracker.activateHandlers(null,null);};function destroy()
{$div.remove();$origimg.show();};function interfaceUpdate(alt)
{options.allowResize?alt?Selection.enableOnly():Selection.enableHandles():Selection.disableHandles();Tracker.setCursor(options.allowSelect?'crosshair':'default');Selection.setCursor(options.allowMove?'move':'default');$div.css('backgroundColor',options.bgColor);if('setSelect'in options){setSelect(opt.setSelect);Selection.done();delete(options.setSelect);}
if('trueSize'in options){xscale=options.trueSize[0]/boundx;yscale=options.trueSize[1]/boundy;}
xlimit=options.maxSize[0]||0;ylimit=options.maxSize[1]||0;xmin=options.minSize[0]||0;ymin=options.minSize[1]||0;if('outerImage'in options)
{$img.attr('src',options.outerImage);delete(options.outerImage);}
Selection.refresh();};$hdl_holder.hide();interfaceUpdate(true);var api={animateTo:animateTo,setSelect:setSelect,setOptions:setOptionsNew,tellSelect:tellSelect,tellScaled:tellScaled,disable:disableCrop,enable:enableCrop,cancel:cancelCrop,focus:KeyManager.watchKeys,getBounds:function(){return[boundx*xscale,boundy*yscale];},getWidgetSize:function(){return[boundx,boundy];},release:Selection.release,destroy:destroy};$origimg.data('Jcrop',api);return api;};$.fn.Jcrop=function(options)
{function attachWhenDone(from)
{var loadsrc=options.useImg||from.src;var img=new Image();img.onload=function(){$.Jcrop(from,options);};img.src=loadsrc;};if(typeof(options)!=='object')options={};this.each(function()
{if($(this).data('Jcrop'))
{if(options=='api')return $(this).data('Jcrop');else $(this).data('Jcrop').setOptions(options);}
else attachWhenDone(this);});return this;};})(jQuery);

var tb_pathToImage = "../includes/themes/default/images/ajax-loader.gif";
/*!!!!!!!!!!!!!!!!! edit below this line at your own risk !!!!!!!!!!!!!!!!!!!!!!!*/
//on page load call tb_init
$(document).ready(function(){   
  tb_init('a.thickbox, area.thickbox, input.thickbox');//pass where to apply thickbox
  imgLoader = new Image();// preload image
  imgLoader.src = tb_pathToImage;
});
//add thickbox to href & area elements that have a class of .thickbox
function tb_init(domChunk){
  $(domChunk).click(function(){
  var t = this.title || this.name || null;
  var a = this.href || this.alt;
  var g = this.rel || false;
  tb_show(t,a,g);
  this.blur();
  return false;
  });
}
function tb_show(caption, url, imageGroup) {//function called when the user clicks on a thickbox link
  try {
    if (typeof document.body.style.maxHeight === "undefined") {//if IE 6
      $("body","html").css({height: "100%", width: "100%"});
      $("html").css("overflow","hidden");
      if (document.getElementById("TB_HideSelect") === null) {//iframe to hide select elements in ie6
        $("body").append("<iframe id='TB_HideSelect'></iframe><div id='TB_overlay'></div><div id='TB_window'></div>");
        $("#TB_overlay").click(tb_remove);
      }
    }else{//all others
      if(document.getElementById("TB_overlay") === null){
        $("body").append("<div id='TB_overlay'></div><div id='TB_window'></div>");
        $("#TB_overlay").click(tb_remove);
      }
    }
    
    if(tb_detectMacXFF()){
      $("#TB_overlay").addClass("TB_overlayMacFFBGHack");//use png overlay so hide flash
    }else{
      $("#TB_overlay").addClass("TB_overlayBG");//use background and opacity
    }
    
    if(caption===null){caption="";}
    $("body").append("<div id='TB_load'><img src='"+imgLoader.src+"' /></div>");//add loader to the page
    $('#TB_load').show();//show loader
    
    var baseURL;
     if(url.indexOf("?")!==-1){ //ff there is a query string involved
      baseURL = url.substr(0, url.indexOf("?"));
     }else{ 
         baseURL = url;
     }
     
     var urlString = /\.jpg$|\.jpeg$|\.png$|\.gif$|\.bmp$/;
     var urlType = baseURL.toLowerCase().match(urlString);
    if(urlType == '.jpg' || urlType == '.jpeg' || urlType == '.png' || urlType == '.gif' || urlType == '.bmp'){//code to show images
        
      TB_PrevCaption = "";
      TB_PrevURL = "";
      TB_PrevHTML = "";
      TB_NextCaption = "";
      TB_NextURL = "";
      TB_NextHTML = "";
      TB_imageCount = "";
      TB_FoundURL = false;
      if(imageGroup){
        TB_TempArray = $("a[@rel="+imageGroup+"]").get();
        for (TB_Counter = 0; ((TB_Counter < TB_TempArray.length) && (TB_NextHTML === "")); TB_Counter++) {
          var urlTypeTemp = TB_TempArray[TB_Counter].href.toLowerCase().match(urlString);
            if (!(TB_TempArray[TB_Counter].href == url)) {            
              if (TB_FoundURL) {
                TB_NextCaption = TB_TempArray[TB_Counter].title;
                TB_NextURL = TB_TempArray[TB_Counter].href;
                TB_NextHTML = "<span id='TB_next'>&nbsp;&nbsp;<a href='#'>Next &gt;</a></span>";
              } else {
                TB_PrevCaption = TB_TempArray[TB_Counter].title;
                TB_PrevURL = TB_TempArray[TB_Counter].href;
                TB_PrevHTML = "<span id='TB_prev'>&nbsp;&nbsp;<a href='#'>&lt; Prev</a></span>";
              }
            } else {
              TB_FoundURL = true;
              TB_imageCount = "Image " + (TB_Counter + 1) +" of "+ (TB_TempArray.length);                      
            }
        }
      }
      imgPreloader = new Image();
      imgPreloader.onload = function(){    
      imgPreloader.onload = null;
        
      // Resizing large images - orginal by Christian Montoya edited by me.
      var pagesize = tb_getPageSize();
      var x = pagesize[0] - 150;
      var y = pagesize[1] - 150;
      var imageWidth = imgPreloader.width;
      var imageHeight = imgPreloader.height;
      if (imageWidth > x) {
        imageHeight = imageHeight * (x / imageWidth); 
        imageWidth = x; 
        if (imageHeight > y) { 
          imageWidth = imageWidth * (y / imageHeight); 
          imageHeight = y; 
        }
      } else if (imageHeight > y) { 
        imageWidth = imageWidth * (y / imageHeight); 
        imageHeight = y; 
        if (imageWidth > x) { 
          imageHeight = imageHeight * (x / imageWidth); 
          imageWidth = x;
        }
      }
      // End Resizing
      
      TB_WIDTH = imageWidth + 30;
      TB_HEIGHT = imageHeight + 60;
      $("#TB_window").append("<a href='' id='TB_ImageOff' title='Close'><img id='TB_Image' src='"+url+"' width='"+imageWidth+"' height='"+imageHeight+"' alt='"+caption+"'/></a>" + "<div id='TB_caption'>"+caption+"<div id='TB_secondLine'>" + TB_imageCount + TB_PrevHTML + TB_NextHTML + "</div></div><div id='TB_closeWindow'><a href='#' id='TB_closeWindowButton' title='Close'>close</a> or Esc Key</div>");     
      
      $("#TB_closeWindowButton").click(tb_remove);
      
      if (!(TB_PrevHTML === "")) {
        function goPrev(){
          if($(document).unbind("click",goPrev)){$(document).unbind("click",goPrev);}
          $("#TB_window").remove();
          $("body").append("<div id='TB_window'></div>");
          tb_show(TB_PrevCaption, TB_PrevURL, imageGroup);
          return false;  
        }
        $("#TB_prev").click(goPrev);
      }
      
      if (!(TB_NextHTML === "")) {    
        function goNext(){
          $("#TB_window").remove();
          $("body").append("<div id='TB_window'></div>");
          tb_show(TB_NextCaption, TB_NextURL, imageGroup);        
          return false;  
        }
        $("#TB_next").click(goNext);
        
      }
      document.onkeydown = function(e){   
        if (e == null) { // ie
          keycode = event.keyCode;
        } else { // mozilla
          keycode = e.which;
        }
        if(keycode == 27){ // close
          tb_remove();
        } else if(keycode == 190){ // display previous image
          if(!(TB_NextHTML == "")){
            document.onkeydown = "";
            goNext();
          }
        } else if(keycode == 188){ // display next image
          if(!(TB_PrevHTML == "")){
            document.onkeydown = "";
            goPrev();
          }
        }  
      };
      
      tb_position();
      $("#TB_load").remove();
      $("#TB_ImageOff").click(tb_remove);
      $("#TB_window").css({display:"block"}); //for safari using css instead of show
      };
      
      imgPreloader.src = url;
    }else{//code to show html
      
      var queryString = url.replace(/^[^\?]+\??/,'');
      var params = tb_parseQuery( queryString );
      TB_WIDTH = (params['width']*1) + 30 || 630; //defaults to 630 if no paramaters were added to URL
      TB_HEIGHT = (params['height']*1) + 40 || 440; //defaults to 440 if no paramaters were added to URL
      ajaxContentW = TB_WIDTH - 30;
      ajaxContentH = TB_HEIGHT - 45;
      
      if(url.indexOf('TB_iframe') != -1){// either iframe or ajax window    
          urlNoQuery = url.split('TB_');
          $("#TB_iframeContent").remove();
          if(params['modal'] != "true"){//iframe no modal
            $("#TB_window").append("<div id='TB_title'><div id='TB_ajaxWindowTitle'>"+caption+"</div><div id='TB_closeAjaxWindow'><a href='#' id='TB_closeWindowButton' title='Close'>close</a> or Esc Key</div></div><iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' onload='tb_showIframe()' style='width:"+(ajaxContentW + 29)+"px;height:"+(ajaxContentH + 17)+"px;' > </iframe>");
          }else{//iframe modal
          $("#TB_overlay").unbind();
            $("#TB_window").append("<iframe frameborder='0' hspace='0' src='"+urlNoQuery[0]+"' id='TB_iframeContent' name='TB_iframeContent"+Math.round(Math.random()*1000)+"' onload='tb_showIframe()' style='width:"+(ajaxContentW + 29)+"px;height:"+(ajaxContentH + 17)+"px;'> </iframe>");
          }
      }else{// not an iframe, ajax
          if($("#TB_window").css("display") != "block"){
            if(params['modal'] != "true"){//ajax no modal
            $("#TB_window").append("<div id='TB_title'><div id='TB_ajaxWindowTitle'>"+caption+"</div><div id='TB_closeAjaxWindow'><a href='#' id='TB_closeWindowButton'>close</a> or Esc Key</div></div><div id='TB_ajaxContent' style='width:"+ajaxContentW+"px;height:"+ajaxContentH+"px'></div>");
            }else{//ajax modal
            $("#TB_overlay").unbind();
            $("#TB_window").append("<div id='TB_ajaxContent' class='TB_modal' style='width:"+ajaxContentW+"px;height:"+ajaxContentH+"px;'></div>");  
            }
          }else{//this means the window is already up, we are just loading new content via ajax
            $("#TB_ajaxContent")[0].style.width = ajaxContentW +"px";
            $("#TB_ajaxContent")[0].style.height = ajaxContentH +"px";
            $("#TB_ajaxContent")[0].scrollTop = 0;
            $("#TB_ajaxWindowTitle").html(caption);
          }
      }
          
      $("#TB_closeWindowButton").click(tb_remove);
      
        if(url.indexOf('TB_inline') != -1){  
          $("#TB_ajaxContent").append($('#' + params['inlineId']).children());
          $("#TB_window").unload(function () {
            $('#' + params['inlineId']).append( $("#TB_ajaxContent").children() ); // move elements back when you're finished
          });
          tb_position();
          $("#TB_load").remove();
          $("#TB_window").css({display:"block"}); 
        }else if(url.indexOf('TB_iframe') != -1){
          tb_position();
          if($.browser.safari){//safari needs help because it will not fire iframe onload
            $("#TB_load").remove();
            $("#TB_window").css({display:"block"});
          }
        }else{
          $("#TB_ajaxContent").load(url += "&random=" + (new Date().getTime()),function(){//to do a post change this load method
            tb_position();
            $("#TB_load").remove();
            tb_init("#TB_ajaxContent a.thickbox");
            $("#TB_window").css({display:"block"});
          });
        }
      
    }
    if(!params['modal']){
      document.onkeyup = function(e){   
        if (e == null) { // ie
          keycode = event.keyCode;
        } else { // mozilla
          keycode = e.which;
        }
        if(keycode == 27){ // close
          tb_remove();
        }  
      };
    }
    
  } catch(e) {
    //nothing here
  }
}
//helper functions below
function tb_showIframe(){
  $("#TB_load").remove();
  $("#TB_window").css({display:"block"});
}
function tb_remove() {
   $("#TB_imageOff").unbind("click");
  $("#TB_closeWindowButton").unbind("click");
  $("#TB_window").fadeOut("fast",function(){$('#TB_window,#TB_overlay,#TB_HideSelect').trigger("unload").unbind().remove();});
  $("#TB_load").remove();
  if (typeof document.body.style.maxHeight == "undefined") {//if IE 6
    $("body","html").css({height: "auto", width: "auto"});
    $("html").css("overflow","");
  }
  document.onkeydown = "";
  document.onkeyup = "";
  return false;
}
function tb_position() {
$("#TB_window").css({marginLeft: '-' + parseInt((TB_WIDTH / 2),10) + 'px', width: TB_WIDTH + 'px'});
  if ( !(jQuery.browser.msie && jQuery.browser.version < 7)) { // take away IE6
    $("#TB_window").css({marginTop: '-' + parseInt((TB_HEIGHT / 2),10) + 'px'});
  }
}
function tb_parseQuery ( query ) {
   var Params = {};
   if ( ! query ) {return Params;}// return empty object
   var Pairs = query.split(/[;&]/);
   for ( var i = 0; i < Pairs.length; i++ ) {
      var KeyVal = Pairs[i].split('=');
      if ( ! KeyVal || KeyVal.length != 2 ) {continue;}
      var key = unescape( KeyVal[0] );
      var val = unescape( KeyVal[1] );
      val = val.replace(/\+/g, ' ');
      Params[key] = val;
   }
   return Params;
}
function tb_getPageSize(){
  var de = document.documentElement;
  var w = window.innerWidth || self.innerWidth || (de&&de.clientWidth) || document.body.clientWidth;
  var h = window.innerHeight || self.innerHeight || (de&&de.clientHeight) || document.body.clientHeight;
  arrayPageSize = [w,h];
  return arrayPageSize;
}
function tb_detectMacXFF() {
  var userAgent = navigator.userAgent.toLowerCase();
  if (userAgent.indexOf('mac') != -1 && userAgent.indexOf('firefox')!=-1) {
    return true;
  }
}

