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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * Formats text for emphasized display in a placeholder inside a sentence.
   *
   * @param str
   *   The text to format (plain-text).
   * @return
   *   The formatted text (html).
   */
  placeholder: function(str) {
    return '<em>' + Drupal.checkPlain(str) + '</em>';
  }
};
;
/*
 * FancyBox - jQuery Plugin
 * Simple and fancy lightbox alternative
 *
 * Examples and documentation at: http://fancybox.net
 * 
 * Copyright (c) 2008 - 2010 Janis Skarnelis
 *
 * Version: 1.3.1 (05/03/2010)
 * Requires: jQuery v1.3+
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 */

(function($) {

	var tmp, loading, overlay, wrap, outer, inner, close, nav_left, nav_right,

		selectedIndex = 0, selectedOpts = {}, selectedArray = [], currentIndex = 0, currentOpts = {}, currentArray = [],

		ajaxLoader = null, imgPreloader = new Image(), imgRegExp = /\.(jpg|gif|png|bmp|jpeg)(.*)?$/i, swfRegExp = /[^\.]\.(swf)\s*$/i,

		loadingTimer, loadingFrame = 1,

		start_pos, final_pos, busy = false, shadow = 20, fx = $.extend($('<div/>')[0], { prop: 0 }), titleh = 0, 

		isIE6 = !$.support.opacity && !window.XMLHttpRequest,

		/*
		 * Private methods 
		 */

		fancybox_abort = function() {
			loading.hide();

			imgPreloader.onerror = imgPreloader.onload = null;

			if (ajaxLoader) {
				ajaxLoader.abort();
			}

			tmp.empty();
		},

		fancybox_error = function() {
			$.fancybox('<p id="fancybox_error">The requested content cannot be loaded.<br />Please try again later.</p>', {
				'scrolling'		: 'no',
				'padding'		: 20,
				'transitionIn'	: 'none',
				'transitionOut'	: 'none'
			});
		},

		fancybox_get_viewport = function() {
			return [ $(window).width(), $(window).height(), $(document).scrollLeft(), $(document).scrollTop() ];
		},

		fancybox_get_zoom_to = function () {
			var view	= fancybox_get_viewport(),
				to		= {},

				margin = currentOpts.margin,
				resize = currentOpts.autoScale,

				horizontal_space	= (shadow + margin) * 2,
				vertical_space		= (shadow + margin) * 2,
				double_padding		= (currentOpts.padding * 2),
				
				ratio;

			if (currentOpts.width.toString().indexOf('%') > -1) {
				to.width = ((view[0] * parseFloat(currentOpts.width)) / 100) - (shadow * 2) ;
				resize = false;

			} else {
				to.width = currentOpts.width + double_padding;
			}

			if (currentOpts.height.toString().indexOf('%') > -1) {
				to.height = ((view[1] * parseFloat(currentOpts.height)) / 100) - (shadow * 2);
				resize = false;

			} else {
				to.height = currentOpts.height + double_padding;
			}

			if (resize && (to.width > (view[0] - horizontal_space) || to.height > (view[1] - vertical_space))) {
				if (selectedOpts.type == 'image' || selectedOpts.type == 'swf') {
					horizontal_space	+= double_padding;
					vertical_space		+= double_padding;

					ratio = Math.min(Math.min( view[0] - horizontal_space, currentOpts.width) / currentOpts.width, Math.min( view[1] - vertical_space, currentOpts.height) / currentOpts.height);

					to.width	= Math.round(ratio * (to.width	- double_padding)) + double_padding;
					to.height	= Math.round(ratio * (to.height	- double_padding)) + double_padding;

				} else {
					to.width	= Math.min(to.width,	(view[0] - horizontal_space));
					to.height	= Math.min(to.height,	(view[1] - vertical_space));
				}
			}

			to.top	= view[3] + ((view[1] - (to.height	+ (shadow * 2 ))) * 0.5);
			to.left	= view[2] + ((view[0] - (to.width	+ (shadow * 2 ))) * 0.5);

			if (currentOpts.autoScale === false) {
				to.top	= Math.max(view[3] + margin, to.top);
				to.left	= Math.max(view[2] + margin, to.left);
			}

			return to;
		},

		fancybox_format_title = function(title) {
			if (title && title.length) {
				switch (currentOpts.titlePosition) {
					case 'inside':
						return title;
					case 'over':
						return '<span id="fancybox-title-over">' + title + '</span>';
					default:
						return '<span id="fancybox-title-wrap"><span id="fancybox-title-left"></span><span id="fancybox-title-main">' + title + '</span><span id="fancybox-title-right"></span></span>';
				}
			}

			return false;
		},

		fancybox_process_title = function() {
			var title	= currentOpts.title,
				width	= final_pos.width - (currentOpts.padding * 2),
				titlec	= 'fancybox-title-' + currentOpts.titlePosition;
				
			$('#fancybox-title').remove();

			titleh = 0;

			if (currentOpts.titleShow === false) {
				return;
			}

			title = $.isFunction(currentOpts.titleFormat) ? currentOpts.titleFormat(title, currentArray, currentIndex, currentOpts) : fancybox_format_title(title);

			if (!title || title === '') {
				return;
			}

			$('<div id="fancybox-title" class="' + titlec + '" />').css({
				'width'			: width,
				'paddingLeft'	: currentOpts.padding,
				'paddingRight'	: currentOpts.padding
			}).html(title).appendTo('body');

			switch (currentOpts.titlePosition) {
				case 'inside':
					titleh = $("#fancybox-title").outerHeight(true) - currentOpts.padding;
					final_pos.height += titleh;
				break;

				case 'over':
					$('#fancybox-title').css('bottom', currentOpts.padding);
				break;

				default:
					$('#fancybox-title').css('bottom', $("#fancybox-title").outerHeight(true) * -1);
				break;
			}

			$('#fancybox-title').appendTo( outer ).hide();
		},

		fancybox_set_navigation = function() {
			$(document).unbind('keydown.fb').bind('keydown.fb', function(e) {
				if (e.keyCode == 27 && currentOpts.enableEscapeButton) {
					e.preventDefault();
					$.fancybox.close();

				} else if (e.keyCode == 37) {
					e.preventDefault();
					$.fancybox.prev();

				} else if (e.keyCode == 39) {
					e.preventDefault();
					$.fancybox.next();
				}
			});

			if ($.fn.mousewheel) {
				wrap.unbind('mousewheel.fb');

				if (currentArray.length > 1) {
					wrap.bind('mousewheel.fb', function(e, delta) {
						e.preventDefault();

						if (busy || delta === 0) {
							return;
						}

						if (delta > 0) {
							$.fancybox.prev();
						} else {
							$.fancybox.next();
						}
					});
				}
			}

			if (!currentOpts.showNavArrows) { return; }

			if ((currentOpts.cyclic && currentArray.length > 1) || currentIndex !== 0) {
				nav_left.show();
			}

			if ((currentOpts.cyclic && currentArray.length > 1) || currentIndex != (currentArray.length -1)) {
				nav_right.show();
			}
		},

		fancybox_preload_images = function() {
			var href, 
				objNext;
				
			if ((currentArray.length -1) > currentIndex) {
				href = currentArray[ currentIndex + 1 ].href;

				if (typeof href !== 'undefined' && href.match(imgRegExp)) {
					objNext = new Image();
					objNext.src = href;
				}
			}

			if (currentIndex > 0) {
				href = currentArray[ currentIndex - 1 ].href;

				if (typeof href !== 'undefined' && href.match(imgRegExp)) {
					objNext = new Image();
					objNext.src = href;
				}
			}
		},

		_finish = function () {
			inner.css('overflow', (currentOpts.scrolling == 'auto' ? (currentOpts.type == 'image' || currentOpts.type == 'iframe' || currentOpts.type == 'swf' ? 'hidden' : 'auto') : (currentOpts.scrolling == 'yes' ? 'auto' : 'visible')));

			if (!$.support.opacity) {
				inner.get(0).style.removeAttribute('filter');
				wrap.get(0).style.removeAttribute('filter');
			}

			$('#fancybox-title').show();

			if (currentOpts.hideOnContentClick)	{
				inner.one('click', $.fancybox.close);
			}
			if (currentOpts.hideOnOverlayClick)	{
				overlay.one('click', $.fancybox.close);
			}

			if (currentOpts.showCloseButton) {
				close.show();
			}

			fancybox_set_navigation();

			$(window).bind("resize.fb", $.fancybox.center);

			if (currentOpts.centerOnScroll) {
				$(window).bind("scroll.fb", $.fancybox.center);
			} else {
				$(window).unbind("scroll.fb");
			}

			if ($.isFunction(currentOpts.onComplete)) {
				currentOpts.onComplete(currentArray, currentIndex, currentOpts);
			}

			busy = false;

			fancybox_preload_images();
		},

		fancybox_draw = function(pos) {
			var width	= Math.round(start_pos.width	+ (final_pos.width	- start_pos.width)	* pos),
				height	= Math.round(start_pos.height	+ (final_pos.height	- start_pos.height)	* pos),

				top		= Math.round(start_pos.top	+ (final_pos.top	- start_pos.top)	* pos),
				left	= Math.round(start_pos.left	+ (final_pos.left	- start_pos.left)	* pos);

			wrap.css({
				'width'		: width		+ 'px',
				'height'	: height	+ 'px',
				'top'		: top		+ 'px',
				'left'		: left		+ 'px'
			});

			width	= Math.max(width - currentOpts.padding * 2, 0);
			height	= Math.max(height - (currentOpts.padding * 2 + (titleh * pos)), 0);

			inner.css({
				'width'		: width		+ 'px',
				'height'	: height	+ 'px'
			});

			if (typeof final_pos.opacity !== 'undefined') {
				wrap.css('opacity', (pos < 0.5 ? 0.5 : pos));
			}
		},

		fancybox_get_obj_pos = function(obj) {
			var pos		= obj.offset();

			pos.top		+= parseFloat( obj.css('paddingTop') )	|| 0;
			pos.left	+= parseFloat( obj.css('paddingLeft') )	|| 0;

			pos.top		+= parseFloat( obj.css('border-top-width') )	|| 0;
			pos.left	+= parseFloat( obj.css('border-left-width') )	|| 0;

			pos.width	= obj.width();
			pos.height	= obj.height();

			return pos;
		},

		fancybox_get_zoom_from = function() {
			var orig = selectedOpts.orig ? $(selectedOpts.orig) : false,
				from = {},
				pos,
				view;

			if (orig && orig.length) {
				pos = fancybox_get_obj_pos(orig);

				from = {
					width	: (pos.width	+ (currentOpts.padding * 2)),
					height	: (pos.height	+ (currentOpts.padding * 2)),
					top		: (pos.top		- currentOpts.padding - shadow),
					left	: (pos.left		- currentOpts.padding - shadow)
				};
				
			} else {
				view = fancybox_get_viewport();

				from = {
					width	: 1,
					height	: 1,
					top		: view[3] + view[1] * 0.5,
					left	: view[2] + view[0] * 0.5
				};
			}

			return from;
		},

		fancybox_show = function() {
			loading.hide();

			if (wrap.is(":visible") && $.isFunction(currentOpts.onCleanup)) {
				if (currentOpts.onCleanup(currentArray, currentIndex, currentOpts) === false) {
					$.event.trigger('fancybox-cancel');

					busy = false;
					return;
				}
			}

			currentArray	= selectedArray;
			currentIndex	= selectedIndex;
			currentOpts		= selectedOpts;

			inner.get(0).scrollTop	= 0;
			inner.get(0).scrollLeft	= 0;

			if (currentOpts.overlayShow) {
				if (isIE6) {
					$('select:not(#fancybox-tmp select)').filter(function() {
						return this.style.visibility !== 'hidden';
					}).css({'visibility':'hidden'}).one('fancybox-cleanup', function() {
						this.style.visibility = 'inherit';
					});
				}

				overlay.css({
					'background-color'	: currentOpts.overlayColor,
					'opacity'			: currentOpts.overlayOpacity
				}).unbind().show();
			}

			final_pos = fancybox_get_zoom_to();

			fancybox_process_title();

			if (wrap.is(":visible")) {
				$( close.add( nav_left ).add( nav_right ) ).hide();

				var pos = wrap.position(),
					equal;

				start_pos = {
					top		:	pos.top ,
					left	:	pos.left,
					width	:	wrap.width(),
					height	:	wrap.height()
				};

				equal = (start_pos.width == final_pos.width && start_pos.height == final_pos.height);

				inner.fadeOut(currentOpts.changeFade, function() {
					var finish_resizing = function() {
						inner.html( tmp.contents() ).fadeIn(currentOpts.changeFade, _finish);
					};
					
					$.event.trigger('fancybox-change');

					inner.empty().css('overflow', 'hidden');

					if (equal) {
						inner.css({
							top			: currentOpts.padding,
							left		: currentOpts.padding,
							width		: Math.max(final_pos.width	- (currentOpts.padding * 2), 1),
							height		: Math.max(final_pos.height	- (currentOpts.padding * 2) - titleh, 1)
						});
						
						finish_resizing();

					} else {
						inner.css({
							top			: currentOpts.padding,
							left		: currentOpts.padding,
							width		: Math.max(start_pos.width	- (currentOpts.padding * 2), 1),
							height		: Math.max(start_pos.height	- (currentOpts.padding * 2), 1)
						});
						
						fx.prop = 0;

						$(fx).animate({ prop: 1 }, {
							 duration	: currentOpts.changeSpeed,
							 easing		: currentOpts.easingChange,
							 step		: fancybox_draw,
							 complete	: finish_resizing
						});
					}
				});

				return;
			}

			wrap.css('opacity', 1);

			if (currentOpts.transitionIn == 'elastic') {
				start_pos = fancybox_get_zoom_from();

				inner.css({
						top			: currentOpts.padding,
						left		: currentOpts.padding,
						width		: Math.max(start_pos.width	- (currentOpts.padding * 2), 1),
						height		: Math.max(start_pos.height	- (currentOpts.padding * 2), 1)
					})
					.html( tmp.contents() );

				wrap.css(start_pos).show();

				if (currentOpts.opacity) {
					final_pos.opacity = 0;
				}

				fx.prop = 0;

				$(fx).animate({ prop: 1 }, {
					 duration	: currentOpts.speedIn,
					 easing		: currentOpts.easingIn,
					 step		: fancybox_draw,
					 complete	: _finish
				});

			} else {
				inner.css({
						top			: currentOpts.padding,
						left		: currentOpts.padding,
						width		: Math.max(final_pos.width	- (currentOpts.padding * 2), 1),
						height		: Math.max(final_pos.height	- (currentOpts.padding * 2) - titleh, 1)
					})
					.html( tmp.contents() );

				wrap.css( final_pos ).fadeIn( currentOpts.transitionIn == 'none' ? 0 : currentOpts.speedIn, _finish );
			}
		},

		fancybox_process_inline = function() {
			tmp.width(	selectedOpts.width );
			tmp.height(	selectedOpts.height );

			if (selectedOpts.width	== 'auto') {
				selectedOpts.width = tmp.width();
			}
			if (selectedOpts.height	== 'auto') {
				selectedOpts.height	= tmp.height();
			}

			fancybox_show();
		},
		
		fancybox_process_image = function() {
			busy = true;

			selectedOpts.width	= imgPreloader.width;
			selectedOpts.height	= imgPreloader.height;

			$("<img />").attr({
				'id'	: 'fancybox-img',
				'src'	: imgPreloader.src,
				'alt'	: selectedOpts.title
			}).appendTo( tmp );

			fancybox_show();
		},

		fancybox_start = function() {
			fancybox_abort();

			var obj	= selectedArray[ selectedIndex ],
				href, 
				type, 
				title,
				str,
				emb,
				selector,
				data;

			selectedOpts = $.extend({}, $.fn.fancybox.defaults, (typeof $(obj).data('fancybox') == 'undefined' ? selectedOpts : $(obj).data('fancybox')));
			title = obj.title || $(obj).title || selectedOpts.title || '';
			
			if (obj.nodeName && !selectedOpts.orig) {
				selectedOpts.orig = $(obj).children("img:first").length ? $(obj).children("img:first") : $(obj);
			}

			if (title === '' && selectedOpts.orig) {
				title = selectedOpts.orig.attr('alt');
			}

			if (obj.nodeName && (/^(?:javascript|#)/i).test(obj.href)) {
				href = selectedOpts.href || null;
			} else {
				href = selectedOpts.href || obj.href || null;
			}

			if (selectedOpts.type) {
				type = selectedOpts.type;

				if (!href) {
					href = selectedOpts.content;
				}
				
			} else if (selectedOpts.content) {
				type	= 'html';

			} else if (href) {
				if (href.match(imgRegExp)) {
					type = 'image';

				} else if (href.match(swfRegExp)) {
					type = 'swf';

				} else if ($(obj).hasClass("iframe")) {
					type = 'iframe';

				} else if (href.match(/#/)) {
					obj = href.substr(href.indexOf("#"));

					type = $(obj).length > 0 ? 'inline' : 'ajax';
				} else {
					type = 'ajax';
				}
			} else {
				type = 'inline';
			}

			selectedOpts.type	= type;
			selectedOpts.href	= href;
			selectedOpts.title	= title;

			if (selectedOpts.autoDimensions && selectedOpts.type !== 'iframe' && selectedOpts.type !== 'swf') {
				selectedOpts.width		= 'auto';
				selectedOpts.height		= 'auto';
			}

			if (selectedOpts.modal) {
				selectedOpts.overlayShow		= true;
				selectedOpts.hideOnOverlayClick	= false;
				selectedOpts.hideOnContentClick	= false;
				selectedOpts.enableEscapeButton	= false;
				selectedOpts.showCloseButton	= false;
			}

			if ($.isFunction(selectedOpts.onStart)) {
				if (selectedOpts.onStart(selectedArray, selectedIndex, selectedOpts) === false) {
					busy = false;
					return;
				}
			}

			tmp.css('padding', (shadow + selectedOpts.padding + selectedOpts.margin));

			$('.fancybox-inline-tmp').unbind('fancybox-cancel').bind('fancybox-change', function() {
				$(this).replaceWith(inner.children());
			});

			switch (type) {
				case 'html' :
					tmp.html( selectedOpts.content );
					fancybox_process_inline();
				break;

				case 'inline' :
					$('<div class="fancybox-inline-tmp" />').hide().insertBefore( $(obj) ).bind('fancybox-cleanup', function() {
						$(this).replaceWith(inner.children());
					}).bind('fancybox-cancel', function() {
						$(this).replaceWith(tmp.children());
					});

					$(obj).appendTo(tmp);

					fancybox_process_inline();
				break;

				case 'image':
					busy = false;

					$.fancybox.showActivity();

					imgPreloader = new Image();

					imgPreloader.onerror = function() {
						fancybox_error();
					};

					imgPreloader.onload = function() {
						imgPreloader.onerror = null;
						imgPreloader.onload = null;
						fancybox_process_image();
					};

					imgPreloader.src = href;
		
				break;

				case 'swf':
					str = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="' + selectedOpts.width + '" height="' + selectedOpts.height + '"><param name="movie" value="' + href + '"></param>';
					emb = '';
					
					$.each(selectedOpts.swf, function(name, val) {
						str += '<param name="' + name + '" value="' + val + '"></param>';
						emb += ' ' + name + '="' + val + '"';
					});

					str += '<embed src="' + href + '" type="application/x-shockwave-flash" width="' + selectedOpts.width + '" height="' + selectedOpts.height + '"' + emb + '></embed></object>';

					tmp.html(str);

					fancybox_process_inline();
				break;

				case 'ajax':
					selector	= href.split('#', 2);
					data		= selectedOpts.ajax.data || {};

					if (selector.length > 1) {
						href = selector[0];

						if (typeof data == "string") {
							data += '&selector=' + selector[1];
						} else {
							data.selector = selector[1];
						}
					}

					busy = false;
					$.fancybox.showActivity();

					ajaxLoader = $.ajax($.extend(selectedOpts.ajax, {
						url		: href,
						data	: data,
						error	: fancybox_error,
						success : function(data, textStatus, XMLHttpRequest) {
							if (ajaxLoader.status == 200) {
								tmp.html( data );
								fancybox_process_inline();
							}
						}
					}));

				break;

				case 'iframe' :
					$('<iframe id="fancybox-frame" name="fancybox-frame' + new Date().getTime() + '" frameborder="0" hspace="0" scrolling="' + selectedOpts.scrolling + '" src="' + selectedOpts.href + '"></iframe>').appendTo(tmp);
					fancybox_show();
				break;
			}
		},

		fancybox_animate_loading = function() {
			if (!loading.is(':visible')){
				clearInterval(loadingTimer);
				return;
			}

			$('div', loading).css('top', (loadingFrame * -40) + 'px');

			loadingFrame = (loadingFrame + 1) % 12;
		},

		fancybox_init = function() {
			if ($("#fancybox-wrap").length) {
				return;
			}

			$('body').append(
				tmp			= $('<div id="fancybox-tmp"></div>'),
				loading		= $('<div id="fancybox-loading"><div></div></div>'),
				overlay		= $('<div id="fancybox-overlay"></div>'),
				wrap		= $('<div id="fancybox-wrap"></div>')
			);

			if (!$.support.opacity) {
				wrap.addClass('fancybox-ie');
				loading.addClass('fancybox-ie');
			}

			outer = $('<div id="fancybox-outer"></div>')
				.append('<div class="fancy-bg" id="fancy-bg-n"></div><div class="fancy-bg" id="fancy-bg-ne"></div><div class="fancy-bg" id="fancy-bg-e"></div><div class="fancy-bg" id="fancy-bg-se"></div><div class="fancy-bg" id="fancy-bg-s"></div><div class="fancy-bg" id="fancy-bg-sw"></div><div class="fancy-bg" id="fancy-bg-w"></div><div class="fancy-bg" id="fancy-bg-nw"></div>')
				.appendTo( wrap );

			outer.append(
				inner		= $('<div id="fancybox-inner"></div>'),
				close		= $('<a id="fancybox-close"></a>'),

				nav_left	= $('<a href="javascript:;" id="fancybox-left"><span class="fancy-ico" id="fancybox-left-ico"></span></a>'),
				nav_right	= $('<a href="javascript:;" id="fancybox-right"><span class="fancy-ico" id="fancybox-right-ico"></span></a>')
			);

			close.click($.fancybox.close);
			loading.click($.fancybox.cancel);

			nav_left.click(function(e) {
				e.preventDefault();
				$.fancybox.prev();
			});

			nav_right.click(function(e) {
				e.preventDefault();
				$.fancybox.next();
			});

			if (isIE6) {
				overlay.get(0).style.setExpression('height',	"document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px'");
				loading.get(0).style.setExpression('top',		"(-20 + (document.documentElement.clientHeight ? document.documentElement.clientHeight/2 : document.body.clientHeight/2 ) + ( ignoreMe = document.documentElement.scrollTop ? document.documentElement.scrollTop : document.body.scrollTop )) + 'px'");

				outer.prepend('<iframe id="fancybox-hide-sel-frame" src="javascript:\'\';" scrolling="no" frameborder="0" ></iframe>');
			}
		};

	/*
	 * Public methods 
	 */

	$.fn.fancybox = function(options) {
		$(this)
			.data('fancybox', $.extend({}, options, ($.metadata ? $(this).metadata() : {})))
			.unbind('click.fb').bind('click.fb', function(e) {
				e.preventDefault();

				if (busy) {
					return;
				}

				busy = true;

				$(this).blur();

				selectedArray	= [];
				selectedIndex	= 0;

				var rel = $(this).attr('rel') || '';

				if (!rel || rel == '' || rel === 'nofollow') {
					selectedArray.push(this);

				} else {
					selectedArray	= $("a[rel=" + rel + "], area[rel=" + rel + "]");
					selectedIndex	= selectedArray.index( this );
				}

				fancybox_start();

				return false;
			});

		return this;
	};

	$.fancybox = function(obj) {
		if (busy) {
			return;
		}

		busy = true;

		var opts = typeof arguments[1] !== 'undefined' ? arguments[1] : {};

		selectedArray	= [];
		selectedIndex	= opts.index || 0;

		if ($.isArray(obj)) {
			for (var i = 0, j = obj.length; i < j; i++) {
				if (typeof obj[i] == 'object') {
					$(obj[i]).data('fancybox', $.extend({}, opts, obj[i]));
				} else {
					obj[i] = $({}).data('fancybox', $.extend({content : obj[i]}, opts));
				}
			}

			selectedArray = jQuery.merge(selectedArray, obj);

		} else {
			if (typeof obj == 'object') {
				$(obj).data('fancybox', $.extend({}, opts, obj));
			} else {
				obj = $({}).data('fancybox', $.extend({content : obj}, opts));
			}

			selectedArray.push(obj);
		}

		if (selectedIndex > selectedArray.length || selectedIndex < 0) {
			selectedIndex = 0;
		}

		fancybox_start();
	};

	$.fancybox.showActivity = function() {
		clearInterval(loadingTimer);

		loading.show();
		loadingTimer = setInterval(fancybox_animate_loading, 66);
	};

	$.fancybox.hideActivity = function() {
		loading.hide();
	};

	$.fancybox.next = function() {
		return $.fancybox.pos( currentIndex + 1);
	};
	
	$.fancybox.prev = function() {
		return $.fancybox.pos( currentIndex - 1);
	};

	$.fancybox.pos = function(pos) {
		if (busy) {
			return;
		}

		pos = parseInt(pos, 10);

		if (pos > -1 && currentArray.length > pos) {
			selectedIndex = pos;
			fancybox_start();
		}

		if (currentOpts.cyclic && currentArray.length > 1 && pos < 0) {
			selectedIndex = currentArray.length - 1;
			fancybox_start();
		}

		if (currentOpts.cyclic && currentArray.length > 1 && pos >= currentArray.length) {
			selectedIndex = 0;
			fancybox_start();
		}

		return;
	};

	$.fancybox.cancel = function() {
		if (busy) {
			return;
		}

		busy = true;

		$.event.trigger('fancybox-cancel');

		fancybox_abort();

		if (selectedOpts && $.isFunction(selectedOpts.onCancel)) {
			selectedOpts.onCancel(selectedArray, selectedIndex, selectedOpts);
		}

		busy = false;
	};

	// Note: within an iframe use - parent.$.fancybox.close();
	$.fancybox.close = function() {
		if (busy || wrap.is(':hidden')) {
			return;
		}

		busy = true;

		if (currentOpts && $.isFunction(currentOpts.onCleanup)) {
			if (currentOpts.onCleanup(currentArray, currentIndex, currentOpts) === false) {
				busy = false;
				return;
			}
		}

		fancybox_abort();

		$(close.add( nav_left ).add( nav_right )).hide();

		$('#fancybox-title').remove();

		wrap.add(inner).add(overlay).unbind();

		$(window).unbind("resize.fb scroll.fb");
		$(document).unbind('keydown.fb');

		function _cleanup() {
			overlay.fadeOut('fast');

			wrap.hide();

			$.event.trigger('fancybox-cleanup');

			inner.empty();

			if ($.isFunction(currentOpts.onClosed)) {
				currentOpts.onClosed(currentArray, currentIndex, currentOpts);
			}

			currentArray	= selectedOpts	= [];
			currentIndex	= selectedIndex	= 0;
			currentOpts		= selectedOpts	= {};

			busy = false;
		}

		inner.css('overflow', 'hidden');

		if (currentOpts.transitionOut == 'elastic') {
			start_pos = fancybox_get_zoom_from();

			var pos = wrap.position();

			final_pos = {
				top		:	pos.top ,
				left	:	pos.left,
				width	:	wrap.width(),
				height	:	wrap.height()
			};

			if (currentOpts.opacity) {
				final_pos.opacity = 1;
			}

			fx.prop = 1;

			$(fx).animate({ prop: 0 }, {
				 duration	: currentOpts.speedOut,
				 easing		: currentOpts.easingOut,
				 step		: fancybox_draw,
				 complete	: _cleanup
			});

		} else {
			wrap.fadeOut( currentOpts.transitionOut == 'none' ? 0 : currentOpts.speedOut, _cleanup);
		}
	};

	$.fancybox.resize = function() {
		var c, h;
		
		if (busy || wrap.is(':hidden')) {
			return;
		}

		busy = true;

		c = inner.wrapInner("<div style='overflow:auto'></div>").children();
		h = c.height();

		wrap.css({height:	h + (currentOpts.padding * 2) + titleh});
		inner.css({height:	h});

		c.replaceWith(c.children());

		$.fancybox.center();
	};

	$.fancybox.center = function() {
		busy = true;

		var view	= fancybox_get_viewport(),
			margin	= currentOpts.margin,
			to		= {};

		to.top	= view[3] + ((view[1] - ((wrap.height() - titleh) + (shadow * 2 ))) * 0.5);
		to.left	= view[2] + ((view[0] - (wrap.width() + (shadow * 2 ))) * 0.5);

		to.top	= Math.max(view[3] + margin, to.top);
		to.left	= Math.max(view[2] + margin, to.left);

		wrap.css(to);

		busy = false;
	};

	$.fn.fancybox.defaults = {
		padding				:	10,
		margin				:	20,
		opacity				:	false,
		modal				:	false,
		cyclic				:	false,
		scrolling			:	'auto',	// 'auto', 'yes' or 'no'

		width				:	560,
		height				:	340,

		autoScale			:	true,
		autoDimensions		:	true,
		centerOnScroll		:	false,

		ajax				:	{},
		swf					:	{ wmode: 'transparent' },

		hideOnOverlayClick	:	true,
		hideOnContentClick	:	false,

		overlayShow			:	true,
		overlayOpacity		:	0.3,
		overlayColor		:	'#666',

		titleShow			:	true,
		titlePosition		:	'outside',	// 'outside', 'inside' or 'over'
		titleFormat			:	null,

		transitionIn		:	'fade',	// 'elastic', 'fade' or 'none'
		transitionOut		:	'fade',	// 'elastic', 'fade' or 'none'

		speedIn				:	300,
		speedOut			:	300,

		changeSpeed			:	300,
		changeFade			:	'fast',

		easingIn			:	'swing',
		easingOut			:	'swing',

		showCloseButton		:	true,
		showNavArrows		:	true,
		enableEscapeButton	:	true,

		onStart				:	null,
		onCancel			:	null,
		onComplete			:	null,
		onCleanup			:	null,
		onClosed			:	null
	};

	$(document).ready(function() {
		fancybox_init();
	});

})(jQuery);;

/**
 * Initiate Fancybox using selector and options from the module's settings.
 */
Drupal.behaviors.initFancybox = function() {
  var settings = Drupal.settings.fancybox;

  // Convert any JavaScript events to function calls.
  var events = ["onStart", "onComplete", "onClosed", "onCleanup", "onCancel"];
  for (var i in events) {
    if (settings.options[events[i]].length && typeof(settings.options[events[i]]) == 'string') {
      settings.options[events[i]] = eval("("+settings.options[events[i]]+")");
    }
  }

  if (settings && settings.selector.length) {
    $(settings.selector).fancybox(settings.options);
  }

  $('.imagefield-fancybox').fancybox(settings.options);

  // emvideo support
  settings.options.hideOnContentClick = false;
  $('.emvideo-modal-fancybox').fancybox(settings.options);

}
;

$(document).ready(function() {

  // Attach onclick event to document only and catch clicks on all elements.
  $(document.body).click(function(event) {
    // Catch only the first parent link of a clicked element.
    $(event.target).parents("a:first,area:first").andSelf().filter("a,area").each(function() {

      var ga = Drupal.settings.googleanalytics;
      // Expression to check for absolute internal links.
      var isInternal = new RegExp("^(https?):\/\/" + window.location.host, "i");
      // Expression to check for special links like gotwo.module /go/* links.
      var isInternalSpecial = new RegExp("(\/go\/.*)$", "i");
      // Expression to check for download links.
      var isDownload = new RegExp("\\.(" + ga.trackDownloadExtensions + ")$", "i");

      // Is the clicked URL internal?
      if (isInternal.test(this.href)) {
        // Is download tracking activated and the file extension configured for download tracking?
        if (ga.trackDownload && isDownload.test(this.href)) {
          // Download link clicked.
          var extension = isDownload.exec(this.href);
          _gaq.push(["_trackEvent", "Downloads", extension[1].toUpperCase(), this.href.replace(isInternal, '')]);
        }
        else if (isInternalSpecial.test(this.href)) {
          // Keep the internal URL for Google Analytics website overlay intact.
          _gaq.push(["_trackPageview", this.href.replace(isInternal, '')]);
        }
      }
      else {
        if (ga.trackMailto && $(this).is("a[href^=mailto:],area[href^=mailto:]")) {
          // Mailto link clicked.
          _gaq.push(["_trackEvent", "Mails", "Click", this.href.substring(7)]);
        }
        else if (ga.trackOutgoing && this.href) {
          if (ga.trackOutboundAsPageview) {
            // Track all external links as page views after URL cleanup.
            // Currently required, if click should be tracked as goal.
            _gaq.push(["_trackPageview", '/outbound/' + this.href.replace(/^(https?|ftp|news|nntp|telnet|irc|ssh|sftp|webcal):\/\//i, '').split('/').join('--')]);
          }
          else {
            // External link clicked.
            _gaq.push(["_trackEvent", "Outbound links", "Click", this.href]);
          }
        }
      }
    });
  });
});
;
Drupal.behaviors.spamspan=function(_1){$("span."+Drupal.settings.spamspan.m,_1).each(function(_2){var _3=($("span."+Drupal.settings.spamspan.u,this).text()+"@"+$("span."+Drupal.settings.spamspan.d,this).text()).replace(/\s+/g,"").replace(/\[dot\]/g,".");var _4=$("span."+Drupal.settings.spamspan.h,this).text().replace(/^ ?\((.*)\) ?$/,"$1");var _5=$.map(_4.split(/, /),function(n,i){return (n.replace(/: /,"="));});var _6=$("span."+Drupal.settings.spamspan.t,this).text().replace(/^ \((.*)\)$/,"$1");var _7="mailto:"+encodeURIComponent(_3);var _8=_5.join("&");_7+=_8?("?"+_8):"";$(this).after($("<a></a>").attr("href",_7).html(_6?_6:_3).addClass("spamspan")).remove();});};;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1999 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":190,"face":{"font-family":"Serifa","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 6 5 3 3 5 5 2 2 4","ascent":"274","descent":"-86","x-height":"4","bbox":"-5 -275 347 85","underline-thickness":"24.4336","underline-position":"-17.4023","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":95},"!":{"d":"62,-57r-24,0r-6,-177r36,0xm66,0r-32,0r0,-34r32,0r0,34","w":100},"\"":{"d":"87,-252r0,97r-21,0r0,-97r21,0xm37,-252r0,97r-20,0r0,-97r20,0","w":103},"#":{"d":"171,-152r-46,0r-17,48r46,0xm162,-256r-29,83r46,0r29,-83r25,0r-29,83r54,0r-7,21r-55,0r-16,48r58,0r-8,22r-58,0r-29,82r-26,0r30,-82r-47,0r-30,82r-25,0r30,-82r-57,0r8,-22r56,0r17,-48r-60,0r7,-21r61,0r29,-83r26,0","w":276},"$":{"d":"85,-213v-34,-4,-55,36,-31,59v7,6,16,10,31,14r0,-73xm103,-22v35,4,52,-38,30,-61v-6,-7,-16,-12,-30,-16r0,77xm176,-63v0,42,-29,64,-73,64r0,37r-21,0r0,-37v-20,-1,-33,-10,-44,-21r0,20r-23,0r0,-68r25,0v2,26,19,40,43,45r0,-84v-41,-11,-67,-23,-69,-67v-1,-38,32,-62,71,-61r0,-34r21,0r0,34v17,3,32,10,41,20r0,-19r23,0r0,65r-25,0v-2,-23,-18,-38,-39,-43r0,79v40,13,70,27,70,70"},"%":{"d":"72,5r-25,0r136,-244r24,0xm192,-98v-22,0,-28,17,-28,42v0,24,6,42,28,42v23,0,29,-17,29,-42v0,-26,-6,-42,-29,-42xm192,5v-35,0,-48,-24,-48,-61v0,-37,13,-61,48,-61v35,0,49,23,49,61v0,38,-14,61,-49,61xm63,-220v-23,0,-29,17,-29,42v0,25,6,42,29,42v22,0,28,-18,28,-42v0,-24,-6,-42,-28,-42xm63,-117v-34,0,-49,-23,-49,-61v0,-38,14,-61,49,-61v35,0,49,24,49,61v0,37,-14,61,-49,61","w":254},"&":{"d":"104,-216v-26,-1,-41,24,-26,44v4,6,11,14,22,25v36,-8,54,-66,4,-69xm219,-117v-3,28,-10,50,-23,67r25,26r34,0r0,24r-51,0r-25,-27v-36,50,-165,43,-160,-37v2,-38,23,-55,53,-70v-19,-17,-32,-29,-32,-55v0,-32,30,-50,65,-50v35,0,62,18,62,51v0,32,-22,47,-49,60r59,59v7,-14,13,-29,14,-48r-28,0r0,-24r87,0r0,24r-31,0xm53,-63v-3,53,86,57,107,18r-68,-68v-22,11,-38,22,-39,50","w":275},"'":{"d":"37,-252r0,97r-20,0r0,-97r20,0","w":53},"(":{"d":"23,-90v0,-62,25,-107,55,-149r26,0v-63,74,-63,225,-1,300r-26,0v-32,-43,-54,-84,-54,-151","w":118},")":{"d":"19,61v64,-73,62,-225,1,-300r26,0v32,43,54,84,54,151v0,62,-25,107,-55,149r-26,0","w":118},"*":{"d":"76,-234r29,0r-7,47r43,-20r9,27r-46,8r31,36r-24,16r-21,-42r-23,40r-23,-16r32,-34r-46,-10r10,-27r41,21","w":180},"+":{"d":"160,-215r0,97r95,0r0,21r-95,0r0,97r-20,0r0,-97r-95,0r0,-21r95,0r0,-97r20,0","w":299},",":{"d":"44,0r-15,0r0,-36r37,0v3,35,-6,58,-15,82r-22,0","w":95},"-":{"d":"17,-69r0,-28r85,0r0,28r-85,0","w":118,"k":{"o":-7,"Y":28,"X":13,"W":20,"V":21,"T":33,"O":-13,"J":-20,"G":-13,"C":-7,"A":6}},".":{"d":"65,0r-34,0r0,-37r34,0r0,37","w":95},"\/":{"d":"28,33r-26,0r106,-272r26,0","w":136},"0":{"d":"95,-215v-43,0,-50,44,-50,98v0,54,7,97,50,97v43,0,50,-43,50,-97v0,-54,-6,-98,-50,-98xm95,5v-62,0,-81,-51,-81,-122v0,-71,19,-122,81,-122v63,0,82,51,82,122v0,70,-20,122,-82,122"},"1":{"d":"37,-190r55,-44r30,0r0,210r38,0r0,24r-106,0r0,-24r38,0r0,-178v-16,16,-34,29,-55,44r0,-32"},"2":{"d":"95,-239v71,0,96,75,49,123v-18,18,-51,50,-104,92r105,0r1,-39r26,0r0,63r-156,0r0,-40v43,-35,133,-116,120,-132v0,-25,-16,-43,-41,-43v-27,0,-47,22,-46,49r-29,0v0,-46,29,-73,75,-73"},"3":{"d":"173,-60v0,65,-95,82,-136,47v-13,-12,-19,-30,-19,-53r31,0v0,29,18,46,47,46v27,0,45,-15,45,-42v-1,-32,-22,-44,-56,-46r0,-24v35,-2,52,-10,53,-43v0,-26,-14,-39,-40,-39v-29,0,-46,16,-47,43r-31,0v3,-45,29,-67,76,-68v45,0,74,23,74,66v0,31,-19,47,-47,54v30,5,50,24,50,59"},"4":{"d":"116,-87r-1,-116r-85,118xm79,0r0,-24r37,0r0,-38r-107,0r0,-35r99,-137r38,0r0,147r36,0r0,25r-36,0r0,38r33,0r0,24r-100,0"},"5":{"d":"175,-73v10,74,-86,98,-134,61v-13,-11,-20,-27,-21,-49r30,0v3,25,17,42,45,41v34,0,47,-21,49,-55v4,-54,-78,-63,-92,-21r-29,0r8,-138r134,0r0,25r-108,0r-6,86v33,-51,135,-21,124,50"},"6":{"d":"17,-112v-1,-72,23,-125,86,-127v39,-1,66,23,68,59r-33,0v0,-46,-62,-43,-77,-9v-8,18,-14,41,-15,74v28,-59,129,-37,129,40v0,50,-29,81,-77,80v-63,-1,-81,-45,-81,-117xm99,-125v-30,0,-47,22,-47,54v0,29,17,51,45,51v28,0,47,-23,47,-53v0,-31,-16,-52,-45,-52"},"7":{"d":"180,-205v-32,56,-62,131,-88,205r-35,0v29,-75,61,-145,94,-209r-105,0r-1,42r-27,0r2,-67r160,0r0,29"},"8":{"d":"49,-175v0,26,19,43,46,43v27,0,46,-17,46,-43v0,-26,-19,-41,-46,-41v-27,0,-46,15,-46,41xm143,-64v0,-28,-20,-46,-48,-46v-28,0,-48,18,-48,46v0,29,19,44,48,44v29,0,48,-15,48,-44xm17,-61v0,-35,19,-53,49,-60v-27,-5,-46,-25,-45,-57v1,-40,32,-61,74,-61v43,0,74,21,75,61v0,32,-19,52,-46,57v30,7,49,25,49,60v-1,45,-29,66,-78,66v-49,0,-77,-21,-78,-66"},"9":{"d":"92,-110v31,0,49,-22,49,-53v0,-29,-19,-51,-46,-51v-29,-1,-46,23,-46,53v0,30,14,51,43,51xm175,-122v1,72,-23,125,-86,127v-39,1,-66,-24,-68,-60r33,0v-3,46,61,44,76,10v8,-18,15,-42,15,-75v-26,61,-128,38,-128,-40v0,-49,29,-79,77,-79v64,1,81,45,81,117"},":":{"d":"65,-127r-34,0r0,-37r34,0r0,37xm65,0r-34,0r0,-37r34,0r0,37","w":95},";":{"d":"66,-127r-34,0r0,-37r34,0r0,37xm44,0r-15,0r0,-36r37,0v3,35,-6,58,-15,82r-22,0","w":95},"<":{"d":"253,-179r-175,72r175,71r0,23r-207,-85r0,-18r207,-85r0,22","w":299},"=":{"d":"255,-84r0,21r-210,0r0,-21r210,0xm255,-151r0,20r-210,0r0,-20r210,0","w":299},">":{"d":"253,-116r0,18r-207,85r0,-23r176,-71r-176,-72r0,-22","w":299},"?":{"d":"97,0r-32,0r0,-34r32,0r0,34xm89,-238v55,0,88,43,66,93v-10,23,-66,47,-58,90r-32,0v-11,-63,65,-78,65,-122v0,-22,-17,-38,-40,-38v-26,1,-39,16,-42,42r-32,0v3,-42,28,-65,73,-65","w":176},"@":{"d":"43,-90v-7,128,167,151,248,90r8,12v-31,22,-67,39,-116,38v-97,-2,-163,-48,-163,-142v0,-104,72,-164,176,-164v83,0,144,40,144,119v0,66,-34,111,-97,116v-23,2,-37,-9,-35,-32v-10,18,-26,31,-52,32v-37,0,-51,-22,-55,-59v-7,-70,90,-134,126,-68r10,-22r20,0r-27,114v0,10,7,17,19,16v46,-5,68,-46,69,-95v2,-65,-55,-105,-125,-103v-92,3,-145,56,-150,148xm125,-78v0,40,42,50,67,27v20,-17,21,-48,30,-75v-4,-19,-16,-33,-37,-33v-37,0,-60,41,-60,81","w":360},"A":{"d":"92,-100r85,0r-42,-101xm2,0r0,-24r26,0r90,-210r36,0r88,210r26,0r0,24r-95,0r0,-24r34,0r-20,-52r-105,0r-22,52r34,0r0,24r-92,0","w":270,"k":{"y":13,"w":15,"v":16,"u":6,"t":6,"q":6,"o":6,"e":6,"d":6,"c":6,"Y":33,"X":6,"W":21,"V":33,"U":10,"T":26,"Q":11,"O":11,"G":11,"C":11,"-":8}},"B":{"d":"169,-172v0,-45,-51,-40,-96,-39r0,78v45,0,96,6,96,-39xm207,-66v0,85,-113,64,-197,66r0,-24r32,0r0,-187r-32,0r0,-23v78,4,192,-22,191,58v-1,30,-19,48,-47,53v31,2,53,24,53,57xm175,-68v0,-48,-54,-42,-102,-42r0,86v49,2,102,3,102,-44","w":225,"k":{"Y":20,"W":6,"V":6,"-":-10}},"C":{"d":"133,-20v38,0,58,-24,64,-59r33,0v-5,56,-39,83,-100,84v-72,1,-115,-49,-115,-122v0,-72,42,-122,113,-122v35,1,56,12,74,32r0,-27r26,0r0,82r-27,0v-3,-38,-29,-63,-69,-63v-53,1,-84,39,-84,95v0,59,29,101,85,100","w":251,"k":{"Y":13,"S":6,"A":13,"-":-8}},"D":{"d":"203,-117v0,-75,-50,-101,-130,-94r0,187v79,7,130,-19,130,-93xm237,-117v0,77,-45,117,-124,117r-103,0r0,-24r32,0r0,-187r-32,0r0,-23r103,0v79,0,124,40,124,117","w":251,"k":{"Y":20,"W":11,"V":13,"A":13,"-":-11}},"E":{"d":"10,0r0,-24r32,0r0,-187r-32,0r0,-23r197,0r0,71r-26,0r0,-48r-108,0r0,80r53,0r0,-34r25,0r0,92r-25,0r0,-34r-53,0r0,83r108,0r0,-50r26,0r0,74r-197,0","w":233},"F":{"d":"42,-24r0,-187r-32,0r0,-23r192,0r0,73r-27,0r0,-50r-102,0r0,84r50,0r0,-35r25,0r0,93r-25,0r0,-34r-50,0r0,79r41,0r0,24r-104,0r0,-24r32,0","w":216,"k":{"y":20,"u":16,"r":36,"o":36,"i":13,"e":36,"a":36,"S":6,"A":33,";":21,":":21,".":65,"-":18,",":65}},"G":{"d":"131,-20v41,0,72,-29,69,-72r-37,0r0,-25r99,0r0,25r-30,0r0,92r-32,0r0,-32v-17,24,-38,36,-75,37v-68,1,-110,-51,-110,-122v0,-72,42,-122,113,-122v35,1,56,12,74,32r0,-27r26,0r0,82r-27,0v-3,-38,-29,-63,-69,-63v-53,1,-84,39,-84,95v0,58,28,101,83,100","w":275,"k":{"Y":20,"W":6,"A":6,"-":-15}},"H":{"d":"10,0r0,-24r32,0r0,-187r-32,0r0,-23r98,0r0,23r-35,0r0,80r121,0r0,-80r-35,0r0,-23r99,0r0,23r-32,0r0,187r32,0r0,24r-99,0r0,-24r35,0r0,-83r-121,0r0,83r35,0r0,24r-98,0","w":267},"I":{"d":"12,0r0,-24r32,0r0,-187r-32,0r0,-23r96,0r0,23r-32,0r0,187r32,0r0,24r-96,0","w":119},"J":{"d":"80,5v-51,-1,-70,-25,-70,-77r33,0v1,32,7,52,36,52v29,0,38,-18,38,-50r0,-141r-37,0r0,-23r97,0r0,23r-29,0v-7,88,30,219,-68,216","w":182},"K":{"d":"73,-127r91,-84r-28,0r0,-23r88,0r0,23r-19,0r-94,85r95,102r24,0r0,24r-94,0r0,-24r30,0xm10,0r0,-24r32,0r0,-187r-32,0r0,-23r98,0r0,23r-35,0r0,187r35,0r0,24r-98,0","w":225,"k":{"y":26,"u":13,"o":13,"e":6,"Y":13,"W":6,"U":13,"O":6,"C":6,"A":13,"-":11}},"L":{"d":"10,0r0,-24r32,0r0,-187r-32,0r0,-23r106,0r0,23r-43,0r0,187r97,0r0,-56r27,0r0,80r-187,0","w":216,"k":{"y":13,"u":6,"a":6,"Y":26,"W":26,"V":33,"U":13,"T":33,"-":-7}},"M":{"d":"42,-24r0,-187r-32,0r0,-23r85,0r67,193r68,-193r86,0r0,23r-32,0r0,187r32,0r0,24r-95,0r0,-24r32,0r0,-187r-3,0r-75,211r-27,0r-75,-211r-3,0r0,187r32,0r0,24r-92,0r0,-24r32,0","w":325},"N":{"d":"42,-24r0,-187r-32,0r0,-23r79,0r111,193r0,-170r-35,0r0,-23r96,0r0,23r-32,0r0,211r-43,0r-115,-200r0,176r35,0r0,24r-96,0r0,-24r32,0","w":268},"O":{"d":"133,-215v-55,0,-86,41,-85,98v0,58,30,97,85,97v54,0,84,-39,84,-97v0,-58,-29,-98,-84,-98xm133,5v-74,0,-118,-45,-118,-122v0,-76,44,-122,118,-122v74,0,118,46,118,122v0,77,-44,122,-118,122","w":265,"k":{"Y":20,"X":6,"V":13,"A":11,";":-7,":":-7,".":15,"-":-10,",":15}},"P":{"d":"200,-165v0,66,-58,72,-127,69r0,72r42,0r0,24r-105,0r0,-24r32,0r0,-187r-32,0r0,-23v85,2,190,-20,190,69xm168,-165v0,-49,-46,-47,-95,-46r0,91v48,0,95,5,95,-45","w":216,"k":{"y":6,"u":6,"s":20,"r":6,"o":20,"i":6,"e":20,"a":26,"Y":10,"W":6,"U":6,"A":29,";":16,":":16,".":86,"-":28,",":86}},"Q":{"d":"251,-121v0,48,-17,79,-47,98r66,-1r0,24v-39,1,-83,-1,-118,3v-86,10,-137,-37,-137,-120v0,-77,44,-122,118,-122v71,0,119,46,118,118xm133,-215v-55,0,-86,41,-85,98v0,58,30,97,85,97v54,0,84,-39,84,-97v0,-58,-29,-98,-84,-98","w":270},"R":{"d":"203,-172v-1,34,-21,54,-52,60v41,5,37,56,52,88r25,0r0,24r-50,0v-21,-39,-9,-107,-73,-103r-32,0r0,79r35,0r0,24r-98,0r0,-24r32,0r0,-187r-32,0r0,-23v82,4,195,-22,193,62xm170,-169v0,-47,-49,-42,-97,-42r0,85v47,1,97,2,97,-43","w":230,"k":{"y":6,"a":6,"Y":20,"W":13,"V":13,"T":10,"-":10}},"S":{"d":"183,-65v0,72,-109,89,-140,40r0,25r-26,0r0,-80r27,0v2,36,18,57,56,57v37,0,67,-34,41,-60v-33,-33,-124,-23,-124,-90v0,-67,96,-84,133,-41r0,-20r26,0r0,76r-26,0v9,-63,-98,-77,-102,-18v17,62,135,26,135,111","w":197,"k":{"O":-7,"C":-7}},"T":{"d":"35,-209r0,50r-28,0r0,-75r207,0r0,75r-28,0r0,-50r-60,0r0,185r39,0r0,24r-109,0r0,-24r39,0r0,-185r-60,0","w":220,"k":{"y":26,"w":26,"u":16,"s":41,"r":33,"o":34,"i":13,"e":34,"c":41,"a":41,"T":-7,"A":28,";":23,":":23,".":46,"-":33,",":46}},"U":{"d":"127,5v-58,0,-92,-32,-92,-89r0,-127r-30,0r0,-23r98,0r0,23r-36,0v6,77,-27,191,60,191v86,0,57,-112,62,-191r-36,0r0,-23r96,0r0,23r-31,0r0,127v0,56,-35,89,-91,89","w":253,"k":{"A":13}},"V":{"d":"2,-211r0,-23r91,0r0,23r-36,0r68,178r71,-178r-36,0r0,-23r88,0r0,23r-21,0r-85,211r-37,0r-82,-211r-21,0","w":250,"k":{"y":29,"u":29,"o":36,"i":13,"e":36,"a":36,"O":13,"A":33,";":24,":":24,".":60,"-":29,",":60}},"W":{"d":"4,-211r0,-23r88,0r0,23r-36,0r44,178r55,-201r44,0r57,201r42,-178r-36,0r0,-23r85,0r0,23r-19,0r-52,211r-42,0r-58,-208r-57,208r-43,0r-52,-211r-20,0","w":351,"k":{"y":23,"u":20,"r":29,"o":23,"i":13,"e":23,"a":36,"A":21,";":21,":":21,".":51,"-":21,",":51}},"X":{"d":"-5,0r0,-24r24,0r80,-99r-69,-88r-26,0r0,-23r96,0r0,23r-31,0r49,64r52,-64r-32,0r0,-23r95,0r0,23r-26,0r-70,87r78,100r23,0r0,24r-98,0r0,-24r37,0r-60,-76r-62,76r36,0r0,24r-96,0","w":236,"k":{"e":6,"O":6,"C":6,"A":6,"-":18}},"Y":{"d":"2,-211r0,-23r89,0r0,23r-33,0r59,85r58,-85r-34,0r0,-23r87,0r0,23r-19,0r-80,113r0,74r39,0r0,24r-109,0r0,-24r39,0r0,-74r-76,-113r-20,0","w":230,"k":{"u":33,"o":40,"i":20,"e":40,"a":43,"O":20,"C":20,"A":33,";":31,":":31,".":48,"-":43,",":48}},"Z":{"d":"14,0r0,-35r150,-174r-120,0r0,46r-28,0r0,-71r184,0r0,32r-153,176r128,0r0,-48r28,0r0,74r-189,0","w":216,"k":{"-":-7}},"[":{"d":"70,35r23,0r0,21r-53,0r0,-290r53,0r0,19r-23,0r0,250","w":118},"\\":{"d":"28,-239r106,272r-26,0r-106,-272r26,0","w":136},"]":{"d":"51,35r0,-250r-22,0r0,-19r52,0r0,290r-52,0r0,-21r22,0","w":118},"^":{"d":"194,-256r91,98r-27,0r-78,-77r-78,77r-28,0r92,-98r28,0","w":360},"_":{"d":"180,64r0,21r-180,0r0,-21r180,0","w":180},"`":{"d":"113,-188r-18,0r-50,-61r31,0","w":180},"a":{"d":"83,-18v34,0,53,-23,52,-59v-39,-2,-86,-4,-87,32v1,17,17,27,35,27xm97,-168v42,0,66,17,67,57r0,89r27,0r0,22r-55,0r0,-28v-18,47,-121,43,-118,-19v2,-51,59,-54,117,-52v2,-32,-9,-49,-41,-48v-25,1,-35,10,-39,32r-31,0v4,-36,30,-53,73,-53","w":195},"b":{"d":"117,-144v-33,0,-54,27,-54,62v0,36,20,64,54,64v34,0,54,-28,54,-63v0,-37,-20,-63,-54,-63xm202,-81v0,84,-107,114,-140,50r0,31r-55,0r0,-22r27,0r0,-190r-27,0r0,-22r56,0r0,101v13,-19,31,-33,61,-34v48,0,78,37,78,86","w":216},"c":{"d":"43,-82v0,66,85,86,96,27r28,0v-6,39,-29,59,-74,59v-50,0,-81,-35,-81,-86v0,-73,88,-115,130,-63r0,-19r22,0r0,62r-22,0v-2,-27,-19,-44,-47,-44v-35,1,-52,27,-52,64","w":180},"d":{"d":"99,-18v34,0,54,-29,54,-65v0,-36,-21,-62,-54,-62v-35,0,-55,27,-55,63v0,36,21,64,55,64xm92,-168v31,0,48,13,61,34r0,-78r-31,0r0,-22r60,0r0,212r27,0r0,22r-55,0r0,-31v-13,21,-31,35,-63,35v-48,0,-78,-37,-78,-86v0,-49,30,-87,79,-86","w":216},"e":{"d":"43,-75v-9,63,91,76,104,24r27,0v-8,36,-35,55,-79,55v-52,0,-83,-33,-83,-86v0,-79,98,-113,145,-62v14,16,22,39,22,69r-136,0xm148,-97v0,-45,-57,-67,-88,-37v-9,9,-15,21,-16,37r104,0","w":191},"f":{"d":"123,-211v-35,-9,-63,4,-56,47r38,0r0,21r-38,0r0,121r35,0r0,22r-92,0r0,-22r28,0r0,-121r-31,0r0,-21r31,0v-5,-60,26,-83,85,-72r0,25","w":107,"k":{"y":-13,"w":-13,"t":-13,".":6,",":6}},"g":{"d":"98,43v47,1,57,-25,55,-74v-13,19,-31,33,-61,33v-49,1,-75,-36,-79,-85v-7,-82,109,-115,141,-50r0,-31r55,0r0,21r-27,0r0,131v0,54,-27,76,-83,76v-43,0,-70,-11,-73,-49r29,0v4,21,18,27,43,28xm99,-21v34,0,54,-27,54,-61v0,-36,-20,-65,-54,-65v-33,0,-55,28,-55,64v0,36,20,62,55,62","w":216},"h":{"d":"112,-147v-58,0,-50,67,-49,125r31,0r0,22r-87,0r0,-22r27,0r0,-190r-27,0r0,-22r56,0r0,96v23,-44,113,-43,113,28r0,88r28,0r0,22r-87,0r0,-22r30,0v-5,-48,19,-125,-35,-125","w":208},"i":{"d":"36,-202r0,-32r32,0r0,32r-32,0xm10,0r0,-22r28,0r0,-121r-28,0r0,-21r58,0r0,142r27,0r0,22r-85,0","w":101},"j":{"d":"34,-202r0,-32r32,0r0,32r-32,0xm-4,38v22,2,41,2,40,-20r0,-161r-29,0r0,-21r59,0r0,182v3,43,-29,48,-70,44r0,-24","w":95},"k":{"d":"63,-22r31,0r0,22r-87,0r0,-22r27,0r0,-190r-27,0r0,-22r56,0r0,146r64,-55r-24,0r0,-21r81,0r0,21r-22,0r-45,39r52,82r18,0r0,22r-73,0r0,-22r21,0r-40,-64r-32,27r0,37","k":{"y":-7,"u":-7}},"l":{"d":"36,-212r-27,0r0,-22r57,0r0,212r27,0r0,22r-84,0r0,-22r27,0r0,-190","w":98},"m":{"d":"110,-147v-58,-1,-43,70,-45,125r28,0r0,22r-84,0r0,-22r27,0r0,-121r-27,0r0,-21r55,0r0,25v16,-36,92,-41,104,1v24,-42,109,-45,109,28r0,88r28,0r0,22r-85,0r0,-22r28,0v-6,-46,19,-123,-32,-125v-58,-2,-43,70,-45,125r28,0r0,22r-85,0r0,-22r28,0v-6,-46,20,-124,-32,-125","w":308},"n":{"d":"114,-147v-58,0,-50,67,-49,125r31,0r0,22r-87,0r0,-22r27,0r0,-121r-27,0r0,-21r55,0r0,28v14,-19,28,-30,57,-32v75,-5,56,80,58,146r27,0r0,22r-87,0r0,-22r30,0v-5,-48,19,-125,-35,-125","w":210},"o":{"d":"43,-82v0,37,18,63,53,63v34,0,52,-26,52,-63v0,-37,-17,-63,-52,-64v-36,0,-53,26,-53,64xm179,-82v0,53,-31,86,-83,86v-52,1,-84,-35,-84,-86v0,-53,32,-86,84,-86v52,0,83,33,83,86","w":191,"k":{"-":-7}},"p":{"d":"117,-145v-33,0,-54,29,-54,64v0,35,21,62,54,62v34,0,54,-26,54,-63v0,-36,-20,-63,-54,-63xm124,4v-30,0,-48,-13,-61,-34r0,67r31,0r0,22r-87,0r0,-22r27,0r0,-180r-27,0r0,-21r55,0r0,31v13,-22,30,-35,63,-35v48,0,77,37,77,86v0,50,-30,87,-78,86","w":216},"q":{"d":"99,-19v33,0,54,-27,54,-62v0,-35,-21,-64,-54,-64v-34,0,-55,27,-55,63v0,36,21,63,55,63xm91,-168v32,0,50,14,63,35r0,-31r55,0r0,21r-27,0r0,180r27,0r0,22r-87,0r0,-22r31,0r0,-67v-13,21,-31,34,-61,34v-48,1,-80,-37,-79,-86v0,-49,30,-86,78,-86","w":216},"r":{"d":"128,-142v-66,-11,-66,55,-63,120r35,0r0,22r-91,0r0,-22r27,0r0,-121r-27,0r0,-21r55,0r0,27v12,-21,33,-35,64,-31r0,26","w":132,"k":{"y":-13,"x":-13,"w":-13,"v":-13,"u":-7,"t":-13,"r":-7,"q":6,"o":6,"n":-7,"m":-7,"h":6,"g":6,"f":-7,"e":6,"d":6,"c":6,".":23,"-":6,",":23}},"s":{"d":"158,-47v0,56,-93,67,-116,26r0,21r-22,0r0,-57r23,0v-2,44,80,54,87,11v-8,-46,-108,-3,-108,-71v0,-54,88,-68,112,-29r0,-18r21,0r0,54r-21,0v3,-42,-80,-52,-84,-10v13,43,108,4,108,73","w":177},"t":{"d":"77,4v-72,0,-37,-90,-45,-147r-33,0r0,-21r33,0r0,-35r29,-11r0,46r51,0r0,21r-51,0r0,102v0,18,1,23,16,23v17,0,21,-12,21,-30r22,0v2,32,-14,52,-43,52","w":130},"u":{"d":"97,-17v58,2,48,-68,48,-125r-31,0r0,-22r60,0r0,142r28,0r0,22r-56,0r0,-28v-14,19,-28,30,-57,32v-74,5,-55,-80,-57,-146r-28,0r0,-22r57,0v7,54,-24,146,36,147","w":208},"v":{"d":"113,0r-36,0r-56,-143r-19,0r0,-21r79,0r0,21r-29,0r44,119r45,-119r-28,0r0,-21r76,0r0,21r-19,0","w":191,"k":{".":28,",":28}},"w":{"d":"109,0r-37,0r-48,-143r-20,0r0,-21r82,0r0,21r-30,0r36,118r45,-139r39,0r46,139r36,-118r-30,0r0,-21r80,0r0,21r-21,0r-49,143r-35,0r-48,-143","w":311,"k":{".":26,",":26}},"x":{"d":"78,0r-77,0r0,-22r18,0r57,-63r-55,-58r-17,0r0,-21r78,0r0,21r-25,0r40,44r38,-44r-25,0r0,-21r74,0r0,21r-17,0r-53,60r55,61r18,0r0,22r-80,0r0,-22r26,0r-41,-45r-39,45r25,0r0,22","w":187},"y":{"d":"2,-143r0,-21r79,0r0,21r-29,0r46,110r43,-110r-28,0r0,-21r76,0r0,21r-19,0r-73,178v-9,27,-32,32,-65,27r0,-24v31,10,45,-15,51,-38r-62,-143r-19,0","w":191,"k":{".":31,"-":6,",":31}},"z":{"d":"159,0r-142,0r0,-28r108,-115r-79,0r0,32r-24,0r0,-53r137,0r0,26r-109,116r84,0r0,-37r25,0r0,59","w":175},"{":{"d":"81,-153v0,-67,-1,-116,70,-107r0,23v-85,-22,-6,135,-79,144v41,6,35,53,35,101v0,37,8,44,44,43r0,22v-50,1,-70,-11,-70,-64v0,-49,8,-99,-51,-91r0,-22v38,1,51,-11,51,-49","w":180},"|":{"d":"101,-275r0,360r-22,0r0,-360r22,0","w":180},"}":{"d":"29,-260v50,0,72,10,70,65v-2,50,-6,98,51,91r0,22v-56,-8,-53,40,-51,91v2,55,-19,65,-70,64r0,-22v87,20,5,-135,79,-144v-41,-7,-35,-54,-35,-102v0,-36,-9,-44,-44,-43r0,-22","w":180},"~":{"d":"201,-105v28,0,46,-12,68,-28r0,23v-20,14,-39,24,-68,25v-33,1,-76,-26,-102,-24v-29,2,-46,12,-68,28r0,-23v20,-15,40,-25,68,-26v33,-1,74,25,102,25","w":299},"\u00a0":{"w":95}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1999 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":195,"face":{"font-family":"Serifa","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 6 7 3 3 5 5 2 2 4","ascent":"274","descent":"-86","x-height":"4","bbox":"0 -275 346 85","underline-thickness":"28.8281","underline-position":"-17.2266","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":97},"!":{"d":"68,-69r-32,0r-11,-166r53,0xm76,0r-50,0r0,-50r50,0r0,50","w":103},"\"":{"d":"69,-252r29,0r0,97r-29,0r0,-97xm15,-252r29,0r0,97r-29,0r0,-97","w":113},"#":{"d":"125,-150r-16,45r45,0r16,-45r-45,0xm129,-257r34,0r-27,77r44,0r27,-77r33,0r-27,77r52,0r-11,30r-51,0r-16,45r54,0r-11,30r-54,0r-27,76r-34,0r28,-76r-44,0r-28,76r-34,0r28,-76r-53,0r11,-30r52,0r16,-45r-55,0r10,-30r56,0","w":276},"$":{"d":"146,-128v61,24,40,136,-32,128r0,28r-35,0r0,-28v-11,-3,-19,-9,-26,-16r0,15r-40,0r0,-77r43,0v-3,30,16,44,43,45v21,0,35,-12,36,-32v0,-41,-105,-34,-116,-80v-11,-48,12,-90,60,-89r0,-31r34,0r0,31v11,1,20,5,25,12r0,-13r39,0r0,70v-12,-2,-32,4,-40,-2v1,-23,-18,-38,-41,-38v-28,0,-46,29,-27,49v9,10,67,21,77,28"},"%":{"d":"231,-95v-19,0,-24,16,-24,37v0,22,6,40,24,40v18,0,24,-19,25,-40v0,-22,-6,-37,-25,-37xm85,-217v-19,0,-24,15,-24,37v0,22,5,38,24,38v19,0,25,-16,25,-38v0,-22,-6,-37,-25,-37xm231,5v-38,0,-55,-22,-55,-62v0,-39,17,-61,55,-61v38,0,55,22,55,61v0,39,-17,62,-55,62xm85,-118v-37,0,-55,-22,-55,-61v0,-39,17,-61,55,-61v38,0,55,22,55,61v0,39,-18,61,-55,61xm88,5r-32,0r171,-245r32,0","w":315},"&":{"d":"102,-209v-34,1,-25,41,-5,56v15,-9,29,-15,29,-33v0,-14,-10,-23,-24,-23xm57,-67v-1,42,62,48,86,21r-57,-61v-15,8,-28,21,-29,40xm228,-109v-2,27,-14,46,-28,62r12,12r42,0r0,35r-67,0r-19,-19v-44,41,-166,32,-159,-49v3,-35,19,-58,49,-67v-46,-29,-23,-106,42,-106v38,0,70,19,70,55v0,33,-19,50,-45,60r49,51v7,-9,13,-21,14,-34r-20,0r0,-33r85,0r0,33r-25,0","w":266},"'":{"d":"15,-252r29,0r0,97r-29,0r0,-97","w":58},"(":{"d":"110,-240v-58,78,-59,233,0,310r-34,0v-30,-44,-51,-88,-51,-153v0,-64,23,-113,52,-157r33,0","w":119},")":{"d":"8,70v58,-78,58,-232,0,-310r33,0v29,45,52,93,52,157v0,63,-21,110,-51,153r-34,0","w":119},"*":{"d":"73,-235r34,0r-3,41r38,-17r9,33r-40,9r28,32r-27,19r-21,-35r-22,35r-27,-19r27,-32r-41,-9r11,-33r38,17","w":180},"+":{"d":"135,-215r30,0r0,93r90,0r0,29r-90,0r0,93r-30,0r0,-93r-90,0r0,-29r90,0r0,-93","w":299},",":{"d":"44,0r-21,0r0,-52r52,0r0,53r-17,46r-33,0","w":97},"-":{"d":"100,-67r-82,0r0,-37r82,0r0,37","w":118,"k":{"o":-7,"Y":28,"X":13,"W":20,"V":21,"T":33,"O":-13,"J":-20,"G":-13,"C":-7,"A":6}},".":{"d":"75,0r-53,0r0,-53r53,0r0,53","w":97},"\/":{"d":"34,33r-32,0r102,-272r31,0","w":137},"0":{"d":"98,-206v-37,6,-35,35,-35,88v0,53,-2,82,35,88v36,-5,35,-38,35,-88v0,-53,1,-81,-35,-88xm98,5v-67,0,-85,-46,-85,-122v0,-75,19,-123,85,-123v67,0,85,49,85,123v0,74,-19,122,-85,122"},"1":{"d":"131,-235r0,200r35,0r0,35r-119,0r0,-35r36,0r0,-158v-15,14,-26,24,-49,38r0,-45v9,-4,32,-24,49,-35r48,0"},"2":{"d":"103,-241v77,-5,95,87,44,131v-24,21,-55,52,-81,75r73,0r0,-32r42,0r0,67r-168,0r0,-47v46,-36,125,-111,115,-128v1,-19,-10,-32,-28,-32v-25,0,-35,16,-36,41v-15,-2,-37,4,-48,-2v0,-51,35,-70,87,-73"},"3":{"d":"181,-66v7,74,-102,88,-147,53v-15,-11,-21,-32,-21,-56r49,0v0,26,11,38,36,38v22,0,36,-13,36,-35v0,-28,-20,-40,-53,-37r0,-37v29,2,49,-7,49,-33v0,-20,-10,-34,-31,-33v-22,1,-33,15,-34,37r-49,0v3,-48,32,-70,83,-71v45,-1,79,23,79,65v0,34,-18,46,-47,52r0,3v33,2,47,21,50,54"},"4":{"d":"187,0r-105,0r0,-35r31,0r0,-22r-107,0r0,-45r97,-133r57,0r0,144r28,0r0,34r-28,0r0,22r27,0r0,35xm113,-91r0,-107r-75,107r75,0"},"5":{"d":"183,-79v11,81,-90,106,-143,68v-14,-10,-20,-28,-21,-50r48,0v2,19,11,31,31,31v24,0,35,-19,35,-45v0,-27,-10,-46,-34,-46v-20,0,-28,12,-31,31r-47,0r2,-145r149,0r0,33r-103,0r-1,67v36,-49,124,-10,115,56"},"6":{"d":"100,-123v-24,0,-34,20,-34,47v0,26,9,46,33,46v25,1,34,-19,34,-46v0,-27,-9,-47,-33,-47xm131,-177v1,-34,-45,-37,-58,-10v-6,13,-10,32,-11,58v31,-55,121,-20,121,49v0,53,-31,86,-84,85v-62,-1,-85,-44,-85,-111v0,-79,24,-131,95,-133v41,-1,67,23,68,62r-46,0"},"7":{"d":"184,-194v-36,65,-64,124,-84,194r-53,0v27,-70,58,-138,94,-202r-81,0r0,42r-43,0r0,-75r167,0r0,41"},"8":{"d":"129,-173v0,-20,-13,-33,-31,-33v-19,0,-30,14,-30,34v0,19,13,31,31,31v17,0,30,-13,30,-32xm99,-103v-21,0,-33,16,-33,37v0,24,11,36,33,36v20,1,32,-15,32,-36v0,-20,-12,-37,-32,-37xm99,5v-85,0,-112,-114,-31,-125r0,-3v-28,-9,-46,-20,-46,-52v-1,-42,32,-65,77,-65v45,0,79,23,79,65v-1,30,-20,44,-47,52r0,3v31,7,50,21,50,56v0,46,-33,69,-82,69"},"9":{"d":"97,-111v24,0,33,-20,33,-47v0,-27,-8,-46,-33,-46v-25,0,-34,19,-34,46v0,27,10,47,34,47xm65,-57v-1,35,45,37,58,10v6,-13,10,-32,11,-58v-31,55,-121,20,-121,-49v0,-53,31,-86,84,-85v63,0,85,44,85,111v0,78,-24,131,-94,133v-42,1,-67,-22,-68,-62r45,0"},":":{"d":"75,-115r-53,0r0,-52r53,0r0,52xm75,0r-53,0r0,-53r53,0r0,53","w":97},";":{"d":"75,-115r-52,0r0,-52r52,0r0,52xm44,0r-21,0r0,-52r52,0r0,53r-17,46r-33,0","w":97},"<":{"d":"253,-207r0,33r-164,67r164,67r0,32r-207,-85r0,-28","w":299},"=":{"d":"45,-86r210,0r0,29r-210,0r0,-29xm45,-158r210,0r0,29r-210,0r0,-29","w":299},">":{"d":"46,-207r207,86r0,28r-207,85r0,-32r165,-67r-165,-67r0,-33","w":299},"?":{"d":"163,-176v0,54,-61,55,-58,109r-45,0v-9,-56,53,-78,53,-113v0,-15,-8,-26,-25,-25v-20,0,-29,15,-29,38r-48,0v-2,-51,27,-72,77,-72v43,0,75,21,75,63xm107,0r-49,0r0,-50r49,0r0,50","w":177},"@":{"d":"243,-20v-23,1,-37,-8,-37,-30v-11,18,-26,30,-53,30v-37,0,-54,-22,-55,-59v-1,-50,35,-99,83,-98v23,0,34,9,43,25r10,-19r27,0r-27,112v0,8,7,15,16,14v42,-6,63,-44,64,-89v2,-62,-54,-102,-119,-100v-92,2,-143,56,-149,143v-8,121,164,150,243,87r12,17v-31,23,-69,40,-119,40v-97,0,-165,-50,-165,-145v0,-105,72,-167,179,-167v85,0,147,42,147,125v0,63,-36,110,-100,114xm130,-78v0,36,39,46,60,24v22,-23,46,-99,-6,-101v-33,-1,-54,41,-54,77","w":360},"A":{"d":"96,-108r70,0r-34,-90xm2,0r0,-35r19,0r83,-202r61,0r82,202r18,0r0,35r-99,0r0,-35r28,0r-14,-38r-97,0r-14,38r28,0r0,35r-95,0","w":267,"k":{"y":13,"w":13,"v":15,"u":6,"t":6,"f":-7,"Y":23,"X":6,"W":16,"V":26,"U":13,"T":20,"Q":6,"O":6,"G":6,"C":6,"-":8}},"B":{"d":"159,-171v0,-35,-36,-32,-71,-31r0,65v36,1,71,3,71,-34xm166,-71v0,-39,-40,-34,-78,-34r0,70v39,1,78,3,78,-36xm217,-67v3,94,-123,61,-209,67r0,-35r30,0r0,-167r-30,0r0,-33v78,7,202,-29,202,57v0,33,-17,49,-46,54v33,4,52,22,53,57","w":233,"k":{"Y":13,"W":6,"V":6,"-":-10}},"C":{"d":"133,-30v34,0,48,-20,53,-51r50,0v-6,58,-39,86,-102,86v-78,1,-120,-46,-120,-124v0,-70,41,-121,108,-121v33,0,57,11,70,33r0,-26r42,0r0,85r-45,0v-6,-35,-19,-58,-56,-58v-44,0,-66,41,-66,89v0,48,22,87,66,87","w":246,"k":{"Y":13,"A":6,"-":-8}},"D":{"d":"202,-120v0,-65,-43,-89,-113,-82r0,167v71,7,113,-19,113,-85xm253,-119v0,81,-41,119,-122,119r-123,0r0,-35r30,0r0,-167r-30,0r0,-33r119,0v87,-4,126,38,126,116","w":266,"k":{"Y":6,"W":6,"V":6,"A":6,"-":-11}},"E":{"d":"8,0r0,-35r30,0r0,-167r-30,0r0,-33r209,0r0,69r-39,0r0,-36r-89,0r0,66r32,0r0,-32r37,0r0,95r-37,0r0,-31r-32,0r0,69r88,0r0,-42r40,0r0,77r-209,0","w":232},"F":{"d":"38,-35r0,-167r-31,0r0,-33r210,0r0,78r-39,0r0,-45r-89,0r0,68r32,0r0,-30r37,0r0,96r-37,0r0,-33r-32,0r0,66r31,0r0,35r-113,0r0,-35r31,0","w":225,"k":{"y":20,"u":20,"r":20,"o":33,"i":6,"e":33,"a":26,"A":29,".":71,"-":24,",":71}},"G":{"d":"127,-240v35,0,55,8,70,27r0,-22r43,0r0,82r-44,0v-3,-31,-24,-52,-57,-52v-46,0,-71,38,-71,88v0,67,61,111,109,72v11,-9,15,-23,16,-41r-33,0r0,-35r105,0r0,34r-23,0r0,87r-45,0r0,-26v-9,22,-34,31,-67,31v-73,0,-116,-49,-116,-124v0,-72,41,-123,113,-121","w":274,"k":{"Y":6,"W":6,"T":6,"-":-8}},"H":{"d":"8,0r0,-35r30,0r0,-167r-30,0r0,-33r114,0r0,33r-33,0r0,64r99,0r0,-64r-33,0r0,-33r114,0r0,33r-31,0r0,167r31,0r0,35r-114,0r0,-35r33,0r0,-68r-99,0r0,68r33,0r0,35r-114,0","w":276},"I":{"d":"38,-35r0,-167r-30,0r0,-33r111,0r0,33r-31,0r0,167r31,0r0,35r-111,0r0,-35r30,0","w":124},"J":{"d":"79,-30v19,0,26,-10,26,-30r0,-142r-39,0r0,-33r116,0r0,33r-27,0r0,141v0,47,-28,66,-77,66v-54,0,-77,-28,-72,-83r49,0v0,26,-1,48,24,48","w":193,"k":{"A":10}},"K":{"d":"38,-35r0,-167r-28,0r0,-33r107,0r0,33r-29,0r0,75r72,-75r-20,0r0,-33r102,0r0,33r-22,0r-76,77r78,90r23,0r0,35r-108,0r0,-35r26,0r-75,-85r0,85r29,0r0,35r-107,0r0,-35r28,0","w":249,"k":{"y":20,"u":13,"o":6,"e":6,"Y":13,"W":13,"U":6,"O":6,"C":6,"A":6,"-":11}},"L":{"d":"38,-35r0,-167r-30,0r0,-33r114,0r0,33r-34,0r0,167r74,0r0,-48r42,0r0,83r-196,0r0,-35r30,0","w":216,"k":{"y":13,"u":6,"a":-7,"Y":33,"W":26,"V":33,"U":20,"T":26,"-":-7}},"M":{"d":"38,-35r0,-166r-29,0r0,-34r108,0r48,177r50,-177r108,0r0,34r-30,0r0,166r30,0r0,35r-102,0r0,-35r27,0r0,-166r-60,201r-50,0r-59,-201r0,166r25,0r0,35r-95,0r0,-35r29,0","w":331},"N":{"d":"38,-35r0,-167r-30,0r0,-33r100,0r90,179r0,-146r-30,0r0,-33r101,0r0,33r-27,0r0,202r-63,0r-97,-190r0,155r30,0r0,35r-104,0r0,-35r30,0","w":280},"O":{"d":"136,-205v-47,0,-68,36,-68,87v0,51,21,87,68,87v47,0,68,-35,68,-87v0,-52,-21,-87,-68,-87xm136,5v-74,0,-122,-48,-122,-122v0,-75,47,-123,122,-123v75,0,122,47,122,123v0,75,-47,122,-122,122","w":272,"k":{"Y":13,"X":6,"V":6,"A":6,";":-7,":":-7,".":15,"-":-10,",":15}},"P":{"d":"166,-164v0,-41,-37,-39,-77,-38r0,79v41,2,77,2,77,-41xm217,-162v0,70,-56,75,-128,72r0,55r39,0r0,35r-119,0r0,-35r30,0r0,-167r-30,0r0,-33v89,4,208,-26,208,73","w":233,"k":{"y":6,"u":6,"s":13,"r":6,"o":20,"n":13,"i":6,"e":20,"a":20,"Y":6,"W":6,"U":6,"A":26,";":16,":":16,".":73,"-":28,",":73}},"Q":{"d":"205,-31v17,-4,40,-4,63,-4r0,35v-47,-1,-91,3,-132,5v-75,3,-122,-47,-122,-123v0,-74,48,-122,122,-122v118,0,167,159,69,209xm136,-206v-48,0,-70,36,-70,88v0,52,22,88,70,88v48,0,71,-36,71,-88v0,-52,-23,-88,-71,-88","w":272},"R":{"d":"170,-167v0,-39,-42,-36,-81,-35r0,72v40,1,81,4,81,-37xm221,-170v0,36,-19,51,-54,56v42,3,44,46,55,79r23,0r0,35r-65,0v-18,-37,-5,-102,-64,-98r-27,0r0,63r38,0r0,35r-119,0r0,-35r30,0r0,-167r-30,0r0,-33v86,6,215,-28,213,65","w":251,"k":{"y":6,"u":8,"o":6,"e":6,"a":-7,"Y":13,"W":13,"V":13,"T":6,"C":6}},"S":{"d":"189,-94v30,88,-90,130,-135,74r0,21r-42,0r0,-81r43,0v-2,33,15,50,47,50v22,0,39,-11,39,-33v0,-17,-26,-31,-56,-39v-50,-13,-66,-21,-71,-69v-7,-67,94,-90,130,-46r0,-18r42,0r0,73r-42,0v-1,-25,-18,-43,-44,-43v-28,0,-47,31,-26,47v30,23,103,27,115,64","w":205},"T":{"d":"88,-35r0,-167r-38,0r0,47r-42,0r0,-80r210,0r0,80r-42,0r0,-47r-38,0r0,167r33,0r0,35r-117,0r0,-35r34,0","w":226,"k":{"y":20,"w":20,"u":10,"s":13,"r":6,"o":21,"i":6,"e":21,"c":21,"a":21,"A":20,".":46,"-":33,",":46}},"U":{"d":"138,5v-67,0,-100,-27,-100,-91r0,-115r-30,0r0,-34r111,0r0,34r-30,0v7,66,-27,171,49,171v76,0,42,-105,49,-171r-30,0r0,-34r111,0r0,34r-31,0r0,115v0,64,-33,91,-99,91","w":275,"k":{"A":6}},"V":{"d":"2,-201r0,-34r106,0r0,34r-34,0r61,156r59,-156r-33,0r0,-34r101,0r0,34r-19,0r-82,201r-57,0r-82,-201r-20,0","w":264,"k":{"y":26,"u":20,"o":33,"i":13,"e":36,"a":33,"O":6,"A":29,";":24,":":24,".":60,"-":29,",":60}},"W":{"d":"4,-202r0,-33r96,0r0,33r-30,0r32,157r44,-190r64,0r43,190r34,-157r-31,0r0,-33r90,0r0,33r-16,0r-49,202r-62,0r-44,-199r-46,199r-61,0r-48,-202r-16,0","w":349,"k":{"y":13,"u":16,"r":16,"o":18,"i":13,"e":18,"a":20,"A":18,";":8,":":8,".":31,"-":21,",":31}},"X":{"d":"4,0r0,-35r14,0r75,-86r-71,-80r-14,0r0,-34r104,0r0,34r-30,0r44,52r45,-52r-26,0r0,-34r99,0r0,34r-14,0r-75,81r73,85r18,0r0,35r-102,0r0,-35r27,0r-49,-56r-47,56r26,0r0,35r-97,0","w":249,"k":{"e":6,"O":6,"C":6,"A":6,"-":18}},"Y":{"d":"2,-202r0,-33r108,0r0,33r-30,0r46,76r48,-76r-30,0r0,-33r101,0r0,33r-18,0r-78,116r0,51r30,0r0,35r-110,0r0,-35r30,0r0,-51r-79,-116r-18,0","w":247,"k":{"u":31,"o":43,"i":13,"e":43,"a":31,"O":13,"C":13,"A":26,";":31,":":31,".":48,"-":43,",":48}},"Z":{"d":"212,0r-205,0r0,-46r143,-155r-98,0r0,42r-41,0r0,-76r198,0r0,42r-143,158r105,0r0,-47r41,0r0,82","w":214},"[":{"d":"104,67r-74,0r0,-302r74,0r0,28r-32,0r0,245r32,0r0,29","w":120},"\\":{"d":"33,-239r102,272r-32,0r-101,-272r31,0","w":137},"]":{"d":"17,67r0,-29r32,0r0,-244r-32,0r0,-29r74,0r0,302r-74,0","w":120},"^":{"d":"161,-257r38,0r87,99r-36,0r-70,-70r-70,70r-37,0","w":360},"_":{"d":"0,55r180,0r0,30r-180,0r0,-30","w":180},"`":{"d":"38,-257r46,0r34,65r-24,0","w":180},"a":{"d":"57,-53v-2,29,41,28,54,11v7,-8,10,-19,11,-33v-28,-2,-64,-3,-65,22xm89,-172v50,0,77,12,78,59r0,80r21,0r0,33r-66,0r0,-23v-23,44,-114,34,-114,-26v0,-55,55,-59,114,-56v3,-24,-10,-35,-32,-35v-18,0,-28,8,-30,24r-44,0v2,-42,28,-56,73,-56"},"b":{"d":"118,-133v-27,1,-40,22,-40,51v0,28,14,51,40,51v26,-1,41,-22,41,-51v0,-29,-13,-51,-41,-51xm133,4v-30,0,-44,-14,-57,-34r0,30r-66,0r0,-33r23,0r0,-169r-23,0r0,-33r71,0r0,96v10,-19,26,-31,53,-31v47,0,72,36,72,87v0,49,-26,88,-73,87","w":217},"c":{"d":"83,-172v24,0,41,11,50,27r0,-22r35,0r0,64r-38,0v0,-21,-12,-35,-33,-35v-26,1,-37,23,-37,53v-10,51,59,75,69,27r41,0v-1,40,-29,63,-72,62v-57,0,-87,-32,-87,-90v0,-48,26,-87,72,-86","w":180},"d":{"d":"100,-137v-28,1,-41,22,-40,53v0,29,13,51,40,52v26,0,40,-24,40,-52v0,-30,-13,-53,-40,-53xm11,-84v0,-81,90,-115,129,-59r0,-59r-23,0r0,-33r70,0r0,202r24,0r0,33r-66,0r0,-33v-14,22,-31,37,-62,37v-46,0,-72,-39,-72,-88","w":216},"e":{"d":"133,-101v5,-35,-41,-50,-62,-27v-7,7,-11,16,-11,27r73,0xm60,-70v-7,45,63,53,74,18r44,0v-8,38,-33,55,-78,56v-56,0,-88,-31,-88,-87v0,-53,32,-90,85,-89v58,0,88,40,82,101","w":191,"k":{"x":6}},"f":{"d":"136,-204v-26,-14,-57,-2,-51,36r38,1r0,31r-38,0r0,103r29,0r0,33r-105,0r0,-33r29,0r0,-103r-29,0r0,-31r29,0v-10,-65,37,-86,98,-74r0,37","w":133,"k":{"y":-7,"w":-7,"t":-7}},"g":{"d":"11,-89v0,-77,90,-111,125,-55r0,-23r71,0r0,32r-24,0r0,114v15,87,-89,103,-145,72v-14,-8,-20,-23,-20,-42r50,0v8,36,75,25,71,-14r0,-25v-12,16,-31,27,-57,27v-46,1,-71,-38,-71,-86xm98,-37v26,0,38,-23,38,-51v0,-29,-12,-50,-38,-50v-27,0,-40,21,-40,50v0,28,14,51,40,51","w":212},"h":{"d":"121,-137v-47,-1,-41,56,-40,104r25,0r0,33r-95,0r0,-33r22,0r0,-169r-22,0r0,-33r69,0r0,94v14,-20,30,-30,59,-31v70,-4,57,73,58,139r23,0r0,33r-96,0r0,-33r26,0v-4,-40,15,-103,-29,-104","w":226},"i":{"d":"81,-192r-50,0r0,-47r50,0r0,47xm33,-33r0,-102r-23,0r0,-32r71,0r0,134r23,0r0,33r-95,0r0,-33r24,0","w":109},"j":{"d":"4,30v18,3,30,-2,29,-20r0,-145r-23,0r0,-32r71,0r0,183v4,47,-35,53,-77,46r0,-32xm81,-192r-50,0r0,-47r50,0r0,47","w":109},"k":{"d":"33,-33r0,-169r-21,0r0,-33r68,0r0,137r49,-37r-22,0r0,-32r94,0r0,32v-31,-2,-38,20,-58,29r50,73r15,0r0,33r-88,0r0,-33r21,0r-31,-47r-30,25r0,22r19,0r0,33r-88,0r0,-33r22,0","w":214},"l":{"d":"33,-33r0,-169r-23,0r0,-33r71,0r0,202r23,0r0,33r-95,0r0,-33r24,0","w":109},"m":{"d":"117,-137v-45,1,-37,58,-37,104r26,0r0,33r-96,0r0,-33r23,0r0,-102r-23,0r0,-32r69,0r0,26v19,-39,95,-41,112,0v11,-20,27,-29,55,-31v73,-5,58,73,59,139r22,0r0,33r-93,0r0,-33r24,0v-3,-41,14,-104,-29,-104v-43,1,-36,59,-36,104r23,0r0,33r-93,0r0,-33r23,0v-4,-40,15,-104,-29,-104","w":333},"n":{"d":"121,-137v-47,-1,-41,56,-40,104r25,0r0,33r-95,0r0,-33r22,0r0,-102r-22,0r0,-32r69,0r0,26v14,-20,30,-30,59,-31v70,-4,57,73,58,139r23,0r0,33r-96,0r0,-33r26,0v-4,-40,15,-103,-29,-104","w":226},"o":{"d":"100,-138v-29,0,-41,22,-40,54v0,32,11,54,39,54v29,0,41,-21,40,-54v0,-32,-10,-54,-39,-54xm99,4v-54,0,-88,-35,-88,-88v0,-53,36,-88,89,-88v53,0,88,35,88,88v0,53,-35,88,-89,88","w":199,"k":{"x":6,"-":-7}},"p":{"d":"118,-136v-27,0,-40,22,-40,51v0,29,13,50,40,50v28,0,41,-21,40,-50v0,-29,-13,-51,-40,-51xm134,2v-28,0,-44,-11,-53,-31r0,56r24,0r0,34r-95,0r0,-34r23,0r0,-162r-24,0r0,-32r67,0r0,32v12,-21,29,-35,59,-36v46,-1,70,39,70,88v0,51,-24,85,-71,85","w":217},"q":{"d":"98,-35v28,0,41,-21,41,-50v0,-29,-13,-51,-40,-51v-27,0,-41,22,-41,51v0,29,13,50,40,50xm82,-171v30,1,47,15,59,36r0,-32r66,0r0,32r-24,0r0,162r24,0r0,34r-95,0r0,-34r24,0r0,-56v-9,21,-26,31,-54,31v-47,0,-71,-35,-71,-85v0,-50,25,-89,71,-88","w":217},"r":{"d":"152,-131v-63,-11,-78,33,-72,98r24,0r0,33r-95,0r0,-33r24,0r0,-102r-23,0r0,-32r70,0r0,30v13,-25,36,-43,72,-33r0,39","w":152,"k":{"y":-13,"x":-13,"w":-13,"v":-13,"u":-13,"t":-17,"r":-10,"q":-7,"o":-7,"n":-10,"m":-10,"h":6,"g":-7,"f":-13,"d":-7,"c":-7,".":23,"-":13,",":23}},"s":{"d":"158,-50v0,56,-86,72,-110,30r0,21r-35,0r0,-60r35,0v0,28,54,42,60,12v3,-18,-79,-25,-86,-41v-26,-34,1,-89,50,-84v21,2,35,9,45,22r0,-17r34,0r0,54r-34,0v2,-26,-51,-40,-56,-11v-3,19,74,23,86,41v6,9,11,19,11,33","w":166},"t":{"d":"81,4v-74,0,-48,-78,-52,-138r-27,0r0,-33r27,0r0,-34r47,-17r0,51r45,0r0,33r-45,0r0,89v0,10,4,14,12,15v13,0,15,-12,15,-26r29,0v5,37,-14,60,-51,60","w":137},"u":{"d":"147,-27v-25,47,-130,43,-118,-33r0,-74r-21,0r0,-33r68,0r0,107v0,18,10,29,29,29v47,0,41,-55,40,-103r-21,0r0,-33r69,0r0,135r17,0r0,32r-63,0r0,-27","w":225},"v":{"d":"2,-135r0,-32r93,0r0,32r-23,0r35,97r37,-97r-24,0r0,-32r87,0r0,32r-17,0r-57,135r-57,0r-55,-135r-19,0","w":209,"k":{".":28,",":28}},"w":{"d":"4,-135r0,-32r85,0r0,32r-23,0r27,99r32,-131r66,0r33,131r26,-99r-23,0r0,-32r81,0r0,32r-14,0r-43,135r-60,0r-35,-135r-34,135r-62,0r-42,-135r-14,0","w":312,"k":{".":20,"-":-7,",":20}},"x":{"d":"4,0r0,-33r13,0r56,-57r-50,-45r-15,0r0,-32r87,0r0,32r-16,0r26,28r26,-28r-16,0r0,-32r80,0r0,32r-15,0r-49,46r56,56r12,0r0,33r-90,0r0,-33r21,0r-31,-35r-32,35r21,0r0,33r-84,0","w":203},"y":{"d":"2,-135r0,-32r93,0r0,32r-23,0r35,88r37,-88r-24,0r0,-32r87,0r0,32r-17,0r-79,167v-10,32,-41,37,-81,31r0,-36v27,7,49,1,51,-27r-60,-135r-19,0","w":209,"k":{".":38,"-":6,",":38}},"z":{"d":"176,0r-158,0r0,-38r99,-97r-58,0r0,24r-38,0r0,-56r153,0r0,36r-98,98r62,0r0,-28r38,0r0,61","w":196},"{":{"d":"77,-198v-2,-56,24,-63,77,-62r0,32v-81,-21,-4,130,-77,135v42,4,36,51,36,97v0,32,9,39,41,38r0,31v-52,1,-77,-6,-77,-61v0,-48,7,-98,-49,-90r0,-31v54,8,51,-40,49,-89","w":180},"|":{"d":"75,-275r31,0r0,360r-31,0r0,-360","w":180},"}":{"d":"103,-93v-76,-6,8,-151,-76,-135r0,-32v52,-1,76,7,76,62v0,48,-8,97,49,89r0,31v-55,-8,-51,40,-49,90v2,55,-24,62,-76,61r0,-31v82,18,1,-129,76,-135","w":180},"~":{"d":"99,-134v35,-2,75,23,103,23v28,-1,46,-12,67,-27r0,33v-20,13,-40,23,-67,24v-34,1,-78,-25,-103,-23v-29,2,-46,12,-68,28r0,-33v20,-13,40,-24,68,-25","w":299},"\u00a0":{"w":97}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1999 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":186,"face":{"font-family":"Serifa","font-weight":400,"font-style":"italic","font-stretch":"normal","units-per-em":"360","panose-1":"2 6 5 3 3 5 5 9 2 4","ascent":"274","descent":"-86","x-height":"4","bbox":"-32 -275 390 85","underline-thickness":"24.4336","underline-position":"-17.4023","slope":"-12","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":93},"!":{"d":"34,-55r32,-179r36,0r-45,179r-23,0xm50,0r-33,0r7,-32r33,0","w":100},"\"":{"d":"87,-252r0,97r-21,0r0,-97r21,0xm37,-252r0,97r-20,0r0,-97r20,0","w":103},"#":{"d":"171,-152r-46,0r-17,48r46,0xm162,-256r-29,83r46,0r29,-83r25,0r-29,83r54,0r-7,21r-55,0r-16,48r58,0r-8,22r-58,0r-29,82r-26,0r30,-82r-47,0r-30,82r-25,0r30,-82r-57,0r8,-22r56,0r17,-48r-60,0r7,-21r61,0r29,-83r26,0","w":276},"$":{"d":"113,-209v-51,-5,-64,60,-14,68xm94,-27v34,1,63,-30,42,-60v-5,-6,-13,-11,-25,-16xm177,-70v2,45,-41,75,-89,69r-7,34r-21,0r8,-37v-19,-2,-30,-10,-38,-23r-5,23r-30,0r17,-76r27,0v-4,28,9,47,35,50r18,-82v-34,-11,-59,-25,-59,-61v0,-41,38,-64,86,-61r7,-32r20,0r-7,35v14,5,24,10,34,21r5,-21r29,0r-16,72r-28,0v4,-27,-8,-42,-30,-47r-16,73v35,13,59,25,60,63"},"%":{"d":"199,5v-35,0,-49,-24,-49,-61v0,-37,14,-61,50,-61v35,0,48,24,48,61v0,38,-14,61,-49,61xm199,-98v-22,0,-28,18,-28,42v0,24,6,42,28,42v23,0,29,-17,29,-42v0,-25,-6,-42,-29,-42xm70,-220v-23,0,-29,17,-29,42v0,25,6,42,29,42v22,0,28,-18,28,-42v0,-24,-6,-42,-28,-42xm70,-117v-35,0,-49,-23,-49,-61v0,-38,14,-61,49,-61v35,0,49,23,49,61v-1,37,-15,61,-49,61xm79,5r-24,0r135,-244r24,0","w":254},"&":{"d":"126,-214v-41,-1,-39,48,-15,71v23,-11,46,-20,46,-46v0,-18,-12,-25,-31,-25xm51,-61v-1,53,85,50,111,20r-63,-72v-27,12,-47,20,-48,52xm235,-109v-6,31,-18,51,-36,70r13,15r38,0r-5,24r-49,0r-17,-21v-43,42,-160,37,-158,-38v1,-42,26,-60,62,-74v-12,-15,-21,-29,-22,-51v-1,-35,32,-55,69,-55v30,0,58,21,56,50v-2,36,-27,50,-59,67r55,63v11,-14,21,-30,23,-50r-26,0r5,-26r84,0r-5,26r-28,0","w":276},"'":{"d":"37,-252r0,97r-20,0r0,-97r20,0","w":53},"(":{"d":"146,-239v-72,62,-115,196,-65,302r-25,0v-16,-30,-25,-68,-25,-112v1,-86,38,-144,89,-190r26,0","w":118},")":{"d":"-24,63v71,-63,114,-194,65,-302r24,0v16,30,25,68,25,112v-2,85,-37,144,-88,190r-26,0","w":118},"*":{"d":"110,-163r-24,46r-23,-18r35,-36r-49,-8r9,-28r45,23r-7,-50r27,0r-7,50r45,-23r9,28r-49,8r36,36r-24,18","w":180},"+":{"d":"160,-215r0,97r95,0r0,21r-95,0r0,97r-20,0r0,-97r-95,0r0,-21r95,0r0,-97r20,0","w":299},",":{"d":"20,47r-24,0r31,-47r-12,0r7,-36r36,0v-4,36,-22,58,-38,83","w":93},"-":{"d":"17,-69r6,-26r78,0r-6,26r-78,0","w":118,"k":{"o":-7,"Y":41,"X":13,"W":20,"V":21,"T":33,"J":-20,"G":-13,"C":-7,"A":6}},".":{"d":"15,0r7,-36r36,0r-8,36r-35,0","w":93},"\/":{"d":"0,33r123,-269r27,0r-123,269r-27,0","w":150},"0":{"d":"87,-20v56,-9,68,-82,68,-144v0,-32,-9,-51,-38,-51v-57,0,-65,83,-69,144v-2,31,11,50,39,51xm86,4v-46,2,-69,-31,-68,-79v4,-81,22,-164,99,-164v47,0,71,32,69,82v-2,79,-22,157,-100,161"},"1":{"d":"35,0r5,-23r34,0r35,-169v-17,14,-36,24,-61,29r6,-32v26,-9,47,-20,62,-39r34,0r-45,211r33,0r-5,23r-98,0"},"2":{"d":"115,-239v72,-2,81,76,37,122v-21,21,-55,53,-107,92r92,0r8,-38r30,0r-14,63r-158,0r7,-35v53,-39,89,-69,109,-90v20,-21,29,-40,29,-57v0,-20,-14,-33,-34,-33v-30,1,-42,20,-48,48r-30,0v6,-45,30,-72,79,-72"},"3":{"d":"85,5v-46,0,-76,-23,-73,-71r30,0v-2,30,12,44,41,44v31,0,52,-18,52,-48v0,-29,-19,-38,-50,-38r5,-25v36,5,65,-11,65,-45v0,-24,-16,-37,-41,-37v-30,0,-44,17,-48,45r-30,0v4,-44,32,-69,81,-69v40,0,71,24,70,63v0,35,-23,55,-57,58v24,9,37,20,37,51v0,46,-34,73,-82,72"},"4":{"d":"69,0r5,-23r34,0r7,-38r-111,0r9,-39r121,-134r48,0r-31,148r34,0r-5,25r-34,0r-8,38r33,0r-5,23r-97,0xm121,-86r29,-131r-115,131r86,0"},"5":{"d":"88,5v-47,0,-73,-20,-73,-65r32,0v2,24,17,38,43,38v58,0,76,-103,12,-103v-21,0,-39,12,-44,30r-32,0r30,-139r141,0r-6,25r-111,0r-17,75v38,-34,117,-9,112,51v-4,52,-33,88,-87,88"},"6":{"d":"142,-82v0,-26,-14,-42,-40,-42v-33,-1,-55,28,-54,62v0,25,15,42,41,42v32,0,54,-29,53,-62xm19,-69v4,-80,21,-167,104,-170v42,-1,65,21,65,62r-30,0v5,-46,-55,-47,-75,-17v-10,15,-21,36,-28,66v37,-38,117,-24,117,46v0,50,-33,87,-83,87v-45,0,-72,-28,-70,-74"},"7":{"d":"51,0v34,-72,68,-130,115,-208r-103,0r-9,42r-27,0r15,-68r163,0r-7,29v-23,38,-43,75,-62,110v-19,35,-34,66,-47,95r-38,0"},"8":{"d":"139,-71v0,-24,-15,-38,-40,-38v-59,0,-79,89,-13,89v31,0,53,-21,53,-51xm120,-215v-29,0,-50,17,-50,47v0,24,15,35,38,35v30,1,51,-17,51,-46v0,-21,-16,-37,-39,-36xm192,-180v-1,35,-25,56,-60,60v25,7,38,21,38,51v0,45,-37,74,-84,74v-43,0,-73,-21,-73,-62v1,-38,26,-60,63,-64v-23,-8,-37,-22,-37,-51v0,-42,37,-66,83,-66v39,0,70,22,70,58"},"9":{"d":"60,-152v0,26,13,40,39,42v56,5,79,-104,14,-104v-32,-1,-53,29,-53,62xm183,-165v0,80,-22,168,-105,170v-41,1,-64,-22,-64,-62r29,0v-5,45,55,46,75,17v10,-15,20,-36,28,-66v-37,39,-117,23,-117,-46v0,-50,33,-88,83,-87v46,0,71,28,71,74"},":":{"d":"39,-128r8,-36r35,0r-7,36r-36,0xm12,0r8,-36r35,0r-8,36r-35,0","w":93},";":{"d":"39,-128r8,-36r35,0r-7,36r-36,0xm17,47r-21,0r28,-47r-12,0r8,-36r35,0v-4,36,-22,58,-38,83","w":93},"<":{"d":"253,-179r-175,72r175,71r0,23r-207,-85r0,-18r207,-85r0,22","w":299},"=":{"d":"255,-84r0,21r-210,0r0,-21r210,0xm255,-151r0,20r-210,0r0,-20r210,0","w":299},">":{"d":"253,-116r0,18r-207,85r0,-23r176,-71r-176,-72r0,-22","w":299},"?":{"d":"77,0r-32,0r7,-32r32,0xm179,-176v0,73,-87,57,-91,122r-31,0v6,-40,19,-57,50,-74v28,-15,40,-19,40,-48v0,-23,-15,-37,-40,-37v-29,0,-40,16,-44,42r-29,0v6,-44,28,-67,75,-68v41,0,70,23,70,63","w":185},"@":{"d":"43,-90v-7,128,167,151,248,90r8,12v-31,22,-67,39,-116,38v-97,-2,-163,-48,-163,-142v0,-104,72,-164,176,-164v83,0,144,40,144,119v0,66,-34,111,-97,116v-23,2,-37,-9,-35,-32v-10,18,-26,31,-52,32v-37,0,-51,-22,-55,-59v-7,-70,90,-134,126,-68r10,-22r20,0r-27,114v0,10,7,17,19,16v46,-5,68,-46,69,-95v2,-65,-55,-105,-125,-103v-92,3,-145,56,-150,148xm125,-78v0,40,42,50,67,27v20,-17,21,-48,30,-75v-4,-19,-16,-33,-37,-33v-37,0,-60,41,-60,81","w":360},"A":{"d":"98,-99r86,0r-22,-102xm-10,0r4,-24r22,0r134,-210r34,0r49,210r23,0r-5,24r-87,0r4,-24r32,0r-11,-51r-106,0r-32,51r31,0r-5,24r-87,0","w":266,"k":{"y":13,"w":15,"v":16,"u":6,"t":6,"q":6,"e":6,"d":6,"c":6,"Y":33,"X":6,"W":24,"V":26,"U":16,"T":26,"Q":11,"O":11,"G":11,"C":15,"-":8}},"B":{"d":"190,-175v0,-38,-48,-34,-88,-34r-16,76v49,0,104,3,104,-42xm174,-72v-1,-41,-50,-38,-93,-37r-18,83v53,0,112,6,111,-46xm207,-70v0,90,-123,67,-212,70r5,-24r31,0r39,-187r-31,0r5,-23v76,3,181,-19,180,59v0,33,-25,54,-58,56v24,5,41,21,41,49","w":231,"k":{"Y":20,"W":6,"V":6,"-":-10}},"C":{"d":"120,-19v47,-1,66,-22,76,-63r33,0v-13,53,-45,87,-108,87v-63,0,-100,-35,-99,-99v2,-85,42,-143,126,-145v38,-1,61,14,73,39r7,-34r31,0r-19,87r-28,0v1,-43,-21,-68,-63,-68v-62,0,-95,56,-94,123v0,45,21,73,65,73","w":248,"k":{"Y":13,"A":13,"-":-8}},"D":{"d":"244,-139v0,86,-50,140,-134,139r-116,0r5,-24r31,0r39,-187r-31,0r5,-23v101,-2,201,-9,201,95xm211,-136v0,-62,-44,-79,-110,-74r-39,184v92,10,149,-27,149,-110","w":249,"k":{"Y":20,"W":11,"V":13,"A":13,"-":-11}},"E":{"d":"-5,0r5,-24r31,0r39,-187r-31,0r5,-23r195,0r-14,69r-29,0r9,-46r-103,0r-17,78r52,0r7,-31r27,0r-19,93r-28,0r7,-34r-52,0r-17,81r109,0r10,-49r29,0r-16,73r-199,0","w":237},"F":{"d":"-5,0r5,-24r31,0r39,-187r-31,0r5,-23r193,0r-14,69r-29,0r9,-46r-101,0r-17,78r51,0r7,-31r27,0r-20,93r-27,0r7,-34r-51,0r-17,81r41,0r-5,24r-103,0","w":216,"k":{"y":20,"u":23,"r":23,"o":36,"i":20,"e":36,"a":36,"A":26,";":15,":":15,".":58,"-":18,",":58}},"G":{"d":"55,-92v0,68,74,92,116,54v13,-12,23,-30,30,-56r-41,0r5,-25r104,0r-5,25r-32,0r-20,94r-30,0r6,-28v-18,20,-38,31,-72,32v-59,0,-96,-37,-94,-98v2,-85,42,-143,126,-145v38,-1,61,14,73,39r7,-34r31,0r-19,87r-28,0v1,-43,-21,-68,-63,-68v-62,0,-94,56,-94,123","w":275,"k":{"Y":20,"A":6,"-":-15}},"H":{"d":"-5,0r5,-24r31,0r39,-187r-31,0r5,-23r93,0r-5,23r-30,0r-17,78r119,0r16,-78r-30,0r5,-23r93,0r-5,23r-31,0r-39,187r31,0r-5,24r-94,0r5,-24r31,0r17,-81r-119,0r-17,81r31,0r-5,24r-93,0","w":264},"I":{"d":"-3,0r5,-24r31,0r39,-187r-31,0r5,-23r94,0r-5,23r-31,0r-39,187r30,0r-5,24r-93,0","w":118},"J":{"d":"116,-11v-36,39,-130,11,-112,-58r32,0v-12,41,32,64,58,38v25,-44,31,-124,46,-180r-35,0r6,-23r96,0r-5,23r-31,0v-17,63,-18,160,-55,200","k":{"A":6}},"K":{"d":"-5,0r5,-24r31,0r39,-187r-31,0r5,-23r93,0r-5,23r-30,0r-16,75r101,-75r-28,0r5,-23r97,0r-5,23r-24,0r-116,85r79,102r22,0r-5,24r-87,0r5,-24r27,0r-74,-98r-21,98r31,0r-5,24r-93,0","w":236,"k":{"y":26,"u":20,"o":13,"e":13,"a":10,"Y":13,"W":13,"U":13,"O":26,"C":16,"A":13,"-":11}},"L":{"d":"-5,0r5,-24r31,0r39,-187r-31,0r5,-23r98,0r-5,23r-35,0r-40,187r96,0r12,-56r30,0r-17,80r-188,0","w":209,"k":{"y":13,"u":6,"Y":26,"W":26,"V":33,"U":20,"T":33,"-":-7}},"M":{"d":"-5,0r5,-24r31,0r39,-187r-31,0r5,-23r84,0r27,189r107,-189r81,0r-5,23r-31,0r-38,187r30,0r-5,24r-91,0r5,-24r31,0r38,-182r-118,206r-30,0r-30,-211r-39,187r33,0r-5,24r-93,0","w":320},"N":{"d":"-5,0r5,-24r31,0r39,-187r-31,0r5,-23r76,0r70,203r39,-180r-35,0r6,-23r92,0r-5,23r-30,0r-45,211r-41,0r-73,-211r-39,187r34,0r-5,24r-93,0","w":269},"O":{"d":"148,-215v-59,0,-91,56,-91,121v0,47,24,76,70,75v59,0,91,-55,91,-120v0,-48,-23,-76,-70,-76xm123,6v-63,0,-102,-37,-102,-100v-1,-84,48,-145,130,-145v65,-1,102,38,102,102v0,83,-49,144,-130,143","w":256,"k":{"Y":13,"X":13,"V":13,"A":11,";":-7,":":-7,".":15,"-":-10,",":15}},"P":{"d":"223,-171v-3,72,-63,82,-146,78r-14,69r34,0r-5,24r-97,0r5,-24r31,0r39,-187r-31,0r5,-23v78,3,182,-19,179,63xm189,-170v0,-42,-45,-40,-88,-39r-19,90v54,1,107,3,107,-51","w":218,"k":{"s":13,"r":6,"o":13,"e":13,"a":20,"Y":10,"W":6,"A":29,";":16,":":16,".":73,"-":28,",":73}},"Q":{"d":"220,-140v0,-46,-23,-75,-69,-75v-60,0,-96,56,-96,122v0,46,23,76,69,75v60,0,96,-57,96,-122xm253,-139v0,59,-22,94,-61,115r61,0r-5,24v-45,-1,-88,3,-128,5v-62,3,-99,-38,-99,-99v-1,-84,48,-145,128,-145v65,0,104,35,104,100","w":272},"R":{"d":"157,-114v44,3,48,47,39,90r21,0r-5,24r-51,0r7,-59v3,-47,-43,-42,-90,-42r-15,77r34,0r-5,24r-97,0r5,-24r31,0r39,-187r-31,0r5,-23v76,3,181,-19,179,61v-1,38,-27,57,-66,59xm189,-172v0,-42,-46,-38,-88,-37r-18,83v52,1,106,4,106,-46","w":237,"k":{"y":6,"u":6,"a":6,"Y":20,"W":20,"V":13,"T":10,"C":6,"A":6,"-":10}},"S":{"d":"181,-67v0,73,-111,95,-147,46r-4,21r-30,0r17,-77r28,0v-9,35,16,56,52,55v29,0,50,-13,50,-41v0,-47,-119,-45,-110,-110v-5,-70,105,-87,139,-40r5,-21r30,0r-15,73r-30,0v6,-34,-15,-52,-49,-51v-44,-8,-64,48,-28,66v38,19,92,26,92,79","w":196},"T":{"d":"54,0r5,-24r31,0r39,-185r-57,0r-10,47r-30,0r15,-72r209,0r-15,72r-30,0r9,-47r-59,0r-39,185r31,0r-5,24r-94,0","w":236,"k":{"y":33,"w":46,"u":50,"s":34,"r":26,"o":34,"i":13,"e":41,"c":41,"a":41,"T":6,"A":28,";":23,":":23,".":53,"-":33,",":53}},"U":{"d":"194,-16v-54,52,-170,16,-149,-84r23,-111r-31,0r5,-23r94,0r-5,23r-31,0v-9,48,-23,91,-28,142v-5,50,74,66,102,33v31,-36,34,-120,49,-175r-31,0r5,-23r94,0r-6,23r-30,0v-18,65,-20,156,-61,195","w":264,"k":{"J":6,"A":13}},"V":{"d":"51,-211r-21,0r5,-23r83,0r-4,23r-31,0r31,177r107,-177r-31,0r5,-23r94,0r-5,23r-27,0r-130,211r-37,0","w":258,"k":{"y":29,"u":36,"o":36,"i":13,"e":36,"a":36,"O":13,"A":33,";":24,":":24,".":60,"-":29,",":60}},"W":{"d":"53,-211r-20,0r5,-23r82,0r-5,23r-31,0r8,180r97,-203r42,0r12,203r82,-180r-31,0r6,-23r90,0r-6,23r-23,0r-104,211r-41,0r-12,-198r-96,198r-43,0","w":360,"k":{"y":16,"u":26,"r":23,"o":36,"i":13,"e":29,"a":36,"A":24,";":21,":":21,".":51,"-":21,",":51}},"X":{"d":"-13,0r5,-24r20,0r101,-102r-51,-85r-27,0r5,-23r93,0r-5,23r-29,0r39,68r63,-68r-28,0r5,-23r93,0r-5,23r-24,0r-89,91r59,96r23,0r-5,24r-94,0r5,-24r33,0r-45,-79r-75,79r31,0r-5,24r-93,0","w":248,"k":{"e":6,"O":13,"C":6,"A":6,"-":18}},"Y":{"d":"47,0r6,-24r34,0r15,-72r-53,-115r-19,0r5,-23r83,0r-5,23r-30,0r39,90r75,-90r-28,0r5,-23r90,0r-5,23r-19,0r-106,116r-16,71r33,0r-5,24r-99,0","w":233,"k":{"u":40,"o":40,"i":20,"e":40,"a":43,"O":13,"C":13,"A":33,";":31,":":31,".":55,"-":43,",":55}},"Z":{"d":"-1,0r8,-36r185,-175r-119,0r-9,45r-29,0r14,-68r184,0r-8,33r-188,177r123,0r11,-49r29,0r-16,73r-185,0","w":219,"k":{"-":-7}},"[":{"d":"68,58r-55,0r62,-292r55,0r-5,23r-27,0r-52,244r27,0","w":118},"\\":{"d":"118,33r-27,0r-65,-269r27,0","w":150},"]":{"d":"56,-234r55,0r-62,292r-55,0r5,-25r27,0r52,-244r-26,0","w":118},"^":{"d":"194,-256r91,98r-27,0r-78,-77r-78,77r-28,0r92,-98r28,0","w":360},"_":{"d":"180,64r0,21r-180,0r0,-21r180,0","w":180},"`":{"d":"130,-188r-18,0r-50,-61r29,0","w":180},"a":{"d":"40,-44v-1,34,53,29,71,10v10,-11,18,-24,21,-42v-42,-2,-91,-3,-92,32xm139,-119v-3,-42,-77,-33,-80,3r-27,0v-2,-64,136,-74,136,-8v0,35,-14,69,-20,102r30,0r-6,22r-54,0r5,-25v-19,42,-113,39,-113,-18v0,-56,65,-58,126,-55","w":195},"b":{"d":"115,5v-29,0,-50,-12,-57,-35r-6,30r-61,0r5,-22r27,0r41,-190r-28,0r5,-22r57,0r-19,91v37,-46,122,-22,122,46v0,54,-35,102,-86,102xm108,-21v60,7,94,-122,19,-124v-60,-8,-95,122,-19,124","w":212},"c":{"d":"82,-19v27,0,40,-16,47,-38r28,0v-5,39,-32,61,-74,61v-46,1,-73,-25,-73,-70v0,-79,84,-133,140,-83r4,-15r25,0r-13,61r-26,0v2,-29,-12,-43,-39,-43v-36,1,-62,39,-61,80v0,29,13,47,42,47","w":178},"d":{"d":"98,-168v30,-1,49,13,59,33r16,-77r-29,0r5,-22r59,0r-45,212r29,0r-5,22r-57,0r4,-21v-34,47,-120,23,-120,-45v0,-54,34,-102,84,-102xm44,-67v0,30,14,48,43,48v60,0,93,-123,18,-124v-36,-1,-61,38,-61,76","w":212},"e":{"d":"129,-52r29,0v-9,34,-35,57,-77,57v-47,0,-71,-25,-71,-72v0,-56,36,-101,90,-101v50,0,77,41,64,93r-125,0v-14,68,77,72,90,23xm138,-98v8,-47,-46,-60,-75,-36v-10,8,-16,20,-20,36r95,0","w":176},"f":{"d":"-7,0r5,-22r28,0r25,-121r-30,0r5,-21r30,0v3,-52,36,-85,96,-71r-6,23v-31,-7,-54,-1,-57,31r-4,17r39,0r-4,21r-39,0r-26,121r30,0r-5,22r-87,0","w":112,"k":{"t":-7,".":6,",":6}},"g":{"d":"105,-145v-60,-9,-91,115,-19,117v59,7,94,-116,19,-117xm97,-169v29,0,50,13,58,34r6,-29r60,0r-5,21r-27,0r-30,141v-10,46,-34,66,-87,66v-41,0,-71,-13,-71,-52r31,0v-1,34,58,33,79,17v15,-11,19,-35,24,-56v-37,41,-123,25,-123,-44v0,-51,35,-99,85,-98","w":212},"h":{"d":"152,-97v8,-25,0,-48,-27,-46v-55,3,-62,70,-73,121r29,0r-5,22r-85,0r5,-22r27,0r40,-190r-28,0r5,-22r57,0r-21,95v28,-49,122,-34,106,41r-16,76r25,0r-5,22r-81,0r5,-22r27,0","w":209},"i":{"d":"91,-200r-34,0r8,-34r33,0xm-8,0r5,-22r27,0r26,-121r-29,0r5,-21r57,0r-30,142r29,0r-5,22r-85,0","w":99},"j":{"d":"50,-143r-28,0r5,-21r57,0r-38,177v-5,43,-34,58,-78,46r5,-23v29,8,40,-5,46,-33xm91,-200r-34,0r8,-34r33,0","w":100},"k":{"d":"-9,0r5,-22r27,0r40,-190r-28,0r5,-22r57,0r-31,145r73,-54r-28,0r4,-21r87,0r-5,21r-19,0r-51,39r32,82r19,0r-5,22r-73,0r5,-22r23,0r-23,-67r-46,34r-7,33r29,0r-5,22r-85,0","w":198,"k":{"u":6,"a":6}},"l":{"d":"-11,0r5,-22r27,0r41,-190r-29,0r5,-22r57,0r-45,212r29,0r-5,22r-85,0","w":95},"m":{"d":"76,-139v16,-36,93,-42,99,7v17,-20,31,-36,61,-36v72,0,42,94,30,146r25,0r-5,22r-78,0r5,-22r24,0v5,-32,16,-60,18,-94v2,-36,-46,-31,-63,-9v-18,23,-25,68,-33,103r23,0r-5,22r-75,0r5,-22r23,0v5,-32,16,-59,18,-94v2,-36,-46,-32,-63,-9v-18,23,-25,68,-33,103r29,0r-5,22r-85,0r5,-22r27,0r25,-121r-28,0r5,-21r56,0","w":309},"n":{"d":"152,-97v8,-25,0,-48,-27,-46v-55,3,-62,70,-73,121r29,0r-5,22r-85,0r5,-22r27,0r25,-121r-28,0r5,-21r56,0r-5,25v28,-49,122,-34,106,41r-16,76r25,0r-5,22r-81,0r5,-22r27,0","w":209},"o":{"d":"83,-18v60,7,93,-126,18,-127v-60,-5,-92,123,-18,127xm85,4v-49,0,-74,-23,-75,-71v-2,-57,36,-102,91,-101v45,1,74,26,74,72v1,54,-37,101,-90,100","w":184,"k":{"-":-7}},"p":{"d":"168,-97v0,-29,-14,-48,-42,-48v-43,2,-61,39,-63,80v-1,26,18,44,44,44v36,0,61,-38,61,-76xm115,4v-30,0,-48,-13,-60,-33r-15,66r29,0r-5,22r-85,0r4,-22r28,0r39,-180r-29,0r5,-21r57,0r-4,17v40,-40,120,-19,120,49v0,53,-34,102,-84,102","w":212},"q":{"d":"97,-169v30,0,50,13,58,35r6,-30r60,0r-5,21r-27,0r-38,180r28,0r-5,22r-86,0r5,-22r29,0r12,-58v-38,44,-122,24,-122,-46v0,-52,35,-103,85,-102xm105,-144v-59,-7,-92,121,-19,125v60,6,93,-121,19,-125","w":212},"r":{"d":"76,-135v12,-23,36,-37,71,-32r-5,27v-71,-6,-78,60,-90,118r29,0r-5,22r-85,0r5,-22r27,0r25,-121r-28,0r5,-21r57,0","w":139,"k":{"z":-7,"y":-7,"x":-7,"w":-7,"v":-7,"q":6,"h":6,"g":6,".":23,"-":6,",":23}},"s":{"d":"138,-49v5,56,-87,70,-111,29r-4,20r-25,0r12,-59v8,2,26,-6,25,6v0,21,17,33,39,33v19,-1,35,-7,35,-25v0,-33,-92,-25,-84,-74v-3,-51,80,-64,108,-30r3,-15r25,0r-12,54r-24,0v4,-23,-12,-35,-36,-35v-19,0,-36,7,-36,23v8,33,90,22,85,73","w":158},"t":{"d":"72,4v-77,2,-36,-96,-27,-147r-28,0r5,-21r28,0r8,-36r29,-4r-8,40r53,0r-5,21r-53,0r-21,104v0,12,7,17,19,17v15,0,22,-12,25,-27r24,0v-4,30,-19,52,-49,53","w":140},"u":{"d":"58,-67v-8,25,0,48,27,46v56,-3,62,-70,73,-122r-29,0r5,-21r58,0r-30,142r28,0r-5,22r-57,0r6,-24v-30,48,-122,33,-106,-42r17,-77r-26,0r5,-21r54,0","w":209},"v":{"d":"90,0r-38,0r-24,-143r-19,0r4,-21r75,0r-6,21r-27,0r21,119r69,-119r-28,0r5,-21r79,0r-5,21r-20,0","w":187,"k":{".":28,",":28}},"w":{"d":"86,0r-38,0r-21,-143r-19,0r5,-21r74,0r-5,21r-27,0r16,117r73,-138r38,0r16,138r61,-117r-25,0r6,-21r76,0r-4,21r-20,0r-81,143r-38,0r-15,-138","w":307,"k":{".":26,",":26}},"x":{"d":"-15,0r5,-22r19,0r71,-65r-42,-56r-19,0r5,-21r75,0r-5,21r-23,0r29,40r42,-40r-23,0r5,-21r80,0r-5,21r-18,0r-67,60r45,61r22,0r-5,22r-78,0r5,-22r24,0r-33,-45r-48,45r26,0r-5,22r-82,0","w":196},"y":{"d":"-5,35v35,9,53,-7,65,-36r-31,-142r-17,0r5,-21r73,0r-5,21r-28,0r25,113r67,-113r-27,0r5,-21r77,0r-5,21r-17,0r-105,171v-16,31,-47,43,-89,31","w":194,"k":{".":31,"-":6,",":31}},"z":{"d":"0,0r6,-29r126,-114r-75,0r-7,35r-25,0r12,-56r139,0r-6,26r-129,116r81,0r8,-37r26,0r-13,59r-143,0","w":177},"{":{"d":"81,-153v0,-67,-1,-116,70,-107r0,23v-85,-22,-6,135,-79,144v41,6,35,53,35,101v0,37,8,44,44,43r0,22v-50,1,-70,-11,-70,-64v0,-49,8,-99,-51,-91r0,-22v38,1,51,-11,51,-49","w":180},"|":{"d":"101,-275r0,360r-22,0r0,-360r22,0","w":180},"}":{"d":"29,-260v50,0,72,10,70,65v-2,50,-6,98,51,91r0,22v-56,-8,-53,40,-51,91v2,55,-19,65,-70,64r0,-22v87,20,5,-135,79,-144v-41,-7,-35,-54,-35,-102v0,-36,-9,-44,-44,-43r0,-22","w":180},"~":{"d":"201,-105v28,0,46,-12,68,-28r0,23v-20,14,-39,24,-68,25v-33,1,-76,-26,-102,-24v-29,2,-46,12,-68,28r0,-23v20,-15,40,-25,68,-26v33,-1,74,25,102,25","w":299},"\u00a0":{"w":93}}});
;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * 2011 Joerg Hemker published by FSI FontShop International GmbH
 * 
 * Trademark:
 * Sero is a trademark of FSI FontShop International GmbH
 * 
 * Manufacturer:
 * FSI
 * 
 * Designer:
 * Joerg Hemker
 * 
 * Vendor URL:
 * http://www.fontfont.com
 * 
 * License information:
 * http://www.fontfont.com/eula/license.html
 */
Cufon.registerFont({"w":205,"face":{"font-family":"Sero","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 4 2 1 1 2 1 2","ascent":"280","descent":"-80","x-height":"4","bbox":"-8 -288 334 80","underline-thickness":"32.04","underline-position":"-4.68","stemh":"35","stemv":"45","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":79},"!":{"d":"59,4v-16,0,-27,-11,-27,-25v0,-14,11,-26,27,-26v16,0,27,12,27,26v0,14,-11,25,-27,25xm42,-77r-9,-182r52,0r-8,182r-35,0","w":118},"\"":{"d":"94,-160r-3,-99r38,0r-3,99r-32,0xm28,-160r-2,-99r37,0r-3,99r-32,0","w":154,"k":{"A":16,"J":21}},"#":{"d":"99,0r15,-71r-44,0r-15,71r-37,0r15,-71r-28,0r0,-32r35,0r8,-38r-31,0r0,-33r38,0r16,-71r36,0r-16,71r45,0r15,-71r37,0r-16,71r29,0r0,33r-36,0r-8,38r32,0r0,32r-39,0r-15,71r-36,0xm85,-141r-8,38r44,0r8,-38r-44,0"},"$":{"d":"88,36r0,-36v-26,-1,-52,-9,-73,-21r11,-38v30,25,117,37,117,-15v0,-56,-122,-25,-122,-110v0,-40,26,-68,67,-74r0,-30r28,0r0,29v24,1,45,10,63,21r-11,39v-28,-25,-103,-34,-103,11v0,52,123,21,123,109v0,41,-27,71,-72,78r0,37r-28,0","w":202},"%":{"d":"132,-202v0,34,-21,61,-57,61v-35,0,-57,-26,-57,-60v0,-34,22,-60,58,-60v35,0,56,25,56,59xm99,-201v0,-22,-8,-34,-24,-34v-16,0,-24,12,-24,34v0,22,8,35,24,35v16,0,24,-13,24,-35xm43,0r161,-259r38,0r-161,259r-38,0xm266,-58v0,34,-21,60,-57,60v-35,0,-56,-26,-56,-60v0,-34,21,-60,57,-60v35,0,56,26,56,60xm233,-58v0,-22,-7,-34,-23,-34v-16,0,-24,12,-24,34v0,22,8,35,24,35v16,0,23,-13,23,-35","w":284},"&":{"d":"63,-132v-46,-37,-28,-117,48,-117v45,0,71,25,71,56v0,33,-29,50,-61,66r44,47v7,-10,13,-21,20,-34r30,17v-8,15,-17,29,-27,42r29,30r-29,29r-27,-30v-40,45,-152,41,-152,-35v0,-34,21,-53,54,-71xm53,-64v0,42,62,44,86,14r-54,-58v-18,11,-32,24,-32,44xm112,-216v-44,0,-41,45,-13,67v25,-13,44,-22,44,-41v0,-14,-10,-26,-31,-26","w":222},"'":{"d":"28,-160r-2,-99r37,0r-3,99r-32,0","w":87,"k":{"A":16,"J":21}},"(":{"d":"59,-99v0,70,31,114,63,144r-22,22v-36,-31,-86,-79,-86,-166v0,-87,50,-136,86,-167r22,22v-32,30,-63,75,-63,145","w":132,"k":{"v":-1,"V":-1,"T":-4,"Y":-3,"y":-1,"s":8,"J":9,"j":-17}},")":{"d":"74,-99v0,-70,-32,-115,-64,-145r23,-22v36,31,86,80,86,167v0,87,-50,135,-86,166r-23,-22v32,-30,64,-74,64,-144","w":132},"*":{"d":"77,-175r-21,42r-23,-13r27,-39r-48,2r0,-26r48,2r-27,-39r23,-13r21,42r22,-42r22,13r-26,39r48,-2r0,26r-48,-2r26,39r-22,13","w":154,"k":{"A":11}},"+":{"d":"121,0r-36,0r0,-74r-70,0r0,-36r70,0r0,-74r36,0r0,74r70,0r0,36r-70,0r0,74"},",":{"d":"32,63r-20,-19v23,-14,33,-29,37,-43v-14,-1,-25,-10,-25,-25v0,-14,10,-26,27,-26v19,0,32,15,32,39v0,22,-11,50,-51,74","w":105,"k":{"v":17,"V":27,"W":27,"Y":21,"w":17,"y":17}},"-":{"d":"20,-96r0,-32r106,0r0,32r-106,0","w":146,"k":{"V":14,"T":14,"W":11,"Y":11,"y":3,"A":8,"S":11,"X":11,"J":14,"Z":11,"x":8,"z":1}},".":{"d":"80,-23v0,15,-10,27,-27,27v-17,0,-28,-12,-28,-27v0,-15,11,-27,28,-27v17,0,27,12,27,27","w":105,"k":{"v":17,"V":27,"W":27,"Y":21,"w":17,"y":17}},"\/":{"d":"9,14r157,-273r46,0r-158,273r-45,0","w":220,"k":{"z":14,"y":8,"x":11,"w":8,"u":14,"s":14,"r":14,"q":17,"p":14,"o":17,"n":14,"m":14,"g":17,"e":17,"d":17,"c":17,"a":17,"Q":14,"O":14,"G":14,"C":14,"A":33,"v":8,"M":11,"\/":80}},"0":{"d":"62,-129v0,68,21,96,52,96v31,0,53,-28,53,-96v0,-68,-22,-96,-53,-96v-31,0,-52,28,-52,96xm212,-130v0,88,-41,134,-98,134v-56,0,-97,-46,-97,-133v0,-88,41,-135,98,-135v56,0,97,47,97,134","w":228},"1":{"d":"23,-192r-13,-36v30,-12,48,-36,95,-31r0,259r-44,0r0,-211","w":137},"2":{"d":"135,-185v0,-23,-15,-39,-41,-39v-26,0,-47,16,-65,37r-14,-38v37,-57,165,-52,165,37v0,45,-31,88,-102,151r109,0r0,37r-172,0r0,-33v90,-78,120,-119,120,-152","w":203},"3":{"d":"136,-73v0,-35,-45,-44,-90,-39r0,-36v60,0,85,-15,85,-43v0,-49,-72,-37,-103,-12r-11,-38v49,-36,159,-34,159,42v0,31,-17,52,-51,64v39,9,58,32,58,65v0,77,-119,89,-175,56r11,-38v33,23,117,33,117,-21","w":198},"4":{"d":"10,-52r0,-36r115,-171r51,0r0,169r39,0r0,38r-39,0r0,52r-44,0r0,-52r-122,0xm54,-90r78,0r0,-116","w":221},"5":{"d":"140,-81v-1,-53,-68,-55,-121,-38r4,-140r150,0r0,39r-108,0r-2,58v69,-11,118,16,121,81v4,86,-112,103,-175,67r12,-39v36,26,120,33,119,-28","w":195},"6":{"d":"17,-127v0,-119,86,-164,171,-121r-12,40v-51,-33,-112,-20,-115,64v52,-55,140,-22,140,58v0,58,-40,90,-87,90v-56,0,-97,-45,-97,-131xm158,-83v-1,-59,-61,-64,-97,-28v4,55,24,79,53,79v26,0,44,-18,44,-51","w":213},"7":{"d":"83,0r-50,0v32,-85,63,-155,94,-219r-117,0r0,-40r168,0r0,37v-33,64,-63,136,-95,222","w":186,"k":{";":6,":":6,".":22,",":22,"4":15}},"8":{"d":"201,-71v0,46,-40,75,-97,75v-57,0,-93,-28,-93,-71v0,-37,28,-54,55,-66v-24,-12,-44,-29,-44,-60v0,-42,36,-71,86,-71v49,0,81,27,81,67v0,30,-18,45,-45,58v27,12,57,28,57,68xm66,-195v0,21,15,30,42,41v46,-11,51,-74,-2,-75v-24,0,-40,13,-40,34xm156,-68v0,-26,-24,-37,-55,-50v-27,13,-45,25,-45,49v0,25,19,40,49,40v29,0,51,-15,51,-39","w":211},"9":{"d":"197,-132v0,119,-86,162,-171,120r12,-37v53,32,112,19,115,-66v-52,55,-140,23,-140,-58v0,-58,40,-91,87,-91v56,0,97,46,97,132xm56,-175v0,61,62,65,96,28v-4,-55,-24,-79,-53,-79v-25,0,-43,18,-43,51","w":213,"k":{".":5,",":5}},":":{"d":"80,-151v0,15,-10,28,-27,28v-17,0,-28,-13,-28,-28v0,-15,11,-27,28,-27v17,0,27,12,27,27xm80,-23v0,15,-10,27,-27,27v-17,0,-28,-12,-28,-27v0,-15,11,-27,28,-27v17,0,27,12,27,27","w":105},";":{"d":"32,63r-20,-19v23,-14,33,-29,37,-43v-14,-1,-25,-10,-25,-25v0,-14,10,-26,27,-26v19,0,32,15,32,39v0,22,-11,50,-51,74xm79,-151v0,15,-11,28,-28,28v-17,0,-27,-13,-27,-28v0,-15,10,-27,27,-27v17,0,28,12,28,27","w":105},"<":{"d":"15,-76r0,-32r176,-76r0,36r-137,56r137,57r0,35"},"=":{"d":"191,-145r0,33r-176,0r0,-33r176,0xm191,-71r0,32r-176,0r0,-32r176,0"},">":{"d":"191,-108r0,32r-176,76r0,-35r137,-57r-137,-56r0,-36"},"?":{"d":"93,-192v0,-35,-44,-42,-79,-31r0,-35v57,-17,124,2,124,60v0,67,-80,66,-67,121r-35,0v-19,-61,57,-71,57,-115xm54,4v-16,0,-27,-11,-27,-25v0,-14,11,-26,27,-26v16,0,27,12,27,26v0,14,-11,25,-27,25","w":154},"@":{"d":"228,20v-95,37,-210,1,-210,-113v0,-81,57,-141,140,-141v74,0,125,49,125,121v0,57,-31,84,-66,84v-23,0,-38,-13,-42,-30v-25,40,-93,47,-92,-24v0,-42,23,-87,79,-87v21,0,37,6,46,10r-7,77v0,18,5,28,18,28v20,0,35,-23,35,-58v0,-58,-42,-93,-97,-93v-65,0,-110,48,-110,113v-1,94,96,119,172,86xm114,-85v2,50,43,22,57,0r5,-55v-5,-2,-11,-4,-19,-4v-35,0,-43,37,-43,59","w":300},"A":{"d":"151,-259r87,259r-48,0r-19,-60r-97,0r-19,60r-46,0r89,-259r53,0xm123,-215r-38,119r75,0","w":246,"k":{"v":11,"V":21}},"B":{"d":"31,0r0,-259v80,-1,177,-9,177,68v0,28,-12,48,-38,58v36,10,49,35,49,63v0,44,-31,70,-94,70r-94,0xm75,-36v45,0,99,8,99,-39v0,-45,-54,-40,-99,-39r0,78xm75,-148v41,1,92,4,88,-37v4,-41,-46,-38,-88,-37r0,74","w":237,"k":{"y":2,"x":2,"Z":3,"Y":12,"X":13,"W":3,"T":8,"S":3,"A":5,"V":10,"M":1}},"C":{"d":"193,-55r11,37v-79,50,-187,12,-187,-109v0,-119,103,-168,186,-116r-11,40v-56,-41,-130,-23,-130,74v0,97,74,116,131,74","w":217,"k":{"v":11,"-":1,"T":3,"Y":4,"t":5,"w":8,"y":9,"A":3,"S":1,"X":5,"c":3,"d":3,"q":3,"e":3,"o":3,"s":1}},"D":{"d":"30,-259r86,0v72,0,122,44,122,129v0,86,-51,130,-122,130r-86,0r0,-259xm76,-38v73,5,117,-9,117,-91v0,-82,-44,-96,-117,-91r0,182","w":255,"k":{"V":11,"\/":11,"W":5,"Y":11,"A":8,"X":10}},"E":{"d":"31,0r0,-259r164,0r0,39r-119,0r0,69r104,0r0,37r-104,0r0,76r121,0r0,38r-166,0","w":212,"k":{"v":1,"Y":1,"y":1,"S":1}},"F":{"d":"31,0r0,-259r156,0r0,39r-111,0r0,72r98,0r0,38r-98,0r0,110r-45,0","w":196,"k":{"s":9,"g":1,"a":3,"J":24,"A":19,".":33,",":33,"\/":27}},"G":{"d":"62,-127v0,83,52,109,115,88r0,-64r-49,0r0,-35r92,0r0,120v-87,49,-203,17,-203,-108v0,-127,119,-170,203,-113r-12,41v-57,-46,-146,-34,-146,71","w":245},"H":{"d":"31,0r0,-259r45,0r0,106r105,0r0,-106r46,0r0,259r-46,0r0,-114r-105,0r0,114r-45,0","w":257},"I":{"d":"33,0r0,-259r45,0r0,259r-45,0","w":111},"J":{"d":"8,0r0,-39v35,8,67,2,67,-40r0,-180r46,0r0,180v5,69,-45,89,-113,79","w":147,"k":{"A":3}},"K":{"d":"31,0r0,-259r45,0r0,118r97,-118r53,0r-85,96r93,163r-50,0r-72,-129r-36,40r0,89r-45,0","w":239,"k":{"v":14,"M":2,"-":14,"C":8,"G":8,"O":8,"Q":8,"Y":6,"f":5,"t":5,"w":8,"y":14,"A":1,"S":1,"c":5,"d":5,"q":5,"e":5,"o":5,"a":1}},"L":{"d":"31,0r0,-259r45,0r0,219r108,0r0,40r-153,0","w":192,"k":{"v":12,"V":27,"\"":21,"'":21,"*":27,"-":21,"C":14,"G":14,"O":14,"Q":14,"T":23,"W":14,"Y":27,"f":8,"t":6,"w":9,"y":10,"c":3,"d":3,"q":3,"e":3,"o":3}},"M":{"d":"267,0r-11,-202v-17,66,-46,137,-67,202r-41,0r-67,-202r-11,202r-44,0r22,-259r58,0r47,146v8,21,10,42,17,59v17,-69,44,-138,65,-205r57,0r21,259r-46,0","w":338,"k":{"Y":8,"X":4,"W":5,"T":5,"M":2}},"N":{"d":"31,0r0,-259r48,0r108,172r0,-172r42,0r0,259r-37,0r-119,-190r0,190r-42,0","w":259},"O":{"d":"242,-130v0,88,-47,134,-113,134v-65,0,-112,-46,-112,-133v0,-88,47,-135,113,-135v65,0,112,47,112,134xm197,-129v0,-67,-28,-95,-67,-95v-39,0,-68,28,-68,95v0,67,29,96,68,96v39,0,67,-29,67,-96","w":259,"k":{"V":6,"\/":11,"T":8,"W":6,"Y":10,"y":-1,"A":9,"S":1,"X":11,",":4,".":4,"J":11,"Z":4,"x":3}},"P":{"d":"31,0r0,-259r93,0v58,0,92,27,92,80v0,70,-62,86,-140,80r0,99r-45,0xm76,-220r0,84v46,1,95,4,95,-43v0,-46,-50,-42,-95,-41","w":228,"k":{"z":3,"y":-3,"x":3,"s":5,"o":1,"g":2,"e":1,"c":1,"a":5,"Z":3,"Y":5,"X":11,"T":1,"J":21,"A":17,".":33,",":33,"v":-3,"M":5,"\/":27}},"Q":{"d":"209,65v-54,12,-115,2,-102,-64v-53,-9,-90,-53,-90,-130v0,-88,47,-135,113,-135v65,0,112,47,112,134v0,81,-40,127,-98,133v-3,37,41,31,65,24r0,38xm197,-129v0,-67,-28,-95,-67,-95v-39,0,-68,28,-68,95v0,67,29,95,68,95v39,0,67,-28,67,-95","w":260,"k":{"V":6,"\/":11,"T":8,"W":6,"Y":10,"y":-1,"A":9,"S":1,"X":11,",":4,".":4,"J":11,"Z":4,"x":3}},"R":{"d":"179,0r-60,-109r-44,0r0,109r-44,0r0,-259v86,-1,188,-12,188,75v0,39,-20,61,-54,71r65,113r-51,0xm75,-143v44,-1,104,9,99,-38v5,-47,-54,-39,-99,-39r0,77","w":248,"k":{"V":6,"O":3,"Q":3,"T":12,"W":4,"Y":11,"t":5,"w":2,"y":5,"o":1,"s":5,"Z":5,"g":1,"u":1}},"S":{"d":"17,-18r11,-39v34,26,119,40,119,-14v0,-59,-123,-27,-123,-115v0,-79,107,-97,161,-56r-11,40v-28,-25,-105,-36,-105,11v0,55,124,23,124,114v0,84,-114,100,-176,59","w":209,"k":{"V":6,"M":1,"T":8,"Y":9,"w":1,"y":3,"S":1,"X":7,"a":-1,",":1,".":1,"J":5,"Z":1,"x":3,"z":1}},"T":{"d":"81,0r0,-220r-72,0r0,-39r189,0r0,39r-72,0r0,220r-45,0","w":206,"k":{"v":27,"p":27,"M":5,"\/":27,"*":-4,"-":14,"C":8,"G":8,"O":4,"Q":4,"f":8,"t":8,"w":29,"y":27,"A":18,"S":4,"c":29,"d":29,"q":29,"e":29,"o":29,"s":27,"a":29,",":27,".":27,"J":17,"x":27,"g":29,"u":27,"z":29,")":-4,"]":-4,"}":-4,":":14,";":14,"i":5,"j":5,"m":27,"n":27,"r":27}},"U":{"d":"27,-93r0,-166r45,0r0,165v0,43,17,59,53,59v36,0,52,-16,52,-59r0,-165r44,0r0,165v0,69,-33,98,-98,98v-64,0,-96,-29,-96,-97","w":247,"k":{"\/":8,"A":8}},"V":{"d":"94,0r-85,-259r46,0r64,200r65,-200r44,0r-87,259r-47,0","w":236,"k":{"y":5,"x":8,"s":17,"r":8,"q":14,"p":8,"o":14,"n":8,"m":8,"g":17,"e":14,"d":14,"c":14,"a":17,"Y":4,"X":7,"T":3,"S":2,"Q":7,"O":7,"J":24,"G":8,"C":8,"A":24,";":14,":":14,".":27,"-":14,",":27,"M":8,"\/":42}},"W":{"d":"223,0r-34,-127v-12,-45,-12,-48,-16,-72r-2,0v-12,67,-35,134,-51,199r-44,0r-66,-259r48,0r45,195v12,-65,33,-132,49,-195r43,0r49,195v4,-22,11,-58,14,-71r30,-124r46,0r-67,259r-44,0","w":344,"k":{"v":5,"p":1,"M":5,"\/":29,"-":11,"C":8,"G":8,"O":6,"Q":6,"y":5,"A":18,"c":11,"d":11,"q":11,"e":11,"o":11,"s":11,"a":14,",":21,".":21,"J":17,"x":8,"g":14}},"X":{"d":"12,0r79,-134r-75,-125r50,0r54,93r54,-93r48,0r-75,125r79,134r-50,0r-58,-102r-58,102r-48,0","w":238,"k":{"v":11,"V":5,"-":11,"C":11,"G":11,"O":11,"Q":11,"T":4,"Y":8,"w":8,"y":11,"A":3,"S":7,"c":11,"d":11,"q":11,"e":11,"o":11,"s":7,"a":5,"x":3,"g":4}},"Y":{"d":"91,0r0,-107r-85,-152r48,0r60,108r61,-108r46,0r-85,152r0,107r-45,0","w":227,"k":{"v":14,"p":17,"M":7,"\/":27,"-":11,"C":8,"G":8,"O":8,"Q":8,"T":3,"f":5,"t":8,"w":11,"y":14,"A":27,"S":5,"c":21,"d":21,"q":21,"e":21,"o":21,"s":23,"a":21,",":27,".":27,"J":23,"x":17,"g":23,"u":17,"z":14,":":6,";":6,"m":17,"n":17,"r":17}},"Z":{"d":"12,0r0,-32r131,-188r-124,0r0,-39r183,0r0,34r-130,187r131,0r0,38r-191,0","w":218,"k":{"v":10,"M":3,"-":17,"C":8,"G":8,"O":4,"Q":4,"w":8,"y":10,"S":1,"c":3,"d":3,"q":3,"e":3,"o":3,"a":1,"x":3}},"[":{"d":"130,32r0,33r-103,0r0,-324r103,0r0,33r-58,0r0,258r58,0","w":141,"k":{"v":-1,"V":-1,"T":-4,"Y":-3,"y":-1,"s":8,"J":9,"j":-17}},"\\":{"d":"54,-259r158,273r-46,0r-157,-273r45,0","w":220},"]":{"d":"11,65r0,-33r58,0r0,-258r-58,0r0,-33r103,0r0,324r-103,0","w":141},"^":{"d":"87,-259r32,0r76,175r-36,0r-56,-136r-57,136r-35,0"},"_":{"d":"-1,53r0,-32r180,0r0,32r-180,0","w":177},"`":{"d":"119,-202r-34,0r-50,-57r50,0","w":180},"a":{"d":"125,-112v5,-57,-60,-41,-92,-24r-9,-34v48,-24,144,-37,144,47v0,33,-3,103,4,123v-23,-3,-51,12,-47,-21v-33,39,-111,34,-111,-32v0,-48,51,-68,111,-59xm58,-57v4,41,50,28,67,9r0,-37v-31,-6,-70,0,-67,28","w":189},"b":{"d":"25,-259r44,0r0,100v46,-56,126,-28,126,65v0,93,-79,127,-127,70r0,24r-43,0r0,-259xm150,-91v0,-67,-47,-73,-81,-38r0,78v33,35,81,25,81,-40","w":208,"k":{"\/":11,"\"":8,"'":8}},"c":{"d":"153,-174r-10,36v-36,-27,-84,-16,-84,47v0,62,49,75,85,47r10,33v-59,35,-140,9,-140,-79v0,-86,78,-119,139,-84","w":164,"k":{"-":8}},"d":{"d":"188,0r-44,0v-2,-3,-3,-8,-4,-24v-47,54,-126,27,-126,-65v0,-92,76,-128,125,-73r0,-97r45,0r0,217v0,29,2,38,4,42xm59,-90v0,67,48,73,80,37r0,-77v-33,-35,-80,-26,-80,40","w":208},"e":{"d":"101,-156v-23,0,-39,17,-42,48r79,0v0,-33,-15,-48,-37,-48xm179,-79r-119,0v5,62,62,58,105,34r10,32v-67,35,-161,18,-161,-76v0,-64,39,-99,89,-99v52,0,84,42,76,109","w":195,"k":{"v":1,"y":1,"o":-1,"x":6}},"f":{"d":"7,-149r0,-35r31,0v-6,-58,20,-85,80,-76r0,35v-28,-9,-39,9,-35,41r35,0r0,35r-35,0r0,149r-45,0r0,-149r-31,0","w":124,"k":{"\/":8,"*":-6,"y":-1,",":8,".":8,"g":1,")":-5,"]":-5,"}":-5}},"g":{"d":"178,-143v17,63,-43,99,-109,84v-12,14,-1,28,21,26v52,-5,105,4,105,48v0,42,-46,65,-106,65v-81,0,-115,-61,-48,-88v-25,-15,-21,-47,4,-62v-55,-36,-18,-118,56,-118v24,0,45,7,60,20v10,-11,26,-19,44,-15r0,38v-8,-2,-20,0,-27,2xm63,-121v0,26,16,36,37,36v22,0,39,-11,39,-36v0,-26,-17,-36,-38,-36v-22,0,-38,11,-38,36xm150,22v1,-27,-50,-19,-79,-20v-14,5,-23,14,-23,25v2,34,108,28,102,-5","w":210,"k":{"w":-1,"y":-3,",":5,".":5}},"h":{"d":"25,0r0,-259r44,0r0,100v29,-34,116,-51,116,22r0,137r-45,0r0,-124v-3,-45,-53,-21,-71,-3r0,127r-44,0","w":206,"k":{"v":1,"y":1,"o":-1}},"i":{"d":"27,0r0,-184r45,0r0,184r-45,0xm49,-210v-16,0,-26,-11,-26,-25v0,-14,10,-25,26,-25v16,0,27,11,27,25v0,14,-11,25,-27,25","w":98},"j":{"d":"72,-184r0,203v3,47,-32,66,-80,57r0,-34v20,6,35,0,35,-23r0,-203r45,0xm49,-210v-16,0,-26,-11,-26,-25v0,-14,10,-25,26,-25v16,0,27,11,27,25v0,14,-11,25,-27,25","w":98},"k":{"d":"25,0r0,-259r44,0r0,150r65,-75r50,0r-65,67r70,117r-47,0r-51,-87r-22,23r0,64r-44,0","w":196,"k":{"v":3,"?":3,"-":8,"t":1,"y":3,"d":4,"q":4,"o":4,"a":1,"x":2,"g":1}},"l":{"d":"27,0r0,-259r45,0r0,259r-45,0","w":98},"m":{"d":"25,0r0,-184r44,0r0,25v23,-27,91,-49,109,0v26,-31,115,-53,115,22r0,137r-45,0r0,-124v-3,-44,-50,-22,-67,-4r0,128r-45,0r0,-124v-2,-44,-50,-22,-67,-3r0,127r-44,0","w":314,"k":{"v":1,"y":1,"o":-1}},"n":{"d":"25,0r0,-184r44,0r0,25v29,-34,116,-51,116,22r0,137r-45,0r0,-124v-3,-45,-53,-21,-71,-3r0,127r-44,0","w":206,"k":{"v":1,"y":1,"o":-1}},"o":{"d":"59,-91v0,45,18,63,41,63v23,0,42,-18,42,-63v0,-45,-19,-63,-42,-63v-23,0,-41,18,-41,63xm187,-93v0,66,-40,97,-87,97v-46,0,-86,-29,-86,-95v0,-66,40,-97,87,-97v46,0,86,29,86,95","w":200,"k":{"v":1,"\/":11,"\"":8,"'":8,"y":-1,"o":-1,"s":1,"a":-1,",":1,".":1,"x":5}},"p":{"d":"25,-184r44,0r0,25v46,-56,126,-28,126,65v0,92,-77,127,-126,72r0,98r-44,0r0,-260xm150,-91v0,-67,-47,-73,-81,-38r0,78v33,35,81,25,81,-40","w":208,"k":{"\/":11,"\"":8,"'":8,",":1,".":1}},"q":{"d":"184,76r-45,0r0,-100v-46,55,-125,27,-125,-65v0,-94,79,-129,127,-70r0,-25r43,0r0,260xm59,-90v0,67,48,73,80,37r0,-77v-33,-35,-80,-26,-80,40","w":208},"r":{"d":"134,-187r0,40v-29,-6,-57,15,-65,25r0,122r-44,0r0,-184r44,0r0,29v12,-19,35,-37,65,-32","w":140,"k":{"\/":14,"-":4,"f":-1,"t":-1,"w":-4,"y":-6,"c":3,"d":3,"q":3,"e":3,"o":3,",":21,".":21,"g":1}},"s":{"d":"147,-172r-9,36v-19,-16,-74,-29,-74,2v0,35,89,11,89,77v0,63,-92,75,-139,45r9,-34v24,17,86,29,86,-6v0,-37,-88,-14,-88,-78v0,-59,85,-72,126,-42","w":166,"k":{"v":3,"y":3,",":1,".":1,"x":3,")":3,"]":3,"}":3}},"t":{"d":"7,-149r0,-35r31,0r0,-61r45,0r0,61r40,0r0,35r-40,0r0,92v-4,30,22,26,40,20r0,36v-43,7,-85,6,-85,-49r0,-99r-31,0","w":134,"k":{"y":-1}},"u":{"d":"181,-184r0,184r-44,0r0,-24v-30,34,-116,49,-115,-23r0,-137r44,0r0,126v3,45,53,21,71,3r0,-129r44,0","w":206},"v":{"d":"67,0r-64,-184r46,0r42,131r44,-131r44,0r-66,184r-46,0","w":182,"k":{"x":2,"s":2,"o":1,"g":1,"e":2,"c":2,"a":3,";":5,":":5,".":17,",":17,"\/":14}},"w":{"d":"169,0r-35,-131v-9,43,-25,88,-36,131r-43,0r-51,-184r43,0r34,132v8,-44,23,-90,35,-132r38,0r24,85v6,16,5,34,11,47v7,-45,22,-89,33,-132r42,0r-53,184r-42,0","w":268,"k":{"\/":11,"f":-2,"t":-1,"w":-2,"y":-2,",":17,".":17,"g":1}},"x":{"d":"6,0r60,-95r-55,-89r47,0r35,61r35,-61r46,0r-56,89r60,95r-47,0r-40,-68r-39,68r-46,0","w":185,"k":{"-":8,"y":3,"c":5,"d":5,"q":5,"e":5,"o":5,"s":3,"a":1,"g":3}},"y":{"d":"12,76r0,-36v37,3,45,3,63,-44r-13,0r-58,-180r45,0r43,140r43,-140r44,0r-61,180v-26,73,-45,87,-106,80","w":182,"k":{"?":3,"\/":14,"-":3,"t":-2,"w":-2,"c":1,"e":1,"o":1,"s":1,"a":2,",":17,".":17,"x":3,"g":2,":":3,";":3}},"z":{"d":"9,0r0,-30r98,-119r-92,0r0,-35r148,0r0,29r-98,120r99,0r0,35r-155,0","w":176,"k":{"-":1}},"{":{"d":"64,-97v37,12,27,59,27,103v0,22,14,28,39,26r0,33v-54,2,-84,-15,-84,-59v0,-38,18,-94,-35,-87r0,-33v50,8,35,-46,35,-86v0,-44,29,-62,84,-59r0,33v-24,-2,-39,4,-39,26v0,44,10,91,-27,103","w":141,"k":{"v":-1,"V":-1,"T":-4,"Y":-3,"y":-1,"s":8,"J":9,"j":-17}},"|":{"d":"46,65r0,-324r44,0r0,324r-44,0","w":135},"}":{"d":"11,32v82,11,1,-106,66,-129v-37,-12,-27,-59,-27,-103v0,-22,-14,-28,-39,-26r0,-33v54,-2,84,15,84,59v0,38,-18,93,35,86r0,33v-50,-8,-35,46,-35,87v0,44,-29,62,-84,59r0,-33","w":141},"~":{"d":"197,-83v-44,45,-133,-26,-175,16r-13,-33v42,-46,132,24,175,-16"},"\u00a0":{"w":79}}});
;
/*!
 * selectivizr v1.0.2 - (c) Keith Clark, freely distributable under the terms of the MIT license.
 * selectivizr.com
 */
(function(j){function A(a){return a.replace(B,h).replace(C,function(a,d,b){for(var a=b.split(","),b=0,e=a.length;b<e;b++){var s=D(a[b].replace(E,h).replace(F,h))+o,l=[];a[b]=s.replace(G,function(a,b,c,d,e){if(b){if(l.length>0){var a=l,f,e=s.substring(0,e).replace(H,i);if(e==i||e.charAt(e.length-1)==o)e+="*";try{f=t(e)}catch(k){}if(f){e=0;for(c=f.length;e<c;e++){for(var d=f[e],h=d.className,j=0,m=a.length;j<m;j++){var g=a[j];if(!RegExp("(^|\\s)"+g.className+"(\\s|$)").test(d.className)&&g.b&&(g.b===!0||g.b(d)===!0))h=u(h,g.className,!0)}d.className=h}}l=[]}return b}else{if(b=c?I(c):!v||v.test(d)?{className:w(d),b:!0}:null)return l.push(b),"."+b.className;return a}})}return d+a.join(",")})}function I(a){var c=!0,d=w(a.slice(1)),b=a.substring(0,5)==":not(",e,f;b&&(a=a.slice(5,-1));var l=a.indexOf("(");l>-1&&(a=a.substring(0,l));if(a.charAt(0)==":")switch(a.slice(1)){case "root":c=function(a){return b?a!=p:a==p};break;case "target":if(m==8){c=function(a){function c(){var d=location.hash,e=d.slice(1);return b?d==i||a.id!=e:d!=i&&a.id==e}k(j,"hashchange",function(){g(a,d,c())});return c()};break}return!1;case "checked":c=function(a){J.test(a.type)&&k(a,"propertychange",function(){event.propertyName=="checked"&&g(a,d,a.checked!==b)});return a.checked!==b};break;case "disabled":b=!b;case "enabled":c=function(c){if(K.test(c.tagName))return k(c,"propertychange",function(){event.propertyName=="$disabled"&&g(c,d,c.a===b)}),q.push(c),c.a=c.disabled,c.disabled===b;return a==":enabled"?b:!b};break;case "focus":e="focus",f="blur";case "hover":e||(e="mouseenter",f="mouseleave");c=function(a){k(a,b?f:e,function(){g(a,d,!0)});k(a,b?e:f,function(){g(a,d,!1)});return b};break;default:if(!L.test(a))return!1}return{className:d,b:c}}function w(a){return M+"-"+(m==6&&N?O++:a.replace(P,function(a){return a.charCodeAt(0)}))}function D(a){return a.replace(x,h).replace(Q,o)}function g(a,c,d){var b=a.className,c=u(b,c,d);if(c!=b)a.className=c,a.parentNode.className+=i}function u(a,c,d){var b=RegExp("(^|\\s)"+c+"(\\s|$)"),e=b.test(a);return d?e?a:a+o+c:e?a.replace(b,h).replace(x,h):a}function k(a,c,d){a.attachEvent("on"+c,d)}function r(a,c){if(/^https?:\/\//i.test(a))return c.substring(0,c.indexOf("/",8))==a.substring(0,a.indexOf("/",8))?a:null;if(a.charAt(0)=="/")return c.substring(0,c.indexOf("/",8))+a;var d=c.split(/[?#]/)[0];a.charAt(0)!="?"&&d.charAt(d.length-1)!="/"&&(d=d.substring(0,d.lastIndexOf("/")+1));return d+a}function y(a){if(a)return n.open("GET",a,!1),n.send(),(n.status==200?n.responseText:i).replace(R,i).replace(S,function(c,d,b,e,f){return y(r(b||f,a))}).replace(T,function(c,d,b){d=d||i;return" url("+d+r(b,a)+d+") "});return i}function U(){var a,c;a=f.getElementsByTagName("BASE");for(var d=a.length>0?a[0].href:f.location.href,b=0;b<f.styleSheets.length;b++)if(c=f.styleSheets[b],c.href!=i&&(a=r(c.href,d)))c.cssText=A(y(a));q.length>0&&setInterval(function(){for(var a=0,c=q.length;a<c;a++){var b=q[a];if(b.disabled!==b.a)b.disabled?(b.disabled=!1,b.a=!0,b.disabled=!0):b.a=b.disabled}},250)}if(!/*@cc_on!@*/true){var f=document,p=f.documentElement,n=function(){if(j.XMLHttpRequest)return new XMLHttpRequest;try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(a){return null}}(),m=/MSIE (\d+)/.exec(navigator.userAgent)[1];if(!(f.compatMode!="CSS1Compat"||m<6||m>8||!n)){var z={NW:"*.Dom.select",MooTools:"$$",DOMAssistant:"*.$",Prototype:"$$",YAHOO:"*.util.Selector.query",Sizzle:"*",jQuery:"*",dojo:"*.query"},t,q=[],O=0,N=!0,M="slvzr",R=/(\/\*[^*]*\*+([^\/][^*]*\*+)*\/)\s*/g,S=/@import\s*(?:(?:(?:url\(\s*(['"]?)(.*)\1)\s*\))|(?:(['"])(.*)\3))[^;]*;/g,T=/\burl\(\s*(["']?)(?!data:)([^"')]+)\1\s*\)/g,L=/^:(empty|(first|last|only|nth(-last)?)-(child|of-type))$/,B=/:(:first-(?:line|letter))/g,C=/(^|})\s*([^\{]*?[\[:][^{]+)/g,G=/([ +~>])|(:[a-z-]+(?:\(.*?\)+)?)|(\[.*?\])/g,H=/(:not\()?:(hover|enabled|disabled|focus|checked|target|active|visited|first-line|first-letter)\)?/g,P=/[^\w-]/g,K=/^(INPUT|SELECT|TEXTAREA|BUTTON)$/,J=/^(checkbox|radio)$/,v=m>6?/[\$\^*]=(['"])\1/:null,E=/([(\[+~])\s+/g,F=/\s+([)\]+~])/g,Q=/\s+/g,x=/^\s*((?:[\S\s]*\S)?)\s*$/,i="",o=" ",h="$1";(function(a,c){function d(){try{p.doScroll("left")}catch(a){setTimeout(d,50);return}b("poll")}function b(d){if(!(d.type=="readystatechange"&&f.readyState!="complete")&&((d.type=="load"?a:f).detachEvent("on"+d.type,b,!1),!e&&(e=!0)))c.call(a,d.type||d)}var e=!1,g=!0;if(f.readyState=="complete")c.call(a,i);else{if(f.createEventObject&&p.doScroll){try{g=!a.frameElement}catch(h){}g&&d()}k(f,"readystatechange",b);k(a,"load",b)}})(j,function(){for(var a in z){var c,d,b=j;if(j[a]){for(c=z[a].replace("*",a).split(".");(d=c.shift())&&(b=b[d]););if(typeof b=="function"){t=b;U();break}}}})}}})(this);;
/*!
 * jQuery Cycle Plugin (with Transition Definitions)
 * Examples and documentation at: http://jquery.malsup.com/cycle/
 * Copyright (c) 2007-2010 M. Alsup
 * Version: 2.9998 (27-OCT-2011)
 * Dual licensed under the MIT and GPL licenses.
 * http://jquery.malsup.com/license.html
 * Requires: jQuery v1.3.2 or later
 */
;(function($, undefined) {

var ver = '2.9998';

// if $.support is not defined (pre jQuery 1.3) add what I need
if ($.support == undefined) {
	$.support = {
		opacity: !($.browser.msie)
	};
}

function debug(s) {
	$.fn.cycle.debug && log(s);
}		
function log() {
	window.console && console.log && console.log('[cycle] ' + Array.prototype.join.call(arguments,' '));
}
$.expr[':'].paused = function(el) {
	return el.cyclePause;
}


// the options arg can be...
//   a number  - indicates an immediate transition should occur to the given slide index
//   a string  - 'pause', 'resume', 'toggle', 'next', 'prev', 'stop', 'destroy' or the name of a transition effect (ie, 'fade', 'zoom', etc)
//   an object - properties to control the slideshow
//
// the arg2 arg can be...
//   the name of an fx (only used in conjunction with a numeric value for 'options')
//   the value true (only used in first arg == 'resume') and indicates
//	 that the resume should occur immediately (not wait for next timeout)

$.fn.cycle = function(options, arg2) {
	var o = { s: this.selector, c: this.context };

	// in 1.3+ we can fix mistakes with the ready state
	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;
		}
		// is your DOM ready?  http://docs.jquery.com/Tutorials:Introducing_$(document).ready()
		log('terminating; zero elements found by selector' + ($.isReady ? '' : ' (DOM not ready)'));
		return this;
	}

	// iterate the matched nodeset
	return this.each(function() {
		var opts = handleArguments(this, options, arg2);
		if (opts === false)
			return;

		opts.updateActivePagerLink = opts.updateActivePagerLink || $.fn.cycle.updateActivePagerLink;
		
		// stop existing slideshow for this container (if there is one)
		if (this.cycleTimeout)
			clearTimeout(this.cycleTimeout);
		this.cycleTimeout = this.cyclePause = 0;

		var $cont = $(this);
		var $slides = opts.slideExpr ? $(opts.slideExpr, this) : $cont.children();
		var els = $slides.get();

		var opts2 = buildOptions($cont, $slides, els, opts, o);
		if (opts2 === false)
			return;

		if (els.length < 2) {
			log('terminating; too few slides: ' + els.length);
			return;
		}

		var startTime = opts2.continuous ? 10 : getTimeout(els[opts2.currSlide], els[opts2.nextSlide], opts2, !opts2.backwards);

		// if it's an auto slideshow, kick it off
		if (startTime) {
			startTime += (opts2.delay || 0);
			if (startTime < 10)
				startTime = 10;
			debug('first timeout: ' + startTime);
			this.cycleTimeout = setTimeout(function(){go(els,opts2,0,!opts.backwards)}, startTime);
		}
	});
};

function triggerPause(cont, byHover, onPager) {
	var opts = $(cont).data('cycle.opts');
	var paused = !!cont.cyclePause;
	if (paused && opts.paused)
		opts.paused(cont, opts, byHover, onPager);
	else if (!paused && opts.resumed)
		opts.resumed(cont, opts, byHover, onPager);
}

// process the args that were passed to the plugin fn
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 'destroy':
		case 'stop':
			var opts = $(cont).data('cycle.opts');
			if (!opts)
				return false;
			cont.cycleStop++; // callbacks look for change
			if (cont.cycleTimeout)
				clearTimeout(cont.cycleTimeout);
			cont.cycleTimeout = 0;
			opts.elements && $(opts.elements).stop();
			$(cont).removeData('cycle.opts');
			if (options == 'destroy')
				destroy(opts);
			return false;
		case 'toggle':
			cont.cyclePause = (cont.cyclePause === 1) ? 0 : 1;
			checkInstantResume(cont.cyclePause, arg2, cont);
			triggerPause(cont);
			return false;
		case 'pause':
			cont.cyclePause = 1;
			triggerPause(cont);
			return false;
		case 'resume':
			cont.cyclePause = 0;
			checkInstantResume(false, arg2, cont);
			triggerPause(cont);
			return false;
		case 'prev':
		case 'next':
			var opts = $(cont).data('cycle.opts');
			if (!opts) {
				log('options not found, "prev/next" ignored');
				return false;
			}
			$.fn.cycle[options](opts);
			return false;
		default:
			options = { fx: options };
		};
		return options;
	}
	else if (options.constructor == Number) {
		// go to the requested slide
		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 checkInstantResume(isPaused, arg2, cont) {
		if (!isPaused && arg2 === true) { // resume now!
			var 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, !options.backwards);
		}
	}
};

function removeFilter(el, opts) {
	if (!$.support.opacity && opts.cleartype && el.style.filter) {
		try { el.style.removeAttribute('filter'); }
		catch(smother) {} // handle old opera versions
	}
};

// unbind event handlers
function destroy(opts) {
	if (opts.next)
		$(opts.next).unbind(opts.prevNextEvent);
	if (opts.prev)
		$(opts.prev).unbind(opts.prevNextEvent);
	
	if (opts.pager || opts.pagerAnchorBuilder)
		$.each(opts.pagerAnchors || [], function() {
			this.unbind().remove();
		});
	opts.pagerAnchors = null;
	if (opts.destroy) // callback
		opts.destroy(opts);
};

// one-time initialization
function buildOptions($cont, $slides, els, options, o) {
	var startingSlideSpecified;
	// support metadata plugin (v1.0 and v2.0)
	var opts = $.extend({}, $.fn.cycle.defaults, options || {}, $.metadata ? $cont.metadata() : $.meta ? $cont.data() : {});
	var meta = $.isFunction($cont.data) ? $cont.data(opts.metaAttr) : null;
	if (meta)
		opts = $.extend(opts, meta);
	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] : [];

	// push some after callbacks
	if (!$.support.opacity && opts.cleartype)
		opts.after.push(function() { removeFilter(this, opts); });
	if (opts.continuous)
		opts.after.push(function() { go(els,opts,0,!opts.backwards); });

	saveOriginalOpts(opts);

	// clearType corrections
	if (!$.support.opacity && opts.cleartype && !opts.cleartypeNoBg)
		clearTypeFix($slides);

	// container requires non-static position so that slides can be position within
	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 != undefined) {
		opts.startingSlide = parseInt(opts.startingSlide,10);
		if (opts.startingSlide >= els.length || opts.startSlide < 0)
			opts.startingSlide = 0; // catch bogus input
		else 
			startingSlideSpecified = true;
	}
	else if (opts.backwards)
		opts.startingSlide = els.length - 1;
	else
		opts.startingSlide = 0;

	// if random, mix up the slide array
	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;});
		if (startingSlideSpecified) {
			// try to find the specified starting slide and if found set start slide index in the map accordingly
			for ( var cnt = 0; cnt < els.length; cnt++ ) {
				if ( opts.startingSlide == opts.randomMap[cnt] ) {
					opts.randomIndex = cnt;
				}
			}
		}
		else {
			opts.randomIndex = 1;
			opts.startingSlide = opts.randomMap[1];
		}
	}
	else if (opts.startingSlide >= els.length)
		opts.startingSlide = 0; // catch bogus input
	opts.currSlide = opts.startingSlide || 0;
	var first = opts.startingSlide;

	// set position and zIndex on all the slides
	$slides.css({position: 'absolute', top:0, left:0}).hide().each(function(i) {
		var z;
		if (opts.backwards)
			z = first ? i <= first ? els.length + (i-first) : first-i : els.length-i;
		else
			z = first ? i >= first ? els.length - (i-first) : first-i : els.length-i;
		$(this).css('z-index', z)
	});

	// make sure first slide is visible
	$(els[first]).css('opacity',1).show(); // opacity bit needed to handle restart use case
	removeFilter(els[first], opts);

	// stretch slides
	if (opts.fit) {
		if (!opts.aspect) {
	        if (opts.width)
	            $slides.width(opts.width);
	        if (opts.height && opts.height != 'auto')
	            $slides.height(opts.height);
		} else {
			$slides.each(function(){
				var $slide = $(this);
				var ratio = (opts.aspect === true) ? $slide.width()/$slide.height() : opts.aspect;
				if( opts.width && $slide.width() != opts.width ) {
					$slide.width( opts.width );
					$slide.height( opts.width / ratio );
				}

				if( opts.height && $slide.height() < opts.height ) {
					$slide.height( opts.height );
					$slide.width( opts.height * ratio );
				}
			});
		}
	}

	if (opts.center && ((!opts.fit) || opts.aspect)) {
		$slides.each(function(){
			var $slide = $(this);
			$slide.css({
				"margin-left": opts.width ?
					((opts.width - $slide.width()) / 2) + "px" :
					0,
				"margin-top": opts.height ?
					((opts.height - $slide.height()) / 2) + "px" :
					0
			});
		});
	}

	if (opts.center && !opts.fit && !opts.slideResize) {
	  	$slides.each(function(){
	    	var $slide = $(this);
	    	$slide.css({
	      		"margin-left": opts.width ? ((opts.width - $slide.width()) / 2) + "px" : 0,
	      		"margin-top": opts.height ? ((opts.height - $slide.height()) / 2) + "px" : 0
	    	});
	  	});
	}
		
	// stretch container
	var reshape = opts.containerResize && !$cont.innerHeight();
	if (reshape) { // do this only if container has no size http://tinyurl.com/da2oa9
		var maxw = 0, maxh = 0;
		for(var j=0; j < els.length; j++) {
			var $e = $(els[j]), e = $e[0], w = $e.outerWidth(), h = $e.outerHeight();
			if (!w) w = e.offsetWidth || e.width || $e.attr('width');
			if (!h) h = e.offsetHeight || e.height || $e.attr('height');
			maxw = w > maxw ? w : maxw;
			maxh = h > maxh ? h : maxh;
		}
		if (maxw > 0 && maxh > 0)
			$cont.css({width:maxw+'px',height:maxh+'px'});
	}

	var pauseFlag = false;  // https://github.com/malsup/cycle/issues/44
	if (opts.pause)
		$cont.hover(
			function(){
				pauseFlag = true;
				this.cyclePause++;
				triggerPause(cont, true);
			},
			function(){
				pauseFlag && this.cyclePause--;
				triggerPause(cont, true);
			}
		);

	if (supportMultiTransitions(opts) === false)
		return false;

	// apparently a lot of people use image slideshows without height/width attributes on the images.
	// Cycle 2.50+ requires the sizing info for every slide; this block tries to deal with that.
	var requeue = false;
	options.requeueAttempts = options.requeueAttempts || 0;
	$slides.each(function() {
		// try to get height/width of each slide
		var $el = $(this);
		this.cycleH = (opts.fit && opts.height) ? opts.height : ($el.height() || this.offsetHeight || this.height || $el.attr('height') || 0);
		this.cycleW = (opts.fit && opts.width) ? opts.width : ($el.width() || this.offsetWidth || this.width || $el.attr('width') || 0);

		if ( $el.is('img') ) {
			// sigh..  sniffing, hacking, shrugging...  this crappy hack tries to account for what browsers do when
			// an image is being downloaded and the markup did not include sizing info (height/width attributes);
			// there seems to be some "default" sizes used in this situation
			var loadingIE	= ($.browser.msie  && this.cycleW == 28 && this.cycleH == 30 && !this.complete);
			var loadingFF	= ($.browser.mozilla && this.cycleW == 34 && this.cycleH == 19 && !this.complete);
			var loadingOp	= ($.browser.opera && ((this.cycleW == 42 && this.cycleH == 19) || (this.cycleW == 37 && this.cycleH == 17)) && !this.complete);
			var loadingOther = (this.cycleH == 0 && this.cycleW == 0 && !this.complete);
			// don't requeue for images that are still loading but have a valid size
			if (loadingIE || loadingFF || loadingOp || loadingOther) {
				if (o.s && opts.requeueOnImageNotLoaded && ++options.requeueAttempts < 100) { // track retry count so we don't loop forever
					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; // break each loop
				}
				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.cssAfter = opts.cssAfter || {};
	opts.cssFirst = opts.cssFirst || {};
	opts.animIn = opts.animIn || {};
	opts.animOut = opts.animOut || {};

	$slides.not(':eq('+first+')').css(opts.cssBefore);
	$($slides[first]).css(opts.cssFirst);

	if (opts.timeout) {
		opts.timeout = parseInt(opts.timeout,10);
		// ensure that timeout and speed settings are sane
		if (opts.speed.constructor == String)
			opts.speed = $.fx.speeds[opts.speed] || parseInt(opts.speed,10);
		if (!opts.sync)
			opts.speed = opts.speed / 2;
		
		var buffer = opts.fx == 'none' ? 0 : opts.fx == 'shuffle' ? 500 : 250;
		while((opts.timeout - opts.speed) < buffer) // sanitize timeout
			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) {
		if (++opts.randomIndex == els.length)
			opts.randomIndex = 0;
		opts.nextSlide = opts.randomMap[opts.randomIndex];
	}
	else if (opts.backwards)
		opts.nextSlide = opts.startingSlide == 0 ? (els.length-1) : opts.startingSlide-1;
	else
		opts.nextSlide = opts.startingSlide >= (els.length-1) ? 0 : opts.startingSlide+1;

	// run transition init fn
	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;
		}
	}

	// fire artificial events
	var e0 = $slides[first];
	if (!opts.skipInitializationCallbacks) {
		if (opts.before.length)
			opts.before[0].apply(e0, [e0, e0, opts, true]);
		if (opts.after.length)
			opts.after[0].apply(e0, [e0, e0, opts, true]);
	}
	if (opts.next)
		$(opts.next).bind(opts.prevNextEvent,function(){return advance(opts,1)});
	if (opts.prev)
		$(opts.prev).bind(opts.prevNextEvent,function(){return advance(opts,0)});
	if (opts.pager || opts.pagerAnchorBuilder)
		buildPager(els,opts);

	exposeAddSlide(opts, els);

	return opts;
};

// save off original opts so we can restore after clearing state
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 i, tx, txs = $.fn.cycle.transitions;
	// look for multiple effects
	if (opts.fx.indexOf(',') > 0) {
		opts.multiFx = true;
		opts.fxs = opts.fx.replace(/\s*/g,'').split(',');
		// discard any bogus effect names
		for (i=0; i < opts.fxs.length; i++) {
			var fx = opts.fxs[i];
			tx = txs[fx];
			if (!tx || !txs.hasOwnProperty(fx) || !$.isFunction(tx)) {
				log('discarding unknown transition: ',fx);
				opts.fxs.splice(i,1);
				i--;
			}
		}
		// if we have an empty list then we threw everything away!
		if (!opts.fxs.length) {
			log('No valid transitions named; slideshow terminating.');
			return false;
		}
	}
	else if (opts.fx == 'all') {  // auto-gen the list of transitions
		opts.multiFx = true;
		opts.fxs = [];
		for (p in txs) {
			tx = txs[p];
			if (txs.hasOwnProperty(p) && $.isFunction(tx))
				opts.fxs.push(p);
		}
	}
	if (opts.multiFx && opts.randomizeEffects) {
		// munge the fxs array to make effect selection random
		var r1 = Math.floor(Math.random() * 20) + 30;
		for (i = 0; i < r1; i++) {
			var r2 = Math.floor(Math.random() * opts.fxs.length);
			opts.fxs.push(opts.fxs.splice(r2,1)[0]);
		}
		debug('randomized fx sequence: ',opts.fxs);
	}
	return true;
};

