/*  Easy rotate */


/*
 *	jquery.easyRotate 1.0 - 3-11-2010
 * author: Jordan Andree (jordan@noblegiant.com)
 * http://noblegiant.com
 *
 *	Written to ease the implementation of element rotation for cross-browser support
 *	Feel free to do whatever you want with this file
 *
 */
(function ($) {
	
	// base function
	$.fn.extend({
		easyRotate: function(options) {
		
			// default config 
			var defaults = {
				degrees: 0  
			};
			
			// extend the options
			var options = $.extend(defaults, options);
			
			// return function
			return this.each(function() {
					
				// the object 
				var obj = this;
				
				// the degrees param
				var deg = options.degrees;
								
				// calculations to get our matrix
				var deg2radians = Math.PI * 2 / 360;
				var rad = deg * deg2radians;
				var costheta = Math.cos(rad);
				var sintheta = Math.sin(rad);
			 
				// vars for cosin and sin
				var a = parseFloat(costheta).toFixed(8);
				var c = parseFloat(-sintheta).toFixed(8);
				var b = parseFloat(sintheta).toFixed(8);
				var d = parseFloat(costheta).toFixed(8);
				
				// the matrix string
				var matrix = "matrix(" + a + ", " + b + ", " + c + ", " + d + ", 0, 0);";
				
				// if IE filters are present
				if (obj.filters) {

					obj.style.filter = "progid:DXImageTransform.Microsoft.Matrix(sizingMethod='auto expand');";
					obj.filters.item(0).M11 = costheta;
					obj.filters.item(0).M12 = -sintheta;
					obj.filters.item(0).M21 = sintheta;
					obj.filters.item(0).M22 = costheta;
					
				// else for Safari, Firefox, etc
				} else {
					obj.setAttribute("style",   "position:absolute; -moz-transform:  " + matrix + 
														"; -webkit-transform:  " + matrix + 
														"; -o-transform: " + matrix + "");
					// obj.setAttribute("style",   "-moz-transform:  " + matrix + 
					// 									"; -webkit-transform:  " + matrix + 
					// 									"; -o-transform: " + matrix + "");
														
				}
				

				
			
			});	
		}
	});
})(jQuery);


$(function(){
	$('#the_hours').easyRotate({degrees: 2});
});


/*

	JQuery Curvy Corners by Mike Jolley
	http://blue-anvil.com
	http://code.google.com/p/jquerycurvycorners/
	------------ 
	Version 1.9	
	                                                        
	Origionaly by: Cameron Cooke and Tim Hutchison.
	Website: http://www.curvycorners.net
	
	This program is free software: you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation, either version 3 of the License, or
	(at your option) any later version.
	
	This program is distributed in the hope that it will be useful,
	but WITHOUT ANY WARRANTY; without even the implied warranty of
	MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
	GNU General Public License for more details.
	
	You should have received a copy of the GNU General Public License
	along with this program.  If not, see <http://www.gnu.org/licenses/>.

*/
(function($){$.fn.corner=function(options){function BlendColour(Col1,Col2,Col1Fraction){var red1=parseInt(Col1.substr(1,2),16);var green1=parseInt(Col1.substr(3,2),16);var blue1=parseInt(Col1.substr(5,2),16);var red2=parseInt(Col2.substr(1,2),16);var green2=parseInt(Col2.substr(3,2),16);var blue2=parseInt(Col2.substr(5,2),16);if(Col1Fraction>1||Col1Fraction<0)Col1Fraction=1;var endRed=Math.round((red1*Col1Fraction)+(red2*(1-Col1Fraction)));if(endRed>255)endRed=255;if(endRed<0)endRed=0;var endGreen=Math.round((green1*Col1Fraction)+(green2*(1-Col1Fraction)));if(endGreen>255)endGreen=255;if(endGreen<0)endGreen=0;var endBlue=Math.round((blue1*Col1Fraction)+(blue2*(1-Col1Fraction)));if(endBlue>255)endBlue=255;if(endBlue<0)endBlue=0;return"#"+IntToHex(endRed)+IntToHex(endGreen)+IntToHex(endBlue);}function IntToHex(strNum){base=strNum/16;rem=strNum%16;base=base-(rem/16);baseS=MakeHex(base);remS=MakeHex(rem);return baseS+''+remS;}function MakeHex(x){if((x>=0)&&(x<=9)){return x;}else{switch(x){case 10:return"A";case 11:return"B";case 12:return"C";case 13:return"D";case 14:return"E";case 15:return"F";};return"F";};}function pixelFraction(x,y,r){var pixelfraction=0;var xvalues=new Array(1);var yvalues=new Array(1);var point=0;var whatsides="";var intersect=Math.sqrt((Math.pow(r,2)-Math.pow(x,2)));if((intersect>=y)&&(intersect<(y+1))){whatsides="Left";xvalues[point]=0;yvalues[point]=intersect-y;point=point+1;};var intersect=Math.sqrt((Math.pow(r,2)-Math.pow(y+1,2)));if((intersect>=x)&&(intersect<(x+1))){whatsides=whatsides+"Top";xvalues[point]=intersect-x;yvalues[point]=1;point=point+1;};var intersect=Math.sqrt((Math.pow(r,2)-Math.pow(x+1,2)));if((intersect>=y)&&(intersect<(y+1))){whatsides=whatsides+"Right";xvalues[point]=1;yvalues[point]=intersect-y;point=point+1;};var intersect=Math.sqrt((Math.pow(r,2)-Math.pow(y,2)));if((intersect>=x)&&(intersect<(x+1))){whatsides=whatsides+"Bottom";xvalues[point]=intersect-x;yvalues[point]=0;};switch(whatsides){case"LeftRight":pixelfraction=Math.min(yvalues[0],yvalues[1])+((Math.max(yvalues[0],yvalues[1])-Math.min(yvalues[0],yvalues[1]))/2);break;case"TopRight":pixelfraction=1-(((1-xvalues[0])*(1-yvalues[1]))/2);break;case"TopBottom":pixelfraction=Math.min(xvalues[0],xvalues[1])+((Math.max(xvalues[0],xvalues[1])-Math.min(xvalues[0],xvalues[1]))/2);break;case"LeftBottom":pixelfraction=(yvalues[0]*xvalues[1])/2;break;default:pixelfraction=1;};return pixelfraction;}function rgb2Hex(rgbColour){try{var rgbArray=rgb2Array(rgbColour);var red=parseInt(rgbArray[0]);var green=parseInt(rgbArray[1]);var blue=parseInt(rgbArray[2]);var hexColour="#"+IntToHex(red)+IntToHex(green)+IntToHex(blue);}catch(e){alert("There was an error converting the RGB value to Hexadecimal in function rgb2Hex");};return hexColour;}function rgb2Array(rgbColour){var rgbValues=rgbColour.substring(4,rgbColour.indexOf(")"));var rgbArray=rgbValues.split(", ");return rgbArray;}function format_colour(colour){var returnColour="transparent";if(colour!=""&&colour!="transparent"){if(colour.substr(0,3)=="rgb"&&colour.substr(0,4)!="rgba"){returnColour=rgb2Hex(colour);}else if(colour.length==4){returnColour="#"+colour.substring(1,2)+colour.substring(1,2)+colour.substring(2,3)+colour.substring(2,3)+colour.substring(3,4)+colour.substring(3,4);}else
{returnColour=colour;};};return returnColour;};function strip_px(value){return parseInt(((value!="auto"&&value.indexOf("%")==-1&&value!=""&&value.indexOf("px")!==-1)?value.slice(0,value.indexOf("px")):0))}function drawPixel(box,intx,inty,colour,transAmount,height,newCorner,image,bgImage,cornerRadius,isBorder,borderWidth,boxWidth,settings){var $$=$(box);var pixel=document.createElement("div");$(pixel).css({height:height,width:"1px",position:"absolute","font-size":"1px",overflow:"hidden"});var topMaxRadius=Math.max(settings.tl?settings.tl.radius:0,settings.tr?settings.tr.radius:0);if(image==-1&&bgImage!=""){if(topMaxRadius>0)$(pixel).css("background-position","-"+((boxWidth-cornerRadius-borderWidth)+intx)+"px -"+(($$.height()+topMaxRadius-borderWidth)-inty)+"px");else
$(pixel).css("background-position","-"+((boxWidth-cornerRadius-borderWidth)+intx)+"px -"+(($$.height())-inty)+"px");$(pixel).css({"background-image":bgImage,"background-repeat":$$.css("background-repeat"),"background-color":colour});}else
{if(!isBorder)$(pixel).css("background-color",colour).addClass('hasBackgroundColor');else $(pixel).css("background-color",colour);};if(transAmount!=100)setOpacity(pixel,transAmount);$(pixel).css({top:inty+"px",left:intx+"px"});return pixel;};function setOpacity(obj,opacity){opacity=(opacity==100)?99.999:opacity;if($.browser.safari&&obj.tagName!="IFRAME"){var rgbArray=rgb2Array(obj.style.backgroundColor);var red=parseInt(rgbArray[0]);var green=parseInt(rgbArray[1]);var blue=parseInt(rgbArray[2]);obj.style.backgroundColor="rgba("+red+", "+green+", "+blue+", "+opacity/100+")";}else if(typeof(obj.style.opacity)!="undefined"){obj.style.opacity=opacity/100;}else if(typeof(obj.style.MozOpacity)!="undefined"){obj.style.MozOpacity=opacity/100;}else if(typeof(obj.style.filter)!="undefined"){obj.style.filter="alpha(opacity:"+opacity+")";}else if(typeof(obj.style.KHTMLOpacity)!="undefined"){obj.style.KHTMLOpacity=opacity/100;}}function applyCorners(box,settings){var $$=$(box);var thebgImage=$$.css("backgroundImage");var topContainer=null;var bottomContainer=null;var masterCorners=new Array();var contentDIV=null;var boxHeight=strip_px($$.css("height"))?strip_px($$.css("height")):box.scrollHeight;var boxWidth=strip_px($$.css("width"))?strip_px($$.css("width")):box.scrollWidth;var borderWidth=strip_px($$.css("borderTopWidth"))?strip_px($$.css("borderTopWidth")):0;var boxPaddingTop=strip_px($$.css("paddingTop"));var boxPaddingBottom=strip_px($$.css("paddingBottom"));var boxPaddingLeft=strip_px($$.css("paddingLeft"));var boxPaddingRight=strip_px($$.css("paddingRight"));var boxColour=format_colour($$.css("backgroundColor"));var bgImage=(thebgImage!="none"&&thebgImage!="initial")?thebgImage:"";var borderColour=format_colour($$.css("borderTopColor"));var borderString=borderWidth+"px"+" solid "+borderColour;var topMaxRadius=Math.max(settings.tl?settings.tl.radius:0,settings.tr?settings.tr.radius:0);var botMaxRadius=Math.max(settings.bl?settings.bl.radius:0,settings.br?settings.br.radius:0);$$.addClass('hasCorners').css({"padding":"0","borderColor":box.style.borderColour,'overflow':'visible'});if(box.style.position!="absolute")$$.css("position","relative");if(($.browser.msie)){if($.browser.version==6&&box.style.width=="auto"&&box.style.height=="auto")$$.css("width","100%");$$.css("zoom","1");$("*",$$).css("zoom","normal");}for(var t=0;t<2;t++){switch(t){case 0:if(settings.tl||settings.tr){var newMainContainer=document.createElement("div");topContainer=box.appendChild(newMainContainer);$(topContainer).css({width:"100%","font-size":"1px",overflow:"hidden",position:"absolute","padding-left":borderWidth,"padding-right":borderWidth,height:topMaxRadius+"px",top:0-topMaxRadius+"px",left:0-borderWidth+"px"}).addClass('topContainer');};break;case 1:if(settings.bl||settings.br){var newMainContainer=document.createElement("div");bottomContainer=box.appendChild(newMainContainer);$(bottomContainer).css({width:"100%","font-size":"1px",overflow:"hidden",position:"absolute","padding-left":borderWidth,"padding-right":borderWidth,height:botMaxRadius,bottom:0-botMaxRadius+"px",left:0-borderWidth+"px"}).addClass('bottomContainer');};break;};};if(settings.autoPad==true){var contentContainer=document.createElement("div");var contentContainer2=document.createElement("div");var clearDiv=document.createElement("div");$(contentContainer2).css({margin:"0","padding-bottom":boxPaddingBottom,"padding-top":boxPaddingTop,"padding-left":boxPaddingLeft,"padding-right":boxPaddingRight,'overflow':'visible'}).addClass('hasBackgroundColor content_container');$(contentContainer).css({position:"relative",'float':"left",width:"100%","margin-top":"-"+Math.abs(topMaxRadius-borderWidth)+"px","margin-bottom":"-"+Math.abs(botMaxRadius-borderWidth)+"px"}).addClass="autoPadDiv";$(clearDiv).css("clear","both");contentContainer2.appendChild(contentContainer);contentContainer2.appendChild(clearDiv);$$.wrapInner(contentContainer2);};if(topContainer)$$.css("border-top",0);if(bottomContainer)$$.css("border-bottom",0);var corners=["tr","tl","br","bl"];for(var i in corners){if(i>-1<4){var cc=corners[i];if(!settings[cc]){if(((cc=="tr"||cc=="tl")&&topContainer!=null)||((cc=="br"||cc=="bl")&&bottomContainer!=null)){var newCorner=document.createElement("div");$(newCorner).css({position:"relative","font-size":"1px",overflow:"hidden"});if(bgImage=="")$(newCorner).css("background-color",boxColour);else
$(newCorner).css("background-image",bgImage).css("background-color",boxColour);;switch(cc){case"tl":$(newCorner).css({height:topMaxRadius-borderWidth,"margin-right":settings.tr.radius-(borderWidth*2),"border-left":borderString,"border-top":borderString,left:-borderWidth+"px","background-repeat":$$.css("background-repeat"),"background-position":borderWidth+"px 0px"});break;case"tr":$(newCorner).css({height:topMaxRadius-borderWidth,"margin-left":settings.tl.radius-(borderWidth*2),"border-right":borderString,"border-top":borderString,left:borderWidth+"px","background-repeat":$$.css("background-repeat"),"background-position":"-"+(topMaxRadius+borderWidth)+"px 0px"});break;case"bl":if(topMaxRadius>0)$(newCorner).css({height:botMaxRadius-borderWidth,"margin-right":settings.br.radius-(borderWidth*2),"border-left":borderString,"border-bottom":borderString,left:-borderWidth+"px","background-repeat":$$.css("background-repeat"),"background-position":"0px -"+($$.height()+topMaxRadius-borderWidth+1)+"px"});else
$(newCorner).css({height:botMaxRadius-borderWidth,"margin-right":settings.br.radius-(borderWidth*2),"border-left":borderString,"border-bottom":borderString,left:-borderWidth+"px","background-repeat":$$.css("background-repeat"),"background-position":"0px -"+($$.height())+"px"});break;case"br":if(topMaxRadius>0)$(newCorner).css({height:botMaxRadius-borderWidth,"margin-left":settings.bl.radius-(borderWidth*2),"border-right":borderString,"border-bottom":borderString,left:borderWidth+"px","background-repeat":$$.css("background-repeat"),"background-position":"-"+settings.bl.radius+borderWidth+"px -"+($$.height()+topMaxRadius-borderWidth+1)+"px"});else
$(newCorner).css({height:botMaxRadius-borderWidth,"margin-left":settings.bl.radius-(borderWidth*2),"border-right":borderString,"border-bottom":borderString,left:borderWidth+"px","background-repeat":$$.css("background-repeat"),"background-position":"-"+settings.bl.radius+borderWidth+"px -"+($$.height())+"px"});break;};};}else{if(masterCorners[settings[cc].radius]){var newCorner=masterCorners[settings[cc].radius].cloneNode(true);}else{var newCorner=document.createElement("DIV");$(newCorner).css({height:settings[cc].radius,width:settings[cc].radius,position:"absolute","font-size":"1px",overflow:"hidden"});var borderRadius=parseInt(settings[cc].radius-borderWidth);for(var intx=0,j=settings[cc].radius;intx<j;intx++){if((intx+1)>=borderRadius)var y1=-1;else
var y1=(Math.floor(Math.sqrt(Math.pow(borderRadius,2)-Math.pow((intx+1),2)))-1);if(borderRadius!=j){if((intx)>=borderRadius)var y2=-1;else
var y2=Math.ceil(Math.sqrt(Math.pow(borderRadius,2)-Math.pow(intx,2)));if((intx+1)>=j)var y3=-1;else
var y3=(Math.floor(Math.sqrt(Math.pow(j,2)-Math.pow((intx+1),2)))-1);};if((intx)>=j)var y4=-1;else
var y4=Math.ceil(Math.sqrt(Math.pow(j,2)-Math.pow(intx,2)));if(y1>-1)newCorner.appendChild(drawPixel(box,intx,0,boxColour,100,(y1+1),newCorner,-1,bgImage,settings[cc].radius,0,borderWidth,boxWidth,settings));if(borderRadius!=j){for(var inty=(y1+1);inty<y2;inty++){if(settings.antiAlias){if(bgImage!=""){var borderFract=(pixelFraction(intx,inty,borderRadius)*100);if(borderFract<30){newCorner.appendChild(drawPixel(box,intx,inty,borderColour,100,1,newCorner,0,bgImage,settings[cc].radius,1,borderWidth,boxWidth,settings));}else{newCorner.appendChild(drawPixel(box,intx,inty,borderColour,100,1,newCorner,-1,bgImage,settings[cc].radius,1,borderWidth,boxWidth,settings));};}else{var pixelcolour=BlendColour(boxColour,borderColour,pixelFraction(intx,inty,borderRadius));newCorner.appendChild(drawPixel(box,intx,inty,pixelcolour,100,1,newCorner,0,bgImage,settings[cc].radius,cc,1,borderWidth,boxWidth,settings));};};};if(settings.antiAlias){if(y3>=y2){if(y2==-1)y2=0;newCorner.appendChild(drawPixel(box,intx,y2,borderColour,100,(y3-y2+1),newCorner,0,bgImage,0,1,borderWidth,boxWidth,settings));}}else{if(y3>=y1){newCorner.appendChild(drawPixel(box,intx,(y1+1),borderColour,100,(y3-y1),newCorner,0,bgImage,0,1,borderWidth,boxWidth,settings));}};var outsideColour=borderColour;}else{var outsideColour=boxColour;var y3=y1;};if(settings.antiAlias){for(var inty=(y3+1);inty<y4;inty++){newCorner.appendChild(drawPixel(box,intx,inty,outsideColour,(pixelFraction(intx,inty,j)*100),1,newCorner,((borderWidth>0)?0:-1),bgImage,settings[cc].radius,1,borderWidth,boxWidth,settings));};};};masterCorners[settings[cc].radius]=newCorner.cloneNode(true);};if(cc!="br"){for(var t=0,k=newCorner.childNodes.length;t<k;t++){var pixelBar=newCorner.childNodes[t];var pixelBarTop=strip_px($(pixelBar).css("top"));var pixelBarLeft=strip_px($(pixelBar).css("left"));var pixelBarHeight=strip_px($(pixelBar).css("height"));if(cc=="tl"||cc=="bl"){$(pixelBar).css("left",settings[cc].radius-pixelBarLeft-1+"px");};if(cc=="tr"||cc=="tl"){$(pixelBar).css("top",settings[cc].radius-pixelBarHeight-pixelBarTop+"px");};switch(cc){case"tr":$(pixelBar).css("background-position","-"+Math.abs((boxWidth-settings[cc].radius+borderWidth)+pixelBarLeft)+"px -"+Math.abs(settings[cc].radius-pixelBarHeight-pixelBarTop-borderWidth)+"px");break;case"tl":$(pixelBar).css("background-position","-"+Math.abs((settings[cc].radius-pixelBarLeft-1)-borderWidth)+"px -"+Math.abs(settings[cc].radius-pixelBarHeight-pixelBarTop-borderWidth)+"px");break;case"bl":if(topMaxRadius>0)$(pixelBar).css("background-position","-"+Math.abs((settings[cc].radius-pixelBarLeft-1)-borderWidth)+"px -"+Math.abs(($$.height()+topMaxRadius-borderWidth+1))+"px");else
$(pixelBar).css("background-position","-"+Math.abs((settings[cc].radius-pixelBarLeft-1)-borderWidth)+"px -"+Math.abs(($$.height()))+"px");break;};};};};if(newCorner){switch(cc){case"tl":if($(newCorner).css("position")=="absolute")$(newCorner).css("top","0");if($(newCorner).css("position")=="absolute")$(newCorner).css("left","0");if(topContainer)topContainer.appendChild(newCorner);break;case"tr":if($(newCorner).css("position")=="absolute")$(newCorner).css("top","0");if($(newCorner).css("position")=="absolute")$(newCorner).css("right","0");if(topContainer)topContainer.appendChild(newCorner);break;case"bl":if($(newCorner).css("position")=="absolute")$(newCorner).css("bottom","0");if(newCorner.style.position=="absolute")$(newCorner).css("left","0");if(bottomContainer)bottomContainer.appendChild(newCorner);break;case"br":if($(newCorner).css("position")=="absolute")$(newCorner).css("bottom","0");if($(newCorner).css("position")=="absolute")$(newCorner).css("right","0");if(bottomContainer)bottomContainer.appendChild(newCorner);break;};};};};var radiusDiff=new Array();radiusDiff["t"]=Math.abs(settings.tl.radius-settings.tr.radius);radiusDiff["b"]=Math.abs(settings.bl.radius-settings.br.radius);for(z in radiusDiff){if(z=="t"||z=="b"){if(radiusDiff[z]){var smallerCornerType=((settings[z+"l"].radius<settings[z+"r"].radius)?z+"l":z+"r");var newFiller=document.createElement("div");$(newFiller).css({height:radiusDiff[z],width:settings[smallerCornerType].radius+"px",position:"absolute","font-size":"1px",overflow:"hidden","background-color":boxColour,"background-image":bgImage});switch(smallerCornerType){case"tl":$(newFiller).css({"bottom":"0","left":"0","border-left":borderString,"background-position":"0px -"+(settings[smallerCornerType].radius-borderWidth)});topContainer.appendChild(newFiller);break;case"tr":$(newFiller).css({"bottom":"0","right":"0","border-right":borderString,"background-position":"0px -"+(settings[smallerCornerType].radius-borderWidth)+"px"});topContainer.appendChild(newFiller);break;case"bl":$(newFiller).css({"top":"0","left":"0","border-left":borderString,"background-position":"0px -"+($$.height()+settings[smallerCornerType].radius-borderWidth)});bottomContainer.appendChild(newFiller);break;case"br":$(newFiller).css({"top":"0","right":"0","border-right":borderString,"background-position":"0px -"+($$.height()+settings[smallerCornerType].radius-borderWidth)});bottomContainer.appendChild(newFiller);break;}};var newFillerBar=document.createElement("div");$(newFillerBar).css({position:"relative","font-size":"1px",overflow:"hidden","background-color":boxColour,"background-image":bgImage,"background-repeat":$$.css("background-repeat")});switch(z){case"t":if(topContainer){if(settings.tl.radius&&settings.tr.radius){$(newFillerBar).css({height:topMaxRadius-borderWidth+"px","margin-left":settings.tl.radius-borderWidth+"px","margin-right":settings.tr.radius-borderWidth+"px","border-top":borderString}).addClass('hasBackgroundColor');if(bgImage!="")$(newFillerBar).css("background-position","-"+(topMaxRadius+borderWidth)+"px 0px");topContainer.appendChild(newFillerBar);};$$.css("background-position","0px -"+(topMaxRadius-borderWidth+1)+"px");};break;case"b":if(bottomContainer){if(settings.bl.radius&&settings.br.radius){$(newFillerBar).css({height:botMaxRadius-borderWidth+"px","margin-left":settings.bl.radius-borderWidth+"px","margin-right":settings.br.radius-borderWidth+"px","border-bottom":borderString});if(bgImage!=""&&topMaxRadius>0)$(newFillerBar).css("background-position","-"+(settings.bl.radius-borderWidth)+"px -"+($$.height()+topMaxRadius-borderWidth+1)+"px");else
$(newFillerBar).css("background-position","-"+(settings.bl.radius-borderWidth)+"px -"+($$.height())+"px").addClass('hasBackgroundColor');bottomContainer.appendChild(newFillerBar);};};break;};};};$$.prepend(topContainer);$$.prepend(bottomContainer);}var settings={tl:{radius:8},tr:{radius:8},bl:{radius:8},br:{radius:8},antiAlias:true,autoPad:true,validTags:["div"]};if(options&&typeof(options)!='string')$.extend(settings,options);return this.each(function(){if(!$(this).is('.hasCorners')){applyCorners(this,settings);}});};})(jQuery);





/* ........................................................... */

/* Round the corners */

$(function(){
  $('.box').corner({
    tl: { radius: 10 },
    tr: { radius: 10 },
    bl: { radius: 10 },
    br: { radius: 10 },
    antiAlias: true,
    autoPad: true,
    validTags: ["div"] });
});


/* ........................................................... */


/* Clear search field on focus */


function init() {
 var inputs = document.getElementsByTagName('input');
 for(var i=0; i < inputs.length; i++) {
  inputs[i].setAttribute('rel',inputs[i].defaultValue);
  inputs[i].onfocus = function() {
   if (this.value == this.getAttribute('rel') && this.getAttribute('type') != 'submit' && this.getAttribute('type') != 'reset') {
    this.value = '';
   } else {
    return false;
   }
  }
  inputs[i].onblur = function() {
   if(this.value=='' && this.getAttribute('type') != 'submit' && this.getAttribute('type') != 'reset') {
    this.value = this.getAttribute('rel');
   } else {
    return false;
   }
  }
  inputs[i].ondblclick = function() {
   this.value = this.getAttribute('rel')
  }
 }
}
 
if(document.childNodes) {
 window.onload = init;
}




/* ........................................................... */

/* Cufon font replacement */


/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());


/* ........................................................... */

/* Load Scala and ScalaSans fonts */


