try{/*
 * 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")}})})();
}finally{};

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

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

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

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

})(jQuery);
}finally{};

try{/**
 * jQuery lightBox plugin
 * This jQuery plugin was inspired and based on Lightbox 2 by Lokesh Dhakar (http://www.huddletogether.com/projects/lightbox2/)
 * and adapted to me for use like a plugin from jQuery.
 * @name jquery-lightbox-0.5.js
 * @author Leandro Vieira Pinho - http://leandrovieira.com
 * @version 0.5
 * @date April 11, 2008
 * @category jQuery plugin
 * @copyright (c) 2008 Leandro Vieira Pinho (leandrovieira.com)
 * @license CC Attribution-No Derivative Works 2.5 Brazil - http://creativecommons.org/licenses/by-nd/2.5/br/deed.en_US
 * @example Visit http://leandrovieira.com/projects/jquery/lightbox/ for more informations about this jQuery plugin
 */

// Offering a Custom Alias suport - More info: http://docs.jquery.com/Plugins/Authoring#Custom_Alias
(function($) {
	/**
	 * $ is an alias to jQuery object
	 *
	 */
	$.fn.lightBox = function(settings) {
		// Settings to configure the jQuery lightBox plugin how you like
		settings = jQuery.extend({
			// Configuration related to overlay
			overlayBgColor: 		'#000',		// (string) Background color to overlay; inform a hexadecimal value like: #RRGGBB. Where RR, GG, and BB are the hexadecimal values for the red, green, and blue values of the color.
			overlayOpacity:			0.8,		// (integer) Opacity value to overlay; inform: 0.X. Where X are number from 0 to 9
			// Configuration related to navigation
			fixedNavigation:		false,		// (boolean) Boolean that informs if the navigation (next and prev button) will be fixed or not in the interface.
			// Configuration related to images
			imageLoading:			'/wp-content/themes/kcci/images/lightbox/lightbox-ico-loading.gif',		// (string) Path and the name of the loading icon
			imageBtnPrev:			'/wp-content/themes/kcci/images/lightbox/lightbox-btn-prev.gif',			// (string) Path and the name of the prev button image
			imageBtnNext:			'/wp-content/themes/kcci/images/lightbox/lightbox-btn-next.gif',			// (string) Path and the name of the next button image
			imageBtnClose:			'/wp-content/themes/kcci/images/lightbox/lightbox-btn-close.gif',		// (string) Path and the name of the close btn
			imageBlank:				'/wp-content/themes/kcci/images/lightbox/lightbox-blank.gif',			// (string) Path and the name of a blank image (one pixel)
			// Configuration related to container image box
			containerBorderSize:	10,			// (integer) If you adjust the padding in the CSS for the container, #lightbox-container-image-box, you will need to update this value
			containerResizeSpeed:	400,		// (integer) Specify the resize duration of container image. These number are miliseconds. 400 is default.
			// Configuration related to texts in caption. For example: Image 2 of 8. You can alter either "Image" and "of" texts.
			txtImage:				'Image',	// (string) Specify text "Image"
			txtOf:					'of',		// (string) Specify text "of"
			// Configuration related to keyboard navigation
			keyToClose:				'c',		// (string) (c = close) Letter to close the jQuery lightBox interface. Beyond this letter, the letter X and the SCAPE key is used to.
			keyToPrev:				'p',		// (string) (p = previous) Letter to show the previous image
			keyToNext:				'n',		// (string) (n = next) Letter to show the next image.
			// Donｴt alter these variables in any way
			imageArray:				[],
			activeImage:			0
		},settings);
		// Caching the jQuery object with all elements matched
		var jQueryMatchedObj = this; // This, in this context, refer to jQuery object
		/**
		 * Initializing the plugin calling the start function
		 *
		 * @return boolean false
		 */
		function _initialize() {
			_start(this,jQueryMatchedObj); // This, in this context, refer to object (link) which the user have clicked
			return false; // Avoid the browser following the link
		}
		/**
		 * Start the jQuery lightBox plugin
		 *
		 * @param object objClicked The object (link) whick the user have clicked
		 * @param object jQueryMatchedObj The jQuery object with all elements matched
		 */
		function _start(objClicked,jQueryMatchedObj) {
			// Hime some elements to avoid conflict with overlay in IE. These elements appear above the overlay.
			$('embed, object, select').css({ 'visibility' : 'hidden' });
			// Call the function to create the markup structure; style some elements; assign events in some elements.
			_set_interface();
			// Unset total images in imageArray
			settings.imageArray.length = 0;
			// Unset image active information
			settings.activeImage = 0;
			// We have an image set? Or just an image? Letｴs see it.
			if ( jQueryMatchedObj.length == 1 ) {
				settings.imageArray.push(new Array(objClicked.getAttribute('href'),objClicked.getAttribute('title')));
			} else {
				// Add an Array (as many as we have), with href and title atributes, inside the Array that storage the images references		
				for ( var i = 0; i < jQueryMatchedObj.length; i++ ) {
					settings.imageArray.push(new Array(jQueryMatchedObj[i].getAttribute('href'),jQueryMatchedObj[i].getAttribute('title')));
				}
			}
			while ( settings.imageArray[settings.activeImage][0] != objClicked.getAttribute('href') ) {
				settings.activeImage++;
			}
			// Call the function that prepares image exibition
			_set_image_to_view();
		}
		/**
		 * Create the jQuery lightBox plugin interface
		 *
		 * The HTML markup will be like that:
			<div id="jquery-overlay"></div>
			<div id="jquery-lightbox">
				<div id="lightbox-container-image-box">
					<div id="lightbox-container-image">
						<img src="../fotos/XX.jpg" id="lightbox-image">
						<div id="lightbox-nav">
							<a href="#" id="lightbox-nav-btnPrev"></a>
							<a href="#" id="lightbox-nav-btnNext"></a>
						</div>
						<div id="lightbox-loading">
							<a href="#" id="lightbox-loading-link">
								<img src="../images/lightbox-ico-loading.gif">
							</a>
						</div>
					</div>
				</div>
				<div id="lightbox-container-image-data-box">
					<div id="lightbox-container-image-data">
						<div id="lightbox-image-details">
							<span id="lightbox-image-details-caption"></span>
							<span id="lightbox-image-details-currentNumber"></span>
						</div>
						<div id="lightbox-secNav">
							<a href="#" id="lightbox-secNav-btnClose">
								<img src="../images/lightbox-btn-close.gif">
							</a>
						</div>
					</div>
				</div>
			</div>
		 *
		 */
		function _set_interface() {
			// Apply the HTML markup into body tag
			$('body').append('<div id="jquery-overlay"></div><div id="jquery-lightbox"><div id="lightbox-container-image-box"><div id="lightbox-container-image"><img id="lightbox-image"><div style="" id="lightbox-nav"><a href="#" id="lightbox-nav-btnPrev"></a><a href="#" id="lightbox-nav-btnNext"></a></div><div id="lightbox-loading"><a href="#" id="lightbox-loading-link"><img src="' + settings.imageLoading + '"></a></div></div></div><div id="lightbox-container-image-data-box"><div id="lightbox-container-image-data"><div id="lightbox-image-details"><span id="lightbox-image-details-caption"></span><span id="lightbox-image-details-currentNumber"></span></div><div id="lightbox-secNav"><a href="#" id="lightbox-secNav-btnClose"><img src="' + settings.imageBtnClose + '"></a></div></div></div></div>');	
			// Get page sizes
			var arrPageSizes = ___getPageSize();
			// Style overlay and show it
			$('#jquery-overlay').css({
				backgroundColor:	settings.overlayBgColor,
				opacity:			settings.overlayOpacity,
				width:				arrPageSizes[0],
				height:				arrPageSizes[1]
			}).fadeIn();
			// Get page scroll
			var arrPageScroll = ___getPageScroll();
			// Calculate top and left offset for the jquery-lightbox div object and show it
			$('#jquery-lightbox').css({
				top:	arrPageScroll[1] + (arrPageSizes[3] / 10),
				left:	arrPageScroll[0]
			}).show();
			// Assigning click events in elements to close overlay
			$('#jquery-overlay,#jquery-lightbox').click(function() {
				_finish();									
			});
			// Assign the _finish function to lightbox-loading-link and lightbox-secNav-btnClose objects
			$('#lightbox-loading-link,#lightbox-secNav-btnClose').click(function() {
				_finish();
				return false;
			});
			// If window was resized, calculate the new overlay dimensions
			$(window).resize(function() {
				// Get page sizes
				var arrPageSizes = ___getPageSize();
				// Style overlay and show it
				$('#jquery-overlay').css({
					width:		arrPageSizes[0],
					height:		arrPageSizes[1]
				});
				// Get page scroll
				var arrPageScroll = ___getPageScroll();
				// Calculate top and left offset for the jquery-lightbox div object and show it
				$('#jquery-lightbox').css({
					top:	arrPageScroll[1] + (arrPageSizes[3] / 10),
					left:	arrPageScroll[0]
				});
			});
		}
		/**
		 * Prepares image exibition; doing a imageｴs preloader to calculate itｴs size
		 *
		 */
		function _set_image_to_view() { // show the loading
			// Show the loading
			$('#lightbox-loading').show();
			if ( settings.fixedNavigation ) {
				$('#lightbox-image,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber').hide();
			} else {
				// Hide some elements
				$('#lightbox-image,#lightbox-nav,#lightbox-nav-btnPrev,#lightbox-nav-btnNext,#lightbox-container-image-data-box,#lightbox-image-details-currentNumber').hide();
			}
			// Image preload process
			var objImagePreloader = new Image();
			objImagePreloader.onload = function() {
				$('#lightbox-image').attr('src',settings.imageArray[settings.activeImage][0]);
				// Perfomance an effect in the image container resizing it
				_resize_container_image_box(objImagePreloader.width,objImagePreloader.height);
				//	clear onLoad, IE behaves irratically with animated gifs otherwise
				objImagePreloader.onload=function(){};
			};
			objImagePreloader.src = settings.imageArray[settings.activeImage][0];
		};
		/**
		 * Perfomance an effect in the image container resizing it
		 *
		 * @param integer intImageWidth The imageｴs width that will be showed
		 * @param integer intImageHeight The imageｴs height that will be showed
		 */
		function _resize_container_image_box(intImageWidth,intImageHeight) {
			// Get current width and height
			var intCurrentWidth = $('#lightbox-container-image-box').width();
			var intCurrentHeight = $('#lightbox-container-image-box').height();
			// Get the width and height of the selected image plus the padding
			var intWidth = (intImageWidth + (settings.containerBorderSize * 2)); // Plus the imageｴs width and the left and right padding value
			var intHeight = (intImageHeight + (settings.containerBorderSize * 2)); // Plus the imageｴs height and the left and right padding value
			// Diferences
			var intDiffW = intCurrentWidth - intWidth;
			var intDiffH = intCurrentHeight - intHeight;
			// Perfomance the effect
			$('#lightbox-container-image-box').animate({ width: intWidth, height: intHeight },settings.containerResizeSpeed,function() { _show_image(); });
			if ( ( intDiffW == 0 ) && ( intDiffH == 0 ) ) {
				if ( $.browser.msie ) {
					___pause(250);
				} else {
					___pause(100);	
				}
			} 
			$('#lightbox-container-image-data-box').css({ width: intImageWidth });
			$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({ height: intImageHeight + (settings.containerBorderSize * 2) });
		};
		/**
		 * Show the prepared image
		 *
		 */
		function _show_image() {
			$('#lightbox-loading').hide();
			$('#lightbox-image').fadeIn(function() {
				_show_image_data();
				_set_navigation();
			});
			_preload_neighbor_images();
		};
		/**
		 * Show the image information
		 *
		 */
		function _show_image_data() {
			$('#lightbox-container-image-data-box').slideDown('fast');
			$('#lightbox-image-details-caption').hide();
			if ( settings.imageArray[settings.activeImage][1] ) {
				$('#lightbox-image-details-caption').html(settings.imageArray[settings.activeImage][1]).show();
			}
			// If we have a image set, display 'Image X of X'
			if ( settings.imageArray.length > 1 ) {
				$('#lightbox-image-details-currentNumber').html(settings.txtImage + ' ' + ( settings.activeImage + 1 ) + ' ' + settings.txtOf + ' ' + settings.imageArray.length).show();
			}		
		}
		/**
		 * Display the button navigations
		 *
		 */
		function _set_navigation() {
			$('#lightbox-nav').show();

			// Instead to define this configuration in CSS file, we define here. And itｴs need to IE. Just.
			$('#lightbox-nav-btnPrev,#lightbox-nav-btnNext').css({ 'background' : 'transparent url(' + settings.imageBlank + ') no-repeat' });
			
			// Show the prev button, if not the first image in set
			if ( settings.activeImage != 0 ) {
				if ( settings.fixedNavigation ) {
					$('#lightbox-nav-btnPrev').css({ 'background' : 'url(' + settings.imageBtnPrev + ') left 15% no-repeat' })
						.unbind()
						.bind('click',function() {
							settings.activeImage = settings.activeImage - 1;
							_set_image_to_view();
							return false;
						});
				} else {
					// Show the images button for Next buttons
					$('#lightbox-nav-btnPrev').unbind().hover(function() {
						$(this).css({ 'background' : 'url(' + settings.imageBtnPrev + ') left 15% no-repeat' });
					},function() {
						$(this).css({ 'background' : 'transparent url(' + settings.imageBlank + ') no-repeat' });
					}).show().bind('click',function() {
						settings.activeImage = settings.activeImage - 1;
						_set_image_to_view();
						return false;
					});
				}
			}
			
			// Show the next button, if not the last image in set
			if ( settings.activeImage != ( settings.imageArray.length -1 ) ) {
				if ( settings.fixedNavigation ) {
					$('#lightbox-nav-btnNext').css({ 'background' : 'url(' + settings.imageBtnNext + ') right 15% no-repeat' })
						.unbind()
						.bind('click',function() {
							settings.activeImage = settings.activeImage + 1;
							_set_image_to_view();
							return false;
						});
				} else {
					// Show the images button for Next buttons
					$('#lightbox-nav-btnNext').unbind().hover(function() {
						$(this).css({ 'background' : 'url(' + settings.imageBtnNext + ') right 15% no-repeat' });
					},function() {
						$(this).css({ 'background' : 'transparent url(' + settings.imageBlank + ') no-repeat' });
					}).show().bind('click',function() {
						settings.activeImage = settings.activeImage + 1;
						_set_image_to_view();
						return false;
					});
				}
			}
			// Enable keyboard navigation
			_enable_keyboard_navigation();
		}
		/**
		 * Enable a support to keyboard navigation
		 *
		 */
		function _enable_keyboard_navigation() {
			$(document).keydown(function(objEvent) {
				_keyboard_action(objEvent);
			});
		}
		/**
		 * Disable the support to keyboard navigation
		 *
		 */
		function _disable_keyboard_navigation() {
			$(document).unbind();
		}
		/**
		 * Perform the keyboard actions
		 *
		 */
		function _keyboard_action(objEvent) {
			// To ie
			if ( objEvent == null ) {
				keycode = event.keyCode;
				escapeKey = 27;
			// To Mozilla
			} else {
				keycode = objEvent.keyCode;
				escapeKey = objEvent.DOM_VK_ESCAPE;
			}
			// Get the key in lower case form
			key = String.fromCharCode(keycode).toLowerCase();
			// Verify the keys to close the ligthBox
			if ( ( key == settings.keyToClose ) || ( key == 'x' ) || ( keycode == escapeKey ) ) {
				_finish();
			}
			// Verify the key to show the previous image
			if ( ( key == settings.keyToPrev ) || ( keycode == 37 ) ) {
				// If weｴre not showing the first image, call the previous
				if ( settings.activeImage != 0 ) {
					settings.activeImage = settings.activeImage - 1;
					_set_image_to_view();
					_disable_keyboard_navigation();
				}
			}
			// Verify the key to show the next image
			if ( ( key == settings.keyToNext ) || ( keycode == 39 ) ) {
				// If weｴre not showing the last image, call the next
				if ( settings.activeImage != ( settings.imageArray.length - 1 ) ) {
					settings.activeImage = settings.activeImage + 1;
					_set_image_to_view();
					_disable_keyboard_navigation();
				}
			}
		}
		/**
		 * Preload prev and next images being showed
		 *
		 */
		function _preload_neighbor_images() {
			if ( (settings.imageArray.length -1) > settings.activeImage ) {
				objNext = new Image();
				objNext.src = settings.imageArray[settings.activeImage + 1][0];
			}
			if ( settings.activeImage > 0 ) {
				objPrev = new Image();
				objPrev.src = settings.imageArray[settings.activeImage -1][0];
			}
		}
		/**
		 * Remove jQuery lightBox plugin HTML markup
		 *
		 */
		function _finish() {
			$('#jquery-lightbox').remove();
			$('#jquery-overlay').fadeOut(function() { $('#jquery-overlay').remove(); });
			// Show some elements to avoid conflict with overlay in IE. These elements appear above the overlay.
			$('embed, object, select').css({ 'visibility' : 'visible' });
		}
		/**
		 / THIRD FUNCTION
		 * getPageSize() by quirksmode.com
		 *
		 * @return Array Return an array with page width, height and window width, height
		 */
		function ___getPageSize() {
			var xScroll, yScroll;
			if (window.innerHeight && window.scrollMaxY) {	
				xScroll = window.innerWidth + window.scrollMaxX;
				yScroll = window.innerHeight + window.scrollMaxY;
			} else if (document.body.scrollHeight > document.body.offsetHeight){ // all but Explorer Mac
				xScroll = document.body.scrollWidth;
				yScroll = document.body.scrollHeight;
			} else { // Explorer Mac...would also work in Explorer 6 Strict, Mozilla and Safari
				xScroll = document.body.offsetWidth;
				yScroll = document.body.offsetHeight;
			}
			var windowWidth, windowHeight;
			if (self.innerHeight) {	// all except Explorer
				if(document.documentElement.clientWidth){
					windowWidth = document.documentElement.clientWidth; 
				} else {
					windowWidth = self.innerWidth;
				}
				windowHeight = self.innerHeight;
			} else if (document.documentElement && document.documentElement.clientHeight) { // Explorer 6 Strict Mode
				windowWidth = document.documentElement.clientWidth;
				windowHeight = document.documentElement.clientHeight;
			} else if (document.body) { // other Explorers
				windowWidth = document.body.clientWidth;
				windowHeight = document.body.clientHeight;
			}	
			// for small pages with total height less then height of the viewport
			if(yScroll < windowHeight){
				pageHeight = windowHeight;
			} else { 
				pageHeight = yScroll;
			}
			// for small pages with total width less then width of the viewport
			if(xScroll < windowWidth){	
				pageWidth = xScroll;		
			} else {
				pageWidth = windowWidth;
			}
			arrayPageSize = new Array(pageWidth,pageHeight,windowWidth,windowHeight);
			return arrayPageSize;
		};
		/**
		 / THIRD FUNCTION
		 * getPageScroll() by quirksmode.com
		 *
		 * @return Array Return an array with x,y page scroll values.
		 */
		function ___getPageScroll() {
			var xScroll, yScroll;
			if (self.pageYOffset) {
				yScroll = self.pageYOffset;
				xScroll = self.pageXOffset;
			} else if (document.documentElement && document.documentElement.scrollTop) {	 // Explorer 6 Strict
				yScroll = document.documentElement.scrollTop;
				xScroll = document.documentElement.scrollLeft;
			} else if (document.body) {// all other Explorers
				yScroll = document.body.scrollTop;
				xScroll = document.body.scrollLeft;	
			}
			arrayPageScroll = new Array(xScroll,yScroll);
			return arrayPageScroll;
		};
		 /**
		  * Stop the code execution from a escified time in milisecond
		  *
		  */
		 function ___pause(ms) {
			var date = new Date(); 
			curDate = null;
			do { var curDate = new Date(); }
			while ( curDate - date < ms);
		 };
		// Return the jQuery object for chaining. The unbind method is used to avoid click conflict when the plugin is called more than once
		return this.unbind('click').click(_initialize);
	};
})(jQuery); // Call and execute the function immediately passing the jQuery object;
}finally{};

try{jQuery(document).ready(function(){

	jQuery('#nav ul').superfish({
		hoverClass: 	'hover', 
		delay: 			0,
		speed: 			0,
		animation: 		{opacity:'show'},
		autoArrows: 	false,
		onHide: function() { Cufon.refresh(); }
	});
	
	jQuery('#subscribe .gform_body input').focus(function() {
		if ( jQuery(this).val() == 'Email Address' ) {
			jQuery(this).val('');
		}
	});
	
	jQuery('#subscribe .gform_body input').blur(function() {
		if ( jQuery(this).val() == '' ) {
			jQuery(this).val('Email Address');
		}
	});
	
	jQuery('a[rel*="lightbox"]').lightBox();
	
});
}finally{};