// provide a mechanism for adding slides after the slideshow has started
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); // shuffle needs this
		opts.slideCount = els.length;

		// add the slide to the random map and resort
		if (opts.random) {
			opts.randomMap.push(opts.slideCount-1);
			opts.randomMap.sort(function(a,b) {return Math.random() - 0.5;});
		}

		$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')
			$s.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 || opts.pagerAnchorBuilder)
			$.fn.cycle.createPagerAnchor(els.length-1, s, $(opts.pager), els, opts);

		if ($.isFunction(opts.onAddSlide))
			opts.onAddSlide($s);
		else
			$s.hide(); // default behavior
	};
}

// reset internal state; we do this on every pass in order to support multiple effects
$.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); });

	// re-init
	var init = $.fn.cycle.transitions[fx];
	if ($.isFunction(init))
		init(opts.$cont, $(opts.elements), opts);
};

// this is the main engine fn, it handles the timeouts, callbacks and slide index mgmt
function go(els, opts, manual, fwd) {
	// opts.busy is true if we're in the middle of an animation
	if (manual && opts.busy && opts.manualTrump) {
		// let manual transitions requests trump active ones
		debug('manualTrump in go(), stopping active transition');
		$(els).stop(true,true);
		opts.busy = 0;
	}
	// don't begin another timeout-based transition if there is one active
	if (opts.busy) {
		debug('transition active, ignoring new tx request');
		return;
	}

	var p = opts.$cont[0], curr = els[opts.currSlide], next = els[opts.nextSlide];

	// stop cycling if we have an outstanding stop request
	if (p.cycleStop != opts.stopCount || p.cycleTimeout === 0 && !manual)
		return;

	// check to see if we should stop cycling based on autostop options
	if (!manual && !p.cyclePause && !opts.bounce &&
		((opts.autostop && (--opts.countdown <= 0)) ||
		(opts.nowrap && !opts.random && opts.nextSlide < opts.currSlide))) {
		if (opts.end)
			opts.end(opts);
		return;
	}

	// if slideshow is paused, only transition on a manual trigger
	var changed = false;
	if ((manual || !p.cyclePause) && (opts.nextSlide != opts.currSlide)) {
		changed = true;
		var fx = opts.fx;
		// keep trying to get the slide size if we don't have it yet
		curr.cycleH = curr.cycleH || $(curr).height();
		curr.cycleW = curr.cycleW || $(curr).width();
		next.cycleH = next.cycleH || $(next).height();
		next.cycleW = next.cycleW || $(next).width();

		// support multiple transition types
		if (opts.multiFx) {
			if (fwd && (opts.lastFx == undefined || ++opts.lastFx >= opts.fxs.length))
				opts.lastFx = 0;
			else if (!fwd && (opts.lastFx == undefined || --opts.lastFx < 0))
				opts.lastFx = opts.fxs.length - 1;
			fx = opts.fxs[opts.lastFx];
		}

		// one-time fx overrides apply to:  $('div').cycle(3,'zoom');
		if (opts.oneTimeFx) {
			fx = opts.oneTimeFx;
			opts.oneTimeFx = null;
		}

		$.fn.cycle.resetState(opts, fx);

		// run the before callbacks
		if (opts.before.length)
			$.each(opts.before, function(i,o) {
				if (p.cycleStop != opts.stopCount) return;
				o.apply(next, [curr, next, opts, fwd]);
			});

		// stage the after callacks
		var after = function() {
			opts.busy = 0;
			$.each(opts.after, function(i,o) {
				if (p.cycleStop != opts.stopCount) return;
				o.apply(next, [curr, next, opts, fwd]);
			});
			if (!p.cycleStop) {
				// queue next transition
				queueNext();
			}
		};

		debug('tx firing('+fx+'); currSlide: ' + opts.currSlide + '; nextSlide: ' + opts.nextSlide);
		
		// get ready to perform the transition
		opts.busy = 1;
		if (opts.fxFn) // fx function provided?
			opts.fxFn(curr, next, opts, after, fwd, manual && opts.fastOnEvent);
		else if ($.isFunction($.fn.cycle[opts.fx])) // fx plugin ?
			$.fn.cycle[opts.fx](curr, next, opts, after, fwd, manual && opts.fastOnEvent);
		else
			$.fn.cycle.custom(curr, next, opts, after, fwd, manual && opts.fastOnEvent);
	}
	else {
		queueNext();
	}

	if (changed || opts.nextSlide == opts.currSlide) {
		// calculate the next slide
		opts.lastSlide = opts.currSlide;
		if (opts.random) {
			opts.currSlide = opts.nextSlide;
			if (++opts.randomIndex == els.length) {
				opts.randomIndex = 0;
				opts.randomMap.sort(function(a,b) {return Math.random() - 0.5;});
			}
			opts.nextSlide = opts.randomMap[opts.randomIndex];
			if (opts.nextSlide == opts.currSlide)
				opts.nextSlide = (opts.currSlide == opts.slideCount - 1) ? 0 : opts.currSlide + 1;
		}
		else if (opts.backwards) {
			var roll = (opts.nextSlide - 1) < 0;
			if (roll && opts.bounce) {
				opts.backwards = !opts.backwards;
				opts.nextSlide = 1;
				opts.currSlide = 0;
			}
			else {
				opts.nextSlide = roll ? (els.length-1) : opts.nextSlide-1;
				opts.currSlide = roll ? 0 : opts.nextSlide+1;
			}
		}
		else { // sequence
			var roll = (opts.nextSlide + 1) == els.length;
			if (roll && opts.bounce) {
				opts.backwards = !opts.backwards;
				opts.nextSlide = els.length-2;
				opts.currSlide = els.length-1;
			}
			else {
				opts.nextSlide = roll ? 0 : opts.nextSlide+1;
				opts.currSlide = roll ? els.length-1 : opts.nextSlide-1;
			}
		}
	}
	if (changed && opts.pager)
		opts.updateActivePagerLink(opts.pager, opts.currSlide, opts.activePagerClass);
	
	function queueNext() {
		// stage the next transition
		var ms = 0, timeout = opts.timeout;
		if (opts.timeout && !opts.continuous) {
			ms = getTimeout(els[opts.currSlide], els[opts.nextSlide], opts, fwd);
         if (opts.fx == 'shuffle')
            ms -= opts.speedOut;
      }
		else if (opts.continuous && p.cyclePause) // continuous shows work off an after callback, not this timer logic
			ms = 10;
		if (ms > 0)
			p.cycleTimeout = setTimeout(function(){ go(els, opts, 0, !opts.backwards) }, ms);
	}
};