/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990 Martin Majoor. Published by FontShop International for the
 * FontFont library. Scala is a trademark of FSI, Fonts and Software GmbH.
 * http://www.fontfont.de
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"471,-226v0,132,-98,239,-219,239v-121,0,-219,-107,-219,-239v0,-132,98,-239,219,-239v121,0,219,107,219,239xm386,-226v0,-111,-59,-197,-134,-197v-75,0,-133,86,-133,197v0,110,58,197,133,197v75,0,134,-86,134,-197","w":505},{"d":"228,-529r-54,0r-158,-161r93,0xm260,0r-227,0r0,-37r76,0r0,-360r-87,0r0,-27v55,-12,100,-34,162,-39r0,426r76,0r0,37","w":282},{"d":"333,-355r-308,0r0,-34r118,-88v66,-49,83,-72,83,-109v0,-32,-22,-52,-57,-52v-34,0,-58,13,-99,56r-33,-30v57,-57,90,-75,142,-75v68,0,119,39,119,96v0,78,-109,135,-165,177r153,0r0,-64r47,-1r0,124","w":370},{"d":"233,-529r-53,0r-159,-161r93,0","w":258},{"d":"154,256r-58,0r0,-1000r58,0r0,1000"},{"d":"402,-588v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm205,-588v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm471,-226v0,132,-98,239,-219,239v-121,0,-219,-107,-219,-239v0,-132,98,-239,219,-239v121,0,219,107,219,239xm386,-226v0,-111,-59,-197,-134,-197v-75,0,-133,86,-133,197v0,110,58,197,133,197v75,0,134,-86,134,-197","w":505},{"d":"706,-416r-42,0r-162,429r-20,0r-127,-311r-120,311r-20,0r-173,-429r-42,0r0,-37r193,0r0,37r-69,0r117,295r90,-234r-25,-61r-57,0r0,-37r209,0r0,37r-70,0r120,295r112,-295r-67,0r0,-37r153,0r0,37","w":706},{"d":"299,-42v-53,42,-73,51,-110,51v-58,0,-93,-36,-93,-97r0,-309r-87,0r0,-27r87,-22r0,-138r72,0r0,141r124,0r0,46r-124,0r0,300v0,38,13,52,46,52v21,0,34,-4,68,-24","w":299},{"d":"374,-690r-139,161r-53,0r99,-161r93,0xm34,189v98,-55,124,-99,170,-208r-162,-397r-42,0r0,-37r194,0r0,37r-71,0r121,295r112,-295r-67,0r0,-37r154,0r0,37r-42,0r-169,439v-33,86,-81,168,-133,233","w":443},{"d":"549,-344v0,129,-126,224,-275,193r0,-35v103,18,184,-62,184,-158v0,-80,-53,-144,-119,-144r-109,0r0,451r84,0r0,37r-247,0r0,-37r75,0r0,-586r-75,0r0,-37r241,0r0,37r-78,0r0,89r123,0v116,0,196,78,196,190","w":600},{"d":"512,-249r-209,0r0,169r-56,0r0,-169r-209,0r0,-56r209,0r0,-169r56,0r0,169r209,0r0,56xm512,0r-474,0r0,-57r474,0r0,57","w":550},{"d":"1000,-208r-1000,0r0,-57r1000,0r0,57","w":1000},{"d":"415,-833r-112,125r-44,0r-107,-125r43,0r86,58r85,-58r49,0xm487,-171v0,104,-86,184,-199,184v-63,0,-104,-13,-154,-45r0,41r-47,0r0,-180r47,0r0,79v61,41,88,51,132,51v80,0,134,-42,134,-105v0,-57,-39,-99,-147,-155v-126,-66,-169,-116,-169,-198v0,-99,84,-173,197,-173v50,0,87,9,119,28r0,-36r46,0r0,171r-46,0r0,-71v-51,-34,-76,-44,-116,-44v-68,0,-112,41,-112,103v0,51,29,80,154,152v125,72,161,116,161,198","w":562},{"d":"341,-572v0,27,-23,50,-51,50v-27,0,-50,-23,-50,-50v0,-28,23,-51,50,-51v28,0,51,23,51,51xm166,-572v0,27,-23,50,-51,50v-27,0,-50,-23,-50,-50v0,-28,23,-51,50,-51v28,0,51,23,51,51","w":406},{"d":"512,-208r-209,0r0,208r-56,0r0,-208r-209,0r0,-57r209,0r0,-209r56,0r0,209r209,0r0,57","w":550},{"d":"692,-48v0,33,-26,59,-59,59v-32,0,-58,-26,-58,-59v0,-32,26,-58,58,-58v33,0,59,26,59,58xm442,-48v0,33,-26,59,-58,59v-33,0,-59,-26,-59,-59v0,-32,26,-58,59,-58v32,0,58,26,58,58xm184,-48v0,33,-27,59,-59,59v-32,0,-59,-26,-59,-59v0,-32,27,-58,59,-58v32,0,59,26,59,58","w":750},{"d":"542,-184v0,175,-119,358,-271,415v-54,20,-85,24,-176,25r1,-41v130,-5,204,-52,266,-121v58,-65,95,-180,95,-283v0,-141,-66,-247,-155,-247v-81,0,-149,84,-149,183v0,116,86,175,218,163r-10,40v-159,44,-294,-58,-294,-198v0,-123,108,-226,237,-226v137,0,238,124,238,290","w":610},{"d":"444,-720r-63,0r-192,-102r115,0xm693,-330v0,186,-146,343,-320,343v-176,0,-323,-156,-323,-342v0,-188,146,-343,323,-343v174,0,320,156,320,342xm594,-330v0,-168,-93,-290,-220,-290v-131,0,-225,120,-225,290v0,169,94,291,224,291v128,0,221,-123,221,-291","w":743},{"d":"398,-588v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm201,-588v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm430,-256r-315,0v-5,190,141,288,284,177r19,37v-75,43,-110,55,-168,55v-127,0,-217,-98,-217,-236v0,-140,91,-242,215,-242v117,0,191,82,182,209xm348,-296v7,-76,-33,-127,-99,-127v-73,0,-124,49,-133,127r232,0","w":461},{"d":"281,-412r-110,63r0,312r75,0r0,37r-226,0r0,-37r76,0r0,-269r-90,53r-22,-38r112,-64r0,-316r-88,0r0,-27r144,-39r19,0r0,338r88,-51","w":267},{"d":"471,-224r-233,193r0,-42r119,-151r-119,-151r0,-41xm270,-224r-232,193r0,-42r119,-151r-119,-151r0,-41","w":500},{"d":"458,-824r-166,115r-56,0r115,-115r107,0xm522,0r-455,0r0,-37r75,0r0,-586r-75,0r0,-37r399,0r0,-28r46,0r0,159r-45,0r0,-85r-237,0r0,256r189,0r0,-75r46,-1r0,197r-46,1r0,-77r-189,0r0,268r246,0r0,-88r46,0r0,133","w":581},{"d":"296,-240v0,33,-27,59,-59,59v-33,0,-59,-26,-59,-59v0,-32,26,-59,59,-59v32,0,59,27,59,59","w":474},{"d":"653,-623r-50,0r-250,640r-34,0r-252,-640r-59,0r0,-37r248,0r0,37r-94,0r194,491r192,-491r-66,0r0,-37r171,0r0,37","w":661},{"d":"312,-524v-51,11,-103,-48,-138,-48v-27,0,-47,10,-76,38r-24,-17v59,-86,131,-91,206,-44v49,30,92,33,136,-20r25,16v-49,59,-77,75,-129,75xm471,-226v0,132,-98,239,-219,239v-121,0,-219,-107,-219,-239v0,-132,98,-239,219,-239v121,0,219,107,219,239xm386,-226v0,-111,-59,-197,-134,-197v-75,0,-133,86,-133,197v0,110,58,197,133,197v75,0,134,-86,134,-197","w":505},{"d":"373,-690r-158,161r-53,0r119,-161r92,0xm471,-226v0,132,-98,239,-219,239v-121,0,-219,-107,-219,-239v0,-132,98,-239,219,-239v121,0,219,107,219,239xm386,-226v0,-111,-59,-197,-134,-197v-75,0,-133,86,-133,197v0,110,58,197,133,197v75,0,134,-86,134,-197","w":505},{"d":"16,-219v104,-5,176,-53,176,-136v0,-64,-51,-95,-125,-87r0,-34v72,-41,95,-71,95,-114v0,-29,-18,-48,-42,-48v-18,0,-31,8,-67,47r-33,-30v41,-47,75,-66,121,-66v54,0,97,40,97,92v0,42,-19,69,-66,100v56,12,90,58,90,122v0,86,-87,163,-162,185v-22,7,-38,9,-84,13r0,-44","w":302},{"d":"459,-706r-56,0r-166,-115r107,0xm654,-242v7,156,-106,255,-260,255v-145,0,-252,-96,-252,-227r0,-409r-75,0r0,-37r238,0r0,37r-75,0r0,378v0,121,71,200,182,200v114,0,191,-81,191,-201r0,-377r-75,0r0,-37r201,0r0,37r-75,0r0,381","w":780},{"d":"822,-248r-315,0v0,177,145,275,282,169r21,37v-70,44,-102,55,-162,55v-91,0,-155,-38,-189,-111v-43,77,-102,111,-189,111v-133,0,-237,-104,-237,-238v0,-133,107,-240,238,-240v80,0,152,38,191,102v50,-71,106,-102,181,-102v109,0,186,90,179,217xm739,-288v6,-84,-23,-140,-97,-140v-79,0,-124,47,-135,140r232,0xm430,-228v0,-106,-71,-190,-160,-190v-90,0,-158,84,-158,194v0,107,69,188,160,188v91,0,158,-83,158,-192","w":856},{"d":"245,-714r-44,0r-137,-115r96,0xm305,0r-238,0r0,-37r75,0r0,-586r-75,0r0,-37r238,0r0,37r-75,0r0,586r75,0r0,37","w":372},{"d":"406,-716v-57,0,-121,-41,-160,-41v-32,0,-56,9,-89,33r-21,-21v59,-65,161,-75,235,-31v59,20,108,27,159,-17r23,18v-44,43,-84,59,-147,59xm663,0r-228,0r0,-37r80,0r-70,-180r-256,-1r-73,180r83,0r0,38r-191,0r0,-38r52,0r260,-643r36,0r250,643r57,0r0,38xm428,-265r-107,-281r-113,281r220,0","w":672},{"d":"190,-49v0,56,-40,121,-110,181r-24,-31v48,-38,64,-61,64,-91v0,-30,-14,-45,-52,-57v16,-44,32,-57,65,-57v32,0,57,25,57,55"},{},{"d":"286,-547v0,67,-54,121,-122,121v-67,0,-121,-54,-121,-121v0,-67,54,-122,121,-122v68,0,122,55,122,122xm236,-547v0,-40,-32,-72,-72,-72v-39,0,-71,32,-71,72v0,39,32,71,71,71v40,0,72,-32,72,-71","w":333},{"d":"470,-38v-148,111,-350,40,-379,-131r-71,0r0,-30r66,-11v-3,-31,0,-64,5,-92r-71,0r0,-30r83,-11v45,-141,229,-219,359,-111r-54,55v-35,-39,-45,-37,-85,-64v-76,6,-117,50,-142,120r216,-1r0,42r-226,0v-5,30,-4,62,2,92r224,0r0,41r-213,0v27,76,86,129,154,129v32,0,57,-9,112,-39","w":492},{"d":"505,-246v0,150,-99,259,-235,259v-38,0,-53,-5,-89,-24r0,217r91,0r0,37r-242,0r0,-37r76,0r0,-603r-88,0r0,-28v55,-12,101,-33,163,-38r0,69v51,-52,89,-70,146,-70v106,0,178,88,178,218xm419,-225v0,-170,-137,-236,-238,-119r0,230v0,62,21,85,78,85v95,0,160,-79,160,-196","w":538},{"d":"326,-434v0,31,-26,57,-57,57v-32,0,-57,-25,-58,-56v-1,-32,25,-59,58,-59v31,0,57,26,57,58xm108,-49v0,125,84,179,215,203r-35,102v-141,-39,-232,-155,-232,-296v0,-87,46,-142,120,-142r61,0r26,-106r25,0r0,176r-165,0v-13,24,-15,32,-15,63","w":409},{"d":"364,-675r-65,43v-19,-34,-48,-52,-81,-52v-71,0,-113,56,-113,151v0,76,18,160,66,309v63,193,80,260,80,303v0,33,-6,50,-28,84r-16,-6v11,-66,-8,-112,-33,-197v-40,-135,-115,-324,-115,-472v0,-196,184,-303,305,-163xm345,30v0,184,-185,307,-305,163r65,-42v19,33,47,51,81,51v71,0,113,-56,113,-150v0,-76,-18,-161,-66,-309v-63,-195,-81,-261,-81,-304v0,-33,6,-50,29,-84r16,6v-11,67,7,111,33,198v40,133,115,325,115,471","w":396},{"d":"808,0r-457,0r0,-37r75,0r0,-180r-212,0r-96,180r80,0r0,37r-190,0r0,-37r45,0r316,-586r-64,0r0,-37r447,0r0,-23r47,0r0,157r-47,0r0,-84r-239,0r0,255r192,0r0,-76r46,0r0,195r-46,0r0,-74r-192,0r0,264r248,0r0,-86r47,0r0,132xm426,-263r0,-356r-189,356r189,0","w":867},{"d":"525,-109r-62,0r0,-163r-438,0r0,-56r500,0r0,219","w":550},{"d":"469,-701r-44,0r-85,-59r-86,59r-48,0r112,-112r44,0xm663,0r-228,0r0,-37r80,0r-70,-180r-256,-1r-73,180r83,0r0,38r-191,0r0,-38r52,0r260,-643r36,0r250,643r57,0r0,38xm428,-265r-107,-281r-113,281r220,0","w":672},{"d":"341,-529r-53,0r-159,-161r93,0xm560,-28v-55,11,-101,31,-162,36r0,-113v-72,87,-119,118,-181,118v-75,0,-121,-49,-121,-129r0,-281r-87,0r0,-27r144,-39r19,0r0,335v0,61,24,91,73,91v50,11,115,-80,153,-120r0,-240r-76,0r0,-31v51,-11,93,-31,151,-35r0,407r87,0r0,28","w":570},{"d":"499,-824r-146,115r-56,0r95,-115r107,0xm604,-623r-52,0r-192,313r0,273r76,0r0,37r-238,0r0,-37r75,0r0,-267r-207,-319r-58,0r0,-37r247,0r0,37r-91,0r172,262r159,-262r-91,0r0,-37r200,0r0,37","w":612},{"d":"505,-246v0,150,-99,259,-235,259v-38,0,-53,-5,-89,-24r0,217r91,0r0,37r-242,0r0,-37r76,0r0,-877r-88,0r0,-27r144,-39r19,0r0,343v51,-52,89,-70,146,-70v106,0,178,88,178,218xm419,-225v0,-170,-137,-236,-238,-119r0,230v0,62,21,85,78,85v95,0,160,-79,160,-196","w":538},{"d":"422,-588v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm225,-588v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm560,-28v-55,11,-101,31,-162,36r0,-113v-72,87,-119,118,-181,118v-75,0,-121,-49,-121,-129r0,-281r-87,0r0,-27r144,-39r19,0r0,335v0,61,24,91,73,91v50,11,115,-80,153,-120r0,-240r-76,0r0,-31v51,-11,93,-31,151,-35r0,407r87,0r0,28","w":570},{"d":"522,0r-455,0r0,-37r75,0r0,-256r-86,50r-22,-38r108,-62r0,-280r-75,0r0,-37r238,0r0,37r-75,0r0,229r79,-46r22,38r-101,58r0,299r246,0r0,-88r46,0r0,133","w":531},{"d":"424,-723r-43,0r-86,-59r-85,59r-49,0r112,-112r44,0xm522,0r-455,0r0,-37r75,0r0,-586r-75,0r0,-37r399,0r0,-28r46,0r0,159r-45,0r0,-85r-237,0r0,256r189,0r0,-75r46,-1r0,197r-46,1r0,-77r-189,0r0,268r246,0r0,-88r46,0r0,133","w":581},{"d":"513,-739v49,0,105,40,107,69v3,46,-67,64,-81,20v-7,-22,-12,-53,-39,-53v-35,0,-86,71,-108,150r-31,110r102,0r-12,46r-102,0r-119,451v-31,118,-116,202,-203,202v-49,0,-91,-29,-91,-63v0,-42,64,-64,77,-21v6,19,3,41,31,40v46,0,90,-70,123,-194r110,-415r-84,0r13,-46r83,0r36,-132v27,-99,103,-164,188,-164","w":576},{"d":"523,-28v-55,12,-101,33,-163,38r0,-70v-55,55,-90,73,-141,73v-104,0,-186,-101,-186,-229v0,-168,168,-307,327,-224r0,-231r-87,0r0,-27r144,-39r19,0r0,681r87,0r0,28xm250,-52v40,0,76,-30,110,-56r0,-232v0,-62,-20,-83,-79,-83v-97,0,-162,77,-162,192v0,112,49,179,131,179","w":532},{"d":"334,141v12,85,-103,109,-188,72r19,-51v25,19,57,33,76,33v22,0,36,-17,33,-39v-7,-38,-45,-67,-89,-66r57,-79v-132,-3,38,0,38,0r-32,51v47,11,80,41,86,79","w":417},{"d":"360,243r-59,0r-251,-903r58,0","w":409},{"d":"260,0r-227,0r0,-37r76,0r0,-360r-87,0r0,-27v55,-12,100,-34,162,-39r0,426r76,0r0,37","w":282},{"d":"455,-423r-184,404v-45,92,-98,193,-160,275r-69,-56v173,-144,246,-382,348,-594r-315,0r0,92r-50,0r0,-188r50,0r0,29r380,0r0,38","w":489},{"d":"637,-687r-463,733r-71,0r463,-733r71,0xm248,-355r-204,0r0,-39r68,0r0,-245r-68,0r0,-39r204,0r0,39r-69,0r0,245r69,0r0,39xm679,0r-74,0r0,165r-68,0r0,-165r-217,0r0,-22r256,-315r29,0r-1,283r34,0r0,-32r41,0r0,86xm537,-54r0,-158r-128,158r128,0","w":750},{"d":"427,-284v0,174,-73,297,-190,297v-136,0,-194,-96,-194,-221v0,-139,103,-236,230,-192r6,39v-107,-16,-152,71,-152,163v0,74,19,172,104,172v58,0,113,-120,113,-263v0,-87,-16,-182,-62,-252r-135,77r-21,-37r129,-75v-41,-43,-99,-71,-179,-71r-1,-42v96,0,172,33,229,85r97,-56r22,37r-89,51v62,76,93,181,93,288","w":470},{"d":"458,-31r-232,-193r232,-192r0,41r-119,151r119,151r0,42xm257,-31r-232,-193r232,-192r0,41r-118,151r118,151r0,42","w":500},{"d":"313,-758v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm161,-758v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm305,0r-238,0r0,-37r75,0r0,-586r-75,0r0,-37r238,0r0,37r-75,0r0,586r75,0r0,37","w":372},{"d":"273,-524v-49,11,-102,-48,-137,-48v-27,0,-47,10,-76,38r-24,-17v60,-87,131,-91,206,-44v49,30,92,33,136,-20r25,16v-49,59,-77,75,-130,75xm437,-19v-32,9,-67,26,-102,28v-34,2,-52,-27,-49,-69v-42,52,-80,73,-133,73v-69,0,-120,-48,-120,-115v0,-51,33,-93,81,-104r171,-39r0,-113v-2,-66,-73,-89,-132,-52r0,48r-89,26v-32,-77,49,-129,150,-129v88,0,146,44,146,110r0,308r77,0r0,28xm285,-99r0,-106r-171,40v-6,66,7,120,69,119v32,0,58,-14,102,-53","w":457},{"d":"184,-48v0,33,-27,59,-59,59v-32,0,-59,-26,-59,-59v0,-32,27,-58,59,-58v32,0,59,26,59,58"},{"d":"709,-686r-103,118v63,75,92,149,92,239v0,184,-149,342,-323,342v-79,0,-144,-25,-205,-80r-101,116r-29,-25r102,-117v-64,-70,-93,-144,-93,-237v0,-189,145,-342,324,-342v78,0,145,25,205,77r102,-117xm532,-543v-42,-52,-96,-78,-160,-78v-129,0,-224,122,-224,288v0,68,13,122,44,182xm599,-329v0,-67,-12,-117,-44,-180r-339,390v45,55,94,79,158,79v129,0,225,-123,225,-289","w":749},{"d":"265,-690r-158,161r-54,0r119,-161r93,0xm260,0r-227,0r0,-37r76,0r0,-360r-87,0r0,-27v55,-12,100,-34,162,-39r0,426r76,0r0,37","w":282},{"d":"345,-690r-159,161r-53,0r119,-161r93,0xm437,-19v-32,9,-67,26,-102,28v-34,2,-52,-27,-49,-69v-42,52,-80,73,-133,73v-69,0,-120,-48,-120,-115v0,-51,33,-93,81,-104r171,-39r0,-113v-2,-66,-73,-89,-132,-52r0,48r-89,26v-32,-77,49,-129,150,-129v88,0,146,44,146,110r0,308r77,0r0,28xm285,-99r0,-106r-171,40v-6,66,7,120,69,119v32,0,58,-14,102,-53","w":457},{"d":"564,-757v0,27,-23,50,-51,50v-27,0,-50,-23,-50,-50v0,-28,23,-51,50,-51v28,0,51,23,51,51xm336,-757v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm654,-242v7,156,-106,255,-260,255v-145,0,-252,-96,-252,-227r0,-409r-75,0r0,-37r238,0r0,37r-75,0r0,378v0,121,71,200,182,200v114,0,191,-81,191,-201r0,-377r-75,0r0,-37r201,0r0,37r-75,0r0,381","w":780},{"d":"465,0r-419,0r0,-35r165,-128v95,-73,122,-111,122,-171v0,-54,-36,-88,-92,-88v-52,0,-90,21,-142,79r-31,-30v73,-77,117,-101,188,-101v93,0,159,55,159,132v0,56,-35,112,-101,160r-157,115r263,0r0,-96r45,-1r0,164","w":528},{"d":"537,-822r-192,102r-63,0r140,-102r115,0xm693,-330v0,186,-146,343,-320,343v-176,0,-323,-156,-323,-342v0,-188,146,-343,323,-343v174,0,320,156,320,342xm594,-330v0,-168,-93,-290,-220,-290v-131,0,-225,120,-225,290v0,169,94,291,224,291v128,0,221,-123,221,-291","w":743},{"d":"254,-529r-43,0r-69,-88r-69,88r-48,0r95,-165r44,0xm260,0r-227,0r0,-37r76,0r0,-360r-87,0r0,-27v55,-12,100,-34,162,-39r0,426r76,0r0,37","w":282},{"d":"354,256v-116,8,-188,-22,-188,-134r0,-241v-3,-92,-32,-126,-114,-117r0,-28v82,8,114,-24,114,-117r0,-230v-3,-112,72,-142,188,-133r0,33v-76,-7,-112,16,-112,97r0,236v0,89,-22,119,-94,128v72,10,94,39,94,128r0,241v1,81,36,104,112,97r0,40","w":409},{"d":"428,216v19,0,47,-15,47,-39v0,-15,-10,-32,-29,-52r72,-44v63,90,-14,175,-132,175v-64,0,-110,-30,-151,-56v-21,-13,-34,-17,-67,-20v-45,51,-91,76,-141,76v-20,0,-34,-12,-34,-28v0,-35,59,-77,131,-95v32,-52,52,-160,72,-234r-126,0r14,-36r128,-22r115,-412v27,-98,101,-161,190,-161v57,0,106,33,106,71v0,41,-67,62,-80,19v-6,-22,-14,-50,-39,-50v-43,0,-85,56,-109,144r-106,389r191,0r-21,58r-187,0v-27,83,-30,160,-74,232v56,7,69,12,139,50v45,25,72,35,91,35","w":576},{"d":"667,-687r-463,733r-71,0r463,-733r71,0xm709,0r-74,0r0,165r-68,0r0,-165r-217,0r0,-22r256,-315r29,0r-1,283r34,0r0,-32r41,0r0,86xm36,-219v104,-5,176,-53,176,-136v0,-64,-51,-95,-125,-87r0,-34v72,-41,95,-71,95,-114v0,-29,-18,-48,-42,-48v-18,0,-31,8,-67,47r-33,-30v41,-47,75,-66,121,-66v54,0,97,40,97,92v0,42,-19,69,-66,100v56,12,90,58,90,122v0,86,-87,163,-162,185v-22,7,-38,9,-84,13r0,-44xm567,-54r0,-158r-128,158r128,0","w":750},{"d":"457,-204v-4,-91,-59,-171,-170,-167r-48,0r9,-40v158,-43,294,55,295,196v0,125,-108,228,-240,228v-141,0,-236,-118,-236,-295v0,-194,111,-368,275,-430v58,-22,90,-27,173,-27r-1,41v-133,2,-203,49,-266,120v-62,70,-95,182,-95,291v0,144,70,261,158,261v69,1,150,-88,146,-178","w":610},{"d":"181,243r-152,0r0,-45r93,0r0,-812r-93,0r0,-46r152,0r0,903"},{"d":"421,-35v-81,47,-104,51,-192,46r-14,75r-37,0r16,-83v-101,-24,-161,-105,-161,-215v0,-152,100,-257,250,-253r14,-75r37,0r-14,78v36,6,53,13,95,43r-54,59v-20,-28,-25,-34,-50,-57r-71,371v70,20,80,7,160,-29xm276,-428v-91,3,-159,83,-159,187v0,71,31,135,89,178","w":443},{"d":"587,-698r-95,0r0,954r-37,0r0,-955r-78,0r0,955r-38,0r0,-501v-166,17,-283,-96,-283,-243v0,-143,106,-249,247,-249r283,0","w":644},{"d":"335,-427v0,32,-26,58,-58,58v-33,0,-59,-26,-59,-58v0,-33,26,-59,59,-59v32,0,58,26,58,59xm525,-208r-500,0r0,-57r500,0r0,57xm335,-48v0,33,-26,59,-58,59v-33,0,-59,-26,-59,-59v0,-32,26,-58,59,-58v32,0,58,26,58,58","w":550},{"d":"866,0r-386,0v-37,2,-65,12,-104,12v-178,0,-327,-155,-327,-339v0,-211,170,-335,400,-334r362,1r0,-25r46,1r0,157r-46,0r0,-87r-237,0r0,256r190,0r0,-74r45,0r0,196r-44,0r0,-76r-191,0r0,266r246,0r1,-87r45,0r0,133xm487,-127r0,-397v0,-65,-34,-94,-111,-94v-133,0,-227,119,-227,286v0,167,95,294,220,294v86,0,118,-24,118,-89","w":926},{"d":"457,-833r-112,125r-44,0r-107,-125r43,0r86,58r85,-58r49,0xm609,0r-550,0r0,-30r410,-579r-363,0r0,80r-47,0r0,-159r47,0r0,28r483,0r0,31r-408,579r381,0r0,-104r47,0r0,154","w":668},{"d":"347,-529r-43,0r-86,-88r-85,88r-49,0r112,-165r44,0xm437,-19v-32,9,-67,26,-102,28v-34,2,-52,-27,-49,-69v-42,52,-80,73,-133,73v-69,0,-120,-48,-120,-115v0,-51,33,-93,81,-104r171,-39r0,-113v-2,-66,-73,-89,-132,-52r0,48r-89,26v-32,-77,49,-129,150,-129v88,0,146,44,146,110r0,308r77,0r0,28xm285,-99r0,-106r-171,40v-6,66,7,120,69,119v32,0,58,-14,102,-53","w":457},{"d":"906,-337r-193,0r0,-28r63,0r0,-241r-123,269r-122,-264r0,236r59,0r0,28r-151,0r0,-28r58,0r0,-266r-58,0r0,-29r127,0r98,204r95,-204r147,0r0,29r-63,0r0,266r63,0r0,28xm404,-564r-33,0r0,-62r-93,0r0,261r63,0r0,28r-192,0r0,-28r62,0r0,-261r-92,0r0,62r-33,0r0,-110r33,0r0,14r252,0r0,-14r33,0r0,110","w":1000},{"d":"336,-664r-112,165r-44,0r-107,-165r43,0r86,88r85,-88r49,0xm371,-123v0,80,-62,136,-151,136v-56,0,-98,-13,-127,-40r0,36r-40,0r0,-142r46,0v-10,71,45,108,118,108v55,0,96,-29,96,-69v0,-40,-28,-62,-133,-103v-96,-37,-130,-74,-130,-137v0,-78,63,-131,155,-131v44,0,78,11,106,34r6,-36r43,0r-24,144r-43,0v24,-62,-26,-104,-93,-104v-52,0,-86,28,-86,71v0,43,7,48,128,97v98,39,129,72,129,136","w":421},{"d":"33,-171v0,-113,65,-158,155,-227v-59,-74,-78,-114,-78,-172v0,-99,80,-169,192,-169v94,0,162,56,162,135v0,78,-82,133,-134,172r-25,-33v65,-51,82,-79,82,-133v0,-67,-32,-103,-93,-103v-62,0,-106,45,-106,108v0,41,21,93,54,139r200,277v35,-59,44,-78,72,-146r-82,0r0,-37r226,0r0,37r-97,0v-30,80,-42,105,-90,184v46,62,73,82,110,82v33,0,54,-15,91,-66r31,23v-63,95,-85,113,-143,113v-59,0,-96,-23,-145,-88v-64,63,-118,88,-189,88v-111,0,-193,-79,-193,-184xm390,-113r-177,-248v-69,60,-94,106,-94,169v0,82,60,157,125,157v45,0,99,-29,146,-78","w":703},{"d":"78,-660v78,104,144,298,144,458v0,160,-67,354,-144,458r-43,0v60,-117,102,-304,102,-458v0,-154,-42,-340,-102,-458r43,0","w":309},{"d":"254,-588v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm118,-588v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm260,0r-227,0r0,-37r76,0r0,-360r-87,0r0,-27v55,-12,100,-34,162,-39r0,426r76,0r0,37","w":282},{"d":"689,-331v0,185,-144,331,-328,331r-294,0r0,-37r75,0r0,-586r-75,0r0,-37r295,0v180,0,327,148,327,329xm590,-330v0,-154,-106,-279,-238,-279r-122,0r0,559r120,0v137,0,241,-121,240,-280","w":740},{"d":"246,0r-226,0r0,-37r76,0r0,-634r-88,0r0,-27r144,-39r19,0r0,700r75,0r0,37","w":267},{"d":"319,-825r-137,115r-44,0r86,-115r95,0xm305,0r-238,0r0,-37r75,0r0,-586r-75,0r0,-37r238,0r0,37r-75,0r0,586r75,0r0,37","w":372},{"d":"270,-427v-99,-1,-155,92,-155,186v0,112,77,204,170,204v32,0,57,-8,112,-36r20,38v-60,36,-88,46,-140,48r-39,49v45,11,74,41,74,79v-2,83,-114,110,-200,72r27,-51v22,19,52,33,71,33v22,0,39,-17,39,-39v0,-38,-34,-68,-78,-66r69,-78v-128,-8,-208,-96,-208,-230v0,-196,218,-320,377,-201r-54,60v-35,-36,-45,-43,-85,-68","w":430},{"d":"834,0r-238,0r0,-37r75,0r0,-492r-245,539r-246,-550r0,503r76,0r0,37r-202,0r0,-37r76,0r0,-586r-76,0r0,-37r161,0r228,510r235,-510r156,0r0,37r-75,0r0,586r75,0r0,37","w":901},{"d":"50,213v137,-10,227,-92,227,-216v0,-108,-60,-167,-187,-184r0,-274r224,0r0,-41r40,0r0,117r-220,0r0,133v147,20,231,102,231,226v0,145,-136,280,-315,282r0,-43","w":432},{"d":"493,-241v6,205,-193,301,-400,233r0,-663r-87,0r0,-27v55,-12,100,-34,162,-39r0,691v133,59,238,-41,239,-188v0,-109,-49,-177,-129,-177r-73,0r0,-33v167,-68,283,31,288,203","w":526},{"d":"388,-690r-159,161r-53,0r119,-161r93,0xm560,-28v-55,11,-101,31,-162,36r0,-113v-72,87,-119,118,-181,118v-75,0,-121,-49,-121,-129r0,-281r-87,0r0,-27r144,-39r19,0r0,335v0,61,24,91,73,91v50,11,115,-80,153,-120r0,-240r-76,0r0,-31v51,-11,93,-31,151,-35r0,407r87,0r0,28","w":570},{"d":"352,-588v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm175,-588v0,27,-22,50,-50,50v-28,0,-50,-23,-50,-50v0,-28,22,-51,50,-51v28,0,50,23,50,51xm437,-19v-32,9,-67,26,-102,28v-34,2,-52,-27,-49,-69v-42,52,-80,73,-133,73v-69,0,-120,-48,-120,-115v0,-51,33,-93,81,-104r171,-39r0,-113v-2,-66,-73,-89,-132,-52r0,48r-89,26v-32,-77,49,-129,150,-129v88,0,146,44,146,110r0,308r77,0r0,28xm285,-99r0,-106r-171,40v-6,66,7,120,69,119v32,0,58,-14,102,-53","w":457},{"d":"427,-717v-56,0,-122,-41,-160,-41v-32,0,-56,9,-89,33r-21,-21v58,-65,161,-76,234,-31v59,20,109,27,160,-17r23,18v-44,43,-85,59,-147,59xm693,-330v0,186,-146,343,-320,343v-176,0,-323,-156,-323,-342v0,-188,146,-343,323,-343v174,0,320,156,320,342xm594,-330v0,-168,-93,-290,-220,-290v-131,0,-225,120,-225,290v0,169,94,291,224,291v128,0,221,-123,221,-291","w":743},{"d":"487,-171v0,104,-86,184,-199,184v-63,0,-104,-13,-154,-45r0,41r-47,0r0,-180r47,0r0,79v61,41,88,51,132,51v80,0,134,-42,134,-105v0,-57,-39,-99,-147,-155v-126,-66,-169,-116,-169,-198v0,-99,84,-173,197,-173v50,0,87,9,119,28r0,-36r46,0r0,171r-46,0r0,-71v-51,-34,-76,-44,-116,-44v-68,0,-112,41,-112,103v0,51,29,80,154,152v125,72,161,116,161,198","w":562},{},{"d":"129,-319r-58,0r0,-425r58,0r0,425xm129,256r-58,0r0,-435r58,0r0,435","w":200},{"d":"617,-29v-83,31,-137,42,-207,42r-39,47v133,37,77,175,-43,174v-35,0,-53,-9,-88,-16r27,-53v23,21,47,32,73,32v24,0,41,-19,41,-44v0,-36,-21,-53,-81,-65r71,-76v-187,-16,-321,-155,-321,-340v0,-194,151,-344,346,-344v65,0,117,11,173,37r0,-45r47,0r0,170r-47,0r0,-49v-61,-45,-106,-62,-170,-62v-148,0,-250,118,-250,287v-1,229,225,379,420,245r0,-73r48,0r0,133","w":667},{"d":"316,-529r-54,0r-158,-161r93,0xm471,-226v0,132,-98,239,-219,239v-121,0,-219,-107,-219,-239v0,-132,98,-239,219,-239v121,0,219,107,219,239xm386,-226v0,-111,-59,-197,-134,-197v-75,0,-133,86,-133,197v0,110,58,197,133,197v75,0,134,-86,134,-197","w":505},{"d":"370,-571v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm186,-572v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm34,189v98,-55,124,-99,170,-208r-162,-397r-42,0r0,-37r194,0r0,37r-71,0r121,295r112,-295r-67,0r0,-37r154,0r0,37r-42,0r-169,439v-33,86,-81,168,-133,233","w":443},{"d":"525,-273r-500,0r0,-56r500,0r0,56xm525,-134r-500,0r0,-57r500,0r0,57","w":550},{"d":"500,-29r-42,41r-197,-196r-197,197r-42,-42r197,-197r-197,-197r42,-42r197,197r197,-197r42,42r-197,197","w":522},{"d":"197,-641v-48,38,-64,60,-64,91v0,30,13,45,51,57v-16,43,-31,57,-65,57v-31,0,-57,-25,-57,-56v0,-55,40,-121,110,-180"},{"d":"359,-222v-8,110,76,185,163,185v35,0,62,-10,119,-41r22,34v-112,87,-274,74,-345,-33v-68,69,-105,90,-161,90v-76,0,-124,-42,-124,-110v0,-61,31,-96,103,-113r149,-35v0,-85,14,-182,-75,-182v-21,0,-33,3,-57,18r0,48r-88,26v-8,-12,-10,-18,-10,-26v0,-58,75,-104,165,-104v69,0,107,23,123,75v30,-49,82,-75,148,-75v99,0,163,61,178,169xm590,-319v-2,-72,-35,-109,-98,-109v-86,0,-129,53,-132,164xm300,-111v-14,-37,-16,-55,-15,-93r-170,40v-6,66,9,118,69,118v36,0,61,-14,116,-65","w":702},{"d":"186,-409v1,32,-26,58,-58,58v-32,0,-57,-25,-57,-57v0,-32,25,-57,57,-57v31,0,58,25,58,56xm186,-49v0,56,-40,121,-110,181r-25,-31v48,-38,64,-61,64,-91v0,-30,-13,-45,-51,-57v16,-44,31,-57,65,-57v31,0,57,25,57,55"},{"d":"495,-754v0,28,-22,50,-50,50v-28,0,-50,-22,-50,-50v0,-28,22,-50,50,-50v28,0,50,22,50,50xm268,-754v0,28,-22,50,-50,50v-28,0,-50,-22,-50,-50v0,-28,22,-50,50,-50v28,0,50,22,50,50xm604,-623r-52,0r-192,313r0,273r76,0r0,37r-238,0r0,-37r75,0r0,-267r-207,-319r-58,0r0,-37r247,0r0,37r-91,0r172,262r159,-262r-91,0r0,-37r200,0r0,37","w":612},{"d":"561,0r-226,0r0,-37r75,0r0,-293v0,-53,-27,-86,-71,-86v-43,0,-68,19,-155,119r0,260r76,0r0,37r-227,0r0,-37r76,0r0,-360r-87,0r0,-27v55,-12,100,-34,162,-39r0,112v75,-87,118,-114,182,-114v74,0,120,48,120,125r0,303r75,0r0,37","w":581},{"d":"38,199v81,-81,96,-133,96,-293r0,-529r-75,0r0,-37r238,0r0,37r-76,0r0,641v-53,108,-72,135,-149,213","w":364},{"d":"473,-753v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm307,-753v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm663,0r-228,0r0,-37r80,0r-70,-180r-256,-1r-73,180r83,0r0,38r-191,0r0,-38r52,0r260,-643r36,0r250,643r57,0r0,38xm428,-265r-107,-281r-113,281r220,0","w":672},{"d":"652,0r-257,0r0,-37r94,0r-171,-242r-187,242r95,0r0,37r-218,0r0,-37r56,0r223,-287r-211,-299r-57,0r0,-37r254,0r0,37r-94,0r161,229r177,-229r-92,0r0,-37r218,0r0,37r-59,0r-212,275r220,311r60,0r0,37","w":660},{"d":"356,-641v-48,38,-64,60,-64,91v0,30,14,45,51,57v-16,43,-31,57,-65,57v-31,0,-56,-25,-56,-56v0,-55,39,-121,110,-180xm197,-641v-48,38,-64,60,-64,91v0,30,13,45,51,57v-16,43,-31,57,-65,57v-31,0,-57,-25,-57,-56v0,-55,40,-121,110,-180","w":409},{"d":"768,0r-238,0r0,-37r75,0r0,-275r-375,0r0,275r75,0r0,37r-238,0r0,-37r75,0r0,-586r-75,0r0,-37r238,0r0,37r-75,0r0,266r375,0r0,-266r-75,0r0,-37r238,0r0,37r-76,0r0,586r76,0r0,37","w":838},{"d":"934,-623r-48,0r-250,640r-31,0r-128,-324r-125,324r-33,0r-253,-640r-58,0r0,-37r210,0r0,37r-59,0r196,493r96,-244r-99,-249r-59,0r0,-37r359,0r0,37r-52,0r-79,204r117,294r195,-498r-69,0r0,-37r170,0r0,37xm549,-623r-109,0r54,135","w":942},{"d":"512,-529r-45,0r0,-85r-237,0r0,256r189,0r0,-75r46,-1r0,197r-46,1r0,-77r-189,0r0,276r75,0r0,37r-238,0r0,-37r75,0r0,-586r-75,0r0,-37r399,0r0,-28r46,0r0,159","w":571},{"d":"663,0r-228,0r0,-37r80,0r-70,-180r-256,-1r-73,180r83,0r0,38r-191,0r0,-38r52,0r260,-643r36,0r250,643r57,0r0,38xm428,-265r-107,-281r-113,281r220,0","w":672},{"d":"305,0r-238,0r0,-37r75,0r0,-586r-75,0r0,-37r238,0r0,37r-75,0r0,586r75,0r0,37","w":372},{"d":"451,-701r-55,68v-41,-36,-52,-44,-99,-68v-80,15,-113,71,-113,192r0,66r115,0r0,46r-115,0r0,360r96,0r0,37r-247,0r0,-37r76,0r0,-360r-87,0r0,-27r87,-22r0,-82v0,-126,82,-211,203,-211v49,0,93,12,139,38","w":323},{"d":"693,-330v0,154,-99,298,-251,334v69,82,141,138,178,138v15,0,30,-8,66,-35r23,28r-107,95v-144,-76,-157,-89,-260,-220v-170,-14,-292,-169,-292,-339v0,-188,147,-343,323,-343v174,0,320,156,320,342xm594,-330v0,-168,-93,-290,-220,-290v-131,0,-225,120,-225,290v0,169,94,291,224,291v128,0,221,-123,221,-291","w":759},{"d":"318,-701r-43,0r-86,-59r-85,59r-49,0r113,-112r43,0xm305,0r-238,0r0,-37r75,0r0,-586r-75,0r0,-37r238,0r0,37r-75,0r0,586r75,0r0,37","w":372},{"d":"487,-389r-87,0v24,28,32,52,32,93v0,129,-129,204,-262,161v-30,31,-42,50,-42,68v0,17,10,26,29,26r250,0v48,0,76,34,76,92v0,113,-114,205,-255,205v-86,0,-140,-28,-195,-101v22,-54,30,-68,78,-128v-29,-6,-44,-15,-75,-50v34,-60,49,-78,105,-125v-59,-34,-86,-79,-86,-142v0,-147,164,-223,297,-145v54,3,95,-6,135,-17r0,63xm353,-295v0,-81,-43,-132,-109,-132v-67,0,-109,51,-109,132v0,81,42,133,109,133v66,0,109,-52,109,-133xm413,84v0,-32,-15,-52,-38,-52r-227,0v-74,90,-18,184,103,184v88,0,162,-61,162,-132","w":507},{"d":"617,-29v-84,31,-139,42,-210,42v-206,0,-357,-144,-357,-341v0,-194,151,-344,346,-344v65,0,117,11,173,37r0,-45r47,0r0,170r-47,0r0,-49v-61,-45,-106,-62,-170,-62v-148,0,-250,118,-250,287v-1,229,225,379,420,245r0,-73r48,0r0,133","w":667},{"d":"910,-243v0,227,-183,411,-410,411v-227,0,-410,-184,-410,-411v0,-226,183,-410,410,-410v227,0,410,184,410,410xm846,-243v0,-191,-155,-346,-346,-346v-191,0,-346,155,-346,346v0,192,155,347,346,347v191,0,346,-155,346,-347xm669,-28v-73,32,-105,41,-154,41v-148,0,-254,-105,-254,-251v0,-167,192,-307,357,-220r0,-28r49,0r0,144r-50,0r0,-69v-133,-87,-264,17,-266,171v-3,155,142,266,268,176r0,-71r50,0r0,107","w":1000},{"d":"485,0r-66,0r-157,-315r-6,0r-159,315r-61,0r208,-417r33,0","w":522},{"d":"370,-664r-112,165r-45,0r-107,-165r43,0r86,88r85,-88r50,0xm432,-423r-293,377r248,0r0,-77r43,1r0,122r-392,0r0,-37r291,-370r-233,0r-13,84r-43,0r21,-150r43,0r-3,20r331,0r0,30","w":469},{"d":"410,-529r-44,0r-86,-88r-85,88r-49,0r113,-165r43,0xm560,-28v-55,11,-101,31,-162,36r0,-113v-72,87,-119,118,-181,118v-75,0,-121,-49,-121,-129r0,-281r-87,0r0,-27r144,-39r19,0r0,335v0,61,24,91,73,91v50,11,115,-80,153,-120r0,-240r-76,0r0,-31v51,-11,93,-31,151,-35r0,407r87,0r0,28","w":570},{"d":"706,0r-308,0r0,-34r118,-88v66,-49,83,-72,83,-109v0,-32,-22,-52,-57,-52v-34,0,-58,13,-99,56r-33,-30v57,-57,90,-75,142,-75v68,0,119,39,119,96v0,78,-109,135,-165,177r154,0r0,-64r46,0r0,123xm248,-355r-204,0r0,-39r68,0r0,-245r-68,0r0,-39r204,0r0,39r-69,0r0,245r69,0r0,39xm607,-687r-463,733r-71,0r463,-733r71,0","w":750},{"d":"522,0r-455,0r0,-37r75,0r0,-586r-75,0r0,-37r399,0r0,-28r46,0r0,159r-45,0r0,-85r-237,0r0,256r189,0r0,-75r46,-1r0,197r-46,1r0,-77r-189,0r0,268r246,0r0,-88r46,0r0,133","w":581},{"d":"314,-432r-58,0r0,-226r58,0r0,226xm154,-432r-59,0r0,-226r59,0r0,226","w":409},{"d":"689,-331v0,185,-144,331,-328,331r-294,0r0,-37r75,0r0,-293r-112,0r0,-43r112,0r0,-250r-75,0r0,-37r295,0v180,0,327,148,327,329xm590,-330v0,-154,-106,-279,-238,-279r-122,0r0,236r118,0r0,43r-118,0r0,280r120,0v137,0,241,-121,240,-280","w":740},{"d":"190,-737r-38,545r-40,0r-38,-545r116,0xm189,-46v0,31,-26,57,-57,57v-31,0,-57,-26,-57,-57v0,-31,26,-57,57,-57v31,0,57,26,57,57","w":265},{"d":"686,-623r-75,0r0,634r-31,0r-384,-528r0,480r76,0r0,37r-202,0r0,-37r76,0r0,-548r-27,-38r-69,0r0,-37r145,0r366,502r0,-465r-76,0r0,-37r201,0r0,37","w":737},{"d":"371,-529r-43,0r-86,-88r-85,88r-49,0r113,-165r43,0xm430,-256r-315,0v-5,190,141,288,284,177r19,37v-75,43,-110,55,-168,55v-127,0,-217,-98,-217,-236v0,-140,91,-242,215,-242v117,0,191,82,182,209xm348,-296v7,-76,-33,-127,-99,-127v-73,0,-124,49,-133,127r232,0","w":461},{"d":"555,-121v0,83,-66,134,-173,134v-64,0,-106,-13,-154,-48r48,-61v38,53,67,71,115,71v55,0,100,-35,100,-77v0,-39,-15,-51,-118,-94v-88,-36,-119,-70,-119,-130v0,-58,17,-83,101,-149v47,-37,62,-61,62,-101v0,-60,-37,-99,-123,-127v-90,23,-110,59,-110,194r0,509r-151,0r0,-37r76,0r0,-360r-87,0r0,-27r87,-22r0,-81v0,-123,80,-212,190,-212v101,0,195,77,195,160v0,113,-174,124,-174,231v0,42,16,55,112,91v88,32,123,71,123,136","w":605},{"d":"572,-812r-167,115r-55,0r115,-115r107,0xm654,-242v7,156,-106,255,-260,255v-145,0,-252,-96,-252,-227r0,-409r-75,0r0,-37r238,0r0,37r-75,0r0,378v0,121,71,200,182,200v114,0,191,-81,191,-201r0,-377r-75,0r0,-37r201,0r0,37r-75,0r0,381","w":780},{"d":"486,-178v0,102,-68,185,-185,188r0,58r-46,0r0,-55v-87,-5,-122,-15,-179,-50r57,-66v33,37,42,45,84,72r38,-3r0,-264r-18,-10v-123,-68,-159,-112,-159,-190v0,-95,73,-167,177,-176r0,-58r46,0r0,57v62,2,95,12,163,49r-60,64v-33,-36,-42,-43,-82,-70r-21,2r0,246v146,83,185,126,185,206xm255,-412r0,-213v-57,11,-89,46,-89,100v0,46,17,67,89,113xm399,-149v0,-48,-25,-79,-98,-124r0,232v72,-29,98,-57,98,-108","w":543},{"d":"233,-190r-191,0r0,-76r191,0r0,76","w":275},{"d":"182,-409v1,32,-25,58,-58,58v-31,0,-56,-25,-56,-57v0,-32,25,-57,56,-57v32,0,58,25,58,56xm182,-48v1,32,-25,59,-58,59v-31,0,-56,-26,-56,-57v0,-32,25,-58,56,-58v32,0,58,25,58,56"},{"d":"499,0r-106,0r0,243r-75,0r0,-243r-310,0r0,-18r360,-456r25,0r0,416r70,0r0,-47r36,0r0,105xm318,-58r0,-274r-215,274r215,0","w":549},{"d":"511,0r-472,-210r0,-54r472,-210r0,63r-396,174r396,174r0,63","w":550},{"d":"389,-348v111,8,179,79,179,176v0,98,-76,172,-178,172r-323,0r0,-37r75,0r0,-586r-75,0r0,-37r304,0v91,0,165,73,165,164v0,75,-66,141,-147,148xm443,-492v0,-70,-43,-122,-102,-122r-111,0r0,249r102,0v65,0,111,-53,111,-127xm477,-177v0,-83,-57,-143,-135,-143r-112,0r0,275r112,0v84,0,135,-50,135,-132","w":635},{"d":"474,-495r-176,39r-12,-38r165,-72xm288,-685r-17,179r-40,0r-17,-179r74,0xm412,-302r-60,44r-92,-155r32,-24xm214,-494r-12,38r-176,-39r23,-71xm240,-412r-91,155r-60,-44r119,-135","w":500},{"d":"238,-355r-204,0r0,-39r68,0r0,-245r-68,0r0,-39r204,0r0,39r-69,0r0,245r69,0r0,39","w":271},{"d":"33,213v142,-7,252,-89,252,-210v0,-95,-71,-151,-179,-139r0,-33v99,-58,136,-105,136,-174v0,-46,-29,-80,-70,-80v-32,0,-53,14,-97,64r-32,-30v51,-60,97,-85,158,-85v72,0,128,54,128,125v0,62,-30,101,-113,153v90,6,148,73,148,173v0,120,-121,230,-225,262v-30,10,-52,13,-106,17r0,-43","w":431},{"d":"910,-229v0,226,-183,410,-410,410v-227,0,-410,-184,-410,-410v0,-227,183,-411,410,-411v227,0,410,184,410,411xm846,-229v0,-192,-155,-347,-346,-347v-191,0,-346,155,-346,347v0,191,155,346,346,346v191,0,346,-155,346,-346xm717,0r-116,0r-117,-206r-47,0r0,169r69,0r0,37r-209,0r0,-37r70,0r0,-392r-70,0r0,-37r198,0v113,0,172,43,172,124v0,64,-36,106,-109,126r93,159v12,22,35,21,66,20r0,37xm591,-335v0,-78,-67,-97,-154,-90r0,178v85,7,154,-11,154,-88","w":1000},{"d":"816,-162v0,96,-79,175,-175,175v-97,0,-175,-79,-175,-175v0,-97,78,-175,175,-175v96,0,175,78,175,175xm743,-687r-575,733r-53,0r559,-733r69,0xm384,-495v0,97,-78,175,-175,175v-96,0,-175,-78,-175,-175v0,-97,79,-176,175,-176v97,0,175,79,175,176xm755,-162v0,-64,-51,-115,-114,-115v-64,0,-115,51,-115,115v0,63,51,114,115,114v63,0,114,-51,114,-114xm324,-495v0,-63,-51,-115,-115,-115v-63,0,-114,52,-114,115v0,64,51,115,114,115v64,0,115,-51,115,-115","w":850},{"d":"546,-708r-44,0r-85,-59r-86,59r-48,0r112,-112r44,0xm654,-242v7,156,-106,255,-260,255v-145,0,-252,-96,-252,-227r0,-409r-75,0r0,-37r238,0r0,37r-75,0r0,378v0,121,71,200,182,200v114,0,191,-81,191,-201r0,-377r-75,0r0,-37r201,0r0,37r-75,0r0,381","w":780},{"d":"371,-123v0,80,-62,136,-151,136v-56,0,-98,-13,-127,-40r0,36r-40,0r0,-142r46,0v-10,71,45,108,118,108v55,0,96,-29,96,-69v0,-40,-28,-62,-133,-103v-96,-37,-130,-74,-130,-137v0,-78,63,-131,155,-131v44,0,78,11,106,34r6,-36r43,0r-24,144r-43,0v24,-62,-26,-104,-93,-104v-52,0,-86,28,-86,71v0,43,7,48,128,97v98,39,129,72,129,136","w":421},{"d":"189,-448v0,32,-26,57,-57,57v-31,0,-57,-25,-57,-57v0,-31,26,-57,57,-57v31,0,57,26,57,57xm190,243r-116,0r38,-544r40,0","w":265},{"d":"301,-432v0,-123,-84,-180,-215,-203r35,-101v141,39,232,154,232,295v0,113,-66,154,-181,142r-26,107r-25,0r0,-177r165,0v13,-23,15,-32,15,-63xm198,-48v1,32,-25,59,-57,59v-32,0,-57,-26,-57,-57v0,-32,25,-58,56,-58v32,0,58,25,58,56","w":409},{"d":"347,-617v0,56,-40,121,-110,181r-25,-31v49,-39,64,-61,64,-91v0,-30,-13,-46,-51,-57v16,-44,31,-57,65,-57v31,0,57,25,57,55xm188,-617v0,56,-40,121,-110,181r-25,-31v48,-39,64,-61,64,-91v0,-30,-14,-46,-51,-57v16,-44,31,-57,65,-57v31,0,57,25,57,55","w":409},{"d":"299,-584v0,44,-36,79,-80,79v-44,0,-79,-35,-79,-79v0,-44,35,-80,79,-80v44,0,80,36,80,80xm437,-19v-32,9,-67,26,-102,28v-34,2,-52,-27,-49,-69v-42,52,-80,73,-133,73v-69,0,-120,-48,-120,-115v0,-51,33,-93,81,-104r171,-39r0,-113v-2,-66,-73,-89,-132,-52r0,48r-89,26v-32,-77,49,-129,150,-129v88,0,146,44,146,110r0,308r77,0r0,28xm266,-584v0,-26,-21,-46,-47,-46v-25,0,-46,20,-46,46v0,25,21,46,46,46v26,0,47,-21,47,-46xm285,-99r0,-106r-171,40v-6,66,7,120,69,119v32,0,58,-14,102,-53","w":457},{"d":"154,-432r-58,0r0,-226r58,0r0,226"},{"d":"380,-717r-55,0r-166,-115r107,0xm522,0r-455,0r0,-37r75,0r0,-586r-75,0r0,-37r399,0r0,-28r46,0r0,159r-45,0r0,-85r-237,0r0,256r189,0r0,-75r46,-1r0,197r-46,1r0,-77r-189,0r0,268r246,0r0,-88r46,0r0,133","w":581},{"d":"265,13v-127,0,-203,-70,-211,-177v-7,-88,102,-173,166,-224v-54,-45,-138,-108,-138,-192v0,-88,85,-159,192,-159v98,0,178,67,178,150v0,68,-78,139,-129,179v57,54,173,134,173,218v0,118,-98,205,-231,205xm330,-475v78,-60,68,-226,-56,-226v-63,0,-107,41,-107,103v0,78,75,122,122,161xm415,-162v0,-85,-110,-144,-160,-196v-53,47,-127,101,-127,194v0,85,54,139,140,139v88,0,147,-55,147,-137","w":550},{"d":"521,-639v216,0,382,156,382,371v0,171,-88,267,-245,277v-120,8,-120,-106,-89,-194v-46,74,-74,107,-120,143v-33,25,-75,44,-101,44v-35,0,-60,-62,-60,-147v0,-189,104,-334,239,-334v34,0,49,4,83,25r30,-25r39,0r-57,355v-12,55,-2,84,56,84v112,0,178,-96,178,-232v0,-89,-24,-150,-83,-215v-67,-75,-138,-104,-247,-104v-229,0,-378,144,-378,365v0,127,38,205,122,275v92,78,265,90,383,33r20,44v-144,68,-330,46,-438,-47v-92,-79,-136,-170,-136,-297v0,-247,174,-421,422,-421xm598,-391v-27,-34,-47,-47,-76,-47v-81,0,-155,130,-155,271v0,57,13,84,40,84v27,0,71,-40,113,-102v42,-61,62,-115,78,-206","w":1000},{"d":"360,-660r-252,903r-58,0r251,-903r59,0","w":409},{"d":"270,-427v-99,-1,-155,92,-155,186v0,112,77,204,170,204v32,0,57,-8,112,-36r20,38v-66,39,-93,48,-156,48v-140,0,-229,-90,-229,-231v0,-196,218,-320,377,-201r-54,60v-35,-36,-45,-43,-85,-68","w":430},{"d":"352,-173v-47,12,-143,-57,-201,-57v-40,0,-85,17,-125,48r-29,-41v83,-61,143,-88,239,-46v33,14,84,39,121,39v46,0,80,-13,129,-48r33,44v-58,43,-109,61,-167,61","w":522},{"d":"329,0r-270,0r0,-37r97,0r0,-387r-97,0r0,-37r270,0r0,37r-98,0r0,387r98,0r0,37","w":387},{"d":"427,-766v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm232,-766v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm522,0r-455,0r0,-37r75,0r0,-586r-75,0r0,-37r399,0r0,-28r46,0r0,159r-45,0r0,-85r-237,0r0,256r189,0r0,-75r46,-1r0,197r-46,1r0,-77r-189,0r0,268r246,0r0,-88r46,0r0,133","w":581},{"d":"309,-529r-53,0r-159,-161r93,0xm430,-256r-315,0v-5,190,141,288,284,177r19,37v-75,43,-110,55,-168,55v-127,0,-217,-98,-217,-236v0,-140,91,-242,215,-242v117,0,191,82,182,209xm348,-296v7,-76,-33,-127,-99,-127v-73,0,-124,49,-133,127r232,0","w":461},{"d":"423,-704v-57,0,-121,-41,-160,-41v-32,0,-56,9,-90,33r-20,-21v58,-65,161,-76,234,-31v59,20,109,27,160,-17r23,18v-44,43,-85,59,-147,59xm686,-623r-75,0r0,634r-31,0r-384,-528r0,480r76,0r0,37r-202,0r0,-37r76,0r0,-548r-27,-38r-69,0r0,-37r145,0r366,502r0,-465r-76,0r0,-37r201,0r0,37","w":737},{"d":"357,-236v-81,-8,-114,25,-114,117r0,241v3,112,-71,143,-187,134r0,-40v75,7,111,-16,112,-97r0,-241v0,-89,21,-118,93,-128v-72,-9,-93,-39,-93,-128r0,-236v-1,-80,-37,-104,-112,-97r0,-33v115,-8,187,21,187,133r0,230v3,92,32,126,114,117r0,28","w":409},{"d":"377,-429r-58,70v-20,-19,-34,-28,-44,-28v-18,0,-36,17,-91,84r0,266r96,0r0,37r-247,0r0,-37r76,0r0,-360r-87,0r0,-27v55,-12,100,-34,162,-39r0,112v72,-92,98,-114,134,-114v31,0,40,23,59,36","w":377},{"d":"609,0r-550,0r0,-30r410,-579r-363,0r0,80r-47,0r0,-159r47,0r0,28r483,0r0,31r-408,579r381,0r0,-104r47,0r0,154","w":668},{"d":"560,-28v-55,11,-101,31,-162,36r0,-113v-72,87,-119,118,-181,118v-75,0,-121,-49,-121,-129r0,-281r-87,0r0,-27r144,-39r19,0r0,335v0,61,24,91,73,91v50,11,115,-80,153,-120r0,-240r-76,0r0,-31v51,-11,93,-31,151,-35r0,407r87,0r0,28","w":570},{"d":"508,0r-124,0r-205,-246r179,-170r-65,0r0,-37r199,0r0,37r-77,0r-155,148r191,231r57,0r0,37xm246,0r-226,0r0,-37r76,0r0,-634r-88,0r0,-27r144,-39r19,0r0,700r75,0r0,37","w":508},{"d":"437,-19v-32,9,-67,26,-102,28v-34,2,-52,-27,-49,-69v-42,52,-80,73,-133,73v-69,0,-120,-48,-120,-115v0,-51,33,-93,81,-104r171,-39r0,-113v-2,-66,-73,-89,-132,-52r0,48r-89,26v-32,-77,49,-129,150,-129v88,0,146,44,146,110r0,308r77,0r0,28xm285,-99r0,-106r-171,40v-6,66,7,120,69,119v32,0,58,-14,102,-53","w":457},{"d":"604,-623r-52,0r-192,313r0,273r76,0r0,37r-238,0r0,-37r75,0r0,-267r-207,-319r-58,0r0,-37r247,0r0,37r-91,0r172,262r159,-262r-91,0r0,-37r200,0r0,37","w":612},{"d":"496,-476r-76,89v39,55,57,104,57,161v0,186,-218,316,-358,187r-74,86r-28,-26r75,-87v-40,-52,-57,-100,-57,-161v0,-131,99,-238,221,-238v48,0,96,18,136,51r75,-87xm351,-367v-88,-123,-230,-24,-230,137v0,43,5,73,19,108xm258,-30v101,0,166,-181,114,-301r-212,245v22,35,58,56,98,56","w":486},{"d":"862,0r-226,0r0,-37r76,0r0,-293v0,-54,-27,-85,-71,-85v-51,0,-118,80,-155,118r0,260r75,0r0,37r-226,0r0,-37r75,0r0,-293v0,-53,-27,-86,-71,-86v-43,0,-68,19,-155,119r0,260r76,0r0,37r-227,0r0,-37r76,0r0,-360r-87,0r0,-27v55,-12,100,-34,162,-39r0,112v75,-87,118,-114,182,-114v71,0,110,37,120,114v75,-87,118,-114,181,-114v74,0,120,48,120,124r0,304r75,0r0,37","w":883},{"d":"34,189v98,-55,124,-99,170,-208r-162,-397r-42,0r0,-37r194,0r0,37r-71,0r121,295r112,-295r-67,0r0,-37r154,0r0,37r-42,0r-169,439v-33,86,-81,168,-133,233","w":443},{"d":"607,-623r-51,0r-175,279r146,0r0,39r-165,0r0,94r165,0r0,42r-165,0r0,132r76,0r0,37r-238,0r0,-37r75,0r0,-132r-165,0r0,-42r165,0r0,-94r-165,0r0,-39r140,0r-182,-279r-59,0r-1,-37r249,0r0,37r-91,0r171,261r161,-261r-91,0r0,-37r200,0r0,37","w":615},{"d":"86,-202v0,-160,66,-356,145,-458r43,0v-61,118,-102,304,-102,458v0,154,41,341,102,458r-43,0v-80,-104,-145,-297,-145,-458","w":309},{"d":"522,0r-455,0r0,-37r75,0r0,-586r-75,0r0,-37r238,0r0,37r-75,0r0,578r246,0r0,-88r46,0r0,133","w":531},{"d":"542,-755v0,27,-23,50,-50,50v-28,0,-51,-23,-51,-50v0,-28,23,-51,51,-51v27,0,50,23,50,51xm305,-755v0,27,-23,50,-51,50v-27,0,-50,-23,-50,-50v0,-28,23,-51,50,-51v28,0,51,23,51,51xm693,-330v0,186,-146,343,-320,343v-176,0,-323,-156,-323,-342v0,-188,146,-343,323,-343v174,0,320,156,320,342xm594,-330v0,-168,-93,-290,-220,-290v-131,0,-225,120,-225,290v0,169,94,291,224,291v128,0,221,-123,221,-291","w":743},{"d":"469,-833r-166,115r-56,0r115,-115r107,0xm663,0r-228,0r0,-37r80,0r-70,-180r-256,-1r-73,180r83,0r0,38r-191,0r0,-38r52,0r260,-643r36,0r250,643r57,0r0,38xm428,-265r-107,-281r-113,281r220,0","w":672},{"d":"343,-369v-3,1,-61,20,-79,20v-23,0,-37,-14,-40,-35v-51,65,-180,43,-178,-46v0,-38,25,-69,62,-77r114,-25v-1,-50,11,-110,-42,-109v-11,0,-19,2,-35,9r0,33r-74,21v-34,-63,34,-101,109,-102v63,0,109,30,109,80r0,200r54,0r0,31xm222,-431r0,-59r-105,23v-3,38,4,68,41,67v19,0,35,-7,64,-31","w":353},{"d":"188,-617v0,56,-40,121,-110,181r-25,-31v48,-39,64,-61,64,-91v0,-30,-14,-46,-51,-57v16,-44,31,-57,65,-57v31,0,57,25,57,55"},{"d":"33,-216v0,-144,96,-250,261,-250v52,0,84,5,142,22r0,652r75,-1r0,36r-246,0r0,-37r95,0r0,-613v-28,-14,-39,-16,-67,-16v-107,0,-174,74,-174,193v0,107,56,188,129,188r74,0r0,34v-54,16,-78,21,-103,21v-104,0,-186,-101,-186,-229","w":521},{"d":"281,-690r-158,161r-54,0r119,-161r93,0","w":333},{"d":"334,-523v-49,11,-104,-48,-137,-48v-27,0,-48,10,-76,38r-25,-17v60,-87,131,-91,207,-44v49,30,92,32,136,-20r24,16v-48,59,-76,75,-129,75xm561,0r-226,0r0,-37r75,0r0,-293v0,-53,-27,-86,-71,-86v-43,0,-68,19,-155,119r0,260r76,0r0,37r-227,0r0,-37r76,0r0,-360r-87,0r0,-27v55,-12,100,-34,162,-39r0,112v75,-87,118,-114,182,-114v74,0,120,48,120,125r0,303r75,0r0,37","w":581},{"d":"282,-529r-53,0r-159,-161r93,0xm437,-19v-32,9,-67,26,-102,28v-34,2,-52,-27,-49,-69v-42,52,-80,73,-133,73v-69,0,-120,-48,-120,-115v0,-51,33,-93,81,-104r171,-39r0,-113v-2,-66,-73,-89,-132,-52r0,48r-89,26v-32,-77,49,-129,150,-129v88,0,146,44,146,110r0,308r77,0r0,28xm285,-99r0,-106r-171,40v-6,66,7,120,69,119v32,0,58,-14,102,-53","w":457},{"d":"511,-210r-472,210r0,-63r396,-174r-396,-174r0,-63r472,210r0,54","w":550},{"d":"195,-635v0,30,-23,53,-53,53v-29,0,-52,-23,-52,-53v0,-29,23,-52,52,-52v30,0,53,23,53,52xm260,0r-227,0r0,-37r76,0r0,-360r-87,0r0,-27v55,-12,100,-34,162,-39r0,426r76,0r0,37","w":282},{"d":"341,-601r0,62r-272,0r0,-62r272,0","w":406},{"d":"192,-635v0,30,-24,53,-53,53v-29,0,-53,-23,-53,-53v0,-29,24,-52,53,-52v29,0,53,23,53,52xm181,73v-36,87,-52,112,-115,183r-24,-19v57,-96,65,-120,65,-204r0,-430r-89,0r0,-27r144,-39r19,0r0,536","w":274},{"d":"432,-423r-293,377r248,0r0,-77r43,1r0,122r-392,0r0,-37r291,-370r-233,0r-13,84r-43,0r21,-150r43,0r-3,20r331,0r0,30","w":469},{"d":"361,-690r-159,161r-53,0r119,-161r93,0xm430,-256r-315,0v-5,190,141,288,284,177r19,37v-75,43,-110,55,-168,55v-127,0,-217,-98,-217,-236v0,-140,91,-242,215,-242v117,0,191,82,182,209xm348,-296v7,-76,-33,-127,-99,-127v-73,0,-124,49,-133,127r232,0","w":461},{"d":"389,-529r-44,0r-86,-88r-85,88r-49,0r113,-165r43,0xm471,-226v0,132,-98,239,-219,239v-121,0,-219,-107,-219,-239v0,-132,98,-239,219,-239v121,0,219,107,219,239xm386,-226v0,-111,-59,-197,-134,-197v-75,0,-133,86,-133,197v0,110,58,197,133,197v75,0,134,-86,134,-197","w":505},{"d":"421,-713r-55,0r-166,-115r107,0xm663,0r-228,0r0,-37r80,0r-70,-180r-256,-1r-73,180r83,0r0,38r-191,0r0,-38r52,0r260,-643r36,0r250,643r57,0r0,38xm428,-265r-107,-281r-113,281r220,0","w":672},{"d":"417,-790v0,44,-36,79,-80,79v-44,0,-80,-35,-80,-79v0,-44,36,-80,80,-80v44,0,80,36,80,80xm663,0r-228,0r0,-37r80,0r-70,-180r-256,-1r-73,180r83,0r0,38r-191,0r0,-38r52,0r260,-643r36,0r250,643r57,0r0,38xm383,-790v0,-26,-20,-47,-46,-47v-25,0,-46,21,-46,47v0,25,21,46,46,46v26,0,46,-21,46,-46xm428,-265r-107,-281r-113,281r220,0","w":672},{"d":"345,-660v133,-3,202,59,202,178v0,97,-54,159,-150,173r144,222v34,51,44,51,104,49r0,38r-85,0v-59,0,-70,-6,-103,-59r-149,-237r-78,0r0,259r75,0r0,37r-238,0r0,-37r75,0r0,-586r-75,0r0,-37r278,0xm455,-480v0,-86,-47,-134,-131,-134r-94,0r0,272r96,0v76,0,129,-56,129,-138","w":654},{"d":"442,-416r-42,0r-163,429r-20,0r-175,-428r-42,-1r0,-37r194,0r0,37r-70,0r119,295r112,-295r-67,0r0,-37r154,0r0,37","w":442},{"d":"693,-330v0,186,-146,343,-320,343v-176,0,-323,-156,-323,-342v0,-188,146,-343,323,-343v174,0,320,156,320,342xm594,-330v0,-168,-93,-290,-220,-290v-131,0,-225,120,-225,290v0,169,94,291,224,291v128,0,221,-123,221,-291","w":743},{"d":"430,-256r-315,0v-5,190,141,288,284,177r19,37v-75,43,-110,55,-168,55v-127,0,-217,-98,-217,-236v0,-140,91,-242,215,-242v117,0,191,82,182,209xm348,-296v7,-76,-33,-127,-99,-127v-73,0,-124,49,-133,127r232,0","w":461},{"d":"412,13v-211,0,-359,-155,-362,-344v-5,-255,266,-413,521,-310r0,-39r46,0r0,170r-46,0r0,-65v-66,-32,-116,-45,-172,-45v-138,0,-250,129,-250,289v1,193,177,340,382,279r0,-175r-85,0r0,-37r248,0r0,37r-75,0r0,202v-89,29,-138,38,-207,38","w":745},{"d":"549,-470v0,129,-126,224,-275,193r0,-35v103,18,184,-62,184,-158v0,-80,-53,-144,-119,-144r-109,0r0,577r85,0r-1,37r-247,0r0,-37r75,0r0,-586r-75,0r0,-37r286,0v116,0,196,78,196,190","w":600},{"d":"437,0r-189,0r0,-37r57,0r-97,-147r-112,147r59,0r0,37r-155,0r0,-37r42,0r142,-183r-132,-196r-42,0r0,-37r193,0r0,37r-62,0r90,138r103,-138r-48,0r0,-37r144,0r0,37r-42,0r-134,171r141,208r42,0r0,37","w":437},{"d":"500,57r-500,0r0,-57r500,0r0,57","w":500},{"d":"545,-458r-10,57r-112,0r-25,130r113,0r-10,57r-115,0r-41,214r-62,0r41,-214r-143,0r-43,214r-61,0r43,-214r-115,0r10,-57r116,0r27,-130r-117,0r10,-57r117,0r40,-200r60,0r-39,200r143,0r39,-200r62,0r-40,200r112,0xm361,-401r-143,0r-26,130r143,0","w":550},{"d":"545,-230v0,134,-109,243,-243,243v-135,0,-243,-109,-243,-243v0,-135,108,-244,243,-244v134,0,243,109,243,244xm479,-230v0,-98,-80,-177,-177,-177v-98,0,-177,79,-177,177v0,97,79,176,177,176v97,0,177,-79,177,-176","w":603},{"d":"502,-709r-44,0r-85,-59r-86,59r-48,0r112,-112r44,0xm693,-330v0,186,-146,343,-320,343v-176,0,-323,-156,-323,-342v0,-188,146,-343,323,-343v174,0,320,156,320,342xm594,-330v0,-168,-93,-290,-220,-290v-131,0,-225,120,-225,290v0,169,94,291,224,291v128,0,221,-123,221,-291","w":743},{"d":"656,0r-135,0r-282,-333r246,-290r-74,0r0,-37r207,0r0,37r-65,0r-221,264r271,322r53,0r0,37xm305,0r-238,0r0,-38r75,0r0,-584r-75,-1r0,-37r238,0r0,37r-75,0r0,586r75,0r0,37","w":653},{"d":"337,-513v0,92,-71,167,-161,167v-89,0,-160,-75,-160,-167v0,-92,71,-167,160,-167v90,0,161,75,161,167xm263,-513v0,-73,-41,-125,-87,-125v-46,0,-85,52,-85,125v0,72,39,125,85,125v46,0,87,-52,87,-125","w":353},{"d":"500,-208r-500,0r0,-57r500,0r0,57","w":500},{"d":"548,0r-227,0r0,-37r76,0r0,-293v0,-53,-27,-86,-71,-86v-44,0,-68,19,-155,119r0,260r75,0r0,37r-226,0r0,-37r76,0r0,-634r-88,0r0,-27r144,-39r19,0r0,386v75,-87,118,-114,181,-114v74,0,120,48,120,125r0,303r76,0r0,37","w":568},{"d":"654,-242v7,156,-106,255,-260,255v-145,0,-252,-96,-252,-227r0,-409r-75,0r0,-37r238,0r0,37r-75,0r0,378v0,121,71,200,182,200v114,0,191,-81,191,-201r0,-377r-75,0r0,-37r201,0r0,37r-75,0r0,381","w":780},{"d":"592,-530r-48,0r0,-80r-200,0r0,573r100,0r0,37r-288,0r0,-37r100,0r0,-573r-200,0r0,80r-48,0r0,-158r48,0r0,28r488,0r0,-28r48,0r0,158","w":600},{"d":"221,243r-152,0r0,-903r152,0r0,46r-93,0r0,812r93,0r0,45"}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-688-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})(":|3XibU)81M%:dD*kbup(|(MAVUX3bM%AVHp81x+3rl#zJ)yiXGXY?nDzXGXY?nyYbnlAsw^Y|zVk6x>k$9^3bx>k$9^3|r>k$9^zEu>k$(^Y$x>k$9GUEn>k$9^z$L}AswpY?(V!rGXY?n`YDGXY?nDzDGXY?5)YDGXY?nyzDGXY?nE!rGXY?nyUX3>k$9^3Er>k$9^3EU>k$9^zEU>k$9nd?5u|s(H:&YU!-fxt$wr1Az38i>keqLTyE`Db+2@g}#m%[^GpJ)XV6NBc*lMO;9^3?D>k$9GU$U>k$9^zVU>k$9^zJY#(uGXY?nyYuGXY?nTUsn>k$9^zb3>k$9^z$k>k$9^zJ3>k$9^z1U>k$9^zJH>k$9^3ED>k$9^3|x>k$9^3br>k$9^3bU>k$9GU?u>k$9^zVu>k$9G!$H`Asw^Y|(NAuG>k$9GYJ56Asw^Y|HEAsw^Y|z^Asw^Y|uyAsw^Y|UbAsw^Y|wJ&DGXY?n`!uGXY?nD3uGXY?nDYrGXY?n`zJH>k$9^3?U>k$9^31r*Asw^Y|5JAsw^Y|HDUDX>k$9^z$H>k$9^zE3>k$9^3Ek>k$9GU$H>k$9GUVx>k$9^3$H>k$(GYEH>k$9GUE5b:rGXY?nD3`x#Asw^Y|U`Asw^Y|w6$$ryAsw^Y|3TAsw^Y|w)Asw^Y|fXwXGXY?nTYuGXY?nTUDGXY?nEUXGXY?nbYDGXY?nb3EX>k$9^3?k>k$(^Y$T>k$9^3$z*Asw^Y$>Ni`@>k$9^zJxzAswpY?uEtuk|fwDbwrGXY?nE31k?Asw^Y|5BADGXY?563rGXY?nbzDGXY?ny35r>(DGXY?n`Ydu!Asw^Y|rTAsw^Y|xbAsw^Y|xTHd)cU?Gd:DGXY?ny!$U>k$9^z1wDAsw^Y|xy>XGXY?nTY$M>k$(^Y1x>k$9^3$w+Asw^Y|YN!5n>&VUOYrGXY?nEzDGXY?nD!uGXY?n`YAXp1+r}zrD>k$9^3ETmerGXY?nTUtTYAsw^Y|fVAsw^Y|YGAsw^Y|uTAswpY?5B>rGXY?nyUuGXY?nbYrGXY?nDY?B@Asw^Y|ub8+@>k$9^3$D>k$9^3Ex>k$9^zJn>k$9^zJrtk`MDxXnNApY^Asw^Y|f)tXGXY?nyzrGXYE9GYVTrru#y&+U^i|D):d(y:tG@-$9#>?Xy&+9#i?X^&bGDibk)8dG+-1(%3yB+isD^8sYMe6)*81z2zyB[8J)[AyL;!+k6kX^%:$l2-J@>:+^%:X^%3bD%3Vrp>|u@i+x@i+xD>buEk|DV3r^%zVMmq|3@ibkD>+nT81B)81B)3AHTz6x@kbr>&bU[iAGJ8|M^z6nEAdBEiV)@HdM@&+xD>6f2i|MEzAx@iVN%8|MJk|BTi1w@:13[>yL*8$G#!p#}8tD+1VUi8rXk-Ani8rXM:tL@")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":250,"face":{"font-family":"Scala","font-weight":400,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"744","descent":"-256","x-height":"13","bbox":"-64 -870 1000 257.465","underline-thickness":"37","underline-position":"-166","stemh":"60.084","stemv":"114.019","unicode-range":"U+0020-U+2122"}}));
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990 Martin Majoor. Published by FontShop International for the
 * FontFont library. Scala is a trademark of FSI, Fonts and Software GmbH.
 * http://www.fontfont.de
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"672,-37r-6,37r-234,0r6,-37r85,0r-41,-181r-252,0r-101,181r78,0r-5,37r-197,0r6,-37r65,0r362,-644r17,0r148,644r69,0xm472,-265r-61,-275r-155,275r216,0","w":671},{"d":"366,-435v0,32,-28,58,-63,58v-29,0,-52,-25,-52,-55v0,-33,29,-60,64,-60v28,0,51,26,51,57xm43,108v0,-123,143,-231,226,-286v-26,-33,-34,-40,-68,-66r71,-64v50,58,63,76,90,126r-74,53v-105,75,-140,109,-158,155v-38,95,42,185,146,147v10,-4,12,-6,48,-34v-17,-22,-24,-27,-58,-51r79,-71v49,46,60,62,60,84v0,18,-14,41,-42,67v-59,54,-111,78,-175,78v-88,0,-145,-54,-145,-138","w":479},{"d":"275,-266r-12,76r-191,0r12,-76r191,0","w":275},{"d":"512,-249r-209,0r0,169r-56,0r0,-169r-209,0r0,-56r209,0r0,-169r56,0r0,169r209,0r0,56xm512,0r-474,0r0,-57r474,0r0,57","w":550},{"d":"459,-573v0,28,-25,51,-56,51v-24,0,-44,-22,-44,-50v0,-28,25,-51,55,-51v25,0,45,22,45,50xm291,-573v0,28,-25,51,-56,51v-24,0,-44,-22,-44,-50v0,-28,25,-51,55,-51v25,0,45,22,45,50xm549,-159v-59,83,-82,109,-117,137v-22,17,-34,23,-66,30v-31,-71,2,-143,8,-218v-85,132,-181,221,-239,221v-28,0,-45,-23,-45,-60v0,-104,37,-242,52,-348r-83,0r0,-19r137,-47r26,0r-60,373v0,19,7,30,18,30v47,-4,221,-201,222,-312r11,-81r67,0r-61,388v45,-34,65,-67,100,-113","w":545},{"d":"500,0r-9,57r-500,0r9,-57r500,0"},{"d":"359,10v-154,-5,-260,-126,-260,-281v0,-210,183,-401,382,-401v157,0,271,120,271,285v0,178,-127,349,-307,391v-52,30,-73,40,-150,69v157,73,310,118,399,118v59,0,95,-28,110,-87r29,0v-12,115,-47,152,-146,152v-174,0,-368,-89,-539,-167v84,-25,102,-32,211,-79xm661,-394v0,-146,-71,-232,-191,-232v-152,0,-279,161,-279,355v0,147,70,236,185,236v162,0,285,-156,285,-359","w":752},{"d":"461,-684r-184,161r-54,0r145,-161r93,0xm380,-153v-71,98,-164,160,-238,160v-13,0,-32,-2,-56,-7v-29,-39,-40,-76,-40,-130v0,-179,102,-335,218,-335v74,0,122,38,113,109r-254,149r0,53v0,71,18,105,57,105v46,0,112,-51,169,-130xm299,-364v2,-37,-1,-64,-40,-64v-20,0,-35,4,-66,17v-42,53,-52,77,-66,154","w":380},{"d":"303,-573v0,28,-25,51,-56,51v-24,0,-44,-22,-44,-50v0,-28,24,-51,55,-51v25,0,45,22,45,50xm175,-573v0,28,-26,51,-56,51v-25,0,-45,-22,-45,-50v0,-28,25,-51,55,-51v25,0,46,22,46,50xm280,-159v-58,83,-82,110,-117,137v-20,16,-33,22,-66,30v-18,-52,-16,-61,-7,-121r44,-284r-84,0r0,-19r138,-47r26,0r-63,398v46,-36,66,-67,100,-113","w":281},{"d":"403,-422r-71,74v-18,-16,-28,-22,-38,-22v-20,0,-44,31,-79,86v-38,61,-56,183,-72,284r-68,0r64,-397r-84,0r0,-19r137,-47r25,0r-27,169v51,-98,119,-168,167,-168v20,0,33,12,46,40","w":353},{"d":"45,-118v0,-153,83,-348,233,-347v39,0,60,7,96,34r10,-33r54,0r-107,674r65,0r-6,33r-234,0r6,-33r101,0r63,-406v-49,115,-150,209,-226,209v-35,0,-55,-48,-55,-131xm360,-376v-35,-37,-59,-51,-88,-51v-80,0,-150,129,-150,276v0,54,11,94,27,94v116,-58,170,-173,211,-319","w":451},{"d":"44,-171v0,-130,105,-294,234,-294v58,0,98,29,127,93v43,-65,85,-93,141,-93v76,0,127,39,117,111r-255,149r0,52v0,72,18,104,57,104v47,0,110,-48,171,-130r30,26v-54,80,-154,161,-241,166v-15,0,-28,-4,-55,-13v-21,-33,-24,-41,-29,-69v-45,54,-97,82,-154,82v-82,0,-143,-79,-143,-184xm584,-361v2,-37,-1,-64,-40,-64v-19,0,-34,4,-66,17v-43,54,-53,77,-66,152xm258,-420v-68,-1,-134,110,-135,227v0,91,38,159,88,159v71,0,136,-111,136,-231v0,-86,-39,-155,-89,-155","w":666},{"d":"697,-687r-463,733r-71,0r463,-733r71,0xm738,-55r-39,54r-50,0r-24,165r-63,0r25,-165r-196,0r3,-23r277,-314r27,0r-41,283r81,0xm131,-226v46,1,125,-69,125,-145v0,-58,-41,-78,-103,-71r10,-38v70,-36,100,-75,100,-119v0,-25,-12,-36,-38,-36v-18,0,-30,5,-65,37r-27,-31v40,-41,71,-55,116,-55v53,0,85,28,85,77v0,47,-25,83,-74,113v41,11,65,48,65,100v0,98,-104,217,-214,217v-26,0,-43,-6,-81,-30r37,-48v41,26,48,29,64,29xm617,-210r-136,155r113,0","w":769},{"d":"402,-522r-43,0r-72,-88r-99,88r-49,0r138,-165r44,0xm380,-153v-71,98,-164,160,-238,160v-13,0,-32,-2,-56,-7v-29,-39,-40,-76,-40,-130v0,-179,102,-335,218,-335v74,0,122,38,113,109r-254,149r0,53v0,71,18,105,57,105v46,0,112,-51,169,-130xm299,-364v2,-37,-1,-64,-40,-64v-20,0,-35,4,-66,17v-42,53,-52,77,-66,154","w":380},{"d":"281,-412r-117,67r-45,280v47,-34,66,-67,101,-113r29,20v-58,82,-82,109,-118,137v-21,16,-33,22,-65,29v-18,-53,-17,-61,-7,-121r30,-188r-83,48r-22,-38r113,-65r50,-315r-83,0r0,-18r138,-48r25,0r-54,337r86,-50","w":243},{"d":"366,-684r-184,161r-53,0r144,-161r93,0xm280,-159v-58,83,-82,110,-117,137v-20,16,-33,22,-66,30v-18,-52,-16,-61,-7,-121r44,-284r-84,0r0,-19r138,-47r26,0r-63,398v46,-36,66,-67,100,-113","w":281},{"d":"580,-707r-44,0r-76,-59r-95,59r-48,0r130,-112r43,0xm672,-37r-6,37r-234,0r6,-37r85,0r-41,-181r-252,0r-101,181r78,0r-5,37r-197,0r6,-37r65,0r362,-644r17,0r148,644r69,0xm472,-265r-61,-275r-155,275r216,0","w":672},{"d":"80,-58v-89,-170,42,-410,205,-410v33,0,57,10,84,34r62,-77r26,21r-64,84v27,44,37,81,37,128v0,119,-108,290,-233,290v-39,0,-64,-11,-95,-42r-70,90r-26,-22xm327,-377v-15,-29,-38,-45,-63,-45v-82,-3,-157,161,-128,291xm221,-34v83,0,164,-182,120,-306r-192,248v20,42,41,58,72,58","w":443},{"d":"506,-224r-263,193r7,-42r142,-151r-94,-151r6,-41xm306,-224r-263,193r7,-42r142,-151r-94,-151r6,-41"},{"d":"429,-573v0,28,-26,51,-56,51v-25,0,-45,-22,-45,-50v0,-28,25,-51,55,-51v25,0,46,22,46,50xm284,-573v0,28,-25,51,-56,51v-25,0,-45,-22,-45,-50v0,-28,25,-51,55,-51v25,0,46,22,46,50xm53,-172v0,-128,105,-293,234,-293v86,0,147,81,147,195v0,113,-111,283,-236,282v-84,0,-145,-78,-145,-184xm267,-420v-68,-1,-134,110,-135,227v0,91,38,159,89,159v70,0,135,-111,135,-231v0,-86,-39,-155,-89,-155","w":446},{"d":"485,0r-66,0r-157,-315r-6,0r-159,315r-61,0r208,-417r33,0","w":522},{"d":"561,-720r-56,0r-148,-115r107,0xm832,-660r-5,37r-76,0r-60,382v-23,168,-113,254,-282,254v-145,0,-242,-88,-220,-227r65,-409r-76,0r6,-37r228,0r-5,37r-76,0r-60,378v-25,122,30,206,150,206v121,0,199,-85,218,-207r60,-377r-75,0r5,-37r203,0","w":780},{"d":"470,-828r-184,115r-56,0r134,-115r106,0xm400,-660r-6,37r-75,0r-93,586r75,0r-5,37r-229,0r6,-37r75,0r93,-586r-75,0r6,-37r228,0","w":372},{"d":"479,-727r-56,0r-148,-115r107,0xm617,-688r-25,159r-45,0r14,-85r-230,0r-41,256r183,0r12,-75r45,-1r-31,198r-46,0r13,-77r-183,0r-42,268r239,0r14,-88r45,0r-21,133r-437,0r6,-37r75,0r93,-586r-75,0r5,-37r382,0r5,-28r45,0","w":581},{"d":"403,-573v0,28,-25,51,-56,51v-25,0,-45,-22,-45,-50v0,-28,25,-51,56,-51v25,0,45,22,45,50xm258,-573v0,28,-25,51,-56,51v-24,0,-44,-22,-44,-50v0,-28,24,-51,55,-51v25,0,45,22,45,50xm380,-153v-71,98,-164,160,-238,160v-13,0,-32,-2,-56,-7v-29,-39,-40,-76,-40,-130v0,-179,102,-335,218,-335v74,0,122,38,113,109r-254,149r0,53v0,71,18,105,57,105v46,0,112,-51,169,-130xm299,-364v2,-37,-1,-64,-40,-64v-20,0,-35,4,-66,17v-42,53,-52,77,-66,154","w":380},{"d":"679,-688r-25,158r-45,0r13,-80r-194,0r-91,573r100,0r-5,37r-279,0r6,-37r100,0r91,-573r-194,0r-13,80r-45,0r26,-158r44,0r-4,28r466,0r4,-28r45,0","w":600},{"d":"308,-394r-7,39r-186,0r7,-39r60,0r35,-215r-69,32r-20,-39r139,-62r30,0r-47,284r58,0","w":255},{"d":"272,-523r-53,0r-107,-161r93,0xm280,-159v-58,83,-82,110,-117,137v-20,16,-33,22,-66,30v-18,-52,-16,-61,-7,-121r44,-284r-84,0r0,-19r138,-47r26,0r-63,398v46,-36,66,-67,100,-113","w":281},{"d":"488,-461v-15,42,-30,63,-71,102r-292,278v94,-4,116,3,246,36r60,-71r40,16v-72,108,-121,134,-231,100r-147,-46r-52,54r-33,0v11,-43,17,-53,83,-115r271,-258v-93,3,-93,1,-210,-43r-67,76r-33,-17v34,-50,64,-117,147,-112v76,5,138,38,205,54r47,-54r37,0","w":488},{"d":"374,-414r-36,59r-255,0r5,-35v60,-49,210,-131,210,-205v0,-26,-16,-40,-42,-40v-30,0,-54,13,-98,56r-25,-31v58,-57,90,-73,139,-73v55,0,93,33,93,83v0,79,-114,144,-174,186r183,0","w":300},{"d":"524,-416r-7,41r-142,151r94,151r-6,42r-202,-193xm323,-416r-6,41r-142,151r94,151r-7,42r-201,-193"},{"d":"724,-713r-24,34v-22,-26,-55,-18,-97,-19r-118,717v-19,145,-104,237,-246,237v-63,0,-86,-12,-121,-62r78,-42v10,48,56,57,113,48r69,-445v-146,16,-248,-75,-248,-202v0,-157,133,-290,290,-290r151,0r15,-92r37,0r-14,92v52,1,80,-6,115,24xm565,-699r-77,0r-139,886v58,-35,92,-95,107,-188","w":644},{"d":"286,-624v0,50,-56,126,-139,188r-20,-31v57,-40,79,-68,79,-99v0,-27,-10,-39,-43,-49v23,-43,41,-57,72,-57v31,0,51,19,51,48","w":250},{"d":"358,-523r-53,0r-107,-161r93,0xm53,-172v0,-128,105,-293,234,-293v86,0,147,81,147,195v0,113,-111,283,-236,282v-84,0,-145,-78,-145,-184xm267,-420v-68,-1,-134,110,-135,227v0,91,38,159,89,159v70,0,135,-111,135,-231v0,-86,-39,-155,-89,-155","w":446},{"d":"80,204v74,0,189,-107,189,-224v0,-84,-54,-125,-144,-115r10,-38v97,-52,144,-112,144,-183v0,-43,-21,-64,-64,-64v-30,0,-50,10,-93,50r-25,-30v49,-51,91,-70,152,-70v70,0,110,37,110,103v0,71,-40,125,-127,173v71,1,114,54,114,140v0,136,-143,309,-295,309v-34,0,-56,-8,-100,-37r40,-53v50,33,63,39,89,39","w":403},{"d":"51,-123v0,-148,86,-342,232,-342v40,0,62,8,98,34r9,-33r55,0r-9,50v41,-39,68,-51,109,-51v62,0,115,32,109,85r-253,195v-8,63,4,137,56,137v46,0,108,-47,171,-130r30,25v-56,71,-88,104,-142,134v-62,34,-87,43,-157,21v-53,-59,-32,-117,-27,-198v-49,110,-125,195,-232,209v-35,-17,-49,-56,-49,-136xm576,-376v4,-63,-57,-54,-106,-31v-47,50,-51,92,-64,164xm367,-376v-36,-37,-60,-51,-89,-51v-80,0,-150,129,-150,276v0,54,12,94,27,94v116,-58,170,-173,212,-319","w":657},{"d":"102,-444v0,-126,98,-293,234,-218r5,-18r53,0r-37,201v-4,21,-6,36,-6,50v17,-17,29,-31,51,-63r33,20v-50,70,-64,100,-135,125v-13,-43,-12,-61,-9,-104v-39,61,-95,105,-143,105v-33,0,-46,-43,-46,-98xm321,-612v-22,-22,-36,-29,-53,-29v-48,0,-97,79,-97,178v0,51,2,70,33,44v62,-49,93,-103,117,-193","w":350},{"d":"129,-319r-58,0r0,-425r58,0r0,425xm129,256r-58,0r0,-435r58,0r0,435","w":200},{"d":"523,-159v-58,82,-82,110,-118,138v-22,16,-34,22,-65,29v-18,-53,-16,-62,-7,-120r39,-251v0,-19,-6,-30,-17,-30v-16,0,-36,16,-71,54v-66,71,-73,82,-97,117v-48,71,-53,129,-65,222r-68,0r106,-671r-84,0r0,-18r138,-48r25,0r-78,494v53,-81,94,-129,145,-173v33,-28,71,-47,95,-47v51,0,46,64,36,128r-44,270v46,-35,67,-65,100,-113","w":520},{"d":"445,-624v0,50,-56,126,-139,188r-20,-31v58,-40,79,-68,79,-99v0,-27,-10,-39,-42,-49v22,-43,40,-57,71,-57v31,0,51,19,51,48xm286,-624v0,50,-56,126,-139,188r-20,-31v57,-40,79,-68,79,-99v0,-27,-10,-39,-43,-49v23,-43,41,-57,72,-57v31,0,51,19,51,48","w":409},{"d":"563,-626r-70,64v-28,-36,-36,-43,-71,-70r-22,2r-40,260v121,75,154,115,154,183v0,104,-93,189,-215,197r-9,58r-46,0r9,-55v-86,-5,-120,-15,-171,-50r67,-66v27,37,35,45,73,72r39,-3r43,-274v-88,-48,-149,-116,-149,-179v0,-90,97,-178,207,-187r9,-58r46,0r-9,57v62,2,93,12,155,49xm354,-625v-72,17,-113,62,-113,123v0,40,14,59,77,104xm425,-177v0,-39,-20,-66,-79,-106r-39,242v85,-25,118,-64,118,-136","w":543},{"d":"618,-487v0,134,-145,250,-303,207r5,-30v121,20,214,-85,214,-201v0,-68,-37,-103,-106,-103r-98,0r-92,577r85,0r-6,37r-237,0r5,-37r76,0r93,-586r-76,0r6,-37r256,0v108,0,178,68,178,173","w":600},{"d":"335,-427v0,32,-26,58,-58,58v-33,0,-59,-26,-59,-58v0,-33,26,-59,59,-59v32,0,58,26,58,59xm525,-208r-500,0r0,-57r500,0r0,57xm335,-48v0,33,-26,59,-58,59v-33,0,-59,-26,-59,-59v0,-32,26,-58,59,-58v32,0,58,26,58,58","w":550},{"d":"308,-394r-7,39r-186,0r7,-39r60,0r35,-215r-69,32r-20,-39r139,-62r30,0r-47,284r58,0xm647,-687r-463,733r-71,0r463,-733r71,0xm688,-55r-39,54r-50,0r-24,165r-63,0r25,-165r-196,0r3,-23r277,-314r27,0r-41,283r81,0xm567,-210r-136,155r113,0","w":769},{"d":"481,-419r-63,59v-15,-28,-20,-34,-41,-57r-129,371v69,21,78,7,164,-29r15,40v-88,45,-110,52,-199,46r-27,75r-37,0r29,-83v-82,-20,-130,-83,-130,-170v0,-168,127,-303,294,-298r26,-75r37,0r-27,78v35,6,51,13,88,43xm344,-428v-104,3,-192,105,-192,221v0,60,21,107,64,144","w":443},{"d":"345,-360v-22,-31,-48,-63,-83,-63v-22,0,-39,5,-76,21v-48,84,-64,136,-64,209v0,91,23,145,60,145v40,0,92,-40,168,-130r27,25v-79,97,-93,117,-195,150v-33,10,-49,11,-89,11v-35,-46,-47,-80,-47,-139v-3,-234,180,-425,354,-289","w":377},{"d":"431,-573v0,28,-25,51,-56,51v-24,0,-44,-22,-44,-50v0,-28,25,-51,55,-51v25,0,45,22,45,50xm256,-573v0,28,-25,51,-56,51v-24,0,-44,-22,-44,-50v0,-28,25,-51,55,-51v25,0,45,22,45,50","w":406},{"d":"312,141v-2,83,-114,110,-200,72r27,-51v22,19,52,33,71,33v22,0,39,-17,39,-39v0,-38,-34,-68,-78,-66r69,-79v-131,-3,38,0,38,0r-40,51v45,11,74,41,74,79","w":417},{"d":"400,-418r-55,60v-53,-74,-74,-76,-160,-41v-47,81,-64,135,-64,207v0,83,25,145,58,145v42,0,99,-43,171,-130r27,24v-70,91,-94,115,-193,150r-27,31v49,6,75,34,75,79v1,79,-112,111,-191,71r26,-51v22,23,43,33,65,33v27,0,48,-19,48,-44v0,-37,-20,-52,-80,-64r40,-47v-20,3,-25,4,-47,4v-40,-57,-49,-81,-49,-139v-2,-232,180,-418,356,-288","w":377},{"d":"525,-109r-62,0r0,-163r-438,0r0,-56r500,0r0,219","w":550},{"d":"445,-522r-44,0r-72,-88r-99,88r-49,0r139,-165r43,0xm549,-159v-59,83,-82,109,-117,137v-22,17,-34,23,-66,30v-31,-71,2,-143,8,-218v-85,132,-181,221,-239,221v-28,0,-45,-23,-45,-60v0,-104,37,-242,52,-348r-83,0r0,-19r137,-47r26,0r-60,373v0,19,7,30,18,30v47,-4,221,-201,222,-312r11,-81r67,0r-61,388v45,-34,65,-67,100,-113","w":545},{"d":"818,-686r-122,118v163,244,-70,581,-325,581v-78,0,-138,-26,-190,-80r-119,116r-26,-25r120,-117v-166,-246,69,-579,325,-579v76,0,140,25,191,77r121,-117xm618,-543v-34,-52,-84,-78,-149,-78v-181,0,-343,258,-255,472xm661,-394v0,-47,-6,-72,-25,-115r-404,392v51,64,86,84,148,84v150,0,281,-168,281,-361","w":749},{"d":"497,-607v0,71,-85,154,-143,197v41,50,127,125,127,194v0,123,-111,229,-239,229v-108,0,-167,-55,-167,-154v0,-64,37,-128,107,-185r76,-62v-39,-44,-99,-96,-99,-170v0,-97,92,-181,199,-181v80,0,139,56,139,132xm434,-614v0,-54,-31,-87,-82,-87v-101,0,-149,141,-80,208r55,56v50,-38,107,-102,107,-177xm249,-25v124,0,213,-161,110,-252r-74,-81r-69,60v-48,42,-75,100,-75,161v0,71,39,112,108,112","w":510},{"d":"965,-684r-25,157r-45,0r14,-87r-238,0r-40,256r190,0r11,-74r45,0r-31,196r-44,0r12,-76r-190,0r-42,266r246,0r14,-87r45,0r-21,133r-386,0v-38,2,-66,12,-106,12v-154,0,-273,-124,-273,-287v0,-222,202,-387,452,-386r363,1r3,-25xm570,-524v14,-66,-19,-98,-97,-98v-157,0,-281,157,-281,355v0,140,71,233,180,233v92,0,124,-22,135,-93","w":926},{"d":"709,-779v-73,71,-190,77,-272,25v-51,-15,-84,-5,-132,26r-18,-21v67,-63,166,-77,240,-31v59,22,106,25,162,-17xm752,-387v0,208,-182,400,-380,400v-152,0,-273,-127,-273,-285v0,-209,182,-400,381,-400v157,0,272,120,272,285xm661,-397v0,-143,-71,-230,-190,-230v-155,0,-280,160,-280,359v0,141,73,233,186,233v160,0,284,-159,284,-362","w":752},{"d":"1015,-660r-6,37r-46,0r-352,640r-6,0r-81,-335r-184,335r-11,0r-152,-640r-61,0r6,-37r203,0r-6,37r-62,0r115,486r136,-248r-57,-238r-64,0r6,-37r366,0r-5,37r-62,0r-114,209r65,277r267,-486r-62,0r6,-37r161,0xm638,-623r-110,0r34,142","w":942},{"d":"308,-394r-7,39r-186,0r7,-39r60,0r35,-215r-69,32r-20,-39r139,-62r30,0r-47,284r58,0xm703,-59r-35,59r-255,0r5,-35v60,-49,209,-131,209,-205v0,-26,-15,-40,-41,-40v-30,0,-54,13,-98,56r-25,-31v58,-57,89,-73,139,-73v55,0,93,33,93,83v0,78,-114,144,-174,186r182,0xm646,-687r-462,733r-71,0r463,-733r70,0","w":769},{"d":"436,-522r-44,0r-71,-88r-100,88r-48,0r138,-165r44,0xm49,-123v0,-147,85,-342,232,-342v40,0,62,8,98,34r9,-33r55,0r-51,287v-8,45,-8,62,-8,102v36,-34,54,-56,86,-105r30,19v-58,85,-91,139,-171,170v-23,-67,-11,-139,1,-205v-53,120,-149,209,-226,209v-35,0,-55,-50,-55,-136xm364,-376v-35,-37,-59,-51,-88,-51v-80,0,-150,129,-150,276v0,54,11,94,27,94v116,-58,170,-173,211,-319"},{"d":"410,-65v46,-36,65,-65,100,-113r30,20v-63,87,-82,109,-118,136v-22,17,-34,23,-65,30v-18,-53,-16,-62,-7,-120r39,-251v0,-19,-6,-30,-18,-30v-15,0,-35,15,-70,54v-71,77,-75,83,-98,118v-45,70,-53,130,-64,221r-68,0r63,-397r-84,0r0,-19r136,-47r26,0r-35,220v87,-133,182,-220,240,-220v53,0,47,65,37,128","w":540},{"d":"560,-725v0,28,-25,51,-56,51v-25,0,-45,-22,-45,-50v0,-28,25,-51,56,-51v25,0,45,22,45,50xm385,-725v0,28,-25,51,-56,51v-25,0,-45,-22,-45,-50v0,-28,25,-51,56,-51v24,0,45,22,45,50xm672,-37r-6,37r-234,0r6,-37r85,0r-41,-181r-252,0r-101,181r78,0r-5,37r-197,0r6,-37r65,0r362,-644r17,0r148,644r69,0xm472,-265r-61,-275r-155,275r216,0","w":672},{"d":"531,-741v0,45,-40,81,-89,81v-39,0,-71,-35,-71,-79v0,-44,40,-81,88,-81v40,0,72,35,72,79xm672,-37r-6,37r-234,0r6,-37r85,0r-41,-181r-252,0r-101,181r78,0r-5,37r-197,0r6,-37r65,0r362,-644r17,0r148,644r69,0xm446,-694v59,5,68,-91,10,-92v-59,-5,-68,91,-10,92xm472,-265r-61,-275r-155,275r216,0","w":672},{"d":"595,-838r-185,115r-55,0r133,-115r107,0xm617,-688r-25,159r-45,0r14,-85r-230,0r-41,256r183,0r12,-75r45,-1r-31,198r-46,0r13,-77r-183,0r-42,268r239,0r14,-88r45,0r-21,133r-437,0r6,-37r75,0r93,-586r-75,0r5,-37r382,0r5,-28r45,0","w":581},{"d":"272,-744r-158,1000r-59,0r158,-1000r59,0","w":250},{"d":"286,-547v0,67,-54,121,-122,121v-67,0,-121,-54,-121,-121v0,-67,54,-122,121,-122v68,0,122,55,122,122xm236,-547v0,-40,-32,-72,-72,-72v-39,0,-71,32,-71,72v0,39,32,71,71,71v40,0,72,-32,72,-71","w":333},{"d":"667,-458r-19,57r-112,0r-46,130r114,0r-19,57r-115,0r-75,214r-62,0r75,-214r-143,0r-77,214r-61,0r77,-214r-115,0r19,-57r116,0r47,-130r-116,0r19,-57r117,0r71,-200r60,0r-70,200r142,0r71,-200r62,0r-71,200r111,0xm475,-401r-144,0r-46,130r143,0","w":650},{"d":"618,-714r-43,0r-76,-59r-95,59r-49,0r130,-112r44,0xm752,-387v0,208,-182,400,-380,400v-152,0,-273,-127,-273,-285v0,-209,182,-400,381,-400v157,0,272,120,272,285xm661,-397v0,-143,-71,-230,-190,-230v-155,0,-280,160,-280,359v0,141,73,233,186,233v160,0,284,-159,284,-362","w":752},{"d":"543,-265r-9,57r-500,0r9,-57r500,0"},{"d":"619,-843r-185,115r-55,0r133,-115r107,0xm672,-37r-6,37r-234,0r6,-37r85,0r-41,-181r-252,0r-101,181r78,0r-5,37r-197,0r6,-37r65,0r362,-644r17,0r148,644r69,0xm472,-265r-61,-275r-155,275r216,0","w":672},{"d":"725,-660r-6,37r-78,0r-260,260r223,326r61,0r-6,37r-131,0r-236,-343r281,-280r-67,0r6,-37r213,0xm412,-660r-5,37r-76,0r-93,586r76,0r-6,37r-228,0r5,-38r76,0r92,-585r-75,0r6,-37r228,0","w":653},{"d":"424,-660r-184,161r-53,0r144,-161r93,0","w":333},{"d":"365,-524v-53,0,-95,-48,-131,-48v-27,0,-49,10,-82,38r-21,-17v71,-81,136,-95,213,-44v48,32,89,30,139,-20r22,16v-57,58,-88,75,-140,75xm410,-65v46,-36,65,-65,100,-113r30,20v-63,87,-82,109,-118,136v-22,17,-34,23,-65,30v-18,-53,-16,-62,-7,-120r39,-251v0,-19,-6,-30,-18,-30v-15,0,-35,15,-70,54v-71,77,-75,83,-98,118v-45,70,-53,130,-64,221r-68,0r63,-397r-84,0r0,-19r136,-47r26,0r-35,220v87,-133,182,-220,240,-220v53,0,47,65,37,128","w":540},{"d":"131,-226v46,1,125,-69,125,-145v0,-58,-41,-78,-103,-71r10,-38v70,-36,100,-75,100,-119v0,-25,-12,-36,-38,-36v-18,0,-30,5,-65,37r-27,-31v40,-41,71,-55,116,-55v53,0,85,28,85,77v0,47,-25,83,-74,113v41,11,65,48,65,100v0,98,-104,217,-214,217v-26,0,-43,-6,-81,-30r37,-48v41,26,48,29,64,29","w":282},{"d":"507,-718v-65,0,-97,-41,-153,-41v-32,0,-58,9,-95,33r-17,-21v66,-63,165,-78,239,-31v60,22,106,26,163,-17r20,18v-51,43,-94,59,-157,59xm672,-37r-6,37r-234,0r6,-37r85,0r-41,-181r-252,0r-101,181r78,0r-5,37r-197,0r6,-37r65,0r362,-644r17,0r148,644r69,0xm472,-265r-61,-275r-155,275r216,0","w":672},{"d":"790,-660r-6,37r-76,0r-100,634r-24,0r-302,-533r-77,485r75,0r-6,37r-202,0r5,-37r76,0r84,-561r-13,-25r-74,0r6,-37r137,0r290,506r74,-469r-76,0r6,-37r203,0","w":737},{"d":"393,-499r-54,0r-107,-161r93,0","w":258},{"d":"547,-833r-132,125r-44,0r-87,-125r43,0r77,58r94,-58r49,0xm549,-680r-27,171r-44,0r12,-81v-85,-77,-247,-16,-247,87v0,41,34,77,130,138v102,66,136,110,136,176v0,110,-99,202,-218,202v-58,0,-101,-15,-149,-50r-7,46r-44,0r28,-180r45,0r-13,83v43,36,71,47,119,47v93,0,164,-54,164,-126v0,-47,-33,-84,-123,-138v-109,-65,-145,-109,-145,-177v0,-106,94,-190,214,-190v50,0,87,10,118,33r7,-41r44,0","w":562},{"d":"715,-660r-6,37r-49,0r-261,287r160,299r67,0r-6,37r-262,0r6,-37r103,0r-125,-236r-215,236r85,0r-6,37r-204,0r6,-37r50,0r259,-285r-159,-301r-66,0r6,-37r259,0r-6,37r-103,0r126,239r218,-239r-87,0r6,-37r204,0","w":623},{"d":"412,-660r-5,37r-76,0r-93,586r76,0r-6,37r-228,0r5,-37r76,0r93,-586r-76,0r6,-37r228,0","w":388},{"d":"453,-690r-164,161r-53,0r124,-161r93,0xm429,-362v22,96,-187,319,-209,403r-44,169r71,0r-7,33r-212,0r6,-33r73,0v19,-92,49,-171,60,-270v-9,-108,-48,-232,-68,-337r-81,0r0,-27r136,-40r85,383v41,-59,131,-184,131,-241v0,-30,-18,-58,-58,-92r72,-52v32,30,45,60,45,104","w":425},{"d":"575,-763v0,28,-25,51,-56,51v-25,0,-45,-22,-45,-50v0,-28,25,-51,56,-51v25,0,45,22,45,50xm352,-763v0,28,-25,51,-56,51v-24,0,-44,-22,-44,-50v0,-28,24,-51,55,-51v25,0,45,22,45,50xm696,-660r-6,37r-47,0r-247,321r-42,265r75,0r-6,37r-228,0r6,-37r75,0r44,-280r-150,-306r-66,0r6,-37r252,0r-6,37r-99,0r129,260r199,-260r-85,0r6,-37r190,0","w":612},{"d":"464,-308v0,168,-110,321,-233,321v-25,0,-57,-9,-86,-25r-34,222r88,0r-6,33r-232,0r6,-33r74,0r140,-881r-83,0r0,-18r138,-48r25,0r-72,449v66,-102,154,-177,206,-177v40,0,69,66,69,157xm384,-298v0,-55,-13,-89,-34,-89v-44,0,-168,144,-181,225r-15,93v41,36,49,40,79,40v79,0,151,-129,151,-269","w":484},{"d":"722,-264r-5,37r-75,0r-33,205v-57,25,-108,35,-190,35v-195,0,-322,-121,-322,-307v1,-250,284,-466,543,-344r6,-42r45,0r-27,170r-44,0r11,-74v-204,-124,-443,63,-443,298v0,193,161,288,349,231r27,-172r-85,0r6,-37r237,0","w":745},{"d":"692,-48v0,33,-26,59,-59,59v-32,0,-58,-26,-58,-59v0,-32,26,-58,58,-58v33,0,59,26,59,58xm442,-48v0,33,-26,59,-58,59v-33,0,-59,-26,-59,-59v0,-32,26,-58,59,-58v32,0,58,26,58,58xm184,-48v0,33,-27,59,-59,59v-32,0,-59,-26,-59,-59v0,-32,27,-58,59,-58v32,0,59,26,59,58","w":750},{"d":"382,-593v0,45,-40,81,-89,81v-39,0,-71,-35,-71,-79v0,-44,39,-81,88,-81v39,0,72,35,72,79xm49,-123v0,-147,85,-342,232,-342v40,0,62,8,98,34r9,-33r55,0r-51,287v-8,45,-8,62,-8,102v36,-34,54,-56,86,-105r30,19v-58,85,-91,139,-171,170v-23,-67,-11,-139,1,-205v-53,120,-149,209,-226,209v-35,0,-55,-50,-55,-136xm348,-593v0,-25,-19,-45,-41,-45v-60,0,-68,91,-10,92v28,0,51,-21,51,-47xm364,-376v-35,-37,-59,-51,-88,-51v-80,0,-150,129,-150,276v0,54,11,94,27,94v116,-58,170,-173,211,-319"},{"d":"335,-523r-53,0r-108,-161r93,0xm380,-153v-71,98,-164,160,-238,160v-13,0,-32,-2,-56,-7v-29,-39,-40,-76,-40,-130v0,-179,102,-335,218,-335v74,0,122,38,113,109r-254,149r0,53v0,71,18,105,57,105v46,0,112,-51,169,-130xm299,-364v2,-37,-1,-64,-40,-64v-20,0,-35,4,-66,17v-42,53,-52,77,-66,154","w":380},{"d":"645,-839r-184,115r-56,0r133,-115r107,0xm752,-387v0,208,-182,400,-380,400v-152,0,-273,-127,-273,-285v0,-209,182,-400,381,-400v157,0,272,120,272,285xm661,-397v0,-143,-71,-230,-190,-230v-155,0,-280,160,-280,359v0,141,73,233,186,233v160,0,284,-159,284,-362","w":752},{"d":"516,-728r-56,0r-148,-115r107,0xm672,-37r-6,37r-234,0r6,-37r85,0r-41,-181r-252,0r-101,181r78,0r-5,37r-197,0r6,-37r65,0r362,-644r17,0r148,644r69,0xm472,-265r-61,-275r-155,275r216,0","w":672},{"d":"652,-716r-43,0r-77,-59r-94,59r-49,0r130,-112r44,0xm832,-660r-5,37r-76,0r-60,382v-23,168,-113,254,-282,254v-145,0,-242,-88,-220,-227r65,-409r-76,0r6,-37r228,0r-5,37r-76,0r-60,378v-25,122,30,206,150,206v121,0,199,-85,218,-207r60,-377r-75,0r5,-37r203,0","w":780},{"d":"251,-410v0,33,-29,59,-65,59v-28,0,-51,-25,-51,-56v0,-32,29,-58,63,-58v29,0,53,24,53,55xm194,-56v0,50,-56,126,-139,188r-20,-31v58,-41,79,-67,79,-99v0,-26,-10,-39,-43,-49v23,-43,41,-57,72,-57v31,0,51,19,51,48","w":250},{"d":"675,-753v0,28,-25,51,-56,51v-25,0,-45,-22,-45,-49v0,-29,25,-52,56,-52v25,0,45,23,45,50xm445,-753v0,28,-25,51,-56,51v-25,0,-45,-22,-45,-49v0,-29,25,-52,55,-52v25,0,46,23,46,50xm752,-387v0,208,-182,400,-380,400v-152,0,-273,-127,-273,-285v0,-209,182,-400,381,-400v157,0,272,120,272,285xm661,-397v0,-143,-71,-230,-190,-230v-155,0,-280,160,-280,359v0,141,73,233,186,233v160,0,284,-159,284,-362","w":752},{"d":"49,-123v0,-177,126,-419,318,-320r36,-228r-84,0r0,-18r138,-48r25,0r-105,660v44,-36,55,-51,88,-104r32,17v-44,69,-74,104,-124,143v-22,17,-31,21,-57,29v-30,-56,8,-141,14,-204v-54,121,-149,208,-225,208v-36,0,-56,-48,-56,-135xm364,-376v-35,-37,-59,-51,-88,-51v-80,0,-150,129,-150,276v0,54,11,94,27,94v116,-58,170,-173,211,-319","w":488},{"d":"906,-337r-193,0r0,-28r63,0r0,-241r-123,269r-122,-264r0,236r59,0r0,28r-151,0r0,-28r58,0r0,-266r-58,0r0,-29r127,0r98,204r95,-204r147,0r0,29r-63,0r0,266r63,0r0,28xm404,-564r-33,0r0,-62r-93,0r0,261r63,0r0,28r-192,0r0,-28r62,0r0,-261r-92,0r0,62r-33,0r0,-110r33,0r0,14r252,0r0,-14r33,0r0,110","w":1000},{"d":"494,-589v0,95,-55,164,-233,289v27,36,35,44,70,70r-63,58v-51,-59,-64,-76,-91,-127v129,-92,133,-84,207,-160v68,-70,59,-203,-72,-203v-45,0,-67,10,-112,50v20,24,28,30,61,53r-66,61v-80,-75,-83,-84,-19,-150v56,-57,112,-79,175,-79v86,0,143,55,143,138xm288,-48v0,32,-28,59,-64,59v-28,0,-51,-25,-51,-57v0,-32,29,-58,63,-58v29,0,52,25,52,56","w":479},{"d":"380,-523r-54,0r-107,-161r93,0xm49,-123v0,-147,85,-342,232,-342v40,0,62,8,98,34r9,-33r55,0r-51,287v-8,45,-8,62,-8,102v36,-34,54,-56,86,-105r30,19v-58,85,-91,139,-171,170v-23,-67,-11,-139,1,-205v-53,120,-149,209,-226,209v-35,0,-55,-50,-55,-136xm364,-376v-35,-37,-59,-51,-88,-51v-80,0,-150,129,-150,276v0,54,11,94,27,94v116,-58,170,-173,211,-319"},{"d":"310,-737r-120,545r-40,0r51,-504xm204,-47v0,32,-29,58,-64,58v-27,0,-50,-25,-50,-56v0,-32,28,-58,63,-58v28,0,51,25,51,56","w":282},{"d":"595,-353v0,134,-145,250,-303,207r5,-30v121,20,214,-85,214,-201v0,-68,-37,-103,-106,-103r-98,0r-69,443r85,0r-6,37r-237,0r5,-37r76,0r93,-586r-76,0r6,-37r238,0r-6,37r-85,0r-17,97r103,0v108,0,178,68,178,173","w":600},{"d":"696,-660r-6,37r-47,0r-247,321r-42,265r75,0r-6,37r-228,0r6,-37r75,0r44,-280r-150,-306r-66,0r6,-37r252,0r-6,37r-99,0r129,260r199,-260r-85,0r6,-37r190,0","w":612},{"d":"247,-410v0,33,-29,59,-65,59v-27,0,-50,-25,-50,-56v0,-32,28,-58,63,-58v29,0,52,24,52,55xm190,-48v0,32,-29,59,-65,59v-28,0,-50,-25,-50,-57v0,-32,28,-58,63,-58v29,0,52,25,52,56","w":250},{"d":"539,-719v-65,0,-97,-41,-154,-41v-31,0,-57,9,-94,33r-17,-21v66,-63,165,-78,239,-31v60,22,106,26,163,-17r20,18v-51,43,-94,59,-157,59xm790,-660r-6,37r-76,0r-100,634r-24,0r-302,-533r-77,485r75,0r-6,37r-202,0r5,-37r76,0r84,-561r-13,-25r-74,0r6,-37r137,0r290,506r74,-469r-76,0r6,-37r203,0","w":737},{"d":"705,-832r-184,115r-56,0r133,-115r107,0xm832,-660r-5,37r-76,0r-60,382v-23,168,-113,254,-282,254v-145,0,-242,-88,-220,-227r65,-409r-76,0r6,-37r228,0r-5,37r-76,0r-60,378v-25,122,30,206,150,206v121,0,199,-85,218,-207r60,-377r-75,0r5,-37r203,0","w":780},{"d":"502,-125v0,76,-72,138,-160,138v-51,0,-92,-15,-146,-51r47,-60v47,53,76,72,112,72v43,0,81,-36,81,-77v0,-32,-19,-59,-64,-93v-84,-64,-98,-82,-98,-124v0,-52,22,-88,102,-165v38,-36,48,-55,48,-89v0,-63,-44,-119,-93,-119v-57,0,-88,44,-105,146r-98,602v-25,161,-175,267,-302,156r54,-60v38,40,48,47,85,61v62,-30,79,-64,100,-193r97,-589v16,-100,85,-161,181,-161v83,0,144,52,144,123v0,109,-147,168,-147,269v0,28,14,45,79,92v58,41,83,79,83,122","w":550},{"d":"436,-601r-10,62r-272,0r10,-62r272,0","w":406},{"d":"534,-726r-44,0r-76,-60r-95,60r-48,0r130,-112r43,0xm617,-688r-25,159r-45,0r14,-85r-230,0r-41,256r183,0r12,-75r45,-1r-31,198r-46,0r13,-77r-183,0r-42,268r239,0r14,-88r45,0r-21,133r-437,0r6,-37r75,0r93,-586r-75,0r5,-37r382,0r5,-28r45,0","w":581},{"d":"348,-722r-55,0r-149,-115r107,0xm400,-660r-6,37r-75,0r-93,586r75,0r-5,37r-229,0r6,-37r75,0r93,-586r-75,0r6,-37r228,0","w":372},{"d":"458,-641v-58,40,-79,67,-79,98v0,27,10,39,42,50v-22,43,-40,57,-71,57v-31,0,-51,-19,-51,-49v0,-50,56,-125,139,-187xm298,-641v-57,40,-79,67,-79,98v0,27,11,39,43,50v-22,43,-40,57,-71,57v-31,0,-51,-19,-51,-49v0,-50,56,-125,139,-187","w":409},{"d":"191,-49v0,33,-29,60,-65,60v-29,0,-52,-26,-52,-58v0,-33,29,-60,65,-60v29,0,52,26,52,58","w":250},{"d":"627,-94v-73,71,-131,107,-245,107v-165,0,-284,-125,-284,-300v0,-257,286,-474,543,-350r7,-43r45,0r-27,170r-45,0r12,-74v-206,-124,-445,61,-445,295v0,147,87,250,211,250v67,0,120,-25,190,-92","w":667},{"d":"549,-680r-27,171r-44,0r12,-81v-85,-77,-247,-16,-247,87v0,41,34,77,130,138v102,66,136,110,136,176v0,110,-99,202,-218,202v-58,0,-101,-15,-149,-50r-7,46r-44,0r28,-180r45,0r-13,83v43,36,71,47,119,47v93,0,164,-54,164,-126v0,-47,-33,-84,-123,-138v-109,-65,-145,-109,-145,-177v0,-106,94,-190,214,-190v50,0,87,10,118,33r7,-41r44,0","w":562},{"d":"273,-449v0,32,-28,58,-63,58v-28,0,-51,-25,-51,-56v0,-32,28,-58,63,-58v28,0,51,25,51,56xm212,-301r-50,504r-109,40r120,-544r39,0","w":282},{"d":"522,-133r-21,133r-437,0r6,-37r75,0r40,-255r-91,49r-15,-38r114,-60r45,-282r-75,0r5,-37r244,0r-5,37r-92,0r-37,237r101,-54r16,38r-125,66r-46,291r239,0r14,-88r45,0","w":531},{"d":"471,-744r-5,33v-79,-7,-114,18,-127,97r-38,236v-14,89,-40,119,-113,128v78,5,84,56,73,128r-41,273v-1,57,40,70,99,65r-6,40v-111,10,-184,-20,-166,-134r38,-241v13,-59,-6,-118,-58,-117r-38,0r5,-28v85,8,117,-25,132,-117r37,-230v17,-109,86,-142,208,-133","w":409},{"d":"424,-715r-43,0r-76,-59r-95,59r-49,0r130,-112r44,0xm400,-660r-6,37r-75,0r-93,586r75,0r-5,37r-229,0r6,-37r75,0r93,-586r-75,0r6,-37r228,0","w":372},{"d":"731,-370v0,193,-177,370,-370,370r-279,0r6,-37r75,0r93,-586r-76,0r6,-37r281,0v151,0,264,124,264,290xm643,-386v0,-144,-69,-223,-194,-223r-119,0r-88,559r106,0v164,0,295,-150,295,-336","w":740},{"d":"691,-765v0,28,-25,51,-56,51v-25,0,-45,-22,-45,-50v0,-28,25,-51,56,-51v25,0,45,22,45,50xm465,-765v0,28,-25,51,-56,51v-25,0,-45,-22,-45,-50v0,-28,25,-51,56,-51v25,0,45,22,45,50xm832,-660r-5,37r-76,0r-60,382v-23,168,-113,254,-282,254v-145,0,-242,-88,-220,-227r65,-409r-76,0r6,-37r228,0r-5,37r-76,0r-60,378v-25,122,30,206,150,206v121,0,199,-85,218,-207r60,-377r-75,0r5,-37r203,0","w":780},{"d":"321,243r-59,0r-108,-903r59,0","w":409},{"d":"506,-684r-184,161r-53,0r144,-161r93,0xm549,-159v-59,83,-82,109,-117,137v-22,17,-34,23,-66,30v-31,-71,2,-143,8,-218v-85,132,-181,221,-239,221v-28,0,-45,-23,-45,-60v0,-104,37,-242,52,-348r-83,0r0,-19r137,-47r26,0r-60,373v0,19,7,30,18,30v47,-4,221,-201,222,-312r11,-81r67,0r-61,388v45,-34,65,-67,100,-113","w":545},{"d":"522,-730v0,28,-25,51,-56,51v-24,0,-44,-22,-44,-49v0,-29,24,-52,55,-52v25,0,45,23,45,50xm347,-730v0,28,-25,51,-56,51v-24,0,-44,-22,-44,-49v0,-29,24,-52,55,-52v25,0,45,23,45,50xm617,-688r-25,159r-45,0r14,-85r-230,0r-41,256r183,0r12,-75r45,-1r-31,198r-46,0r13,-77r-183,0r-42,268r239,0r14,-88r45,0r-21,133r-437,0r6,-37r75,0r93,-586r-75,0r5,-37r382,0r5,-28r45,0","w":581},{"d":"480,-684r-184,161r-53,0r144,-161r93,0xm49,-123v0,-147,85,-342,232,-342v40,0,62,8,98,34r9,-33r55,0r-51,287v-8,45,-8,62,-8,102v36,-34,54,-56,86,-105r30,19v-58,85,-91,139,-171,170v-23,-67,-11,-139,1,-205v-53,120,-149,209,-226,209v-35,0,-55,-50,-55,-136xm364,-376v-35,-37,-59,-51,-88,-51v-80,0,-150,129,-150,276v0,54,11,94,27,94v116,-58,170,-173,211,-319"},{"d":"654,-39r-6,39v-87,-2,-144,12,-178,-61r-111,-235r-80,0r-41,259r76,0r-6,37r-228,0r5,-37r76,0r93,-586r-76,0r6,-37r265,0v101,0,170,67,170,163v0,95,-71,172,-178,191r109,221v23,51,46,47,104,46xm530,-504v0,-76,-33,-110,-107,-110r-93,0r-43,272r81,0v96,0,162,-66,162,-162","w":654},{"d":"752,-387v0,208,-182,400,-380,400v-152,0,-273,-127,-273,-285v0,-209,182,-400,381,-400v157,0,272,120,272,285xm661,-397v0,-143,-71,-230,-190,-230v-155,0,-280,160,-280,359v0,141,73,233,186,233v160,0,284,-159,284,-362","w":752},{"w":250},{"d":"461,-573v0,28,-25,51,-56,51v-24,0,-44,-22,-44,-50v0,-28,25,-51,55,-51v25,0,45,22,45,50xm296,-573v0,28,-25,51,-56,51v-24,0,-44,-22,-44,-50v0,-28,25,-51,55,-51v25,0,45,22,45,50xm49,-123v0,-147,85,-342,232,-342v40,0,62,8,98,34r9,-33r55,0r-51,287v-8,45,-8,62,-8,102v36,-34,54,-56,86,-105r30,19v-58,85,-91,139,-171,170v-23,-67,-11,-139,1,-205v-53,120,-149,209,-226,209v-35,0,-55,-50,-55,-136xm364,-376v-35,-37,-59,-51,-88,-51v-80,0,-150,129,-150,276v0,54,11,94,27,94v116,-58,170,-173,211,-319"},{"d":"832,-660r-5,37r-76,0r-60,382v-23,168,-113,254,-282,254v-145,0,-242,-88,-220,-227r65,-409r-76,0r6,-37r228,0r-5,37r-76,0r-60,378v-25,122,30,206,150,206v121,0,199,-85,218,-207r60,-377r-75,0r5,-37r203,0","w":780},{"d":"602,-688r-25,159r-45,0r14,-85r-230,0r-41,256r183,0r12,-75r45,-1r-31,198r-46,0r13,-77r-183,0r-43,276r91,0r-6,37r-244,0r6,-37r75,0r93,-586r-75,0r5,-37r382,0r5,-28r45,0","w":571},{"d":"198,-56v0,50,-56,126,-139,188r-19,-31v57,-41,79,-67,79,-99v0,-26,-11,-39,-43,-49v22,-43,40,-57,71,-57v31,0,51,19,51,48","w":250},{"d":"326,-660r-7,46r-94,0r-129,812r94,0r-7,45r-152,0r143,-903r152,0","w":250},{"d":"910,-229v0,226,-183,410,-410,410v-227,0,-410,-184,-410,-410v0,-227,183,-411,410,-411v227,0,410,184,410,411xm846,-229v0,-192,-155,-347,-346,-347v-191,0,-346,155,-346,347v0,191,155,346,346,346v191,0,346,-155,346,-346xm717,0r-116,0r-117,-206r-47,0r0,169r69,0r0,37r-209,0r0,-37r70,0r0,-392r-70,0r0,-37r198,0v113,0,172,43,172,124v0,64,-36,106,-109,126r93,159v12,22,35,21,66,20r0,37xm591,-335v0,-78,-67,-97,-154,-90r0,178v85,7,154,-11,154,-88","w":1000},{"d":"1038,-265r-8,57r-1000,0r8,-57r1000,0","w":1000},{"d":"410,-660r-6,37r-76,0r-103,632v-16,101,-53,173,-113,211v-73,46,-135,50,-206,-13r55,-59v39,41,47,47,82,61v62,-27,80,-61,101,-192r105,-640r-75,0r6,-37r230,0","w":382},{"d":"416,216v22,0,49,-17,50,-41v0,-14,-9,-31,-26,-50r74,-44v58,93,-24,175,-142,175v-97,0,-124,-68,-213,-76v-48,51,-95,76,-146,76v-19,0,-32,-11,-32,-27v0,-34,62,-78,136,-96v35,-52,61,-160,84,-234r-126,0r16,-36r129,-22r137,-412v33,-98,110,-161,198,-161v56,0,103,32,103,69v0,44,-68,65,-81,21v-6,-22,-11,-50,-37,-50v-42,0,-89,57,-117,144r-126,389r192,0r-25,58r-187,0v-31,83,-38,160,-86,232v55,7,68,11,137,50v43,24,70,35,88,35","w":576},{"d":"522,-133r-21,133r-437,0r6,-37r75,0r93,-586r-75,0r5,-37r244,0r-5,37r-92,0r-91,578r239,0r14,-88r45,0","w":531},{"d":"630,-824r-165,115r-56,0r114,-115r107,0xm696,-660r-6,37r-47,0r-247,321r-42,265r75,0r-6,37r-228,0r6,-37r75,0r44,-280r-150,-306r-66,0r6,-37r252,0r-6,37r-99,0r129,260r199,-260r-85,0r6,-37r190,0","w":612},{"d":"258,-658r-35,226r-59,0r36,-226r58,0","w":250},{"d":"434,-664r-138,165r-44,0r-81,-165r43,0r72,88r99,-88r49,0xm488,-461v-15,42,-30,63,-71,102r-292,278v94,-4,116,3,246,36r60,-71r40,16v-72,108,-121,134,-231,100r-147,-46r-52,54r-33,0v11,-43,17,-53,83,-115r271,-258v-93,3,-93,1,-210,-43r-67,76r-33,-17v34,-50,64,-117,147,-112v76,5,138,38,205,54r47,-54r37,0","w":488},{"d":"288,-26v71,0,163,-109,160,-206v-3,-100,-65,-149,-174,-138r13,-38v134,-39,242,37,242,163v0,132,-124,258,-253,258v-110,0,-179,-90,-179,-232v0,-104,46,-240,117,-353v67,-106,160,-168,249,-168v41,0,69,10,110,39r-49,67v-32,-43,-55,-60,-85,-60v-139,0,-260,312,-260,473v0,114,45,195,109,195","w":551},{"d":"345,-154v99,-103,131,-210,137,-388r-105,0r17,-37r249,0r-16,37r-98,0v-15,187,-42,313,-161,422r85,124v42,62,58,77,81,77v17,0,31,-11,55,-44r31,21v-33,40,-73,83,-114,83v-35,0,-57,-18,-94,-72r-93,-137v-92,68,-124,85,-224,71v-27,-38,-40,-83,-40,-136v0,-138,71,-332,220,-332v77,0,128,32,119,100r-115,112xm322,-379v0,-30,-24,-52,-56,-52v-15,0,-23,2,-69,16v-48,77,-67,136,-67,212v2,196,56,187,167,104r-112,-168v90,-24,137,-62,137,-112","w":589},{"d":"168,-69v88,-68,96,-92,176,-203r0,-125r-72,0r0,-23r113,-43r25,0r0,398v75,-61,108,-92,143,-155v49,-87,82,-141,-21,-188r79,-58v42,35,57,61,57,96v0,53,-43,139,-111,222v-60,74,-95,102,-193,156r-20,0r0,-214v-79,107,-112,153,-216,214r-26,0r0,-405r-81,0r0,-19r122,-47r25,0r0,394","w":652},{"d":"53,-172v0,-128,105,-293,234,-293v86,0,147,81,147,195v0,113,-111,283,-236,282v-84,0,-145,-78,-145,-184xm267,-420v-68,-1,-134,110,-135,227v0,91,38,159,89,159v70,0,135,-111,135,-231v0,-86,-39,-155,-89,-155","w":446},{"d":"525,-273r-500,0r0,-56r500,0r0,56xm525,-134r-500,0r0,-57r500,0r0,57","w":550},{"d":"910,-243v0,227,-183,411,-410,411v-227,0,-410,-184,-410,-411v0,-226,183,-410,410,-410v227,0,410,184,410,410xm846,-243v0,-191,-155,-346,-346,-346v-191,0,-346,155,-346,346v0,192,155,347,346,347v191,0,346,-155,346,-347xm669,-28v-73,32,-105,41,-154,41v-148,0,-254,-105,-254,-251v0,-167,192,-307,357,-220r0,-28r49,0r0,144r-50,0r0,-69v-133,-87,-264,17,-266,171v-3,155,142,266,268,176r0,-71r50,0r0,107","w":1000},{"d":"368,-522v-52,10,-96,-49,-130,-49v-27,0,-49,11,-83,39r-21,-17v65,-66,104,-92,179,-68v25,17,52,41,92,41v33,0,42,-4,81,-37r22,16v-57,58,-88,75,-140,75xm49,-123v0,-147,85,-342,232,-342v40,0,62,8,98,34r9,-33r55,0r-51,287v-8,45,-8,62,-8,102v36,-34,54,-56,86,-105r30,19v-58,85,-91,139,-171,170v-23,-67,-11,-139,1,-205v-53,120,-149,209,-226,209v-35,0,-55,-50,-55,-136xm364,-376v-35,-37,-59,-51,-88,-51v-80,0,-150,129,-150,276v0,54,11,94,27,94v116,-58,170,-173,211,-319"},{"d":"165,-635v0,-41,27,-77,55,-76v54,13,26,135,-25,135v-17,0,-30,-27,-30,-59xm280,-159v-58,83,-82,110,-117,137v-20,16,-33,22,-66,30v-18,-52,-16,-61,-7,-121r44,-284r-84,0r0,-19r138,-47r26,0r-63,398v46,-36,66,-67,100,-113","w":281},{"d":"497,-454r-63,55v-29,-39,-39,-37,-75,-64v-77,-2,-128,62,-160,120r215,-1r-6,42r-226,0v-8,26,-15,59,-13,92r224,0r-6,41r-214,0v16,76,67,129,134,129v32,0,59,-9,119,-39r13,41v-73,42,-101,52,-164,52v-118,0,-189,-69,-194,-183r-71,0r5,-30r67,-11v3,-34,10,-64,20,-92r-71,0r5,-30r84,-11v50,-98,144,-161,252,-161v52,0,79,11,125,50","w":492},{"w":250},{"d":"500,-29r-42,41r-197,-196r-197,197r-42,-42r197,-197r-197,-197r42,-42r197,197r197,-197r42,42r-197,197","w":522},{"d":"511,0r-472,-210r0,-54r472,-210r0,63r-396,174r396,174r0,63","w":550},{"d":"61,256v93,-142,190,-386,188,-620v0,-111,-16,-222,-43,-296r44,0v48,83,82,220,82,334v-1,237,-111,448,-228,582r-43,0","w":409},{"d":"816,-162v0,96,-79,175,-175,175v-97,0,-175,-79,-175,-175v0,-97,78,-175,175,-175v96,0,175,78,175,175xm743,-687r-575,733r-53,0r559,-733r69,0xm384,-495v0,97,-78,175,-175,175v-96,0,-175,-78,-175,-175v0,-97,79,-176,175,-176v97,0,175,79,175,176xm755,-162v0,-64,-51,-115,-114,-115v-64,0,-115,51,-115,115v0,63,51,114,115,114v63,0,114,-51,114,-114xm324,-495v0,-63,-51,-115,-115,-115v-63,0,-114,52,-114,115v0,64,51,115,114,115v64,0,115,-51,115,-115","w":850},{"d":"320,-37r-6,37r-244,0r6,-37r86,0r55,-350r-108,52r-19,-40r187,-86r27,0r-67,424r83,0","w":365},{"d":"300,-155v-54,58,-98,97,-156,137v-23,16,-33,20,-62,26v-19,-44,-13,-66,-4,-120r45,-285r-83,0r0,-19r91,-30r22,-141r69,0r-23,144r95,0r-8,46r-94,0r-53,329v69,-48,85,-62,134,-112","w":292},{"d":"380,-153v-71,98,-164,160,-238,160v-13,0,-32,-2,-56,-7v-29,-39,-40,-76,-40,-130v0,-179,102,-335,218,-335v74,0,122,38,113,109r-254,149r0,53v0,71,18,105,57,105v46,0,112,-51,169,-130xm299,-364v2,-37,-1,-64,-40,-64v-20,0,-35,4,-66,17v-42,53,-52,77,-66,154","w":380},{"d":"422,-762v0,28,-25,51,-56,51v-25,0,-45,-22,-45,-50v0,-28,25,-51,56,-51v25,0,45,22,45,50xm282,-762v0,28,-25,51,-56,51v-24,0,-44,-22,-44,-50v0,-28,24,-51,55,-51v25,0,45,22,45,50xm400,-660r-6,37r-75,0r-93,586r75,0r-5,37r-229,0r6,-37r75,0r93,-586r-75,0r6,-37r228,0","w":372},{"d":"330,-433v-77,0,-164,107,-162,204v2,101,65,148,174,138r-13,38v-134,39,-243,-36,-242,-163v0,-131,123,-258,251,-258v113,0,181,89,181,236v0,191,-172,494,-357,494v-40,0,-69,-11,-109,-40r48,-67v32,44,55,60,86,60v133,0,252,-288,252,-458v0,-109,-45,-184,-109,-184","w":551},{"d":"693,-680r-27,170r-45,0r12,-74v-206,-124,-445,61,-445,295v0,147,87,250,211,250v67,0,120,-25,190,-92r38,37v-72,70,-124,96,-233,107r-40,51v45,9,65,30,65,71v0,84,-136,136,-218,83r32,-49v28,26,41,32,64,32v31,0,55,-22,55,-53v0,-31,-16,-42,-74,-56r76,-80v-150,-14,-256,-134,-256,-299v0,-257,286,-474,543,-350r7,-43r45,0","w":667},{"d":"711,-660r-6,37r-51,0r-218,279r146,0r-6,39r-165,0r-15,94r165,0r-7,42r-165,0r-21,132r76,0r-6,37r-238,0r5,-37r76,0r21,-132r-165,0r6,-42r166,0r14,-94r-165,0r7,-39r139,0r-138,-279r-59,0r6,-37r248,0r-6,37r-91,0r131,261r202,-261r-91,0r5,-37r200,0","w":615},{"d":"280,-159v-58,83,-82,110,-117,137v-20,16,-33,22,-66,30v-18,-52,-16,-61,-7,-121r44,-284r-84,0r0,-19r138,-47r26,0r-63,398v46,-36,66,-67,100,-113","w":281},{"d":"617,-688r-25,159r-45,0r14,-85r-230,0r-41,256r183,0r12,-75r45,-1r-31,198r-46,0r13,-77r-183,0r-42,268r239,0r14,-88r45,0r-21,133r-437,0r6,-37r75,0r93,-586r-75,0r5,-37r382,0r5,-28r45,0","w":581},{"d":"198,-572v-54,-15,-25,-143,25,-135v53,13,26,143,-25,135xm212,-460r-77,515v-22,155,-181,267,-307,156r55,-60v39,42,48,48,84,62v65,-33,88,-76,105,-194r61,-413r-84,0r0,-18r137,-48r26,0","w":245},{"d":"427,-461r-54,79r-171,0r-21,134v119,16,180,79,180,186v0,166,-127,318,-267,318v-38,0,-55,-8,-88,-41r43,-49v30,30,48,40,75,40v80,0,159,-110,159,-224v0,-101,-46,-150,-151,-166r40,-277r255,0","w":417},{"d":"512,-208r-209,0r0,208r-56,0r0,-208r-209,0r0,-57r209,0r0,-209r56,0r0,209r209,0r0,57","w":550},{"d":"483,-692r-57,60v-28,-31,-50,-48,-89,-74v-62,19,-90,58,-106,153r-19,110r102,0r-7,46r-103,0r-71,451v-24,159,-176,270,-301,156r55,-60v36,39,46,47,84,62v61,-32,79,-66,99,-193r67,-416r-84,0r0,-19r92,-30v20,-121,27,-232,136,-275v80,-31,137,-19,202,29","w":256},{"d":"697,-660r-6,38r-521,572r397,0r16,-104r44,0r-24,154r-547,0r5,-37r521,-572r-376,0r-13,80r-44,0r25,-159r44,0r-4,28r483,0","w":668},{"d":"479,-452r-31,67r-87,0v53,139,-48,275,-174,277v-21,0,-32,-3,-56,-14v-33,52,-36,57,-36,68v0,14,13,23,35,23r181,0v60,0,91,29,91,86v0,120,-91,201,-225,201v-90,0,-163,-35,-203,-98v23,-45,44,-72,101,-128v-37,-12,-47,-18,-70,-41v34,-57,64,-95,98,-127v-116,-104,-6,-328,131,-328v36,0,60,6,117,27v49,2,91,-3,128,-13xm305,-299v0,-75,-32,-126,-78,-126v-55,0,-98,66,-98,148v0,73,34,125,83,125v53,0,93,-62,93,-147xm344,84v0,-27,-14,-44,-38,-44r-187,0v-46,61,-56,80,-56,104v0,40,51,70,120,70v84,0,161,-62,161,-130","w":419},{"d":"511,-210r-472,210r0,-63r396,-174r-396,-174r0,-63r472,210r0,54","w":550},{"d":"444,-309v0,169,-111,322,-233,322v-27,0,-59,-10,-91,-27r-19,14r-47,0r107,-671r-84,0r0,-18r137,-48r25,0r-71,449v70,-104,155,-177,207,-177v40,0,69,66,69,156xm364,-295v0,-60,-12,-94,-34,-94v-52,0,-187,166,-189,264r-8,56v42,36,50,40,80,40v78,0,151,-129,151,-266","w":466},{"d":"513,-739v49,0,105,40,107,69v3,46,-67,64,-81,20v-7,-22,-12,-53,-39,-53v-35,0,-86,71,-108,150r-31,110r102,0r-12,46r-102,0r-119,451v-31,118,-116,202,-203,202v-49,0,-91,-29,-91,-63v0,-42,64,-64,77,-21v6,19,3,41,31,40v46,0,90,-70,123,-194r110,-415r-84,0r13,-46r83,0r36,-132v27,-99,103,-164,188,-164","w":576},{"d":"371,-466v81,77,65,141,-4,238v-70,99,-128,176,-238,236r-27,0r0,-405r-81,0r0,-19r122,-47r25,0r0,396v71,-60,105,-97,147,-165v55,-89,69,-123,-19,-178","w":420},{"d":"613,-833r-132,125r-44,0r-87,-125r43,0r77,58r94,-58r49,0xm697,-660r-6,38r-521,572r397,0r16,-104r44,0r-24,154r-547,0r5,-37r521,-572r-376,0r-13,80r-44,0r25,-159r44,0r-4,28r483,0","w":668},{"d":"399,-264r-4,28v-86,-8,-118,25,-133,117r-38,241v-17,109,-87,144,-209,134r6,-40v79,7,115,-18,128,-97r38,-241v14,-89,40,-118,113,-128v-79,-4,-85,-56,-73,-128r38,-236v13,-70,-20,-109,-97,-97r5,-33v111,-9,185,18,167,133r-37,230v-13,59,6,118,58,117r38,0","w":409},{"d":"745,-660r-6,37r-46,0r-352,640r-11,0r-152,-640r-61,0r6,-37r240,0r-6,37r-99,0r115,486r267,-486r-62,0r6,-37r161,0","w":661},{"d":"464,-308v0,168,-110,321,-233,321v-25,0,-57,-9,-86,-25r-34,222r88,0r-6,33r-232,0r6,-33r74,0r97,-607r-84,0r0,-20r139,-46r25,0r-29,175v66,-102,154,-177,206,-177v40,0,69,66,69,157xm384,-298v0,-55,-13,-89,-34,-89v-53,0,-187,165,-189,262r-8,56v42,36,50,40,80,40v79,0,151,-129,151,-269","w":484},{"d":"673,-65v48,-37,65,-65,101,-113r29,20v-60,83,-82,108,-117,136v-22,17,-34,23,-66,30v-18,-52,-16,-61,-7,-120r39,-251v0,-19,-6,-30,-17,-30v-26,-7,-126,114,-135,125v-57,67,-92,159,-98,268r-67,0r57,-369v0,-15,-6,-24,-16,-24v-16,0,-36,15,-72,54v-63,67,-74,82,-97,118v-46,69,-52,131,-65,221r-67,0r63,-397r-84,0r0,-19r136,-47r25,0r-34,220v86,-132,181,-220,240,-220v52,0,48,71,37,129r-17,92v82,-130,181,-221,239,-221v54,0,47,66,37,128","w":796},{"d":"429,-362v22,96,-187,318,-209,403r-44,169r71,0r-7,33r-212,0r6,-33r73,0v19,-92,49,-171,60,-270v-9,-108,-48,-232,-68,-337r-81,0r0,-27r136,-40r85,383v41,-59,131,-184,131,-241v0,-30,-18,-58,-58,-92r72,-52v32,30,45,60,45,104","w":425},{"d":"472,-58r-41,58r-75,0r-35,243r-68,0r35,-243r-279,0r2,-18r390,-456r22,0r-59,416r108,0xm335,-332r-233,274r194,0","w":473},{"d":"350,-524v-53,0,-95,-48,-131,-48v-27,0,-49,10,-82,38r-21,-17v71,-81,136,-95,213,-44v48,32,89,30,139,-20r22,16v-57,58,-88,75,-140,75xm53,-172v0,-128,105,-293,234,-293v86,0,147,81,147,195v0,113,-111,283,-236,282v-84,0,-145,-78,-145,-184xm267,-420v-68,-1,-134,110,-135,227v0,91,38,159,89,159v70,0,135,-111,135,-231v0,-86,-39,-155,-89,-155","w":446},{"d":"249,-158v-58,82,-82,109,-118,137v-21,16,-33,22,-65,29v-18,-53,-16,-61,-7,-121r88,-558r-83,0r0,-18r138,-48r25,0r-108,672v47,-34,66,-67,101,-113","w":243},{"d":"502,-461r-5,38r-199,412v-52,108,-101,175,-178,267r-50,-58v92,-67,143,-146,189,-244r164,-348r-256,0r-18,117r-43,0r27,-184r369,0","w":489},{"d":"499,-675r-78,41v-8,-32,-32,-50,-64,-50v-62,0,-124,51,-152,119v-36,86,-45,227,-41,384v4,178,-5,226,-23,267v-11,24,-20,37,-48,65r-14,-6v44,-72,27,-262,27,-388v0,-168,31,-300,88,-380v50,-69,131,-115,204,-115v45,0,71,17,101,63xm338,-627v-43,72,-28,262,-28,389v0,167,-32,304,-88,379v-49,66,-134,115,-200,115v-50,0,-73,-14,-105,-62r78,-42v8,32,32,51,65,51v62,0,123,-51,151,-120v35,-85,42,-222,42,-380v0,-182,4,-230,22,-271v10,-23,20,-36,48,-65","w":345},{"d":"141,-79v0,-236,110,-447,228,-581r43,0v-94,145,-189,383,-187,620v0,111,15,221,42,296r-43,0v-49,-86,-83,-220,-83,-335","w":409},{"d":"285,-660r-143,903r-152,0r7,-45r94,0r128,-812r-93,0r7,-46r152,0","w":250},{"d":"105,-477v0,-91,78,-203,171,-203v66,0,110,59,110,137v0,82,-82,197,-172,196v-65,0,-109,-57,-109,-130xm262,-636v-40,-1,-88,68,-87,145v0,61,26,99,55,99v41,0,87,-67,87,-147v0,-58,-27,-97,-55,-97","w":350},{"d":"86,-196v0,-163,112,-278,241,-278v106,0,181,87,181,206v0,155,-108,281,-241,281v-107,0,-181,-86,-181,-209xm321,-407v-93,1,-177,86,-177,203v0,91,51,151,129,151v95,0,177,-95,177,-205v0,-90,-51,-149,-129,-149","w":528},{"d":"76,-330v0,-94,95,-149,189,-123r63,0r-17,113r-31,0v17,-49,-8,-81,-60,-81v-41,0,-78,33,-78,70v0,30,14,47,78,95v62,47,83,79,83,123v2,92,-102,160,-205,133r-65,0r20,-113r33,0v-16,52,12,80,70,80v44,0,81,-36,81,-77v0,-31,-21,-62,-63,-95v-83,-63,-98,-81,-98,-125","w":328},{"d":"464,-660r-394,903r-59,0r394,-903r59,0","w":409},{"d":"463,-684r-184,161r-53,0r144,-161r93,0xm53,-172v0,-128,105,-293,234,-293v86,0,147,81,147,195v0,113,-111,283,-236,282v-84,0,-145,-78,-145,-184xm267,-420v-68,-1,-134,110,-135,227v0,91,38,159,89,159v70,0,135,-111,135,-231v0,-86,-39,-155,-89,-155","w":446},{"d":"408,-66r-38,66r-346,0r5,-35r166,-126v103,-78,134,-123,134,-187v0,-44,-27,-70,-70,-70v-47,0,-84,21,-139,78r-23,-30v76,-77,118,-99,185,-99v73,0,122,45,122,113v0,59,-42,123,-115,176r-156,114r275,0","w":429},{"d":"384,-664r-138,165r-44,0r-81,-165r43,0r72,88r99,-88r49,0xm328,-453r-17,113r-31,0v17,-49,-8,-81,-60,-81v-41,0,-78,33,-78,70v0,30,14,47,78,95v62,47,83,79,83,123v2,92,-100,160,-205,133r-65,0r20,-113r33,0v-16,52,12,80,70,80v44,0,81,-36,81,-77v0,-31,-21,-62,-63,-95v-83,-63,-98,-81,-98,-125v0,-74,58,-129,134,-129v37,0,75,8,118,6","w":328},{"d":"416,-522r-44,0r-71,-88r-100,88r-48,0r138,-165r44,0xm53,-172v0,-128,105,-293,234,-293v86,0,147,81,147,195v0,113,-111,283,-236,282v-84,0,-145,-78,-145,-184xm267,-420v-68,-1,-134,110,-135,227v0,91,38,159,89,159v70,0,135,-111,135,-231v0,-86,-39,-155,-89,-155","w":446},{"d":"499,-495r-176,39r-12,-38r165,-72xm313,-685r-17,179r-40,0r-17,-179r74,0xm437,-302r-60,44r-92,-155r32,-24xm239,-494r-12,38r-176,-39r23,-71xm266,-412r-92,155r-60,-44r119,-135"},{"d":"298,-641v-57,40,-79,67,-79,98v0,27,11,39,43,50v-22,43,-40,57,-71,57v-31,0,-51,-19,-51,-49v0,-50,56,-125,139,-187","w":250},{"d":"926,-660r-6,37r-76,0r-92,586r75,0r-6,37r-228,0r6,-37r75,0r75,-470r-321,522r-159,-555r-80,503r75,0r-5,37r-203,0r5,-37r76,0r93,-586r-76,0r6,-37r157,0r149,517r319,-517r141,0","w":901},{"d":"608,-514v0,95,-73,164,-175,167v98,11,154,71,154,165v0,104,-86,182,-202,182r-304,0r6,-37r75,0r93,-586r-75,0r5,-37r274,0v91,0,149,57,149,146xm519,-514v0,-65,-34,-100,-96,-100r-92,0r-40,249r89,0v79,0,139,-65,139,-149xm502,-206v0,-79,-38,-114,-123,-114r-95,0r-43,275r103,0v94,0,158,-65,158,-161","w":635},{"d":"352,-173v-47,12,-143,-57,-201,-57v-40,0,-85,17,-125,48r-29,-41v83,-61,143,-88,239,-46v33,14,84,39,121,39v46,0,80,-13,129,-48r33,44v-58,43,-109,61,-167,61","w":522},{"d":"360,-403v0,-23,-43,-15,-69,-16r13,-34r157,0v-23,61,-141,146,-224,186v37,104,81,190,98,190v13,0,43,-30,87,-88r31,24v-57,83,-123,149,-149,149v-34,-1,-80,-113,-95,-157r-32,-93r-17,6r-38,236r-68,0r106,-671r-85,0r0,-18r143,-48r21,0r-73,458v67,-20,101,-37,156,-81v24,-19,38,-35,38,-43","w":461},{"d":"49,-123v0,-147,85,-342,232,-342v40,0,62,8,98,34r9,-33r55,0r-51,287v-8,45,-8,62,-8,102v36,-34,54,-56,86,-105r30,19v-58,85,-91,139,-171,170v-23,-67,-11,-139,1,-205v-53,120,-149,209,-226,209v-35,0,-55,-50,-55,-136xm364,-376v-35,-37,-59,-51,-88,-51v-80,0,-150,129,-150,276v0,54,11,94,27,94v116,-58,170,-173,211,-319"},{"d":"418,-658r-36,226r-58,0r36,-226r58,0xm258,-658r-36,226r-58,0r35,-226r59,0","w":409},{"d":"511,-623r-96,51v50,76,64,181,47,288v-28,174,-120,297,-237,297v-108,0,-177,-106,-157,-231v23,-135,125,-223,258,-182r0,39v-114,-13,-161,62,-176,153v-12,74,9,182,75,182v106,0,222,-355,132,-515r-146,77r-16,-37r141,-75v-34,-43,-88,-71,-168,-71r6,-42v96,0,167,33,215,85r107,-56","w":470},{"d":"427,-576v0,29,-25,52,-56,52v-24,0,-44,-22,-44,-50v0,-28,24,-51,55,-51v25,0,45,22,45,49xm246,-576v0,29,-25,52,-56,52v-25,0,-45,-22,-45,-50v0,-28,25,-51,55,-51v25,0,46,22,46,49xm429,-362v22,96,-187,319,-209,403r-44,169r71,0r-7,33r-212,0r6,-33r73,0v19,-92,49,-171,60,-270v-9,-108,-48,-232,-68,-337r-81,0r0,-27r136,-40r85,383v41,-59,131,-184,131,-241v0,-30,-18,-58,-58,-92r72,-52v32,30,45,60,45,104","w":425},{"d":"322,-522r-44,0r-71,-88r-100,88r-48,0r138,-165r44,0xm280,-159v-58,83,-82,110,-117,137v-20,16,-33,22,-66,30v-18,-52,-16,-61,-7,-121r44,-284r-84,0r0,-19r138,-47r26,0r-63,398v46,-36,66,-67,100,-113","w":281},{"d":"534,-718r-55,0r-149,-115r107,0xm752,-387v0,208,-182,400,-380,400v-152,0,-273,-127,-273,-285v0,-209,182,-400,381,-400v157,0,272,120,272,285xm661,-397v0,-143,-71,-230,-190,-230v-155,0,-280,160,-280,359v0,141,73,233,186,233v160,0,284,-159,284,-362","w":752},{"d":"539,-408r-54,53v-39,-44,-54,-29,-92,19r-81,103r61,149v3,7,9,11,15,11v16,0,40,-24,91,-89r31,21v-75,100,-128,149,-161,149v-6,0,-18,-13,-25,-29r-67,-157r-89,118v-37,50,-56,65,-74,65v-23,0,-45,-15,-73,-49r55,-57v34,37,58,20,92,-22r73,-91r-58,-134v-12,-27,-16,-33,-26,-33v-14,0,-42,27,-82,78r-28,-24v36,-45,120,-133,153,-133v11,0,17,7,27,31r67,158r96,-126v59,-66,86,-93,149,-11","w":514},{"d":"731,-370v0,193,-177,370,-370,370r-279,0r6,-37r75,0r47,-293r-128,0r7,-43r127,0r40,-250r-76,0r6,-37r281,0v151,0,264,124,264,290xm643,-386v0,-144,-69,-223,-194,-223r-119,0r-37,236r114,0r-7,43r-114,0r-44,280r106,0v164,0,295,-150,295,-336","w":740},{"d":"262,-241v0,33,-29,60,-65,60v-29,0,-52,-26,-52,-58v0,-33,28,-60,64,-60v29,0,53,26,53,58","w":333},{"d":"549,-159v-59,83,-82,109,-117,137v-22,17,-34,23,-66,30v-31,-71,2,-143,8,-218v-85,132,-181,221,-239,221v-28,0,-45,-23,-45,-60v0,-104,37,-242,52,-348r-83,0r0,-19r137,-47r26,0r-60,373v0,19,7,30,18,30v47,-4,221,-201,222,-312r11,-81r67,0r-61,388v45,-34,65,-67,100,-113","w":545},{"d":"521,-639v216,0,382,156,382,371v0,171,-88,267,-245,277v-120,8,-120,-106,-89,-194v-46,74,-74,107,-120,143v-33,25,-75,44,-101,44v-35,0,-60,-62,-60,-147v0,-189,104,-334,239,-334v34,0,49,4,83,25r30,-25r39,0r-57,355v-12,55,-2,84,56,84v112,0,178,-96,178,-232v0,-89,-24,-150,-83,-215v-67,-75,-138,-104,-247,-104v-229,0,-378,144,-378,365v0,127,38,205,122,275v92,78,265,90,383,33r20,44v-144,68,-330,46,-438,-47v-92,-79,-136,-170,-136,-297v0,-247,174,-421,422,-421xm598,-391v-27,-34,-47,-47,-76,-47v-81,0,-155,130,-155,271v0,57,13,84,40,84v27,0,71,-40,113,-102v42,-61,62,-115,78,-206","w":1000},{"d":"860,-660r-6,37r-76,0r-93,586r76,0r-6,37r-228,0r5,-37r76,0r44,-275r-370,0r-44,275r76,0r-6,37r-228,0r5,-37r76,0r93,-586r-76,0r6,-37r228,0r-5,37r-76,0r-42,266r370,0r42,-266r-76,0r6,-37r229,0","w":835},{"d":"385,-523r-53,0r-107,-161r92,0xm549,-159v-59,83,-82,109,-117,137v-22,17,-34,23,-66,30v-31,-71,2,-143,8,-218v-85,132,-181,221,-239,221v-28,0,-45,-23,-45,-60v0,-104,37,-242,52,-348r-83,0r0,-19r137,-47r26,0r-60,373v0,19,7,30,18,30v47,-4,221,-201,222,-312r11,-81r67,0r-61,388v45,-34,65,-67,100,-113","w":545},{"d":"911,-683r-26,159r-44,0r14,-90r-231,0r-42,258r183,0r12,-74r45,0r-31,195r-45,0r12,-75r-183,0r-44,264r239,0r15,-85r45,0r-21,131r-438,0r7,-37r74,0r29,-178r-217,0r-124,178r70,0r-7,37r-194,0r8,-37r57,0r418,-586r-80,0r8,-37r442,0r4,-23r45,0xm548,-618r-252,354r194,0","w":871}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-698-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("`:G5(URzNFBP`_?.eUl6E:EBVYR5GUBPVY]6NFskGi!KXWzAuib57tdAGA5%e4a@X+l%e4a@GURc8ib57td?0ib57td?Gk]bVO8@748WVO8@7:]?VO8@7:i-VO8@74u6VO8@7:iZVO8@7:76VO8@7:XxVO8@7:]AVO8@7:XYV?b57tdZ0ib57td+Glb57td+0lb57td?X?s%ad_t9l:OE]`h7R0Jus>48iFVXGN(%efcL-A+Z?Ukgr}$KnP3@b6Wz5YCxD;.!B)2e4a@X+?%e4a@GFR;VO8@7:E6VO8@7:lAVO8@7:EYVO867t9DVO8@7:X675b57td?R?b57td-Xib57td-RU-%e4E@7FuZ8lb57tdUR5b57tdAX5b57td-7UR%e4a@X4-%e4a@X+-%e4a@G4e%e4a@XFR%e4a@GU]%e4a@GtLxVO8@7486VO8@7:u5i5b57tdAGlb57td?7UD%e4a@XWs%e4a@XWi%e4a@XW?!VO8@7:E@E5b57tdZRlb57+ab75b57td+78n%e4a@X+s%e4a@G+l%e4a@X+R%e4a@XWR0Xlb57t9Y7l-]VO8@7:GZVO8@74%xVO8@7:G?s5b57+a6R?b57td?Rib57td?0lb57tdZ75b57td+7lb57tdZX+n%e4a@GtGZVO8674E6J5b57td?7_l%e4a@G:iG0?b57tdZ7ib57tdZXib57tdZG?b57td-G?b57td+Xib57td+X5b57+abX6Dt85b57td-7ib57t9z7Vn%e4a@XYi9VO8@7:s+Vlb%e4a@GUl%e4a@XY]%e4a@G4l>46d%e4a@G4sisAb(VO8@7:l?VO867t9z>?b57td-7zb%e4a@G:ukVO8@74e?RAGC(W5%e4a@X4?%e4a@G4RrVO8@7:9zVO8@7:9@VO8@7:uCJ_Z?7Vs?VO8@7:RU0ib57td+R5b57td-Rib57t9W78i}R>nUFU%)X?b57t9D7kG%e4abRYsBikdnf4s%e4a@G+iKR5b57td-R6-eVO8@7:]-7OR%h5b57tdU7W]%e4abR+l%e4a@G+u}VO867t9x48])NYl%E?b57tdU7lb57tdUG?b57td?Gib57tdZ7k-%e4a@Gtd%e4a@X+e5u9-%e4a@G+?%e4a@XWXAhkR@(:?z`_EA`>brJ4aK%t5AhkaK(t5@hUb?(UezN_bkJFEPGADk(O?@NO7BfCz.NFXgXAD3NWz3VAL20keCe5@P`4!gJWr%`k@P`5@PGU?PGYi6%:lr(ksr(ks?%Ul+e:?YGi@PXYBnc:Gr(Ue?%kd-NFDzNFDzGV]-XCsreUi%hUR3(VbWN:B@XCd+V_D+(Yzr]_Brhks?%Cug(:B+XVsr(YxPN:BWe:D-(F8r`FG3%AL.N4bK06K$N>?kFYR(Ni5eJVd(Ni5B`>Lr")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":500,"face":{"font-family":"Scala","font-weight":500,"font-style":"italic","font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"744","descent":"-256","x-height":"12","bbox":"-174 -843 1038 257.797","underline-thickness":"37","underline-position":"-166","slope":"-11","stemh":"60.084","stemv":"114.019","unicode-range":"U+0020-U+2122"}}));

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright 1990 Martin Majoor. Published by FontShop International for the
 * FontFont library. ScalaSans is a trademark of FSI, Fonts and Software GmbH.
 * http://www.fontfont.de
 */
