/*
 * jQuery JavaScript Library v1.3.2
 * http://jquery.com/
 *
 * Copyright (c) 2009 John Resig
 * Dual licensed under the MIT and GPL licenses.
 * http://docs.jquery.com/License
 *
 * Date: 2009-02-19 17:34:21 -0500 (Thu, 19 Feb 2009)
 * Revision: 6246
 */
(function(){var l=this,g,y=l.jQuery,p=l.$,o=l.jQuery=l.$=function(E,F){return new o.fn.init(E,F)},D=/^[^<]*(<(.|\s)+>)[^>]*$|^#([\w-]+)$/,f=/^.[^:#\[\.,]*$/;o.fn=o.prototype={init:function(E,H){E=E||document;if(E.nodeType){this[0]=E;this.length=1;this.context=E;return this}if(typeof E==="string"){var G=D.exec(E);if(G&&(G[1]||!H)){if(G[1]){E=o.clean([G[1]],H)}else{var I=document.getElementById(G[3]);if(I&&I.id!=G[3]){return o().find(E)}var F=o(I||[]);F.context=document;F.selector=E;return F}}else{return o(H).find(E)}}else{if(o.isFunction(E)){return o(document).ready(E)}}if(E.selector&&E.context){this.selector=E.selector;this.context=E.context}return this.setArray(o.isArray(E)?E:o.makeArray(E))},selector:"",jquery:"1.3.2",size:function(){return this.length},get:function(E){return E===g?Array.prototype.slice.call(this):this[E]},pushStack:function(F,H,E){var G=o(F);G.prevObject=this;G.context=this.context;if(H==="find"){G.selector=this.selector+(this.selector?" ":"")+E}else{if(H){G.selector=this.selector+"."+H+"("+E+")"}}return G},setArray:function(E){this.length=0;Array.prototype.push.apply(this,E);return this},each:function(F,E){return o.each(this,F,E)},index:function(E){return o.inArray(E&&E.jquery?E[0]:E,this)},attr:function(F,H,G){var E=F;if(typeof F==="string"){if(H===g){return this[0]&&o[G||"attr"](this[0],F)}else{E={};E[F]=H}}return this.each(function(I){for(F in E){o.attr(G?this.style:this,F,o.prop(this,E[F],G,I,F))}})},css:function(E,F){if((E=="width"||E=="height")&&parseFloat(F)<0){F=g}return this.attr(E,F,"curCSS")},text:function(F){if(typeof F!=="object"&&F!=null){return this.empty().append((this[0]&&this[0].ownerDocument||document).createTextNode(F))}var E="";o.each(F||this,function(){o.each(this.childNodes,function(){if(this.nodeType!=8){E+=this.nodeType!=1?this.nodeValue:o.fn.text([this])}})});return E},wrapAll:function(E){if(this[0]){var F=o(E,this[0].ownerDocument).clone();if(this[0].parentNode){F.insertBefore(this[0])}F.map(function(){var G=this;while(G.firstChild){G=G.firstChild}return G}).append(this)}return this},wrapInner:function(E){return this.each(function(){o(this).contents().wrapAll(E)})},wrap:function(E){return this.each(function(){o(this).wrapAll(E)})},append:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.appendChild(E)}})},prepend:function(){return this.domManip(arguments,true,function(E){if(this.nodeType==1){this.insertBefore(E,this.firstChild)}})},before:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this)})},after:function(){return this.domManip(arguments,false,function(E){this.parentNode.insertBefore(E,this.nextSibling)})},end:function(){return this.prevObject||o([])},push:[].push,sort:[].sort,splice:[].splice,find:function(E){if(this.length===1){var F=this.pushStack([],"find",E);F.length=0;o.find(E,this[0],F);return F}else{return this.pushStack(o.unique(o.map(this,function(G){return o.find(E,G)})),"find",E)}},clone:function(G){var E=this.map(function(){if(!o.support.noCloneEvent&&!o.isXMLDoc(this)){var I=this.outerHTML;if(!I){var J=this.ownerDocument.createElement("div");J.appendChild(this.cloneNode(true));I=J.innerHTML}return o.clean([I.replace(/ jQuery\d+="(?:\d+|null)"/g,"").replace(/^\s*/,"")])[0]}else{return this.cloneNode(true)}});if(G===true){var H=this.find("*").andSelf(),F=0;E.find("*").andSelf().each(function(){if(this.nodeName!==H[F].nodeName){return}var I=o.data(H[F],"events");for(var K in I){for(var J in I[K]){o.event.add(this,K,I[K][J],I[K][J].data)}}F++})}return E},filter:function(E){return this.pushStack(o.isFunction(E)&&o.grep(this,function(G,F){return E.call(G,F)})||o.multiFilter(E,o.grep(this,function(F){return F.nodeType===1})),"filter",E)},closest:function(E){var G=o.expr.match.POS.test(E)?o(E):null,F=0;return this.map(function(){var H=this;while(H&&H.ownerDocument){if(G?G.index(H)>-1:o(H).is(E)){o.data(H,"closest",F);return H}H=H.parentNode;F++}})},not:function(E){if(typeof E==="string"){if(f.test(E)){return this.pushStack(o.multiFilter(E,this,true),"not",E)}else{E=o.multiFilter(E,this)}}var F=E.length&&E[E.length-1]!==g&&!E.nodeType;return this.filter(function(){return F?o.inArray(this,E)<0:this!=E})},add:function(E){return this.pushStack(o.unique(o.merge(this.get(),typeof E==="string"?o(E):o.makeArray(E))))},is:function(E){return !!E&&o.multiFilter(E,this).length>0},hasClass:function(E){return !!E&&this.is("."+E)},val:function(K){if(K===g){var E=this[0];if(E){if(o.nodeName(E,"option")){return(E.attributes.value||{}).specified?E.value:E.text}if(o.nodeName(E,"select")){var I=E.selectedIndex,L=[],M=E.options,H=E.type=="select-one";if(I<0){return null}for(var F=H?I:0,J=H?I+1:M.length;F<J;F++){var G=M[F];if(G.selected){K=o(G).val();if(H){return K}L.push(K)}}return L}return(E.value||"").replace(/\r/g,"")}return g}if(typeof K==="number"){K+=""}return this.each(function(){if(this.nodeType!=1){return}if(o.isArray(K)&&/radio|checkbox/.test(this.type)){this.checked=(o.inArray(this.value,K)>=0||o.inArray(this.name,K)>=0)}else{if(o.nodeName(this,"select")){var N=o.makeArray(K);o("option",this).each(function(){this.selected=(o.inArray(this.value,N)>=0||o.inArray(this.text,N)>=0)});if(!N.length){this.selectedIndex=-1}}else{this.value=K}}})},html:function(E){return E===g?(this[0]?this[0].innerHTML.replace(/ jQuery\d+="(?:\d+|null)"/g,""):null):this.empty().append(E)},replaceWith:function(E){return this.after(E).remove()},eq:function(E){return this.slice(E,+E+1)},slice:function(){return this.pushStack(Array.prototype.slice.apply(this,arguments),"slice",Array.prototype.slice.call(arguments).join(","))},map:function(E){return this.pushStack(o.map(this,function(G,F){return E.call(G,F,G)}))},andSelf:function(){return this.add(this.prevObject)},domManip:function(J,M,L){if(this[0]){var I=(this[0].ownerDocument||this[0]).createDocumentFragment(),F=o.clean(J,(this[0].ownerDocument||this[0]),I),H=I.firstChild;if(H){for(var G=0,E=this.length;G<E;G++){L.call(K(this[G],H),this.length>1||G>0?I.cloneNode(true):I)}}if(F){o.each(F,z)}}return this;function K(N,O){return M&&o.nodeName(N,"table")&&o.nodeName(O,"tr")?(N.getElementsByTagName("tbody")[0]||N.appendChild(N.ownerDocument.createElement("tbody"))):N}}};o.fn.init.prototype=o.fn;function z(E,F){if(F.src){o.ajax({url:F.src,async:false,dataType:"script"})}else{o.globalEval(F.text||F.textContent||F.innerHTML||"")}if(F.parentNode){F.parentNode.removeChild(F)}}function e(){return +new Date}o.extend=o.fn.extend=function(){var J=arguments[0]||{},H=1,I=arguments.length,E=false,G;if(typeof J==="boolean"){E=J;J=arguments[1]||{};H=2}if(typeof J!=="object"&&!o.isFunction(J)){J={}}if(I==H){J=this;--H}for(;H<I;H++){if((G=arguments[H])!=null){for(var F in G){var K=J[F],L=G[F];if(J===L){continue}if(E&&L&&typeof L==="object"&&!L.nodeType){J[F]=o.extend(E,K||(L.length!=null?[]:{}),L)}else{if(L!==g){J[F]=L}}}}}return J};var b=/z-?index|font-?weight|opacity|zoom|line-?height/i,q=document.defaultView||{},s=Object.prototype.toString;o.extend({noConflict:function(E){l.$=p;if(E){l.jQuery=y}return o},isFunction:function(E){return s.call(E)==="[object Function]"},isArray:function(E){return s.call(E)==="[object Array]"},isXMLDoc:function(E){return E.nodeType===9&&E.documentElement.nodeName!=="HTML"||!!E.ownerDocument&&o.isXMLDoc(E.ownerDocument)},globalEval:function(G){if(G&&/\S/.test(G)){var F=document.getElementsByTagName("head")[0]||document.documentElement,E=document.createElement("script");E.type="text/javascript";if(o.support.scriptEval){E.appendChild(document.createTextNode(G))}else{E.text=G}F.insertBefore(E,F.firstChild);F.removeChild(E)}},nodeName:function(F,E){return F.nodeName&&F.nodeName.toUpperCase()==E.toUpperCase()},each:function(G,K,F){var E,H=0,I=G.length;if(F){if(I===g){for(E in G){if(K.apply(G[E],F)===false){break}}}else{for(;H<I;){if(K.apply(G[H++],F)===false){break}}}}else{if(I===g){for(E in G){if(K.call(G[E],E,G[E])===false){break}}}else{for(var J=G[0];H<I&&K.call(J,H,J)!==false;J=G[++H]){}}}return G},prop:function(H,I,G,F,E){if(o.isFunction(I)){I=I.call(H,F)}return typeof I==="number"&&G=="curCSS"&&!b.test(E)?I+"px":I},className:{add:function(E,F){o.each((F||"").split(/\s+/),function(G,H){if(E.nodeType==1&&!o.className.has(E.className,H)){E.className+=(E.className?" ":"")+H}})},remove:function(E,F){if(E.nodeType==1){E.className=F!==g?o.grep(E.className.split(/\s+/),function(G){return !o.className.has(F,G)}).join(" "):""}},has:function(F,E){return F&&o.inArray(E,(F.className||F).toString().split(/\s+/))>-1}},swap:function(H,G,I){var E={};for(var F in G){E[F]=H.style[F];H.style[F]=G[F]}I.call(H);for(var F in G){H.style[F]=E[F]}},css:function(H,F,J,E){if(F=="width"||F=="height"){var L,G={position:"absolute",visibility:"hidden",display:"block"},K=F=="width"?["Left","Right"]:["Top","Bottom"];function I(){L=F=="width"?H.offsetWidth:H.offsetHeight;if(E==="border"){return}o.each(K,function(){if(!E){L-=parseFloat(o.curCSS(H,"padding"+this,true))||0}if(E==="margin"){L+=parseFloat(o.curCSS(H,"margin"+this,true))||0}else{L-=parseFloat(o.curCSS(H,"border"+this+"Width",true))||0}})}if(H.offsetWidth!==0){I()}else{o.swap(H,G,I)}return Math.max(0,Math.round(L))}return o.curCSS(H,F,J)},curCSS:function(I,F,G){var L,E=I.style;if(F=="opacity"&&!o.support.opacity){L=o.attr(E,"opacity");return L==""?"1":L}if(F.match(/float/i)){F=w}if(!G&&E&&E[F]){L=E[F]}else{if(q.getComputedStyle){if(F.match(/float/i)){F="float"}F=F.replace(/([A-Z])/g,"-$1").toLowerCase();var M=q.getComputedStyle(I,null);if(M){L=M.getPropertyValue(F)}if(F=="opacity"&&L==""){L="1"}}else{if(I.currentStyle){var J=F.replace(/\-(\w)/g,function(N,O){return O.toUpperCase()});L=I.currentStyle[F]||I.currentStyle[J];if(!/^\d+(px)?$/i.test(L)&&/^\d/.test(L)){var H=E.left,K=I.runtimeStyle.left;I.runtimeStyle.left=I.currentStyle.left;E.left=L||0;L=E.pixelLeft+"px";E.left=H;I.runtimeStyle.left=K}}}}return L},clean:function(F,K,I){K=K||document;if(typeof K.createElement==="undefined"){K=K.ownerDocument||K[0]&&K[0].ownerDocument||document}if(!I&&F.length===1&&typeof F[0]==="string"){var H=/^<(\w+)\s*\/?>$/.exec(F[0]);if(H){return[K.createElement(H[1])]}}var G=[],E=[],L=K.createElement("div");o.each(F,function(P,S){if(typeof S==="number"){S+=""}if(!S){return}if(typeof S==="string"){S=S.replace(/(<(\w+)[^>]*?)\/>/g,function(U,V,T){return T.match(/^(abbr|br|col|img|input|link|meta|param|hr|area|embed)$/i)?U:V+"></"+T+">"});var O=S.replace(/^\s+/,"").substring(0,10).toLowerCase();var Q=!O.indexOf("<opt")&&[1,"<select multiple='multiple'>","</select>"]||!O.indexOf("<leg")&&[1,"<fieldset>","</fieldset>"]||O.match(/^<(thead|tbody|tfoot|colg|cap)/)&&[1,"<table>","</table>"]||!O.indexOf("<tr")&&[2,"<table><tbody>","</tbody></table>"]||(!O.indexOf("<td")||!O.indexOf("<th"))&&[3,"<table><tbody><tr>","</tr></tbody></table>"]||!O.indexOf("<col")&&[2,"<table><tbody></tbody><colgroup>","</colgroup></table>"]||!o.support.htmlSerialize&&[1,"div<div>","</div>"]||[0,"",""];L.innerHTML=Q[1]+S+Q[2];while(Q[0]--){L=L.lastChild}if(!o.support.tbody){var R=/<tbody/i.test(S),N=!O.indexOf("<table")&&!R?L.firstChild&&L.firstChild.childNodes:Q[1]=="<table>"&&!R?L.childNodes:[];for(var M=N.length-1;M>=0;--M){if(o.nodeName(N[M],"tbody")&&!N[M].childNodes.length){N[M].parentNode.removeChild(N[M])}}}if(!o.support.leadingWhitespace&&/^\s/.test(S)){L.insertBefore(K.createTextNode(S.match(/^\s*/)[0]),L.firstChild)}S=o.makeArray(L.childNodes)}if(S.nodeType){G.push(S)}else{G=o.merge(G,S)}});if(I){for(var J=0;G[J];J++){if(o.nodeName(G[J],"script")&&(!G[J].type||G[J].type.toLowerCase()==="text/javascript")){E.push(G[J].parentNode?G[J].parentNode.removeChild(G[J]):G[J])}else{if(G[J].nodeType===1){G.splice.apply(G,[J+1,0].concat(o.makeArray(G[J].getElementsByTagName("script"))))}I.appendChild(G[J])}}return E}return G},attr:function(J,G,K){if(!J||J.nodeType==3||J.nodeType==8){return g}var H=!o.isXMLDoc(J),L=K!==g;G=H&&o.props[G]||G;if(J.tagName){var F=/href|src|style/.test(G);if(G=="selected"&&J.parentNode){J.parentNode.selectedIndex}if(G in J&&H&&!F){if(L){if(G=="type"&&o.nodeName(J,"input")&&J.parentNode){throw"type property can't be changed"}J[G]=K}if(o.nodeName(J,"form")&&J.getAttributeNode(G)){return J.getAttributeNode(G).nodeValue}if(G=="tabIndex"){var I=J.getAttributeNode("tabIndex");return I&&I.specified?I.value:J.nodeName.match(/(button|input|object|select|textarea)/i)?0:J.nodeName.match(/^(a|area)$/i)&&J.href?0:g}return J[G]}if(!o.support.style&&H&&G=="style"){return o.attr(J.style,"cssText",K)}if(L){J.setAttribute(G,""+K)}var E=!o.support.hrefNormalized&&H&&F?J.getAttribute(G,2):J.getAttribute(G);return E===null?g:E}if(!o.support.opacity&&G=="opacity"){if(L){J.zoom=1;J.filter=(J.filter||"").replace(/alpha\([^)]*\)/,"")+(parseInt(K)+""=="NaN"?"":"alpha(opacity="+K*100+")")}return J.filter&&J.filter.indexOf("opacity=")>=0?(parseFloat(J.filter.match(/opacity=([^)]*)/)[1])/100)+"":""}G=G.replace(/-([a-z])/ig,function(M,N){return N.toUpperCase()});if(L){J[G]=K}return J[G]},trim:function(E){return(E||"").replace(/^\s+|\s+$/g,"")},makeArray:function(G){var E=[];if(G!=null){var F=G.length;if(F==null||typeof G==="string"||o.isFunction(G)||G.setInterval){E[0]=G}else{while(F){E[--F]=G[F]}}}return E},inArray:function(G,H){for(var E=0,F=H.length;E<F;E++){if(H[E]===G){return E}}return -1},merge:function(H,E){var F=0,G,I=H.length;if(!o.support.getAll){while((G=E[F++])!=null){if(G.nodeType!=8){H[I++]=G}}}else{while((G=E[F++])!=null){H[I++]=G}}return H},unique:function(K){var F=[],E={};try{for(var G=0,H=K.length;G<H;G++){var J=o.data(K[G]);if(!E[J]){E[J]=true;F.push(K[G])}}}catch(I){F=K}return F},grep:function(F,J,E){var G=[];for(var H=0,I=F.length;H<I;H++){if(!E!=!J(F[H],H)){G.push(F[H])}}return G},map:function(E,J){var F=[];for(var G=0,H=E.length;G<H;G++){var I=J(E[G],G);if(I!=null){F[F.length]=I}}return F.concat.apply([],F)}});var C=navigator.userAgent.toLowerCase();o.browser={version:(C.match(/.+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[0,"0"])[1],safari:/webkit/.test(C),opera:/opera/.test(C),msie:/msie/.test(C)&&!/opera/.test(C),mozilla:/mozilla/.test(C)&&!/(compatible|webkit)/.test(C)};o.each({parent:function(E){return E.parentNode},parents:function(E){return o.dir(E,"parentNode")},next:function(E){return o.nth(E,2,"nextSibling")},prev:function(E){return o.nth(E,2,"previousSibling")},nextAll:function(E){return o.dir(E,"nextSibling")},prevAll:function(E){return o.dir(E,"previousSibling")},siblings:function(E){return o.sibling(E.parentNode.firstChild,E)},children:function(E){return o.sibling(E.firstChild)},contents:function(E){return o.nodeName(E,"iframe")?E.contentDocument||E.contentWindow.document:o.makeArray(E.childNodes)}},function(E,F){o.fn[E]=function(G){var H=o.map(this,F);if(G&&typeof G=="string"){H=o.multiFilter(G,H)}return this.pushStack(o.unique(H),E,G)}});o.each({appendTo:"append",prependTo:"prepend",insertBefore:"before",insertAfter:"after",replaceAll:"replaceWith"},function(E,F){o.fn[E]=function(G){var J=[],L=o(G);for(var K=0,H=L.length;K<H;K++){var I=(K>0?this.clone(true):this).get();o.fn[F].apply(o(L[K]),I);J=J.concat(I)}return this.pushStack(J,E,G)}});o.each({removeAttr:function(E){o.attr(this,E,"");if(this.nodeType==1){this.removeAttribute(E)}},addClass:function(E){o.className.add(this,E)},removeClass:function(E){o.className.remove(this,E)},toggleClass:function(F,E){if(typeof E!=="boolean"){E=!o.className.has(this,F)}o.className[E?"add":"remove"](this,F)},remove:function(E){if(!E||o.filter(E,[this]).length){o("*",this).add([this]).each(function(){o.event.remove(this);o.removeData(this)});if(this.parentNode){this.parentNode.removeChild(this)}}},empty:function(){o(this).children().remove();while(this.firstChild){this.removeChild(this.firstChild)}}},function(E,F){o.fn[E]=function(){return this.each(F,arguments)}});function j(E,F){return E[0]&&parseInt(o.curCSS(E[0],F,true),10)||0}var h="jQuery"+e(),v=0,A={};o.extend({cache:{},data:function(F,E,G){F=F==l?A:F;var H=F[h];if(!H){H=F[h]=++v}if(E&&!o.cache[H]){o.cache[H]={}}if(G!==g){o.cache[H][E]=G}return E?o.cache[H][E]:H},removeData:function(F,E){F=F==l?A:F;var H=F[h];if(E){if(o.cache[H]){delete o.cache[H][E];E="";for(E in o.cache[H]){break}if(!E){o.removeData(F)}}}else{try{delete F[h]}catch(G){if(F.removeAttribute){F.removeAttribute(h)}}delete o.cache[H]}},queue:function(F,E,H){if(F){E=(E||"fx")+"queue";var G=o.data(F,E);if(!G||o.isArray(H)){G=o.data(F,E,o.makeArray(H))}else{if(H){G.push(H)}}}return G},dequeue:function(H,G){var E=o.queue(H,G),F=E.shift();if(!G||G==="fx"){F=E[0]}if(F!==g){F.call(H)}}});o.fn.extend({data:function(E,G){var H=E.split(".");H[1]=H[1]?"."+H[1]:"";if(G===g){var F=this.triggerHandler("getData"+H[1]+"!",[H[0]]);if(F===g&&this.length){F=o.data(this[0],E)}return F===g&&H[1]?this.data(H[0]):F}else{return this.trigger("setData"+H[1]+"!",[H[0],G]).each(function(){o.data(this,E,G)})}},removeData:function(E){return this.each(function(){o.removeData(this,E)})},queue:function(E,F){if(typeof E!=="string"){F=E;E="fx"}if(F===g){return o.queue(this[0],E)}return this.each(function(){var G=o.queue(this,E,F);if(E=="fx"&&G.length==1){G[0].call(this)}})},dequeue:function(E){return this.each(function(){o.dequeue(this,E)})}});
/*
 * Sizzle CSS Selector Engine - v0.9.3
 *  Copyright 2009, The Dojo Foundation
 *  Released under the MIT, BSD, and GPL Licenses.
 *  More information: http://sizzlejs.com/
 */
(function(){var R=/((?:\((?:\([^()]+\)|[^()]+)+\)|\[(?:\[[^[\]]*\]|['"][^'"]*['"]|[^[\]'"]+)+\]|\\.|[^ >+~,(\[\\]+)+|[>+~])(\s*,\s*)?/g,L=0,H=Object.prototype.toString;var F=function(Y,U,ab,ac){ab=ab||[];U=U||document;if(U.nodeType!==1&&U.nodeType!==9){return[]}if(!Y||typeof Y!=="string"){return ab}var Z=[],W,af,ai,T,ad,V,X=true;R.lastIndex=0;while((W=R.exec(Y))!==null){Z.push(W[1]);if(W[2]){V=RegExp.rightContext;break}}if(Z.length>1&&M.exec(Y)){if(Z.length===2&&I.relative[Z[0]]){af=J(Z[0]+Z[1],U)}else{af=I.relative[Z[0]]?[U]:F(Z.shift(),U);while(Z.length){Y=Z.shift();if(I.relative[Y]){Y+=Z.shift()}af=J(Y,af)}}}else{var ae=ac?{expr:Z.pop(),set:E(ac)}:F.find(Z.pop(),Z.length===1&&U.parentNode?U.parentNode:U,Q(U));af=F.filter(ae.expr,ae.set);if(Z.length>0){ai=E(af)}else{X=false}while(Z.length){var ah=Z.pop(),ag=ah;if(!I.relative[ah]){ah=""}else{ag=Z.pop()}if(ag==null){ag=U}I.relative[ah](ai,ag,Q(U))}}if(!ai){ai=af}if(!ai){throw"Syntax error, unrecognized expression: "+(ah||Y)}if(H.call(ai)==="[object Array]"){if(!X){ab.push.apply(ab,ai)}else{if(U.nodeType===1){for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&(ai[aa]===true||ai[aa].nodeType===1&&K(U,ai[aa]))){ab.push(af[aa])}}}else{for(var aa=0;ai[aa]!=null;aa++){if(ai[aa]&&ai[aa].nodeType===1){ab.push(af[aa])}}}}}else{E(ai,ab)}if(V){F(V,U,ab,ac);if(G){hasDuplicate=false;ab.sort(G);if(hasDuplicate){for(var aa=1;aa<ab.length;aa++){if(ab[aa]===ab[aa-1]){ab.splice(aa--,1)}}}}}return ab};F.matches=function(T,U){return F(T,null,null,U)};F.find=function(aa,T,ab){var Z,X;if(!aa){return[]}for(var W=0,V=I.order.length;W<V;W++){var Y=I.order[W],X;if((X=I.match[Y].exec(aa))){var U=RegExp.leftContext;if(U.substr(U.length-1)!=="\\"){X[1]=(X[1]||"").replace(/\\/g,"");Z=I.find[Y](X,T,ab);if(Z!=null){aa=aa.replace(I.match[Y],"");break}}}}if(!Z){Z=T.getElementsByTagName("*")}return{set:Z,expr:aa}};F.filter=function(ad,ac,ag,W){var V=ad,ai=[],aa=ac,Y,T,Z=ac&&ac[0]&&Q(ac[0]);while(ad&&ac.length){for(var ab in I.filter){if((Y=I.match[ab].exec(ad))!=null){var U=I.filter[ab],ah,af;T=false;if(aa==ai){ai=[]}if(I.preFilter[ab]){Y=I.preFilter[ab](Y,aa,ag,ai,W,Z);if(!Y){T=ah=true}else{if(Y===true){continue}}}if(Y){for(var X=0;(af=aa[X])!=null;X++){if(af){ah=U(af,Y,X,aa);var ae=W^!!ah;if(ag&&ah!=null){if(ae){T=true}else{aa[X]=false}}else{if(ae){ai.push(af);T=true}}}}}if(ah!==g){if(!ag){aa=ai}ad=ad.replace(I.match[ab],"");if(!T){return[]}break}}}if(ad==V){if(T==null){throw"Syntax error, unrecognized expression: "+ad}else{break}}V=ad}return aa};var I=F.selectors={order:["ID","NAME","TAG"],match:{ID:/#((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,CLASS:/\.((?:[\w\u00c0-\uFFFF_-]|\\.)+)/,NAME:/\[name=['"]*((?:[\w\u00c0-\uFFFF_-]|\\.)+)['"]*\]/,ATTR:/\[\s*((?:[\w\u00c0-\uFFFF_-]|\\.)+)\s*(?:(\S?=)\s*(['"]*)(.*?)\3|)\s*\]/,TAG:/^((?:[\w\u00c0-\uFFFF\*_-]|\\.)+)/,CHILD:/:(only|nth|last|first)-child(?:\((even|odd|[\dn+-]*)\))?/,POS:/:(nth|eq|gt|lt|first|last|even|odd)(?:\((\d*)\))?(?=[^-]|$)/,PSEUDO:/:((?:[\w\u00c0-\uFFFF_-]|\\.)+)(?:\((['"]*)((?:\([^\)]+\)|[^\2\(\)]*)+)\2\))?/},attrMap:{"class":"className","for":"htmlFor"},attrHandle:{href:function(T){return T.getAttribute("href")}},relative:{"+":function(aa,T,Z){var X=typeof T==="string",ab=X&&!/\W/.test(T),Y=X&&!ab;if(ab&&!Z){T=T.toUpperCase()}for(var W=0,V=aa.length,U;W<V;W++){if((U=aa[W])){while((U=U.previousSibling)&&U.nodeType!==1){}aa[W]=Y||U&&U.nodeName===T?U||false:U===T}}if(Y){F.filter(T,aa,true)}},">":function(Z,U,aa){var X=typeof U==="string";if(X&&!/\W/.test(U)){U=aa?U:U.toUpperCase();for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){var W=Y.parentNode;Z[V]=W.nodeName===U?W:false}}}else{for(var V=0,T=Z.length;V<T;V++){var Y=Z[V];if(Y){Z[V]=X?Y.parentNode:Y.parentNode===U}}if(X){F.filter(U,Z,true)}}},"":function(W,U,Y){var V=L++,T=S;if(!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("parentNode",U,V,W,X,Y)},"~":function(W,U,Y){var V=L++,T=S;if(typeof U==="string"&&!U.match(/\W/)){var X=U=Y?U:U.toUpperCase();T=P}T("previousSibling",U,V,W,X,Y)}},find:{ID:function(U,V,W){if(typeof V.getElementById!=="undefined"&&!W){var T=V.getElementById(U[1]);return T?[T]:[]}},NAME:function(V,Y,Z){if(typeof Y.getElementsByName!=="undefined"){var U=[],X=Y.getElementsByName(V[1]);for(var W=0,T=X.length;W<T;W++){if(X[W].getAttribute("name")===V[1]){U.push(X[W])}}return U.length===0?null:U}},TAG:function(T,U){return U.getElementsByTagName(T[1])}},preFilter:{CLASS:function(W,U,V,T,Z,aa){W=" "+W[1].replace(/\\/g,"")+" ";if(aa){return W}for(var X=0,Y;(Y=U[X])!=null;X++){if(Y){if(Z^(Y.className&&(" "+Y.className+" ").indexOf(W)>=0)){if(!V){T.push(Y)}}else{if(V){U[X]=false}}}}return false},ID:function(T){return T[1].replace(/\\/g,"")},TAG:function(U,T){for(var V=0;T[V]===false;V++){}return T[V]&&Q(T[V])?U[1]:U[1].toUpperCase()},CHILD:function(T){if(T[1]=="nth"){var U=/(-?)(\d*)n((?:\+|-)?\d*)/.exec(T[2]=="even"&&"2n"||T[2]=="odd"&&"2n+1"||!/\D/.test(T[2])&&"0n+"+T[2]||T[2]);T[2]=(U[1]+(U[2]||1))-0;T[3]=U[3]-0}T[0]=L++;return T},ATTR:function(X,U,V,T,Y,Z){var W=X[1].replace(/\\/g,"");if(!Z&&I.attrMap[W]){X[1]=I.attrMap[W]}if(X[2]==="~="){X[4]=" "+X[4]+" "}return X},PSEUDO:function(X,U,V,T,Y){if(X[1]==="not"){if(X[3].match(R).length>1||/^\w/.test(X[3])){X[3]=F(X[3],null,null,U)}else{var W=F.filter(X[3],U,V,true^Y);if(!V){T.push.apply(T,W)}return false}}else{if(I.match.POS.test(X[0])||I.match.CHILD.test(X[0])){return true}}return X},POS:function(T){T.unshift(true);return T}},filters:{enabled:function(T){return T.disabled===false&&T.type!=="hidden"},disabled:function(T){return T.disabled===true},checked:function(T){return T.checked===true},selected:function(T){T.parentNode.selectedIndex;return T.selected===true},parent:function(T){return !!T.firstChild},empty:function(T){return !T.firstChild},has:function(V,U,T){return !!F(T[3],V).length},header:function(T){return/h\d/i.test(T.nodeName)},text:function(T){return"text"===T.type},radio:function(T){return"radio"===T.type},checkbox:function(T){return"checkbox"===T.type},file:function(T){return"file"===T.type},password:function(T){return"password"===T.type},submit:function(T){return"submit"===T.type},image:function(T){return"image"===T.type},reset:function(T){return"reset"===T.type},button:function(T){return"button"===T.type||T.nodeName.toUpperCase()==="BUTTON"},input:function(T){return/input|select|textarea|button/i.test(T.nodeName)}},setFilters:{first:function(U,T){return T===0},last:function(V,U,T,W){return U===W.length-1},even:function(U,T){return T%2===0},odd:function(U,T){return T%2===1},lt:function(V,U,T){return U<T[3]-0},gt:function(V,U,T){return U>T[3]-0},nth:function(V,U,T){return T[3]-0==U},eq:function(V,U,T){return T[3]-0==U}},filter:{PSEUDO:function(Z,V,W,aa){var U=V[1],X=I.filters[U];if(X){return X(Z,W,V,aa)}else{if(U==="contains"){return(Z.textContent||Z.innerText||"").indexOf(V[3])>=0}else{if(U==="not"){var Y=V[3];for(var W=0,T=Y.length;W<T;W++){if(Y[W]===Z){return false}}return true}}}},CHILD:function(T,W){var Z=W[1],U=T;switch(Z){case"only":case"first":while(U=U.previousSibling){if(U.nodeType===1){return false}}if(Z=="first"){return true}U=T;case"last":while(U=U.nextSibling){if(U.nodeType===1){return false}}return true;case"nth":var V=W[2],ac=W[3];if(V==1&&ac==0){return true}var Y=W[0],ab=T.parentNode;if(ab&&(ab.sizcache!==Y||!T.nodeIndex)){var X=0;for(U=ab.firstChild;U;U=U.nextSibling){if(U.nodeType===1){U.nodeIndex=++X}}ab.sizcache=Y}var aa=T.nodeIndex-ac;if(V==0){return aa==0}else{return(aa%V==0&&aa/V>=0)}}},ID:function(U,T){return U.nodeType===1&&U.getAttribute("id")===T},TAG:function(U,T){return(T==="*"&&U.nodeType===1)||U.nodeName===T},CLASS:function(U,T){return(" "+(U.className||U.getAttribute("class"))+" ").indexOf(T)>-1},ATTR:function(Y,W){var V=W[1],T=I.attrHandle[V]?I.attrHandle[V](Y):Y[V]!=null?Y[V]:Y.getAttribute(V),Z=T+"",X=W[2],U=W[4];return T==null?X==="!=":X==="="?Z===U:X==="*="?Z.indexOf(U)>=0:X==="~="?(" "+Z+" ").indexOf(U)>=0:!U?Z&&T!==false:X==="!="?Z!=U:X==="^="?Z.indexOf(U)===0:X==="$="?Z.substr(Z.length-U.length)===U:X==="|="?Z===U||Z.substr(0,U.length+1)===U+"-":false},POS:function(X,U,V,Y){var T=U[2],W=I.setFilters[T];if(W){return W(X,V,U,Y)}}}};var M=I.match.POS;for(var O in I.match){I.match[O]=RegExp(I.match[O].source+/(?![^\[]*\])(?![^\(]*\))/.source)}var E=function(U,T){U=Array.prototype.slice.call(U);if(T){T.push.apply(T,U);return T}return U};try{Array.prototype.slice.call(document.documentElement.childNodes)}catch(N){E=function(X,W){var U=W||[];if(H.call(X)==="[object Array]"){Array.prototype.push.apply(U,X)}else{if(typeof X.length==="number"){for(var V=0,T=X.length;V<T;V++){U.push(X[V])}}else{for(var V=0;X[V];V++){U.push(X[V])}}}return U}}var G;if(document.documentElement.compareDocumentPosition){G=function(U,T){var V=U.compareDocumentPosition(T)&4?-1:U===T?0:1;if(V===0){hasDuplicate=true}return V}}else{if("sourceIndex" in document.documentElement){G=function(U,T){var V=U.sourceIndex-T.sourceIndex;if(V===0){hasDuplicate=true}return V}}else{if(document.createRange){G=function(W,U){var V=W.ownerDocument.createRange(),T=U.ownerDocument.createRange();V.selectNode(W);V.collapse(true);T.selectNode(U);T.collapse(true);var X=V.compareBoundaryPoints(Range.START_TO_END,T);if(X===0){hasDuplicate=true}return X}}}}(function(){var U=document.createElement("form"),V="script"+(new Date).getTime();U.innerHTML="<input name='"+V+"'/>";var T=document.documentElement;T.insertBefore(U,T.firstChild);if(!!document.getElementById(V)){I.find.ID=function(X,Y,Z){if(typeof Y.getElementById!=="undefined"&&!Z){var W=Y.getElementById(X[1]);return W?W.id===X[1]||typeof W.getAttributeNode!=="undefined"&&W.getAttributeNode("id").nodeValue===X[1]?[W]:g:[]}};I.filter.ID=function(Y,W){var X=typeof Y.getAttributeNode!=="undefined"&&Y.getAttributeNode("id");return Y.nodeType===1&&X&&X.nodeValue===W}}T.removeChild(U)})();(function(){var T=document.createElement("div");T.appendChild(document.createComment(""));if(T.getElementsByTagName("*").length>0){I.find.TAG=function(U,Y){var X=Y.getElementsByTagName(U[1]);if(U[1]==="*"){var W=[];for(var V=0;X[V];V++){if(X[V].nodeType===1){W.push(X[V])}}X=W}return X}}T.innerHTML="<a href='#'></a>";if(T.firstChild&&typeof T.firstChild.getAttribute!=="undefined"&&T.firstChild.getAttribute("href")!=="#"){I.attrHandle.href=function(U){return U.getAttribute("href",2)}}})();if(document.querySelectorAll){(function(){var T=F,U=document.createElement("div");U.innerHTML="<p class='TEST'></p>";if(U.querySelectorAll&&U.querySelectorAll(".TEST").length===0){return}F=function(Y,X,V,W){X=X||document;if(!W&&X.nodeType===9&&!Q(X)){try{return E(X.querySelectorAll(Y),V)}catch(Z){}}return T(Y,X,V,W)};F.find=T.find;F.filter=T.filter;F.selectors=T.selectors;F.matches=T.matches})()}if(document.getElementsByClassName&&document.documentElement.getElementsByClassName){(function(){var T=document.createElement("div");T.innerHTML="<div class='test e'></div><div class='test'></div>";if(T.getElementsByClassName("e").length===0){return}T.lastChild.className="e";if(T.getElementsByClassName("e").length===1){return}I.order.splice(1,0,"CLASS");I.find.CLASS=function(U,V,W){if(typeof V.getElementsByClassName!=="undefined"&&!W){return V.getElementsByClassName(U[1])}}})()}function P(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1&&!ac){T.sizcache=Y;T.sizset=W}if(T.nodeName===Z){X=T;break}T=T[U]}ad[W]=X}}}function S(U,Z,Y,ad,aa,ac){var ab=U=="previousSibling"&&!ac;for(var W=0,V=ad.length;W<V;W++){var T=ad[W];if(T){if(ab&&T.nodeType===1){T.sizcache=Y;T.sizset=W}T=T[U];var X=false;while(T){if(T.sizcache===Y){X=ad[T.sizset];break}if(T.nodeType===1){if(!ac){T.sizcache=Y;T.sizset=W}if(typeof Z!=="string"){if(T===Z){X=true;break}}else{if(F.filter(Z,[T]).length>0){X=T;break}}}T=T[U]}ad[W]=X}}}var K=document.compareDocumentPosition?function(U,T){return U.compareDocumentPosition(T)&16}:function(U,T){return U!==T&&(U.contains?U.contains(T):true)};var Q=function(T){return T.nodeType===9&&T.documentElement.nodeName!=="HTML"||!!T.ownerDocument&&Q(T.ownerDocument)};var J=function(T,aa){var W=[],X="",Y,V=aa.nodeType?[aa]:aa;while((Y=I.match.PSEUDO.exec(T))){X+=Y[0];T=T.replace(I.match.PSEUDO,"")}T=I.relative[T]?T+"*":T;for(var Z=0,U=V.length;Z<U;Z++){F(T,V[Z],W)}return F.filter(X,W)};o.find=F;o.filter=F.filter;o.expr=F.selectors;o.expr[":"]=o.expr.filters;F.selectors.filters.hidden=function(T){return T.offsetWidth===0||T.offsetHeight===0};F.selectors.filters.visible=function(T){return T.offsetWidth>0||T.offsetHeight>0};F.selectors.filters.animated=function(T){return o.grep(o.timers,function(U){return T===U.elem}).length};o.multiFilter=function(V,T,U){if(U){V=":not("+V+")"}return F.matches(V,T)};o.dir=function(V,U){var T=[],W=V[U];while(W&&W!=document){if(W.nodeType==1){T.push(W)}W=W[U]}return T};o.nth=function(X,T,V,W){T=T||1;var U=0;for(;X;X=X[V]){if(X.nodeType==1&&++U==T){break}}return X};o.sibling=function(V,U){var T=[];for(;V;V=V.nextSibling){if(V.nodeType==1&&V!=U){T.push(V)}}return T};return;l.Sizzle=F})();o.event={add:function(I,F,H,K){if(I.nodeType==3||I.nodeType==8){return}if(I.setInterval&&I!=l){I=l}if(!H.guid){H.guid=this.guid++}if(K!==g){var G=H;H=this.proxy(G);H.data=K}var E=o.data(I,"events")||o.data(I,"events",{}),J=o.data(I,"handle")||o.data(I,"handle",function(){return typeof o!=="undefined"&&!o.event.triggered?o.event.handle.apply(arguments.callee.elem,arguments):g});J.elem=I;o.each(F.split(/\s+/),function(M,N){var O=N.split(".");N=O.shift();H.type=O.slice().sort().join(".");var L=E[N];if(o.event.specialAll[N]){o.event.specialAll[N].setup.call(I,K,O)}if(!L){L=E[N]={};if(!o.event.special[N]||o.event.special[N].setup.call(I,K,O)===false){if(I.addEventListener){I.addEventListener(N,J,false)}else{if(I.attachEvent){I.attachEvent("on"+N,J)}}}}L[H.guid]=H;o.event.global[N]=true});I=null},guid:1,global:{},remove:function(K,H,J){if(K.nodeType==3||K.nodeType==8){return}var G=o.data(K,"events"),F,E;if(G){if(H===g||(typeof H==="string"&&H.charAt(0)==".")){for(var I in G){this.remove(K,I+(H||""))}}else{if(H.type){J=H.handler;H=H.type}o.each(H.split(/\s+/),function(M,O){var Q=O.split(".");O=Q.shift();var N=RegExp("(^|\\.)"+Q.slice().sort().join(".*\\.")+"(\\.|$)");if(G[O]){if(J){delete G[O][J.guid]}else{for(var P in G[O]){if(N.test(G[O][P].type)){delete G[O][P]}}}if(o.event.specialAll[O]){o.event.specialAll[O].teardown.call(K,Q)}for(F in G[O]){break}if(!F){if(!o.event.special[O]||o.event.special[O].teardown.call(K,Q)===false){if(K.removeEventListener){K.removeEventListener(O,o.data(K,"handle"),false)}else{if(K.detachEvent){K.detachEvent("on"+O,o.data(K,"handle"))}}}F=null;delete G[O]}}})}for(F in G){break}if(!F){var L=o.data(K,"handle");if(L){L.elem=null}o.removeData(K,"events");o.removeData(K,"handle")}}},trigger:function(I,K,H,E){var G=I.type||I;if(!E){I=typeof I==="object"?I[h]?I:o.extend(o.Event(G),I):o.Event(G);if(G.indexOf("!")>=0){I.type=G=G.slice(0,-1);I.exclusive=true}if(!H){I.stopPropagation();if(this.global[G]){o.each(o.cache,function(){if(this.events&&this.events[G]){o.event.trigger(I,K,this.handle.elem)}})}}if(!H||H.nodeType==3||H.nodeType==8){return g}I.result=g;I.target=H;K=o.makeArray(K);K.unshift(I)}I.currentTarget=H;var J=o.data(H,"handle");if(J){J.apply(H,K)}if((!H[G]||(o.nodeName(H,"a")&&G=="click"))&&H["on"+G]&&H["on"+G].apply(H,K)===false){I.result=false}if(!E&&H[G]&&!I.isDefaultPrevented()&&!(o.nodeName(H,"a")&&G=="click")){this.triggered=true;try{H[G]()}catch(L){}}this.triggered=false;if(!I.isPropagationStopped()){var F=H.parentNode||H.ownerDocument;if(F){o.event.trigger(I,K,F,true)}}},handle:function(K){var J,E;K=arguments[0]=o.event.fix(K||l.event);K.currentTarget=this;var L=K.type.split(".");K.type=L.shift();J=!L.length&&!K.exclusive;var I=RegExp("(^|\\.)"+L.slice().sort().join(".*\\.")+"(\\.|$)");E=(o.data(this,"events")||{})[K.type];for(var G in E){var H=E[G];if(J||I.test(H.type)){K.handler=H;K.data=H.data;var F=H.apply(this,arguments);if(F!==g){K.result=F;if(F===false){K.preventDefault();K.stopPropagation()}}if(K.isImmediatePropagationStopped()){break}}}},props:"altKey attrChange attrName bubbles button cancelable charCode clientX clientY ctrlKey currentTarget data detail eventPhase fromElement handler keyCode metaKey newValue originalTarget pageX pageY prevValue relatedNode relatedTarget screenX screenY shiftKey srcElement target toElement view wheelDelta which".split(" "),fix:function(H){if(H[h]){return H}var F=H;H=o.Event(F);for(var G=this.props.length,J;G;){J=this.props[--G];H[J]=F[J]}if(!H.target){H.target=H.srcElement||document}if(H.target.nodeType==3){H.target=H.target.parentNode}if(!H.relatedTarget&&H.fromElement){H.relatedTarget=H.fromElement==H.target?H.toElement:H.fromElement}if(H.pageX==null&&H.clientX!=null){var I=document.documentElement,E=document.body;H.pageX=H.clientX+(I&&I.scrollLeft||E&&E.scrollLeft||0)-(I.clientLeft||0);H.pageY=H.clientY+(I&&I.scrollTop||E&&E.scrollTop||0)-(I.clientTop||0)}if(!H.which&&((H.charCode||H.charCode===0)?H.charCode:H.keyCode)){H.which=H.charCode||H.keyCode}if(!H.metaKey&&H.ctrlKey){H.metaKey=H.ctrlKey}if(!H.which&&H.button){H.which=(H.button&1?1:(H.button&2?3:(H.button&4?2:0)))}return H},proxy:function(F,E){E=E||function(){return F.apply(this,arguments)};E.guid=F.guid=F.guid||E.guid||this.guid++;return E},special:{ready:{setup:B,teardown:function(){}}},specialAll:{live:{setup:function(E,F){o.event.add(this,F[0],c)},teardown:function(G){if(G.length){var E=0,F=RegExp("(^|\\.)"+G[0]+"(\\.|$)");o.each((o.data(this,"events").live||{}),function(){if(F.test(this.type)){E++}});if(E<1){o.event.remove(this,G[0],c)}}}}}};o.Event=function(E){if(!this.preventDefault){return new o.Event(E)}if(E&&E.type){this.originalEvent=E;this.type=E.type}else{this.type=E}this.timeStamp=e();this[h]=true};function k(){return false}function u(){return true}o.Event.prototype={preventDefault:function(){this.isDefaultPrevented=u;var E=this.originalEvent;if(!E){return}if(E.preventDefault){E.preventDefault()}E.returnValue=false},stopPropagation:function(){this.isPropagationStopped=u;var E=this.originalEvent;if(!E){return}if(E.stopPropagation){E.stopPropagation()}E.cancelBubble=true},stopImmediatePropagation:function(){this.isImmediatePropagationStopped=u;this.stopPropagation()},isDefaultPrevented:k,isPropagationStopped:k,isImmediatePropagationStopped:k};var a=function(F){var E=F.relatedTarget;while(E&&E!=this){try{E=E.parentNode}catch(G){E=this}}if(E!=this){F.type=F.data;o.event.handle.apply(this,arguments)}};o.each({mouseover:"mouseenter",mouseout:"mouseleave"},function(F,E){o.event.special[E]={setup:function(){o.event.add(this,F,a,E)},teardown:function(){o.event.remove(this,F,a)}}});o.fn.extend({bind:function(F,G,E){return F=="unload"?this.one(F,G,E):this.each(function(){o.event.add(this,F,E||G,E&&G)})},one:function(G,H,F){var E=o.event.proxy(F||H,function(I){o(this).unbind(I,E);return(F||H).apply(this,arguments)});return this.each(function(){o.event.add(this,G,E,F&&H)})},unbind:function(F,E){return this.each(function(){o.event.remove(this,F,E)})},trigger:function(E,F){return this.each(function(){o.event.trigger(E,F,this)})},triggerHandler:function(E,G){if(this[0]){var F=o.Event(E);F.preventDefault();F.stopPropagation();o.event.trigger(F,G,this[0]);return F.result}},toggle:function(G){var E=arguments,F=1;while(F<E.length){o.event.proxy(G,E[F++])}return this.click(o.event.proxy(G,function(H){this.lastToggle=(this.lastToggle||0)%F;H.preventDefault();return E[this.lastToggle++].apply(this,arguments)||false}))},hover:function(E,F){return this.mouseenter(E).mouseleave(F)},ready:function(E){B();if(o.isReady){E.call(document,o)}else{o.readyList.push(E)}return this},live:function(G,F){var E=o.event.proxy(F);E.guid+=this.selector+G;o(document).bind(i(G,this.selector),this.selector,E);return this},die:function(F,E){o(document).unbind(i(F,this.selector),E?{guid:E.guid+this.selector+F}:null);return this}});function c(H){var E=RegExp("(^|\\.)"+H.type+"(\\.|$)"),G=true,F=[];o.each(o.data(this,"events").live||[],function(I,J){if(E.test(J.type)){var K=o(H.target).closest(J.data)[0];if(K){F.push({elem:K,fn:J})}}});F.sort(function(J,I){return o.data(J.elem,"closest")-o.data(I.elem,"closest")});o.each(F,function(){if(this.fn.call(this.elem,H,this.fn.data)===false){return(G=false)}});return G}function i(F,E){return["live",F,E.replace(/\./g,"`").replace(/ /g,"|")].join(".")}o.extend({isReady:false,readyList:[],ready:function(){if(!o.isReady){o.isReady=true;if(o.readyList){o.each(o.readyList,function(){this.call(document,o)});o.readyList=null}o(document).triggerHandler("ready")}}});var x=false;function B(){if(x){return}x=true;if(document.addEventListener){document.addEventListener("DOMContentLoaded",function(){document.removeEventListener("DOMContentLoaded",arguments.callee,false);o.ready()},false)}else{if(document.attachEvent){document.attachEvent("onreadystatechange",function(){if(document.readyState==="complete"){document.detachEvent("onreadystatechange",arguments.callee);o.ready()}});if(document.documentElement.doScroll&&l==l.top){(function(){if(o.isReady){return}try{document.documentElement.doScroll("left")}catch(E){setTimeout(arguments.callee,0);return}o.ready()})()}}}o.event.add(l,"load",o.ready)}o.each(("blur,focus,load,resize,scroll,unload,click,dblclick,mousedown,mouseup,mousemove,mouseover,mouseout,mouseenter,mouseleave,change,select,submit,keydown,keypress,keyup,error").split(","),function(F,E){o.fn[E]=function(G){return G?this.bind(E,G):this.trigger(E)}});o(l).bind("unload",function(){for(var E in o.cache){if(E!=1&&o.cache[E].handle){o.event.remove(o.cache[E].handle.elem)}}});(function(){o.support={};var F=document.documentElement,G=document.createElement("script"),K=document.createElement("div"),J="script"+(new Date).getTime();K.style.display="none";K.innerHTML='   <link/><table></table><a href="/a" style="color:red;float:left;opacity:.5;">a</a><select><option>text</option></select><object><param/></object>';var H=K.getElementsByTagName("*"),E=K.getElementsByTagName("a")[0];if(!H||!H.length||!E){return}o.support={leadingWhitespace:K.firstChild.nodeType==3,tbody:!K.getElementsByTagName("tbody").length,objectAll:!!K.getElementsByTagName("object")[0].getElementsByTagName("*").length,htmlSerialize:!!K.getElementsByTagName("link").length,style:/red/.test(E.getAttribute("style")),hrefNormalized:E.getAttribute("href")==="/a",opacity:E.style.opacity==="0.5",cssFloat:!!E.style.cssFloat,scriptEval:false,noCloneEvent:true,boxModel:null};G.type="text/javascript";try{G.appendChild(document.createTextNode("window."+J+"=1;"))}catch(I){}F.insertBefore(G,F.firstChild);if(l[J]){o.support.scriptEval=true;delete l[J]}F.removeChild(G);if(K.attachEvent&&K.fireEvent){K.attachEvent("onclick",function(){o.support.noCloneEvent=false;K.detachEvent("onclick",arguments.callee)});K.cloneNode(true).fireEvent("onclick")}o(function(){var L=document.createElement("div");L.style.width=L.style.paddingLeft="1px";document.body.appendChild(L);o.boxModel=o.support.boxModel=L.offsetWidth===2;document.body.removeChild(L).style.display="none"})})();var w=o.support.cssFloat?"cssFloat":"styleFloat";o.props={"for":"htmlFor","class":"className","float":w,cssFloat:w,styleFloat:w,readonly:"readOnly",maxlength:"maxLength",cellspacing:"cellSpacing",rowspan:"rowSpan",tabindex:"tabIndex"};o.fn.extend({_load:o.fn.load,load:function(G,J,K){if(typeof G!=="string"){return this._load(G)}var I=G.indexOf(" ");if(I>=0){var E=G.slice(I,G.length);G=G.slice(0,I)}var H="GET";if(J){if(o.isFunction(J)){K=J;J=null}else{if(typeof J==="object"){J=o.param(J);H="POST"}}}var F=this;o.ajax({url:G,type:H,dataType:"html",data:J,complete:function(M,L){if(L=="success"||L=="notmodified"){F.html(E?o("<div/>").append(M.responseText.replace(/<script(.|\s)*?\/script>/g,"")).find(E):M.responseText)}if(K){F.each(K,[M.responseText,L,M])}}});return this},serialize:function(){return o.param(this.serializeArray())},serializeArray:function(){return this.map(function(){return this.elements?o.makeArray(this.elements):this}).filter(function(){return this.name&&!this.disabled&&(this.checked||/select|textarea/i.test(this.nodeName)||/text|hidden|password|search/i.test(this.type))}).map(function(E,F){var G=o(this).val();return G==null?null:o.isArray(G)?o.map(G,function(I,H){return{name:F.name,value:I}}):{name:F.name,value:G}}).get()}});o.each("ajaxStart,ajaxStop,ajaxComplete,ajaxError,ajaxSuccess,ajaxSend".split(","),function(E,F){o.fn[F]=function(G){return this.bind(F,G)}});var r=e();o.extend({get:function(E,G,H,F){if(o.isFunction(G)){H=G;G=null}return o.ajax({type:"GET",url:E,data:G,success:H,dataType:F})},getScript:function(E,F){return o.get(E,null,F,"script")},getJSON:function(E,F,G){return o.get(E,F,G,"json")},post:function(E,G,H,F){if(o.isFunction(G)){H=G;G={}}return o.ajax({type:"POST",url:E,data:G,success:H,dataType:F})},ajaxSetup:function(E){o.extend(o.ajaxSettings,E)},ajaxSettings:{url:location.href,global:true,type:"GET",contentType:"application/x-www-form-urlencoded",processData:true,async:true,xhr:function(){return l.ActiveXObject?new ActiveXObject("Microsoft.XMLHTTP"):new XMLHttpRequest()},accepts:{xml:"application/xml, text/xml",html:"text/html",script:"text/javascript, application/javascript",json:"application/json, text/javascript",text:"text/plain",_default:"*/*"}},lastModified:{},ajax:function(M){M=o.extend(true,M,o.extend(true,{},o.ajaxSettings,M));var W,F=/=\?(&|$)/g,R,V,G=M.type.toUpperCase();if(M.data&&M.processData&&typeof M.data!=="string"){M.data=o.param(M.data)}if(M.dataType=="jsonp"){if(G=="GET"){if(!M.url.match(F)){M.url+=(M.url.match(/\?/)?"&":"?")+(M.jsonp||"callback")+"=?"}}else{if(!M.data||!M.data.match(F)){M.data=(M.data?M.data+"&":"")+(M.jsonp||"callback")+"=?"}}M.dataType="json"}if(M.dataType=="json"&&(M.data&&M.data.match(F)||M.url.match(F))){W="jsonp"+r++;if(M.data){M.data=(M.data+"").replace(F,"="+W+"$1")}M.url=M.url.replace(F,"="+W+"$1");M.dataType="script";l[W]=function(X){V=X;I();L();l[W]=g;try{delete l[W]}catch(Y){}if(H){H.removeChild(T)}}}if(M.dataType=="script"&&M.cache==null){M.cache=false}if(M.cache===false&&G=="GET"){var E=e();var U=M.url.replace(/(\?|&)_=.*?(&|$)/,"$1_="+E+"$2");M.url=U+((U==M.url)?(M.url.match(/\?/)?"&":"?")+"_="+E:"")}if(M.data&&G=="GET"){M.url+=(M.url.match(/\?/)?"&":"?")+M.data;M.data=null}if(M.global&&!o.active++){o.event.trigger("ajaxStart")}var Q=/^(\w+:)?\/\/([^\/?#]+)/.exec(M.url);if(M.dataType=="script"&&G=="GET"&&Q&&(Q[1]&&Q[1]!=location.protocol||Q[2]!=location.host)){var H=document.getElementsByTagName("head")[0];var T=document.createElement("script");T.src=M.url;if(M.scriptCharset){T.charset=M.scriptCharset}if(!W){var O=false;T.onload=T.onreadystatechange=function(){if(!O&&(!this.readyState||this.readyState=="loaded"||this.readyState=="complete")){O=true;I();L();T.onload=T.onreadystatechange=null;H.removeChild(T)}}}H.appendChild(T);return g}var K=false;var J=M.xhr();if(M.username){J.open(G,M.url,M.async,M.username,M.password)}else{J.open(G,M.url,M.async)}try{if(M.data){J.setRequestHeader("Content-Type",M.contentType)}if(M.ifModified){J.setRequestHeader("If-Modified-Since",o.lastModified[M.url]||"Thu, 01 Jan 1970 00:00:00 GMT")}J.setRequestHeader("X-Requested-With","XMLHttpRequest");J.setRequestHeader("Accept",M.dataType&&M.accepts[M.dataType]?M.accepts[M.dataType]+", */*":M.accepts._default)}catch(S){}if(M.beforeSend&&M.beforeSend(J,M)===false){if(M.global&&!--o.active){o.event.trigger("ajaxStop")}J.abort();return false}if(M.global){o.event.trigger("ajaxSend",[J,M])}var N=function(X){if(J.readyState==0){if(P){clearInterval(P);P=null;if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}}else{if(!K&&J&&(J.readyState==4||X=="timeout")){K=true;if(P){clearInterval(P);P=null}R=X=="timeout"?"timeout":!o.httpSuccess(J)?"error":M.ifModified&&o.httpNotModified(J,M.url)?"notmodified":"success";if(R=="success"){try{V=o.httpData(J,M.dataType,M)}catch(Z){R="parsererror"}}if(R=="success"){var Y;try{Y=J.getResponseHeader("Last-Modified")}catch(Z){}if(M.ifModified&&Y){o.lastModified[M.url]=Y}if(!W){I()}}else{o.handleError(M,J,R)}L();if(X){J.abort()}if(M.async){J=null}}}};if(M.async){var P=setInterval(N,13);if(M.timeout>0){setTimeout(function(){if(J&&!K){N("timeout")}},M.timeout)}}try{J.send(M.data)}catch(S){o.handleError(M,J,null,S)}if(!M.async){N()}function I(){if(M.success){M.success(V,R)}if(M.global){o.event.trigger("ajaxSuccess",[J,M])}}function L(){if(M.complete){M.complete(J,R)}if(M.global){o.event.trigger("ajaxComplete",[J,M])}if(M.global&&!--o.active){o.event.trigger("ajaxStop")}}return J},handleError:function(F,H,E,G){if(F.error){F.error(H,E,G)}if(F.global){o.event.trigger("ajaxError",[H,F,G])}},active:0,httpSuccess:function(F){try{return !F.status&&location.protocol=="file:"||(F.status>=200&&F.status<300)||F.status==304||F.status==1223}catch(E){}return false},httpNotModified:function(G,E){try{var H=G.getResponseHeader("Last-Modified");return G.status==304||H==o.lastModified[E]}catch(F){}return false},httpData:function(J,H,G){var F=J.getResponseHeader("content-type"),E=H=="xml"||!H&&F&&F.indexOf("xml")>=0,I=E?J.responseXML:J.responseText;if(E&&I.documentElement.tagName=="parsererror"){throw"parsererror"}if(G&&G.dataFilter){I=G.dataFilter(I,H)}if(typeof I==="string"){if(H=="script"){o.globalEval(I)}if(H=="json"){I=l["eval"]("("+I+")")}}return I},param:function(E){var G=[];function H(I,J){G[G.length]=encodeURIComponent(I)+"="+encodeURIComponent(J)}if(o.isArray(E)||E.jquery){o.each(E,function(){H(this.name,this.value)})}else{for(var F in E){if(o.isArray(E[F])){o.each(E[F],function(){H(F,this)})}else{H(F,o.isFunction(E[F])?E[F]():E[F])}}}return G.join("&").replace(/%20/g,"+")}});var m={},n,d=[["height","marginTop","marginBottom","paddingTop","paddingBottom"],["width","marginLeft","marginRight","paddingLeft","paddingRight"],["opacity"]];function t(F,E){var G={};o.each(d.concat.apply([],d.slice(0,E)),function(){G[this]=F});return G}o.fn.extend({show:function(J,L){if(J){return this.animate(t("show",3),J,L)}else{for(var H=0,F=this.length;H<F;H++){var E=o.data(this[H],"olddisplay");this[H].style.display=E||"";if(o.css(this[H],"display")==="none"){var G=this[H].tagName,K;if(m[G]){K=m[G]}else{var I=o("<"+G+" />").appendTo("body");K=I.css("display");if(K==="none"){K="block"}I.remove();m[G]=K}o.data(this[H],"olddisplay",K)}}for(var H=0,F=this.length;H<F;H++){this[H].style.display=o.data(this[H],"olddisplay")||""}return this}},hide:function(H,I){if(H){return this.animate(t("hide",3),H,I)}else{for(var G=0,F=this.length;G<F;G++){var E=o.data(this[G],"olddisplay");if(!E&&E!=="none"){o.data(this[G],"olddisplay",o.css(this[G],"display"))}}for(var G=0,F=this.length;G<F;G++){this[G].style.display="none"}return this}},_toggle:o.fn.toggle,toggle:function(G,F){var E=typeof G==="boolean";return o.isFunction(G)&&o.isFunction(F)?this._toggle.apply(this,arguments):G==null||E?this.each(function(){var H=E?G:o(this).is(":hidden");o(this)[H?"show":"hide"]()}):this.animate(t("toggle",3),G,F)},fadeTo:function(E,G,F){return this.animate({opacity:G},E,F)},animate:function(I,F,H,G){var E=o.speed(F,H,G);return this[E.queue===false?"each":"queue"](function(){var K=o.extend({},E),M,L=this.nodeType==1&&o(this).is(":hidden"),J=this;for(M in I){if(I[M]=="hide"&&L||I[M]=="show"&&!L){return K.complete.call(this)}if((M=="height"||M=="width")&&this.style){K.display=o.css(this,"display");K.overflow=this.style.overflow}}if(K.overflow!=null){this.style.overflow="hidden"}K.curAnim=o.extend({},I);o.each(I,function(O,S){var R=new o.fx(J,K,O);if(/toggle|show|hide/.test(S)){R[S=="toggle"?L?"show":"hide":S](I)}else{var Q=S.toString().match(/^([+-]=)?([\d+-.]+)(.*)$/),T=R.cur(true)||0;if(Q){var N=parseFloat(Q[2]),P=Q[3]||"px";if(P!="px"){J.style[O]=(N||1)+P;T=((N||1)/R.cur(true))*T;J.style[O]=T+P}if(Q[1]){N=((Q[1]=="-="?-1:1)*N)+T}R.custom(T,N,P)}else{R.custom(T,S,"")}}});return true})},stop:function(F,E){var G=o.timers;if(F){this.queue([])}this.each(function(){for(var H=G.length-1;H>=0;H--){if(G[H].elem==this){if(E){G[H](true)}G.splice(H,1)}}});if(!E){this.dequeue()}return this}});o.each({slideDown:t("show",1),slideUp:t("hide",1),slideToggle:t("toggle",1),fadeIn:{opacity:"show"},fadeOut:{opacity:"hide"}},function(E,F){o.fn[E]=function(G,H){return this.animate(F,G,H)}});o.extend({speed:function(G,H,F){var E=typeof G==="object"?G:{complete:F||!F&&H||o.isFunction(G)&&G,duration:G,easing:F&&H||H&&!o.isFunction(H)&&H};E.duration=o.fx.off?0:typeof E.duration==="number"?E.duration:o.fx.speeds[E.duration]||o.fx.speeds._default;E.old=E.complete;E.complete=function(){if(E.queue!==false){o(this).dequeue()}if(o.isFunction(E.old)){E.old.call(this)}};return E},easing:{linear:function(G,H,E,F){return E+F*G},swing:function(G,H,E,F){return((-Math.cos(G*Math.PI)/2)+0.5)*F+E}},timers:[],fx:function(F,E,G){this.options=E;this.elem=F;this.prop=G;if(!E.orig){E.orig={}}}});o.fx.prototype={update:function(){if(this.options.step){this.options.step.call(this.elem,this.now,this)}(o.fx.step[this.prop]||o.fx.step._default)(this);if((this.prop=="height"||this.prop=="width")&&this.elem.style){this.elem.style.display="block"}},cur:function(F){if(this.elem[this.prop]!=null&&(!this.elem.style||this.elem.style[this.prop]==null)){return this.elem[this.prop]}var E=parseFloat(o.css(this.elem,this.prop,F));return E&&E>-10000?E:parseFloat(o.curCSS(this.elem,this.prop))||0},custom:function(I,H,G){this.startTime=e();this.start=I;this.end=H;this.unit=G||this.unit||"px";this.now=this.start;this.pos=this.state=0;var E=this;function F(J){return E.step(J)}F.elem=this.elem;if(F()&&o.timers.push(F)&&!n){n=setInterval(function(){var K=o.timers;for(var J=0;J<K.length;J++){if(!K[J]()){K.splice(J--,1)}}if(!K.length){clearInterval(n);n=g}},13)}},show:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.show=true;this.custom(this.prop=="width"||this.prop=="height"?1:0,this.cur());o(this.elem).show()},hide:function(){this.options.orig[this.prop]=o.attr(this.elem.style,this.prop);this.options.hide=true;this.custom(this.cur(),0)},step:function(H){var G=e();if(H||G>=this.options.duration+this.startTime){this.now=this.end;this.pos=this.state=1;this.update();this.options.curAnim[this.prop]=true;var E=true;for(var F in this.options.curAnim){if(this.options.curAnim[F]!==true){E=false}}if(E){if(this.options.display!=null){this.elem.style.overflow=this.options.overflow;this.elem.style.display=this.options.display;if(o.css(this.elem,"display")=="none"){this.elem.style.display="block"}}if(this.options.hide){o(this.elem).hide()}if(this.options.hide||this.options.show){for(var I in this.options.curAnim){o.attr(this.elem.style,I,this.options.orig[I])}}this.options.complete.call(this.elem)}return false}else{var J=G-this.startTime;this.state=J/this.options.duration;this.pos=o.easing[this.options.easing||(o.easing.swing?"swing":"linear")](this.state,J,0,1,this.options.duration);this.now=this.start+((this.end-this.start)*this.pos);this.update()}return true}};o.extend(o.fx,{speeds:{slow:600,fast:200,_default:400},step:{opacity:function(E){o.attr(E.elem.style,"opacity",E.now)},_default:function(E){if(E.elem.style&&E.elem.style[E.prop]!=null){E.elem.style[E.prop]=E.now+E.unit}else{E.elem[E.prop]=E.now}}}});if(document.documentElement.getBoundingClientRect){o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}var G=this[0].getBoundingClientRect(),J=this[0].ownerDocument,F=J.body,E=J.documentElement,L=E.clientTop||F.clientTop||0,K=E.clientLeft||F.clientLeft||0,I=G.top+(self.pageYOffset||o.boxModel&&E.scrollTop||F.scrollTop)-L,H=G.left+(self.pageXOffset||o.boxModel&&E.scrollLeft||F.scrollLeft)-K;return{top:I,left:H}}}else{o.fn.offset=function(){if(!this[0]){return{top:0,left:0}}if(this[0]===this[0].ownerDocument.body){return o.offset.bodyOffset(this[0])}o.offset.initialized||o.offset.initialize();var J=this[0],G=J.offsetParent,F=J,O=J.ownerDocument,M,H=O.documentElement,K=O.body,L=O.defaultView,E=L.getComputedStyle(J,null),N=J.offsetTop,I=J.offsetLeft;while((J=J.parentNode)&&J!==K&&J!==H){M=L.getComputedStyle(J,null);N-=J.scrollTop,I-=J.scrollLeft;if(J===G){N+=J.offsetTop,I+=J.offsetLeft;if(o.offset.doesNotAddBorder&&!(o.offset.doesAddBorderForTableAndCells&&/^t(able|d|h)$/i.test(J.tagName))){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}F=G,G=J.offsetParent}if(o.offset.subtractsBorderForOverflowNotVisible&&M.overflow!=="visible"){N+=parseInt(M.borderTopWidth,10)||0,I+=parseInt(M.borderLeftWidth,10)||0}E=M}if(E.position==="relative"||E.position==="static"){N+=K.offsetTop,I+=K.offsetLeft}if(E.position==="fixed"){N+=Math.max(H.scrollTop,K.scrollTop),I+=Math.max(H.scrollLeft,K.scrollLeft)}return{top:N,left:I}}}o.offset={initialize:function(){if(this.initialized){return}var L=document.body,F=document.createElement("div"),H,G,N,I,M,E,J=L.style.marginTop,K='<div style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;"><div></div></div><table style="position:absolute;top:0;left:0;margin:0;border:5px solid #000;padding:0;width:1px;height:1px;" cellpadding="0" cellspacing="0"><tr><td></td></tr></table>';M={position:"absolute",top:0,left:0,margin:0,border:0,width:"1px",height:"1px",visibility:"hidden"};for(E in M){F.style[E]=M[E]}F.innerHTML=K;L.insertBefore(F,L.firstChild);H=F.firstChild,G=H.firstChild,I=H.nextSibling.firstChild.firstChild;this.doesNotAddBorder=(G.offsetTop!==5);this.doesAddBorderForTableAndCells=(I.offsetTop===5);H.style.overflow="hidden",H.style.position="relative";this.subtractsBorderForOverflowNotVisible=(G.offsetTop===-5);L.style.marginTop="1px";this.doesNotIncludeMarginInBodyOffset=(L.offsetTop===0);L.style.marginTop=J;L.removeChild(F);this.initialized=true},bodyOffset:function(E){o.offset.initialized||o.offset.initialize();var G=E.offsetTop,F=E.offsetLeft;if(o.offset.doesNotIncludeMarginInBodyOffset){G+=parseInt(o.curCSS(E,"marginTop",true),10)||0,F+=parseInt(o.curCSS(E,"marginLeft",true),10)||0}return{top:G,left:F}}};o.fn.extend({position:function(){var I=0,H=0,F;if(this[0]){var G=this.offsetParent(),J=this.offset(),E=/^body|html$/i.test(G[0].tagName)?{top:0,left:0}:G.offset();J.top-=j(this,"marginTop");J.left-=j(this,"marginLeft");E.top+=j(G,"borderTopWidth");E.left+=j(G,"borderLeftWidth");F={top:J.top-E.top,left:J.left-E.left}}return F},offsetParent:function(){var E=this[0].offsetParent||document.body;while(E&&(!/^body|html$/i.test(E.tagName)&&o.css(E,"position")=="static")){E=E.offsetParent}return o(E)}});o.each(["Left","Top"],function(F,E){var G="scroll"+E;o.fn[G]=function(H){if(!this[0]){return null}return H!==g?this.each(function(){this==l||this==document?l.scrollTo(!F?H:o(l).scrollLeft(),F?H:o(l).scrollTop()):this[G]=H}):this[0]==l||this[0]==document?self[F?"pageYOffset":"pageXOffset"]||o.boxModel&&document.documentElement[G]||document.body[G]:this[0][G]}});o.each(["Height","Width"],function(I,G){var E=I?"Left":"Top",H=I?"Right":"Bottom",F=G.toLowerCase();o.fn["inner"+G]=function(){return this[0]?o.css(this[0],F,false,"padding"):null};o.fn["outer"+G]=function(K){return this[0]?o.css(this[0],F,false,K?"margin":"border"):null};var J=G.toLowerCase();o.fn[J]=function(K){return this[0]==l?document.compatMode=="CSS1Compat"&&document.documentElement["client"+G]||document.body["client"+G]:this[0]==document?Math.max(document.documentElement["client"+G],document.body["scroll"+G],document.documentElement["scroll"+G],document.body["offset"+G],document.documentElement["offset"+G]):K===g?(this.length?o.css(this[0],J):null):this.css(J,typeof K==="string"?K:K+"px")}})})();jQuery.fn.log=function(a){return this};if(typeof(console)=="undefined"){console={log:function(){}}}(function(c){var a=c.scrollTo=function(f,e,d){c(window).scrollTo(f,e,d)};a.defaults={axis:"xy",duration:parseFloat(c.fn.jquery)>=1.3?0:1};a.window=function(d){return c(window)._scrollable()};c.fn._scrollable=function(){return this.map(function(){var e=this,d=!e.nodeName||c.inArray(e.nodeName.toLowerCase(),["iframe","#document","html","body"])!=-1;if(!d){return e}var f=(e.contentWindow||e).document||e.ownerDocument||e;return c.browser.safari||f.compatMode=="BackCompat"?f.body:f.documentElement})};c.fn.scrollTo=function(f,e,d){if(typeof e=="object"){d=e;e=0}if(typeof d=="function"){d={onAfter:d}}if(f=="max"){f=9000000000}d=c.extend({},a.defaults,d);e=e||d.speed||d.duration;d.queue=d.queue&&d.axis.length>1;if(d.queue){e/=2}d.offset=b(d.offset);d.over=b(d.over);return this._scrollable().each(function(){var l=this,j=c(l),k=f,i,g={},m=j.is("html,body");switch(typeof k){case"number":case"string":if(/^([+-]=)?\d+(\.\d+)?(px|%)?$/.test(k)){k=b(k);break}k=c(k,this);case"object":if(k.is||k.style){i=(k=c(k)).offset()}}c.each(d.axis.split(""),function(q,r){var s=r=="x"?"Left":"Top",u=s.toLowerCase(),p="scroll"+s,o=l[p],n=a.max(l,r);if(i){g[p]=i[u]+(m?0:o-j.offset()[u]);if(d.margin){g[p]-=parseInt(k.css("margin"+s))||0;g[p]-=parseInt(k.css("border"+s+"Width"))||0}g[p]+=d.offset[u]||0;if(d.over[u]){g[p]+=k[r=="x"?"width":"height"]()*d.over[u]}}else{var t=k[u];g[p]=t.slice&&t.slice(-1)=="%"?parseFloat(t)/100*n:t}if(/^\d+$/.test(g[p])){g[p]=g[p]<=0?0:Math.min(g[p],n)}if(!q&&d.queue){if(o!=g[p]){h(d.onAfterFirst)}delete g[p]}});h(d.onAfter);function h(n){j.animate(g,e,d.easing,n&&function(){n.call(this,f,d)})}}).end()};a.max=function(j,i){var h=i=="x"?"Width":"Height",e="scroll"+h;if(!c(j).is("html,body")){return j[e]-c(j)[h.toLowerCase()]()}var g="client"+h,f=j.ownerDocument.documentElement,d=j.ownerDocument.body;return Math.max(f[e],d[e])-Math.min(f[g],d[g])};function b(d){return typeof d=="object"?d:{top:d,left:d}}})(jQuery);jQuery.fn.preventDoubleSubmit=function(){jQuery(this).submit(function(){if(this.beenSubmitted){return false}else{this.beenSubmitted=true}})};(function(a){a.fn.checkLabel=function(){return this.each(function(){function b(d){var c=a(d);if(c.is(":checked")){c.parent("label").addClass("checked")}else{c.parent("label").removeClass("checked")}}a(this).click(function(){b(this)});b(this)})}})(jQuery);(function(A){var J,S,Q,K,d,w,I,N,z,D=0,H={},h=[],e=0,F={},y=[],f=null,m=new Image(),g=/\.(jpg|gif|png|bmp|jpeg)(.*)?$/i,k=/[^\.]\.(swf)\s*$/i,q,L=1,a,c,O=false,C=20,t=A.extend(A("<div/>")[0],{prop:0}),j=0,R=!A.support.opacity&&!window.XMLHttpRequest,i=function(){S.hide();m.onerror=m.onload=null;if(f){f.abort()}J.empty()},p=function(){A.fancybox('<p id="fancybox_error">The requested content cannot be loaded.<br />Please try again later.</p>',{scrolling:"no",padding:20,transitionIn:"none",transitionOut:"none"})},E=function(){return[A(window).width(),A(window).height(),A(document).scrollLeft(),A(document).scrollTop()]},b=function(){var V=E(),ac={},aa=F.margin,W=F.autoScale,ab=(C+aa)*2,Z=(C+aa)*2,X=(F.padding*2),Y;if(F.width.toString().indexOf("%")>-1){ac.width=((V[0]*parseFloat(F.width))/100)-(C*2);W=false}else{ac.width=F.width+X}if(F.height.toString().indexOf("%")>-1){ac.height=((V[1]*parseFloat(F.height))/100)-(C*2);W=false}else{ac.height=F.height+X}if(W&&(ac.width>(V[0]-ab)||ac.height>(V[1]-Z))){if(H.type=="image"||H.type=="swf"){ab+=X;Z+=X;Y=Math.min(Math.min(V[0]-ab,F.width)/F.width,Math.min(V[1]-Z,F.height)/F.height);ac.width=Math.round(Y*(ac.width-X))+X;ac.height=Math.round(Y*(ac.height-X))+X}else{ac.width=Math.min(ac.width,(V[0]-ab));ac.height=Math.min(ac.height,(V[1]-Z))}}ac.top=V[3]+((V[1]-(ac.height+(C*2)))*0.5);ac.left=V[2]+((V[0]-(ac.width+(C*2)))*0.5);if(F.autoScale===false){ac.top=Math.max(V[3]+aa,ac.top);ac.left=Math.max(V[2]+aa,ac.left)}return ac},M=function(V){if(V&&V.length){switch(F.titlePosition){case"inside":return V;case"over":return'<span id="fancybox-title-over">'+V+"</span>";default:return'<span id="fancybox-title-wrap"><span id="fancybox-title-left"></span><span id="fancybox-title-main">'+V+'</span><span id="fancybox-title-right"></span></span>'}}return false},s=function(){var X=F.title,W=c.width-(F.padding*2),V="fancybox-title-"+F.titlePosition;A("#fancybox-title").remove();j=0;if(F.titleShow===false){return}X=A.isFunction(F.titleFormat)?F.titleFormat(X,y,e,F):M(X);if(!X||X===""){return}A('<div id="fancybox-title" class="'+V+'" />').css({width:W,paddingLeft:F.padding,paddingRight:F.padding}).html(X).appendTo("body");switch(F.titlePosition){case"inside":j=A("#fancybox-title").outerHeight(true)-F.padding;c.height+=j;break;case"over":A("#fancybox-title").css("bottom",F.padding);break;default:A("#fancybox-title").css("bottom",A("#fancybox-title").outerHeight(true)*-1);break}A("#fancybox-title").appendTo(d).hide()},o=function(){A(document).unbind("keydown.fb").bind("keydown.fb",function(V){if(V.keyCode==27&&F.enableEscapeButton){V.preventDefault();A.fancybox.close()}else{if(V.keyCode==37){V.preventDefault();A.fancybox.prev()}else{if(V.keyCode==39){V.preventDefault();A.fancybox.next()}}}});if(A.fn.mousewheel){K.unbind("mousewheel.fb");if(y.length>1){K.bind("mousewheel.fb",function(V,W){V.preventDefault();if(O||W===0){return}if(W>0){A.fancybox.prev()}else{A.fancybox.next()}})}}if(!F.showNavArrows){return}if((F.cyclic&&y.length>1)||e!==0){N.show()}if((F.cyclic&&y.length>1)||e!=(y.length-1)){z.show()}},T=function(){var V,W;if((y.length-1)>e){V=y[e+1].href;if(typeof V!=="undefined"&&V.match(g)){W=new Image();W.src=V}}if(e>0){V=y[e-1].href;if(typeof V!=="undefined"&&V.match(g)){W=new Image();W.src=V}}},v=function(){w.css("overflow",(F.scrolling=="auto"?(F.type=="image"||F.type=="iframe"||F.type=="swf"?"hidden":"auto"):(F.scrolling=="yes"?"auto":"visible")));if(!A.support.opacity){w.get(0).style.removeAttribute("filter");K.get(0).style.removeAttribute("filter")}A("#fancybox-title").show();if(F.hideOnContentClick){w.one("click",A.fancybox.close)}if(F.hideOnOverlayClick){Q.one("click",A.fancybox.close)}if(F.showCloseButton){I.show()}o();A(window).bind("resize.fb",A.fancybox.center);if(F.centerOnScroll){A(window).bind("scroll.fb",A.fancybox.center)}else{A(window).unbind("scroll.fb")}if(A.isFunction(F.onComplete)){F.onComplete(y,e,F)}O=false;T()},G=function(Z){var W=Math.round(a.width+(c.width-a.width)*Z),V=Math.round(a.height+(c.height-a.height)*Z),Y=Math.round(a.top+(c.top-a.top)*Z),X=Math.round(a.left+(c.left-a.left)*Z);K.css({width:W+"px",height:V+"px",top:Y+"px",left:X+"px"});W=Math.max(W-F.padding*2,0);V=Math.max(V-(F.padding*2+(j*Z)),0);w.css({width:W+"px",height:V+"px"});if(typeof c.opacity!=="undefined"){K.css("opacity",(Z<0.5?0.5:Z))}},x=function(V){var W=V.offset();W.top+=parseFloat(V.css("paddingTop"))||0;W.left+=parseFloat(V.css("paddingLeft"))||0;W.top+=parseFloat(V.css("border-top-width"))||0;W.left+=parseFloat(V.css("border-left-width"))||0;W.width=V.width();W.height=V.height();return W},U=function(){var Y=H.orig?A(H.orig):false,X={},W,V;if(Y&&Y.length){W=x(Y);X={width:(W.width+(F.padding*2)),height:(W.height+(F.padding*2)),top:(W.top-F.padding-C),left:(W.left-F.padding-C)}}else{V=E();X={width:1,height:1,top:V[3]+V[1]*0.5,left:V[2]+V[0]*0.5}}return X},u=function(){S.hide();if(K.is(":visible")&&A.isFunction(F.onCleanup)){if(F.onCleanup(y,e,F)===false){A.event.trigger("fancybox-cancel");O=false;return}}y=h;e=D;F=H;w.get(0).scrollTop=0;w.get(0).scrollLeft=0;if(F.overlayShow){if(R){A("select:not(#fancybox-tmp select)").filter(function(){return this.style.visibility!=="hidden"}).css({visibility:"hidden"}).one("fancybox-cleanup",function(){this.style.visibility="inherit"})}Q.css({"background-color":F.overlayColor,opacity:F.overlayOpacity}).unbind().show()}c=b();s();if(K.is(":visible")){A(I.add(N).add(z)).hide();var W=K.position(),V;a={top:W.top,left:W.left,width:K.width(),height:K.height()};V=(a.width==c.width&&a.height==c.height);w.fadeOut(F.changeFade,function(){var X=function(){w.html(J.contents()).fadeIn(F.changeFade,v)};A.event.trigger("fancybox-change");w.empty().css("overflow","hidden");if(V){w.css({top:F.padding,left:F.padding,width:Math.max(c.width-(F.padding*2),1),height:Math.max(c.height-(F.padding*2)-j,1)});X()}else{w.css({top:F.padding,left:F.padding,width:Math.max(a.width-(F.padding*2),1),height:Math.max(a.height-(F.padding*2),1)});t.prop=0;A(t).animate({prop:1},{duration:F.changeSpeed,easing:F.easingChange,step:G,complete:X})}});return}K.css("opacity",1);if(F.transitionIn=="elastic"){a=U();w.css({top:F.padding,left:F.padding,width:Math.max(a.width-(F.padding*2),1),height:Math.max(a.height-(F.padding*2),1)}).html(J.contents());K.css(a).show();if(F.opacity){c.opacity=0}t.prop=0;A(t).animate({prop:1},{duration:F.speedIn,easing:F.easingIn,step:G,complete:v})}else{w.css({top:F.padding,left:F.padding,width:Math.max(c.width-(F.padding*2),1),height:Math.max(c.height-(F.padding*2)-j,1)}).html(J.contents());K.css(c).fadeIn(F.transitionIn=="none"?0:F.speedIn,v)}},r=function(){J.width(H.width);J.height(H.height);if(H.width=="auto"){H.width=J.width()}if(H.height=="auto"){H.height=J.height()}u()},P=function(){O=true;H.width=m.width;H.height=m.height;A("<img />").attr({id:"fancybox-img",src:m.src,alt:H.title}).appendTo(J);u()},l=function(){i();var aa=h[D],X,Y,ac,ab,W,V,Z;H=A.extend({},A.fn.fancybox.defaults,(typeof A(aa).data("fancybox")=="undefined"?H:A(aa).data("fancybox")));ac=aa.title||A(aa).title||H.title||"";if(aa.nodeName&&!H.orig){H.orig=A(aa).children("img:first").length?A(aa).children("img:first"):A(aa)}if(ac===""&&H.orig){ac=H.orig.attr("alt")}if(aa.nodeName&&(/^(?:javascript|#)/i).test(aa.href)){X=H.href||null}else{X=H.href||aa.href||null}if(H.type){Y=H.type;if(!X){X=H.content}}else{if(H.content){Y="html"}else{if(X){if(X.match(g)){Y="image"}else{if(X.match(k)){Y="swf"}else{if(A(aa).hasClass("iframe")){Y="iframe"}else{if(X.match(/#/)){aa=X.substr(X.indexOf("#"));Y=A(aa).length>0?"inline":"ajax"}else{Y="ajax"}}}}}else{Y="inline"}}}H.type=Y;H.href=X;H.title=ac;if(H.autoDimensions&&H.type!=="iframe"&&H.type!=="swf"){H.width="auto";H.height="auto"}if(H.modal){H.overlayShow=true;H.hideOnOverlayClick=false;H.hideOnContentClick=false;H.enableEscapeButton=false;H.showCloseButton=false}if(A.isFunction(H.onStart)){if(H.onStart(h,D,H)===false){O=false;return}}J.css("padding",(C+H.padding+H.margin));A(".fancybox-inline-tmp").unbind("fancybox-cancel").bind("fancybox-change",function(){A(this).replaceWith(w.children())});switch(Y){case"html":J.html(H.content);r();break;case"inline":A('<div class="fancybox-inline-tmp" />').hide().insertBefore(A(aa)).bind("fancybox-cleanup",function(){A(this).replaceWith(w.children())}).bind("fancybox-cancel",function(){A(this).replaceWith(J.children())});A(aa).appendTo(J);r();break;case"image":O=false;A.fancybox.showActivity();m=new Image();m.onerror=function(){p()};m.onload=function(){m.onerror=null;m.onload=null;P()};m.src=X;break;case"swf":ab='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+H.width+'" height="'+H.height+'"><param name="movie" value="'+X+'"></param>';W="";A.each(H.swf,function(ad,ae){ab+='<param name="'+ad+'" value="'+ae+'"></param>';W+=" "+ad+'="'+ae+'"'});ab+='<embed src="'+X+'" type="application/x-shockwave-flash" width="'+H.width+'" height="'+H.height+'"'+W+"></embed></object>";J.html(ab);r();break;case"ajax":V=X.split("#",2);Z=H.ajax.data||{};if(V.length>1){X=V[0];if(typeof Z=="string"){Z+="&selector="+V[1]}else{Z.selector=V[1]}}O=false;A.fancybox.showActivity();f=A.ajax(A.extend(H.ajax,{url:X,data:Z,error:p,success:function(ae,af,ad){if(f.status==200){J.html(ae);r()}}}));break;case"iframe":A('<iframe id="fancybox-frame" name="fancybox-frame'+new Date().getTime()+'" frameborder="0" hspace="0" scrolling="'+H.scrolling+'" src="'+H.href+'"></iframe>').appendTo(J);u();break}},n=function(){if(!S.is(":visible")){clearInterval(q);return}A("div",S).css("top",(L*-40)+"px");L=(L+1)%12},B=function(){if(A("#fancybox-wrap").length){return}A("body").append(J=A('<div id="fancybox-tmp"></div>'),S=A('<div id="fancybox-loading"><div></div></div>'),Q=A('<div id="fancybox-overlay"></div>'),K=A('<div id="fancybox-wrap"></div>'));if(!A.support.opacity){K.addClass("fancybox-ie");S.addClass("fancybox-ie")}d=A('<div id="fancybox-outer"></div>').append('<div class="fancy-bg" id="fancy-bg-n"></div><div class="fancy-bg" id="fancy-bg-ne"></div><div class="fancy-bg" id="fancy-bg-e"></div><div class="fancy-bg" id="fancy-bg-se"></div><div class="fancy-bg" id="fancy-bg-s"></div><div class="fancy-bg" id="fancy-bg-sw"></div><div class="fancy-bg" id="fancy-bg-w"></div><div class="fancy-bg" id="fancy-bg-nw"></div>').appendTo(K);d.append(w=A('<div id="fancybox-inner"></div>'),I=A('<a id="fancybox-close"></a>'),N=A('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),z=A('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>'));I.click(A.fancybox.close);S.click(A.fancybox.cancel);N.click(function(V){V.preventDefault();A.fancybox.prev()});z.click(function(V){V.preventDefault();A.fancybox.next()});if(R){Q.get(0).style.setExpression("height","document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'");S.get(0).style.setExpression("top","(-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px'");d.prepend('<iframe id="fancybox-hide-sel-frame" src="javascript:\'\';" scrolling="no" frameborder="0" ></iframe>')}};A.fn.fancybox=function(V){A(this).data("fancybox",A.extend({},V,(A.metadata?A(this).metadata():{}))).unbind("click.fb").bind("click.fb",function(X){X.preventDefault();if(O){return}O=true;A(this).blur();h=[];D=0;var W=A(this).attr("rel")||"";if(!W||W==""||W==="nofollow"){h.push(this)}else{h=A("a[rel="+W+"], area[rel="+W+"]");D=h.index(this)}l();return false});return this};A.fancybox=function(Y){if(O){return}O=true;var X=typeof arguments[1]!=="undefined"?arguments[1]:{};h=[];D=X.index||0;if(A.isArray(Y)){for(var W=0,V=Y.length;W<V;W++){if(typeof Y[W]=="object"){A(Y[W]).data("fancybox",A.extend({},X,Y[W]))}else{Y[W]=A({}).data("fancybox",A.extend({content:Y[W]},X))}}h=jQuery.merge(h,Y)}else{if(typeof Y=="object"){A(Y).data("fancybox",A.extend({},X,Y))}else{Y=A({}).data("fancybox",A.extend({content:Y},X))}h.push(Y)}if(D>h.length||D<0){D=0}l()};A.fancybox.showActivity=function(){clearInterval(q);S.show();q=setInterval(n,66)};A.fancybox.hideActivity=function(){S.hide()};A.fancybox.next=function(){return A.fancybox.pos(e+1)};A.fancybox.prev=function(){return A.fancybox.pos(e-1)};A.fancybox.pos=function(V){if(O){return}V=parseInt(V,10);if(V>-1&&y.length>V){D=V;l()}if(F.cyclic&&y.length>1&&V<0){D=y.length-1;l()}if(F.cyclic&&y.length>1&&V>=y.length){D=0;l()}return};A.fancybox.cancel=function(){if(O){return}O=true;A.event.trigger("fancybox-cancel");i();if(H&&A.isFunction(H.onCancel)){H.onCancel(h,D,H)}O=false};A.fancybox.close=function(){if(O||K.is(":hidden")){return}O=true;if(F&&A.isFunction(F.onCleanup)){if(F.onCleanup(y,e,F)===false){O=false;return}}i();A(I.add(N).add(z)).hide();A("#fancybox-title").remove();K.add(w).add(Q).unbind();A(window).unbind("resize.fb scroll.fb");A(document).unbind("keydown.fb");function V(){Q.fadeOut("fast");K.hide();A.event.trigger("fancybox-cleanup");w.empty();if(A.isFunction(F.onClosed)){F.onClosed(y,e,F)}y=H=[];e=D=0;F=H={};O=false}w.css("overflow","hidden");if(F.transitionOut=="elastic"){a=U();var W=K.position();c={top:W.top,left:W.left,width:K.width(),height:K.height()};if(F.opacity){c.opacity=1}t.prop=1;A(t).animate({prop:0},{duration:F.speedOut,easing:F.easingOut,step:G,complete:V})}else{K.fadeOut(F.transitionOut=="none"?0:F.speedOut,V)}};A.fancybox.resize=function(){var W,V;if(O||K.is(":hidden")){return}O=true;W=w.wrapInner("<div style='overflow:auto'></div>").children();V=W.height();K.css({height:V+(F.padding*2)+j});w.css({height:V});W.replaceWith(W.children());A.fancybox.center()};A.fancybox.center=function(){O=true;var V=E(),W=F.margin,X={};X.top=V[3]+((V[1]-((K.height()-j)+(C*2)))*0.5);X.left=V[2]+((V[0]-(K.width()+(C*2)))*0.5);X.top=Math.max(V[3]+W,X.top);X.left=Math.max(V[2]+W,X.left);K.css(X);O=false};A.fn.fancybox.defaults={padding:10,margin:20,opacity:false,modal:false,cyclic:false,scrolling:"auto",width:560,height:340,autoScale:true,autoDimensions:true,centerOnScroll:false,ajax:{},swf:{wmode:"transparent"},hideOnOverlayClick:true,hideOnContentClick:false,overlayShow:true,overlayOpacity:0.3,overlayColor:"#666",titleShow:true,titlePosition:"outside",titleFormat:null,transitionIn:"fade",transitionOut:"fade",speedIn:300,speedOut:300,changeSpeed:300,changeFade:"fast",easingIn:"swing",easingOut:"swing",showCloseButton:true,showNavArrows:true,enableEscapeButton:true,onStart:null,onCancel:null,onComplete:null,onCleanup:null,onClosed:null};A(document).ready(function(){B()})})(jQuery);jQuery.preloadCssImages=function(c){c=jQuery.extend({statusTextEl:null,statusBarEl:null,errorDelay:999,simultaneousCacheLoading:2},c);var a=[],f=0,d=[],g,e;function i(){clearTimeout(e);if(d&&d.length&&d[f]){f++;if(c.statusTextEl){var j=(d[f])?"Now Loading: <span>"+d[f].split("/")[d[f].split("/").length-1]:"Loading complete";jQuery(c.statusTextEl).html('<span class="numLoaded">'+f+'</span> of <span class="numTotal">'+d.length+'</span> loaded (<span class="percentLoaded">'+(f/d.length*100).toFixed(0)+'%</span>) <span class="currentImg">'+j+"</span></span>")}if(c.statusBarEl){var k=jQuery(c.statusBarEl).width();jQuery(c.statusBarEl).css("background-position",-(k-(k*f/d.length).toFixed(0))+"px 50%")}h()}}function h(){if(d&&d.length&&d[f]){var j=new Image();j.src=d[f];if(!j.complete){jQuery(j).bind("error load onreadystatechange",i)}else{i()}e=setTimeout(i,c.errorDelay)}}function b(n,y){var v=false,r=[],p=[],z;var o=n.length;while(o--){var x="";if(y&&y[o]){z=y[o]}else{var B=(n[o].href)?n[o].href:"window.location.href";B=B.replace(window.location.protocol+"//"+window.location.host+"/","");if(B.match(/^https?:\/\//)){continue}var A=B.split("/");A.pop();z=A.join("/");if(z){z+="/"}}if(n[o].cssRules||n[o].rules){g=(n[o].cssRules)?n[o].cssRules:n[o].rules;var s=g.length;while(s--){if(g[s].style&&g[s].style.cssText){var q=g[s].style.cssText;if(q.toLowerCase().indexOf("url")!=-1){x+=q}}else{if(g[s].styleSheet){r.push(g[s].styleSheet);v=true}}}}var C=x.match(/[^\("]+\.(gif|jpg|jpeg|png)/g);if(C){var u=C.length;while(u--){var k=(C[u].charAt(0)=="/"||C[u].match("://"))?C[u]:z+C[u];if(jQuery.inArray(k,d)==-1){d.push(k)}}}if(!v&&n[o].imports&&n[o].imports.length){for(var l=0,j=n[o].imports.length;l<j;l++){var w=n[o].imports[l].href;w=w.split("/");w.pop();w=w.join("/");if(w){w+="/"}var m=(w.charAt(0)=="/"||w.match("://"))?w:z+w;p.push(m);r.push(n[o].imports[l])}}}if(r.length){b(r,p);return false}var t=c.simultaneousCacheLoading;while(t--){setTimeout(h,t)}}b(document.styleSheets);return d};var gArgCountErr='The "%%" function requires an even number of arguments.\nArguments should be in the form "atttributeName", "attributeValue", ...';var gTagAttrs=null;var gQTGeneratorVersion=1.2;var gQTBehaviorID="qt_event_source";var gQTEventsEnabled=false;function AC_QuickTimeVersion(){return gQTGeneratorVersion}function _QTComplain(b,a){a=a.replace("%%",b);alert(a)}function _QTIsMSIE(){var b=navigator.userAgent.toLowerCase();var a=/msie/.test(b)&&!/opera/.test(b);return a}function _QTGenerateBehavior(){return objTag='<!--[if IE]><object id="'+gQTBehaviorID+'" classid="clsid:CB927D12-4FF7-4a9e-A169-56E4B8A75598"></object><![endif]-->'}function _QTPageHasBehaviorObject(f,b){var c=false;var d=document.getElementsByTagName("object");for(var a=0,e;e=d[a];a++){if(e.getAttribute("classid")=="clsid:CB927D12-4FF7-4a9e-A169-56E4B8A75598"){if(e.getAttribute("id")==gQTBehaviorID){c=false}break}}return c}function _QTShouldInsertBehavior(){var a=false;if(gQTEventsEnabled&&_QTIsMSIE()&&!_QTPageHasBehaviorObject()){a=true}return a}function _QTAddAttribute(d,a,b){var c;c=gTagAttrs[d+a];if(null==c){c=gTagAttrs[a]}if(null!=c){if(0==a.indexOf(d)&&(null==b)){b=a.substring(d.length)}if(null==b){b=a}return" "+b+'="'+c+'"'}else{return""}}function _QTAddObjectAttr(a,b){if(0==a.indexOf("emb#")){return""}if(0==a.indexOf("obj#")&&(null==b)){b=a.substring(4)}return _QTAddAttribute("obj#",a,b)}function _QTAddEmbedAttr(a,b){if(0==a.indexOf("obj#")){return""}if(0==a.indexOf("emb#")&&(null==b)){b=a.substring(4)}return _QTAddAttribute("emb#",a,b)}function _QTAddObjectParam(a,d){var e;var c="";var b=(d)?" />":">";if(-1==a.indexOf("emb#")){e=gTagAttrs["obj#"+a];if(null==e){e=gTagAttrs[a]}if(0==a.indexOf("obj#")){a=a.substring(4)}if(null!=e){c='<param name="'+a+'" value="'+e+'"'+b}}return c}function _QTDeleteTagAttrs(){for(var a=0;a<arguments.length;a++){var b=arguments[a];delete gTagAttrs[b];delete gTagAttrs["emb#"+b];delete gTagAttrs["obj#"+b]}}function _QTGenerate(b,c,f){if(f.length<4||(0!=(f.length%2))){_QTComplain(b,gArgCountErr);return""}gTagAttrs=new Object();gTagAttrs.src=f[0];gTagAttrs.width=f[1];gTagAttrs.height=f[2];gTagAttrs.classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B";gTagAttrs.pluginspage="http://www.apple.com/quicktime/download/";var a=f[3];if((null==a)||(""==a)){a="7,3,0,0"}gTagAttrs.codebase="http://www.apple.com/qtactivex/qtplugin.cab#version="+a;var g,e;for(var i=4;i<f.length;i+=2){g=f[i].toLowerCase();e=f[i+1];gTagAttrs[g]=e;if(("postdomevents"==g)&&(e.toLowerCase()!="false")){gQTEventsEnabled=true;if(_QTIsMSIE()){gTagAttrs["obj#style"]="behavior:url(#"+gQTBehaviorID+")"}}}var h="<object "+_QTAddObjectAttr("classid")+_QTAddObjectAttr("width")+_QTAddObjectAttr("height")+_QTAddObjectAttr("codebase")+_QTAddObjectAttr("name")+_QTAddObjectAttr("id")+_QTAddObjectAttr("tabindex")+_QTAddObjectAttr("hspace")+_QTAddObjectAttr("vspace")+_QTAddObjectAttr("border")+_QTAddObjectAttr("align")+_QTAddObjectAttr("class")+_QTAddObjectAttr("title")+_QTAddObjectAttr("accesskey")+_QTAddObjectAttr("noexternaldata")+_QTAddObjectAttr("obj#style")+">"+_QTAddObjectParam("src",c);var d="<embed "+_QTAddEmbedAttr("src")+_QTAddEmbedAttr("width")+_QTAddEmbedAttr("height")+_QTAddEmbedAttr("pluginspage")+_QTAddEmbedAttr("name")+_QTAddEmbedAttr("id")+_QTAddEmbedAttr("align")+_QTAddEmbedAttr("tabindex");_QTDeleteTagAttrs("src","width","height","pluginspage","classid","codebase","name","tabindex","hspace","vspace","border","align","noexternaldata","class","title","accesskey","id","style");for(var g in gTagAttrs){e=gTagAttrs[g];if(null!=e){d+=_QTAddEmbedAttr(g);h+=_QTAddObjectParam(g,c)}}return h+d+"></embed></object>"}function QT_GenerateOBJECTText(){var a=_QTGenerate("QT_GenerateOBJECTText",false,arguments);if(_QTShouldInsertBehavior()){a=_QTGenerateBehavior()+a}return a}function QT_GenerateOBJECTText_XHTML(){var a=_QTGenerate("QT_GenerateOBJECTText_XHTML",true,arguments);if(_QTShouldInsertBehavior()){a=_QTGenerateBehavior()+a}return a}function QT_WriteOBJECT(){var a=_QTGenerate("QT_WriteOBJECT",false,arguments);if(_QTShouldInsertBehavior()){document.writeln(_QTGenerateBehavior())}document.writeln(a)}function QT_WriteOBJECT_XHTML(){var a=_QTGenerate("QT_WriteOBJECT_XHTML",true,arguments);if(_QTShouldInsertBehavior()){document.writeln(_QTGenerateBehavior())}document.writeln(a)}function QT_GenerateBehaviorOBJECT(){return _QTGenerateBehavior()}function QT_ReplaceElementContents(){var d=arguments[0];var c=[];for(var b=1;b<arguments.length;b++){c.push(arguments[b])}var a=_QTGenerate("QT_ReplaceElementContents",false,c);if(a.length>0){d.innerHTML=a}}function QT_ReplaceElementContents_XHTML(){var d=arguments[0];var c=[];for(var b=1;b<arguments.length;b++){c.push(arguments[b])}var a=_QTGenerate("QT_ReplaceElementContents_XHTML",true,c);if(a.length>0){d.innerHTML=a}}var Cufon=(function(){var P=function(){return P.replace.apply(null,arguments)};var D=P.DOM={ready:(function(){var c=false,a={loaded:1,complete:1};var d=[],b=function(){if(c){return}c=true;for(var e;e=d.shift();e()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",b,false);window.addEventListener("pageshow",b,false)}if(!window.opera&&document.readyState){(function(){a[document.readyState]?b():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");b()}catch(e){setTimeout(arguments.callee,1)}})()}K(window,"load",b);return function(e){if(!arguments.length){b()}else{c?e():d.push(e)}}})(),root:function(){return document.documentElement||document.body}};var O=P.CSS={Size:function(a,b){this.value=parseFloat(a);this.unit=String(a).match(/[a-z%]*$/)[0]||"px";this.convert=function(c){return c/b*this.value};this.convertFrom=function(c){return c/this.value*b};this.toString=function(){return this.value+this.unit}},addClass:function(b,c){var a=b.className;b.className=a+(a&&" ")+c;return b},color:S(function(a){var b={};b.color=a.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(d,e,c){b.opacity=parseFloat(c);return"rgb("+e+")"});return b}),fontStretch:S(function(a){if(typeof a=="number"){return a}if(/%$/.test(a)){return parseFloat(a)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[a]||1}),getStyle:function(a){var b=document.defaultView;if(b&&b.getComputedStyle){return new ab(b.getComputedStyle(a,null))}if(a.currentStyle){return new ab(a.currentStyle)}return new ab(a.style)},gradient:S(function(b){var a={id:b,type:b.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},e=b.substr(b.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var c=0,f=e.length,d;c<f;++c){d=e[c].split("=",2).reverse();a.stops.push([d[1]||c/(f-1),d[0]])}return a}),quotedList:S(function(a){var b=[],c=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,d;while(d=c.exec(a)){b.push(d[3]||d[1])}return b}),recognizesMedia:S(function(a){var c=document.createElement("style"),d,e,f;c.type="text/css";c.media=a;try{c.appendChild(document.createTextNode("/**/"))}catch(b){}e=V("head")[0];e.insertBefore(c,e.firstChild);d=(c.sheet||c.styleSheet);f=d&&!d.disabled;e.removeChild(c);return f}),removeClass:function(a,b){var c=RegExp("(?:^|\\s+)"+b+"(?=\\s|$)","g");a.className=a.className.replace(c,"");return a},supports:function(a,b){var c=document.createElement("span").style;if(c[a]===undefined){return false}c[a]=b;return c[a]===b},textAlign:function(a,b,d,c){if(b.get("textAlign")=="right"){if(d>0){a=" "+a}}else{if(d<c-1){a+=" "}}return a},textShadow:S(function(b){if(b=="none"){return null}var c=[],a={},f,e=0;var d=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(f=d.exec(b)){if(f[0]==","){c.push(a);a={};e=0}else{if(f[1]){a.color=f[1]}else{a[["offX","offY","blur"][e++]]=f[2]}}}c.push(a);return c}),textTransform:(function(){var a={uppercase:function(b){return b.toUpperCase()},lowercase:function(b){return b.toLowerCase()},capitalize:function(b){return b.replace(/\b./g,function(c){return c.toUpperCase()})}};return function(b,c){var d=a[c.get("textTransform")];return d?d(b):b}})(),whiteSpace:(function(){var a={inline:1,"inline-block":1,"run-in":1};var b=/^\s+/,c=/\s+$/;return function(d,f,e,g){if(g){if(g.nodeName.toLowerCase()=="br"){d=d.replace(b,"")}}if(a[f.get("display")]){return d}if(!e.previousSibling){d=d.replace(b,"")}if(!e.nextSibling){d=d.replace(c,"")}return d}})()};O.ready=(function(){var c=!O.recognizesMedia("all"),i=false;var a=[],f=function(){c=true;for(var j;j=a.shift();j()){}};var e=V("link"),d=V("style");function b(j){return j.disabled||g(j.sheet,j.media||"screen")}function g(p,m){if(!O.recognizesMedia(m||"all")){return true}if(!p||p.disabled){return false}try{var l=p.cssRules,n;if(l){search:for(var j=0,k=l.length;n=l[j],j<k;++j){switch(n.type){case 2:break;case 3:if(!g(n.styleSheet,n.media.mediaText)){return false}break;default:break search}}}}catch(o){}return true}function h(){if(document.createStyleSheet){return true}var j,k;for(k=0;j=e[k];++k){if(j.rel.toLowerCase()=="stylesheet"&&!b(j)){return false}}for(k=0;j=d[k];++k){if(!b(j)){return false}}return true}D.ready(function(){if(!i){i=O.getStyle(document.body).isUsable()}if(c||(i&&h())){f()}else{setTimeout(arguments.callee,10)}});return function(j){if(c){j()}else{a.push(j)}}})();function I(a){var b=this.face=a.face,c={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=a.glyphs;this.w=a.w;this.baseSize=parseInt(b["units-per-em"],10);this.family=b["font-family"].toLowerCase();this.weight=b["font-weight"];this.style=b["font-style"]||"normal";this.viewBox=(function(){var d=b.bbox.split(/\s+/);var e={minX:parseInt(d[0],10),minY:parseInt(d[1],10),maxX:parseInt(d[2],10),maxY:parseInt(d[3],10)};e.width=e.maxX-e.minX;e.height=e.maxY-e.minY;e.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return e})();this.ascent=-parseInt(b.ascent,10);this.descent=-parseInt(b.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(h,f,o){var e=this.glyphs,g,i,m,d=[],n=0,j=-1,k=-1,l;while(l=h[++j]){g=e[l]||this.missingGlyph;if(!g){continue}if(i){n-=m=i[l]||0;d[k]-=m}n+=d[++k]=~~(g.w||this.w)+f+(c[l]?o:0);i=g.k}d.total=n;return d}}function W(){var a={},b={oblique:"italic",italic:"oblique"};this.add=function(c){(a[c.style]||(a[c.style]={}))[c.weight]=c};this.get=function(f,e){var g=a[f]||a[b[f]]||a.normal||a.italic||a.oblique;if(!g){return null}e={normal:400,bold:700}[e]||parseInt(e,10);if(g[e]){return g[e]}var i={1:1,99:0}[e%100],c=[],h,j;if(i===undefined){i=e>400}if(e==500){e=400}for(var d in g){if(!R(g,d)){continue}d=parseInt(d,10);if(!h||d<h){h=d}if(!j||d>j){j=d}c.push(d)}if(e<h){e=h}if(e>j){e=j}c.sort(function(l,k){return(i?(l>=e&&k>=e)?l<k:l>k:(l<=e&&k<=e)?l>k:l<k)?-1:1});return g[c[0]]}}function J(){function b(f,e){if(f.contains){return f.contains(e)}return f.compareDocumentPosition(e)&16}function d(e){var f=e.relatedTarget;if(!f||b(this,f)){return}c(this,e.type=="mouseover")}function a(e){c(this,e.type=="mouseenter")}function c(f,e){setTimeout(function(){var g=Y.get(f).options;P.replace(f,e?U(g,g.hover):g,true)},10)}this.attach=function(e){if(e.onmouseenter===undefined){K(e,"mouseover",d);K(e,"mouseout",d)}else{K(e,"mouseenter",a);K(e,"mouseleave",a)}}}function G(){var b=[],a={};function c(d){var g=[],e;for(var f=0;e=d[f];++f){g[f]=b[a[e]]}return g}this.add=function(d,e){a[d]=b.push(e)-1};this.repeat=function(){var f=arguments.length?c(arguments):b,e;for(var d=0;e=f[d++];){P.replace(e[0],e[1],true)}}}function M(){var a={},c=0;function b(d){return d.cufid||(d.cufid=++c)}this.get=function(e){var d=b(e);return a[d]||(a[d]={})}}function ab(c){var a={},b={};this.extend=function(e){for(var d in e){if(R(e,d)){a[d]=e[d]}}return this};this.get=function(d){return a[d]!=undefined?a[d]:c[d]};this.getSize=function(d,e){return b[d]||(b[d]=new O.Size(this.get(d),e))};this.isUsable=function(){return !!c}}function K(b,c,a){if(b.addEventListener){b.addEventListener(c,a,false)}else{if(b.attachEvent){b.attachEvent("on"+c,function(){return a.call(b,window.event)})}}}function F(b,c){var a=Y.get(b);if(a.options){return b}if(c.hover&&c.hoverables[b.nodeName.toLowerCase()]){aa.attach(b)}a.options=c;return b}function S(b){var a={};return function(c){if(!R(a,c)){a[c]=b.apply(null,arguments)}return a[c]}}function Z(a,b){var e=O.quotedList(b.get("fontFamily").toLowerCase()),c;for(var d=0;c=e[d];++d){if(T[c]){return T[c].get(b.get("fontStyle"),b.get("fontWeight"))}}return null}function V(a){return document.getElementsByTagName(a)}function R(a,b){return a.hasOwnProperty(b)}function U(){var d={},e,a;for(var b=0,c=arguments.length;e=arguments[b],b<c;++b){for(a in e){if(R(e,a)){d[a]=e[a]}}}return d}function N(m,e,b,d,l,a){var g=document.createDocumentFragment(),j;if(e===""){return g}var f=d.separate;var i=e.split(L[f]),c=(f=="words");if(c&&H){if(/^\s/.test(e)){i.unshift("")}if(/\s$/.test(e)){i.push("")}}for(var h=0,k=i.length;h<k;++h){j=B[d.engine](m,c?O.textAlign(i[h],b,h,k):i[h],b,d,l,a,h<k-1);if(j){g.appendChild(j)}}return g}function Q(a,d){var b=a.nodeName.toLowerCase();if(d.ignore[b]){return}var l=!d.textless[b];var c=O.getStyle(F(a,d)).extend(d);var k=Z(a,c),j,f,h,i,e,g;if(!k){return}for(j=a.firstChild;j;j=h){f=j.nodeType;h=j.nextSibling;if(l&&f==3){if(i){i.appendData(j.data);a.removeChild(j)}else{i=j}if(h){continue}}if(i){a.replaceChild(N(k,O.whiteSpace(i.data,c,i,g),c,d,j,a),i);i=null}if(f==1){if(j.firstChild){if(j.nodeName.toLowerCase()=="cufon"){B[d.engine](k,null,c,d,j,a)}else{arguments.callee(j,d)}}g=j}}}var H=" ".split(/\s+/).length==0;var Y=new M();var aa=new J();var C=new G();var X=false;var B={},T={},E={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(a){return jQuery(a)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(a){return $$(a)})||(window.$&&function(a){return $(a)})||(document.querySelectorAll&&function(a){return document.querySelectorAll(a)})||V),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var L={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};P.now=function(){D.ready();return P};P.refresh=function(){C.repeat.apply(C,arguments);return P};P.registerEngine=function(a,b){if(!b){return P}B[a]=b;return P.set("engine",a)};P.registerFont=function(a){if(!a){return P}var c=new I(a),b=c.family;if(!T[b]){T[b]=new W()}T[b].add(c);return P.set("fontFamily",'"'+b+'"')};P.replace=function(a,b,c){b=U(E,b);if(!b.engine){return P}if(!X){O.addClass(D.root(),"cufon-active cufon-loading");O.ready(function(){O.addClass(O.removeClass(D.root(),"cufon-loading"),"cufon-ready")});X=true}if(b.hover){b.forceHitArea=true}if(b.autoDetect){delete b.fontFamily}if(typeof b.textShadow=="string"){b.textShadow=O.textShadow(b.textShadow)}if(typeof b.color=="string"&&/^-/.test(b.color)){b.textGradient=O.gradient(b.color)}else{delete b.textGradient}if(!c){C.add(a,arguments)}if(a.nodeType||typeof a=="string"){a=[a]}O.ready(function(){for(var e=0,f=a.length;e<f;++e){var d=a[e];if(typeof d=="string"){P.replace(b.selector(d),b,true)}else{Q(d,b)}}});return P};P.set=function(b,a){E[b]=a;return P};return P})();Cufon.registerEngine("canvas",(function(){var g=document.createElement("canvas");if(!g||!g.getContext||!g.getContext.apply){return}g=null;var h=Cufon.CSS.supports("display","inline-block");var j=!h&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var i=document.createElement("style");i.type="text/css";i.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(j?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(h?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(i);function k(a,r){var c=0,d=0;var s=[],b=/([mrvxe])([^a-z]*)/g,f;generate:for(var q=0;f=b.exec(a);++q){var e=f[2].split(",");switch(f[1]){case"v":s[q]={m:"bezierCurveTo",a:[c+~~e[0],d+~~e[1],c+~~e[2],d+~~e[3],c+=~~e[4],d+=~~e[5]]};break;case"r":s[q]={m:"lineTo",a:[c+=~~e[0],d+=~~e[1]]};break;case"m":s[q]={m:"moveTo",a:[c=~~e[0],d=~~e[1]]};break;case"x":s[q]={m:"closePath"};break;case"e":break generate}r[s[q].m].apply(r,s[q].a)}return s}function l(a,b){for(var c=0,d=a.length;c<d;++c){var e=a[c];b[e.m].apply(b,e.a)}}return function(e,aw,ad,az,aq,d){var aH=(aw===null);if(aH){aw=aq.getAttribute("alt")}var at=e.viewBox;var aG=ad.getSize("fontSize",e.baseSize);var ar=0,ae=0,af=0,ay=0;var av=az.textShadow,ah=[];if(av){for(var f=av.length;f--;){var an=av[f];var ai=aG.convertFrom(parseFloat(an.offX));var ak=aG.convertFrom(parseFloat(an.offY));ah[f]=[ai,ak];if(ak<ar){ar=ak}if(ai>ae){ae=ai}if(ak>af){af=ak}if(ai<ay){ay=ai}}}var a=Cufon.CSS.textTransform(aw,ad).split("");var ao=e.spacing(a,~~aG.convertFrom(parseFloat(ad.get("letterSpacing"))||0),~~aG.convertFrom(parseFloat(ad.get("wordSpacing"))||0));if(!ao.length){return null}var aJ=ao.total;ae+=at.width-ao[ao.length-1];ay+=at.minX;var aA,aF;if(aH){aA=aq;aF=aq.firstChild}else{aA=document.createElement("cufon");aA.className="cufon cufon-canvas";aA.setAttribute("alt",aw);aF=document.createElement("canvas");aA.appendChild(aF);if(az.printable){var y=document.createElement("cufontext");y.appendChild(document.createTextNode(aw));aA.appendChild(y)}}var au=aA.style;var al=aF.style;var aI=aG.convert(at.height);var b=Math.ceil(aI);var ag=b/aI;var am=ag*Cufon.CSS.fontStretch(ad.get("fontStretch"));var aj=aJ*am;var ac=Math.ceil(aG.convert(aj+ae-ay));var aE=Math.ceil(aG.convert(at.height-ar+af));aF.width=ac;aF.height=aE;al.width=ac+"px";al.height=aE+"px";ar+=at.minY;al.top=Math.round(aG.convert(ar-e.ascent))+"px";al.left=Math.round(aG.convert(ay))+"px";var aB=Math.max(Math.ceil(aG.convert(aj)),0)+"px";if(h){au.width=aB;au.height=aG.convert(e.height)+"px"}else{au.paddingLeft=aB;au.paddingBottom=(aG.convert(e.height)-1)+"px"}var c=aF.getContext("2d"),ap=aI/at.height;c.scale(ap,ap*ag);c.translate(-ay,-ar);c.save();function x(){var m=e.glyphs,p,n=-1,o=-1,q;c.scale(am,1);while(q=a[++n]){var p=m[a[n]]||e.missingGlyph;if(!p){continue}if(p.d){c.beginPath();if(p.code){l(p.code,c)}else{p.code=k("m"+p.d,c)}c.fill()}c.translate(ao[++o],0)}c.restore()}if(av){for(var f=av.length;f--;){var an=av[f];c.save();c.fillStyle=an.color;c.translate.apply(c,ah[f]);x()}}var aC=az.textGradient;if(aC){var ax=aC.stops,aD=c.createLinearGradient(0,at.minY,0,at.maxY);for(var f=0,ab=ax.length;f<ab;++f){aD.addColorStop.apply(aD,ax[f])}c.fillStyle=aD}else{c.fillStyle=ad.get("color")}x();return aA}})());Cufon.registerEngine("vml",(function(){var n=document.namespaces;if(!n){return}n.add("cvml","urn:schemas-microsoft-com:vml");n=null;var i=document.createElement("cvml:shape");i.style.behavior="url(#default#VML)";if(!i.coordsize){return}i=null;var k=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(k?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function p(b,a){return j(b,/(?:em|ex|%)$|^[a-z-]+$/i.test(a)?"1em":a)}function j(b,a){if(a==="0"){return 0}if(/px$/i.test(a)){return parseFloat(a)}var c=b.style.left,d=b.runtimeStyle.left;b.runtimeStyle.left=b.currentStyle.left;b.style.left=a.replace("%","em");var e=b.style.pixelLeft;b.style.left=c;b.runtimeStyle.left=d;return e}function m(b,c,d,f){var e="computed"+f,a=c[e];if(isNaN(a)){a=c.get(f);c[e]=a=(a=="normal")?0:~~d.convertFrom(j(b,a))}return a}var l={};function o(e){var d=e.id;if(!l[d]){var g=e.stops,f=document.createElement("cvml:fill"),c=[];f.type="gradient";f.angle=180;f.focus="0";f.method="sigma";f.color=g[0][1];for(var a=1,b=g.length-1;a<b;++a){c.push(g[a][0]*100+"% "+g[a][1])}f.colors=c.join(",");f.color2=g[b][1];l[d]=f}return l[d]}return function(aH,ax,b,aF,aq,aE,d){var aX=(ax===null);if(aX){ax=aq.alt}var at=aH.viewBox;var aV=b.computedFontSize||(b.computedFontSize=new Cufon.CSS.Size(p(aE,b.get("fontSize"))+"px",aH.baseSize));var aM,aU;if(aX){aM=aq;aU=aq.firstChild}else{aM=document.createElement("cufon");aM.className="cufon cufon-vml";aM.alt=ax;aU=document.createElement("cufoncanvas");aM.appendChild(aU);if(aF.printable){var a=document.createElement("cufontext");a.appendChild(document.createTextNode(ax));aM.appendChild(a)}if(!d){aM.appendChild(document.createElement("cvml:shape"))}}var au=aM.style;var aj=aU.style;var aZ=aV.convert(at.height),aB=Math.ceil(aZ);var e=aB/aZ;var al=e*Cufon.CSS.fontStretch(b.get("fontStretch"));var f=at.minX,g=at.minY;aj.height=aB;aj.top=Math.round(aV.convert(g-aH.ascent));aj.left=Math.round(aV.convert(f));au.height=aV.convert(aH.height)+"px";var az=b.get("color");var ay=Cufon.CSS.textTransform(ax,b).split("");var ap=aH.spacing(ay,m(aE,b,aV,"letterSpacing"),m(aE,b,aV,"wordSpacing"));if(!ap.length){return null}var a0=ap.total;var aN=-f+a0+(at.width-ap[ap.length-1]);var aw=aV.convert(aN*al),c=Math.round(aw);var am=aN+","+at.height,aY;var ar="r"+am+"ns";var aQ=aF.textGradient&&o(aF.textGradient);var aW=aH.glyphs,h=0;var av=aF.textShadow;var aJ=-1,aK=0,aO;while(aO=ay[++aJ]){var aD=aW[ay[aJ]]||aH.missingGlyph,aP;if(!aD){continue}if(aX){aP=aU.childNodes[aK];while(aP.firstChild){aP.removeChild(aP.firstChild)}}else{aP=document.createElement("cvml:shape");aU.appendChild(aP)}aP.stroked="f";aP.coordsize=am;aP.coordorigin=aY=(f-h)+","+g;aP.path=(aD.d?"m"+aD.d+"xe":"")+"m"+aY+ar;aP.fillcolor=az;if(aQ){aP.appendChild(aQ.cloneNode(false))}var aC=aP.style;aC.width=c;aC.height=aB;if(av){var aS=av[0],aT=av[1];var aG=Cufon.CSS.color(aS.color),aL;var an=document.createElement("cvml:shadow");an.on="t";an.color=aG.color;an.offset=aS.offX+","+aS.offY;if(aT){aL=Cufon.CSS.color(aT.color);an.type="double";an.color2=aL.color;an.offset2=aT.offX+","+aT.offY}an.opacity=aG.opacity||(aL&&aL.opacity)||1;aP.appendChild(an)}h+=ap[aK++]}var ao=aP.nextSibling,aR,aI;if(aF.forceHitArea){if(!ao){ao=document.createElement("cvml:rect");ao.stroked="f";ao.className="cufon-vml-cover";aR=document.createElement("cvml:fill");aR.opacity=0;ao.appendChild(aR);aU.appendChild(ao)}aI=ao.style;aI.width=c;aI.height=aB}else{if(ao){aU.removeChild(ao)}}au.width=Math.max(Math.ceil(aV.convert(a0*al)),0);if(k){var ak=b.computedYAdjust;if(ak===undefined){var aA=b.get("lineHeight");if(aA=="normal"){aA="1em"}else{if(!isNaN(aA)){aA+="em"}}b.computedYAdjust=ak=0.5*(j(aE,aA)-parseFloat(au.height))}if(ak){au.marginTop=Math.ceil(ak)+"px";au.marginBottom=ak+"px"}}return aM}})());
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (C) 1996, 2007 Hoefler & Frere-Jones. http://www.typography.com
 * 
 * Trademark:
 * Whitney is a trademark of Hoefler & Frere-Jones, which may be registered in
 * certain jurisdictions.
 * 
 * Full name:
 * Whitney-Black
 * 
 * Manufacturer:
 * Hoefler & Frere-Jones
 * 
 * Designer:
 * Hoefler & Frere-Jones
 * 
 * Vendor URL:
 * www.typography.com
 * 
 * License information:
 * http://www.typography.com/support/eula.html
 */
Cufon.registerFont({w:97,face:{"font-family":"Whitney Black","font-weight":450,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0",ascent:"288",descent:"-72","x-height":"4",bbox:"-16 -272 348 67","underline-thickness":"18","underline-position":"-18",stemh:"28",stemv:"64","unicode-range":"U+0020-U+007E"},glyphs:{" ":{w:73},A:{d:"2,0r86,-249r82,0r83,240r-75,12r-14,-45r-78,0r-13,42r-71,0xm125,-176r-23,78r45,0",w:254,k:{"?":21,v:21,T:29,V:27,W:20,Y:34,")":10,"]":10,"}":10,w:14,y:14,f:6,d:3,q:3,c:3,e:3,o:3,t:10,u:3,C:10,G:10,O:10,Q:10,"-":8,U:8,"*":18}},B:{d:"210,-71v0,79,-106,73,-191,71r0,-248v78,-1,182,-10,182,64v0,28,-17,44,-36,53v27,9,45,26,45,60xm136,-175v2,-21,-23,-25,-47,-23r0,48v25,2,49,-3,47,-25xm141,-77v0,-25,-24,-30,-52,-28r0,54v27,1,52,-1,52,-26",w:220,k:{"&":-5,x:5,v:3,X:5,A:3,T:6,V:8,W:6,Y:11,Z:3,")":6,"]":6,"}":6,w:3,y:3}},C:{d:"203,-12v-88,44,-192,-6,-192,-112v0,-104,99,-155,188,-114r-10,64v-41,-32,-107,-22,-105,50v2,69,60,82,109,54",w:211,k:{v:13,X:5,j:3,x:6,A:1,T:3,V:3,W:3,Y:6,w:13,y:13,f:5,i:3,b:3,h:3,k:3,l:3,d:5,q:5,c:6,e:6,o:6,u:3,C:10,G:10,O:10,Q:10,"-":6}},D:{d:"243,-125v0,74,-45,125,-129,125r-95,0r0,-248r92,0v86,0,132,49,132,123xm169,-124v0,-54,-28,-72,-76,-69r0,138v49,3,76,-14,76,-69",w:254,k:{"?":5,X:16,J:8,"/":16,A:10,T:10,V:10,W:10,Y:18,Z:8,")":10,"]":10,"}":10,".":10,",":10}},E:{d:"186,0r-167,0r0,-248r164,0r0,58r-92,0r0,34r70,0r9,57r-79,0r0,41r95,0r0,58",w:197,k:{v:6,w:6,y:6,d:3,q:3,c:3,e:3,o:3,C:3,G:3,O:3,Q:3}},F:{d:"176,-188r-83,0r0,40r60,0r10,60r-70,0r0,88r-74,0r0,-248r157,0r0,60",w:185,k:{"/":32,"?":-3,"&":6,x:16,v:10,j:6,X:5,M:5,J:23,A:23,Z:6,w:10,y:10,S:3,":":5,";":5,".":26,",":26,a:13,f:5,g:16,i:6,b:3,h:3,k:3,l:3,d:11,q:11,m:11,n:11,p:11,r:11,c:11,e:11,o:11,s:13,t:6,u:11,C:3,G:3,O:3,Q:3,z:14}},G:{d:"228,-23v-28,18,-59,28,-94,28v-79,0,-123,-52,-123,-129v0,-107,111,-158,202,-112r-9,62v-19,-11,-40,-20,-64,-20v-38,0,-56,29,-56,70v0,52,35,87,81,66r0,-36r-37,0r-8,-51r108,0r0,122",w:243,k:{"?":3,v:3,X:2,T:10,V:6,W:6,Y:11,w:3,y:3}},H:{d:"236,0r-74,0r0,-96r-69,0r0,96r-74,0r0,-248r74,0r0,88r69,0r0,-88r74,0r0,248",w:255},I:{d:"94,0r-73,0r0,-248r73,0r0,248",w:114},J:{d:"144,-82v2,77,-64,94,-128,81r-10,-61v26,7,64,10,64,-32r0,-154r74,0r0,166",w:161,k:{J:5,A:11,".":3,",":3}},K:{d:"242,-9r-80,12r-69,-114r0,111r-74,0r0,-248r74,0r0,104r66,-104r81,0r-79,114",w:240,k:{"?":3,v:21,x:6,"&":3,V:3,W:3,Y:3,w:18,y:19,S:3,f:6,d:8,q:8,c:10,e:10,o:10,t:8,u:5,C:14,G:14,O:14,Q:14,"-":16,U:2}},L:{d:"174,0r-155,0r0,-248r74,0r0,185r70,0",w:177,k:{"?":19,v:18,T:32,V:25,W:23,Y:32,")":3,"]":3,"}":3,w:14,y:16,f:6,d:5,q:5,c:6,e:6,o:6,t:10,C:13,G:13,O:13,Q:13,"-":13,U:7,"*":26}},M:{d:"307,0r-75,0r-9,-152r-34,152r-71,0r-34,-152r-9,152r-63,0r18,-248r95,0r36,157r36,-157r93,0",w:319,k:{T:6,V:8,W:6,Y:10}},N:{d:"235,0r-66,0r-81,-130r0,130r-69,0r0,-248r73,0r74,118r0,-118r69,0r0,248",w:254},O:{d:"252,-125v0,77,-48,130,-121,130v-72,0,-120,-52,-120,-129v0,-77,48,-129,121,-129v73,0,120,51,120,128xm179,-124v0,-45,-18,-73,-48,-73v-30,0,-47,28,-47,73v0,45,17,73,47,73v30,0,48,-28,48,-73",w:262,k:{"?":5,X:16,J:8,"/":16,A:10,T:10,V:10,W:10,Y:18,Z:8,")":10,"]":10,"}":10,".":10,",":10}},P:{d:"209,-163v-2,63,-47,91,-116,88r0,75r-74,0r0,-248v93,-4,193,-4,190,85xm138,-162v0,-25,-18,-35,-46,-33r0,67v28,2,46,-8,46,-34",w:212,k:{"/":36,"&":8,x:3,j:3,X:14,M:3,J:24,A:24,V:6,W:3,Y:6,Z:14,")":10,"]":10,"}":10,".":29,",":29,a:10,f:-3,g:8,i:3,d:10,q:10,m:3,n:3,p:3,r:3,c:11,e:11,o:11,s:6,t:-3,u:3,z:3,"-":6}},Q:{d:"252,-130v0,47,-19,83,-50,104r52,15r-14,62v-91,-40,-229,-45,-229,-175v0,-77,48,-129,121,-129v71,0,120,47,120,123xm179,-123v0,-43,-18,-74,-48,-74v-31,0,-47,31,-47,74v0,43,17,73,47,73v31,0,48,-30,48,-73",w:262,k:{"?":5,X:11,J:5,A:3,T:10,V:10,W:10,Y:16,Z:3,")":8,"]":8,"}":8,".":3,",":3}},R:{d:"226,-9r-77,12r-45,-80r-11,0r0,77r-74,0r0,-248r95,0v64,0,101,28,101,81v0,33,-15,58,-43,72xm144,-162v0,-26,-22,-36,-52,-33r0,67v31,2,52,-6,52,-34",w:228,k:{v:5,T:6,V:6,W:6,Y:13,w:5,d:6,q:6,c:6,e:6,o:6,C:3,G:3,O:3,Q:3,"-":5}},S:{d:"197,-78v1,98,-121,91,-187,61r11,-60v29,14,59,24,84,24v14,0,24,-5,24,-16v0,-10,-6,-15,-40,-27v-51,-18,-74,-35,-74,-79v0,-84,113,-90,171,-59r-10,60v-26,-14,-52,-21,-71,-21v-15,0,-21,5,-21,14v0,10,5,15,33,24v57,19,80,38,80,79",w:205,k:{"?":5,v:3,X:3,x:11,"&":-5,A:6,T:5,V:6,W:5,Y:10,Z:1,")":5,"]":5,"}":5,w:3,y:3,S:3}},T:{d:"217,-187r-69,0r0,187r-74,0r0,-187r-66,0r0,-61r199,0",w:220,k:{v:31,X:5,j:11,x:34,J:28,"/":39,"&":18,M:6,A:32,Z:6,w:31,y:31,S:5,":":15,";":15,".":32,",":32,a:35,f:13,g:40,i:11,b:6,h:6,k:6,l:6,d:42,q:42,m:31,n:31,p:31,r:31,c:40,e:40,o:40,s:33,t:13,u:31,C:10,G:10,O:10,Q:10,z:29,"-":23}},U:{d:"231,-100v0,72,-48,104,-108,104v-61,0,-106,-31,-106,-104r0,-148r73,0r0,149v0,27,13,42,34,42v22,0,33,-15,33,-41r0,-150r74,0r0,148",w:247,k:{X:4,J:5,A:10,Z:1}},V:{d:"249,-248r-86,249r-77,0r-84,-240r81,-12r46,161r45,-158r75,0",w:251,k:{v:16,X:6,j:10,x:23,J:27,"/":46,"&":13,M:8,A:29,Z:5,w:16,y:16,S:8,":":13,";":13,".":32,",":32,a:22,f:6,g:23,i:10,d:27,q:27,m:16,n:16,p:16,r:16,c:27,e:27,o:27,s:22,t:10,u:16,C:13,G:13,O:13,Q:13,z:19,"-":19}},W:{d:"348,-248r-64,248r-77,0r-32,-143r-33,143r-76,0r-62,-239r81,-12r29,141r30,-138r75,0r30,138r27,-138r72,0",w:352,k:{v:10,X:5,j:6,x:16,J:25,"/":32,"&":10,M:6,A:24,Z:3,w:10,y:10,S:7,":":8,";":8,".":24,",":24,a:16,f:8,g:19,i:6,d:24,q:24,m:16,n:16,p:16,r:16,c:22,e:22,o:22,s:16,t:6,u:14,C:10,G:10,O:10,Q:10,z:13,"-":16}},X:{d:"240,-9r-79,12r-44,-79r-41,76r-74,0r75,-125r-69,-114r78,-12r38,70r36,-67r74,0r-69,116",w:241,k:{"?":6,"&":3,v:16,X:3,T:5,V:6,W:5,Y:6,w:16,y:16,S:3,f:3,d:8,q:8,c:10,e:10,o:10,t:6,u:3,C:15,G:15,O:15,Q:15,"-":19,U:4,"*":6}},Y:{d:"250,-248r-89,159r0,89r-74,0r0,-87r-85,-154r79,-10r47,95r46,-92r76,0",w:247,k:{v:23,X:4,j:5,x:27,J:29,"/":43,"&":20,M:7,A:33,V:-1,Z:4,w:23,y:23,S:13,":":20,";":20,".":36,",":36,a:35,f:9,g:38,i:5,d:40,q:40,m:30,n:30,p:30,r:30,c:40,e:40,o:40,s:35,t:10,u:30,C:18,G:18,O:18,Q:18,z:27,"-":27}},Z:{d:"211,0r-198,0r0,-53r105,-138r-92,0r-8,-57r190,0r0,53r-105,138r99,0",w:222,k:{v:10,"&":3,w:10,y:10,f:5,d:6,q:6,c:8,e:8,o:8,t:3,u:3,C:6,G:6,O:6,Q:6,"-":13}},a:{d:"170,0r-58,0r-4,-22v-27,36,-100,38,-100,-24v0,-42,32,-59,97,-68v-3,-34,-55,-17,-79,-7r-8,-47v51,-20,152,-27,152,51r0,117xm106,-49r0,-37v-26,6,-35,17,-35,31v0,21,23,17,35,6",w:183,k:{"?":13,v:5,w:3,y:4}},b:{d:"186,-94v0,102,-97,109,-170,83r0,-239r64,-10r0,101v40,-44,106,-22,106,65xm123,-89v1,-41,-25,-44,-43,-24r0,62v25,8,42,0,43,-38",w:195,k:{"?":13,v:4,x:8,"/":3,")":6,"]":6,"}":6,w:3,y:4,".":3,",":3,z:2}},c:{d:"150,-12v-62,36,-142,5,-142,-75v0,-85,77,-112,141,-82r-8,53v-29,-18,-69,-14,-69,27v0,44,41,46,71,26",w:159,k:{d:1,q:1,c:3,e:3,o:3}},d:{d:"181,0r-58,0r-4,-22v-38,48,-114,28,-110,-62v4,-85,48,-106,108,-90r0,-76r64,-10r0,260xm117,-66r0,-61v-25,-8,-44,-1,-44,38v-1,43,26,43,44,23",w:196},e:{d:"174,-15v-63,37,-166,21,-166,-73v0,-59,36,-94,86,-94v62,0,85,50,79,111r-102,0v11,44,62,32,97,14xm92,-143v-13,0,-21,13,-21,39r43,0v-1,-26,-9,-39,-22,-39",w:182,k:{"?":13,v:5,x:3,w:3,y:4}},f:{d:"132,-207v-22,-6,-48,-1,-41,29r31,0r8,51r-39,0r0,127r-64,0r0,-127r-24,0r0,-51r24,0v-7,-65,38,-88,98,-76",w:127,k:{"?":-10,x:3,"/":10,")":-6,"]":-6,"}":-6,".":10,",":10,a:5,f:-6,d:1,q:1,c:1,e:1,o:1,s:1,t:-3,z:1,"*":-6}},g:{d:"192,-3v0,40,-44,69,-106,69v-77,0,-116,-43,-61,-77v-19,-22,-7,-39,21,-55v-64,-28,-33,-115,43,-115v24,0,44,7,58,18r41,-17r7,45r-30,0v11,53,-35,83,-92,76v-7,12,-4,12,22,14v41,3,97,1,97,42xm111,6r-57,-4v-13,22,-1,33,38,33v26,0,42,-8,42,-18v0,-8,-6,-10,-23,-11xm111,-120v0,-15,-8,-25,-22,-25v-14,0,-21,11,-21,26v0,15,7,25,21,25v14,0,22,-11,22,-26",w:196,k:{"?":10,j:-10,"/":-19,")":6,"]":6,"}":6,a:1,f:-3,d:5,q:5,c:5,e:5,o:5,t:-4,"-":4}},h:{d:"180,0r-64,0r0,-108v0,-22,-25,-22,-36,-7r0,115r-64,0r0,-250r64,-10r0,103v29,-39,100,-33,100,31r0,126",w:194,k:{"?":13,v:3,w:1,y:3}},i:{d:"84,-230v0,21,-15,33,-35,33v-20,0,-36,-12,-36,-33v0,-21,16,-33,36,-33v20,0,35,12,35,33xm81,0r-64,0r0,-178r64,0r0,178"},j:{d:"84,-230v0,21,-15,33,-35,33v-20,0,-36,-12,-36,-33v0,-21,16,-33,36,-33v20,0,35,12,35,33xm81,-2v0,57,-40,74,-90,66r-7,-49v17,5,33,3,33,-22r0,-171r64,0r0,176",k:{"/":-13}},k:{d:"186,-6r-66,9r-40,-82r0,79r-64,0r0,-250r64,-10r0,154r38,-72r68,0r-48,82",w:185,k:{"?":6,v:6,x:3,w:6,y:6,a:3,g:3,d:4,q:4,c:6,e:6,o:6,s:3,t:3,u:3,"-":10,"*":11}},l:{d:"81,0r-64,0r0,-250r64,-10r0,260"},m:{d:"276,0r-64,0r0,-108v1,-23,-23,-21,-34,-7r0,115r-64,0r0,-108v1,-23,-23,-21,-34,-7r0,115r-64,0r0,-178r57,0r4,24v22,-34,83,-38,96,0v29,-42,103,-38,103,28r0,126",w:291,k:{"?":13,v:3,w:1,y:3}},n:{d:"180,0r-64,0r0,-108v0,-22,-25,-22,-36,-7r0,115r-64,0r0,-178r57,0r4,24v29,-41,103,-39,103,28r0,126",w:194,k:{"?":13,v:3,w:1,y:3}},o:{d:"182,-89v0,57,-38,93,-88,93v-50,0,-86,-36,-86,-93v0,-57,37,-93,87,-93v50,0,87,36,87,93xm121,-89v0,-26,-9,-41,-26,-41v-16,0,-26,15,-26,41v0,26,10,41,26,41v17,0,26,-15,26,-41",w:189,k:{"?":13,v:6,x:9,"/":6,")":10,"]":10,"}":10,w:5,y:6,".":3,",":3,z:3}},p:{d:"187,-94v-4,84,-48,106,-107,90r0,61r-64,10r0,-245r57,0r4,22v39,-47,114,-29,110,62xm123,-89v1,-41,-25,-44,-43,-23r0,61v25,8,43,3,43,-38",w:196,k:{"?":13,v:4,x:8,"/":3,")":6,"]":6,"}":6,w:3,y:4,".":3,",":3,z:2}},q:{d:"180,57r-64,10r0,-86v-40,44,-107,22,-107,-65v0,-103,97,-109,171,-83r0,224xm116,-66r0,-61v-25,-8,-42,0,-43,38v0,43,25,43,43,23",w:195,k:{"?":10,"/":-13}},r:{d:"137,-116v-25,2,-43,9,-57,20r0,96r-64,0r0,-178r57,0r6,35v10,-21,23,-37,48,-39",w:138,k:{x:3,"/":23,".":21,",":21,a:6,f:-6,d:2,q:2,c:2,e:2,o:2,s:1,t:-3}},s:{d:"162,-57v0,71,-107,69,-152,42r7,-47v23,14,51,21,69,21v13,0,18,-3,18,-9v0,-6,-4,-9,-26,-15v-46,-12,-65,-24,-65,-58v0,-62,92,-70,139,-44r-7,46v-21,-11,-44,-17,-61,-17v-10,0,-14,3,-14,8v0,5,3,9,27,15v49,13,65,25,65,58",w:170,k:{"?":13,v:3,x:5,")":6,"]":6,"}":6,w:3,y:3,g:2,s:1,t:3}},t:{d:"131,-2v-49,13,-105,3,-105,-60r0,-65r-22,0r0,-51r22,0r0,-51r64,-10r0,61r32,0r8,51r-40,0v2,33,-12,88,33,73",w:134,k:{"?":6,v:3,"/":-10,w:3,y:3,f:1,c:1,e:1,o:1,"-":2}},u:{d:"179,0r-58,0r-4,-24v-29,42,-102,38,-102,-29r0,-125r64,0r0,107v-1,22,25,23,36,8r0,-115r64,0r0,178",w:194,k:{"?":10}},v:{d:"187,-178r-61,179r-65,0r-60,-174r70,-8r28,101r27,-98r61,0",w:187,k:{"/":21,"?":6,x:3,")":6,"]":6,"}":6,".":14,",":14,a:6,f:-3,g:5,d:6,q:6,c:6,e:6,o:6,s:6,"-":5}},w:{d:"261,-178r-47,178r-63,0r-20,-88r-20,88r-64,0r-45,-174r67,-7r18,96r19,-93r59,0r19,93r18,-93r59,0",w:261,k:{"?":6,x:3,"/":16,")":6,"]":6,"}":6,".":11,",":11,a:4,g:3,d:5,q:5,c:5,e:5,o:5,s:3,"-":3}},x:{d:"179,-5r-67,8r-25,-49r-24,46r-60,0r52,-87r-50,-86r68,-8r22,45r22,-42r59,0r-49,83",w:182,k:{"?":8,x:3,v:3,w:3,a:3,f:1,g:4,d:9,q:9,c:10,e:10,o:10,s:5,"-":13}},y:{d:"187,-178r-60,177v-18,57,-51,74,-106,64r-8,-50v17,5,45,6,53,-13r-65,-173r70,-8r29,100r26,-97r61,0",w:187,k:{"?":6,"/":21,")":6,"]":6,"}":6,".":14,",":14,a:6,g:5,d:6,q:6,c:7,e:7,o:7,s:6,"-":5}},z:{d:"164,0r-155,0r0,-48r70,-81r-61,0r-7,-49r148,0r0,48r-69,81r66,0",w:170,k:{"?":6,"/":-6,d:3,q:3,c:4,e:4,o:4,s:1,z:3,"-":3}},"0":{d:"220,-122v0,82,-41,127,-104,127v-63,0,-105,-45,-105,-127v0,-82,42,-126,105,-126v63,0,104,44,104,126xm149,-122v0,-47,-9,-73,-33,-73v-24,0,-34,26,-34,73v0,47,10,74,34,74v24,0,33,-27,33,-74",w:230,k:{"/":10,"7":10,"3":3,"2":1,"1":2,".":6,",":6}},"1":{d:"134,0r-73,0r0,-177r-48,19r-8,-56r64,-29r65,0r0,243",w:154},"2":{d:"191,0r-177,0r0,-50r81,-80v14,-14,22,-24,22,-38v0,-12,-10,-20,-26,-20v-20,0,-42,9,-64,23r-8,-59v47,-36,167,-33,167,47v0,53,-57,88,-88,121r84,0",w:201,k:{"7":5,"6":3,"2":3,"-":6,"4":8}},"3":{d:"189,-69v0,82,-123,88,-178,55r8,-54v20,10,44,16,68,16v20,0,32,-8,32,-23v4,-21,-30,-27,-63,-25r-8,-50v29,2,71,-2,67,-22v-8,-34,-70,-18,-92,-1r-9,-53v45,-36,171,-30,171,42v0,32,-17,47,-42,57v28,10,46,27,46,58",w:200,k:{"/":3,"7":5}},"4":{d:"217,-46r-32,0r0,46r-68,0r0,-46r-109,0r0,-43r98,-154r79,0r0,150r32,0r0,47xm117,-93r0,-83r-52,83r52,0",w:222},"5":{d:"192,-84v0,90,-111,106,-181,73r9,-58v30,14,101,32,106,-11v3,-28,-43,-29,-63,-19r-43,-9r8,-135r150,0r9,57r-106,0r-1,31v56,-12,112,9,112,71",w:204,k:{"9":3,"7":8,"3":2}},"6":{d:"164,-193v-44,9,-76,26,-88,54v49,-33,124,-24,124,55v0,54,-40,89,-93,89v-57,0,-96,-36,-96,-103v0,-89,62,-137,144,-151xm134,-79v1,-37,-37,-33,-59,-18v0,39,15,52,32,52v17,0,27,-13,27,-34",w:209,k:{"9":3,"7":14,"3":2,"1":6,"4":-3}},"7":{d:"185,-188r-87,191r-68,-12r82,-175r-94,0r-8,-59r175,0r0,55",w:196,k:{"/":46,"8":6,"6":12,"5":8,"2":3,"1":-3,"0":6,":":6,";":6,".":32,",":32,"-":19,"4":22}},"8":{d:"108,5v-103,0,-127,-90,-57,-131v-65,-38,-25,-122,58,-122v88,0,117,79,54,119v75,35,41,134,-55,134xm94,-105v-27,16,-23,65,15,63v15,0,28,-10,28,-26v0,-16,-10,-24,-43,-37xm82,-182v0,13,8,22,35,33v23,-14,24,-56,-10,-55v-15,0,-25,9,-25,22",w:215,k:{"7":6}},"9":{d:"43,-50v46,-8,77,-24,89,-50v-52,32,-124,19,-123,-58v0,-57,41,-90,94,-90v57,0,96,36,96,103v0,89,-63,136,-148,150xm75,-163v-1,38,35,36,60,21v0,-42,-14,-56,-32,-56v-16,0,-28,13,-28,35",w:209,k:{"/":18,"7":8,"5":3,"3":5,"2":6,".":11,",":11,"4":5}},".":{d:"83,0r-68,0r0,-70r68,0r0,70",k:{"9":13,"1":14,"7":8,v:14,"2":-6,"6":3,"3":-6,"0":6,T:32,V:32,W:24,Y:39,w:13,y:11,f:5,c:3,e:3,o:3,t:6,C:10,G:10,O:10,Q:10}},",":{d:"94,-70r-48,126r-39,-9r15,-117r72,0",k:{"9":13,"1":14,"7":8,v:14,"2":-6,"6":3,"3":-6,"0":6,T:32,V:32,W:24,Y:39,w:13,y:11,f:5,c:3,e:3,o:3,t:6,C:10,G:10,O:10,Q:10}},":":{d:"85,-109r-68,0r0,-69r68,0r0,69xm85,0r-68,0r0,-69r68,0r0,69",w:101,k:{"7":10,T:23,V:13,W:11,Y:23}},";":{d:"87,-109r-68,0r0,-69r68,0r0,69xm92,-69r-48,125r-39,-9r15,-116r72,0",w:101},"&":{d:"240,-5r-71,7r-16,-19v-47,41,-144,20,-144,-48v0,-34,17,-56,45,-73v-39,-48,-14,-115,57,-115v29,0,53,7,69,16r-9,54v-19,-9,-37,-15,-52,-15v-23,0,-18,20,-6,35r43,54v3,-12,6,-25,8,-41r53,11v-4,31,-12,55,-24,76xm85,-100v-30,28,6,72,39,47",w:235,k:{T:22,V:18,W:14,Y:29,S:1,C:5,G:5,O:5,Q:5}},"!":{d:"95,-248r-20,149r-39,8r-21,-157r80,0xm89,0r-68,0r0,-70r68,0r0,70",w:109},"?":{d:"176,-182v0,53,-40,81,-116,95r-3,-53v33,-8,51,-20,51,-36v0,-12,-8,-19,-26,-19v-21,0,-46,10,-67,24r-9,-58v21,-14,48,-24,87,-24v54,0,83,26,83,71xm107,0r-68,0r0,-70r68,0r0,70",w:180},"-":{d:"115,-75r-102,0r0,-61r102,0r0,61",w:127,k:{"1":14,"7":26,v:5,X:19,x:13,J:14,"2":10,A:8,T:23,V:19,W:16,Y:29,Z:8,w:3,y:5,S:6,f:3,z:5}},_:{d:"164,37r-165,0r0,-25r165,0r0,25",w:163},"/":{d:"187,-240r-148,286r-52,-11r148,-287",w:189,k:{"/":68,"8":3,"6":19,"2":6,"0":13,x:28,v:24,j:3,X:6,M:8,J:23,A:46,Z:6,w:24,y:24,a:35,f:9,g:36,i:3,d:40,q:40,m:27,n:27,p:27,r:27,c:40,e:40,o:40,s:32,t:10,u:27,C:16,G:16,O:16,Q:16,z:28,"4":42}},"\\":{d:"203,35r-52,11r-149,-286r52,-12",w:189},"|":{d:"83,59r-53,8r0,-319r53,-8r0,319",w:113},"(":{d:"144,23r-46,11v-46,-34,-85,-77,-85,-145v0,-74,41,-121,114,-150r6,39v-71,64,-60,177,11,245",w:147,k:{j:-13,v:6,J:6,A:10,w:6,S:5,d:6,q:6,c:10,e:10,o:10,s:6,C:13,G:13,O:13,Q:13,"4":16}},")":{d:"3,-249r47,-11v46,34,84,77,84,145v0,74,-41,121,-114,150r-6,-39v71,-64,60,-177,-11,-245",w:147},"[":{d:"141,37r-118,0r0,-285r116,0r0,37r-54,0r0,211r50,0",w:151,k:{v:6,j:-13,J:6,A:10,w:6,S:5,d:6,q:6,c:10,e:10,o:10,s:6,C:13,G:13,O:13,Q:13,"4":16}},"]":{d:"11,-248r118,0r0,285r-116,0r0,-37r54,0r0,-211r-50,0",w:151},"{":{d:"175,37v-54,2,-126,3,-120,-47v5,-41,13,-84,-42,-77r-6,-37v30,1,57,-4,53,-31v-7,-48,-8,-95,53,-93r60,0r0,37v-23,0,-58,-4,-54,19v7,43,4,79,-39,87v45,6,46,45,39,86v-3,22,28,19,50,19",w:186,k:{v:6,j:-13,J:6,A:10,w:6,S:5,d:6,q:6,c:10,e:10,o:10,s:6,C:13,G:13,O:13,Q:13,"4":16}},"}":{d:"11,-248v54,-2,126,-3,120,47v-5,41,-13,84,43,77r5,37v-30,-1,-57,4,-53,31v7,48,8,95,-53,93r-60,0r0,-37v23,0,58,4,54,-19v-7,-43,-4,-79,39,-87v-45,-6,-46,-45,-39,-86v3,-22,-28,-19,-50,-19",w:186},"@":{d:"214,-15v-25,0,-45,-12,-52,-30v-30,41,-91,44,-92,-18v-2,-90,83,-133,158,-95v-6,34,-15,63,-18,100v0,9,5,18,22,18v24,0,41,-27,41,-73v0,-73,-45,-107,-108,-107v-73,0,-137,67,-137,151v0,111,106,125,184,90r2,12v-19,10,-49,17,-80,17v-76,0,-122,-38,-122,-119v0,-87,71,-164,155,-164v73,0,121,42,121,119v0,59,-25,99,-74,99xm122,-73v6,30,21,13,40,-5r10,-53v-31,-8,-48,24,-50,58",w:300},"*":{d:"154,-193r-38,27r15,45r-12,8r-37,-28r-38,28r-12,-8r16,-45r-39,-27r5,-13r47,0r13,-45r15,0r13,45r48,0",w:163,k:{X:6,J:19,A:32}},"^":{d:"148,-197r-41,0r-25,-19r-24,19r-41,0r36,-54r59,0",w:163},"~":{d:"12,-81v4,-75,48,-51,85,-41v5,0,8,-3,11,-15r28,7v-5,74,-48,52,-86,40v-5,0,-8,3,-11,15",w:147},"$":{d:"138,-266r-4,24v17,3,33,9,47,17r-9,50v-15,-9,-31,-15,-48,-19r-6,41v48,14,71,32,71,77v0,55,-39,78,-91,78r-6,42r-28,-6r6,-38v-22,-3,-42,-11,-62,-21r8,-50v24,13,45,20,64,23r7,-50v-45,-13,-72,-29,-72,-74v0,-46,32,-74,91,-73r4,-27xm102,-47v36,1,42,-36,7,-44xm102,-197v-36,-3,-43,30,-6,38",w:200},"#":{d:"201,-238r-7,41r37,0r0,53r-45,0r-7,45r39,0r8,53r-56,0r-7,47r-38,0r7,-47r-44,0r-8,50r-37,-9r7,-41r-37,0r0,-53r45,0r7,-45r-38,0r-9,-53r55,0r8,-47r38,0r-7,47r44,0r8,-50xm103,-145r-8,47r46,0r7,-47r-45,0",w:244},"%":{d:"135,-175v0,47,-27,72,-61,72v-34,0,-61,-25,-61,-72v0,-47,27,-71,61,-71v34,0,61,24,61,71xm100,3r-36,-8r157,-241r35,8xm308,-69v0,47,-27,72,-61,72v-34,0,-61,-24,-61,-71v0,-47,27,-72,61,-72v34,0,61,24,61,71xm93,-175v0,-25,-7,-38,-19,-38v-13,0,-20,12,-20,38v0,25,8,38,20,38v13,0,19,-13,19,-38xm266,-69v0,-25,-7,-37,-19,-37v-13,0,-19,13,-19,38v0,25,7,37,19,37v13,0,19,-12,19,-38",w:320},'"':{d:"190,-243r-19,122r-41,-9r-18,-113r78,0xm92,-243r-19,122r-42,-9r-17,-113r78,0",w:204,k:{"4":19}},"'":{d:"94,-243r-19,122r-44,-9r-17,-113r80,0",w:108,k:{"4":19}},"+":{d:"186,-97r-57,0r0,60r-52,0r0,-60r-58,0r0,-50r58,0r0,-60r52,0r0,60r57,0r0,50",w:205},"=":{d:"186,-142r-160,0r0,-49r160,0r0,49xm186,-53r-160,0r0,-49r160,0r0,49",w:212},"<":{d:"181,-20r-160,-80r0,-44r160,-80r0,54r-98,48r98,48r0,54",w:205},">":{d:"185,-100r-161,80r0,-54r99,-47r-99,-49r0,-54r161,80r0,44",w:205},"`":{d:"127,-197r-42,0r-55,-42r79,-12",w:163},"\u00a0":{w:73}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (C) 1996, 2007 Hoefler & Frere-Jones. http://www.typography.com
 * 
 * Trademark:
 * Whitney is a trademark of Hoefler & Frere-Jones, which may be registered in
 * certain jurisdictions.
 * 
 * Full name:
 * Whitney-Light
 * 
 * Manufacturer:
 * Hoefler & Frere-Jones
 * 
 * Designer:
 * Hoefler & Frere-Jones
 * 
 * Vendor URL:
 * www.typography.com
 * 
 * License information:
 * http://www.typography.com/support/eula.html
 */
