//------------------------------------------------------------------------------------------

/*
 * jQuery Easing v1.3 - http://gsgd.co.uk/sandbox/jquery/easing/
 *
 * Uses the built in easing capabilities added In jQuery 1.1
 * to offer multiple easing options
 *
 * TERMS OF USE - jQuery Easing
 * 
 * Open source under the BSD License. 
 * 
 * Copyright © 2008 George McGinley Smith
 * All rights reserved.
 * 
 * Redistribution and use in source and binary forms, with or without modification, 
 * are permitted provided that the following conditions are met:
 * 
 * Redistributions of source code must retain the above copyright notice, this list of 
 * conditions and the following disclaimer.
 * Redistributions in binary form must reproduce the above copyright notice, this list 
 * of conditions and the following disclaimer in the documentation and/or other materials 
 * provided with the distribution.
 * 
 * Neither the name of the author nor the names of contributors may be used to endorse 
 * or promote products derived from this software without specific prior written permission.
 * 
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY 
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
 *  COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
 *  EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
 *  GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED 
 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
 *  NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED 
 * OF THE POSSIBILITY OF SUCH DAMAGE. 
 *
*/

// t: current time, b: begInnIng value, c: change In value, d: duration
jQuery.easing['jswing'] = jQuery.easing['swing'];

jQuery.extend( jQuery.easing,
{
	def: 'easeOutQuad',
	swing: function (x, t, b, c, d) {
		//alert(jQuery.easing.default);
		return jQuery.easing[jQuery.easing.def](x, t, b, c, d);
	},
	easeInQuad: function (x, t, b, c, d) {
		return c*(t/=d)*t + b;
	},
	easeOutQuad: function (x, t, b, c, d) {
		return -c *(t/=d)*(t-2) + b;
	},
	easeInOutQuad: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t + b;
		return -c/2 * ((--t)*(t-2) - 1) + b;
	},
	easeInCubic: function (x, t, b, c, d) {
		return c*(t/=d)*t*t + b;
	},
	easeOutCubic: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t + 1) + b;
	},
	easeInOutCubic: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t + b;
		return c/2*((t-=2)*t*t + 2) + b;
	},
	easeInQuart: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t + b;
	},
	easeOutQuart: function (x, t, b, c, d) {
		return -c * ((t=t/d-1)*t*t*t - 1) + b;
	},
	easeInOutQuart: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t + b;
		return -c/2 * ((t-=2)*t*t*t - 2) + b;
	},
	easeInQuint: function (x, t, b, c, d) {
		return c*(t/=d)*t*t*t*t + b;
	},
	easeOutQuint: function (x, t, b, c, d) {
		return c*((t=t/d-1)*t*t*t*t + 1) + b;
	},
	easeInOutQuint: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return c/2*t*t*t*t*t + b;
		return c/2*((t-=2)*t*t*t*t + 2) + b;
	},
	easeInSine: function (x, t, b, c, d) {
		return -c * Math.cos(t/d * (Math.PI/2)) + c + b;
	},
	easeOutSine: function (x, t, b, c, d) {
		return c * Math.sin(t/d * (Math.PI/2)) + b;
	},
	easeInOutSine: function (x, t, b, c, d) {
		return -c/2 * (Math.cos(Math.PI*t/d) - 1) + b;
	},
	easeInExpo: function (x, t, b, c, d) {
		return (t==0) ? b : c * Math.pow(2, 10 * (t/d - 1)) + b;
	},
	easeOutExpo: function (x, t, b, c, d) {
		return (t==d) ? b+c : c * (-Math.pow(2, -10 * t/d) + 1) + b;
	},
	easeInOutExpo: function (x, t, b, c, d) {
		if (t==0) return b;
		if (t==d) return b+c;
		if ((t/=d/2) < 1) return c/2 * Math.pow(2, 10 * (t - 1)) + b;
		return c/2 * (-Math.pow(2, -10 * --t) + 2) + b;
	},
	easeInCirc: function (x, t, b, c, d) {
		return -c * (Math.sqrt(1 - (t/=d)*t) - 1) + b;
	},
	easeOutCirc: function (x, t, b, c, d) {
		return c * Math.sqrt(1 - (t=t/d-1)*t) + b;
	},
	easeInOutCirc: function (x, t, b, c, d) {
		if ((t/=d/2) < 1) return -c/2 * (Math.sqrt(1 - t*t) - 1) + b;
		return c/2 * (Math.sqrt(1 - (t-=2)*t) + 1) + b;
	},
	easeInElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return -(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
	},
	easeOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d)==1) return b+c;  if (!p) p=d*.3;
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		return a*Math.pow(2,-10*t) * Math.sin( (t*d-s)*(2*Math.PI)/p ) + c + b;
	},
	easeInOutElastic: function (x, t, b, c, d) {
		var s=1.70158;var p=0;var a=c;
		if (t==0) return b;  if ((t/=d/2)==2) return b+c;  if (!p) p=d*(.3*1.5);
		if (a < Math.abs(c)) { a=c; var s=p/4; }
		else var s = p/(2*Math.PI) * Math.asin (c/a);
		if (t < 1) return -.5*(a*Math.pow(2,10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )) + b;
		return a*Math.pow(2,-10*(t-=1)) * Math.sin( (t*d-s)*(2*Math.PI)/p )*.5 + c + b;
	},
	easeInBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*(t/=d)*t*((s+1)*t - s) + b;
	},
	easeOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158;
		return c*((t=t/d-1)*t*((s+1)*t + s) + 1) + b;
	},
	easeInOutBack: function (x, t, b, c, d, s) {
		if (s == undefined) s = 1.70158; 
		if ((t/=d/2) < 1) return c/2*(t*t*(((s*=(1.525))+1)*t - s)) + b;
		return c/2*((t-=2)*t*(((s*=(1.525))+1)*t + s) + 2) + b;
	},
	easeInBounce: function (x, t, b, c, d) {
		return c - jQuery.easing.easeOutBounce (x, d-t, 0, c, d) + b;
	},
	easeOutBounce: function (x, t, b, c, d) {
		if ((t/=d) < (1/2.75)) {
			return c*(7.5625*t*t) + b;
		} else if (t < (2/2.75)) {
			return c*(7.5625*(t-=(1.5/2.75))*t + .75) + b;
		} else if (t < (2.5/2.75)) {
			return c*(7.5625*(t-=(2.25/2.75))*t + .9375) + b;
		} else {
			return c*(7.5625*(t-=(2.625/2.75))*t + .984375) + b;
		}
	},
	easeInOutBounce: function (x, t, b, c, d) {
		if (t < d/2) return jQuery.easing.easeInBounce (x, t*2, 0, c, d) * .5 + b;
		return jQuery.easing.easeOutBounce (x, t*2-d, 0, c, d) * .5 + c*.5 + b;
	}
});

//------------------------------------------------------------------------------------------

/**
 * jQuery bxSlider v3.0
 * http://bxslider.com
 *
 * Copyright 2010, Steven Wanderski
 * http://stevenwanderski.com
 *
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 */
(function($){$.fn.bxSlider=function(options){var defaults={mode:'horizontal',infiniteLoop:true,hideControlOnEnd:false,controls:true,speed:500,easing:'swing',pager:false,pagerSelector:null,pagerType:'full',pagerLocation:'bottom',pagerShortSeparator:'/',pagerActiveClass:'pager-active',nextText:'next',nextImage:'',nextSelector:null,prevText:'prev',prevImage:'',prevSelector:null,captions:false,captionsSelector:null,auto:false,autoDirection:'next',autoControls:false,autoControlsSelector:null,autoStart:true,autoHover:false,autoDelay:0,pause:3000,startText:'start',startImage:'',stopText:'stop',stopImage:'',ticker:false,tickerSpeed:5000,tickerDirection:'next',tickerHover:false,wrapperClass:'bx-wrapper',startingSlide:0,displaySlideQty:1,moveSlideQty:1,randomStart:false,onBeforeSlide:function(){},onAfterSlide:function(){},onLastSlide:function(){},onFirstSlide:function(){},onNextSlide:function(){},onPrevSlide:function(){},buildPager:null}
var options=$.extend(defaults,options);var base=this;var $parent='';var $origElement='';var $children='';var $outerWrapper='';var $firstChild='';var childrenWidth='';var childrenOuterWidth='';var wrapperWidth='';var wrapperHeight='';var $pager='';var interval='';var $autoControls='';var $stopHtml='';var $startContent='';var $stopContent='';var autoPlaying=true;var loaded=false;var childrenMaxWidth=0;var childrenMaxHeight=0;var currentSlide=0;var origLeft=0;var origTop=0;var origShowWidth=0;var origShowHeight=0;var tickerLeft=0;var tickerTop=0;var isWorking=false;var firstSlide=0;var lastSlide=$children.length-1;this.goToSlide=function(number,stopAuto){if(!isWorking){isWorking=true;currentSlide=number;options.onBeforeSlide(currentSlide,$children.length,$children.eq(currentSlide));if(typeof(stopAuto)=='undefined'){var stopAuto=true;}
if(stopAuto){if(options.auto){base.stopShow(true);}}
slide=number;if(slide==firstSlide){options.onFirstSlide(currentSlide,$children.length,$children.eq(currentSlide));}
if(slide==lastSlide){options.onLastSlide(currentSlide,$children.length,$children.eq(currentSlide));}
if(options.mode=='horizontal'){$parent.animate({'left':'-'+getSlidePosition(slide,'left')+'px'},options.speed,options.easing,function(){isWorking=false;options.onAfterSlide(currentSlide,$children.length,$children.eq(currentSlide));});}else if(options.mode=='vertical'){$parent.animate({'top':'-'+getSlidePosition(slide,'top')+'px'},options.speed,options.easing,function(){isWorking=false;options.onAfterSlide(currentSlide,$children.length,$children.eq(currentSlide));});}else if(options.mode=='fade'){setChildrenFade();}
checkEndControls();if(options.moveSlideQty>1){number=Math.floor(number/options.moveSlideQty);}
makeSlideActive(number);showCaptions();}}
this.goToNextSlide=function(stopAuto){if(typeof(stopAuto)=='undefined'){var stopAuto=true;}
if(stopAuto){if(options.auto){base.stopShow(true);}}
if(!options.infiniteLoop){if(!isWorking){var slideLoop=false;currentSlide=(currentSlide+(options.moveSlideQty));if(currentSlide<=lastSlide){checkEndControls();options.onNextSlide(currentSlide,$children.length,$children.eq(currentSlide));base.goToSlide(currentSlide);}else{currentSlide-=options.moveSlideQty;}}}else{if(!isWorking){isWorking=true;var slideLoop=false;currentSlide=(currentSlide+options.moveSlideQty);if(currentSlide>lastSlide){currentSlide=currentSlide%$children.length;slideLoop=true;}
options.onNextSlide(currentSlide,$children.length,$children.eq(currentSlide));options.onBeforeSlide(currentSlide,$children.length,$children.eq(currentSlide));if(options.mode=='horizontal'){var parentLeft=(options.moveSlideQty*childrenOuterWidth);$parent.animate({'left':'-='+parentLeft+'px'},options.speed,options.easing,function(){isWorking=false;if(slideLoop){$parent.css('left','-'+getSlidePosition(currentSlide,'left')+'px');}
options.onAfterSlide(currentSlide,$children.length,$children.eq(currentSlide));});}else if(options.mode=='vertical'){var parentTop=(options.moveSlideQty*childrenMaxHeight);$parent.animate({'top':'-='+parentTop+'px'},options.speed,options.easing,function(){isWorking=false;if(slideLoop){$parent.css('top','-'+getSlidePosition(currentSlide,'top')+'px');}
options.onAfterSlide(currentSlide,$children.length,$children.eq(currentSlide));});}else if(options.mode=='fade'){setChildrenFade();}
if(options.moveSlideQty>1){makeSlideActive(Math.ceil(currentSlide/options.moveSlideQty));}else{makeSlideActive(currentSlide);}
showCaptions();}}}
this.goToPreviousSlide=function(stopAuto){if(typeof(stopAuto)=='undefined'){var stopAuto=true;}
if(stopAuto){if(options.auto){base.stopShow(true);}}
if(!options.infiniteLoop){if(!isWorking){var slideLoop=false;currentSlide=currentSlide-options.moveSlideQty;if(currentSlide<0){currentSlide=0;if(options.hideControlOnEnd){$('.bx-prev',$outerWrapper).hide();}}
checkEndControls();options.onPrevSlide(currentSlide,$children.length,$children.eq(currentSlide));base.goToSlide(currentSlide);}}else{if(!isWorking){isWorking=true;var slideLoop=false;currentSlide=(currentSlide-(options.moveSlideQty));if(currentSlide<0){negativeOffset=(currentSlide%$children.length);if(negativeOffset==0){currentSlide=0;}else{currentSlide=($children.length)+negativeOffset;}
slideLoop=true;}
options.onPrevSlide(currentSlide,$children.length,$children.eq(currentSlide));options.onBeforeSlide(currentSlide,$children.length,$children.eq(currentSlide));if(options.mode=='horizontal'){var parentLeft=(options.moveSlideQty*childrenOuterWidth);$parent.animate({'left':'+='+parentLeft+'px'},options.speed,options.easing,function(){isWorking=false;if(slideLoop){$parent.css('left','-'+getSlidePosition(currentSlide,'left')+'px');}
options.onAfterSlide(currentSlide,$children.length,$children.eq(currentSlide));});}else if(options.mode=='vertical'){var parentTop=(options.moveSlideQty*childrenMaxHeight);$parent.animate({'top':'+='+parentTop+'px'},options.speed,options.easing,function(){isWorking=false;if(slideLoop){$parent.css('top','-'+getSlidePosition(currentSlide,'top')+'px');}
options.onAfterSlide(currentSlide,$children.length,$children.eq(currentSlide));});}else if(options.mode=='fade'){setChildrenFade();}
if(options.moveSlideQty>1){makeSlideActive(Math.ceil(currentSlide/options.moveSlideQty));}else{makeSlideActive(currentSlide);}
showCaptions();}}}
this.goToFirstSlide=function(stopAuto){if(typeof(stopAuto)=='undefined'){var stopAuto=true;}
base.goToSlide(firstSlide,stopAuto);}
this.goToLastSlide=function(){if(typeof(stopAuto)=='undefined'){var stopAuto=true;}
base.goToSlide(lastSlide,stopAuto);}
this.getCurrentSlide=function(){return currentSlide;}
this.getSlideCount=function(){return $children.length;}
this.stopShow=function(changeText){clearInterval(interval);if(typeof(changeText)=='undefined'){var changeText=true;}
if(changeText&&options.autoControls){$autoControls.html($startContent).removeClass('stop').addClass('start');autoPlaying=false;}}
this.startShow=function(changeText){if(typeof(changeText)=='undefined'){var changeText=true;}
setAutoInterval();if(changeText&&options.autoControls){$autoControls.html($stopContent).removeClass('start').addClass('stop');autoPlaying=true;}}
this.stopTicker=function(changeText){$parent.stop();if(typeof(changeText)=='undefined'){var changeText=true;}
if(changeText&&options.ticker){$autoControls.html($startContent).removeClass('stop').addClass('start');autoPlaying=false;}}
this.startTicker=function(changeText){if(options.mode=='horizontal'){if(options.tickerDirection=='next'){var stoppedLeft=parseInt($parent.css('left'));var remainingDistance=(origShowWidth+stoppedLeft)+$children.eq(0).width();}else if(options.tickerDirection=='prev'){var stoppedLeft=-parseInt($parent.css('left'));var remainingDistance=(stoppedLeft)-$children.eq(0).width();}
var finishingSpeed=(remainingDistance*options.tickerSpeed)/origShowWidth;moveTheShow(tickerLeft,remainingDistance,finishingSpeed);}else if(options.mode=='vertical'){if(options.tickerDirection=='next'){var stoppedTop=parseInt($parent.css('top'));var remainingDistance=(origShowHeight+stoppedTop)+$children.eq(0).height();}else if(options.tickerDirection=='prev'){var stoppedTop=-parseInt($parent.css('top'));var remainingDistance=(stoppedTop)-$children.eq(0).height();}
var finishingSpeed=(remainingDistance*options.tickerSpeed)/origShowHeight;moveTheShow(tickerTop,remainingDistance,finishingSpeed);if(typeof(changeText)=='undefined'){var changeText=true;}
if(changeText&&options.ticker){$autoControls.html($stopContent).removeClass('start').addClass('stop');autoPlaying=true;}}}
this.initShow=function(){$parent=$(this);$origElement=$parent.clone();$children=$parent.children();$outerWrapper='';$firstChild=$parent.children(':first');childrenWidth=$firstChild.width();childrenMaxWidth=0;childrenOuterWidth=$firstChild.outerWidth();childrenMaxHeight=0;wrapperWidth=getWrapperWidth();wrapperHeight=getWrapperHeight();isWorking=false;$pager='';currentSlide=0;origLeft=0;origTop=0;interval='';$autoControls='';$stopHtml='';$startContent='';$stopContent='';autoPlaying=true;loaded=false;origShowWidth=0;origShowHeight=0;tickerLeft=0;tickerTop=0;firstSlide=0;lastSlide=$children.length-1;$children.each(function(index){if($(this).outerHeight()>childrenMaxHeight){childrenMaxHeight=$(this).outerHeight();}
if($(this).outerWidth()>childrenMaxWidth){childrenMaxWidth=$(this).outerWidth();}});if(options.randomStart){var randomNumber=Math.floor(Math.random()*$children.length);currentSlide=randomNumber;origLeft=childrenOuterWidth*(options.moveSlideQty+randomNumber);origTop=childrenMaxHeight*(options.moveSlideQty+randomNumber);}else{currentSlide=options.startingSlide;origLeft=childrenOuterWidth*(options.moveSlideQty+options.startingSlide);origTop=childrenMaxHeight*(options.moveSlideQty+options.startingSlide);}
initCss();if(options.pager&&!options.ticker){if(options.pagerType=='full'){showPager('full');}else if(options.pagerType=='short'){showPager('short');}}
if(options.controls&&!options.ticker){setControlsVars();}
if(options.auto||options.ticker){if(options.autoControls){setAutoControlsVars();}
if(options.autoStart){setTimeout(function(){base.startShow(true);},options.autoDelay);}else{base.stopShow(true);}
if(options.autoHover&&!options.ticker){setAutoHover();}}
if(options.moveSlideQty>1){makeSlideActive(Math.ceil(currentSlide/options.moveSlideQty));}else{makeSlideActive(currentSlide);}
checkEndControls();if(options.captions){showCaptions();}
options.onAfterSlide(currentSlide,$children.length,$children.eq(currentSlide));}
this.destroyShow=function(){clearInterval(interval);$('.bx-next, .bx-prev, .bx-pager, .bx-auto',$outerWrapper).remove();$parent.unwrap().unwrap().removeAttr('style');$parent.children().removeAttr('style').not('.pager').remove();$children.removeClass('pager');}
this.reloadShow=function(){base.destroyShow();base.initShow();}
function initCss(){setChildrenLayout(options.startingSlide);if(options.mode=='horizontal'){$parent.wrap('<div class="'+options.wrapperClass+'" style="width:'+wrapperWidth+'px; position:relative;"></div>').wrap('<div class="bx-window" style="position:relative; overflow:hidden; width:'+wrapperWidth+'px;"></div>').css({width:'99999px',position:'relative',left:'-'+(origLeft)+'px'});$parent.children().css({width:childrenWidth,'float':'left',listStyle:'none'});$outerWrapper=$parent.parent().parent();$children.addClass('pager');}else if(options.mode=='vertical'){$parent.wrap('<div class="'+options.wrapperClass+'" style="width:'+childrenMaxWidth+'px; position:relative;"></div>').wrap('<div class="bx-window" style="width:'+childrenMaxWidth+'px; height:'+wrapperHeight+'px; position:relative; overflow:hidden;"></div>').css({height:'99999px',position:'relative',top:'-'+(origTop)+'px'});$parent.children().css({listStyle:'none',height:childrenMaxHeight});$outerWrapper=$parent.parent().parent();$children.addClass('pager');}else if(options.mode=='fade'){$parent.wrap('<div class="'+options.wrapperClass+'" style="width:'+childrenMaxWidth+'px; position:relative;"></div>').wrap('<div class="bx-window" style="height:'+childrenMaxHeight+'px; width:'+childrenMaxWidth+'px; position:relative; overflow:hidden;"></div>');$parent.children().css({listStyle:'none',position:'absolute',top:0,left:0,zIndex:98});$outerWrapper=$parent.parent().parent();$children.not(':eq('+currentSlide+')').fadeTo(0,0);$children.eq(currentSlide).css('zIndex',99);}
if(options.captions&&options.captionsSelector==null){$outerWrapper.append('<div class="bx-captions"></div>');}}
function setChildrenLayout(){if(options.mode=='horizontal'||options.mode=='vertical'){var $prependedChildren=getArraySample($children,0,options.moveSlideQty,'backward');$.each($prependedChildren,function(index){$parent.prepend($(this));});var totalNumberAfterWindow=($children.length+options.moveSlideQty)-1;var pagerExcess=$children.length-options.displaySlideQty;var numberToAppend=totalNumberAfterWindow-pagerExcess;var $appendedChildren=getArraySample($children,0,numberToAppend,'forward');if(options.infiniteLoop){$.each($appendedChildren,function(index){$parent.append($(this));});}}}
function setControlsVars(){if(options.nextImage!=''){nextContent=options.nextImage;nextType='image';}else{nextContent=options.nextText;nextType='text';}
if(options.prevImage!=''){prevContent=options.prevImage;prevType='image';}else{prevContent=options.prevText;prevType='text';}
showControls(nextType,nextContent,prevType,prevContent);}
function setAutoInterval(){if(options.auto){if(!options.infiniteLoop){if(options.autoDirection=='next'){interval=setInterval(function(){currentSlide+=options.moveSlideQty;if(currentSlide>lastSlide){currentSlide=currentSlide%$children.length;}
base.goToSlide(currentSlide,false);},options.pause);}else if(options.autoDirection=='prev'){interval=setInterval(function(){currentSlide-=options.moveSlideQty;if(currentSlide<0){negativeOffset=(currentSlide%$children.length);if(negativeOffset==0){currentSlide=0;}else{currentSlide=($children.length)+negativeOffset;}}
base.goToSlide(currentSlide,false);},options.pause);}}else{if(options.autoDirection=='next'){interval=setInterval(function(){base.goToNextSlide(false);},options.pause);}else if(options.autoDirection=='prev'){interval=setInterval(function(){base.goToPreviousSlide(false);},options.pause);}}}else if(options.ticker){options.tickerSpeed*=10;$('.pager',$outerWrapper).each(function(index){origShowWidth+=$(this).width();origShowHeight+=$(this).height();});if(options.tickerDirection=='prev'&&options.mode=='horizontal'){$parent.css('left','-'+(origShowWidth+origLeft)+'px');}else if(options.tickerDirection=='prev'&&options.mode=='vertical'){$parent.css('top','-'+(origShowHeight+origTop)+'px');}
if(options.mode=='horizontal'){tickerLeft=parseInt($parent.css('left'));moveTheShow(tickerLeft,origShowWidth,options.tickerSpeed);}else if(options.mode=='vertical'){tickerTop=parseInt($parent.css('top'));moveTheShow(tickerTop,origShowHeight,options.tickerSpeed);}
if(options.tickerHover){setTickerHover();}}}
function moveTheShow(leftCss,distance,speed){if(options.mode=='horizontal'){if(options.tickerDirection=='next'){$parent.animate({'left':'-='+distance+'px'},speed,'linear',function(){$parent.css('left',leftCss);moveTheShow(leftCss,origShowWidth,options.tickerSpeed);});}else if(options.tickerDirection=='prev'){$parent.animate({'left':'+='+distance+'px'},speed,'linear',function(){$parent.css('left',leftCss);moveTheShow(leftCss,origShowWidth,options.tickerSpeed);});}}else if(options.mode=='vertical'){if(options.tickerDirection=='next'){$parent.animate({'top':'-='+distance+'px'},speed,'linear',function(){$parent.css('top',leftCss);moveTheShow(leftCss,origShowHeight,options.tickerSpeed);});}else if(options.tickerDirection=='prev'){$parent.animate({'top':'+='+distance+'px'},speed,'linear',function(){$parent.css('top',leftCss);moveTheShow(leftCss,origShowHeight,options.tickerSpeed);});}}}
function setAutoControlsVars(){if(options.startImage!=''){startContent=options.startImage;startType='image';}else{startContent=options.startText;startType='text';}
if(options.stopImage!=''){stopContent=options.stopImage;stopType='image';}else{stopContent=options.stopText;stopType='text';}
showAutoControls(startType,startContent,stopType,stopContent);}
function setAutoHover(){$outerWrapper.find('.bx-window').hover(function(){if(autoPlaying){base.stopShow(false);}},function(){if(autoPlaying){base.startShow(false);}});}
function setTickerHover(){$parent.hover(function(){if(autoPlaying){base.stopTicker(false);}},function(){if(autoPlaying){base.startTicker(false);}});}
function setChildrenFade(){$children.not(':eq('+currentSlide+')').fadeTo(options.speed,0).css('zIndex',98);$children.eq(currentSlide).css('zIndex',99).fadeTo(options.speed,1,function(){isWorking=false;options.onAfterSlide(currentSlide,$children.length,$children.eq(currentSlide));});};function makeSlideActive(number){if(options.pagerType=='full'&&options.pager){$('a',$pager).removeClass(options.pagerActiveClass);$('a',$pager).eq(number).addClass(options.pagerActiveClass);}else if(options.pagerType=='short'&&options.pager){$('.bx-pager-current',$pager).html(currentSlide+1);}}
function showControls(nextType,nextContent,prevType,prevContent){var $nextHtml=$('<a href="" class="bx-next"></a>');var $prevHtml=$('<a href="" class="bx-prev"></a>');if(nextType=='text'){$nextHtml.html(nextContent);}else{$nextHtml.html('<img src="'+nextContent+'" />');}
if(prevType=='text'){$prevHtml.html(prevContent);}else{$prevHtml.html('<img src="'+prevContent+'" />');}
if(options.prevSelector){$(options.prevSelector).append($prevHtml);}else{$outerWrapper.append($prevHtml);}
if(options.nextSelector){$(options.nextSelector).append($nextHtml);}else{$outerWrapper.append($nextHtml);}
$nextHtml.click(function(){base.goToNextSlide();return false;});$prevHtml.click(function(){base.goToPreviousSlide();return false;});}
function showPager(type){var pagerQty=$children.length;if(options.moveSlideQty>1){if($children.length%options.moveSlideQty!=0){pagerQty=Math.ceil($children.length/options.moveSlideQty);}else{pagerQty=$children.length/options.moveSlideQty;}}
var pagerString='';if(options.buildPager){for(var i=0;i<pagerQty;i++){pagerString+=options.buildPager(i,$children.eq(i*options.moveSlideQty));}}else if(type=='full'){for(var i=1;i<=pagerQty;i++){pagerString+='<a href="" class="pager-link pager-'+i+'">'+i+'</a>';}}else if(type=='short'){pagerString='<span class="bx-pager-current">'+(options.startingSlide+1)+'</span> '+options.pagerShortSeparator+' <span class="bx-pager-total">'+$children.length+'<span>';}
if(options.pagerSelector){$(options.pagerSelector).append(pagerString);$pager=$(options.pagerSelector);}else{var $pagerContainer=$('<div class="bx-pager"></div>');$pagerContainer.append(pagerString);if(options.pagerLocation=='top'){$outerWrapper.prepend($pagerContainer);}else if(options.pagerLocation=='bottom'){$outerWrapper.append($pagerContainer);}
$pager=$('.bx-pager',$outerWrapper);}
$pager.children().click(function(){if(options.pagerType=='full'){var slideIndex=$pager.children().index(this);if(options.moveSlideQty>1){slideIndex*=options.moveSlideQty;}
base.goToSlide(slideIndex);}
return false;});}
function showCaptions(){var caption=$('img',$children.eq(currentSlide)).attr('title');if(caption!=''){if(options.captionsSelector){$(options.captionsSelector).html(caption);}else{$('.bx-captions',$outerWrapper).html(caption);}}else{if(options.captionsSelector){$(options.captionsSelector).html(' ');}else{$('.bx-captions',$outerWrapper).html(' ');}}}
function showAutoControls(startType,startContent,stopType,stopContent){$autoControls=$('<a href="" class="bx-start"></a>');if(startType=='text'){$startContent=startContent;}else{$startContent='<img src="'+startContent+'" />';}
if(stopType=='text'){$stopContent=stopContent;}else{$stopContent='<img src="'+stopContent+'" />';}
if(options.autoControlsSelector){$(options.autoControlsSelector).append($autoControls);}else{$outerWrapper.append('<div class="bx-auto"></div>');$('.bx-auto',$outerWrapper).html($autoControls);}
$autoControls.click(function(){if(options.ticker){if($(this).hasClass('stop')){base.stopTicker();}else if($(this).hasClass('start')){base.startTicker();}}else{if($(this).hasClass('stop')){base.stopShow(true);}else if($(this).hasClass('start')){base.startShow(true);}}
return false;});}
function checkEndControls(){if(!options.infiniteLoop&&options.hideControlOnEnd){if(currentSlide==firstSlide){$('.bx-prev',$outerWrapper).hide();}else{$('.bx-prev',$outerWrapper).show();}
if(currentSlide==lastSlide){$('.bx-next',$outerWrapper).hide();}else{$('.bx-next',$outerWrapper).show();}}}
function getSlidePosition(number,side){if(side=='left'){var position=$('.pager',$outerWrapper).eq(number).position().left;}else if(side=='top'){var position=$('.pager',$outerWrapper).eq(number).position().top;}
return position;}
function getWrapperWidth(){var wrapperWidth=$firstChild.outerWidth()*options.displaySlideQty;return wrapperWidth;}
function getWrapperHeight(){var wrapperHeight=$firstChild.outerHeight()*options.displaySlideQty;return wrapperHeight;}
function getArraySample(array,start,length,direction){var sample=[];var loopLength=length;var startPopulatingArray=false;if(direction=='backward'){array=$.makeArray(array);array.reverse();}
while(loopLength>0){$.each(array,function(index,val){if(loopLength>0){if(!startPopulatingArray){if(index==start){startPopulatingArray=true;sample.push($(this).clone());loopLength--;}}else{sample.push($(this).clone());loopLength--;}}else{return false;}});}
return sample;}
this.each(function(){base.initShow();});return this;}})(jQuery);

