
$(document).ready(function() {
	
	$('#tabs dt a').hover(function(event){

		$('.selected').removeClass('selected');
		$(this).parent().addClass('selected').next().addClass('selected');
		event.preventDefault();
	})

	$('#mainbanner.slider').anythingSlider({
			easing: "easeInOutExpo",        // Anything other than "linear" or "swing" requires the easing plugin
			autoPlay: true,                 // This turns off the entire FUNCTIONALY, not just if it starts running or not.
			delay: 8000,                    // How long between slide transitions in AutoPlay mode
			startStopped: false,            // If autoPlay is on, this can force it to start stopped
			animationTime: 600,             // How long the slide transition takes
			hashTags: true,                 // Should links change the hashtag in the URL?
			buildNavigation: true,          // If true, builds and list of anchor links to link to each slide
			pauseOnHover: true,             // If true, and autoPlay is enabled, the show will pause on hover
			startText: "Go",				// Start text
			stopText: "Stop"				// Stop text
			//navigationFormatter: formatText       // Details at the top of the file on this use (advanced use)
		});


});


/*
    anythingSlider v1.2
    By Chris Coyier: http://css-tricks.com
    with major improvements by Doug Neiner: http://pixelgraphics.us/
    based on work by Remy Sharp: http://jqueryfordesigners.com/
*/