// invoked after transition
$.fn.cycle.updateActivePagerLink = function(pager, currSlide, clsName) {
   $(pager).each(function() {
       $(this).children().removeClass(clsName).eq(currSlide).addClass(clsName);
   });
};

// calculate timeout value for current transition
function getTimeout(curr, next, opts, fwd) {
	if (opts.timeoutFn) {
		// call user provided calc fn
		var t = opts.timeoutFn.call(curr,curr,next,opts,fwd);
		while (opts.fx != 'none' && (t - opts.speed) < 250) // sanitize timeout
			t += opts.speed;
		debug('calculated timeout: ' + t + '; speed: ' + opts.speed);
		if (t !== false)
			return t;
	}
	return opts.timeout;
};

// expose next/prev function, caller must pass in state
$.fn.cycle.next = function(opts) { advance(opts,1); };
$.fn.cycle.prev = function(opts) { advance(opts,0);};

// advance slide forward or back
function advance(opts, moveForward) {
	var val = moveForward ? 1 : -1;
	var els = opts.elements;
	var p = opts.$cont[0], timeout = p.cycleTimeout;
	if (timeout) {
		clearTimeout(timeout);
		p.cycleTimeout = 0;
	}
	if (opts.random && val < 0) {
		// move back to the previously display slide
		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) {
		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;
		}
	}

	var cb = opts.onPrevNextEvent || opts.prevNextClick; // prevNextClick is deprecated
	if ($.isFunction(cb))
		cb(val > 0, opts.nextSlide, els[opts.nextSlide]);
	go(els, opts, 1, moveForward);
	return false;
};

