function displayEmail()
{
var emailriddlerarray=[105,110,102,111,64,115,116,101,112,116,111,97,110,100,115,111,110,46,99,111,46,117,107]
var encryptedemail_id10='' //variable to contain encrypted email 
for (var i=0; i<emailriddlerarray.length; i++)
 encryptedemail_id10+=String.fromCharCode(emailriddlerarray[i])

document.write('<a href="mailto:'+encryptedemail_id10+'">'+encryptedemail_id10+'</a>')
}


/* ContactPop jQuery Plugin
 *
 * By Jon Raasch
 * http://jonraasch.com
 *
 * Copyright (c)2009 Jon Raasch. All rights reserved.
 * Released under FreeBSD License, see readme.txt
 * Do not remove the above copyright notice or text.
 *
 * For more information please visit: 
 * http://jonraasch.com/blog/contact-pop-jquery-plugin
*/


ContactPop = {
    /************ config **************/
    
    // make sure to keep the trailing comma after each of these variable definitions
    
    replaceHref : '/contact', // can be array or string of hrefs or nothing if you want to use jQuery selectors (below)
    
    formPhpLocation : '/contact/contact-mini.asp', // relative path to the backend contact form
    
    pathToContactPop : '../', // relative path to the Contact-Pop directory
    
    contactHeadline : 'Contact Us',
    headerBgColor : '#777777', // background color of overlay panel header
    
    overlayFadeIn : 600, // overlay fade in speed (milliseconds)
    overlayFadeOut : 500, // overlay fade out speed (milliseconds)
    
    overlayEasing : '', // if you install the easing plugin (http://gsgd.co.uk/sandbox/jquery/easing/), the info goes here, example: 'easeInOutQuad'
    
    openButtonSelector : '', // set this to use jQuery selectors in addition to the hrefs - string (ex: '.contact, #contact-link')
    closeButtonSelector : '.close-overlay', // this works with any jQuery selector - string (ex: '#close-button, .close')
    
    resetFormEachTime : 0, // resets the form if the overlay is hidden and shown again
    
    fadeOverlayIE : 0, // default off - in IE 7/8 alpha transparency flashes black when ffaded
    fadeOverlayIE6 : 0, // default off - for performance
    
    
    
    /********** end config ************/
    
    obj : {},
    formFields : {},
    submitEvent : 0,
    overlayFade : 1,
    
    appendOverlay : function() {
        // append overlay and panel divs
        ContactPop.obj.overlay = jQuery('<div id="contact-pop-overlay"></div>').appendTo( jQuery('BODY') );
        
        ContactPop.obj.panelWrapper = jQuery('<div id="contact-pop-panel-wrapper"></div>').appendTo( ContactPop.obj.overlay );
        
        ContactPop.obj.panel = jQuery('<div id="contact-pop-panel"></div>').appendTo( ContactPop.obj.panelWrapper );
        
        // append panel headline
        ContactPop.obj.panelHeadline = $( '<h2 id="contact-pop-header">' + ContactPop.contactHeadline + '</h2>') . appendTo( ContactPop.obj.panel );
        
        // set panel headline background color
        if ( ContactPop.headerBgColor != '#777777' ) ContactPop.obj.panelHeadline.css( 'backgroundColor', ContactPop.headerBgColor );
        
        // append panel header close button
        ContactPop.obj.panelHeadline.append( '<a href="#" class="close-overlay">X</a></h2>' );
        
        // append form
        ContactPop.obj.form = jQuery('<form action="' + ContactPop.formPhpLocation + '" method="get" id="contact-pop-form"></div>').appendTo( ContactPop.obj.panel );
        
        // append loading graphic
        ContactPop.obj.loading = jQuery('<div id="contact-pop-loading-gif-wrapper"></div>').appendTo( ContactPop.obj.panel );
        
        ContactPop.obj.loading.append('<img src="' + ContactPop.pathToContactPop + '/images/ajax-loader.gif" alt="" id="contact-pop-loading-gif" />');
    },

    getFormContent : function() {
        // grab form html using jQuery's AJAX API
        jQuery.get( ContactPop.formPhpLocation, { 'ajaxForm' : 1 },  function(html) {                
            if ( html ) {
                ContactPop.obj.loading.fadeOut(200);
                ContactPop.obj.form.html( html );
                ContactPop.attachFormEvents();
            }
        });
    },
    
    attachFormEvents : function() {
        // close buttons
        jQuery( ContactPop.closeButtonSelector, ContactPop.obj.panel).click( function(ev) {
            ev.preventDefault();
            ContactPop.hideOverlay();
        });
        
        // attach submit event each time for IE
        if ( jQuery.browser.msie ) {
            jQuery('input.submit', ContactPop.obj.form).click( function(ev) {
                ev.preventDefault();                
                ContactPop.submitForm();
            });
        }
        // only attach submit event once for other browsers
        else if ( !ContactPop.submitEvent ) {            
            ContactPop.obj.form.submit( function(ev) {
                ev.preventDefault();                
                ContactPop.submitForm();
            });
            
            ContactPop.submitEvent = 1;
        }
    },
    
    checkOverlayFade : function() {
        if ( $.browser.msie && !ContactPop.fadeOverlayIE && !( $.browser.version < 7 && ContactPop.fadeOverlayIE6 ) ) return false;
        else return true;
    },
    
    showOverlay : function() {
        // if first time append the overlay and get the form content
        if ( typeof(ContactPop.obj.overlay) == 'undefined' ) {         
            ContactPop.appendOverlay();
            ContactPop.getFormContent();
        }
        else if ( ContactPop.resetFormEachTime ) ContactPop.getFormContent();
        
        if ( ContactPop.overlayFade ) ContactPop.obj.overlay.fadeIn( ContactPop.overlayFadeOut, ContactPop.overlayEasing );
        else ContactPop.obj.overlay.show();
    },
    
    hideOverlay : function() {
        if ( ContactPop.overlayFade ) ContactPop.obj.overlay.fadeOut( ContactPop.overlayFadeIn, ContactPop.overlayEasing );
        else ContactPop.obj.overlay.hide();
    },
    
    submitForm : function() {
        // add form fields to array
         jQuery('input, select, textarea', ContactPop.obj.form).each( function() {
            ContactPop.addFormField( jQuery(this) );
         });
         
         // set the ajaxForm post value
         ContactPop.formFields['ajaxForm'] = 1;
         
         // fade in the loading graphic
         ContactPop.obj.form.fadeOut(200);
         ContactPop.obj.loading.fadeIn(200);
         
         // post the form with jQuery's AJAX API
        jQuery.post( ContactPop.formPhpLocation, ContactPop.formFields, function(html) {                
            if ( html ) {
                ContactPop.obj.form.html( html );
                ContactPop.obj.loading.fadeOut(200);
                ContactPop.obj.form.fadeIn(200);
                
                ContactPop.attachFormEvents();
            }
          });
    },
    
    addFormField : function( $field ) {
        var fieldName = $field.attr('name');
        if ( fieldName ) ContactPop.formFields[ fieldName ] = $field.val();
    },
    
    init : function() {
        var anchorSelector = '';
        // force array
        if ( typeof( ContactPop.replaceHref ) != 'object' ) ContactPop.replaceHref = [ ContactPop.replaceHref ];
        
        // add anchor selectors
        for ( var i = 0; i < ContactPop.replaceHref.length; i++ ) {
            if ( ContactPop.replaceHref[i] ) anchorSelector += 'a[href=' + ContactPop.replaceHref[i] + '], ';
        }
        
        // add  additional jQuery selectors
        if ( ContactPop.openButtonSelector ) anchorSelector += ContactPop.openButtonSelector;
        else anchorSelector = anchorSelector.substr(0, anchorSelector.length - 2);

        // define ctas and click event
        ContactPop.obj.ctas = jQuery(anchorSelector);
        
        ContactPop.obj.ctas.click( function(ev) {
            ev.preventDefault();
            ContactPop.showOverlay();
        });
        
        // determine if fading overlay or just hide/showing
        ContactPop.overlayFade = ContactPop.checkOverlayFade();
        
        // preload overlay image - keep this in the init() function so the rest of the page loads first
        
        var overlayImg = new Image();
        if ( jQuery.browser.msie && jQuery.browser.version < 7 ) overlayImg.src = ContactPop.pathToContactPop + '/images/overlay-ie6.png';
        
        else overlayImg.src = ContactPop.pathToContactPop + '/images/overlay.png';
    }
};

jQuery(function() {
    // initiate ContactPop once the page loads
    ContactPop.init();
});




/*****************************************************************

typeface.js, version 0.14 | typefacejs.neocracy.org

Copyright (c) 2008 - 2009, David Chester davidchester@gmx.net 

Permission is hereby granted, free of charge, to any person
obtaining a copy of this software and associated documentation
files (the "Software"), to deal in the Software without
restriction, including without limitation the rights to use,
copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the
Software is furnished to do so, subject to the following
conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
OTHER DEALINGS IN THE SOFTWARE.

*****************************************************************/

