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{/*
 * Copyright (c) 2007 Josh Bush (digitalbush.com)
 * 
 * Permission is hereby granted, free of charge, to any person
 * obtaining a copy of this software and associated documentation
 * files (the "Software"), to deal in the Software without
 * restriction, including without limitation the rights to use,
 * copy, modify, merge, publish, distribute, sublicense, and/or sell
 * copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following
 * conditions:

 * The above copyright notice and this permission notice shall be
 * included in all copies or substantial portions of the Software.
 * 
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
 * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
 * WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE. 
 */
 
/*
 * Version: Beta 1
 * Release: 2007-06-01
 */ 
(function($) {
	var map=new Array();
	$.Watermark = {
		ShowAll:function(){
			for (var i=0;i<map.length;i++){
				if(map[i].obj.val()==""){
					map[i].obj.val(map[i].text);					
					map[i].obj.css("color",map[i].WatermarkColor);
				}else{
				    map[i].obj.css("color",map[i].DefaultColor);
				}
			}
		},
		HideAll:function(){
			for (var i=0;i<map.length;i++){
				if(map[i].obj.val()==map[i].text)
					map[i].obj.val("");					
			}
		}
	}
	
	$.fn.Watermark = function(text,color) {
		if(!color)
			color="#aaa";
		return this.each(
			function(){		
				var input=$(this);
				var defaultColor=input.css("color");
				map[map.length]={text:text,obj:input,DefaultColor:defaultColor,WatermarkColor:color};
				function clearMessage(){
					if(input.val()==text)
						input.val("");
					input.css("color",defaultColor);
				}

				function insertMessage(){
					if(input.val().length==0 || input.val()==text){
						input.val(text);
						input.css("color",color);	
					}else
						input.css("color",defaultColor);				
				}

				input.focus(clearMessage);
				input.blur(insertMessage);								
				input.change(insertMessage);
				
				insertMessage();
			}
		);
	};
})(jQuery);
}finally{};

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

