/*
 * jQuery Nivo Slider v2.5.2
 * http://nivo.dev7studios.com
 *
 * Copyright 2011, Gilbert Pellegrom
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 * 
 * March 2010
 */

(function($){var NivoSlider=function(element,options){var settings=$.extend({},$.fn.nivoSlider.defaults,options);var vars={currentSlide:0,currentImage:'',totalSlides:0,randAnim:'',running:false,paused:false,stop:false};var slider=$(element);slider.data('nivo:vars',vars);slider.css('position','relative');slider.addClass('nivoSlider');var kids=slider.children();kids.each(function(){var child=$(this);var link='';if(!child.is('img')){if(child.is('a')){child.addClass('nivo-imageLink');link=child;}
child=child.find('img:first');}
var childWidth=child.width();if(childWidth==0)childWidth=child.attr('width');var childHeight=child.height();if(childHeight==0)childHeight=child.attr('height');if(childWidth>slider.width()){slider.width(childWidth);}
if(childHeight>slider.height()){slider.height(childHeight);}
if(link!=''){link.css('display','none');}
child.css('display','none');vars.totalSlides++;});if(settings.startSlide>0){if(settings.startSlide>=vars.totalSlides)settings.startSlide=vars.totalSlides-1;vars.currentSlide=settings.startSlide;}
if($(kids[vars.currentSlide]).is('img')){vars.currentImage=$(kids[vars.currentSlide]);}else{vars.currentImage=$(kids[vars.currentSlide]).find('img:first');}
if($(kids[vars.currentSlide]).is('a')){$(kids[vars.currentSlide]).css('display','block');}
slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');slider.append($('<div class="nivo-caption"><p></p></div>').css({display:'none',opacity:settings.captionOpacity}));var processCaption=function(settings){var nivoCaption=$('.nivo-caption',slider);if(vars.currentImage.attr('title')!=''&&vars.currentImage.attr('title')!=undefined){var title=vars.currentImage.attr('title');if(title.substr(0,1)=='#')title=$(title).html();if(nivoCaption.css('display')=='block'){nivoCaption.find('p').fadeOut(settings.animSpeed,function(){$(this).html(title);$(this).fadeIn(settings.animSpeed);});}else{nivoCaption.find('p').html(title);}
nivoCaption.fadeIn(settings.animSpeed);}else{nivoCaption.fadeOut(settings.animSpeed);}}
processCaption(settings);var timer=0;if(!settings.manualAdvance&&kids.length>1){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);}
if(settings.directionNav){slider.append('<div class="nivo-directionNav"><a class="nivo-prevNav">'+settings.prevText+'</a><a class="nivo-nextNav">'+settings.nextText+'</a></div>');if(settings.directionNavHide){$('.nivo-directionNav',slider).hide();slider.hover(function(){$('.nivo-directionNav',slider).show();},function(){$('.nivo-directionNav',slider).hide();});}
$('a.nivo-prevNav',slider).live('click',function(){if(vars.running)return false;clearInterval(timer);timer='';vars.currentSlide-=2;nivoRun(slider,kids,settings,'prev');});$('a.nivo-nextNav',slider).live('click',function(){if(vars.running)return false;clearInterval(timer);timer='';nivoRun(slider,kids,settings,'next');});}
if(settings.controlNav){var nivoControl=$('<div class="nivo-controlNav"></div>');slider.append(nivoControl);for(var i=0;i<kids.length;i++){if(settings.controlNavThumbs){var child=kids.eq(i);if(!child.is('img')){child=child.find('img:first');}
if(settings.controlNavThumbsFromRel){nivoControl.append('<a class="nivo-control" rel="'+i+'"><img src="'+child.attr('rel')+'" alt="" /></a>');}else{nivoControl.append('<a class="nivo-control" rel="'+i+'"><img src="'+child.attr('src').replace(settings.controlNavThumbsSearch,settings.controlNavThumbsReplace)+'" alt="" /></a>');}}else{nivoControl.append('<a class="nivo-control" rel="'+i+'">'+(i+1)+'</a>');}}
$('.nivo-controlNav a:eq('+vars.currentSlide+')',slider).addClass('active');$('.nivo-controlNav a',slider).live('click',function(){if(vars.running)return false;if($(this).hasClass('active'))return false;clearInterval(timer);timer='';slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');vars.currentSlide=$(this).attr('rel')-1;nivoRun(slider,kids,settings,'control');});}
if(settings.keyboardNav){$(window).keypress(function(event){if(event.keyCode=='37'){if(vars.running)return false;clearInterval(timer);timer='';vars.currentSlide-=2;nivoRun(slider,kids,settings,'prev');}
if(event.keyCode=='39'){if(vars.running)return false;clearInterval(timer);timer='';nivoRun(slider,kids,settings,'next');}});}
if(settings.pauseOnHover){slider.hover(function(){vars.paused=true;clearInterval(timer);timer='';},function(){vars.paused=false;if(timer==''&&!settings.manualAdvance){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);}});}
slider.bind('nivo:animFinished',function(){vars.running=false;$(kids).each(function(){if($(this).is('a')){$(this).css('display','none');}});if($(kids[vars.currentSlide]).is('a')){$(kids[vars.currentSlide]).css('display','block');}
if(timer==''&&!vars.paused&&!settings.manualAdvance){timer=setInterval(function(){nivoRun(slider,kids,settings,false);},settings.pauseTime);}
settings.afterChange.call(this);});var createSlices=function(slider,settings,vars){for(var i=0;i<settings.slices;i++){var sliceWidth=Math.round(slider.width()/settings.slices);if(i==settings.slices-1){slider.append($('<div class="nivo-slice"></div>').css({left:(sliceWidth*i)+'px',width:(slider.width()-(sliceWidth*i))+'px',height:'0px',opacity:'0',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((sliceWidth+(i*sliceWidth))-sliceWidth)+'px 0%'}));}else{slider.append($('<div class="nivo-slice"></div>').css({left:(sliceWidth*i)+'px',width:sliceWidth+'px',height:'0px',opacity:'0',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((sliceWidth+(i*sliceWidth))-sliceWidth)+'px 0%'}));}}}
var createBoxes=function(slider,settings,vars){var boxWidth=Math.round(slider.width()/settings.boxCols);var boxHeight=Math.round(slider.height()/settings.boxRows);for(var rows=0;rows<settings.boxRows;rows++){for(var cols=0;cols<settings.boxCols;cols++){if(cols==settings.boxCols-1){slider.append($('<div class="nivo-box"></div>').css({opacity:0,left:(boxWidth*cols)+'px',top:(boxHeight*rows)+'px',width:(slider.width()-(boxWidth*cols))+'px',height:boxHeight+'px',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((boxWidth+(cols*boxWidth))-boxWidth)+'px -'+((boxHeight+(rows*boxHeight))-boxHeight)+'px'}));}else{slider.append($('<div class="nivo-box"></div>').css({opacity:0,left:(boxWidth*cols)+'px',top:(boxHeight*rows)+'px',width:boxWidth+'px',height:boxHeight+'px',background:'url("'+vars.currentImage.attr('src')+'") no-repeat -'+((boxWidth+(cols*boxWidth))-boxWidth)+'px -'+((boxHeight+(rows*boxHeight))-boxHeight)+'px'}));}}}}
var nivoRun=function(slider,kids,settings,nudge){var vars=slider.data('nivo:vars');if(vars&&(vars.currentSlide==vars.totalSlides-1)){settings.lastSlide.call(this);}
if((!vars||vars.stop)&&!nudge)return false;settings.beforeChange.call(this);if(!nudge){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}else{if(nudge=='prev'){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}
if(nudge=='next'){slider.css('background','url("'+vars.currentImage.attr('src')+'") no-repeat');}}
vars.currentSlide++;if(vars.currentSlide==vars.totalSlides){vars.currentSlide=0;settings.slideshowEnd.call(this);}
if(vars.currentSlide<0)vars.currentSlide=(vars.totalSlides-1);if($(kids[vars.currentSlide]).is('img')){vars.currentImage=$(kids[vars.currentSlide]);}else{vars.currentImage=$(kids[vars.currentSlide]).find('img:first');}
if(settings.controlNav){$('.nivo-controlNav a',slider).removeClass('active');$('.nivo-controlNav a:eq('+vars.currentSlide+')',slider).addClass('active');}
processCaption(settings);$('.nivo-slice',slider).remove();$('.nivo-box',slider).remove();if(settings.effect=='random'){var anims=new Array('sliceDownRight','sliceDownLeft','sliceUpRight','sliceUpLeft','sliceUpDown','sliceUpDownLeft','fold','fade','boxRandom','boxRain','boxRainReverse','boxRainGrow','boxRainGrowReverse');vars.randAnim=anims[Math.floor(Math.random()*(anims.length+1))];if(vars.randAnim==undefined)vars.randAnim='fade';}
if(settings.effect.indexOf(',')!=-1){var anims=settings.effect.split(',');vars.randAnim=anims[Math.floor(Math.random()*(anims.length))];if(vars.randAnim==undefined)vars.randAnim='fade';}
vars.running=true;if(settings.effect=='sliceDown'||settings.effect=='sliceDownRight'||vars.randAnim=='sliceDownRight'||settings.effect=='sliceDownLeft'||vars.randAnim=='sliceDownLeft'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;var slices=$('.nivo-slice',slider);if(settings.effect=='sliceDownLeft'||vars.randAnim=='sliceDownLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);slice.css({'top':'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=50;i++;});}
else if(settings.effect=='sliceUp'||settings.effect=='sliceUpRight'||vars.randAnim=='sliceUpRight'||settings.effect=='sliceUpLeft'||vars.randAnim=='sliceUpLeft'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;var slices=$('.nivo-slice',slider);if(settings.effect=='sliceUpLeft'||vars.randAnim=='sliceUpLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);slice.css({'bottom':'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=50;i++;});}
else if(settings.effect=='sliceUpDown'||settings.effect=='sliceUpDownRight'||vars.randAnim=='sliceUpDown'||settings.effect=='sliceUpDownLeft'||vars.randAnim=='sliceUpDownLeft'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;var v=0;var slices=$('.nivo-slice',slider);if(settings.effect=='sliceUpDownLeft'||vars.randAnim=='sliceUpDownLeft')slices=$('.nivo-slice',slider)._reverse();slices.each(function(){var slice=$(this);if(i==0){slice.css('top','0px');i++;}else{slice.css('bottom','0px');i=0;}
if(v==settings.slices-1){setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({height:'100%',opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=50;v++;});}
else if(settings.effect=='fold'||vars.randAnim=='fold'){createSlices(slider,settings,vars);var timeBuff=0;var i=0;$('.nivo-slice',slider).each(function(){var slice=$(this);var origWidth=slice.width();slice.css({top:'0px',height:'100%',width:'0px'});if(i==settings.slices-1){setTimeout(function(){slice.animate({width:origWidth,opacity:'1.0'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){slice.animate({width:origWidth,opacity:'1.0'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=50;i++;});}
else if(settings.effect=='fade'||vars.randAnim=='fade'){createSlices(slider,settings,vars);var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':slider.width()+'px'});firstSlice.animate({opacity:'1.0'},(settings.animSpeed*2),'',function(){slider.trigger('nivo:animFinished');});}
else if(settings.effect=='slideInRight'||vars.randAnim=='slideInRight'){createSlices(slider,settings,vars);var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':'0px','opacity':'1'});firstSlice.animate({width:slider.width()+'px'},(settings.animSpeed*2),'',function(){slider.trigger('nivo:animFinished');});}
else if(settings.effect=='slideInLeft'||vars.randAnim=='slideInLeft'){createSlices(slider,settings,vars);var firstSlice=$('.nivo-slice:first',slider);firstSlice.css({'height':'100%','width':'0px','opacity':'1','left':'','right':'0px'});firstSlice.animate({width:slider.width()+'px'},(settings.animSpeed*2),'',function(){firstSlice.css({'left':'0px','right':''});slider.trigger('nivo:animFinished');});}
else if(settings.effect=='boxRandom'||vars.randAnim=='boxRandom'){createBoxes(slider,settings,vars);var totalBoxes=settings.boxCols*settings.boxRows;var i=0;var timeBuff=0;var boxes=shuffle($('.nivo-box',slider));boxes.each(function(){var box=$(this);if(i==totalBoxes-1){setTimeout(function(){box.animate({opacity:'1'},settings.animSpeed,'',function(){slider.trigger('nivo:animFinished');});},(100+timeBuff));}else{setTimeout(function(){box.animate({opacity:'1'},settings.animSpeed);},(100+timeBuff));}
timeBuff+=20;i++;});}
else if(settings.effect=='boxRain'||vars.randAnim=='boxRain'||settings.effect=='boxRainReverse'||vars.randAnim=='boxRainReverse'||settings.effect=='boxRainGrow'||vars.randAnim=='boxRainGrow'||settings.effect=='boxRainGrowReverse'||vars.randAnim=='boxRainGrowReverse'){createBoxes(slider,settings,vars);var totalBoxes=settings.boxCols*settings.boxRows;var i=0;var timeBuff=0;var rowIndex=0;var colIndex=0;var box2Darr=new Array();box2Darr[rowIndex]=new Array();var boxes=$('.nivo-box',slider);if(settings.effect=='boxRainReverse'||vars.randAnim=='boxRainReverse'||settings.effect=='boxRainGrowReverse'||vars.randAnim=='boxRainGrowReverse'){boxes=$('.nivo-box',slider)._reverse();}
boxes.each(function(){box2Darr[rowIndex][colIndex]=$(this);colIndex++;if(colIndex==settings.boxCols){rowIndex++;colIndex=0;box2Darr[rowIndex]=new Array();}});for(var cols=0;cols<(settings.boxCols*2);cols++){var prevCol=cols;for(var rows=0;rows<settings.boxRows;rows++){if(prevCol>=0&&prevCol<settings.boxCols){(function(row,col,time,i,totalBoxes){var box=$(box2Darr[row][col]);var w=box.width();var h=box.height();if(settings.effect=='boxRainGrow'||vars.randAnim=='boxRainGrow'||settings.effect=='boxRainGrowReverse'||vars.randAnim=='boxRainGrowReverse'){box.width(0).height(0);}
if(i==totalBoxes-1){setTimeout(function(){box.animate({opacity:'1',width:w,height:h},settings.animSpeed/1.3,'',function(){slider.trigger('nivo:animFinished');});},(100+time));}else{setTimeout(function(){box.animate({opacity:'1',width:w,height:h},settings.animSpeed/1.3);},(100+time));}})(rows,prevCol,timeBuff,i,totalBoxes);i++;}
prevCol--;}
timeBuff+=100;}}}
var shuffle=function(arr){for(var j,x,i=arr.length;i;j=parseInt(Math.random()*i),x=arr[--i],arr[i]=arr[j],arr[j]=x);return arr;}
var trace=function(msg){if(this.console&&typeof console.log!="undefined")
console.log(msg);}
this.stop=function(){if(!$(element).data('nivo:vars').stop){$(element).data('nivo:vars').stop=true;trace('Stop Slider');}}
this.start=function(){if($(element).data('nivo:vars').stop){$(element).data('nivo:vars').stop=false;trace('Start Slider');}}
settings.afterLoad.call(this);return this;};$.fn.nivoSlider=function(options){return this.each(function(key,value){var element=$(this);if(element.data('nivoslider'))return element.data('nivoslider');var nivoslider=new NivoSlider(this,options);element.data('nivoslider',nivoslider);});};$.fn.nivoSlider.defaults={effect:'random',slices:15,boxCols:8,boxRows:4,animSpeed:500,pauseTime:3000,startSlide:0,directionNav:true,directionNavHide:true,controlNav:true,controlNavThumbs:false,controlNavThumbsFromRel:false,controlNavThumbsSearch:'.jpg',controlNavThumbsReplace:'_thumb.jpg',keyboardNav:true,pauseOnHover:true,manualAdvance:false,captionOpacity:0.8,prevText:'Prev',nextText:'Next',beforeChange:function(){},afterChange:function(){},slideshowEnd:function(){},lastSlide:function(){},afterLoad:function(){}};$.fn._reverse=[].reverse;})(jQuery);;
(function ($) {
  $(document).ready(function() {
    /***************************************************************************
     * Slideshow
     **************************************************************************/
    $('#banner #slider').nivoSlider({
        effect : 'sliceUpDownLeft',
        directionNav: false
    });
  }); //end ready
}(jQuery));;
jQuery(document).ready(function() {
    jQuery('#block-block-3').click(function(){
	   window.location= Drupal.settings.basePath + Drupal.settings.pathPrefix + 'node/9';
	}).css('cursor', "pointer");
    jQuery('#block-block-2').click(function(){
	   window.location = Drupal.settings.basePath + Drupal.settings.pathPrefix + 'node/8';
	}).css('cursor', "pointer");
    jQuery('#block-block-4').click(function(){
	   window.location = Drupal.settings.basePath + Drupal.settings.pathPrefix + 'node/10';
	}).css('cursor', "pointer");
});;
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());;
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2011 by Jonas Hecksher, Playtypeª, e-types AS. All rights
 * reserved.
 * 
 * Trademark:
 * Play is a trademark of Jonas Hecksher, Playtypeª, e-types AS.
 * 
 * Description:
 * Copyright (c) 2011 by Jonas Hecksher, Playtypeª, e-types AS. All rights
 * reserved.
 * 
 * Manufacturer:
 * Jonas Hecksher, Playtypeª, e-types AS
 * 
 * Designer:
 * Jonas Hecksher
 * 
 * Vendor URL:
 * http://www.playtype.com
 * 
 * License information:
 * http://scripts.sil.org/OFL
 */
Cufon.registerFont({"w":208,"face":{"font-family":"Play","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"3","bbox":"-15 -266.371 346 79.1633","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":82},"!":{"d":"72,-234r-13,170r-18,0r-12,-170r43,0xm71,0r-41,0r0,-39r41,0r0,39","w":100},"\"":{"d":"62,-154r-31,0r0,-80r31,0r0,80xm129,-154r-31,0r0,-80r31,0r0,80","w":159},"#":{"d":"85,-94r30,0r10,-46r-31,0xm187,-72r-52,0r-14,72r-24,0r14,-72r-30,0r-14,72r-24,0r14,-72r-35,0r0,-22r39,0r10,-46r-49,0r0,-22r53,0r13,-68r24,0r-13,68r30,0r13,-68r24,0r-13,68r34,0r0,22r-39,0r-9,46r48,0r0,22"},"$":{"d":"116,-23v42,7,48,-49,30,-75v-6,-4,-15,-6,-30,-6r0,81xm95,-206v-37,1,-42,16,-40,52v1,20,15,24,40,24r0,-76xm189,-76v0,55,-22,77,-73,79r0,47r-21,0r0,-46v-18,0,-41,-2,-69,-6r0,-29v22,4,43,9,69,9r0,-82v-55,2,-77,-17,-73,-72v3,-41,27,-51,73,-54r0,-25r21,0r0,25v16,0,35,1,58,4r0,25v-30,-3,-49,-5,-58,-5r0,76v48,-1,73,9,73,54"},"%":{"d":"73,-234v35,0,57,6,57,41r0,45v-1,31,-25,36,-57,35v-31,0,-57,-3,-56,-35r0,-45v0,-34,22,-41,56,-41xm73,-131v39,6,29,-33,29,-64v0,-19,-10,-17,-29,-20v-39,-5,-26,34,-28,65v-1,18,11,17,28,19xm228,-238r-117,242r-28,0r117,-242r28,0xm235,-117v34,0,56,6,56,40r0,45v0,31,-25,36,-56,36v-32,0,-57,-4,-57,-36r0,-45v0,-34,23,-40,57,-40xm235,-15v38,5,28,-32,28,-63v0,-19,-9,-19,-28,-21v-39,-5,-29,35,-29,66v0,17,12,16,29,18","w":307},"&":{"d":"85,-112v-30,5,-30,38,-30,76v0,13,22,17,52,17v23,0,39,-3,47,-10xm105,-215v-34,-7,-32,29,-24,51r87,105v2,-14,1,-33,1,-49r27,0v0,27,2,55,-7,73v15,12,14,15,31,14r0,21v-23,0,-35,2,-50,-12v-29,26,-159,23,-148,-26v-7,-52,10,-76,50,-89v-32,-26,-53,-111,34,-111v16,0,32,2,49,6r0,26v-18,-6,-35,-9,-50,-9","w":228,"k":{"T":36,"V":22,"Y":25,"W":14}},"'":{"d":"62,-154r-31,0r0,-80r31,0r0,80","w":92},"(":{"d":"60,-99v0,60,25,100,50,145r-29,0v-74,-97,-63,-205,0,-290r29,0v-26,47,-50,83,-50,145","w":119,"k":{")":-11}},")":{"d":"39,-244v61,85,74,193,0,290r-30,0v26,-45,50,-84,50,-145v0,-60,-25,-98,-50,-145r30,0","w":119},"*":{"d":"134,-179r-48,11r32,38r-22,15r-24,-43r-26,43r-21,-15r34,-38r-50,-11r9,-24r46,19r-5,-50r27,0r-5,50r45,-19","w":143,"k":{"A":18,"J":25}},"+":{"d":"102,-185r0,59r56,0r0,24r-56,0r0,61r-24,0r0,-61r-56,0r0,-24r56,0r0,-59r24,0","w":180},",":{"d":"69,-39r-34,79r-21,0r17,-79r38,0","w":92,"k":{"C":7,"T":36,"U":7,"V":36,"Y":32,"W":36}},"-":{"d":"114,-90r-100,0r0,-26r100,0r0,26","w":128,"k":{"T":36,"Y":11,"J":18,"X":14,"Z":7}},".":{"d":"67,0r-42,0r0,-39r42,0r0,39","w":92,"k":{"C":7,"T":36,"U":7,"V":36,"Y":32,"W":36}},"\/":{"d":"148,-238r-117,242r-27,0r116,-242r28,0","w":151,"k":{"A":40,"J":32,"e":22,"g":25}},"0":{"d":"104,-238v50,0,83,13,83,63r0,119v0,48,-34,60,-83,60v-49,0,-82,-12,-82,-60r0,-118v0,-50,32,-64,82,-64xm105,-18v35,0,48,-2,49,-36r0,-123v0,-36,-15,-39,-50,-39v-36,0,-48,4,-49,39r0,123v0,35,16,36,50,36"},"1":{"d":"146,0r-31,0r0,-201r-71,46r0,-29r71,-50r31,0r0,234"},"2":{"d":"34,-231v57,-9,149,-22,149,44v0,51,-3,76,-46,90v-29,19,-86,19,-78,72r124,0r0,25r-157,0v-14,-83,44,-100,99,-122v26,-10,24,-31,23,-63v-1,-25,-16,-28,-45,-28v-17,0,-40,2,-69,7r0,-25"},"3":{"d":"142,-125v18,7,40,7,39,32r0,47v-5,65,-91,52,-153,43r0,-26v45,10,119,21,119,-18r0,-40v-3,-34,-56,-19,-89,-22r0,-23v33,-2,83,10,83,-23v0,-39,10,-60,-43,-60v-18,0,-41,2,-66,6r0,-25v51,-1,141,-19,142,36v1,36,3,73,-32,73"},"4":{"d":"190,-51r-25,0r0,51r-30,0r0,-51r-116,0r0,-29r106,-154r40,0r0,158r25,0r0,25xm135,-76r0,-129r-87,129r87,0"},"5":{"d":"69,-138v48,1,108,-9,108,38r0,54v-2,66,-86,51,-146,43r0,-26v28,6,51,9,70,9v25,0,42,-4,43,-27v0,-36,8,-69,-38,-69r-69,0r0,-118r134,0r0,25r-102,0r0,71"},"6":{"d":"58,-138v59,2,131,-15,125,48r0,34v1,49,-31,60,-79,60v-48,0,-79,-12,-78,-60r0,-118v0,-73,74,-67,146,-60r0,24v-51,-2,-116,-24,-114,35r0,37xm105,-18v51,5,46,-27,46,-71v0,-43,-55,-24,-93,-28r0,63v0,34,13,33,47,36"},"7":{"d":"186,-210r-89,210r-34,0r93,-210r-134,0r0,-24r164,0r0,24"},"8":{"d":"147,-123v20,5,40,14,40,37r0,43v-2,42,-34,47,-83,47v-49,0,-83,-5,-83,-46r0,-44v-1,-25,25,-29,41,-39v-34,-2,-35,-32,-33,-69v2,-39,34,-44,75,-44v41,0,74,5,75,44v1,36,2,67,-32,69r0,2xm104,-131v46,4,44,-23,42,-62v-1,-21,-17,-22,-42,-24v-43,-3,-44,23,-42,62v1,23,15,22,42,24xm104,-17v29,0,46,-2,48,-24v4,-43,1,-75,-48,-70v-25,3,-47,2,-48,26r0,44v3,22,19,24,48,24"},"9":{"d":"105,-238v48,0,78,12,78,60r0,118v5,73,-80,68,-146,60r0,-24v50,7,119,20,114,-41r0,-30v-55,-4,-131,15,-125,-48r0,-35v-1,-49,31,-60,79,-60xm58,-144v0,42,54,24,93,28r0,-64v0,-34,-13,-33,-47,-36v-51,-5,-46,28,-46,72"},":":{"d":"67,-135r-42,0r0,-39r42,0r0,39xm67,0r-42,0r0,-39r42,0r0,39","w":92,"k":{"T":14,"V":11,"Y":14}},";":{"d":"67,-135r-42,0r0,-39r42,0r0,39xm69,-39r-34,79r-21,0r17,-79r38,0","w":92,"k":{"T":14,"V":11,"Y":14}},"<":{"d":"158,-51r0,29r-136,-77r0,-26r136,-77r0,30r-108,61","w":180},"=":{"d":"158,-130r-136,0r0,-24r136,0r0,24xm158,-73r-136,0r0,-24r136,0r0,24","w":180},">":{"d":"22,-22r0,-29r108,-60r-108,-61r0,-30r136,77r0,26","w":180},"?":{"d":"170,-186v13,78,-67,56,-65,124r-30,0v-9,-73,63,-57,61,-122v-1,-25,-18,-27,-46,-28v-17,0,-39,3,-68,8r0,-26v57,-8,151,-24,148,44xm110,0r-42,0r0,-39r42,0r0,39","w":191,"k":{"A":11,"J":18}},"@":{"d":"130,-208v57,0,114,11,114,66v0,51,26,122,-47,122v-14,0,-26,-5,-30,-13v-7,13,-17,11,-41,13v-57,5,-55,-38,-54,-91v1,-40,19,-43,61,-47v73,-7,54,54,57,112v0,7,6,7,14,8v9,0,14,1,13,-8r0,-100v-3,-38,-46,-43,-86,-43v-40,0,-81,5,-81,43r0,118v10,58,114,38,166,31r0,20v-65,12,-194,26,-194,-54r0,-110v1,-56,53,-67,108,-67xm132,-39v45,4,32,-36,32,-70v0,-30,-2,-27,-32,-30v-47,-5,-32,38,-32,73v0,26,5,24,32,27","w":265,"k":{"Y":11}},"A":{"d":"229,0r-36,0r-27,-71r-100,0r-26,71r-35,0r93,-234r41,0xm158,-95r-40,-106r-3,0r-40,106r83,0","w":234,"k":{"C":6,"G":6,"O":6,"Q":6,"T":29,"U":5,"V":18,"Y":25,"v":18,"w":18,"\\":36,"?":22,"*":18}},"B":{"d":"157,-123v38,3,44,33,42,77v-3,67,-104,40,-169,46r0,-234v63,4,156,-18,159,45v2,38,-4,59,-32,66xm65,-131v37,-3,91,11,91,-28v0,-36,-3,-52,-42,-52r-49,0r0,80xm65,-24v37,-3,96,11,99,-24v3,-41,-3,-61,-48,-61r-51,0r0,85","w":220,"k":{"T":11,"Y":11}},"C":{"d":"185,-205v-50,-10,-128,-23,-128,34v0,73,-30,150,66,150v19,0,41,-3,64,-9r0,27v-65,17,-164,7,-164,-57r0,-111v-9,-66,95,-77,162,-60r0,26","w":203,"k":{"-":14}},"D":{"d":"221,-167r0,104v8,71,-112,65,-191,63r0,-234v82,-1,191,-10,191,67xm188,-167v0,-55,-70,-41,-123,-43r0,186v51,1,123,5,123,-40r0,-103","w":244,"k":{"T":7,",":7,".":7}},"E":{"d":"191,0r-161,0r0,-234r157,0r0,25r-122,0r0,76r110,0r0,25r-110,0r0,84r126,0r0,24","k":{"C":4,"G":4,"O":4}},"F":{"d":"191,-209r-126,0r0,76r114,0r0,25r-114,0r0,108r-35,0r0,-234r161,0r0,25","w":201,"k":{",":40,".":40,"A":25,"J":39,"a":11,"e":9,"\/":36}},"G":{"d":"58,-60v7,49,80,43,126,33r0,-81r-54,0r0,-25r87,0r0,126v-75,16,-194,27,-194,-53r0,-110v2,-81,115,-70,188,-61r0,27v-46,-11,-153,-21,-153,33r0,111","w":239},"H":{"d":"224,0r-35,0r0,-108r-124,0r0,108r-35,0r0,-234r35,0r0,101r124,0r0,-101r35,0r0,234","w":254},"I":{"d":"65,0r-35,0r0,-234r35,0r0,234","w":95},"J":{"d":"7,-24v32,7,73,17,73,-26r0,-184r35,0r0,183v10,63,-63,58,-108,51r0,-24","w":145},"K":{"d":"223,0r-46,0r-111,-124r104,-110r42,0r-105,108xm65,0r-35,0r0,-234r35,0r0,234","w":219,"k":{"O":7,"-":22,"e":14}},"L":{"d":"180,0r-150,0r0,-234r35,0r0,210r115,0r0,24","w":187,"k":{"T":54,"U":11,"V":32,"Y":43,"v":22,"w":18,"\\":50,"?":29,"*":36,"-":32,"W":47,"f":11,"t":18,"y":22,"s":11}},"M":{"d":"280,0r-31,0r0,-198r-2,0r-75,198r-31,0r-79,-198r0,198r-32,0r0,-234r52,0r76,195r71,-195r51,0r0,234","w":309},"N":{"d":"230,0r-42,0r-127,-196r0,196r-31,0r0,-234r42,0r127,193r0,-193r31,0r0,234","w":260},"O":{"d":"221,-60v-1,52,-49,64,-99,64v-65,0,-98,-22,-98,-64r0,-110v0,-45,33,-67,98,-67v66,0,99,22,99,66r0,111xm122,-215v-36,2,-65,8,-65,44v0,72,-30,151,65,151v43,0,65,-13,65,-40v0,-73,28,-161,-65,-155","w":244,"k":{"T":7,"A":6,"X":7}},"P":{"d":"30,-234v64,4,155,-18,159,46r0,49v0,57,-63,55,-124,55r0,84r-35,0r0,-234xm65,-106v41,0,90,5,90,-35r0,-42v-2,-37,-52,-27,-90,-29r0,106","w":205,"k":{",":36,".":36,"A":27,"J":35,"a":9,"e":9,"\/":32,"c":9,"o":9}},"Q":{"d":"246,0v-85,-2,-223,18,-223,-63r0,-107v0,-45,32,-67,98,-67v66,0,99,22,99,66v0,62,15,127,-32,151r58,0r0,20xm122,-215v-36,1,-67,7,-65,44v4,71,-29,148,65,148v92,0,64,-77,64,-148v0,-29,-21,-44,-64,-44","w":243,"k":{"T":7}},"R":{"d":"194,-148v1,31,-29,44,-60,44r75,104r-43,0r-67,-100r-34,0r0,100r-35,0r0,-234v65,6,165,-22,164,46r0,40xm65,-123v38,-3,94,12,94,-29v0,-39,2,-59,-45,-59r-49,0r0,88","w":220,"k":{"Y":14}},"S":{"d":"95,-134v61,0,90,6,90,72v0,80,-85,69,-159,60r0,-29v28,6,53,9,74,9v29,-1,50,-3,51,-28v2,-36,2,-61,-39,-58v-62,5,-90,-9,-90,-75v0,-66,86,-56,152,-50r0,26v-27,-4,-48,-6,-63,-6v-48,-2,-60,10,-56,56v2,19,16,23,40,23","w":204,"k":{"T":18,"S":11}},"T":{"d":"202,-209r-79,0r0,209r-35,0r0,-209r-79,0r0,-25r193,0r0,25","w":210,"k":{"C":7,"G":4,"O":7,"Q":7,"v":29,"w":18,"-":36,",":36,".":36,"A":29,"J":36,"a":36,"e":36,"\/":50,"y":29,"s":29,"c":36,"o":36,"d":29,"g":29,"m":29,"n":29,"p":29,"r":29,"u":29,"x":29,"z":29,"q":36,":":14,";":14,"&":14}},"U":{"d":"122,-20v34,0,57,-8,57,-40r0,-174r34,0r0,174v0,42,-31,64,-92,64v-50,-1,-91,-13,-91,-64r0,-174r34,0r0,174v0,33,24,40,58,40","w":243,"k":{",":7,".":7,"A":5}},"V":{"d":"229,-234r-93,234r-40,0r-91,-234r37,0r75,201r3,0r75,-201r34,0","w":234,"k":{",":36,".":36,"A":27,"J":33,"a":18,"e":18,"\/":40,"o":29,"r":14,"u":14,":":11,";":11,"&":7}},"W":{"d":"346,-234r-76,234r-40,0r-56,-194r-57,194r-41,0r-73,-234r37,0r59,201r58,-201r37,0r58,201r58,-201r36,0","w":348,"k":{",":36,".":36,"A":14,"a":18,"e":18,"\/":32,"o":18,"r":14,"u":14,"&":4}},"X":{"d":"215,0r-40,0r-66,-95r-66,95r-40,0r86,-119r-83,-115r40,0r63,91r62,-91r40,0r-82,115","w":217,"k":{"O":7,"Q":7,"-":14}},"Y":{"d":"207,-234r-85,139r0,95r-35,0r0,-94r-84,-140r40,0r62,110r62,-110r40,0","w":210,"k":{"G":14,"-":11,",":32,".":32,"A":25,"J":37,"a":29,"e":32,"\/":50,"c":14,"o":32,"q":32,":":14,";":14,"&":7,"@":7}},"Z":{"d":"194,0r-180,0r0,-24r138,-185r-134,0r0,-25r174,0r0,25r-137,185r139,0r0,24","k":{"-":11}},"[":{"d":"112,68r-82,0r0,-333r82,0r0,17r-50,0r0,299r50,0r0,17","w":118},"\\":{"d":"148,4r-28,0r-116,-241r27,0","w":151,"k":{"T":50,"V":36,"Y":43,"W":32}},"]":{"d":"89,68r-82,0r0,-17r50,0r0,-299r-50,0r0,-17r82,0r0,333","w":118},"^":{"d":"80,-245r28,82r-24,0r-26,-67r-26,67r-25,0r28,-82r45,0","w":115},"_":{"d":"183,51r-157,0r0,-26r157,0r0,26"},"`":{"d":"79,-199r-27,0r-45,-46r39,0","w":86},"a":{"d":"31,-175v63,-1,135,-22,135,52r0,123r-32,0r0,-17v-3,13,-20,21,-52,21v-48,-1,-61,-9,-64,-56v-4,-62,58,-49,115,-51v2,-37,-1,-52,-42,-52v-18,0,-38,1,-60,4r0,-24xm81,-18v22,0,52,3,52,-17r0,-48v-36,4,-89,-16,-83,32v3,24,5,33,31,33","w":193,"k":{"w":4}},"b":{"d":"60,-158v6,-16,28,-20,55,-20v48,0,72,16,72,49r0,72v-1,48,-32,61,-81,61v-48,0,-78,-12,-78,-61r0,-195r32,0r0,94xm107,-18v64,8,47,-53,47,-103v0,-32,-14,-30,-48,-34v-62,-7,-46,54,-46,103v0,33,14,30,47,34"},"c":{"d":"55,-51v-4,48,64,31,99,25r0,25v-54,8,-140,17,-132,-52r0,-64v-8,-70,72,-66,130,-55r0,23v-37,-6,-97,-23,-97,27r0,71","w":167},"d":{"d":"92,-178v22,0,53,6,57,22r-1,-96r32,0r0,252r-31,0r0,-21v-4,17,-32,26,-59,25v-48,-1,-67,-10,-68,-56r0,-77v1,-40,26,-48,70,-49xm97,-19v30,-3,49,-2,51,-27v-7,-52,26,-116,-48,-109v-31,3,-46,-3,-46,23v0,49,-22,120,43,113","w":205},"e":{"d":"99,-178v65,-3,77,33,72,98r-117,0v-13,70,53,67,111,52r0,24v-56,16,-143,12,-143,-46r0,-68v1,-47,27,-58,77,-60xm97,-156v-38,0,-47,17,-43,55r85,0v2,-37,-2,-55,-42,-55","w":192},"f":{"d":"138,-233v-29,-2,-66,-6,-62,29r0,30r58,0r0,21r-58,0r0,153r-32,0r0,-153r-40,0r0,-21r40,0v-9,-68,27,-92,94,-80r0,21","w":136,"k":{",":22,".":22,"f":8,"t":11}},"g":{"d":"22,-120v0,-46,23,-58,71,-58v30,0,49,7,54,21r0,-17r30,0r0,191v8,73,-85,64,-143,58r0,-23v53,4,105,20,110,-29r0,-42v0,20,-31,23,-53,23v-49,-1,-68,-9,-69,-53r0,-71xm98,-18v29,0,46,-2,46,-29v0,-50,21,-120,-47,-109v-65,-9,-43,61,-43,109v0,28,13,29,44,29","w":204},"h":{"d":"118,-178v92,0,52,105,60,178r-32,0r0,-126v0,-22,-14,-29,-38,-28v-34,1,-48,0,-48,28r0,126r-32,0r0,-252r32,0r0,99v3,-17,23,-25,58,-25","w":206},"i":{"d":"60,-203r-32,0r0,-34r32,0r0,34xm60,0r-32,0r0,-174r32,0r0,174","w":88},"j":{"d":"61,-203r-33,0r0,-34r33,0r0,34xm-15,57v26,3,43,0,43,-28r0,-203r33,0r0,200v2,47,-30,57,-76,52r0,-21","w":88},"k":{"d":"184,0r-40,0r-80,-95r74,-79r39,0r-75,79xm60,0r-32,0r0,-252r32,0r0,252","w":185,"k":{"e":11}},"l":{"d":"60,0r-32,0r0,-252r32,0r0,252","w":88},"m":{"d":"174,-154v18,-37,131,-37,118,26r0,128r-32,0r0,-126v0,-22,-14,-29,-38,-28v-33,1,-44,1,-44,28r0,126r-33,0r0,-126v1,-22,-13,-29,-37,-28v-33,1,-48,1,-48,28r0,126r-32,0r0,-174r32,0r0,21v0,-32,108,-34,114,-1","w":320},"n":{"d":"118,-178v92,0,52,105,60,178r-32,0r0,-126v1,-23,-15,-29,-38,-29v-33,0,-48,2,-48,29r0,126r-32,0r0,-174r32,0r0,21v3,-17,23,-25,58,-25","w":206,"k":{"y":4}},"o":{"d":"75,-177v58,0,107,-1,107,61v0,59,7,119,-53,119v-56,0,-107,3,-107,-58v0,-60,-7,-122,53,-122xm81,-18v35,0,68,6,68,-32r0,-71v-1,-34,-11,-36,-47,-36v-36,0,-47,1,-47,36v0,40,-15,103,26,103","w":204,"k":{"v":5,"x":11}},"p":{"d":"120,-178v39,0,67,17,67,49r0,72v-1,48,-32,62,-81,61v-17,-1,-41,-4,-46,-15r0,86r-32,0r0,-249r32,0r0,18v3,-15,23,-22,60,-22xm107,-18v61,7,47,-50,47,-99v0,-34,-13,-33,-48,-37v-63,-7,-46,52,-46,101v0,33,14,31,47,35"},"q":{"d":"110,-178v51,0,77,12,77,57r0,196r-33,0r0,-86v-5,10,-22,15,-52,15v-49,0,-74,-14,-74,-61r0,-64v2,-46,28,-57,82,-57xm108,-19v63,8,46,-50,46,-98v0,-35,-9,-37,-45,-37v-40,0,-48,0,-48,37r0,64v0,33,14,30,47,34"},"r":{"d":"59,-146v2,-22,34,-36,63,-32r0,28v-31,0,-62,-3,-62,27r0,123r-32,0r0,-174r31,0r0,28","w":126,"k":{",":36,".":36,"c":4}},"s":{"d":"149,-152v-41,-2,-107,-24,-99,32v-2,18,29,18,52,18v44,0,55,17,55,56v0,62,-80,52,-135,45r0,-25v29,5,48,7,60,7v32,1,43,-5,43,-39v0,-24,-28,-20,-52,-20v-40,0,-57,-18,-55,-59v2,-42,66,-46,131,-38r0,23","w":173,"k":{"s":11}},"t":{"d":"75,-49v-2,37,29,33,63,28r0,22v-49,7,-96,6,-96,-52r0,-102r-38,0r0,-21r38,0r0,-54r33,0r0,54r63,0r0,21r-63,0r0,104","w":144,"k":{"t":11}},"u":{"d":"98,-19v30,0,48,0,48,-24r0,-131r32,0r0,174r-32,0r0,-21v-3,17,-22,25,-57,25v-41,-1,-60,-12,-61,-50r0,-128r32,0r0,126v0,22,15,29,38,29","w":206},"v":{"d":"165,-174r-61,174r-39,0r-63,-174r34,0r50,146r47,-146r32,0","w":166,"k":{"e":4,"o":4}},"w":{"d":"281,-174r-57,174r-39,0r-42,-141r-41,141r-39,0r-59,-174r36,0r42,143r3,0r41,-143r36,0r42,143r3,0r41,-143r33,0","w":285,"k":{"e":4,"d":4}},"x":{"d":"169,0r-36,0r-47,-69r-47,69r-35,0r64,-90r-61,-84r36,0r43,63r44,-63r35,0r-61,84","w":172,"k":{"c":7}},"y":{"d":"163,-174r-87,249r-34,0r27,-72r-67,-177r35,0r50,142r44,-142r32,0","w":165,"k":{",":22,".":22}},"z":{"d":"151,0r-137,0r0,-22r98,-130r-94,0r0,-22r131,0r0,22r-98,130r100,0r0,22","w":163},"{":{"d":"49,-108v65,20,-10,152,54,159r0,17v-76,13,-55,-71,-58,-137v-2,-25,3,-29,-22,-29r0,-19v65,1,-33,-161,80,-148r0,17v-60,-1,7,127,-54,140","w":118},"|":{"d":"70,4r-20,0r0,-241r20,0r0,241","w":120},"}":{"d":"73,-69v-6,61,25,149,-57,137r0,-17v61,-4,-12,-141,54,-159v-41,-8,-29,-69,-29,-116v0,-15,-9,-25,-25,-24r0,-17v69,-12,55,57,57,119v1,25,-1,28,23,29r0,19v-25,0,-21,4,-23,29","w":118},"~":{"d":"67,-107v-21,2,-33,7,-43,22r0,-29v41,-50,126,43,160,-17r0,29v-24,36,-87,1,-117,-5"},"\u00a0":{"w":82}}});
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 2011 by Jonas Hecksher, Playtype¬ e-types AS. All rights
 * reserved.
 * 
 * Trademark:
 * Play Bold is a trademark of Jonas Hecksher, Playtypeª, e-types AS.
 * 
 * Description:
 * Copyright (c) 2011 by Jonas Hecksher, Playtypeª, e-types AS. All rights
 * reserved.
 * 
 * Manufacturer:
 * Jonas Hecksher, Playtypeª, e-types AS
 * 
 * Designer:
 * Jonas Hecksher
 * 
 * Vendor URL:
 * http://www.playtype.com
 * 
 * License information:
 * http://scripts.sil.org/OFL
 */
Cufon.registerFont({"w":208,"face":{"font-family":"Play","font-weight":700,"font-stretch":"normal","units-per-em":"360","panose-1":"2 11 0 0 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-14 -266.131 352 79.3216","underline-thickness":"18","underline-position":"-18","unicode-range":"U+0020-U+007E"},"glyphs":{" ":{"w":82},"!":{"d":"85,-234r-16,166r-32,0r-15,-166r63,0xm81,0r-56,0r0,-50r56,0r0,50","w":106},"\"":{"d":"135,-144r-42,0r0,-90r42,0r0,90xm67,-144r-43,0r0,-90r43,0r0,90","w":159},"#":{"d":"187,-69r-49,0r-15,69r-30,0r14,-69r-23,0r-15,69r-30,0r14,-69r-31,0r0,-29r36,0r8,-37r-44,0r0,-29r50,0r13,-66r31,0r-13,66r23,0r13,-66r31,0r-13,66r30,0r0,29r-36,0r-8,37r44,0r0,29xm120,-135r-23,0r-8,37r23,0"},"$":{"d":"127,-137v55,-1,81,16,79,70v-2,47,-33,66,-79,69r0,48r-33,0r0,-46v-19,0,-45,-3,-77,-7r0,-41v25,3,49,9,77,9r0,-60v-57,1,-85,-20,-82,-73v3,-44,33,-56,82,-59r0,-26r33,0r0,25v24,1,47,3,68,5r0,39v-30,-4,-53,-6,-68,-6r0,53xm94,-190v-26,0,-30,10,-28,37v0,10,10,16,28,16r0,-53xm127,-37v31,1,30,-33,20,-52v-3,-3,-10,-5,-20,-6r0,58","w":218},"%":{"d":"217,-126v41,0,80,2,77,45r0,43v0,38,-21,42,-59,42v-38,0,-60,-4,-60,-42v0,-46,-1,-88,42,-88xm229,-237r-117,241r-31,0r117,-241r31,0xm56,-230v41,0,77,3,77,45r0,43v0,37,-22,42,-60,42v-38,0,-59,-5,-60,-42v-1,-46,-1,-88,43,-88xm235,-24v35,0,15,-38,20,-63v0,-8,-7,-12,-20,-12v-35,-2,-20,39,-20,65v0,7,7,10,20,10xm53,-191v0,25,-13,68,20,63v35,3,15,-38,20,-63v0,-8,-7,-12,-20,-12v-13,0,-20,4,-20,12","w":307},"&":{"d":"65,-131v-44,-37,-23,-121,47,-106v16,0,36,2,60,6r0,36v-22,-5,-42,-8,-58,-8v-27,0,-22,22,-17,37r75,83r0,-53r48,0v-2,35,8,73,-13,91v5,9,14,13,29,11r0,34v-23,0,-50,3,-60,-10v-43,22,-156,25,-158,-34v-2,-51,-2,-72,47,-87xm72,-96v-1,38,-7,65,41,65v19,0,32,-2,39,-5r-68,-74v-8,3,-12,8,-12,14","w":236,"k":{"T":36,"V":22,"Y":25,"W":14}},"'":{"d":"67,-144r-42,0r0,-90r42,0r0,90","w":92},"(":{"d":"72,46v-64,-82,-59,-215,0,-290r49,0v-59,98,-59,194,1,290r-50,0","w":125,"k":{")":-11}},")":{"d":"49,-244v60,74,64,209,0,290r-49,0v60,-96,60,-193,0,-290r49,0","w":125},"*":{"d":"144,-173r-39,8r27,31r-32,22r-20,-35r-20,35r-32,-22r28,-31r-40,-8r12,-36r38,16r-4,-41r38,0r-4,40r37,-15","w":160,"k":{"A":18,"J":25}},"+":{"d":"122,-196r0,65r62,0r0,36r-62,0r0,65r-36,0r0,-65r-61,0r0,-36r61,0r0,-65r36,0"},",":{"d":"78,-50r-34,90r-37,0r16,-90r55,0","w":92,"k":{"C":7,"T":36,"U":7,"V":36,"Y":32,"W":36}},"-":{"d":"125,-83r-111,0r0,-40r111,0r0,40","w":139,"k":{"T":36,"Y":11,"J":18,"X":14,"Z":7}},".":{"d":"74,0r-56,0r0,-50r56,0r0,50","w":92,"k":{"C":7,"T":36,"U":7,"V":36,"Y":32,"W":36}},"\/":{"d":"152,-237r-117,241r-31,0r116,-241r32,0","w":155,"k":{"A":40,"J":32,"e":22,"g":25}},"0":{"d":"104,4v-52,0,-85,-14,-86,-65r0,-112v1,-50,33,-64,86,-64v52,0,86,13,86,64r0,112v1,52,-34,65,-86,65xm105,-203v-28,0,-33,1,-33,27r0,119v0,26,5,27,33,27v29,0,32,-1,32,-27r0,-119v-1,-26,-3,-27,-32,-27"},"1":{"d":"147,0r-53,0r0,-179r-63,36r0,-45r73,-46r43,0r0,234"},"2":{"d":"26,-230v61,-9,161,-22,159,49v14,80,-52,86,-101,110v-12,6,-11,16,-11,32r112,0r0,39r-164,0v-2,-50,-1,-93,39,-109v33,-13,80,-14,70,-71v-3,-18,-16,-19,-39,-19v-16,0,-37,3,-65,9r0,-40"},"3":{"d":"171,-192v1,30,4,63,-22,67v36,11,33,33,32,73v-3,72,-92,57,-164,50r0,-42v24,3,45,8,72,10v38,2,37,-17,37,-51v0,-21,-52,-17,-79,-17r0,-36v38,0,79,8,70,-43v-3,-19,-11,-20,-35,-20v-14,0,-35,1,-63,4r0,-37v33,-2,56,-3,69,-3v48,2,82,2,83,45"},"4":{"d":"190,-47r-25,0r0,47r-48,0r0,-47r-108,0r0,-42r96,-145r60,0r0,149r25,0r0,38xm117,-85r0,-99r-63,99r63,0"},"5":{"d":"80,-146v49,-1,101,-1,101,45r0,49v-4,72,-85,56,-159,52r0,-44v29,6,51,8,67,8v21,0,38,-1,38,-18v0,-28,7,-53,-28,-53r-72,0r0,-127r148,0r0,41r-95,0r0,47"},"6":{"d":"72,-146v59,0,117,-8,117,53v0,70,-20,97,-85,97v-52,0,-85,-14,-84,-65r0,-109v6,-77,71,-70,158,-64r0,39v-34,-4,-57,-6,-70,-6v-44,0,-35,20,-36,55xm105,-31v43,6,29,-27,32,-61v3,-30,-38,-15,-65,-19v5,37,-17,89,33,80"},"7":{"d":"186,-198r-90,198r-58,0r90,-193r-114,0r0,-41r172,0r0,36"},"8":{"d":"194,-48v-4,46,-39,52,-90,52v-51,0,-87,-6,-89,-52r0,-40v-1,-20,26,-30,39,-37v-27,-2,-34,-30,-31,-63v3,-41,31,-48,81,-49v65,-1,82,18,82,82v0,18,-20,26,-31,32v33,4,42,33,39,75xm139,-52v0,-32,4,-57,-34,-52v-39,-4,-36,19,-35,52v1,22,8,21,34,21v26,0,34,1,35,-21xm76,-184v0,27,-4,50,28,46v32,4,30,-18,29,-46v-1,-16,-10,-19,-29,-19v-19,0,-27,3,-28,19"},"9":{"d":"105,-237v52,0,84,13,84,64r0,109v2,78,-83,70,-158,64r0,-37v30,3,52,5,66,5v44,0,40,-18,40,-56v-58,0,-117,9,-117,-53v0,-68,19,-96,85,-96xm72,-177v1,32,-9,62,32,54r33,0v-5,-36,18,-86,-33,-79v-26,4,-32,0,-32,25"},":":{"d":"74,-125r-56,0r0,-49r56,0r0,49xm74,0r-56,0r0,-50r56,0r0,50","w":92,"k":{"T":14,"V":11,"Y":14}},";":{"d":"74,-125r-56,0r0,-49r56,0r0,49xm78,-50r-34,90r-37,0r16,-90r55,0","w":92,"k":{"T":14,"V":11,"Y":14}},"<":{"d":"184,-38r-159,-55r0,-41r159,-55r0,40r-118,36r118,35r0,40"},"=":{"d":"184,-131r-159,0r0,-36r159,0r0,36xm184,-59r-159,0r0,-36r159,0r0,36"},">":{"d":"184,-93r-159,55r0,-40r118,-35r-118,-36r0,-40r159,55r0,41"},"?":{"d":"14,-231v80,-8,174,-29,162,77v-5,46,-67,33,-62,86r-49,0v-13,-73,60,-51,56,-116v-1,-16,-13,-17,-35,-17v-11,0,-35,3,-72,9r0,-39xm118,0r-56,0r0,-50r56,0r0,50","w":190,"k":{"A":11,"J":18}},"@":{"d":"140,-237v59,0,124,10,124,66v0,58,24,128,-58,118v-13,-2,-34,-4,-37,-13v-4,9,-15,13,-34,13v-59,0,-56,-33,-54,-84v1,-40,17,-40,61,-44v68,-6,56,40,57,95v1,7,5,9,14,9v9,0,14,0,14,-9r0,-84v5,-31,-52,-42,-108,-39v-28,2,-60,10,-60,39r0,107v0,26,27,39,81,39v16,0,45,-2,87,-8r0,27v-92,19,-208,12,-207,-55r0,-110v4,-57,61,-67,120,-67xm139,-77v35,8,23,-32,23,-58v0,-20,0,-21,-21,-23v-34,-3,-17,38,-21,64v1,17,1,17,19,17","w":283,"k":{"Y":11}},"A":{"d":"240,0r-57,0r-21,-62r-85,0r-21,62r-55,0r86,-234r69,0xm150,-99r-31,-88r-30,88r61,0","w":240,"k":{"C":6,"G":6,"O":6,"Q":6,"T":29,"U":5,"V":18,"Y":25,"v":18,"w":18,"\\":36,"?":22,"*":18}},"B":{"d":"179,-123v30,3,39,32,36,71v-5,73,-116,47,-190,52r0,-234v81,7,200,-30,180,79v1,16,-17,25,-26,32xm81,-139v34,-3,79,13,70,-35v2,-30,-42,-17,-70,-20r0,55xm81,-40v37,-2,88,12,78,-38v2,-36,-46,-21,-78,-24r0,62","w":228,"k":{"T":11,"Y":11}},"C":{"d":"129,-197v-29,-1,-55,2,-53,30v5,63,-28,131,58,131v17,0,40,-4,70,-11r0,43v-74,13,-184,20,-184,-60r0,-103v-5,-71,102,-80,183,-62r0,42v-29,-7,-54,-10,-74,-10","w":214,"k":{"-":14}},"D":{"d":"25,-234v90,6,215,-25,210,71r0,95v5,95,-122,61,-210,68r0,-234xm81,-40v43,-4,98,13,98,-28r0,-96v-1,-40,-58,-28,-98,-30r0,154","w":255,"k":{"T":7,",":7,".":7}},"E":{"d":"207,0r-182,0r0,-234r178,0r0,40r-122,0r0,54r111,0r0,40r-111,0r0,60r126,0r0,40","w":219,"k":{"C":4,"G":4,"O":4}},"F":{"d":"207,-194r-126,0r0,58r114,0r0,40r-114,0r0,96r-56,0r0,-234r182,0r0,40","w":219,"k":{",":40,".":40,"A":25,"J":39,"a":11,"e":9,"\/":36}},"G":{"d":"76,-68v2,39,68,35,104,26r0,-54r-38,0r0,-37r92,0r0,121v-68,20,-214,38,-214,-52r0,-97v2,-92,128,-80,212,-69r0,43v-43,-10,-156,-26,-156,25r0,94","w":253},"H":{"d":"237,0r-56,0r0,-100r-100,0r0,100r-56,0r0,-234r56,0r0,94r100,0r0,-94r56,0r0,234","w":262},"I":{"d":"81,0r-56,0r0,-234r56,0r0,234","w":106},"J":{"d":"136,-64v4,70,-65,74,-129,64r0,-41v33,6,73,14,73,-21r0,-172r56,0r0,170","w":160},"K":{"d":"246,0r-69,0r-94,-124r87,-110r66,0r-88,109xm81,0r-56,0r0,-234r56,0r0,234","w":245,"k":{"O":7,"-":22,"e":14}},"L":{"d":"196,0r-171,0r0,-234r56,0r0,194r115,0r0,40","k":{"T":54,"U":11,"V":32,"Y":43,"v":22,"w":18,"\\":50,"?":29,"*":36,"-":32,"W":47,"f":11,"t":18,"y":22,"s":11}},"M":{"d":"295,0r-51,0r-1,-173r-59,173r-45,0r-62,-173r0,173r-52,0r0,-234r80,0r58,167r57,-167r75,0r0,234","w":320},"N":{"d":"245,0r-57,0r-113,-162r0,162r-50,0r0,-234r57,0r113,160r0,-160r50,0r0,234","w":270},"O":{"d":"131,-237v59,0,111,14,111,71r0,102v-3,54,-55,68,-111,68v-55,0,-111,-12,-111,-68r0,-102v2,-57,52,-71,111,-71xm131,-36v27,0,55,-2,55,-28r0,-103v-2,-26,-25,-30,-55,-30v-32,0,-55,2,-55,30r0,103v2,26,28,28,55,28","w":262,"k":{"T":7,"A":6,"X":7}},"P":{"d":"25,-234v74,6,188,-24,186,54r0,44v1,64,-62,59,-130,60r0,76r-56,0r0,-234xm81,-114v32,-2,76,7,76,-24v0,-36,3,-63,-41,-56r-35,0r0,80","w":225,"k":{",":36,".":36,"A":27,"J":35,"a":9,"e":9,"\/":32,"c":9,"o":9}},"Q":{"d":"131,-237v59,0,111,14,111,71v0,49,6,119,-30,126r52,0r0,40r-77,0v-71,7,-167,10,-167,-64r0,-102v2,-57,52,-71,111,-71xm131,-36v27,0,55,-2,55,-28r0,-103v-2,-26,-25,-30,-55,-30v-32,0,-55,2,-55,30r0,103v2,26,28,28,55,28","w":266,"k":{"T":7}},"R":{"d":"219,-143v0,30,-26,43,-53,47r67,96r-65,0r-61,-92r-26,0r0,92r-56,0r0,-234v74,6,191,-23,194,50r0,41xm81,-129v39,-4,95,17,83,-42v1,-35,-51,-19,-83,-23r0,65","w":240,"k":{"Y":14}},"S":{"d":"100,-142v65,0,108,7,104,75v-6,88,-103,73,-186,64r0,-43v40,6,68,10,84,10v39,-1,46,-8,46,-40v0,-28,-31,-23,-58,-23v-58,-1,-81,-25,-77,-79v5,-72,100,-61,180,-55r0,42v-36,-4,-62,-6,-75,-6v-36,-1,-49,2,-49,37v0,12,10,18,31,18","w":218,"k":{"T":18,"S":11}},"T":{"d":"207,-194r-72,0r0,194r-56,0r0,-194r-72,0r0,-40r200,0r0,40","w":214,"k":{"C":7,"G":4,"O":7,"Q":7,"v":29,"w":18,"-":36,",":36,".":36,"A":29,"J":36,"a":36,"e":36,"\/":50,"y":29,"s":29,"c":36,"o":36,"d":29,"g":29,"m":29,"n":29,"p":29,"r":29,"u":29,"x":29,"z":29,"q":36,":":14,";":14,"&":14}},"U":{"d":"126,-36v28,0,45,-2,45,-28r0,-170r56,0r0,170v0,45,-33,68,-101,68v-67,0,-102,-23,-102,-68r0,-170r57,0r0,170v1,26,16,28,45,28","w":251,"k":{",":7,".":7,"A":5}},"V":{"d":"239,-234r-86,234r-69,0r-84,-234r57,0r64,187r63,-187r55,0","w":239,"k":{",":36,".":36,"A":27,"J":33,"a":18,"e":18,"\/":40,"o":29,"r":14,"u":14,":":11,";":11,"&":7}},"W":{"d":"352,-234r-75,234r-56,0r-44,-170r-46,170r-56,0r-72,-234r58,0r46,171r45,-171r52,0r49,171r42,-171r57,0","w":354,"k":{",":36,".":36,"A":14,"a":18,"e":18,"\/":32,"o":18,"r":14,"u":14,"&":4}},"X":{"d":"240,0r-65,0r-53,-83r-54,83r-64,0r86,-119r-83,-115r65,0r50,78r50,-78r65,0r-83,115","w":243,"k":{"O":7,"Q":7,"-":14}},"Y":{"d":"229,-234r-85,140r0,94r-57,0r0,-94r-84,-140r64,0r49,92r49,-92r64,0","w":231,"k":{"G":14,"-":11,",":32,".":32,"A":25,"J":37,"a":29,"e":32,"\/":50,"c":14,"o":32,"q":32,":":14,";":14,"&":7,"@":7}},"Z":{"d":"207,0r-193,0r0,-34r122,-160r-118,0r0,-40r187,0r0,34r-121,160r123,0r0,40","w":220,"k":{"-":11}},"[":{"d":"130,68r-94,0r0,-333r94,0r0,31r-43,0r0,271r43,0r0,31","w":133},"\\":{"d":"152,4r-32,0r-116,-241r31,0","w":155,"k":{"T":50,"V":36,"Y":43,"W":32}},"]":{"d":"98,68r-94,0r0,-31r42,0r0,-271r-42,0r0,-31r94,0r0,333","w":133},"^":{"d":"116,-163r-36,0r-19,-67r-19,67r-35,0r20,-82r68,0","w":122},"_":{"d":"183,58r-157,0r0,-36r157,0r0,36"},"`":{"d":"117,-199r-45,0r-45,-46r57,0","w":144},"a":{"d":"28,-174v61,-3,152,-21,152,54r0,120r-51,0r0,-16v-12,18,-24,20,-57,20v-48,0,-54,-9,-58,-56v-5,-66,55,-54,113,-55v7,-57,-50,-35,-99,-34r0,-33xm93,-29v17,0,34,2,34,-16r0,-33v-28,4,-66,-14,-61,25v3,24,3,24,27,24","w":203,"k":{"w":4}},"b":{"d":"132,-178v47,0,70,12,70,59r0,57v-2,53,-32,66,-91,66v-59,0,-88,-12,-88,-66r0,-190r53,0r0,95v8,-19,26,-21,56,-21xm112,-29v56,7,37,-50,37,-91v0,-26,-7,-21,-37,-25v-55,-7,-36,50,-36,90v0,25,8,23,36,26","w":219},"c":{"d":"18,-114v-2,-73,81,-70,147,-57r0,34v-41,-9,-88,-18,-94,16v3,44,-16,96,40,92v12,0,31,-3,56,-8r0,34v-62,11,-151,19,-149,-54r0,-57","w":173},"d":{"d":"18,-125v-10,-64,103,-68,125,-30r0,-97r53,0r0,252r-51,0r0,-20v-11,19,-25,24,-55,24v-58,0,-72,-5,-72,-61r0,-68xm103,-29v59,8,40,-49,40,-93v0,-22,-12,-19,-37,-23v-57,-8,-31,51,-35,91v-3,24,7,22,32,25","w":218},"e":{"d":"104,-178v51,0,79,13,80,62r0,43r-113,0v-9,61,62,45,108,36r0,34v-60,15,-161,10,-161,-50r0,-63v2,-48,34,-62,86,-62xm103,-145v-33,-3,-33,14,-32,42r63,0v1,-27,1,-46,-31,-42","w":201},"f":{"d":"36,-174v-10,-74,35,-92,107,-79r0,33v-28,-3,-53,-11,-54,17r0,29r48,0r0,32r-48,0r0,142r-53,0r0,-142r-32,0r0,-32r32,0","w":139,"k":{",":22,".":22,"f":8,"t":11}},"g":{"d":"90,-178v31,-1,45,4,55,24r0,-20r51,0r0,183v5,77,-94,73,-165,68r0,-36v48,4,112,21,112,-32r0,-28v-22,39,-125,35,-125,-30r0,-68v1,-51,18,-60,72,-61xm106,-29v56,7,37,-52,37,-93v0,-24,-11,-20,-40,-23v-52,-6,-32,53,-32,91v0,25,7,22,35,25","w":218},"h":{"d":"131,-178v92,0,52,105,60,178r-52,0r0,-122v-1,-22,-4,-23,-28,-23v-27,0,-34,-1,-35,23r0,122r-53,0r0,-252r53,0r0,99v3,-17,22,-25,55,-25","w":214},"i":{"d":"77,-195r-53,0r0,-42r53,0r0,42xm77,0r-53,0r0,-174r53,0r0,174","w":101},"j":{"d":"-14,44v26,2,37,1,37,-30r0,-188r53,0r0,200v1,50,-40,54,-90,52r0,-34xm76,-195r-53,0r0,-42r53,0r0,42","w":98},"k":{"d":"200,0r-59,0r-63,-98r57,-76r60,0r-60,76xm76,0r-53,0r0,-252r53,0r0,252","w":194,"k":{"e":11}},"l":{"d":"77,0r-53,0r0,-252r53,0r0,252","w":101},"m":{"d":"235,-178v42,0,57,11,57,50r0,128r-52,0r0,-121v0,-23,-3,-24,-25,-24v-27,0,-31,0,-31,24r0,121r-53,0r0,-121v1,-23,-2,-24,-24,-24v-26,0,-31,-1,-31,24r0,121r-53,0r0,-174r53,0r0,21v3,-17,20,-25,51,-25v30,1,45,6,54,26v7,-21,23,-26,54,-26","w":315},"n":{"d":"131,-178v92,0,52,105,60,178r-52,0r0,-121v-1,-22,-5,-24,-28,-24v-27,0,-34,0,-35,24r0,121r-53,0r0,-174r52,0r0,21v4,-17,23,-25,56,-25","w":214,"k":{"y":4}},"o":{"d":"107,-178v53,0,89,14,88,67r0,51v1,52,-37,64,-88,64v-52,0,-89,-12,-89,-64r0,-51v0,-52,36,-67,89,-67xm107,-29v54,5,36,-51,36,-91v0,-21,-11,-25,-36,-25v-55,0,-36,51,-36,91v0,22,11,22,36,25","w":213,"k":{"v":5,"x":11}},"p":{"d":"132,-178v46,0,69,11,69,59r0,57v0,53,-22,66,-73,66v-29,0,-47,-1,-52,-22r0,93r-53,0r0,-249r50,0r0,17v9,-19,28,-21,59,-21xm112,-29v56,7,37,-50,37,-91v0,-26,-7,-22,-38,-25v-55,-6,-35,51,-35,90v0,25,8,23,36,26","w":219},"q":{"d":"107,-178v55,-1,89,7,89,66r0,187r-53,0r0,-95v-13,22,-18,24,-53,24v-58,0,-72,-5,-72,-61r0,-61v1,-57,25,-58,89,-60xm103,-29v59,8,40,-48,40,-92v0,-22,-11,-24,-37,-24v-58,0,-31,51,-35,91v-3,24,7,22,32,25","w":218},"r":{"d":"73,-144v3,-23,33,-38,64,-34r0,44v-31,0,-62,-2,-61,29r0,105r-53,0r0,-174r50,0r0,30","w":142,"k":{",":36,".":36,"c":4}},"s":{"d":"68,-131v-4,25,19,21,41,21v53,1,68,18,64,64v-5,66,-90,51,-154,44r0,-35v33,5,57,8,70,8v21,0,36,-3,32,-26v3,-23,-26,-17,-47,-17v-42,0,-65,-19,-58,-64v9,-55,81,-41,149,-39r0,34v-37,-3,-59,-4,-64,-4v-22,2,-30,-2,-33,14","w":189,"k":{"s":11}},"t":{"d":"91,-142v6,47,-25,131,48,111r0,33v-51,6,-100,1,-100,-53r0,-91r-35,0r0,-32r35,0r0,-51r52,0r0,51r48,0r0,32r-48,0","w":146,"k":{"t":11}},"u":{"d":"104,-29v27,0,35,-1,35,-25r0,-120r52,0r0,174r-52,0r0,-21v-4,17,-22,25,-55,25v-41,-1,-60,-12,-61,-50r0,-128r53,0r0,120v0,23,4,25,28,25","w":214},"v":{"d":"184,-174r-64,174r-54,0r-66,-174r56,0r38,120r37,-120r53,0","w":183,"k":{"e":4,"o":4}},"w":{"d":"293,-174r-57,174r-53,0r-35,-118r-34,118r-53,0r-58,-174r54,0r32,126r34,-126r52,0r36,126r31,-126r51,0","w":295,"k":{"e":4,"d":4}},"x":{"d":"201,0r-61,0r-38,-55r-38,55r-60,0r68,-89r-65,-85r61,0r34,50r35,-50r61,0r-66,85","w":204,"k":{"c":7}},"y":{"d":"189,-174r-95,249r-53,0r31,-76r-69,-173r57,0r39,123r36,-123r54,0","w":192,"k":{",":22,".":22}},"z":{"d":"171,0r-157,0r0,-28r88,-112r-84,0r0,-34r151,0r0,28r-88,112r90,0r0,34","w":184},"{":{"d":"59,-108v69,16,-23,157,72,145r0,31v-57,4,-99,-4,-95,-62v-8,-39,24,-108,-33,-97r0,-33v50,10,33,-43,33,-79v0,-57,37,-67,95,-62r0,31v-24,-2,-44,2,-44,24v0,43,10,96,-28,102","w":138},"|":{"d":"58,4r-21,0r0,-241r21,0r0,241","w":95},"}":{"d":"102,-203v5,36,-19,89,33,79r0,33v-56,-11,-25,59,-33,97v4,57,-37,66,-95,62r0,-31v23,2,44,-1,44,-23v0,-48,-12,-111,28,-122v-37,-8,-28,-59,-28,-102v0,-22,-20,-27,-44,-24r0,-31v57,-4,99,5,95,62","w":138},"~":{"d":"184,-98v-39,50,-128,-42,-160,17r0,-36v41,-52,127,43,160,-18r0,37"},"\u00a0":{"w":82}}});
;