(function() {

var _typeface_js = {

	faces: {},

	loadFace: function(typefaceData) {

		var familyName = typefaceData.familyName.toLowerCase();
		
		if (!this.faces[familyName]) {
			this.faces[familyName] = {};
		}
		if (!this.faces[familyName][typefaceData.cssFontWeight]) {
			this.faces[familyName][typefaceData.cssFontWeight] = {};
		}

		var face = this.faces[familyName][typefaceData.cssFontWeight][typefaceData.cssFontStyle] = typefaceData;
		face.loaded = true;
	},

	log: function(message) {
		
		if (this.quiet) {
			return;
		}
		
		message = "typeface.js: " + message;
		
		if (this.customLogFn) {
			this.customLogFn(message);

		} else if (window.console && window.console.log) {
			window.console.log(message);
		}
		
	},
	
	pixelsFromPoints: function(face, style, points, dimension) {
		var pixels = points * parseInt(style.fontSize) * 72 / (face.resolution * 100);
		if (dimension == 'horizontal' && style.fontStretchPercent) {
			pixels *= style.fontStretchPercent;
		}
		return pixels;
	},

	pointsFromPixels: function(face, style, pixels, dimension) {
		var points = pixels * face.resolution / (parseInt(style.fontSize) * 72 / 100);
		if (dimension == 'horizontal' && style.fontStretchPrecent) {
			points *= style.fontStretchPercent;
		}
		return points;
	},

	cssFontWeightMap: {
		normal: 'normal',
		bold: 'bold',
		400: 'normal',
		700: 'bold'
	},

	cssFontStretchMap: {
		'ultra-condensed': 0.55,
		'extra-condensed': 0.77,
		'condensed': 0.85,
		'semi-condensed': 0.93,
		'normal': 1,
		'semi-expanded': 1.07,
		'expanded': 1.15,
		'extra-expanded': 1.23,
		'ultra-expanded': 1.45,
		'default': 1
	},
	
	fallbackCharacter: '.',

	configure: function(args) {
		var configurableOptionNames = [ 'customLogFn',  'customClassNameRegex', 'customTypefaceElementsList', 'quiet', 'verbose', 'disableSelection' ];
		
		for (var i = 0; i < configurableOptionNames.length; i++) {
			var optionName = configurableOptionNames[i];
			if (args[optionName]) {
				if (optionName == 'customLogFn') {
					if (typeof args[optionName] != 'function') {
						throw "customLogFn is not a function";
					} else {
						this.customLogFn = args.customLogFn;
					}
				} else {
					this[optionName] = args[optionName];
				}
			}
		}
	},

	getTextExtents: function(face, style, text) {
		var extentX = 0;
		var extentY = 0;
		var horizontalAdvance;
	
		var textLength = text.length;
		for (var i = 0; i < textLength; i++) {
			var glyph = face.glyphs[text.charAt(i)] ? face.glyphs[text.charAt(i)] : face.glyphs[this.fallbackCharacter];
			var letterSpacingAdjustment = this.pointsFromPixels(face, style, style.letterSpacing);

			// if we're on the last character, go with the glyph extent if that's more than the horizontal advance
			extentX += i + 1 == textLength ? Math.max(glyph.x_max, glyph.ha) : glyph.ha;
			extentX += letterSpacingAdjustment;

			horizontalAdvance += glyph.ha + letterSpacingAdjustment;
		}
		return { 
			x: extentX, 
			y: extentY,
			ha: horizontalAdvance
			
		};
	},

	pixelsFromCssAmount: function(cssAmount, defaultValue, element) {

		var matches = undefined;

		if (cssAmount == 'normal') {
			return defaultValue;

		} else if (matches = cssAmount.match(/([\-\d+\.]+)px/)) {
			return matches[1];

		} else {
			// thanks to Dean Edwards for this very sneaky way to get IE to convert 
			// relative values to pixel values
			
			var pixelAmount;
			
			var leftInlineStyle = element.style.left;
			var leftRuntimeStyle = element.runtimeStyle.left;

			element.runtimeStyle.left = element.currentStyle.left;

			if (!cssAmount.match(/\d(px|pt)$/)) {
				element.style.left = '1em';
			} else {
				element.style.left = cssAmount || 0;
			}

			pixelAmount = element.style.pixelLeft;
		
			element.style.left = leftInlineStyle;
			element.runtimeStyle.left = leftRuntimeStyle;
			
			return pixelAmount || defaultValue;
		}
	},

	capitalizeText: function(text) {
		return text.replace(/(^|\s)[a-z]/g, function(match) { return match.toUpperCase() } ); 
	},

	getElementStyle: function(e) {
		if (window.getComputedStyle) {
			return window.getComputedStyle(e, '');
		
		} else if (e.currentStyle) {
			return e.currentStyle;
		}
	},

	getRenderedText: function(e) {

		var browserStyle = this.getElementStyle(e.parentNode);

		var inlineStyleAttribute = e.parentNode.getAttribute('style');
		if (inlineStyleAttribute && typeof(inlineStyleAttribute) == 'object') {
			inlineStyleAttribute = inlineStyleAttribute.cssText;
		}

		if (inlineStyleAttribute) {

			var inlineStyleDeclarations = inlineStyleAttribute.split(/\s*\;\s*/);

			var inlineStyle = {};
			for (var i = 0; i < inlineStyleDeclarations.length; i++) {
				var declaration = inlineStyleDeclarations[i];
				var declarationOperands = declaration.split(/\s*\:\s*/);
				inlineStyle[declarationOperands[0]] = declarationOperands[1];
			}
		}

		var style = { 
			color: browserStyle.color, 
			fontFamily: browserStyle.fontFamily.split(/\s*,\s*/)[0].replace(/(^"|^'|'$|"$)/g, '').toLowerCase(), 
			fontSize: this.pixelsFromCssAmount(browserStyle.fontSize, 12, e.parentNode),
			fontWeight: this.cssFontWeightMap[browserStyle.fontWeight],
			fontStyle: browserStyle.fontStyle ? browserStyle.fontStyle : 'normal',
			fontStretchPercent: this.cssFontStretchMap[inlineStyle && inlineStyle['font-stretch'] ? inlineStyle['font-stretch'] : 'default'],
			textDecoration: browserStyle.textDecoration,
			lineHeight: this.pixelsFromCssAmount(browserStyle.lineHeight, 'normal', e.parentNode),
			letterSpacing: this.pixelsFromCssAmount(browserStyle.letterSpacing, 0, e.parentNode),
			textTransform: browserStyle.textTransform
		};

		var face;
		if (
			this.faces[style.fontFamily]  
			&& this.faces[style.fontFamily][style.fontWeight]
		) {
			face = this.faces[style.fontFamily][style.fontWeight][style.fontStyle];
		}

		var text = e.nodeValue;
		
		if (
			e.previousSibling 
			&& e.previousSibling.nodeType == 1 
			&& e.previousSibling.tagName != 'BR' 
			&& this.getElementStyle(e.previousSibling).display.match(/inline/)
		) {
			text = text.replace(/^\s+/, ' ');
		} else {
			text = text.replace(/^\s+/, '');
		}
		
		if (
			e.nextSibling 
			&& e.nextSibling.nodeType == 1 
			&& e.nextSibling.tagName != 'BR' 
			&& this.getElementStyle(e.nextSibling).display.match(/inline/)
		) {
			text = text.replace(/\s+$/, ' ');
		} else {
			text = text.replace(/\s+$/, '');
		}
		
		text = text.replace(/\s+/g, ' ');
	
		if (style.textTransform && style.textTransform != 'none') {
			switch (style.textTransform) {
				case 'capitalize':
					text = this.capitalizeText(text);
					break;
				case 'uppercase':
					text = text.toUpperCase();
					break;
				case 'lowercase':
					text = text.toLowerCase();
					break;
			}
		}

		if (!face) {
			var excerptLength = 12;
			var textExcerpt = text.substring(0, excerptLength);
			if (text.length > excerptLength) {
				textExcerpt += '...';
			}
		
			var fontDescription = style.fontFamily;
			if (style.fontWeight != 'normal') fontDescription += ' ' + style.fontWeight;
			if (style.fontStyle != 'normal') fontDescription += ' ' + style.fontStyle;
		
			this.log("couldn't find typeface font: " + fontDescription + ' for text "' + textExcerpt + '"');
			return;
		}
	
		var words = text.split(/\b(?=\w)/);

		var containerSpan = document.createElement('span');
		containerSpan.className = 'typeface-js-vector-container';
		
		var wordsLength = words.length;
		for (var i = 0; i < wordsLength; i++) {
			var word = words[i];
			
			var vector = this.renderWord(face, style, word);
			
			if (vector) {
				containerSpan.appendChild(vector.element);

				if (!this.disableSelection) {
					var selectableSpan = document.createElement('span');
					selectableSpan.className = 'typeface-js-selected-text';

					var wordNode = document.createTextNode(word);
					selectableSpan.appendChild(wordNode);

					if (this.vectorBackend != 'vml') {
						selectableSpan.style.marginLeft = -1 * (vector.width + 1) + 'px';
					}
					selectableSpan.targetWidth = vector.width;
					//selectableSpan.style.lineHeight = 1 + 'px';

					if (this.vectorBackend == 'vml') {
						vector.element.appendChild(selectableSpan);
					} else {
						containerSpan.appendChild(selectableSpan);
					}
				}
			}
		}

		return containerSpan;
	},

	renderDocument: function(callback) { 
		
		if (!callback)
			callback = function(e) { e.style.visibility = 'visible' };

		var elements = document.getElementsByTagName('*');
		
		var elementsLength = elements.length;
		for (var i = 0; i < elements.length; i++) {
			if (elements[i].className.match(/(^|\s)typeface-js(\s|$)/) || elements[i].tagName.match(/^(H2|H3|H4|H5|H6)$/)) {
				this.replaceText(elements[i]);
				if (typeof callback == 'function') {
					callback(elements[i]);
				}
			}
		}

		if (this.vectorBackend == 'vml') {
			// lamely work around IE's quirky leaving off final dynamic shapes
			var dummyShape = document.createElement('v:shape');
			dummyShape.style.display = 'none';
			document.body.appendChild(dummyShape);
		}
	},

	replaceText: function(e) {

		var childNodes = [];
		var childNodesLength = e.childNodes.length;

		for (var i = 0; i < childNodesLength; i++) {
			this.replaceText(e.childNodes[i]);
		}

		if (e.nodeType == 3 && e.nodeValue.match(/\S/)) {
			var parentNode = e.parentNode;

			if (parentNode.className == 'typeface-js-selected-text') {
				return;
			}

			var renderedText = this.getRenderedText(e);
			
			if (
				parentNode.tagName == 'A' 
				&& this.vectorBackend == 'vml'
				&& this.getElementStyle(parentNode).display == 'inline'
			) {
				// something of a hack, use inline-block to get IE to accept clicks in whitespace regions
				parentNode.style.display = 'inline-block';
				parentNode.style.cursor = 'pointer';
			}

			if (this.getElementStyle(parentNode).display == 'inline') {
				parentNode.style.display = 'inline-block';
			}

			if (renderedText) {	
				if (parentNode.replaceChild) {
					parentNode.replaceChild(renderedText, e);
				} else {
					parentNode.insertBefore(renderedText, e);
					parentNode.removeChild(e);
				}
				if (this.vectorBackend == 'vml') {
					renderedText.innerHTML = renderedText.innerHTML;
				}

				var childNodesLength = renderedText.childNodes.length
				for (var i; i < childNodesLength; i++) {
					
					// do our best to line up selectable text with rendered text

					var e = renderedText.childNodes[i];
					if (e.hasChildNodes() && !e.targetWidth) {
						e = e.childNodes[0];
					}
					
					if (e && e.targetWidth) {
						var letterSpacingCount = e.innerHTML.length;
						var wordSpaceDelta = e.targetWidth - e.offsetWidth;
						var letterSpacing = wordSpaceDelta / (letterSpacingCount || 1);

						if (this.vectorBackend == 'vml') {
							letterSpacing = Math.ceil(letterSpacing);
						}

						e.style.letterSpacing = letterSpacing + 'px';
						e.style.width = e.targetWidth + 'px';
					}
				}
			}
		}
	},

	applyElementVerticalMetrics: function(face, style, e) {

		if (style.lineHeight == 'normal') {
			style.lineHeight = this.pixelsFromPoints(face, style, face.lineHeight);
		}

		var cssLineHeightAdjustment = style.lineHeight - this.pixelsFromPoints(face, style, face.lineHeight);

		e.style.marginTop = Math.round( cssLineHeightAdjustment / 2 ) + 'px';
		e.style.marginBottom = Math.round( cssLineHeightAdjustment / 2) + 'px';
	
	},

	vectorBackends: {

		canvas: {

			_initializeSurface: function(face, style, text) {

				var extents = this.getTextExtents(face, style, text);

				var canvas = document.createElement('canvas');
				if (this.disableSelection) {
					canvas.innerHTML = text;
				}

				canvas.height = Math.round(this.pixelsFromPoints(face, style, face.lineHeight));
				canvas.width = Math.round(this.pixelsFromPoints(face, style, extents.x, 'horizontal'));
	
				this.applyElementVerticalMetrics(face, style, canvas);

				if (extents.x > extents.ha) 
					canvas.style.marginRight = Math.round(this.pixelsFromPoints(face, style, extents.x - extents.ha, 'horizontal')) + 'px';

				var ctx = canvas.getContext('2d');

				var pointScale = this.pixelsFromPoints(face, style, 1);
				ctx.scale(pointScale * style.fontStretchPercent, -1 * pointScale);
				ctx.translate(0, -1 * face.ascender);
				ctx.fillStyle = style.color;

				return { context: ctx, canvas: canvas };
			},

			_renderGlyph: function(ctx, face, char, style) {

				var glyph = face.glyphs[char];

				if (!glyph) {
					//this.log.error("glyph not defined: " + char);
					return this.renderGlyph(ctx, face, this.fallbackCharacter, style);
				}

				if (glyph.o) {

					var outline;
					if (glyph.cached_outline) {
						outline = glyph.cached_outline;
					} else {
						outline = glyph.o.split(' ');
						glyph.cached_outline = outline;
					}

					var outlineLength = outline.length;
					for (var i = 0; i < outlineLength; ) {

						var action = outline[i++];

						switch(action) {
							case 'm':
								ctx.moveTo(outline[i++], outline[i++]);
								break;
							case 'l':
								ctx.lineTo(outline[i++], outline[i++]);
								break;

							case 'q':
								var cpx = outline[i++];
								var cpy = outline[i++];
								ctx.quadraticCurveTo(outline[i++], outline[i++], cpx, cpy);
								break;

							case 'b':
								var x = outline[i++];
								var y = outline[i++];
								ctx.bezierCurveTo(outline[i++], outline[i++], outline[i++], outline[i++], x, y);
								break;
						}
					}					
				}
				if (glyph.ha) {
					var letterSpacingPoints = 
						style.letterSpacing && style.letterSpacing != 'normal' ? 
							this.pointsFromPixels(face, style, style.letterSpacing) : 
							0;

					ctx.translate(glyph.ha + letterSpacingPoints, 0);
				}
			},

			_renderWord: function(face, style, text) {
				var surface = this.initializeSurface(face, style, text);
				var ctx = surface.context;
				var canvas = surface.canvas;
				ctx.beginPath();
				ctx.save();

				var chars = text.split('');
				var charsLength = chars.length;
				for (var i = 0; i < charsLength; i++) {
					this.renderGlyph(ctx, face, chars[i], style);
				}

				ctx.fill();

				if (style.textDecoration == 'underline') {

					ctx.beginPath();
					ctx.moveTo(0, face.underlinePosition);
					ctx.restore();
					ctx.lineTo(0, face.underlinePosition);
					ctx.strokeStyle = style.color;
					ctx.lineWidth = face.underlineThickness;
					ctx.stroke();
				}

				return { element: ctx.canvas, width: Math.floor(canvas.width) };
			
			}
		},

		vml: {

			_initializeSurface: function(face, style, text) {

				var shape = document.createElement('v:shape');

				var extents = this.getTextExtents(face, style, text);
				
				shape.style.width = shape.style.height = style.fontSize + 'px'; 
				shape.style.marginLeft = '-1px'; // this seems suspect...

				if (extents.x > extents.ha) {
					shape.style.marginRight = this.pixelsFromPoints(face, style, extents.x - extents.ha, 'horizontal') + 'px';
				}

				this.applyElementVerticalMetrics(face, style, shape);

				var resolutionScale = face.resolution * 100 / 72;
				shape.coordsize = (resolutionScale / style.fontStretchPercent) + "," + resolutionScale;
				
				shape.coordorigin = '0,' + face.ascender;
				shape.style.flip = 'y';

				shape.fillColor = style.color;
				shape.stroked = false;

				shape.path = 'hh m 0,' + face.ascender + ' l 0,' + face.descender + ' ';

				return shape;
			},

			_renderGlyph: function(shape, face, char, offsetX, style, vmlSegments) {

				var glyph = face.glyphs[char];

				if (!glyph) {
					this.log("glyph not defined: " + char);
					this.renderGlyph(shape, face, this.fallbackCharacter, offsetX, style);
					return;
				}
				
				vmlSegments.push('m');

				if (glyph.o) {
					
					var outline, outlineLength;
					
					if (glyph.cached_outline) {
						outline = glyph.cached_outline;
						outlineLength = outline.length;
					} else {
						outline = glyph.o.split(' ');
						outlineLength = outline.length;

						for (var i = 0; i < outlineLength;) {

							switch(outline[i++]) {
								case 'q':
									outline[i] = Math.round(outline[i++]);
									outline[i] = Math.round(outline[i++]);
								case 'm':
								case 'l':
									outline[i] = Math.round(outline[i++]);
									outline[i] = Math.round(outline[i++]);
									break;
							} 
						}	

						glyph.cached_outline = outline;
					}

					var prevX, prevY;
					
					for (var i = 0; i < outlineLength;) {

						var action = outline[i++];

						var x = Math.round(outline[i++]) + offsetX;
						var y = Math.round(outline[i++]);
	
						switch(action) {
							case 'm':
								vmlSegments.push('xm ', x, ',', y);
								break;
	
							case 'l':
								vmlSegments.push('l ', x, ',', y);
								break;

							case 'q':
								var cpx = outline[i++] + offsetX;
								var cpy = outline[i++];

								var cp1x = Math.round(prevX + 2.0 / 3.0 * (cpx - prevX));
								var cp1y = Math.round(prevY + 2.0 / 3.0 * (cpy - prevY));

								var cp2x = Math.round(cp1x + (x - prevX) / 3.0);
								var cp2y = Math.round(cp1y + (y - prevY) / 3.0);
								
								vmlSegments.push('c ', cp1x, ',', cp1y, ',', cp2x, ',', cp2y, ',', x, ',', y);
								break;

							case 'b':
								var cp1x = Math.round(outline[i++]) + offsetX;
								var cp1y = outline[i++];

								var cp2x = Math.round(outline[i++]) + offsetX;
								var cp2y = outline[i++];

								vmlSegments.push('c ', cp1x, ',', cp1y, ',', cp2x, ',', cp2y, ',', x, ',', y);
								break;
						}

						prevX = x;
						prevY = y;
					}					
				}

				vmlSegments.push('x e');
				return vmlSegments;
			},

			_renderWord: function(face, style, text) {
				var offsetX = 0;
				var shape = this.initializeSurface(face, style, text);
		
				var letterSpacingPoints = 
					style.letterSpacing && style.letterSpacing != 'normal' ? 
						this.pointsFromPixels(face, style, style.letterSpacing) : 
						0;

				letterSpacingPoints = Math.round(letterSpacingPoints);
				var chars = text.split('');
				var vmlSegments = [];
				for (var i = 0; i < chars.length; i++) {
					var char = chars[i];
					vmlSegments = this.renderGlyph(shape, face, char, offsetX, style, vmlSegments);
					offsetX += face.glyphs[char].ha + letterSpacingPoints ;	
				}

				if (style.textDecoration == 'underline') {
					var posY = face.underlinePosition - (face.underlineThickness / 2);
					vmlSegments.push('xm ', 0, ',', posY);
					vmlSegments.push('l ', offsetX, ',', posY);
					vmlSegments.push('l ', offsetX, ',', posY + face.underlineThickness);
					vmlSegments.push('l ', 0, ',', posY + face.underlineThickness);
					vmlSegments.push('l ', 0, ',', posY);
					vmlSegments.push('x e');
				}

				// make sure to preserve trailing whitespace
				shape.path += vmlSegments.join('') + 'm ' + offsetX + ' 0 l ' + offsetX + ' ' + face.ascender;
				
				return {
					element: shape,
					width: Math.floor(this.pixelsFromPoints(face, style, offsetX, 'horizontal'))
				};
			}

		}

	},

	setVectorBackend: function(backend) {

		this.vectorBackend = backend;
		var backendFunctions = ['renderWord', 'initializeSurface', 'renderGlyph'];

		for (var i = 0; i < backendFunctions.length; i++) {
			var backendFunction = backendFunctions[i];
			this[backendFunction] = this.vectorBackends[backend]['_' + backendFunction];
		}
	},
	
	initialize: function() {

		// quit if this function has already been called
		if (arguments.callee.done) return; 
		
		// flag this function so we don't do the same thing twice
		arguments.callee.done = true;

		// kill the timer
		if (window._typefaceTimer) clearInterval(_typefaceTimer);

		this.renderDocument( function(e) { e.style.visibility = 'visible' } );

	}
	
};

// IE won't accept real selectors...
var typefaceSelectors = ['.typeface-js', 'h2', 'h3', 'h4', 'h5', 'h6'];

if (document.createStyleSheet) { 

	var styleSheet = document.createStyleSheet();
	for (var i = 0; i < typefaceSelectors.length; i++) {
		var selector = typefaceSelectors[i];
		styleSheet.addRule(selector, 'visibility: hidden');
	}

	styleSheet.addRule(
		'.typeface-js-selected-text', 
		'-ms-filter: \
			"Chroma(color=black) \
			progid:DXImageTransform.Microsoft.MaskFilter(Color=white) \
			progid:DXImageTransform.Microsoft.MaskFilter(Color=blue) \
			alpha(opacity=30)" !important; \
		color: black; \
		font-family: Modern; \
		position: absolute; \
		white-space: pre; \
		filter: alpha(opacity=0) !important;'
	);

	styleSheet.addRule(
		'.typeface-js-vector-container',
		'position: relative'
	);

} else if (document.styleSheets) {

	if (!document.styleSheets.length) { (function() {
		// create a stylesheet if we need to
		var styleSheet = document.createElement('style');
		styleSheet.type = 'text/css';
		document.getElementsByTagName('head')[0].appendChild(styleSheet);
	})() }

	var styleSheet = document.styleSheets[0];
	document.styleSheets[0].insertRule(typefaceSelectors.join(',') + ' { visibility: hidden; }', styleSheet.cssRules.length); 

	document.styleSheets[0].insertRule(
		'.typeface-js-selected-text { \
			color: rgba(128, 128, 128, 0); \
			opacity: 0.30; \
			position: absolute; \
			font-family: Arial, sans-serif; \
			white-space: pre \
		}', 
		styleSheet.cssRules.length
	);

	try { 
		// set selection style for Mozilla / Firefox
		document.styleSheets[0].insertRule(
			'.typeface-js-selected-text::-moz-selection { background: blue; }', 
			styleSheet.cssRules.length
		); 

	} catch(e) {};

	try { 
		// set styles for browsers with CSS3 selectors (Safari, Chrome)
		document.styleSheets[0].insertRule(
			'.typeface-js-selected-text::selection { background: blue; }', 
			styleSheet.cssRules.length
		); 

	} catch(e) {};

	// most unfortunately, sniff for WebKit's quirky selection behavior
	if (/WebKit/i.test(navigator.userAgent)) {
		document.styleSheets[0].insertRule(
			'.typeface-js-vector-container { position: relative }',
			styleSheet.cssRules.length
		);
	}

}

var backend = !!(window.attachEvent && !window.opera) ? 'vml' : window.CanvasRenderingContext2D || document.createElement('canvas').getContext ? 'canvas' : null;

if (backend == 'vml') {

	document.namespaces.add("v","urn:schemas-microsoft-com:vml","#default#VML");

	var styleSheet = document.createStyleSheet();
	styleSheet.addRule('v\\:shape', "display: inline-block;");
}

_typeface_js.setVectorBackend(backend);
window._typeface_js = _typeface_js;
	
if (/WebKit/i.test(navigator.userAgent)) {

	var _typefaceTimer = setInterval(function() {
		if (/loaded|complete/.test(document.readyState)) {
			_typeface_js.initialize(); 
		}
	}, 10);
}

if (document.addEventListener) {
	window.addEventListener('DOMContentLoaded', function() { _typeface_js.initialize() }, false);
} 

/*@cc_on @*/
/*@if (@_win32)

document.write("<script id=__ie_onload_typeface defer src=//:><\/script>");
var script = document.getElementById("__ie_onload_typeface");
script.onreadystatechange = function() {
	if (this.readyState == "complete") {
		_typeface_js.initialize(); 
	}
};

/*@end @*/

try { console.log('initializing typeface.js') } catch(e) {};

})();