function buildPager(els, opts) {
	var $p = $(opts.pager);
	$.each(els, function(i,o) {
		$.fn.cycle.createPagerAnchor(i,o,$p,els,opts);
	});
	opts.updateActivePagerLink(opts.pager, opts.startingSlide, opts.activePagerClass);
};

$.fn.cycle.createPagerAnchor = function(i, el, $p, els, opts) {
	var a;
	if ($.isFunction(opts.pagerAnchorBuilder)) {
		a = opts.pagerAnchorBuilder(i,el);
		debug('pagerAnchorBuilder('+i+', el) returned: ' + a);
	}
	else
		a = '<a href="#">'+(i+1)+'</a>';
		
	if (!a)
		return;
	var $a = $(a);
	// don't reparent if anchor is in the dom
	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[0]);
			});
			$a = $(arr);
		}
		else {
			$a.appendTo($p);
		}
	}

	opts.pagerAnchors =  opts.pagerAnchors || [];
	opts.pagerAnchors.push($a);
	
	var pagerFn = function(e) {
		e.preventDefault();
		opts.nextSlide = i;
		var p = opts.$cont[0], timeout = p.cycleTimeout;
		if (timeout) {
			clearTimeout(timeout);
			p.cycleTimeout = 0;
		}
		var cb = opts.onPagerEvent || opts.pagerClick; // pagerClick is deprecated
		if ($.isFunction(cb))
			cb(opts.nextSlide, els[opts.nextSlide]);
		go(els,opts,1,opts.currSlide < i); // trigger the trans
//		return false; // <== allow bubble
	}
	
	if ( /mouseenter|mouseover/i.test(opts.pagerEvent) ) {
		$a.hover(pagerFn, function(){/* no-op */} );
	}
	else {
		$a.bind(opts.pagerEvent, pagerFn);
	}
	
	if ( ! /^click/.test(opts.pagerEvent) && !opts.allowPagerClickBubble)
		$a.bind('click.cycle', function(){return false;}); // suppress click
	
	var cont = opts.$cont[0];
	var pauseFlag = false; // https://github.com/malsup/cycle/issues/44
	if (opts.pauseOnPagerHover) {
		$a.hover(
			function() { 
				pauseFlag = true;
				cont.cyclePause++; 
				triggerPause(cont,true,true);
			}, function() { 
				pauseFlag && cont.cyclePause--; 
				triggerPause(cont,true,true);
			} 
		);
	}
};