Cufon.registerFont((function(f){var b=_cufon_bridge_={p:[{"d":"334,145v0,53,-40,91,-95,91v-26,0,-42,-3,-99,-22r25,-51v37,16,57,22,77,22v23,0,40,-16,40,-37v0,-41,-49,-43,-98,-41r57,-94r50,0r-31,56v47,0,74,27,74,76","w":444},{"d":"451,-465r-160,228r155,237r-130,0r-92,-148r-97,148r-123,0r160,-228r-159,-237r132,0r92,146r98,-146r124,0","w":456},{"d":"519,-40r-58,58r-186,-186r-186,186r-58,-58r186,-186r-186,-186r58,-58r186,186r186,-186r58,58r-186,186"},{"d":"352,-518v0,97,-74,172,-171,172v-98,0,-172,-75,-172,-172v0,-97,74,-172,172,-172v97,0,171,75,171,172xm250,-518v0,-53,-34,-94,-69,-94v-36,0,-70,41,-70,94v0,54,34,94,70,94v35,0,69,-40,69,-94","w":361},{"d":"440,-819r-112,117r-79,0r-112,-117r87,0r65,65r65,-65r86,0xm505,-616r-50,113v-70,-31,-127,-47,-171,-47v-59,0,-97,24,-97,61v0,28,16,45,63,70v101,54,167,96,198,127v28,28,45,72,45,118v0,118,-86,187,-232,187v-96,0,-154,-29,-240,-70r53,-116v59,32,120,65,189,65v58,0,96,-26,96,-66v-1,-63,-111,-99,-160,-129v-115,-71,-153,-111,-153,-183v0,-135,126,-185,241,-185v85,0,143,19,218,55","w":534},{"d":"429,-566v0,32,-26,57,-58,57v-31,0,-57,-25,-57,-57v0,-32,26,-57,57,-57v32,0,58,25,58,57xm233,-564v0,31,-26,57,-57,57v-32,0,-58,-26,-58,-57v0,-32,26,-58,58,-58v31,0,57,26,57,58xm474,0r-120,0r0,-78v-56,62,-102,86,-161,86v-84,0,-126,-43,-126,-131r0,-342r120,0r0,299v0,57,10,79,38,79v24,7,88,-52,129,-98r0,-280r120,0r0,465","w":545},{"d":"491,-35v-50,30,-110,49,-175,49v-120,0,-204,-71,-229,-186r-78,0r0,-48r70,-10v0,-16,0,-32,1,-48r-71,0r0,-48r82,-12v36,-134,154,-208,311,-173v34,8,50,17,89,42r-57,98v-69,-67,-169,-43,-209,33r173,0r0,60r-191,0v-2,15,-3,31,-1,46r192,0r0,60r-179,0v43,92,140,98,228,32","w":530},{"d":"373,-690r-93,0r-113,-118r111,0xm505,0r-415,0r0,-660r402,0r0,107r-276,0r0,163r226,0r0,107r-226,0r0,176r289,0r0,107","w":539},{"d":"179,-399v27,-40,68,-80,133,-79v112,0,193,98,193,232v0,147,-99,260,-226,260v-46,0,-70,-6,-98,-33r0,252r-120,0r-1,-962r119,0r0,330xm179,-153v-4,57,41,70,87,70v64,0,114,-68,114,-155v0,-84,-40,-143,-96,-143v-40,0,-76,24,-105,73r0,155","w":538},{"d":"341,-539r-273,0r0,-63r273,0r0,63","w":406},{"d":"245,245r-201,0r0,-905r201,0r0,88r-82,0r0,729r82,0r0,88","w":250},{"d":"732,-330v0,201,-145,343,-350,343v-82,0,-157,-24,-227,-73r-70,72r-57,-53r75,-69v-52,-75,-72,-136,-72,-219v0,-204,142,-343,349,-343v96,0,169,23,228,71r66,-65r58,52r-71,68v47,61,71,134,71,216xm517,-513v-139,-130,-352,-13,-352,181v0,53,10,92,32,128xm384,-92v165,0,270,-211,183,-363r-320,310v41,35,87,53,137,53","w":763},{"d":"170,-632v36,-6,92,49,142,50v27,0,40,-6,84,-37r33,53v-32,34,-78,49,-129,56v-37,5,-109,-48,-143,-46v-23,-3,-51,15,-77,31r-33,-57v51,-32,67,-41,123,-50xm444,-84r-19,90v-67,1,-106,-3,-125,-51v-44,40,-83,57,-130,57v-96,1,-154,-78,-127,-173v23,-78,159,-94,244,-123v3,-59,-4,-116,-57,-112v-40,3,-74,22,-62,54r-114,25v-27,-105,54,-161,192,-161v111,0,161,46,161,148r0,194v0,42,5,49,37,52xm159,-129v4,71,94,50,128,13r0,-91r-119,39v-7,18,-9,27,-9,39","w":476},{"d":"568,0r-145,0r-138,-233r-145,233r-138,0r214,-333r-201,-327r144,0r126,220r132,-220r145,0r-202,314","w":572},{"d":"500,82r-500,0r0,-82r500,0r0,82","w":500},{"d":"310,-517r-80,0r-113,-164r99,0xm492,-233v0,140,-101,246,-234,246v-133,0,-234,-106,-234,-246v0,-139,101,-245,234,-245v133,0,234,106,234,245xm368,-233v0,-82,-50,-150,-110,-150v-60,0,-110,68,-110,150v0,83,50,151,110,151v60,0,110,-68,110,-151","w":516},{"d":"819,-339r-101,0r0,-214r-6,0r-6,44r-76,170r-88,0r-69,-177r-6,-44r-6,0r0,221r-88,0r0,-321r144,0r69,220v14,1,8,-17,13,-25r69,-195r151,0r0,321xm322,-585r-88,0r0,246r-100,0r0,-246r-88,0r0,-75r276,0r0,75","w":863},{"d":"492,-233v0,140,-101,246,-234,246v-133,0,-234,-106,-234,-246v0,-139,101,-245,234,-245v133,0,234,106,234,245xm368,-233v0,-82,-50,-150,-110,-150v-60,0,-110,68,-110,150v0,83,50,151,110,151v60,0,110,-68,110,-151","w":516},{"d":"392,-766v0,53,-43,96,-96,96v-54,0,-97,-43,-97,-96v0,-53,43,-97,97,-97v53,0,96,44,96,97xm593,0r-132,0r-52,-163r-221,0r-54,163r-132,0r239,-660r113,0xm337,-766v0,-23,-19,-42,-41,-42v-23,0,-42,19,-42,42v0,23,19,41,42,41v22,0,41,-18,41,-41xm375,-270r-77,-239r-76,239r153,0","w":595},{"d":"684,-629r-90,57v-31,-55,-41,-64,-77,-64v-50,0,-67,27,-111,177r-82,277r164,0r-29,88r-164,0v-21,78,-27,139,-68,207v80,-9,129,26,202,31v43,3,40,-54,27,-87r85,-19v47,117,-10,213,-146,209v-102,-2,-184,-50,-292,-26r-108,24r0,-94v103,-32,125,-49,157,-157r24,-88r-107,0r27,-76r103,-12r96,-340v27,-94,49,-134,84,-165v49,-43,152,-61,222,-28v31,14,51,35,83,86","w":576},{"d":"311,-809v36,-6,92,49,142,50v27,0,40,-6,84,-37r33,53v-32,34,-78,49,-129,56v-37,5,-109,-48,-143,-46v-23,-3,-51,15,-77,31r-33,-57v51,-32,67,-41,123,-50xm662,6r-132,0r-283,-427v-11,-21,-24,-38,-31,-63r0,484r-120,0r0,-660r145,0r284,448v8,17,10,27,18,42r0,-490r119,0r0,666","w":759},{"d":"198,-355r-98,0r0,-262r-80,0r0,-81r178,0r0,343","w":273},{"d":"463,0r-136,0r-145,-239r0,239r-119,0r0,-729r119,0r0,465r145,-201r134,0r-167,214","w":467},{"d":"407,-690r-93,0r-113,-118r111,0xm627,-258v0,121,-23,173,-91,223v-85,62,-288,63,-373,0v-66,-49,-90,-102,-90,-223r0,-402r125,0r0,409v0,98,51,147,156,147v96,0,147,-52,147,-147r0,-409r126,0r0,402","w":700},{"d":"426,-516r-86,0r-65,-91r-65,91r-87,0r112,-164r80,0xm474,0r-120,0r0,-78v-56,62,-102,86,-161,86v-84,0,-126,-43,-126,-131r0,-342r120,0r0,299v0,57,10,79,38,79v24,7,88,-52,129,-98r0,-280r120,0r0,465","w":545},{"d":"533,-80v64,0,87,-16,140,-52r44,88v-98,76,-306,90,-386,-13v-53,41,-95,68,-162,68v-78,0,-134,-53,-134,-126v0,-69,39,-111,119,-130r133,-32v3,-61,0,-125,-57,-121v-39,3,-72,22,-63,52r-113,25v-27,-101,57,-158,187,-158v67,0,112,12,140,58v50,-40,85,-53,143,-53v135,0,206,103,193,260r-308,0v-6,95,51,134,124,134xm595,-289v8,-57,-25,-95,-79,-95v-52,0,-92,36,-103,95r182,0xm287,-119r0,-82r-119,31v-41,103,74,105,119,51","w":739},{"w":250},{"d":"263,-84v67,0,84,-15,144,-52r44,91v-62,35,-124,58,-203,58v-138,0,-225,-91,-225,-233v0,-147,100,-258,233,-258v131,0,210,108,195,264r-308,0v-1,90,48,130,120,130xm331,-289v-3,-71,-27,-99,-83,-99v-53,0,-89,36,-99,99r182,0","w":468},{"d":"167,-433r-83,0r0,-227r83,0r0,227","w":251},{"d":"326,-517r-81,0r-113,-164r99,0xm474,0r-120,0r0,-78v-56,62,-102,86,-161,86v-84,0,-126,-43,-126,-131r0,-342r120,0r0,299v0,57,10,79,38,79v24,7,88,-52,129,-98r0,-280r120,0r0,465","w":545},{"d":"414,-516r-87,0r-65,-91r-65,91r-87,0r112,-164r80,0xm492,-233v0,140,-101,246,-234,246v-133,0,-234,-106,-234,-246v0,-139,101,-245,234,-245v133,0,234,106,234,245xm368,-233v0,-82,-50,-150,-110,-150v-60,0,-110,68,-110,150v0,83,50,151,110,151v60,0,110,-68,110,-151","w":516},{"d":"204,-235v0,45,-35,80,-79,80v-44,0,-79,-35,-79,-80v0,-44,35,-79,79,-79v44,0,79,35,79,79","w":250},{"d":"552,-241v0,143,-119,259,-267,259v-148,0,-267,-116,-267,-259v0,-143,119,-259,267,-259v148,0,267,116,267,259xm431,-241v0,-83,-65,-150,-146,-150v-81,0,-146,67,-146,150v0,83,65,151,146,151v81,0,146,-68,146,-151","w":570},{"d":"574,0r-144,0r-220,-314r0,314r-126,0r0,-660r126,0r0,308r207,-308r145,0r-227,321","w":571},{"d":"569,-123v10,133,-218,178,-321,92r32,-82v54,31,83,42,116,42v38,0,67,-20,67,-47v0,-21,-16,-37,-53,-59v-85,-51,-150,-63,-150,-155v0,-50,26,-90,96,-147v50,-40,66,-63,66,-96v0,-41,-42,-71,-100,-71v-76,0,-112,44,-112,137r0,509r-119,0r0,-377r-88,0r0,-76r88,-12v-16,-176,65,-275,235,-275v134,0,210,58,210,160v0,58,-22,97,-89,156v-69,60,-75,67,-75,87v-2,31,71,65,99,83v53,35,93,60,98,131","w":576},{"d":"24,-219v0,-184,173,-326,325,-227r0,-283r119,0r0,729r-119,0r0,-63v-26,48,-74,76,-134,76v-110,0,-191,-98,-191,-232xm349,-278v4,-75,-20,-103,-84,-103v-66,0,-115,65,-115,153v0,84,39,143,96,143v37,0,74,-25,103,-70r0,-123","w":531},{"d":"367,-690r-92,0r-113,-118r111,0xm593,0r-132,0r-52,-163r-221,0r-54,163r-132,0r239,-660r113,0xm375,-270r-77,-239r-76,239r153,0","w":595},{"d":"280,-422r-101,60r0,362r-119,0r0,-291r-56,32r-43,-74r99,-58r0,-338r119,0r0,267r58,-34","w":239},{"d":"317,-517r-80,0r-113,-164r99,0","w":383},{"d":"509,-31r-245,-195r245,-195r0,119r-100,76r100,75r0,120xm270,-31r-245,-195r245,-195r0,119r-100,76r100,75r0,120","w":560},{"d":"540,-498v0,81,-57,154,-146,152v100,2,163,67,163,170v0,114,-72,176,-204,176r-269,0r0,-660r239,0v144,-7,217,52,217,162xm400,-476v0,-53,-38,-84,-102,-84r-82,0r0,170r75,0v71,0,109,-30,109,-86xm298,-101v80,4,121,-27,121,-89v0,-60,-43,-93,-121,-93r-82,0r0,182r82,0","w":591},{"d":"341,-567v0,32,-26,57,-58,57v-31,0,-57,-25,-57,-57v0,-32,26,-57,57,-57v32,0,58,25,58,57xm180,-567v0,32,-25,57,-57,57v-32,0,-57,-25,-57,-57v0,-32,25,-57,57,-57v32,0,57,25,57,57","w":416},{"d":"397,-567v0,32,-25,57,-57,57v-32,0,-57,-25,-57,-57v0,-32,25,-57,57,-57v32,0,57,25,57,57xm232,-567v0,32,-25,57,-57,57v-32,0,-57,-25,-57,-57v0,-32,25,-57,57,-57v32,0,57,25,57,57xm263,-84v67,0,84,-15,144,-52r44,91v-62,35,-124,58,-203,58v-138,0,-225,-91,-225,-233v0,-147,100,-258,233,-258v131,0,210,108,195,264r-308,0v-1,90,48,130,120,130xm331,-289v-3,-71,-27,-99,-83,-99v-53,0,-89,36,-99,99r182,0","w":468},{"d":"774,-241v0,60,-85,122,-139,164r168,0r0,77r-319,0r0,-61r143,-112v37,-28,47,-44,47,-62v0,-18,-14,-31,-32,-31v-41,0,-83,35,-112,58r-53,-62v60,-52,98,-79,176,-79v72,0,121,43,121,108xm707,-685r-565,729r-95,0r566,-729r94,0xm237,-355r-98,0r0,-262r-79,0r0,-81r177,0r0,343","w":850},{"d":"185,-517r-80,0r-113,-164r99,0xm183,0r-119,0r0,-465r119,0r0,465","w":247},{"d":"549,-660r-189,324r115,-1r0,64r-146,0r0,69r146,0r0,67r-146,0r0,137r-126,0r0,-137r-145,0r0,-67r145,0r0,-69r-145,0r0,-64r117,1r-173,-324r138,0r132,258r139,-258r138,0"},{"d":"236,-375v22,-45,42,-93,47,-149r-55,-134v71,-41,163,-34,163,61v0,61,-32,146,-84,222r-71,0xm50,-375v22,-45,43,-93,47,-149r-55,-134v71,-41,164,-34,164,61v0,61,-33,146,-84,222r-72,0","w":437},{"d":"266,-567v0,32,-25,57,-57,57v-32,0,-57,-25,-57,-57v0,-32,25,-57,57,-57v32,0,57,25,57,57xm111,-567v0,32,-26,57,-58,57v-31,0,-57,-25,-57,-57v0,-32,26,-57,57,-57v32,0,58,25,58,57xm183,0r-119,0r0,-465r119,0r0,465","w":247},{"d":"25,-333v2,-191,143,-339,350,-339v84,0,150,20,207,63r-48,100v-43,-31,-94,-46,-152,-46v-127,0,-218,90,-218,215v0,198,200,288,383,204r23,106v-75,33,-92,37,-188,43r-32,57v53,0,84,28,84,75v0,55,-47,100,-104,100v-28,0,-60,-7,-103,-24r21,-56v32,13,55,19,73,19v21,0,37,-16,37,-37v0,-43,-49,-40,-94,-39r60,-97v-96,-15,-135,-31,-188,-80v-70,-63,-111,-161,-111,-264","w":605},{"d":"283,-808r-113,118r-93,0r94,-118r112,0xm213,0r-126,0r0,-660r126,0r0,660","w":300},{"d":"389,-660r-251,905r-120,0r252,-905r119,0","w":409},{"d":"278,-732v0,30,-24,54,-54,54v-30,0,-55,-24,-55,-54v0,-30,25,-55,55,-55v30,0,54,25,54,55xm134,-732v0,30,-24,54,-54,54v-30,0,-55,-24,-55,-54v0,-30,25,-55,55,-55v30,0,54,25,54,55xm213,0r-126,0r0,-660r126,0r0,660","w":300},{"d":"499,-808r-113,118r-93,0r95,-118r111,0xm627,-258v0,121,-23,173,-91,223v-85,62,-288,63,-373,0v-66,-49,-90,-102,-90,-223r0,-402r125,0r0,409v0,98,51,147,156,147v96,0,147,-52,147,-147r0,-409r126,0r0,402","w":700},{"d":"593,0r-132,0r-52,-163r-221,0r-54,163r-132,0r239,-660r113,0xm375,-270r-77,-239r-76,239r153,0","w":595},{"d":"478,0r-120,0r0,-299v0,-58,-10,-79,-39,-79v-23,-7,-87,52,-128,98r0,280r-120,0r0,-729r120,0r0,341v56,-61,102,-86,161,-86v84,0,126,44,126,132r0,342","w":545},{"d":"486,0r-396,0r0,-276r-84,49r-43,-74r127,-74r0,-285r126,0r0,212r83,-47r43,74r-126,73r0,241r270,0r0,107","w":495},{"d":"49,165v23,-44,42,-93,47,-149r-55,-134v72,-39,163,-34,163,61v0,61,-32,147,-83,222r-72,0","w":251},{"d":"227,-796v36,-6,92,49,142,50v27,0,40,-6,84,-37r33,53v-32,34,-78,49,-129,56v-37,5,-109,-48,-143,-46v-23,-3,-51,15,-77,31r-33,-57v51,-32,67,-41,123,-50xm593,0r-132,0r-52,-163r-221,0r-54,163r-132,0r239,-660r113,0xm375,-270r-77,-239r-76,239r153,0","w":595},{"d":"450,-691r-87,0r-65,-65r-65,65r-87,0r112,-117r80,0xm505,0r-415,0r0,-660r402,0r0,107r-276,0r0,163r226,0r0,107r-226,0r0,176r289,0r0,107","w":539},{"d":"444,-690r-93,0r-113,-118r112,0xm732,-330v0,201,-145,343,-350,343v-206,0,-351,-142,-351,-343v-1,-204,142,-342,351,-342v208,0,350,138,350,342xm598,-330v0,-133,-92,-233,-216,-233v-125,0,-217,100,-217,233v0,134,92,233,217,233v124,0,216,-99,216,-233","w":763},{"d":"900,-243v0,227,-184,411,-410,411v-227,0,-411,-184,-411,-411v0,-226,184,-410,411,-410v226,0,410,184,410,410xm806,-243v0,-175,-141,-317,-316,-317v-175,0,-317,142,-317,317v0,175,142,317,317,317v175,0,316,-142,316,-317xm672,-6r-125,0r-104,-182r-19,0r0,182r-107,0r0,-472r171,0v126,0,184,46,184,143v0,80,-40,131,-111,142xm557,-326v0,-61,-63,-73,-133,-67r0,135v69,5,133,-7,133,-68","w":979},{"w":250},{"d":"549,-660r-220,377r0,283r-126,0r0,-283r-201,-377r138,0r132,258r139,-258r138,0"},{"d":"286,-552v0,70,-56,126,-126,126v-65,0,-117,-52,-117,-117v0,-70,56,-126,126,-126v64,0,117,53,117,117xm227,-547v0,-35,-28,-63,-63,-63v-34,0,-62,28,-62,63v0,34,28,63,62,63v35,0,63,-29,63,-63","w":333},{"d":"373,-451v0,44,-35,80,-79,80v-44,0,-79,-36,-79,-80v0,-44,35,-80,79,-80v44,0,79,36,79,80xm57,-65v0,-96,56,-160,174,-148r0,-95r120,0r0,193r-164,0v-31,141,43,214,195,233r-25,113v-189,-10,-300,-137,-300,-296","w":418},{"d":"413,-516r-87,0r-65,-91r-65,91r-87,0r112,-164r80,0xm263,-84v67,0,84,-15,144,-52r44,91v-62,35,-124,58,-203,58v-138,0,-225,-91,-225,-233v0,-147,100,-258,233,-258v131,0,210,108,195,264r-308,0v-1,90,48,130,120,130xm331,-289v-3,-71,-27,-99,-83,-99v-53,0,-89,36,-99,99r182,0","w":468},{"d":"479,-479r-143,37r-28,-86r138,-54xm305,-685r-9,148r-90,0r-9,-148r108,0xm425,-311r-88,63r-79,-124r73,-53xm192,-528r-28,86r-143,-38r33,-102xm243,-372r-79,125r-87,-64r93,-114","w":500},{"d":"297,-660v-130,254,-131,660,0,911r-107,0v-64,-110,-109,-305,-109,-454v0,-159,45,-335,109,-457r107,0","w":309},{"d":"373,-690r-112,164r-63,0r-114,-164r70,0r76,107r75,-107r68,0xm65,-136v63,37,82,53,152,58v87,6,94,-63,26,-89r-80,-31v-82,-32,-120,-75,-120,-137v0,-111,134,-169,266,-137v44,11,60,15,102,39r-38,97v-37,-26,-91,-53,-139,-52v-46,0,-76,18,-76,44v0,21,17,33,58,49v100,39,182,55,188,167v6,108,-134,163,-262,132v-43,-10,-64,-17,-115,-43","w":447},{"d":"398,-516r-87,0r-65,-91r-65,91r-87,0r112,-164r80,0xm444,-84r-19,90v-67,1,-106,-3,-125,-51v-44,40,-83,57,-130,57v-96,1,-154,-78,-127,-173v23,-78,159,-94,244,-123v3,-59,-4,-116,-57,-112v-40,3,-74,22,-62,54r-114,25v-27,-105,54,-161,192,-161v111,0,161,46,161,148r0,194v0,42,5,49,37,52xm159,-129v4,71,94,50,128,13r0,-91r-119,39v-7,18,-9,27,-9,39","w":476},{"d":"183,0r-119,0r0,-465r119,0r0,465","w":247},{"d":"714,-71v0,45,-40,82,-89,82v-39,0,-70,-36,-70,-79v0,-45,39,-81,87,-81v40,0,72,35,72,78xm462,-71v0,45,-40,82,-89,82v-39,0,-70,-36,-70,-79v0,-45,39,-81,87,-81v40,0,72,35,72,78xm203,-70v0,45,-40,82,-89,82v-38,0,-70,-36,-70,-79v0,-45,39,-82,88,-82v39,0,71,36,71,79","w":750},{"d":"452,-691r-87,0r-65,-65r-65,65r-86,0r112,-117r79,0xm593,0r-132,0r-52,-163r-221,0r-54,163r-132,0r239,-660r113,0xm375,-270r-77,-239r-76,239r153,0","w":595},{"d":"375,-570v0,32,-25,57,-57,57v-32,0,-57,-25,-57,-57v0,-32,25,-57,57,-57v32,0,57,25,57,57xm215,-570v0,32,-26,58,-57,58v-32,0,-58,-26,-58,-58v0,-31,26,-57,58,-57v31,0,57,26,57,57xm444,-84r-19,90v-67,1,-106,-3,-125,-51v-44,40,-83,57,-130,57v-96,1,-154,-78,-127,-173v23,-78,159,-94,244,-123v3,-59,-4,-116,-57,-112v-40,3,-74,22,-62,54r-114,25v-27,-105,54,-161,192,-161v111,0,161,46,161,148r0,194v0,42,5,49,37,52xm159,-129v4,71,94,50,128,13r0,-91r-119,39v-7,18,-9,27,-9,39","w":476},{"d":"340,-425r-16,74v-46,1,-82,0,-96,-30v-71,73,-222,22,-185,-91v18,-55,109,-67,170,-86v2,-34,-3,-66,-32,-62v-31,4,-45,12,-34,34r-94,20v-29,-82,39,-123,139,-124v81,0,120,34,120,107r0,130v0,22,2,26,28,28xm213,-443r0,-48r-70,22v-22,60,45,50,70,26","w":361},{"d":"915,-243v0,227,-184,411,-411,411v-226,0,-410,-184,-410,-411v0,-226,184,-410,410,-410v227,0,411,184,411,410xm821,-243v0,-175,-142,-317,-317,-317v-175,0,-316,142,-316,317v0,175,141,317,316,317v175,0,317,-142,317,-317xm682,-50v-46,30,-99,48,-164,49v-146,0,-244,-95,-244,-237v0,-170,144,-280,320,-235v27,7,45,16,85,42r-50,79v-106,-68,-235,-23,-235,112v0,140,128,187,239,111","w":1009},{"d":"344,-427v0,37,-30,67,-67,67v-37,0,-67,-30,-67,-67v0,-37,30,-67,67,-67v37,0,67,30,67,67xm525,-196r-500,0r0,-82r500,0r0,82xm343,-48v0,37,-30,67,-67,67v-37,0,-67,-30,-67,-67v0,-37,30,-67,67,-67v37,0,67,30,67,67"},{"d":"242,-174r-208,0r0,-111r208,0r0,111","w":276},{"d":"399,-567v0,32,-26,57,-57,57v-32,0,-58,-25,-58,-57v0,-32,26,-57,58,-57v31,0,57,25,57,57xm239,-567v0,32,-26,57,-57,57v-32,0,-58,-25,-58,-57v0,-32,26,-57,58,-57v31,0,57,25,57,57xm492,-233v0,140,-101,246,-234,246v-133,0,-234,-106,-234,-246v0,-139,101,-245,234,-245v133,0,234,106,234,245xm368,-233v0,-82,-50,-150,-110,-150v-60,0,-110,68,-110,150v0,83,50,151,110,151v60,0,110,-68,110,-151","w":516},{"d":"525,-272r-500,0r0,-82r500,0r0,82xm525,-109r-500,0r0,-82r500,0r0,82"},{"d":"510,0r-100,0r0,214r-114,0r0,-214r-289,0r0,-75r315,-422r88,0r0,403r100,0r0,94xm296,-94r0,-220r-157,220r157,0","w":526},{"d":"329,-660v221,-11,357,135,357,328v0,194,-139,332,-358,332r-244,0r0,-301r-109,0r0,-86r109,0r0,-273r245,0xm550,-331v0,-141,-73,-223,-234,-218r-100,0r0,162r147,0r0,86r-147,0r0,190r100,0v150,0,234,-79,234,-220","w":711},{"d":"531,-808r-113,118r-93,0r95,-118r111,0xm732,-330v0,201,-145,343,-350,343v-206,0,-351,-142,-351,-343v-1,-204,142,-342,351,-342v208,0,350,138,350,342xm598,-330v0,-133,-92,-233,-216,-233v-125,0,-217,100,-217,233v0,134,92,233,217,233v124,0,216,-99,216,-233","w":763},{"d":"404,-681r-113,164r-80,0r94,-164r99,0xm492,-233v0,140,-101,246,-234,246v-133,0,-234,-106,-234,-246v0,-139,101,-245,234,-245v133,0,234,106,234,245xm368,-233v0,-82,-50,-150,-110,-150v-60,0,-110,68,-110,150v0,83,50,151,110,151v60,0,110,-68,110,-151","w":516},{"d":"329,-660v221,-11,357,135,357,328v0,194,-139,332,-358,332r-244,0r0,-660r245,0xm550,-331v0,-141,-73,-223,-234,-218r-100,0r0,438r100,0v150,0,234,-79,234,-220","w":711},{"d":"297,-517r-80,0r-113,-164r99,0xm444,-84r-19,90v-67,1,-106,-3,-125,-51v-44,40,-83,57,-130,57v-96,1,-154,-78,-127,-173v23,-78,159,-94,244,-123v3,-59,-4,-116,-57,-112v-40,3,-74,22,-62,54r-114,25v-27,-105,54,-161,192,-161v111,0,161,46,161,148r0,194v0,42,5,49,37,52xm159,-129v4,71,94,50,128,13r0,-91r-119,39v-7,18,-9,27,-9,39","w":476},{"d":"517,-281v0,183,-96,303,-241,303v-139,0,-238,-102,-238,-245v0,-159,129,-241,279,-188v29,10,42,15,74,34v-12,-63,-22,-94,-46,-125r-81,46r-43,-74r59,-34v-39,-27,-125,-29,-191,-21r0,-100v131,-11,220,-2,299,59r83,-47r43,74r-68,39v51,77,71,178,71,279xm403,-277v-51,-30,-87,-47,-146,-47v-58,0,-97,43,-97,107v0,78,46,136,110,136v35,0,69,-19,91,-50v26,-36,34,-64,42,-146","w":544},{"d":"422,-732v0,31,-25,55,-55,55v-30,0,-54,-24,-54,-55v0,-30,24,-54,54,-54v30,0,55,24,55,54xm236,-731v0,30,-24,55,-54,55v-30,0,-55,-25,-55,-55v0,-30,25,-54,55,-54v30,0,54,24,54,54xm549,-660r-220,377r0,283r-126,0r0,-283r-201,-377r138,0r132,258r139,-258r138,0"},{"d":"181,-402v39,-52,62,-76,131,-76v112,0,193,98,193,232v0,147,-99,260,-226,260v-46,0,-70,-6,-98,-33r0,252r-120,0r0,-698r120,0r0,63xm181,-153v-5,58,39,70,85,70v64,0,114,-68,114,-155v0,-84,-40,-143,-96,-143v-40,0,-74,24,-103,73r0,155","w":538},{"d":"226,-690r-93,0r-113,-118r112,0xm213,0r-126,0r0,-660r126,0r0,660","w":300},{"d":"336,-591v0,53,-43,96,-96,96v-54,0,-97,-43,-97,-96v0,-53,43,-97,97,-97v53,0,96,44,96,97xm444,-84r-19,90v-67,1,-106,-3,-125,-51v-44,40,-83,57,-130,57v-96,1,-154,-78,-127,-173v23,-78,159,-94,244,-123v3,-59,-4,-116,-57,-112v-40,3,-74,22,-62,54r-114,25v-27,-105,54,-161,192,-161v111,0,161,46,161,148r0,194v0,42,5,49,37,52xm281,-591v0,-23,-19,-42,-41,-42v-23,0,-42,19,-42,42v0,23,19,41,42,41v22,0,41,-18,41,-41xm159,-129v4,71,94,50,128,13r0,-91r-119,39v-7,18,-9,27,-9,39","w":476},{"d":"1000,-191r-1000,0r0,-83r1000,0r0,83","w":1000},{"d":"392,-681r-113,164r-80,0r94,-164r99,0xm444,-84r-19,90v-67,1,-106,-3,-125,-51v-44,40,-83,57,-130,57v-96,1,-154,-78,-127,-173v23,-78,159,-94,244,-123v3,-59,-4,-116,-57,-112v-40,3,-74,22,-62,54r-114,25v-27,-105,54,-161,192,-161v111,0,161,46,161,148r0,194v0,42,5,49,37,52xm159,-129v4,71,94,50,128,13r0,-91r-119,39v-7,18,-9,27,-9,39","w":476},{"d":"537,-691r-87,0r-65,-65r-65,65r-87,0r112,-117r80,0xm732,-330v0,201,-145,343,-350,343v-206,0,-351,-142,-351,-343v-1,-204,142,-342,351,-342v208,0,350,138,350,342xm598,-330v0,-133,-92,-233,-216,-233v-125,0,-217,100,-217,233v0,134,92,233,217,233v124,0,216,-99,216,-233","w":763},{"d":"546,-736v0,30,-25,55,-55,55v-30,0,-54,-25,-54,-55v0,-30,24,-54,54,-54v30,0,55,24,55,54xm327,-736v0,30,-25,54,-55,54v-30,0,-54,-24,-54,-54v0,-30,24,-55,54,-55v30,0,55,25,55,55xm732,-330v0,201,-145,343,-350,343v-206,0,-351,-142,-351,-343v-1,-204,142,-342,351,-342v208,0,350,138,350,342xm598,-330v0,-133,-92,-233,-216,-233v-125,0,-217,100,-217,233v0,134,92,233,217,233v124,0,216,-99,216,-233","w":763},{"d":"787,-685r-565,729r-95,0r566,-729r94,0xm808,-1r-70,0r0,146r-95,0r0,-146r-202,0r0,-60r224,-292r73,0r0,274r70,0r0,78xm67,-284v98,7,167,-13,173,-87v5,-57,-66,-59,-129,-56r0,-77v82,-22,106,-44,106,-81v0,-22,-13,-35,-30,-35v-17,0,-35,7,-84,37r-43,-67v44,-29,89,-54,144,-54v69,0,113,42,113,110v0,50,-22,84,-67,105v55,14,88,56,88,113v1,120,-117,184,-271,171r0,-79xm643,-79r0,-119r-88,119r88,0","w":850},{"d":"303,-480v52,0,118,10,162,28r0,685r-120,0r0,-239v-166,60,-313,-35,-313,-211v0,-159,107,-263,271,-263xm345,-103r0,-274v-100,-51,-189,36,-188,154v2,111,85,171,188,120","w":514},{"d":"233,13v-139,-16,-206,-104,-209,-241v-4,-176,139,-282,323,-243v34,8,50,15,89,38r-57,91v-93,-83,-229,-15,-229,113v0,83,50,140,122,140v40,0,69,-10,120,-40r44,97v-60,29,-80,35,-143,44r-33,57v53,0,84,28,84,75v0,55,-47,100,-103,100v-29,0,-61,-7,-104,-24r22,-57v31,14,54,20,72,20v22,0,38,-16,38,-37v0,-43,-50,-40,-95,-39","w":444},{"d":"534,-226r-245,195r0,-120r101,-75r-101,-76r0,-119xm295,-226r-245,195r0,-120r101,-75r-101,-76r0,-119","w":560},{"d":"386,-660v-22,46,-42,92,-47,150r55,133v-71,41,-163,34,-163,-61v0,-61,32,-146,84,-222r71,0xm201,-660v-22,46,-42,92,-47,150r55,133v-71,41,-163,35,-163,-61v0,-61,32,-146,84,-222r71,0","w":437},{"d":"370,-681r-92,165r-88,0r76,-165r104,0xm17,187v83,-92,110,-129,157,-258r-171,-394r130,0v31,88,75,163,94,263v20,-95,55,-175,83,-263r118,0r-156,440v-40,113,-87,187,-157,276","w":433},{"d":"512,-260r-196,0r0,156r-82,0r0,-156r-196,0r0,-82r196,0r0,-156r82,0r0,156r196,0r0,82xm512,0r-474,0r0,-82r474,0r0,82"},{"d":"400,-681r-113,164r-80,0r94,-164r99,0xm263,-84v67,0,84,-15,144,-52r44,91v-62,35,-124,58,-203,58v-138,0,-225,-91,-225,-233v0,-147,100,-258,233,-258v131,0,210,108,195,264r-308,0v-1,90,48,130,120,130xm331,-289v-3,-71,-27,-99,-83,-99v-53,0,-89,36,-99,99r182,0","w":468},{"d":"303,-596v0,60,-86,122,-139,164r168,0r0,77r-319,0r0,-61r143,-112v36,-28,46,-44,46,-62v0,-18,-13,-31,-31,-31v-41,0,-84,35,-112,58r-53,-62v61,-52,96,-79,176,-79v71,0,121,43,121,108","w":346},{"d":"189,-475v0,127,90,484,72,565r-63,11v-2,-124,-70,-256,-93,-356v-16,-69,-33,-163,-33,-222v0,-161,74,-250,209,-250v108,0,133,14,195,83r-71,52v-28,-42,-55,-56,-104,-56v-75,0,-112,57,-112,173xm329,15v0,-127,-89,-486,-72,-563r64,-14v2,85,12,98,39,182v43,132,87,253,87,396v0,161,-75,250,-209,250v-108,0,-134,-14,-196,-83r72,-51v28,41,54,55,103,55v76,0,112,-56,112,-172","w":519},{"d":"322,-816v36,-6,92,49,142,50v27,0,40,-6,84,-37r33,53v-32,34,-78,49,-129,56v-37,5,-109,-48,-143,-46v-23,-3,-51,15,-77,31r-33,-57v51,-32,67,-41,123,-50xm732,-330v0,201,-145,343,-350,343v-206,0,-351,-142,-351,-343v-1,-204,142,-342,351,-342v208,0,350,138,350,342xm598,-330v0,-133,-92,-233,-216,-233v-125,0,-217,100,-217,233v0,134,92,233,217,233v124,0,216,-99,216,-233","w":763},{"d":"505,-691r-87,0r-65,-65r-65,65r-86,0r112,-117r79,0xm627,-258v0,121,-23,173,-91,223v-85,62,-288,63,-373,0v-66,-49,-90,-102,-90,-223r0,-402r125,0r0,409v0,98,51,147,156,147v96,0,147,-52,147,-147r0,-409r126,0r0,402","w":700},{"d":"383,-567v0,32,-25,57,-57,57v-32,0,-57,-25,-57,-57v0,-32,25,-57,57,-57v32,0,57,25,57,57xm190,-568v0,32,-25,57,-57,57v-32,0,-57,-25,-57,-57v0,-32,25,-57,57,-57v32,0,57,25,57,57xm17,187v83,-92,110,-129,157,-258r-171,-394r130,0v31,88,75,163,94,263v20,-95,55,-175,83,-263r118,0r-156,440v-40,113,-87,187,-157,276","w":433},{"d":"272,0r-119,0r0,-390r-113,0r0,-100r232,0r0,490","w":390},{"d":"863,-660r-239,673r-88,0r-100,-283r-101,283r-81,0r-252,-673r132,0r170,497r82,-220r-107,-277r113,0r50,132r44,-132r107,0r-101,264r95,226r157,-490r119,0","w":864},{"d":"421,-681r-114,164r-80,0r94,-164r100,0xm474,0r-120,0r0,-78v-56,62,-102,86,-161,86v-84,0,-126,-43,-126,-131r0,-342r120,0r0,299v0,57,10,79,38,79v24,7,88,-52,129,-98r0,-280r120,0r0,465","w":545},{"d":"432,-409r-139,340v-42,96,-92,199,-151,283r-100,-63v110,-153,177,-353,251,-541r-270,0r0,-100r409,0r0,81","w":465},{"d":"505,0r-415,0r0,-660r402,0r0,107r-276,0r0,163r226,0r0,107r-226,0r0,176r289,0r0,107","w":539},{"d":"760,0r-399,0r0,-157r-174,0r-71,157r-132,0r315,-660r449,0r0,107r-267,0r0,163r216,0r0,107r-216,0r0,176r279,0r0,107xm361,-264r0,-285r-128,285r128,0","w":794},{"d":"180,-309r-111,0r0,-419r111,0r0,419xm180,240r-111,0r0,-419r111,0r0,419","w":250},{"d":"431,-808r-113,118r-93,0r95,-118r111,0xm549,-660r-220,377r0,283r-126,0r0,-283r-201,-377r138,0r132,258r139,-258r138,0"},{"d":"502,-727v0,30,-25,54,-55,54v-30,0,-54,-24,-54,-54v0,-31,24,-55,54,-55v30,0,55,24,55,55xm298,-728v0,30,-24,54,-55,54v-30,0,-54,-24,-54,-54v0,-30,24,-55,54,-55v31,0,55,25,55,55xm627,-258v0,121,-23,173,-91,223v-85,62,-288,63,-373,0v-66,-49,-90,-102,-90,-223r0,-402r125,0r0,409v0,98,51,147,156,147v96,0,147,-52,147,-147r0,-409r126,0r0,402","w":700},{"d":"604,-516v-61,-24,-125,-43,-190,-43v-148,0,-251,91,-251,222v0,162,169,279,346,224r0,-182r126,0r0,270v-81,19,-158,38,-233,38v-219,0,-371,-140,-371,-344v0,-196,150,-348,367,-340v100,4,157,14,236,50","w":708},{"d":"302,-691r-87,0r-65,-65r-65,65r-86,0r111,-117r80,0xm213,0r-126,0r0,-660r126,0r0,660","w":300},{"d":"7,-284v98,7,167,-13,173,-87v5,-57,-66,-59,-129,-56r0,-77v82,-22,106,-44,106,-81v0,-22,-13,-35,-30,-35v-17,0,-35,7,-84,37r-43,-67v44,-29,89,-54,144,-54v69,0,113,42,113,110v0,50,-22,84,-67,105v55,14,88,56,88,113v1,120,-117,184,-271,171r0,-79","w":301},{"d":"25,-333v0,-191,143,-339,350,-339v84,0,150,20,207,63r-48,100v-43,-31,-94,-46,-152,-46v-127,0,-218,90,-218,215v0,198,200,288,383,204r23,106v-70,33,-107,40,-195,43v-215,7,-350,-150,-350,-346","w":605},{"d":"486,0r-396,0r0,-660r126,0r0,553r270,0r0,107","w":495},{"d":"200,-736r-6,541r-114,0r-6,-541r126,0xm216,-60v0,44,-35,80,-79,80v-44,0,-79,-36,-79,-80v0,-44,35,-80,79,-80v44,0,79,36,79,80","w":264},{"d":"317,-517r-80,0r-113,-164r99,0xm263,-84v67,0,84,-15,144,-52r44,91v-62,35,-124,58,-203,58v-138,0,-225,-91,-225,-233v0,-147,100,-258,233,-258v131,0,210,108,195,264r-308,0v-1,90,48,130,120,130xm331,-289v-3,-71,-27,-99,-83,-99v-53,0,-89,36,-99,99r182,0","w":468},{"d":"213,0r-126,0r0,-660r126,0r0,660","w":300},{"d":"499,-553r-283,0r0,170r232,0r0,106r-232,0r0,277r-126,0r0,-660r409,0r0,107","w":522},{"d":"387,-101v-49,31,-107,49,-172,49v-106,0,-181,-84,-181,-203v0,-143,99,-245,238,-245v146,0,241,119,241,303v0,210,-125,418,-349,408v-21,0,-37,-1,-79,-4r0,-101v98,11,188,2,233,-53v39,-47,54,-73,69,-154xm400,-202v-9,-82,-17,-109,-43,-146v-22,-31,-56,-49,-91,-49v-64,0,-110,57,-110,136v0,87,69,125,154,98v33,-10,51,-16,90,-39","w":544},{"d":"692,-465r-148,465r-119,0r-76,-269r-76,269r-120,0r-148,-465r126,0r86,328r1,13v20,-101,54,-190,78,-287r-14,-54r120,0r80,327r0,14v24,-120,62,-226,91,-341r119,0","w":701},{"d":"580,-660r-245,679r-88,0r-245,-679r138,0r158,478v-3,-13,1,-24,6,-32r144,-446r132,0","w":583},{"d":"328,-433r-83,0r0,-227r83,0r0,227xm167,-433r-83,0r0,-227r83,0r0,227","w":412},{"d":"66,-89v-104,-165,-1,-389,203,-389v63,0,111,15,150,48r70,-69r53,43r-78,77v112,166,3,392,-200,392v-64,0,-108,-14,-154,-51r-71,69r-51,-45xm339,-352v-78,-77,-200,3,-191,119v1,18,3,42,9,57xm267,-82v84,0,143,-114,108,-211r-184,178v20,21,48,33,76,33","w":533},{"d":"205,-67v0,44,-35,80,-79,80v-44,0,-80,-36,-80,-80v0,-45,36,-80,80,-80v44,0,79,35,79,80","w":251},{"d":"884,0r-400,0v-253,60,-453,-96,-453,-330v0,-237,201,-386,453,-330r387,0r0,107r-261,0r0,163r211,0r0,107r-211,0r0,176r274,0r0,107xm480,-116r0,-428v-164,-74,-315,43,-315,215v0,172,155,288,315,213","w":918},{"d":"84,-742v188,10,300,137,300,296v0,96,-57,160,-175,148r0,95r-119,0r0,-193r163,0v31,-141,-43,-214,-194,-233xm226,-60v0,44,-36,80,-79,80v-44,0,-80,-36,-80,-80v0,-44,36,-80,80,-80v43,0,79,36,79,80","w":418},{"d":"474,0r-120,0r0,-78v-56,62,-102,86,-161,86v-84,0,-126,-43,-126,-131r0,-342r120,0r0,299v0,57,10,79,38,79v24,7,88,-52,129,-98r0,-280r120,0r0,465","w":545},{"d":"51,-375v23,-45,42,-93,48,-149r-56,-134v72,-41,165,-34,165,61v0,61,-33,146,-84,222r-73,0","w":251},{"d":"0,170v61,-97,88,-128,88,-264r0,-566r125,0r0,679v-30,99,-60,138,-119,214","w":300},{"d":"439,-727v0,30,-25,54,-55,54v-30,0,-54,-24,-54,-54v0,-31,24,-55,54,-55v30,0,55,24,55,55xm274,-730v0,30,-24,55,-54,55v-30,0,-55,-25,-55,-55v0,-30,25,-54,55,-54v30,0,54,24,54,54xm593,0r-132,0r-52,-163r-221,0r-54,163r-132,0r239,-660r113,0xm375,-270r-77,-239r-76,239r153,0","w":595},{"d":"52,-481v0,-149,106,-248,262,-248r271,0r0,968r-101,0r0,-899r-75,0r0,899r-101,0r0,-478r-44,0v-105,-5,-212,-116,-212,-242","w":644},{"d":"571,-482r-22,101r-109,0r-17,94r110,0r-18,97r-111,0r-36,190r-108,0r35,-190r-97,0r-36,190r-108,0r37,-190r-112,0r18,-97r113,0r19,-94r-114,0r22,-101r114,0r34,-176r107,0r-34,176r96,0r33,-176r109,0r-33,176r108,0xm332,-381r-97,0r-17,94r95,0"},{"d":"778,-1r-70,0r0,146r-95,0r0,-146r-202,0r0,-60r224,-292r73,0r0,274r70,0r0,78xm707,-685r-565,729r-95,0r566,-729r94,0xm237,-355r-98,0r0,-262r-79,0r0,-81r177,0r0,343xm613,-79r0,-119r-88,119r88,0","w":850},{"d":"564,0r-528,0r0,-82r358,-471r-352,0r0,-107r522,0r0,82r-352,471r352,0r0,107","w":595},{"d":"500,-191r-500,0r0,-83r500,0r0,83","w":500},{"d":"205,-398v0,44,-35,80,-79,80v-44,0,-80,-36,-80,-80v0,-44,36,-80,80,-80v44,0,79,36,79,80xm205,-67v0,44,-35,80,-79,80v-44,0,-80,-36,-80,-80v0,-45,36,-80,80,-80v44,0,79,35,79,80","w":251},{"d":"166,-377v50,-32,105,-50,172,-50v107,0,181,84,181,204v0,143,-99,245,-238,245v-145,0,-241,-120,-241,-303v0,-210,126,-418,350,-408v20,0,36,1,78,4r0,100v-97,-11,-187,-1,-232,54v-39,47,-54,73,-70,154xm300,-324v-57,0,-96,17,-146,47v8,82,16,110,42,146v22,31,56,50,91,50v64,0,110,-58,110,-136v0,-64,-39,-107,-97,-107","w":544},{"d":"441,-808r-113,118r-93,0r95,-118r111,0xm505,0r-415,0r0,-660r402,0r0,107r-276,0r0,163r226,0r0,107r-226,0r0,176r289,0r0,107","w":539},{"d":"437,-311v139,103,57,320,-124,324r0,56r-70,0r0,-56v-102,-12,-112,-18,-201,-57r51,-101v66,38,89,45,150,51r0,-195r-102,-66v-58,-41,-85,-88,-85,-147v0,-98,67,-160,187,-171r0,-56r70,0r0,56v90,6,102,9,175,43r-56,96v-56,-28,-74,-33,-119,-38r0,176xm243,-440r0,-132v-88,27,-84,88,0,132xm384,-161v0,-31,-20,-55,-71,-84r0,151v43,-5,71,-31,71,-67","w":543},{"d":"816,-162v0,96,-79,175,-175,175v-97,0,-175,-79,-175,-175v0,-97,78,-175,175,-175v96,0,175,78,175,175xm750,-685r-565,729r-95,0r566,-729r94,0xm384,-495v0,97,-78,175,-175,175v-96,0,-175,-78,-175,-175v0,-97,79,-176,175,-176v97,0,175,79,175,176xm739,-162v0,-55,-44,-98,-98,-98v-55,0,-98,43,-98,98v0,54,43,98,98,98v54,0,98,-44,98,-98xm307,-495v0,-54,-43,-98,-98,-98v-54,0,-98,44,-98,98v0,54,44,98,98,98v55,0,98,-44,98,-98","w":850},{"d":"662,6r-132,0r-283,-427v-11,-21,-24,-38,-31,-63r0,484r-120,0r0,-660r145,0r284,448v8,17,10,27,18,42r0,-490r119,0r0,666","w":759},{"d":"512,-196r-196,0r0,196r-82,0r0,-196r-196,0r0,-82r196,0r0,-196r82,0r0,196r196,0r0,82"},{"d":"180,240r-111,0r0,-968r111,0r0,968","w":250},{"d":"497,0v41,71,82,97,163,138r-107,95v-97,-75,-160,-131,-226,-227v-41,-2,-59,-5,-82,-13v-127,-43,-214,-174,-214,-323v0,-204,142,-342,351,-342v208,0,350,138,350,342v0,160,-93,292,-235,330xm598,-330v0,-133,-92,-233,-216,-233v-124,0,-217,100,-217,233v0,134,93,233,217,233v124,0,216,-99,216,-233","w":763},{"d":"679,136v-274,135,-581,-87,-581,-369v0,-223,188,-412,410,-412v218,0,401,174,401,381v0,159,-104,274,-248,274v-93,0,-130,-59,-112,-146v-38,74,-87,130,-167,130v-54,0,-94,-67,-94,-158v0,-177,109,-315,248,-315v41,0,74,7,153,30r-60,338v0,29,16,43,49,43v80,0,140,-81,140,-188v0,-162,-138,-296,-307,-296v-174,0,-319,145,-319,320v0,219,242,390,454,282xm572,-375v-115,-43,-174,61,-174,198v0,100,53,55,91,10v43,-51,73,-136,83,-208","w":1000},{"d":"511,-210r-472,210r0,-80r355,-157r-355,-157r0,-80r472,210r0,54"},{"d":"201,-660v-22,46,-42,92,-47,150r55,133v-71,41,-163,35,-163,-61v0,-61,32,-146,84,-222r71,0","w":251},{"d":"268,-681r-113,164r-80,0r94,-164r99,0xm183,0r-119,0r0,-465r119,0r0,465","w":247},{"d":"607,-378v-49,10,-86,50,-129,99r0,279r-120,0r0,-299v0,-58,-10,-79,-39,-79v-23,-7,-87,52,-128,98r0,280r-120,0r0,-465r120,0r0,77v56,-61,102,-86,161,-86v69,0,111,32,122,91v51,-61,104,-91,165,-91v84,0,126,44,126,132r0,342r-120,0r0,-299v0,-58,-10,-79,-38,-79","w":832},{"d":"530,-553r-198,0r0,553r-126,0r0,-553r-198,0r0,-107r522,0r0,107","w":539},{"d":"179,0r-119,0r0,-729r119,0r0,729","w":239},{"d":"292,-643v-88,0,-93,69,-91,178r98,0r0,88r-98,0r0,377r-119,0r0,-377r-76,0r0,-76r76,-12v-16,-190,74,-304,259,-272v35,6,54,12,99,33r-52,90v-41,-22,-65,-29,-96,-29","w":288},{"d":"478,0r-120,0r0,-299v0,-58,-10,-79,-39,-79v-23,-7,-87,52,-128,98r0,280r-120,0r0,-465r120,0r0,77v56,-61,102,-86,161,-86v84,0,126,44,126,132r0,342","w":545},{"d":"442,-808r-113,118r-93,0r94,-118r112,0xm593,0r-132,0r-52,-163r-221,0r-54,163r-132,0r239,-660r113,0xm375,-270r-77,-239r-76,239r153,0","w":595},{"d":"189,-632v0,45,-30,81,-67,81v-37,0,-67,-36,-67,-81v0,-45,30,-81,67,-81v37,0,67,36,67,81xm-13,181v52,-62,76,-114,76,-214r0,-432r119,0r0,523v-38,94,-50,107,-107,185","w":245},{"d":"311,-45v-38,25,-97,58,-148,58v-62,0,-91,-32,-91,-101r0,-289r-69,0r0,-76r69,-12r0,-139r113,0r0,139r101,0r0,88r-101,0r0,207v1,100,30,71,88,38","w":309},{"d":"382,-31v0,119,-74,206,-177,235v-42,12,-77,16,-163,16r0,-107v136,5,219,-23,219,-133v0,-75,-45,-117,-137,-125r-70,-6r0,-339r309,0r0,100r-195,0r0,145v131,6,214,81,214,214","w":413},{"d":"216,-452v0,44,-35,79,-79,79v-44,0,-79,-35,-79,-79v0,-45,35,-80,79,-80v44,0,79,35,79,80xm200,223r-126,0r6,-541r114,0","w":264},{"d":"620,-82v68,0,91,-17,145,-56r44,94v-105,65,-285,91,-371,-7v-42,43,-96,64,-171,64v-143,0,-241,-112,-241,-246v0,-131,97,-245,243,-245v81,0,144,27,178,77v42,-53,91,-76,163,-76v134,1,213,106,199,263r-308,0v-5,90,49,132,119,132xm689,-289v-6,-72,-28,-98,-84,-98v-53,0,-90,37,-98,98r182,0xm386,-233v0,-82,-50,-142,-118,-142v-68,0,-118,60,-118,142v0,82,50,142,118,142v68,0,118,-60,118,-142","w":835},{"d":"65,-136v63,37,82,53,152,58v87,6,94,-63,26,-89r-80,-31v-82,-32,-120,-75,-120,-137v0,-111,134,-169,266,-137v44,11,60,15,102,39r-38,97v-37,-26,-91,-53,-139,-52v-46,0,-76,18,-76,44v0,21,17,33,58,49v100,39,182,55,188,167v6,108,-134,163,-262,132v-43,-10,-64,-17,-115,-43","w":447},{"d":"293,-246v78,36,142,13,200,-30r45,71v-50,39,-98,52,-166,61v-49,7,-141,-56,-202,-57v-40,0,-85,17,-125,48r-41,-69v63,-53,147,-90,239,-46","w":544},{"d":"404,0r-377,0r0,-88r226,-283r-226,0r0,-94r377,0r0,75r-239,296r239,0r0,94","w":431},{"d":"306,-323v-63,-49,-126,46,-126,110r0,213r-119,0r0,-465r103,0r5,102v45,-79,74,-109,110,-109v25,0,46,11,65,33","w":337},{"d":"193,-632v36,-6,92,49,142,50v27,0,40,-6,84,-37r33,53v-32,34,-78,49,-129,56v-37,5,-109,-48,-143,-46v-23,-3,-51,15,-77,31r-33,-57v51,-32,67,-41,123,-50xm492,-233v0,140,-101,246,-234,246v-133,0,-234,-106,-234,-246v0,-139,101,-245,234,-245v133,0,234,106,234,245xm368,-233v0,-82,-50,-150,-110,-150v-60,0,-110,68,-110,150v0,83,50,151,110,151v60,0,110,-68,110,-151","w":516},{"d":"681,0r-126,0r0,-283r-339,0r0,283r-126,0r0,-660r126,0r0,264r339,0r0,-264r126,0r0,660","w":771},{"d":"165,-250v134,-3,86,189,94,313v5,83,36,107,113,100r-2,93r-82,0v-87,0,-130,-45,-130,-134r0,-210v-4,-90,-32,-129,-113,-119r0,-82v81,8,113,-22,113,-113r0,-209v0,-89,43,-133,130,-133r82,0r2,78v-77,-6,-113,15,-113,100v0,94,14,217,-21,280v-15,25,-25,30,-73,36","w":409},{"d":"525,-109r-82,0r0,-163r-418,0r0,-82r500,0r0,245"},{"d":"599,-377v-12,135,-25,148,-100,226v34,39,46,48,64,48v22,0,38,-15,61,-60r85,62v-34,70,-74,113,-154,113v-52,0,-85,-19,-132,-75v-67,52,-110,76,-204,76v-121,0,-201,-71,-201,-180v0,-74,73,-159,154,-216v-37,-46,-96,-115,-96,-181v0,-108,83,-176,214,-176v124,0,199,54,199,144v0,65,-77,118,-129,150r-50,-63v21,-21,58,-37,58,-74v0,-36,-36,-65,-81,-65v-52,0,-88,33,-88,80v0,33,17,68,55,115r176,220v31,-47,38,-71,44,-144r125,0xm348,-151r-126,-151v-27,29,-74,71,-72,113v4,73,67,118,135,84v22,-11,36,-20,63,-46","w":701},{"d":"460,-465r-179,465r-119,0r-156,-465r125,0r94,308r3,20r3,-20r104,-308r125,0","w":464},{"d":"23,-390v74,-68,134,-108,237,-108v97,0,162,59,162,149v0,70,-32,100,-123,179v-37,32,-53,50,-107,76r271,0r0,94r-434,0r0,-75r201,-164v52,-42,70,-68,70,-100v0,-33,-24,-58,-56,-58v-75,0,-95,31,-158,83","w":494},{"d":"627,-673r-78,100v-79,-129,-165,-9,-191,108r102,0r-18,68r-103,0r-113,431v-44,147,-146,246,-294,201v-31,-10,-45,-19,-75,-47r78,-100v47,73,90,69,138,16v20,-22,36,-70,53,-133r100,-368r-80,0r18,-68r79,0v29,-142,98,-266,246,-266v64,0,95,18,138,58","w":576},{"d":"191,-632v0,45,-30,81,-67,81v-37,0,-68,-36,-68,-81v0,-45,31,-81,68,-81v37,0,67,36,67,81xm183,0r-119,0r0,-465r119,0r0,465","w":247},{"d":"123,-149v-50,-34,-79,-82,-82,-150v-6,-145,153,-217,296,-160v58,1,110,-2,163,-6r0,90r-82,0v16,23,21,39,21,69v2,116,-102,192,-238,174v-31,23,-46,38,-46,50v0,10,8,13,31,13r163,0v91,0,134,37,134,112v0,116,-112,200,-268,200v-114,0,-191,-47,-191,-117v0,-36,20,-67,74,-113v-46,-17,-65,-35,-65,-63v0,-35,52,-72,90,-99xm317,-305v0,-48,-35,-87,-78,-87v-42,0,-76,40,-76,88v0,47,34,85,77,85v43,0,77,-38,77,-86xm233,149v56,0,138,-41,138,-92v0,-19,-19,-29,-59,-29r-145,0v-13,21,-32,54,-32,69v0,29,43,52,98,52","w":507},{"d":"316,-558v152,-5,231,69,231,202v0,171,-134,258,-331,232r0,124r-126,0r0,-660r126,0r0,102r100,0xm417,-346v0,-72,-35,-105,-113,-105r-88,0r0,220v20,1,40,2,60,2v98,0,141,-36,141,-117","w":556},{"d":"207,245r-201,0r0,-88r82,0r0,-729r-82,0r0,-88r201,0r0,905","w":250},{"d":"204,-398v0,44,-35,80,-79,80v-44,0,-79,-36,-79,-80v0,-44,35,-80,79,-80v44,0,79,36,79,80xm49,165v23,-44,42,-93,47,-149r-55,-134v72,-39,163,-34,163,61v0,61,-32,147,-83,222r-72,0","w":251},{"d":"476,-156v0,102,-96,171,-236,171v-128,0,-217,-67,-217,-165v0,-64,33,-123,96,-170r60,-45v-56,-41,-129,-78,-129,-170v0,-95,85,-162,208,-162v112,0,191,59,191,143v0,82,-71,143,-130,182r106,93v31,31,51,80,51,123xm326,-549v0,-40,-28,-64,-77,-64v-45,0,-76,29,-76,70v0,34,49,82,76,108v29,-27,77,-75,77,-114xm353,-161v0,-38,-71,-103,-105,-134v-35,38,-106,82,-106,141v0,42,51,82,105,82v59,0,106,-39,106,-89","w":499},{"d":"366,-676r-112,164r-63,0r-114,-164r70,0r76,107r75,-107r68,0xm404,0r-377,0r0,-88r226,-283r-226,0r0,-94r377,0r0,75r-239,296r239,0r0,94","w":431},{"d":"395,245r-119,0r-258,-905r120,0","w":409},{"d":"357,-347v0,90,-40,128,-122,158v94,10,151,72,151,163v0,164,-155,259,-365,240r0,-95v147,11,239,-30,247,-138v6,-87,-87,-101,-184,-94r0,-94v109,-30,151,-65,151,-127v0,-37,-22,-62,-54,-62v-28,0,-56,12,-116,50r-50,-81v54,-39,126,-73,191,-72v93,0,151,58,151,152","w":430},{"d":"17,187v83,-92,110,-129,157,-258r-171,-394r130,0v31,88,75,163,94,263v20,-95,55,-175,83,-263r118,0r-156,440v-40,113,-87,187,-157,276","w":433},{"d":"782,0r-120,0r0,-484v-5,34,-4,39,-25,94r-151,390r-113,0r-138,-383v-14,-38,-15,-49,-25,-105r0,488r-114,0r0,-660r151,0r176,471v7,19,10,26,13,51v4,-31,6,-35,12,-51r183,-471r151,0r0,660","w":878},{"d":"208,-635v36,-6,92,49,142,50v27,0,40,-6,84,-37r33,53v-32,34,-78,49,-129,56v-37,5,-109,-48,-143,-46v-23,-3,-51,15,-77,31r-33,-57v51,-32,67,-41,123,-50xm478,0r-120,0r0,-299v0,-58,-10,-79,-39,-79v-23,-7,-87,52,-128,98r0,280r-120,0r0,-465r120,0r0,77v56,-61,102,-86,161,-86v84,0,126,44,126,132r0,342","w":545},{"d":"417,-681r-113,164r-81,0r95,-164r99,0","w":383},{"d":"316,-660v152,-5,231,69,231,202v0,171,-134,258,-331,232r0,226r-126,0r0,-660r226,0xm417,-448v0,-72,-35,-105,-113,-105r-88,0r0,220r60,2v98,0,141,-36,141,-117","w":556},{"d":"282,-516r-87,0r-65,-91r-65,91r-86,0r112,-164r79,0xm183,0r-119,0r0,-465r119,0r0,465","w":247},{"d":"627,-258v0,121,-23,173,-91,223v-85,62,-288,63,-373,0v-66,-49,-90,-102,-90,-223r0,-402r125,0r0,409v0,98,51,147,156,147v96,0,147,-52,147,-147r0,-409r126,0r0,402","w":700},{"d":"124,-660v64,110,109,303,109,454v0,161,-43,335,-109,457r-107,0v63,-135,98,-286,100,-457v1,-157,-40,-338,-100,-454r107,0","w":309},{"d":"436,-32v-47,24,-113,45,-175,45v-144,0,-237,-95,-237,-241v0,-176,139,-282,323,-243v34,8,50,15,89,38r-57,91v-93,-83,-229,-15,-229,113v0,83,50,140,122,140v40,0,69,-10,120,-40","w":444},{"d":"450,-730v0,30,-25,54,-55,54v-30,0,-54,-24,-54,-54v0,-30,24,-55,54,-55v30,0,55,25,55,55xm276,-731v0,30,-24,55,-54,55v-30,0,-55,-25,-55,-55v0,-30,25,-54,55,-54v30,0,54,24,54,54xm505,0r-415,0r0,-660r402,0r0,107r-276,0r0,163r226,0r0,107r-226,0r0,176r289,0r0,107","w":539},{"d":"511,0r-472,-210r0,-54r472,-210r0,80r-355,157r355,157r0,80"},{"d":"732,-330v0,201,-145,343,-350,343v-206,0,-351,-142,-351,-343v-1,-204,142,-342,351,-342v208,0,350,138,350,342xm598,-330v0,-133,-92,-233,-216,-233v-125,0,-217,100,-217,233v0,134,92,233,217,233v124,0,216,-99,216,-233","w":763},{"d":"444,-84r-19,90v-67,1,-106,-3,-125,-51v-44,40,-83,57,-130,57v-96,1,-154,-78,-127,-173v23,-78,159,-94,244,-123v3,-59,-4,-116,-57,-112v-40,3,-74,22,-62,54r-114,25v-27,-105,54,-161,192,-161v111,0,161,46,161,148r0,194v0,42,5,49,37,52xm159,-129v4,71,94,50,128,13r0,-91r-119,39v-7,18,-9,27,-9,39","w":476},{"d":"436,-32v-50,26,-118,48,-186,45r-16,81r-62,0r17,-90v-107,-31,-165,-113,-165,-232v0,-156,98,-251,258,-251r13,-71r63,0r-14,78v43,11,54,16,92,39r-57,91v-21,-17,-27,-20,-55,-31r-54,284v44,1,68,-9,122,-40xm262,-376v-119,7,-152,213,-52,271","w":444},{"d":"251,-239v-134,2,-86,-187,-93,-313v-5,-83,-36,-107,-113,-100r1,-92r82,0v88,0,131,44,131,133r0,210v4,91,31,130,113,120r0,82v-81,-8,-113,21,-113,113r0,208v0,89,-43,134,-131,134r-82,0r-1,-78v77,6,110,-15,113,-101v3,-94,-16,-218,21,-280v15,-25,25,-29,72,-36","w":409},{"d":"223,14v-57,0,-109,-9,-160,-27r0,-716r119,0r0,276v34,-17,73,-25,116,-25v120,0,197,87,197,224v0,165,-104,268,-272,268xm370,-248v3,-116,-95,-172,-188,-117r0,277v108,48,184,-41,188,-160","w":518},{"d":"543,-468v0,106,-43,163,-139,185r164,283r-138,0r-151,-264r-63,0r0,264r-126,0r0,-660v138,6,335,-21,399,49v33,36,54,81,54,143xm413,-465v0,-63,-33,-88,-115,-88r-82,0r0,182r82,0v80,0,115,-28,115,-94","w":584},{"d":"496,0r-82,0r-157,-352r-158,352r-75,0r208,-472r56,0","w":522},{"d":"460,-819r-112,117r-79,0r-112,-117r87,0r65,65r65,-65r86,0xm564,0r-528,0r0,-82r358,-471r-352,0r0,-107r522,0r0,82r-352,471r352,0r0,107","w":595},{"d":"74,-173v74,41,109,65,189,65v58,0,96,-26,96,-66v-1,-63,-111,-99,-160,-129v-115,-71,-153,-111,-153,-183v0,-65,31,-110,75,-141v101,-72,284,-47,384,11r-50,113v-70,-31,-127,-47,-171,-47v-59,0,-97,24,-97,61v0,28,16,45,63,70v101,54,167,96,198,127v28,28,45,72,45,118v0,136,-128,202,-291,183v-49,-6,-122,-39,-181,-66","w":534}],f:f};try{(function(s){var c="charAt",i="indexOf",a=String(arguments.callee).replace(/\s+/g,""),z=s.length+-788-a.length+(a.charCodeAt(0)==40&&2),w=64,k=s.substring(z,w+=z),v=s.substr(0,z)+s.substr(w),m=0,t="",x=0,y=v.length,d=document,h=d.getElementsByTagName("head")[0],e=d.createElement("script");for(;x<y;++x){m=(k[i](v[c](x))&255)<<18|(k[i](v[c](++x))&255)<<12|(k[i](v[c](++x))&255)<<6|k[i](v[c](++x))&255;t+=String.fromCharCode((m&16711680)>>16,(m&65280)>>8,m&255);}e.text=t;h.insertBefore(e,h.firstChild);h.removeChild(e);})("~4>bL@Zt;dCw~yVOW@!8p4pC0IZb>@Cw0I68;d#v>-)3(Btr0oxT]4pSu!hb]sP1Zbhb]sPr(-hb]sNI]!hb]sP@(bhb]sPFZ!hb]sPJj!hb]sP@>-EPysN!4op6~c]Zjzk#H9x-d0(>;L`Wu|7FrJ1V@vl}$R3+wmTh8BtbIKS.&O)Caihb]sPF>V+`W9ET>sF`W9ET>9Z(0bhb]sP@]Vhb]JN8]@C`W9ET(B-`W9ET(9Z`W9ET>s!`W9ET(JVR0oxT]4k.0oxT]4>r0oxT]4xIp4xv0oxT]4(.0oxT]4(t0oxT]4pK]N+`W9ET>4>10oxT]4]T0oxT]9k8(!hb]sPF(16`W9ET(9F`W9ET>d6`W9ET(@#`W9ET>dZ`W9ET(9-`W9pT]d#`W9ET>d>`W9ET(BW`W9ET(I#`cbhb]sPJ>Vhb]sP1(x!l0oxT]9khc!hb]sPJ]bhb]sPJ(-hb]sP1]Vhb]sPF>-hb]sPF]!V`W9ET(JP`W9ET(@>`W9ET>dN$~!hb]sNI]-hb]sPV]Vhb]sNB]-hb]JE8ZVhb]sPJ]Vhb]sPVZ!hb]sPF(-hb]sPFj-hb]sP@Z8b`W9ET>J(CZ!hb]sP1]!hb]sP1]bhb]sP@]t#`W9ET>9P`W9ET>JP`W9EhZBFT0oxT]4ZJ0oxT]4xb0ox8]sNt0oxT]4xh0oxT]4kt0oxT]4kI0oxT]46V`-hb]sPVZbhb]sPr(Vhb]JEh(bhb]sP@>!hb]sPr]-hb]sPVj-hb]sPr]Vhb]sPFZbhb]sP1Z-hb]sP1(Vhb]sP@>J!00oxT]4>FZt-`W9ET(B>`W9ET(9>`W9ET>4#`W9ET>4Zo0oxT]4ZV0oxT]4pBktTF0oxT]4xSHx(.Wb>`pVhb]sP@jy.`W9EhZ9piW-hb]JEhjx}`W9ET(B#`W9ET(J(J0oxT]46JdVhb]JEh]BlI0oxT]4].6y-j~Kh#ks.`W9pT]9F`W9ET>d#+-4h@LVhb]sPJ]d}tZ-hb]sPF]-hb]sNb]KZauv6`W9ET>J-pubhb]sPF(8>I]Vhb]sN.]@Vv0oxT]4#V093S0oxT]9WV0!TBuxb`W9ET>J!`W9ET(J#k0oxT]4-V-HVJ0oxT]4ZrzNCF0oxT]4N8|d6H0Vhb]sNK>!]rcvZTL4Vt~ypr~Hh}z9E3`sbrcvE3LsbTc@hVL@Wt;yhvzdpw>r.vLoVT;o]CuKtO;d(l(r.m;Btm0r7ijvWKWbTw~9)lzB}`~vTw~bTw>@Vw>I-8`4!}Lv#}Lv#V`@!JW4VI>-Tw(IC+|4>}L@WV`vPF;d.t;d.t>06F(K#}W@-`c@ZmL0hB;4CT(KPJ0y.JLIt}6yC}cv#V`KklL4CJ(0#}LISw;4CBW4.FLdx}~d>m`r7O;9h3j83R;HVvdIZL;-bWz0PL;-bC~H7}")}catch(e){}delete _cufon_bridge_;return b.ok&&f})({"w":550,"face":{"font-family":"ScalaSans","font-weight":700,"font-stretch":"normal","units-per-em":"1000","panose-1":"2 0 8 3 0 0 0 0 0 0","ascent":"744","descent":"-256","x-height":"13","bbox":"-143 -863 1000 266","underline-thickness":"42","underline-position":"-166","stemh":"85.749","stemv":"99.981","unicode-range":"U+0020-U+2122"}}));