//------------------------------------------------------------------------------------------

/*
 * 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}})());

/*!
 * FONT NAME: Bebas
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Ryoichi Tsunekawa Bagel&Co All rights reserved
 */
Cufon.registerFont({"w":186,"face":{"font-family":"Bebas","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"0 0 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"14.4078 -422 343 54","underline-thickness":"12.7841","underline-position":"-12.7841","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":33},"!":{"d":"20,-80v-5,-76,-2,-160,-3,-241r48,0r0,180r-4,61r-41,0xm17,0r0,-48r48,0r0,48r-48,0","w":81},"\"":{"d":"24,-298r-7,-73r44,0r-7,73r-30,0xm81,-298r-7,-73r45,0r-8,73r-30,0","w":135},"#":{"d":"221,-185r-11,60r50,0r-7,49r-51,0r-12,76r-48,0r12,-76r-42,0r-12,76r-48,0r12,-76r-47,0r7,-49r48,0r10,-60r-47,0r7,-49r48,0r15,-87r48,0r-14,87r41,0r15,-87r48,0r-14,87r49,0r-7,49r-50,0xm172,-185r-41,0r-10,60r41,0","w":295},"$":{"d":"98,-283v-37,2,-31,57,-7,80v33,32,82,65,85,121v2,45,-22,74,-59,82r0,22r-41,0r0,-23v-35,-9,-57,-45,-59,-88r46,-4v-5,54,63,69,65,13v-13,-71,-106,-82,-106,-167v0,-39,22,-70,54,-77r0,-21r41,0r0,21v34,7,54,35,57,71r-46,8v-3,-20,-7,-39,-30,-38","w":193},"%":{"d":"57,-334v55,0,38,77,40,131v1,21,-19,40,-40,40v-21,0,-41,-18,-40,-40v3,-55,-16,-131,40,-131xm71,-295v0,-18,-30,-18,-30,0r0,92v0,18,30,18,30,0r0,-92xm159,-38v2,-55,-15,-132,40,-132v55,0,38,78,40,132v1,21,-19,40,-40,40v-21,0,-41,-19,-40,-40xm198,-24v8,0,16,-7,15,-15r0,-91v1,-8,-8,-15,-15,-15v-7,0,-14,7,-14,15r0,91v-1,8,6,15,14,15xm60,5r-28,0r164,-339r28,0","w":255},"&":{"d":"96,-336v64,-2,88,78,47,123r-36,48v11,22,23,44,36,63v8,-18,14,-38,18,-59r44,10v-8,34,-18,63,-31,87v12,11,23,17,32,17r0,44v-19,0,-38,-8,-58,-25v-44,56,-131,29,-131,-46v0,-37,19,-68,38,-95v-11,-28,-29,-53,-29,-91v1,-44,26,-75,70,-76xm96,-299v-34,12,-31,49,-11,88v11,-16,33,-35,34,-57v1,-19,-9,-31,-23,-31xm78,-123v-16,20,-31,79,9,81v10,0,20,-7,31,-19v-13,-17,-27,-38,-40,-62","w":222},"'":{"d":"17,-371r44,0r-7,73r-30,0","w":77},"(":{"d":"81,24v-55,-89,-91,-224,-32,-331v11,-20,20,-40,32,-58r31,15v-24,50,-47,109,-49,174v-2,47,28,137,49,184","w":129},")":{"d":"66,-175v1,-49,-26,-131,-49,-175r31,-14v59,90,90,209,32,325v-11,22,-20,43,-32,63r-31,-16v22,-56,47,-115,49,-183","w":128},"*":{"d":"143,-260r-39,7r27,28r-33,24r-19,-35r-18,35r-34,-24r28,-28r-38,-7r13,-38r35,17r-6,-40r41,0r-6,40r37,-17","w":160},"+":{"d":"117,-175r64,0r0,36r-64,0r0,65r-36,0r0,-65r-64,0r0,-36r64,0r0,-64r36,0r0,64","w":197},",":{"d":"17,0r0,-48r48,0r0,48r-17,37r-21,0r12,-37r-22,0","w":81},"-":{"d":"17,-184r143,0r0,48r-143,0r0,-48","w":176},"\u2010":{"d":"17,-184r143,0r0,48r-143,0r0,-48","w":176},".":{"d":"17,-48r48,0r0,48r-48,0r0,-48","w":81},"\/":{"d":"150,-341r40,0r-134,351r-39,0","w":206},"0":{"d":"93,-325v41,0,77,35,77,77r0,175v1,40,-36,76,-77,76v-41,0,-76,-35,-76,-76r0,-175v-1,-41,36,-77,76,-77xm92,-46v16,0,27,-13,28,-28r0,-175v-1,-15,-12,-28,-28,-28v-16,0,-28,12,-28,28r0,175v0,16,12,28,28,28","k":{"y":12,"x":12,"u":-9,"s":-6,"r":-9,"q":-8,"p":-9,"o":-8,"n":-9,"m":-9,"l":-9,"k":-9,"i":-9,"h":-9,"g":-8,"f":-9,"e":-9,"d":-9,"c":-8,"b":-9,"Y":12,"X":12,"U":-9,"S":-6,"R":-9,"Q":-8,"P":-9,"O":-8,"N":-9,"M":-9,"L":-9,"K":-9,"I":-9,"H":-9,"G":-8,"F":-9,"E":-9,"D":-9,"C":-8,"B":-9,"9":-7,"8":-8,"6":-9,"5":-7,"2":-5,"1":-6,"0":-8}},"1":{"d":"17,-280v25,-3,46,-20,55,-41r34,0r0,321r-48,0r0,-247r-41,0r0,-33","w":122,"k":{"z":-7,"y":-6,"x":-7,"w":-7,"v":-7,"u":-10,"t":-6,"s":-7,"r":-10,"q":-9,"p":-10,"o":-9,"n":-10,"m":-10,"l":-10,"k":-10,"i":-10,"h":-10,"g":-9,"f":-10,"e":-10,"d":-10,"c":-9,"b":-10,"a":-7,"Z":-7,"Y":-6,"X":-7,"W":-7,"V":-7,"U":-10,"T":-6,"S":-7,"R":-10,"Q":-9,"P":-10,"O":-9,"N":-10,"M":-10,"L":-10,"K":-10,"I":-10,"H":-10,"G":-9,"F":-10,"E":-10,"D":-10,"C":-9,"B":-10,"A":-7,"9":-8,"8":-9,"6":-9,"5":-8,"4":-5,"3":-5,"2":-6,"1":-6,"0":-9}},"2":{"d":"96,-276v-21,-1,-34,25,-31,54r-48,0v-2,-59,26,-98,81,-99v66,-1,95,82,62,143v-17,30,-62,90,-85,130r95,0r0,48r-153,0v-9,-70,41,-100,68,-145v20,-33,43,-54,43,-95v0,-19,-14,-36,-32,-36","w":190,"k":{"y":16,"w":5,"v":6,"u":-7,"r":-7,"q":-7,"p":-7,"o":-7,"n":-7,"m":-7,"l":-7,"k":-7,"i":-7,"h":-7,"g":-7,"f":-7,"e":-7,"d":-7,"c":-7,"b":-7,"Y":16,"W":5,"V":6,"U":-7,"R":-7,"Q":-7,"P":-7,"O":-7,"N":-7,"M":-7,"L":-7,"K":-7,"I":-7,"H":-7,"G":-7,"F":-7,"E":-7,"D":-7,"C":-7,"B":-7,"9":-5,"6":-7,"4":31,"0":-7}},"3":{"d":"93,3v-43,0,-80,-36,-76,-84r46,-4v0,22,8,39,29,39v30,1,33,-20,33,-50v0,-33,-18,-49,-52,-49r0,-42v39,0,56,-21,54,-62v0,-21,-10,-31,-28,-31v-22,-1,-30,19,-28,43r-47,0v-3,-53,25,-85,73,-88v80,-5,97,123,37,156v27,15,39,44,39,92v0,45,-36,81,-80,80","w":189,"k":{"y":15,"x":14,"w":6,"v":6,"u":-8,"s":-6,"r":-9,"q":-8,"p":-9,"o":-8,"n":-9,"m":-9,"l":-9,"k":-9,"j":6,"i":-9,"h":-9,"g":-8,"f":-9,"e":-9,"d":-9,"c":-8,"b":-9,"Y":15,"X":14,"W":6,"V":6,"U":-8,"S":-6,"R":-9,"Q":-8,"P":-9,"O":-8,"N":-9,"M":-9,"L":-9,"K":-9,"J":6,"I":-9,"H":-9,"G":-8,"F":-9,"E":-9,"D":-9,"C":-8,"B":-9,"9":-7,"8":-7,"6":-8,"5":-6,"0":-8}},"4":{"d":"17,-118r85,-203r48,0r0,203r31,0r0,49r-31,0r0,69r-48,0r0,-69r-85,0r0,-49xm102,-118r0,-100r-40,100r40,0","w":197,"k":{"y":25,"x":19,"w":23,"v":23,"u":-7,"t":25,"r":-7,"q":-7,"p":-7,"o":-7,"n":-7,"m":-7,"l":-7,"k":-7,"j":26,"i":-7,"h":-7,"g":-7,"f":-7,"e":-7,"d":-7,"c":-7,"b":-7,"a":6,"Y":25,"X":19,"W":23,"V":23,"U":-7,"T":25,"R":-7,"Q":-7,"P":-7,"O":-7,"N":-7,"M":-7,"L":-7,"K":-7,"J":26,"I":-7,"H":-7,"G":-7,"F":-7,"E":-7,"D":-7,"C":-7,"B":-7,"A":6,"9":-5,"8":-6,"7":26,"6":-7,"5":-5,"2":9,"1":24,"0":-7}},"5":{"d":"94,-183v-19,-1,-25,17,-24,37r-49,0r0,-175r142,0r0,49r-93,0r0,68v7,-10,19,-17,36,-18v68,-3,60,76,60,145v0,46,-32,82,-77,81v-43,0,-75,-37,-72,-85r46,-3v1,21,6,36,25,38v47,2,30,-68,30,-109v0,-14,-8,-28,-24,-28","w":182,"k":{"u":-8,"r":-8,"q":-7,"p":-8,"o":-7,"n":-8,"m":-8,"l":-8,"k":-8,"j":6,"i":-8,"h":-8,"g":-7,"f":-8,"e":-8,"d":-8,"c":-7,"b":-8,"U":-8,"R":-8,"Q":-7,"P":-8,"O":-7,"N":-8,"M":-8,"L":-8,"K":-8,"J":6,"I":-8,"H":-8,"G":-7,"F":-8,"E":-8,"D":-8,"C":-7,"B":-8,"9":-6,"8":-7,"6":-7,"5":-6,"0":-7}},"6":{"d":"89,-325v43,0,76,37,73,84r-50,0v1,-20,-5,-36,-24,-36v-37,1,-20,57,-24,92v43,-37,105,-1,98,61v7,70,-11,127,-73,127v-41,0,-74,-35,-72,-76v6,-100,-34,-252,72,-252xm88,-161v-34,0,-24,53,-24,87v0,16,8,29,24,28v36,0,24,-53,24,-87v0,-14,-8,-28,-24,-28","w":178,"k":{"y":13,"x":13,"u":-8,"s":-5,"r":-8,"q":-7,"p":-8,"o":-7,"n":-8,"m":-8,"l":-8,"k":-8,"j":6,"i":-8,"h":-8,"g":-7,"f":-8,"e":-8,"d":-8,"c":-7,"b":-8,"Y":13,"X":13,"U":-8,"S":-5,"R":-8,"Q":-7,"P":-8,"O":-7,"N":-8,"M":-8,"L":-8,"K":-8,"J":6,"I":-8,"H":-8,"G":-7,"F":-8,"E":-8,"D":-8,"C":-7,"B":-8,"9":-6,"8":-7,"6":-7,"5":-6,"0":-7}},"7":{"d":"162,-321r0,49r-68,272r-47,0r68,-272r-98,0r0,-49r145,0","w":178,"k":{"u":-7,"r":-7,"p":-7,"n":-7,"m":-7,"l":-7,"k":-7,"j":51,"i":-7,"h":-7,"f":-7,"e":-7,"d":-7,"b":-7,"a":37,"U":-7,"R":-7,"P":-7,"N":-7,"M":-7,"L":-7,"K":-7,"J":51,"I":-7,"H":-7,"F":-7,"E":-7,"D":-7,"B":-7,"A":37,"4":31,"3":6}},"8":{"d":"134,-169v28,15,40,47,40,96v0,42,-36,76,-81,76v-84,0,-106,-138,-37,-172v-24,-12,-38,-40,-36,-81v2,-44,32,-75,77,-75v80,0,99,126,37,156xm95,-46v22,0,32,-22,30,-50v-2,-27,-6,-42,-30,-43v-27,-1,-32,27,-30,58v0,19,12,35,30,35xm95,-195v23,0,32,-18,32,-42v0,-26,-9,-42,-32,-43v-24,-1,-32,18,-32,43v0,27,7,41,32,42","w":190,"k":{"y":15,"x":13,"w":6,"v":7,"u":-8,"s":-6,"r":-9,"q":-8,"p":-9,"o":-8,"n":-9,"m":-9,"l":-9,"k":-9,"j":5,"i":-9,"h":-9,"g":-8,"f":-9,"e":-9,"d":-9,"c":-8,"b":-9,"Y":15,"X":13,"W":6,"V":7,"U":-8,"S":-6,"R":-9,"Q":-8,"P":-9,"O":-8,"N":-9,"M":-9,"L":-9,"K":-9,"J":5,"I":-9,"H":-9,"G":-8,"F":-9,"E":-9,"D":-9,"C":-8,"B":-9,"9":-7,"8":-8,"6":-8,"5":-7,"0":-8}},"9":{"d":"17,-198v0,-70,9,-125,72,-127v41,-1,74,35,73,77r0,175v2,41,-32,76,-73,76v-43,0,-75,-36,-72,-83r50,0v-1,20,5,36,24,36v37,-1,20,-57,24,-92v-44,37,-98,1,-98,-62xm91,-161v34,0,24,-53,24,-87v0,-16,-8,-27,-24,-27v-36,1,-24,53,-24,87v0,13,7,27,24,27","w":178,"k":{"y":12,"x":12,"u":-9,"s":-6,"r":-9,"q":-9,"p":-9,"o":-9,"n":-9,"m":-9,"l":-9,"k":-9,"i":-9,"h":-9,"g":-9,"f":-9,"e":-9,"d":-9,"c":-9,"b":-9,"Y":12,"X":12,"U":-9,"S":-6,"R":-9,"Q":-9,"P":-9,"O":-9,"N":-9,"M":-9,"L":-9,"K":-9,"I":-9,"H":-9,"G":-9,"F":-9,"E":-9,"D":-9,"C":-9,"B":-9,"9":-7,"8":-8,"6":-9,"5":-7,"2":-5,"1":-6,"0":-9}},":":{"d":"17,-48r48,0r0,48r-48,0r0,-48xm17,-184r48,0r0,48r-48,0r0,-48","w":81},";":{"d":"17,-48r48,0r0,48r-17,37r-21,0r11,-37r-21,0r0,-48xm17,-184r48,0r0,48r-48,0r0,-48","w":81},"<":{"d":"177,-244r0,41r-110,45r110,47r0,40r-160,-69r0,-35","w":193},"=":{"d":"17,-182r0,-36r164,0r0,36r-164,0xm17,-112r0,-36r164,0r0,36r-164,0","w":197},">":{"d":"17,-244r160,69r0,35r-160,69r0,-40r110,-46r-110,-46r0,-41","w":193},"?":{"d":"17,-251v5,-43,29,-73,78,-74v45,-2,74,36,74,80v0,33,-14,64,-44,94v-17,17,-19,39,-18,71r-48,0v-12,-87,56,-96,60,-166v2,-37,-43,-49,-52,-15v-2,5,-3,11,-4,18xm59,-46r48,0r0,48r-48,0r0,-48","w":185},"@":{"d":"187,-10v38,0,74,-14,104,-39r52,0v-30,44,-87,76,-156,77v-98,2,-170,-75,-170,-178v0,-105,65,-190,172,-189v98,1,150,67,151,154v1,66,-48,144,-111,141v-17,0,-29,-7,-34,-21v-15,13,-24,20,-47,21v-47,1,-73,-42,-73,-92v0,-81,75,-184,140,-114r2,-17r49,0r-28,176v0,3,1,5,4,5v38,-7,60,-51,60,-99v0,-67,-45,-115,-113,-115v-81,0,-134,64,-134,148v0,82,52,143,132,142xm153,-82v40,-3,45,-72,48,-113v1,-20,-8,-38,-26,-38v-33,0,-49,68,-49,108v0,22,9,44,27,43","w":360},"A":{"d":"79,-74r-12,74r-50,0r54,-320r67,0r53,320r-50,0r-12,-74r-50,0xm104,-247r-18,126r36,0","w":207,"k":{"y":45,"w":43,"v":43,"t":38,"s":7,"r":-7,"p":-7,"n":-7,"m":-7,"l":-7,"k":-7,"i":-7,"h":-7,"f":-7,"e":-7,"d":-7,"b":-7,"Y":45,"W":43,"V":43,"T":38,"S":7,"R":-7,"P":-7,"N":-7,"M":-7,"L":-7,"K":-7,"I":-7,"H":-7,"F":-7,"E":-7,"D":-7,"B":-7,"7":25,"4":7,"3":7,"1":33}},"B":{"d":"179,-89v0,51,-27,89,-73,89r-89,0r0,-321v87,-5,156,2,156,89v0,30,-12,55,-34,64v25,11,40,39,40,79xm126,-93v2,-40,-17,-54,-57,-50r0,95v37,4,57,-10,57,-45xm122,-232v0,-31,-19,-44,-53,-40r0,82v35,4,53,-8,53,-42","w":196,"k":{"y":21,"x":16,"w":10,"v":11,"u":-8,"t":7,"s":-6,"r":-9,"q":-8,"p":-9,"o":-8,"n":-8,"m":-8,"l":-9,"k":-8,"j":8,"i":-9,"h":-9,"g":-8,"f":-8,"e":-8,"d":-8,"c":-8,"b":-8,"Y":21,"X":16,"W":10,"V":11,"U":-8,"T":7,"S":-6,"R":-9,"Q":-8,"P":-9,"O":-8,"N":-8,"M":-8,"L":-9,"K":-8,"J":8,"I":-9,"H":-9,"G":-8,"F":-8,"E":-8,"D":-8,"C":-8,"B":-8,"9":-6,"8":-7,"7":8,"6":-8,"5":-6,"0":-8}},"C":{"d":"170,-117v9,69,-19,120,-77,121v-41,2,-76,-35,-76,-76r0,-175v-2,-41,35,-79,76,-77v54,1,86,47,77,113r-50,0v1,-32,2,-65,-28,-65v-16,0,-28,12,-28,28r0,175v0,16,12,28,28,28v32,0,29,-39,28,-72r50,0","k":{"y":15,"x":15,"w":5,"v":6,"u":-6,"r":-6,"q":-6,"p":-6,"o":-6,"n":-6,"m":-6,"l":-6,"k":-6,"j":7,"i":-6,"h":-6,"g":-6,"f":-6,"e":-6,"d":-6,"c":-6,"b":-6,"a":6,"Y":15,"X":15,"W":5,"V":6,"U":-6,"R":-6,"Q":-6,"P":-6,"O":-6,"N":-6,"M":-6,"L":-6,"K":-6,"J":7,"I":-6,"H":-6,"G":-6,"F":-6,"E":-6,"D":-6,"C":-6,"B":-6,"A":6,"8":-5,"6":-6,"0":-6}},"D":{"d":"93,-321v40,-1,75,36,75,77r0,167v1,41,-34,77,-75,77r-76,0r0,-321r76,0xm121,-243v0,-27,-27,-30,-56,-28r0,223v30,2,56,0,56,-28r0,-167","w":185,"k":{"y":13,"x":14,"u":-9,"s":-6,"r":-9,"q":-8,"p":-9,"o":-8,"n":-9,"m":-9,"l":-9,"k":-9,"j":6,"i":-9,"h":-9,"g":-8,"f":-9,"e":-9,"d":-9,"c":-8,"b":-9,"Y":13,"X":14,"U":-9,"S":-6,"R":-9,"Q":-8,"P":-9,"O":-8,"N":-9,"M":-9,"L":-9,"K":-9,"J":6,"I":-9,"H":-9,"G":-8,"F":-9,"E":-9,"D":-9,"C":-8,"B":-9,"9":-7,"8":-8,"6":-9,"5":-7,"1":-6,"0":-8}},"E":{"d":"17,0r0,-321r137,0r0,49r-89,0r0,87r65,0r0,49r-65,0r0,88r89,0r0,48r-137,0","w":170,"k":{"4":28}},"F":{"d":"65,0r-48,0r0,-321r137,0r0,49r-89,0r0,87r65,0r0,49r-65,0r0,136","w":170,"k":{"s":7,"j":55,"a":40,"S":7,"J":55,"A":40,"4":29,"3":10,"2":6}},"G":{"d":"170,-72v1,40,-36,76,-77,76v-41,0,-76,-35,-76,-76r0,-175v-2,-41,35,-79,76,-77v54,1,86,47,77,113r-50,0v1,-32,2,-65,-28,-65v-16,0,-28,12,-28,28r0,175v0,16,12,28,28,28v38,-1,26,-54,28,-91r-27,0r0,-48r77,0r0,112","k":{"y":13,"x":13,"u":-8,"s":-6,"r":-9,"q":-8,"p":-9,"o":-8,"n":-9,"m":-9,"l":-9,"k":-9,"j":5,"i":-9,"h":-9,"g":-8,"f":-9,"e":-9,"d":-9,"c":-8,"b":-9,"Y":13,"X":13,"U":-8,"S":-6,"R":-9,"Q":-8,"P":-9,"O":-8,"N":-9,"M":-9,"L":-9,"K":-9,"J":5,"I":-9,"H":-9,"G":-8,"F":-9,"E":-9,"D":-9,"C":-8,"B":-9,"9":-7,"8":-7,"6":-8,"5":-6,"0":-8}},"H":{"d":"65,-136r0,136r-48,0r0,-320r48,0r0,136r58,0r0,-136r49,0r0,320r-49,0r0,-136r-58,0","w":188,"k":{"z":-7,"y":-5,"x":-7,"w":-7,"v":-7,"u":-10,"t":-6,"s":-7,"r":-10,"q":-9,"p":-10,"o":-9,"n":-10,"m":-10,"l":-10,"k":-10,"i":-10,"h":-10,"g":-9,"f":-10,"e":-10,"d":-10,"c":-9,"b":-10,"a":-7,"Z":-7,"Y":-5,"X":-7,"W":-7,"V":-7,"U":-10,"T":-6,"S":-7,"R":-10,"Q":-9,"P":-10,"O":-9,"N":-10,"M":-10,"L":-10,"K":-10,"I":-10,"H":-10,"G":-9,"F":-10,"E":-10,"D":-10,"C":-9,"B":-10,"A":-7,"9":-8,"8":-9,"6":-9,"5":-8,"4":-6,"3":-5,"2":-6,"1":-6,"0":-9}},"I":{"d":"65,0r-48,0r0,-320r48,0r0,320","w":81,"k":{"z":-7,"y":-5,"x":-7,"w":-7,"v":-7,"u":-10,"t":-6,"s":-7,"r":-10,"q":-9,"p":-10,"o":-9,"n":-10,"m":-10,"l":-10,"k":-10,"i":-10,"h":-10,"g":-9,"f":-10,"e":-10,"d":-10,"c":-9,"b":-10,"a":-7,"Z":-7,"Y":-5,"X":-7,"W":-7,"V":-7,"U":-10,"T":-6,"S":-7,"R":-10,"Q":-9,"P":-10,"O":-9,"N":-10,"M":-10,"L":-10,"K":-10,"I":-10,"H":-10,"G":-9,"F":-10,"E":-10,"D":-10,"C":-9,"B":-10,"A":-7,"9":-8,"8":-9,"6":-9,"5":-8,"4":-6,"3":-5,"2":-6,"1":-6,"0":-9}},"J":{"d":"24,-45v27,5,52,-2,52,-27r0,-248r47,0r0,247v1,51,-51,91,-106,73","w":139,"k":{"z":-7,"y":-5,"x":-7,"w":-7,"v":-7,"u":-9,"t":-5,"s":-7,"r":-10,"q":-9,"p":-10,"o":-9,"n":-10,"m":-10,"l":-10,"k":-10,"i":-10,"h":-10,"g":-9,"f":-10,"e":-10,"d":-10,"c":-9,"b":-10,"Z":-7,"Y":-5,"X":-7,"W":-7,"V":-7,"U":-9,"T":-5,"S":-7,"R":-10,"Q":-9,"P":-10,"O":-9,"N":-10,"M":-10,"L":-10,"K":-10,"I":-10,"H":-10,"G":-9,"F":-10,"E":-10,"D":-10,"C":-9,"B":-10,"9":-8,"8":-8,"6":-9,"5":-7,"4":-5,"2":-6,"1":-6,"0":-9}},"K":{"d":"65,-101r0,101r-48,0r0,-321r48,0r0,115r59,-115r52,0r-67,132r78,189r-57,0r-50,-130","w":203,"k":{"y":8,"w":7,"v":7,"t":8,"s":20,"r":-6,"q":14,"p":-6,"o":14,"n":-6,"m":-6,"l":-6,"k":-6,"i":-6,"h":-6,"g":14,"f":-6,"e":-6,"d":-6,"c":14,"b":-6,"Y":8,"W":7,"V":7,"T":8,"S":20,"R":-6,"Q":14,"P":-6,"O":14,"N":-6,"M":-6,"L":-6,"K":-6,"I":-6,"H":-6,"G":14,"F":-6,"E":-6,"D":-6,"C":14,"B":-6,"9":15,"8":14,"7":9,"6":13,"5":11,"4":23,"3":18,"1":26,"0":14}},"L":{"d":"148,0r-131,0r0,-320r48,0r0,272r83,0r0,48","w":164,"k":{"y":60,"w":40,"v":43,"t":48,"s":6,"Y":60,"W":40,"V":43,"T":48,"S":6,"7":29,"4":76,"1":37}},"M":{"d":"65,0r-48,0r0,-321r69,0r45,230r43,-230r67,0r0,321r-48,0r0,-201r-42,201r-39,0r-47,-201r0,201","w":257,"k":{"z":-7,"y":-6,"x":-7,"w":-7,"v":-7,"u":-10,"t":-6,"s":-7,"r":-10,"q":-9,"p":-10,"o":-9,"n":-10,"m":-10,"l":-10,"k":-10,"i":-10,"h":-10,"g":-9,"f":-10,"e":-10,"d":-10,"c":-9,"b":-10,"a":-7,"Z":-7,"Y":-6,"X":-7,"W":-7,"V":-7,"U":-10,"T":-6,"S":-7,"R":-10,"Q":-9,"P":-10,"O":-9,"N":-10,"M":-10,"L":-10,"K":-10,"I":-10,"H":-10,"G":-9,"F":-10,"E":-10,"D":-10,"C":-9,"B":-10,"A":-7,"9":-8,"8":-9,"6":-9,"5":-8,"4":-5,"3":-5,"2":-6,"1":-6,"0":-9}},"N":{"d":"71,-321r64,216r0,-216r48,0r0,321r-52,0r-66,-205r0,205r-48,0r0,-321r54,0","w":199,"k":{"z":-7,"y":-6,"x":-7,"w":-7,"v":-7,"u":-10,"t":-6,"s":-7,"r":-10,"q":-9,"p":-10,"o":-9,"n":-10,"m":-10,"l":-10,"k":-10,"i":-10,"h":-10,"g":-9,"f":-10,"e":-10,"d":-10,"c":-9,"b":-10,"a":-7,"Z":-7,"Y":-6,"X":-7,"W":-7,"V":-7,"U":-10,"T":-6,"S":-7,"R":-10,"Q":-9,"P":-10,"O":-9,"N":-10,"M":-10,"L":-10,"K":-10,"I":-10,"H":-10,"G":-9,"F":-10,"E":-10,"D":-10,"C":-9,"B":-10,"A":-7,"9":-8,"8":-9,"6":-9,"5":-8,"4":-5,"3":-5,"2":-6,"1":-6,"0":-9}},"O":{"d":"17,-248v-2,-41,35,-76,76,-76v41,0,78,36,77,76r0,175v1,41,-36,77,-77,77v-41,0,-76,-36,-76,-77r0,-175xm92,-46v15,0,27,-12,27,-27r0,-176v0,-15,-12,-27,-27,-27v-16,0,-28,11,-28,27r0,176v0,16,12,27,28,27","k":{"y":12,"x":12,"u":-9,"s":-6,"r":-9,"q":-8,"p":-9,"o":-8,"n":-9,"m":-9,"l":-9,"k":-9,"i":-9,"h":-9,"g":-8,"f":-9,"e":-9,"d":-9,"c":-8,"b":-9,"Y":12,"X":12,"U":-9,"S":-6,"R":-9,"Q":-8,"P":-9,"O":-8,"N":-9,"M":-9,"L":-9,"K":-9,"I":-9,"H":-9,"G":-8,"F":-9,"E":-9,"D":-9,"C":-8,"B":-9,"9":-7,"8":-8,"6":-9,"5":-7,"2":-5,"1":-6,"0":-8}},"P":{"d":"168,-244v0,81,-20,133,-103,123r0,121r-48,0r0,-320r76,0v45,-1,75,31,75,76xm65,-168v29,2,57,-1,57,-28v0,-34,6,-76,-28,-75r-29,0r0,103","w":185,"k":{"y":17,"x":17,"w":7,"v":7,"u":-5,"r":-5,"p":-5,"n":-5,"m":-5,"l":-5,"k":-5,"j":53,"i":-5,"h":-5,"f":-5,"e":-5,"d":-5,"b":-5,"a":26,"Y":17,"X":17,"W":7,"V":7,"U":-5,"R":-5,"P":-5,"N":-5,"M":-5,"L":-5,"K":-5,"J":53,"I":-5,"H":-5,"F":-5,"E":-5,"D":-5,"B":-5,"A":26,"4":21,"3":6}},"Q":{"d":"93,-324v41,0,77,35,77,76r0,175v0,14,-3,26,-10,38v4,5,10,8,18,8r0,45v-24,0,-41,-8,-50,-23v-51,29,-111,-14,-111,-68r0,-175v-2,-41,35,-76,76,-76xm92,-46v15,0,27,-12,28,-27r0,-176v-1,-15,-13,-27,-28,-27v-16,0,-28,11,-28,27r0,176v0,16,12,27,28,27","w":194,"k":{"z":-6,"y":20,"x":-6,"w":10,"v":11,"t":6,"r":-9,"p":-9,"n":-9,"m":-9,"l":-9,"k":-9,"i":-9,"h":-9,"f":-9,"e":-9,"d":-9,"b":-9,"a":-6,"Z":-6,"Y":20,"X":-6,"W":10,"V":11,"T":6,"R":-9,"P":-9,"N":-9,"M":-9,"L":-9,"K":-9,"I":-9,"H":-9,"F":-9,"E":-9,"D":-9,"B":-9,"A":-6,"7":7,"2":-5}},"R":{"d":"93,-320v69,-3,76,52,76,123v0,23,-9,41,-26,57r36,140r-52,0r-30,-121r-32,0r0,121r-48,0r0,-320r76,0xm65,-168v29,2,57,-1,57,-28v0,-33,8,-78,-28,-75r-29,0r0,103","w":195,"k":{"z":-5,"y":21,"x":-5,"w":13,"v":13,"t":8,"s":8,"r":-8,"p":-8,"n":-8,"m":-8,"l":-8,"k":-8,"i":-8,"h":-8,"f":-8,"e":-8,"d":-8,"b":-8,"a":-6,"Z":-5,"Y":21,"X":-5,"W":13,"V":13,"T":8,"S":8,"R":-8,"P":-8,"N":-8,"M":-8,"L":-8,"K":-8,"I":-8,"H":-8,"F":-8,"E":-8,"D":-8,"B":-8,"A":-6,"8":5,"7":9,"5":7,"4":12,"3":10}},"S":{"d":"72,-246v8,72,98,87,104,166v7,89,-120,114,-149,38v-6,-13,-9,-28,-10,-45r46,-3v-5,53,63,67,65,12v-14,-69,-106,-84,-106,-167v0,-80,108,-107,142,-43v6,11,9,23,10,37r-46,9v-2,-21,-9,-38,-31,-39v-16,0,-27,16,-25,35","w":193,"k":{"y":17,"x":15,"w":7,"v":8,"u":-7,"r":-7,"q":-6,"p":-7,"o":-6,"n":-7,"m":-7,"l":-7,"k":-7,"j":7,"i":-7,"h":-7,"g":-6,"f":-7,"e":-7,"d":-7,"c":-6,"b":-7,"a":5,"Y":17,"X":15,"W":7,"V":8,"U":-7,"R":-7,"Q":-6,"P":-7,"O":-6,"N":-7,"M":-7,"L":-7,"K":-7,"J":7,"I":-7,"H":-7,"G":-6,"F":-7,"E":-7,"D":-7,"C":-6,"B":-7,"A":5,"8":-6,"6":-6,"0":-6}},"T":{"d":"68,-272r-51,0r0,-48r150,0r0,48r-51,0r0,272r-48,0r0,-272","w":184,"k":{"u":-5,"r":-6,"p":-6,"n":-6,"m":-6,"l":-6,"k":-6,"j":45,"i":-6,"h":-6,"f":-6,"e":-6,"d":-6,"b":-6,"a":38,"U":-5,"R":-6,"P":-6,"N":-6,"M":-6,"L":-6,"K":-6,"J":45,"I":-6,"H":-6,"F":-6,"E":-6,"D":-6,"B":-6,"A":38,"4":45,"3":8}},"U":{"d":"170,-73v1,41,-35,77,-77,77v-41,0,-76,-36,-76,-77r0,-247r47,0r0,247v0,16,12,27,28,27v15,0,27,-12,27,-27r0,-247r51,0r0,247","k":{"z":-7,"y":-5,"x":-7,"w":-7,"v":-7,"u":-9,"t":-5,"s":-7,"r":-10,"q":-9,"p":-10,"o":-9,"n":-10,"m":-10,"l":-10,"k":-10,"i":-10,"h":-10,"g":-9,"f":-10,"e":-10,"d":-10,"c":-9,"b":-10,"Z":-7,"Y":-5,"X":-7,"W":-7,"V":-7,"U":-9,"T":-5,"S":-7,"R":-10,"Q":-9,"P":-10,"O":-9,"N":-10,"M":-10,"L":-10,"K":-10,"I":-10,"H":-10,"G":-9,"F":-10,"E":-10,"D":-10,"C":-9,"B":-10,"9":-8,"8":-8,"6":-9,"5":-7,"4":-5,"2":-6,"1":-6,"0":-9}},"V":{"d":"74,0r-57,-320r50,0r40,249r41,-249r51,0r-59,320r-66,0","w":215,"k":{"u":-7,"s":10,"r":-7,"p":-7,"n":-7,"m":-7,"l":-7,"k":-7,"j":48,"i":-7,"h":-7,"f":-7,"e":-7,"d":-7,"b":-7,"a":44,"U":-7,"S":10,"R":-7,"P":-7,"N":-7,"M":-7,"L":-7,"K":-7,"J":48,"I":-7,"H":-7,"F":-7,"E":-7,"D":-7,"B":-7,"A":44,"8":7,"4":30,"3":14,"2":9}},"W":{"d":"215,-320r51,0r-50,320r-46,0r-28,-175r-25,175r-47,0r-53,-320r50,0r26,171r23,-171r50,0r26,171","w":282,"k":{"u":-7,"s":9,"r":-7,"p":-7,"n":-7,"m":-7,"l":-7,"k":-7,"j":42,"i":-7,"h":-7,"f":-7,"e":-7,"d":-7,"b":-7,"a":39,"U":-7,"S":9,"R":-7,"P":-7,"N":-7,"M":-7,"L":-7,"K":-7,"J":42,"I":-7,"H":-7,"F":-7,"E":-7,"D":-7,"B":-7,"A":39,"8":5,"4":25,"3":13,"2":7}},"X":{"d":"195,0r-52,0r-37,-102r-37,102r-52,0r63,-161r-63,-159r53,0r36,99r35,-99r54,0r-63,159","w":211,"k":{"u":-7,"s":18,"r":-7,"q":12,"p":-7,"o":12,"n":-7,"m":-7,"l":-7,"k":-7,"i":-7,"h":-7,"g":12,"f":-7,"e":-7,"d":-7,"c":12,"b":-7,"U":-7,"S":18,"R":-7,"Q":12,"P":-7,"O":12,"N":-7,"M":-7,"L":-7,"K":-7,"I":-7,"H":-7,"G":12,"F":-7,"E":-7,"D":-7,"C":12,"B":-7,"9":13,"8":13,"6":12,"4":21,"3":16,"1":10,"0":12}},"Y":{"d":"81,-134r-64,-187r53,0r36,115r35,-115r54,0r-65,187r0,134r-49,0r0,-134","w":211,"k":{"u":-5,"s":19,"r":-5,"q":12,"p":-5,"o":12,"n":-5,"m":-5,"l":-5,"k":-5,"j":53,"i":-5,"h":-5,"g":12,"f":-5,"e":-5,"d":-5,"c":12,"b":-5,"a":46,"U":-5,"S":19,"R":-5,"Q":12,"P":-5,"O":12,"N":-5,"M":-5,"L":-5,"K":-5,"J":53,"I":-5,"H":-5,"G":12,"F":-5,"E":-5,"D":-5,"C":12,"B":-5,"A":46,"9":13,"8":15,"6":12,"4":58,"3":22,"2":18,"1":10,"0":12}},"Z":{"d":"158,-320r0,48r-89,224r89,0r0,48r-141,0r0,-48r89,-224r-89,0r0,-48r141,0","w":174,"k":{"u":-7,"r":-7,"p":-7,"n":-7,"m":-7,"l":-7,"k":-7,"i":-7,"h":-7,"f":-7,"e":-7,"d":-7,"b":-7,"U":-7,"R":-7,"P":-7,"N":-7,"M":-7,"L":-7,"K":-7,"I":-7,"H":-7,"F":-7,"E":-7,"D":-7,"B":-7,"4":51}},"[":{"d":"17,-341r81,0r0,49r-33,0r0,244r33,0r0,48r-81,0r0,-341","w":114},"\\":{"d":"17,-341r39,0r134,351r-40,0","w":206},"]":{"d":"17,-341r81,0r0,341r-81,0r0,-48r32,0r0,-244r-32,0r0,-49","w":114},"^":{"d":"80,-371r40,89r-33,0r-18,-43r-19,43r-33,0r40,-89r23,0","w":136},"_":{"d":"17,54r0,-36r247,0r0,36r-247,0","w":280},"`":{"d":"17,-362r44,0r26,73r-29,0","w":104},"a":{"d":"79,-74r-12,74r-50,0r54,-320r67,0r53,320r-50,0r-12,-74r-50,0xm104,-247r-18,126r36,0","w":207,"k":{"y":45,"w":43,"v":43,"t":38,"s":7,"r":-7,"p":-7,"n":-7,"m":-7,"l":-7,"k":-7,"i":-7,"h":-7,"f":-7,"e":-7,"d":-7,"b":-7,"Y":45,"W":43,"V":43,"T":38,"S":7,"R":-7,"P":-7,"N":-7,"M":-7,"L":-7,"K":-7,"I":-7,"H":-7,"F":-7,"E":-7,"D":-7,"B":-7,"7":25,"4":7,"3":7,"1":33}},"b":{"d":"179,-89v0,51,-27,89,-73,89r-89,0r0,-321v87,-5,156,2,156,89v0,30,-12,55,-34,64v25,11,40,39,40,79xm126,-93v2,-40,-17,-54,-57,-50r0,95v37,4,57,-10,57,-45xm122,-232v0,-31,-19,-44,-53,-40r0,82v35,4,53,-8,53,-42","w":196,"k":{"y":21,"x":16,"w":10,"v":11,"u":-8,"t":7,"s":-6,"r":-9,"q":-8,"p":-9,"o":-8,"n":-8,"m":-8,"l":-9,"k":-8,"j":8,"i":-9,"h":-9,"g":-8,"f":-8,"e":-8,"d":-8,"c":-8,"b":-8,"Y":21,"X":16,"W":10,"V":11,"U":-8,"T":7,"S":-6,"R":-9,"Q":-8,"P":-9,"O":-8,"N":-8,"M":-8,"L":-9,"K":-8,"J":8,"I":-9,"H":-9,"G":-8,"F":-8,"E":-8,"D":-8,"C":-8,"B":-8,"9":-6,"8":-7,"7":8,"6":-8,"5":-6,"0":-8}},"c":{"d":"170,-117v9,69,-19,120,-77,121v-41,2,-76,-35,-76,-76r0,-175v-2,-41,35,-79,76,-77v54,1,86,47,77,113r-50,0v1,-32,2,-65,-28,-65v-16,0,-28,12,-28,28r0,175v0,16,12,28,28,28v32,0,29,-39,28,-72r50,0","k":{"y":15,"x":15,"w":5,"v":6,"u":-6,"r":-6,"q":-6,"p":-6,"o":-6,"n":-6,"m":-6,"l":-6,"k":-6,"j":7,"i":-6,"h":-6,"g":-6,"f":-6,"e":-6,"d":-6,"c":-6,"b":-6,"a":6,"Y":15,"X":15,"W":5,"V":6,"U":-6,"R":-6,"Q":-6,"P":-6,"O":-6,"N":-6,"M":-6,"L":-6,"K":-6,"J":7,"I":-6,"H":-6,"G":-6,"F":-6,"E":-6,"D":-6,"C":-6,"B":-6,"A":6,"8":-5,"6":-6,"0":-6}},"d":{"d":"93,-321v40,-1,75,36,75,77r0,167v1,41,-34,77,-75,77r-76,0r0,-321r76,0xm121,-243v0,-27,-27,-30,-56,-28r0,223v30,2,56,0,56,-28r0,-167","w":185,"k":{"y":13,"x":14,"u":-9,"s":-6,"r":-9,"q":-8,"p":-9,"o":-8,"n":-9,"m":-9,"l":-9,"k":-9,"j":6,"i":-9,"h":-9,"g":-8,"f":-9,"e":-9,"d":-9,"c":-8,"b":-9,"Y":13,"X":14,"U":-9,"S":-6,"R":-9,"Q":-8,"P":-9,"O":-8,"N":-9,"M":-9,"L":-9,"K":-9,"J":6,"I":-9,"H":-9,"G":-8,"F":-9,"E":-9,"D":-9,"C":-8,"B":-9,"9":-7,"8":-8,"6":-9,"5":-7,"1":-6,"0":-8}},"e":{"d":"17,0r0,-321r137,0r0,49r-89,0r0,87r65,0r0,49r-65,0r0,88r89,0r0,48r-137,0","w":170,"k":{"4":28}},"f":{"d":"65,0r-48,0r0,-321r137,0r0,49r-89,0r0,87r65,0r0,49r-65,0r0,136","w":170,"k":{"s":7,"j":55,"a":40,"S":7,"J":55,"A":40,"4":29,"3":10,"2":6}},"g":{"d":"170,-72v1,40,-36,76,-77,76v-41,0,-76,-35,-76,-76r0,-175v-2,-41,35,-79,76,-77v54,1,86,47,77,113r-50,0v1,-32,2,-65,-28,-65v-16,0,-28,12,-28,28r0,175v0,16,12,28,28,28v38,-1,26,-54,28,-91r-27,0r0,-48r77,0r0,112","k":{"y":13,"x":13,"u":-8,"s":-6,"r":-9,"q":-8,"p":-9,"o":-8,"n":-9,"m":-9,"l":-9,"k":-9,"j":5,"i":-9,"h":-9,"g":-8,"f":-9,"e":-9,"d":-9,"c":-8,"b":-9,"Y":13,"X":13,"U":-8,"S":-6,"R":-9,"Q":-8,"P":-9,"O":-8,"N":-9,"M":-9,"L":-9,"K":-9,"J":5,"I":-9,"H":-9,"G":-8,"F":-9,"E":-9,"D":-9,"C":-8,"B":-9,"9":-7,"8":-7,"6":-8,"5":-6,"0":-8}},"h":{"d":"65,-136r0,136r-48,0r0,-320r48,0r0,136r58,0r0,-136r49,0r0,320r-49,0r0,-136r-58,0","w":188,"k":{"z":-7,"y":-5,"x":-7,"w":-7,"v":-7,"u":-10,"t":-6,"s":-7,"r":-10,"q":-9,"p":-10,"o":-9,"n":-10,"m":-10,"l":-10,"k":-10,"i":-10,"h":-10,"g":-9,"f":-10,"e":-10,"d":-10,"c":-9,"b":-10,"a":-7,"Z":-7,"Y":-5,"X":-7,"W":-7,"V":-7,"U":-10,"T":-6,"S":-7,"R":-10,"Q":-9,"P":-10,"O":-9,"N":-10,"M":-10,"L":-10,"K":-10,"I":-10,"H":-10,"G":-9,"F":-10,"E":-10,"D":-10,"C":-9,"B":-10,"A":-7,"9":-8,"8":-9,"6":-9,"5":-8,"4":-6,"3":-5,"2":-6,"1":-6,"0":-9}},"i":{"d":"65,0r-48,0r0,-320r48,0r0,320","w":81,"k":{"z":-7,"y":-5,"x":-7,"w":-7,"v":-7,"u":-10,"t":-6,"s":-7,"r":-10,"q":-9,"p":-10,"o":-9,"n":-10,"m":-10,"l":-10,"k":-10,"i":-10,"h":-10,"g":-9,"f":-10,"e":-10,"d":-10,"c":-9,"b":-10,"a":-7,"Z":-7,"Y":-5,"X":-7,"W":-7,"V":-7,"U":-10,"T":-6,"S":-7,"R":-10,"Q":-9,"P":-10,"O":-9,"N":-10,"M":-10,"L":-10,"K":-10,"I":-10,"H":-10,"G":-9,"F":-10,"E":-10,"D":-10,"C":-9,"B":-10,"A":-7,"9":-8,"8":-9,"6":-9,"5":-8,"4":-6,"3":-5,"2":-6,"1":-6,"0":-9}},"j":{"d":"24,-45v27,5,52,-2,52,-27r0,-248r47,0r0,247v1,51,-51,91,-106,73","w":139,"k":{"z":-7,"y":-5,"x":-7,"w":-7,"v":-7,"u":-9,"t":-5,"s":-7,"r":-10,"q":-9,"p":-10,"o":-9,"n":-10,"m":-10,"l":-10,"k":-10,"i":-10,"h":-10,"g":-9,"f":-10,"e":-10,"d":-10,"c":-9,"b":-10,"Z":-7,"Y":-5,"X":-7,"W":-7,"V":-7,"U":-9,"T":-5,"S":-7,"R":-10,"Q":-9,"P":-10,"O":-9,"N":-10,"M":-10,"L":-10,"K":-10,"I":-10,"H":-10,"G":-9,"F":-10,"E":-10,"D":-10,"C":-9,"B":-10,"9":-8,"8":-8,"6":-9,"5":-7,"4":-5,"2":-6,"1":-6,"0":-9}},"k":{"d":"65,-101r0,101r-48,0r0,-321r48,0r0,115r59,-115r52,0r-67,132r78,189r-57,0r-50,-130","w":203,"k":{"y":8,"w":7,"v":7,"t":8,"s":20,"r":-6,"q":14,"p":-6,"o":14,"n":-6,"m":-6,"l":-6,"k":-6,"i":-6,"h":-6,"g":14,"f":-6,"e":-6,"d":-6,"c":14,"b":-6,"Y":8,"W":7,"V":7,"T":8,"S":20,"R":-6,"Q":14,"P":-6,"O":14,"N":-6,"M":-6,"L":-6,"K":-6,"I":-6,"H":-6,"G":14,"F":-6,"E":-6,"D":-6,"C":14,"B":-6,"9":15,"8":14,"7":9,"6":13,"5":11,"4":23,"3":18,"1":26,"0":14}},"l":{"d":"148,0r-131,0r0,-320r48,0r0,272r83,0r0,48","w":164,"k":{"y":60,"w":40,"v":43,"t":48,"s":6,"Y":60,"W":40,"V":43,"T":48,"S":6,"7":29,"4":76,"1":37}},"m":{"d":"65,0r-48,0r0,-321r69,0r45,230r43,-230r67,0r0,321r-48,0r0,-201r-42,201r-39,0r-47,-201r0,201","w":257,"k":{"z":-7,"y":-6,"x":-7,"w":-7,"v":-7,"u":-10,"t":-6,"s":-7,"r":-10,"q":-9,"p":-10,"o":-9,"n":-10,"m":-10,"l":-10,"k":-10,"i":-10,"h":-10,"g":-9,"f":-10,"e":-10,"d":-10,"c":-9,"b":-10,"a":-7,"Z":-7,"Y":-6,"X":-7,"W":-7,"V":-7,"U":-10,"T":-6,"S":-7,"R":-10,"Q":-9,"P":-10,"O":-9,"N":-10,"M":-10,"L":-10,"K":-10,"I":-10,"H":-10,"G":-9,"F":-10,"E":-10,"D":-10,"C":-9,"B":-10,"A":-7,"9":-8,"8":-9,"6":-9,"5":-8,"4":-5,"3":-5,"2":-6,"1":-6,"0":-9}},"n":{"d":"71,-321r64,216r0,-216r48,0r0,321r-52,0r-66,-205r0,205r-48,0r0,-321r54,0","w":199,"k":{"z":-7,"y":-6,"x":-7,"w":-7,"v":-7,"u":-10,"t":-6,"s":-7,"r":-10,"q":-9,"p":-10,"o":-9,"n":-10,"m":-10,"l":-10,"k":-10,"i":-10,"h":-10,"g":-9,"f":-10,"e":-10,"d":-10,"c":-9,"b":-10,"a":-7,"Z":-7,"Y":-6,"X":-7,"W":-7,"V":-7,"U":-10,"T":-6,"S":-7,"R":-10,"Q":-9,"P":-10,"O":-9,"N":-10,"M":-10,"L":-10,"K":-10,"I":-10,"H":-10,"G":-9,"F":-10,"E":-10,"D":-10,"C":-9,"B":-10,"A":-7,"9":-8,"8":-9,"6":-9,"5":-8,"4":-5,"3":-5,"2":-6,"1":-6,"0":-9}},"o":{"d":"17,-248v-2,-41,35,-76,76,-76v41,0,78,36,77,76r0,175v1,41,-36,77,-77,77v-41,0,-76,-36,-76,-77r0,-175xm92,-46v15,0,27,-12,27,-27r0,-176v0,-15,-12,-27,-27,-27v-16,0,-28,11,-28,27r0,176v0,16,12,27,28,27","k":{"y":12,"x":12,"u":-9,"s":-6,"r":-9,"q":-8,"p":-9,"o":-8,"n":-9,"m":-9,"l":-9,"k":-9,"i":-9,"h":-9,"g":-8,"f":-9,"e":-9,"d":-9,"c":-8,"b":-9,"Y":12,"X":12,"U":-9,"S":-6,"R":-9,"Q":-8,"P":-9,"O":-8,"N":-9,"M":-9,"L":-9,"K":-9,"I":-9,"H":-9,"G":-8,"F":-9,"E":-9,"D":-9,"C":-8,"B":-9,"9":-7,"8":-8,"6":-9,"5":-7,"2":-5,"1":-6,"0":-8}},"p":{"d":"168,-244v0,81,-20,133,-103,123r0,121r-48,0r0,-320r76,0v45,-1,75,31,75,76xm65,-168v29,2,57,-1,57,-28v0,-34,6,-76,-28,-75r-29,0r0,103","w":185,"k":{"y":17,"x":17,"w":7,"v":7,"u":-5,"r":-5,"p":-5,"n":-5,"m":-5,"l":-5,"k":-5,"j":53,"i":-5,"h":-5,"f":-5,"e":-5,"d":-5,"b":-5,"a":26,"Y":17,"X":17,"W":7,"V":7,"U":-5,"R":-5,"P":-5,"N":-5,"M":-5,"L":-5,"K":-5,"J":53,"I":-5,"H":-5,"F":-5,"E":-5,"D":-5,"B":-5,"A":26,"4":21,"3":6}},"q":{"d":"93,-324v41,0,77,35,77,76r0,175v0,14,-3,26,-10,38v4,5,10,8,18,8r0,45v-24,0,-41,-8,-50,-23v-51,29,-111,-14,-111,-68r0,-175v-2,-41,35,-76,76,-76xm92,-46v15,0,27,-12,28,-27r0,-176v-1,-15,-13,-27,-28,-27v-16,0,-28,11,-28,27r0,176v0,16,12,27,28,27","w":194,"k":{"z":-6,"y":20,"x":-6,"w":10,"v":11,"t":6,"r":-9,"p":-9,"n":-9,"m":-9,"l":-9,"k":-9,"i":-9,"h":-9,"f":-9,"e":-9,"d":-9,"b":-9,"a":-6,"Z":-6,"Y":20,"X":-6,"W":10,"V":11,"T":6,"R":-9,"P":-9,"N":-9,"M":-9,"L":-9,"K":-9,"I":-9,"H":-9,"F":-9,"E":-9,"D":-9,"B":-9,"A":-6,"7":7,"2":-5}},"r":{"d":"93,-320v69,-3,76,52,76,123v0,23,-9,41,-26,57r36,140r-52,0r-30,-121r-32,0r0,121r-48,0r0,-320r76,0xm65,-168v29,2,57,-1,57,-28v0,-33,8,-78,-28,-75r-29,0r0,103","w":195,"k":{"z":-5,"y":21,"x":-5,"w":13,"v":13,"t":8,"s":8,"r":-8,"p":-8,"n":-8,"m":-8,"l":-8,"k":-8,"i":-8,"h":-8,"f":-8,"e":-8,"d":-8,"b":-8,"a":-6,"Z":-5,"Y":21,"X":-5,"W":13,"V":13,"T":8,"S":8,"R":-8,"P":-8,"N":-8,"M":-8,"L":-8,"K":-8,"I":-8,"H":-8,"F":-8,"E":-8,"D":-8,"B":-8,"A":-6,"8":5,"7":9,"5":7,"4":12,"3":10}},"s":{"d":"72,-246v8,72,98,87,104,166v7,89,-120,114,-149,38v-6,-13,-9,-28,-10,-45r46,-3v-5,53,63,67,65,12v-14,-69,-106,-84,-106,-167v0,-80,108,-107,142,-43v6,11,9,23,10,37r-46,9v-2,-21,-9,-38,-31,-39v-16,0,-27,16,-25,35","w":193,"k":{"y":17,"x":15,"w":7,"v":8,"u":-7,"r":-7,"q":-6,"p":-7,"o":-6,"n":-7,"m":-7,"l":-7,"k":-7,"j":7,"i":-7,"h":-7,"g":-6,"f":-7,"e":-7,"d":-7,"c":-6,"b":-7,"a":5,"Y":17,"X":15,"W":7,"V":8,"U":-7,"R":-7,"Q":-6,"P":-7,"O":-6,"N":-7,"M":-7,"L":-7,"K":-7,"J":7,"I":-7,"H":-7,"G":-6,"F":-7,"E":-7,"D":-7,"C":-6,"B":-7,"A":5,"8":-6,"6":-6,"0":-6}},"t":{"d":"68,-272r-51,0r0,-48r150,0r0,48r-51,0r0,272r-48,0r0,-272","w":184,"k":{"u":-5,"r":-6,"p":-6,"n":-6,"m":-6,"l":-6,"k":-6,"j":45,"i":-6,"h":-6,"f":-6,"e":-6,"d":-6,"b":-6,"a":38,"U":-5,"R":-6,"P":-6,"N":-6,"M":-6,"L":-6,"K":-6,"J":45,"I":-6,"H":-6,"F":-6,"E":-6,"D":-6,"B":-6,"A":38,"4":45,"3":8}},"u":{"d":"170,-73v1,41,-35,77,-77,77v-41,0,-76,-36,-76,-77r0,-247r47,0r0,247v0,16,12,27,28,27v15,0,27,-12,27,-27r0,-247r51,0r0,247","k":{"z":-7,"y":-5,"x":-7,"w":-7,"v":-7,"u":-9,"t":-5,"s":-7,"r":-10,"q":-9,"p":-10,"o":-9,"n":-10,"m":-10,"l":-10,"k":-10,"i":-10,"h":-10,"g":-9,"f":-10,"e":-10,"d":-10,"c":-9,"b":-10,"Z":-7,"Y":-5,"X":-7,"W":-7,"V":-7,"U":-9,"T":-5,"S":-7,"R":-10,"Q":-9,"P":-10,"O":-9,"N":-10,"M":-10,"L":-10,"K":-10,"I":-10,"H":-10,"G":-9,"F":-10,"E":-10,"D":-10,"C":-9,"B":-10,"9":-8,"8":-8,"6":-9,"5":-7,"4":-5,"2":-6,"1":-6,"0":-9}},"v":{"d":"74,0r-57,-320r50,0r40,249r41,-249r51,0r-59,320r-66,0","w":215,"k":{"u":-7,"s":10,"r":-7,"p":-7,"n":-7,"m":-7,"l":-7,"k":-7,"j":48,"i":-7,"h":-7,"f":-7,"e":-7,"d":-7,"b":-7,"a":44,"U":-7,"S":10,"R":-7,"P":-7,"N":-7,"M":-7,"L":-7,"K":-7,"J":48,"I":-7,"H":-7,"F":-7,"E":-7,"D":-7,"B":-7,"A":44,"8":7,"4":30,"3":14,"2":9}},"w":{"d":"215,-320r51,0r-50,320r-46,0r-28,-175r-25,175r-47,0r-53,-320r50,0r26,171r23,-171r50,0r26,171","w":282,"k":{"u":-7,"s":9,"r":-7,"p":-7,"n":-7,"m":-7,"l":-7,"k":-7,"j":42,"i":-7,"h":-7,"f":-7,"e":-7,"d":-7,"b":-7,"a":39,"U":-7,"S":9,"R":-7,"P":-7,"N":-7,"M":-7,"L":-7,"K":-7,"J":42,"I":-7,"H":-7,"F":-7,"E":-7,"D":-7,"B":-7,"A":39,"8":5,"4":25,"3":13,"2":7}},"x":{"d":"195,0r-52,0r-37,-102r-37,102r-52,0r63,-161r-63,-159r53,0r36,99r35,-99r54,0r-63,159","w":211,"k":{"u":-7,"s":18,"r":-7,"q":12,"p":-7,"o":12,"n":-7,"m":-7,"l":-7,"k":-7,"i":-7,"h":-7,"g":12,"f":-7,"e":-7,"d":-7,"c":12,"b":-7,"U":-7,"S":18,"R":-7,"Q":12,"P":-7,"O":12,"N":-7,"M":-7,"L":-7,"K":-7,"I":-7,"H":-7,"G":12,"F":-7,"E":-7,"D":-7,"C":12,"B":-7,"9":13,"8":13,"6":12,"4":21,"3":16,"1":10,"0":12}},"y":{"d":"81,-134r-64,-187r53,0r36,115r35,-115r54,0r-65,187r0,134r-49,0r0,-134","w":211,"k":{"u":-5,"s":19,"r":-5,"q":12,"p":-5,"o":12,"n":-5,"m":-5,"l":-5,"k":-5,"j":53,"i":-5,"h":-5,"g":12,"f":-5,"e":-5,"d":-5,"c":12,"b":-5,"a":46,"U":-5,"S":19,"R":-5,"Q":12,"P":-5,"O":12,"N":-5,"M":-5,"L":-5,"K":-5,"J":53,"I":-5,"H":-5,"G":12,"F":-5,"E":-5,"D":-5,"C":12,"B":-5,"A":46,"9":13,"8":15,"6":12,"4":58,"3":22,"2":18,"1":10,"0":12}},"z":{"d":"158,-320r0,48r-89,224r89,0r0,48r-141,0r0,-48r89,-224r-89,0r0,-48r141,0","w":174,"k":{"u":-7,"r":-7,"p":-7,"n":-7,"m":-7,"l":-7,"k":-7,"i":-7,"h":-7,"f":-7,"e":-7,"d":-7,"b":-7,"U":-7,"R":-7,"P":-7,"N":-7,"M":-7,"L":-7,"K":-7,"I":-7,"H":-7,"F":-7,"E":-7,"D":-7,"B":-7,"4":51}},"{":{"d":"17,-183v54,-2,0,-121,44,-148v13,-8,31,-14,59,-14r0,34v-78,-11,-4,114,-62,140v32,12,23,66,24,109v1,28,9,30,38,31r0,34v-74,5,-82,-41,-78,-113v2,-36,-1,-44,-25,-49r0,-24","w":137},"|":{"d":"17,-422r46,0r0,448r-46,0r0,-448","w":79},"}":{"d":"95,-279v2,40,-13,96,25,98r0,25v-54,4,0,120,-44,148v-12,8,-31,13,-59,13r0,-33v78,11,4,-115,62,-141v-32,-12,-23,-66,-24,-109v-1,-28,-9,-30,-38,-31r0,-34v53,1,75,13,78,64","w":137},"~":{"d":"17,-348v29,-47,72,-20,109,-4v6,0,13,-5,20,-15r27,20v-14,19,-30,29,-48,28v-24,4,-63,-46,-82,-9","w":189},"\u00a0":{"w":33}}});