// helper fn to calculate the number of slides between the current and the next
$.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;
};

// fix clearType problems in ie6 by setting an explicit bg color
// (otherwise text slides look horrible during a fade transition)
function clearTypeFix($slides) {
	debug('applying clearType background-color hack');
	function hex(s) {
		s = parseInt(s,10).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 && 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)); });
};

// reset common props before the next transition
$.fn.cycle.commonReset = function(curr,next,opts,w,h,rev) {
	$(opts.elements).not(curr).hide();
	if (typeof opts.cssBefore.opacity == 'undefined')
		opts.cssBefore.opacity = 1;
	opts.cssBefore.display = 'block';
	if (opts.slideResize && w !== false && next.cycleW > 0)
		opts.cssBefore.width = next.cycleW;
	if (opts.slideResize && 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));
};

// the actual fn for effecting a transition
$.fn.cycle.custom = function(curr, next, opts, cb, fwd, 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, function() {
			cb();
		});
	};
	$l.animate(opts.animOut, speedOut, easeOut, function() {
		$l.css(opts.cssAfter);
		if (!opts.sync) 
			fn();
	});
	if (opts.sync) fn();
};

// transition definitions - only fade is defined here, transition pack defines the rest
$.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; };

// override these globally if you like (they are all optional)
$.fn.cycle.defaults = {
	activePagerClass: 'activeSlide', // class name used for the active pager link
	after:		   null,  // transition callback (scope set to element that was shown):  function(currSlideElement, nextSlideElement, options, forwardFlag)
	allowPagerClickBubble: false, // allows or prevents click event on pager anchors from bubbling
	animIn:		   null,  // properties that define how the slide animates in
	animOut:	   null,  // properties that define how the slide animates out
	aspect:		   false,  // preserve aspect ratio during fit resizing, cropping if necessary (must be used with fit option)
	autostop:	   0,	  // true to end slideshow after X transitions (where X == slide count)
	autostopCount: 0,	  // number of transitions (optionally used with autostop to define X)
	backwards:     false, // true to start slideshow at last slide and move backwards through the stack
	before:		   null,  // transition callback (scope set to element to be shown):	 function(currSlideElement, nextSlideElement, options, forwardFlag)
	center: 	   null,  // set to true to have cycle add top/left margin to each slide (use with width and height options)
	cleartype:	   !$.support.opacity,  // true if clearType corrections should be applied (for IE)
	cleartypeNoBg: false, // set to true to disable extra cleartype fixing (leave false to force background color setting on slides)
	containerResize: 1,	  // resize container to fit largest slide
	continuous:	   0,	  // true to start next transition immediately after current one completes
	cssAfter:	   null,  // properties that defined the state of the slide after transitioning out
	cssBefore:	   null,  // properties that define the initial state of the slide before transitioning in
	delay:		   0,	  // additional delay (in ms) for first transition (hint: can be negative)
	easeIn:		   null,  // easing for "in" transition
	easeOut:	   null,  // easing for "out" transition
	easing:		   null,  // easing method for both in and out transitions
	end:		   null,  // callback invoked when the slideshow terminates (use with autostop or nowrap options): function(options)
	fastOnEvent:   0,	  // force fast transitions when triggered manually (via pager or prev/next); value == time in ms
	fit:		   0,	  // force slides to fit container
	fx:			  'fade', // name of transition effect (or comma separated names, ex: 'fade,scrollUp,shuffle')
	fxFn:		   null,  // function used to control the transition: function(currSlideElement, nextSlideElement, options, afterCalback, forwardFlag)
	height:		  'auto', // container height (if the 'fit' option is true, the slides will be set to this height as well)
	manualTrump:   true,  // causes manual transition to stop an active transition instead of being ignored
	metaAttr:     'cycle',// data- attribute that holds the option data for the slideshow
	next:		   null,  // element, jQuery object, or jQuery selector string for the element to use as event trigger for next slide
	nowrap:		   0,	  // true to prevent slideshow from wrapping
	onPagerEvent:  null,  // callback fn for pager events: function(zeroBasedSlideIndex, slideElement)
	onPrevNextEvent: null,// callback fn for prev/next events: function(isNext, zeroBasedSlideIndex, slideElement)
	pager:		   null,  // element, jQuery object, or jQuery selector string for the element to use as pager container
	pagerAnchorBuilder: null, // callback fn for building anchor links:  function(index, DOMelement)
	pagerEvent:	  'click.cycle', // name of event which drives the pager navigation
	pause:		   0,	  // true to enable "pause on hover"
	pauseOnPagerHover: 0, // true to pause when hovering over pager link
	prev:		   null,  // element, jQuery object, or jQuery selector string for the element to use as event trigger for previous slide
	prevNextEvent:'click.cycle',// event which drives the manual transition to the previous or next slide
	random:		   0,	  // true for random, false for sequence (not applicable to shuffle fx)
	randomizeEffects: 1,  // valid when multiple effects are used; true to make the effect sequence random
	requeueOnImageNotLoaded: true, // requeue the slideshow if any image slides are not yet loaded
	requeueTimeout: 250,  // ms delay for requeue
	rev:		   0,	  // causes animations to transition in reverse (for effects that support it such as scrollHorz/scrollVert/shuffle)
	shuffle:	   null,  // coords for shuffle animation, ex: { top:15, left: 200 }
	skipInitializationCallbacks: false, // set to true to disable the first before/after callback that occurs prior to any transition
	slideExpr:	   null,  // expression for selecting slides (if something other than all children is required)
	slideResize:   1,     // force slide width/height to fixed size before every transition
	speed:		   1000,  // speed of the transition (any valid fx speed value)
	speedIn:	   null,  // speed of the 'in' transition
	speedOut:	   null,  // speed of the 'out' transition
	startingSlide: 0,	  // zero-based index of the first slide to be displayed
	sync:		   1,	  // true if in/out transitions should occur simultaneously
	timeout:	   4000,  // milliseconds between slide transitions (0 to disable auto advance)
	timeoutFn:     null,  // callback for determining per-slide timeout value:  function(currSlideElement, nextSlideElement, options, forwardFlag)
	updateActivePagerLink: null, // callback fn invoked to update the active pager link (adds/removes activePagerClass style)
	width:         null   // container width (if the 'fit' option is true, the slides will be set to this width as well)
};

})(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-2010 M. Alsup
 * Version:	 2.73
 * Dual licensed under the MIT and GPL licenses:
 * http://www.opensource.org/licenses/mit-license.php
 * http://www.gnu.org/licenses/gpl.html
 */
(function($) {

//
// These functions define slide initialization and properties for the named
// transitions. To save file size feel free to remove any of these that you
// don't need.
//
$.fn.cycle.transitions.none = function($cont, $slides, opts) {
	opts.fxFn = function(curr,next,opts,after){
		$(next).show();
		$(curr).hide();
		after();
	};
};

// not a cross-fade, fadeout only fades out the top slide
$.fn.cycle.transitions.fadeout = function($cont, $slides, opts) {
	$slides.not(':eq('+opts.currSlide+')').css({ display: 'block', 'opacity': 1 });
	opts.before.push(function(curr,next,opts,w,h,rev) {
		$(curr).css('zIndex',opts.slideCount + (!rev === true ? 1 : 0));
		$(next).css('zIndex',opts.slideCount + (!rev === true ? 0 : 1));
	});
	opts.animIn.opacity = 1;
	opts.animOut.opacity = 0;
	opts.cssBefore.opacity = 1;
	opts.cssBefore.display = 'block';
	opts.cssAfter.zIndex = 0;
};

// scrollUp/Down/Left/Right
$.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;
	opts.cssBefore.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;
	opts.cssBefore.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;
	opts.cssBefore.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;
	opts.cssBefore.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) {
		if (opts.rev)
			fwd = !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) {
		if (opts.rev)
			fwd = !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;
};

// slideX/slideY
$.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;
	opts.cssBefore.top = 0;
	opts.cssBefore.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;
	opts.cssBefore.top = 0;
	opts.cssBefore.height = 0;
	opts.animIn.height = 'show';
	opts.animOut.height = 0;
};

// shuffle
$.fn.cycle.transitions.shuffle = function($cont, $slides, opts) {
	var i, 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);
	});
	// only adjust speed once!
	if (!opts.speedAdjusted) {
		opts.speed = opts.speed / 2; // shuffle has 2 transitions
		opts.speedAdjusted = true;
	}
	opts.random = 0;
	opts.shuffle = opts.shuffle || {left:-w, top:15};
	opts.els = [];
	for (i=0; i < $slides.length; i++)
		opts.els.push($slides[i]);

	for (i=0; i < opts.currSlide; i++)
		opts.els.push(opts.els.shift());

	// custom transition fn (hat tip to Benjamin Sterling for this bit of sweetness!)
	opts.fxFn = function(curr, next, opts, cb, fwd) {
		if (opts.rev)
			fwd = !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,10)+1+count);
			}
			$el.animate({left:0, top:0}, opts.speedOut, opts.easeOut, function() {
				$(fwd ? this : curr).hide();
				if (cb) cb();
			});
		});
	};
	$.extend(opts.cssBefore, { display: 'block', opacity: 1, top: 0, left: 0 });
};