Cufon.registerFont({w:81,face:{"font-family":"Whitney Light","font-weight":300,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0",ascent:"288",descent:"-72","x-height":"4",bbox:"-12 -272 352 69","underline-thickness":"18","underline-position":"-18",stemh:"15",stemv:"17","unicode-range":"U+0020-U+007E"},glyphs:{" ":{w:82},A:{d:"17,0r99,-250r18,0r99,249r-17,4r-35,-88r-113,0r-33,85r-18,0xm125,-230r-51,130r101,0",w:249,k:{"?":21,v:12,T:33,V:33,W:24,Y:35,")":10,"]":10,"}":10,w:10,y:12,f:6,d:1,q:1,c:1,e:1,o:1,t:8,u:1,C:10,G:10,O:10,Q:10,U:5,"-":8,"*":18}},B:{d:"126,-132v86,23,52,140,-35,132r-55,0r0,-248v64,-5,129,4,129,60v0,27,-16,47,-39,56xm148,-188v0,-41,-47,-49,-95,-45r0,95v51,5,95,-9,95,-50xm159,-69v0,-52,-51,-57,-106,-54r0,108v55,4,106,-6,106,-54",w:197,k:{"&":-5,x:5,v:3,X:5,T:6,V:6,W:5,Y:10,Z:3,")":6,"]":6,"}":6,w:2,y:3}},C:{d:"211,-21v-74,59,-188,10,-188,-103v0,-106,104,-163,184,-107r-4,18v-68,-57,-162,-9,-162,88v0,102,99,146,167,88",w:234,k:{v:13,X:5,j:3,x:6,T:3,V:3,W:3,Y:6,Z:3,w:12,y:13,A:3,f:5,i:3,b:3,h:3,k:3,l:3,d:5,q:5,c:6,e:6,o:6,u:3,C:13,G:13,O:13,Q:13,"-":6}},D:{d:"228,-125v-1,102,-81,136,-192,125r0,-248v112,-10,193,23,192,123xm210,-124v0,-89,-64,-117,-157,-109r0,218v93,7,157,-18,157,-109",w:251,k:{"?":5,X:15,x:3,J:13,"/":19,T:19,V:12,W:10,Y:19,Z:13,")":13,"]":13,"}":13,A:13,S:3,".":12,",":12,a:3,z:3}},E:{d:"165,0r-129,0r0,-248r126,0r0,15r-109,0r0,95r87,0r3,16r-90,0r0,107r112,0r0,15",w:181,k:{v:6,w:5,y:6,d:1,q:1,c:3,e:3,o:3,C:3,G:3,O:3,Q:3}},F:{d:"157,-233r-104,0r0,99r84,0r3,16r-87,0r0,118r-17,0r0,-248r121,0r0,15",w:171,k:{"/":33,"?":-3,"&":6,x:16,v:10,j:6,X:5,M:5,J:22,Z:6,w:8,y:10,A:24,S:3,":":5,";":5,".":26,",":26,a:19,f:8,g:16,i:6,b:3,h:3,k:3,l:3,d:13,q:13,m:15,n:15,p:15,r:15,c:15,e:15,o:15,s:13,t:6,u:13,C:5,G:5,O:5,Q:5,z:15}},G:{d:"217,-21v-80,60,-194,10,-194,-103v0,-108,105,-162,184,-107r-3,18v-65,-55,-163,-13,-163,89v0,94,87,142,158,95r0,-82r-61,0r-3,-15r82,0r0,105",w:248,k:{"?":3,v:3,T:10,V:6,W:5,Y:10,w:2,y:3}},H:{d:"219,0r-18,0r0,-122r-148,0r0,122r-17,0r0,-248r17,0r0,110r148,0r0,-110r18,0r0,248",w:254},I:{d:"56,0r-17,0r0,-248r17,0r0,248",w:95},J:{d:"94,-60v0,50,-35,69,-80,60r-3,-17v34,11,66,0,66,-41r0,-190r17,0r0,188",w:129,k:{J:6,A:5,".":3,",":3}},K:{d:"209,-2r-20,5r-136,-133r0,130r-17,0r0,-248r17,0r0,114r126,-114r23,0r-129,115",w:217,k:{"?":3,v:18,x:6,"&":3,V:8,W:6,Y:6,w:17,y:19,S:3,f:6,d:8,q:8,c:10,e:10,o:10,t:8,u:5,C:16,G:16,O:16,Q:16,U:4,"-":16}},L:{d:"157,0r-121,0r0,-248r17,0r0,233r101,0",w:167,k:{"?":19,v:19,T:39,V:36,W:33,Y:39,")":3,"]":3,"}":3,w:18,y:19,f:6,d:5,q:5,c:6,e:6,o:6,t:8,C:16,G:16,O:16,Q:16,U:9,"-":16,"*":26}},M:{d:"298,0r-17,0r-17,-224r-93,225r-14,0r-93,-225r-16,224r-17,0r20,-248r21,0r93,227r92,-227r21,0",w:328,k:{T:6,V:8,W:6,Y:10,U:2}},N:{d:"219,0r-14,0r-152,-222r0,222r-17,0r0,-248r18,0r148,216r0,-216r17,0r0,248",w:254},O:{d:"244,-125v0,76,-46,130,-110,130v-64,0,-111,-54,-111,-129v0,-76,47,-129,111,-129v64,0,110,53,110,128xm226,-124v0,-67,-37,-114,-92,-114v-55,0,-93,47,-93,113v0,67,38,114,93,114v55,0,92,-47,92,-113",w:267,k:{"?":5,X:12,J:11,"/":16,T:16,V:10,W:8,Y:16,Z:10,")":10,"]":10,"}":10,A:10,S:1,".":10,",":10}},P:{d:"173,-180v-1,59,-54,77,-120,72r0,108r-17,0r0,-248v70,-4,139,2,137,68xm155,-179v0,-49,-47,-58,-102,-54r0,110v55,4,102,-5,102,-56",w:190,k:{"/":36,"&":8,x:3,j:3,X:12,M:3,J:23,Y:6,Z:12,")":10,"]":10,"}":10,A:24,".":30,",":30,a:10,f:-3,g:8,i:3,d:10,q:10,m:3,n:3,p:3,r:3,c:12,e:12,o:12,s:6,t:-3,u:3,z:3,"-":6}},Q:{d:"244,-125v0,68,-37,119,-93,128r84,32r-3,18v-86,-44,-210,-46,-209,-177v0,-76,47,-129,111,-129v64,0,110,53,110,128xm226,-123v0,-68,-37,-115,-92,-115v-55,0,-93,46,-93,114v0,68,38,114,93,114v55,0,92,-46,92,-113",w:268,k:{"?":5,X:12,J:10,T:16,V:10,W:8,Y:16,Z:10,")":8,"]":8,"}":8,A:10,S:1,".":10,",":10}},R:{d:"193,-1r-18,4r-85,-117r-37,0r0,114r-17,0r0,-248v69,-4,137,1,137,65v0,39,-29,61,-64,67xm155,-182v0,-48,-49,-55,-102,-51r0,104v54,3,102,-4,102,-53",w:203,k:{v:5,T:6,V:8,W:6,Y:12,w:3,d:5,q:5,c:6,e:6,o:6,C:3,G:3,O:3,Q:3,U:2,"-":5}},S:{d:"163,-64v0,68,-93,81,-139,52r3,-18v32,25,118,26,118,-33v0,-26,-14,-41,-52,-57v-48,-21,-65,-37,-65,-71v0,-56,80,-74,121,-48r-2,17v-31,-24,-101,-17,-101,30v0,25,14,37,53,54v44,19,64,38,64,74",w:184,k:{"?":5,v:3,X:3,x:5,"&":-5,T:5,V:6,W:5,Y:10,Z:1,")":5,"]":5,"}":5,w:2,y:3,A:1,S:3,C:1,G:1,O:1,Q:1}},T:{d:"193,-233r-82,0r0,233r-17,0r0,-233r-81,0r0,-15r178,0",w:203,k:{v:42,X:5,j:12,x:46,J:25,"/":39,"&":18,M:6,Z:6,w:41,y:42,A:33,S:5,":":23,";":23,".":33,",":33,a:46,f:16,g:46,i:12,b:6,h:6,k:6,l:6,d:42,q:42,m:42,n:42,p:42,r:42,c:46,e:46,o:46,s:42,t:16,u:42,C:16,G:16,O:16,Q:16,z:42,"-":23}},U:{d:"212,-94v0,58,-34,98,-91,98v-57,0,-90,-41,-90,-96r0,-156r17,0v6,96,-30,237,73,236v47,0,74,-32,74,-81r0,-155r17,0r0,154",w:242,k:{X:4,J:7,M:2,Z:4,A:5}},V:{d:"229,-248r-99,249r-16,0r-97,-248r17,-4r89,232r88,-229r18,0",w:245,k:{v:16,X:6,j:10,x:23,J:23,"/":46,"&":13,M:8,Z:5,w:15,y:16,A:33,S:6,":":13,";":13,".":33,",":33,a:28,f:6,g:28,i:10,d:28,q:28,m:24,n:24,p:24,r:24,c:30,e:30,o:30,s:26,t:10,u:23,C:10,G:10,O:10,Q:10,z:19,"-":19}},W:{d:"352,-248r-75,249r-16,0r-76,-226r-74,226r-16,0r-75,-248r17,-4r67,225r73,-222r18,0r74,222r66,-222r17,0",w:371,k:{v:10,X:5,j:6,x:16,J:21,"/":33,"&":10,M:6,Z:3,w:8,y:10,A:24,S:5,":":12,";":12,".":26,",":26,a:21,f:6,g:19,i:6,d:21,q:21,m:18,n:18,p:18,r:18,c:23,e:23,o:23,s:19,t:5,u:16,C:8,G:8,O:8,Q:8,z:13,"-":16}},X:{d:"211,-2r-17,4r-80,-119r-79,117r-19,0r88,-130r-80,-116r17,-4r73,108r71,-106r19,0r-81,119",w:228,k:{"?":6,"&":3,v:13,X:3,T:5,V:6,W:5,Y:6,w:12,y:13,S:3,f:3,d:5,q:5,c:6,e:6,o:6,t:6,u:3,C:12,G:12,O:12,Q:12,U:4,"-":19,"*":6}},Y:{d:"209,-248r-89,141r0,107r-17,0r0,-107r-88,-140r17,-4r80,130r78,-127r19,0",w:223,k:{v:26,X:6,j:8,x:30,J:31,"/":46,"&":23,M:10,Z:6,w:25,y:26,A:35,S:10,":":23,";":23,".":39,",":39,a:38,f:12,g:41,i:8,d:39,q:39,m:33,n:33,p:33,r:33,c:42,e:42,o:42,s:38,t:13,u:33,C:16,G:16,O:16,Q:16,z:30,"-":30}},Z:{d:"198,0r-175,0r0,-12r152,-222r-142,0r-2,-14r165,0r0,11r-151,222r150,0",w:219,k:{v:10,"&":3,w:8,y:10,f:5,d:6,q:6,c:8,e:8,o:8,t:3,u:3,C:10,G:10,O:10,Q:10,"-":13}},a:{d:"145,0r-11,0r-4,-23v-31,34,-111,43,-111,-18v0,-38,29,-58,110,-66v9,-61,-57,-57,-96,-35r-2,-16v40,-22,114,-23,114,36r0,122xm129,-38r0,-55v-70,8,-93,22,-93,50v0,51,66,32,93,5",w:173,k:{"?":13,v:3,w:2,y:3}},b:{d:"169,-89v0,88,-74,106,-139,80r0,-245r17,-3r0,112v38,-50,122,-31,122,56xm152,-89v0,-78,-70,-86,-105,-37r0,105v51,19,105,4,105,-68",w:188,k:{"?":13,v:3,x:6,"/":3,")":6,"]":6,"}":6,w:2,y:3,".":3,",":3,z:3}},c:{d:"150,-17v-51,44,-131,16,-131,-68v0,-83,77,-110,130,-69r-3,17v-44,-41,-110,-19,-110,52v0,69,66,97,112,52",w:167,k:{d:1,q:1,c:3,e:3,o:3}},d:{d:"159,0r-12,0r-4,-25v-38,51,-126,33,-124,-55v2,-82,62,-108,124,-83r0,-91r16,-3r0,257xm143,-43r0,-103v-50,-25,-106,-9,-106,65v0,77,71,88,106,38",w:189},e:{d:"155,-21v-49,48,-136,24,-136,-64v0,-54,31,-88,72,-88v44,0,66,39,65,88r-120,0v-6,76,75,94,117,48xm91,-159v-32,0,-50,25,-54,60r101,0v-1,-33,-17,-60,-47,-60",w:174,k:{"?":13,v:3,x:3,w:2,y:3}},f:{d:"97,-241v-21,-4,-41,2,-41,28r0,44r36,0r2,14r-38,0r0,155r-16,0r0,-155r-27,0r0,-14r27,0v-3,-50,0,-99,54,-88",w:103,k:{"?":-6,x:3,"/":10,")":-6,"]":-6,"}":-6,".":10,",":10,a:5,g:1,d:3,q:3,c:3,e:3,o:3,s:1,t:-3,z:1,"-":6,"*":-5}},g:{d:"165,14v0,31,-35,50,-79,50v-79,0,-104,-62,-35,-90v-21,-11,-17,-29,2,-40v-18,-9,-31,-27,-31,-50v-1,-53,68,-73,103,-42r42,-14r3,19r-36,4v31,42,-9,105,-66,88v-10,5,-14,10,-14,14v0,8,8,12,40,17v37,6,71,17,71,44xm148,17v7,-23,-55,-30,-81,-37v-61,20,-48,70,20,70v36,0,61,-14,61,-33xm129,-116v0,-24,-19,-43,-46,-43v-27,0,-43,18,-43,43v0,24,17,44,44,44v28,0,45,-19,45,-44",w:180,k:{"?":10,j:-2,"/":-19,")":6,"]":6,"}":6,a:2,f:-3,d:4,q:4,c:5,e:5,o:5}},h:{d:"159,0r-16,0r0,-118v-4,-58,-66,-44,-96,-9r0,127r-17,0r0,-254r17,-3r0,113v34,-41,112,-42,112,24r0,120",w:187,k:{"?":13,v:3,w:2,y:3}},i:{d:"55,-230v0,8,-6,15,-14,15v-8,0,-15,-7,-15,-15v0,-8,7,-14,15,-14v8,0,14,6,14,14xm49,0r-17,0r0,-169r17,0r0,169"},j:{d:"55,-230v0,8,-6,15,-14,15v-8,0,-15,-7,-15,-15v0,-8,7,-14,15,-14v8,0,14,6,14,14xm49,30v-1,29,-21,37,-46,33r-3,-15v18,3,33,1,32,-20r0,-197r17,0r0,199",k:{"/":-13}},k:{d:"157,-2r-19,5r-91,-94r0,91r-17,0r0,-254r17,-3r0,162r81,-74r23,0r-85,76",w:163,k:{"?":6,v:6,x:3,w:5,y:6,a:3,d:10,q:10,c:10,e:10,o:10,s:3,t:3,u:3,"-":10,"*":12}},l:{d:"49,0r-17,0r0,-254r17,-3r0,257"},m:{d:"268,0r-17,0r0,-118v-3,-59,-63,-42,-94,-9r0,127r-16,0r0,-118v-3,-58,-63,-43,-94,-10r0,128r-17,0r0,-169r12,0r4,24v30,-32,94,-42,108,3v34,-41,114,-46,114,22r0,120",w:295,k:{"?":13,v:3,w:2,y:3}},n:{d:"159,0r-16,0r0,-118v-4,-58,-66,-44,-96,-9r0,127r-17,0r0,-169r12,0r4,25v35,-40,113,-42,113,25r0,119",w:187,k:{"?":13,v:3,w:2,y:3}},o:{d:"168,-85v0,56,-34,89,-75,89v-42,0,-74,-33,-74,-89v0,-56,33,-88,74,-88v42,0,75,32,75,88xm150,-85v0,-42,-20,-73,-57,-73v-37,0,-57,29,-57,73v0,42,21,74,57,74v37,0,57,-30,57,-74",w:186,k:{"?":13,v:5,x:6,"/":6,")":10,"]":10,"}":10,w:3,y:5,".":3,",":3,z:5}},p:{d:"170,-89v-2,82,-61,105,-123,83r0,68r-17,3r0,-234r12,0r4,24v39,-50,126,-31,124,56xm152,-89v0,-78,-71,-86,-105,-37r0,103v51,23,105,8,105,-66",w:189,k:{"?":13,v:3,x:6,"/":3,")":6,"]":6,"}":6,w:2,y:3,".":3,",":3,z:3}},q:{d:"159,62r-17,3r0,-89v-38,50,-123,31,-123,-56v0,-88,76,-108,140,-80r0,222xm142,-43r0,-106v-51,-19,-105,-6,-105,68v0,77,70,88,105,38",w:188,k:{"?":10,"/":-13}},r:{d:"110,-157v-28,2,-51,23,-63,46r0,111r-17,0r0,-169r11,0r5,35v13,-19,33,-39,61,-39",w:119,k:{x:3,"/":23,".":26,",":26,a:6,g:5,d:6,q:6,c:6,e:6,o:6,s:3,t:-3,"-":6}},s:{d:"138,-45v0,55,-85,56,-121,33r4,-17v25,19,99,30,100,-14v0,-18,-10,-31,-47,-37v-72,-13,-66,-92,4,-92v19,0,36,4,50,11r-3,16v-26,-18,-88,-17,-86,16v0,16,10,24,40,32v39,10,59,24,59,52",w:156,k:{"?":13,v:3,x:5,")":6,"]":6,"}":6,w:2,y:3,s:1}},t:{d:"101,-1v-27,10,-63,3,-63,-35r0,-119r-26,0r0,-14r26,0r0,-60r17,-4r0,64r41,0r2,14r-43,0r0,116v-3,27,21,30,43,25",w:116,k:{"?":6,v:3,"/":-10,w:2,y:3,f:1,g:1,d:1,q:1,c:1,e:1,o:1,"-":6}},u:{d:"157,0r-12,0r-4,-26v-35,41,-113,44,-113,-24r0,-119r17,0r0,118v3,58,65,43,95,9r0,-127r17,0r0,169",w:187,k:{"?":10}},v:{d:"156,-169r-65,171r-15,0r-63,-169r17,-4r54,152r54,-150r18,0",w:168,k:{"/":21,"?":6,x:3,")":6,"]":6,"}":6,".":15,",":15,a:5,g:3,d:5,q:5,c:5,e:5,o:5,s:3,"-":5}},w:{d:"251,-169r-58,171r-15,0r-46,-148r-46,148r-16,0r-57,-170r16,-4r49,153r47,-151r15,0r46,151r48,-150r17,0",w:263,k:{"?":6,x:3,"/":16,")":6,"]":6,"}":6,".":13,",":13,a:3,g:3,d:5,q:5,c:5,e:5,o:5,s:3,"-":3}},x:{d:"154,-1r-17,4r-53,-78r-51,75r-19,0r61,-87r-57,-81r17,-4r50,72r47,-69r19,0r-58,81",w:168,k:{"?":8,x:3,v:3,w:2,a:3,f:1,d:6,q:6,c:6,e:6,o:6,s:5,"-":13}},y:{d:"159,-169r-74,195v-11,31,-24,41,-53,37r-3,-14v34,7,40,-24,50,-48r-66,-168r17,-4r57,152r54,-150r18,0",w:171,k:{"?":6,"/":21,")":6,"]":6,"}":6,".":15,",":15,a:5,g:3,d:5,q:5,c:5,e:5,o:5,s:3,"-":5}},z:{d:"144,0r-127,0r0,-13r105,-142r-97,0r-2,-14r119,0r0,12r-106,143r105,0",w:160,k:{"?":6,"/":-6,a:3,d:3,q:3,c:6,e:6,o:6,s:1,z:3,"-":3}},"0":{d:"197,-122v0,75,-33,127,-87,127v-54,0,-86,-52,-86,-126v0,-74,33,-127,87,-127v54,0,86,52,86,126xm179,-122v0,-64,-23,-111,-68,-111v-45,0,-69,47,-69,111v0,64,24,112,69,112v45,0,68,-48,68,-112",w:220,k:{"/":10,"7":9,"3":4,"2":3,".":6,",":6}},"1":{d:"86,0r-17,0r0,-225r-54,22r-2,-14v25,-8,41,-27,73,-28r0,245",w:127},"2":{d:"169,0r-149,0r0,-12r89,-96v29,-32,38,-50,38,-75v0,-65,-87,-59,-118,-21r-3,-17v37,-42,144,-35,139,37v-4,67,-86,121,-122,169r124,0",w:192,k:{"7":5,"6":4,"2":3,"-":6,"4":13}},"3":{d:"113,-130v88,19,57,135,-27,135v-27,0,-50,-8,-67,-19r3,-18v39,36,126,27,126,-33v0,-36,-31,-59,-85,-56r-1,-15v48,3,81,-17,81,-52v0,-56,-87,-54,-117,-21r-3,-17v40,-37,138,-26,138,38v0,33,-23,50,-48,58",w:191,k:{"/":3,"7":5}},"4":{d:"201,-60r-42,0r0,60r-16,0r0,-60r-127,0r0,-11r122,-174r21,0r0,171r42,0r0,14xm143,-74r0,-152r-107,152r107,0",w:214},"5":{d:"171,-74v0,75,-97,96,-150,61r2,-17v43,32,130,27,130,-43v0,-57,-71,-69,-111,-47r-10,-3r9,-120r118,0r2,15r-106,0r-6,90v53,-21,122,2,122,64",w:194,k:{"9":3,"7":10,"2":2,"1":5}},"6":{d:"150,-232v-64,19,-99,56,-106,112v49,-43,141,-30,141,47v0,48,-32,78,-76,78v-49,0,-84,-42,-84,-104v0,-81,48,-127,123,-150xm167,-73v0,-68,-87,-68,-125,-30v-1,54,27,93,67,93v36,0,58,-26,58,-63",w:205,k:{"9":3,"7":13,"2":2,"1":7,"4":-3}},"7":{d:"171,-231r-104,234r-16,-4r100,-227r-129,0r-2,-15r151,0r0,12",w:192,k:{"/":46,"8":7,"6":14,"5":6,"2":4,"1":-3,"0":7,":":6,";":6,".":33,",":33,"-":19,"4":31}},"8":{d:"24,-60v0,-31,20,-53,54,-69v-25,-11,-45,-29,-45,-59v0,-33,30,-60,72,-60v42,0,70,27,70,59v0,29,-19,48,-45,62v33,13,53,33,53,65v0,39,-35,67,-79,67v-48,0,-80,-28,-80,-65xm94,-123v-69,18,-72,113,10,113v32,0,61,-20,61,-52v0,-28,-16,-43,-71,-61xm51,-188v0,26,14,40,63,55v57,-19,60,-98,-9,-100v-35,0,-54,23,-54,45",w:206,k:{"7":6,"2":2}},"9":{d:"52,-11v65,-15,102,-53,110,-108v-52,41,-141,27,-141,-51v0,-44,29,-78,76,-78v50,0,84,41,84,103v0,81,-49,129,-126,150xm39,-170v0,70,84,72,125,33v2,-57,-27,-96,-67,-96v-37,0,-58,27,-58,63",w:205,k:{"/":18,"7":11,"5":3,"3":3,"2":7,".":12,",":12,"4":5}},".":{d:"49,0r-22,0r0,-29r22,0r0,29",w:76,k:{"9":8,"1":15,"7":8,v:15,"2":-6,"6":3,"3":-6,"0":6,T:33,V:33,W:26,Y:39,w:12,y:12,f:5,c:3,e:3,o:3,t:6,C:10,G:10,O:10,Q:10,"4":10}},",":{d:"54,-29r-32,77r-9,-2r19,-75r22,0",w:76,k:{"9":8,"1":15,"7":8,v:15,"2":-6,"6":3,"3":-6,"0":6,T:33,V:33,W:26,Y:39,w:12,y:12,f:5,c:3,e:3,o:3,t:6,C:10,G:10,O:10,Q:10,"4":10}},":":{d:"50,-140r-21,0r0,-29r21,0r0,29xm50,0r-21,0r0,-29r21,0r0,29",w:79,k:{"7":10,T:23,V:13,W:12,Y:23}},";":{d:"53,-140r-22,0r0,-29r22,0r0,29xm51,-29r-32,77r-9,-2r20,-75r21,0",w:79},"&":{d:"238,-3r-18,5r-43,-43v-21,30,-49,45,-82,45v-46,0,-76,-30,-76,-68v0,-38,25,-60,61,-75v-45,-36,-33,-114,35,-113v21,0,40,6,57,16r-4,17v-34,-27,-97,-25,-97,22v0,19,7,32,27,53r77,77v10,-20,18,-46,23,-78r17,4v-6,35,-16,63,-29,86xm36,-64v0,65,102,68,130,12r-75,-76v-34,13,-55,35,-55,64",w:246,k:{T:30,V:18,W:15,Y:30,S:1,C:5,G:5,O:5,Q:5}},"!":{d:"58,-248r-6,181r-9,3r-6,-184r21,0xm58,0r-21,0r0,-29r21,0r0,29",w:95},"?":{d:"153,-194v0,36,-24,55,-63,77r-4,50r-11,3r-4,-60v42,-20,65,-44,64,-69v-3,-57,-83,-54,-115,-20r-2,-17v38,-36,135,-31,135,36xm91,0r-22,0r0,-29r22,0r0,29",w:173},"-":{d:"110,-93r-86,0r0,-18r86,0r0,18",w:133,k:{"1":15,"7":26,v:5,X:19,x:13,J:15,"2":10,T:23,V:19,W:16,Y:30,Z:8,w:2,y:5,A:8,S:6,f:3,z:5}},_:{d:"170,38r-169,0r0,-15r169,0r0,15",w:171},"/":{d:"173,-247r-170,291r-15,-3r170,-291",w:180,k:{"/":72,"8":3,"6":19,"2":6,"0":13,x:36,v:30,j:6,X:6,M:8,J:23,Z:6,w:28,y:30,A:46,a:42,f:13,g:46,i:6,d:44,q:44,m:39,n:39,p:39,r:39,c:48,e:48,o:48,s:39,t:10,u:38,C:16,G:16,O:16,Q:16,z:36,"4":42}},"\\":{d:"193,41r-16,3r-169,-291r15,-3",w:180},"|":{d:"56,66r-15,3r0,-327r15,-2r0,326",w:96},"(":{d:"122,31r-18,4v-43,-38,-77,-86,-77,-146v0,-64,32,-113,91,-151r3,16v-106,66,-95,205,1,277",w:141,k:{v:6,j:-10,J:6,w:5,A:10,S:5,d:6,q:6,c:10,e:10,o:10,s:6,C:13,G:13,O:13,Q:13,"4":16}},")":{d:"19,-257r18,-3v43,38,77,86,77,146v0,64,-32,112,-91,150r-3,-15v106,-66,95,-206,-1,-278",w:141},"[":{d:"123,38r-85,0r0,-286r84,0r0,14r-68,0r0,258r67,0",w:145,k:{v:6,j:-10,J:6,w:5,A:10,S:5,d:6,q:6,c:10,e:10,o:10,s:6,C:13,G:13,O:13,Q:13,"4":16}},"]":{d:"23,-248r85,0r0,286r-84,0r0,-14r67,0r0,-258r-66,0",w:145},"{":{d:"144,38v-45,3,-85,-5,-80,-47v5,-43,9,-100,-45,-89r-2,-14v30,1,51,-4,51,-39v0,-48,-11,-101,47,-97r27,0r0,14v-33,-2,-66,1,-62,33v6,40,10,94,-32,96v41,2,38,56,32,97v-5,31,28,34,61,32",w:166,k:{v:6,j:-10,J:6,w:5,A:10,S:5,d:6,q:6,c:10,e:10,o:10,s:6,C:13,G:13,O:13,Q:13,"4":16}},"}":{d:"23,-248v45,-3,84,4,80,46v-5,43,-9,101,45,90r2,13v-31,-2,-51,5,-51,40v0,48,10,101,-48,97r-27,0r0,-14v33,2,67,-1,63,-33v-5,-39,-11,-94,31,-96v-41,-2,-37,-57,-31,-97v5,-32,-29,-34,-62,-32",w:166},"@":{d:"217,-18v-26,0,-39,-15,-39,-37v-20,23,-35,37,-54,37v-20,0,-36,-17,-36,-48v1,-70,62,-113,120,-83r-15,95v0,14,8,26,27,26v27,0,51,-30,51,-86v0,-63,-36,-101,-103,-101v-76,0,-136,59,-136,149v0,104,105,128,183,90r1,9v-19,10,-49,17,-80,17v-72,0,-114,-41,-114,-116v0,-94,64,-158,148,-158v72,0,112,42,112,109v0,62,-31,97,-65,97xm127,-32v14,0,28,-11,53,-41r12,-67v-46,-21,-86,15,-88,73v0,24,9,35,23,35",w:304},"*":{d:"128,-209r-44,18r25,42r-4,2r-31,-37r-32,37r-3,-2r24,-42r-43,-18r1,-5r46,11r4,-48r5,0r4,48r46,-11",w:147,k:{X:6,J:23,A:33}},"^":{d:"129,-199v-27,0,-30,-23,-47,-33r-35,33r-11,0r38,-53r16,0",w:164},"~":{d:"22,-84v7,-57,50,-24,77,-15v6,0,11,-6,14,-19r12,2v-7,57,-50,24,-77,15v-6,0,-11,6,-14,19",w:146},"$":{d:"128,-269r-5,26v14,2,27,6,38,10r-3,16v-11,-5,-24,-8,-37,-11r-15,96v45,17,64,34,64,66v0,43,-34,70,-85,67r-7,44r-12,-3r6,-42v-18,-3,-34,-8,-49,-14r3,-16v14,7,31,13,49,16r16,-107v-40,-14,-63,-28,-63,-63v-1,-39,35,-66,83,-60r4,-28xm155,-64v0,-24,-11,-39,-51,-53r-17,104v42,3,69,-20,68,-51xm44,-185v0,26,16,37,50,49r14,-94v-38,-6,-64,16,-64,45",w:195},"#":{d:"184,-243r-11,67r40,0r0,14r-42,0r-13,80r45,0r2,15r-49,0r-11,68r-14,0r11,-68r-72,0r-11,70r-13,-3r10,-67r-39,0r0,-15r41,0r13,-80r-45,0r-2,-14r49,0r11,-68r14,0r-11,68r72,0r11,-70xm85,-162r-13,80r72,0r13,-80r-72,0",w:229},"%":{d:"131,-180v0,40,-23,66,-53,66v-31,0,-54,-26,-54,-66v0,-40,23,-66,54,-66v30,0,53,26,53,66xm84,3r-14,-4r156,-245r14,3xm287,-63v0,40,-23,66,-53,66v-31,0,-54,-26,-54,-66v0,-40,23,-66,54,-66v30,0,53,26,53,66xm115,-180v0,-30,-15,-53,-38,-53v-23,0,-37,23,-37,53v0,30,15,52,38,52v23,0,37,-22,37,-52xm271,-63v0,-30,-15,-53,-38,-53v-23,0,-37,23,-37,53v0,30,15,53,38,53v23,0,37,-23,37,-53",w:311},'"':{d:"106,-243r-7,66r-9,-2r-7,-64r23,0xm49,-243r-6,66r-10,-2r-6,-64r22,0",w:132,k:{"4":19}},"'":{d:"49,-243r-6,66r-10,-2r-6,-64r22,0",w:76,k:{"4":19}},"+":{d:"183,-115r-73,0r0,74r-15,0r0,-74r-73,0r0,-14r73,0r0,-73r15,0r0,73r73,0r0,14",w:204},"=":{d:"193,-153r-164,0r0,-15r164,0r0,15xm193,-75r-164,0r0,-15r164,0r0,15",w:221},"<":{d:"176,-34r-155,-81r0,-14r155,-81r0,17r-137,71r137,71r0,17",w:204},">":{d:"184,-115r-156,81r0,-16r138,-71r-138,-72r0,-17r156,81r0,14",w:204},"`":{d:"111,-199r-12,0r-50,-50r24,-6",w:164},"\u00a0":{w:82}}});
/*
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (C) 1996, 2007 Hoefler & Frere-Jones. http://www.typography.com
 * 
 * Trademark:
 * Whitney is a trademark of Hoefler & Frere-Jones, which may be registered in
 * certain jurisdictions.
 * 
 * Full name:
 * Whitney-LightItalic
 * 
 * Manufacturer:
 * Hoefler & Frere-Jones
 * 
 * Designer:
 * Hoefler & Frere-Jones
 * 
 * Vendor URL:
 * www.typography.com
 * 
 * License information:
 * http://www.typography.com/support/eula.html
 */