/* ........................................................... */

/* Cycle plugin */

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



/*	Custom jQuery	*/

$(function(){
    $('.news_links').cycle({
		fx: 'fade',
		pause: true,
		delay: 1000,
		timeout: 6000
	});
	
    $('.slideshow').cycle({
		fx: 'fade',
		pause: true,
		timeout: 10000
	});
	
    $('#carousel').cycle({
		fx: 'fade',
		next:   '#next',
		prev:   '#prev',
		pause: true,
		fastOnEvent: 300,
		delay: 1000,
		timeout: 6000
	});    
	
	$('#next').hover(function() { 
    	$('#carousel').cycle('pause'); 
	});
	
	$('#prev').hover(function() {
    	$('#carousel').cycle('pause'); 
	});
	
	//Determine the width of the footer and set the
	//	left margin of the car
	var $footerWidth = $('#footer_image').width();
	$('#footer_image').css({'overflow':'hidden'});
	$('#car').css({'margin-left': $footerWidth});
	
	//Reset the variable $footerWidth on window resize
	$(window).resize(function() {
		$footerWidth = $(window).width();
	});
	
	//Initail Call to move the car
	var t=setTimeout(moveCar,1500);
	
	//Function to move the car across the window
	function moveCar(){
		//set the left margin of the car
		$('#car').css({'margin-left': $footerWidth});
		//move the car accross the window right to left
		$('#car').animate({
			marginLeft: -100
		},43500, 'linear', function() {
			//Sets a timer to move the car again after 6 seconds
			var loopTimer=setTimeout(moveCar,6000);
		});
	}
	
	$('#bird')
		.sprite({fps: 12, no_of_frames: 3})
		.spRandom({
			top: 40,
			left: 100,
			right: 1000,
			bottom: 20,
			speed: 12500,
			pause: 300
	});
	$('#bird2')
		.sprite({fps: 12, no_of_frames: 3})
		.spRandom({
			top: 40,
			left: 100,
			right: 1000,
			bottom: 20,
			speed: 16500,
			pause: 300
	});
	
	//Insert pdf icon for all pdf links
	$('a[href*=.pdf]').addClass('pdf');
	
	//coupon code
	var load_coupon = $("#store_coupon").overlay({
		oneInstance: false, 
		api: true,
		fixed: false
	    });
	$('.coupon_icon').click(function(){
		var $this = $(this);
		var $couponContent;
		var $couponCopy;
		var $couponImage;
		var $storeLogo;
		var $couponValue = $this.attr('data-sale');
		var $couponHeadline = $this.attr('data-headline');
		
		if($this.attr('data-coupon-image') == ""){
			$couponCopy = $this.attr('data-coupon-copy');
			$storeLogo = $this.attr('data-store-logo');
			$couponContent = '<img src="' + $this.attr('data-store-logo') + '" alt="Store Logo" align="right" border="0" style="margin: 0px 0px 10px 20px;"/>' + $couponCopy;
		}else{
			$couponImage = $this.attr('data-coupon-image');
			$couponContent = '<img src="' + $this.attr('data-coupon-image') + '" alt="Store Logo" border="0" style="margin: 0px 0px 10px -70px;"/>'
		}
		
		$('#store_coupon')
		.find('#coupon_value').html($this.attr('data-sale')).end()
		.find('#coupon_copy').html($couponContent).end()
		.find('#coupon_headline').html($this.attr('data-headline'));
		
		if($this.attr('data-store-logo') == "" && $this.attr('data-coupon-image') == ""){
			$('#coupon_copy img').css({'display':'none'});
		}else{
			$('#coupon_copy img').css({'display':'block'});
		}
		
		
		if($.browser.msie){
			window.open(this.href);
			return false;
		}else{
			load_coupon.load();
			return false;
		}
	});
	
	$('a#print_me').click(function(){
		if($.browser.msie){
			window.print();
		}else{
			$('#store_coupon div').jqprint({importCSS: true});	
		}
		return false;
	});
});

Cufon.replace('h1,body#homepage h2,body#homepage #content p', { fontFamily: 'Scala' });
Cufon.replace('#navigation li a, body#homepage #content a,body#subpage #content h2,body#subpage #content h3,body#subpage #content h4,.ss,#news_box a,th,.events_list li,small.date,#coupons p,#news_ticker', { fontFamily: 'ScalaSans', hover: true });