// turnUp/Down/Left/Right
$.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.animOut.width = next.cycleW;
	});
	opts.cssFirst.top = 0;
	opts.cssBefore.left = 0;
	opts.cssBefore.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;
	opts.cssBefore.top = 0;
	opts.cssBefore.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;
	opts.cssBefore.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;
	});
	$.extend(opts.cssBefore, { top: 0, left: 0, width: 0 });
	opts.animIn.left = 0;
	opts.animOut.width = 0;
};

// zoom
$.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;
		$.extend(opts.animIn, { top: 0, left: 0, width: next.cycleW, height: next.cycleH });
		$.extend(opts.animOut, { width: 0, height: 0, top: curr.cycleH/2, left: curr.cycleW/2 });
	});
	opts.cssFirst.top = 0;
	opts.cssFirst.left = 0;
	opts.cssBefore.width = 0;
	opts.cssBefore.height = 0;
};

// fadeZoom
$.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;
		$.extend(opts.animIn, { top: 0, left: 0, width: next.cycleW, height: next.cycleH });
	});
	opts.cssBefore.width = 0;
	opts.cssBefore.height = 0;
	opts.animOut.opacity = 0;
};

// blindX
$.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;
	opts.cssBefore.top = 0;
	opts.animIn.left = 0;
	opts.animOut.left = w;
};
// blindY
$.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;
	opts.cssBefore.left = 0;
	opts.animIn.top = 0;
	opts.animOut.top = h;
};
// blindZ
$.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;
	opts.cssBefore.left = w;
	opts.animIn.top = 0;
	opts.animIn.left = 0;
	opts.animOut.top = h;
	opts.animOut.left = w;
};