/*!
 * FONT NAME: Futura Md BT
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * (c) Copyright 1999-2000 Bitstream/Galapagos Design Group. All rights reserved.
 */
Cufon.registerFont({"w":208,"face":{"font-family":"Futura Md","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 6 2 2 2 4 2 3 3","ascent":"274","descent":"-86","x-height":"6","bbox":"-7 -302.223 372 97.0327","underline-thickness":"25.1367","underline-position":"-34.2773","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":104},"!":{"d":"58,-39v12,0,22,10,22,22v0,13,-10,23,-22,23v-12,0,-22,-10,-22,-23v0,-12,10,-22,22,-22xm74,-71r-32,0r0,-200r32,0r0,200","w":115},"\"":{"d":"60,-172r-24,0r0,-99r24,0r0,99xm122,-172r-24,0r0,-99r24,0r0,99","w":158},"#":{"d":"139,-165r-51,0r-17,59r52,0xm206,-187r-5,22r-37,0r-16,59r41,0r-5,22r-41,0r-23,84r-26,0r24,-84r-51,0r-24,84r-25,0r23,-84r-39,0r5,-22r39,0r17,-59r-44,0r5,-22r43,0r24,-84r24,0r-23,84r52,0r23,-84r25,0r-23,84r37,0"},"$":{"d":"114,-30v32,-1,47,-45,27,-71v-6,-8,-15,-15,-27,-21r0,92xm97,-243v-25,2,-47,36,-26,60v6,7,15,12,26,18r0,-78xm114,-157v39,19,66,34,68,81v1,43,-29,73,-68,76r0,37r-17,0r0,-37v-37,0,-63,-20,-76,-45r24,-20v8,20,25,35,51,35r1,-100v-37,-18,-67,-32,-67,-75v0,-36,31,-65,67,-66r0,-26r17,0r0,25v27,2,42,15,57,32r-23,19v-7,-12,-18,-20,-34,-22r0,86"},"%":{"d":"188,-19v18,0,34,-18,34,-38v0,-19,-16,-37,-34,-37v-18,0,-35,17,-35,37v0,20,16,38,35,38xm69,-178v18,0,35,-17,35,-37v0,-20,-17,-37,-35,-37v-18,0,-34,18,-34,37v0,19,16,37,34,37xm188,-116v32,0,58,28,58,59v0,32,-26,61,-58,61v-31,0,-59,-29,-59,-61v0,-30,28,-59,59,-59xm219,-271r-160,271r-21,0r160,-271r21,0xm69,-275v32,0,59,28,59,60v0,32,-27,60,-59,60v-30,0,-58,-28,-58,-60v0,-31,28,-60,58,-60","w":254},"&":{"d":"48,-71v-2,39,45,59,79,39v10,-5,20,-14,30,-24r-61,-77v-28,20,-46,28,-48,62xm105,-171v20,-15,32,-21,34,-48v1,-18,-13,-29,-30,-29v-51,0,-27,61,-4,77xm233,-105r-36,50r44,55r-39,0r-27,-33v-22,20,-44,39,-79,39v-46,0,-84,-31,-82,-77v2,-45,29,-59,64,-84v-14,-21,-32,-35,-32,-65v0,-34,28,-57,63,-57v35,0,62,24,61,57v-1,37,-20,51,-48,71r57,71r29,-44","w":249,"k":{"t":-6,"j":-3,"f":-5,"Y":19,"W":12,"V":14,"T":17,"J":-6}},"'":{"d":"62,-172r-24,0r0,-99r24,0r0,99","w":99},"(":{"d":"91,-266v-51,83,-51,252,0,335r-25,12v-58,-88,-58,-271,0,-359","w":105,"k":{"\u201c":-3,"w":6,"v":6,"Y":2,"J":8,"A":9,"7":6,"4":11,"3":2,"2":5}},")":{"d":"40,-278v57,89,57,270,0,359r-26,-12v51,-83,51,-252,0,-335","w":105,"k":{";":-2,":":-4,".":-6,"-":-17,",":-7}},"*":{"d":"143,-177r-11,18r-46,-29r3,54r-22,0r2,-54r-45,29r-11,-18r48,-26r-48,-26r11,-18r45,30r-2,-54r22,0r-3,54r46,-30r11,18r-48,26","w":155},"+":{"d":"198,-86r-81,0r0,86r-26,0r0,-86r-81,0r0,-25r81,0r0,-85r26,0r0,85r81,0r0,25"},",":{"d":"77,-31r-47,93r-20,-7r34,-99","w":104,"k":{"\u2019":31,"\u201d":31,"\u201c":38,"9":33,"8":9,"7":19,"6":9,"4":6,"3":10,"0":11}},"-":{"d":"103,-80r-86,0r0,-30r86,0r0,30","w":119,"k":{"z":22,"y":8,"x":18,"w":6,"v":6,"t":2,"Z":10,"Y":28,"X":10,"W":19,"V":22,"T":17,"S":13,"O":-6,"A":5,"7":21,"4":-6,"3":2,"2":29}},".":{"d":"52,-39v12,0,23,10,23,22v0,12,-11,23,-23,23v-12,0,-22,-10,-22,-23v0,-12,10,-22,22,-22","w":104,"k":{"\u2019":26,"\u201d":26,"\u201c":34,"S":8,"5":8,"3":7,"0":8}},"\/":{"d":"193,-290r-176,344r-22,-11r177,-344","w":198},"0":{"d":"104,-23v87,-5,86,-221,0,-225v-86,7,-85,218,0,225xm104,-277v66,0,95,67,95,141v0,74,-29,142,-95,142v-64,0,-95,-68,-95,-142v0,-74,30,-141,95,-141","k":{";":-4,"9":2,"7":19,"5":2,"3":5,"2":8,"-":-8}},"1":{"d":"131,0r-32,0r0,-240r-52,0r15,-31r69,0r0,271"},"2":{"d":"104,-277v70,-3,103,67,72,127v-15,29,-68,89,-97,121r110,0r0,29r-171,0r93,-112v25,-34,42,-45,45,-86v2,-29,-24,-50,-53,-50v-30,0,-52,27,-51,57r-31,0v-1,-53,31,-84,83,-86","k":{";":9,":":6,"9":8,"8":9,"7":13,"6":15,"5":7,"4":15,"3":14,"2":10,".":16,"-":21,",":16}},"3":{"d":"134,-144v30,6,51,32,51,68v0,75,-94,106,-144,62v-14,-13,-21,-31,-22,-55r32,0v0,29,20,46,49,46v34,0,53,-20,53,-54v0,-36,-25,-54,-64,-52r0,-29v37,2,58,-13,58,-47v0,-25,-19,-43,-44,-43v-27,0,-43,14,-46,37r-31,0v3,-41,34,-66,78,-66v82,0,102,119,30,133","k":{"9":10,"8":4,"7":19,"6":9,"5":9,"4":3,"3":10,"2":14,".":9}},"4":{"d":"130,-89r0,-106r-80,106r80,0xm200,-60r-38,0r0,60r-32,0r0,-60r-131,0r163,-219r0,190r38,0r0,29","k":{"9":11,"8":4,"7":22,"6":2,"5":8,"4":-4,"3":5,"2":15,"-":-8,",":6}},"5":{"d":"65,-176v64,-23,122,22,122,87v0,93,-127,127,-176,59r18,-21v32,50,125,29,125,-38v0,-67,-88,-81,-129,-42r32,-140r118,0r0,28r-95,0","k":{"9":16,"8":9,"7":15,"6":9,"5":13,"4":2,"3":12,"2":21,"0":4,".":10,")":4}},"6":{"d":"104,-23v33,0,59,-29,59,-62v0,-32,-25,-60,-59,-60v-34,0,-59,26,-59,60v0,33,25,62,59,62xm78,-168v59,-23,118,24,118,83v0,49,-43,91,-92,91v-66,0,-114,-71,-82,-136v20,-42,64,-99,92,-141r36,0","k":{":":-2,"9":16,"8":7,"7":25,"6":4,"5":11,"4":-2,"3":8,"2":21,"0":3,".":6,"-":-8,",":6}},"7":{"d":"203,-271r-144,279r-29,-15r126,-236r-142,0r0,-28r189,0","k":{":":33,"9":16,"8":20,"7":1,"6":32,"5":22,"4":41,"3":19,"2":17,"0":19,".":53,"-":34,",":54}},"8":{"d":"104,-23v31,0,54,-22,54,-53v0,-29,-25,-52,-54,-52v-30,0,-54,23,-54,52v0,29,24,53,54,53xm104,-157v25,0,45,-20,45,-45v0,-25,-20,-46,-45,-46v-25,0,-45,21,-45,46v0,25,20,45,45,45xm142,-144v27,9,48,34,48,69v1,47,-38,81,-86,81v-48,0,-87,-33,-86,-80v0,-35,21,-60,48,-70v-23,-11,-39,-29,-40,-60v0,-41,36,-73,78,-73v42,0,79,31,78,73v-1,28,-17,52,-40,60","k":{"9":9,"8":3,"7":18,"6":6,"5":8,"3":8,"2":12,",":8,")":-2}},"9":{"d":"103,-126v34,0,59,-26,59,-60v0,-33,-26,-62,-59,-62v-34,0,-60,29,-60,62v0,33,26,60,60,60xm103,-277v66,0,113,69,82,135v-21,45,-68,105,-97,150r-25,-17r65,-95v-57,25,-117,-22,-117,-82v0,-50,41,-91,92,-91","k":{":":9,"9":4,"8":9,"7":17,"6":16,"5":12,"4":24,"3":13,"2":9,"0":2,".":34,",":33,")":2}},":":{"d":"52,-39v12,0,23,10,23,22v0,12,-11,23,-23,23v-12,0,-22,-10,-22,-23v0,-12,10,-22,22,-22xm52,-174v13,0,23,10,23,22v0,12,-10,22,-23,22v-12,0,-22,-9,-22,-22v0,-12,9,-23,22,-22","w":104,"k":{"7":18,"6":-3,"3":6,"0":-8}},";":{"d":"77,-31r-47,93r-20,-7r34,-99xm57,-174v12,0,22,10,22,22v0,12,-10,22,-22,22v-13,0,-23,-10,-23,-22v0,-12,10,-22,23,-22","w":104},"<":{"d":"196,-4r-184,-83r0,-22r184,-83r0,28r-149,66r149,67r0,27"},"=":{"d":"196,-51r-184,0r0,-25r184,0r0,25xm196,-121r-184,0r0,-25r184,0r0,25"},">":{"d":"196,-87r-184,83r0,-27r148,-67r-148,-66r0,-28r184,83r0,22"},"?":{"d":"57,-17v0,-27,45,-28,45,0v0,12,-10,23,-22,23v-12,0,-23,-11,-23,-23xm81,-277v37,0,63,23,63,59v0,61,-81,53,-89,100v-2,12,13,24,24,24v16,0,27,-12,26,-30r31,0v0,35,-21,58,-57,58v-32,0,-57,-22,-57,-52v0,-61,83,-49,89,-102v2,-15,-14,-28,-30,-28v-19,0,-32,16,-31,37r-31,0v-1,-41,22,-66,62,-66","w":163,"k":{"\u201c":4}},"@":{"d":"99,-115v0,35,38,40,58,20v20,-20,40,-91,-8,-92v-32,0,-50,36,-50,72xm154,-277v70,0,128,48,127,116v0,57,-23,101,-77,101v-21,1,-34,-9,-34,-28v-9,16,-24,28,-47,28v-32,0,-50,-22,-50,-56v0,-65,76,-130,113,-69r9,-18r22,0r-24,108v-1,11,3,13,13,13v36,-1,51,-37,51,-78v1,-58,-45,-96,-104,-96v-77,0,-123,51,-122,130v0,72,40,111,113,110v38,0,84,-14,106,-32r11,18v-26,21,-72,35,-117,36v-85,1,-137,-48,-137,-132v0,-91,56,-151,147,-151","w":287},"A":{"d":"170,-107r-43,-99r-44,99r87,0xm255,0r-38,0r-34,-78r-113,0r-34,78r-38,0r129,-279","w":253,"k":{"\u2019":34,"\u201d":34,"\u201c":37,"}":10,"z":-5,"y":15,"w":13,"v":13,"u":7,"t":5,"r":5,"q":5,"p":4,"o":4,"n":4,"m":4,"l":4,"k":5,"j":7,"i":7,"h":4,"g":5,"f":6,"e":3,"d":5,"c":5,"b":4,"a":4,"]":9,"Y":34,"W":27,"V":29,"U":15,"T":24,"S":5,"Q":15,"O":15,"J":-11,"G":15,"C":17,"-":4,",":1,")":9,"&":4}},"B":{"d":"59,-31v47,2,85,-2,85,-47v0,-43,-38,-52,-85,-49r0,96xm59,-156v39,2,65,-7,66,-42v1,-38,-27,-44,-66,-42r0,84xm120,-144v35,3,58,29,58,67v0,77,-73,81,-153,77r0,-271v71,-6,134,6,134,70v0,27,-17,52,-39,57","w":192,"k":{"y":9,"u":1,"t":1,"s":3,"b":1,"Y":22,"W":14,"V":15,"U":2,"T":15,"S":7,"O":4,"M":2,"L":1,"K":1,"J":6,"G":2,"F":1,"C":4,"A":10,".":6,",":6}},"C":{"d":"150,-26v34,0,58,-12,78,-29r0,38v-18,12,-50,22,-78,23v-82,1,-136,-59,-136,-142v0,-110,124,-179,214,-119r0,38v-21,-16,-42,-27,-73,-29v-63,-2,-108,48,-108,110v0,61,42,111,103,110","w":238,"k":{"y":14,"u":6,"t":5,"q":5,"o":4,"l":4,"k":5,"i":8,"h":4,"e":3,"c":4,"a":3,"Y":5,"S":3,"Q":4,"O":4,"C":5,"-":5,"&":-7}},"D":{"d":"59,-32v86,4,137,-23,136,-104v-1,-77,-52,-110,-136,-104r0,208xm25,-271v120,-10,204,26,204,136v0,110,-83,145,-204,135r0,-271","w":239,"k":{"j":3,"Y":20,"X":10,"W":12,"V":14,"T":16,"S":5,"R":-2,"P":-2,"N":-2,"J":16,"I":-2,"H":-2,"E":-2,"D":-2,"B":-2,"A":15,".":15,",":15}},"E":{"d":"168,0r-143,0r0,-271r143,0r0,31r-109,0r0,80r109,0r0,31r-109,0r0,97r109,0r0,32","w":187,"k":{"y":5,"w":2,"v":2,"u":7,"s":5,"q":8,"p":5,"o":9,"j":10,"i":10,"g":8,"e":8,"d":8,"c":9,"b":5,"a":8,"Y":4,"X":2,"U":6,"T":4,"S":9,"Q":7,"O":7,"G":6,"C":8,".":14,"-":14,",":17}},"F":{"d":"152,-129r-91,0r0,129r-34,0r0,-271r125,0r0,31r-91,0r0,80r91,0r0,31","w":170,"k":{"}":7,"y":4,"u":14,"t":6,"s":9,"r":15,"o":14,"l":14,"i":14,"e":14,"a":14,"]":6,"Y":3,"T":3,"S":16,"O":6,"G":6,"A":30,".":40,"-":14,",":40,")":6,"&":6}},"G":{"d":"45,-134v0,85,98,142,161,85v17,-15,27,-34,29,-58r-82,0r0,-32r119,0v2,84,-48,145,-128,145v-78,0,-133,-63,-133,-142v0,-102,99,-173,195,-127v18,9,33,22,46,41r-25,20v-16,-26,-43,-44,-83,-44v-58,-1,-99,51,-99,112","w":280,"k":{"z":8,"y":6,"v":3,"i":4,"a":-2,"Z":18,"Y":21,"W":14,"V":16,"T":19,"S":7,"M":3,"A":16,".":11,",":11,"&":-6}},"H":{"d":"218,0r-34,0r0,-129r-125,0r0,129r-34,0r0,-271r34,0r0,111r125,0r0,-111r34,0r0,271","w":242,"k":{"y":6,"u":1,"i":4,"S":3,"I":-2,".":5,",":5}},"I":{"d":"59,0r-34,0r0,-271r34,0r0,271","w":83,"k":{"v":5,"Z":3,"X":5,"W":4,"V":4,"T":6,"S":2,"R":-2,"P":-2,"N":-2,"J":1,"I":-2,"H":-2,"E":-2,"D":-2,"B":-2,".":5,",":5}},"J":{"d":"3,-34v34,17,66,8,66,-41r0,-196r34,0r0,199v8,72,-53,91,-110,68","w":130,"k":{"u":3,"A":13,".":10,",":10,"&":-8}},"K":{"d":"217,0r-42,0r-114,-141r0,141r-34,0r0,-271r34,0r0,126r112,-126r40,0r-115,127","w":216,"k":{"}":4,"y":28,"w":26,"u":15,"t":5,"s":2,"r":5,"o":15,"n":5,"l":4,"i":8,"e":12,"a":13,"]":1,"Z":-9,"Y":-2,"W":-3,"U":10,"T":-2,"S":9,"Q":19,"O":19,"I":4,"G":18,"C":19,".":7,"-":20,",":6,")":5,"&":8}},"L":{"d":"135,0r-108,0r0,-271r34,0r0,240r74,0r0,31","w":138,"k":{"\u2019":26,"\u201d":26,"\u201c":30,"y":24,"w":24,"v":24,"u":9,"t":8,"s":-2,"o":5,"i":10,"g":5,"e":4,"c":5,"a":4,"Y":33,"W":30,"V":30,"U":13,"T":26,"O":18,"G":17,"C":17,"A":-7,".":8,"-":23,",":9,"&":5}},"M":{"d":"299,0r-34,0r-26,-176r-86,184r-86,-184r-26,176r-34,0r46,-279r101,215r101,-215","w":306,"k":{"y":6,"o":-2,"i":1,"e":-3,"a":-2,"S":4,"O":1,"G":1,"C":3}},"N":{"d":"257,8r-198,-206r0,198r-34,0r0,-279r199,205r0,-197r33,0r0,279","w":282,"k":{"u":1,"j":4,"i":4,"S":3,"I":-2,"A":4,".":5,"-":-2,",":5}},"O":{"d":"149,-26v58,0,104,-51,104,-110v0,-60,-46,-110,-104,-110v-61,0,-104,51,-104,110v0,60,46,110,104,110xm149,-277v76,0,138,64,138,141v0,78,-62,142,-138,142v-75,0,-138,-65,-138,-142v0,-77,62,-141,138,-141","w":298,"k":{"y":2,"x":5,"s":1,"j":4,"i":4,"Y":22,"X":12,"W":14,"V":15,"T":18,"S":6,"M":2,"J":18,"A":17,".":15,",":15}},"P":{"d":"59,-149v45,1,75,-4,75,-45v0,-40,-31,-47,-75,-46r0,91xm25,-271v77,-4,142,4,142,77v0,58,-45,79,-108,76r0,118r-34,0r0,-271","w":178,"k":{"y":1,"x":5,"w":1,"u":13,"t":4,"s":17,"o":25,"l":10,"i":14,"f":2,"e":24,"d":24,"a":24,"Y":12,"X":14,"W":6,"U":9,"T":4,"S":8,"R":7,"P":7,"O":7,"M":13,"L":8,"I":7,"H":7,"G":7,"E":7,"D":7,"C":8,"A":29,";":18,".":47,"-":25,",":48,"&":5}},"Q":{"d":"221,-55v18,-18,32,-47,32,-81v0,-60,-46,-110,-104,-110v-61,0,-104,51,-104,110v0,76,78,137,152,98r-49,-66r37,0xm149,-277v76,0,140,64,138,141v-1,47,-20,83,-47,107r44,59r-37,0r-31,-42v-91,54,-205,-22,-205,-124v0,-77,62,-141,138,-141","w":298,"k":{"&":-6}},"R":{"d":"59,-155v44,1,83,0,83,-41v0,-42,-38,-45,-83,-44r0,85xm176,-198v0,43,-29,68,-71,70r85,128r-41,0r-80,-127r-10,0r0,127r-34,0r0,-271v77,-4,151,-1,151,73","w":195,"k":{"\u201c":3,"y":6,"u":11,"o":10,"i":11,"e":9,"c":9,"a":9,"Y":16,"W":10,"V":10,"U":5,"T":8,"S":7,"O":6,"I":1,"G":6,"C":8,"A":-5,".":8,"-":15,",":9,"&":-2}},"S":{"d":"139,-223v-12,-32,-87,-32,-84,12v2,31,18,35,45,51v48,29,69,35,75,88v10,87,-136,105,-162,32r23,-21v10,46,110,49,105,-10v-6,-70,-119,-58,-119,-138v0,-71,108,-91,139,-36","w":193,"k":{"y":14,"w":12,"t":6,"q":4,"p":5,"o":2,"c":2,"a":2,"Y":19,"W":13,"V":13,"U":7,"T":11,"S":10,"Q":9,"O":9,"N":5,"I":5,"G":8,"C":10,"A":11,".":7,"-":-3,",":6,"&":-2}},"T":{"d":"160,-241r-61,0r0,241r-34,0r0,-241r-61,0r0,-30r156,0r0,30","w":164,"k":{"\u2019":12,"\u201d":12,"\u201c":16,"\u2014":27,"}":2,"y":27,"w":25,"v":25,"u":21,"s":20,"r":21,"o":20,"l":6,"i":7,"h":6,"e":19,"c":21,"a":19,"Y":-4,"W":-7,"V":-7,"T":-4,"S":10,"O":18,"I":6,"G":18,"C":19,"A":23,";":17,":":16,".":26,"-":17,",":24,"&":8}},"U":{"d":"121,-26v44,0,61,-24,61,-69r0,-176r34,0v-6,118,33,281,-95,277v-67,-2,-96,-39,-96,-108r0,-169r34,0r0,176v0,45,18,69,62,69","w":240,"k":{"x":9,"w":5,"t":1,"s":4,"r":4,"p":2,"n":2,"m":2,"l":2,"j":6,"i":6,"g":1,"f":2,"d":1,"c":1,"S":5,"A":15,".":12,",":12}},"V":{"d":"232,-271r-117,279r-117,-279r37,0r80,198r81,-198r36,0","w":230,"k":{"\u201c":2,"\u2014":32,"y":14,"u":25,"r":25,"o":25,"i":8,"f":7,"e":25,"a":25,"]":-3,"Y":-5,"T":-7,"Q":15,"O":15,"G":14,"C":15,"A":29,";":22,":":20,".":39,"-":22,",":40,"&":6}},"W":{"d":"372,-271r-111,279r-76,-200r-77,200r-110,-279r36,0r74,196r77,-204r76,204r75,-196r36,0","w":369,"k":{"\u2014":29,"y":12,"u":24,"s":25,"r":23,"o":23,"l":4,"i":8,"h":4,"e":21,"a":22,"]":-3,"T":-7,"S":11,"O":14,"G":12,"C":14,"A":27,";":20,":":19,".":37,"-":19,",":35,"&":4}},"X":{"d":"205,0r-38,0r-64,-113r-63,113r-39,0r83,-143r-78,-128r39,0r59,101r59,-101r38,0r-78,129","w":206,"k":{"y":18,"o":9,"i":9,"e":9,"a":9,"T":-2,"Q":11,"O":11,"I":5,"G":11,"C":12,"A":-8,".":4,"-":10}},"Y":{"d":"205,-271r-84,147r0,124r-34,0r0,-124r-86,-147r38,0r65,116r63,-116r38,0","w":206,"k":{"\u2019":6,"\u201d":6,"\u201c":10,"\u2014":37,"}":2,"v":24,"u":31,"q":29,"p":29,"o":28,"l":6,"i":12,"g":29,"e":28,"d":29,"b":6,"a":29,"W":-5,"T":-4,"S":18,"O":20,"I":6,"G":20,"C":22,"A":33,";":26,":":24,".":36,"-":27,",":35,")":2,"&":11}},"Z":{"d":"194,-271r-140,239r132,0r0,32r-188,0r141,-240r-125,0r0,-31r180,0","w":198,"k":{"y":27,"w":27,"u":13,"o":9,"i":14,"e":8,"a":9,"U":9,"O":19,"A":-2,".":13,"-":38,",":13}},"[":{"d":"95,76r-65,0r0,-347r65,0r0,27r-36,0r0,293r36,0r0,27","w":111,"k":{"Y":2,"T":2,"J":14,"A":12}},"\\":{"d":"203,43r-21,11r-177,-344r22,-11","w":198},"]":{"d":"76,76r-65,0r0,-27r36,0r0,-293r-36,0r0,-27r65,0r0,347","w":111},"^":{"d":"184,-152r-27,0r-53,-88r-52,88r-27,0r66,-119r26,0"},"_":{"d":"180,65r-180,0r0,-25r180,0r0,25","w":180},"`":{"d":"87,-202r-12,13r-54,-46r16,-19","w":129},"a":{"d":"92,-25v31,0,52,-27,52,-61v0,-35,-18,-57,-51,-57v-34,0,-51,24,-52,58v0,34,19,61,51,60xm88,-174v29,0,45,11,56,30r0,-24r33,0r0,168r-33,0r0,-26v-11,21,-27,31,-56,32v-47,0,-79,-41,-79,-91v0,-50,30,-90,79,-89","w":200,"k":{"\u2019":9,"\u201d":9,"\u201c":17,"z":9,"y":8,"w":5,"v":5,"u":4,"t":2,"s":4,"q":2,"p":4,"g":1,"e":1,"d":1,"c":2,"b":4,"a":1,"Y":30,"W":22,"V":25,"U":2,"T":20,".":9,",":10}},"b":{"d":"108,-25v32,1,52,-26,51,-60v0,-35,-18,-58,-52,-58v-33,0,-51,22,-51,57v0,34,21,61,52,61xm112,-174v49,-1,79,39,79,89v0,50,-30,91,-78,91v-28,-1,-47,-11,-57,-32r0,26r-33,0r0,-297r33,0r0,153v11,-19,27,-30,56,-30","w":200,"k":{"\u2019":14,"\u201d":14,"\u201c":21,"y":10,"w":9,"v":9,"u":2,"t":2,"s":3,"r":3,"p":2,"l":2,"j":6,"i":6,"h":2,"f":4,"b":2,"T":19,".":11,",":11}},"c":{"d":"41,-83v0,56,74,74,109,42r0,35v-62,33,-141,-5,-141,-78v0,-70,77,-111,139,-79r0,35v-38,-31,-107,-11,-107,45","w":158,"k":{"\u201d":5,"\u201c":11,"y":3,"u":8,"t":3,"r":5,"l":4,"k":5,"i":9,"h":5,"Y":32,"T":24,"O":4,"E":1,"A":-3,".":4,"-":25,",":8}},"d":{"d":"92,-25v31,0,52,-27,52,-61v0,-35,-18,-57,-51,-57v-34,0,-51,24,-52,58v0,34,19,61,51,60xm88,-174v29,0,45,11,56,30r0,-153r33,0r0,297r-33,0r0,-26v-11,21,-27,31,-56,32v-47,0,-79,-41,-79,-91v0,-50,30,-90,79,-89","w":200,"k":{"y":7,"w":5,"v":5,"o":2,"g":2,"e":1,"d":2,"a":1,".":9,",":10}},"e":{"d":"136,-100v1,-40,-51,-55,-79,-32v-9,8,-14,19,-16,32r95,0xm89,-174v52,0,84,38,79,96r-128,0v-5,57,79,70,97,25r27,15v-15,28,-36,43,-74,44v-51,1,-82,-38,-82,-91v0,-49,35,-90,81,-89","w":175,"k":{"\u2019":11,"\u201d":11,"\u201c":18,"y":11,"x":9,"w":9,"v":9,"u":2,"t":3,"s":2,"r":3,"p":2,"n":2,"m":2,"l":2,"k":3,"j":6,"i":6,"h":2,"f":4,"b":2,"Y":29,"W":22,"V":26,"U":1,"T":20,"S":6,"M":-2,".":10,"-":-5,",":11}},"f":{"d":"94,-270v-25,-9,-33,6,-33,38r0,64r33,0r0,28r-33,0r0,140r-33,0r0,-140r-23,0r0,-28r23,0v-1,-66,-10,-152,66,-131r0,29","w":98,"k":{"\u2019":7,"\u201d":7,"\u201c":10,"}":3,"y":-2,"w":-4,"v":-4,"u":8,"s":6,"r":7,"o":8,"n":6,"m":6,"l":6,"k":7,"j":9,"i":9,"h":6,"e":7,"b":6,"a":7,"]":2,"R":3,"L":4,"B":3,".":16,"-":8,",":17,")":4,"&":-4}},"g":{"d":"92,-25v31,0,53,-27,52,-61v-1,-34,-18,-57,-51,-57v-34,0,-51,24,-52,58v0,34,19,61,51,60xm88,-174v29,0,45,11,56,30r0,-24r32,0r0,177v0,61,-23,87,-81,88v-44,1,-75,-21,-80,-58r34,0v4,19,21,27,46,27v53,0,50,-41,49,-92v-11,21,-27,31,-56,32v-47,0,-79,-41,-79,-91v0,-50,30,-90,79,-89","w":199,"k":{"\u2019":9,"\u201d":9,"\u201c":17,"y":8,"v":5,"s":4,"o":2,"j":7,"e":1,"a":1,".":9,",":10}},"h":{"d":"56,-145v23,-50,110,-33,110,37r0,108r-32,0v-6,-53,21,-145,-35,-145v-59,0,-40,87,-43,145r-33,0r0,-297r33,0r0,152","w":188,"k":{"\u2019":12,"\u201d":12,"\u201c":21,"y":11,"w":10,"u":5,"t":4,"o":2,"e":1,"a":1,".":8,",":9}},"i":{"d":"62,0r-32,0r0,-168r32,0r0,168xm46,-258v12,0,21,9,21,21v0,12,-9,22,-21,22v-12,0,-22,-10,-22,-22v0,-11,10,-21,22,-21","w":91,"k":{"\u2019":11,"\u201d":11,"\u201c":19,"z":11,"x":9,"w":8,"v":8,"q":6,"o":5,"g":5,"e":5,"d":6,"c":6,"a":5,".":12}},"j":{"d":"62,94r-32,0r0,-262r32,0r0,262xm46,-258v12,0,21,9,21,21v0,12,-9,22,-21,22v-12,0,-22,-10,-22,-22v0,-11,10,-21,22,-21","w":91,"k":{"\u2019":11,"\u201d":11,"\u201c":19,"u":8,"o":5,"e":5,"a":5}},"k":{"d":"166,0r-39,0r-69,-89r0,89r-33,0r0,-297r33,0r0,203r64,-74r38,0r-69,75","w":166,"k":{"\u2019":8,"\u201d":8,"\u201c":10,"y":-2,"u":12,"o":11,"g":10,"e":10,"d":10,"c":12,"a":10,"X":-5,".":7,"-":20,",":9}},"l":{"d":"55,0r-32,0r0,-297r32,0r0,297","w":79,"k":{"y":7,"w":6,"v":6,"o":2,"g":2,"e":2,"d":2,"c":2,"a":2,".":9,",":10}},"m":{"d":"56,-147v11,-36,86,-36,94,3v9,-19,27,-29,52,-30v74,-1,47,105,52,174r-33,0v-7,-51,22,-145,-31,-145v-55,0,-29,92,-35,145r-33,0r0,-100v-1,-29,-3,-45,-29,-45v-55,0,-32,90,-37,145r-33,0r0,-168r33,0r0,21","w":276,"k":{"\u2019":12,"\u201d":12,"\u201c":19,"y":11,"w":9,"v":9,"u":5,"p":4,"o":2,"c":2,"a":1,".":8,",":9}},"n":{"d":"56,-145v23,-50,110,-33,110,37r0,108r-32,0v-6,-53,21,-145,-35,-145v-59,0,-40,87,-43,145r-33,0r0,-168r33,0r0,23","w":188,"k":{"\u2019":12,"\u201d":12,"\u201c":21,"y":11,"w":10,"v":10,"u":5,"t":4,"p":4,"o":2,"g":2,"e":1,"d":2,"c":2,"a":1,"T":21,".":8,",":9}},"o":{"d":"97,-25v33,0,57,-26,57,-60v0,-33,-25,-58,-57,-58v-33,0,-57,25,-57,58v0,33,25,60,57,60xm97,-174v49,0,90,40,90,89v0,49,-41,91,-90,91v-50,0,-89,-43,-89,-91v0,-50,39,-89,89,-89","w":194,"k":{"\u2019":14,"\u201d":14,"\u201c":21,"y":11,"x":11,"w":9,"v":9,"u":3,"t":3,"s":4,"r":3,"p":2,"n":2,"m":2,"l":2,"k":3,"j":5,"i":5,"h":2,"f":4,"b":2,"Y":30,"W":23,"V":24,"U":2,"T":20,".":12,"-":-6,",":11}},"p":{"d":"108,-25v32,1,52,-26,51,-60v0,-35,-18,-58,-52,-58v-33,0,-51,22,-51,57v0,34,21,61,52,61xm112,-174v49,-1,79,39,79,89v0,50,-30,91,-78,91v-28,-1,-47,-11,-57,-32r0,120r-33,0r0,-262r33,0r0,24v11,-19,27,-30,56,-30","w":200,"k":{"\u2019":11,"\u201d":11,"\u201c":18,"y":9,"x":10,"w":9,"v":9,"u":2,"t":2,"s":3,"r":3,"p":2,"m":2,"l":2,"i":6,"h":2,"f":4,"T":19,".":14,",":13}},"q":{"d":"92,-25v31,0,52,-27,52,-61v0,-35,-18,-57,-51,-57v-34,0,-51,24,-52,58v0,34,19,61,51,60xm88,-174v29,0,45,11,56,30r0,-24r33,0r0,262r-33,0r0,-120v-11,21,-27,31,-56,32v-47,0,-79,-41,-79,-91v0,-50,30,-90,79,-89","w":200,"k":{"u":4}},"r":{"d":"58,-138v7,-26,33,-43,65,-33r-6,32v-66,-22,-61,70,-59,139r-33,0r0,-168r33,0r0,30","w":126,"k":{"\u2019":6,"\u201d":6,"\u201c":9,"z":3,"y":-3,"w":-4,"v":-4,"u":8,"s":6,"r":8,"q":9,"p":7,"o":12,"n":7,"m":7,"l":7,"k":8,"j":10,"i":10,"h":7,"g":10,"e":11,"d":11,"c":13,"b":7,"a":11,"T":27,"S":8,"O":2,"A":20,";":12,":":11,".":32,"-":22,",":32,")":14,"&":6}},"s":{"d":"97,-125v-2,-24,-52,-30,-52,-2v9,41,84,25,84,81v0,64,-109,69,-125,16r28,-17v3,28,62,35,65,3v-7,-41,-84,-28,-84,-82v0,-57,95,-65,110,-16","w":138,"k":{"\u2019":12,"\u201d":12,"\u201c":19,"z":9,"y":10,"w":7,"v":7,"t":2,"s":1,"q":2,"p":2,"o":3,"e":2,"c":2,"b":2,"a":2,"Y":30,"W":23,"V":27,"T":21,".":5,"-":5,",":5}},"t":{"d":"86,-140r-28,0r0,140r-33,0r0,-140r-18,0r0,-28r18,0r0,-68r33,0r0,68r28,0r0,28","w":86,"k":{"\u2019":3,"\u201d":3,"\u201c":7,"y":-5,"w":-6,"v":-6,"t":-2,"o":4,"h":2,"g":3,"f":-3,"e":3,"d":3,"c":5,"a":3,"S":6,";":3,".":12,"-":3,",":13,"&":-8}},"u":{"d":"92,-25v59,1,31,-89,37,-143r33,0v-1,80,16,174,-70,174v-87,0,-67,-94,-69,-174r32,0v6,54,-21,143,37,143","w":184,"k":{"\u2019":9,"\u201d":9,"\u201c":16,"x":11,"w":5,"v":5,"t":3,"s":5,"p":4,"o":2,"g":2,"e":1,"d":2,"c":3,"b":4,"a":2,"T":21,".":14,",":14}},"v":{"d":"162,-168r-82,176r-82,-176r37,0r45,106r45,-106r37,0","w":160,"k":{"\u2019":1,"\u201d":1,"\u201c":9,"y":-4,"u":5,"t":-3,"s":6,"r":6,"o":8,"i":8,"g":8,"e":8,"a":9,"A":13,";":10,":":6,".":28,"-":5,",":28,"&":-2}},"w":{"d":"260,-168r-81,176r-49,-114r-50,114r-82,-176r37,0r45,106r49,-115r50,115r44,-106r37,0","w":258,"k":{"\u2019":1,"\u201d":1,"\u201c":9,"y":-4,"w":-7,"u":5,"s":7,"r":6,"o":8,"n":5,"l":5,"k":6,"j":8,"i":8,"h":5,"f":-4,"e":8,"d":9,"a":9,"A":13,";":10,":":6,".":28,"-":5,",":28,"&":-2}},"x":{"d":"175,0r-39,0r-48,-65r-48,65r-39,0r68,-88r-62,-80r38,0r44,59r42,-59r39,0r-63,80","w":175,"k":{"\u2019":8,"\u201d":8,"\u201c":10,"u":11,"q":10,"o":10,"i":10,"h":7,"e":9,"c":11,"a":10,":":7,".":8,"-":19,",":9}},"y":{"d":"173,-168r-108,262r-35,0r42,-101r-71,-161r36,0r52,124r48,-124r36,0","w":174,"k":{"\u2019":3,"\u201d":3,"\u201c":8,"w":-4,"s":9,"r":8,"p":6,"o":9,"n":6,"m":6,"l":6,"i":10,"g":8,"f":-2,"e":9,"d":9,"c":9,"b":6,"a":9,"T":26,"A":13,";":8,":":6,".":27,"-":6,",":26,"&":-2}},"z":{"d":"163,0r-157,0r98,-140r-89,0r0,-28r147,0r-98,139r99,0r0,29","w":178,"k":{"\u2019":12,"\u201d":12,"\u201c":15,"y":3,"w":5,"v":5,"o":13,"e":11,"a":12,"U":14,":":12,".":14,"-":25,",":15}},"{":{"d":"54,-98v57,26,-18,156,53,147r0,27v-49,-1,-56,-8,-60,-55v-3,-40,22,-112,-31,-105r0,-28v66,5,5,-107,42,-149v7,-8,24,-10,49,-10r0,27v-72,-9,5,119,-53,146","w":120,"k":{"W":-2,"V":-2,"J":10,"A":9}},"|":{"d":"115,89r-25,0r0,-360r25,0r0,360","w":205},"}":{"d":"16,-271v122,-17,8,165,91,159r0,28v-85,-7,35,169,-91,160r0,-27v71,8,-6,-122,53,-147v-37,-9,-20,-75,-23,-118v-2,-27,-2,-27,-30,-28r0,-27","w":120},"~":{"d":"139,-101v22,0,30,-14,46,-30r0,30v-12,15,-25,25,-48,26v-28,1,-41,-25,-67,-25v-24,0,-31,15,-47,31r0,-31v12,-14,25,-26,48,-26v29,0,43,25,68,25"},"\u2122":{"d":"130,-248r-48,0r0,126r-27,0r0,-126r-48,0r0,-23r123,0r0,23xm315,-122r-26,0r0,-117r-49,117r-14,0r-50,-117r0,117r-25,0r0,-149r37,0r45,105r45,-105r37,0r0,149","w":338},"\u2026":{"d":"60,-39v12,0,22,10,22,22v0,13,-10,23,-22,23v-12,0,-22,-10,-22,-23v0,-12,10,-22,22,-22xm180,-39v12,0,22,10,22,22v0,13,-10,23,-22,23v-12,0,-22,-10,-22,-23v0,-12,10,-22,22,-22xm300,-39v12,0,22,10,22,22v0,13,-10,23,-22,23v-12,0,-22,-10,-22,-23v0,-12,10,-22,22,-22","w":360},"\u2013":{"d":"180,-82r-180,0r0,-25r180,0r0,25","w":180},"\u2014":{"d":"324,-82r-288,0r0,-25r288,0r0,25","w":360},"\u201c":{"d":"83,-270r-33,99r-33,-13r47,-93xm142,-270r-34,99r-33,-13r47,-93","w":158,"k":{"z":25,"y":14,"x":21,"w":11,"v":11,"u":18,"s":17,"r":18,"q":20,"p":17,"o":23,"n":17,"m":17,"g":20,"e":23,"d":22,"c":23,"a":22,"Y":3,"T":2,"A":38,".":36,",":36}},"\u201d":{"d":"83,-263r-47,92r-20,-7r34,-99xm141,-263r-47,92r-19,-7r33,-99","w":158,"k":{".":43,",":42}},"\u2018":{"d":"83,-270r-33,99r-33,-13r47,-93","w":99,"k":{"\u2018":14,"z":25,"y":14,"x":21,"w":11,"v":11,"u":18,"s":17,"r":18,"q":20,"p":17,"o":23,"n":17,"m":17,"g":20,"e":23,"d":22,"c":23,"a":22,"Y":3,"T":2,"A":38,".":36,",":36}},"\u2019":{"d":"83,-263r-47,92r-20,-7r34,-99","w":99,"k":{"\u2019":14,".":43,",":42}},"\u00d7":{"d":"193,-27r-18,18r-71,-71r-68,68r-18,-18r68,-68r-71,-71r18,-18r71,71r69,-68r17,17r-68,69"},"\u00a0":{"w":104}}});