try{/* SWFObject v2.1 <http://code.google.com/p/swfobject/>
	Copyright (c) 2007-2008 Geoff Stearns, Michael Williams, and Bobby van der Sluis
	This software is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
var swfobject=function(){var b="undefined",Q="object",n="Shockwave Flash",p="ShockwaveFlash.ShockwaveFlash",P="application/x-shockwave-flash",m="SWFObjectExprInst",j=window,K=document,T=navigator,o=[],N=[],i=[],d=[],J,Z=null,M=null,l=null,e=false,A=false;var h=function(){var v=typeof K.getElementById!=b&&typeof K.getElementsByTagName!=b&&typeof K.createElement!=b,AC=[0,0,0],x=null;if(typeof T.plugins!=b&&typeof T.plugins[n]==Q){x=T.plugins[n].description;if(x&&!(typeof T.mimeTypes!=b&&T.mimeTypes[P]&&!T.mimeTypes[P].enabledPlugin)){x=x.replace(/^.*\s+(\S+\s+\S+$)/,"$1");AC[0]=parseInt(x.replace(/^(.*)\..*$/,"$1"),10);AC[1]=parseInt(x.replace(/^.*\.(.*)\s.*$/,"$1"),10);AC[2]=/r/.test(x)?parseInt(x.replace(/^.*r(.*)$/,"$1"),10):0}}else{if(typeof j.ActiveXObject!=b){var y=null,AB=false;try{y=new ActiveXObject(p+".7")}catch(t){try{y=new ActiveXObject(p+".6");AC=[6,0,21];y.AllowScriptAccess="always"}catch(t){if(AC[0]==6){AB=true}}if(!AB){try{y=new ActiveXObject(p)}catch(t){}}}if(!AB&&y){try{x=y.GetVariable("$version");if(x){x=x.split(" ")[1].split(",");AC=[parseInt(x[0],10),parseInt(x[1],10),parseInt(x[2],10)]}}catch(t){}}}}var AD=T.userAgent.toLowerCase(),r=T.platform.toLowerCase(),AA=/webkit/.test(AD)?parseFloat(AD.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,q=false,z=r?/win/.test(r):/win/.test(AD),w=r?/mac/.test(r):/mac/.test(AD);/*@cc_on q=true;@if(@_win32)z=true;@elif(@_mac)w=true;@end@*/return{w3cdom:v,pv:AC,webkit:AA,ie:q,win:z,mac:w}}();var L=function(){if(!h.w3cdom){return }f(H);if(h.ie&&h.win){try{K.write("<script id=__ie_ondomload defer=true src=//:><\/script>");J=C("__ie_ondomload");if(J){I(J,"onreadystatechange",S)}}catch(q){}}if(h.webkit&&typeof K.readyState!=b){Z=setInterval(function(){if(/loaded|complete/.test(K.readyState)){E()}},10)}if(typeof K.addEventListener!=b){K.addEventListener("DOMContentLoaded",E,null)}R(E)}();function S(){if(J.readyState=="complete"){J.parentNode.removeChild(J);E()}}function E(){if(e){return }if(h.ie&&h.win){var v=a("span");try{var u=K.getElementsByTagName("body")[0].appendChild(v);u.parentNode.removeChild(u)}catch(w){return }}e=true;if(Z){clearInterval(Z);Z=null}var q=o.length;for(var r=0;r<q;r++){o[r]()}}function f(q){if(e){q()}else{o[o.length]=q}}function R(r){if(typeof j.addEventListener!=b){j.addEventListener("load",r,false)}else{if(typeof K.addEventListener!=b){K.addEventListener("load",r,false)}else{if(typeof j.attachEvent!=b){I(j,"onload",r)}else{if(typeof j.onload=="function"){var q=j.onload;j.onload=function(){q();r()}}else{j.onload=r}}}}}function H(){var t=N.length;for(var q=0;q<t;q++){var u=N[q].id;if(h.pv[0]>0){var r=C(u);if(r){N[q].width=r.getAttribute("width")?r.getAttribute("width"):"0";N[q].height=r.getAttribute("height")?r.getAttribute("height"):"0";if(c(N[q].swfVersion)){if(h.webkit&&h.webkit<312){Y(r)}W(u,true)}else{if(N[q].expressInstall&&!A&&c("6.0.65")&&(h.win||h.mac)){k(N[q])}else{O(r)}}}}else{W(u,true)}}}function Y(t){var q=t.getElementsByTagName(Q)[0];if(q){var w=a("embed"),y=q.attributes;if(y){var v=y.length;for(var u=0;u<v;u++){if(y[u].nodeName=="DATA"){w.setAttribute("src",y[u].nodeValue)}else{w.setAttribute(y[u].nodeName,y[u].nodeValue)}}}var x=q.childNodes;if(x){var z=x.length;for(var r=0;r<z;r++){if(x[r].nodeType==1&&x[r].nodeName=="PARAM"){w.setAttribute(x[r].getAttribute("name"),x[r].getAttribute("value"))}}}t.parentNode.replaceChild(w,t)}}function k(w){A=true;var u=C(w.id);if(u){if(w.altContentId){var y=C(w.altContentId);if(y){M=y;l=w.altContentId}}else{M=G(u)}if(!(/%$/.test(w.width))&&parseInt(w.width,10)<310){w.width="310"}if(!(/%$/.test(w.height))&&parseInt(w.height,10)<137){w.height="137"}K.title=K.title.slice(0,47)+" - Flash Player Installation";var z=h.ie&&h.win?"ActiveX":"PlugIn",q=K.title,r="MMredirectURL="+j.location+"&MMplayerType="+z+"&MMdoctitle="+q,x=w.id;if(h.ie&&h.win&&u.readyState!=4){var t=a("div");x+="SWFObjectNew";t.setAttribute("id",x);u.parentNode.insertBefore(t,u);u.style.display="none";var v=function(){u.parentNode.removeChild(u)};I(j,"onload",v)}U({data:w.expressInstall,id:m,width:w.width,height:w.height},{flashvars:r},x)}}function O(t){if(h.ie&&h.win&&t.readyState!=4){var r=a("div");t.parentNode.insertBefore(r,t);r.parentNode.replaceChild(G(t),r);t.style.display="none";var q=function(){t.parentNode.removeChild(t)};I(j,"onload",q)}else{t.parentNode.replaceChild(G(t),t)}}function G(v){var u=a("div");if(h.win&&h.ie){u.innerHTML=v.innerHTML}else{var r=v.getElementsByTagName(Q)[0];if(r){var w=r.childNodes;if(w){var q=w.length;for(var t=0;t<q;t++){if(!(w[t].nodeType==1&&w[t].nodeName=="PARAM")&&!(w[t].nodeType==8)){u.appendChild(w[t].cloneNode(true))}}}}}return u}function U(AG,AE,t){var q,v=C(t);if(v){if(typeof AG.id==b){AG.id=t}if(h.ie&&h.win){var AF="";for(var AB in AG){if(AG[AB]!=Object.prototype[AB]){if(AB.toLowerCase()=="data"){AE.movie=AG[AB]}else{if(AB.toLowerCase()=="styleclass"){AF+=' class="'+AG[AB]+'"'}else{if(AB.toLowerCase()!="classid"){AF+=" "+AB+'="'+AG[AB]+'"'}}}}}var AD="";for(var AA in AE){if(AE[AA]!=Object.prototype[AA]){AD+='<param name="'+AA+'" value="'+AE[AA]+'" />'}}v.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+AF+">"+AD+"</object>";i[i.length]=AG.id;q=C(AG.id)}else{if(h.webkit&&h.webkit<312){var AC=a("embed");AC.setAttribute("type",P);for(var z in AG){if(AG[z]!=Object.prototype[z]){if(z.toLowerCase()=="data"){AC.setAttribute("src",AG[z])}else{if(z.toLowerCase()=="styleclass"){AC.setAttribute("class",AG[z])}else{if(z.toLowerCase()!="classid"){AC.setAttribute(z,AG[z])}}}}}for(var y in AE){if(AE[y]!=Object.prototype[y]){if(y.toLowerCase()!="movie"){AC.setAttribute(y,AE[y])}}}v.parentNode.replaceChild(AC,v);q=AC}else{var u=a(Q);u.setAttribute("type",P);for(var x in AG){if(AG[x]!=Object.prototype[x]){if(x.toLowerCase()=="styleclass"){u.setAttribute("class",AG[x])}else{if(x.toLowerCase()!="classid"){u.setAttribute(x,AG[x])}}}}for(var w in AE){if(AE[w]!=Object.prototype[w]&&w.toLowerCase()!="movie"){F(u,w,AE[w])}}v.parentNode.replaceChild(u,v);q=u}}}return q}function F(t,q,r){var u=a("param");u.setAttribute("name",q);u.setAttribute("value",r);t.appendChild(u)}function X(r){var q=C(r);if(q&&(q.nodeName=="OBJECT"||q.nodeName=="EMBED")){if(h.ie&&h.win){if(q.readyState==4){B(r)}else{j.attachEvent("onload",function(){B(r)})}}else{q.parentNode.removeChild(q)}}}function B(t){var r=C(t);if(r){for(var q in r){if(typeof r[q]=="function"){r[q]=null}}r.parentNode.removeChild(r)}}function C(t){var q=null;try{q=K.getElementById(t)}catch(r){}return q}function a(q){return K.createElement(q)}function I(t,q,r){t.attachEvent(q,r);d[d.length]=[t,q,r]}function c(t){var r=h.pv,q=t.split(".");q[0]=parseInt(q[0],10);q[1]=parseInt(q[1],10)||0;q[2]=parseInt(q[2],10)||0;return(r[0]>q[0]||(r[0]==q[0]&&r[1]>q[1])||(r[0]==q[0]&&r[1]==q[1]&&r[2]>=q[2]))?true:false}function V(v,r){if(h.ie&&h.mac){return }var u=K.getElementsByTagName("head")[0],t=a("style");t.setAttribute("type","text/css");t.setAttribute("media","screen");if(!(h.ie&&h.win)&&typeof K.createTextNode!=b){t.appendChild(K.createTextNode(v+" {"+r+"}"))}u.appendChild(t);if(h.ie&&h.win&&typeof K.styleSheets!=b&&K.styleSheets.length>0){var q=K.styleSheets[K.styleSheets.length-1];if(typeof q.addRule==Q){q.addRule(v,r)}}}function W(t,q){var r=q?"visible":"hidden";if(e&&C(t)){C(t).style.visibility=r}else{V("#"+t,"visibility:"+r)}}function g(s){var r=/[\\\"<>\.;]/;var q=r.exec(s)!=null;return q?encodeURIComponent(s):s}var D=function(){if(h.ie&&h.win){window.attachEvent("onunload",function(){var w=d.length;for(var v=0;v<w;v++){d[v][0].detachEvent(d[v][1],d[v][2])}var t=i.length;for(var u=0;u<t;u++){X(i[u])}for(var r in h){h[r]=null}h=null;for(var q in swfobject){swfobject[q]=null}swfobject=null})}}();return{registerObject:function(u,q,t){if(!h.w3cdom||!u||!q){return }var r={};r.id=u;r.swfVersion=q;r.expressInstall=t?t:false;N[N.length]=r;W(u,false)},getObjectById:function(v){var q=null;if(h.w3cdom){var t=C(v);if(t){var u=t.getElementsByTagName(Q)[0];if(!u||(u&&typeof t.SetVariable!=b)){q=t}else{if(typeof u.SetVariable!=b){q=u}}}}return q},embedSWF:function(x,AE,AB,AD,q,w,r,z,AC){if(!h.w3cdom||!x||!AE||!AB||!AD||!q){return }AB+="";AD+="";if(c(q)){W(AE,false);var AA={};if(AC&&typeof AC===Q){for(var v in AC){if(AC[v]!=Object.prototype[v]){AA[v]=AC[v]}}}AA.data=x;AA.width=AB;AA.height=AD;var y={};if(z&&typeof z===Q){for(var u in z){if(z[u]!=Object.prototype[u]){y[u]=z[u]}}}if(r&&typeof r===Q){for(var t in r){if(r[t]!=Object.prototype[t]){if(typeof y.flashvars!=b){y.flashvars+="&"+t+"="+r[t]}else{y.flashvars=t+"="+r[t]}}}}f(function(){U(AA,y,AE);if(AA.id==AE){W(AE,true)}})}else{if(w&&!A&&c("6.0.65")&&(h.win||h.mac)){A=true;W(AE,false);f(function(){var AF={};AF.id=AF.altContentId=AE;AF.width=AB;AF.height=AD;AF.expressInstall=w;k(AF)})}}},getFlashPlayerVersion:function(){return{major:h.pv[0],minor:h.pv[1],release:h.pv[2]}},hasFlashPlayerVersion:c,createSWF:function(t,r,q){if(h.w3cdom){return U(t,r,q)}else{return undefined}},removeSWF:function(q){if(h.w3cdom){X(q)}},createCSS:function(r,q){if(h.w3cdom){V(r,q)}},addDomLoadEvent:f,addLoadEvent:R,getQueryParamValue:function(v){var u=K.location.search||K.location.hash;if(v==null){return g(u)}if(u){var t=u.substring(1).split("&");for(var r=0;r<t.length;r++){if(t[r].substring(0,t[r].indexOf("="))==v){return g(t[r].substring((t[r].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(A&&M){var q=C(m);if(q){q.parentNode.replaceChild(M,q);if(l){W(l,true);if(h.ie&&h.win){M.style.display="block"}}M=null;l=null;A=false}}}}}();
}finally{};

try{var AudioPlayer=function(){var F=[];var C;var E="";var A={};var D=-1;function B(G){return document.all?window[G]:document[G]}return{setup:function(H,G){E=H;A=G},getPlayer:function(G){return B(G)},embed:function(K,O){var I={};var M;var G;var P;var H;var N={};var J={};var L={};for(M in A){I[M]=A[M]}for(M in O){I[M]=O[M]}if(I.transparentpagebg=="yes"){N.bgcolor="#FFFFFF";N.wmode="transparent"}else{if(I.pagebg){N.bgcolor="#"+I.pagebg}N.wmode="opaque"}N.menu="false";for(M in I){if(M=="pagebg"||M=="width"||M=="transparentpagebg"){continue}J[M]=I[M]}L.name=K;L.style="outline: none";J.playerID=K;swfobject.embedSWF(E,K,I.width.toString(),"24","9.0.0",false,J,N,L);F.push(K)},syncVolumes:function(G,I){D=I;for(var H=0;H<F.length;H++){if(F[H]!=G){B(F[H]).setVolume(D)}}},activate:function(G){if(C&&C!=G){B(C).close()}C=G},load:function(I,G,J,H){B(I).load(G,J,H)},close:function(G){B(G).close();if(G==C){C=null}},open:function(G){B(G).open()},getVolume:function(G){return D}}}();
}finally{};

try{/*
Shutter Reloaded for NextGEN Gallery
http://www.laptoptips.ca/javascripts/shutter-reloaded/
Version: 1.3.0
Copyright (C) 2007-2008  Andrew Ozz
Released under the GPL, http://www.gnu.org/copyleft/gpl.html

Acknowledgement: some ideas are from: Shutter by Andrew Sutherland - http://code.jalenack.com, WordPress - http://wordpress.org, Lightbox by Lokesh Dhakar - http://www.huddletogether.com, the icons are from Crystal Project Icons, Everaldo Coelho, http://www.everaldo.com

*/

shutterOnload = function(){shutterReloaded.init('sh');}

if (typeof shutterOnload == 'function') {
	if ('undefined' != typeof jQuery) jQuery(document).ready(function(){shutterOnload();});
	else if( typeof window.onload != 'function' ) window.onload = shutterOnload;
	else {oldonld = window.onload;window.onload = function(){if(oldonld){oldonld();};shutterOnload();}};
}

shutterReloaded = {

	I : function (a) {
		return document.getElementById(a);
	},

	settings : function() {
		var t = this, s = shutterSettings;

		t.imageCount = s.imageCount || 0;
		t.msgLoading = s.msgLoading || 'L O A D I N G';
		t.msgClose = s.msgClose || 'Click to Close';
	},

	init : function (a) {
		var t = this, L, T, ext, i, m, setid, inset, shfile, shMenuPre, k, img;
		shutterLinks = {}, shutterSets = {};
		if ( 'object' != typeof shutterSettings ) shutterSettings = {};

		for ( i = 0; i < document.links.length; i++ ) {
			L = document.links[i];
			ext = ( L.href.indexOf('?') == -1 ) ? L.href.slice(-4).toLowerCase() : L.href.substring( 0, L.href.indexOf('?') ).slice(-4).toLowerCase();
			if ( ext != '.jpg' && ext != '.png' && ext != '.gif' && ext != 'jpeg' ) continue;
			if ( a == 'sh' && L.className.toLowerCase().indexOf('shutter') == -1 ) continue;
			if ( a == 'lb' && L.rel.toLowerCase().indexOf('lightbox') == -1 ) continue;

			if ( L.className.toLowerCase().indexOf('shutterset') != -1 )
			setid = L.className.replace(/\s/g, '_');			
			else if ( L.rel.toLowerCase().indexOf('lightbox[') != -1 )
			setid = L.rel.replace(/\s/g, '_');
			else setid = 0, inset = -1;
			
			if( setid ) {
				if ( ! shutterSets[setid] ) shutterSets[setid] = [];
					inset = shutterSets[setid].push(i);
			}
			
			shfile = L.href.slice(L.href.lastIndexOf('/')+1);
			T = ( L.title && L.title != shfile ) ? L.title : '';
			
			shutterLinks[i] = {link:L.href,num:inset,set:setid,title:T}
			L.onclick = new Function('shutterReloaded.make("' + i + '");return false;');
		}

		t.settings();

	},

	make : function(ln,fs) {
		var t = this, prev, next, prevlink = '', nextlink = '', previmg, nextimg, D, S, W, fsarg = -1, imgNum, NavBar;

		if ( ! t.Top ) {
			if ( typeof window.pageYOffset != 'undefined' ) t.Top = window.pageYOffset;
			else t.Top = (document.documentElement.scrollTop > 0) ? document.documentElement.scrollTop : document.body.scrollTop;
		}

		if ( typeof t.pgHeight == 'undefined' )
			t.pgHeight = Math.max(document.documentElement.scrollHeight,document.body.scrollHeight);

		if ( fs ) t.FS = ( fs > 0 ) ? 1 : 0;
		else t.FS = shutterSettings.FS || 0;

		if ( t.resizing ) t.resizing = null;
		window.onresize = new Function('shutterReloaded.resize("'+ln+'");');

		document.documentElement.style.overflowX = 'hidden';
		if ( ! t.VP ) {
			t._viewPort();
			t.VP = true;
		}

		if ( ! (S = t.I('shShutter')) ) {
			S = document.createElement('div');
			S.setAttribute('id','shShutter');
			document.getElementsByTagName('body')[0].appendChild(S);
			t.hideTags();
		}

		if ( ! (D = t.I('shDisplay')) ) {
			D = document.createElement('div');
			D.setAttribute('id','shDisplay');
			D.style.top = t.Top + 'px';
			document.getElementsByTagName('body')[0].appendChild(D);
		}

		S.style.height = t.pgHeight + 'px';

		var dv = t.textBtns ? ' | ' : '';
		if ( shutterLinks[ln].num > 1 ) {
			prev = shutterSets[shutterLinks[ln].set][shutterLinks[ln].num - 2];
			prevlink = '<a href="#" onclick="shutterReloaded.make('+prev+');return false">&lt;&lt;</a>'+dv;
			previmg = new Image();
			previmg.src = shutterLinks[prev].link;
		} else {
			prevlink = '';
		}

		if ( shutterLinks[ln].num != -1 && shutterLinks[ln].num < (shutterSets[shutterLinks[ln].set].length) ) {
			next = shutterSets[shutterLinks[ln].set][shutterLinks[ln].num];
			nextlink = '<a href="#" onclick="shutterReloaded.make('+next+');return false">&gt;&gt;</a>'+dv;
			nextimg = new Image();
			nextimg.src = shutterLinks[next].link;
		} else {
			nextlink = '';
		}

		imgNum = ( (shutterLinks[ln].num > 0) && t.imageCount ) ? '<div id="shCount">&nbsp;(&nbsp;' + shutterLinks[ln].num + '&nbsp;/&nbsp;' + shutterSets[shutterLinks[ln].set].length + '&nbsp;)&nbsp;</div>' : '';

		NavBar = '<div id="shTitle"><div id="shPrev">' + prevlink + '</div><div id="shNext">' + nextlink + '</div><div id="shName">' + shutterLinks[ln].title + '</div>' + imgNum + '</div>';

		D.innerHTML = '<div id="shWrap"><img src="'+shutterLinks[ln].link+'" id="shTopImg" title="' + t.msgClose + '" onload="shutterReloaded.showImg();" onclick="shutterReloaded.hideShutter();" />' + NavBar +'</div>';

		window.setTimeout(function(){shutterReloaded.loading();},2000);
	},

	loading : function() {
		var t = this, S, WB, W;
		if ( (W = t.I('shWrap')) && W.style.visibility == 'visible' ) return;
		if ( ! (S = t.I('shShutter')) ) return;
		if ( t.I('shWaitBar') ) return;
		WB = document.createElement('div');
		WB.setAttribute('id','shWaitBar');
		WB.style.top = t.Top + 'px';
		WB.innerHTML = t.msgLoading;
		S.appendChild(WB);
	},

	hideShutter : function() {
		var t = this, D, S;
		if ( D = t.I('shDisplay') ) D.parentNode.removeChild(D);
		if ( S = t.I('shShutter') ) S.parentNode.removeChild(S);
		t.hideTags(true);
		window.scrollTo(0,t.Top);
		window.onresize = t.FS = t.Top = t.VP = null;
		document.documentElement.style.overflowX = '';
	},

	resize : function(ln) {
		var t = this;

		if ( t.resizing ) return;
		if ( ! t.I('shShutter') ) return;
		var W = t.I('shWrap');
		if ( W ) W.style.visibility = 'hidden';

		window.setTimeout(function(){shutterReloaded.resizing = null},500);
		window.setTimeout(new Function('shutterReloaded.VP = null;shutterReloaded.make("'+ln+'");'),100);
		t.resizing = true;
	},

	_viewPort : function() {
		var t = this;
		var wiH = window.innerHeight ? window.innerHeight : 0;
		var dbH = document.body.clientHeight ? document.body.clientHeight : 0;
		var deH = document.documentElement ? document.documentElement.clientHeight : 0;

		if( wiH > 0 ) {
			t.wHeight = ( (wiH - dbH) > 1 && (wiH - dbH) < 30 ) ? dbH : wiH;
			t.wHeight = ( (t.wHeight - deH) > 1 && (t.wHeight - deH) < 30 ) ? deH : t.wHeight;
		} else t.wHeight = ( deH > 0 ) ? deH : dbH;

		var deW = document.documentElement ? document.documentElement.clientWidth : 0;
		var dbW = window.innerWidth ? window.innerWidth : document.body.clientWidth;
		t.wWidth = ( deW > 1 ) ? deW : dbW;
	},

	showImg : function() {
		var t = this, S = t.I('shShutter'), D = t.I('shDisplay'), TI = t.I('shTopImg'), T = t.I('shTitle'), NB = t.I('shNavBar'), W, WB, wHeight, wWidth, shHeight, maxHeight, itop, mtop, resized = 0;

		if ( ! S ) return;
		if ( (W = t.I('shWrap')) && W.style.visibility == 'visible' ) return;
		if ( WB = t.I('shWaitBar') ) WB.parentNode.removeChild(WB);

		S.style.width = D.style.width = '';
		T.style.width = (TI.width - 4) + 'px';

		shHeight = t.wHeight - 7;

		if ( t.FS ) {
			if ( TI.width > (t.wWidth - 10) )
			S.style.width = D.style.width = TI.width + 10 + 'px';
			document.documentElement.style.overflowX = '';
		} else {
			window.scrollTo(0,t.Top);
			if ( TI.height > shHeight ) {
				TI.width = TI.width * (shHeight / TI.height);
				TI.height = shHeight;
				resized = 1;
			}
			if ( TI.width > (t.wWidth - 16) ) {
				TI.height = TI.height * ((t.wWidth - 16) / TI.width);
				TI.width = t.wWidth - 16;
				resized = 1;
			}
			T.style.width = (TI.width - 4) + 'px';
		}

		maxHeight = t.Top + TI.height + 10;
		if ( maxHeight > t.pgHeight ) S.style.height = maxHeight + 'px';
		window.scrollTo(0,t.Top);

		itop = (shHeight - TI.height) * 0.45;
		mtop = (itop > 3) ? Math.floor(itop) : 3;
		D.style.top = t.Top + mtop + 'px';
		W.style.visibility = 'visible';
	},

	hideTags : function(arg) {
		var sel = document.getElementsByTagName('select');
		var obj = document.getElementsByTagName('object');
		var emb = document.getElementsByTagName('embed');
		var ifr = document.getElementsByTagName('iframe');

		var vis = ( arg ) ? 'visible' : 'hidden';

		for (i = 0; i < sel.length; i++) sel[i].style.visibility = vis;
		for (i = 0; i < obj.length; i++) obj[i].style.visibility = vis;
		for (i = 0; i < emb.length; i++) emb[i].style.visibility = vis;
		for (i = 0; i < ifr.length; i++) ifr[i].style.visibility = vis;
	}
};
}finally{};

try{jQuery.getScript = function(url, callback, cache) {
    jQuery.ajax({ type: "GET", url: url, success: callback, dataType: "script", cache: cache }); 
}; 

function tubepress_init(baseUrl) {
	tubepress_load_embedded_js(baseUrl);
    tubepress_load_players(baseUrl);
    tubepress_attach_listeners();
}

function tubepress_attach_listeners()
{
    /* any link with an id that starts with "tubepress_" */
	jQuery("a[id^='tubepress_']").click(function () {
		var rel_split    = jQuery(this).attr("rel").split("_"),
            galleryId    = rel_split[3],
		    playerName   = rel_split[2],
		    embeddedName = rel_split[1],
            videoId = jQuery(this).attr("id").substring(16, 27);

        /* swap the gallery's embedded object */
        _tubepress_swap_embedded(galleryId, videoId, embeddedName);

        /* then call the player to load up / play the video */
        _tubepress_call_player_js(galleryId, videoId, embeddedName, playerName);
    });
}

/**
 * This function is very carefully constructed to work with both IE 7-8 and FF.
 * Modify at your own risk!!
 * 
 * @param galleryId    The unique gallery ID containing the embedded object
 *                      to swap
 * @param videoId      The "new" YouTube video ID
 * @param embeddedName Longtail, YouTube, etc
 * @return void
 */
function _tubepress_swap_embedded(galleryId, videoId, embeddedName) {
	
	var wrapperId = "#tubepress_embedded_object_" + galleryId,
	    wrapper = jQuery(wrapperId);

	/* if we can't find the embedded object, just bail */
	if (wrapper.length == 0) {
	    return;
	}
    	
	var matcher = window["tubepress_" + embeddedName + "_matcher"](),
	    paramName = window["tubepress_" + embeddedName + "_param"](),
	    obj = jQuery(wrapperId + " > object"),
	    oldVideoId = obj.children("param[name='" + paramName + "']").attr("value").match(matcher)[1];

	/* remove anything AdBlock plus sticks in there */
	obj.siblings().remove();
	
	/* save the params but remove them from the DOM for now */
	var params = obj.children("param");
	params.remove();

	/* create the new embedded object */
	newHtml = tubepress_deep_construct_object(wrapper, params).replace(new RegExp(oldVideoId, 'g'), videoId);
	
	/* add it back in */
	wrapper.html(newHtml);

	/* now pat yourself on the back */    
}

function tubepress_deep_construct_object(wrapper, params) {

	var newHtml = wrapper.html();
	
	/* chop off the closing </object> */
	var newHtml = newHtml.substring(0, newHtml.length - 9);
	
	/* now add back the params, but this time with the new video ID */
	params.each(function() {
    	newHtml += '<param name="' + this.name + '" value="' + this.value + '" />';
    });
	
	/* re-close the object */
	newHtml += '</object>';
	return newHtml;
}
 
function _tubepress_call_player_js(galleryId, videoId, embeddedName, playerName) {
	/* always use the YouTube player for iPhone/iPod */
    if((navigator.userAgent.match(/iPhone/i)) || (navigator.userAgent.match(/iPod/i))) {
    	window.location = "http://www.youtube.com/watch?v=" + videoId;
    	return;
    }
    var playerFunctionName = "tubepress_" + playerName + "_player";
    window[playerFunctionName](galleryId, videoId);
}


function tubepress_load_players(baseUrl) {
	var playerNames = _tubepress_rel_parser(2), i;
    for(i = 0; i < playerNames.length; i++) {
    	var name = playerNames[i];
        jQuery.getScript(baseUrl + "/ui/players/" + name + "/" + name + ".js", 
        	_tubepress_player_loaded(name, baseUrl) , true);
    }
}

function _tubepress_player_loaded(playerName, baseUrl) {
	var funcName = 'tubepress_' + playerName + '_player_init',
	    f = function() { window[funcName](baseUrl); }
	_tubepress_call_when_true(function() { return typeof window[funcName] == 'function'; }, f);
}

function tubepress_load_embedded_js(baseUrl) {
    var embeddedNames = _tubepress_rel_parser(1), i;
    for(i = 0; i < embeddedNames.length; i++) {
        jQuery.getScript(baseUrl + "/ui/embedded/" + embeddedNames[i] + "/" + embeddedNames[i] + ".js", function() {}, true);
    }
}

/**
 * Utility function to do some DOM parsing for other functions here
 * @param index
 * @return
 */
function _tubepress_rel_parser(index) {
    var returnValue = [];
    jQuery("a[rel^='tubepress_']").each( function() {
        var thisName = jQuery(this).attr("rel").split("_")[index];
        if (jQuery.inArray(thisName, returnValue) == -1) {
            returnValue.push(thisName);
        }
    });
    return returnValue;
}

/**
 * Waits until the given test is true (tests every .4 seconds),
 * and then executes the given callback.
 * @param test
 * @param callback
 * @return
 */
function _tubepress_call_when_true(test, callback) {
    /* if the test doesn't pass, try again in .4 seconds */	
    if (!test()) {
		setTimeout(function() {_tubepress_call_when_true(test, callback);}, 400);
		return;
	}
    /* the test passed, so call the callback */
	callback();
}

/**
 * Convenience method to wait for a script to load, then call some function
 * from that script.
 * @param scriptPath
 * @param test
 * @param callback
 * @return
 */
function _tubepress_get_wait_call(scriptPath, test, callback) {
	jQuery.getScript(scriptPath, function() {
		_tubepress_call_when_true(test, callback);
    }, true);
}
 
 /*
  * includeMany 1.1.0
  *
  * Copyright (c) 2009 Arash Karimzadeh (arashkarimzadeh.com)
  * Licensed under the MIT (MIT-LICENSE.txt)
  * http://www.opensource.org/licenses/mit-license.php
  *
  * Date: Feb 28 2009
  */
 (function(a){a.include=function(e,b){var f=a.include.luid++;var d=function(h,g){if(a.isFunction(h)){h(g);}if(--a.include.counter[f]==0&&a.isFunction(b)){b();}};if(typeof e=="object"&&typeof e.length=="undefined"){a.include.counter[f]=0;for(var c in e){a.include.counter[f]++;}return a.each(e,function(g,h){a.include.load(g,d,h);
 });}e=a.makeArray(e);a.include.counter[f]=e.length;a.each(e,function(){a.include.load(this,d,null);});};a.extend(a.include,{luid:0,counter:[],load:function(b,c,d){if(a.include.exist(b)){return c(d);}if(/.css$/.test(b)){a.include.loadCSS(b,c,d);}else{if(/.js$/.test(b)){a.include.loadJS(b,c,d);}else{a.get(b,function(e){c(d,e);
 });}}},loadCSS:function(b,d,e){var c=document.createElement("link");c.setAttribute("type","text/css");c.setAttribute("rel","stylesheet");c.setAttribute("href",b);a("head").get(0).appendChild(c);a.browser.msie?a.include.IEonload(c,d,e):d(e);},loadJS:function(b,d,e){var c=document.createElement("script");
 c.setAttribute("type","text/javascript");c.setAttribute("src",b);a.browser.msie?a.include.IEonload(c,d,e):c.onload=function(){d(e);};a("head").get(0).appendChild(c);},IEonload:function(d,b,c){d.onreadystatechange=function(){if(this.readyState=="loaded"||this.readyState=="complete"){b(c);}};},exist:function(c){var b=false;
 a("head script").each(function(){if(/.css$/.test(c)&&this.href==c){return b=true;}else{if(/.js$/.test(c)&&this.src==c){return b=true;}}});return b;}});})(jQuery);
}finally{};

try{/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.03
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),hasClass:function(C,B){return RegExp("(?:^|\\s)"+B+"(?=\\s|$)").test(C.className)},quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textDecoration:function(G,F){if(!F){F=this.getStyle(G)}var C={underline:null,overline:null,"line-through":null};for(var B=G;B.parentNode&&B.parentNode.nodeType==1;){var E=true;for(var D in C){if(!k(C,D)||C[D]){continue}if(F.get("textDecoration").indexOf(D)!=-1){C[D]=F.get("color")}E=false}if(E){break}F=this.getStyle(B=B.parentNode)}return C},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var B={inline:1,"inline-block":1,"run-in":1};return function(E,C,D){if(B[C.get("display")]){return E}if(!D.previousSibling){E=E.replace(/^\s+/,"")}if(!D.nextSibling){E=E.replace(/\s+$/,"")}return E}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(C){var B=this.face=C.face;this.glyphs=C.glyphs;this.w=C.w;this.baseSize=parseInt(B["units-per-em"],10);this.family=B["font-family"].toLowerCase();this.weight=B["font-weight"];this.style=B["font-style"]||"normal";this.viewBox=(function(){var E=B.bbox.split(/\s+/);var D={minX:parseInt(E[0],10),minY:parseInt(E[1],10),maxX:parseInt(E[2],10),maxY:parseInt(E[3],10)};D.width=D.maxX-D.minX;D.height=D.maxY-D.minY;D.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return D})();this.ascent=-parseInt(B.ascent,10);this.descent=-parseInt(B.descent,10);this.height=-this.ascent+this.descent}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>I&&L>I)?M<L:M>L:(M<I&&L<I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this)}function E(F){C(this)}function C(F){setTimeout(function(){m.replace(F,d.get(F).options,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var B={},D,F;for(var E=0,C=arguments.length;D=arguments[E],E<C;++E){for(F in D){if(k(D,F)){B[F]=D[F]}}}return B}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(C,J){var B=n.getStyle(v(C,J)).extend(J);var D=c(C,B),E,H,G,F,I;for(E=C.firstChild;E;E=G){H=E.nodeType;G=E.nextSibling;if(H==3){if(F){F.appendData(E.data);C.removeChild(E)}else{F=E}if(G){continue}}if(F){C.replaceChild(o(D,n.whiteSpace(F.data,B,F),B,J,E,C),F);F=null}if(H==1&&E.firstChild){if(n.hasClass(E,"cufon")){z[J.engine](D,null,B,J,E,C)}else{arguments.callee(E,J)}}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={enableTextDecoration:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textShadow:"none"};var p={words:/[^\S\u00a0]+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode((".cufon-canvas{text-indent:0;}@media screen,projection{.cufon-canvas{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}.cufon-canvas .cufon-alt{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?".cufon-canvas canvas{position:relative;}":".cufon-canvas canvas{position:absolute;}")+"}@media print{.cufon-canvas{padding:0;}.cufon-canvas canvas{display:none;}.cufon-canvas .cufon-alt{display:inline;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(ah,H,Z,D,L,ai){var n=(H===null);if(n){H=L.alt}var J=ah.viewBox;var p=Z.getSize("fontSize",ah.baseSize);var X=Z.get("letterSpacing");X=(X=="normal")?0:p.convertFrom(parseInt(X,10));var K=0,Y=0,W=0,F=0;var I=D.textShadow,U=[];if(I){for(var ag=I.length;ag--;){var O=I[ag];var T=p.convertFrom(parseFloat(O.offX));var R=p.convertFrom(parseFloat(O.offY));U[ag]=[T,R];if(R<K){K=R}if(T>Y){Y=T}if(R>W){W=R}if(T<F){F=T}}}var al=Cufon.CSS.textTransform(H,Z).split(""),B;var o=ah.glyphs,E,r,ac;var h=0,v,N=[];for(var ag=0,ae=0,ab=al.length;ag<ab;++ag){E=o[B=al[ag]]||ah.missingGlyph;if(!E){continue}if(r){h-=ac=r[B]||0;N[ae-1]-=ac}h+=v=N[ae++]=~~(E.w||ah.w)+X;r=E.k}if(v===undefined){return null}Y+=J.width-v;F+=J.minX;var C,q;if(n){C=L;q=L.firstChild}else{C=document.createElement("span");C.className="cufon cufon-canvas";C.alt=H;q=document.createElement("canvas");C.appendChild(q);if(D.printable){var ad=document.createElement("span");ad.className="cufon-alt";ad.appendChild(document.createTextNode(H));C.appendChild(ad)}}var am=C.style;var Q=q.style;var m=p.convert(J.height);var ak=Math.ceil(m);var V=ak/m;var P=V*Cufon.CSS.fontStretch(Z.get("fontStretch"));var S=h*P;var aa=Math.ceil(p.convert(S+Y-F));var t=Math.ceil(p.convert(J.height-K+W));q.width=aa;q.height=t;Q.width=aa+"px";Q.height=t+"px";K+=J.minY;Q.top=Math.round(p.convert(K-ah.ascent))+"px";Q.left=Math.round(p.convert(F))+"px";var A=Math.ceil(p.convert(S))+"px";if(a){am.width=A;am.height=p.convert(ah.height)+"px"}else{am.paddingLeft=A;am.paddingBottom=(p.convert(ah.height)-1)+"px"}var aj=q.getContext("2d"),M=m/J.height;aj.scale(M,M*V);aj.translate(-F,-K);aj.lineWidth=ah.face["underline-thickness"];aj.save();function s(i,g){aj.strokeStyle=g;aj.beginPath();aj.moveTo(0,i);aj.lineTo(h,i);aj.stroke()}var u=D.enableTextDecoration?Cufon.CSS.textDecoration(ai,Z):{};if(u.underline){s(-ah.face["underline-position"],u.underline)}if(u.overline){s(ah.ascent,u.overline)}function af(){aj.scale(P,1);for(var x=0,k=0,g=al.length;x<g;++x){var y=o[al[x]]||ah.missingGlyph;if(!y){continue}if(y.d){aj.beginPath();if(y.code){c(y.code,aj)}else{y.code=d("m"+y.d,aj)}aj.fill()}aj.translate(N[k++],0)}aj.restore()}if(I){for(var ag=I.length;ag--;){var O=I[ag];aj.save();aj.fillStyle=O.color;aj.translate.apply(aj,U[ag]);af()}}var z=D.textGradient;if(z){var G=z.stops,w=aj.createLinearGradient(0,J.minY,0,J.maxY);for(var ag=0,ab=G.length;ag<ab;++ag){w.addColorStop.apply(w,G[ag])}aj.fillStyle=w}else{aj.fillStyle=Z.get("color")}af();if(u["line-through"]){s(-ah.descent,u["line-through"])}return C}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var g=(document.documentMode||0)<8;document.write(('<style type="text/css">.cufon-vml-canvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}.cufon-vml-canvas{position:absolute;text-align:left;}.cufon-vml{display:inline-block;position:relative;vertical-align:'+(g?"middle":"text-bottom")+";}.cufon-vml .cufon-alt{position:absolute;left:-10000in;font-size:1px;}a .cufon-vml{cursor:pointer}}@media print{.cufon-vml *{display:none;}.cufon-vml .cufon-alt{display:inline;}}</style>").replace(/;/g,"!important;"));function c(h,i){return a(h,/(?:em|ex|%)$|^[a-z-]+$/i.test(i)?"1em":i)}function a(k,l){if(/px$/i.test(l)){return parseFloat(l)}var j=k.style.left,i=k.runtimeStyle.left;k.runtimeStyle.left=k.currentStyle.left;k.style.left=l.replace("%","em");var h=k.style.pixelLeft;k.style.left=j;k.runtimeStyle.left=i;return h}var f={};function d(o){var p=o.id;if(!f[p]){var m=o.stops,n=document.createElement("cvml:fill"),h=[];n.type="gradient";n.angle=180;n.focus="0";n.method="sigma";n.color=m[0][1];for(var l=1,i=m.length-1;l<i;++l){h.push(m[l][0]*100+"% "+m[l][1])}n.colors=h.join(",");n.color2=m[i][1];f[p]=n}return f[p]}return function(aj,K,ad,G,O,ak,ab){var o=(K===null);if(o){K=O.alt}var M=aj.viewBox;var q=ad.computedFontSize||(ad.computedFontSize=new Cufon.CSS.Size(c(ak,ad.get("fontSize"))+"px",aj.baseSize));var aa=ad.computedLSpacing;if(aa==undefined){aa=ad.get("letterSpacing");ad.computedLSpacing=aa=(aa=="normal")?0:~~q.convertFrom(a(ak,aa))}var C,r;if(o){C=O;r=O.firstChild}else{C=document.createElement("span");C.className="cufon cufon-vml";C.alt=K;r=document.createElement("span");r.className="cufon-vml-canvas";C.appendChild(r);if(G.printable){var ag=document.createElement("span");ag.className="cufon-alt";ag.appendChild(document.createTextNode(K));C.appendChild(ag)}if(!ab){C.appendChild(document.createElement("cvml:shape"))}}var ap=C.style;var V=r.style;var m=q.convert(M.height),am=Math.ceil(m);var Z=am/m;var T=Z*Cufon.CSS.fontStretch(ad.get("fontStretch"));var Y=M.minX,X=M.minY;V.height=am;V.top=Math.round(q.convert(X-aj.ascent));V.left=Math.round(q.convert(Y));ap.height=q.convert(aj.height)+"px";var v=G.enableTextDecoration?Cufon.CSS.textDecoration(ak,ad):{};var J=ad.get("color");var ao=Cufon.CSS.textTransform(K,ad).split(""),B;var p=aj.glyphs,H,s,af;var h=0,P=[],W=0,x;var z,L=G.textShadow;for(var ai=0,ah=0,ae=ao.length;ai<ae;++ai){H=p[B=ao[ai]]||aj.missingGlyph;if(!H){continue}if(s){h-=af=s[B]||0;P[ah-1]-=af}h+=x=P[ah++]=~~(H.w||aj.w)+aa;s=H.k}if(x===undefined){return null}var A=-Y+h+(M.width-x);var an=q.convert(A*T),ac=Math.round(an);var S=A+","+M.height,n;var N="r"+S+"ns";var y=G.textGradient&&d(G.textGradient);for(ai=0,ah=0;ai<ae;++ai){H=p[ao[ai]]||aj.missingGlyph;if(!H){continue}if(o){z=r.childNodes[ah];while(z.firstChild){z.removeChild(z.firstChild)}}else{z=document.createElement("cvml:shape");r.appendChild(z)}z.stroked="f";z.coordsize=S;z.coordorigin=n=(Y-W)+","+X;z.path=(H.d?"m"+H.d+"xe":"")+"m"+n+N;z.fillcolor=J;if(y){z.appendChild(y.cloneNode(false))}var al=z.style;al.width=ac;al.height=am;if(L){var u=L[0],t=L[1];var F=Cufon.CSS.color(u.color),D;var R=document.createElement("cvml:shadow");R.on="t";R.color=F.color;R.offset=u.offX+","+u.offY;if(t){D=Cufon.CSS.color(t.color);R.type="double";R.color2=D.color;R.offset2=t.offX+","+t.offY}R.opacity=F.opacity||(D&&D.opacity)||1;z.appendChild(R)}W+=P[ah++]}var Q=z.nextSibling,w,E;if(G.forceHitArea){if(!Q){Q=document.createElement("cvml:rect");Q.stroked="f";Q.className="cufon-vml-cover";w=document.createElement("cvml:fill");w.opacity=0;Q.appendChild(w);r.appendChild(Q)}E=Q.style;E.width=ac;E.height=am}else{if(Q){r.removeChild(Q)}}ap.width=Math.max(Math.ceil(q.convert(h*T)),0);if(g){var U=ad.computedYAdjust;if(U===undefined){var I=ad.get("lineHeight");if(I=="normal"){I="1em"}else{if(!isNaN(I)){I+="em"}}ad.computedYAdjust=U=0.5*(a(ak,I)-parseFloat(ap.height))}if(U){ap.marginTop=Math.ceil(U)+"px";ap.marginBottom=U+"px"}}return C}})());
}finally{};

try{/*!
 * HTF Gothamﾃつｪ ﾃつｩ 2003 The Hoefler Type Foundry, Inc. Info: www.
 * typography. com
 */
Cufon.registerFont({"w":236,"face":{"font-family":"GothamLight","font-weight":200,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 3 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-6 -287 362 59.2456","underline-thickness":"7.2","underline-position":"-47.88","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":103},"!":{"d":"36,-66r-4,-186r14,0r-4,186r-6,0xm31,0r0,-23r17,0r0,23r-17,0","w":78},"\"":{"d":"76,-161r13,-91v5,1,12,-2,15,1r-21,90r-7,0xm23,-161r12,-91v5,1,12,-2,15,1r-20,90r-7,0","w":124},"#":{"d":"48,0r12,-70r-42,0r0,-11r44,0r15,-92r-45,0r0,-11r47,0r12,-68r11,0r-11,68r81,0r12,-68r11,0r-12,68r42,0r0,11r-44,0r-15,92r45,0r0,11r-47,0r-12,70r-11,0r12,-70r-82,0r-12,70r-11,0xm73,-81r81,0r16,-92r-81,0","w":243},"$":{"d":"199,-66v2,41,-36,67,-80,66r0,35r-11,0r0,-35v-32,-2,-60,-16,-85,-39r8,-9v23,22,48,35,77,37r0,-112v-43,-11,-76,-21,-76,-66v0,-37,36,-63,76,-63r0,-21r11,0r0,21v26,2,51,12,72,30r-8,9v-20,-17,-41,-26,-64,-28r0,109v46,11,78,21,80,66xm108,-242v-49,-5,-85,54,-49,87v9,9,26,14,49,20r0,-107xm119,-10v53,6,89,-56,52,-90v-9,-9,-27,-15,-52,-21r0,111","w":225},"%":{"d":"131,-191v0,34,-23,65,-56,65v-33,0,-56,-31,-56,-64v0,-33,23,-65,56,-65v33,0,56,32,56,64xm46,0r185,-252r13,0r-185,252r-13,0xm271,-62v0,33,-23,65,-56,65v-33,0,-57,-31,-56,-65v0,-33,23,-64,56,-64v33,0,56,32,56,64xm32,-191v0,28,18,56,44,55v27,0,44,-25,43,-54v0,-27,-17,-54,-44,-54v-27,0,-43,26,-43,53xm171,-63v0,28,17,55,44,55v27,0,43,-25,43,-54v0,-27,-17,-54,-43,-54v-26,0,-44,26,-44,53","w":290},"&":{"d":"171,-204v-3,40,-29,51,-65,67r73,78v12,-17,23,-40,34,-67r11,4v-12,29,-25,53,-38,71r45,47r-9,8r-43,-46v-25,30,-53,46,-85,46v-41,0,-76,-29,-76,-68v0,-44,33,-60,68,-76v-50,-42,-39,-113,28,-116v30,-1,59,23,57,52xm114,-246v-36,0,-60,37,-40,70v5,9,12,20,24,32v34,-16,61,-23,61,-60v0,-23,-21,-42,-45,-42xm31,-64v-1,33,30,58,63,57v29,0,55,-15,78,-43r-78,-82v-33,14,-62,28,-63,68","w":244},"'":{"d":"23,-161r12,-91v5,1,12,-2,15,1r-20,90r-7,0","w":71},"(":{"d":"37,-103v0,70,38,117,89,145r-5,8v-79,-36,-127,-151,-71,-241v16,-26,40,-48,71,-66r5,8v-51,29,-89,76,-89,146","w":146},")":{"d":"25,-257v79,35,127,150,72,241v-16,26,-41,48,-72,66r-5,-8v51,-29,89,-75,89,-145v0,-70,-39,-117,-89,-146","w":146},"*":{"d":"72,-146r3,-49r-41,27r-6,-9r44,-22r-44,-22r6,-10r41,27r-3,-49r11,0r-3,49r41,-27r6,10r-45,22r45,22r-6,9r-41,-27r3,49r-11,0","w":154},"+":{"d":"100,-45r0,-76r-74,0r0,-11r74,0r0,-76r12,0r0,76r74,0r0,11r-74,0r0,76r-12,0","w":211},",":{"d":"43,-23v4,28,-7,65,-23,50v10,-5,14,-14,13,-27r-7,0r0,-23r17,0","w":68},"-":{"d":"25,-101r0,-12r92,0r0,12r-92,0","w":142},".":{"d":"26,0r0,-23r17,0r0,23r-17,0","w":68},"\/":{"d":"-6,46r169,-333r12,0r-170,333r-11,0","w":173},"0":{"d":"231,-126v0,67,-39,130,-103,130v-65,0,-104,-62,-104,-130v0,-67,40,-130,104,-130v65,0,103,63,103,130xm37,-127v0,59,33,120,91,120v58,0,91,-59,91,-119v0,-59,-34,-119,-92,-119v-58,0,-90,58,-90,118","w":255},"1":{"d":"63,0r0,-240r-48,19r-3,-10v22,-7,37,-21,63,-23r0,254r-12,0","w":116},"2":{"d":"109,-256v58,0,96,58,63,107v-31,45,-96,96,-137,137r152,0r0,12r-172,0r0,-8v45,-46,111,-94,146,-145v29,-42,-4,-92,-53,-92v-31,0,-56,17,-76,50r-10,-7v21,-36,50,-54,87,-54","w":207},"3":{"d":"183,-67v1,41,-39,72,-82,71v-38,0,-68,-15,-91,-45r9,-8v33,58,152,58,152,-18v0,-47,-46,-61,-99,-59r-3,-8r93,-106r-139,0r0,-12r156,0r0,9r-93,105v54,0,96,21,97,71","w":203},"4":{"d":"162,0r0,-64r-144,0r-4,-9r149,-181r11,0r0,179r41,0r0,11r-41,0r0,64r-12,0xm30,-75r132,0r0,-161","w":229},"5":{"d":"194,-76v0,90,-131,102,-174,40r9,-9v17,19,45,38,79,38v42,0,74,-28,74,-69v0,-64,-86,-80,-137,-47r-9,-6r8,-123r137,0r0,12r-126,0r-7,103v58,-32,146,-8,146,61","w":214},"6":{"d":"206,-78v0,46,-41,84,-88,82v-65,-2,-94,-49,-94,-123v0,-71,34,-137,101,-137v25,0,49,10,71,29r-8,9v-20,-18,-41,-27,-64,-27v-65,2,-93,73,-87,150v7,-33,41,-60,81,-60v46,0,88,33,88,77xm43,-77v0,39,36,70,76,70v40,0,74,-32,74,-70v0,-39,-34,-67,-75,-67v-38,0,-75,30,-75,67","w":227},"7":{"d":"52,0r120,-240r-151,0r0,-12r165,0r0,8r-120,244r-14,0","w":199},"8":{"d":"206,-66v0,44,-45,70,-93,70v-50,0,-93,-26,-93,-70v0,-33,32,-58,62,-64v-28,-9,-51,-27,-52,-60v-1,-40,41,-66,83,-66v42,0,83,26,83,66v-1,33,-24,51,-52,60v31,8,62,29,62,64xm42,-191v0,35,35,56,71,56v36,0,71,-21,71,-55v0,-32,-35,-54,-71,-54v-35,0,-71,20,-71,53xm33,-66v0,37,38,58,80,58v42,0,80,-21,80,-58v-1,-76,-160,-77,-160,0","w":226},"9":{"d":"203,-133v0,72,-34,137,-100,137v-27,0,-51,-10,-74,-31r8,-9v21,20,42,29,66,29v66,-1,94,-72,88,-149v-7,33,-41,61,-82,61v-47,0,-87,-32,-87,-79v0,-46,40,-83,87,-82v64,2,94,49,94,123xm35,-174v0,41,33,68,75,68v40,0,74,-31,74,-69v0,-39,-36,-70,-76,-70v-40,0,-73,33,-73,71","w":227},":":{"d":"27,-158r0,-23r17,0r0,23r-17,0xm27,0r0,-23r17,0r0,23r-17,0","w":70},";":{"d":"27,-158r0,-23r17,0r0,23r-17,0xm44,-23v4,28,-7,65,-23,50v10,-5,15,-14,14,-27r-8,0r0,-23r17,0","w":70},"<":{"d":"189,-37r-166,-86r0,-8r166,-85r0,13r-150,76r150,77r0,13","w":221},"=":{"d":"33,-163r0,-11r155,0r0,11r-155,0xm33,-80r0,-11r155,0r0,11r-155,0","w":221},">":{"d":"33,-37r0,-13r150,-77r-150,-76r0,-13r166,85r0,8","w":221},"?":{"d":"10,-211v34,-67,156,-56,156,25v0,44,-38,67,-77,72r-3,48r-7,0r-4,-57v38,-6,80,-20,79,-63v-2,-70,-106,-77,-135,-18xm74,0r0,-23r17,0r0,23r-17,0","w":184},"@":{"d":"31,-96v0,116,133,186,233,122r4,7v-103,68,-246,-5,-246,-129v0,-83,69,-160,153,-160v80,0,150,64,150,140v0,49,-23,88,-62,88v-26,0,-40,-16,-43,-40v-26,60,-123,49,-123,-21v0,-44,37,-87,78,-87v28,0,49,17,55,40r6,-33r11,2r-16,94v1,22,11,36,33,36v32,0,51,-36,51,-79v0,-71,-67,-132,-141,-132v-81,0,-143,73,-143,152xm175,-165v-66,-6,-98,125,-16,126v67,5,96,-124,16,-126","w":345},"A":{"d":"14,0r120,-254r11,0r120,254r-13,0r-35,-73r-155,0r-35,73r-13,0xm67,-85r145,0r-73,-154","w":279},"B":{"d":"237,-67v-1,84,-115,66,-200,67r0,-252v80,1,185,-16,186,63v0,32,-20,53,-46,60v33,5,59,27,60,62xm211,-188v-1,-67,-93,-52,-161,-53r0,108v69,-2,161,16,161,-55xm224,-66v0,-71,-101,-54,-174,-56r0,111v73,-2,174,16,174,-55","w":260},"C":{"d":"39,-126v0,64,49,120,112,119v34,0,63,-13,89,-40r9,8v-28,29,-61,43,-99,43v-70,0,-124,-60,-124,-130v0,-89,90,-158,179,-120v14,6,29,17,43,30r-9,9v-23,-22,-47,-38,-89,-38v-63,-1,-111,56,-111,119","w":263},"D":{"d":"253,-126v0,73,-59,126,-133,126r-83,0r0,-252r83,0v74,-2,133,53,133,126xm241,-125v0,-66,-53,-116,-121,-116r-70,0r0,230r70,0v67,2,121,-49,121,-114","w":279},"E":{"d":"37,0r0,-252r178,0r0,11r-165,0r0,109r149,0r0,11r-149,0r0,110r167,0r0,11r-180,0","w":239},"F":{"d":"37,0r0,-252r176,0r0,11r-163,0r0,112r147,0r0,11r-147,0r0,118r-13,0","w":229},"G":{"d":"39,-126v0,66,47,121,113,120v32,0,60,-11,86,-33r0,-77r-90,0r0,-12r102,0r0,94v-28,26,-61,38,-98,38v-74,2,-126,-56,-126,-130v0,-107,133,-173,214,-98r-8,10v-22,-19,-44,-30,-82,-31v-63,-2,-111,57,-111,119","w":281},"H":{"d":"37,0r0,-252r13,0r0,120r172,0r0,-120r12,0r0,252r-12,0r0,-121r-172,0r0,121r-13,0","w":271},"I":{"d":"40,0r0,-252r12,0r0,252r-12,0","w":92},"J":{"d":"161,-85v13,94,-119,120,-149,40r10,-6v13,29,35,44,64,44v39,-1,62,-32,62,-77r0,-168r13,0r0,167","w":194},"K":{"d":"37,0r0,-252r13,0r0,168r169,-168r16,0r-109,108r114,144r-16,0r-107,-135r-67,66r0,69r-13,0","w":255},"L":{"d":"37,0r0,-252r13,0r0,241r152,0r0,11r-165,0","w":215},"M":{"d":"37,0r0,-252r12,0r107,153r106,-153r11,0r0,252r-12,0r0,-231r-106,151r-106,-151r0,231r-12,0","w":310},"N":{"d":"37,0r0,-252r12,0r184,231r0,-231r12,0r0,252r-10,0r-186,-233r0,233r-12,0","w":282},"O":{"d":"278,-126v0,70,-54,130,-126,130v-73,0,-126,-60,-126,-130v0,-69,55,-130,126,-130v73,0,126,60,126,130xm39,-127v0,66,49,120,114,120v64,0,112,-55,112,-119v0,-64,-48,-119,-113,-119v-64,0,-113,54,-113,118","w":304},"P":{"d":"222,-176v0,81,-87,83,-173,79r0,97r-12,0r0,-252v87,-2,185,-9,185,76xm210,-175v0,-73,-85,-68,-161,-66r0,133v76,2,161,6,161,-67","w":240},"Q":{"d":"152,-256v111,0,167,144,92,221r36,31r-8,9r-36,-32v-24,21,-52,31,-84,31v-73,0,-126,-60,-126,-130v0,-69,55,-130,126,-130xm39,-127v0,97,116,159,188,92r-53,-46r8,-9r53,47v65,-69,17,-202,-83,-202v-64,0,-113,54,-113,118","w":304},"R":{"d":"232,-181v0,46,-35,68,-79,72r84,109r-16,0r-83,-108r-88,0r0,108r-13,0r0,-252v88,0,195,-13,195,71xm220,-180v1,-74,-95,-61,-170,-61r0,122v76,0,169,10,170,-61","w":260},"S":{"d":"207,-65v-4,88,-137,85,-186,28r9,-9v27,25,57,38,92,38v40,1,73,-19,72,-56v-2,-83,-167,-36,-163,-126v3,-75,118,-84,167,-36r-7,10v-42,-41,-148,-41,-148,25v0,84,169,36,164,126","w":230},"T":{"d":"103,0r0,-241r-89,0r0,-11r192,0r0,11r-90,0r0,241r-13,0","w":218},"U":{"d":"238,-110v1,70,-36,115,-102,114v-65,0,-103,-44,-103,-113r0,-143r13,0r0,143v-1,62,32,102,90,102v59,-1,91,-39,90,-102r0,-143r12,0r0,142","w":271},"V":{"d":"127,2r-113,-254r14,0r105,238r105,-238r13,0r-113,254r-11,0","w":264},"W":{"d":"104,2r-87,-254r13,0r79,234r76,-235r9,0r76,236r79,-235r13,0r-87,254r-10,0r-76,-232r-75,232r-10,0","w":378},"X":{"d":"15,0r102,-128r-98,-124r14,0r92,116r91,-116r14,0r-98,123r102,129r-15,0r-94,-120r-95,120r-15,0","w":249},"Y":{"d":"117,0r0,-103r-108,-149r15,0r99,138r98,-138r15,0r-107,149r0,103r-12,0","w":245},"Z":{"d":"24,0r0,-7r179,-234r-173,0r0,-11r190,0r0,7r-179,234r178,0r0,11r-195,0","w":245},"[":{"d":"35,47r0,-299r96,0r0,9r-84,0r0,281r84,0r0,9r-96,0","w":150},"\\":{"d":"168,46r-169,-333r12,0r169,333r-12,0","w":173},"]":{"d":"19,47r0,-9r85,0r0,-281r-85,0r0,-9r96,0r0,299r-96,0","w":150},"^":{"d":"29,-178r57,-75r8,0r57,75r-11,0r-50,-63r-50,63r-11,0","w":180},"_":{"d":"-1,55r0,-10r207,0r0,10r-207,0","w":205},"`":{"d":"98,-214r-38,-39r14,-7r33,46r-9,0","w":180},"a":{"d":"163,-38v-16,55,-146,60,-145,-14v1,-62,90,-68,145,-48v11,-76,-69,-89,-123,-58r-5,-10v57,-31,140,-20,140,55r0,113r-12,0r0,-38xm31,-53v-1,31,27,47,57,47v47,-1,84,-29,76,-83v-47,-16,-131,-20,-133,36","w":204},"b":{"d":"215,-91v0,53,-39,96,-90,95v-39,0,-68,-24,-80,-53r0,49r-12,0r0,-263r12,0r0,132v12,-30,39,-55,80,-55v51,0,90,43,90,95xm44,-91v0,45,37,84,80,84v46,0,79,-37,79,-84v0,-46,-34,-84,-79,-84v-44,0,-80,40,-80,84"},"c":{"d":"33,-91v0,75,99,118,146,52r9,7v-52,71,-167,28,-167,-59v0,-84,111,-130,165,-61r-8,8v-47,-61,-145,-23,-145,53","w":203},"d":{"d":"192,-50v-12,30,-40,54,-81,54v-51,0,-89,-43,-89,-95v0,-51,39,-96,89,-95v40,0,70,24,81,54r0,-131r11,0r0,263r-11,0r0,-50xm34,-91v0,46,33,84,78,84v45,0,80,-38,80,-84v0,-45,-37,-84,-80,-84v-45,0,-78,38,-78,84"},"e":{"d":"33,-86v-3,77,103,109,143,46r9,7v-48,71,-164,32,-164,-58v0,-51,36,-95,87,-95v53,0,85,46,83,100r-158,0xm178,-97v4,-64,-78,-105,-122,-56v-14,15,-22,33,-23,56r145,0","w":209},"f":{"d":"45,-181v-8,-59,24,-98,78,-78r0,11v-43,-18,-74,10,-66,67r65,0r0,10r-65,0r0,171r-12,0r0,-171r-27,0r0,-10r27,0","w":122},"g":{"d":"201,-28v6,90,-111,110,-171,59r7,-10v51,46,158,35,152,-50r0,-33v-13,26,-41,48,-79,49v-46,1,-88,-40,-88,-87v0,-46,42,-87,88,-86v37,1,66,22,79,48r0,-43r12,0r0,153xm34,-100v0,41,36,76,77,76v41,0,79,-33,79,-76v0,-41,-39,-75,-79,-75v-41,0,-77,34,-77,75","w":234},"h":{"d":"113,-175v-38,0,-69,34,-68,73r0,102r-12,0r0,-263r12,0r0,125v9,-26,34,-48,70,-48v48,0,75,34,75,80r0,106r-12,0v-2,-78,17,-175,-65,-175","w":219},"i":{"d":"34,-231r0,-22r15,0r0,22r-15,0xm36,0r0,-181r12,0r0,181r-12,0","w":83},"j":{"d":"34,-231r0,-22r16,0r0,22r-16,0xm48,17v1,31,-19,47,-51,41r0,-10v23,5,39,-6,39,-30r0,-199r12,0r0,198","w":83},"k":{"d":"33,0r0,-263r12,0r0,199r121,-117r15,0r-83,80r87,101r-14,0r-81,-93r-45,43r0,50r-12,0","w":198},"l":{"d":"36,0r0,-263r12,0r0,263r-12,0","w":83},"m":{"d":"106,-175v-34,0,-61,35,-61,70r0,105r-12,0r0,-181r12,0r0,40v9,-22,32,-45,62,-45v34,0,56,22,64,48v8,-24,34,-48,65,-48v84,-2,69,103,69,186r-12,0v-3,-74,19,-177,-58,-175v-33,0,-60,33,-60,69r0,106r-12,0v-3,-73,19,-175,-57,-175","w":336},"n":{"d":"113,-175v-38,0,-69,34,-68,73r0,102r-12,0r0,-181r12,0r0,43v9,-26,34,-48,70,-48v48,0,75,34,75,80r0,106r-12,0v-2,-78,17,-175,-65,-175","w":219},"o":{"d":"208,-91v0,52,-42,95,-94,95v-53,0,-93,-42,-93,-95v0,-52,42,-95,94,-95v52,0,93,43,93,95xm33,-91v0,46,37,85,82,85v47,0,81,-39,81,-85v0,-46,-37,-84,-82,-84v-46,0,-81,39,-81,84","w":228},"p":{"d":"125,4v-39,0,-68,-24,-80,-53r0,107r-12,0r0,-239r12,0r0,50v12,-30,39,-55,80,-55v51,-1,90,43,90,96v0,52,-40,95,-90,94xm44,-91v0,45,37,84,80,84v46,0,79,-37,79,-84v0,-46,-34,-84,-79,-84v-44,0,-80,40,-80,84"},"q":{"d":"111,-186v40,0,70,24,81,54r0,-49r11,0r0,239r-11,0r0,-108v-12,30,-40,54,-81,54v-51,0,-89,-43,-89,-95v0,-51,39,-96,89,-95xm34,-91v0,46,33,84,78,84v45,0,80,-38,80,-84v0,-45,-37,-84,-80,-84v-45,0,-78,38,-78,84"},"r":{"d":"122,-173v-45,-3,-77,44,-77,87r0,86r-12,0r0,-181r12,0r0,55v10,-30,39,-60,77,-59r0,12","w":129},"s":{"d":"155,-47v-1,63,-104,59,-138,24r6,-9v21,17,44,24,68,24v27,1,55,-13,52,-38v-6,-61,-118,-24,-118,-91v0,-56,86,-59,125,-28r-6,10v-32,-27,-102,-29,-107,17v9,58,119,26,118,91","w":177},"t":{"d":"55,-48v-3,37,35,49,65,34v3,18,-16,17,-29,17v-73,2,-41,-107,-48,-174r-28,0r0,-10r28,0r0,-61r12,0r0,61r66,0r0,10r-66,0r0,123","w":138},"u":{"d":"175,-43v-10,25,-35,47,-70,47v-48,0,-75,-33,-75,-79r0,-106r11,0v1,78,-16,175,65,175v39,0,70,-33,69,-73r0,-102r11,0r0,181r-11,0r0,-43","w":219},"v":{"d":"98,1r-83,-182r13,0r75,168r74,-168r13,0r-83,182r-9,0","w":204},"w":{"d":"82,1r-65,-182r13,0r57,166r57,-168r10,0r57,168r57,-166r12,0r-64,182r-10,0r-57,-165r-57,165r-10,0","w":297},"x":{"d":"14,0r77,-92r-74,-89r14,0r67,81r68,-81r14,0r-75,88r78,93r-15,0r-70,-85r-71,85r-13,0","w":196},"y":{"d":"111,5v-15,42,-45,68,-94,45r5,-10v41,20,68,-2,80,-40r-87,-181r13,0r80,168r73,-168r12,0","w":207},"z":{"d":"16,0r0,-6r136,-165r-131,0r0,-10r147,0r0,6r-135,165r136,0r0,10r-153,0","w":185},"{":{"d":"82,-52v0,59,10,89,60,94r-2,9v-55,-7,-74,-35,-70,-102v2,-34,-17,-49,-52,-47r0,-10v86,15,20,-111,84,-138v10,-4,22,-8,38,-11r2,8v-49,7,-60,34,-60,94v0,30,-13,48,-39,52v26,5,39,22,39,51","w":164},"|":{"d":"43,46r0,-333r11,0r0,333r-11,0","w":96},"}":{"d":"24,-257v55,7,75,34,70,102v-2,34,17,49,52,47r0,10v-86,-15,-20,110,-84,138v-10,4,-22,8,-38,11r-2,-9v50,-5,60,-35,60,-94v0,-30,13,-47,39,-51v-36,-6,-41,-38,-39,-80v2,-46,-22,-57,-60,-66","w":164},"~":{"d":"38,-90r-8,-1v5,-20,14,-31,28,-31v8,-2,39,19,46,18v14,0,14,-9,19,-21r8,3v-9,72,-79,-23,-93,32","w":161},"\u2026":{"d":"160,0r0,-23r17,0r0,23r-17,0xm93,0r0,-23r17,0r0,23r-17,0xm26,0r0,-23r16,0r0,23r-16,0","w":202},"\u2018":{"d":"25,-197v0,-27,-2,-51,20,-56r3,6v-10,5,-14,14,-13,27r7,0r0,23r-17,0","w":68},"\u2019":{"d":"39,-208v-3,5,-16,20,-18,6v10,-5,14,-14,13,-27r-8,0r0,-23r18,0v0,16,1,36,-5,44","w":68},"\u201c":{"d":"70,-197v-1,-27,-1,-50,20,-56r4,6v-10,5,-15,14,-14,27r7,0r0,23r-17,0xm25,-197v0,-27,-2,-51,20,-56r3,6v-10,5,-14,14,-13,27r7,0r0,23r-17,0","w":113},"\u201d":{"d":"84,-208v-3,5,-16,20,-18,6v10,-5,15,-14,14,-27r-8,0r0,-23r17,0v0,16,1,36,-5,44xm39,-208v-3,5,-16,20,-18,6v10,-5,14,-14,13,-27r-8,0r0,-23r18,0v0,16,1,36,-5,44","w":113},"\u2013":{"d":"25,-101r0,-12r142,0r0,12r-142,0","w":192},"\u2014":{"d":"25,-101r0,-12r272,0r0,12r-272,0","w":322},"\u2122":{"d":"117,-141r0,-111r8,0r46,67r45,-67r8,0r0,111r-8,0r0,-96r-46,65r-45,-65r0,96r-8,0xm46,-141r0,-103r-38,0r0,-8r84,0r0,8r-38,0r0,103r-8,0","w":241},"\u00a0":{"w":103}}});
/*!
 * HTF Gothamﾃつｪ ﾃつｩ 2003 The Hoefler Type Foundry, Inc. Info: www.
 * typography. com
 */
Cufon.registerFont({"w":234,"face":{"font-family":"GothamLight","font-weight":200,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 3 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-44 -287 408 63","underline-thickness":"7.2","underline-position":"-47.88","slope":"-12","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":103},"!":{"d":"29,-66r47,-186r13,0r-54,186r-6,0xm6,0r6,-23r18,0r-7,23r-17,0","w":78},"\"":{"d":"88,-161r36,-91v4,1,12,-2,14,1r-43,90r-7,0xm35,-161r35,-91v5,1,12,-2,15,1r-44,90r-6,0","w":124},"#":{"d":"35,0r24,-70r-42,0r3,-11r43,0r32,-92r-47,0r3,-11r47,0r24,-68r12,0r-24,68r81,0r24,-68r11,0r-24,68r42,0r-2,11r-44,0r-31,92r46,0r-3,11r-47,0r-25,70r-11,0r25,-70r-82,0r-24,70r-11,0xm74,-81r82,0r32,-92r-82,0","w":240},"$":{"d":"193,-68v0,45,-45,72,-100,68r-10,35r-11,0r10,-37v-32,-5,-58,-19,-77,-43r9,-8v18,22,41,36,71,41r31,-113v-35,-15,-66,-22,-66,-62v0,-44,47,-72,100,-64r6,-22r11,0r-7,24v25,5,46,15,62,32r-9,9v-16,-16,-34,-27,-56,-31r-29,107v34,15,65,24,65,64xm147,-240v-55,-13,-112,43,-71,82v8,8,23,15,42,22xm95,-11v59,9,110,-45,72,-87v-8,-9,-23,-16,-42,-23","w":223},"%":{"d":"152,-202v0,37,-30,77,-67,77v-28,0,-49,-24,-49,-52v0,-38,31,-78,68,-78v28,0,48,24,48,53xm26,0r249,-252r14,0r-249,252r-14,0xm279,-75v0,37,-31,78,-68,78v-29,0,-49,-24,-49,-53v0,-37,31,-77,68,-77v28,0,49,24,49,52xm48,-178v0,23,14,43,37,43v30,0,55,-35,55,-66v0,-24,-13,-43,-37,-43v-30,0,-55,35,-55,66xm229,-117v-52,-5,-83,105,-17,109v52,4,83,-104,17,-109","w":296},"&":{"d":"150,-256v32,-1,56,19,56,49v0,31,-28,55,-84,70r56,80v14,-15,29,-37,44,-63r10,6v-16,26,-32,47,-47,65r33,47r-9,6r-32,-45v-30,30,-62,45,-95,45v-38,0,-70,-24,-70,-63v0,-41,31,-69,92,-85v-40,-48,-12,-112,46,-112xm150,-246v-53,1,-69,60,-34,101v52,-14,78,-35,78,-62v0,-25,-19,-39,-44,-39xm24,-60v0,76,107,62,147,10r-61,-85v-57,14,-86,39,-86,75","w":245},"'":{"d":"35,-161r35,-91v5,1,12,-2,15,1r-44,90r-6,0","w":71},"(":{"d":"180,-249v-119,31,-188,200,-76,290r-7,7v-73,-58,-86,-155,-27,-232v25,-33,60,-58,106,-75","w":146},")":{"d":"-27,40v119,-32,190,-200,77,-291r7,-7v73,58,84,156,26,232v-25,33,-60,58,-106,75","w":146},"*":{"d":"96,-147r-10,-2r15,-47r-46,16r-3,-11r48,-10r-37,-33r8,-7r33,36r10,-47r10,3r-15,46r47,-16r2,11r-48,10r37,33r-8,7r-32,-36","w":155},"+":{"d":"87,-45r21,-76r-75,0r3,-11r75,0r20,-76r12,0r-21,76r74,0r-3,11r-74,0r-20,76r-12,0","w":211},",":{"d":"8,21v-3,4,-18,17,-20,5v11,-3,18,-12,21,-26r-8,0r7,-23r17,0v-4,14,-10,36,-17,44","w":68},"-":{"d":"27,-101r4,-12r92,0r-3,12r-93,0","w":142},".":{"d":"1,0r7,-23r17,0r-6,23r-18,0","w":68},"\/":{"d":"-39,46r259,-333r13,0r-259,333r-13,0","w":178},"0":{"d":"243,-162v-2,85,-46,163,-129,166v-55,2,-83,-41,-83,-94v0,-86,46,-162,128,-166v54,-3,85,41,84,94xm43,-91v0,48,24,86,72,84v73,-3,114,-76,115,-154v1,-49,-24,-86,-72,-84v-72,4,-115,77,-115,154","w":254},"1":{"d":"35,0r65,-240r-53,20r-1,-11v24,-7,41,-21,70,-23r-68,254r-13,0","w":115},"2":{"d":"135,-256v56,0,94,55,60,97v-45,55,-123,100,-179,147r152,0r-3,12r-172,0r2,-8r153,-120v26,-22,46,-33,46,-68v0,-65,-101,-60,-134,-11r-9,-7v25,-28,54,-42,84,-42","w":205},"3":{"d":"183,-76v4,88,-153,108,-183,32r10,-5v27,66,162,51,160,-26v-1,-40,-39,-53,-87,-51r-2,-7r120,-107r-141,0r4,-12r157,0r-2,9r-119,107v45,-1,82,20,83,60","w":207},"4":{"d":"136,0r17,-64r-143,0r-2,-9r197,-181r11,0r-48,179r41,0r-3,11r-41,0r-17,64r-12,0xm26,-75r130,0r43,-159","w":226},"5":{"d":"189,-82v0,66,-88,110,-150,74v-14,-8,-26,-20,-34,-33r10,-7v33,70,161,46,161,-34v0,-62,-79,-70,-127,-41r-7,-6r40,-123r133,0r-3,12r-122,0r-34,102v54,-27,133,-8,133,56","w":211},"6":{"d":"207,-85v0,48,-44,89,-96,89v-48,0,-82,-33,-81,-84v2,-92,47,-176,132,-176v29,0,53,11,71,34r-9,7v-35,-42,-95,-38,-132,0v-28,28,-44,65,-49,110v12,-26,45,-50,84,-50v45,0,80,29,80,70xm42,-72v0,39,31,66,70,66v44,1,82,-36,82,-79v0,-37,-28,-59,-67,-59v-44,0,-84,34,-85,72","w":226},"7":{"d":"23,0r177,-240r-151,0r4,-12r164,0r-2,8r-178,244r-14,0","w":198},"8":{"d":"203,-68v3,91,-188,98,-188,6v0,-42,40,-66,81,-71v-23,-9,-42,-25,-42,-54v0,-83,165,-95,168,-8v1,38,-33,63,-69,68v27,7,49,28,50,59xm66,-186v5,80,144,60,144,-8v-5,-73,-147,-63,-144,8xm28,-63v3,76,166,74,162,-5v-3,-82,-163,-71,-162,5","w":227},"9":{"d":"215,-172v0,121,-114,233,-204,142r10,-8v34,44,94,40,132,1v27,-28,44,-64,49,-109v-12,27,-46,51,-85,51v-46,1,-79,-30,-80,-71v-1,-50,45,-91,97,-90v48,1,81,34,81,84xm50,-166v1,36,28,59,68,59v44,0,84,-33,84,-73v1,-39,-30,-65,-69,-65v-44,0,-84,37,-83,79","w":226},":":{"d":"45,-158r6,-23r17,0r-6,23r-17,0xm3,0r6,-23r17,0r-6,23r-17,0","w":70},";":{"d":"45,-158r6,-23r17,0r-6,23r-17,0xm9,21v-3,4,-18,17,-20,5v11,-3,17,-12,21,-26r-7,0r6,-23r17,0v-3,15,-9,36,-17,44","w":70},"<":{"d":"172,-37r-143,-86r2,-8r189,-85r-3,14r-171,76r130,77","w":221},"=":{"d":"53,-163r2,-11r155,0r-3,11r-154,0xm30,-80r3,-11r155,0r-3,11r-155,0","w":221},">":{"d":"17,-37r3,-14r171,-77r-130,-76r3,-12r144,85r-2,8","w":221},"?":{"d":"36,-219v43,-52,154,-51,154,25v0,51,-47,72,-96,80r-16,48r-7,0v5,-19,6,-42,14,-59v47,-3,93,-23,93,-68v0,-66,-98,-63,-134,-18xm48,0r6,-23r18,0r-7,23r-17,0","w":185},"@":{"d":"34,-77v-5,105,117,156,211,109r4,8v-98,49,-231,-4,-224,-117v6,-105,70,-174,174,-179v76,-4,133,53,133,124v0,55,-30,101,-71,104v-26,2,-38,-17,-37,-41v-12,21,-36,41,-67,41v-34,0,-56,-25,-56,-58v0,-44,39,-90,83,-90v31,0,51,20,55,45r12,-39r11,3v-8,35,-35,74,-25,115v3,10,12,15,25,15v37,0,61,-47,61,-95v0,-65,-55,-119,-124,-116v-96,5,-160,74,-165,171xm114,-87v0,28,16,48,44,48v36,0,76,-40,75,-75v-1,-31,-17,-50,-49,-51v-39,-1,-71,40,-70,78","w":345},"A":{"d":"-10,0r187,-254r12,0r51,254r-12,0r-15,-73r-155,0r-54,73r-14,0xm66,-85r145,0r-31,-154","w":275},"B":{"d":"230,-74v0,88,-123,74,-217,74r68,-252v72,1,167,-14,167,57v0,40,-33,63,-69,68v28,7,51,22,51,53xm236,-194v0,-61,-85,-45,-146,-47r-29,108v77,0,175,11,175,-61xm218,-75v0,-61,-95,-45,-160,-47r-30,111v82,0,190,13,190,-64","w":259},"C":{"d":"46,-98v-5,99,127,118,181,51r8,8v-60,73,-202,50,-202,-58v0,-105,104,-194,206,-145v17,8,28,23,36,40r-11,5v-17,-32,-44,-48,-81,-48v-81,0,-134,66,-137,147","w":263},"D":{"d":"261,-146v0,91,-72,145,-167,146r-81,0r68,-252v100,-7,180,15,180,106xm249,-145v0,-80,-69,-103,-159,-96r-62,230v122,11,221,-26,221,-134","w":275},"E":{"d":"13,0r68,-252r176,0r-3,11r-164,0r-29,109r149,0r-3,11r-149,0r-30,110r166,0r-2,11r-179,0","w":236},"F":{"d":"13,0r68,-252r175,0r-3,11r-163,0r-30,112r148,0r-4,11r-147,0r-31,118r-13,0","w":230},"G":{"d":"47,-102v0,90,106,122,173,72r25,-86r-87,0r3,-12r99,0r-30,105v-76,55,-199,23,-195,-78v4,-89,64,-155,152,-155v41,0,71,15,91,45r-10,7v-18,-27,-46,-41,-82,-41v-75,0,-139,70,-139,143","w":281},"H":{"d":"13,0r68,-252r12,0r-32,120r172,0r32,-120r12,0r-67,252r-13,0r33,-121r-172,0r-32,121r-13,0","w":271},"I":{"d":"15,0r68,-252r12,0r-67,252r-13,0","w":92},"J":{"d":"155,-81v-7,60,-75,113,-133,69v-13,-10,-20,-24,-24,-41r11,-4v12,54,74,67,106,30v44,-51,49,-153,74,-225r12,0","w":190},"K":{"d":"13,0r68,-252r12,0r-45,168r212,-168r19,0r-139,109r75,143r-14,0r-71,-136r-86,68r-18,68r-13,0","w":255},"L":{"d":"13,0r68,-252r12,0r-65,241r152,0r-3,11r-164,0","w":212},"M":{"d":"13,0r68,-252r10,0r65,153r147,-153r13,0r-67,252r-12,0r61,-231r-146,151r-65,-151r-62,231r-12,0","w":311},"N":{"d":"13,0r68,-252r11,0r121,233r63,-233r12,0r-68,252r-10,0r-122,-235r-63,235r-12,0","w":282},"O":{"d":"287,-148v-2,85,-59,148,-144,152v-61,2,-109,-47,-108,-108v3,-85,59,-149,144,-152v62,-2,109,48,108,108xm47,-104v-1,54,42,99,96,98v78,-2,128,-63,131,-141v2,-55,-41,-100,-96,-98v-78,3,-128,62,-131,141","w":302},"P":{"d":"245,-185v-1,85,-99,94,-194,88r-25,97r-13,0r68,-252v77,-1,164,-8,164,67xm233,-184v1,-65,-76,-57,-143,-57r-36,133v86,4,178,0,179,-76","w":239},"Q":{"d":"287,-148v0,50,-25,92,-54,117r26,29r-8,7r-26,-29v-71,61,-195,17,-190,-80v4,-85,59,-149,144,-152v62,-2,108,48,108,108xm47,-104v-4,87,106,128,170,72r-45,-50r9,-8r45,51v26,-23,47,-62,48,-108v1,-55,-41,-100,-96,-98v-78,3,-128,62,-131,141","w":302},"R":{"d":"254,-189v-1,52,-43,79,-98,80r56,109r-14,0r-55,-108r-89,0r-28,108r-13,0r68,-252v77,0,174,-12,173,63xm242,-188v0,-65,-86,-52,-152,-53r-33,122v84,1,185,10,185,-69","w":259},"S":{"d":"199,-68v-1,63,-89,89,-148,59v-17,-9,-32,-20,-43,-35r9,-7v33,58,170,62,170,-16v0,-70,-132,-47,-132,-120v0,-78,134,-91,175,-32r-9,8v-35,-50,-153,-45,-153,23v0,68,132,44,131,120","w":230},"T":{"d":"75,0r64,-241r-89,0r3,-11r191,0r-2,11r-90,0r-65,241r-12,0","w":214},"U":{"d":"52,-114v-18,59,13,110,73,107v115,-6,110,-153,144,-245r12,0v-34,100,-32,251,-156,256v-69,3,-103,-51,-84,-122r36,-134r12,0","w":271},"V":{"d":"97,2r-43,-254r13,0r38,239r168,-239r14,0r-180,254r-10,0","w":257},"W":{"d":"78,2r-22,-254r12,0r19,236r140,-237r9,0r16,237r143,-236r13,0r-156,254r-10,0r-16,-233r-138,233r-10,0","w":380},"X":{"d":"-8,0r133,-130r-68,-122r12,0r65,116r118,-116r15,0r-128,125r71,127r-13,0r-66,-120r-123,120r-16,0","w":244},"Y":{"d":"87,0r28,-104r-66,-148r13,0r61,138r136,-138r16,0r-148,150r-28,102r-12,0","w":239},"Z":{"d":"-4,0r2,-7r239,-234r-170,0r3,-11r189,0r-2,7r-239,234r176,0r-3,11r-195,0","w":239},"[":{"d":"3,47r81,-299r96,0r-3,9r-84,0r-76,281r85,0r-3,9r-96,0","w":150},"\\":{"d":"135,46r-80,-333r11,0r80,333r-11,0","w":173},"]":{"d":"-23,47r2,-9r85,0r75,-281r-84,0r2,-9r96,0r-80,299r-96,0","w":150},"^":{"d":"51,-178r77,-75r9,0r37,75r-11,0r-32,-63r-67,63r-13,0","w":180},"_":{"d":"-40,55r3,-10r206,0r-3,10r-206,0","w":204},"`":{"d":"135,-214r-27,-39r14,-7r21,46r-8,0","w":180},"a":{"d":"54,-175v60,-24,144,-5,123,71r-28,104r-11,0r10,-39v-19,29,-45,43,-80,43v-31,0,-60,-19,-59,-50v1,-69,94,-74,156,-53v26,-64,-49,-92,-108,-65xm21,-48v0,51,74,51,105,23v20,-18,31,-36,36,-65v-54,-14,-141,-19,-141,42","w":204},"b":{"d":"215,-109v0,57,-46,113,-103,113v-41,0,-70,-27,-76,-59r-15,55r-12,0r71,-263r11,0r-33,123v14,-22,46,-46,82,-46v43,0,75,34,75,77xm42,-77v-2,40,29,71,70,71v51,0,90,-51,90,-101v0,-39,-26,-69,-63,-68v-54,3,-95,45,-97,98"},"c":{"d":"30,-75v0,69,87,91,130,42r8,7v-49,54,-150,30,-150,-48v0,-90,131,-159,178,-69r-10,6v-41,-80,-156,-19,-156,62","w":200},"d":{"d":"176,-41v-15,22,-47,45,-83,45v-41,0,-74,-34,-74,-76v0,-57,45,-114,102,-114v41,0,70,28,77,60r35,-130r12,0r-69,256r-11,0xm122,-175v-90,0,-133,169,-28,169v53,0,95,-44,97,-98v1,-40,-28,-71,-69,-71"},"e":{"d":"123,-186v53,0,82,50,65,99r-157,0v-15,80,83,105,132,55r7,9v-51,48,-152,31,-152,-48v0,-57,49,-115,105,-115xm179,-98v19,-72,-67,-100,-113,-55v-16,16,-28,33,-33,55r146,0","w":210},"f":{"d":"18,0r46,-171r-28,0r3,-10r28,0v7,-53,41,-104,98,-74r-3,11v-34,-17,-68,-7,-76,35r-8,28r66,0r-3,10r-66,0r-45,171r-12,0","w":122},"g":{"d":"123,-186v41,0,68,25,75,58r15,-53r11,0v-23,70,-29,163,-71,213v-36,43,-122,27,-153,-8r8,-8v32,35,101,43,137,9v16,-15,27,-51,34,-80v-38,64,-157,53,-158,-29v-2,-54,48,-102,102,-102xm33,-85v-1,35,31,61,66,61v47,0,93,-42,93,-85v0,-37,-32,-66,-69,-66v-49,0,-90,44,-90,90"},"h":{"d":"179,-98v10,-41,-4,-80,-48,-77v-84,4,-89,105,-110,175r-12,0r71,-263r11,0r-33,123v28,-60,136,-65,136,13v0,46,-21,86,-30,127r-12,0","w":218},"i":{"d":"71,-231r6,-22r16,0r-6,22r-16,0xm11,0r49,-181r12,0r-49,181r-12,0","w":83},"j":{"d":"71,-231r6,-22r16,0r-6,22r-16,0xm17,20v-9,32,-28,44,-61,37r3,-11v24,9,41,-2,47,-27r54,-200r12,0","w":83},"k":{"d":"9,0r71,-263r11,0r-54,200r151,-118r16,0r-102,80r56,101r-13,0r-52,-94r-60,46r-12,48r-12,0","w":198},"l":{"d":"11,0r71,-263r12,0r-71,263r-12,0","w":83},"m":{"d":"166,-98v12,-40,-1,-80,-42,-77v-77,6,-84,107,-103,175r-12,0r49,-181r11,0r-11,41v27,-60,116,-63,123,6v14,-26,40,-51,76,-52v45,0,63,41,50,88r-26,98r-11,0v10,-43,28,-81,30,-129v2,-52,-61,-57,-92,-24v-35,36,-40,100,-57,153r-12,0","w":336},"n":{"d":"179,-98v10,-41,-4,-80,-48,-77v-84,4,-89,105,-110,175r-12,0r49,-181r11,0r-11,41v28,-60,136,-65,136,13v0,46,-21,86,-30,127r-12,0","w":218},"o":{"d":"207,-105v0,57,-50,109,-107,109v-47,0,-82,-34,-82,-80v0,-56,50,-110,107,-110v47,0,82,35,82,81xm30,-77v0,41,30,71,71,71v51,0,95,-50,94,-98v0,-41,-30,-71,-71,-71v-51,0,-95,50,-94,98","w":225},"p":{"d":"112,4v-41,0,-70,-27,-76,-59r-31,113r-11,0r64,-239r11,0r-11,41v14,-22,46,-46,82,-46v43,0,75,34,75,77v0,57,-46,113,-103,113xm42,-77v-2,40,29,71,70,71v51,0,90,-51,90,-101v0,-39,-26,-69,-63,-68v-54,3,-95,45,-97,98"},"q":{"d":"121,-186v41,0,70,28,77,60r15,-55r12,0r-66,244r-11,0r28,-105v-14,23,-47,46,-83,46v-41,0,-74,-34,-74,-76v0,-57,45,-114,102,-114xm122,-175v-90,0,-133,169,-28,169v53,0,95,-44,97,-98v1,-40,-28,-71,-69,-71"},"r":{"d":"9,0r49,-181r11,0r-14,54v20,-30,49,-57,92,-58r-4,12v-45,1,-89,47,-100,88r-22,85r-12,0","w":130},"s":{"d":"144,-48v-3,63,-109,66,-143,22r8,-9v30,36,114,41,123,-11v-3,-51,-96,-34,-96,-89v0,-58,98,-62,131,-26r-8,8v-32,-31,-107,-30,-111,17v5,49,99,33,96,88","w":177},"t":{"d":"96,-1v-36,13,-76,-3,-64,-48r32,-122r-27,0r3,-10r27,0r17,-61r11,0r-16,61r65,0r-3,10r-65,0r-35,139v-2,26,36,29,58,19","w":137},"u":{"d":"40,-83v-13,40,5,79,47,77v83,-5,91,-104,111,-175r12,0r-49,181r-12,0r12,-41v-30,60,-137,64,-137,-13v0,-46,22,-86,31,-127r11,0","w":218},"v":{"d":"68,1r-33,-182r13,0r28,168r119,-168r13,0r-130,182r-10,0","w":201},"w":{"d":"54,1r-16,-182r12,0r13,165r102,-167r9,0r12,167r101,-165r13,0r-113,182r-10,0r-12,-164r-101,164r-10,0","w":295},"x":{"d":"-11,0r102,-94r-49,-87r13,0r44,81r87,-81r16,0r-98,89r52,92r-13,0r-47,-85r-91,85r-16,0","w":194},"y":{"d":"84,4v-26,38,-59,71,-111,44r6,-9v44,24,74,-7,94,-39r-39,-181r12,0r36,170r117,-170r14,0","w":205},"z":{"d":"-9,0r1,-6r178,-165r-129,0r3,-10r148,0r-2,6r-178,165r135,0r-3,10r-153,0","w":183},"{":{"d":"64,-9v1,31,19,43,47,51r-4,9v-66,-13,-54,-69,-43,-127v4,-18,-18,-23,-42,-22r2,-10v108,12,31,-153,164,-149r-1,10v-51,2,-72,29,-81,75v-8,42,-16,63,-54,69v47,8,11,64,12,94","w":164},"|":{"d":"51,46r0,-333r11,0r0,333r-11,0","w":96},"}":{"d":"63,-257v68,13,55,68,43,126v-4,18,19,25,43,23v-1,6,-4,9,-13,9v-83,-4,-38,122,-112,142v-11,4,-26,6,-42,7r1,-9v52,-2,72,-30,81,-76v8,-42,17,-62,54,-69v-45,-8,-11,-65,-12,-93v-1,-31,-17,-44,-46,-52","w":164},"~":{"d":"105,-89v-10,3,-31,-24,-42,-24v-8,0,-15,7,-23,23r-8,-3v9,-21,20,-32,33,-32v12,-3,30,25,42,24v8,0,15,-7,23,-23r8,3v-9,21,-20,32,-33,32","w":161},"\u2026":{"d":"136,0r6,-23r17,0r-6,23r-17,0xm68,0r7,-23r17,0r-6,23r-18,0xm1,0r7,-23r17,0r-6,23r-18,0","w":203},"\u2018":{"d":"53,-197v7,-25,9,-51,35,-56r2,6v-11,3,-18,13,-21,27r8,0r-7,23r-17,0","w":68},"\u2019":{"d":"70,-207v-3,4,-18,17,-20,5v11,-3,18,-13,21,-27r-8,0r6,-23r18,0v-4,15,-9,36,-17,45","w":68},"\u201c":{"d":"98,-197v8,-24,10,-51,35,-56r2,6v-11,3,-18,13,-21,27r8,0r-6,23r-18,0xm53,-197v7,-25,9,-51,35,-56r2,6v-11,3,-18,13,-21,27r7,0r-6,23r-17,0","w":114},"\u201d":{"d":"114,-207v-3,4,-18,17,-20,5v11,-3,18,-13,21,-27r-8,0r6,-23r18,0v-4,15,-9,36,-17,45xm69,-207v-4,4,-19,17,-21,5v11,-3,18,-13,21,-27r-7,0r6,-23r17,0v-3,15,-8,37,-16,45","w":114},"\u2013":{"d":"27,-101r4,-12r141,0r-3,12r-142,0","w":192},"\u2014":{"d":"27,-101r4,-12r272,0r-3,12r-273,0","w":322},"\u2122":{"d":"126,-141r31,-111r8,0r26,67r64,-67r9,0r-31,111r-9,0r28,-96r-64,65r-27,-65r-27,96r-8,0xm54,-141r30,-103r-39,0r3,-8r84,0r-2,8r-38,0r-30,103r-8,0","w":241},"\u00a0":{"w":103}}});
}finally{};

try{/*!
 * HTF Gothamﾃつｪ ﾃつｩ 2000 The Hoefler Type Foundry, Inc. Info: www.
 * typography. com
 */
Cufon.registerFont({"w":241,"face":{"font-family":"GothamMedium","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-9 -287 389 59.25","underline-thickness":"7.2","underline-position":"-47.88","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":108},"!":{"d":"29,-252r51,0r-13,172r-25,0xm78,0r-47,0r0,-49r47,0r0,49","w":108},"\"":{"d":"100,-144r9,-108v15,2,38,-4,49,2r-35,106r-23,0xm22,-144r8,-108v15,2,38,-4,49,2r-35,106r-22,0","w":175},"#":{"d":"238,-158r-39,0r-10,63r36,0r0,37r-43,0r-10,58r-38,0r10,-58r-59,0r-10,58r-39,0r10,-58r-32,0r0,-37r39,0r10,-63r-36,0r0,-37r43,0r10,-57r38,0r-10,57r59,0r10,-57r38,0r-9,57r32,0r0,37xm161,-158r-59,0r-11,63r59,0","w":252},"$":{"d":"132,-145v46,12,79,27,79,75v0,43,-35,66,-77,70r0,35r-31,0r0,-36v-31,-4,-60,-15,-85,-35r23,-33v22,18,42,28,63,31r0,-71v-46,-13,-77,-24,-77,-74v0,-41,35,-65,76,-69r0,-21r31,0r0,22v25,3,48,12,68,27r-21,34v-16,-12,-32,-19,-49,-23r0,68xm104,-216v-28,-1,-46,31,-27,50v5,5,14,10,27,14r0,-64xm132,-37v29,2,46,-30,29,-51v-5,-5,-15,-10,-29,-14r0,65","w":231},"%":{"d":"77,-255v34,0,59,29,59,64v0,34,-25,66,-60,65v-34,-1,-59,-30,-59,-64v0,-34,25,-65,60,-65xm263,-252r-185,252r-35,0r184,-252r36,0xm229,-126v34,0,59,29,59,64v0,35,-24,65,-59,65v-34,0,-59,-29,-59,-64v0,-35,24,-65,59,-65xm77,-154v17,1,27,-18,27,-36v0,-19,-10,-37,-28,-37v-17,0,-27,18,-27,36v0,19,10,37,28,37xm229,-25v17,1,28,-18,27,-36v0,-19,-9,-37,-27,-37v-17,-1,-28,18,-27,36v0,19,9,37,27,37","w":305},"&":{"d":"119,-256v38,0,67,25,67,61v0,30,-18,52,-55,66r43,44v9,-14,18,-30,27,-49r33,18v-12,23,-23,42,-34,57r40,41r-33,23r-33,-34v-48,54,-160,41,-160,-40v0,-32,18,-56,54,-71v-43,-47,-15,-116,51,-116xm107,-153v22,-9,40,-16,40,-40v0,-17,-12,-28,-29,-28v-37,0,-38,44,-11,68xm92,-112v-47,15,-41,79,9,79v16,0,32,-7,47,-22","w":250},"'":{"d":"22,-144r8,-108v16,2,38,-4,50,2r-35,106r-23,0","w":96},"(":{"d":"66,-103v0,63,31,95,75,125r-19,29v-132,-65,-132,-244,0,-308r19,29v-45,30,-75,61,-75,125","w":158},")":{"d":"93,-103v0,-63,-31,-96,-76,-125r19,-29v133,66,133,242,0,308r-19,-29v44,-30,76,-62,76,-125","w":158},"*":{"d":"134,-177r-13,22r-36,-26r5,43r-25,0r5,-43r-36,26r-13,-22r41,-18r-41,-18r13,-22r36,26r-5,-44r25,0r-5,44r36,-26r13,22r-41,18","w":154},"+":{"d":"95,-147r0,-68r41,0r0,68r69,0r0,40r-69,0r0,69r-41,0r0,-69r-69,0r0,-40r69,0","w":230},",":{"d":"12,34v22,-4,33,-16,31,-34r-19,0r0,-49r48,0v2,54,1,101,-55,101","w":96},"-":{"d":"127,-89r-107,0r0,-43r107,0r0,43","w":146},".":{"d":"72,0r-48,0r0,-49r48,0r0,49","w":96},"\/":{"d":"154,-287r38,0r-163,333r-38,0","w":187},"0":{"d":"131,-256v67,0,109,61,109,130v0,69,-44,130,-110,130v-67,0,-109,-61,-109,-130v0,-70,44,-130,110,-130xm131,-36v42,0,63,-44,63,-90v0,-47,-23,-90,-64,-90v-88,0,-84,180,1,180","w":260},"1":{"d":"9,-232v32,-8,56,-25,99,-22r0,254r-44,0r0,-209r-45,13","w":142},"2":{"d":"141,-146v23,-27,7,-72,-30,-70v-30,1,-41,17,-58,38r-32,-25v24,-31,44,-50,93,-53v68,-4,106,71,69,124v-19,27,-72,67,-103,93r120,0r0,39r-182,0r0,-35v38,-35,92,-74,123,-111","w":220},"3":{"d":"156,-74v0,-35,-38,-42,-78,-39r-7,-28r68,-72r-109,0r0,-39r166,0r0,33r-70,72v40,7,74,25,74,71v0,95,-141,103,-185,36r31,-29v19,22,42,33,67,33v25,1,43,-14,43,-38","w":222},"4":{"d":"153,-254r38,0r0,161r36,0r0,36r-36,0r0,57r-43,0r0,-57r-127,0r-8,-31xm148,-93r0,-100r-82,100r82,0","w":245},"5":{"d":"159,-80v0,-46,-61,-51,-99,-31r-26,-18r7,-123r151,0r0,39r-113,0r-4,59v62,-22,128,7,128,73v0,94,-133,110,-186,47r27,-32v22,20,43,30,65,30v29,1,50,-17,50,-44","w":223},"6":{"d":"21,-119v0,-74,36,-138,108,-137v28,0,54,9,77,28r-24,34v-32,-26,-74,-33,-98,0v-10,15,-16,34,-17,58v47,-51,148,-21,148,54v0,50,-43,87,-94,86v-69,-1,-100,-46,-100,-123xm120,-34v29,0,51,-19,51,-46v-1,-27,-23,-44,-52,-44v-28,0,-51,19,-51,44v-1,27,23,46,52,46","w":236},"7":{"d":"24,-213r0,-39r178,0r0,33r-114,219r-50,0r113,-213r-127,0","w":219},"8":{"d":"113,-256v45,0,88,27,88,69v0,25,-13,43,-37,56v30,14,46,34,46,61v0,48,-46,74,-97,74v-51,0,-96,-26,-96,-73v0,-29,16,-49,46,-62v-24,-13,-37,-31,-37,-56v0,-41,43,-69,87,-69xm113,-145v23,0,45,-14,45,-38v-1,-51,-90,-45,-90,0v-1,23,22,38,45,38xm113,-33v28,0,53,-13,53,-39v0,-25,-26,-38,-53,-38v-27,0,-53,13,-53,38v0,25,25,40,53,39","w":226},"9":{"d":"115,-256v69,1,101,47,101,123v0,76,-36,137,-108,137v-30,0,-57,-10,-81,-30r24,-34v31,27,75,36,101,2v11,-15,17,-33,18,-57v-45,54,-149,20,-149,-54v0,-49,42,-88,94,-87xm117,-126v29,0,50,-19,51,-45v1,-27,-22,-47,-52,-47v-29,0,-51,19,-50,47v0,28,21,45,51,45","w":236},":":{"d":"74,-141r-48,0r0,-49r48,0r0,49xm74,0r-48,0r0,-49r48,0r0,49","w":100},";":{"d":"74,-141r-48,0r0,-49r48,0r0,49xm14,34v22,-4,33,-16,31,-34r-19,0r0,-49r48,0v2,55,0,101,-55,101","w":100},"<":{"d":"25,-146r172,-80r0,42r-129,57r129,58r0,41r-172,-79r0,-39","w":230},"=":{"d":"31,-192r168,0r0,40r-168,0r0,-40xm31,-102r168,0r0,40r-168,0r0,-40","w":230},">":{"d":"205,-107r-172,79r0,-41r129,-57r-129,-58r0,-42r172,80r0,39","w":230},"?":{"d":"67,-138v38,-7,72,-14,69,-42v-6,-50,-75,-41,-100,-6r-27,-29v43,-61,171,-54,171,33v0,45,-32,66,-73,73r-3,29r-29,0xm112,0r-48,0r0,-49r48,0r0,49","w":194},"@":{"d":"177,-256v90,4,147,56,157,142v9,78,-82,119,-123,65v-40,48,-121,23,-121,-43v0,-69,88,-125,132,-64r4,-21r35,5r-17,106v0,16,11,27,28,26v32,-1,47,-34,47,-74v0,-69,-69,-129,-142,-129v-80,0,-144,66,-144,144v0,114,134,184,236,120r6,10v-109,72,-256,-7,-256,-130v0,-84,73,-161,158,-157xm165,-55v49,4,72,-95,11,-96v-51,-5,-74,95,-11,96","w":352},"A":{"d":"163,-254r111,254r-47,0r-26,-61r-119,0r-26,61r-45,0r111,-254r41,0xm185,-100r-44,-101r-43,101r87,0","w":284},"B":{"d":"242,-69v-1,88,-121,67,-210,69r0,-252v83,2,196,-19,196,64v0,25,-12,45,-36,57v33,11,50,32,50,62xm184,-180v0,-43,-64,-32,-108,-33r0,67v45,-1,108,10,108,-34xm76,-39v49,-3,119,14,122,-35v2,-45,-76,-32,-122,-34r0,69","w":259},"C":{"d":"151,-36v35,-1,51,-14,72,-33r29,29v-26,28,-53,43,-103,44v-72,2,-128,-59,-128,-130v0,-114,152,-174,229,-91r-29,33v-55,-63,-153,-25,-153,58v0,49,35,91,83,90","w":265},"D":{"d":"126,-252v75,-2,134,53,134,126v0,73,-59,126,-134,126r-94,0r0,-252r94,0xm77,-40v79,8,137,-16,137,-86v0,-69,-58,-95,-137,-86r0,172","w":281},"E":{"d":"219,-252r0,40r-142,0r0,65r126,0r0,40r-126,0r0,67r144,0r0,40r-189,0r0,-252r187,0"},"F":{"d":"220,-252r0,40r-143,0r0,69r127,0r0,40r-127,0r0,103r-45,0r0,-252r188,0","w":236},"G":{"d":"68,-126v0,78,88,116,146,71r0,-47r-64,0r0,-39r107,0r0,106v-30,26,-65,39,-105,39v-76,0,-131,-56,-131,-130v0,-111,146,-173,227,-96r-28,33v-20,-17,-37,-26,-71,-27v-46,-1,-81,42,-81,90","w":282},"H":{"d":"197,-106r-120,0r0,106r-45,0r0,-252r45,0r0,105r120,0r0,-105r44,0r0,252r-44,0r0,-106","w":273},"I":{"d":"35,-252r44,0r0,252r-44,0r0,-252","w":114},"J":{"d":"37,-67v27,44,90,40,90,-20r0,-165r46,0r0,166v9,97,-122,118,-165,49","w":201},"K":{"d":"146,-144r110,144r-54,0r-86,-113r-39,40r0,73r-45,0r0,-252r45,0r0,127r120,-127r54,0","w":261},"L":{"d":"32,0r0,-252r45,0r0,212r132,0r0,40r-177,0","w":222},"M":{"d":"236,-181r-81,119r-79,-118r0,180r-44,0r0,-252r48,0r76,119r77,-119r47,0r0,252r-44,0r0,-181","w":312},"N":{"d":"208,-78r0,-174r44,0r0,252r-37,0r-139,-179r0,179r-44,0r0,-252r41,0","w":284},"O":{"d":"153,-256v74,0,132,58,132,130v0,71,-59,130,-132,130v-74,0,-132,-58,-132,-130v0,-71,59,-130,132,-130xm153,-36v49,0,85,-41,85,-90v0,-48,-37,-90,-85,-90v-49,0,-85,41,-85,90v0,48,37,90,85,90","w":306},"P":{"d":"132,-252v56,0,96,31,96,85v-1,73,-70,93,-151,86r0,81r-45,0r0,-252r100,0xm77,-121v51,2,106,4,106,-45v0,-50,-55,-48,-106,-46r0,91","w":240},"Q":{"d":"153,-256v105,0,172,123,106,207r29,25r-28,32r-31,-27v-87,61,-208,-5,-208,-107v0,-71,59,-130,132,-130xm68,-126v0,65,71,115,129,77r-44,-36r29,-33r43,40v36,-57,-6,-138,-72,-138v-49,0,-85,41,-85,90","w":306},"R":{"d":"238,-172v0,42,-26,68,-60,77r68,95r-52,0r-62,-88r-55,0r0,88r-45,0r0,-252r113,0v54,-1,93,28,93,80xm77,-127v52,0,116,8,116,-43v0,-53,-65,-41,-116,-42r0,85","w":260},"S":{"d":"111,-216v-35,0,-56,36,-29,53v39,24,132,23,129,91v-5,95,-144,93,-196,35r27,-31v25,22,52,32,80,32v36,0,60,-35,33,-54v-39,-28,-129,-20,-129,-92v0,-85,126,-93,177,-42r-24,34v-23,-17,-46,-26,-68,-26","w":230},"T":{"d":"139,-211r0,211r-45,0r0,-211r-80,0r0,-41r205,0r0,41r-80,0","w":233},"U":{"d":"136,-37v93,0,57,-130,64,-215r44,0r0,143v0,71,-39,112,-108,113v-68,0,-109,-41,-108,-111r0,-145r45,0v7,85,-29,215,63,215","w":272},"V":{"d":"136,-58r75,-194r48,0r-105,254r-38,0r-105,-254r49,0","w":270},"W":{"d":"121,-65r62,-188r37,0r62,188r60,-187r47,0r-88,254r-38,0r-62,-181r-62,181r-38,0r-88,-254r48,0","w":401},"X":{"d":"249,0r-52,0r-66,-95r-67,95r-51,0r92,-128r-88,-124r52,0r63,90r63,-90r51,0r-88,123","w":262},"Y":{"d":"151,-100r0,100r-44,0r0,-99r-101,-153r53,0r70,112r72,-112r50,0","w":257},"Z":{"d":"172,-213r-144,0r0,-39r202,0r0,33r-149,180r149,0r0,39r-207,0r0,-33","w":252},"[":{"d":"142,-252r0,34r-69,0r0,231r69,0r0,34r-110,0r0,-299r110,0","w":163},"\\":{"d":"34,-287r163,333r-38,0r-163,-333r38,0","w":187},"]":{"d":"21,-252r111,0r0,299r-111,0r0,-34r69,0r0,-231r-69,0r0,-34","w":163},"^":{"d":"90,-225r-37,48r-33,0r55,-75r30,0r55,75r-34,0","w":180},"_":{"d":"-1,24r218,0r0,34r-218,0r0,-34","w":216},"`":{"d":"89,-214r-44,-42r39,-17r38,59r-33,0","w":180},"a":{"d":"31,-177v64,-32,156,-20,156,64r0,113r-43,0r0,-23v-32,45,-130,32,-130,-32v0,-61,75,-72,130,-54v4,-54,-61,-52,-101,-33xm94,-29v32,-1,55,-17,51,-52v-29,-10,-88,-15,-87,24v0,19,16,29,36,28","w":211},"b":{"d":"71,-158v46,-73,153,-24,153,63v0,87,-105,135,-153,65r0,30r-44,0r0,-263r44,0r0,105xm125,-34v32,0,55,-27,55,-61v0,-34,-24,-61,-55,-61v-31,0,-55,27,-55,61v0,34,24,61,55,61"},"c":{"d":"60,-95v0,58,71,84,107,38r26,26v-19,21,-40,34,-78,35v-54,2,-98,-45,-98,-98v0,-90,119,-135,175,-67r-27,29v-35,-45,-105,-21,-105,37","w":205},"d":{"d":"18,-95v0,-87,104,-135,153,-66r0,-102r43,0r0,263r-43,0r0,-32v-47,73,-153,24,-153,-63xm116,-34v31,0,55,-27,55,-61v0,-34,-24,-61,-55,-61v-32,-1,-54,27,-54,61v0,34,23,61,54,61"},"e":{"d":"110,-194v61,0,96,52,90,114r-140,0v5,51,74,65,107,26r25,23v-53,69,-175,29,-175,-64v0,-54,40,-99,93,-99xm158,-108v1,-42,-51,-66,-82,-37v-9,9,-14,22,-16,37r98,0","w":217},"f":{"d":"80,-189r50,0r0,36r-49,0r0,153r-44,0r0,-153r-24,0r0,-36r24,0v-8,-65,37,-88,94,-71r0,37v-28,-12,-57,-4,-51,34","w":135},"g":{"d":"18,-104v0,-83,105,-122,153,-58r0,-28r43,0r0,151v11,101,-117,118,-187,75r16,-33v50,34,141,29,128,-53v-45,67,-153,30,-153,-54xm116,-52v29,1,55,-23,55,-52v0,-31,-24,-53,-55,-53v-30,0,-54,21,-54,52v0,31,24,53,54,53"},"h":{"d":"114,-154v-64,0,-38,94,-43,154r-44,0r0,-263r44,0r0,102v34,-58,127,-35,127,40r0,121r-44,0v-6,-58,23,-153,-40,-154","w":223},"i":{"d":"75,-219r-47,0r0,-42r47,0r0,42xm73,0r-43,0r0,-190r43,0r0,190","w":102},"j":{"d":"75,-219r-47,0r0,-42r47,0r0,42xm30,-190r43,0r0,193v2,45,-31,63,-76,54r0,-35v19,4,33,-2,33,-22r0,-190","w":102},"k":{"d":"127,-113r78,113r-50,0r-57,-82r-27,28r0,54r-44,0r0,-263r44,0r0,157r79,-84r53,0","w":209},"l":{"d":"73,0r-43,0r0,-263r43,0r0,263","w":102},"m":{"d":"112,-154v-62,0,-36,95,-41,154r-44,0r0,-190r44,0r0,29v26,-43,92,-45,114,0v37,-55,131,-39,131,40r0,121r-43,0v-6,-58,23,-154,-39,-154v-62,0,-34,96,-40,154r-44,0v-6,-58,22,-154,-38,-154","w":342},"n":{"d":"114,-154v-64,0,-38,94,-43,154r-44,0r0,-190r44,0r0,29v34,-58,127,-35,127,40r0,121r-44,0v-6,-58,23,-153,-40,-154","w":223},"o":{"d":"118,-194v56,0,103,44,102,99v0,55,-46,99,-102,99v-56,0,-101,-44,-101,-98v0,-55,45,-100,101,-100xm118,-33v33,0,58,-28,58,-61v0,-33,-25,-62,-58,-62v-33,0,-58,28,-58,61v0,33,25,62,58,62","w":236},"p":{"d":"71,-158v46,-73,153,-24,153,63v0,87,-105,135,-153,65r0,88r-44,0r0,-248r44,0r0,32xm125,-34v32,0,55,-27,55,-61v0,-34,-24,-61,-55,-61v-31,0,-55,27,-55,61v0,34,24,61,55,61"},"q":{"d":"18,-95v0,-87,104,-135,153,-66r0,-29r43,0r0,248r-43,0r0,-90v-47,73,-153,24,-153,-63xm116,-34v31,0,55,-27,55,-61v0,-34,-24,-61,-55,-61v-32,-1,-54,27,-54,61v0,34,23,61,54,61"},"r":{"d":"138,-148v-71,-3,-70,75,-67,148r-44,0r0,-190r44,0r0,43v13,-32,36,-48,67,-47r0,46","w":148},"s":{"d":"100,-113v31,11,63,19,63,57v0,74,-108,73,-151,31r19,-29v21,16,42,23,63,23v31,0,41,-31,8,-41v-35,-11,-81,-16,-81,-63v0,-65,92,-72,138,-37r-18,31v-20,-12,-37,-18,-53,-18v-15,0,-29,5,-27,20v3,18,19,19,39,26","w":180},"t":{"d":"80,-153r0,94v-2,28,31,26,50,17r0,36v-40,20,-94,7,-94,-47r0,-100r-24,0r0,-37r24,0r0,-52r44,0r0,52r51,0r0,37r-51,0","w":147},"u":{"d":"109,-36v64,0,38,-94,43,-154r44,0r0,190r-44,0r0,-30v-33,59,-127,36,-127,-39r0,-121r44,0v6,58,-23,153,40,154","w":223},"v":{"d":"107,-50r52,-140r45,0r-77,191r-40,0r-78,-191r47,0","w":214},"w":{"d":"174,-191r42,131r39,-130r43,0r-62,191r-39,0r-42,-130r-43,130r-39,0r-61,-191r44,0r38,130r42,-131r38,0","w":309},"x":{"d":"128,-98r70,98r-48,0r-46,-67r-47,67r-46,0r70,-96r-68,-94r48,0r44,63r44,-63r46,0","w":208},"y":{"d":"204,-190r-75,195v-12,49,-61,68,-108,42r15,-32v23,13,46,7,53,-15r-80,-190r47,0r54,141r49,-141r45,0","w":214},"z":{"d":"129,-154r-106,0r0,-36r161,0r0,30r-110,124r110,0r0,36r-165,0r0,-30","w":201},"{":{"d":"19,-120v45,4,49,-19,49,-65v0,-51,30,-61,82,-72r7,28v-45,10,-48,26,-48,76v0,29,-14,43,-37,50v33,7,36,35,36,76v0,36,15,37,49,49r-7,29v-60,-11,-86,-31,-81,-98v3,-33,-16,-42,-50,-40r0,-33","w":175},"|":{"d":"77,46r-35,0r0,-333r35,0r0,333","w":119},"}":{"d":"157,-87v-46,-5,-50,20,-50,66v0,51,-30,60,-81,72r-8,-29v44,-10,48,-26,48,-76v0,-28,15,-42,38,-49v-33,-8,-37,-34,-37,-76v0,-36,-14,-39,-49,-50r8,-28v61,11,85,29,81,98v-2,33,16,41,50,39r0,33","w":175},"~":{"d":"113,-120v13,0,15,-8,20,-18r24,7v-8,25,-13,42,-40,45v-10,1,-44,-15,-52,-14v-13,0,-15,8,-20,18r-24,-8v8,-25,14,-43,41,-45v10,-2,43,16,51,15","w":178},"\u2026":{"d":"261,0r-47,0r0,-48r47,0r0,48xm166,0r-47,0r0,-48r47,0r0,48xm71,0r-47,0r0,-48r47,0r0,48","w":285},"\u2018":{"d":"83,-235v-22,4,-33,15,-31,33r19,0r0,50r-48,0v-3,-55,0,-101,55,-102","w":96},"\u2019":{"d":"14,-169v22,-4,33,-16,31,-34r-19,0r0,-49r48,0v2,55,0,102,-55,102","w":96},"\u201c":{"d":"166,-235v-22,4,-32,15,-31,33r19,0r0,50r-48,0v-3,-56,1,-101,56,-102xm83,-235v-22,4,-33,15,-31,33r19,0r0,50r-48,0v-3,-55,0,-101,55,-102","w":180},"\u201d":{"d":"98,-169v22,-4,32,-16,30,-34r-18,0r0,-49r48,0v3,55,0,102,-56,102xm14,-169v22,-4,33,-16,31,-34r-19,0r0,-49r48,0v2,55,0,102,-55,102","w":180},"\u2013":{"d":"170,-90r-150,0r0,-41r150,0r0,41","w":190},"\u2014":{"d":"303,-90r-283,0r0,-41r283,0r0,41","w":323},"\u2122":{"d":"214,-220r-34,53r-3,0r-34,-53r0,79r-20,0r0,-111r22,0r34,53r33,-53r22,0r0,111r-20,0r0,-79xm65,-233r0,92r-21,0r0,-92r-35,0r0,-19r90,0r0,19r-34,0","w":248},"\u00a0":{"w":108}}});
/*!
 * HTF Gothamﾃつｪ ﾃつｩ 2002 The Hoefler Type Foundry, Inc. Info: www.
 * typography. com
 */
Cufon.registerFont({"w":222,"face":{"font-family":"GothamMedium","font-weight":500,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-47 -287 427 72","underline-thickness":"7.2","underline-position":"-47.88","slope":"-12","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":108},"!":{"d":"38,-80r33,-172r51,0r-60,172r-24,0xm5,0r13,-49r48,0r-13,49r-48,0","w":109},"\"":{"d":"116,-144r32,-108v15,2,38,-4,49,2r-58,106r-23,0xm36,-144r31,-108r50,0r-58,108r-23,0","w":177},"#":{"d":"20,0r20,-58r-34,0r11,-37r36,0r22,-63r-38,0r10,-37r41,0r20,-57r38,0r-20,57r59,0r20,-57r38,0r-19,57r33,0r-9,37r-37,0r-22,63r38,0r-10,37r-41,0r-20,58r-39,0r21,-58r-60,0r-20,58r-38,0xm92,-95r58,0r22,-63r-59,0","w":247},"$":{"d":"204,-77v1,50,-48,79,-101,77r-10,35r-32,0r11,-38v-32,-6,-55,-21,-73,-43r32,-27v15,17,33,27,54,32r20,-70v-35,-14,-61,-24,-61,-65v0,-48,48,-78,101,-76r7,-21r31,0r-7,25v22,6,41,17,57,33r-30,29v-12,-12,-26,-20,-40,-24r-19,67v33,14,59,26,60,66xm135,-213v-44,-6,-64,50,-17,60xm113,-38v44,5,63,-51,18,-63","w":227},"%":{"d":"154,-201v0,39,-30,76,-69,76v-31,0,-55,-23,-54,-54v-1,-39,31,-76,70,-76v31,0,53,22,53,54xm22,0r243,-252r40,0r-244,252r-39,0xm296,-73v1,39,-31,76,-70,76v-31,0,-55,-23,-54,-54v-1,-39,31,-76,70,-76v31,0,55,23,54,54xm99,-228v-36,-3,-57,75,-12,77v35,3,56,-75,12,-77xm240,-101v-36,-3,-57,75,-12,77v36,3,57,-75,12,-77","w":310},"&":{"d":"147,-256v38,0,66,23,66,58v0,31,-24,54,-72,69r36,49v11,-12,22,-28,34,-47r27,19v-14,21,-27,40,-41,55r27,37r-32,21r-24,-32v-50,49,-159,42,-159,-36v0,-45,35,-67,77,-80v-37,-51,1,-113,61,-113xm145,-221v-35,0,-44,39,-22,67v29,-9,46,-17,51,-42v0,-15,-12,-25,-29,-25xm51,-66v0,46,68,39,97,11r-44,-62v-28,10,-53,22,-53,51","w":249},"'":{"d":"36,-144r31,-108r50,0r-58,108r-23,0","w":96},"(":{"d":"184,-225v-99,35,-160,163,-67,249r-27,27v-75,-58,-86,-157,-28,-233v25,-32,60,-57,106,-75","w":158},")":{"d":"-21,18v97,-35,161,-163,67,-249r27,-27v75,58,86,157,28,233v-25,32,-60,57,-106,75","w":158},"*":{"d":"99,-136r-24,-7r16,-41r-42,16r-7,-25r45,-6r-35,-28r18,-18r28,35r7,-44r24,6r-16,42r41,-16r7,24r-44,7r35,28r-18,18r-28,-35","w":154},"+":{"d":"81,-38r18,-69r-69,0r11,-40r69,0r18,-68r41,0r-18,68r69,0r-11,40r-69,0r-18,69r-41,0","w":232},",":{"d":"-16,52r-3,-18v24,-3,37,-15,41,-34r-19,0r14,-49r47,0v-12,49,-21,100,-80,101","w":105},"-":{"d":"19,-89r12,-43r106,0r-11,43r-107,0","w":147},".":{"d":"3,0r14,-49r47,0r-13,49r-48,0","w":105},"\/":{"d":"-47,46r249,-333r42,0r-249,333r-42,0","w":187},"0":{"d":"252,-155v-4,86,-46,155,-133,159v-58,3,-97,-43,-95,-101v4,-86,47,-155,134,-159v58,-3,97,44,94,101xm70,-97v-1,35,18,63,52,61v55,-3,83,-61,84,-119v1,-36,-18,-63,-52,-61v-55,3,-82,62,-84,119","w":260},"1":{"d":"34,0r55,-206r-48,12r0,-38v34,-8,60,-25,105,-22r-68,254r-44,0","w":145},"2":{"d":"137,-256v62,0,106,58,69,108v-30,40,-95,76,-138,109r118,0r-11,39r-185,0r10,-36v53,-41,119,-76,164,-123v21,-22,5,-57,-29,-57v-21,0,-42,11,-64,33r-27,-28v27,-30,58,-45,93,-45","w":218},"3":{"d":"192,-83v3,92,-159,119,-195,39r33,-24v22,45,117,43,117,-11v0,-31,-34,-36,-70,-35r-3,-27r86,-72r-107,0r10,-39r168,0r-9,33r-90,74v33,6,60,24,60,62","w":217},"4":{"d":"119,0r15,-57r-122,0r-5,-32r179,-165r43,0r-43,161r36,0r-10,36r-36,0r-15,57r-42,0xm64,-93r80,0r27,-100","w":235},"5":{"d":"200,-89v0,95,-155,125,-200,48r31,-26v30,47,121,40,123,-18v1,-42,-58,-46,-92,-28r-23,-19r39,-120r148,0r-11,39r-108,0r-19,58v54,-20,112,10,112,66","w":218},"6":{"d":"215,-90v0,50,-49,94,-102,94v-57,0,-89,-36,-89,-93v0,-122,121,-218,214,-137r-26,32v-29,-30,-79,-29,-108,0v-17,17,-27,37,-31,60v35,-49,142,-30,142,44xm67,-75v0,26,21,42,46,42v29,0,58,-23,57,-52v0,-24,-19,-40,-45,-40v-31,0,-58,21,-58,50","w":231},"7":{"d":"11,0r160,-213r-124,0r10,-39r177,0r-9,33r-162,219r-52,0","w":216},"8":{"d":"211,-71v1,93,-199,103,-199,5v0,-41,31,-63,69,-70v-70,-36,-15,-120,60,-120v47,0,87,25,87,67v0,35,-27,57,-58,64v22,9,40,26,41,54xm89,-181v0,22,23,35,47,35v27,0,49,-14,50,-38v0,-23,-22,-35,-47,-35v-26,0,-49,15,-50,38xm56,-70v0,24,26,37,54,37v29,0,57,-13,57,-40v0,-52,-112,-47,-111,3","w":236},"9":{"d":"224,-159v0,122,-125,214,-217,130r26,-31v57,58,136,2,141,-56v-36,49,-142,32,-142,-44v0,-53,48,-98,103,-96v58,2,89,37,89,97xm134,-219v-62,0,-80,95,-11,95v31,0,58,-22,58,-52v0,-26,-20,-43,-47,-43","w":231},":":{"d":"42,-141r13,-49r48,0r-13,49r-48,0xm4,0r13,-49r48,0r-13,49r-48,0","w":106},";":{"d":"42,-141r13,-49r48,0r-13,49r-48,0xm-16,52r-3,-18v24,-3,38,-15,41,-34r-18,0r13,-49r48,0v-13,50,-22,100,-81,101","w":106},"<":{"d":"177,-28r-150,-79r10,-39r193,-80r-11,44r-144,57r113,58","w":230},"=":{"d":"46,-152r11,-40r169,0r-11,40r-169,0xm22,-62r11,-40r169,0r-11,40r-169,0","w":230},">":{"d":"14,-28r12,-43r144,-58r-114,-57r11,-40r150,80r-10,39","w":230},"?":{"d":"35,-220v41,-52,167,-49,165,30v-1,49,-42,72,-93,79r-12,31r-29,0v4,-19,3,-44,10,-60v38,-3,77,-12,77,-45v0,-47,-70,-32,-94,-5xm36,0r13,-49r48,0r-13,49r-48,0","w":194},"@":{"d":"35,-84v-4,102,114,157,210,111r6,12v-103,51,-236,-10,-230,-123v6,-103,72,-168,176,-173v81,-4,143,51,144,125v1,59,-31,107,-82,108v-25,0,-42,-11,-48,-30v-36,48,-118,37,-118,-30v0,-72,98,-140,139,-69r8,-26r33,9v-7,38,-36,77,-27,119v4,7,11,11,21,11v36,-2,60,-47,60,-92v0,-66,-58,-114,-130,-112v-94,2,-157,69,-162,160xm185,-152v-46,-4,-82,92,-21,98v48,7,88,-94,21,-98","w":352},"A":{"d":"-18,0r179,-254r42,0r43,254r-45,0r-10,-61r-119,0r-42,61r-48,0xm99,-100r87,0r-16,-102","w":274},"B":{"d":"235,-76v-3,92,-130,76,-228,76r68,-252v77,1,177,-14,178,60v1,37,-27,58,-57,65v26,10,39,27,39,51xm89,-146v50,-1,118,10,120,-38v2,-38,-63,-28,-102,-29xm191,-78v0,-42,-69,-27,-112,-30r-18,69v53,-2,130,12,130,-39","w":258},"C":{"d":"73,-105v0,75,98,87,135,40r30,29v-65,73,-216,43,-211,-67v4,-88,65,-153,152,-153v45,0,78,18,99,54r-37,25v-16,-23,-31,-38,-67,-39v-53,0,-101,56,-101,111","w":262},"D":{"d":"269,-146v-1,90,-76,148,-172,146r-90,0r68,-252v105,-6,195,9,194,106xm223,-144v0,-56,-50,-73,-115,-68r-46,172v90,8,161,-25,161,-104","w":279},"E":{"d":"7,0r68,-252r185,0r-11,40r-141,0r-18,65r125,0r-11,40r-124,0r-18,67r142,0r-10,40r-187,0","w":237},"F":{"d":"7,0r68,-252r187,0r-11,40r-143,0r-18,69r127,0r-11,40r-127,0r-28,103r-44,0","w":237},"G":{"d":"73,-105v0,64,74,85,125,56r16,-53r-65,0r11,-39r107,0r-34,121v-80,51,-211,20,-206,-84v4,-88,65,-150,156,-152v45,0,78,14,100,44r-34,28v-59,-73,-176,-9,-176,79","w":281},"H":{"d":"7,0r68,-252r44,0r-28,105r119,0r28,-105r44,0r-68,252r-44,0r28,-106r-118,0r-29,106r-44,0","w":272},"I":{"d":"9,0r68,-252r45,0r-68,252r-45,0","w":114},"J":{"d":"159,-51v-20,64,-142,75,-169,8r32,-26v17,35,59,42,86,16v31,-46,43,-138,63,-199r45,0r-42,157v-5,19,-11,33,-15,44","w":203},"K":{"d":"7,0r68,-252r44,0r-34,127r148,-127r60,0r-128,108r65,144r-49,0r-51,-118r-61,51r-18,67r-44,0","w":260},"L":{"d":"7,0r68,-252r44,0r-57,212r133,0r-11,40r-177,0"},"M":{"d":"7,0r68,-252r45,0r43,119r108,-119r51,0r-67,252r-45,0r48,-181r-112,119r-47,-118r-48,180r-44,0","w":312},"N":{"d":"7,0r68,-252r41,0r85,178r48,-178r44,0r-68,252r-37,0r-88,-183r-49,183r-44,0","w":282},"O":{"d":"290,-146v-2,86,-62,148,-150,150v-64,2,-115,-47,-113,-110v2,-86,62,-148,150,-150v64,-2,115,47,113,110xm73,-109v0,42,30,73,72,73v59,0,97,-49,99,-107v1,-42,-29,-74,-72,-73v-59,2,-99,50,-99,107","w":300},"P":{"d":"249,-177v0,82,-84,102,-176,95r-22,82r-44,0r68,-252v84,-2,175,-7,174,75xm203,-174v0,-43,-50,-39,-95,-38r-24,91v58,2,119,0,119,-53","w":242},"Q":{"d":"290,-146v0,45,-21,83,-46,107r22,28r-36,25r-19,-28v-79,46,-188,0,-184,-92v4,-86,62,-148,150,-150v64,-2,114,47,113,110xm73,-109v-3,59,65,92,115,61r-36,-45r37,-24r30,43v45,-49,28,-145,-47,-142v-59,2,-95,50,-99,107","w":300},"R":{"d":"7,0r68,-252v89,-2,196,-10,179,88v-7,41,-37,63,-79,72r46,92r-50,0r-44,-88r-52,0r-24,88r-44,0xm85,-127v61,1,139,6,124,-63v-6,-28,-63,-22,-101,-22","w":260},"S":{"d":"189,-117v44,53,-16,121,-82,121v-48,0,-83,-17,-107,-48r33,-27v21,24,46,35,76,35v34,0,66,-32,39,-54v-30,-24,-102,-32,-102,-86v0,-88,143,-104,190,-42r-31,30v-20,-19,-41,-28,-65,-28v-32,0,-64,31,-36,52v16,13,71,31,85,47","w":229},"T":{"d":"63,0r57,-211r-81,0r11,-41r205,0r-11,41r-80,0r-57,211r-44,0"},"U":{"d":"79,-113v-11,42,6,78,50,76v43,-2,63,-33,74,-72r39,-143r44,0v-36,102,-29,253,-162,256v-71,2,-105,-53,-87,-123r35,-133r44,0","w":274},"V":{"d":"82,2r-35,-254r47,0r23,193r126,-193r50,0r-171,254r-40,0","w":259},"W":{"d":"69,2r-20,-254r46,0r10,187r112,-188r37,0r12,188r111,-187r50,0r-156,254r-41,0r-13,-179r-108,179r-40,0","w":395},"X":{"d":"-15,0r124,-131r-58,-121r50,0r40,90r83,-90r57,0r-121,127r60,125r-50,0r-42,-94r-87,94r-56,0","w":251},"Y":{"d":"68,0r27,-100r-56,-152r48,0r39,114r99,-114r55,0r-142,157r-26,95r-44,0","w":235},"Z":{"d":"-7,0r9,-33r192,-180r-139,0r11,-39r200,0r-9,33r-192,180r145,0r-10,39r-207,0","w":245},"[":{"d":"-1,47r81,-299r110,0r-9,34r-69,0r-62,231r69,0r-9,34r-111,0","w":163},"\\":{"d":"122,46r-76,-333r36,0r76,333r-36,0","w":187},"]":{"d":"-23,47r9,-34r69,0r62,-231r-69,0r9,-34r111,0r-80,299r-111,0","w":163},"^":{"d":"35,-177r75,-75r30,0r35,75r-30,0r-24,-48r-50,48r-36,0","w":180},"_":{"d":"-41,58r9,-34r217,0r-9,34r-217,0","w":216},"`":{"d":"127,-214r-33,-42r41,-17r22,59r-30,0","w":180},"a":{"d":"49,-180v62,-30,163,-13,140,73r-28,107r-43,0r6,-25v-33,44,-118,38,-119,-23v-1,-66,83,-82,141,-59v8,-28,0,-48,-38,-47v-18,0,-35,3,-52,10xm96,-88v-47,0,-67,60,-16,60v30,0,56,-25,59,-53v-16,-5,-30,-7,-43,-7","w":209},"b":{"d":"224,-113v0,91,-120,164,-170,79r-9,34r-43,0r70,-263r44,0r-27,98v47,-56,135,-25,135,52xm134,-157v-64,0,-102,121,-21,124v36,1,67,-38,66,-76v0,-27,-17,-48,-45,-48","w":240},"c":{"d":"59,-81v0,51,61,63,94,27r23,28v-53,57,-160,29,-160,-54v0,-96,140,-161,189,-71r-34,23v-11,-16,-21,-28,-46,-28v-36,0,-66,38,-66,75","w":201},"d":{"d":"16,-77v0,-91,120,-164,170,-79r28,-107r44,0r-70,263r-44,0r7,-25v-47,56,-135,25,-135,-52xm61,-80v0,27,18,47,46,47v64,0,102,-121,20,-124v-36,-1,-67,39,-66,77","w":240},"e":{"d":"128,-194v60,-2,93,59,67,114r-138,0v-2,53,64,62,98,30r21,28v-54,50,-165,27,-160,-57v4,-65,47,-113,112,-115xm161,-109v13,-48,-44,-63,-75,-36v-11,9,-19,21,-24,36r99,0","w":216},"f":{"d":"12,0r41,-153r-24,0r10,-37r24,0v7,-58,55,-91,113,-68r-9,36v-30,-15,-58,-1,-61,32r52,0r-10,37r-52,0r-41,153r-43,0","w":142},"g":{"d":"17,-84v-6,-87,126,-154,168,-72r9,-34r44,0r-42,157v-13,57,-42,90,-107,91v-39,0,-72,-10,-98,-29r24,-30v46,38,129,31,137,-31r4,-12v-45,50,-134,31,-139,-40xm127,-157v-59,0,-97,105,-20,106v34,0,66,-30,66,-63v-1,-25,-19,-43,-46,-43","w":239},"h":{"d":"157,-105v7,-27,-2,-52,-31,-49v-67,9,-59,100,-81,154r-43,0r70,-263r44,0r-26,97v36,-45,119,-35,115,29v-3,44,-23,94,-33,137r-43,0"},"i":{"d":"62,-219r11,-42r47,0r-12,42r-46,0xm4,0r51,-190r44,0r-51,190r-44,0","w":102},"j":{"d":"62,-219r11,-42r47,0r-12,42r-46,0xm47,3v-12,47,-45,65,-92,52r9,-34v24,6,35,-1,41,-24r50,-187r44,0","w":102},"k":{"d":"2,0r70,-263r44,0r-41,154r97,-81r58,0r-96,77r46,113r-49,0r-34,-85r-37,30r-15,55r-43,0","w":209},"l":{"d":"4,0r71,-263r43,0r-70,263r-44,0","w":102},"m":{"d":"153,-105v8,-25,0,-53,-28,-49v-66,8,-58,100,-80,154r-43,0r51,-190r43,0r-6,24v31,-40,95,-37,107,10v29,-52,133,-54,128,19v-3,43,-24,95,-34,137r-43,0v10,-42,26,-80,31,-125v4,-35,-45,-36,-63,-16v-29,34,-31,95,-48,141r-43,0","w":342},"n":{"d":"157,-105v7,-27,-2,-52,-31,-49v-67,9,-59,100,-81,154r-43,0r51,-190r43,0r-6,24v36,-45,119,-35,115,29v-3,44,-23,94,-33,137r-43,0"},"o":{"d":"216,-107v0,57,-53,111,-111,111v-52,0,-88,-36,-89,-86v-1,-56,53,-112,111,-112v53,0,89,36,89,87xm125,-156v-64,-6,-98,120,-17,123v63,6,98,-122,17,-123","w":232},"p":{"d":"224,-113v0,91,-120,164,-170,79r-24,92r-44,0r67,-248r43,0r-7,25v47,-56,135,-25,135,52xm134,-157v-64,0,-102,121,-21,124v36,1,67,-38,66,-76v0,-27,-17,-48,-45,-48","w":240},"q":{"d":"16,-77v0,-90,120,-164,170,-80r9,-33r43,0r-70,262r-43,0r26,-98v-46,58,-135,26,-135,-51xm61,-80v0,27,18,47,46,47v64,0,102,-121,20,-124v-36,-1,-67,39,-66,77","w":240},"r":{"d":"2,0r51,-190r43,0r-11,43v23,-33,50,-49,80,-47v-6,14,-6,35,-15,46v-77,1,-88,83,-105,148r-43,0","w":148},"s":{"d":"141,-91v45,59,-37,119,-108,87v-15,-6,-28,-15,-39,-26r26,-27v18,18,38,27,61,27v16,0,31,-8,31,-23v-15,-35,-82,-27,-82,-78v0,-71,107,-78,147,-36r-24,28v-18,-14,-35,-21,-52,-21v-22,0,-40,20,-23,34v14,12,53,22,63,35","w":179},"t":{"d":"106,-4v-38,19,-95,3,-80,-52r26,-97r-24,0r10,-37r24,0r14,-52r44,0r-15,52r51,0r-10,37r-51,0r-26,103v1,20,31,17,47,9","w":147},"u":{"d":"66,-85v-9,26,1,52,30,49v67,-8,59,-100,81,-154r44,0r-51,190r-44,0r7,-24v-37,45,-116,35,-116,-29v0,-45,24,-94,34,-137r43,0"},"v":{"d":"57,1r-26,-191r45,0r14,139r87,-139r48,0r-129,191r-39,0","w":209},"w":{"d":"44,1r-11,-191r44,0r4,130r77,-131r37,0r7,131r74,-130r44,0r-113,191r-40,0r-7,-130r-78,130r-38,0","w":307},"x":{"d":"-16,0r97,-99r-44,-91r47,0r27,61r56,-61r53,0r-93,95r45,95r-46,0r-29,-65r-60,65r-53,0","w":205},"y":{"d":"102,5v-21,40,-69,72,-121,41r23,-32v22,15,39,9,56,-13r-27,-191r44,0r16,141r84,-141r48,0","w":210},"z":{"d":"-9,0r9,-30r139,-124r-102,0r9,-36r160,0r-8,30r-140,124r108,0r-10,36r-165,0","w":199},"{":{"d":"89,-13v2,23,13,29,36,37r-14,27v-38,-9,-63,-19,-63,-57v0,-28,36,-93,-30,-81r9,-33v82,15,52,-89,94,-117v16,-11,39,-19,71,-20r2,29v-45,4,-57,17,-64,59v-6,44,-18,63,-58,69v16,3,29,14,30,31v1,11,-14,47,-13,56","w":175},"|":{"d":"49,46r0,-333r35,0r0,333r-35,0","w":119},"}":{"d":"132,-201v0,28,-37,93,30,81r-9,33v-83,-16,-52,90,-94,118v-16,11,-40,19,-72,20r-2,-30v45,-4,58,-18,65,-59v7,-43,17,-63,57,-69v-47,-6,-17,-57,-17,-87v0,-24,-14,-28,-36,-37r14,-26v38,8,64,19,64,56","w":175},"~":{"d":"117,-82v-14,0,-34,-21,-45,-21v-8,0,-16,7,-24,21r-25,-12v13,-29,30,-44,50,-44v14,0,34,21,46,21v14,0,16,-10,24,-21r24,12v-13,29,-30,44,-50,44","w":178},"\u2026":{"d":"193,0r13,-49r47,0r-13,49r-47,0xm98,0r13,-49r47,0r-13,49r-47,0xm3,0r13,-49r47,0r-13,49r-47,0","w":293},"\u2018":{"d":"39,-152v12,-50,22,-101,81,-102r3,19v-24,3,-38,14,-41,33r18,0r-13,50r-48,0","w":105},"\u2019":{"d":"37,-150r-4,-19v24,-3,39,-15,42,-34r-18,0r13,-49r48,0v-12,50,-22,101,-81,102","w":105},"\u201c":{"d":"123,-152v12,-50,22,-101,81,-102r3,19v-24,3,-38,14,-41,33r18,0r-13,50r-48,0xm40,-152v12,-50,21,-101,80,-102r3,19v-24,3,-38,14,-41,33r19,0r-14,50r-47,0","w":188},"\u201d":{"d":"119,-150r-3,-19v24,-3,38,-15,41,-34r-18,0r13,-49r48,0v-12,50,-22,101,-81,102xm36,-150r-3,-19v24,-3,37,-15,41,-34r-19,0r14,-49r48,0v-14,49,-21,101,-81,102","w":188},"\u2013":{"d":"19,-90r11,-41r150,0r-11,41r-150,0","w":190},"\u2014":{"d":"19,-90r11,-41r283,0r-11,41r-283,0","w":324},"\u2122":{"d":"131,-141r30,-111r22,0r19,53r47,-53r24,0r-31,111r-20,0r22,-79v-18,17,-31,38,-51,53r-20,-53r-22,79r-20,0xm51,-141r25,-92r-34,0r6,-19r89,0r-5,19r-34,0r-25,92r-22,0","w":250},"\u00a0":{"w":108}}});
}finally{};


try{var shutterSettings = {
msgLoading: "L O A D I N G",
msgClose: "Click to Close",
imageCount: "1"
};
}finally{};
try{jQuery(document).ready(function() {tubepress_init("http://kccitallahassee.com/explore-outdoors/wp-content/plugins/tubepress");});
}finally{};
try{Cufon.replace('#nav > ul > li > a', { fontFamily: 'GothamMedium', hover: true });
Cufon.replace('h1, h2, h3', { fontFamily: 'GothamLight', hover: true });
}finally{};
try{AudioPlayer.setup("http://kccitallahassee.com/explore-outdoors/wp-content/plugins/podcasting/player/player.swf", {
width: 290			});
}finally{};
try{$j=jQuery.noConflict();


$j(document).ready( function() {
initCalendar();
});

function initCalendar() {
$j('a.prev-month').click(function(e){
e.preventDefault();
tableDiv = $j(this).parents('table').parent();
prevMonthCalendar(tableDiv);
} );
$j('a.next-month').click(function(e){
e.preventDefault();
tableDiv = $j(this).parents('table').parent();
nextMonthCalendar(tableDiv);
} );
}
function prevMonthCalendar(tableDiv) {
month_n = tableDiv.children('div.month_n').html();
year_n = tableDiv.children('div.year_n').html();
parseInt(month_n) == 1 ? prevMonth = 12 : prevMonth = parseInt(month_n) - 1 ;
if (parseInt(month_n) == 1)
year_n = parseInt(year_n) -1;
$j.get("http://kccitallahassee.com/explore-outdoors", {ajaxCalendar: 'true', calmonth: prevMonth, calyear: year_n}, function(data){
tableDiv.html(data);
initCalendar();
});
}
function nextMonthCalendar(tableDiv) {
month_n = tableDiv.children('div.month_n').html();
year_n = tableDiv.children('div.year_n').html();
parseInt(month_n) == 12 ? nextMonth = 1 : nextMonth = parseInt(month_n) + 1 ;
if (parseInt(month_n) == 12)
year_n = parseInt(year_n) + 1;
$j.get("http://kccitallahassee.com/explore-outdoors", {ajaxCalendar: 'true', calmonth: nextMonth, calyear: year_n}, function(data){
tableDiv.html(data);
initCalendar();
});
};
}finally{};