// growX - grow horizontally from centered 0 width
$.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;
		opts.animIn.width = this.cycleW;
		opts.animOut.left = 0;
	});
	opts.cssBefore.top = 0;
	opts.cssBefore.width = 0;
};
// growY - grow vertically from centered 0 height
$.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;
		opts.animIn.height = this.cycleH;
		opts.animOut.top = 0;
	});
	opts.cssBefore.height = 0;
	opts.cssBefore.left = 0;
};

// curtainX - squeeze in both edges horizontally
$.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;
		opts.animIn.width = this.cycleW;
		opts.animOut.left = curr.cycleW/2;
		opts.animOut.width = 0;
	});
	opts.cssBefore.top = 0;
	opts.cssBefore.width = 0;
};
// curtainY - squeeze in both edges vertically
$.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;
		opts.animIn.height = next.cycleH;
		opts.animOut.top = curr.cycleH/2;
		opts.animOut.height = 0;
	});
	opts.cssBefore.height = 0;
	opts.cssBefore.left = 0;
};

// cover - curr slide covered by next slide
$.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;
	opts.animIn.top = 0;
	opts.cssBefore.top = 0;
	opts.cssBefore.left = 0;
};

// uncover - curr slide moves off next slide
$.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;
	opts.animIn.top = 0;
	opts.cssBefore.top = 0;
	opts.cssBefore.left = 0;
};