Cufon.registerFont({w:172,face:{"font-family":"Whitney Light","font-weight":300,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0",ascent:"288",descent:"-72","x-height":"4",bbox:"-33 -272 363 69","underline-thickness":"18","underline-position":"-18",slope:"-9",stemh:"15",stemv:"17","unicode-range":"U+0020-U+007E"},glyphs:{" ":{w:79},A:{d:"189,3r-19,-88r-106,0r-45,85r-18,0r135,-250r13,0r56,249xm139,-226r-67,126r95,0",w:231,k:{"?":20,v:13,T:32,V:31,W:23,Y:33,")":9,"]":9,"}":9,w:13,y:13,f:5,a:4,d:4,g:4,q:4,c:5,e:5,o:5,t:7,u:2,C:9,G:9,O:9,Q:9,U:13,"-":7,"*":17}},B:{d:"175,-193v0,32,-23,52,-50,62v77,24,40,139,-41,131r-63,0r39,-248v58,-2,116,-2,115,55xm93,-138v68,8,90,-98,16,-96r-34,0r-15,96r33,0xm150,-75v0,-40,-44,-52,-93,-48r-17,108v59,5,110,-7,110,-60",w:189,k:{"&":-5,x:5,v:3,X:5,T:8,V:9,W:7,Y:11,Z:3,")":6,"]":6,"}":6,w:3,y:3}},C:{d:"205,-232r-3,19v-73,-65,-161,12,-161,112v0,88,78,113,136,69r0,18v-67,42,-154,12,-154,-87v0,-105,97,-193,182,-131",w:203,k:{v:13,X:5,j:3,x:6,T:3,V:3,W:3,Y:6,Z:3,w:13,y:13,A:2,f:5,i:3,b:3,h:3,k:3,l:3,a:5,d:5,g:5,q:5,c:6,e:6,o:6,u:3,C:8,G:8,O:8,Q:8,"-":6}},D:{d:"219,-145v0,80,-55,145,-135,145r-63,0r39,-248v94,-9,159,19,159,103xm40,-15v101,12,158,-43,160,-130v2,-68,-47,-97,-125,-89",w:228,k:{"?":5,X:15,x:3,J:7,"/":19,T:19,V:11,W:11,Y:20,Z:9,")":13,"]":13,"}":13,A:8,".":12,",":12,a:3,d:3,g:3,q:3,z:3}},E:{d:"179,-248r-3,14r-101,0r-15,96r80,0r0,15r-83,0r-17,108r105,0r-2,15r-122,0r39,-248r119,0",w:171,k:{v:6,w:6,y:6,a:1,d:1,g:1,q:1,c:3,e:3,o:3,C:3,G:3,O:3,Q:3}},F:{d:"174,-248r-3,14r-96,0r-16,100r77,0r0,15r-79,0r-19,119r-17,0r39,-248r114,0",w:160,k:{"/":33,"?":-3,"&":6,x:16,v:10,j:6,X:5,M:5,J:21,Z:6,w:10,y:10,A:20,S:3,":":5,";":5,".":26,",":26,f:8,i:6,b:3,h:3,k:3,l:3,a:11,d:11,g:11,q:11,m:11,n:11,p:11,r:11,c:11,e:11,o:11,s:5,t:6,u:11,C:3,G:3,O:3,Q:3,z:15}},G:{d:"204,-126r-18,109v-68,48,-163,10,-163,-83v0,-107,100,-195,185,-131r-4,19v-73,-66,-163,11,-163,112v0,79,74,109,129,75r14,-86r-63,0r0,-15r83,0",w:222,k:{"?":3,v:3,T:8,V:6,W:6,Y:11,w:3,y:3}},H:{d:"230,-248r-40,248r-16,0r19,-123r-136,0r-19,123r-17,0r39,-248r17,0r-17,110r135,0r18,-110r17,0",w:238},I:{d:"80,-248r-39,248r-17,0r39,-248r17,0",w:91},J:{d:"117,-248r-30,185v-8,54,-41,72,-88,62r0,-16v38,11,65,-2,72,-47r29,-184r17,0",w:123,k:{J:3,A:4,".":3,",":3}},K:{d:"215,-248r-137,116r106,130r-19,5r-107,-133r-20,130r-17,0r39,-248r17,0r-18,114r133,-114r23,0",w:203,k:{"?":3,v:18,x:6,"&":3,V:7,W:6,Y:6,w:18,y:19,S:3,f:6,a:9,d:9,g:9,q:9,c:11,e:11,o:11,t:8,u:5,C:16,G:16,O:16,Q:16,U:4,"-":16}},L:{d:"135,0r-114,0r39,-248r17,0r-37,233r95,0r0,15",w:157,k:{"?":19,v:19,T:39,V:35,W:32,Y:39,")":3,"]":3,"}":3,w:19,y:19,f:6,a:5,d:5,g:5,q:5,c:6,e:6,o:6,t:8,C:18,G:18,O:18,Q:18,U:14,"-":16,"*":26}},M:{d:"289,-248r-19,248r-17,0r18,-222r-124,223r-9,0r-54,-223r-52,222r-16,0r60,-248r19,0r51,222r122,-222r21,0",w:312,k:{T:7,V:9,W:9,Y:13,U:4}},N:{d:"230,-248r-40,248r-10,0r-108,-219r-35,219r-16,0r39,-248r16,0r104,212r34,-212r16,0",w:238},O:{d:"237,-145v0,81,-55,150,-121,150v-58,0,-93,-48,-93,-109v0,-81,54,-149,120,-149v58,0,94,47,94,108xm219,-145v0,-55,-31,-93,-76,-93v-55,0,-102,58,-102,134v0,55,31,93,76,93v55,0,102,-58,102,-134",w:246,k:{"?":5,X:12,J:4,"/":16,T:16,V:9,W:9,Y:17,Z:6,")":10,"]":10,"}":10,A:9,".":10,",":10}},P:{d:"178,-185v-2,57,-54,84,-123,77r-17,108r-17,0r39,-248v63,-4,120,4,118,63xm161,-184v0,-44,-37,-54,-86,-50r-17,111v58,7,103,-18,103,-61",w:177,k:{"/":34,"&":6,X:11,J:23,T:3,Y:4,Z:13,")":8,"]":8,"}":8,A:19,".":27,",":27,f:-5,a:8,d:8,g:8,q:8,c:9,e:9,o:9,s:4,t:-5,"-":4}},Q:{d:"199,35r-3,18v-67,-39,-173,-53,-173,-157v0,-81,54,-149,120,-149v58,0,94,48,94,107v0,78,-46,138,-107,149xm219,-145v0,-55,-31,-93,-76,-93v-55,0,-102,58,-102,134v0,55,31,94,76,94v55,0,102,-59,102,-135",w:246,k:{"?":5,X:12,J:2,T:16,V:11,W:11,Y:17,Z:6,")":8,"]":8,"}":8,A:9,S:1,".":10,",":10}},R:{d:"178,-188v0,39,-27,68,-68,74r64,113r-18,4r-65,-115r-35,0r-18,112r-17,0r39,-248v62,-4,118,3,118,60xm161,-188v0,-41,-40,-49,-86,-46r-17,107v58,6,103,-14,103,-61",w:192,k:{v:5,T:8,V:9,W:9,Y:14,w:5,a:5,d:5,g:5,q:5,c:6,e:6,o:6,C:2,G:2,O:2,Q:2,"-":5}},S:{d:"165,-238r-3,19v-33,-30,-106,-20,-106,31v0,20,12,34,43,52v40,23,53,39,53,69v0,69,-97,87,-143,51r3,-18v37,33,123,30,123,-30v0,-23,-9,-37,-42,-56v-40,-23,-54,-38,-54,-66v0,-58,81,-83,126,-52",k:{"?":5,v:3,X:3,x:5,"&":-5,T:7,V:6,W:4,Y:9,Z:1,")":5,"]":5,"}":5,w:3,y:3,S:3,C:1,G:1,O:1,Q:1}},T:{d:"204,-234r-77,0r-37,234r-17,0r37,-234r-76,0r3,-14r167,0r0,14",w:188,k:{v:34,X:5,j:12,x:34,J:23,"/":39,"&":18,M:6,Z:6,w:34,y:34,A:32,S:5,":":23,";":23,".":33,",":33,f:11,i:12,b:6,h:6,k:6,l:6,a:32,d:32,g:32,q:32,m:29,n:29,p:29,r:29,c:34,e:34,o:34,s:31,t:16,u:29,C:9,G:9,O:9,Q:9,z:31,"-":23}},U:{d:"238,-248v-22,99,-7,252,-124,252v-58,0,-89,-44,-79,-108r22,-144r17,0r-25,170v0,41,25,67,67,67v101,-1,83,-151,105,-237r17,0",w:243,k:{J:5,A:3}},V:{d:"241,-248r-134,249r-13,0r-54,-248r15,-4r49,229r119,-226r18,0",w:229,k:{v:15,X:6,j:9,x:22,J:22,"/":45,"&":12,M:9,Z:4,w:15,y:15,A:31,S:6,":":12,";":12,".":32,",":32,f:6,i:9,a:22,d:22,g:22,q:22,m:14,n:14,p:14,r:14,c:23,e:23,o:23,s:16,t:9,u:14,C:9,G:9,O:9,Q:9,z:19,"-":19}},W:{d:"363,-248r-113,248r-13,0r-38,-222r-109,222r-12,0r-34,-247r17,-4r28,222r105,-219r17,0r37,219r97,-219r18,0",w:354,k:{v:9,X:4,j:6,x:15,J:21,"/":32,"&":9,M:9,Z:3,w:9,y:9,A:23,S:4,":":11,";":11,".":26,",":26,f:6,i:6,a:20,d:20,g:20,q:20,m:13,n:13,p:13,r:13,c:22,e:22,o:22,s:14,t:4,u:13,C:7,G:7,O:7,Q:7,z:12,"-":15}},X:{d:"218,-248r-95,119r63,127r-18,4r-56,-119r-92,117r-20,0r104,-130r-57,-116r17,-4r52,107r82,-105r20,0",w:214,k:{"?":6,"&":3,v:13,X:3,T:5,V:8,W:6,Y:8,w:13,y:13,S:3,f:3,a:7,d:7,g:7,q:7,c:9,e:9,o:9,t:6,u:5,C:12,G:12,O:12,Q:12,U:2,"-":19,"*":6}},Y:{d:"222,-248r-106,141r-17,107r-17,0r17,-107r-60,-140r16,-4r55,130r93,-127r19,0",w:207,k:{v:26,X:5,j:7,x:29,J:27,"/":45,"&":22,M:13,Z:6,w:26,y:26,A:33,S:5,":":22,";":22,".":39,",":39,f:7,i:7,a:29,d:29,g:29,q:29,m:25,n:25,p:25,r:25,c:27,e:27,o:27,s:25,t:12,u:25,C:13,G:13,O:13,Q:13,z:29,"-":29}},Z:{d:"208,-248r-2,11r-174,223r140,0r0,14r-164,0r2,-11r174,-223r-130,0r0,-14r154,0",w:204,k:{v:10,"&":3,w:10,y:10,f:5,a:11,d:11,g:11,q:11,c:11,e:11,o:11,t:3,u:3,C:10,G:10,O:10,Q:10,"-":13}},a:{d:"121,-41v-26,28,-45,45,-64,45v-26,0,-41,-22,-41,-57v0,-84,66,-145,139,-108v-8,52,-21,98,-18,161r-14,0xm122,-59r16,-92v-58,-23,-103,23,-105,97v0,28,11,43,26,43v14,0,30,-13,63,-48",w:171,k:{"?":13,v:3,w:3,y:3}},b:{d:"17,-10r39,-244r17,-3r-20,120v34,-53,104,-49,104,29v0,84,-69,134,-140,98xm35,-20v56,26,104,-14,104,-87v0,-74,-50,-60,-89,-8",k:{"?":13,v:5,x:6,"/":3,")":6,"]":6,"}":6,w:5,y:5,".":3,",":3,z:3}},c:{d:"140,-158r-3,17v-48,-44,-104,6,-104,72v0,57,49,74,89,42r0,16v-44,33,-106,8,-106,-57v0,-73,67,-134,124,-90",w:145,k:{a:2,d:2,g:2,q:2,c:2,e:2,o:2}},d:{d:"171,-257v-11,86,-35,159,-33,257r-14,0r-2,-36v-22,26,-38,40,-59,40v-30,0,-47,-25,-47,-65v0,-76,56,-130,124,-104r14,-89xm138,-149v-57,-25,-105,13,-105,87v0,74,50,60,89,8"},e:{d:"34,-86v-12,71,50,97,96,54r0,16v-45,39,-114,18,-114,-53v0,-62,39,-104,77,-104v42,0,58,42,48,87r-107,0xm92,-158v-23,0,-47,23,-56,59r89,0v4,-37,-7,-59,-33,-59",w:158,k:{"?":13,v:4,x:3,w:6,y:4}},f:{d:"117,-241v-22,-6,-41,0,-45,24r-8,48r36,0r0,14r-37,0r-35,217r-17,3r35,-220r-26,0r2,-14r26,0v6,-45,9,-103,69,-88r0,16",w:96,k:{"?":-6,x:3,"/":10,")":-6,"]":-6,"}":-6,".":10,",":10,a:7,d:7,g:7,q:7,c:3,e:3,o:3,s:1,t:-3,z:1,"-":6,"*":-6}},g:{d:"155,-159r-25,157v-7,67,-70,78,-124,54r3,-16v47,23,99,18,105,-40r6,-33v-20,23,-36,37,-56,37v-30,0,-48,-24,-48,-63v-2,-82,71,-134,139,-96xm138,-149v-56,-25,-105,13,-105,85v0,72,52,57,90,6",k:{"?":10,"/":-13}},h:{d:"116,-173v30,0,42,20,37,51r-19,122r-17,0r21,-134v0,-15,-9,-24,-24,-24v-18,0,-36,16,-65,49r-17,109r-17,0r41,-254r17,-3r-20,126v24,-26,43,-42,63,-42",w:173,k:{"?":13,v:3,w:3,y:3}},i:{d:"77,-230v0,8,-7,15,-15,15v-7,0,-14,-7,-14,-15v0,-8,7,-14,14,-14v8,0,15,6,15,14xm62,-169r-28,169r-16,0r27,-169r17,0",w:79},j:{d:"77,-230v0,8,-7,15,-15,15v-7,0,-14,-7,-14,-15v0,-8,7,-14,14,-14v8,0,15,6,15,14xm62,-169r-32,199v-5,31,-23,37,-51,33r0,-14v20,1,31,-1,35,-21r31,-197r17,0",w:79,k:{"/":-13}},k:{d:"32,0r-17,0r41,-254r17,-3r-26,162r83,-74r24,0r-89,77r68,90r-18,5r-69,-94",w:151,k:{"?":6,v:6,x:3,w:6,y:6,a:7,d:7,g:7,q:7,c:10,e:10,o:10,s:3,t:3,u:3,"-":10,"*":12}},l:{d:"75,-257r-41,257r-16,0r40,-254",w:79},m:{d:"215,-173v30,-1,41,21,36,51r-19,122r-17,0r21,-134v0,-15,-8,-24,-23,-24v-17,0,-35,16,-64,49r-17,109r-16,0r20,-134v0,-15,-8,-24,-23,-24v-17,0,-35,16,-64,49r-17,109r-17,0v8,-55,22,-103,19,-169r14,0r2,41v24,-27,44,-45,65,-45v27,0,39,15,37,43v23,-26,43,-43,63,-43",w:271,k:{"?":13,v:3,w:3,y:3}},n:{d:"116,-173v30,0,42,20,37,51r-19,122r-17,0r21,-134v0,-15,-9,-24,-24,-24v-18,0,-36,16,-65,49r-17,109r-17,0v8,-55,22,-103,19,-169r14,0r2,41v24,-27,45,-45,66,-45",w:173,k:{"?":13,v:3,w:3,y:3}},o:{d:"152,-102v0,54,-32,106,-78,106v-36,0,-58,-27,-58,-72v0,-54,33,-105,79,-105v36,0,57,26,57,71xm135,-100v0,-42,-20,-58,-42,-58v-33,0,-60,44,-60,89v0,42,20,58,43,58v33,0,59,-44,59,-89",w:168,k:{"?":13,v:5,x:6,"/":6,")":10,"]":10,"}":10,w:5,y:5,".":3,",":3,z:5}},p:{d:"5,65v10,-78,31,-144,29,-234r14,0r2,36v22,-26,37,-40,59,-40v30,0,48,24,48,65v0,77,-55,128,-125,104r-10,66xm35,-20v56,26,104,-14,104,-87v0,-74,-50,-60,-89,-8",k:{"?":13,v:5,x:6,"/":3,")":6,"]":6,"}":6,w:5,y:5,".":3,",":3,z:3}},q:{d:"155,-159r-35,221r-17,3r16,-98v-35,54,-103,50,-103,-28v0,-84,70,-136,139,-98xm138,-149v-57,-25,-105,13,-105,87v0,74,50,60,89,8",k:{"?":10,"/":-13}},r:{d:"113,-155v-28,3,-44,21,-65,52r-16,103r-17,0v8,-55,22,-103,19,-169r14,0r2,45v18,-28,37,-48,63,-48r0,17",w:109,k:{x:3,"/":23,".":26,",":26,a:6,d:6,g:6,q:6,c:5,e:5,o:5,s:3,t:-3,"-":6}},s:{d:"98,-44v4,-33,-82,-46,-72,-82v-2,-48,62,-58,95,-35r-3,17v-24,-21,-75,-21,-76,15v0,14,7,20,29,32v33,18,43,29,43,51v3,58,-77,60,-110,33r4,-17v23,24,85,31,90,-14",w:135,k:{"?":13,v:3,x:5,")":6,"]":6,"}":6,w:3,y:3,s:1}},t:{d:"107,-155r-43,0r-19,124v-2,21,23,21,40,17r0,14v-35,12,-61,-7,-54,-50r17,-105r-27,0r2,-14r27,0r9,-60r17,-4r-10,64r41,0r0,14",w:111,k:{"?":6,v:3,"/":-10,w:3,y:3,f:1,a:2,d:2,g:2,q:2,c:1,e:1,o:1,"-":6}},u:{d:"158,-169v-7,55,-21,104,-18,169r-15,0r-2,-41v-24,27,-44,45,-65,45v-30,0,-44,-20,-38,-52r20,-121r16,0r-20,133v0,15,8,24,23,24v18,0,37,-15,66,-48r16,-109r17,0",w:173,k:{"?":10}},v:{d:"159,-169r-88,171r-13,0r-34,-169r17,-4r27,149r73,-147r18,0",w:156,k:{"/":21,"?":6,x:3,")":6,"]":6,"}":6,".":15,",":15,a:5,d:5,g:5,q:5,c:5,e:5,o:5,s:3,"-":5}},w:{d:"247,-169r-84,171r-11,0r-20,-144r-64,144r-13,0r-29,-170r15,-4r24,148r65,-146r13,0r19,146r68,-145r17,0",w:245,k:{"?":6,x:3,"/":16,")":6,"]":6,"}":6,".":13,",":13,a:5,d:5,g:5,q:5,c:5,e:5,o:5,s:3,"-":3}},x:{d:"153,-169r-66,82r43,86r-16,4r-37,-78r-58,75r-19,0r69,-88r-39,-80r16,-4r34,72r54,-69r19,0",w:156,k:{"?":8,x:3,v:3,w:3,f:1,a:6,d:6,g:6,q:6,c:6,e:6,o:6,s:5,"-":13}},y:{d:"162,-169r-100,197v-15,29,-26,39,-55,35r0,-14v33,7,41,-27,54,-49r-37,-167r17,-4r31,151r72,-149r18,0",w:160,k:{"?":6,"/":21,")":6,"]":6,"}":6,".":15,",":15,a:5,d:5,g:5,q:5,c:5,e:5,o:5,s:3,"-":5}},z:{d:"146,-169r-2,12r-120,143r98,0r0,14r-120,0r2,-13r120,-142r-91,0r0,-14r113,0",w:151,k:{"?":6,"/":-6,a:7,d:7,g:7,q:7,c:7,e:7,o:7,s:1,z:3,"-":3}},"0":{d:"190,-156v0,89,-42,161,-99,161v-44,0,-68,-38,-68,-93v0,-89,42,-160,99,-160v44,0,68,37,68,92xm173,-155v0,-50,-20,-78,-51,-78v-45,0,-81,59,-81,144v0,50,20,79,51,79v45,0,81,-60,81,-145",w:201,k:{"/":10,"7":10,"3":2,"2":1,"1":5,".":3,",":3}},"1":{d:"107,-245r-39,245r-16,0r36,-225r-56,21r0,-14v26,-8,43,-25,75,-27",w:120},"2":{d:"172,-192v-2,68,-101,129,-142,177r117,0r0,15r-143,0r2,-12r106,-102v31,-30,42,-51,42,-77v0,-57,-71,-48,-108,-17r0,-17v39,-35,129,-32,126,33",w:181,k:{"7":5,"6":3,"2":3,"-":6,"4":13}},"3":{d:"167,-194v0,39,-29,58,-59,66v77,22,42,133,-36,133v-24,0,-46,-7,-67,-20r5,-16v45,35,124,28,125,-39v0,-34,-29,-53,-71,-51v1,-6,-4,-18,6,-15v46,0,80,-19,80,-56v0,-54,-70,-48,-108,-20r0,-16v39,-32,125,-26,125,34",w:176,k:{"/":3,"7":5}},"4":{d:"190,-73r-2,13r-41,0r-10,60r-16,0r10,-60r-119,0r1,-10r143,-175r20,0r-27,172r41,0xm133,-73r24,-153r-123,153r99,0",w:204},"5":{d:"171,-229r-96,0r-19,81v66,8,97,33,97,77v1,75,-90,93,-145,59r5,-15v48,31,123,21,124,-43v0,-39,-29,-59,-99,-65r24,-108r109,0r0,14",w:175,k:{"9":3,"7":10}},"6":{d:"166,-233v-66,14,-109,59,-122,114v42,-36,128,-38,128,38v0,47,-37,86,-81,86v-43,0,-69,-31,-69,-85v0,-79,52,-151,144,-169r0,16xm155,-81v0,-69,-76,-54,-115,-21v-6,50,13,92,51,92v35,0,64,-33,64,-71",w:189,k:{"9":3,"7":15,"1":9,"4":-3}},"7":{d:"184,-243r-1,10r-137,236r-15,-4r132,-228r-121,0r0,-14r142,0",w:178,k:{"/":46,"8":3,"6":15,"5":6,"2":1,"1":-3,"0":6,":":6,";":6,".":33,",":33,"-":19,"4":31}},"8":{d:"14,-59v0,-34,24,-55,62,-72v-60,-29,-39,-119,37,-117v41,0,65,25,65,57v0,32,-23,51,-55,65v75,29,47,130,-33,130v-49,0,-76,-28,-76,-63xm31,-59v0,27,24,49,59,49v32,0,60,-22,60,-54v0,-24,-12,-39,-59,-60v-42,18,-60,39,-60,65xm59,-185v0,19,10,35,49,52v36,-15,53,-34,53,-58v0,-26,-20,-42,-49,-42v-34,0,-53,23,-53,48",w:187,k:{"7":6}},"9":{d:"35,-10v64,-13,107,-57,121,-110v-42,36,-127,35,-127,-40v0,-48,37,-88,82,-88v43,0,68,31,68,85v0,79,-52,150,-144,168r0,-15xm46,-161v1,68,75,59,114,24v9,-49,-10,-97,-50,-97v-36,0,-64,34,-64,73",w:189,k:{"/":18,"7":8,"5":3,"3":5,"2":6,"1":4,".":12,",":12,"4":5}},".":{d:"39,-29r-5,29r-22,0r5,-29r22,0",w:73,k:{"9":13,"1":22,"7":8,"3":-6,v:15,"2":-6,"6":3,"0":3,T:33,V:32,W:26,Y:39,w:13,y:6,f:5,c:3,e:3,o:3,t:6,C:10,G:10,O:10,Q:10,"4":10}},",":{d:"44,-29r-44,77r-9,-2r31,-75r22,0",w:73,k:{"9":13,"1":22,"7":8,"3":-6,v:15,"2":-6,"6":3,"0":3,T:33,V:32,W:26,Y:39,w:13,y:6,f:5,c:3,e:3,o:3,t:6,C:10,G:10,O:10,Q:10,"4":10}},":":{d:"62,-169r-5,29r-21,0r4,-29r22,0xm41,-29r-5,29r-22,0r5,-29r22,0",w:76,k:{"7":10,T:23,V:12,W:11,Y:22}},";":{d:"64,-169r-5,29r-22,0r5,-29r22,0xm42,-29r-44,77r-8,-2r31,-75r21,0",w:76},"&":{d:"75,5v-35,0,-62,-23,-62,-60v0,-39,28,-67,77,-85v-39,-43,-21,-113,40,-113v18,0,35,5,50,14r-4,17v-32,-26,-93,-20,-90,25v3,49,54,88,76,126v12,-20,23,-44,32,-74r16,4v-12,33,-24,61,-39,83r41,56r-18,4r-33,-46v-25,32,-55,49,-86,49xm30,-56v0,70,93,52,122,0r-53,-72v-47,17,-69,41,-69,72",w:227,k:{T:30,V:17,W:14,Y:29,S:1,C:5,G:5,O:5,Q:5}},"!":{d:"82,-248r-34,182r-10,2r23,-184r21,0xm48,-29r-5,29r-21,0r4,-29r22,0",w:91},"?":{d:"159,-199v0,41,-28,62,-73,83r-11,49r-13,3r6,-61v43,-15,77,-41,74,-73v-4,-54,-71,-46,-106,-19r0,-16v36,-31,123,-27,123,34xm73,-29r-4,29r-21,0r4,-29r21,0",w:157},"-":{d:"113,-111r-3,18r-86,0r2,-18r87,0",w:131,k:{"1":15,"7":26,v:5,X:19,x:13,J:15,"2":10,T:23,V:19,W:15,Y:29,Z:8,w:3,y:5,A:7,S:6,f:3,z:5}},_:{d:"152,24r-3,14r-169,0r2,-14r170,0",w:168},"/":{d:"195,-247r-213,291r-15,-4r213,-290",w:177,k:{"/":65,"8":3,"6":19,"2":6,"0":13,x:36,v:30,j:6,X:6,M:8,J:23,Z:6,w:30,y:30,A:45,f:13,i:6,a:42,d:42,g:42,q:42,m:39,n:39,p:39,r:39,c:48,e:48,o:48,s:39,t:10,u:38,C:16,G:16,O:16,Q:16,z:36,"4":36}},"\\":{d:"191,41r-15,3r-170,-291r15,-3",w:177},"|":{d:"55,66r-15,3r0,-327r15,-2r0,326",w:95},"(":{d:"143,-245v-110,65,-132,182,-44,276r-15,4v-93,-101,-71,-226,61,-297",w:137,k:{j:-10,v:6,J:6,w:6,A:9,S:5,a:6,d:6,g:6,q:6,c:10,e:10,o:10,s:6,C:13,G:13,O:13,Q:13,"4":16}},")":{d:"5,20v110,-66,131,-182,43,-276r15,-4v93,101,71,226,-61,297",w:137},"[":{d:"141,-248r-2,13r-63,0r-41,260r62,0r0,13r-80,0r45,-286r79,0",w:132,k:{v:6,j:-10,J:6,w:6,A:9,S:5,a:6,d:6,g:6,q:6,c:10,e:10,o:10,s:6,C:13,G:13,O:13,Q:13,"4":16}},"]":{d:"122,-248r-45,286r-79,0r2,-13r63,0r42,-260r-63,0r0,-13r80,0",w:132},"{":{d:"163,-248r-2,13v-53,-6,-71,16,-66,70v4,41,-20,53,-46,61v54,6,19,72,15,105v-2,23,28,26,55,24r0,13v-37,1,-72,0,-70,-36v2,-38,44,-108,-30,-101r0,-12v49,6,63,-26,60,-80v-3,-46,33,-61,84,-57",w:159,k:{v:6,j:-10,J:6,w:6,A:9,S:5,a:6,d:6,g:6,q:6,c:10,e:10,o:10,s:6,C:13,G:13,O:13,Q:13,"4":16}},"}":{d:"3,38r2,-13v53,6,70,-16,66,-70v-3,-41,20,-53,46,-61v-53,-7,-19,-71,-15,-105v2,-23,-28,-26,-55,-24r0,-13v37,-1,72,0,70,36v-2,38,-43,107,30,100r0,13v-49,-6,-63,26,-60,80v3,46,-33,61,-84,57",w:159},"@":{d:"216,-18v-26,0,-40,-15,-40,-37v-20,23,-35,37,-54,37v-20,0,-36,-17,-36,-48v1,-70,62,-113,120,-83v-4,32,-13,60,-14,95v0,14,7,26,26,26v27,0,52,-30,52,-86v0,-63,-36,-101,-103,-101v-76,0,-137,59,-137,149v0,104,105,128,183,90r1,9v-19,10,-49,17,-80,17v-72,0,-114,-41,-114,-116v0,-94,64,-158,148,-158v72,0,112,42,112,109v0,62,-30,97,-64,97xm126,-32v14,0,27,-11,52,-41r12,-67v-46,-21,-86,15,-88,73v0,24,10,35,24,35",w:299},"*":{d:"141,-209r-43,18r25,42r-4,2r-32,-37r-31,37r-4,-2r25,-42r-44,-18r2,-5r46,11r4,-48r5,0r4,48r46,-11",w:144,k:{X:6,J:25,A:32}},"^":{d:"145,-199r-9,0r-31,-34r-39,34r-13,0r48,-53r15,0",w:164},"~":{d:"52,-118v27,-1,52,43,65,-1r12,3v-8,22,-21,34,-33,34v-26,0,-51,-44,-64,0r-12,-2v8,-22,20,-34,32,-34",w:143},"$":{d:"150,-269r-8,27v13,3,24,7,34,11r-2,16v-10,-6,-23,-10,-36,-13r-31,98v37,20,52,36,52,64v0,47,-41,74,-94,67r-14,44r-12,-3r13,-43v-18,-3,-34,-10,-47,-17r3,-16v14,9,31,16,48,20r34,-108v-32,-18,-51,-33,-51,-62v-1,-41,39,-67,90,-60r8,-28xm144,-65v0,-20,-11,-33,-42,-50r-33,103v42,6,76,-16,75,-53xm54,-184v0,19,13,32,41,47r29,-94v-40,-6,-71,14,-70,47",w:180},"#":{d:"197,-243r-16,67r40,0r0,14r-43,0r-18,81r44,0r3,14r-50,0r-16,68r-14,0r16,-68r-72,0r-15,70r-14,-3r16,-67r-40,0r0,-14r43,0r18,-81r-44,0r-3,-14r50,0r16,-68r14,0r-16,68r71,0r16,-70xm93,-162r-18,81r71,0r18,-81r-71,0",w:223},"%":{d:"128,-192v0,40,-24,78,-56,78v-27,0,-43,-23,-43,-55v0,-40,24,-77,56,-77v28,0,43,22,43,54xm256,-243r-194,246r-14,-3r193,-246xm84,-233v-23,0,-40,31,-40,66v0,27,13,40,28,40v23,0,40,-31,40,-66v0,-27,-13,-40,-28,-40xm275,-75v0,40,-24,78,-56,78v-28,0,-43,-22,-43,-54v0,-40,24,-78,56,-78v27,0,43,22,43,54xm259,-76v0,-27,-13,-40,-28,-40v-23,0,-40,31,-40,66v0,27,13,40,28,40v23,0,40,-31,40,-66",w:291},'"':{d:"129,-243r-16,59r-9,-2r3,-57r22,0xm73,-243r-16,59r-9,-2r3,-57r22,0",w:129,k:{"4":19}},"'":{d:"73,-243r-16,59r-9,-2r3,-57r22,0",w:73,k:{"4":19}},"+":{d:"188,-115r-73,0r-12,74r-14,0r11,-74r-73,0r2,-14r73,0r12,-73r15,0r-12,73r73,0",w:204},"=":{d:"202,-153r-163,0r2,-15r164,0xm190,-75r-164,0r2,-15r164,0",w:221},"<":{d:"168,-34r-142,-81r2,-14r168,-81r-3,18r-148,71r126,71",w:204},">":{d:"49,-210r142,81r-2,14r-168,81r2,-17r149,-71r-126,-72",w:204},"`":{d:"128,-199r-12,0r-42,-50r25,-6",w:164},"\u00a0":{w:79}}});var cover={initialize:function(){Cufon.replace(".intro-box h2",{fontFamily:"Whitney Black"});Cufon.replace("#box-03 p",{fontFamily:"Whitney Light"});Cufon.replace("#box-03 p strong",{fontFamily:"Whitney Black"});$("#signup-form").preventDoubleSubmit();var a=$("#main-nav .login-link a");a.click(function(){if(!a.hasClass("logged-in")){if(!a.hasClass("current")){if($.browser.msie){$("#mini-login").show()}else{$("#mini-login").fadeIn("fast")}var b=$("#mini-username");if(b.val()===""){b.focus()}else{$("#mini-password").focus()}}return false}});$("#close-login-link").click(function(){if($.browser.msie){$("#mini-login").hide()}else{$("#mini-login").fadeOut()}return false});$("input.remember").checkLabel();$(".help-link").fancybox({overlayColor:"#000",overlayOpacity:0.5});$("#launch-iphone-site").click(function(){$("#id_iphone").val("True").parents("form:first").submit();return false});$.preloadCssImages()},showMovie:function(d,b,c,a){if(!d instanceof $){d=$(d)}if(d.length>0){d.html(QT_GenerateOBJECTText_XHTML(b,c,a,"","autoplay","true","align","middle"))}}};
