

 



/**
 * --------------------------------------------------------------------
 * jQuery-Plugin "pngFix"
 * Version: 1.2, 09.03.2009
 * by Andreas Eberhard, andreas.eberhard@gmail.com
 *                      http://jquery.andreaseberhard.de/
 *
 * Copyright (c) 2007 Andreas Eberhard
 * Licensed under GPL (http://www.opensource.org/licenses/gpl-license.php)
 *
 * Changelog:
 *    09.03.2009 Version 1.2
 *    - Update for jQuery 1.3.x, removed @ from selectors
 *    11.09.2007 Version 1.1
 *    - removed noConflict
 *    - added png-support for input type=image
 *    - 01.08.2007 CSS background-image support extension added by Scott Jehl, scott@filamentgroup.com, http://www.filamentgroup.com
 *    31.05.2007 initial Version 1.0
 * --------------------------------------------------------------------
 * @example $(function(){$(document).pngFix();});
 * @desc Fixes all PNG's in the document on document.ready
 *
 * jQuery(function(){jQuery(document).pngFix();});
 * @desc Fixes all PNG's in the document on document.ready when using noConflict
 *
 * @example $(function(){$('div.examples').pngFix();});
 * @desc Fixes all PNG's within div with class examples
 *
 * @example $(function(){$('div.examples').pngFix( { blankgif:'ext.gif' } );});
 * @desc Fixes all PNG's within div with class examples, provides blank gif for input with png
 * --------------------------------------------------------------------
 */

(function($) {

jQuery.fn.pngFix = function(settings) {

	// Settings
	settings = jQuery.extend({
		blankgif: 'blank.gif'
	}, settings);

	var ie55 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 5.5") != -1);
	var ie6 = (navigator.appName == "Microsoft Internet Explorer" && parseInt(navigator.appVersion) == 4 && navigator.appVersion.indexOf("MSIE 6.0") != -1);

	if (jQuery.browser.msie && (ie55 || ie6)) {

		//fix images with png-source
		jQuery(this).find("img[src$=.png]").each(function() {

			jQuery(this).attr('width',jQuery(this).width());
			jQuery(this).attr('height',jQuery(this).height());

			var prevStyle = '';
			var strNewHTML = '';
			var imgId = (jQuery(this).attr('id')) ? 'id="' + jQuery(this).attr('id') + '" ' : '';
			var imgClass = (jQuery(this).attr('class')) ? 'class="' + jQuery(this).attr('class') + '" ' : '';
			var imgTitle = (jQuery(this).attr('title')) ? 'title="' + jQuery(this).attr('title') + '" ' : '';
			var imgAlt = (jQuery(this).attr('alt')) ? 'alt="' + jQuery(this).attr('alt') + '" ' : '';
			var imgAlign = (jQuery(this).attr('align')) ? 'float:' + jQuery(this).attr('align') + ';' : '';
			var imgHand = (jQuery(this).parent().attr('href')) ? 'cursor:hand;' : '';
			if (this.style.border) {
				prevStyle += 'border:'+this.style.border+';';
				this.style.border = '';
			}
			if (this.style.padding) {
				prevStyle += 'padding:'+this.style.padding+';';
				this.style.padding = '';
			}
			if (this.style.margin) {
				prevStyle += 'margin:'+this.style.margin+';';
				this.style.margin = '';
			}
			var imgStyle = (this.style.cssText);

			strNewHTML += '<span '+imgId+imgClass+imgTitle+imgAlt;
			strNewHTML += 'style="position:relative;white-space:pre-line;display:inline-block;background:transparent;'+imgAlign+imgHand;
			strNewHTML += 'width:' + jQuery(this).width() + 'px;' + 'height:' + jQuery(this).height() + 'px;';
			strNewHTML += 'filter:progid:DXImageTransform.Microsoft.AlphaImageLoader' + '(src=\'' + jQuery(this).attr('src') + '\', sizingMethod=\'scale\');';
			strNewHTML += imgStyle+'"></span>';
			if (prevStyle != ''){
				strNewHTML = '<span style="position:relative;display:inline-block;'+prevStyle+imgHand+'width:' + jQuery(this).width() + 'px;' + 'height:' + jQuery(this).height() + 'px;'+'">' + strNewHTML + '</span>';
			}

			jQuery(this).hide();
			jQuery(this).after(strNewHTML);

		});

		// fix css background pngs
		jQuery(this).find("*").each(function(){
			var bgIMG = jQuery(this).css('background-image');
			if(bgIMG.indexOf(".png")!=-1){
				var iebg = bgIMG.split('url("')[1].split('")')[0];
				jQuery(this).css('background-image', 'none');
				jQuery(this).get(0).runtimeStyle.filter = "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + iebg + "',sizingMethod='scale')";
			}
		});
		
		//fix input with png-source
		jQuery(this).find("input[src$=.png]").each(function() {
			var bgIMG = jQuery(this).attr('src');
			jQuery(this).get(0).runtimeStyle.filter = 'progid:DXImageTransform.Microsoft.AlphaImageLoader' + '(src=\'' + bgIMG + '\', sizingMethod=\'scale\');';
   		jQuery(this).attr('src', settings.blankgif)
		});
	
	}
	
	return jQuery;

};

})(jQuery);

// Copyright ©2009 Aaron Vanderzwan, by Aaron Vanderzwan
// Thanks to Skye Giordano for the suggestion of the resizeMsg option.
// 
// LICENSE
// 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($) {
// The maxImages plugin resizes an image dynamically, according to the width of the browser.
jQuery.fn.maxImage = function(options) {
  
  var resizeMsgDefaults = {show: false, location: 'before', message: 'Original: ([w]w x [h]h)'};
  
  // var opts = $.extend({}, $.fn.maxImage.defaults, options);
  var opts = jQuery.extend({
    wait:                 true,
    imageArray:           [],
    maxFollows:           'both',  // Options: width, height, both
    verticalOffset:       0,
    horizontalOffset:     0,
    leftSpace:            0,
    topSpace:             0,
    rightSpace:           0,
    bottomSpace:          0,
	overflow: 			  'hidden',
    position:             'absolute',
    isBackground:         false,
    zIndex:               -10,
    verticalAlign:        'bottom',
    horizontalAlign:      'left',
    maxAtOrigImageSize:   false,
    slideShow:            false,
    slideDelay:           5,
    slideShowTitle:       true,
    loaderClass:          'loader',
    resizeMsg:            resizeMsgDefaults
  }, options);
  
  // var resizeDefaults = {show: false, location: 'before', message: '(resized)'};
  opts.resizeMsg = jQuery.extend(resizeMsgDefaults, options.resizeMsg)
  
  // Cache jQuery object
  var jQueryMatchedObj = this;
  
  function _initialize() {
    _start(this,jQueryMatchedObj);
    return false;
  }
  
  function _start(image,jQueryMatchedObj) {
    if( opts.slideShow ){
      _setup_slideshow(jQueryMatchedObj);
    } else if ( opts.isBackground ){
      Background._setup_background(image);
    } else {
	 Others._setup_others(image,opts);
    }
  }
  
  Others = {
    _setup_others: function(image,opts){
      $this = $(image);
	  
	  $(window).load(function(){
			_get_orig_data($this);
			_size_image($this);
			Others._configure_css(image,opts);
			
			$(window).resize(function(){
				_size_image($this);
			});
		});
    },
    _configure_css: function(image,opts){
      if(opts.position == 'absolute') {
				
        $(image).css({
          'overflow':   'hidden',
          'left':       opts.leftSpace,
          'top':        opts.topSpace,
          'position':   'absolute'
        });
        
        if(opts.verticalAlign == 'bottom'){
          $(image).css({'bottom':opts.bottomSpace});
        }
        if(opts.horizontalAlign == 'right'){
          $(image).css({'right':opts.rightSpace});
        }
      } else {
        $(image).css({
          'margin-top':     opts.topSpace,
          'margin-right':   opts.rightSpace,
          'margin-bottom':  opts.bottomSpace,
          'margin-left':    opts.leftSpace,
          'position':       'relative'
        });
      }
    }
  }
  
  Background = {
    _setup_background: function(image){
      $this = $(image);
      $this.hide();
      
      Background._configure_css(image);
      $(window).load(function(){
        _get_orig_data($this);
        _size_image($this);
        $this.show();
        
        $(window).resize(function(){
          _size_image($this);
        });
      });
      
    },
    _configure_css: function(image){
      // If position is set to absolute (or if isBackground)
      $(image).css({
        'z-index':  opts.zIndex
      });
      if(opts.position == 'absolute') {
        $(image).css({
          'overflow':   'hidden',
          'left':       opts.leftSpace,
          'top':        opts.topSpace,
          'position':   'absolute'
        });
        
        $('html').css({'overflow-y':opts.overflow});
        
        if(opts.verticalAlign == 'bottom'){
          $(image).css({'bottom':opts.bottomSpace});
        }
        if(opts.horizontalAlign == 'right'){
          $(image).css({'right':opts.rightSpace});
        }
      } else {
        $(image).css({
          'margin-top':     opts.topSpace,
          'margin-right':   opts.rightSpace,
          'margin-bottom':  opts.bottomSpace,
          'margin-left':    opts.leftSpace,
          'position':       'relative'
        });
      }
    }
  }
  
  
  // SLIDESHOW FUNCTIONS
  function _setup_slideshow (jQueryMatchedObj){
    _build_slideshow_structure(jQueryMatchedObj);
    
    opts.imageArray.length = 0;

    if( jQueryMatchedObj.length == 1){
      opts.imageArray.push(new Array(objClicked.getAttribute('src'),objClicked.getAttribute('title')));
    } else {  
      for ( var i = 0; i < jQueryMatchedObj.length; i++ ) {
        opts.imageArray.push(new Array(jQueryMatchedObj[i].getAttribute('src'),jQueryMatchedObj[i].getAttribute('title')));
        $(jQueryMatchedObj[i]).attr('original',$(jQueryMatchedObj[i]).attr('src')).attr('src','');
      }
    }
    _loads_image(0);
		_configure_css();
  }
    
  function _build_slideshow_structure() {
    for ( var i = 0; i < jQueryMatchedObj.length; i++ ) {
      $(jQueryMatchedObj[i]).addClass('slides slide-'+i).after('<div class="slideTitle">'+$(jQueryMatchedObj[i]).attr('title')+'</div>');
    }
    $('.slideTitle').hide().css({
      'padding':'10px',
      'background':'#e0e0e0',
      'position':'absolute',
      'bottom':'0',
      'right':'5%',
      'opacity':'0.8'
    });
  }
  
  
  function _loads_image(nums){
    
    var currentImage = nums;
    
    var objImagePreloader = new Image();
    objImagePreloader.onload = function() {
      $('.slide-'+currentImage).attr('src',opts.imageArray[currentImage][0]);
      _get_orig_data($('.slide-'+currentImage));
      _size_image($('.slide-'+currentImage));
      
      $(window).resize(function(){
        _size_image($('.slide-'+currentImage));
      });
      
      if(currentImage==0){
        _start_timer();
      }
      
      if(currentImage < opts.imageArray.length-1){
        currentImage++;
        _loads_image(currentImage);
      }
      
    }
    objImagePreloader.src = opts.imageArray[currentImage][0];
  }
  
  function _start_timer() {
    var currentSlide = 0;
    
    _configure_css();
    
    // Hide the loading graphic
    $('.'+opts.loaderClass).hide();
    
    // Fade in first image
    $('.slide-'+currentSlide).css({'z-index':opts.zIndex}).fadeIn();
    
    // If user wants to show titles, use this option
    if(opts.slideShowTitle){
      $('.slide-'+currentSlide).next('.slideTitle').css({'z-index':opts.zIndex+1}).fadeIn();
    }
    
    // Start timer for slideshow
    var slideInterval = setInterval(function(){
      if(currentSlide < opts.imageArray.length-1){
        currentSlide++;
        lastSlide = currentSlide-1;
      } else {
        currentSlide=0;
        lastSlide = opts.imageArray.length-1;
      }

      $('.slide-'+lastSlide).css({'z-index':opts.zIndex-1}).fadeOut('slow');
      $('.slide-'+currentSlide).css({'z-index':opts.zIndex}).fadeIn('slow');
      if(opts.slideShowTitle){
        next_title(currentSlide,lastSlide);
      }
    }, (opts.slideDelay*1000));
  }
  
  function _configure_css(){
    for(i=0;i<opts.imageArray.length;i++){
      // Style the slide
      if(opts.position == 'absolute') {
        $('.slide-'+i).css({
          'position':   'absolute',
          'overflow':   'hidden'
        });
        
        $('html').css({'overflow-y':opts.overflow});
        
        if(opts.verticalAlign == 'bottom'){
          $('.slide-'+i).css({'bottom':opts.bottomSpace});
        }else{
          $('.slide-'+i).css({'top':opts.topSpace});
				}
				
        if(opts.horizontalAlign == 'right'){
          $('.slide-'+i).css({'right':opts.rightSpace});
        }else{
		      $('.slide-'+i).css({'left':opts.leftSpace});
				}
					
      } else {
        $('.slide-'+i).css({
          'margin-top':     opts.topSpace,
          'margin-right':   opts.rightSpace,
          'margin-bottom':  opts.bottomSpace,
          'margin-left':    opts.leftSpace,
          'position':       'relative'
        });
      }
      
      
      // Style the title
      $('.slide-'+i).next('.slideTitle').css({
        'position':'absolute',
        'bottom':0,
        'right':'5%'
      });
    }
  }
  
  
  function next_title(currentSlide,lastSlide){
    $('.slide-'+lastSlide).next('.slideTitle').fadeOut();
    $('.slide-'+currentSlide).next('.slideTitle').fadeIn();
  }
  
  
  // BROAD FUNCTIONS - FOR EACH SECTION
  function _get_orig_data(image){
    $this = image;
   	
    $this.attr('origWidth', $this.width());
    $this.attr('origHeight', $this.height());
    $this.attr('ratio', find_ratio($this.width(),$this.height()));
  }
  
  function _size_image(image){
    $this = image;
    
    var originalWidth = to_i($this.attr('origWidth'));
    var originalHeight = to_i($this.attr('origHeight'));
    var ratio = $this.attr('ratio');
	
  	if(originalWidth == 0 || originalHeight == 0){
  		setTimeout(function(){
				_get_orig_data(image);
				_size_image(image);
			}, 100);
  		return;
  	}
    
    var width_and_height = [];
    width_and_height = find_width_and_height(originalWidth,originalHeight,ratio);
    
    $this.width( width_and_height[0] );
    $this.height( width_and_height[1] );
    
    _show_resize_message(originalWidth,originalHeight,image);
  }
  
  function _show_resize_message(originalWidth,originalHeight,image){
	  if( (to_i($this.width()) != originalWidth || to_i($this.height()) != originalHeight) && opts.resizeMsg.show){
      $(".maximage_resized").remove();
      
      // Replace [w] and [h] with their respective width or height
      opts.resizeMsg.message = opts.resizeMsg.message.replace('[w]',originalWidth).replace('[h]',originalHeight);
      
  		var insertStr = '<div class="maximage_resized">' + opts.resizeMsg.message + '</div>';
  		if(opts.resizeMsg.location.toLowerCase() == "before"){
  			$this.before(insertStr);
  		} else {
  			$this.after(insertStr);
  		}
  	}
  }
  
  function find_width_and_height(originalWidth,originalHeight,ratio) {
    var pageWidth = $(window).width() - opts.horizontalOffset;
    var pageHeight = $(window).height() - opts.verticalOffset;
    
    if(!opts.isBackground){
      if(opts.maxFollows=='both'){
        max_follows_width(pageWidth,ratio);
        
        if( height > pageHeight ){
          max_follows_height(pageHeight,ratio);
        }
      } else if (opts.maxFollows == 'width'){
        max_follows_width(pageWidth,ratio);
      } else if (opts.maxFollows == 'height'){  
        max_follows_height(pageHeight,ratio);
      }
    }else{
      width = pageWidth + 40;
      height = width/ratio;
      
      if( height < pageHeight ){
        height = pageHeight - (opts.topSpace + opts.bottomSpace);
        width = height*ratio;
      }
    }
    
    // If maxAtRatio == true and your new width is larger than originalWidth, size to originalWidth
    if ( opts.maxAtOrigImageSize && width > originalWidth){
      arrayImageSize = new Array(originalWidth,originalHeight);
    }else{
      arrayImageSize = new Array(width,height);
    }
    return arrayImageSize;
  }
  
  function max_follows_height(pageHeight,ratio){
    height = pageHeight - (opts.topSpace + opts.bottomSpace);  // Page Height minus topSpace and bottomSpace
    width = height*ratio;
  }
  
  function max_follows_width(pageWidth,ratio){
    width = pageWidth - (opts.leftSpace + opts.rightSpace); // Page Width minus leftSpace and rightSpace
    height = width/ratio;
  }
  
  function find_ratio(width,height) {
    width = to_i(width);
    height = to_i(height);
    var ratio = width/height;
    ratio = ratio.toFixed(2);
    return ratio;
  }
  
  function to_i(i){
    last = parseInt(i);
    return last;
  }
  
  // private function for debugging
  function debug($obj) {
    if (window.console && window.console.log) {
      window.console.log($obj);
    }
  }
  
  return this.each(_initialize);
};


})(jQuery);
$(function(){
	/*
	var width = $(window).width();
	var height = $(window).height();
	*/
	
	//$('div#full-screen').css({"width":width,"height":height});
	
	 $('img.maximage').maxImage({
	  isBackground: true,
	  verticalAlign: 'top',
	  zIndex: -10,
	  overflow: 'auto'
	 });
	 /* */
	/*
	$('img.bgmaximage').maxImage({
		isBackground: true,
		slideShow: false,
		slideDelay: 10,
		position: 'absolute',
		verticalAlign: 'bottom',
		slideShowTitle: false,
		maxFollows: 'height',
		resizeMsg: {show: false},
		overflow: 'auto' 
	});
	*/
});
/*
 * Copyright (c) 2009 Simo Kinnunen.
 * Licensed under the MIT license.
 *
 * @version 1.09i
 */