// toss - move top slide and fade away
$.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);
		// provide default toss settings if animOut not provided
		if (!opts.animOut.left && !opts.animOut.top)
			$.extend(opts.animOut, { left: w*2, top: -h/2, opacity: 0 });
		else
			opts.animOut.opacity = 0;
	});
	opts.cssBefore.left = 0;
	opts.cssBefore.top = 0;
	opts.animIn.left = 0;
};

// wipe - clip animation
$.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 top = parseInt(h/2,10);
			var left = parseInt(w/2,10);
			clip = 'rect('+top+'px '+left+'px '+top+'px '+left+'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],10), r = parseInt(d[1],10), b = parseInt(d[2],10), l = parseInt(d[3],10);

	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),10) - 1;
		(function f() {
			var tt = t ? t - parseInt(step * (t/count),10) : 0;
			var ll = l ? l - parseInt(step * (l/count),10) : 0;
			var bb = b < h ? b + parseInt(step * ((h-b)/count || 1),10) : h;
			var rr = r < w ? r + parseInt(step * ((w-r)/count || 1),10) : w;
			$next.css({ clip: 'rect('+tt+'px '+rr+'px '+bb+'px '+ll+'px)' });
			(step++ <= count) ? setTimeout(f, 13) : $curr.css('display', 'none');
		})();
	});
	$.extend(opts.cssBefore, { display: 'block', opacity: 1, top: 0, left: 0 });
	opts.animIn	   = { left: 0 };
	opts.animOut   = { left: 0 };
};

})(jQuery);
;
$(document).ready(function() {

    /* Header Photos */
    
	// cycle the photos
	$('#section-home .hero .block section').cycle({
		fx: 'fade',
		speed: 2000,
		timeout: 5000
	});

});
;