(function(d){d.anythingSlider=function(e,g){var a=this;a.$el=d(e);a.el=e;a.currentPage=1;a.timer=null;a.playing=false;a.$el.data("AnythingSlider",a);a.init=function(){a.options=d.extend({},d.anythingSlider.defaults,g);a.$wrapper=a.$el.find("> div").css("overflow","hidden");a.$slider=a.$wrapper.find("> ul");a.$items=a.$slider.find("> li");a.$single=a.$items.filter(":first");a.options.buildNavigation&&a.buildNavigation();a.singleWidth=a.$single.outerWidth();a.pages=a.$items.length;a.$items.filter(":first").before(a.$items.filter(":last").clone().addClass("cloned")); a.$items.filter(":last").after(a.$items.filter(":first").clone().addClass("cloned"));a.$items=a.$slider.find("> li");a.buildNextBackButtons();if(a.options.autoPlay){a.playing=!a.options.startStopped;a.buildAutoPlay()}a.options.pauseOnHover&&a.$el.hover(function(){a.clearTimer()},function(){a.startStop(a.playing)});if(a.options.hashTags==true&&!a.gotoHash()||a.options.hashTags==false)a.setCurrentPage(1)};a.gotoPage=function(b,c){if(c!==true)c=false;c||a.startStop(false);if(typeof b=="undefined"||b== null){b=1;a.setCurrentPage(1)}if(b>a.pages+1)b=a.pages;if(b<0)b=1;c=b<a.currentPage?-1:1;var f=Math.abs(a.currentPage-b);c=a.singleWidth*c*f;a.$wrapper.filter(":not(:animated)").animate({scrollLeft:"+="+c},a.options.animationTime,a.options.easing,function(){if(b==0){a.$wrapper.scrollLeft(a.singleWidth*a.pages);b=a.pages}else if(b>a.pages){a.$wrapper.scrollLeft(a.singleWidth);b=1}a.setCurrentPage(b)})};a.setCurrentPage=function(b,c){if(a.options.buildNavigation){a.$nav.find(".cur").removeClass("cur"); d(a.$navLinks[b-1]).addClass("cur")}c!==false&&a.$wrapper.scrollLeft(a.singleWidth*b);a.currentPage=b};a.goForward=function(b){if(b!==true)b=false;a.gotoPage(a.currentPage+1,b)};a.goBack=function(){a.gotoPage(a.currentPage-1)};a.gotoHash=function(){if(/^#?panel-\d+$/.test(window.location.hash)){var b=parseInt(window.location.hash.substr(7));if(a.$items.filter(":eq("+b+")").length!=0){a.setCurrentPage(b);return true}}return false};a.buildNavigation=function(){a.$nav=d("<ul id='thumbNav'></ul>").appendTo(a.$el); a.$items.each(function(b){var c=b+1;b=d("<a href='#'></a>");typeof a.options.navigationFormatter=="function"?b.html(a.options.navigationFormatter(c,d(this))):b.text(c);b.click(function(f){a.gotoPage(c);a.options.hashTags&&a.setHash("panel-"+c);f.preventDefault()});a.$nav.append(b)});a.$navLinks=a.$nav.find("> a")};a.buildNextBackButtons=function(){var b=d('<a class="arrow forward">&gt;</a>'),c=d('<a class="arrow back">&lt;</a>');c.click(function(f){a.goBack();f.preventDefault()});b.click(function(f){a.goForward(); f.preventDefault()});a.$wrapper.after(c).after(b)};a.buildAutoPlay=function(){a.$startStop=d("<a href='#' id='start-stop'></a>").html(a.playing?a.options.stopText:a.options.startText);a.$el.append(a.$startStop);a.$startStop.click(function(b){a.startStop(!a.playing);b.preventDefault()});a.startStop(a.playing)};a.startStop=function(b){if(b!==true)b=false;a.playing=b;if(a.options.autoPlay)a.$startStop.toggleClass("playing",b).html(b?a.options.stopText:a.options.startText);if(b){a.clearTimer();a.timer= window.setInterval(function(){a.goForward(true)},a.options.delay)}else a.clearTimer()};a.clearTimer=function(){a.timer&&window.clearInterval(a.timer)};a.setHash=function(b){if(typeof window.location.hash!=="undefined"){if(window.location.hash!==b)window.location.hash=b}else if(location.hash!==b)location.hash=b;return b};a.init()};d.anythingSlider.defaults={easing:"swing",autoPlay:true,startStopped:false,delay:3E3,animationTime:600,hashTags:true,buildNavigation:true,pauseOnHover:true,startText:"Start", stopText:"Stop",navigationFormatter:null};d.fn.anythingSlider=function(e){if(typeof e=="object")return this.each(function(){new d.anythingSlider(this,e);e.hashTags=false});else if(typeof e=="number")return this.each(function(){var g=d(this).data("AnythingSlider");g&&g.gotoPage(e)})}})(jQuery);

/*
 * jQuery EasIng v1.1.2 - http://gsgd.co.uk/sandbox/jquery.easIng.php
 *
 * Uses the built In easIng capabilities added In jQuery 1.1
 * to offer multiple easIng options
 *
 * Copyright (c) 2007 George Smith
 * Licensed under the MIT License:
 *   http://www.opensource.org/licenses/mit-license.php
 */

// t: current time, b: begInnIng value, c: change In value, d: duration

jQuery.extend(jQuery.easing,{easeInQuad:function(e,a,c,b,d){return b*(a/=d)*a+c},easeOutQuad:function(e,a,c,b,d){return-b*(a/=d)*(a-2)+c},easeInOutQuad:function(e,a,c,b,d){if((a/=d/2)<1)return b/2*a*a+c;return-b/2*(--a*(a-2)-1)+c},easeInCubic:function(e,a,c,b,d){return b*(a/=d)*a*a+c},easeOutCubic:function(e,a,c,b,d){return b*((a=a/d-1)*a*a+1)+c},easeInOutCubic:function(e,a,c,b,d){if((a/=d/2)<1)return b/2*a*a*a+c;return b/2*((a-=2)*a*a+2)+c},easeInQuart:function(e,a,c,b,d){return b*(a/=d)*a*a*a+c}, easeOutQuart:function(e,a,c,b,d){return-b*((a=a/d-1)*a*a*a-1)+c},easeInOutQuart:function(e,a,c,b,d){if((a/=d/2)<1)return b/2*a*a*a*a+c;return-b/2*((a-=2)*a*a*a-2)+c},easeInQuint:function(e,a,c,b,d){return b*(a/=d)*a*a*a*a+c},easeOutQuint:function(e,a,c,b,d){return b*((a=a/d-1)*a*a*a*a+1)+c},easeInOutQuint:function(e,a,c,b,d){if((a/=d/2)<1)return b/2*a*a*a*a*a+c;return b/2*((a-=2)*a*a*a*a+2)+c},easeInSine:function(e,a,c,b,d){return-b*Math.cos(a/d*(Math.PI/2))+b+c},easeOutSine:function(e,a,c,b,d){return b* Math.sin(a/d*(Math.PI/2))+c},easeInOutSine:function(e,a,c,b,d){return-b/2*(Math.cos(Math.PI*a/d)-1)+c},easeInExpo:function(e,a,c,b,d){return a==0?c:b*Math.pow(2,10*(a/d-1))+c},easeOutExpo:function(e,a,c,b,d){return a==d?c+b:b*(-Math.pow(2,-10*a/d)+1)+c},easeInOutExpo:function(e,a,c,b,d){if(a==0)return c;if(a==d)return c+b;if((a/=d/2)<1)return b/2*Math.pow(2,10*(a-1))+c;return b/2*(-Math.pow(2,-10*--a)+2)+c},easeInCirc:function(e,a,c,b,d){return-b*(Math.sqrt(1-(a/=d)*a)-1)+c},easeOutCirc:function(e, a,c,b,d){return b*Math.sqrt(1-(a=a/d-1)*a)+c},easeInOutCirc:function(e,a,c,b,d){if((a/=d/2)<1)return-b/2*(Math.sqrt(1-a*a)-1)+c;return b/2*(Math.sqrt(1-(a-=2)*a)+1)+c},easeInElastic:function(e,a,c,b,d){e=1.70158;var f=0,g=b;if(a==0)return c;if((a/=d)==1)return c+b;f||(f=d*0.3);if(g<Math.abs(b)){g=b;e=f/4}else e=f/(2*Math.PI)*Math.asin(b/g);return-(g*Math.pow(2,10*(a-=1))*Math.sin((a*d-e)*2*Math.PI/f))+c},easeOutElastic:function(e,a,c,b,d){e=1.70158;var f=0,g=b;if(a==0)return c;if((a/=d)==1)return c+ b;f||(f=d*0.3);if(g<Math.abs(b)){g=b;e=f/4}else e=f/(2*Math.PI)*Math.asin(b/g);return g*Math.pow(2,-10*a)*Math.sin((a*d-e)*2*Math.PI/f)+b+c},easeInOutElastic:function(e,a,c,b,d){e=1.70158;var f=0,g=b;if(a==0)return c;if((a/=d/2)==2)return c+b;f||(f=d*0.3*1.5);if(g<Math.abs(b)){g=b;e=f/4}else e=f/(2*Math.PI)*Math.asin(b/g);if(a<1)return-0.5*g*Math.pow(2,10*(a-=1))*Math.sin((a*d-e)*2*Math.PI/f)+c;return g*Math.pow(2,-10*(a-=1))*Math.sin((a*d-e)*2*Math.PI/f)*0.5+b+c},easeInBack:function(e,a,c,b,d,f){if(f== undefined)f=1.70158;return b*(a/=d)*a*((f+1)*a-f)+c},easeOutBack:function(e,a,c,b,d,f){if(f==undefined)f=1.70158;return b*((a=a/d-1)*a*((f+1)*a+f)+1)+c},easeInOutBack:function(e,a,c,b,d,f){if(f==undefined)f=1.70158;if((a/=d/2)<1)return b/2*a*a*(((f*=1.525)+1)*a-f)+c;return b/2*((a-=2)*a*(((f*=1.525)+1)*a+f)+2)+c},easeInBounce:function(e,a,c,b,d){return b-jQuery.easing.easeOutBounce(e,d-a,0,b,d)+c},easeOutBounce:function(e,a,c,b,d){return(a/=d)<1/2.75?b*7.5625*a*a+c:a<2/2.75?b*(7.5625*(a-=1.5/2.75)* a+0.75)+c:a<2.5/2.75?b*(7.5625*(a-=2.25/2.75)*a+0.9375)+c:b*(7.5625*(a-=2.625/2.75)*a+0.984375)+c},easeInOutBounce:function(e,a,c,b,d){if(a<d/2)return jQuery.easing.easeInBounce(e,a*2,0,b,d)*0.5+c;return jQuery.easing.easeOutBounce(e,a*2-d,0,b,d)*0.5+b*0.5+c}});


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
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("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}})());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}})());

/*!
 * The following copyright notice may not be removed under any circumstances.
 *
 * Copyright:
 * Copyright (c) 1999 by Steve Deffeyes. All rights reserved.
 *
 * Description:
 * Copyright (c) 1999 by Steve Deffeyes. All rights reserved.
 *
 * Manufacturer:
 * Steve Deffeyes
 */
Cufon.registerFont({"w":230,"face":{"font-family":"Marker SD","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 4 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-83.2554 -255.054 328.055 109.036","underline-thickness":"7.2","underline-position":"-44.28","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":144,"k":{"B":-18}},"!":{"d":"34,-251v35,4,6,79,10,104v-1,40,-2,40,-3,80v0,14,-4,21,-10,21v-15,0,-22,-19,-22,-57v0,-22,10,-154,25,-148xm25,-31v13,-2,33,32,10,34v-16,2,-31,-30,-10,-34","w":77},"\"":{"d":"31,-255v22,-2,14,52,7,62v-10,0,-13,-21,-13,-41v0,-13,3,-20,6,-21xm0,-235v0,-26,16,-18,20,-5v0,14,1,41,-7,41v-10,-4,-13,-19,-13,-36","w":73},"#":{"d":"141,-136v15,-1,38,-11,39,7v1,16,-33,12,-44,16v-1,4,-2,12,-4,22v21,-11,53,18,18,22v-31,4,-25,4,-31,41v-3,20,-5,29,-7,29v-19,0,-14,-35,-11,-55v-10,-1,-20,7,-31,7v-18,0,-2,44,-17,49v-13,1,-10,-31,-8,-44v-13,6,-41,8,-40,-10v2,-18,20,-11,41,-17r3,-21v-18,3,-51,16,-48,-14v5,-6,49,-12,52,-14v5,-14,7,-59,16,-73v20,1,8,45,8,65v5,0,35,-3,40,-7v1,-1,3,-11,5,-29v2,-18,4,-28,7,-28v18,0,7,41,12,54xm69,-76v16,-2,53,3,43,-31v-16,0,-26,7,-40,10v-1,5,-2,12,-3,21","w":207},"$":{"d":"145,-111v38,0,72,53,33,82v-16,12,-39,25,-60,26v-17,1,-10,36,-27,33v-13,3,-9,-32,-20,-30v-13,-3,-18,37,-30,35v-6,2,-18,-13,-16,-17v0,-2,9,-11,6,-18v-21,-3,-31,-9,-31,-21v6,-18,14,-13,38,-7v10,-25,17,-48,22,-70v-15,-5,-33,-20,-31,-39v1,-16,20,-29,56,-40v2,-16,1,-36,11,-45v18,-2,24,16,20,35v10,1,15,-4,22,-5v0,-13,-2,-26,10,-27v16,-1,23,8,16,30v13,0,27,23,7,27v-4,0,-8,1,-12,1v-5,15,-13,34,-14,50xm100,-121v23,15,23,-18,26,-37v-20,-7,-22,21,-26,37xm122,-33v29,-8,42,-13,51,-37v1,-7,-25,-13,-35,-13v0,8,-17,41,-16,50xm76,-135v-3,-8,-19,-7,-17,6v3,8,18,1,17,-6xm87,-28r23,-62v-7,-3,-14,-4,-21,-2v-2,7,-16,49,-17,63","w":224},"%":{"d":"0,-149v2,-39,98,-60,98,-4v-4,32,-93,53,-98,4xm151,-176v6,0,11,8,11,13v3,5,-132,165,-127,164v-7,-1,-18,-9,-18,-17v0,-5,21,-33,63,-84v42,-51,65,-76,71,-76xm141,-81v14,-1,47,25,46,39v-2,37,-94,66,-100,11v-1,-18,35,-52,54,-50xm25,-144v14,7,67,-12,46,-24v-14,-1,-41,16,-46,24xm162,-50v-16,-23,-45,14,-49,25v19,7,47,-12,49,-25","w":213},"&":{"d":"152,-31v19,13,53,-12,59,12v2,10,-35,13,-43,12r-36,-6v-42,25,-128,27,-132,-28v-1,-26,24,-45,36,-60v-21,-43,23,-92,65,-87v38,4,42,46,3,71v31,14,103,-24,110,12v-4,5,-74,9,-77,12v20,16,25,39,15,62xm54,-113v18,-7,59,-32,58,-49v0,-5,-2,-7,-6,-7v-30,0,-63,23,-52,56xm126,-34v11,-4,16,-33,5,-43v-10,-15,-33,-13,-42,-30v-8,4,-29,14,-29,20v-5,13,55,54,66,53xm42,-75v-10,6,-21,24,-21,38v-2,26,61,23,82,13v-18,-8,-38,-25,-61,-51","w":241},"'":{"d":"7,-255v19,0,19,17,17,40v-2,27,-17,32,-23,7v-2,-12,-3,-47,6,-47","w":52},"(":{"d":"57,43v-34,2,-59,-111,-57,-156v3,-38,31,-159,78,-138v17,21,-18,45,-24,66v-44,74,-9,155,13,218v2,5,-7,10,-10,10","w":112},")":{"d":"68,-94v-2,37,-30,162,-78,142v-19,-21,17,-44,23,-64v46,-74,8,-161,-13,-228v-1,-5,5,-9,10,-9v34,-4,60,117,58,159","w":95},"*":{"d":"59,-213v4,-6,21,-22,27,-9v1,3,-16,18,-20,24v18,-7,50,12,18,14r-14,0v6,7,31,21,12,28v-14,2,-12,-3,-24,-13v-1,9,5,26,-4,28v-15,-3,-14,-7,-15,-29v-4,3,-21,21,-28,8v-1,-3,11,-15,16,-20v-17,3,-44,-18,-9,-17r10,0v-6,-8,-23,-25,-5,-27v12,-1,10,7,17,12v-1,-18,12,-32,19,-14r0,15","w":124},"+":{"d":"109,-120v29,-13,92,14,44,29v-2,0,-14,1,-35,3v-38,4,-19,19,-31,61v0,45,-33,30,-37,5v0,0,3,-15,8,-48r-2,-7r-37,4v-5,1,-19,-16,-19,-21v0,-6,10,-11,28,-14v42,-9,35,4,44,-28v8,-28,9,-47,27,-51v22,7,13,39,7,61v0,3,1,6,3,6","w":198},",":{"d":"23,-24v16,14,1,50,-19,52v-9,-10,14,-25,3,-45v0,-2,13,-9,16,-7","w":56},"-":{"d":"151,-140v27,17,27,40,-24,38v-41,-2,-104,17,-109,-22v16,-21,94,-12,133,-16","w":214},".":{"d":"16,-32v18,2,13,35,-4,33v-8,0,-12,-5,-12,-15v0,-8,7,-19,16,-18","w":54},"\/":{"d":"204,-230v0,6,-29,46,-88,120v-59,75,-93,113,-100,113v-11,0,-16,-5,-16,-13v18,-29,144,-183,161,-208v12,-17,23,-23,30,-23v9,0,13,3,13,11"},"0":{"d":"69,-1v-77,6,-81,-91,-42,-137v21,-24,35,-49,71,-50v48,17,71,42,73,75v4,63,-60,109,-102,112xm56,-22v47,0,90,-37,88,-98v-1,-26,-17,-39,-44,-41v-36,-3,-76,67,-72,107v1,22,10,32,28,32","w":198},"1":{"d":"21,-115v-4,33,-1,71,-1,106v0,7,-3,11,-11,11v-10,0,-9,-26,-9,-41v0,-55,1,-86,2,-95v6,-17,-4,-45,8,-55v12,0,14,50,11,74","w":48},"2":{"d":"93,-30v9,7,99,7,68,33v0,0,-21,-5,-64,-8v-31,-2,-80,22,-93,-6v42,-25,127,-52,127,-120v0,-17,-13,-40,-30,-38v-30,-3,-71,23,-87,34v-7,0,-14,-8,-14,-14v0,-19,73,-41,94,-41v32,0,58,36,57,67v0,36,-34,77,-58,93","w":195},"3":{"d":"133,-103v16,14,44,21,41,54v-3,41,-87,56,-142,54v-9,0,-12,-6,-11,-17v25,-24,124,3,134,-46v1,-7,-8,-13,-27,-20v-35,-14,-52,-3,-86,0v-5,0,-12,-11,-11,-18v22,-16,97,-11,99,-40v3,-45,-91,-33,-119,-20v-5,1,-11,-9,-11,-14v-1,-13,46,-20,66,-19v60,0,88,21,84,63v-1,10,-7,17,-17,23","w":201},"4":{"d":"0,-109v3,-27,-8,-70,9,-82v28,-3,10,66,22,85r52,1v4,0,7,-14,7,-42v0,-39,6,-51,21,-33v7,8,0,64,3,73v15,2,16,1,18,17v1,9,-15,9,-17,12v-1,15,3,85,-14,82v-25,-4,-9,-58,-11,-83v-29,-10,-96,17,-90,-30","w":159},"5":{"d":"30,-186v34,0,85,-16,95,13v0,6,-3,8,-10,8v-61,0,-92,4,-92,10r2,41v26,-6,73,-6,87,14v42,39,2,101,-54,101v-21,0,-62,-14,-58,-32v5,-27,34,15,54,8v25,1,54,-17,53,-40v-1,-37,-65,-37,-87,-19v-22,-2,-17,-63,-19,-91v0,-7,10,-13,29,-13","w":156},"6":{"d":"54,-105v41,-14,90,11,88,51v4,30,-49,55,-78,56v-33,1,-66,-24,-64,-56v4,-55,63,-126,114,-137v10,0,17,22,7,26v-34,17,-57,36,-71,58v1,1,3,2,4,2xm60,-24v19,0,64,-22,60,-42v-4,-25,-60,-15,-74,-7r-13,-8v-22,30,-9,57,27,57","w":169},"7":{"d":"98,-164v-32,-9,-103,17,-97,-21v33,-4,120,-17,139,10v-22,24,-103,180,-109,181v-6,2,-13,-11,-12,-17v0,-6,27,-57,79,-153","w":167},"8":{"d":"113,-90v26,-1,47,12,44,37v3,28,-61,56,-92,56v-34,0,-66,-14,-63,-45v1,-12,11,-27,31,-41v-17,-8,-25,-19,-25,-35v0,-30,58,-70,88,-70v29,0,58,22,55,51v-1,17,-14,33,-38,47xm29,-115v29,24,101,3,102,-27v-13,-44,-106,-1,-102,27xm29,-34v11,26,100,6,100,-21v0,-8,-17,-12,-49,-12v-31,0,-50,7,-51,33","w":185},"9":{"d":"129,-147v0,46,1,92,-1,138v-1,8,-5,12,-13,11v-13,-6,-7,-103,-12,-110v-68,48,-150,-47,-60,-72v41,-11,86,-11,86,33xm106,-155v-23,-18,-103,4,-65,28v27,14,60,-6,65,-28","w":155},":":{"d":"16,-111v18,2,12,35,-4,34v-8,0,-12,-5,-12,-15v0,-9,7,-20,16,-19xm16,-49v18,2,12,35,-4,34v-8,0,-12,-6,-12,-16v0,-8,7,-19,16,-18","w":54},";":{"d":"17,-114v18,2,12,35,-4,34v-8,0,-12,-5,-12,-15v0,-9,7,-20,16,-19xm4,6v17,-3,30,-38,16,-52v-20,-1,-5,35,-20,47v0,3,1,5,4,5","w":55},"<":{"d":"111,-189v7,1,13,12,10,21v-1,5,-30,30,-89,76v19,21,50,49,75,63v11,6,13,15,12,24v-1,7,-4,10,-10,9v-21,-10,-77,-60,-95,-75v-31,-41,-12,-33,40,-77v35,-29,54,-41,57,-41","w":149},"=":{"d":"4,-126v18,-1,93,-19,120,-15v17,-3,22,17,8,18v-24,2,-98,15,-118,19v-9,0,-20,-13,-10,-22xm105,-90v15,-4,38,-10,38,9v-6,13,-1,8,-23,11r-96,12v-22,4,-32,-20,-14,-25v29,4,64,-6,95,-7","w":169},">":{"d":"1,-170v0,-9,3,-18,10,-20v3,0,23,12,57,41v51,44,71,35,40,77v-24,20,-73,64,-95,75v-28,-15,10,-40,24,-46v10,-12,43,-37,53,-50v-59,-46,-88,-72,-89,-77","w":149},"?":{"d":"84,-251v28,0,58,26,58,55v0,66,-106,46,-90,140v-1,16,-5,23,-12,23v-10,0,-11,-23,-10,-38v6,-60,20,-76,72,-99v34,-15,25,-53,-1,-58v-39,-8,-75,5,-91,22v-5,1,-10,-10,-10,-14v2,-25,48,-31,84,-31xm41,-27v9,0,19,29,4,30v-9,0,-20,-29,-4,-30","w":168},"@":{"d":"181,-48v7,-1,14,6,14,12v0,6,-10,14,-31,23v-19,9,-31,13,-35,13v-82,-2,-126,-16,-129,-87v-2,-58,52,-104,110,-104v45,0,70,27,68,71v-2,41,-53,87,-85,40v-16,14,-52,23,-57,-5v-3,-20,56,-66,66,-32v10,7,5,36,21,36v22,0,33,-17,34,-51v1,-20,-22,-40,-41,-40v-70,0,-131,94,-70,136v39,27,93,24,135,-12xm61,-84v6,0,30,-15,20,-23v-9,-1,-28,14,-20,23","w":222},"A":{"d":"90,-145v2,0,22,-4,25,-8v-6,-21,-6,-21,-9,-30v-7,15,-13,27,-16,38xm183,-157v4,13,-20,22,-28,26v11,43,28,85,42,122v0,7,-3,12,-9,12v-39,-3,-45,-100,-65,-124v-43,14,-47,5,-63,49v-14,39,-22,66,-47,75v-8,0,-13,-4,-13,-11v0,-6,11,-33,35,-85v-36,7,-42,-16,-7,-28r24,-10v17,-28,45,-168,71,-107v18,42,14,44,24,76v10,-5,36,-9,36,5","w":224,"k":{"y":18,"v":18,"l":-9,"k":-9,"j":-9,"g":18,"f":18}},"B":{"d":"33,-218v-7,0,-19,7,-28,5v-13,-30,21,-29,54,-36v92,-19,159,55,97,111v43,3,63,24,61,61v-3,54,-95,79,-149,79v-39,0,-64,11,-65,-17v3,-15,9,-12,39,-12v3,-46,2,-165,-9,-191xm162,-189v0,-36,-78,-43,-99,-33v0,8,1,36,4,85v21,-6,95,-13,95,-52xm200,-88v-23,-39,-81,-26,-132,-15r-1,76v55,-1,123,-11,133,-61","w":248,"k":{"y":18,"k":-9,"j":-9,"i":-9}},"C":{"d":"137,-33v16,3,56,-32,63,-6v11,41,-64,39,-115,39v-58,0,-91,-57,-85,-123v6,-71,64,-125,150,-125v27,0,41,8,41,24v0,30,-43,3,-67,9v-49,13,-84,36,-98,88v4,77,31,98,111,94","k":{"l":-18,"k":-18}},"D":{"d":"73,-194v0,-13,3,-25,-10,-24v-17,0,-62,36,-62,-6v20,-20,72,-30,114,-26v82,7,178,21,167,100v-15,101,-150,141,-258,153v-19,2,-29,-9,-22,-27v7,-6,28,-10,64,-13v1,-1,9,-154,7,-157xm225,-111v20,-23,42,-52,14,-76v-37,-31,-79,-29,-140,-37r-8,172v0,8,3,7,10,7v42,-15,101,-40,124,-66","w":311,"k":{"y":27,"s":18,"q":27,"l":-9,"j":-18,"i":-18,"h":-9,"g":18,"e":27,"d":36,"c":36,"a":36}},"E":{"d":"27,-190v-12,6,-38,1,-23,-17v20,-14,101,-36,141,-42v16,-3,15,14,8,24r-102,27v-4,13,-5,47,-1,62r54,-17v18,-5,18,17,9,26r-64,21r2,72v23,-3,71,-20,91,-29v19,1,24,8,15,21v-32,10,-94,38,-142,41v-6,-2,-10,-6,-10,-14v6,-8,31,-7,23,-25v-1,-13,-1,-33,-2,-59v-4,0,-23,2,-21,-9v-2,-12,13,-14,20,-19v0,-14,1,-36,2,-63","w":187,"k":{"z":9,"t":9,"m":-9,"f":9,"b":-9}},"F":{"d":"28,-187v-13,7,-34,1,-27,-13v14,-30,100,-33,131,-50v17,3,18,9,14,24v-5,6,-89,26,-93,31v-2,11,-2,30,0,59v6,1,45,-22,56,-19v15,-1,16,16,8,23v-3,1,-23,9,-58,24v-21,18,-6,53,-9,97v-1,0,-4,14,-11,12v-10,1,-13,-25,-13,-38v0,-54,15,-64,-16,-59v-16,-14,5,-25,15,-29v1,-5,2,-25,3,-62","w":145,"k":{"z":18,"y":18,"x":18,"u":18,"t":27,"s":27,"q":27,"o":36,"l":-36,"k":-36,"h":-36,"g":36,"e":27,"d":36,"c":36,"b":-36,"a":36,"N":-18,"M":-18,"L":-18,"K":-18,"D":-36,"B":-36,"'":-18,"\"":-18}},"G":{"d":"215,-122v34,0,58,-4,61,22v2,13,-12,12,-28,13v-2,103,-186,115,-231,39v-21,-35,-25,-102,8,-138v25,-27,68,-63,132,-63v14,0,26,25,14,34v-68,-7,-100,24,-127,58v-29,36,-20,102,28,118v55,19,143,-7,146,-49v-12,1,-51,-4,-47,-18v4,-16,12,-16,44,-16","w":303,"k":{"o":18,"a":18}},"H":{"d":"233,-144v0,17,-24,14,-44,18v0,49,4,71,-3,123v-12,8,-15,4,-25,-8v-5,-41,3,-60,-1,-107v-29,4,-60,10,-95,19v1,20,4,48,4,82v0,11,-4,17,-11,17v-25,-13,-16,-59,-18,-97v-15,3,-41,7,-40,-12v1,-16,16,-15,34,-17v0,-48,1,-85,5,-110v3,-16,20,-14,24,1v0,37,-3,69,2,104v14,-5,46,-11,94,-18v0,-30,2,-60,7,-92v4,-7,8,-11,13,-11v26,5,10,68,10,96v17,-5,44,-11,44,12","w":250,"k":{"s":9,"q":9,"p":-18,"o":9,"l":-18,"k":-18,"j":-18,"i":-18,"h":-18,"d":9,"c":9,"b":-18}},"I":{"d":"96,-52v14,-10,58,-3,37,13v-18,14,-83,42,-120,38v-7,1,-7,-12,-5,-19v11,-3,30,-10,58,-20v3,-68,3,-122,-1,-161v-3,-2,-80,34,-63,-9v37,-13,76,-31,121,-40v10,-2,21,6,22,14v-5,16,-43,26,-52,29v4,73,7,98,3,155","w":171,"k":{"y":9,"l":-18,"k":-18,"h":-18,"f":9,"b":-18}},"J":{"d":"80,-202v-14,1,-28,14,-42,13v-20,-1,-14,-16,-4,-26v26,-12,77,-30,104,-36v10,1,17,23,1,27v-8,3,-19,7,-34,12v3,63,23,138,-3,188v-16,31,-84,32,-96,-6v-5,-4,-8,-34,6,-30v16,4,19,38,39,33v64,-2,28,-128,29,-175","w":158,"k":{"o":9,"l":-18,"k":-18,"j":-9,"i":-9,"h":-18,"b":-18}},"K":{"d":"91,-175v34,55,56,95,79,167v-3,11,-9,14,-20,11v-28,-43,-51,-122,-81,-162v-9,6,-21,14,-36,26v0,59,0,100,-1,123v-7,20,-20,15,-26,-3v-2,-50,-9,-146,0,-230v2,-5,5,-8,9,-8v32,1,9,53,19,74v6,-7,100,-71,110,-75v8,0,18,10,17,19v-10,24,-54,40,-70,58","w":196},"L":{"d":"29,-204v0,51,1,130,7,172v36,-6,65,-10,89,-11v16,3,29,17,15,30v-17,1,-91,16,-112,16v-11,0,-18,-6,-21,-18v-2,-8,-5,-35,-6,-80v-1,-36,0,-56,2,-57v1,-30,-8,-79,1,-101v17,-1,25,15,25,49","w":173,"k":{"y":9,"t":18,"i":-9,"f":18,"'":36}},"M":{"d":"184,-198v-2,13,1,134,3,190v-1,3,-5,6,-10,8v-34,-26,-15,-120,-25,-180r-46,66v-15,9,-27,-9,-22,-26v-6,-6,-23,-25,-51,-59v-6,21,-6,151,-2,188v1,8,-3,12,-10,12v-8,0,-13,-4,-15,-13v-5,-1,-3,-135,-6,-211v-1,-20,13,-34,27,-21v15,23,48,57,68,81v5,-3,23,-28,52,-76v24,-22,43,8,37,41","w":232,"k":{"l":-9,"k":-9,"j":-18,"a":9}},"N":{"d":"185,-83v-5,49,8,77,-21,83v-13,3,-21,-8,-26,-16v-34,-39,-84,-151,-105,-186v-6,50,3,138,3,186v0,30,-26,17,-28,1v-10,-89,0,-147,-8,-225v0,-9,6,-13,15,-13v58,19,91,164,135,216v0,-10,0,-11,1,-32v3,-78,4,-118,-3,-170v3,-8,6,-13,10,-13v25,13,26,41,26,91v0,62,1,78,1,78","w":229,"k":{"l":-9,"k":-9,"j":-9,"h":-9}},"O":{"d":"76,0v-90,6,-84,-125,-46,-184v20,-30,37,-55,61,-68v5,-1,10,-1,16,0v52,23,76,56,79,101v6,79,-62,148,-110,151xm62,-28v64,0,94,-52,95,-132v0,-34,-17,-48,-48,-56v-41,1,-82,95,-78,144v2,30,11,44,31,44","w":223,"k":{"t":9,"s":18,"l":-9,"k":-9,"h":-18,"e":9,"d":9,"c":18,"a":27}},"P":{"d":"10,-227v46,-25,195,-52,189,34v-2,30,-8,26,-31,51v-10,10,-65,37,-94,42r1,56v-3,20,7,46,-19,43v-14,-12,-6,-166,-9,-212v-20,10,-31,15,-33,15v-15,-1,-18,-21,-4,-29xm72,-126v45,-11,108,-31,103,-84v-11,-28,-80,-12,-104,-10v0,24,0,55,1,94","w":190,"k":{"q":18,"o":18,"l":-36,"k":-36,"j":-18,"i":-18,"h":-36,"f":-18,"b":-36,"a":18,"W":-18,"V":-18,"T":-18,"N":-18,"M":-18,"L":-18,"K":-18,"I":-18,"F":-18,"E":-18,"D":-18,"C":-18,"B":-18,"'":-18,"\"":-18}},"Q":{"d":"174,-44v-1,4,71,52,37,63v-19,-1,-21,-13,-57,-44v-19,11,-53,28,-85,24v-32,-4,-69,-39,-69,-83v0,-79,50,-147,111,-167v3,-1,8,-1,16,0v46,31,79,59,79,133v0,26,-19,58,-32,74xm152,-71v10,1,33,-41,29,-72v3,-40,-60,-110,-92,-60v-32,27,-66,64,-66,125v0,51,74,54,109,29v-3,-6,-25,-37,-5,-41v10,-2,20,15,25,19","w":247},"R":{"d":"6,-232v64,-37,232,-31,182,71v-9,11,-24,24,-46,31r69,93v8,10,12,20,11,31v1,8,-7,9,-14,7v-14,-23,-76,-96,-90,-121v-13,3,-37,13,-57,10v2,27,1,62,-1,106v-2,7,-16,9,-21,3v-11,-31,-4,-193,-4,-210r-24,7v-12,-7,-15,-18,-5,-28xm151,-168v36,-14,20,-56,-13,-56v-26,0,-56,1,-79,6v2,32,3,58,2,78v31,2,69,-14,90,-28","w":250},"S":{"d":"15,-40v72,0,186,18,209,-53v-4,-28,-22,-27,-56,-35v-41,-9,-150,-18,-142,-67v7,-45,91,-52,148,-57v27,-2,79,10,64,37v-29,6,-74,-8,-99,-3v-25,5,-103,22,-56,39v56,20,189,20,174,98v-12,63,-86,80,-162,80v-63,0,-87,-1,-95,-30v0,-6,5,-9,15,-9","w":285,"k":{"y":9}},"T":{"d":"66,-204v-18,2,-64,25,-66,-8v9,-19,30,-17,67,-27v46,-13,55,-20,80,-10v14,15,7,21,-18,26r-32,8v-3,38,-4,140,-3,198v-5,22,-22,24,-26,1v-4,-9,-4,-174,-2,-188","w":145,"k":{"l":-36,"k":-36,"j":-18,"i":-18,"h":-27,"b":-36,"Y":-18,"W":-18,"V":-18,"R":-18,"M":-18,"L":-18,"K":-18,"D":-18,"B":-18}},"U":{"d":"162,-252v39,11,52,103,37,152v-15,49,-61,92,-119,100v-87,11,-95,-153,-48,-210v15,-18,17,-39,39,-43v20,0,15,35,1,42v-17,26,-40,77,-40,118v0,34,9,66,43,63v54,-5,105,-64,101,-134v-2,-32,-15,-51,-26,-73v1,-10,5,-15,12,-15","w":233,"k":{"o":18}},"V":{"d":"154,-242v7,-21,25,-4,26,8v-9,77,-54,152,-81,219v-10,25,-23,17,-37,-5r-35,-107v-17,-60,-29,-90,-26,-104v-1,-26,13,-26,22,-9v15,57,36,146,57,180v27,-60,27,-59,38,-85v20,-47,31,-80,36,-97","w":172,"k":{"w":-18,"l":-36,"k":-36,"j":-36,"i":-36,"h":-36,"b":-36,"Y":-18,"W":-18,"T":-18,"R":-18,"P":-18,"N":-18,"L":-18,"K":-18,"I":-18,"F":-18,"E":-18,"D":-18,"B":-18,"'":-36,"\"":-36}},"W":{"d":"247,-248v22,-15,37,13,23,33v-24,72,-34,136,-58,210v-31,25,-60,-80,-73,-88v-9,4,-37,74,-40,87v-22,21,-34,-17,-40,-33v-5,-41,-49,-155,-59,-202v2,-16,21,-13,24,-3v7,-1,40,98,54,166v2,6,5,7,9,7r35,-71v40,-25,52,63,67,84v20,-30,36,-161,58,-190","w":267,"k":{"l":-36,"k":-36,"j":-36,"i":-36,"h":-36,"f":-18,"b":-36,"T":-18,"R":-18,"N":-18,"M":-18,"L":-18,"K":-18,"I":-18,"F":-18,"E":-18,"D":-18,"B":-18,"'":-36,"\"":-36}},"X":{"d":"26,-251v22,-6,52,74,64,79v14,-2,37,-110,64,-72v13,19,-7,23,-20,56v-10,27,-21,43,-25,49v11,16,81,113,85,133v-4,12,-23,5,-29,-4v-16,-25,-58,-90,-71,-98v-13,6,-59,113,-81,107v-11,1,-15,-8,-12,-18r71,-117v-8,-23,-50,-87,-58,-107v0,-5,4,-8,12,-8","w":220},"Y":{"d":"157,-252v8,0,17,3,16,11v-4,28,-55,93,-75,124v-5,37,-4,67,-4,106v0,12,-27,19,-27,1v-11,-31,7,-102,-16,-130v-24,-29,-31,-64,-51,-101v0,-6,4,-8,10,-8v38,5,48,80,66,102v7,6,70,-115,81,-105","w":164,"k":{"l":-36,"k":-36,"j":-18,"i":-18,"h":-36,"b":-36,"Y":-18,"X":-18,"W":-18,"V":-18,"T":-18,"R":-18,"N":-18,"M":-18,"K":-18,"F":-18,"E":-18,"D":-18,"'":-18}},"Z":{"d":"139,-249v47,1,76,-10,80,21v-40,37,-157,162,-176,196v91,-5,106,-3,176,3v9,0,18,11,15,21v-4,14,-39,4,-55,4r-93,1v-25,1,-85,19,-86,-15v35,-79,110,-138,160,-201r-119,0v-10,-1,-15,-7,-15,-17v0,-22,37,-14,60,-14v39,0,53,1,53,1","w":262},"[":{"d":"80,58v-37,2,-89,10,-77,-40v-2,-76,-3,-128,-3,-156v-1,-23,3,-86,3,-103v9,-5,76,-23,79,1v-5,7,-40,8,-57,10v-7,72,-2,161,-2,263v22,8,55,0,61,17v0,5,-1,8,-4,8","w":111},"\\":{"d":"0,-230v0,-8,4,-11,13,-11v15,-1,44,40,53,53r138,178v0,8,-5,13,-16,13v-7,0,-41,-38,-100,-113v-59,-74,-88,-114,-88,-120"},"]":{"d":"82,22v0,53,-38,39,-78,40v-11,-16,7,-20,29,-21v8,0,17,-2,28,-4v0,-72,2,-129,2,-173v0,-45,-2,-76,-4,-94v-17,-2,-49,-2,-56,-10v1,-26,69,-5,78,-1r3,103v0,31,-2,84,-2,160","w":111},"^":{"d":"69,-223v17,0,58,46,62,57v0,3,-1,4,-5,4v-16,-8,-42,-39,-51,-44v-16,12,-48,39,-63,44v-7,0,-12,-1,-12,-6v7,-13,57,-47,69,-55","w":158},"_":{"d":"309,1v7,-2,20,17,19,23v0,10,-14,15,-43,15r-262,2v-8,0,-25,-14,-23,-24v0,-6,11,-13,32,-13","w":354},"`":{"d":"117,-179v21,8,4,20,-7,21v-7,3,-118,-72,-110,-81v6,-15,25,-10,34,1","w":154},"a":{"d":"0,-43v-1,-33,100,-120,128,-65v11,19,24,68,43,91v0,6,-6,13,-12,13v-10,-2,-24,-22,-31,-31v-17,18,-47,43,-79,36v-26,1,-49,-21,-49,-44xm30,-33v37,23,94,-24,73,-64v-27,12,-64,39,-73,64","w":198,"k":{"y":18,"t":36,"g":18,"f":18}},"b":{"d":"9,-252v30,3,17,87,24,115v82,-22,164,60,85,107v-19,12,-70,34,-96,36v-16,2,-19,-16,-18,-33v6,-82,-3,-136,-4,-215v0,-7,3,-10,9,-10xm33,-35v32,4,89,-28,89,-52v-6,-23,-76,-35,-90,-8v3,17,3,40,1,60","w":179,"k":{"t":9,"o":9,".":9,",":18}},"c":{"d":"77,-24v20,-3,44,-7,45,13v-2,11,-32,14,-50,14v-33,0,-74,-22,-72,-53v-5,-31,69,-74,100,-74v14,0,35,27,11,27v-33,0,-79,30,-87,53v-3,11,40,21,53,20","w":149,"k":{"k":-9}},"d":{"d":"129,-194v0,-23,-10,-54,12,-55v43,22,19,175,19,248v0,25,-24,15,-33,0v-61,5,-127,-1,-127,-57v0,-42,74,-74,125,-74v3,-21,4,-42,4,-62xm33,-45v18,10,79,29,91,4v0,-19,-5,-45,0,-60v-26,-2,-97,32,-91,56","w":190,"k":{"z":-9,"x":-18,"r":-18,"p":-18,"n":-9,"m":-9,"l":-18,"k":-18,"j":-9,"i":-9,"h":-18,"b":-18,"!":-18}},"e":{"d":"126,-32v4,0,19,13,19,17v-4,18,-50,17,-74,18v-30,1,-74,-30,-71,-60v-5,-27,75,-78,100,-78v12,0,31,15,30,26v-3,33,-67,58,-99,63v17,21,51,29,95,14xm42,-78v13,9,44,-10,51,-25v-5,-16,-44,15,-48,14r5,-5v0,0,-10,14,-8,16","w":171,"k":{"j":-9,"g":9}},"f":{"d":"102,-252v13,1,35,23,26,39v-13,0,-18,-9,-32,-9v-37,0,-30,57,-28,88v13,-6,40,-13,36,12v2,11,-38,21,-39,25v1,27,2,32,2,87v0,7,-3,12,-9,12v-24,-1,-13,-68,-19,-92v-18,3,-38,4,-39,-15v0,-6,6,-12,19,-16v14,-4,22,-5,22,-6v3,-60,-7,-130,61,-125","w":129,"k":{"r":-18,"q":18,"o":18,"l":-36,"k":-36,"j":-18,"i":-18,"h":-36,"g":18,"b":-36,"?":-18,"\"":-9,"!":-27}},"g":{"d":"1,-72v0,-45,55,-58,105,-51v21,-3,9,50,14,56v1,87,-8,175,-89,176v-14,0,-44,-16,-42,-31v4,-30,32,8,50,2v41,3,64,-63,60,-110v-35,38,-98,0,-98,-42xm23,-72v0,37,54,49,72,17v2,-11,2,-25,-1,-42v-24,-10,-71,-2,-71,25","w":146,"k":{"v":-9,"r":-18,"p":-18,"n":-9,"m":-18,"l":-18,"k":-18,"j":-45}},"h":{"d":"53,-136v50,-22,87,37,90,78v3,33,-22,91,-34,39v6,-24,8,-39,8,-45v0,-17,-14,-48,-30,-48v-26,0,-56,18,-56,44r1,59v0,7,-3,11,-10,12v-9,1,-16,-10,-17,-33v-2,-60,-11,-179,1,-221v26,-3,19,11,21,46v2,40,2,67,3,79","w":170,"k":{"z":-18,"w":-9,"n":-18,"m":-9,"l":-18,"k":-18,"j":-18,"i":-9,"h":-9,"b":-9}},"i":{"d":"10,-167v11,-1,29,28,8,30v-13,0,-27,-27,-8,-30xm15,-123v32,8,14,76,20,115v0,4,-6,10,-10,10v-26,3,-21,-78,-20,-113v0,-4,5,-13,10,-12","w":79,"k":{"c":9,"a":9}},"j":{"d":"18,-180v11,-1,33,28,9,30v-12,1,-31,-28,-9,-30xm-31,81v31,-2,38,-39,40,-85v1,-52,-5,-81,-6,-104v0,-13,4,-19,11,-19v16,0,25,39,25,116v0,72,-11,103,-61,120v-21,1,-65,-19,-61,-38v6,-24,37,16,52,10","w":83,"k":{"t":9,"m":-9,"k":-9,"j":-36,"i":-9,"h":-9,"f":-90}},"k":{"d":"0,-69r8,-177v10,-12,30,-4,28,18r-6,114v0,4,2,7,4,8r75,-32v29,9,23,23,-5,36r-28,12v1,10,43,72,46,80v0,5,-5,10,-9,11v-27,-1,-45,-60,-65,-77v-34,2,-2,66,-31,80v-11,-2,-19,-26,-17,-73","w":154,"k":{"t":18}},"l":{"d":"12,-249v27,0,15,51,16,77v1,36,8,89,8,162v0,8,-4,12,-11,12v-9,0,-17,-14,-20,-42v-4,-35,-7,-118,-5,-196v0,-9,4,-13,12,-13","w":81,"k":{"y":9,"l":-18,"d":9}},"m":{"d":"122,-103v46,-42,109,-13,109,56v0,15,-5,49,-15,48v-18,-6,-18,-32,-14,-56v10,-60,-53,-47,-65,-17v-9,8,-3,72,-19,74v-33,4,0,-100,-33,-100v-23,-1,-47,22,-53,40v-4,35,14,56,-12,61v-13,0,-20,-25,-20,-74v0,-21,-1,-59,15,-56v8,0,14,7,18,20v34,-27,66,-20,89,4","w":276,"k":{"y":18,"t":9,"?":18}},"n":{"d":"59,-119v54,-25,108,17,108,64v0,19,-15,82,-40,52v-16,-19,13,-39,7,-59v0,-25,-15,-37,-45,-37v-8,5,-66,17,-56,41v-2,20,14,59,-10,59v-16,0,-23,-27,-23,-83v-1,-17,0,-48,12,-47v8,0,15,7,21,20","w":211,"k":{"o":18,"?":18}},"o":{"d":"76,-124v34,6,58,22,59,62v1,30,-47,68,-82,66v-20,-1,-55,-21,-53,-42v-3,-26,49,-91,76,-86xm46,-23v21,0,65,-23,62,-45v1,-14,-12,-30,-26,-29v-14,-3,-57,48,-54,63v0,7,6,11,18,11","w":161,"k":{"l":-9,"k":-9}},"p":{"d":"71,-125v26,0,63,31,63,59v0,46,-62,82,-103,58v-2,37,2,80,-5,112v-6,9,-21,3,-21,-10v0,-50,-5,-115,-5,-194v0,-21,3,-31,10,-31v12,-4,16,18,14,15v26,-6,42,-9,47,-9xm29,-29v36,5,79,-14,79,-46v0,-12,-14,-25,-27,-24v-19,1,-54,13,-54,32v0,18,1,32,2,38","w":160},"q":{"d":"103,-8v-41,24,-103,-12,-103,-58v0,-28,37,-59,63,-59v5,0,20,3,46,9v4,-7,2,-15,14,-15v7,0,11,10,11,31v0,79,-6,144,-6,194v0,14,-14,18,-21,10v-6,-30,-1,-77,-4,-112xm106,-67v0,-29,-79,-49,-80,-8v-1,32,42,52,78,46v1,-6,2,-20,2,-38","w":178,"k":{"j":-54}},"r":{"d":"89,-138v14,-1,41,21,18,27v-27,-13,-74,25,-77,44v-4,24,7,65,-16,70v-23,-2,-7,-58,-14,-83v3,-20,-8,-53,10,-56v11,3,11,7,17,23v10,-10,45,-24,62,-25","w":124,"k":{"w":-9,"v":-9,"p":-18,"o":9,"n":-18,"m":-18,"l":-18,"k":-18,"j":-18,"h":-18,"b":-18,"!":-18}},"s":{"d":"112,-65v24,37,-11,68,-53,68v-30,0,-55,-18,-59,-39v0,-7,3,-10,10,-10v16,4,33,22,55,22v31,0,39,-30,6,-37v-25,-5,-70,-9,-62,-41v5,-17,62,-35,79,-16v10,6,17,20,2,22v-15,-4,-30,-11,-47,-4v17,19,61,9,69,35","w":146,"k":{"y":18,"f":9}},"t":{"d":"71,-121v16,-5,49,-11,45,14v2,15,-49,11,-46,25v0,23,9,77,-6,84v-22,-2,-17,-62,-23,-82v-19,10,-40,8,-41,-13v2,-9,32,-18,44,-22v-2,-6,-6,-30,7,-29v13,-3,16,14,20,23","w":144,"k":{"o":9,"e":9,"d":9,"a":9,".":18}},"u":{"d":"123,-103v-2,32,-13,75,2,98v0,6,-4,9,-11,9v-15,-4,-11,-3,-24,-22v-7,2,-29,21,-42,19v-26,2,-48,-27,-48,-52v0,-25,13,-79,35,-75v9,0,19,9,19,18v-9,19,-28,46,-22,75v1,2,3,4,7,5v36,-11,49,-58,60,-96v16,-4,25,3,24,21","w":169,"k":{"y":9,"q":9,"f":9,"e":9,"c":9}},"v":{"d":"89,-128v8,-1,14,11,14,19v3,3,-49,116,-54,109v-17,0,-47,-100,-49,-123v29,-20,34,44,46,66v9,-10,30,-61,43,-71","w":130,"k":{"r":-18,"p":-18,"o":9,"n":-18,"l":-18,"k":-18,"j":-18,"i":-18,"h":-18,"b":-18,".":18}},"w":{"d":"199,-126v9,-1,18,9,17,18v5,3,-62,120,-68,112v-10,-1,-41,-52,-52,-68v-17,17,-19,66,-50,66v-26,-8,-41,-87,-46,-121v0,-5,4,-8,9,-8v25,1,31,56,38,82v2,-3,9,-18,21,-45v17,-39,21,-47,43,-23v11,24,19,51,36,69v15,-16,32,-69,52,-82","w":244,"k":{"o":9,"l":-18,"c":9,".":9}},"x":{"d":"81,-125v11,0,20,5,19,16v3,9,-35,53,-35,58v0,3,48,45,17,51v-4,0,-15,-9,-33,-28r-30,34v-7,1,-19,-15,-19,-20v-3,-2,29,-42,27,-43v1,-8,-42,-57,-14,-63v16,0,24,24,32,36v3,0,31,-42,36,-41","w":136},"y":{"d":"18,-126v8,-5,52,80,53,78v13,-19,43,-73,55,-79v29,11,-4,52,-11,67v-1,3,-76,116,-75,125v-14,45,-26,57,-40,25v20,-43,35,-85,59,-117v-15,-15,-42,-65,-50,-88v0,-7,3,-11,9,-11","w":164,"k":{"o":9,"l":-18,"k":-18,"j":-9,"i":-9,"h":-9,"b":-18}},"z":{"d":"45,-29v20,10,83,-12,81,20v0,6,-5,10,-11,10v-39,-4,-108,22,-115,-20v-3,-2,57,-74,55,-74v-17,-8,-50,10,-53,-15v10,-17,64,-12,92,-16v8,0,20,8,19,17v1,4,-71,81,-68,78","w":154},"{":{"d":"54,40v32,0,84,-2,62,28v-62,7,-115,-12,-116,-65v0,-20,11,-42,34,-66v-13,-1,-33,4,-32,-15v0,-5,10,-10,28,-15v21,-6,33,-10,35,-11v-13,-14,-44,-30,-42,-58v-5,-23,57,-90,77,-89v10,0,16,10,16,22v-15,2,-81,52,-74,72v8,22,47,34,45,59v2,17,-13,17,-21,25v-2,33,-46,47,-46,82v0,15,22,31,34,31","w":148},"|":{"d":"15,-251v20,7,11,40,11,133v0,118,-3,179,-8,183v-20,10,-19,0,-18,-34r2,-184v1,-31,-12,-93,13,-98","w":52},"}":{"d":"53,68v-19,0,-51,9,-53,-10v-1,-4,10,-19,14,-18v40,2,86,2,88,-31v2,-35,-44,-49,-46,-82v-7,-7,-24,-7,-21,-25v-2,-25,37,-37,45,-59v7,-20,-58,-70,-74,-72v-1,-13,6,-22,16,-22v20,-1,82,66,77,89v2,28,-29,44,-42,58v-1,2,68,17,63,26v1,18,-18,16,-32,15v23,24,34,46,34,66v0,36,-36,65,-69,65","w":148},"~":{"d":"165,-149v6,-1,13,4,12,10v4,9,-51,44,-58,42v-21,1,-51,-23,-64,-29v-15,-8,-46,67,-55,29v-4,-19,35,-51,53,-51v18,0,43,30,61,28v9,2,40,-33,51,-29","w":204},"\u00a0":{"w":144,"k":{"B":-18}}}});
Cufon.replace('blockquote p.quote');

/*	SWFObject v2.2 <http://code.google.com/p/swfobject/>
	is released under the MIT License <http://www.opensource.org/licenses/mit-license.php>
*/
var swfobject=function(){var D="undefined",r="object",S="Shockwave Flash",W="ShockwaveFlash.ShockwaveFlash",q="application/x-shockwave-flash",R="SWFObjectExprInst",x="onreadystatechange",O=window,j=document,t=navigator,T=false,U=[h],o=[],N=[],I=[],l,Q,E,B,J=false,a=false,n,G,m=true,M=function(){var aa=typeof j.getElementById!=D&&typeof j.getElementsByTagName!=D&&typeof j.createElement!=D,ah=t.userAgent.toLowerCase(),Y=t.platform.toLowerCase(),ae=Y?/win/.test(Y):/win/.test(ah),ac=Y?/mac/.test(Y):/mac/.test(ah),af=/webkit/.test(ah)?parseFloat(ah.replace(/^.*webkit\/(\d+(\.\d+)?).*$/,"$1")):false,X=!+"\v1",ag=[0,0,0],ab=null;if(typeof t.plugins!=D&&typeof t.plugins[S]==r){ab=t.plugins[S].description;if(ab&&!(typeof t.mimeTypes!=D&&t.mimeTypes[q]&&!t.mimeTypes[q].enabledPlugin)){T=true;X=false;ab=ab.replace(/^.*\s+(\S+\s+\S+$)/,"$1");ag[0]=parseInt(ab.replace(/^(.*)\..*$/,"$1"),10);ag[1]=parseInt(ab.replace(/^.*\.(.*)\s.*$/,"$1"),10);ag[2]=/[a-zA-Z]/.test(ab)?parseInt(ab.replace(/^.*[a-zA-Z]+(.*)$/,"$1"),10):0}}else{if(typeof O.ActiveXObject!=D){try{var ad=new ActiveXObject(W);if(ad){ab=ad.GetVariable("$version");if(ab){X=true;ab=ab.split(" ")[1].split(",");ag=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}}catch(Z){}}}return{w3:aa,pv:ag,wk:af,ie:X,win:ae,mac:ac}}(),k=function(){if(!M.w3){return}if((typeof j.readyState!=D&&j.readyState=="complete")||(typeof j.readyState==D&&(j.getElementsByTagName("body")[0]||j.body))){f()}if(!J){if(typeof j.addEventListener!=D){j.addEventListener("DOMContentLoaded",f,false)}if(M.ie&&M.win){j.attachEvent(x,function(){if(j.readyState=="complete"){j.detachEvent(x,arguments.callee);f()}});if(O==top){(function(){if(J){return}try{j.documentElement.doScroll("left")}catch(X){setTimeout(arguments.callee,0);return}f()})()}}if(M.wk){(function(){if(J){return}if(!/loaded|complete/.test(j.readyState)){setTimeout(arguments.callee,0);return}f()})()}s(f)}}();function f(){if(J){return}try{var Z=j.getElementsByTagName("body")[0].appendChild(C("span"));Z.parentNode.removeChild(Z)}catch(aa){return}J=true;var X=U.length;for(var Y=0;Y<X;Y++){U[Y]()}}function K(X){if(J){X()}else{U[U.length]=X}}function s(Y){if(typeof O.addEventListener!=D){O.addEventListener("load",Y,false)}else{if(typeof j.addEventListener!=D){j.addEventListener("load",Y,false)}else{if(typeof O.attachEvent!=D){i(O,"onload",Y)}else{if(typeof O.onload=="function"){var X=O.onload;O.onload=function(){X();Y()}}else{O.onload=Y}}}}}function h(){if(T){V()}else{H()}}function V(){var X=j.getElementsByTagName("body")[0];var aa=C(r);aa.setAttribute("type",q);var Z=X.appendChild(aa);if(Z){var Y=0;(function(){if(typeof Z.GetVariable!=D){var ab=Z.GetVariable("$version");if(ab){ab=ab.split(" ")[1].split(",");M.pv=[parseInt(ab[0],10),parseInt(ab[1],10),parseInt(ab[2],10)]}}else{if(Y<10){Y++;setTimeout(arguments.callee,10);return}}X.removeChild(aa);Z=null;H()})()}else{H()}}function H(){var ag=o.length;if(ag>0){for(var af=0;af<ag;af++){var Y=o[af].id;var ab=o[af].callbackFn;var aa={success:false,id:Y};if(M.pv[0]>0){var ae=c(Y);if(ae){if(F(o[af].swfVersion)&&!(M.wk&&M.wk<312)){w(Y,true);if(ab){aa.success=true;aa.ref=z(Y);ab(aa)}}else{if(o[af].expressInstall&&A()){var ai={};ai.data=o[af].expressInstall;ai.width=ae.getAttribute("width")||"0";ai.height=ae.getAttribute("height")||"0";if(ae.getAttribute("class")){ai.styleclass=ae.getAttribute("class")}if(ae.getAttribute("align")){ai.align=ae.getAttribute("align")}var ah={};var X=ae.getElementsByTagName("param");var ac=X.length;for(var ad=0;ad<ac;ad++){if(X[ad].getAttribute("name").toLowerCase()!="movie"){ah[X[ad].getAttribute("name")]=X[ad].getAttribute("value")}}P(ai,ah,Y,ab)}else{p(ae);if(ab){ab(aa)}}}}}else{w(Y,true);if(ab){var Z=z(Y);if(Z&&typeof Z.SetVariable!=D){aa.success=true;aa.ref=Z}ab(aa)}}}}}function z(aa){var X=null;var Y=c(aa);if(Y&&Y.nodeName=="OBJECT"){if(typeof Y.SetVariable!=D){X=Y}else{var Z=Y.getElementsByTagName(r)[0];if(Z){X=Z}}}return X}function A(){return !a&&F("6.0.65")&&(M.win||M.mac)&&!(M.wk&&M.wk<312)}function P(aa,ab,X,Z){a=true;E=Z||null;B={success:false,id:X};var ae=c(X);if(ae){if(ae.nodeName=="OBJECT"){l=g(ae);Q=null}else{l=ae;Q=X}aa.id=R;if(typeof aa.width==D||(!/%$/.test(aa.width)&&parseInt(aa.width,10)<310)){aa.width="310"}if(typeof aa.height==D||(!/%$/.test(aa.height)&&parseInt(aa.height,10)<137)){aa.height="137"}j.title=j.title.slice(0,47)+" - Flash Player Installation";var ad=M.ie&&M.win?"ActiveX":"PlugIn",ac="MMredirectURL="+O.location.toString().replace(/&/g,"%26")+"&MMplayerType="+ad+"&MMdoctitle="+j.title;if(typeof ab.flashvars!=D){ab.flashvars+="&"+ac}else{ab.flashvars=ac}if(M.ie&&M.win&&ae.readyState!=4){var Y=C("div");X+="SWFObjectNew";Y.setAttribute("id",X);ae.parentNode.insertBefore(Y,ae);ae.style.display="none";(function(){if(ae.readyState==4){ae.parentNode.removeChild(ae)}else{setTimeout(arguments.callee,10)}})()}u(aa,ab,X)}}function p(Y){if(M.ie&&M.win&&Y.readyState!=4){var X=C("div");Y.parentNode.insertBefore(X,Y);X.parentNode.replaceChild(g(Y),X);Y.style.display="none";(function(){if(Y.readyState==4){Y.parentNode.removeChild(Y)}else{setTimeout(arguments.callee,10)}})()}else{Y.parentNode.replaceChild(g(Y),Y)}}function g(ab){var aa=C("div");if(M.win&&M.ie){aa.innerHTML=ab.innerHTML}else{var Y=ab.getElementsByTagName(r)[0];if(Y){var ad=Y.childNodes;if(ad){var X=ad.length;for(var Z=0;Z<X;Z++){if(!(ad[Z].nodeType==1&&ad[Z].nodeName=="PARAM")&&!(ad[Z].nodeType==8)){aa.appendChild(ad[Z].cloneNode(true))}}}}}return aa}function u(ai,ag,Y){var X,aa=c(Y);if(M.wk&&M.wk<312){return X}if(aa){if(typeof ai.id==D){ai.id=Y}if(M.ie&&M.win){var ah="";for(var ae in ai){if(ai[ae]!=Object.prototype[ae]){if(ae.toLowerCase()=="data"){ag.movie=ai[ae]}else{if(ae.toLowerCase()=="styleclass"){ah+=' class="'+ai[ae]+'"'}else{if(ae.toLowerCase()!="classid"){ah+=" "+ae+'="'+ai[ae]+'"'}}}}}var af="";for(var ad in ag){if(ag[ad]!=Object.prototype[ad]){af+='<param name="'+ad+'" value="'+ag[ad]+'" />'}}aa.outerHTML='<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'+ah+">"+af+"</object>";N[N.length]=ai.id;X=c(ai.id)}else{var Z=C(r);Z.setAttribute("type",q);for(var ac in ai){if(ai[ac]!=Object.prototype[ac]){if(ac.toLowerCase()=="styleclass"){Z.setAttribute("class",ai[ac])}else{if(ac.toLowerCase()!="classid"){Z.setAttribute(ac,ai[ac])}}}}for(var ab in ag){if(ag[ab]!=Object.prototype[ab]&&ab.toLowerCase()!="movie"){e(Z,ab,ag[ab])}}aa.parentNode.replaceChild(Z,aa);X=Z}}return X}function e(Z,X,Y){var aa=C("param");aa.setAttribute("name",X);aa.setAttribute("value",Y);Z.appendChild(aa)}function y(Y){var X=c(Y);if(X&&X.nodeName=="OBJECT"){if(M.ie&&M.win){X.style.display="none";(function(){if(X.readyState==4){b(Y)}else{setTimeout(arguments.callee,10)}})()}else{X.parentNode.removeChild(X)}}}function b(Z){var Y=c(Z);if(Y){for(var X in Y){if(typeof Y[X]=="function"){Y[X]=null}}Y.parentNode.removeChild(Y)}}function c(Z){var X=null;try{X=j.getElementById(Z)}catch(Y){}return X}function C(X){return j.createElement(X)}function i(Z,X,Y){Z.attachEvent(X,Y);I[I.length]=[Z,X,Y]}function F(Z){var Y=M.pv,X=Z.split(".");X[0]=parseInt(X[0],10);X[1]=parseInt(X[1],10)||0;X[2]=parseInt(X[2],10)||0;return(Y[0]>X[0]||(Y[0]==X[0]&&Y[1]>X[1])||(Y[0]==X[0]&&Y[1]==X[1]&&Y[2]>=X[2]))?true:false}function v(ac,Y,ad,ab){if(M.ie&&M.mac){return}var aa=j.getElementsByTagName("head")[0];if(!aa){return}var X=(ad&&typeof ad=="string")?ad:"screen";if(ab){n=null;G=null}if(!n||G!=X){var Z=C("style");Z.setAttribute("type","text/css");Z.setAttribute("media",X);n=aa.appendChild(Z);if(M.ie&&M.win&&typeof j.styleSheets!=D&&j.styleSheets.length>0){n=j.styleSheets[j.styleSheets.length-1]}G=X}if(M.ie&&M.win){if(n&&typeof n.addRule==r){n.addRule(ac,Y)}}else{if(n&&typeof j.createTextNode!=D){n.appendChild(j.createTextNode(ac+" {"+Y+"}"))}}}function w(Z,X){if(!m){return}var Y=X?"visible":"hidden";if(J&&c(Z)){c(Z).style.visibility=Y}else{v("#"+Z,"visibility:"+Y)}}function L(Y){var Z=/[\\\"<>\.;]/;var X=Z.exec(Y)!=null;return X&&typeof encodeURIComponent!=D?encodeURIComponent(Y):Y}var d=function(){if(M.ie&&M.win){window.attachEvent("onunload",function(){var ac=I.length;for(var ab=0;ab<ac;ab++){I[ab][0].detachEvent(I[ab][1],I[ab][2])}var Z=N.length;for(var aa=0;aa<Z;aa++){y(N[aa])}for(var Y in M){M[Y]=null}M=null;for(var X in swfobject){swfobject[X]=null}swfobject=null})}}();return{registerObject:function(ab,X,aa,Z){if(M.w3&&ab&&X){var Y={};Y.id=ab;Y.swfVersion=X;Y.expressInstall=aa;Y.callbackFn=Z;o[o.length]=Y;w(ab,false)}else{if(Z){Z({success:false,id:ab})}}},getObjectById:function(X){if(M.w3){return z(X)}},embedSWF:function(ab,ah,ae,ag,Y,aa,Z,ad,af,ac){var X={success:false,id:ah};if(M.w3&&!(M.wk&&M.wk<312)&&ab&&ah&&ae&&ag&&Y){w(ah,false);K(function(){ae+="";ag+="";var aj={};if(af&&typeof af===r){for(var al in af){aj[al]=af[al]}}aj.data=ab;aj.width=ae;aj.height=ag;var am={};if(ad&&typeof ad===r){for(var ak in ad){am[ak]=ad[ak]}}if(Z&&typeof Z===r){for(var ai in Z){if(typeof am.flashvars!=D){am.flashvars+="&"+ai+"="+Z[ai]}else{am.flashvars=ai+"="+Z[ai]}}}if(F(Y)){var an=u(aj,am,ah);if(aj.id==ah){w(ah,true)}X.success=true;X.ref=an}else{if(aa&&A()){aj.data=aa;P(aj,am,ah,ac);return}else{w(ah,true)}}if(ac){ac(X)}})}else{if(ac){ac(X)}}},switchOffAutoHideShow:function(){m=false},ua:M,getFlashPlayerVersion:function(){return{major:M.pv[0],minor:M.pv[1],release:M.pv[2]}},hasFlashPlayerVersion:F,createSWF:function(Z,Y,X){if(M.w3){return u(Z,Y,X)}else{return undefined}},showExpressInstall:function(Z,aa,X,Y){if(M.w3&&A()){P(Z,aa,X,Y)}},removeSWF:function(X){if(M.w3){y(X)}},createCSS:function(aa,Z,Y,X){if(M.w3){v(aa,Z,Y,X)}},addDomLoadEvent:K,addLoadEvent:s,getQueryParamValue:function(aa){var Z=j.location.search||j.location.hash;if(Z){if(/\?/.test(Z)){Z=Z.split("?")[1]}if(aa==null){return L(Z)}var Y=Z.split("&");for(var X=0;X<Y.length;X++){if(Y[X].substring(0,Y[X].indexOf("="))==aa){return L(Y[X].substring((Y[X].indexOf("=")+1)))}}}return""},expressInstallCallback:function(){if(a){var X=c(R);if(X&&l){X.parentNode.replaceChild(l,X);if(Q){w(Q,true);if(M.ie&&M.win){l.style.display="block"}}if(E){E(B)}}a=false}}}}();