/* AND THE FONT ITSELF BEBAS  */


if (_typeface_js && _typeface_js.loadFace) _typeface_js.loadFace({"glyphs":{"S":{"x_min":66.84375,"x_max":680,"ha":744,"o":"m 680 307 q 610 86 680 178 q 482 -1 565 24 q 378 -15 438 -15 q 197 40 269 -15 q 101 163 136 85 q 66 341 66 240 l 240 341 q 297 193 252 240 q 375 158 331 158 q 473 216 436 158 q 492 298 492 245 q 421 452 492 376 q 255 609 366 504 q 124 770 162 699 q 83 943 83 850 q 196 1199 83 1112 q 370 1252 266 1252 q 540 1207 469 1252 q 630 1110 596 1172 q 671 967 664 1048 l 492 935 q 449 1053 485 1010 q 375 1084 423 1084 q 296 1038 323 1084 q 275 947 275 1002 q 348 775 275 862 q 431 696 376 741 q 517 620 496 641 q 624 484 586 551 q 653 425 642 452 q 680 307 680 359 "},"/":{"x_min":64.125,"x_max":731.921875,"ha":796,"o":"m 580 1316 l 731 1316 l 216 -37 l 64 -37 l 580 1316 "},"K":{"x_min":64,"x_max":720.53125,"ha":785,"o":"m 251 390 l 251 0 l 64 0 l 64 1237 l 251 1237 l 251 796 l 477 1237 l 677 1237 l 421 730 l 720 0 l 501 0 l 306 501 l 251 390 "},"7":{"x_min":64,"x_max":624,"ha":688,"o":"m 624 1238 l 624 1051 l 362 1 l 180 1 l 441 1051 l 64 1051 l 64 1238 l 624 1238 "},"d":{"x_min":64,"x_max":650,"ha":714,"o":"m 650 295 q 564 86 650 173 q 357 0 478 0 l 64 0 l 64 1237 l 357 1237 q 564 1150 479 1237 q 650 942 650 1063 l 650 295 m 250 185 l 362 185 q 437 217 406 185 q 468 292 468 249 l 468 939 q 436 1015 468 983 q 362 1047 405 1047 l 250 1047 l 250 185 "},",":{"x_min":64,"x_max":251,"ha":315,"o":"m 64 0 l 64 185 l 251 185 l 251 0 l 183 -142 l 104 -142 l 148 0 l 64 0 "},"Y":{"x_min":64.4375,"x_max":750.546875,"ha":815,"o":"m 314 517 l 64 1237 l 269 1237 l 407 793 l 544 1237 l 750 1237 l 500 517 l 500 0 l 314 0 l 314 517 "},"E":{"x_min":64,"x_max":594.265625,"ha":658,"o":"m 64 1 l 64 1237 l 594 1237 l 594 1051 l 250 1051 l 250 712 l 501 712 l 501 525 l 250 525 l 250 187 l 594 187 l 594 1 l 64 1 "},"y":{"x_min":64.4375,"x_max":750.546875,"ha":815,"o":"m 314 517 l 64 1237 l 269 1237 l 407 793 l 544 1237 l 750 1237 l 500 517 l 500 0 l 314 0 l 314 517 "},"\"":{"x_min":64.125,"x_max":457.703125,"ha":522,"o":"m 92 1150 l 64 1432 l 236 1432 l 208 1150 l 92 1150 m 313 1150 l 285 1432 l 457 1432 l 429 1150 l 313 1150 "},"g":{"x_min":64,"x_max":655,"ha":719,"o":"m 360 -16 q 150 70 236 -16 q 64 279 64 157 l 64 953 q 150 1163 64 1077 q 360 1250 237 1250 q 569 1163 483 1250 q 655 954 655 1076 l 655 813 l 462 813 l 462 958 q 430 1034 462 1002 q 354 1066 398 1066 q 278 1034 309 1066 q 247 958 247 1002 l 247 280 q 278 205 247 236 q 354 174 309 174 q 430 205 398 174 q 462 280 462 236 l 462 525 l 358 525 l 358 711 l 655 711 l 655 278 q 568 69 655 155 q 360 -16 481 -16 "},"e":{"x_min":64,"x_max":594.265625,"ha":658,"o":"m 64 1 l 64 1237 l 594 1237 l 594 1051 l 250 1051 l 250 712 l 501 712 l 501 525 l 250 525 l 250 187 l 594 187 l 594 1 l 64 1 "},"J":{"x_min":64.140625,"x_max":474.484375,"ha":539,"o":"m 474 280 q 388 71 474 156 q 179 -14 301 -14 q 64 0 108 -14 l 90 174 q 145 170 122 170 q 184 170 158 170 q 260 201 229 170 q 292 276 292 232 l 292 1234 l 474 1234 l 474 280 "},"|":{"x_min":64,"x_max":242,"ha":306,"o":"m 64 1629 l 242 1629 l 242 -102 l 64 -102 l 64 1629 "},"‐":{"x_min":64,"x_max":616,"ha":680,"o":"m 64 711 l 616 711 l 616 524 l 64 524 l 64 711 "},"^":{"x_min":64.125,"x_max":462.640625,"ha":527,"o":"m 308 1432 l 462 1086 l 334 1086 l 264 1254 l 194 1086 l 64 1086 l 218 1432 l 308 1432 "},"q":{"x_min":64,"x_max":686,"ha":750,"o":"m 655 280 q 615 133 655 200 q 686 105 640 105 l 686 -69 q 495 18 546 -69 q 360 -15 433 -15 q 150 71 236 -15 q 64 281 64 158 l 64 955 q 150 1165 64 1079 q 360 1252 237 1252 q 569 1164 483 1252 q 655 955 655 1077 l 655 280 m 462 959 q 430 1035 462 1004 q 354 1066 398 1066 q 278 1035 309 1066 q 247 959 247 1004 l 247 282 q 278 207 247 238 q 354 176 309 176 q 430 207 398 176 q 462 282 462 238 l 462 959 "},"b":{"x_min":64,"x_max":692,"ha":756,"o":"m 64 0 l 64 1237 l 343 1237 q 542 1178 453 1237 q 651 1026 618 1129 q 669 894 669 970 q 602 695 669 770 q 537 646 575 663 q 642 553 599 623 q 685 431 671 506 q 692 345 692 392 q 648 146 692 228 q 550 43 613 82 q 409 0 479 0 l 64 0 m 265 185 l 342 185 q 474 282 437 185 q 487 359 487 315 q 447 509 487 462 q 342 553 412 553 l 265 553 l 265 185 m 265 732 l 343 732 q 460 816 430 732 q 471 894 471 848 q 433 1011 471 971 q 343 1048 398 1048 l 265 1048 l 265 732 "},"D":{"x_min":64,"x_max":650,"ha":714,"o":"m 650 295 q 564 86 650 173 q 357 0 478 0 l 64 0 l 64 1237 l 357 1237 q 564 1150 479 1237 q 650 942 650 1063 l 650 295 m 250 185 l 362 185 q 437 217 406 185 q 468 292 468 249 l 468 939 q 436 1015 468 983 q 362 1047 405 1047 l 250 1047 l 250 185 "},"z":{"x_min":64,"x_max":609,"ha":673,"o":"m 609 1236 l 609 1050 l 265 185 l 609 185 l 609 0 l 64 0 l 64 185 l 408 1050 l 64 1050 l 64 1236 l 609 1236 "},"w":{"x_min":64.125,"x_max":1025.890625,"ha":1090,"o":"m 830 1236 l 1025 1236 l 832 0 l 654 0 l 548 674 l 449 0 l 271 0 l 64 1236 l 259 1236 l 357 574 l 446 1236 l 642 1236 l 739 574 l 830 1236 "},"$":{"x_min":66.84375,"x_max":681,"ha":745,"o":"m 681 316 q 589 68 681 156 q 451 0 534 15 l 451 -86 l 293 -86 l 293 4 q 121 137 181 33 q 66 350 66 228 l 241 350 q 297 202 253 247 q 374 167 331 167 q 473 225 436 167 q 492 307 492 254 q 422 461 492 384 q 255 618 366 513 q 131 768 169 700 q 83 952 83 853 q 128 1127 83 1048 q 293 1252 183 1225 l 293 1332 l 451 1332 l 451 1252 q 577 1188 526 1235 q 666 976 666 1107 l 492 944 q 449 1063 485 1019 q 376 1093 425 1093 q 297 1047 324 1093 q 276 956 276 1011 q 349 783 276 871 q 431 705 375 751 q 518 629 496 651 q 625 493 588 558 q 681 316 681 396 "},"\\":{"x_min":64.125,"x_max":731.921875,"ha":796,"o":"m 64 1315 l 215 1315 l 731 -37 l 580 -37 l 64 1315 "},"~":{"x_min":64.125,"x_max":667.8125,"ha":732,"o":"m 444 1368 q 486 1359 467 1359 q 564 1417 521 1359 l 667 1340 q 481 1230 583 1230 q 331 1284 424 1230 q 241 1321 265 1321 q 167 1266 209 1321 l 64 1343 q 245 1450 145 1450 q 349 1420 291 1450 q 444 1368 397 1394 "},"-":{"x_min":64,"x_max":616,"ha":680,"o":"m 64 711 l 616 711 l 616 524 l 64 524 l 64 711 "},"Q":{"x_min":64,"x_max":686,"ha":750,"o":"m 655 280 q 615 133 655 200 q 686 105 640 105 l 686 -69 q 495 18 546 -69 q 360 -15 433 -15 q 150 71 236 -15 q 64 281 64 158 l 64 955 q 150 1165 64 1079 q 360 1252 237 1252 q 569 1164 483 1252 q 655 955 655 1077 l 655 280 m 462 959 q 430 1035 462 1004 q 354 1066 398 1066 q 278 1035 309 1066 q 247 959 247 1004 l 247 282 q 278 207 247 238 q 354 176 309 176 q 430 207 398 176 q 462 282 462 238 l 462 959 "},"M":{"x_min":64,"x_max":929,"ha":993,"o":"m 250 0 l 64 0 l 64 1237 l 331 1237 l 504 350 l 671 1237 l 929 1237 l 929 0 l 743 0 l 743 777 l 580 0 l 430 0 l 250 775 l 250 0 "},"C":{"x_min":64,"x_max":655,"ha":719,"o":"m 360 -16 q 150 70 236 -16 q 64 279 64 156 l 64 953 q 150 1163 64 1077 q 360 1250 237 1250 q 569 1163 483 1250 q 655 954 655 1076 l 655 813 l 462 813 l 462 958 q 430 1034 462 1002 q 354 1066 398 1066 q 278 1034 309 1066 q 247 958 247 1002 l 247 280 q 278 205 247 236 q 354 174 309 174 q 430 205 398 174 q 462 280 462 236 l 462 451 l 655 451 l 655 278 q 568 69 655 155 q 360 -16 481 -16 "},"[":{"x_min":64,"x_max":377.25,"ha":441,"o":"m 64 1314 l 377 1314 l 377 1127 l 251 1127 l 251 184 l 377 184 l 377 -1 l 64 -1 l 64 1314 "},"L":{"x_min":64,"x_max":571.578125,"ha":636,"o":"m 571 0 l 64 0 l 64 1236 l 250 1236 l 250 185 l 571 185 l 571 0 "},"!":{"x_min":64,"x_max":250,"ha":314,"o":"m 71 545 l 71 1237 l 244 1237 l 244 545 l 244 307 l 71 307 l 71 545 m 64 0 l 64 186 l 250 186 l 250 0 l 64 0 "}," ":{"x_min":0,"x_max":0,"ha":128},"{":{"x_min":64,"x_max":464.984375,"ha":529,"o":"m 162 1087 q 234 1278 162 1224 q 464 1331 302 1331 l 464 1202 q 348 1178 379 1202 q 318 1081 318 1154 l 318 817 q 293 725 318 769 q 225 660 266 677 q 291 598 263 645 q 318 503 318 554 l 318 237 q 348 140 318 163 q 464 118 379 118 l 464 -11 q 234 41 302 -11 q 162 232 162 95 l 162 423 q 153 551 162 526 q 64 609 132 609 l 64 707 q 153 769 132 713 q 162 896 162 793 l 162 1087 "},"X":{"x_min":64.125,"x_max":751.65625,"ha":816,"o":"m 751 0 l 551 0 l 408 392 l 264 0 l 64 0 l 306 621 l 64 1236 l 270 1236 l 408 854 l 545 1236 l 751 1236 l 509 621 l 751 0 "},"P":{"x_min":64,"x_max":650,"ha":714,"o":"m 357 1236 q 574 1150 493 1236 q 650 941 650 1068 l 650 761 q 564 552 650 639 q 357 466 478 466 l 250 466 l 250 0 l 64 0 l 64 1236 l 357 1236 m 469 938 q 439 1016 469 986 q 362 1046 410 1046 l 250 1046 l 250 651 l 362 651 q 437 682 406 651 q 469 758 469 714 l 469 938 "},"%":{"x_min":64,"x_max":922,"ha":986,"o":"m 374 782 q 328 673 374 718 q 218 628 282 628 q 109 673 154 628 q 64 782 64 718 l 64 1135 q 109 1245 64 1200 q 218 1291 154 1291 q 328 1245 283 1291 q 374 1135 374 1199 l 374 782 m 160 784 q 176 744 160 760 q 216 728 192 728 q 255 744 239 728 q 272 784 272 760 l 272 1137 q 255 1177 272 1161 q 216 1194 239 1194 q 176 1177 192 1194 q 160 1137 160 1161 l 160 784 m 767 655 q 877 609 832 655 q 922 500 922 563 l 922 146 q 876 38 922 82 q 767 -6 831 -6 q 658 38 703 -6 q 613 146 613 83 l 613 500 q 658 609 613 564 q 767 655 703 655 m 821 501 q 804 541 821 525 q 765 558 788 558 q 725 541 741 558 q 709 501 709 525 l 709 149 q 725 109 709 125 q 765 93 741 93 q 804 109 788 93 q 821 149 821 125 l 821 501 m 232 -21 l 123 -21 l 754 1287 l 862 1287 l 232 -21 "},"#":{"x_min":64.125,"x_max":1074.21875,"ha":1138,"o":"m 851 715 l 811 480 l 1004 480 l 975 293 l 781 293 l 732 0 l 546 0 l 594 293 l 434 293 l 385 0 l 199 0 l 247 293 l 64 293 l 92 480 l 278 480 l 317 715 l 134 715 l 162 902 l 348 902 l 403 1237 l 589 1237 l 534 902 l 695 902 l 750 1237 l 937 1237 l 881 902 l 1074 902 l 1045 715 l 851 715 m 663 715 l 504 715 l 465 480 l 625 480 l 663 715 "},"_":{"x_min":64,"x_max":1018,"ha":1082,"o":"m 64 -207 l 64 -70 l 1018 -70 l 1018 -207 l 64 -207 "},"+":{"x_min":64,"x_max":699,"ha":763,"o":"m 451 674 l 699 674 l 699 536 l 451 536 l 451 287 l 313 287 l 313 536 l 64 536 l 64 674 l 313 674 l 313 922 l 451 922 l 451 674 "},")":{"x_min":63.640625,"x_max":433,"ha":497,"o":"m 183 1405 q 308 1181 252 1304 q 433 676 433 911 q 308 151 433 441 q 183 -90 253 22 l 63 -29 q 159 212 117 90 q 247 561 224 402 q 255 676 255 621 q 160 1124 255 861 q 66 1350 118 1240 l 183 1405 "},"'":{"x_min":64.125,"x_max":236.75,"ha":301,"o":"m 64 1432 l 236 1432 l 208 1150 l 92 1150 l 64 1432 "},"}":{"x_min":64.03125,"x_max":465,"ha":529,"o":"m 388 733 q 465 698 407 703 l 465 602 q 404 585 422 598 q 375 541 387 572 q 369 494 369 525 q 369 414 369 479 l 369 223 q 294 32 369 86 q 64 -19 228 -19 l 64 109 q 180 131 150 109 q 211 228 211 154 l 211 494 q 237 587 211 539 q 303 651 263 635 q 238 713 265 666 q 211 807 211 759 l 211 1073 q 180 1170 211 1147 q 64 1193 150 1193 l 64 1322 q 294 1269 226 1322 q 370 1078 370 1215 l 370 886 q 370 807 370 822 q 388 733 370 764 "},"a":{"x_min":64.125,"x_max":737.84375,"ha":802,"o":"m 303 284 l 258 0 l 64 0 l 274 1236 l 530 1236 l 737 0 l 542 0 l 498 284 l 303 284 m 401 953 l 332 466 l 470 466 l 401 953 "},"T":{"x_min":64,"x_max":646,"ha":710,"o":"m 262 1050 l 64 1050 l 64 1236 l 646 1236 l 646 1050 l 448 1050 l 448 0 l 262 0 l 262 1050 "},"=":{"x_min":64,"x_max":699,"ha":763,"o":"m 64 701 l 64 839 l 699 839 l 699 701 l 64 701 m 64 431 l 64 569 l 699 569 l 699 431 l 64 431 "},"N":{"x_min":64,"x_max":707,"ha":771,"o":"m 273 1237 l 521 406 l 521 1237 l 707 1237 l 707 0 l 507 0 l 250 792 l 250 0 l 64 0 l 64 1237 l 273 1237 "},"":{"x_min":0,"x_max":0,"ha":505},"2":{"x_min":64,"x_max":672,"ha":736,"o":"m 67 887 q 161 1156 67 1063 q 376 1238 243 1238 q 585 1146 499 1238 q 672 932 672 1054 q 615 688 672 805 q 472 464 584 623 q 381 329 441 421 l 348 279 q 298 201 315 230 q 291 184 291 187 l 657 184 l 657 1 l 64 1 l 64 172 q 105 240 64 178 q 147 303 124 268 l 195 373 q 329 559 238 431 q 457 777 415 679 q 492 926 492 857 q 460 1021 492 982 q 371 1063 425 1063 q 260 973 293 1063 q 250 902 250 943 l 250 855 l 67 855 l 67 887 "},"j":{"x_min":64.140625,"x_max":474.484375,"ha":539,"o":"m 474 280 q 388 71 474 156 q 179 -14 301 -14 q 64 0 108 -14 l 90 174 q 145 170 122 170 q 184 170 158 170 q 260 201 229 170 q 292 276 292 232 l 292 1234 l 474 1234 l 474 280 "},"Z":{"x_min":64,"x_max":609,"ha":673,"o":"m 609 1236 l 609 1050 l 265 185 l 609 185 l 609 0 l 64 0 l 64 185 l 408 1050 l 64 1050 l 64 1236 l 609 1236 "},"u":{"x_min":64,"x_max":655,"ha":719,"o":"m 359 -14 q 149 71 235 -14 q 64 279 64 157 l 64 1235 l 246 1235 l 246 281 q 278 206 246 237 q 354 175 309 175 q 429 206 398 175 q 461 281 461 237 l 461 1235 l 655 1235 l 655 279 q 568 70 655 155 q 359 -14 481 -14 "},"1":{"x_min":64.171875,"x_max":409,"ha":473,"o":"m 222 0 l 222 952 l 64 952 l 64 1082 q 191 1132 131 1090 q 279 1237 252 1175 l 409 1237 l 409 0 l 222 0 "},"k":{"x_min":64,"x_max":720.53125,"ha":785,"o":"m 251 390 l 251 0 l 64 0 l 64 1237 l 251 1237 l 251 796 l 477 1237 l 677 1237 l 421 730 l 720 0 l 501 0 l 306 501 l 251 390 "},"<":{"x_min":64,"x_max":682,"ha":746,"o":"m 682 941 l 682 784 l 257 608 l 682 430 l 682 274 l 64 541 l 64 676 l 682 941 "},"t":{"x_min":64,"x_max":646,"ha":710,"o":"m 262 1050 l 64 1050 l 64 1236 l 646 1236 l 646 1050 l 448 1050 l 448 0 l 262 0 l 262 1050 "},"W":{"x_min":64.125,"x_max":1025.890625,"ha":1090,"o":"m 830 1236 l 1025 1236 l 832 0 l 654 0 l 548 674 l 449 0 l 271 0 l 64 1236 l 259 1236 l 357 574 l 446 1236 l 642 1236 l 739 574 l 830 1236 "},"v":{"x_min":64.125,"x_max":766.453125,"ha":831,"o":"m 285 0 l 64 1236 l 259 1236 l 414 274 l 571 1236 l 766 1236 l 541 0 l 285 0 "},">":{"x_min":64,"x_max":682,"ha":746,"o":"m 64 941 l 682 673 l 682 538 l 64 274 l 64 430 l 488 606 l 64 784 l 64 941 "},"s":{"x_min":66.84375,"x_max":680,"ha":744,"o":"m 680 307 q 610 86 680 178 q 482 -1 565 24 q 378 -15 438 -15 q 197 40 269 -15 q 101 163 136 85 q 66 341 66 240 l 240 341 q 297 193 252 240 q 375 158 331 158 q 473 216 436 158 q 492 298 492 245 q 421 452 492 376 q 255 609 366 504 q 124 770 162 699 q 83 943 83 850 q 196 1199 83 1112 q 370 1252 266 1252 q 540 1207 469 1252 q 630 1110 596 1172 q 671 967 664 1048 l 492 935 q 449 1053 485 1010 q 375 1084 423 1084 q 296 1038 323 1084 q 275 947 275 1002 q 348 775 275 862 q 431 696 376 741 q 517 620 496 641 q 624 484 586 551 q 653 425 642 452 q 680 307 680 359 "},"B":{"x_min":64,"x_max":692,"ha":756,"o":"m 64 0 l 64 1237 l 343 1237 q 542 1178 453 1237 q 651 1026 618 1129 q 669 894 669 970 q 602 695 669 770 q 537 646 575 663 q 642 553 599 623 q 685 431 671 506 q 692 345 692 392 q 648 146 692 228 q 550 43 613 82 q 409 0 479 0 l 64 0 m 265 185 l 342 185 q 474 282 437 185 q 487 359 487 315 q 447 509 487 462 q 342 553 412 553 l 265 553 l 265 185 m 265 732 l 343 732 q 460 816 430 732 q 471 894 471 848 q 433 1011 471 971 q 343 1048 398 1048 l 265 1048 l 265 732 "},"?":{"x_min":64.25,"x_max":653,"ha":717,"o":"m 365 1253 q 591 1145 514 1253 q 653 946 653 1060 q 480 582 653 754 q 417 442 417 522 q 417 382 417 415 l 417 309 l 227 309 l 227 382 q 312 642 227 557 q 440 830 405 734 q 460 949 460 887 q 431 1049 460 1013 q 339 1084 399 1092 q 258 1006 283 1077 q 243 937 247 976 l 64 968 q 141 1163 74 1084 q 267 1240 186 1216 q 365 1253 309 1253 m 227 178 l 414 178 l 414 -9 l 227 -9 l 227 178 "},"H":{"x_min":64,"x_max":662,"ha":726,"o":"m 251 524 l 251 0 l 64 0 l 64 1236 l 251 1236 l 251 711 l 475 711 l 475 1236 l 662 1236 l 662 0 l 475 0 l 475 524 l 251 524 "},"c":{"x_min":64,"x_max":655,"ha":719,"o":"m 360 -16 q 150 70 236 -16 q 64 279 64 156 l 64 953 q 150 1163 64 1077 q 360 1250 237 1250 q 569 1163 483 1250 q 655 954 655 1076 l 655 813 l 462 813 l 462 958 q 430 1034 462 1002 q 354 1066 398 1066 q 278 1034 309 1066 q 247 958 247 1002 l 247 280 q 278 205 247 236 q 354 174 309 174 q 430 205 398 174 q 462 280 462 236 l 462 451 l 655 451 l 655 278 q 568 69 655 155 q 360 -16 481 -16 "},"&":{"x_min":64,"x_max":796,"ha":860,"o":"m 791 582 q 670 249 746 385 q 796 183 742 183 l 796 10 q 571 108 687 10 q 334 -8 460 -8 q 112 112 189 -8 q 64 286 64 188 q 109 485 64 381 q 162 576 117 502 q 212 652 187 615 l 173 739 q 135 826 145 801 q 107 917 115 876 q 99 1004 99 961 q 135 1155 99 1086 q 244 1265 173 1228 q 368 1296 300 1296 q 507 1258 444 1296 q 604 1153 570 1220 q 631 1035 631 1098 q 552 823 631 924 l 512 771 q 410 636 457 699 q 550 394 472 507 q 622 619 597 500 l 791 582 m 271 1005 q 328 813 271 949 q 351 843 339 828 l 376 875 l 415 928 q 459 1034 459 985 q 449 1090 459 1071 q 368 1153 424 1153 q 292 1100 320 1153 q 271 1005 271 1059 m 335 164 q 454 235 391 164 q 301 473 378 332 q 266 412 283 444 q 237 286 237 344 q 259 202 237 235 q 335 164 286 164 "},"I":{"x_min":64,"x_max":250,"ha":314,"o":"m 250 0 l 64 0 l 64 1236 l 250 1236 l 250 0 "},"G":{"x_min":64,"x_max":655,"ha":719,"o":"m 360 -16 q 150 70 236 -16 q 64 279 64 157 l 64 953 q 150 1163 64 1077 q 360 1250 237 1250 q 569 1163 483 1250 q 655 954 655 1076 l 655 813 l 462 813 l 462 958 q 430 1034 462 1002 q 354 1066 398 1066 q 278 1034 309 1066 q 247 958 247 1002 l 247 280 q 278 205 247 236 q 354 174 309 174 q 430 205 398 174 q 462 280 462 236 l 462 525 l 358 525 l 358 711 l 655 711 l 655 278 q 568 69 655 155 q 360 -16 481 -16 "},"(":{"x_min":64,"x_max":434.375,"ha":498,"o":"m 431 1351 q 336 1125 378 1241 q 250 792 271 943 q 243 677 243 733 q 338 213 243 497 q 434 -29 381 88 l 314 -90 q 188 152 243 23 q 64 677 64 442 q 142 1073 64 864 q 188 1182 161 1125 q 314 1406 244 1305 l 431 1351 "},"`":{"x_min":64.125,"x_max":337.359375,"ha":401,"o":"m 64 1397 l 236 1397 l 337 1114 l 221 1114 l 64 1397 "},"U":{"x_min":64,"x_max":655,"ha":719,"o":"m 359 -14 q 149 71 235 -14 q 64 279 64 157 l 64 1235 l 246 1235 l 246 281 q 278 206 246 237 q 354 175 309 175 q 429 206 398 175 q 461 281 461 237 l 461 1235 l 655 1235 l 655 279 q 568 70 655 155 q 359 -14 481 -14 "},"F":{"x_min":64,"x_max":594.265625,"ha":658,"o":"m 250 0 l 64 0 l 64 1237 l 594 1237 l 594 1051 l 250 1051 l 250 712 l 501 712 l 501 525 l 250 525 l 250 0 "},"r":{"x_min":64,"x_max":689.46875,"ha":754,"o":"m 358 1236 q 586 1150 513 1236 q 651 941 651 1075 l 651 762 q 551 540 651 631 l 689 0 l 487 0 l 374 466 q 357 466 366 466 l 250 466 l 250 0 l 64 0 l 64 1236 l 358 1236 m 469 938 q 362 1046 469 1046 l 250 1046 l 250 651 l 362 651 q 437 682 406 651 q 469 758 469 714 l 469 938 "},":":{"x_min":64,"x_max":251,"ha":315,"o":"m 64 185 l 251 185 l 251 0 l 64 0 l 64 185 m 64 710 l 251 710 l 251 524 l 64 524 l 64 710 "},"x":{"x_min":64.125,"x_max":751.65625,"ha":816,"o":"m 751 0 l 551 0 l 408 392 l 264 0 l 64 0 l 306 621 l 64 1236 l 270 1236 l 408 854 l 545 1236 l 751 1236 l 509 621 l 751 0 "},"*":{"x_min":64.125,"x_max":553.390625,"ha":618,"o":"m 553 1002 l 402 975 l 505 869 l 376 774 l 305 909 l 233 774 l 103 869 l 213 977 l 64 1002 l 115 1151 l 250 1085 l 228 1238 l 385 1238 l 363 1083 l 505 1151 l 553 1002 "},"V":{"x_min":64.125,"x_max":766.453125,"ha":831,"o":"m 285 0 l 64 1236 l 259 1236 l 414 274 l 571 1236 l 766 1236 l 541 0 l 285 0 "},"h":{"x_min":64,"x_max":662,"ha":726,"o":"m 251 524 l 251 0 l 64 0 l 64 1236 l 251 1236 l 251 711 l 475 711 l 475 1236 l 662 1236 l 662 0 l 475 0 l 475 524 l 251 524 "},"0":{"x_min":64,"x_max":655,"ha":719,"o":"m 655 282 q 568 72 655 158 q 360 -13 481 -13 q 150 73 236 -13 q 64 282 64 159 l 64 956 q 150 1166 64 1080 q 360 1253 237 1253 q 569 1166 483 1253 q 655 956 655 1079 l 655 282 m 462 960 q 430 1036 462 1004 q 354 1068 398 1068 q 278 1036 309 1068 q 247 960 247 1004 l 247 284 q 278 208 247 240 q 354 177 309 177 q 430 208 398 177 q 462 284 462 240 l 462 960 "},".":{"x_min":64,"x_max":250,"ha":314,"o":"m 64 185 l 250 185 l 250 -1 l 64 -1 l 64 185 "},"@":{"x_min":64,"x_max":1324.796875,"ha":1389,"o":"m 1121 189 l 1324 189 l 1306 165 q 1044 -38 1202 35 q 721 -110 890 -110 q 252 78 440 -110 q 64 576 64 266 q 239 1095 64 884 q 727 1307 415 1307 q 1033 1234 916 1307 q 1311 713 1311 1065 q 1200 352 1311 515 q 884 169 1075 169 q 752 251 784 169 q 670 190 706 208 q 569 169 627 169 q 355 281 430 169 q 290 525 290 378 q 376 866 290 709 q 651 1054 480 1054 q 828 962 758 1054 l 838 1028 l 1024 1028 l 917 348 q 932 332 917 332 q 1048 394 989 332 q 1123 506 1092 441 q 1164 713 1164 593 q 1046 1035 1164 912 q 730 1158 928 1158 q 357 1002 504 1158 q 211 584 211 847 q 344 194 211 344 q 720 38 483 38 q 1117 185 937 38 l 1121 189 m 741 512 q 775 752 775 638 q 754 849 775 810 q 675 900 728 900 q 522 730 574 900 q 485 479 485 610 q 506 373 485 418 q 589 314 535 314 q 695 384 654 314 q 741 512 718 423 "},"f":{"x_min":64,"x_max":594.265625,"ha":658,"o":"m 250 0 l 64 0 l 64 1237 l 594 1237 l 594 1051 l 250 1051 l 250 712 l 501 712 l 501 525 l 250 525 l 250 0 "},";":{"x_min":64,"x_max":250,"ha":314,"o":"m 64 185 l 250 185 l 250 -1 l 183 -143 l 104 -143 l 147 -1 l 64 -1 l 64 185 m 64 710 l 250 710 l 250 524 l 64 524 l 64 710 "},"i":{"x_min":64,"x_max":250,"ha":314,"o":"m 250 0 l 64 0 l 64 1236 l 250 1236 l 250 0 "},"6":{"x_min":64,"x_max":626,"ha":690,"o":"m 432 929 l 432 960 q 407 1036 432 1005 q 339 1068 383 1068 q 270 1036 294 1068 q 246 960 246 1005 l 246 713 q 387 771 310 771 q 571 685 510 771 q 626 477 626 610 l 626 265 l 622 265 q 542 66 622 146 q 345 -13 462 -13 q 141 74 221 -13 q 64 281 64 159 l 64 956 q 107 1120 64 1047 q 232 1229 151 1193 q 345 1253 283 1253 q 548 1163 467 1253 q 626 956 626 1078 l 626 929 l 432 929 m 247 284 q 270 209 247 239 q 339 177 294 177 q 408 209 383 177 q 432 284 432 239 l 432 513 q 392 602 432 566 q 340 619 373 619 q 267 580 291 619 q 247 510 247 548 l 247 284 "},"A":{"x_min":64.125,"x_max":737.84375,"ha":802,"o":"m 303 284 l 258 0 l 64 0 l 274 1236 l 530 1236 l 737 0 l 542 0 l 498 284 l 303 284 m 401 953 l 332 466 l 470 466 l 401 953 "},"n":{"x_min":64,"x_max":707,"ha":771,"o":"m 273 1237 l 521 406 l 521 1237 l 707 1237 l 707 0 l 507 0 l 250 792 l 250 0 l 64 0 l 64 1237 l 273 1237 "},"O":{"x_min":64,"x_max":655,"ha":719,"o":"m 359 1252 q 568 1165 482 1252 q 655 955 655 1078 l 655 281 q 568 71 655 157 q 359 -15 481 -15 q 149 71 235 -15 q 64 281 64 158 l 64 955 q 150 1165 64 1079 q 359 1252 237 1252 m 461 959 q 429 1035 461 1004 q 354 1066 398 1066 q 278 1035 309 1066 q 246 959 246 1004 l 246 282 q 278 207 246 238 q 354 176 309 176 q 429 207 398 176 q 461 282 461 238 l 461 959 "},"3":{"x_min":63.765625,"x_max":668,"ha":732,"o":"m 353 177 q 482 296 482 177 l 482 369 q 282 560 482 560 l 282 720 q 441 780 389 720 q 488 932 488 834 l 488 960 q 381 1082 488 1082 q 295 1036 322 1082 q 274 946 274 1002 l 274 914 l 92 914 l 92 942 q 159 1158 92 1075 q 373 1253 235 1253 q 583 1164 504 1253 q 654 964 654 1084 l 654 912 q 584 713 654 796 q 515 652 555 677 q 644 511 598 606 q 668 394 668 463 l 668 296 q 574 71 668 159 q 358 -13 484 -13 q 149 75 235 -13 q 63 287 63 164 l 63 319 l 240 319 l 244 282 q 277 206 248 236 q 353 177 307 177 "},"]":{"x_min":63.75,"x_max":376,"ha":440,"o":"m 63 1315 l 376 1315 l 376 -1 l 63 -1 l 63 185 l 190 185 l 190 1128 l 63 1128 l 63 1315 "},"m":{"x_min":64,"x_max":929,"ha":993,"o":"m 250 0 l 64 0 l 64 1237 l 331 1237 l 504 350 l 671 1237 l 929 1237 l 929 0 l 743 0 l 743 777 l 580 0 l 430 0 l 250 775 l 250 0 "},"9":{"x_min":64,"x_max":626,"ha":690,"o":"m 344 1253 q 548 1164 467 1253 q 626 957 626 1079 l 626 282 q 545 72 626 158 q 344 -13 465 -13 q 141 75 221 -13 q 64 282 64 160 l 64 309 l 257 309 l 257 278 q 281 202 257 233 q 350 172 305 172 q 418 202 394 172 q 443 278 443 233 l 443 525 q 301 467 377 467 q 118 552 179 467 q 64 762 64 628 l 64 975 l 66 975 q 112 1129 66 1061 q 234 1231 157 1197 q 344 1253 285 1253 m 443 955 q 418 1031 443 1000 q 350 1063 394 1063 q 281 1031 305 1063 q 257 955 257 1000 l 257 725 q 296 635 257 671 q 349 619 314 619 q 438 694 420 619 q 443 728 443 716 l 443 955 "},"l":{"x_min":64,"x_max":571.578125,"ha":636,"o":"m 571 0 l 64 0 l 64 1236 l 250 1236 l 250 185 l 571 185 l 571 0 "},"8":{"x_min":64,"x_max":669,"ha":733,"o":"m 669 282 q 582 72 669 158 q 373 -13 495 -13 l 358 -13 q 149 73 235 -13 q 64 282 64 160 l 64 394 q 140 593 64 508 q 216 653 172 629 q 99 781 141 691 q 79 897 79 827 l 79 964 q 150 1164 79 1084 q 359 1253 229 1253 l 374 1253 q 584 1164 505 1253 q 655 965 655 1084 l 655 897 q 585 706 655 782 q 517 653 555 673 q 646 512 600 607 q 669 394 669 463 l 669 282 m 483 369 q 432 518 483 480 q 366 536 408 536 q 265 472 292 536 q 250 369 250 434 l 250 310 q 287 211 250 249 q 366 180 319 180 q 472 253 442 180 q 483 310 483 276 l 483 369 m 488 914 q 408 1074 488 1041 q 366 1082 391 1082 q 289 1055 319 1082 q 255 999 265 1033 q 245 914 245 965 q 267 798 245 833 q 364 751 297 751 q 462 801 431 751 q 488 914 488 843 "},"p":{"x_min":64,"x_max":650,"ha":714,"o":"m 357 1236 q 574 1150 493 1236 q 650 941 650 1068 l 650 761 q 564 552 650 639 q 357 466 478 466 l 250 466 l 250 0 l 64 0 l 64 1236 l 357 1236 m 469 938 q 439 1016 469 986 q 362 1046 410 1046 l 250 1046 l 250 651 l 362 651 q 437 682 406 651 q 469 758 469 714 l 469 938 "},"4":{"x_min":64,"x_max":699,"ha":763,"o":"m 64 455 l 394 1238 l 580 1238 l 580 455 l 699 455 l 699 268 l 580 268 l 580 1 l 394 1 l 394 268 l 64 268 l 64 455 m 394 455 l 394 840 l 239 455 l 394 455 "},"R":{"x_min":64,"x_max":689.46875,"ha":754,"o":"m 358 1236 q 586 1150 513 1236 q 651 941 651 1075 l 651 762 q 551 540 651 631 l 689 0 l 487 0 l 374 466 q 357 466 366 466 l 250 466 l 250 0 l 64 0 l 64 1236 l 358 1236 m 469 938 q 362 1046 469 1046 l 250 1046 l 250 651 l 362 651 q 437 682 406 651 q 469 758 469 714 l 469 938 "},"o":{"x_min":64,"x_max":655,"ha":719,"o":"m 359 1252 q 568 1165 482 1252 q 655 955 655 1078 l 655 281 q 568 71 655 157 q 359 -15 481 -15 q 149 71 235 -15 q 64 281 64 158 l 64 955 q 150 1165 64 1079 q 359 1252 237 1252 m 461 959 q 429 1035 461 1004 q 354 1066 398 1066 q 278 1035 309 1066 q 246 959 246 1004 l 246 282 q 278 207 246 238 q 354 176 309 176 q 429 207 398 176 q 461 282 461 238 l 461 959 "},"5":{"x_min":64.375,"x_max":641,"ha":705,"o":"m 270 1051 l 270 784 q 348 846 297 824 q 410 857 374 857 q 590 771 532 857 q 641 561 641 697 l 641 295 q 554 70 641 158 q 345 -14 471 -14 q 142 74 222 -14 q 64 287 64 159 l 64 318 l 242 318 l 246 282 q 306 183 253 208 q 340 176 322 176 q 455 295 455 176 l 455 598 q 415 688 455 652 q 362 705 396 705 q 289 666 313 705 q 270 596 270 633 l 270 562 l 83 562 l 83 1238 l 628 1238 l 628 1051 l 270 1051 "}},"cssFontWeight":"normal","ascender":1630,"underlinePosition":-75,"cssFontStyle":"normal","boundingBox":{"yMin":-207,"xMin":64,"yMax":1629,"xMax":1324.796875},"resolution":1000,"original_font_information":{"postscript_name":"Bebas","version_string":"Bebas versoin1.0","vendor_url":"","full_font_name":"Bebas","font_family_name":"Bebas","copyright":"Ryoichi Tsunekawa Bagel&Co All rights reserved","description":"","trademark":"","designer":"","designer_url":"","unique_font_identifier":"Macromedia Fontographer 4.1 05/07/29","license_url":"","license_description":"","manufacturer_name":"","font_sub_family_name":"Regular"},"descender":-209,"familyName":"Bebas","lineHeight":1838,"underlineThickness":50});