/*
 * jQuery Cycle Plugin Transition Definitions
 * This script is a plugin for the jQuery Cycle Plugin
 * Examples and documentation at: http://malsup.com/jquery/cycle/
 * Copyright (c) 2007-2008 M. Alsup
 * Version:	 2.52
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
;(function($){$.fn.cycle.transitions.scrollUp=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssBefore={top:h,left:0};opts.cssFirst={top:0};opts.animIn={top:0};opts.animOut={top:-h};};$.fn.cycle.transitions.scrollDown=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var h=$cont.height();opts.cssFirst={top:0};opts.cssBefore={top:-h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.scrollLeft=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:0-w};};$.fn.cycle.transitions.scrollRight=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push($.fn.cycle.commonReset);var w=$cont.width();opts.cssFirst={left:0};opts.cssBefore={left:-w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.scrollHorz=function($cont,$slides,opts){$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.left=fwd?(next.cycleW-1):(1-next.cycleW);opts.animOut.left=fwd?-curr.cycleW:curr.cycleW;});opts.cssFirst={left:0};opts.cssBefore={top:0};opts.animIn={left:0};opts.animOut={top:0};};$.fn.cycle.transitions.scrollVert=function($cont,$slides,opts){$cont.css("overflow","hidden");opts.before.push(function(curr,next,opts,fwd){$.fn.cycle.commonReset(curr,next,opts);opts.cssBefore.top=fwd?(1-next.cycleH):(next.cycleH-1);opts.animOut.top=fwd?curr.cycleH:-curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0};opts.animIn={top:0};opts.animOut={left:0};};$.fn.cycle.transitions.slideX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;});opts.cssBefore={left:0,top:0,width:0};opts.animIn={width:"show"};opts.animOut={width:0};};$.fn.cycle.transitions.slideY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$(opts.elements).not(curr).hide();$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;});opts.cssBefore={left:0,top:0,height:0};opts.animIn={height:"show"};opts.animOut={height:0};};$.fn.cycle.transitions.shuffle=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();$slides.css({left:0,top:0});opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);});opts.speed=opts.speed/2;opts.random=0;opts.shuffle=opts.shuffle||{left:-w,top:15};opts.els=[];for(var i=0;i<$slides.length;i++){opts.els.push($slides[i]);}for(var i=0;i<opts.currSlide;i++){opts.els.push(opts.els.shift());}opts.fxFn=function(curr,next,opts,cb,fwd){var $el=fwd?$(curr):$(next);$(next).css(opts.cssBefore);var count=opts.slideCount;$el.animate(opts.shuffle,opts.speedIn,opts.easeIn,function(){var hops=$.fn.cycle.hopsFromLast(opts,fwd);for(var k=0;k<hops;k++){fwd?opts.els.push(opts.els.shift()):opts.els.unshift(opts.els.pop());}if(fwd){for(var i=0,len=opts.els.length;i<len;i++){$(opts.els[i]).css("z-index",len-i+count);}}else{var z=$(curr).css("z-index");$el.css("z-index",parseInt(z)+1+count);}$el.animate({left:0,top:0},opts.speedOut,opts.easeOut,function(){$(fwd?this:curr).hide();if(cb){cb();}});});};opts.cssBefore={display:"block",opacity:1,top:0,left:0};};$.fn.cycle.transitions.turnUp=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=next.cycleH;opts.animIn.height=next.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,height:0};opts.animIn={top:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnDown=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssFirst={top:0};opts.cssBefore={left:0,top:0,height:0};opts.animOut={height:0};};$.fn.cycle.transitions.turnLeft=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=next.cycleW;opts.animIn.width=next.cycleW;});opts.cssBefore={top:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.turnRight=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={top:0,left:0,width:0};opts.animIn={left:0};opts.animOut={width:0};};$.fn.cycle.transitions.zoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false,true);opts.cssBefore.top=next.cycleH/2;opts.cssBefore.left=next.cycleW/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};opts.animOut={width:0,height:0,top:curr.cycleH/2,left:curr.cycleW/2};});opts.cssFirst={top:0,left:0};opts.cssBefore={width:0,height:0};};$.fn.cycle.transitions.fadeZoom=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,false);opts.cssBefore.left=next.cycleW/2;opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,left:0,width:next.cycleW,height:next.cycleH};});opts.cssBefore={width:0,height:0};opts.animOut={opacity:0};};$.fn.cycle.transitions.blindX=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.width=next.cycleW;opts.animOut.left=curr.cycleW;});opts.cssBefore={left:w,top:0};opts.animIn={left:0};opts.animOut={left:w};};$.fn.cycle.transitions.blindY=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:0};opts.animIn={top:0};opts.animOut={top:h};};$.fn.cycle.transitions.blindZ=function($cont,$slides,opts){var h=$cont.css("overflow","hidden").height();var w=$cont.width();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);opts.animIn.height=next.cycleH;opts.animOut.top=curr.cycleH;});opts.cssBefore={top:h,left:w};opts.animIn={top:0,left:0};opts.animOut={top:h,left:w};};$.fn.cycle.transitions.growX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true);opts.cssBefore.left=this.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:0};});opts.cssBefore={width:0,top:0};};$.fn.cycle.transitions.growY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false);opts.cssBefore.top=this.cycleH/2;opts.animIn={top:0,height:this.cycleH};opts.animOut={top:0};});opts.cssBefore={height:0,left:0};};$.fn.cycle.transitions.curtainX=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,false,true,true);opts.cssBefore.left=next.cycleW/2;opts.animIn={left:0,width:this.cycleW};opts.animOut={left:curr.cycleW/2,width:0};});opts.cssBefore={top:0,width:0};};$.fn.cycle.transitions.curtainY=function($cont,$slides,opts){opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,false,true);opts.cssBefore.top=next.cycleH/2;opts.animIn={top:0,height:next.cycleH};opts.animOut={top:curr.cycleH/2,height:0};});opts.cssBefore={left:0,height:0};};$.fn.cycle.transitions.cover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts);if(d=="right"){opts.cssBefore.left=-w;}else{if(d=="up"){opts.cssBefore.top=h;}else{if(d=="down"){opts.cssBefore.top=-h;}else{opts.cssBefore.left=w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.uncover=function($cont,$slides,opts){var d=opts.direction||"left";var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(d=="right"){opts.animOut.left=w;}else{if(d=="up"){opts.animOut.top=-h;}else{if(d=="down"){opts.animOut.top=h;}else{opts.animOut.left=-w;}}}});opts.animIn={left:0,top:0};opts.animOut={opacity:1};opts.cssBefore={top:0,left:0};};$.fn.cycle.transitions.toss=function($cont,$slides,opts){var w=$cont.css("overflow","visible").width();var h=$cont.height();opts.before.push(function(curr,next,opts){$.fn.cycle.commonReset(curr,next,opts,true,true,true);if(!opts.animOut.left&&!opts.animOut.top){opts.animOut={left:w*2,top:-h/2,opacity:0};}else{opts.animOut.opacity=0;}});opts.cssBefore={left:0,top:0};opts.animIn={left:0};};$.fn.cycle.transitions.wipe=function($cont,$slides,opts){var w=$cont.css("overflow","hidden").width();var h=$cont.height();opts.cssBefore=opts.cssBefore||{};var clip;if(opts.clip){if(/l2r/.test(opts.clip)){clip="rect(0px 0px "+h+"px 0px)";}else{if(/r2l/.test(opts.clip)){clip="rect(0px "+w+"px "+h+"px "+w+"px)";}else{if(/t2b/.test(opts.clip)){clip="rect(0px "+w+"px 0px 0px)";}else{if(/b2t/.test(opts.clip)){clip="rect("+h+"px "+w+"px "+h+"px 0px)";}else{if(/zoom/.test(opts.clip)){var t=parseInt(h/2);var l=parseInt(w/2);clip="rect("+t+"px "+l+"px "+t+"px "+l+"px)";}}}}}}opts.cssBefore.clip=opts.cssBefore.clip||clip||"rect(0px 0px 0px 0px)";var d=opts.cssBefore.clip.match(/(\d+)/g);var t=parseInt(d[0]),r=parseInt(d[1]),b=parseInt(d[2]),l=parseInt(d[3]);opts.before.push(function(curr,next,opts){if(curr==next){return;}var $curr=$(curr),$next=$(next);$.fn.cycle.commonReset(curr,next,opts,true,true,false);opts.cssAfter.display="block";var step=1,count=parseInt((opts.speedIn/13))-1;(function f(){var tt=t?t-parseInt(step*(t/count)):0;var ll=l?l-parseInt(step*(l/count)):0;var bb=b<h?b+parseInt(step*((h-b)/count||1)):h;var rr=r<w?r+parseInt(step*((w-r)/count||1)):w;$next.css({clip:"rect("+tt+"px "+rr+"px "+bb+"px "+ll+"px)"});(step++<=count)?setTimeout(f,13):$curr.css("display","none");})();});opts.cssBefore={display:"block",opacity:1,top:0,left:0};opts.animIn={left:0};opts.animOut={left:0};};})(jQuery);
}finally{};

try{$(document).ready(function(){
	
	if ( jQuery.support.boxModel != true ) {
		window.location = 'http://www.taprootcreative.com/ie6';
	}

	$('a[rel="external"]').click(function() {
		window.open( $(this).attr('href') );
		return false;
	});

	setWatermarkColor();

	$("#nav").superfish({
		hoverClass: 	'scrollLeft', 
		delay: 			0,
		speed: 			0,
		animation: 		{opacity:'show'},
		dropShadows: 	false,
		autoArrows: 	false
	});
	
	activateSlide();

	$('#subnav.portfolio a').click( function() {
		$('#subnav li').removeClass('active');
		$(this).parent().addClass('active');
		var section = $(this).attr('href').replace(/#/, "");
		
		$.ajax({
			type: 'GET',
			dataType: 'json',
			url: '/wp-content/themes/taprootcreative/portfolio.php',
			data: {s : section},
			error: function() {
				// console.log("Failed to submit");
			},
			success: function(msg){
				$('.slide_container').html(msg.html).css({'left':'0px'});
				activateSlide();
			}
		});
		return false;
	});
	

	// Manual theme switcher
	$('#theme_switch li[id!="switch"] a').click(function() {
		if ( $(this).parent().attr('id') == 'day' ) {
			$(document).themeSwitch('day',1);
		} else {
			$(document).themeSwitch('night',1);
		}

		return false;
	});
	$('#theme_switch li#switch a').click(function() {
		if ( readCookie('style') == 'day' ) {
			$(document).themeSwitch('night',1);
		} else {
			$(document).themeSwitch('day',1);
		}
		
		return false;
	});
	
	// Auto theme switcher
	now = new Date();
	hr = now.getHours();

	var dayHour = 8;
	var nightHour = 20;

	if ( readCookie('mode') != 1 ) {
		if ( hr >= dayHour && hr <= nightHour ) {
			if ( readCookie('style') != 'day' ) {
				$(document).themeSwitch('day',0);
				Cufon.refresh; // IE hack for Cufon
			}
			
		} else {
			if ( readCookie('style') != 'night' ) {
				$(document).themeSwitch('night',0);
				Cufon.refresh; // IE hack for Cufon
			}
		}
	}
	

	// Comments
	var default_height = $('.grid .comment_content_wrap').height();
	$('.comment_content').each(function() {
		if ( $(this).innerHeight() > default_height ) {
			
		}
	});


	// Comment type toggle
	$("#grid").click(function() {
		$('.comment_content_wrap').css('height',default_height+'px');
		$('.commentlist[class!="grid"]').addClass('grid');
		$(document).toggleExpand(default_height);
		$(document).checkCommentStyle();
		$('.expand_comment').removeClass('less');
		$('.expand_comment').addClass('more');
		createCookie('comment_style', 'grid', 365);
		return false;
	})

	$("#list").click(function() {
		$('.comment_content_wrap').css('height','auto');
		$('.commentlist[class*="grid"]').removeClass('grid');
		$('.expand_comment').hide();
		$(document).checkCommentStyle();
		createCookie('comment_style', 'list', 365);
		return false;
	})
	
	$(document).checkCommentStyle();
	
	// Comment expansion
	$(document).toggleExpand(default_height);
	
	$('.expand_comment').click(function() {
		var content = $(this).siblings('.comment_content_wrap');
		var comment_height = content.children('.comment_content').innerHeight();

		$('.expand_comment').removeClass('less');
		$('.expand_comment').addClass('more');
		
		if ( content.innerHeight() == comment_height ) {
			content.animate({height: default_height + "px"}, 500);
		} else {
			$('.comment_content_wrap').animate({height: default_height + "px"}, 500);
			content.animate({height: comment_height + "px"}, 500);
			$(this).removeClass('more');
			$(this).addClass('less');
		}

		return false;
	});
	var taproot_map = setupMap('taproot_map', '30.47307', '-84.28093', 'http://maps.google.com/maps?q=Taproot+Creative&gl=us&ie=UTF8&ll=30.47307,-84.28093&spn=0.012835,0.020299&z=16&iwloc=A');
	
	
});
function onAfter() {
	if ( $('#work-samples_new-media').attr('class') == 'active' ) {
		var clientURL = $(this).children('.client_url').html();
		if ( clientURL != null ) $('#current_client_url').html(clientURL).fadeIn(500);

		var caseStudy = $(this).children('.case_study').html();
		if ( caseStudy != null ) $('#current_case_study').html(caseStudy).fadeIn(500);
	}
}
function onBefore() { 
	$('#current_client_url, #current_case_study').hide();
}
function activateSlide() {
	$('.slide_container').cycle({ 
		fx: 'scrollBothWays',
		speed: 500, 
		timeout: 0,
		pager: '.slide_nav',
		next: '.right_arrow', 
		prev: '.left_arrow',
		before: onBefore,
		after: onAfter,
		pagerAnchorBuilder: function(idx, slide) { return '.slide_nav li:eq(' + idx + ') a'; } 
	});
}
function createCookie(name,value,days) {
	if (days) {
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}
function readCookie(name) {
	var nameEQ = name + "=";
	var ca = document.cookie.split(';');
	for(var i=0;i < ca.length;i++) {
		var c = ca[i];
		while (c.charAt(0)==' ') c = c.substring(1,c.length);
		if (c.indexOf(nameEQ) == 0) return c.substring(nameEQ.length,c.length);
	}
	return null;
}
function eraseCookie(name) {
	createCookie(name,"",-1);
}
function setWatermarkColor() {
	var watermarkColor = '#ddd';
	$("#author").Watermark("Name", watermarkColor);
	$("#email").Watermark("E-Mail (will not be published)", watermarkColor);
	$("#url").Watermark("Website", watermarkColor);
}
function setupMap(div, lat, long, url) {
	
	if ( $('#taproot_map').length > 0 ) {
	
		var point = new GLatLng(lat, long)
		var map = new GMap2(document.getElementById(div));
		map.setCenter(point, 16);
	
		var ui = map.getDefaultUI();
		ui.controls.menumaptypecontrol = false;
		map.setUI(ui);
	
		var marker = new GMarker(point);
		map.addOverlay(marker);
		GEvent.addListener(marker, "click", function() {
			window.open(url);
		});
	
		return map;
		
	}
}
jQuery.fn.themeSwitch = function(s,m) {
	
	var currentID = s;
	var altID = ( currentID == 'night' ) ? 'day' : 'night';
	var currentImage = ( currentID == 'night' ) ? 'logo-night.png' : 'logo.png';
	var mode = m;
	
	var currentStylesheet = $('link[title="' + currentID + '"]');
	var altStylesheet = $('link[title="' + altID + '"]');
	var browserVersion = jQuery.browser.version.substr(0,1);

	if ( readCookie('style') != currentID ) {
		
		altStylesheet.attr('disabled', true);
		currentStylesheet.attr('disabled', true); // IE and Safari are stupid so they needs this line
		currentStylesheet.attr('disabled', false);
	
		$('#logo img').attr('src','/wp-content/uploads/' + currentImage);

		$('#switch').attr('class', currentID);

		if ( m != 0 ) mode = 1;

		createCookie('style', currentID, 7);
		if ( mode == 1 ) createCookie('mode', mode);
	
	}

	if ( $('#go').length >= 1 ) {
		$('#go').attr({
			src: '/wp-content/themes/taprootcreative/' + currentID + '/images/search-button.gif'
		});
	}

	setWatermarkColor();
	Cufon.refresh();
};
jQuery.fn.toggleExpand = function(h) {
	$('.grid .comment_content').each(function() {
		if ( $(this).height() > h ) {
			$(this).parent().parent().children('.expand_comment').show();
		}
	});
}
jQuery.fn.checkCommentStyle = function() {
	if ( $('.commentlist').length >= 1 ) {
		if ( $('.commentlist').hasClass('grid') ) {
			$('#list').removeClass('active');
			$('#grid').addClass('active');
		} else {
			$('#list').addClass('active');
			$('#grid').removeClass('active');
		}
	}
}
$.fn.cycle.transitions.scrollBothWays = function($cont, $slides, opts) {
	$cont.css('overflow','hidden');
	opts.before.push($.fn.cycle.commonReset);

	// custom transition fn (trying to get it to scroll forward and backward)
	opts.fxFn = function(curr, next, opts, cb, fwd) {

		var w = $cont.width();
		opts.cssFirst = { left: 0 };
		opts.animIn	  = { left: 0 };

		if( fwd ){
			opts.cssBefore= { left: w, top: 0 };
			opts.animOut  = { left: 0-w };
		} else {
			opts.cssBefore= { left: -w, top: 0 };
			opts.animOut  = { left: w };
		};

		var $l = $(curr), $n = $(next);
		var speedIn = opts.speedIn, speedOut = opts.speedOut, easeIn = opts.easeIn, easeOut = opts.easeOut, animOut = opts.animOut, animIn = opts.animIn;
		$n.css(opts.cssBefore);
		var fn = function() {$n.show();$n.animate(animIn, speedIn, easeIn, cb);};
		$l.animate(animOut, speedOut, easeOut, function() {
			if (opts.cssAfter) $l.css(opts.cssAfter);
			if (!opts.sync) fn();
		});

		if (opts.sync) fn();
	};
};
}finally{};

try{jQuery(document).ready(function(){jQuery('a').each(function(){var a=jQuery(this);var href=a.attr('href');if(href==undefined)
return;var url=href.replace('http://','').replace('https://','');var hrefArray=href.split('.').reverse();var extension=hrefArray[0].toLowerCase();var hrefArray=href.split('/').reverse();var domain=hrefArray[2];var downloadTracked=false;if(jQuery.inArray(extension,analyticsFileTypes)!=-1){downloadTracked=true;a.click(function(){if(analyticsEventTracking=='enabled'){pageTracker._trackEvent("Downloads",extension.toUpperCase(),href);}else
pageTracker._trackPageview(analyticsDownloadsPrefix+url);});}
if((href.match(/^http/))&&(!href.match(document.domain))&&(downloadTracked==false)){a.click(function(){if(analyticsEventTracking=='enabled'){pageTracker._trackEvent("Outbound Traffic",href.match(/:\/\/(.[^/]+)/)[1],href);}else
pageTracker._trackPageview(analyticsOutboundPrefix+url);});}});});
}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{Cufon.registerFont({"w":239,"face":{"font-family":"GothamRounded","font-weight":325,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","cap-height":"2","bbox":"-12 -289.109 378 59","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":108},"!":{"d":"57,-78v1,4,-4,9,-8,8v-5,0,-9,-2,-9,-8r-8,-164v0,-11,11,-12,23,-11v6,0,11,5,11,11xm49,2v-13,-1,-19,-10,-17,-25v0,-10,7,-17,17,-17v13,1,19,10,17,25v0,10,-7,17,-17,17","w":97},"\"":{"d":"94,-162r9,-77v-2,-16,30,-22,32,-5v-5,30,-16,55,-24,83v-2,12,-19,10,-17,-1xm24,-162r9,-77v-2,-16,30,-22,32,-5r-24,83v-2,12,-19,10,-17,-1","w":158},"#":{"d":"72,-9v0,10,-17,16,-22,6v-8,-18,5,-41,6,-61v-17,-1,-41,6,-41,-12v0,-19,27,-12,45,-13r13,-76v-18,-1,-45,6,-45,-12v1,-19,30,-12,50,-13v7,-21,1,-77,31,-59v8,17,-5,40,-6,59r68,0v7,-21,1,-77,31,-59v5,19,-5,40,-6,59v18,0,41,-4,41,13v0,17,-27,11,-45,12r-13,76v18,1,44,-5,44,13v0,18,-30,11,-49,12r-9,55v0,10,-17,16,-22,6v-8,-18,5,-41,6,-61r-68,0xm86,-89r67,0r13,-76r-67,0","w":252},"$":{"d":"30,-185v-1,-39,35,-66,75,-67v-6,-21,20,-32,23,-11r0,12v24,3,59,12,68,35v-11,33,-48,-17,-69,-11r0,89v45,11,78,25,78,70v0,41,-35,66,-77,68v-1,15,5,37,-11,37v-16,0,-11,-22,-12,-38v-28,-2,-53,-14,-78,-32v-10,-7,-5,-25,7,-24v24,12,47,31,72,32r0,-90v-45,-11,-74,-24,-76,-70xm127,-24v39,3,66,-41,39,-69v-7,-7,-20,-13,-39,-18r0,87xm106,-228v-37,-2,-65,41,-38,67v7,7,19,13,38,18r0,-85","w":228,"k":{"7":4}},"%":{"d":"133,-191v0,34,-24,66,-57,65v-33,0,-57,-30,-57,-64v0,-34,23,-66,57,-65v33,1,57,30,57,64xm73,-3v-4,8,-19,5,-19,-5v0,-2,1,-5,2,-7r171,-234v10,-14,25,1,17,12xm281,-62v0,34,-23,66,-57,65v-33,0,-57,-30,-57,-65v0,-33,25,-65,58,-64v33,0,56,30,56,64xm76,-235v-44,0,-43,88,0,89v44,0,42,-88,0,-89xm191,-62v0,21,13,46,34,45v43,-1,42,-90,-1,-89v-21,0,-33,21,-33,44","w":300},"&":{"d":"230,-21v11,9,5,24,-8,24v-20,-6,-29,-27,-44,-39v-44,61,-160,52,-162,-32v0,-33,20,-56,61,-72v-46,-44,-25,-116,41,-116v34,0,62,25,62,57v0,30,-20,52,-60,66r58,58v15,-16,17,-46,38,-55v7,0,13,6,13,13v-9,24,-23,44,-34,60xm117,-233v-47,2,-46,61,-13,84v32,-12,49,-27,49,-49v0,-20,-16,-36,-36,-35xm45,-69v0,60,85,61,116,15r-68,-69v-26,10,-48,25,-48,54","w":250,"k":{"V":21,"X":28,"*":18,"\\":24,"x":3}},"'":{"d":"24,-162r9,-77v-2,-16,30,-22,32,-5v-5,30,-17,55,-24,83v-2,12,-19,10,-17,-1","w":88},"(":{"d":"131,29v9,5,5,20,-5,20v-3,0,-6,0,-7,-1v-127,-67,-126,-236,0,-303v13,-7,24,12,12,20v-104,63,-104,201,0,264","w":156,"k":{"q":11,"j":-11,"Q":11,"J":5,"a":36,"c":36,"d":47,"e":25,"g":22,"z":14,"t":14,"u":14,"n":7,"r":4,"U":7,"h":4}},")":{"d":"31,-256v135,59,135,247,0,305v-11,1,-15,-15,-6,-20v105,-63,105,-201,0,-264v-9,-5,-5,-22,6,-21","w":156},"*":{"d":"77,-141v-16,-4,-4,-32,-5,-47v-13,8,-24,18,-38,24v-10,1,-12,-15,-2,-17r35,-17v-14,-7,-58,-19,-33,-34v14,5,25,17,38,24v1,-16,-10,-42,5,-47v17,3,5,31,6,47v13,-7,23,-19,38,-24v9,0,13,15,2,18r-35,16v13,8,58,19,33,34v-15,-4,-25,-17,-38,-24v-1,16,11,44,-6,47","w":154,"k":{"q":5,"J":29,"f":36,"-":7,"?":7}},"+":{"d":"113,-38v-26,-3,-10,-50,-14,-76v-26,-4,-71,11,-76,-13v4,-24,51,-9,76,-13v4,-26,-12,-75,14,-75v25,0,9,50,13,75v26,4,73,-12,76,13v-3,25,-51,9,-76,13v-4,26,11,71,-13,76","w":225},",":{"d":"61,-20v2,36,-11,57,-37,63v-9,1,-11,-10,-3,-13v14,-5,21,-17,20,-30v-20,-2,-19,-41,3,-40v10,0,17,10,17,20","w":88,"k":{"v":25,"q":4,"j":-5,"f":7,"V":43,"Q":16,"7":7,"1":18,"0":7,"X":14,"*":14,"\\":14,"h":36}},"-":{"d":"125,-108v-5,28,-60,9,-89,14v-7,1,-15,-7,-14,-14v5,-29,59,-15,89,-15v7,0,14,7,14,15","w":146,"k":{"x":11,"v":5,"X":4,"V":14,"7":14,"3":4,"1":11,"z":4,"t":4}},".":{"d":"44,2v-13,-1,-19,-10,-17,-25v0,-10,7,-17,17,-17v13,1,19,10,17,25v0,10,-7,17,-17,17","w":88,"k":{"v":9,"q":4,"f":5,"V":43,"Q":14,"7":7,"1":18,"0":7,"\\":5,"Z":22,"a":18,"c":25,"d":13,"e":13,"s":7,"z":7,"t":7,"S":-4}},"\/":{"d":"21,41v-4,11,-23,8,-22,-4r158,-319v4,-11,23,-8,22,4","w":182,"k":{"x":18,"v":18,"q":25,"p":18,"m":18,"f":9,"Q":14,"J":47,"9":7,"8":5,"7":4,"6":13,"5":7,"4":34,"3":4,"2":7,"1":-4,"0":13,"\/":60,"A":5,"d":8,"e":9,"g":8,"o":9,"s":8,"z":9,"t":6,"u":2}},"0":{"d":"235,-127v0,69,-41,131,-106,131v-66,0,-107,-62,-107,-130v0,-67,42,-130,107,-130v66,0,106,62,106,129xm52,-127v0,52,27,105,77,105v102,-1,102,-208,0,-208v-49,0,-77,51,-77,103","w":257,"k":{"7":10,"3":4,"2":4,"1":2,"\/":13,".":7,",":7}},"1":{"d":"78,2v-7,0,-14,-8,-14,-15r0,-212v-14,4,-26,10,-41,12v-14,2,-17,-20,-2,-24v18,-5,37,-16,57,-18v8,-1,16,6,15,14r0,228v0,7,-7,16,-15,15","w":128},"2":{"d":"30,0v-14,0,-18,-17,-7,-27v40,-35,97,-80,127,-119v37,-48,-20,-109,-73,-75v-15,5,-21,28,-40,33v-7,0,-13,-6,-13,-13v17,-34,42,-53,89,-55v63,-3,100,68,64,119v-24,33,-83,78,-117,111r122,0v7,0,13,6,13,13v0,7,-6,13,-13,13r-152,0","w":215,"k":{"7":4,"4":9}},"3":{"d":"196,-72v0,91,-143,99,-177,28v0,-11,17,-20,25,-10v32,43,123,46,123,-17v0,-36,-37,-52,-79,-49v-12,0,-18,-15,-7,-23r73,-83r-111,0v-7,-1,-14,-4,-13,-13v-1,-8,6,-13,13,-13r137,0v15,0,17,15,7,26r-74,83v44,3,83,24,83,71","w":220,"k":{"9":2,"7":9,"5":2,"\/":4}},"4":{"d":"169,2v-22,0,-10,-40,-13,-62r-126,0v-14,0,-19,-16,-9,-27r131,-160v9,-14,30,-10,31,6r0,157v17,1,41,-4,41,13v0,16,-25,10,-41,11v-3,23,9,62,-14,62xm50,-84r106,0r0,-129","w":241,"k":{"9":4,"7":13,"1":7,"\/":7}},"5":{"d":"199,-79v0,87,-117,107,-172,51v-9,-9,-4,-26,8,-26v26,12,49,32,75,32v35,0,60,-22,60,-56v0,-53,-71,-65,-113,-41v-9,0,-22,-7,-21,-21r6,-98v0,-7,6,-14,13,-14r121,0v7,0,14,5,13,13v1,8,-6,13,-13,13r-108,0r-6,81v60,-28,137,0,137,66","w":220,"k":{"9":2,"7":11,"3":2,"2":4,"\/":7}},"6":{"d":"210,-80v0,48,-40,86,-90,84v-68,-2,-98,-49,-98,-124v0,-72,38,-137,105,-136v26,1,62,9,72,34v-11,35,-50,-17,-74,-8v-51,1,-74,54,-74,111v38,-67,159,-41,159,39xm57,-78v0,33,29,57,63,57v35,0,61,-24,61,-58v0,-33,-28,-54,-61,-54v-33,0,-63,23,-63,55","w":232,"k":{"9":4,"7":8,"3":4,"1":6,"\/":4}},"7":{"d":"85,-8v-5,16,-28,11,-28,-4v31,-75,72,-142,106,-214r-127,0v-7,0,-13,-6,-13,-13v0,-7,6,-13,13,-13r148,0v14,-1,15,13,9,25","w":214,"k":{"9":5,"8":4,"6":7,"5":9,"4":31,"3":7,"2":5,"1":-4,"0":7,"\/":50,".":36,"-":11,",":36}},"8":{"d":"208,-69v1,47,-46,73,-95,73v-49,0,-94,-27,-94,-72v1,-33,24,-53,52,-62v-29,-13,-44,-33,-44,-59v0,-39,43,-67,86,-67v43,0,87,27,86,68v0,25,-14,45,-43,58v28,10,51,28,52,61xm56,-187v0,29,27,47,57,47v30,0,59,-19,58,-47v0,-57,-115,-59,-115,0xm48,-69v0,30,31,48,65,48v35,0,66,-17,66,-48v1,-30,-33,-48,-66,-48v-32,0,-66,18,-65,48","w":226,"k":{"9":2,"7":4}},"9":{"d":"211,-133v0,105,-92,176,-175,112v-10,-8,-6,-27,7,-25v39,24,90,40,119,-7v14,-21,20,-47,20,-79v-36,70,-159,43,-159,-39v0,-49,40,-87,90,-85v67,2,98,49,98,123xm52,-172v0,34,29,56,62,56v34,1,62,-25,62,-58v0,-33,-28,-57,-64,-57v-35,0,-60,26,-60,59","w":232,"k":{"7":8,"5":2,"3":4,"2":4,"\/":9,".":4,",":4}},":":{"d":"46,-147v-13,0,-19,-10,-17,-24v0,-10,7,-17,17,-17v13,1,19,10,17,25v0,10,-7,16,-17,16xm46,2v-13,-1,-19,-10,-17,-25v0,-10,7,-17,17,-17v13,1,19,10,17,25v0,10,-7,17,-17,17","w":91,"k":{"V":7,"v":14}},";":{"d":"46,-147v-13,0,-19,-10,-17,-24v0,-10,7,-17,17,-17v13,1,19,10,17,25v0,10,-7,16,-17,16xm63,-20v2,36,-11,57,-37,63v-9,1,-11,-10,-3,-13v14,-5,21,-17,20,-30v-20,-2,-19,-41,2,-40v11,0,18,9,18,20","w":91,"k":{"V":7,"A":18,"C":18,"G":43,"O":43,"Z":14,"a":14,"c":14,"d":7,"e":23,"g":29,"o":25,"s":29,"z":25,"t":29,"u":31,"S":22,"l":7,"n":18,"r":11,"h":18}},"<":{"d":"185,-61v14,4,10,24,-4,25r-149,-75v-14,-6,-13,-25,0,-32r150,-74v13,0,16,18,3,24r-132,66","w":225},"=":{"d":"198,-85v1,7,-7,15,-14,14r-143,0v-7,1,-15,-7,-14,-14v0,-7,7,-13,14,-13r143,0v7,0,14,6,14,13xm198,-169v0,7,-6,13,-14,13r-143,0v-8,1,-14,-6,-14,-13v0,-7,7,-13,14,-13r143,0v7,0,14,6,14,13","w":225},">":{"d":"40,-193v-14,-5,-9,-23,4,-24v52,22,99,50,149,74v13,7,14,25,0,32r-142,73v-10,6,-19,-2,-20,-11v0,-5,3,-9,9,-12r132,-65","w":225},"?":{"d":"13,-210v30,-69,163,-57,163,27v0,45,-34,67,-75,73v-3,15,4,41,-13,41v-17,-4,-9,-34,-13,-51v-1,-7,4,-12,10,-12v34,-2,62,-17,62,-51v-1,-56,-82,-60,-112,-19v-7,9,-24,4,-22,-8xm88,2v-13,-1,-19,-10,-17,-25v0,-10,7,-17,17,-17v13,1,19,10,17,25v0,10,-7,17,-17,17","w":193},"@":{"d":"266,23v6,-3,13,4,7,10v-110,69,-254,-10,-254,-132v0,-84,73,-157,158,-157v81,0,157,65,157,142v0,78,-87,119,-118,58v-36,52,-124,32,-124,-35v0,-69,97,-127,136,-60v0,-16,10,-38,25,-23v6,32,-14,69,-13,105v0,18,10,30,30,29v33,-1,51,-34,51,-74v0,-70,-71,-130,-144,-130v-80,0,-145,66,-145,145v0,114,132,184,234,122xm177,-158v-58,-6,-88,109,-15,110v57,4,88,-108,15,-110","w":352},"A":{"d":"45,-8v-5,14,-27,12,-27,-3v31,-80,70,-153,104,-231v6,-17,29,-17,37,0r105,230v0,16,-21,19,-28,3r-26,-58r-139,0xm82,-93r116,0r-58,-128","w":282,"k":{"v":13,"Q":13,"V":1,"X":36,"*":43,"\\":14,"f":7,"-":8,"q":22,"?":29,";":31,"T":30,"W":36,"Y":15,"w":13,"y":2,"A":13,"C":13,"G":13,"a":8,"c":8,"d":8,"e":8,"g":8,"z":10,"t":3,"u":4,"r":8}},"B":{"d":"50,0v-7,1,-15,-7,-14,-14r0,-224v-1,-7,7,-15,14,-14v78,0,175,-13,175,63v0,27,-13,47,-40,59v36,11,54,31,54,61v0,81,-105,70,-189,69xm196,-185v0,-55,-78,-39,-132,-41r0,86v57,-1,133,12,132,-45xm210,-71v0,-58,-87,-40,-146,-43r0,88v60,-2,146,15,146,-45","w":259,"k":{"v":4,"X":6,"V":7,"?":2,"&":-1}},"C":{"d":"249,-43v-18,33,-62,46,-98,47v-71,2,-127,-59,-127,-130v0,-108,136,-171,218,-98v11,9,4,26,-9,26v-27,-13,-50,-32,-81,-32v-55,0,-98,47,-98,104v0,56,43,104,98,104v32,0,57,-19,83,-35v7,0,14,7,14,14","w":265,"k":{"v":7,"*":4,"\\":4,"T":3,"W":4,"Y":4,"A":7,"C":7,"Z":4,"a":4,"c":4,"d":4,"e":4}},"D":{"d":"123,0v-29,-2,-82,13,-87,-14r0,-224v5,-27,58,-12,87,-14v74,-5,134,53,134,126v0,72,-60,131,-134,126xm228,-125v1,-59,-45,-102,-105,-101r-59,0r0,200v92,10,164,-18,164,-99","w":281,"k":{"v":15,"Q":17,"V":14,"x":7,"J":14,"}":14,"]":11,",":14,"m":18,"p":12,";":21,"Y":15,"w":15,"C":16,"z":4,"U":4,"h":4}},"E":{"d":"221,-13v0,7,-6,13,-13,13r-158,0v-7,1,-15,-7,-14,-14r0,-224v-1,-7,7,-15,14,-14r156,0v7,0,13,6,13,13v0,7,-6,13,-13,13r-142,0r0,86r126,0v7,-1,13,7,13,13v0,7,-6,13,-13,13r-126,0r0,88r144,0v7,0,13,6,13,13","w":241,"k":{";":4,"T":4,"G":4,"O":4,"Z":4,"c":4,"U":2}},"F":{"d":"50,2v-7,0,-14,-7,-14,-15r0,-225v-1,-7,7,-15,14,-14r156,0v7,0,13,6,13,13v0,7,-6,13,-13,13r-142,0r0,90r125,0v7,0,14,5,13,13v1,8,-6,13,-13,13r-125,0r0,97v1,8,-6,16,-14,15","w":236,"k":{"v":5,"q":5,"Q":5,"J":4,"?":5,"\/":25,".":36,",":5,"&":9,"-":27,"x":5,"}":5,"]":4}},"G":{"d":"240,-135v27,7,14,61,14,91v0,7,-4,14,-10,18v-28,20,-58,30,-91,30v-76,2,-128,-57,-129,-130v-1,-70,55,-130,127,-130v33,0,61,10,86,27v11,8,4,25,-8,26v-23,-13,-49,-27,-79,-27v-55,0,-96,47,-96,104v0,91,106,137,172,80r0,-63v-27,-4,-75,11,-80,-13v-1,-7,7,-13,13,-13r81,0","w":282,"k":{"Q":5,"i":6,"j":5,"m":9,";":2,"A":-4,"n":11,"r":19,"U":16,"h":16}},"H":{"d":"50,2v-7,0,-14,-7,-14,-15r0,-226v0,-8,7,-15,14,-15v8,-1,15,7,14,15r0,99r146,0r0,-99v-1,-8,6,-16,14,-15v7,0,14,7,14,15r0,226v0,8,-7,15,-14,15v-8,1,-15,-7,-14,-15r0,-100r-146,0r0,100v1,8,-6,16,-14,15","w":273},"I":{"d":"52,2v-7,0,-14,-7,-14,-15r0,-226v0,-8,7,-15,14,-15v8,-1,15,8,15,15r0,226v0,7,-7,16,-15,15","w":104},"J":{"d":"167,-84v11,95,-122,118,-153,42v-1,-7,7,-15,14,-14v22,10,29,34,62,33v32,-1,49,-25,49,-60r0,-156v-1,-8,6,-15,14,-15v8,0,15,7,14,15r0,155","w":199,"k":{"J":7,".":5,",":5}},"K":{"d":"50,2v-7,0,-14,-7,-14,-15r0,-226v0,-8,7,-15,14,-15v8,-1,15,7,14,15r0,137r144,-147v9,-10,23,-2,25,9v0,4,-2,7,-5,10r-89,89r95,118v9,9,1,25,-10,25v-5,0,-9,-3,-12,-7r-94,-117r-54,55v-3,25,10,67,-14,69","w":257,"k":{"Q":18,"V":6,"X":7,"*":7,"\\":7,"f":7,"]":3,"i":9,"j":12,"m":15,"p":15,";":2,"W":16,"Y":16,"w":16,"A":11,"C":9,"G":11,"O":9,"Z":11,"d":8,"e":7,"g":3,"t":4,"l":4,"n":22,"r":14,"U":14,"h":40}},"L":{"d":"50,0v-7,1,-15,-7,-14,-14r0,-225v0,-8,7,-15,14,-15v8,-1,15,7,14,15r0,213r131,0v7,0,13,6,13,13v0,7,-6,13,-13,13r-145,0","w":222,"k":{"v":14,"Q":14,"V":7,"X":7,"*":7,"\\":7,"-":32,"}":3,"i":46,"j":18,"m":22,"T":14,"W":14,"Y":14,"A":2,"C":4,"G":2,"O":4,"c":7,"z":7,"U":13,"h":15}},"M":{"d":"49,2v-7,0,-13,-7,-13,-14r0,-227v-2,-15,22,-19,30,-7r90,136r90,-136v7,-12,31,-8,31,7r0,226v0,8,-7,15,-14,15v-7,0,-15,-8,-15,-15r0,-188r-80,119v-5,10,-19,9,-24,0r-81,-118r0,188v1,7,-7,15,-14,14","w":312},"N":{"d":"49,2v-7,0,-13,-7,-13,-14r0,-227v-1,-15,22,-19,32,-6r153,195r0,-190v-1,-7,7,-14,14,-14v7,0,15,7,14,14r0,228v-1,15,-19,17,-29,4r-157,-199r0,195v1,7,-7,15,-14,14","w":284},"O":{"d":"282,-127v0,71,-56,131,-129,131v-72,0,-129,-58,-129,-130v0,-70,57,-130,129,-130v72,0,129,58,129,129xm54,-127v0,57,42,105,99,105v56,0,99,-47,99,-104v0,-56,-42,-104,-99,-104v-56,0,-99,47,-99,103","w":306,"k":{"-":2,"q":11,"?":7,"x":14,":":17,"m":13,"p":13,"Y":14,"d":2,"u":4,"r":6}},"P":{"d":"50,2v-7,0,-14,-7,-14,-15r0,-225v-1,-7,7,-15,14,-14v87,-4,176,-3,174,81v-1,75,-77,88,-160,82r0,76v1,8,-6,16,-14,15xm195,-170v0,-62,-68,-57,-131,-56r0,111v62,2,131,5,131,-55","w":240,"k":{"v":-4,"f":-5,"X":9,"V":4,"J":36,"\/":22,".":36,",":-2,"&":5,"?":5,"x":2,"]":-5}},"Q":{"d":"275,-22v11,7,5,27,-8,26v-16,-2,-24,-18,-35,-26v-83,65,-208,1,-208,-104v0,-70,57,-130,129,-130v108,0,170,134,99,215xm54,-127v0,82,91,136,158,86v-14,-15,-37,-24,-45,-44v0,-11,15,-19,25,-10r39,36v50,-65,6,-171,-78,-171v-56,0,-99,47,-99,103","w":306,"k":{"V":13,"?":7,")":4,"f":11}},"R":{"d":"50,2v-7,0,-14,-7,-14,-15r0,-225v-1,-7,7,-15,14,-14v87,-2,186,-10,185,76v0,43,-29,65,-67,73v22,31,49,57,67,91v0,15,-19,18,-28,6r-71,-92r-72,0r0,85v1,8,-6,16,-14,15xm206,-175v1,-63,-80,-50,-142,-51r0,103v63,0,141,9,142,-52","w":260,"k":{"v":-4,"Q":-4,"V":-4,"X":-4,"*":-4,"f":2,"-":2,"&":3,":":5,"j":1,"w":4,"y":2,"A":2,"C":4,"Z":-4,"u":5,"n":10,"r":7,"h":7}},"S":{"d":"188,-114v46,47,2,118,-66,118v-35,0,-67,-11,-95,-34v-12,-6,-5,-27,8,-25v30,14,54,36,88,33v45,6,77,-48,43,-73v-39,-29,-141,-19,-137,-92v4,-74,111,-86,163,-44v10,8,6,25,-7,25v-26,-9,-47,-27,-74,-24v-43,-5,-71,44,-39,71v19,16,98,26,116,45","w":230,"k":{"v":2,"Q":2,"V":2,"X":2,"f":4,"\/":5,"&":8,":":10,"i":5,"j":4,"T":4,"G":2,"O":2,"a":4,"z":46,"t":31,"u":17,"S":17,"h":32}},"T":{"d":"117,2v-8,0,-15,-8,-15,-15r0,-213r-73,0v-7,0,-13,-6,-13,-13v0,-7,6,-13,13,-13r175,0v7,0,13,6,13,13v-7,26,-58,8,-86,13r0,213v1,8,-6,15,-14,15","w":233,"k":{"v":16,"Q":16,"V":16,"X":32,"*":32,"\\":32,"q":36,"?":36,"x":25,"J":25,"}":12,"]":12,",":32,")":14,":":30,"i":31,"j":17,"m":17,"p":17,";":6,"T":46,"W":46,"Y":42,"w":46,"y":42,"A":39,"C":37,"G":15,"O":31,"Z":5,"a":4,"c":32,"d":32,"g":5,"l":3}},"U":{"d":"242,-108v1,69,-40,112,-106,112v-64,0,-104,-42,-104,-109r0,-134v0,-8,7,-15,14,-15v8,-1,15,7,14,15r0,132v-1,51,29,85,77,85v49,0,76,-31,76,-83r0,-134v-1,-8,7,-16,15,-15v7,0,14,8,14,15r0,131","w":273,"k":{"-":5,"q":5,"p":1,"o":23,"s":11,"z":11,"t":11,"u":4,"S":5,"r":13,"U":13,"h":9}},"V":{"d":"222,-244v5,-16,28,-11,28,4v-29,80,-67,153,-99,231v-6,16,-27,16,-34,0r-98,-224v-4,-11,4,-20,13,-21v7,0,12,4,15,11r87,209","w":267,"k":{"x":6,"v":13,"q":23,"p":13,"m":13,"j":7,"i":7,"f":11,"X":8,"V":4,"Q":13,"J":13,";":7,":":7,"\/":43,".":43,"-":23,",":13,"&":18,"?":22,"}":8,"]":4}},"W":{"d":"350,-243v3,-17,27,-11,28,3r-83,231v-5,16,-25,16,-31,0r-66,-194r-65,194v-5,16,-27,16,-32,0r-82,-230v1,-16,24,-21,30,-3r69,200r66,-201v3,-15,25,-15,30,0r66,201","w":396,"k":{"v":11,"Q":11,"V":18,"X":13,"*":20,"-":36,"?":36,"x":5,"J":5,"}":12,"]":12,",":5,")":4,".":5,"\/":12,"&":11,":":32,"i":11,"j":11,"m":4,"p":23,";":22,"T":20,"W":22,"Y":20,"w":22,"y":20,"A":8,"C":11,"G":6,"O":4,"Z":12,"a":12,"g":40,"o":19,"s":19,"z":19,"t":6,"u":7,"n":29,"r":29,"U":13,"h":14}},"X":{"d":"50,-6v-9,14,-25,8,-26,-6v0,-4,1,-7,4,-10r84,-107v-28,-38,-61,-69,-85,-111v1,-13,18,-19,27,-7r76,99r75,-98v9,-13,27,-9,26,6v0,4,0,7,-3,10r-81,101v29,40,63,74,88,117v0,14,-18,20,-27,7r-79,-104","w":258,"k":{"v":15,"q":13,"j":4,"i":4,"f":13,"V":8,"Q":15,"J":9,"?":14,"-":14,"&":4,"\\":5,"x":6,"}":4}},"Y":{"d":"127,2v-8,0,-15,-7,-14,-15r0,-86r-94,-131v-7,-10,0,-24,12,-24v5,0,10,3,14,9r83,120r84,-120v7,-15,27,-10,27,5v-26,52,-66,92,-97,140r0,87v1,8,-7,15,-15,15","w":254,"k":{"v":14,"Q":36,"V":29,"X":33,"q":47,"?":40,"x":7,"J":25,"}":25,"]":14,")":2,".":17,"\/":19,"&":40,":":36,"i":19,"j":4,"m":33,"p":35,";":33,"T":35,"W":33,"Y":35,"w":32,"y":26,"A":25,"C":11,"G":4,"O":25,"Z":25,"e":9,"g":7,"o":14,"s":14,"l":11,"n":11,"r":4,"U":4,"h":4}},"Z":{"d":"228,-13v0,7,-6,13,-13,13r-178,0v-13,-1,-16,-16,-8,-26r158,-200r-146,0v-7,1,-13,-7,-13,-13v0,-7,6,-13,13,-13r172,0v12,0,16,15,8,26r-158,200r152,0v7,-1,13,7,13,13","w":249,"k":{"v":7,"Q":7,"V":7,"?":4,")":5,".":5,"\/":1,":":14,"i":4,"m":9,"p":7,";":9,"T":7,"W":9,"A":4,"e":7,"t":5,"u":27}},"[":{"d":"48,47v-7,1,-15,-7,-14,-14r0,-271v-1,-7,7,-15,14,-14r80,0v14,0,13,21,0,22r-68,0r0,255r68,0v14,0,14,22,0,22r-80,0","w":158,"k":{"x":4,"v":7,"q":7,"j":-11,"Q":7,"J":4,"V":4,"\\":7}},"\\":{"d":"5,-272v-3,-8,2,-17,10,-17v5,0,9,2,11,7r158,319v1,12,-17,15,-22,4","w":182,"k":{"v":25,"j":-11,"f":14,"V":40,"Q":32,"X":22,"*":22,"J":5}},"]":{"d":"111,-252v7,0,14,7,14,14r0,271v-8,28,-63,9,-94,14v-6,0,-12,-5,-12,-11v7,-22,54,-7,79,-11r0,-255v-26,-4,-70,10,-79,-11v0,-6,6,-11,12,-11r80,0","w":158},"^":{"d":"53,-185v-6,8,-20,13,-25,4v12,-24,31,-43,46,-64v9,-13,23,-13,32,0v16,21,33,40,46,64v-4,10,-21,4,-26,-4r-36,-48","w":180},"_":{"d":"228,46v0,6,-5,12,-11,12r-218,0v-6,0,-11,-6,-11,-12v0,-6,5,-11,11,-11r218,0v6,0,11,5,11,11","w":216},"`":{"d":"55,-253v3,-10,25,-17,32,-3v7,13,18,24,24,38v-22,15,-43,-22,-56,-35","w":180},"a":{"d":"167,2v-13,0,-14,-15,-13,-30v-31,50,-138,41,-137,-27v0,-62,80,-69,137,-52v7,-62,-64,-66,-109,-46v-13,2,-16,-18,-5,-23v59,-26,140,-13,140,62r0,102v1,8,-6,15,-13,14xm45,-56v-1,24,22,39,47,38v38,-1,69,-23,62,-68v-41,-12,-108,-17,-109,30","w":208,"k":{"V":13,")":6,"w":2,"c":5,"d":1,"t":14}},"b":{"d":"45,2v-7,1,-15,-7,-14,-14r0,-239v0,-19,28,-17,28,0r0,102v45,-79,160,-34,160,56v0,89,-115,134,-160,57v0,17,3,39,-14,38xm58,-94v0,40,29,73,67,73v40,0,65,-30,65,-72v0,-40,-28,-72,-65,-72v-37,0,-67,33,-67,71","k":{"}":5,"x":9,"v":8,"]":7,"\\":8,"?":13,".":4,",":4,"*":6,")":11}},"c":{"d":"189,-34v-46,75,-170,29,-170,-59v0,-86,123,-135,169,-60v0,7,-7,13,-14,13v-21,-8,-38,-26,-60,-26v-38,0,-66,34,-66,73v0,38,30,72,68,72v21,0,41,-15,60,-26v6,-1,14,7,13,13","w":205,"k":{"Q":4,"V":-4,"X":-5,"*":-4,"\\":-5,"?":-4,",":1,"i":5,"j":4,"m":5,"p":4,";":5,"c":8,"s":7,"z":29}},"d":{"d":"194,-265v7,0,14,7,14,14r0,239v1,7,-7,15,-14,14v-17,1,-14,-21,-14,-39v-46,79,-160,33,-160,-56v0,-89,115,-134,160,-57r0,-101v-1,-7,7,-15,14,-14xm181,-93v0,-39,-30,-72,-67,-72v-40,0,-65,30,-65,72v0,40,28,72,65,72v37,0,67,-33,67,-72"},"e":{"d":"167,-103v3,-53,-63,-86,-100,-46v-11,12,-17,28,-19,46r119,0xm187,-33v-45,73,-168,30,-168,-60v0,-51,39,-97,90,-97v51,0,87,43,86,94v0,7,-6,13,-13,13r-134,0v3,37,29,61,65,63v23,1,43,-14,62,-25v6,1,11,6,12,12","w":213,"k":{"Q":14,"f":4,"]":9,",":8,"T":5,"s":18}},"f":{"d":"55,2v-7,0,-14,-7,-14,-14r0,-150v-24,7,-36,-19,-15,-24r15,0v-3,-47,14,-78,57,-78v19,0,42,6,28,23v-29,4,-60,-2,-57,40r0,16v21,3,60,-9,60,11v0,22,-39,9,-60,12r0,150v1,7,-7,15,-14,14","w":132,"k":{"}":-11,"q":4,"]":-7,"\\":4,"?":-13,"\/":16,".":16,",":16,"*":4,")":-11,"X":5,"f":4}},"g":{"d":"208,-32v6,90,-107,112,-172,68v-14,-4,-8,-25,5,-23v25,9,45,23,72,22v50,-2,74,-33,68,-89v-44,72,-161,38,-161,-48v0,-84,116,-120,160,-51v-1,-17,-2,-36,14,-35v7,-1,15,7,14,14r0,142xm49,-103v0,36,29,64,64,64v35,0,68,-27,68,-64v0,-36,-34,-63,-68,-63v-36,0,-64,26,-64,63","k":{"Z":6,"g":5,"o":27}},"h":{"d":"45,2v-7,0,-15,-7,-14,-14r0,-239v0,-19,28,-17,28,0r0,97v32,-62,135,-40,135,38r0,104v1,7,-7,14,-14,14v-7,0,-15,-7,-14,-14v-2,-65,17,-153,-52,-153v-32,0,-55,26,-55,58r0,95v1,7,-7,14,-14,14","w":221,"k":{"J":4,"}":4,"G":9,"O":6,"g":14,"o":7,"s":7,"r":7,"U":7,"h":7}},"i":{"d":"47,-225v-11,0,-17,-8,-16,-19v0,-8,7,-16,16,-15v11,0,18,7,17,19v0,8,-7,16,-17,15xm48,2v-8,0,-15,-7,-15,-14r0,-162v-1,-7,7,-14,14,-14v7,0,15,7,14,14r0,162v0,7,-6,14,-13,14","w":94},"j":{"d":"47,-225v-11,0,-17,-8,-16,-19v0,-8,7,-16,16,-15v11,0,18,7,17,19v0,8,-7,16,-17,15xm61,11v2,33,-19,52,-51,47v-18,1,-18,-23,-2,-23v17,1,25,-4,25,-23r0,-186v-1,-7,7,-14,14,-14v7,0,15,7,14,14r0,185","w":94},"k":{"d":"45,2v-7,1,-15,-7,-14,-14r0,-239v0,-19,28,-17,28,0r0,171r100,-103v8,-10,24,-4,24,8v-16,29,-45,47,-66,71v23,32,51,57,70,93v0,14,-17,16,-25,6r-65,-81r-38,38v-1,20,7,50,-14,50","w":204,"k":{"x":6,"J":4,"\/":3,"&":8,":":8,"i":8,"p":3,";":3,"G":6,"d":5,"e":27}},"l":{"d":"48,2v-8,0,-15,-7,-15,-14r0,-239v0,-19,28,-17,28,0r0,239v0,7,-6,14,-13,14","w":94},"m":{"d":"45,2v-7,0,-15,-7,-14,-14r0,-162v-1,-7,7,-15,14,-14v15,0,15,17,14,33v28,-48,98,-47,120,2v33,-62,134,-43,134,38r0,103v0,7,-6,14,-13,14v-8,0,-15,-7,-15,-14v-3,-64,18,-154,-48,-153v-65,1,-50,87,-51,153v1,7,-7,14,-14,14v-7,0,-15,-7,-14,-14v-3,-63,18,-154,-47,-153v-30,0,-52,26,-52,59r0,94v1,7,-7,14,-14,14","w":342,"k":{"v":6,"\\":27,"?":11,"*":5,"s":9,"z":9}},"n":{"d":"45,2v-7,0,-15,-7,-14,-14r0,-162v-1,-7,7,-15,14,-14v15,-1,15,17,14,34v32,-62,135,-40,135,38r0,104v1,7,-7,14,-14,14v-7,0,-15,-7,-14,-14v-2,-65,17,-153,-52,-153v-32,0,-55,26,-55,58r0,95v1,7,-7,14,-14,14","w":221,"k":{"x":4,"C":9,"c":7,"d":29,"h":18}},"o":{"d":"213,-94v0,54,-43,98,-97,98v-55,0,-97,-44,-97,-97v0,-53,45,-97,98,-97v54,0,96,43,96,96xm48,-94v0,40,31,73,69,73v40,0,68,-32,68,-72v0,-39,-31,-73,-69,-73v-39,0,-68,33,-68,72","w":232,"k":{"X":5,"*":7,"\\":7,"f":7,"i":7,"a":-7,"c":11,"S":4,"l":4,"r":8,"h":-7}},"p":{"d":"45,59v-7,0,-15,-7,-14,-14r0,-219v-1,-7,7,-15,14,-14v17,-1,14,21,14,39v45,-79,160,-34,160,56v0,89,-115,134,-160,57r0,81v1,7,-7,14,-14,14xm58,-94v0,40,29,73,67,73v40,0,65,-30,65,-72v0,-40,-28,-72,-65,-72v-37,0,-67,33,-67,71","k":{"}":5,"x":9,"v":8,"]":7,"\\":25,"?":13,".":4,",":4,"*":5,")":11,"Q":5,"t":11,"u":11,"S":11,"r":11,"U":11,"h":11}},"q":{"d":"194,-188v7,-1,15,7,14,14r0,219v1,7,-7,14,-14,14v-7,0,-15,-7,-14,-14r0,-82v-46,79,-160,33,-160,-56v0,-89,115,-134,160,-57v0,-17,-3,-39,14,-38xm181,-93v0,-39,-30,-72,-67,-72v-40,0,-65,30,-65,72v0,40,28,72,65,72v37,0,67,-33,67,-72","k":{"\\":18}},"r":{"d":"45,2v-7,0,-15,-7,-14,-14r0,-162v-1,-7,7,-15,14,-14v20,0,13,29,14,49v11,-25,35,-48,64,-50v7,-1,14,6,13,14v-1,7,-4,14,-12,14v-62,0,-70,74,-65,149v1,7,-7,14,-14,14","w":145,"k":{"*":32,"\\":32,"f":27,")":8,".":8,"\/":8,"&":8,":":8,"a":27,"u":4,"S":4,"r":13,"U":4}},"s":{"d":"159,-53v0,67,-94,69,-138,33v-8,-7,-4,-23,7,-22v22,9,43,24,66,22v30,4,53,-31,27,-49v-30,-20,-96,-16,-97,-67v-1,-33,29,-55,64,-53v22,1,59,4,66,27v-10,28,-47,-12,-67,-4v-19,0,-36,10,-36,28v17,47,108,23,108,85","w":179,"k":{"v":8,"V":5,"\\":7,":":4,"w":5,"Z":14,"t":4,"u":4,"l":5,"U":-4}},"t":{"d":"129,-13v-1,14,-22,15,-36,16v-75,4,-47,-98,-52,-165v-26,8,-39,-21,-15,-24r15,0v2,-22,-8,-58,13,-58v22,0,12,36,14,58v22,3,61,-9,61,12v0,21,-40,9,-61,12r0,109v-2,28,23,35,49,29v6,0,12,5,12,11","w":145,"k":{",":5,")":5,".":5,"\/":5,"O":18}},"u":{"d":"177,-188v7,0,13,7,13,14r0,162v0,7,-6,14,-13,14v-15,1,-15,-17,-14,-34v-33,62,-135,40,-135,-39r0,-103v-1,-7,7,-14,14,-14v7,0,15,7,14,14v3,65,-18,153,51,153v32,0,56,-26,56,-59r0,-94v-1,-7,7,-15,14,-14","w":221,"k":{"W":9,"Y":5,"G":18,"O":4,"Z":4,"s":7,"z":7,"t":4,"u":6,"S":4}},"v":{"d":"166,-178v4,-16,28,-11,27,4v-20,59,-49,109,-72,165v-6,16,-26,16,-32,0r-72,-165v-1,-16,22,-19,28,-3r60,145","w":210,"k":{"}":4,"x":4,"v":5,"q":8,"]":7,"\\":18,"?":4,"\/":25,".":31,"-":5,",":31,"y":4,"c":5,"d":11,"e":9,"g":11,"o":9,"s":11,"z":6}},"w":{"d":"264,-177v2,-16,27,-13,27,2r-59,165v-5,17,-25,17,-31,0r-47,-135r-46,135v-5,17,-27,17,-32,0r-58,-165v0,-15,22,-18,28,-1r47,139r47,-140v3,-15,25,-14,30,0r46,140","w":308,"k":{"v":7,"Q":25,"X":25,"*":22,"f":4,"q":4,"?":4,"J":6,"}":8,"]":6,",":8,")":8,".":4,"\/":2,"T":11,"W":5,"C":18,"G":5,"O":5,"o":11,"s":11,"z":5,"t":8,"u":4,"h":4}},"x":{"d":"46,-5v-8,12,-24,7,-24,-6v15,-34,44,-55,64,-84v-20,-27,-45,-50,-62,-80v0,-14,19,-17,26,-6r53,68r54,-68v7,-12,23,-7,24,6v-16,31,-42,53,-61,80v21,29,47,51,64,84v0,14,-17,16,-25,6r-57,-71","w":205,"k":{"}":4,"v":4,"q":9,"]":4,"\\":18,"?":5,"-":11,"V":-1}},"y":{"d":"167,-177v5,-16,27,-13,27,3v-21,64,-50,119,-74,180v-13,32,-25,53,-62,53v-13,0,-41,-2,-39,-18v3,-25,45,6,60,-15v6,-5,13,-15,17,-28r-79,-172v0,-16,21,-19,28,-3r65,146","w":211,"k":{"v":31,"Q":31,"V":31,"X":25,"-":4,"q":4,"x":8,"J":9,"}":8,"]":9,",":8,")":6,".":2,";":5,"A":16,"g":5,"o":5,"z":5}},"z":{"d":"171,-23v18,0,13,22,0,23r-138,0v-14,0,-17,-16,-7,-24r118,-139r-109,0v-7,0,-12,-4,-12,-11v0,-6,5,-12,12,-12r133,0v14,0,17,16,7,24r-117,139r113,0","w":200,"k":{"x":5,"J":5,"}":5,"]":5,",":5}},"{":{"d":"61,-103v51,2,26,80,46,114v5,9,20,14,42,20v8,2,9,12,3,17v-60,-2,-80,-31,-80,-97v0,-29,-11,-44,-41,-44v-8,0,-13,-3,-13,-10v0,-7,5,-11,13,-11v65,7,24,-88,56,-117v10,-9,39,-28,65,-23v6,4,4,14,-3,16v-48,10,-53,29,-51,84v0,30,-14,43,-37,51","w":173,"k":{"x":4,"v":4,"q":4,"j":-13,"Q":7,"J":4,"V":4,"X":4,"f":7,"-":4}},"|":{"d":"55,48v-6,0,-12,-5,-12,-12r0,-313v0,-7,5,-13,12,-12v6,0,11,6,11,12r0,313v0,6,-5,12,-11,12","w":109},"}":{"d":"113,-103v-33,-8,-37,-35,-37,-78v0,-42,-13,-45,-51,-57v-7,-2,-9,-12,-3,-16v58,-2,80,30,80,97v0,30,11,42,41,43v8,0,12,4,12,11v0,7,-4,10,-12,10v-65,-8,-24,88,-56,117v-11,10,-37,25,-65,24v-6,-5,-5,-15,3,-17v49,-9,53,-29,51,-84v0,-30,13,-43,37,-50","w":173},"~":{"d":"109,-113v12,2,25,-34,34,-11v-7,51,-52,31,-81,21v-11,-3,-14,17,-25,18v-4,1,-10,-3,-9,-8v5,-20,12,-33,32,-35v10,-1,41,15,49,15","w":170},"\u00a0":{"w":108}}});
}finally{};

try{Cufon.registerFont({"w":200,"face":{"font-family":"Helvetica","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":"5","bbox":"-10 -291 338 77","underline-thickness":"18","underline-position":"-36","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":100},"!":{"d":"40,-72v-7,-59,-15,-117,-12,-185r45,0v2,68,-5,126,-12,185r-21,0xm26,0r0,-45r48,0r0,45r-48,0","w":100},"\"":{"d":"30,-156r0,-101r37,0r0,101r-37,0xm93,-156r0,-101r37,0r0,101r-37,0","w":159},"#":{"d":"178,-103r0,27r-34,0r-11,76r-29,0r11,-76r-40,0r-11,76r-28,0r10,-76r-34,0r0,-27r38,0r7,-46r-34,0r0,-27r37,0r11,-76r29,0r-11,76r40,0r10,-76r29,0r-10,76r31,0r0,27r-35,0r-6,46r30,0xm125,-149r-40,0r-6,46r40,0"},"$":{"d":"109,-110r0,84v42,2,57,-47,32,-70v-7,-7,-18,-10,-32,-14xm194,-75v1,51,-36,79,-85,81r0,28r-16,0r0,-28v-52,0,-87,-33,-87,-84r41,0v0,34,15,51,46,52r0,-87v-41,-13,-80,-27,-81,-80v-2,-44,38,-71,81,-70r0,-28r16,0r0,28v45,0,79,25,79,70r-41,0v-1,-25,-14,-38,-38,-38r0,76v44,12,83,26,85,80xm93,-159r0,-72v-38,-5,-52,40,-29,59v7,5,17,10,29,13"},"%":{"d":"94,9r140,-270r27,0r-139,270r-28,0xm330,-67v1,42,-18,73,-60,72v-42,0,-60,-31,-60,-72v0,-41,20,-71,60,-71v40,0,60,30,60,71xm270,-18v22,-1,28,-25,28,-49v0,-32,-9,-48,-28,-48v-18,0,-27,16,-27,48v0,32,9,49,27,49xm150,-185v0,41,-19,71,-60,71v-42,0,-61,-29,-60,-71v0,-41,19,-72,60,-72v41,0,60,31,60,72xm89,-137v22,0,29,-23,28,-48v0,-32,-9,-49,-28,-49v-18,0,-27,17,-27,49v0,32,9,48,27,48","w":360},"&":{"d":"105,-161v29,-8,46,-69,4,-72v-34,-2,-33,47,-12,62v4,5,7,8,8,10xm83,-113v-47,12,-34,98,20,85v19,-5,31,-15,40,-28r-51,-63v-1,1,-4,3,-9,6xm108,-263v36,-1,64,25,64,61v0,27,-16,49,-47,66r40,48v4,-11,7,-23,8,-35r36,0v-3,25,-9,46,-20,63r49,60r-50,0r-23,-29v-40,58,-153,40,-153,-42v0,-30,20,-55,59,-75v-14,-16,-25,-30,-26,-56v-2,-36,28,-61,63,-61","w":233},"'":{"d":"32,-156r0,-101r36,0r0,101r-36,0","w":100},"(":{"d":"69,69v-62,-89,-72,-233,0,-332r34,0v-59,102,-59,233,0,332r-34,0","w":100},")":{"d":"31,-263v62,89,72,234,0,332r-34,0v59,-101,59,-233,0,-332r34,0","w":100},"*":{"d":"47,-192r-40,-14r8,-23r39,15r0,-43r25,0r0,43r39,-15r9,23r-41,14r25,34r-19,14r-26,-36r-24,36r-20,-14","w":133},"+":{"d":"90,-109r0,-73r36,0r0,73r73,0r0,36r-73,0r0,73r-36,0r0,-73r-73,0r0,-36r73,0","w":216},",":{"d":"25,0r0,-49r50,0v4,53,-3,98,-49,106r0,-22v15,-3,24,-18,24,-35r-25,0","w":100},"-":{"d":"18,-78r0,-39r104,0r0,39r-104,0","w":140},".":{"d":"25,0r0,-49r50,0r0,49r-50,0","w":100},"\/":{"d":"-8,6r103,-269r40,0r-104,269r-39,0","w":126},"0":{"d":"100,-29v31,0,46,-32,46,-97v0,-65,-15,-97,-46,-97v-31,0,-46,32,-46,97v0,65,15,97,46,97xm13,-126v0,-69,18,-131,87,-131v69,0,87,61,87,131v0,70,-18,131,-87,131v-69,0,-87,-62,-87,-131"},"1":{"d":"19,-210v36,1,69,-13,74,-42r33,0r0,252r-45,0r0,-178r-62,0r0,-32"},"2":{"d":"105,-257v70,0,101,72,67,124v-25,37,-88,55,-109,96r123,0r0,37r-172,0v-6,-79,92,-104,127,-157v11,-31,-1,-66,-38,-66v-28,0,-42,21,-43,63r-41,0v0,-55,31,-97,86,-97"},"3":{"d":"148,-74v0,-36,-28,-45,-66,-43r0,-31v30,2,57,-9,56,-39v0,-21,-16,-36,-39,-36v-27,0,-43,24,-42,52r-41,0v1,-48,33,-87,83,-86v40,0,80,25,80,67v0,29,-14,45,-36,55v28,5,46,30,46,63v0,73,-109,101,-154,53v-15,-16,-24,-37,-24,-64r41,0v0,31,16,55,48,54v27,0,48,-18,48,-45"},"4":{"d":"188,-92r0,32r-32,0r0,60r-39,0r0,-60r-108,0r0,-40r108,-152r39,0r0,160r32,0xm117,-203v-28,35,-51,75,-77,111r77,0r0,-111"},"5":{"d":"147,-85v5,-52,-71,-70,-89,-29r-41,0r27,-138r131,0r0,37r-100,0v-3,21,-12,45,-12,65v46,-48,125,-4,125,65v0,80,-91,115,-149,70v-16,-13,-25,-33,-26,-57r41,0v2,26,19,43,46,43v34,0,44,-23,47,-56"},"6":{"d":"57,-82v-1,29,17,54,46,53v27,0,44,-26,44,-53v0,-27,-17,-51,-44,-51v-28,0,-46,22,-46,51xm12,-127v0,-70,25,-127,95,-130v40,-1,76,30,76,69r-41,0v1,-35,-51,-47,-69,-20v-13,17,-20,46,-19,72v10,-18,29,-29,54,-30v48,-1,80,37,80,85v1,49,-34,87,-84,86v-74,-1,-92,-58,-92,-132"},"7":{"d":"46,0v6,-87,50,-161,97,-215r-130,0r0,-37r172,0r0,34v-51,59,-86,122,-94,218r-45,0"},"8":{"d":"52,-74v0,28,21,47,48,47v27,0,48,-19,48,-47v0,-27,-20,-44,-48,-44v-28,0,-48,17,-48,44xm143,-136v86,30,41,141,-43,141v-50,0,-90,-30,-89,-79v1,-32,19,-55,46,-62v-65,-26,-32,-134,43,-121v76,-11,110,95,43,121xm140,-186v0,-24,-16,-39,-40,-39v-23,0,-40,16,-40,39v0,23,16,37,40,37v24,0,40,-14,40,-37"},"9":{"d":"143,-171v0,-28,-17,-52,-46,-52v-28,0,-44,24,-44,52v0,28,17,53,44,53v29,0,46,-24,46,-53xm188,-125v-1,70,-25,127,-95,130v-40,1,-76,-30,-76,-69r41,0v-1,35,51,47,69,20v13,-17,20,-46,19,-72v-34,59,-134,23,-134,-55v0,-51,34,-87,87,-86v72,2,90,58,89,132"},":":{"d":"25,-134r0,-48r50,0r0,48r-50,0xm25,0r0,-49r50,0r0,49r-50,0","w":100},";":{"d":"25,0r0,-49r50,0v4,53,-3,98,-49,106r0,-22v15,-3,24,-18,24,-35r-25,0xm25,-134r0,-48r50,0r0,48r-50,0","w":100},"<":{"d":"199,-34r0,37r-182,-81r0,-26r182,-81r0,37r-134,57","w":216},"=":{"d":"199,-146r0,37r-182,0r0,-37r182,0xm199,-73r0,37r-182,0r0,-37r182,0","w":216},">":{"d":"17,-34r134,-57r-134,-57r0,-37r182,81r0,26r-182,81r0,-37","w":216},"?":{"d":"102,-229v-30,0,-43,22,-43,54r-41,0v-2,-53,35,-88,86,-88v45,0,79,28,79,73v1,62,-66,57,-64,120r-39,0v-7,-69,50,-65,58,-119v3,-22,-17,-40,-36,-40xm75,0r0,-45r48,0r0,45r-48,0"},"@":{"d":"101,-111v0,19,10,33,29,33v41,0,75,-90,21,-96v-27,-3,-51,36,-50,63xm71,-107v0,-64,80,-133,119,-68r6,-20r25,0r-26,95v-5,17,-4,24,4,24v27,-2,47,-43,47,-77v0,-52,-44,-87,-96,-87v-60,0,-104,49,-104,108v0,66,44,115,107,115v35,-1,63,-16,81,-36r25,0v-21,33,-58,58,-107,59v-76,1,-134,-60,-134,-139v0,-70,62,-130,132,-130v62,0,122,44,120,105v-2,59,-33,101,-85,108v-13,2,-20,-11,-22,-21v-31,41,-92,13,-92,-36","w":288},"A":{"d":"120,-213v-16,35,-26,75,-40,111r79,0xm-3,0r99,-257r48,0r99,257r-48,0r-24,-68r-103,0r-24,68r-47,0","w":240},"B":{"d":"195,-77v0,-55,-71,-37,-123,-40r0,80v51,-3,123,16,123,-40xm240,-72v1,90,-122,71,-213,72r0,-257v84,4,202,-24,202,64v0,27,-15,42,-37,55v31,6,48,30,48,66xm184,-185v1,-51,-66,-31,-112,-35r0,71v47,-2,111,13,112,-36","w":253},"C":{"d":"14,-129v0,-74,49,-134,123,-134v59,0,104,35,109,88r-45,0v-9,-34,-30,-51,-64,-51v-53,0,-78,45,-78,97v0,52,25,98,78,98v40,0,62,-30,65,-67r44,0v-3,60,-47,104,-109,104v-74,0,-123,-61,-123,-135","w":259},"D":{"d":"202,-129v0,-79,-48,-98,-130,-91r0,183v82,6,130,-12,130,-92xm247,-129v0,75,-37,129,-113,129r-107,0r0,-257r107,0v75,-1,113,54,113,128","w":259},"E":{"d":"27,0r0,-257r185,0r0,39r-140,0r0,67r130,0r0,37r-130,0r0,75r143,0r0,39r-188,0","w":226},"F":{"d":"27,0r0,-257r178,0r0,39r-133,0r0,67r117,0r0,37r-117,0r0,114r-45,0","w":213},"G":{"d":"60,-129v0,52,25,98,79,98v46,0,71,-27,72,-70r-69,0r0,-34r110,0r0,135r-29,0r-7,-30v-21,23,-38,35,-77,36v-74,2,-124,-61,-124,-135v0,-104,113,-173,198,-111v20,15,33,37,36,65r-44,0v-4,-31,-31,-51,-66,-51v-53,0,-79,45,-79,97","w":273},"H":{"d":"26,0r0,-257r45,0r0,102r117,0r0,-102r45,0r0,257r-45,0r0,-116r-117,0r0,116r-45,0","w":259},"I":{"d":"27,0r0,-257r45,0r0,257r-45,0","w":100},"J":{"d":"85,-31v31,0,36,-18,36,-49r0,-177r45,0v-9,109,39,263,-85,263v-56,0,-79,-38,-76,-96r45,0v0,33,2,59,35,59","w":193},"K":{"d":"27,0r0,-257r45,0r0,117r115,-117r55,0r-102,103r109,154r-56,0r-84,-123r-37,37r0,86r-45,0","w":246},"L":{"d":"27,0r0,-257r45,0r0,218r131,0r0,39r-176,0","w":206},"M":{"d":"27,0r0,-257r63,0r72,201r69,-201r62,0r0,257r-42,0r-1,-198r-71,198r-38,0r-72,-198r0,198r-42,0","w":320},"N":{"d":"26,0r0,-257r47,0r118,189r0,-189r43,0r0,257r-48,0r-118,-189r0,189r-42,0","w":259},"O":{"d":"14,-129v0,-74,49,-134,123,-134v74,0,123,61,123,134v0,73,-49,135,-123,135v-74,0,-123,-61,-123,-135xm215,-129v0,-51,-25,-97,-78,-97v-53,0,-78,45,-78,97v0,52,25,98,78,98v53,0,78,-47,78,-98","w":273},"P":{"d":"72,-135v51,-1,111,11,111,-43v0,-54,-62,-41,-111,-42r0,85xm228,-177v0,79,-75,82,-156,78r0,99r-45,0r0,-257v92,1,201,-17,201,80","w":240},"Q":{"d":"59,-129v0,63,43,117,107,92r-26,-22r21,-25r32,27v42,-51,24,-169,-56,-169v-53,0,-78,45,-78,97xm137,-263v116,0,159,162,87,233r33,29r-22,24r-38,-32v-90,48,-183,-23,-183,-120v0,-74,49,-134,123,-134","w":273},"R":{"d":"190,-181v0,-56,-69,-35,-118,-39r0,80v50,-2,118,14,118,-41xm190,-38v-1,-47,-8,-68,-51,-68r-67,0r0,106r-45,0r0,-257v88,3,208,-22,208,69v0,34,-16,54,-42,66v22,5,38,23,38,54v0,35,5,58,14,68r-48,0v-5,-7,-7,-20,-7,-38","w":253},"S":{"d":"171,-140v92,38,41,154,-52,146v-60,-5,-108,-30,-107,-92r45,0v-1,38,27,55,65,55v50,0,75,-54,33,-70v-48,-19,-133,-22,-133,-87v0,-77,112,-95,164,-53v19,15,28,34,28,60r-45,0v-2,-30,-20,-45,-55,-45v-24,0,-48,8,-47,33v0,42,72,40,104,53","w":233},"T":{"d":"3,-218r0,-39r208,0r0,39r-82,0r0,218r-45,0r0,-218r-81,0","w":213},"U":{"d":"130,6v-65,0,-106,-35,-106,-99r0,-164r45,0r1,171v3,34,21,53,60,53v46,0,60,-26,60,-74r0,-150r45,0r0,164v1,64,-40,99,-105,99","w":259},"V":{"d":"84,0r-86,-257r47,0r65,203r66,-203r46,0r-88,257r-50,0","w":219},"W":{"d":"70,0r-68,-257r46,0r47,197r52,-197r46,0r51,197r48,-197r46,0r-71,257r-46,0r-52,-197r-53,197r-46,0","w":339},"X":{"d":"90,-133r-85,-124r54,0r58,91r61,-91r50,0r-85,124r91,133r-54,0r-64,-98r-66,98r-51,0","w":233},"Y":{"d":"94,0r0,-101r-96,-156r52,0r68,115r67,-115r50,0r-96,156r0,101r-45,0","w":233},"Z":{"d":"20,-218r0,-39r195,0r0,34r-149,184r153,0r0,39r-211,0r0,-37r150,-181r-138,0","w":226},"[":{"d":"26,69r0,-332r80,0r0,32r-41,0r0,267r41,0r0,33r-80,0","w":106},"\\":{"d":"31,-263r104,269r-40,0r-103,-269r39,0","w":126},"]":{"d":"81,-263r0,332r-81,0r0,-33r42,0r0,-267r-42,0r0,-32r81,0","w":106},"^":{"d":"67,-121r-37,0r65,-131r26,0r65,131r-37,0r-41,-89","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18","w":180},"`":{"d":"-10,-263r48,0r33,51r-30,0","w":86},"a":{"d":"136,-93v-25,16,-87,1,-83,42v3,39,87,29,83,-12r0,-30xm103,-191v37,-1,74,16,74,54r0,96v0,13,8,15,20,13r0,28v-23,9,-54,7,-57,-18v-32,34,-128,33,-128,-31v0,-62,66,-53,115,-66v24,-16,11,-46,-27,-44v-23,1,-38,10,-41,30r-41,0v2,-44,38,-63,85,-62"},"b":{"d":"114,-27v35,1,53,-32,52,-66v0,-34,-19,-66,-52,-66v-35,0,-52,29,-52,66v0,36,18,66,52,66xm207,-92v0,51,-28,99,-80,97v-33,0,-55,-11,-65,-31r0,26r-39,0r0,-257r41,0r0,95v10,-16,32,-28,56,-29v56,-1,87,44,87,99","w":219},"c":{"d":"13,-91v0,-84,85,-127,149,-83v16,12,24,28,26,50r-41,0v-3,-21,-18,-36,-42,-35v-37,1,-52,27,-51,68v0,35,15,64,49,64v25,0,41,-19,44,-43r41,0v-6,46,-35,75,-85,75v-55,0,-90,-41,-90,-96"},"d":{"d":"106,-159v-36,-1,-52,31,-52,68v0,35,17,64,51,64v34,1,53,-32,52,-66v0,-36,-17,-66,-51,-66xm13,-94v0,-90,97,-126,143,-68r0,-95r41,0r0,257r-39,0v-1,-8,2,-19,-1,-25v-9,19,-31,29,-57,30v-56,0,-87,-42,-87,-99","w":219},"e":{"d":"13,-93v0,-53,36,-98,90,-98v55,0,96,52,87,109r-136,0v-9,57,80,77,95,24r39,0v-8,37,-41,62,-84,63v-58,1,-91,-41,-91,-98xm149,-109v3,-43,-53,-67,-81,-36v-9,9,-14,22,-14,36r95,0"},"f":{"d":"34,-186v-8,-59,27,-80,80,-69r0,33v-17,-5,-41,-5,-39,17r0,19r35,0r0,30r-35,0r0,156r-41,0r0,-156r-31,0r0,-30r31,0","w":113},"g":{"d":"54,-94v0,33,17,62,49,62v35,0,50,-32,50,-65v0,-34,-16,-62,-50,-62v-35,0,-49,31,-49,65xm97,-191v26,0,45,13,56,30r0,-25r41,0r0,176v10,84,-108,108,-160,60v-9,-9,-14,-20,-15,-34r41,0v3,22,20,27,45,27v43,0,53,-34,47,-76v-11,18,-30,33,-56,33v-56,-1,-83,-40,-83,-98v0,-51,32,-94,84,-93","w":213},"h":{"d":"108,-159v-65,1,-41,96,-45,159r-41,0r0,-257r41,0r0,95v25,-46,122,-37,122,34r0,128r-41,0r0,-117v0,-27,-10,-42,-36,-42","w":206},"i":{"d":"23,0r0,-186r41,0r0,186r-41,0xm23,-218r0,-39r41,0r0,39r-41,0","w":86},"j":{"d":"-8,40v24,4,31,-1,31,-26r0,-200r41,0r0,202v1,44,-27,65,-72,56r0,-32xm23,-218r0,-39r41,0r0,39r-41,0","w":86},"k":{"d":"23,0r0,-257r41,0r0,146r74,-75r50,0r-71,68r78,118r-50,0r-57,-90r-24,23r0,67r-41,0","w":193},"l":{"d":"23,0r0,-257r41,0r0,257r-41,0","w":86},"m":{"d":"103,-159v-60,0,-35,99,-40,159r-41,0r0,-186r38,0v1,8,-3,22,2,26v21,-41,93,-41,109,0v29,-50,121,-41,121,31r0,129r-41,0r-1,-125v0,-21,-11,-35,-33,-34v-61,-1,-35,101,-40,159r-41,0r0,-120v0,-26,-8,-39,-33,-39","w":313},"n":{"d":"108,-159v-65,1,-41,96,-45,159r-41,0r0,-186r38,0v1,9,-2,21,1,28v24,-50,124,-44,124,30r0,128r-41,0r0,-117v0,-27,-10,-42,-36,-42","w":206},"o":{"d":"54,-93v0,34,19,66,53,66v34,0,53,-32,53,-66v0,-34,-19,-66,-53,-66v-34,0,-53,32,-53,66xm201,-93v0,57,-37,98,-94,98v-57,0,-94,-41,-94,-98v0,-57,37,-98,94,-98v57,0,94,41,94,98","w":213},"p":{"d":"114,-27v35,1,53,-32,52,-66v0,-34,-19,-66,-52,-66v-35,0,-52,29,-52,66v0,36,18,66,52,66xm127,5v-28,0,-52,-11,-63,-29r0,93r-41,0r0,-255r39,0r0,25v11,-20,31,-30,58,-30v56,-1,87,44,87,99v0,51,-28,99,-80,97","w":219},"q":{"d":"105,-159v-33,0,-51,32,-51,66v0,35,16,66,51,66v36,0,52,-29,52,-66v0,-38,-16,-66,-52,-66xm13,-92v0,-56,31,-99,87,-99v28,0,45,12,58,30r0,-25r39,0r0,255r-41,0r-1,-93v-11,18,-34,29,-62,29v-52,2,-80,-45,-80,-97","w":219},"r":{"d":"131,-150v-80,-18,-68,75,-68,150r-41,0r0,-186r38,0v1,11,-2,27,1,36v6,-23,36,-48,70,-40r0,40","w":126},"s":{"d":"158,-94v46,42,-3,105,-64,99v-45,-4,-82,-21,-82,-65r41,0v-4,40,79,46,83,8v-16,-50,-121,-8,-121,-86v0,-57,90,-64,131,-39v14,9,23,24,25,43r-43,0v0,-30,-66,-36,-71,-6v9,38,74,21,101,46","w":186},"t":{"d":"112,0v-44,5,-78,2,-78,-46r0,-110r-31,0r0,-30r31,0r0,-56r41,0r0,56r37,0r0,30r-37,0r0,100v-5,27,17,27,37,24r0,32","w":119},"u":{"d":"91,5v-94,6,-65,-108,-69,-191r41,0r0,114v0,30,11,45,35,45v68,0,41,-98,46,-159r41,0r0,186r-40,0v-1,-8,2,-20,-1,-26v-8,16,-31,30,-53,31","w":206},"v":{"d":"71,0r-68,-186r45,0r48,143r45,-143r43,0r-67,186r-46,0","w":186},"w":{"d":"62,0r-57,-186r43,0r37,139r35,-139r42,0r34,139r38,-139r41,0r-58,186r-42,0r-35,-138r-35,138r-43,0","w":280},"x":{"d":"1,0r71,-98r-65,-88r50,0r39,57r40,-57r48,0r-63,86r71,100r-49,0r-48,-69r-45,69r-49,0","w":193},"y":{"d":"72,-1r-71,-185r45,0r49,139r48,-139r42,0r-72,196v-16,51,-36,69,-94,62r0,-35v37,12,45,-11,53,-38","w":186},"z":{"d":"15,-154r0,-32r151,0r0,29r-106,125r112,0r0,32r-164,0r0,-29r103,-125r-96,0","w":180},"{":{"d":"32,-52v2,-18,-18,-29,-33,-29r0,-32v14,-1,33,-9,33,-27r0,-74v1,-38,34,-55,79,-49r0,32v-23,-1,-40,-1,-40,25v0,48,9,107,-37,109v50,1,37,61,37,108v0,26,16,26,40,25r0,33v-45,6,-79,-11,-79,-50r0,-71","w":106},"|":{"d":"22,77r0,-360r36,0r0,360r-36,0","w":79},"}":{"d":"74,-143v-2,18,19,30,34,30r0,32v-14,0,-34,9,-34,26r0,74v-2,38,-34,56,-79,50r0,-33v23,1,41,1,40,-25v-1,-49,-7,-106,38,-109v-51,-1,-38,-60,-38,-108v0,-26,-16,-26,-40,-25r0,-32v45,-5,79,10,79,49r0,71","w":106},"~":{"d":"140,-98v21,2,27,-9,38,-24r13,31v-12,16,-21,31,-45,31v-35,0,-87,-55,-108,0r-13,-31v24,-52,74,-24,115,-7","w":216},"\u00a0":{"w":100}}});Cufon.registerFont({"w":200,"face":{"font-family":"Helvetica","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-17 -291 339 77","underline-thickness":"18","underline-position":"-36","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":100},"!":{"d":"77,-257v3,67,-7,123,-14,180r-26,0v-7,-58,-17,-112,-14,-180r54,0xm22,0r0,-55r56,0r0,55r-56,0","w":100},"\"":{"d":"98,-141r0,-116r38,0r0,116r-38,0xm31,-141r0,-116r38,0r0,116r-38,0","w":166},"#":{"d":"32,0r10,-71r-30,0r0,-33r34,0r7,-44r-30,0r0,-33r34,0r10,-71r35,0r-10,71r35,0r9,-71r35,0r-9,71r26,0r0,33r-31,0r-6,44r26,0r0,33r-31,0r-10,71r-34,0r9,-71r-34,0r-10,71r-35,0xm122,-148r-35,0r-6,44r35,0"},"$":{"d":"89,-221v-25,-2,-42,31,-25,48v5,4,13,8,25,11r0,-59xm111,-36v28,2,51,-33,30,-56v-6,-5,-15,-9,-30,-13r0,69xm200,-86v8,58,-35,87,-89,92r0,31r-22,0r0,-31v-54,-4,-84,-34,-89,-90r51,0v0,27,15,44,38,48r0,-75v-41,-12,-83,-22,-83,-75v-1,-47,39,-75,83,-77r0,-28r22,0r0,28v44,7,79,29,81,77r-52,0v1,-17,-13,-35,-29,-35r0,64v48,9,83,27,89,71"},"%":{"d":"147,-184v0,41,-20,67,-61,67v-40,0,-59,-23,-59,-69v0,-41,20,-71,61,-71v43,0,58,30,59,73xm64,-185v0,22,3,40,23,41v16,0,24,-14,24,-41v0,-30,-8,-45,-23,-45v-16,0,-24,15,-24,45xm91,8r149,-268r31,0r-148,268r-32,0xm272,5v-43,0,-58,-29,-59,-71v0,-41,20,-70,61,-69v39,0,59,24,59,71v0,41,-20,69,-61,69xm249,-66v0,21,2,44,24,44v16,0,23,-14,23,-43v0,-29,-7,-43,-22,-43v-16,0,-25,13,-25,42","w":360},"&":{"d":"111,-165v28,-6,39,-59,3,-61v-26,-2,-29,38,-11,51v1,1,7,10,8,10xm60,-71v0,40,58,45,80,11r-44,-53v-24,11,-36,24,-36,42xm112,-260v39,0,71,23,70,62v0,27,-16,48,-46,64r34,40v5,-9,7,-18,9,-30r44,0v-3,25,-11,46,-25,63r53,61r-63,0r-21,-26v-47,54,-157,35,-155,-46v1,-39,29,-60,57,-75v-13,-18,-23,-28,-24,-54v-1,-34,32,-59,67,-59","w":246},"'":{"d":"31,-141r0,-116r38,0r0,116r-38,0","w":100},"(":{"d":"66,66v-66,-98,-58,-241,0,-329r43,0v-52,98,-52,231,0,329r-43,0","w":106},")":{"d":"40,-263v67,98,58,240,0,329r-43,0v53,-97,53,-231,1,-329r42,0","w":106},"*":{"d":"87,-257r0,45r42,-16r10,28r-43,14r27,35r-24,18r-27,-37r-25,37r-24,-18r27,-35r-42,-14r10,-28r40,16r0,-45r29,0","w":146},"+":{"d":"127,-182r0,72r72,0r0,38r-72,0r0,72r-38,0r0,-72r-72,0r0,-38r72,0r0,-72r38,0","w":216},",":{"d":"22,0r0,-55r56,0v-1,38,6,75,-16,95v-12,10,-24,18,-40,20r0,-26v14,-1,27,-18,26,-34r-26,0","w":100},"-":{"d":"19,-76r0,-44r108,0r0,44r-108,0","w":146},".":{"d":"22,0r0,-55r56,0r0,55r-56,0","w":100},"\/":{"d":"-4,6r100,-269r42,0r-101,269r-41,0","w":133},"0":{"d":"100,5v-67,0,-92,-52,-92,-132v0,-80,26,-130,92,-130v70,0,92,56,93,130v1,80,-26,132,-93,132xm100,-215v-46,0,-41,60,-41,109v0,32,8,69,41,69v47,0,42,-69,40,-119v-2,-31,-10,-59,-40,-59"},"1":{"d":"27,-202v41,0,68,-15,73,-50r41,0r0,252r-51,0r0,-163r-63,0r0,-39"},"2":{"d":"102,-213v-30,0,-39,30,-40,58r-49,0v-2,-59,33,-103,92,-102v46,0,88,31,86,79v-2,79,-85,84,-118,134r120,0r0,44r-185,0v1,-89,83,-98,124,-148v19,-23,4,-65,-30,-65"},"3":{"d":"140,-77v0,-32,-25,-38,-58,-37r0,-36v28,2,53,-5,54,-31v0,-20,-16,-34,-36,-34v-24,0,-40,19,-39,45r-48,0v1,-50,35,-87,87,-87v42,0,84,29,84,70v0,27,-15,45,-35,52v26,5,44,27,45,57v4,78,-112,108,-163,59v-17,-16,-25,-39,-25,-68r49,0v1,29,15,50,44,50v23,0,41,-16,41,-40"},"4":{"d":"112,0r0,-58r-106,0r0,-47r109,-147r46,0r0,152r33,0r0,42r-33,0r0,58r-49,0xm112,-100r-1,-88r-65,88r66,0"},"5":{"d":"143,-86v3,-46,-63,-63,-83,-27r-46,0r25,-139r141,0r0,42r-104,0v-2,19,-9,41,-9,58v48,-46,127,-3,127,66v0,77,-100,119,-160,70v-18,-14,-28,-34,-28,-59r52,0v1,21,19,37,41,38v26,1,42,-25,44,-49"},"6":{"d":"8,-125v0,-72,28,-132,99,-132v45,0,77,28,81,70r-48,0v-4,-16,-15,-33,-34,-32v-38,2,-45,41,-48,78v39,-57,135,-18,135,54v0,50,-37,93,-89,92v-73,-2,-96,-57,-96,-130xm141,-83v0,-26,-13,-49,-38,-48v-26,0,-41,22,-41,47v0,24,16,47,41,47v23,0,38,-23,38,-46"},"7":{"d":"49,0v6,-83,42,-152,85,-204r-120,0r0,-48r172,0r0,44v-45,37,-81,131,-82,208r-55,0"},"8":{"d":"101,-116v-26,0,-44,15,-45,40v-1,25,21,43,45,43v24,1,43,-19,43,-43v0,-23,-19,-40,-43,-40xm53,-136v-23,-6,-37,-25,-38,-52v-1,-43,42,-69,85,-69v78,0,116,95,48,121v28,6,46,29,47,62v1,50,-46,79,-94,79v-50,0,-98,-26,-96,-79v1,-33,20,-55,48,-62xm100,-219v-21,1,-38,13,-38,35v0,21,17,34,38,34v21,0,38,-13,38,-34v0,-21,-14,-36,-38,-35"},"9":{"d":"193,-127v0,71,-28,132,-99,132v-45,0,-78,-27,-82,-70r48,0v2,26,35,43,57,24v16,-14,27,-43,25,-70v-39,57,-134,19,-134,-54v0,-51,36,-93,88,-92v73,2,97,58,97,130xm59,-169v0,25,14,48,38,48v26,0,41,-22,41,-47v0,-24,-16,-47,-41,-47v-23,0,-38,23,-38,46"},":":{"d":"22,0r0,-55r56,0r0,55r-56,0xm78,-183r0,56r-56,0r0,-56r56,0","w":100},";":{"d":"22,0r0,-55r56,0v-1,38,6,75,-16,95v-12,10,-24,18,-40,20r0,-26v14,-1,27,-18,26,-34r-26,0xm78,-183r0,56r-56,0r0,-56r56,0","w":100},"<":{"d":"199,-185r0,41r-132,53r132,52r0,42r-182,-73r0,-42","w":216},"=":{"d":"199,-149r0,39r-182,0r0,-39r182,0xm199,-72r0,39r-182,0r0,-39r182,0","w":216},">":{"d":"17,3r0,-42r132,-52r-132,-53r0,-41r182,73r0,42","w":216},"?":{"d":"102,-221v-26,-1,-38,21,-38,47r-52,0v-1,-51,36,-90,87,-89v51,0,86,23,90,69v6,67,-67,53,-66,117r-48,0v-10,-65,57,-67,57,-112v0,-22,-10,-32,-30,-32xm69,0r0,-55r57,0r0,55r-57,0"},"@":{"d":"149,-168v-39,-4,-67,81,-16,85v39,4,67,-80,16,-85xm68,-110v-9,-64,83,-128,121,-67r5,-19r30,0r-23,93v-5,16,-4,23,3,23v25,0,43,-36,43,-66v0,-55,-43,-88,-98,-88v-59,0,-101,46,-101,106v0,96,122,138,183,76r30,0v-22,33,-58,57,-109,58v-75,1,-139,-60,-139,-135v0,-74,64,-134,137,-134v64,0,127,46,125,110v-2,58,-34,97,-85,104v-14,2,-24,-10,-27,-20v-27,44,-100,8,-95,-41","w":288},"A":{"d":"-3,0r98,-257r58,0r96,257r-59,0r-19,-57r-96,0r-20,57r-58,0xm124,-194v-14,29,-22,64,-34,95r66,0","w":246},"B":{"d":"81,-114r0,70v43,-1,103,11,103,-34v0,-47,-59,-35,-103,-36xm240,-75v1,93,-121,74,-215,75r0,-257v82,3,203,-20,203,64v0,24,-12,42,-35,53v28,8,47,31,47,65xm81,-153v39,-2,92,11,92,-31v0,-38,-55,-28,-92,-29r0,60","w":253},"C":{"d":"14,-127v0,-76,49,-138,126,-136v58,1,107,36,111,92r-55,0v-3,-24,-29,-46,-56,-45v-49,1,-69,40,-70,89v-1,46,23,88,70,86v35,-1,54,-24,58,-58r55,0v-4,61,-49,105,-113,105v-76,0,-126,-58,-126,-133","w":266},"D":{"d":"252,-130v0,76,-40,131,-116,130r-111,0r0,-257r111,0v73,0,116,50,116,127xm196,-125v0,-71,-40,-92,-115,-85r0,162v70,6,115,-8,115,-77","w":266},"E":{"d":"25,0r0,-257r192,0r0,47r-136,0r0,56r125,0r0,43r-125,0r0,63r139,0r0,48r-195,0","w":233},"F":{"d":"25,0r0,-257r181,0r0,47r-125,0r0,60r108,0r0,44r-108,0r0,106r-56,0","w":213},"G":{"d":"70,-127v-1,46,23,88,70,86v37,-1,57,-20,61,-56r-57,0r0,-42r108,0r0,139r-36,0r-5,-29v-18,24,-42,35,-71,35v-76,1,-126,-58,-126,-133v0,-107,113,-176,199,-112v21,16,32,39,35,67r-54,0v-5,-27,-25,-44,-54,-44v-49,0,-69,40,-70,89","w":273},"H":{"d":"25,0r0,-257r56,0r0,99r104,0r0,-99r57,0r0,257r-57,0r0,-111r-104,0r0,111r-56,0","w":266},"I":{"d":"25,0r0,-257r56,0r0,257r-56,0","w":106},"J":{"d":"89,-41v24,0,30,-18,30,-43r0,-173r56,0r0,176v0,58,-28,87,-85,87v-57,-1,-93,-36,-85,-102r51,0v-1,32,3,56,33,55"},"K":{"d":"25,0r0,-257r56,0r0,107r101,-107r70,0r-100,101r110,156r-71,0r-77,-116r-33,33r0,83r-56,0","w":259},"L":{"d":"25,0r0,-257r56,0r0,209r126,0r0,48r-182,0","w":213},"M":{"d":"25,0r0,-257r79,0r61,177r57,-177r80,0r0,257r-53,0r-1,-182r-63,182r-44,0r-63,-180r0,180r-53,0","w":326},"N":{"d":"25,0r0,-257r56,0r108,172r0,-172r53,0r0,257r-57,0r-107,-172r0,172r-53,0","w":266},"O":{"d":"140,6v-76,0,-126,-58,-126,-133v0,-76,49,-136,126,-136v77,0,126,60,126,136v0,75,-50,133,-126,133xm140,-216v-49,0,-69,40,-70,89v-1,46,23,86,70,86v48,0,71,-40,70,-86v-1,-49,-21,-89,-70,-89","w":280},"P":{"d":"230,-175v1,76,-67,89,-149,83r0,92r-56,0r0,-257r116,0v54,1,88,29,89,82xm175,-175v0,-47,-50,-37,-94,-38r0,77v44,-1,94,9,94,-39","w":240},"Q":{"d":"140,-263v116,0,163,151,93,230r32,29r-26,28r-37,-33v-89,46,-188,-19,-188,-118v0,-76,49,-136,126,-136xm70,-127v-2,55,37,101,93,82r-24,-22r26,-28r29,27v32,-49,16,-151,-54,-148v-49,2,-68,40,-70,89","w":280},"R":{"d":"190,0v-14,-37,4,-100,-52,-100r-57,0r0,100r-56,0r0,-257r138,0v78,-9,105,111,35,135v44,7,32,83,48,122r-56,0xm81,-213r0,72v43,-2,101,12,101,-36v0,-47,-58,-34,-101,-36","w":259},"S":{"d":"199,-130v59,53,6,136,-81,136v-60,0,-111,-31,-109,-91r54,0v-7,55,101,66,107,15v-20,-66,-150,-15,-153,-115v-3,-88,141,-101,184,-43v10,13,15,29,15,48r-54,0v-1,-26,-19,-39,-51,-39v-30,0,-55,32,-27,49v11,7,99,25,115,40","w":233},"T":{"d":"82,0r0,-210r-77,0r0,-47r210,0r0,47r-77,0r0,210r-56,0","w":219},"U":{"d":"133,-41v39,0,53,-16,53,-56r0,-160r57,0r0,160v0,69,-41,103,-110,103v-69,0,-110,-34,-109,-103r0,-160r56,0r0,160v1,36,13,56,53,56","w":266},"V":{"d":"230,-257r-86,257r-63,0r-84,-257r58,0r58,181r58,-181r59,0","w":226},"W":{"d":"339,-257r-69,257r-57,0r-44,-175r-43,175r-57,0r-68,-257r57,0r41,175r45,-175r53,0r44,177r42,-177r56,0","w":339},"X":{"d":"-2,0r90,-135r-83,-122r66,0r50,82r52,-82r62,0r-82,123r89,134r-67,0r-56,-89r-57,89r-64,0","w":240},"Y":{"d":"91,0r0,-100r-94,-157r63,0r61,101r59,-101r63,0r-95,158r0,99r-57,0","w":240},"Z":{"d":"8,0r0,-45r138,-165r-127,0r0,-47r202,0r0,45r-137,164r141,0r0,48r-217,0","w":233},"[":{"d":"24,66r0,-329r96,0r0,40r-44,0r0,248r44,0r0,41r-96,0","w":119},"\\":{"d":"37,-263r101,269r-42,0r-100,-269r41,0","w":133},"]":{"d":"95,-263r0,329r-95,0r0,-41r44,0r0,-248r-44,0r0,-40r95,0","w":119},"^":{"d":"22,-113r62,-139r48,0r62,139r-42,0r-44,-99r-44,99r-42,0","w":216},"_":{"d":"0,45r0,-18r180,0r0,18r-180,0","w":180},"`":{"d":"38,-209r-55,-51r56,0r35,51r-36,0","w":93},"a":{"d":"135,-91v-21,15,-71,2,-72,38v0,16,10,24,31,24v35,1,44,-25,41,-62xm135,-132v1,-22,-12,-24,-33,-25v-21,0,-32,9,-34,28r-51,0v2,-44,41,-63,88,-62v54,0,81,18,81,53v0,43,-6,109,7,138r-52,0v-2,-7,-3,-13,-3,-18v-32,36,-126,33,-126,-33v0,-51,45,-54,89,-60v16,-1,34,-3,34,-21","w":206},"b":{"d":"207,-93v0,56,-29,97,-77,98v-31,1,-49,-12,-62,-29r0,24r-49,0r0,-257r52,0r0,94v12,-18,32,-28,59,-28v48,1,77,43,77,98xm112,-33v30,0,44,-28,44,-60v0,-32,-13,-60,-44,-60v-30,0,-43,29,-43,60v0,32,14,60,43,60","w":219},"c":{"d":"14,-90v0,-84,90,-128,155,-83v17,12,26,29,27,52r-50,0v-3,-21,-16,-32,-38,-32v-30,0,-43,30,-43,61v0,30,12,60,42,59v24,-1,37,-16,41,-38r49,0v-5,47,-38,76,-89,76v-55,1,-94,-40,-94,-95","w":206},"d":{"d":"94,-191v26,0,44,13,56,28r0,-94r51,0r0,257r-49,0r0,-24v-11,19,-31,29,-57,29v-54,1,-83,-46,-83,-100v0,-52,31,-96,82,-96xm108,-33v33,0,44,-28,44,-61v0,-32,-13,-59,-44,-59v-33,0,-45,27,-45,60v0,30,15,61,45,60","w":219},"e":{"d":"10,-93v0,-86,115,-133,165,-66v16,22,23,48,21,78r-134,0v-6,55,71,61,86,23r45,0v-14,42,-44,63,-88,63v-58,1,-95,-41,-95,-98xm145,-113v1,-39,-50,-52,-73,-27v-7,8,-10,17,-10,27r83,0","w":206},"f":{"d":"120,-217v-24,-6,-44,0,-38,31r35,0r0,34r-35,0r0,152r-51,0r0,-152r-31,0r0,-34r31,0v-6,-57,30,-77,89,-70r0,39","w":119},"g":{"d":"14,-99v-1,-50,30,-92,80,-92v27,0,43,12,56,30r0,-25r48,0r0,174v8,80,-94,101,-152,67v-16,-10,-25,-24,-26,-44r51,0v13,42,87,29,79,-21v-1,-7,2,-18,-1,-24v-9,17,-31,29,-56,29v-53,1,-79,-42,-79,-94xm65,-100v0,28,12,56,41,56v27,0,44,-24,44,-51v0,-32,-12,-58,-44,-58v-29,0,-41,24,-41,53","w":219},"h":{"d":"110,-151v-62,0,-32,95,-39,151r-52,0r0,-257r52,0r1,97v10,-18,30,-30,54,-31v94,-7,62,109,68,191r-51,0v-7,-54,23,-151,-33,-151","w":213},"i":{"d":"21,0r0,-186r51,0r0,186r-51,0xm72,-257r0,42r-51,0r0,-42r51,0","w":92},"j":{"d":"75,9v2,49,-32,62,-82,55r0,-42v14,3,31,0,31,-15r0,-193r51,0r0,195xm75,-257r0,42r-51,0r0,-42r51,0","w":100},"k":{"d":"24,0r0,-257r51,0r0,138r65,-67r60,0r-70,68r78,118r-62,0r-51,-83r-20,19r0,64r-51,0","w":206},"l":{"d":"21,0r0,-257r51,0r0,257r-51,0","w":92},"m":{"d":"107,-151v-56,4,-29,95,-35,151r-51,0r0,-186r48,0v1,8,-2,19,1,25v22,-39,94,-41,111,1v25,-49,124,-40,124,35r0,125r-51,0r0,-120v-1,-20,-11,-31,-31,-31v-54,0,-28,99,-34,151r-51,0r-1,-120v0,-20,-10,-32,-30,-31","w":326},"n":{"d":"110,-151v-62,0,-32,95,-39,151r-52,0r0,-186r49,0v1,8,-2,20,1,26v11,-18,32,-30,57,-31v94,-7,62,109,68,191r-51,0v-7,-54,23,-151,-33,-151","w":213},"o":{"d":"110,5v-57,0,-96,-40,-96,-98v0,-58,39,-98,96,-98v57,0,96,40,96,98v0,58,-39,98,-96,98xm110,-153v-33,0,-45,27,-45,60v0,33,12,60,45,60v33,0,45,-27,45,-60v0,-33,-12,-60,-45,-60","w":219},"p":{"d":"127,5v-25,0,-46,-12,-56,-28r0,89r-52,0r0,-252r49,0v1,7,-2,18,1,24v12,-19,30,-29,55,-29v57,-1,85,45,85,100v0,51,-30,97,-82,96xm69,-93v0,32,12,60,44,60v33,0,44,-28,45,-60v0,-31,-14,-60,-45,-60v-32,-1,-44,28,-44,60","w":219},"q":{"d":"12,-92v-1,-54,30,-100,83,-99v27,0,46,10,57,29r0,-24r49,0r0,252r-51,0r-1,-89v-10,18,-33,28,-59,28v-52,0,-77,-40,-78,-97xm108,-153v-31,0,-45,29,-45,60v0,33,11,60,44,60v32,0,45,-27,45,-59v0,-31,-13,-61,-44,-61","w":219},"r":{"d":"139,-142v-43,-10,-68,16,-68,58r0,84r-52,0r0,-186r49,0v1,11,-2,25,1,34v9,-23,39,-44,70,-37r0,47","w":140},"s":{"d":"183,-60v4,71,-98,78,-146,49v-17,-10,-26,-26,-27,-49r49,0v1,21,18,29,39,31v27,3,49,-29,18,-41v-37,-14,-99,-10,-101,-61v-4,-66,93,-71,137,-46v15,9,24,24,26,45r-49,0v-1,-17,-13,-25,-35,-25v-39,0,-32,36,-5,37v41,11,92,12,94,60","w":193},"t":{"d":"122,0v-39,5,-89,4,-89,-42r0,-110r-31,0r0,-34r31,0r0,-56r51,0r0,56r38,0r0,34r-38,0r0,92v-3,25,19,24,38,20r0,40","w":126},"u":{"d":"103,-35v63,0,33,-94,40,-151r51,0r0,186r-49,0v-1,-8,2,-20,-1,-26v-10,18,-31,29,-57,31v-94,6,-62,-109,-68,-191r52,0r0,105v0,30,5,45,32,46","w":213},"v":{"d":"185,-186r-63,186r-56,0r-64,-186r53,0r40,127r40,-127r50,0","w":187},"w":{"d":"291,-186r-59,186r-52,0r-34,-125r-32,125r-53,0r-59,-186r54,0r35,126r31,-126r50,0r32,126r34,-126r53,0","w":293},"x":{"d":"0,0r67,-98r-61,-88r58,0r33,48r32,-48r57,0r-61,87r68,99r-58,0r-39,-59r-39,59r-57,0","w":193},"y":{"d":"189,-186r-78,209v-11,39,-45,47,-95,41r0,-42v40,5,51,-1,47,-34r-65,-174r55,0r42,127r41,-127r53,0","w":186},"z":{"d":"8,0r0,-39r97,-109r-90,0r0,-38r157,0r0,38r-97,109r104,0r0,39r-171,0","w":186},"{":{"d":"30,-215v0,-44,41,-53,90,-48r0,40v-24,-1,-40,-2,-39,26v1,46,6,94,-36,99v18,2,36,15,36,39v0,37,-17,97,39,84r0,41v-49,5,-89,-5,-90,-49v-1,-43,11,-102,-33,-100r0,-31v16,-2,33,-13,33,-33r0,-68","w":119},"|":{"d":"21,77r0,-360r38,0r0,360r-38,0","w":80},"}":{"d":"90,17v-1,44,-41,54,-90,49r0,-41v24,1,40,1,39,-26r0,-58v-2,-25,20,-35,36,-40v-44,-2,-36,-53,-36,-98v1,-27,-15,-27,-39,-26r0,-40v49,-4,90,4,90,48r0,68v-1,20,17,31,33,33r0,31v-16,0,-33,12,-33,30r0,70","w":119},"~":{"d":"140,-99v20,6,29,-11,37,-25r15,34v-12,16,-22,31,-45,31v-35,0,-88,-55,-108,1r-15,-33v24,-52,73,-21,116,-8","w":216},"\u00a0":{"w":100}}});
}finally{};


try{Cufon.replace('h1', { fontFamily: 'GothamRounded', hover: true });
Cufon.replace('#sidebar h4', { fontFamily: 'GothamRounded', hover: true });
Cufon.replace('.recent_day, .recent_month, .recent_year, .post_no, .comment_date', { fontFamily: 'Helvetica', hover: true
});
}finally{};