var Cufon=(function(){var m=function(){return m.replace.apply(null,arguments)};var x=m.DOM={ready:(function(){var C=false,E={loaded:1,complete:1};var B=[],D=function(){if(C){return}C=true;for(var F;F=B.shift();F()){}};if(document.addEventListener){document.addEventListener("DOMContentLoaded",D,false);window.addEventListener("pageshow",D,false)}if(!window.opera&&document.readyState){(function(){E[document.readyState]?D():setTimeout(arguments.callee,10)})()}if(document.readyState&&document.createStyleSheet){(function(){try{document.body.doScroll("left");D()}catch(F){setTimeout(arguments.callee,1)}})()}q(window,"load",D);return function(F){if(!arguments.length){D()}else{C?F():B.push(F)}}})(),root:function(){return document.documentElement||document.body}};var n=m.CSS={Size:function(C,B){this.value=parseFloat(C);this.unit=String(C).match(/[a-z%]*$/)[0]||"px";this.convert=function(D){return D/B*this.value};this.convertFrom=function(D){return D/this.value*B};this.toString=function(){return this.value+this.unit}},addClass:function(C,B){var D=C.className;C.className=D+(D&&" ")+B;return C},color:j(function(C){var B={};B.color=C.replace(/^rgba\((.*?),\s*([\d.]+)\)/,function(E,D,F){B.opacity=parseFloat(F);return"rgb("+D+")"});return B}),fontStretch:j(function(B){if(typeof B=="number"){return B}if(/%$/.test(B)){return parseFloat(B)/100}return{"ultra-condensed":0.5,"extra-condensed":0.625,condensed:0.75,"semi-condensed":0.875,"semi-expanded":1.125,expanded:1.25,"extra-expanded":1.5,"ultra-expanded":2}[B]||1}),getStyle:function(C){var B=document.defaultView;if(B&&B.getComputedStyle){return new a(B.getComputedStyle(C,null))}if(C.currentStyle){return new a(C.currentStyle)}return new a(C.style)},gradient:j(function(F){var G={id:F,type:F.match(/^-([a-z]+)-gradient\(/)[1],stops:[]},C=F.substr(F.indexOf("(")).match(/([\d.]+=)?(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)/ig);for(var E=0,B=C.length,D;E<B;++E){D=C[E].split("=",2).reverse();G.stops.push([D[1]||E/(B-1),D[0]])}return G}),quotedList:j(function(E){var D=[],C=/\s*((["'])([\s\S]*?[^\\])\2|[^,]+)\s*/g,B;while(B=C.exec(E)){D.push(B[3]||B[1])}return D}),recognizesMedia:j(function(G){var E=document.createElement("style"),D,C,B;E.type="text/css";E.media=G;try{E.appendChild(document.createTextNode("/**/"))}catch(F){}C=g("head")[0];C.insertBefore(E,C.firstChild);D=(E.sheet||E.styleSheet);B=D&&!D.disabled;C.removeChild(E);return B}),removeClass:function(D,C){var B=RegExp("(?:^|\\s+)"+C+"(?=\\s|$)","g");D.className=D.className.replace(B,"");return D},supports:function(D,C){var B=document.createElement("span").style;if(B[D]===undefined){return false}B[D]=C;return B[D]===C},textAlign:function(E,D,B,C){if(D.get("textAlign")=="right"){if(B>0){E=" "+E}}else{if(B<C-1){E+=" "}}return E},textShadow:j(function(F){if(F=="none"){return null}var E=[],G={},B,C=0;var D=/(#[a-f0-9]+|[a-z]+\(.*?\)|[a-z]+)|(-?[\d.]+[a-z%]*)|,/ig;while(B=D.exec(F)){if(B[0]==","){E.push(G);G={};C=0}else{if(B[1]){G.color=B[1]}else{G[["offX","offY","blur"][C++]]=B[2]}}}E.push(G);return E}),textTransform:(function(){var B={uppercase:function(C){return C.toUpperCase()},lowercase:function(C){return C.toLowerCase()},capitalize:function(C){return C.replace(/\b./g,function(D){return D.toUpperCase()})}};return function(E,D){var C=B[D.get("textTransform")];return C?C(E):E}})(),whiteSpace:(function(){var D={inline:1,"inline-block":1,"run-in":1};var C=/^\s+/,B=/\s+$/;return function(H,F,G,E){if(E){if(E.nodeName.toLowerCase()=="br"){H=H.replace(C,"")}}if(D[F.get("display")]){return H}if(!G.previousSibling){H=H.replace(C,"")}if(!G.nextSibling){H=H.replace(B,"")}return H}})()};n.ready=(function(){var B=!n.recognizesMedia("all"),E=false;var D=[],H=function(){B=true;for(var K;K=D.shift();K()){}};var I=g("link"),J=g("style");function C(K){return K.disabled||G(K.sheet,K.media||"screen")}function G(M,P){if(!n.recognizesMedia(P||"all")){return true}if(!M||M.disabled){return false}try{var Q=M.cssRules,O;if(Q){search:for(var L=0,K=Q.length;O=Q[L],L<K;++L){switch(O.type){case 2:break;case 3:if(!G(O.styleSheet,O.media.mediaText)){return false}break;default:break search}}}}catch(N){}return true}function F(){if(document.createStyleSheet){return true}var L,K;for(K=0;L=I[K];++K){if(L.rel.toLowerCase()=="stylesheet"&&!C(L)){return false}}for(K=0;L=J[K];++K){if(!C(L)){return false}}return true}x.ready(function(){if(!E){E=n.getStyle(document.body).isUsable()}if(B||(E&&F())){H()}else{setTimeout(arguments.callee,10)}});return function(K){if(B){K()}else{D.push(K)}}})();function s(D){var C=this.face=D.face,B={"\u0020":1,"\u00a0":1,"\u3000":1};this.glyphs=D.glyphs;this.w=D.w;this.baseSize=parseInt(C["units-per-em"],10);this.family=C["font-family"].toLowerCase();this.weight=C["font-weight"];this.style=C["font-style"]||"normal";this.viewBox=(function(){var F=C.bbox.split(/\s+/);var E={minX:parseInt(F[0],10),minY:parseInt(F[1],10),maxX:parseInt(F[2],10),maxY:parseInt(F[3],10)};E.width=E.maxX-E.minX;E.height=E.maxY-E.minY;E.toString=function(){return[this.minX,this.minY,this.width,this.height].join(" ")};return E})();this.ascent=-parseInt(C.ascent,10);this.descent=-parseInt(C.descent,10);this.height=-this.ascent+this.descent;this.spacing=function(L,N,E){var O=this.glyphs,M,K,G,P=[],F=0,J=-1,I=-1,H;while(H=L[++J]){M=O[H]||this.missingGlyph;if(!M){continue}if(K){F-=G=K[H]||0;P[I]-=G}F+=P[++I]=~~(M.w||this.w)+N+(B[H]?E:0);K=M.k}P.total=F;return P}}function f(){var C={},B={oblique:"italic",italic:"oblique"};this.add=function(D){(C[D.style]||(C[D.style]={}))[D.weight]=D};this.get=function(H,I){var G=C[H]||C[B[H]]||C.normal||C.italic||C.oblique;if(!G){return null}I={normal:400,bold:700}[I]||parseInt(I,10);if(G[I]){return G[I]}var E={1:1,99:0}[I%100],K=[],F,D;if(E===undefined){E=I>400}if(I==500){I=400}for(var J in G){if(!k(G,J)){continue}J=parseInt(J,10);if(!F||J<F){F=J}if(!D||J>D){D=J}K.push(J)}if(I<F){I=F}if(I>D){I=D}K.sort(function(M,L){return(E?(M>=I&&L>=I)?M<L:M>L:(M<=I&&L<=I)?M>L:M<L)?-1:1});return G[K[0]]}}function r(){function D(F,G){if(F.contains){return F.contains(G)}return F.compareDocumentPosition(G)&16}function B(G){var F=G.relatedTarget;if(!F||D(this,F)){return}C(this,G.type=="mouseover")}function E(F){C(this,F.type=="mouseenter")}function C(F,G){setTimeout(function(){var H=d.get(F).options;m.replace(F,G?h(H,H.hover):H,true)},10)}this.attach=function(F){if(F.onmouseenter===undefined){q(F,"mouseover",B);q(F,"mouseout",B)}else{q(F,"mouseenter",E);q(F,"mouseleave",E)}}}function u(){var C=[],D={};function B(H){var E=[],G;for(var F=0;G=H[F];++F){E[F]=C[D[G]]}return E}this.add=function(F,E){D[F]=C.push(E)-1};this.repeat=function(){var E=arguments.length?B(arguments):C,F;for(var G=0;F=E[G++];){m.replace(F[0],F[1],true)}}}function A(){var D={},B=0;function C(E){return E.cufid||(E.cufid=++B)}this.get=function(E){var F=C(E);return D[F]||(D[F]={})}}function a(B){var D={},C={};this.extend=function(E){for(var F in E){if(k(E,F)){D[F]=E[F]}}return this};this.get=function(E){return D[E]!=undefined?D[E]:B[E]};this.getSize=function(F,E){return C[F]||(C[F]=new n.Size(this.get(F),E))};this.isUsable=function(){return !!B}}function q(C,B,D){if(C.addEventListener){C.addEventListener(B,D,false)}else{if(C.attachEvent){C.attachEvent("on"+B,function(){return D.call(C,window.event)})}}}function v(C,B){var D=d.get(C);if(D.options){return C}if(B.hover&&B.hoverables[C.nodeName.toLowerCase()]){b.attach(C)}D.options=B;return C}function j(B){var C={};return function(D){if(!k(C,D)){C[D]=B.apply(null,arguments)}return C[D]}}function c(F,E){var B=n.quotedList(E.get("fontFamily").toLowerCase()),D;for(var C=0;D=B[C];++C){if(i[D]){return i[D].get(E.get("fontStyle"),E.get("fontWeight"))}}return null}function g(B){return document.getElementsByTagName(B)}function k(C,B){return C.hasOwnProperty(B)}function h(){var C={},B,F;for(var E=0,D=arguments.length;B=arguments[E],E<D;++E){for(F in B){if(k(B,F)){C[F]=B[F]}}}return C}function o(E,M,C,N,F,D){var K=document.createDocumentFragment(),H;if(M===""){return K}var L=N.separate;var I=M.split(p[L]),B=(L=="words");if(B&&t){if(/^\s/.test(M)){I.unshift("")}if(/\s$/.test(M)){I.push("")}}for(var J=0,G=I.length;J<G;++J){H=z[N.engine](E,B?n.textAlign(I[J],C,J,G):I[J],C,N,F,D,J<G-1);if(H){K.appendChild(H)}}return K}function l(D,M){var C=D.nodeName.toLowerCase();if(M.ignore[C]){return}var E=!M.textless[C];var B=n.getStyle(v(D,M)).extend(M);var F=c(D,B),G,K,I,H,L,J;if(!F){return}for(G=D.firstChild;G;G=I){K=G.nodeType;I=G.nextSibling;if(E&&K==3){if(H){H.appendData(G.data);D.removeChild(G)}else{H=G}if(I){continue}}if(H){D.replaceChild(o(F,n.whiteSpace(H.data,B,H,J),B,M,G,D),H);H=null}if(K==1){if(G.firstChild){if(G.nodeName.toLowerCase()=="cufon"){z[M.engine](F,null,B,M,G,D)}else{arguments.callee(G,M)}}J=G}}}var t=" ".split(/\s+/).length==0;var d=new A();var b=new r();var y=new u();var e=false;var z={},i={},w={autoDetect:false,engine:null,forceHitArea:false,hover:false,hoverables:{a:true},ignore:{applet:1,canvas:1,col:1,colgroup:1,head:1,iframe:1,map:1,optgroup:1,option:1,script:1,select:1,style:1,textarea:1,title:1,pre:1},printable:true,selector:(window.Sizzle||(window.jQuery&&function(B){return jQuery(B)})||(window.dojo&&dojo.query)||(window.Ext&&Ext.query)||(window.YAHOO&&YAHOO.util&&YAHOO.util.Selector&&YAHOO.util.Selector.query)||(window.$$&&function(B){return $$(B)})||(window.$&&function(B){return $(B)})||(document.querySelectorAll&&function(B){return document.querySelectorAll(B)})||g),separate:"words",textless:{dl:1,html:1,ol:1,table:1,tbody:1,thead:1,tfoot:1,tr:1,ul:1},textShadow:"none"};var p={words:/\s/.test("\u00a0")?/[^\S\u00a0]+/:/\s+/,characters:"",none:/^/};m.now=function(){x.ready();return m};m.refresh=function(){y.repeat.apply(y,arguments);return m};m.registerEngine=function(C,B){if(!B){return m}z[C]=B;return m.set("engine",C)};m.registerFont=function(D){if(!D){return m}var B=new s(D),C=B.family;if(!i[C]){i[C]=new f()}i[C].add(B);return m.set("fontFamily",'"'+C+'"')};m.replace=function(D,C,B){C=h(w,C);if(!C.engine){return m}if(!e){n.addClass(x.root(),"cufon-active cufon-loading");n.ready(function(){n.addClass(n.removeClass(x.root(),"cufon-loading"),"cufon-ready")});e=true}if(C.hover){C.forceHitArea=true}if(C.autoDetect){delete C.fontFamily}if(typeof C.textShadow=="string"){C.textShadow=n.textShadow(C.textShadow)}if(typeof C.color=="string"&&/^-/.test(C.color)){C.textGradient=n.gradient(C.color)}else{delete C.textGradient}if(!B){y.add(D,arguments)}if(D.nodeType||typeof D=="string"){D=[D]}n.ready(function(){for(var F=0,E=D.length;F<E;++F){var G=D[F];if(typeof G=="string"){m.replace(C.selector(G),C,true)}else{l(G,C)}}});return m};m.set=function(B,C){w[B]=C;return m};return m})();Cufon.registerEngine("vml",(function(){var e=document.namespaces;if(!e){return}e.add("cvml","urn:schemas-microsoft-com:vml");e=null;var b=document.createElement("cvml:shape");b.style.behavior="url(#default#VML)";if(!b.coordsize){return}b=null;var h=(document.documentMode||0)<8;document.write(('<style type="text/css">cufoncanvas{text-indent:0;}@media screen{cvml\\:shape,cvml\\:rect,cvml\\:fill,cvml\\:shadow{behavior:url(#default#VML);display:block;antialias:true;position:absolute;}cufoncanvas{position:absolute;text-align:left;}cufon{display:inline-block;position:relative;vertical-align:'+(h?"middle":"text-bottom")+";}cufon cufontext{position:absolute;left:-10000in;font-size:1px;}a cufon{cursor:pointer}}@media print{cufon cufoncanvas{display:none;}}</style>").replace(/;/g,"!important;"));function c(i,j){return a(i,/(?:em|ex|%)$|^[a-z-]+$/i.test(j)?"1em":j)}function a(l,m){if(m==="0"){return 0}if(/px$/i.test(m)){return parseFloat(m)}var k=l.style.left,j=l.runtimeStyle.left;l.runtimeStyle.left=l.currentStyle.left;l.style.left=m.replace("%","em");var i=l.style.pixelLeft;l.style.left=k;l.runtimeStyle.left=j;return i}function f(l,k,j,n){var i="computed"+n,m=k[i];if(isNaN(m)){m=k.get(n);k[i]=m=(m=="normal")?0:~~j.convertFrom(a(l,m))}return m}var g={};function d(p){var q=p.id;if(!g[q]){var n=p.stops,o=document.createElement("cvml:fill"),i=[];o.type="gradient";o.angle=180;o.focus="0";o.method="sigma";o.color=n[0][1];for(var m=1,l=n.length-1;m<l;++m){i.push(n[m][0]*100+"% "+n[m][1])}o.colors=i.join(",");o.color2=n[l][1];g[q]=o}return g[q]}return function(ac,G,Y,C,K,ad,W){var n=(G===null);if(n){G=K.alt}var I=ac.viewBox;var p=Y.computedFontSize||(Y.computedFontSize=new Cufon.CSS.Size(c(ad,Y.get("fontSize"))+"px",ac.baseSize));var y,q;if(n){y=K;q=K.firstChild}else{y=document.createElement("cufon");y.className="cufon cufon-vml";y.alt=G;q=document.createElement("cufoncanvas");y.appendChild(q);if(C.printable){var Z=document.createElement("cufontext");Z.appendChild(document.createTextNode(G));y.appendChild(Z)}if(!W){y.appendChild(document.createElement("cvml:shape"))}}var ai=y.style;var R=q.style;var l=p.convert(I.height),af=Math.ceil(l);var V=af/l;var P=V*Cufon.CSS.fontStretch(Y.get("fontStretch"));var U=I.minX,T=I.minY;R.height=af;R.top=Math.round(p.convert(T-ac.ascent));R.left=Math.round(p.convert(U));ai.height=p.convert(ac.height)+"px";var F=Y.get("color");var ag=Cufon.CSS.textTransform(G,Y).split("");var L=ac.spacing(ag,f(ad,Y,p,"letterSpacing"),f(ad,Y,p,"wordSpacing"));if(!L.length){return null}var k=L.total;var x=-U+k+(I.width-L[L.length-1]);var ah=p.convert(x*P),X=Math.round(ah);var O=x+","+I.height,m;var J="r"+O+"ns";var u=C.textGradient&&d(C.textGradient);var o=ac.glyphs,S=0;var H=C.textShadow;var ab=-1,aa=0,w;while(w=ag[++ab]){var D=o[ag[ab]]||ac.missingGlyph,v;if(!D){continue}if(n){v=q.childNodes[aa];while(v.firstChild){v.removeChild(v.firstChild)}}else{v=document.createElement("cvml:shape");q.appendChild(v)}v.stroked="f";v.coordsize=O;v.coordorigin=m=(U-S)+","+T;v.path=(D.d?"m"+D.d+"xe":"")+"m"+m+J;v.fillcolor=F;if(u){v.appendChild(u.cloneNode(false))}var ae=v.style;ae.width=X;ae.height=af;if(H){var s=H[0],r=H[1];var B=Cufon.CSS.color(s.color),z;var N=document.createElement("cvml:shadow");N.on="t";N.color=B.color;N.offset=s.offX+","+s.offY;if(r){z=Cufon.CSS.color(r.color);N.type="double";N.color2=z.color;N.offset2=r.offX+","+r.offY}N.opacity=B.opacity||(z&&z.opacity)||1;v.appendChild(N)}S+=L[aa++]}var M=v.nextSibling,t,A;if(C.forceHitArea){if(!M){M=document.createElement("cvml:rect");M.stroked="f";M.className="cufon-vml-cover";t=document.createElement("cvml:fill");t.opacity=0;M.appendChild(t);q.appendChild(M)}A=M.style;A.width=X;A.height=af}else{if(M){q.removeChild(M)}}ai.width=Math.max(Math.ceil(p.convert(k*P)),0);if(h){var Q=Y.computedYAdjust;if(Q===undefined){var E=Y.get("lineHeight");if(E=="normal"){E="1em"}else{if(!isNaN(E)){E+="em"}}Y.computedYAdjust=Q=0.5*(a(ad,E)-parseFloat(ai.height))}if(Q){ai.marginTop=Math.ceil(Q)+"px";ai.marginBottom=Q+"px"}}return y}})());Cufon.registerEngine("canvas",(function(){var b=document.createElement("canvas");if(!b||!b.getContext||!b.getContext.apply){return}b=null;var a=Cufon.CSS.supports("display","inline-block");var e=!a&&(document.compatMode=="BackCompat"||/frameset|transitional/i.test(document.doctype.publicId));var f=document.createElement("style");f.type="text/css";f.appendChild(document.createTextNode(("cufon{text-indent:0;}@media screen,projection{cufon{display:inline;display:inline-block;position:relative;vertical-align:middle;"+(e?"":"font-size:1px;line-height:1px;")+"}cufon cufontext{display:-moz-inline-box;display:inline-block;width:0;height:0;overflow:hidden;text-indent:-10000in;}"+(a?"cufon canvas{position:relative;}":"cufon canvas{position:absolute;}")+"}@media print{cufon{padding:0;}cufon canvas{display:none;}}").replace(/;/g,"!important;")));document.getElementsByTagName("head")[0].appendChild(f);function d(p,h){var n=0,m=0;var g=[],o=/([mrvxe])([^a-z]*)/g,k;generate:for(var j=0;k=o.exec(p);++j){var l=k[2].split(",");switch(k[1]){case"v":g[j]={m:"bezierCurveTo",a:[n+~~l[0],m+~~l[1],n+~~l[2],m+~~l[3],n+=~~l[4],m+=~~l[5]]};break;case"r":g[j]={m:"lineTo",a:[n+=~~l[0],m+=~~l[1]]};break;case"m":g[j]={m:"moveTo",a:[n=~~l[0],m=~~l[1]]};break;case"x":g[j]={m:"closePath"};break;case"e":break generate}h[g[j].m].apply(h,g[j].a)}return g}function c(m,k){for(var j=0,h=m.length;j<h;++j){var g=m[j];k[g.m].apply(k,g.a)}}return function(V,w,P,t,C,W){var k=(w===null);if(k){w=C.getAttribute("alt")}var A=V.viewBox;var m=P.getSize("fontSize",V.baseSize);var B=0,O=0,N=0,u=0;var z=t.textShadow,L=[];if(z){for(var U=z.length;U--;){var F=z[U];var K=m.convertFrom(parseFloat(F.offX));var I=m.convertFrom(parseFloat(F.offY));L[U]=[K,I];if(I<B){B=I}if(K>O){O=K}if(I>N){N=I}if(K<u){u=K}}}var Z=Cufon.CSS.textTransform(w,P).split("");var E=V.spacing(Z,~~m.convertFrom(parseFloat(P.get("letterSpacing"))||0),~~m.convertFrom(parseFloat(P.get("wordSpacing"))||0));if(!E.length){return null}var h=E.total;O+=A.width-E[E.length-1];u+=A.minX;var s,n;if(k){s=C;n=C.firstChild}else{s=document.createElement("cufon");s.className="cufon cufon-canvas";s.setAttribute("alt",w);n=document.createElement("canvas");s.appendChild(n);if(t.printable){var S=document.createElement("cufontext");S.appendChild(document.createTextNode(w));s.appendChild(S)}}var aa=s.style;var H=n.style;var j=m.convert(A.height);var Y=Math.ceil(j);var M=Y/j;var G=M*Cufon.CSS.fontStretch(P.get("fontStretch"));var J=h*G;var Q=Math.ceil(m.convert(J+O-u));var o=Math.ceil(m.convert(A.height-B+N));n.width=Q;n.height=o;H.width=Q+"px";H.height=o+"px";B+=A.minY;H.top=Math.round(m.convert(B-V.ascent))+"px";H.left=Math.round(m.convert(u))+"px";var r=Math.max(Math.ceil(m.convert(J)),0)+"px";if(a){aa.width=r;aa.height=m.convert(V.height)+"px"}else{aa.paddingLeft=r;aa.paddingBottom=(m.convert(V.height)-1)+"px"}var X=n.getContext("2d"),D=j/A.height;X.scale(D,D*M);X.translate(-u,-B);X.save();function T(){var x=V.glyphs,ab,l=-1,g=-1,y;X.scale(G,1);while(y=Z[++l]){var ab=x[Z[l]]||V.missingGlyph;if(!ab){continue}if(ab.d){X.beginPath();if(ab.code){c(ab.code,X)}else{ab.code=d("m"+ab.d,X)}X.fill()}X.translate(E[++g],0)}X.restore()}if(z){for(var U=z.length;U--;){var F=z[U];X.save();X.fillStyle=F.color;X.translate.apply(X,L[U]);T()}}var q=t.textGradient;if(q){var v=q.stops,p=X.createLinearGradient(0,A.minY,0,A.maxY);for(var U=0,R=v.length;U<R;++U){p.addColorStop.apply(p,v[U])}X.fillStyle=p}else{X.fillStyle=P.get("color")}T();return s}})());
/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 * Copyright (c) 1989, 1990 Adobe Systems Incorporated.  All Rights Reserved.Avant
 * Garde Gothic is a registered trademark of International Typeface Corporation.
 */
Cufon.registerFont({"w":180,"face":{"font-family":"ITC Avant Garde Gothic","font-weight":400,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 5 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"4","bbox":"-16 -352 299 77.2405","underline-thickness":"18","underline-position":"-36","stemv":"28","unicode-range":"U+0020-U+00FF"},"glyphs":{" ":{"w":100},"!":{"d":"27,-66r0,-195r26,0r0,195r-26,0xm53,0r-26,0r0,-38r26,0r0,38","w":79},"\"":{"d":"28,-163r0,-98r21,0r0,98r-21,0xm71,-163r0,-98r21,0r0,98r-21,0","w":119},"#":{"d":"180,-104r-1,23r-36,0r-12,81r-24,0r11,-81r-46,0r-12,81r-25,0r11,-81r-37,0r1,-23r40,0r7,-52r-37,0r1,-24r39,0r12,-81r24,0r-11,81r46,0r12,-81r25,0r-11,81r34,0r-1,24r-37,0r-7,52r34,0xm129,-156r-47,0r-7,52r46,0","w":200},"$":{"d":"19,-61r31,0v0,29,19,46,49,46v30,0,48,-18,48,-48v0,-77,-123,-40,-123,-135v0,-42,33,-67,65,-67r0,-29r20,0r0,29v40,5,62,34,62,74r-30,0v-1,-28,-15,-48,-46,-48v-26,0,-41,16,-41,42v0,64,123,38,123,134v0,42,-28,69,-68,73r0,34r-20,0r0,-34v-41,-1,-70,-30,-70,-71","w":200},"%":{"d":"81,-265v36,0,59,28,59,68v0,40,-23,67,-59,67v-36,0,-60,-27,-60,-67v0,-40,24,-68,60,-68xm81,-246v-28,0,-38,22,-38,49v0,27,10,49,38,49v28,0,37,-22,37,-49v0,-27,-9,-49,-37,-49xm239,-131v36,0,60,28,60,68v0,40,-24,67,-60,67v-36,0,-59,-27,-59,-67v0,-40,23,-68,59,-68xm239,-112v-28,0,-37,22,-37,49v0,27,9,49,37,49v28,0,38,-22,38,-49v0,-27,-10,-49,-38,-49xm226,-265r-113,269r-25,0r113,-269r25,0","w":320},"&":{"d":"95,-140r50,65r47,-87r22,12r-52,96r44,54r-35,0r-25,-31v-31,60,-137,40,-137,-35v0,-39,18,-60,49,-80v-34,-37,-29,-120,34,-119v32,0,51,22,51,54v0,31,-22,56,-48,71xm37,-70v0,25,14,51,42,51v23,0,40,-13,51,-32v-20,-24,-39,-49,-57,-74v-22,15,-36,27,-36,55xm90,-239v-39,0,-27,58,-9,79v16,-11,34,-26,34,-47v0,-18,-4,-32,-25,-32","w":219},"(":{"d":"131,45r0,26v-62,-31,-104,-94,-104,-169v0,-75,42,-138,104,-169r0,26v-106,62,-106,224,0,286","w":140},")":{"d":"9,71r0,-26v106,-62,106,-224,0,-286r0,-26v62,31,104,94,104,169v0,75,-42,138,-104,169","w":140},"*":{"d":"18,-218r12,-21r45,34r-7,-56r24,0r-7,56r45,-34r12,21r-50,21r50,22r-12,22r-45,-33r7,54r-24,0r7,-54r-45,33r-12,-22r50,-22","w":159},"+":{"d":"95,-104r0,-78r26,0r0,78r78,0r0,26r-78,0r0,78r-26,0r0,-78r-78,0r0,-26r78,0","w":216},",":{"d":"42,-37r24,0r-41,79r-24,0","w":100},"-":{"d":"15,-88r0,-22r89,0r0,22r-89,0","w":119},".":{"d":"37,-36r26,0r0,36r-26,0r0,-36","w":100},"\/":{"d":"-7,4r88,-269r26,0r-88,269r-26,0","w":100},"0":{"d":"189,-130v0,82,-31,134,-89,134v-58,0,-88,-52,-88,-134v0,-82,30,-135,88,-135v58,0,89,53,89,135xm158,-130v0,-73,-23,-109,-58,-109v-35,0,-58,36,-58,109v0,73,23,108,58,108v35,0,58,-35,58,-108","w":200},"1":{"d":"50,-237r0,-24r70,0r0,261r-29,0r0,-237r-41,0","w":200},"2":{"d":"171,0r-153,0r0,-24r100,-110v25,-28,27,-43,27,-61v0,-22,-15,-46,-47,-46v-35,0,-49,30,-48,60r-31,0v0,-54,30,-84,80,-84v43,0,76,27,76,70v0,63,-85,126,-120,171r116,0r0,24","w":200},"3":{"d":"12,-77r30,0v0,36,18,58,53,58v35,0,55,-19,55,-54v0,-49,-30,-57,-74,-57r0,-23v42,0,64,-4,64,-46v0,-28,-19,-42,-46,-42v-30,0,-44,20,-45,48r-31,0v0,-49,33,-72,80,-72v76,0,102,114,24,122v38,4,58,33,58,74v0,48,-40,73,-84,73v-53,0,-84,-25,-84,-81","w":200},"4":{"d":"118,-59r-108,0r0,-22r101,-180r35,0r0,178r35,0r0,24r-35,0r0,59r-28,0r0,-59xm40,-83r78,0r-1,-141","w":200},"5":{"d":"18,-73r30,0v0,33,19,54,49,54v35,0,53,-24,53,-72v0,-45,-17,-65,-49,-65v-30,0,-45,21,-50,48r-24,-6r13,-147r121,0r0,24r-98,0v-2,26,-9,56,-8,81v13,-17,27,-24,49,-24v52,0,76,40,76,88v0,55,-27,96,-86,96v-45,0,-76,-26,-76,-77","w":200},"6":{"d":"182,-190r-28,0v-3,-25,-12,-49,-48,-49v-39,0,-59,40,-61,107v29,-64,140,-42,140,48v0,53,-30,88,-84,88v-55,0,-87,-44,-87,-122v0,-90,26,-147,94,-147v44,0,74,30,74,75xm51,-81v0,31,16,59,52,59v36,0,52,-28,52,-59v0,-31,-16,-62,-52,-62v-36,0,-52,31,-52,62","w":200},"7":{"d":"142,-235r-125,0r0,-26r154,0r0,24r-84,237r-32,0","w":200},"8":{"d":"102,4v-46,0,-89,-23,-89,-81v-1,-33,20,-55,50,-67v-22,-7,-37,-27,-37,-54v0,-44,31,-67,73,-67v40,0,76,24,76,66v1,28,-18,46,-39,56v32,7,51,32,51,67v0,48,-35,80,-85,80xm43,-75v0,33,25,56,57,56v32,0,57,-23,57,-56v0,-33,-25,-55,-57,-55v-32,0,-57,22,-57,55xm100,-156v23,0,44,-15,44,-42v0,-27,-21,-43,-44,-43v-23,0,-44,16,-44,43v0,27,21,42,44,42","w":200},"9":{"d":"18,-71r28,0v3,25,12,47,48,49v39,1,63,-42,61,-103v-32,60,-140,37,-140,-51v0,-53,30,-89,84,-89v55,0,87,44,87,122v0,90,-27,147,-94,147v-44,0,-74,-30,-74,-75xm97,-117v69,0,71,-121,0,-122v-71,1,-69,122,0,122","w":200},":":{"d":"37,-164r26,0r0,36r-26,0r0,-36xm37,-36r26,0r0,36r-26,0r0,-36","w":100},";":{"d":"42,-37r24,0r-41,79r-24,0xm37,-164r26,0r0,36r-26,0r0,-36","w":100},"<":{"d":"199,-25r0,28r-182,-84r0,-21r182,-83r0,28r-148,66","w":216},"=":{"d":"199,-139r0,26r-182,0r0,-26r182,0xm199,-69r0,25r-182,0r0,-25r182,0","w":216},">":{"d":"17,3r0,-28r148,-66r-148,-66r0,-28r182,83r0,21","w":216},"?":{"d":"35,-179r-28,0v-4,-51,18,-86,70,-86v41,0,70,25,70,71v0,59,-62,62,-62,96r0,34r-27,0r0,-44v0,-41,61,-38,61,-86v0,-35,-18,-47,-42,-47v-34,0,-42,20,-42,62xm85,0r-27,0r0,-38r27,0r0,38","w":159},"@":{"d":"127,-76v31,0,53,-43,53,-72v0,-17,-13,-33,-28,-33v-32,0,-55,40,-55,70v0,21,12,35,30,35xm165,-73v-27,40,-97,21,-97,-35v0,-65,83,-141,124,-71r7,-22r25,0r-29,101v-4,13,-7,27,4,27v24,0,51,-39,51,-78v0,-58,-46,-92,-100,-92v-64,0,-109,51,-109,114v0,105,138,150,198,71r25,0v-23,39,-66,62,-112,62v-77,0,-137,-59,-137,-135v0,-75,61,-134,135,-134v67,0,123,45,123,111v0,65,-54,104,-86,104v-12,0,-21,-8,-22,-23","w":288},"A":{"d":"53,-104r72,0r-36,-133xm46,-80r-22,80r-25,0r72,-261r37,0r73,261r-27,0r-22,-80r-86,0"},"B":{"d":"26,0r0,-261v72,-3,151,-5,151,65v0,34,-16,52,-38,61v29,3,50,28,50,63v0,45,-32,72,-77,72r-86,0xm54,-123r0,99v52,-1,101,10,104,-49v3,-47,-51,-54,-104,-50xm54,-237r0,90v47,2,93,2,93,-44v0,-47,-45,-49,-93,-46","w":200},"C":{"d":"189,-165r-28,0v-1,-35,-18,-76,-59,-76v-40,0,-61,38,-61,111v0,70,23,111,61,111v37,0,56,-26,59,-71r28,0v0,53,-29,94,-89,94v-59,0,-89,-57,-89,-134v0,-77,31,-135,91,-135v57,0,87,47,87,100","w":200},"D":{"d":"26,0r0,-261r80,0v68,0,102,56,102,131v0,75,-34,130,-102,130r-80,0xm54,-237r0,213v84,6,124,-8,124,-106v0,-97,-39,-114,-124,-107","w":219},"E":{"d":"157,0r-131,0r0,-261r131,0r0,24r-103,0r0,88r103,0r0,24r-103,0r0,101r103,0r0,24"},"F":{"d":"54,0r-28,0r0,-261r120,0r0,24r-92,0r0,88r92,0r0,24r-92,0r0,125","w":159},"G":{"d":"197,-177r-28,0v-3,-34,-21,-64,-58,-64v-48,0,-70,38,-70,111v0,73,21,111,70,111v40,0,65,-17,65,-85r-88,0r0,-24r116,0v6,80,-19,132,-95,132v-68,0,-98,-57,-98,-134v0,-77,30,-135,98,-135v55,0,86,36,88,88","w":219},"H":{"d":"54,0r-28,0r0,-261r28,0r0,114r112,0r0,-114r28,0r0,261r-28,0r0,-123r-112,0r0,123","w":219},"I":{"d":"54,0r-28,0r0,-261r28,0r0,261","w":79},"J":{"d":"4,-64r28,0v0,29,10,45,37,45v25,0,37,-17,37,-47r0,-195r28,0r0,186v0,61,-22,79,-70,79v-40,0,-60,-28,-60,-68","w":159},"K":{"d":"54,0r-28,0r0,-261r28,0r1,137r96,-137r33,0r-72,98r86,163r-33,0r-72,-138r-39,55r0,83","w":200},"L":{"d":"153,0r-127,0r0,-261r28,0r0,237r99,0r0,24","w":159},"M":{"d":"54,0r-28,0r0,-261r41,0r67,215r59,-215r41,0r0,261r-28,0r-1,-214r-62,214r-22,0r-67,-214r0,214","w":259},"N":{"d":"54,0r-28,0r0,-261r30,0r110,198r0,-198r28,0r0,261r-27,0r-113,-207r0,207","w":219},"O":{"d":"110,-265v68,0,98,58,98,135v0,77,-30,134,-98,134v-68,0,-99,-57,-99,-134v0,-77,31,-135,99,-135xm110,-241v-46,0,-69,38,-69,111v0,73,23,111,69,111v46,0,68,-38,68,-111v0,-73,-22,-111,-68,-111","w":219},"P":{"d":"54,-237r0,109v55,1,104,5,104,-54v0,-57,-48,-58,-104,-55xm54,0r-28,0r0,-261r81,0v58,0,82,35,82,79v0,44,-24,78,-82,78r-53,0r0,104","w":200},"Q":{"d":"46,-82v49,-20,90,14,112,39v14,-18,20,-47,20,-87v0,-73,-22,-111,-68,-111v-61,0,-79,90,-64,159xm214,-25r0,26v-19,3,-47,1,-58,-8v-81,38,-145,-27,-145,-123v0,-77,31,-135,99,-135v106,0,122,169,70,238v8,4,25,3,34,2xm53,-58v11,34,47,47,82,34v-17,-24,-40,-48,-82,-34","w":219},"R":{"d":"26,0r0,-261r79,0v105,-8,108,152,15,155r73,106r-34,0r-83,-130v47,4,80,-7,80,-52v0,-56,-47,-58,-102,-55r0,237r-28,0","w":200},"S":{"d":"9,-79r28,0v0,40,13,60,55,60v32,0,51,-15,51,-50v0,-71,-129,-36,-129,-126v0,-46,31,-70,76,-70v47,0,75,30,75,79r-28,0v0,-36,-16,-55,-50,-55v-26,0,-45,16,-45,44v0,70,129,28,129,127v0,52,-37,74,-82,74v-55,0,-80,-30,-80,-83"},"T":{"d":"4,-235r0,-26r152,0r0,26r-62,0r0,235r-28,0r0,-235r-62,0","w":159},"U":{"d":"21,-261r28,0r0,188v0,37,20,54,51,54v31,0,51,-17,51,-54r0,-188r28,0r0,193v0,47,-28,72,-79,72v-51,0,-79,-25,-79,-72r0,-193","w":200},"V":{"d":"154,-261r27,0r-69,261r-38,0r-75,-261r27,0r67,237"},"W":{"d":"75,0r-73,-261r26,0r64,227r40,-227r35,0r45,227r59,-227r27,0r-72,261r-33,0r-43,-222r-39,222r-36,0","w":299},"X":{"d":"1,0r71,-137r-62,-124r30,0r48,99r48,-99r31,0r-62,123r74,138r-30,0r-59,-113r-58,113r-31,0"},"Y":{"d":"179,-261r-75,157r0,104r-28,0r0,-104r-75,-157r32,0r57,128r57,-128r32,0"},"Z":{"d":"150,0r-144,0r0,-21r108,-216r-105,0r0,-24r139,0r0,21r-109,216r111,0r0,24","w":159},"[":{"d":"126,68r-89,0r0,-329r89,0r0,22r-64,0r0,286r64,0r0,21","w":140},"\\":{"d":"19,-265r88,269r-26,0r-88,-269r26,0","w":100},"]":{"d":"103,68r-89,0r0,-21r64,0r0,-286r-64,0r0,-22r89,0r0,329","w":140},"^":{"d":"46,-102r-28,0r78,-159r24,0r78,159r-27,0r-63,-126","w":216},"_":{"d":"180,45r-180,0r0,-18r180,0r0,18"},"a":{"d":"158,-198r0,198r-23,0v-1,-9,2,-21,-1,-28v-10,25,-27,32,-51,32v-49,0,-71,-47,-71,-103v0,-56,22,-103,73,-103v20,-1,38,11,50,31r0,-27r23,0xm39,-99v0,49,15,79,47,79v30,0,47,-21,47,-79v0,-58,-17,-79,-47,-79v-32,0,-47,25,-47,79"},"b":{"d":"22,0r0,-261r26,0r1,83v10,-14,27,-24,46,-24v51,0,73,47,73,103v0,56,-22,103,-71,103v-24,0,-38,-7,-51,-25r0,21r-24,0xm141,-99v0,-54,-15,-79,-47,-79v-30,0,-47,21,-47,79v0,58,17,79,47,79v32,0,47,-30,47,-79"},"c":{"d":"148,-127r-27,0v-1,-24,-12,-51,-38,-51v-30,0,-44,28,-44,79v0,92,77,103,84,30r27,0v-4,43,-23,73,-69,73v-47,0,-69,-38,-69,-103v0,-62,22,-103,71,-103v45,0,64,34,65,75","w":159},"d":{"d":"158,-261r0,261r-24,0r0,-21v-13,18,-27,25,-51,25v-49,0,-71,-47,-71,-103v0,-56,22,-103,73,-103v20,-1,35,12,47,24r0,-83r26,0xm39,-99v0,49,15,79,47,79v30,0,47,-21,47,-79v0,-58,-17,-79,-47,-79v-32,0,-47,25,-47,79"},"e":{"d":"150,-89r-113,0v0,37,16,69,47,69v26,0,37,-25,40,-48r26,0v0,34,-28,72,-66,72v-45,0,-74,-37,-74,-103v0,-59,27,-103,72,-103v47,0,72,47,68,113xm37,-113r86,0v0,-39,-13,-65,-42,-65v-24,0,-44,26,-44,65","w":159},"f":{"d":"86,-260r0,21v-19,-1,-37,-1,-35,20r0,21r31,0r0,22r-31,0r0,176r-26,0r0,-176r-25,0r0,-22r25,0v-5,-47,15,-71,61,-62","w":79},"g":{"d":"132,-198r25,0r0,210v0,43,-24,65,-73,65v-43,0,-69,-23,-69,-65r26,0v0,30,18,41,44,41v45,0,52,-37,46,-80v-10,23,-28,31,-49,31v-49,0,-70,-47,-70,-103v0,-56,21,-103,69,-103v25,-1,41,10,51,32r0,-28xm39,-99v0,49,15,79,47,79v27,0,44,-21,44,-79v0,-58,-17,-79,-44,-79v-32,0,-47,25,-47,79"},"h":{"d":"48,0r-26,0r0,-261r26,0r1,83v10,-17,26,-24,49,-24v94,2,50,120,60,202r-26,0r0,-134v0,-29,-13,-44,-37,-44v-75,0,-39,110,-47,178"},"i":{"d":"53,0r-26,0r0,-198r26,0r0,198xm53,-227r-26,0r0,-32r26,0r0,32","w":79},"j":{"d":"27,-198r26,0r0,227v2,40,-26,50,-69,48r0,-24v28,1,43,-2,43,-30r0,-221xm53,-227r-26,0r0,-32r26,0r0,32","w":79},"k":{"d":"48,0r-26,0r0,-261r26,0r1,165r70,-102r30,0r-52,71r60,127r-29,0r-48,-106r-32,44r0,62","w":159},"l":{"d":"53,0r-26,0r0,-261r26,0r0,261","w":79},"m":{"d":"153,0r-26,0r0,-135v0,-29,-11,-43,-34,-43v-74,0,-36,111,-45,178r-26,0r0,-198r26,0v1,8,-2,21,1,27v8,-37,80,-46,97,-2v27,-46,112,-41,112,32r0,141r-26,0r0,-135v0,-29,-11,-43,-34,-43v-74,0,-36,111,-45,178","w":280},"n":{"d":"48,0r-26,0r0,-198r26,0v1,8,-2,21,1,27v5,-19,21,-31,49,-31v94,2,50,120,60,202r-26,0r0,-134v0,-29,-13,-44,-37,-44v-75,0,-39,110,-47,178"},"o":{"d":"90,-202v56,0,78,47,78,103v0,56,-22,103,-78,103v-56,0,-78,-47,-78,-103v0,-56,22,-103,78,-103xm90,-178v-33,0,-51,32,-51,79v0,47,18,79,51,79v33,0,51,-32,51,-79v0,-47,-18,-79,-51,-79"},"p":{"d":"22,71r0,-269r24,0r0,21v13,-18,27,-25,51,-25v49,0,71,47,71,103v0,56,-22,103,-73,103v-20,1,-35,-12,-47,-24r0,91r-26,0xm141,-99v0,-49,-15,-79,-47,-79v-30,0,-47,21,-47,79v0,58,17,79,47,79v32,0,47,-25,47,-79"},"q":{"d":"158,-198r0,269r-26,0r-1,-91v-10,14,-27,24,-46,24v-51,0,-73,-47,-73,-103v0,-56,22,-103,71,-103v24,0,38,7,51,25r0,-21r24,0xm39,-99v0,54,15,79,47,79v30,0,47,-21,47,-79v0,-58,-17,-79,-47,-79v-32,0,-47,30,-47,79"},"r":{"d":"48,0r-26,0r0,-198r23,0r0,26v8,-25,25,-30,54,-30r0,26v-78,-7,-44,107,-51,176","w":100},"s":{"d":"145,-140r-27,0v3,-45,-74,-53,-75,-7v0,46,105,18,105,91v0,36,-27,60,-70,60v-40,0,-68,-22,-68,-62r27,0v0,24,18,38,39,38v27,0,44,-11,44,-33v0,-54,-105,-16,-105,-94v0,-32,25,-55,61,-55v43,0,68,22,69,62","w":159},"t":{"d":"53,-176r0,176r-26,0r0,-176r-25,0r0,-22r25,0r0,-61r26,0r0,61r31,0r0,22r-31,0","w":79},"u":{"d":"132,-198r26,0r0,198r-26,0v-1,-8,2,-21,-1,-27v-5,19,-21,31,-49,31v-94,-2,-50,-120,-60,-202r26,0r0,134v0,29,13,44,37,44v75,0,39,-110,47,-178"},"v":{"d":"95,0r-33,0r-58,-198r29,0r47,165r47,-165r29,0","w":159},"w":{"d":"71,-30v14,-53,22,-113,34,-168r33,0r34,168r43,-168r27,0r-56,198r-30,0r-36,-166r-33,166r-32,0r-57,-198r28,0","w":240},"x":{"d":"65,-104r-56,-94r32,0r40,71r41,-71r30,0r-56,94r62,104r-33,0r-44,-82r-48,82r-31,0","w":159},"y":{"d":"157,-198r-88,275r-28,0r24,-71r-62,-204r27,0r49,171r50,-171r28,0","w":159},"z":{"d":"13,-176r0,-22r132,0r0,26r-104,150r104,0r0,22r-137,0r0,-20r106,-156r-101,0","w":159},"{":{"d":"16,-86r0,-22v55,-10,-17,-152,54,-157r55,0r0,22v-29,3,-67,-12,-63,26v-4,40,13,110,-18,121v33,8,13,82,18,120v-4,38,34,23,63,26r0,21v-46,-1,-93,12,-88,-45v-5,-39,16,-104,-21,-112","w":140},"|":{"d":"27,4r0,-269r26,0r0,269r-26,0","w":79},"}":{"d":"124,-108r0,22v-55,10,17,152,-54,157r-55,0r0,-21v29,-3,67,12,63,-26v4,-40,-13,-110,18,-121v-32,-9,-13,-82,-18,-120v4,-38,-34,-23,-63,-26r0,-22v46,1,93,-12,88,45v5,39,-16,104,21,112","w":140},"~":{"d":"70,-116v24,-1,57,23,78,24v12,0,22,-13,30,-26r13,21v-11,15,-23,31,-45,31v-37,0,-90,-50,-108,2r-13,-21v8,-15,21,-31,45,-31","w":216},"\u00a1":{"d":"53,-132r0,195r-26,0r0,-195r26,0xm27,-198r26,0r0,38r-26,0r0,-38","w":79},"\u00a2":{"d":"89,-265r21,0r0,33v36,6,53,36,53,73r-26,0v-2,-29,-12,-50,-40,-50v-27,0,-42,24,-42,74v0,56,14,83,42,83v26,0,38,-17,42,-48r27,0v-1,40,-23,66,-56,72r0,32r-21,0r0,-32v-49,-4,-62,-60,-62,-102v0,-44,13,-97,62,-103r0,-32","w":200},"\u00a3":{"d":"15,0r0,-26r46,0v15,-38,7,-68,-17,-96r-36,0r0,-21r19,0v-28,-55,7,-122,70,-122v43,0,76,29,79,72r-27,0v-2,-28,-26,-46,-53,-46v-48,0,-63,61,-35,96r85,0r0,21r-67,0v19,27,26,60,14,96v48,5,76,-17,68,-66r28,0v5,51,-8,92,-77,92r-97,0","w":200},"\u00a5":{"d":"180,-107r0,22r-66,0r0,85r-28,0r0,-85r-66,0r0,-22r65,0r-18,-38r-47,0r0,-21r37,0r-45,-95r31,0r57,128r57,-128r32,0r-45,95r36,0r0,21r-46,0r-18,38r64,0","w":200},"\u00a7":{"d":"132,-235r-18,12v-9,-24,-55,-35,-56,1v0,29,89,73,89,126v0,23,-19,35,-39,36v34,31,25,91,-30,89v-22,0,-39,-11,-53,-32r19,-13v6,29,60,36,60,1v0,-37,-91,-78,-91,-130v0,-24,20,-38,42,-38v-35,-21,-25,-82,25,-82v23,0,39,11,52,30xm124,-100v0,-15,-49,-66,-63,-66v-17,0,-25,8,-25,21v0,16,47,68,66,68v11,0,22,-5,22,-23","w":159},"\u00a4":{"d":"163,-130v0,-36,-28,-64,-63,-64v-35,0,-63,28,-63,64v0,36,28,64,63,64v35,0,63,-28,63,-64xm190,-55r-15,15r-19,-20v-28,25,-83,25,-112,1r-19,19r-15,-15r19,-20v-24,-29,-24,-82,0,-111r-19,-19r15,-15r19,19v28,-25,84,-25,112,0r19,-19r15,15r-19,18v24,29,24,84,0,112","w":200},"'":{"d":"30,-163r0,-98r20,0r0,98r-20,0","w":79},"\u00ab":{"d":"60,-34r-44,-65r44,-65r26,0r-44,65r44,65r-26,0xm118,-34r-45,-65r45,-65r26,0r-45,65r45,65r-26,0","w":159},"\u00b7":{"d":"32,-91v0,-10,8,-18,18,-18v10,0,18,8,18,18v0,10,-8,18,-18,18v-10,0,-18,-8,-18,-18","w":100},"\u00b6":{"d":"93,33r0,-156v-44,0,-75,-31,-75,-68v0,-77,85,-72,163,-70r0,294r-25,0r0,-273r-38,0r0,273r-25,0","w":216},"\u00bb":{"d":"144,-99r-45,65r-26,0r45,-65r-45,-65r26,0xm86,-99r-44,65r-26,0r44,-65r-44,-65r26,0","w":159},"\u00bf":{"d":"125,-19r28,0v4,51,-18,86,-70,86v-41,0,-70,-25,-70,-71v0,-59,62,-62,62,-96r0,-34r27,0r0,44v0,41,-61,38,-61,86v0,35,17,47,41,47v34,0,43,-20,43,-62xm75,-198r27,0r0,38r-27,0r0,-38","w":159},"`":{"d":"44,-219r-49,-50r28,0r40,50r-19,0","w":79},"\u00b4":{"d":"36,-219r-19,0r40,-50r28,0","w":79},"\u00af":{"d":"-13,-233r0,-16r106,0r0,16r-106,0","w":79},"\u00a8":{"d":"0,-223r0,-37r23,0r0,37r-23,0xm57,-223r0,-37r23,0r0,37r-23,0","w":79},"\u00b8":{"d":"4,69r5,-13v12,7,49,9,45,-8v1,-21,-29,-8,-37,-16r22,-32r14,0r-18,23v20,-7,45,4,43,24v-2,34,-49,36,-74,22","w":79},"\u00c6":{"d":"146,-80r-81,0r-42,80r-28,0r139,-261r143,0r0,24r-103,0r0,88r103,0r0,24r-103,0r0,101r103,0r0,24r-131,0r0,-80xm78,-104r68,0r-1,-131","w":299},"\u00aa":{"d":"84,-144v-1,-5,3,-15,-2,-17v-24,43,-87,7,-78,-42v-7,-51,52,-84,80,-43r0,-17r15,0r0,119r-15,0xm26,-203v0,27,10,42,25,42v16,0,25,-11,25,-42v0,-32,-9,-43,-25,-43v-16,0,-25,14,-25,43","w":108},"\u00d8":{"d":"51,-62r101,-163v-57,-42,-111,0,-111,95v0,27,4,50,10,68xm166,-204r-102,164v53,50,114,9,114,-90v0,-31,-3,-56,-12,-74xm31,13r-27,0r30,-48v-46,-73,-26,-230,76,-230v23,0,41,6,56,18r17,-27r26,0r-27,44v49,70,33,234,-72,234v-25,0,-46,-7,-61,-21","w":219},"\u00ba":{"d":"54,-265v36,0,51,29,51,62v0,33,-15,61,-51,61v-37,0,-51,-28,-51,-61v0,-33,14,-62,51,-62xm27,-203v0,23,8,40,27,40v18,0,27,-17,27,-40v0,-23,-9,-41,-27,-41v-19,0,-27,18,-27,41","w":108},"\u00e6":{"d":"35,-99v0,49,15,79,47,79v31,0,48,-21,48,-79v0,-58,-17,-79,-48,-79v-32,0,-47,25,-47,79xm272,-89r-115,0v0,37,16,69,47,69v28,0,39,-25,42,-48r26,0v4,56,-82,106,-115,44r0,24r-24,0v-1,-7,2,-18,-1,-24v-15,21,-28,28,-53,28v-49,0,-71,-47,-71,-103v0,-56,22,-103,73,-103v23,0,38,8,49,32r3,0r0,-28r24,0r0,28v11,-24,28,-32,47,-32v47,-1,72,47,68,113xm157,-113r88,0v0,-39,-13,-65,-42,-65v-26,0,-46,26,-46,65","w":280},"\u00f8":{"d":"49,-49r65,-122v-43,-23,-77,15,-75,72v0,20,4,37,10,50xm129,-154r-67,124v41,29,79,-9,79,-69v0,-22,-4,-42,-12,-55xm32,26r-24,0r26,-48v-40,-54,-29,-185,56,-180v14,0,26,3,36,9r17,-31r24,0r-24,44v44,52,34,188,-53,184v-16,0,-30,-4,-40,-11"},"\u00df":{"d":"50,0r-27,0r0,-193v0,-38,31,-68,73,-68v42,0,72,25,72,67v0,24,-6,53,-33,59v82,16,58,137,-24,137v-31,0,-54,-21,-61,-47r0,45xm81,-118r0,-24v32,0,60,-11,60,-48v0,-30,-15,-47,-45,-47v-70,1,-40,101,-46,165r17,0v1,29,17,48,47,48v25,0,46,-15,46,-46v0,-35,-20,-48,-79,-48","w":200},"\u00b9":{"d":"27,-243r0,-19r48,0r0,156r-25,0r0,-137r-23,0","w":119},"\u00ac":{"d":"173,-44r0,-69r-156,0r0,-26r182,0r0,95r-26,0","w":216},"\u00d0":{"d":"-4,-147r30,0r0,-114r80,0v68,0,102,56,102,131v0,75,-34,130,-102,130r-80,0r0,-123r-30,0r0,-24xm54,-147r70,0r0,24r-70,0r0,99v84,6,124,-8,124,-106v0,-97,-39,-114,-124,-107r0,90","w":219},"\u00bd":{"d":"34,-243r0,-19r48,0r0,156r-25,0r0,-137r-23,0xm282,0r-100,0r0,-20v23,-29,77,-54,77,-97v0,-13,-9,-22,-25,-22v-23,0,-29,15,-28,32r-26,0v0,-34,21,-52,55,-52v61,1,64,58,24,96r-43,41r66,0r0,22xm87,4r-29,0r137,-269r29,0","w":300},"\u00b1":{"d":"94,-123r0,-59r26,0r0,59r79,0r0,25r-79,0r0,59r-26,0r0,-59r-77,0r0,-25r77,0xm17,0r0,-26r182,0r0,26r-182,0","w":216},"\u00de":{"d":"54,-212r53,0v58,0,82,35,82,79v0,44,-24,78,-82,78r-53,0r0,55r-28,0r0,-260r28,0r0,48xm158,-133v0,-57,-48,-58,-104,-55r0,109v55,1,104,5,104,-54","w":200},"\u00bc":{"d":"240,-34r-70,0r0,-21r64,-106r30,0r0,106r21,0r0,21r-21,0r0,34r-24,0r0,-34xm198,-55r42,0v-1,-23,2,-50,-1,-71xm34,-243r0,-19r48,0r0,156r-25,0r0,-137r-23,0xm98,4r-29,0r136,-269r30,0","w":300},"\u00f7":{"d":"199,-78r-182,0r0,-26r182,0r0,26xm84,-165v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,24,-24,24v-13,0,-24,-11,-24,-24xm84,-17v0,-13,11,-24,24,-24v13,0,24,11,24,24v0,13,-11,23,-24,23v-13,0,-24,-10,-24,-23","w":216},"\u00a6":{"d":"53,-98r0,102r-26,0r0,-102r26,0xm53,-265r0,102r-26,0r0,-102r26,0","w":79},"\u00b0":{"d":"104,-213v0,-18,-14,-34,-32,-34v-18,0,-32,15,-32,34v0,18,14,33,32,33v18,0,32,-14,32,-33xm123,-213v0,29,-22,51,-51,51v-29,0,-51,-22,-51,-51v0,-29,22,-52,51,-52v29,0,51,23,51,52","w":144},"\u00fe":{"d":"22,71r0,-332r26,0v1,26,-2,57,1,81v10,-15,24,-22,48,-22v49,0,71,47,71,103v0,56,-22,103,-73,103v-20,1,-35,-12,-47,-24r0,91r-26,0xm141,-99v0,-49,-15,-79,-47,-79v-30,0,-47,21,-47,79v0,58,17,79,47,79v32,0,47,-25,47,-79"},"\u00be":{"d":"240,-34r-70,0r0,-21r64,-106r30,0r0,106r21,0r0,21r-21,0r0,34r-24,0r0,-34xm198,-55r42,0v-1,-23,2,-50,-1,-71xm12,-152r24,0v0,18,11,29,31,29v23,0,32,-11,32,-26v0,-21,-17,-33,-45,-33r0,-20v37,10,55,-44,12,-43v-17,0,-26,12,-26,25r-24,0v0,-31,21,-45,52,-45v46,0,63,58,30,73v15,5,24,19,24,45v0,29,-25,44,-54,44v-35,0,-56,-16,-56,-49xm107,4r-29,0r137,-269r29,0","w":300},"\u00b2":{"d":"109,-106r-100,0r0,-20v23,-29,77,-54,77,-97v0,-13,-9,-22,-25,-22v-23,0,-30,15,-29,32r-25,0v0,-34,21,-52,55,-52v62,1,64,59,24,97r-43,41r66,0r0,21","w":119},"\u00ae":{"d":"116,-120r0,67r-24,0r0,-155v51,0,115,-8,115,44v0,28,-18,40,-37,43r40,68r-28,0r-39,-67r-27,0xm116,-189r0,49v30,0,71,4,67,-25v4,-24,-38,-26,-67,-24xm144,4v-74,0,-137,-57,-137,-135v0,-77,63,-134,137,-134v74,0,137,57,137,134v0,78,-63,135,-137,135xm253,-131v0,-63,-47,-112,-109,-112v-62,0,-109,49,-109,112v0,65,47,113,109,113v62,0,109,-48,109,-113","w":288},"\u00f0":{"d":"39,-81v0,32,18,61,51,61v33,0,51,-29,51,-61v0,-32,-18,-60,-51,-60v-33,0,-51,28,-51,60xm41,-251r18,-14v15,7,29,16,42,28r41,-28r12,16r-39,27v32,36,53,82,53,129v0,56,-23,97,-78,97v-106,0,-106,-169,0,-169v13,0,25,1,37,7v-5,-18,-17,-35,-31,-51r-41,29r-12,-16r38,-27v-13,-12,-26,-21,-40,-28"},"\u00d7":{"d":"199,-164r-73,73r73,73r-18,18r-73,-73r-73,73r-18,-18r73,-73r-73,-73r18,-18r73,73r73,-73","w":216},"\u00b3":{"d":"5,-152r23,0v0,18,11,29,31,29v23,0,32,-11,32,-26v0,-21,-16,-33,-44,-33r0,-20v37,10,55,-44,12,-43v-17,0,-27,12,-27,25r-23,0v0,-31,21,-45,52,-45v46,0,61,58,29,73v15,5,25,19,25,45v0,29,-26,44,-55,44v-35,0,-55,-16,-55,-49","w":119},"\u00a9":{"d":"144,4v-74,0,-137,-57,-137,-135v0,-77,63,-134,137,-134v74,0,137,57,137,134v0,78,-63,135,-137,135xm253,-131v0,-63,-47,-112,-109,-112v-62,0,-109,49,-109,112v0,65,47,113,109,113v62,0,109,-48,109,-113xm191,-105r25,0v-18,95,-154,60,-146,-26v-11,-88,133,-115,145,-26r-24,0v-18,-59,-100,-31,-95,26v-8,58,84,84,95,26","w":288},"\u00c1":{"d":"53,-104r72,0r-36,-133xm46,-80r-22,80r-25,0r72,-261r37,0r73,261r-27,0r-22,-80r-86,0xm86,-275r-19,0r40,-50r28,0"},"\u00c2":{"d":"37,-275r41,-50r24,0r41,50r-23,0r-30,-37r-30,37r-23,0xm53,-104r72,0r-36,-133xm46,-80r-22,80r-25,0r72,-261r37,0r73,261r-27,0r-22,-80r-86,0"},"\u00c4":{"d":"53,-104r72,0r-36,-133xm46,-80r-22,80r-25,0r72,-261r37,0r73,261r-27,0r-22,-80r-86,0xm50,-279r0,-37r23,0r0,37r-23,0xm107,-279r0,-37r23,0r0,37r-23,0"},"\u00c0":{"d":"53,-104r72,0r-36,-133xm46,-80r-22,80r-25,0r72,-261r37,0r73,261r-27,0r-22,-80r-86,0xm94,-275r-49,-50r28,0r40,50r-19,0"},"\u00c5":{"d":"90,-275v-21,0,-38,-18,-38,-39v0,-21,17,-38,38,-38v21,0,38,17,38,38v0,21,-17,39,-38,39xm90,-337v-13,0,-24,10,-24,23v0,13,11,24,24,24v13,0,24,-11,24,-24v0,-13,-11,-23,-24,-23xm53,-104r72,0r-36,-133xm46,-80r-22,80r-25,0r72,-261r37,0r73,261r-27,0r-22,-80r-86,0"},"\u00c3":{"d":"47,-279r-14,0v2,-19,12,-33,32,-35v18,-2,64,35,68,-2r14,0v-3,18,-11,35,-32,35v-24,0,-61,-34,-68,2xm53,-104r72,0r-36,-133xm46,-80r-22,80r-25,0r72,-261r37,0r73,261r-27,0r-22,-80r-86,0"},"\u00c7":{"d":"189,-165r-28,0v-1,-35,-18,-76,-59,-76v-40,0,-61,38,-61,111v0,70,23,111,61,111v37,0,56,-26,59,-71r28,0v0,53,-29,94,-89,94v-59,0,-89,-57,-89,-134v0,-77,31,-135,91,-135v57,0,87,47,87,100xm64,69r5,-13v12,7,49,9,45,-8v1,-21,-29,-8,-37,-16r22,-32r14,0r-18,23v20,-7,45,4,43,24v-2,34,-49,36,-74,22","w":200},"\u00c9":{"d":"157,0r-131,0r0,-261r131,0r0,24r-103,0r0,88r103,0r0,24r-103,0r0,101r103,0r0,24xm86,-275r-19,0r40,-50r28,0"},"\u00ca":{"d":"37,-275r41,-50r24,0r41,50r-23,0r-30,-37r-30,37r-23,0xm157,0r-131,0r0,-261r131,0r0,24r-103,0r0,88r103,0r0,24r-103,0r0,101r103,0r0,24"},"\u00cb":{"d":"157,0r-131,0r0,-261r131,0r0,24r-103,0r0,88r103,0r0,24r-103,0r0,101r103,0r0,24xm50,-279r0,-37r23,0r0,37r-23,0xm107,-279r0,-37r23,0r0,37r-23,0"},"\u00c8":{"d":"157,0r-131,0r0,-261r131,0r0,24r-103,0r0,88r103,0r0,24r-103,0r0,101r103,0r0,24xm94,-275r-49,-50r28,0r40,50r-19,0"},"\u00cd":{"d":"54,0r-28,0r0,-261r28,0r0,261xm36,-275r-19,0r40,-50r28,0","w":79},"\u00ce":{"d":"-13,-275r41,-50r24,0r41,50r-24,0r-29,-37r-30,37r-23,0xm54,0r-28,0r0,-261r28,0r0,261","w":79},"\u00cf":{"d":"54,0r-28,0r0,-261r28,0r0,261xm0,-279r0,-37r23,0r0,37r-23,0xm57,-279r0,-37r23,0r0,37r-23,0","w":79},"\u00cc":{"d":"54,0r-28,0r0,-261r28,0r0,261xm44,-275r-49,-50r28,0r40,50r-19,0","w":79},"\u00d1":{"d":"67,-279r-13,0v2,-19,11,-33,31,-35v18,-2,64,35,68,-2r14,0v-3,18,-11,35,-32,35v-25,0,-60,-34,-68,2xm54,0r-28,0r0,-261r30,0r110,198r0,-198r28,0r0,261r-27,0r-113,-207r0,207","w":219},"\u00d3":{"d":"110,-265v68,0,98,58,98,135v0,77,-30,134,-98,134v-68,0,-99,-57,-99,-134v0,-77,31,-135,99,-135xm110,-241v-46,0,-69,38,-69,111v0,73,23,111,69,111v46,0,68,-38,68,-111v0,-73,-22,-111,-68,-111xm106,-275r-19,0r40,-50r28,0","w":219},"\u00d4":{"d":"57,-275r41,-50r24,0r41,50r-23,0r-30,-37r-30,37r-23,0xm110,-265v68,0,98,58,98,135v0,77,-30,134,-98,134v-68,0,-99,-57,-99,-134v0,-77,31,-135,99,-135xm110,-241v-46,0,-69,38,-69,111v0,73,23,111,69,111v46,0,68,-38,68,-111v0,-73,-22,-111,-68,-111","w":219},"\u00d6":{"d":"110,-265v68,0,98,58,98,135v0,77,-30,134,-98,134v-68,0,-99,-57,-99,-134v0,-77,31,-135,99,-135xm110,-241v-46,0,-69,38,-69,111v0,73,23,111,69,111v46,0,68,-38,68,-111v0,-73,-22,-111,-68,-111xm70,-279r0,-37r23,0r0,37r-23,0xm127,-279r0,-37r23,0r0,37r-23,0","w":219},"\u00d2":{"d":"110,-265v68,0,98,58,98,135v0,77,-30,134,-98,134v-68,0,-99,-57,-99,-134v0,-77,31,-135,99,-135xm110,-241v-46,0,-69,38,-69,111v0,73,23,111,69,111v46,0,68,-38,68,-111v0,-73,-22,-111,-68,-111xm114,-275r-49,-50r28,0r40,50r-19,0","w":219},"\u00d5":{"d":"67,-279r-13,0v2,-19,11,-33,31,-35v18,-2,64,35,68,-2r14,0v-3,18,-11,35,-32,35v-25,0,-60,-34,-68,2xm110,-265v68,0,98,58,98,135v0,77,-30,134,-98,134v-68,0,-99,-57,-99,-134v0,-77,31,-135,99,-135xm110,-241v-46,0,-69,38,-69,111v0,73,23,111,69,111v46,0,68,-38,68,-111v0,-73,-22,-111,-68,-111","w":219},"\u00da":{"d":"21,-261r28,0r0,188v0,37,20,54,51,54v31,0,51,-17,51,-54r0,-188r28,0r0,193v0,47,-28,72,-79,72v-51,0,-79,-25,-79,-72r0,-193xm96,-275r-19,0r40,-50r28,0","w":200},"\u00db":{"d":"47,-275r41,-50r24,0r41,50r-23,0r-30,-37r-30,37r-23,0xm21,-261r28,0r0,188v0,37,20,54,51,54v31,0,51,-17,51,-54r0,-188r28,0r0,193v0,47,-28,72,-79,72v-51,0,-79,-25,-79,-72r0,-193","w":200},"\u00dc":{"d":"21,-261r28,0r0,188v0,37,20,54,51,54v31,0,51,-17,51,-54r0,-188r28,0r0,193v0,47,-28,72,-79,72v-51,0,-79,-25,-79,-72r0,-193xm60,-279r0,-37r23,0r0,37r-23,0xm117,-279r0,-37r23,0r0,37r-23,0","w":200},"\u00d9":{"d":"21,-261r28,0r0,188v0,37,20,54,51,54v31,0,51,-17,51,-54r0,-188r28,0r0,193v0,47,-28,72,-79,72v-51,0,-79,-25,-79,-72r0,-193xm104,-275r-49,-50r28,0r40,50r-19,0","w":200},"\u00dd":{"d":"179,-261r-75,157r0,104r-28,0r0,-104r-75,-157r32,0r57,128r57,-128r32,0xm84,-275r-19,0r40,-50r28,0"},"\u00e1":{"d":"158,-198r0,198r-23,0v-1,-9,2,-21,-1,-28v-10,25,-27,32,-51,32v-49,0,-71,-47,-71,-103v0,-56,22,-103,73,-103v20,-1,38,11,50,31r0,-27r23,0xm39,-99v0,49,15,79,47,79v30,0,47,-21,47,-79v0,-58,-17,-79,-47,-79v-32,0,-47,25,-47,79xm83,-219r-19,0r40,-50r28,0"},"\u00e2":{"d":"34,-219r41,-50r24,0r41,50r-23,0r-30,-37r-30,37r-23,0xm158,-198r0,198r-23,0v-1,-9,2,-21,-1,-28v-10,25,-27,32,-51,32v-49,0,-71,-47,-71,-103v0,-56,22,-103,73,-103v20,-1,38,11,50,31r0,-27r23,0xm39,-99v0,49,15,79,47,79v30,0,47,-21,47,-79v0,-58,-17,-79,-47,-79v-32,0,-47,25,-47,79"},"\u00e4":{"d":"158,-198r0,198r-23,0v-1,-9,2,-21,-1,-28v-10,25,-27,32,-51,32v-49,0,-71,-47,-71,-103v0,-56,22,-103,73,-103v20,-1,38,11,50,31r0,-27r23,0xm39,-99v0,49,15,79,47,79v30,0,47,-21,47,-79v0,-58,-17,-79,-47,-79v-32,0,-47,25,-47,79xm47,-223r0,-37r23,0r0,37r-23,0xm104,-223r0,-37r23,0r0,37r-23,0"},"\u00e0":{"d":"158,-198r0,198r-23,0v-1,-9,2,-21,-1,-28v-10,25,-27,32,-51,32v-49,0,-71,-47,-71,-103v0,-56,22,-103,73,-103v20,-1,38,11,50,31r0,-27r23,0xm39,-99v0,49,15,79,47,79v30,0,47,-21,47,-79v0,-58,-17,-79,-47,-79v-32,0,-47,25,-47,79xm91,-219r-49,-50r28,0r40,50r-19,0"},"\u00e5":{"d":"87,-220v-21,0,-38,-17,-38,-38v0,-21,17,-38,38,-38v21,0,38,17,38,38v0,21,-17,38,-38,38xm87,-282v-13,0,-24,11,-24,24v0,13,11,24,24,24v13,0,24,-11,24,-24v0,-13,-11,-24,-24,-24xm158,-198r0,198r-23,0v-1,-9,2,-21,-1,-28v-10,25,-27,32,-51,32v-49,0,-71,-47,-71,-103v0,-56,22,-103,73,-103v20,-1,38,11,50,31r0,-27r23,0xm39,-99v0,49,15,79,47,79v30,0,47,-21,47,-79v0,-58,-17,-79,-47,-79v-32,0,-47,25,-47,79"},"\u00e3":{"d":"44,-223r-13,0v2,-19,11,-33,31,-35v18,-2,64,35,68,-2r14,0v-3,18,-11,35,-32,35v-25,0,-60,-34,-68,2xm158,-198r0,198r-23,0v-1,-9,2,-21,-1,-28v-10,25,-27,32,-51,32v-49,0,-71,-47,-71,-103v0,-56,22,-103,73,-103v20,-1,38,11,50,31r0,-27r23,0xm39,-99v0,49,15,79,47,79v30,0,47,-21,47,-79v0,-58,-17,-79,-47,-79v-32,0,-47,25,-47,79"},"\u00e7":{"d":"148,-127r-27,0v-1,-24,-12,-51,-38,-51v-30,0,-44,28,-44,79v0,92,77,103,84,30r27,0v-4,43,-23,73,-69,73v-47,0,-69,-38,-69,-103v0,-62,22,-103,71,-103v45,0,64,34,65,75xm44,69r5,-13v12,7,49,9,45,-8v1,-21,-29,-8,-37,-16r22,-32r14,0r-18,23v20,-7,45,4,43,24v-2,34,-49,36,-74,22","w":159},"\u00e9":{"d":"150,-89r-113,0v0,37,16,69,47,69v26,0,37,-25,40,-48r26,0v0,34,-28,72,-66,72v-45,0,-74,-37,-74,-103v0,-59,27,-103,72,-103v47,0,72,47,68,113xm37,-113r86,0v0,-39,-13,-65,-42,-65v-24,0,-44,26,-44,65xm76,-219r-19,0r40,-50r28,0","w":159},"\u00ea":{"d":"27,-219r41,-50r24,0r41,50r-24,0r-29,-37r-30,37r-23,0xm150,-89r-113,0v0,37,16,69,47,69v26,0,37,-25,40,-48r26,0v0,34,-28,72,-66,72v-45,0,-74,-37,-74,-103v0,-59,27,-103,72,-103v47,0,72,47,68,113xm37,-113r86,0v0,-39,-13,-65,-42,-65v-24,0,-44,26,-44,65","w":159},"\u00eb":{"d":"150,-89r-113,0v0,37,16,69,47,69v26,0,37,-25,40,-48r26,0v0,34,-28,72,-66,72v-45,0,-74,-37,-74,-103v0,-59,27,-103,72,-103v47,0,72,47,68,113xm37,-113r86,0v0,-39,-13,-65,-42,-65v-24,0,-44,26,-44,65xm40,-223r0,-37r23,0r0,37r-23,0xm97,-223r0,-37r23,0r0,37r-23,0","w":159},"\u00e8":{"d":"150,-89r-113,0v0,37,16,69,47,69v26,0,37,-25,40,-48r26,0v0,34,-28,72,-66,72v-45,0,-74,-37,-74,-103v0,-59,27,-103,72,-103v47,0,72,47,68,113xm37,-113r86,0v0,-39,-13,-65,-42,-65v-24,0,-44,26,-44,65xm84,-219r-49,-50r28,0r40,50r-19,0","w":159},"\u00ed":{"d":"53,0r-26,0r0,-198r26,0r0,198xm36,-219r-19,0r40,-50r28,0","w":79},"\u00ee":{"d":"-13,-219r41,-50r24,0r41,50r-24,0r-29,-37r-30,37r-23,0xm53,0r-26,0r0,-198r26,0r0,198","w":79},"\u00ef":{"d":"53,0r-26,0r0,-198r26,0r0,198xm0,-223r0,-37r23,0r0,37r-23,0xm57,-223r0,-37r23,0r0,37r-23,0","w":79},"\u00ec":{"d":"53,0r-26,0r0,-198r26,0r0,198xm44,-219r-49,-50r28,0r40,50r-19,0","w":79},"\u00f1":{"d":"47,-223r-14,0v2,-19,12,-33,32,-35v18,-2,64,35,68,-2r14,0v-3,18,-11,35,-32,35v-24,0,-61,-34,-68,2xm48,0r-26,0r0,-198r26,0v1,8,-2,21,1,27v5,-19,21,-31,49,-31v94,2,50,120,60,202r-26,0r0,-134v0,-29,-13,-44,-37,-44v-75,0,-39,110,-47,178"},"\u00f3":{"d":"90,-202v56,0,78,47,78,103v0,56,-22,103,-78,103v-56,0,-78,-47,-78,-103v0,-56,22,-103,78,-103xm90,-178v-33,0,-51,32,-51,79v0,47,18,79,51,79v33,0,51,-32,51,-79v0,-47,-18,-79,-51,-79xm86,-219r-19,0r40,-50r28,0"},"\u00f4":{"d":"37,-219r41,-50r24,0r41,50r-23,0r-30,-37r-30,37r-23,0xm90,-202v56,0,78,47,78,103v0,56,-22,103,-78,103v-56,0,-78,-47,-78,-103v0,-56,22,-103,78,-103xm90,-178v-33,0,-51,32,-51,79v0,47,18,79,51,79v33,0,51,-32,51,-79v0,-47,-18,-79,-51,-79"},"\u00f6":{"d":"90,-202v56,0,78,47,78,103v0,56,-22,103,-78,103v-56,0,-78,-47,-78,-103v0,-56,22,-103,78,-103xm90,-178v-33,0,-51,32,-51,79v0,47,18,79,51,79v33,0,51,-32,51,-79v0,-47,-18,-79,-51,-79xm50,-223r0,-37r23,0r0,37r-23,0xm107,-223r0,-37r23,0r0,37r-23,0"},"\u00f2":{"d":"90,-202v56,0,78,47,78,103v0,56,-22,103,-78,103v-56,0,-78,-47,-78,-103v0,-56,22,-103,78,-103xm90,-178v-33,0,-51,32,-51,79v0,47,18,79,51,79v33,0,51,-32,51,-79v0,-47,-18,-79,-51,-79xm94,-219r-49,-50r28,0r40,50r-19,0"},"\u00f5":{"d":"47,-223r-14,0v2,-19,12,-33,32,-35v18,-2,64,35,68,-2r14,0v-3,18,-11,35,-32,35v-24,0,-61,-34,-68,2xm90,-202v56,0,78,47,78,103v0,56,-22,103,-78,103v-56,0,-78,-47,-78,-103v0,-56,22,-103,78,-103xm90,-178v-33,0,-51,32,-51,79v0,47,18,79,51,79v33,0,51,-32,51,-79v0,-47,-18,-79,-51,-79"},"\u00fa":{"d":"132,-198r26,0r0,198r-26,0v-1,-8,2,-21,-1,-27v-5,19,-21,31,-49,31v-94,-2,-50,-120,-60,-202r26,0r0,134v0,29,13,44,37,44v75,0,39,-110,47,-178xm86,-219r-19,0r40,-50r28,0"},"\u00fb":{"d":"37,-219r41,-50r24,0r41,50r-23,0r-30,-37r-30,37r-23,0xm132,-198r26,0r0,198r-26,0v-1,-8,2,-21,-1,-27v-5,19,-21,31,-49,31v-94,-2,-50,-120,-60,-202r26,0r0,134v0,29,13,44,37,44v75,0,39,-110,47,-178"},"\u00fc":{"d":"132,-198r26,0r0,198r-26,0v-1,-8,2,-21,-1,-27v-5,19,-21,31,-49,31v-94,-2,-50,-120,-60,-202r26,0r0,134v0,29,13,44,37,44v75,0,39,-110,47,-178xm50,-223r0,-37r23,0r0,37r-23,0xm107,-223r0,-37r23,0r0,37r-23,0"},"\u00f9":{"d":"132,-198r26,0r0,198r-26,0v-1,-8,2,-21,-1,-27v-5,19,-21,31,-49,31v-94,-2,-50,-120,-60,-202r26,0r0,134v0,29,13,44,37,44v75,0,39,-110,47,-178xm94,-219r-49,-50r28,0r40,50r-19,0"},"\u00fd":{"d":"157,-198r-88,275r-28,0r24,-71r-62,-204r27,0r49,171r50,-171r28,0xm76,-219r-19,0r40,-50r28,0","w":159},"\u00ff":{"d":"157,-198r-88,275r-28,0r24,-71r-62,-204r27,0r49,171r50,-171r28,0xm40,-223r0,-37r23,0r0,37r-23,0xm97,-223r0,-37r23,0r0,37r-23,0","w":159},"\u00a0":{"w":100}}});

/*!
 * The following copyright notice may not be removed under any circumstances.
 * 
 * Copyright:
 *  The digitally encoded machine readable software for producing the Typefaces
 * licensed to you is copyrighted (c) 1985, 1987, 1989, 1990, 1997 Adobe Systems.
 * All Rights Reserved. This software is the property of Adobe Systems
 * Incorporated and its licensors, and may not be reproduced, used,  displayed,
 * modified, disclosed or transferred without the express  written approval of
 * Adobe.  The digitally encoded machine readable outline data for producing the
 * Typefaces licensed to you is copyrighted (c) 1981, 1997 Linotype-Hell AG and/or
 * its subsidiaries. All Rights Reserved. This data is the property of
 * Linotype-Hell AG and/or its subsidiaries and may not be reproduced, used,
 * displayed, modified, disclosed or  transferred without the express written
 * approval of Linotype-Hell AG  and/or its subsidiaries.
 */
Cufon.registerFont({"w":200,"face":{"font-family":"Helvetica","font-weight":500,"font-stretch":"normal","units-per-em":"360","panose-1":"2 0 6 3 0 0 0 0 0 0","ascent":"288","descent":"-72","x-height":"5","bbox":"-7 -334 347 81","underline-thickness":"18","underline-position":"-36","stemh":"27","stemv":"32","unicode-range":"U+0020-U+017E"},"glyphs":{" ":{"w":100},"!":{"d":"67,-37r0,37r-35,0r0,-37r35,0xm59,-62r-18,0r-9,-111r0,-85r35,0v2,70,-3,133,-8,196","w":100},"\"":{"d":"25,-167r0,-91r26,0r0,91r-26,0xm76,-167r0,-91r27,0r0,91r-27,0","w":127},"#":{"d":"140,-76r-11,76r-24,0r11,-76r-45,0r-11,76r-23,0r10,-76r-37,0r3,-22r37,0r7,-51r-37,0r3,-23r37,0r11,-76r24,0r-10,76r44,0r11,-76r24,0r-11,76r37,0r-3,23r-37,0r-7,51r37,0r-3,22r-37,0xm126,-149r-45,0r-7,51r45,0"},"$":{"d":"91,-147r0,-83v-28,0,-43,20,-43,42v0,26,21,37,43,41xm108,-111r0,92v57,2,61,-74,19,-86xm181,-188r-31,0v-3,-19,-9,-36,-42,-42r0,86v49,14,79,23,79,73v0,61,-49,78,-79,78r0,34r-17,0r0,-34v-45,-3,-79,-22,-79,-84r31,0v2,39,12,52,48,58r0,-96v-37,-9,-74,-21,-74,-71v0,-39,31,-70,74,-70r0,-23r17,0r0,23v23,2,71,10,73,68"},"%":{"d":"14,-189v0,-34,28,-61,62,-61v33,0,61,27,61,61v0,34,-27,61,-61,61v-34,0,-62,-26,-62,-61xm39,-189v0,22,17,36,36,36v21,0,37,-16,37,-36v0,-20,-16,-36,-36,-36v-21,0,-37,17,-37,36xm183,-59v0,-34,28,-61,62,-61v33,0,61,27,61,61v0,34,-27,62,-61,62v-34,0,-62,-27,-62,-62xm208,-59v0,22,17,36,36,36v21,0,37,-16,37,-36v0,-20,-16,-36,-36,-36v-21,0,-37,17,-37,36xm241,-253r-143,260r-19,0r142,-260r20,0","w":320},"&":{"d":"150,-51r-58,-71v-28,18,-44,29,-44,57v0,61,77,51,102,14xm103,-158v14,-9,32,-23,32,-45v0,-23,-17,-28,-27,-28v-56,0,-24,56,-5,73xm186,-56r46,56r-41,0r-24,-30v-18,20,-37,35,-75,35v-64,0,-76,-47,-76,-67v0,-35,10,-55,58,-82v-44,-41,-35,-114,34,-114v41,0,58,27,58,53v0,36,-27,54,-46,67r47,57v6,-16,7,-22,10,-41r30,0v-1,18,-8,42,-21,66","w":240},"(":{"d":"85,-264r22,0v-31,58,-49,93,-49,179v0,59,21,103,50,160r-22,0v-79,-101,-83,-235,-1,-339","w":119},")":{"d":"35,75r-22,0v31,-58,49,-93,49,-179v0,-59,-21,-103,-50,-160r21,0v79,101,83,235,2,339","w":119},"*":{"d":"14,-213r7,-20r38,14r0,-39r22,0r0,39r37,-14r8,20r-39,12r24,34r-18,12r-23,-34r-24,34r-17,-12r24,-34","w":140},"+":{"d":"92,-104r0,-78r26,0r0,78r78,0r0,26r-78,0r0,78r-26,0r0,-78r-78,0r0,-26r78,0","w":210},",":{"d":"31,0r0,-38r38,0r0,35v0,49,-31,55,-38,56r0,-17v15,-1,19,-19,19,-36r-19,0","w":100},"-":{"d":"104,-116r0,32r-88,0r0,-32r88,0","w":119},".":{"d":"69,-38r0,38r-38,0r0,-38r38,0","w":100},"\/":{"d":"106,-265r-88,272r-24,0r88,-272r24,0","w":100},"0":{"d":"153,-123v0,-63,-17,-102,-53,-102v-36,0,-53,39,-53,102v0,63,17,101,53,101v36,0,53,-38,53,-101xm187,-123v0,53,-14,130,-87,130v-73,0,-87,-77,-87,-130v0,-53,14,-130,87,-130v73,0,87,77,87,130"},"1":{"d":"129,-253r0,253r-34,0r0,-180r-59,0r0,-25v41,-3,58,-7,68,-48r25,0"},"2":{"d":"48,-162r-32,0v0,-82,60,-91,87,-91v44,0,80,29,80,76v0,78,-129,91,-138,147r138,0r0,30r-174,0v1,-71,48,-93,93,-120v27,-15,47,-26,47,-59v0,-20,-13,-46,-50,-46v-48,0,-50,45,-51,63"},"3":{"d":"81,-117r0,-27v33,4,63,-3,64,-41v0,-15,-8,-40,-46,-40v-45,0,-49,37,-50,55r-31,0v0,-37,15,-83,82,-83v49,0,78,28,78,67v0,32,-18,48,-32,52v24,8,42,25,42,59v0,41,-27,82,-91,82v-55,0,-85,-38,-85,-84r33,0v1,24,7,55,54,55v32,0,55,-20,55,-49v0,-48,-40,-46,-73,-46"},"4":{"d":"188,-62r-37,0r0,62r-31,0r0,-62r-111,0r0,-31r116,-160r26,0r0,164r37,0r0,27xm120,-204v-29,36,-54,77,-82,115r82,0r0,-115"},"5":{"d":"64,-217r-11,70v46,-35,132,-8,132,65v0,28,-13,89,-92,89v-33,0,-75,-13,-81,-70r32,0v3,30,26,42,54,42v33,0,53,-25,53,-57v2,-60,-74,-75,-103,-33r-27,-1r19,-136r131,0r0,31r-107,0"},"6":{"d":"186,-81v-2,50,-25,88,-88,88v-19,0,-50,-7,-65,-37v-38,-74,-32,-223,74,-223v29,0,71,16,74,67r-31,0v-4,-22,-16,-39,-43,-39v-50,0,-63,69,-60,95v27,-48,142,-44,139,49xm51,-78v0,27,16,56,53,56v30,0,50,-24,50,-58v0,-22,-12,-53,-51,-53v-35,0,-52,25,-52,55"},"7":{"d":"13,-217r0,-31r175,0r0,28v-25,26,-86,107,-104,220r-35,0v9,-69,55,-160,104,-217r-140,0"},"8":{"d":"99,-253v90,-5,94,98,46,118v34,14,41,43,41,62v0,64,-88,111,-146,60v-50,-44,-30,-100,17,-121v-58,-26,-47,-115,42,-119xm100,-119v-36,0,-52,24,-52,47v0,20,10,50,54,50v23,0,50,-7,50,-47v0,-34,-23,-50,-52,-50xm99,-146v52,-1,69,-79,-2,-79v-34,0,-42,24,-42,40v0,24,21,39,44,39"},"9":{"d":"153,-114v-34,52,-138,29,-138,-52v0,-46,28,-87,81,-87v81,0,89,76,89,117v0,27,-5,143,-92,143v-59,0,-75,-44,-75,-68r32,0v2,26,17,42,43,42v35,0,52,-29,60,-95xm99,-113v17,0,49,-8,49,-58v0,-29,-15,-54,-51,-54v-30,0,-49,23,-49,57v0,49,30,55,51,55"},":":{"d":"69,-38r0,38r-38,0r0,-38r38,0xm69,-186r0,38r-38,0r0,-38r38,0","w":100},";":{"d":"31,0r0,-38r38,0r0,35v0,49,-31,55,-38,56r0,-17v15,-1,19,-19,19,-36r-19,0xm69,-148r-38,0r0,-38r38,0r0,38","w":100},"<":{"d":"193,-33r0,29r-176,-74r0,-26r176,-74r0,29r-140,58","w":210},"=":{"d":"196,-140r0,26r-182,0r0,-26r182,0xm196,-68r0,27r-182,0r0,-27r182,0","w":210},">":{"d":"17,-149r0,-29r176,74r0,26r-176,74r0,-29r141,-58","w":210},"?":{"d":"80,-66v-12,-60,65,-82,63,-127v0,-15,-8,-41,-43,-41v-46,0,-48,42,-48,57r-32,0v-5,-40,33,-85,81,-85v40,0,76,25,76,71v0,48,-76,67,-65,125r-32,0xm114,-37r0,37r-34,0r0,-37r34,0"},"@":{"d":"220,-147v0,-18,-14,-33,-30,-33v-32,0,-54,40,-54,70v0,21,12,35,30,35v31,0,54,-43,54,-72xm231,-178r7,-22r25,0v-14,50,-33,107,-33,117v0,7,2,11,8,11v24,0,51,-39,51,-78v0,-58,-46,-93,-100,-93v-64,0,-110,51,-110,115v0,106,140,151,200,71r24,0v-23,39,-67,64,-113,64v-77,0,-137,-60,-137,-137v0,-75,62,-135,136,-135v67,0,123,46,123,112v0,65,-54,104,-86,104v-12,0,-23,-12,-23,-22v-28,39,-96,20,-96,-36v0,-67,83,-141,124,-71","w":365},"A":{"d":"172,-75r-104,0r-27,75r-36,0r97,-258r40,0r93,258r-38,0xm79,-106r80,0r-39,-114","w":240},"B":{"d":"62,-229r0,80v51,-2,117,13,117,-42v0,-45,-69,-39,-117,-38xm27,0r0,-258r113,0v76,0,102,84,39,119v75,23,55,139,-41,139r-111,0xm62,-121r0,91v56,0,133,9,129,-47v-4,-60,-73,-41,-129,-44","w":240},"C":{"d":"243,-181r-34,0v-10,-45,-48,-53,-73,-53v-47,0,-84,34,-84,102v0,61,22,108,86,108v23,0,61,-11,73,-71r34,0v-14,98,-94,102,-113,102v-59,0,-116,-39,-116,-138v0,-80,45,-134,120,-134v67,0,102,41,107,84","w":259},"D":{"d":"29,0r0,-258r105,0v67,0,109,50,109,125v0,58,-26,133,-111,133r-103,0xm64,-229r0,199r68,0v45,0,75,-36,75,-101v0,-94,-55,-105,-143,-98","w":259},"E":{"d":"222,-31r0,31r-191,0r0,-258r188,0r0,30r-153,0r0,80r141,0r0,31r-141,0r0,86r156,0","w":240},"F":{"d":"66,-117r0,117r-35,0r0,-258r179,0r0,30r-144,0r0,80r127,0r0,31r-127,0","w":219},"G":{"d":"137,7v-92,0,-120,-87,-120,-138v0,-63,39,-134,123,-134v48,0,101,27,109,85r-34,0v-11,-45,-49,-54,-77,-54v-46,0,-85,36,-85,104v0,53,17,107,86,107v39,0,92,-40,82,-85r-81,0r0,-30r113,0r0,138r-22,0r-9,-33v-18,24,-50,40,-85,40","w":280},"H":{"d":"198,-152r0,-106r35,0r0,258r-35,0r0,-121r-135,0r0,121r-35,0r0,-258r35,0r0,106r135,0","w":259},"I":{"d":"68,-258r0,258r-35,0r0,-258r35,0","w":100},"J":{"d":"6,-83r33,0v-3,36,8,60,39,60v32,0,41,-20,41,-45r0,-190r35,0r0,188v0,60,-39,77,-74,77v-72,0,-76,-41,-74,-90","w":180},"K":{"d":"62,-91r0,91r-35,0r0,-258r35,0r0,125r126,-125r48,0r-108,104r111,154r-46,0r-90,-130","w":240},"L":{"d":"62,-258r0,227r131,0r0,31r-166,0r0,-258r35,0"},"M":{"d":"274,0r-34,0r0,-217r-73,217r-34,0r-74,-217r1,217r-34,0r0,-258r50,0r75,218r73,-218r50,0r0,258","w":299},"N":{"d":"198,-50r1,-208r34,0r0,258r-40,0r-132,-209r0,209r-34,0r0,-258r42,0","w":259},"O":{"d":"230,-129v0,-61,-34,-105,-90,-105v-56,0,-90,44,-90,105v0,61,34,105,90,105v56,0,90,-44,90,-105xm266,-129v0,56,-30,136,-126,136v-96,0,-126,-80,-126,-136v0,-56,30,-136,126,-136v96,0,126,80,126,136","w":280},"P":{"d":"66,-229r0,90v55,-3,122,15,122,-46v0,-59,-68,-41,-122,-44xm66,-109r0,109r-35,0r0,-258r116,0v48,0,77,30,77,72v0,36,-21,77,-77,77r-81,0","w":240},"Q":{"d":"151,-53r18,-22r33,26v54,-53,28,-185,-62,-185v-56,0,-90,44,-90,105v0,75,59,125,128,97xm264,-1r-18,21r-39,-30v-17,11,-40,17,-67,17v-96,0,-126,-80,-126,-136v0,-56,30,-136,126,-136v96,0,126,80,126,136v0,33,-10,73,-37,101","w":280},"R":{"d":"67,-111r0,111r-35,0r0,-258v88,6,204,-28,204,69v0,38,-19,52,-36,62v29,0,34,55,33,95v0,14,2,20,13,26r0,6r-43,0v-17,-52,20,-111,-52,-111r-84,0xm67,-229r0,88v57,-6,133,23,133,-44v0,-73,-74,-35,-133,-44","w":259},"S":{"d":"216,-183r-33,0v-2,-40,-35,-52,-64,-52v-22,0,-59,6,-59,45v0,48,67,37,105,50v32,11,58,28,58,69v0,95,-142,89,-179,53v-21,-21,-26,-42,-26,-66r32,0v0,47,39,61,72,61v25,0,67,-7,67,-44v0,-43,-70,-47,-108,-58v-17,-5,-55,-15,-55,-60v0,-40,26,-80,89,-80v90,0,100,54,101,82","w":240},"T":{"d":"5,-228r0,-30r210,0r0,30r-88,0r0,228r-34,0r0,-228r-88,0","w":219},"U":{"d":"197,-258r35,0r0,167v0,53,-33,98,-104,98v-138,-1,-93,-144,-100,-265r35,0r0,162v0,56,35,72,66,72v32,0,68,-15,68,-71r0,-163","w":259},"V":{"d":"120,-38r74,-220r39,0r-94,258r-37,0r-95,-258r39,0","w":240},"W":{"d":"110,0r-37,0r-67,-258r38,0r49,210r57,-210r39,0r58,210r49,-210r38,0r-68,258r-37,0r-59,-214","w":339},"X":{"d":"143,-132r90,132r-43,0r-69,-106r-72,106r-42,0r92,-132r-86,-126r44,0r65,99r66,-99r41,0","w":240},"Y":{"d":"138,-104r0,104r-35,0r0,-104r-98,-154r41,0r74,124r74,-124r41,0","w":240},"Z":{"d":"212,-31r0,31r-204,0r0,-29r159,-199r-147,0r0,-30r192,0r0,30r-159,197r159,0","w":219},"[":{"d":"51,-234r0,279r39,0r0,26r-67,0r0,-331r67,0r0,26r-39,0","w":100},"\\":{"d":"82,7r-88,-272r24,0r88,272r-24,0","w":100},"]":{"d":"49,45r0,-279r-39,0r0,-26r67,0r0,331r-67,0r0,-26r39,0","w":100},"^":{"d":"174,-95r-28,0r-61,-124r-62,124r-28,0r77,-153r26,0","w":168},"_":{"d":"0,27r200,0r0,18r-200,0r0,-18"},"a":{"d":"51,-131r-29,0v1,-45,32,-63,78,-63v15,0,70,5,70,53r0,108v0,13,10,12,21,10r0,23v-23,11,-57,-5,-51,-25v-12,13,-31,30,-68,30v-35,0,-59,-22,-59,-54v0,-16,4,-53,57,-59v27,-9,67,10,69,-29v0,-20,-14,-30,-44,-30v-36,0,-42,22,-44,36xm138,-96v-4,13,-92,1,-92,42v0,21,10,33,34,33v43,-2,65,-27,58,-75"},"b":{"d":"51,0r-30,0r0,-258r32,0r0,93v45,-63,133,-16,133,65v0,45,-19,105,-83,105v-32,0,-46,-18,-52,-28r0,23xm153,-95v0,-24,-2,-70,-51,-70v-46,0,-51,49,-51,80v0,50,32,63,52,63v35,0,50,-32,50,-73"},"c":{"d":"172,-125r-31,0v-4,-25,-18,-40,-45,-40v-39,0,-51,38,-51,71v0,32,7,72,51,72v21,0,40,-16,45,-45r31,0v-3,30,-22,72,-77,72v-53,0,-84,-40,-84,-94v0,-58,28,-105,90,-105v49,0,68,36,71,69","w":180},"d":{"d":"180,-258r0,258r-30,0v-1,-8,2,-20,-1,-26v-14,26,-36,31,-54,31v-115,-3,-107,-199,-4,-199v35,0,47,22,57,32r0,-96r32,0xm45,-95v0,41,16,73,51,73v20,0,52,-13,52,-63v0,-31,-5,-80,-51,-80v-49,0,-52,46,-52,70"},"e":{"d":"183,-59v-5,22,-28,64,-84,64v-53,0,-85,-40,-85,-94v0,-58,29,-105,91,-105v54,0,81,43,81,110r-138,0v0,39,19,62,55,62v30,0,48,-23,49,-37r31,0xm48,-109r105,0v-2,-29,-14,-56,-53,-56v-29,0,-52,27,-52,56"},"f":{"d":"94,-162r-31,0r0,162r-32,0r0,-162r-26,0r0,-26r26,0v-6,-51,10,-82,63,-73r0,28v-30,-8,-34,15,-31,45r31,0r0,26","w":100},"g":{"d":"47,-95v0,41,16,73,51,73v20,0,51,-13,51,-63v0,-31,-4,-80,-50,-80v-49,0,-52,46,-52,70xm180,-188r0,173v0,27,-1,94,-88,94v-22,0,-66,-6,-72,-56r32,0v6,30,34,30,42,30v59,-3,54,-44,54,-74v-9,15,-26,26,-51,26v-115,-3,-108,-201,-4,-199v34,0,49,21,57,33r0,-27r30,0"},"h":{"d":"177,-128r0,128r-32,0r0,-123v0,-26,-7,-42,-37,-42v-26,0,-53,14,-53,62r0,103r-32,0r0,-258r32,0r1,95v22,-40,121,-52,121,35"},"i":{"d":"56,-188r0,188r-32,0r0,-188r32,0xm56,-222r-32,0r0,-36r32,0r0,36","w":79},"j":{"d":"56,-188r0,216v0,16,-1,48,-48,48v-4,0,-9,0,-14,-1r0,-28v21,0,30,1,30,-23r0,-212r32,0xm56,-258r0,36r-32,0r0,-36r32,0","w":79},"k":{"d":"104,-118r76,118r-40,0r-59,-95r-26,24r0,71r-31,0r0,-258r31,0r0,149r81,-79r40,0","w":180},"l":{"d":"56,-258r0,258r-32,0r0,-258r32,0","w":79},"m":{"d":"23,0r0,-188r30,0v1,8,-2,20,1,26v7,-10,23,-32,57,-32v34,0,45,21,50,31v31,-42,116,-54,116,33r0,130r-32,0r0,-122v0,-26,-8,-43,-35,-43v-66,0,-39,101,-44,165r-32,0r0,-130v0,-16,-6,-35,-29,-35v-18,0,-50,11,-50,62r0,103r-32,0","w":299},"n":{"d":"177,-128r0,128r-32,0r0,-116v0,-33,-9,-49,-40,-49v-18,0,-50,11,-50,62r0,103r-32,0r0,-188r30,0v1,8,-2,20,1,26v7,-10,25,-32,57,-32v29,0,66,12,66,66"},"o":{"d":"100,5v-118,-1,-116,-198,0,-199v118,1,118,198,0,199xm45,-94v0,25,10,72,55,72v45,0,55,-47,55,-72v0,-25,-10,-72,-55,-72v-45,0,-55,47,-55,72"},"p":{"d":"51,-85v0,50,32,63,52,63v35,0,50,-32,50,-73v0,-24,-2,-70,-51,-70v-46,0,-51,49,-51,80xm21,75r0,-263r30,0r0,26v8,-11,23,-32,57,-32v50,0,78,41,78,94v0,45,-19,105,-83,105v-25,0,-42,-12,-50,-25r0,95r-32,0"},"q":{"d":"178,-188r0,263r-32,0r-1,-95v-8,13,-25,25,-50,25v-115,-3,-107,-199,-4,-199v35,0,47,22,57,32r0,-26r30,0xm148,-85v0,-31,-5,-80,-51,-80v-49,0,-52,46,-52,70v0,41,16,73,51,73v20,0,52,-13,52,-63"},"r":{"d":"120,-160v-85,-7,-56,90,-61,160r-31,0r0,-188r30,0r0,31v15,-24,32,-41,62,-36r0,33","w":119},"s":{"d":"161,-135r-31,0v0,-12,-4,-31,-44,-31v-10,0,-38,3,-38,26v0,24,43,27,66,33v39,10,53,24,53,50v0,39,-32,62,-74,62v-75,0,-80,-42,-81,-65r30,0v1,15,5,38,50,38v23,0,43,-9,43,-30v0,-44,-117,-18,-117,-82v0,-41,34,-60,71,-60v67,0,72,50,72,59","w":180},"t":{"d":"93,-162r-31,0r0,122v3,20,16,14,31,15r0,25v-39,10,-62,-5,-62,-38r0,-124r-26,0r0,-26r26,0r0,-53r31,0r0,53r31,0r0,26","w":100},"u":{"d":"176,0r-30,0v-1,-9,2,-21,-1,-28v-23,48,-121,50,-121,-25r0,-135r32,0r0,125v0,31,16,41,37,41v76,0,44,-96,51,-166r32,0r0,188"},"v":{"d":"143,-188r34,0r-72,188r-33,0r-69,-188r37,0r49,153","w":180},"w":{"d":"130,-146v-15,46,-24,98,-38,146r-33,0r-54,-188r35,0r36,148r37,-148r35,0r37,148r39,-148r31,0r-54,188r-33,0","w":259},"x":{"d":"110,-97r66,97r-40,0r-47,-71r-45,71r-40,0r66,-97r-63,-91r41,0r43,66r44,-66r39,0","w":180},"y":{"d":"90,-35v19,-49,33,-103,51,-153r35,0r-68,184v-33,83,-34,85,-87,78r0,-29v30,7,37,9,53,-40r-70,-193r36,0","w":180},"z":{"d":"166,-162r-113,136r116,0r0,26r-158,0r0,-25r114,-137r-105,0r0,-26r146,0r0,26","w":180},"{":{"d":"15,-84r0,-22v35,-1,29,-66,29,-107v0,-40,23,-51,61,-47r0,23v-47,-10,-29,52,-32,91v-3,35,-25,49,-32,51v7,2,28,15,32,52v4,35,-19,98,32,90r0,24v-38,4,-59,-6,-61,-47v-2,-41,6,-107,-29,-108","w":120},"|":{"d":"34,-279r26,0r0,360r-26,0r0,-360","w":93},"}":{"d":"105,-106r0,22v-35,0,-29,67,-29,108v0,40,-23,51,-61,47r0,-24v48,10,30,-51,33,-90v3,-37,24,-50,31,-52v-7,-2,-27,-16,-31,-51v-4,-36,19,-100,-33,-91r0,-23v38,-4,59,6,61,47v2,41,-7,106,29,107","w":120},"~":{"d":"67,-116v20,0,63,25,77,25v14,0,23,-13,31,-26r13,20v-11,17,-26,31,-45,31v-36,0,-90,-51,-108,1r-13,-20v8,-15,21,-31,45,-31","w":210},"'":{"d":"21,-167r0,-91r27,0r0,91r-27,0","w":68},"`":{"d":"52,-213r-47,-51r39,0r32,51r-24,0","w":119},"\u0141":{"d":"105,-187r0,21r-43,24r0,111r131,0r0,31r-166,0r0,-124r-34,20r0,-21r34,-20r0,-113r35,0r0,95"},"\u0152":{"d":"49,-122v1,59,20,100,80,99v23,0,57,-16,57,-60r0,-94v0,-36,-26,-58,-62,-58v-69,0,-75,78,-75,113xm188,-258r159,0r0,30r-126,0r0,80r120,0r0,31r-120,0r0,86r126,0r0,31r-159,0v-1,-8,2,-21,-1,-27v-12,15,-26,34,-69,34v-68,0,-105,-58,-105,-135v0,-50,20,-137,110,-137v43,0,60,24,65,33r0,-26","w":360},"\u0131":{"d":"66,-188r0,188r-32,0r0,-188r32,0","w":100},"\u0142":{"d":"87,-157r-31,18r0,139r-32,0r0,-122r-31,18r0,-21r31,-18r0,-115r32,0r0,99r31,-18r0,20","w":79},"\u0153":{"d":"187,-109r105,0v-2,-29,-14,-56,-53,-56v-29,0,-52,27,-52,56xm322,-59v-5,22,-28,64,-84,64v-27,0,-52,-10,-70,-36v-17,33,-54,36,-68,36v-118,-1,-116,-198,0,-199v30,0,56,12,71,38v18,-27,40,-38,73,-38v54,0,81,43,81,110r-138,0v0,39,19,62,55,62v30,0,48,-23,49,-37r31,0xm45,-94v0,25,10,72,55,72v45,0,55,-47,55,-72v0,-25,-10,-72,-55,-72v-45,0,-55,47,-55,72","w":339},"\u0178":{"d":"138,-104r0,104r-35,0r0,-104r-98,-154r41,0r74,124r74,-124r41,0xm107,-324r0,36r-32,0r0,-36r32,0xm166,-324r0,36r-33,0r0,-36r33,0","w":240},"\u0160":{"d":"216,-183r-33,0v-2,-40,-35,-52,-64,-52v-22,0,-59,6,-59,45v0,48,67,37,105,50v32,11,58,28,58,69v0,95,-142,89,-179,53v-21,-21,-26,-42,-26,-66r32,0v0,47,39,61,72,61v25,0,67,-7,67,-44v0,-43,-70,-47,-108,-58v-17,-5,-55,-15,-55,-60v0,-40,26,-80,89,-80v90,0,100,54,101,82xm96,-334r24,33r24,-33r28,0r-35,50r-34,0r-35,-50r28,0","w":240},"\u017e":{"d":"166,-162r-113,136r116,0r0,26r-158,0r0,-25r114,-137r-105,0r0,-26r146,0r0,26xm66,-264r24,33r24,-33r29,0r-36,51r-34,0r-35,-51r28,0","w":180},"\u017d":{"d":"212,-31r0,31r-204,0r0,-29r159,-199r-147,0r0,-30r192,0r0,30r-159,197r159,0xm86,-334r24,33r24,-33r28,0r-35,50r-34,0r-35,-50r28,0","w":219},"\u0161":{"d":"161,-135r-31,0v0,-12,-4,-31,-44,-31v-10,0,-38,3,-38,26v0,24,43,27,66,33v39,10,53,24,53,50v0,39,-32,62,-74,62v-75,0,-80,-42,-81,-65r30,0v1,15,5,38,50,38v23,0,43,-9,43,-30v0,-44,-117,-18,-117,-82v0,-41,34,-60,71,-60v67,0,72,50,72,59xm66,-264r24,33r24,-33r29,0r-36,51r-34,0r-35,-51r28,0","w":180},"\u00a0":{"w":100}}});


/*
 * Metadata - jQuery plugin for parsing metadata from elements
 *
 * Copyright (c) 2006 John Resig, Yehuda Katz, Jörn Zaefferer, Paul McLanahan
 *
 * Dual licensed under the MIT and GPL licenses:
 *   http://www.opensource.org/licenses/mit-license.php
 *   http://www.gnu.org/licenses/gpl.html
 *
 * Revision: $Id$
 *
 */

/**
 * Sets the type of metadata to use. Metadata is encoded in JSON, and each property
 * in the JSON will become a property of the element itself.
 *
 * There are three supported types of metadata storage:
 *
 *   attr:  Inside an attribute. The name parameter indicates *which* attribute.
 *          
 *   class: Inside the class attribute, wrapped in curly braces: { }
 *   
 *   elem:  Inside a child element (e.g. a script tag). The
 *          name parameter indicates *which* element.
 *          
 * The metadata for an element is loaded the first time the element is accessed via jQuery.
 *
 * As a result, you can define the metadata type, use $(expr) to load the metadata into the elements
 * matched by expr, then redefine the metadata type and run another $(expr) for other elements.
 * 
 * @name $.metadata.setType
 *
 * @example <p id="one" class="some_class {item_id: 1, item_label: 'Label'}">This is a p</p>
 * @before $.metadata.setType("class")
 * @after $("#one").metadata().item_id == 1; $("#one").metadata().item_label == "Label"
 * @desc Reads metadata from the class attribute
 * 
 * @example <p id="one" class="some_class" data="{item_id: 1, item_label: 'Label'}">This is a p</p>
 * @before $.metadata.setType("attr", "data")
 * @after $("#one").metadata().item_id == 1; $("#one").metadata().item_label == "Label"
 * @desc Reads metadata from a "data" attribute
 * 
 * @example <p id="one" class="some_class"><script>{item_id: 1, item_label: 'Label'}</script>This is a p</p>
 * @before $.metadata.setType("elem", "script")
 * @after $("#one").metadata().item_id == 1; $("#one").metadata().item_label == "Label"
 * @desc Reads metadata from a nested script element
 * 
 * @param String type The encoding type
 * @param String name The name of the attribute to be used to get metadata (optional)
 * @cat Plugins/Metadata
 * @descr Sets the type of encoding to be used when loading metadata for the first time
 * @type undefined
 * @see metadata()
 */

(function($) {

$.extend({
	metadata : {
		defaults : {
			type: 'class',
			name: 'metadata',
			cre: /({.*})/,
			single: 'metadata'
		},
		setType: function( type, name ){
			this.defaults.type = type;
			this.defaults.name = name;
		},
		get: function( elem, opts ){
			var settings = $.extend({},this.defaults,opts);
			// check for empty string in single property
			if ( !settings.single.length ) settings.single = 'metadata';
			
			var data = $.data(elem, settings.single);
			// returned cached data if it already exists
			if ( data ) return data;
			
			data = "{}";
			
			if ( settings.type == "class" ) {
				var m = settings.cre.exec( elem.className );
				if ( m )
					data = m[1];
			} else if ( settings.type == "elem" ) {
				if( !elem.getElementsByTagName ) return;
				var e = elem.getElementsByTagName(settings.name);
				if ( e.length )
					data = $.trim(e[0].innerHTML);
			} else if ( elem.getAttribute != undefined ) {
				var attr = elem.getAttribute( settings.name );
				if ( attr )
					data = attr;
			}
			
			if ( data.indexOf( '{' ) <0 )
			data = "{" + data + "}";
			
			data = eval("(" + data + ")");
			
			$.data( elem, settings.single, data );
			return data;
		}
	}
});

/**
 * Returns the metadata object for the first member of the jQuery object.
 *
 * @name metadata
 * @descr Returns element's metadata object
 * @param Object opts An object contianing settings to override the defaults
 * @type jQuery
 * @cat Plugins/Metadata
 */
$.fn.metadata = function( opts ){
	return $.metadata.get( this[0], opts );
};

})(jQuery);
eval(function(p,a,c,k,e,r){e=function(c){return(c<a?'':e(parseInt(c/a)))+((c=c%a)>35?String.fromCharCode(c+29):c.toString(36))};if(!''.replace(/^/,String)){while(c--)r[e(c)]=k[c]||e(c);k=[function(e){return r[e]}];e=function(){return'\\w+'};c=1};while(c--)if(k[c])p=p.replace(new RegExp('\\b'+e(c)+'\\b','g'),k[c]);return p}('(6($){$.1g.1w=6(o){o=$.1f({r:n,x:n,N:n,17:q,J:n,L:1a,16:n,y:q,u:12,H:3,B:0,k:1,K:n,I:n},o||{});8 G.R(6(){p b=q,A=o.y?"15":"w",P=o.y?"t":"s";p c=$(G),9=$("9",c),E=$("10",9),W=E.Y(),v=o.H;7(o.u){9.1h(E.D(W-v-1+1).V()).1d(E.D(0,v).V());o.B+=v}p f=$("10",9),l=f.Y(),4=o.B;c.5("1c","H");f.5({U:"T",1b:o.y?"S":"w"});9.5({19:"0",18:"0",Q:"13","1v-1s-1r":"S","z-14":"1"});c.5({U:"T",Q:"13","z-14":"2",w:"1q"});p g=o.y?t(f):s(f);p h=g*l;p j=g*v;f.5({s:f.s(),t:f.t()});9.5(P,h+"C").5(A,-(4*g));c.5(P,j+"C");7(o.r)$(o.r).O(6(){8 m(4-o.k)});7(o.x)$(o.x).O(6(){8 m(4+o.k)});7(o.N)$.R(o.N,6(i,a){$(a).O(6(){8 m(o.u?o.H+i:i)})});7(o.17&&c.11)c.11(6(e,d){8 d>0?m(4-o.k):m(4+o.k)});7(o.J)1p(6(){m(4+o.k)},o.J+o.L);6 M(){8 f.D(4).D(0,v)};6 m(a){7(!b){7(o.K)o.K.Z(G,M());7(o.u){7(a<=o.B-v-1){9.5(A,-((l-(v*2))*g)+"C");4=a==o.B-v-1?l-(v*2)-1:l-(v*2)-o.k}F 7(a>=l-v+1){9.5(A,-((v)*g)+"C");4=a==l-v+1?v+1:v+o.k}F 4=a}F{7(a<0||a>l-v)8;F 4=a}b=12;9.1o(A=="w"?{w:-(4*g)}:{15:-(4*g)},o.L,o.16,6(){7(o.I)o.I.Z(G,M());b=q});7(!o.u){$(o.r+","+o.x).1n("X");$((4-o.k<0&&o.r)||(4+o.k>l-v&&o.x)||[]).1m("X")}}8 q}})};6 5(a,b){8 1l($.5(a[0],b))||0};6 s(a){8 a[0].1k+5(a,\'1j\')+5(a,\'1i\')};6 t(a){8 a[0].1t+5(a,\'1u\')+5(a,\'1e\')}})(1x);',62,96,'||||curr|css|function|if|return|ul|||||||||||scroll|itemLength|go|null||var|false|btnPrev|width|height|circular||left|btnNext|vertical||animCss|start|px|slice|tLi|else|this|visible|afterEnd|auto|beforeStart|speed|vis|btnGo|click|sizeCss|position|each|none|hidden|overflow|clone|tl|disabled|size|call|li|mousewheel|true|relative|index|top|easing|mouseWheel|padding|margin|200|float|visibility|append|marginBottom|extend|fn|prepend|marginRight|marginLeft|offsetWidth|parseInt|addClass|removeClass|animate|setInterval|0px|type|style|offsetHeight|marginTop|list|jCarouselLite|jQuery'.split('|'),0,{}))