/*!
 * FONT NAME: Futura Md BT
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990-1993 Bitstream Inc.  All rights reserved.
 */
Cufon.registerFont({"w":225,"face":{"font-family":"Futura Md BT","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 8 2 2 2 4 2 2 4","ascent":"288","descent":"-72","x-height":"7","bbox":"-17 -287 360 85","underline-thickness":"47.8125","underline-position":"-17.0508","unicode-range":"U+0020-U+2122"},"glyphs":{" ":{"w":112},"!":{"d":"29,-86r0,-183r65,0r0,183r-65,0xm62,7v-19,0,-36,-17,-36,-36v-1,-20,17,-36,36,-36v19,0,35,17,35,36v0,19,-16,36,-35,36","w":123},"\"":{"d":"73,-253r39,0r0,99r-39,0r0,-99xm13,-253r39,0r0,99r-39,0r0,-99","w":125},"#":{"d":"124,-148r-14,41r43,0r14,-41r-43,0xm120,-258r44,0r-24,69r41,0r25,-69r44,0r-25,69r48,0r-15,41r-47,0r-14,40r48,0r-15,41r-48,0r-25,69r-44,0r25,-69r-41,0r-25,69r-44,0r24,-69r-48,0r15,-41r48,0r14,-40r-50,0r15,-41r49,0","w":276},"$":{"d":"200,-84v3,50,-34,84,-81,88r0,43r-23,0r0,-42v-40,-1,-63,-15,-86,-37r32,-51v17,19,33,32,62,34v25,2,41,-27,24,-45v-37,-22,-105,-23,-105,-86v0,-50,36,-77,83,-82r0,-25r23,0r0,25v23,2,42,11,59,22r-22,50v-13,-12,-28,-19,-49,-20v-15,0,-29,7,-28,21v1,20,15,21,36,27v53,14,72,25,75,78"},"%":{"d":"53,-189v0,26,2,44,22,44v20,0,22,-18,22,-44v0,-26,-2,-44,-22,-44v-20,0,-22,18,-22,44xm75,-260v41,0,66,29,66,71v0,42,-25,71,-66,71v-41,0,-66,-29,-66,-71v0,-42,25,-71,66,-71xm254,-108v-30,-3,-24,58,-17,77v23,25,39,2,39,-34v0,-26,-2,-41,-22,-43xm254,-135v40,0,66,29,66,70v0,42,-25,72,-66,72v-41,0,-66,-29,-66,-72v0,-42,25,-71,66,-70xm69,7r155,-267r33,0r-156,267r-32,0","w":325},"&":{"d":"262,-94v-11,14,-22,25,-35,36r56,58r-78,0r-23,-26v-40,50,-166,45,-162,-39v2,-43,25,-59,60,-78v-13,-15,-23,-30,-24,-52v-1,-35,33,-61,71,-61v44,0,76,22,76,63v0,31,-19,50,-44,65r30,32v13,-10,25,-23,36,-36xm105,-107v-24,15,-35,64,5,64v17,0,26,-9,37,-18xm133,-215v-35,0,-22,47,-4,57v10,-10,26,-17,26,-36v0,-12,-9,-21,-22,-21","w":290},"'":{"d":"13,-253r39,0r0,99r-39,0r0,-99","w":65},"(":{"d":"122,-239v-67,64,-66,228,-2,295r-38,26v-56,-59,-82,-169,-48,-265v10,-28,26,-56,48,-82","w":130},")":{"d":"49,-265v55,59,81,169,48,266v-10,28,-27,55,-48,81r-38,-26v64,-67,66,-231,-2,-295","w":130},"*":{"d":"105,-212r37,-28r17,31r-42,17r42,17r-17,31r-37,-28r7,45r-36,0r6,-45r-36,28r-18,-31r43,-17r-43,-17r18,-31r36,28r-6,-45r36,0","w":187},"+":{"d":"129,-215r42,0r0,87r84,0r0,41r-84,0r0,87r-42,0r0,-87r-84,0r0,-41r84,0r0,-87","w":299},",":{"d":"42,-58r66,0r-55,110r-48,0","w":112},"-":{"d":"22,-60r0,-57r120,0r0,57r-120,0","w":164,"k":{"x":6,"s":-13,"q":-7,"o":-7,"g":-7,"e":-7,"d":-7,"c":-7,"Y":28,"X":13,"W":20,"V":21,"T":33,"S":-7,"Q":-13,"O":-13,"J":-20,"G":-13,"C":-7,"A":6}},".":{"d":"56,7v-19,0,-35,-17,-35,-36v0,-19,16,-35,35,-35v20,0,37,15,36,35v0,19,-17,36,-36,36","w":112},"\/":{"d":"0,33r126,-296r39,0r-126,296r-39,0","w":164},"0":{"d":"113,-260v68,0,97,60,97,136v1,74,-31,131,-97,131v-67,0,-98,-59,-98,-134v0,-74,31,-133,98,-133xm113,-208v-31,4,-33,38,-33,81v0,43,2,77,33,81v31,-4,32,-39,32,-81v0,-43,-2,-75,-32,-81"},"1":{"d":"86,0r0,-197r-55,0r31,-58r88,0r0,255r-64,0"},"2":{"d":"111,-260v68,0,116,55,87,117v-14,30,-50,61,-73,88r78,0r0,55r-196,0r115,-137v25,-18,31,-72,-10,-72v-24,0,-35,18,-34,44v-20,-1,-44,2,-62,-1v-1,-58,36,-94,95,-94"},"3":{"d":"112,7v-58,0,-99,-34,-97,-92r65,0v-1,23,8,38,31,38v22,0,34,-11,34,-32v-1,-27,-17,-37,-46,-35r0,-41v45,9,53,-56,12,-57v-17,0,-29,11,-29,28r-62,0v1,-51,39,-76,94,-76v47,0,84,22,84,66v0,29,-17,46,-40,53v31,5,50,29,50,64v0,51,-43,84,-96,84"},"4":{"d":"127,-108r1,-104v-17,38,-43,69,-64,104r63,0xm127,0r0,-58r-117,0r0,-50r95,-148r80,0r0,148r29,0r0,50r-29,0r0,58r-58,0"},"5":{"d":"142,-89v2,-50,-78,-59,-102,-25r-9,-6r21,-135r140,0r0,53r-97,0r-5,33v63,-17,116,19,116,83v0,93,-122,115,-185,72r5,-62v18,12,35,32,65,32v30,0,51,-16,51,-45"},"6":{"d":"152,-83v0,-24,-15,-40,-39,-40v-24,0,-39,16,-39,40v0,24,16,39,39,39v23,0,39,-16,39,-39xm113,7v-75,0,-117,-68,-88,-139v11,-29,52,-90,73,-123r72,0r-60,91v54,-17,102,22,102,77v0,57,-41,94,-99,94"},"7":{"d":"34,0r97,-197r-109,0r0,-58r197,0r0,12r-112,243r-73,0"},"8":{"d":"82,-188v0,19,11,30,30,30v18,0,32,-11,31,-30v0,-19,-12,-29,-31,-29v-18,0,-30,11,-30,29xm77,-79v1,21,13,34,35,34v22,0,36,-13,36,-34v0,-20,-14,-34,-36,-34v-22,0,-35,13,-35,34xm200,-190v0,29,-16,47,-42,53v33,5,53,30,53,66v-1,52,-42,78,-99,78v-57,0,-98,-26,-98,-78v0,-36,20,-61,53,-66v-26,-6,-42,-24,-42,-53v0,-47,35,-70,87,-70v52,0,88,22,88,70"},"9":{"d":"76,-170v0,24,15,40,38,40v24,0,39,-16,39,-40v0,-24,-15,-39,-39,-39v-24,0,-38,15,-38,39xm113,-260v77,0,118,69,88,141v-14,33,-50,85,-72,119r-71,0r60,-89v-55,18,-103,-23,-103,-77v0,-56,40,-94,98,-94"},":":{"d":"62,-105v-19,0,-36,-16,-36,-35v-1,-20,17,-36,36,-36v19,0,35,17,35,36v0,19,-16,35,-35,35xm62,7v-19,0,-36,-17,-36,-36v-1,-20,16,-35,36,-35v19,0,35,16,35,35v0,19,-16,36,-35,36","w":123},";":{"d":"78,-105v-19,0,-35,-16,-35,-35v0,-19,16,-36,35,-36v20,0,36,16,36,36v0,20,-16,35,-36,35xm47,-58r65,0r-54,110r-49,0","w":123},"<":{"d":"253,-213r0,44r-150,62r150,61r0,45r-207,-86r0,-41","w":299},"=":{"d":"45,-88r210,0r0,40r-210,0r0,-40xm45,-167r210,0r0,41r-210,0r0,-41","w":299},">":{"d":"46,-213r207,85r0,41r-207,86r0,-45r151,-61r-151,-62r0,-44","w":299},"?":{"d":"106,7v-19,0,-36,-17,-36,-36v0,-19,17,-36,36,-36v19,0,35,17,35,36v0,20,-15,37,-35,36xm195,-192v0,37,-22,66,-57,67r0,38r-60,0r0,-73v31,1,60,-2,59,-31v0,-15,-11,-30,-27,-29v-16,1,-27,9,-28,26v-19,-1,-43,2,-60,-1v0,-47,39,-75,90,-75v48,0,83,31,83,78","w":217},"@":{"d":"243,-18v-23,1,-36,-9,-39,-28v-24,46,-119,33,-110,-33v-8,-69,81,-135,127,-78r9,-16r36,0r-28,113v0,7,3,11,11,10v35,1,62,-45,61,-84v-1,-58,-52,-96,-114,-95v-89,1,-139,54,-145,137v-8,118,160,145,236,83r17,24v-32,25,-70,41,-122,41v-99,0,-168,-50,-168,-147v0,-108,75,-171,183,-171v87,0,149,44,149,128v0,65,-37,112,-103,116xm137,-78v0,33,31,39,49,20v19,-19,44,-92,-4,-92v-27,0,-45,40,-45,72","w":360},"A":{"d":"95,-96r70,0r-35,-120v-9,43,-24,80,-35,120xm-3,0r89,-257r88,0r89,257r-70,0r-13,-46r-100,0r-13,46r-70,0","w":259,"k":{"\u2019":23,"\u2018":26,"\u201d":23,"\u201c":26,"y":6,"Y":13,"W":6,"V":6,"U":6,"T":15,"Q":6,"O":6,"G":6,"C":6,";":-7,":":-7,"-":8}},"B":{"d":"152,-180v0,-29,-29,-25,-60,-26r0,51v31,0,60,3,60,-25xm229,-73v1,92,-109,70,-202,73r0,-257v86,3,190,-19,191,64v-1,33,-17,47,-47,54v36,3,58,27,58,66xm163,-80v0,-34,-36,-28,-71,-29r0,56v33,-1,71,5,71,-27","w":244,"k":{"\u2019":6,"\u201d":6,"-":-10}},"C":{"d":"17,-128v0,-107,104,-163,197,-119r0,76v-17,-18,-32,-30,-59,-31v-41,-2,-68,33,-68,75v0,40,29,73,68,72v27,-1,43,-13,59,-31r0,76v-91,46,-197,-13,-197,-118","w":226,"k":{"\u2019":-10,"\u201d":-10,";":-7,":":-7,"-":-8}},"D":{"d":"259,-128v4,120,-99,135,-232,128r0,-257r54,0v120,-6,175,29,178,129xm188,-128v0,-57,-31,-74,-91,-72r0,142v58,1,91,-14,91,-70","w":275,"k":{"Y":6,"W":6,"V":6,"A":6,";":-7,":":-7,".":15,"-":-11,",":15}},"E":{"d":"27,0r0,-257r158,0r0,56r-89,0r0,45r84,0r0,55r-84,0r0,43r89,0r0,58r-158,0","w":204,"k":{";":-7,":":-7,".":-7,"-":-7,",":-7}},"F":{"d":"27,0r0,-257r158,0r0,56r-89,0r0,45r84,0r0,55r-84,0r0,101r-69,0","w":195,"k":{"\u2019":-7,"\u201d":-7,"A":6,";":15,":":15,".":58,",":58}},"G":{"d":"86,-126v-6,64,63,100,113,66v12,-9,19,-20,21,-35r-70,0r0,-54r138,0v5,97,-42,155,-134,155v-86,-1,-131,-52,-137,-134v-11,-137,190,-179,253,-76r-61,29v-33,-54,-133,-25,-123,49","w":303,"k":{"Y":6,"T":6,";":-7,":":-7,".":10,"-":-8,",":10}},"H":{"d":"27,0r0,-257r71,0r0,100r93,0r0,-100r70,0r0,257r-70,0r0,-105r-93,0r0,105r-71,0","w":288,"k":{".":6,",":6}},"I":{"d":"29,0r0,-257r71,0r0,257r-71,0","w":129},"J":{"d":"60,-49v23,-7,18,-24,18,-67r0,-141r70,0v-8,106,35,265,-77,264v-35,0,-59,-17,-75,-41r42,-39v2,13,10,22,22,24","w":172,"k":{";":11,":":11,".":18,"-":6,",":18}},"K":{"d":"27,0r0,-257r70,0r0,117r81,-117r82,0r-95,125r103,132r-87,0r-84,-115r0,115r-70,0","w":261,"k":{"\u2019":8,"\u2018":13,"\u201d":8,"\u201c":13,"y":6,"Y":6,"W":6,"O":13,"C":13,"A":6,";":-7,":":-7,".":-7,"-":18,",":-7}},"L":{"d":"27,0r0,-257r71,0r0,197r87,0r0,60r-158,0","w":191,"k":{"\u2019":48,"\u2018":46,"\u201d":48,"\u201c":46,"y":13,"Y":20,"W":13,"V":20,"T":13,"O":6,";":-7,":":-7,".":-7,"-":6,",":-7}},"M":{"d":"237,-169v-12,55,-32,115,-47,169r-47,0r-47,-169r-21,169r-65,0r40,-257r69,0r47,167v13,-59,31,-111,47,-167r70,0r40,257r-66,0","w":332,"k":{"\u2018":6,"\u201c":6}},"N":{"d":"91,-178v6,55,4,118,4,178r-68,0r0,-257r68,0v40,60,88,110,121,177v-7,-55,-3,-117,-4,-177r67,0r0,257r-67,0r-98,-133v-7,-11,-16,-29,-23,-45","w":306,"k":{";":10,":":10,".":10,",":10}},"O":{"d":"154,-263v82,0,138,54,138,135v0,81,-56,135,-138,135v-81,0,-137,-54,-137,-135v0,-82,55,-135,137,-135xm87,-128v0,41,27,75,67,75v39,0,67,-34,67,-75v0,-42,-29,-76,-67,-76v-38,0,-67,34,-67,76","w":308,"k":{"\u2019":-7,"\u201d":-7,"Y":6,"X":13,"V":6,"T":6,"A":6,";":-7,":":-7,".":15,"-":-10,",":15}},"P":{"d":"220,-170v3,72,-47,90,-127,85r0,85r-66,0r0,-257r74,0v82,-5,116,21,119,87xm152,-172v0,-30,-26,-30,-59,-30r0,60v33,1,59,1,59,-30","w":228,"k":{"\u2019":-8,"\u2018":-13,"\u201d":-8,"\u201c":-13,"o":6,"e":6,"a":6,"A":18,";":10,":":10,".":79,"-":15,",":79}},"Q":{"d":"87,-128v0,47,38,88,85,72r-36,-47r61,0r13,18v29,-46,-1,-119,-56,-119v-38,0,-67,36,-67,76xm292,-128v0,43,-17,74,-42,96r47,62r-60,0r-27,-36v-93,38,-197,-23,-193,-122v3,-82,55,-135,137,-135v83,0,138,54,138,135","w":308,"k":{";":-7,":":-7,".":11,"-":-10,",":11}},"R":{"d":"219,-177v0,42,-23,65,-58,73r71,104r-80,0r-59,-101r0,101r-66,0r0,-257r74,0v80,-4,118,16,118,80xm150,-168v0,-33,-24,-36,-57,-35r0,67v32,1,57,-2,57,-32","w":230,"k":{"o":6,"e":6,".":-7,"-":10,",":-7}},"S":{"d":"197,-84v7,96,-137,118,-190,53r32,-52v17,18,34,32,61,35v26,3,44,-31,24,-46v-33,-24,-104,-23,-104,-86v0,-81,108,-106,165,-60r-22,50v-14,-12,-29,-19,-49,-21v-15,-1,-29,8,-29,22v0,19,14,22,34,27v52,13,75,25,78,78","w":209,"k":{";":-7,":":-7,".":6,"-":-11,",":6}},"T":{"d":"65,0r0,-197r-58,0r0,-60r185,0r0,60r-57,0r0,197r-70,0","w":199,"k":{"y":29,"w":29,"u":29,"s":23,"r":16,"o":29,"e":29,"c":29,"a":29,"O":6,"C":6,"A":15,";":29,":":29,".":46,"-":33,",":46}},"U":{"d":"140,7v-96,2,-114,-51,-114,-155r0,-109r70,0r0,125v-1,49,0,79,44,80v51,1,45,-45,45,-98r0,-107r70,0r0,136v4,93,-30,126,-115,128","w":280,"k":{"A":6,";":11,":":11,".":21,"-":10,",":21}},"V":{"d":"101,0r-108,-257r75,0r60,178v16,-63,40,-118,60,-178r74,0r-107,257r-54,0","w":255,"k":{"\u2019":-10,"\u201d":-10,"y":6,"u":20,"o":26,"e":26,"a":26,"O":6,"A":6,";":18,":":18,".":53,"-":29,",":53}},"W":{"d":"203,-257r40,160r39,-160r70,0r-72,257r-65,0r-41,-144v-11,50,-27,96,-40,144r-65,0r-73,-257r71,0r38,161r41,-161r57,0","w":349,"k":{"\u2019":-7,"\u201d":-7,"u":6,"r":10,"o":13,"i":-7,"e":13,"a":13,"A":6,";":21,":":21,".":44,"-":21,",":44}},"X":{"d":"88,-257v12,26,30,52,39,81v9,-28,28,-55,40,-81r83,0r-86,123r95,134r-79,0v-17,-33,-38,-62,-53,-98v-13,37,-35,65,-52,98r-80,0r95,-135r-86,-122r84,0","w":254,"k":{"\u2018":13,"\u201c":13,"e":6,"O":13,"C":13,";":6,":":6,".":-7,"-":18,",":-7}},"Y":{"d":"73,0r0,-117r-90,-140r81,0v14,29,32,57,43,88v10,-32,30,-59,43,-88r81,0r-90,140r0,117r-68,0","w":214,"k":{"u":21,"o":33,"e":33,"a":33,"O":6,"C":6,"A":13,";":38,":":38,".":48,"-":43,",":48}},"Z":{"d":"228,0r-227,0r130,-202r-105,0r0,-55r217,0r-130,201r115,0r0,56","w":243,"k":{"\u2018":6,"\u201c":6,";":-7,":":-7,".":-7,"-":6,",":-7}},"[":{"d":"32,-263r89,0r0,42r-39,0r0,259r39,0r0,43r-89,0r0,-344","w":130},"\\":{"d":"126,33r-126,-296r39,0r126,296r-39,0","w":164},"]":{"d":"99,-263r0,344r-89,0r0,-43r38,0r0,-259r-38,0r0,-42r89,0","w":130},"^":{"d":"155,-257r50,0r82,99r-47,0r-60,-60r-61,60r-46,0","w":360},"_":{"d":"0,43r180,0r0,42r-180,0r0,-42","w":180},"`":{"d":"39,-263r50,0r32,61r-27,0","w":180},"a":{"d":"117,-44v27,0,41,-18,41,-45v0,-27,-14,-45,-41,-45v-27,0,-41,18,-41,45v0,27,14,45,41,45xm96,-183v31,0,48,14,60,35r0,-30r57,0r0,178r-57,0r0,-29v-15,21,-32,35,-64,36v-51,0,-78,-42,-78,-96v0,-55,30,-95,82,-94","w":237,"k":{"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6}},"b":{"d":"120,-133v-26,0,-41,18,-41,44v0,27,14,45,41,45v26,0,40,-18,40,-45v0,-27,-14,-44,-40,-44xm141,7v-29,-1,-46,-16,-60,-36r0,29r-58,0r0,-272r60,0r-2,124v14,-24,28,-35,62,-35v49,-1,80,41,80,94v0,55,-30,96,-82,96","w":237,"k":{"\u2019":6,"\u2018":13,"\u201d":6,"\u201c":13,"-":-7}},"c":{"d":"13,-89v0,-71,76,-117,137,-83r0,53v-24,-29,-79,-15,-75,30v-6,44,54,59,75,29r0,55v-63,35,-137,-10,-137,-84","w":165},"d":{"d":"118,-44v27,0,41,-18,41,-45v0,-27,-15,-44,-41,-44v-26,0,-41,18,-41,44v0,27,14,45,41,45xm15,-89v0,-83,101,-131,141,-59v-3,-39,-2,-82,-2,-124r60,0r0,272r-57,0r0,-29v-14,20,-31,35,-60,36v-52,0,-82,-41,-82,-96","w":237},"e":{"d":"145,-112v1,-28,-38,-43,-59,-25v-6,6,-11,14,-13,25r72,0xm112,-183v60,0,97,43,95,107r-135,0v-6,48,64,56,79,21r47,19v-12,29,-42,43,-83,43v-59,1,-102,-37,-102,-94v0,-55,43,-96,99,-96","w":219,"k":{"x":6,"-":-7}},"f":{"d":"122,-225v-16,-6,-31,-3,-31,19r0,28r31,0r0,45r-31,0r0,133r-62,0r0,-133r-27,0r0,-45r27,0v-10,-72,23,-111,93,-95r0,48","w":126,"k":{"\u2019":-25,"\u2018":-25,"\u201d":-25,"\u201c":-25,".":6,",":6}},"g":{"d":"117,-45v26,0,41,-18,41,-44v0,-27,-14,-44,-41,-44v-27,0,-42,17,-42,44v0,27,15,44,42,44xm96,-183v30,0,48,13,60,34r0,-29r57,0r0,178v10,83,-108,93,-165,63v-17,-9,-24,-24,-25,-43r65,0v3,12,14,16,30,17v38,2,35,-28,35,-67v-13,21,-30,32,-61,33v-49,1,-78,-41,-78,-93v0,-53,30,-94,82,-93","w":237,"k":{".":6,",":6}},"h":{"d":"122,-136v-53,0,-33,83,-37,136r-62,0r0,-272r62,0r-3,127v14,-23,32,-36,66,-38v87,-5,63,102,66,183r-63,0v-6,-48,20,-136,-29,-136","w":235,"k":{"\u2019":13,"\u2018":13,"\u201d":13,"\u201c":13}},"i":{"d":"56,-198v-18,0,-34,-17,-34,-35v0,-17,17,-34,34,-34v19,0,35,15,35,34v0,19,-16,35,-35,35xm25,0r0,-178r63,0r0,178r-63,0","w":112,"k":{"\u2018":-7,"\u201c":-7}},"j":{"d":"56,-198v-18,0,-34,-17,-34,-35v0,-17,17,-34,34,-34v19,0,35,15,35,34v0,19,-16,35,-35,35xm25,78r0,-256r63,0r0,256r-63,0","w":112},"k":{"d":"23,0r0,-272r62,0r0,172r64,-78r78,0r-80,86r87,92r-82,0r-67,-79r0,79r-62,0","w":230,"k":{"\u2019":-13,"\u201d":-13,"o":13,"e":13,"a":6,"-":15}},"l":{"d":"25,0r0,-272r63,0r0,272r-63,0","w":112},"m":{"d":"85,-147v15,-44,102,-50,115,-3v12,-20,30,-33,60,-33v83,0,55,105,60,183r-62,0r0,-97v-1,-25,-3,-40,-25,-40v-51,0,-26,87,-32,137r-60,0r0,-97v0,-27,-3,-39,-26,-40v-50,0,-25,87,-31,137r-61,0r0,-178r62,0r0,31","w":341,"k":{"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6}},"n":{"d":"122,-136v-53,0,-33,83,-37,136r-62,0r0,-178r57,0r0,36v15,-24,33,-39,68,-41v87,-5,63,102,66,183r-63,0v-6,-48,20,-136,-29,-136","w":235,"k":{"\u2019":6,"\u2018":6,"\u201d":6,"\u201c":6}},"o":{"d":"112,-46v23,0,37,-18,37,-42v0,-24,-13,-43,-37,-43v-23,0,-37,19,-37,43v0,24,13,42,37,42xm112,-183v59,0,99,36,99,95v0,58,-41,95,-99,95v-59,0,-99,-37,-99,-95v0,-59,40,-95,99,-95","w":224,"k":{"\u2018":6,"\u201c":6,"x":6,"-":-7}},"p":{"d":"120,-133v-27,0,-41,18,-41,45v0,27,15,44,41,44v26,0,40,-17,40,-44v0,-27,-14,-45,-40,-45xm223,-88v0,84,-101,132,-142,59v5,30,1,72,2,107r-60,0r0,-256r58,0r0,30v14,-20,31,-34,60,-35v52,-1,82,40,82,95","w":237,"k":{"\u2019":6,"\u201d":6,"-":-7}},"q":{"d":"118,-44v26,0,41,-18,41,-44v0,-27,-14,-45,-41,-45v-27,0,-41,18,-41,45v0,27,15,44,41,44xm97,-183v29,1,46,15,60,35r0,-30r57,0r0,256r-60,0r2,-107v-14,23,-27,36,-62,36v-50,1,-79,-44,-79,-95v0,-55,29,-96,82,-95","w":237},"r":{"d":"155,-123v-37,-13,-69,8,-69,50r0,73r-63,0r0,-178r59,0r0,42v11,-31,37,-50,79,-44","w":160,"k":{"\u2019":-28,"\u201d":-28,".":36,",":36}},"s":{"d":"151,-88v44,57,-34,118,-107,89v-13,-5,-25,-9,-37,-16r13,-48v15,14,37,25,63,25v32,0,32,-26,-1,-32v-37,-7,-66,-19,-67,-56v-2,-65,94,-68,143,-41r-13,43v-13,-10,-30,-17,-51,-17v-12,0,-21,3,-21,13v4,19,71,23,78,40","w":174,"k":{"-":-7}},"t":{"d":"33,0r0,-133r-27,0r0,-45r27,0r0,-52r61,0r0,52r27,0r0,45r-27,0r0,133r-61,0","w":127,"k":{"\u2019":-17,"\u2018":-7,"\u201d":-17,"\u201c":-7,"-":8}},"u":{"d":"113,-41v53,0,23,-89,31,-137r61,0r0,91v2,68,-30,94,-92,94v-61,0,-91,-25,-91,-94r0,-91r59,0v6,49,-21,137,32,137","w":227},"v":{"d":"102,-71v10,-36,27,-72,39,-107r65,0r-80,178r-49,0r-80,-178r67,0v12,35,29,70,38,107","w":203,"k":{"\u2019":-20,"\u2018":-17,"\u201d":-20,"\u201c":-17,".":28,"-":-13,",":28}},"w":{"d":"91,-71v8,-35,24,-73,35,-107r37,0r35,107v7,-39,23,-71,34,-107r65,0r-75,178r-44,0r-33,-108v-8,35,-24,73,-34,108r-44,0r-74,-178r64,0v11,36,26,68,34,107","w":289,"k":{"\u2019":-20,"\u2018":-17,"\u201d":-20,"\u201c":-17,".":26,"-":-13,",":26}},"x":{"d":"69,-178v8,17,19,33,25,52v5,-19,18,-35,26,-52r70,0r-60,83r71,95r-71,0v-11,-22,-27,-40,-35,-66v-8,25,-23,44,-35,66r-70,0r70,-95r-60,-83r69,0","w":190,"k":{"o":6,"e":6,"c":6}},"y":{"d":"13,78r50,-105r-71,-151r69,0v11,31,25,60,33,93v8,-34,24,-62,34,-93r67,0r-112,256r-70,0","w":191,"k":{"\u2019":-20,"\u2018":-13,"\u201d":-20,"\u201c":-13,".":31,"-":6,",":31}},"z":{"d":"180,0r-180,0r91,-132r-80,0r0,-46r177,0r-94,130r86,0r0,48","w":195},"{":{"d":"71,-202v-2,-56,33,-58,86,-58r0,43v-75,-14,1,122,-74,124v45,2,38,46,38,92v0,29,11,33,36,31r0,43v-53,0,-86,0,-86,-58v0,-45,10,-95,-44,-87r0,-42v51,7,46,-42,44,-88","w":180},"|":{"d":"69,-275r42,0r0,360r-42,0r0,-360","w":180},"}":{"d":"97,-93v-77,-3,7,-136,-74,-124r0,-43v52,0,86,1,86,58v0,45,-8,95,45,88r0,42v-52,-8,-47,41,-45,87v3,58,-33,58,-86,58r0,-43v75,20,0,-124,74,-123","w":180},"~":{"d":"204,-117v28,-1,43,-13,65,-27r0,45v-26,19,-60,33,-97,19v-59,-22,-101,-24,-141,10r0,-45v21,-14,40,-23,68,-25v35,-2,76,24,105,23","w":299},"\u2122":{"d":"140,-257r39,0r20,53r20,-53r39,0r0,97r-27,0r0,-69r-26,69r-11,0r-27,-69r0,69r-27,0r0,-97xm33,-257r88,0r0,22r-29,0r0,75r-30,0r0,-75r-29,0r0,-22","w":299},"\u2026":{"d":"60,7v-19,0,-35,-17,-35,-36v0,-19,16,-35,35,-35v20,0,37,15,36,35v0,19,-17,36,-36,36xm180,7v-19,0,-35,-17,-35,-36v0,-19,16,-35,35,-35v20,0,37,15,36,35v0,19,-17,36,-36,36xm300,7v-19,0,-35,-17,-35,-36v0,-19,16,-35,35,-35v20,0,37,15,36,35v0,19,-17,36,-36,36","w":360},"\u2013":{"d":"0,-65r0,-47r180,0r0,47r-180,0","w":180},"\u2014":{"d":"0,-65r0,-47r360,0r0,47r-360,0","w":360},"\u201c":{"d":"161,-147r-65,0r54,-110r49,0xm70,-147r-65,0r54,-110r49,0","w":203,"k":{"r":6,"q":26,"g":26,"d":26,"Y":-25,"X":-11,"W":-15,"V":-23,"T":-7,"Q":6,"O":15,"J":48,"A":48}},"\u201d":{"d":"42,-257r66,0r-55,110r-48,0xm133,-257r66,0r-55,110r-48,0","w":203},"\u2018":{"d":"70,-147r-65,0r54,-110r49,0","w":112,"k":{"r":6,"q":26,"g":26,"d":26,"Y":-25,"X":-11,"W":-15,"V":-23,"T":-7,"Q":6,"O":15,"J":48,"A":48}},"\u2019":{"d":"42,-257r66,0r-55,110r-48,0","w":112},"\u00d7":{"d":"76,-213r77,77r77,-77r29,28r-78,78r78,77r-29,29r-77,-78r-77,78r-29,-29r78,-77r-78,-78","w":299},"\u00a0":{"w":112}}});

//------------------------------------------------------------------------------------------

//PLUGIN - JQuery URL Parser
jQuery.url=function(){var segments={};var parsed={};var options={url:window.location,strictMode:false,key:["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],q:{name:"queryKey",parser:/(?:^|&)([^&=]*)=?([^&]*)/g},parser:{strict:/^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,loose:/^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*):?([^:@]*))?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/}};var parseUri=function(){str=decodeURI(options.url);var m=options.parser[options.strictMode?"strict":"loose"].exec(str);var uri={};var i=14;while(i--){uri[options.key[i]]=m[i]||""}uri[options.q.name]={};uri[options.key[12]].replace(options.q.parser,function($0,$1,$2){if($1){uri[options.q.name][$1]=$2}});return uri};var key=function(key){if(!parsed.length){setUp()}if(key=="base"){if(parsed.port!==null&&parsed.port!==""){return parsed.protocol+"://"+parsed.host+":"+parsed.port+"/"}else{return parsed.protocol+"://"+parsed.host+"/"}}return(parsed[key]==="")?null:parsed[key]};var param=function(item){if(!parsed.length){setUp()}return(parsed.queryKey[item]===null)?null:parsed.queryKey[item]};var setUp=function(){parsed=parseUri();getSegments()};var getSegments=function(){var p=parsed.path;segments=[];segments=parsed.path.length==1?{}:(p.charAt(p.length-1)=="/"?p.substring(1,p.length-1):path=p.substring(1)).split("/")};return{setMode:function(mode){strictMode=mode=="strict"?true:false;return this},setUrl:function(newUri){options.url=newUri===undefined?window.location:newUri;setUp();return this},segment:function(pos){if(!parsed.length){setUp()}if(pos===undefined){return segments.length}return(segments[pos]===""||segments[pos]===undefined)?null:segments[pos]},attr:key,param:param}}();

//------------------------------------------------------------------------------------------

// usage: log('inside coolFunc',this,arguments);
// paulirish.com/2009/log-a-lightweight-wrapper-for-consolelog/
window.log = function(){
  log.history = log.history || [];   // store logs to an array for reference
  log.history.push(arguments);
  if(this.console){
    console.log( Array.prototype.slice.call(arguments) );
  }
};

//------------------------------------------------------------------------------------------

// catch all document.write() calls
(function(doc){
  var write = doc.write;
  doc.write = function(q){ 
    log('document.write(): ',arguments); 
    if (/docwriteregexwhitelist/.test(q)) write.apply(doc,arguments);  
  };
})(document);
